挨踢而思 挨踢了,就要学会思考。

[Go] Windows/Linux/Mac交叉编译成指定系统的二进制可执行文件

一般我们在windows获取mac开发代码 , 编译的时候如果要编译成指定系统的二进制文件 , 这时就需要使用交叉编译 1. 在Windows下编译Mac, Linux 编译成 Mac SET CGO_ENABLED=0 SET GOOS=darwin SET GOARCH=amd64 go bui

Administrator Administrator 发布于 2024-09-13

git 设置全局用户名和邮箱

在 Git 中设置用户名和邮箱是非常重要的步骤,它可以帮助你标识你的提交。以下是设置用户名和邮箱的方法: 一、设置用户名 打开命令行终端。 输入以下命令设置用户名: git config --global user.name "你的用户名" 二、设置邮箱 在命令行终端中,输入以下命令设置邮箱:

Administrator Administrator 发布于 2024-09-12

Linux 安装go/升级go版本

1.下载安装包 # wget 后面的下载链接请去golang官网(https://golang.google.cn/dl/)获取你想下载的对应go版本 sudo wget https://golang.google.cn/dl/go1.23.0.linux-amd64.tar.gz # 解压文件 s

Administrator Administrator 发布于 2024-09-03

Docker镜像加速说明

Docker 镜像地址(20240829更新) -----推荐----- https://docker.1panel.live https://docker.m.daocloud.io https://docker.nastool.de https://dockerpull.com https://

Administrator Administrator 发布于 2024-08-29

GitHub Proxy 代理加速

目前可用代理列表 (更新时间:2024年8月19日) https://mirror.ghproxy.com/ https://cf.ghproxy.cc/ https://gh-proxy.com/ https://gh.ddlc.top/ https://gh.api.99988866.xyz/

Administrator Administrator 发布于 2024-08-19

免费代理IP-自动更新地址

https://github.com/TheSpeedX/PROXY-List https://raw.githubusercontent.com/TheSpeedX/SOCKS-List/master/socks5.txt https://raw.githubusercontent.com/T

Administrator Administrator 发布于 2024-08-06

Linux 压缩打包命令 zip tar gz bz

01-.tar格式 解包:[*******]$ tar xvf FileName.tar 打包:[*******]$ tar cvf FileName.tar DirName(注:tar是打包,不是压缩!) 02-.gz格式 解压1:[*******]$ gunzip FileName.gz 解压2

Administrator Administrator 发布于 2024-08-06

yum 安装 字体库,含中文字体

yum -y groupinstall fonts yum -y groupinstall "fonts" --setopt=group_package_types=mandatory,default,optional 查询系统内中文字体: fc-list :lang=zh

Administrator Administrator 发布于 2024-08-06

阿里云ECS 设置Multicast组播功能(keycloak JGroups MPING)

以下分别对两台ECS作multicast功能配置。 2.1 安装Multicast 下载multicast代理: https://github.com/aliyun/multicast_proxy 选择multicast_kernel目录,分别生成server端和client端: sh tmcc_c

Administrator Administrator 发布于 2024-08-06

Docker 搭建私有DNS服务器-coredns

1.拉取镜像 docker pull coredns/coredns:latest 2.创建配置文件 vim /etc/coredns/Corefile .:53 { hosts { 1.1.1.1 oa1.xxx.cn 1.1.1.2 oa2.xxx.cn

Administrator Administrator 发布于 2024-08-06

git仓库迁移脚本

git_move.sh 脚本用于把git,从旧仓库,迁移到新仓库 git_move.sh 支持两个参数:源仓库地址,目的仓库地址 执行示例: sh git_move.sh git@git.xxxx/test.git ssh://git@jr.xxxx.com/test.git 脚本执行前,必须确保如

Administrator Administrator 发布于 2024-08-06

fiddler 自定义 script

向指定链接发送指定文本 import System.Web; //发送指定请求 if (!oSession.fullUrl.Contains("127.0.0.1")) { //var url = oSession.url; var url = oSession.fullUr

Administrator Administrator 发布于 2024-08-06