0%

剪格子 题目描述 问题描述 如下图所示,3 x 3 的格子中填写了一些整数。 +––+–+ |10 1|52| +—-+ |20|30* 1| ***–+ | 1| 2| 3| +–+–+–+ 我们沿着图中的星号线剪开,得到两个部分,每个部分的数

阿里: IPv4 DNS 地址: 223.5.5.5 223.6.6.6 IPv6 DNS 地址: 2400:3200::1 2400:3200:baba::1 腾讯: 119.29.29.29 119.28.28.28 114: 114.114.114.114 114.114.115.115 Linux 配置DNS sudo vim /etc/resolv.conf nameserver 223.6.6.6 Linux 换源 bash <(curl -sSL https://gitee.com/SuperManito/LinuxMirrors/raw/main/ChangeMirrors.sh)

箭头函数体内的this对象,就是定义该函数时所在的作用域指向的对象,而不是使用时所在的作用域指向的对象。 举例 var name = 'window'; // 其实是window.n

#!/bin/bash #================================================================ # Copyright (C) 2022 IEucd Inc. All rights reserved. # # FileName:rand.sh # Author:Colzry, colzry@163.com # CreateDate:2022-10-28 # De

1. 下载Frp wget https://gitpy.colzry.tk/github.com/fatedier/frp/releases/download/v0.48.0/frp_0.48.0_linux_amd64.tar.gz wget https://github.com/fatedier/frp/releases/download/v0.48.0/frp_0.48.0_linux_amd64.tar.gz 2. 服务端安装 2.1 解压文件 tar -zxvf frp_0.48.0_linux_amd64.tar.gz cd frp_0.48.0_linux_amd64/ cp frps /usr/local/bin/ 2.2 编写配置文件 mkdir /etc/frps vim /etc/frps/frps.ini [common] bind_port = 7000 token = czyadmin 2.3 启动 sudo vim /lib/systemd/system/frps.service [Unit] Description=Frp Server Service After=network.target [Service] Type=simple User=nobody Restart=on-failure RestartSec=5s ExecStart=/usr/local/bin/frps -c /etc/frps/frps.ini ExecReload=/usr/local/bin/frps reload -c /etc/frps/frps.ini

项目地址: https://github.com/hunshcn/gh-proxy 使用cloudflare免费的代理加速 网址: https://workers.cloudflare.com 先登录或注册 将下面的放入左侧的方框中(不需要任何的改动) 'use strict' /** * static files (404.html, sw.js, conf.js) */ const ASSET_URL =

1. 设置签名 git config --global user.name tom #设置用户名tom git config --global user.email xxx@qq.com #设置用户邮箱 2. 创建本地仓库 $ git init 3. 版本提交 3.1 状态查看 git status #查看工作区、暂存区状态 3.2 添加 git add

# 以下使用http代理 git config --global http.proxy http://127.0.0.1:10809 git config --global https.proxy https://127.0.0.1:10809 # 以下使用socks5代理 git config --global http.proxy socks5://127.0.0.1:10808 git config --global https.proxy socks5://127.0.0.1:10808 # 取消代理 git config --global --unset http.proxy git config --global --unset https.proxy git config --global url."https://gitpy.colzry.tk/".insteadOf https:// git config --global --remove-section url."https://gitpy.colzry.tk/"

常用命令 # 初始化模块 cd <mod_name> go mod init <mod_name> # 删除没用的依赖,下载位拉取的依赖 go mod tidy go mod使用 | 全网最详细