自定义博客皮肤VIP专享

*博客头图:

格式为PNG、JPG,宽度*高度大于1920*100像素,不超过2MB,主视觉建议放在右侧,请参照线上博客头图

请上传大于1920*100像素的图片!

博客底图:

图片格式为PNG、JPG,不超过1MB,可上下左右平铺至整个背景

栏目图:

图片格式为PNG、JPG,图片宽度*高度为300*38像素,不超过0.5MB

主标题颜色:

RGB颜色,例如:#AFAFAF

Hover:

RGB颜色,例如:#AFAFAF

副标题颜色:

RGB颜色,例如:#AFAFAF

自定义博客皮肤

-+
  • 博客(8)
  • 收藏
  • 关注

原创 利用AutoSSH建立SSH隧道,实现内网穿透

autoSSH内网穿透vim /etc/ssh/sshd_config#GatewayPorts no -> GatewayPorts yessudo service sshd restartyum install autossh#-M 4010 x使用内网主机 A 的 4010 端口监视 SSH 连接状态,连接出问题了会自动重连#-N 不执行远程命令#-R 远程主机(公网主机 B)的某个端口:转发到本地指定机器的指定端口autossh -M 4010 -NR 80:localhos

2022-05-11 10:44:29 352

原创 centos安装nginx

安装nginx流程wget `nginx-downloadUrl`tar -zxvf `nginx-tar..gz`./configuremakemake installln -s /usr/local/nginx/sbin/nginx /usr/local/bin/nignx

2022-05-10 11:28:41 380

原创 4. 寻找两个正序数组的中位数【js】

给定两个大小分别为 m 和 n 的正序(从小到大)数组 nums1 和 nums2。请你找出并返回这两个正序数组的 中位数 。算法的时间复杂度应该为 O(log (m+n)) 。输入:nums1 = [1,2], nums2 = [3,4]输出:2.50000解释:合并数组 = [1,2,3,4] ,中位数 (2+ 3) / 2 = 2.5https://leetcode-cn.com/problems/median-of-two-sorted-arrays/** * @param

2022-05-04 16:14:10 206

原创 【React.js】弹幕滚动 移动端

不知道是个啥/**弹幕Item,自定义设计 */import React, { Component } from 'react';class DanmaItem extends Component { constructor(props) { super(props); } render() { /**这些数据是DanmaData解构及控制的Style */ //"DanmaData:{data1:1,data2:2}" co

2022-05-04 15:12:01 1387

原创 【Reactjs】数字滚动组件

使用<ScrollNumItem num={9} />scrollNumItem.jsximport React, { Component } from "react"import './scrollNumItem.less';export default class ScrollNumItem extends Component { constructor(props) { super(props) this.state = {

2022-05-04 14:33:24 586

原创 【React.js 队列弹窗】

使用方式: import Demo from "./components/demo/demo.jsx"; /** * 注册弹窗 * @param {*} enumComKey 弹窗类名Key * @param {*} components 弹窗 */ registerWin("Demo", Demo) /** * 展示弹窗 * @param {*} enumComKey 弹窗类名 * @param {*} data 数据 默认{} * @param {*} immedia

2022-05-04 10:49:57 300

原创 59. 螺旋矩阵 II

给你一个正整数 n ,生成一个包含 1 到 n2 所有元素,且元素按顺时针顺序螺旋排列的 n x n 正方形矩阵 matrix 。https://leetcode.cn/problems/spiral-matrix-ii/瞎写的function convert(n) { let matrix = [] for (let i = 0; i < n; i++) { matrix[i] = new Array(n) for (let j = 0; j

2022-04-28 10:06:56 193

原创 54. 螺旋矩阵 JS

https://leetcode-cn.com/problems/spiral-matrix//** * @param {number[][]} matrix * @return {number[]} */var spiralOrder = function (matrix) { let backArr = [] let max = matrix.length * matrix[0].length let i = 0, j = 0 let sta.

2022-04-26 18:08:41 312

空空如也

空空如也

TA创建的收藏夹 TA关注的收藏夹

TA关注的人

提示
确定要删除当前文章?
取消 删除