常用工具
导航
Bing | Baidu | |
ChatGPT | Youtube | V2EX |
Github | Gitlab | Bitbucket |
Kubernetes | Hoppscotch |
工具
说明 | 网址 |
---|---|
模拟图片/图像 | https://fakeimg.pl/ https://dummyimage.com/ |
随机图片 | https://picsum.photos/ https://source.unsplash.com/710x320 |
xml转go struct | https://www.onlinetool.io/xmltogo/ |
json转go struct | https://mholt.github.io/json-to-go/ |
sql转go struct | http://sql2struct.atotoa.com/ |
VeraCrypt | https://www.veracrypt.fr/ |
ys dirve | http://cnbattle.ys168.com/ |
模拟图片/图像 fakeimg.pl
生成带中文的图片,自定义字体大小
&font_size=30
示例
https://fakeimg.pl/1400x500/282828/eae0d0/?retina=2&text=这一段很长很长很长很长很长很长很长很长很长很长很长很长很长很长很长很长的中文&font=noto&font_size=30
不带 &font_size=30
https://fakeimg.pl/1400x200/282828/eae0d0/?retina=2&text=这一段很长很长很长很长很长很长很长很长很长很长很长很长很长很长很长很长的中文&font=noto
带 &font_size=30
https://fakeimg.pl/1400x200/282828/eae0d0/?retina=2&text=这一段很长很长很长很长很长很长很长很长很长很长很长很长很长很长很长很长的中文&font=noto&font_size=30
WSL
https://github.com/yuk7/ArchWSL
配置
# 更新系统 安装软件
pacman -Syyu
pacman -S docker git go zsh
# 安装 oh-my-zsh
sh -c "$(curl -fsSL https://raw.githubusercontent.com/ohmyzsh/ohmyzsh/master/tools/install.sh)"
# goproxy
go env -w GO111MODULE=on
go env -w GOPROXY=https://goproxy.cn,direct
Docker
安装docker
curl -fsSL https://get.docker.com | bash -s docker --mirror Aliyun
sudo groupadd docker #添加docker用户组
sudo gpasswd -a $USER docker #将登陆用户加入到docker用户组中
newgrp docker #更新用户组
源
sudo echo {\"registry-mirrors\": [\"https://n3kgoynn.mirror.aliyuncs.com\"] } > /etc/docker/daemon.json
sudo systemctl daemon-reload && sudo systemctl restart docker
{
"registry-mirrors": ["https://n3kgoynn.mirror.aliyuncs.com"]
}
Portainer
docker volume create portainer_data
# 社区版
docker run -d -p 0.0.0.0:30900:9000 --name=portainer --restart=always -v /var/run/docker.sock:/var/run/docker.sock -v portainer_data:/data portainer/portainer-ce:[v]
# 企业版, 可免费申请5台内的许可授权
docker run -d -p 0.0.0.0:30900:9000 --name=portainer --restart=always -v /var/run/docker.sock:/var/run/docker.sock -v portainer_data:/data portainer/portainer-ee:[v]
Postman v9
https://dl.pstmn.io/download/version/9.31.28/win64
https://dl.pstmn.io/download/version/9.31.28/osx64
https://dl.pstmn.io/download/version/9.31.28/osx_arm64
https://dl.pstmn.io/download/version/9.31.28/linux_64