打赏
摘要: 显示器分辨率修改工具 QuickChangeResolution工具 https://www.pazera-software.com/get/?pid=4183&ft=w64p&dlt=d&f=QuickChangeResolution_64bit_PORTABLE.zip 2.AIDA64屏幕检测 阅读全文
posted @ 2022-10-19 11:45 苍山落暮 阅读(642) 评论(0) 推荐(0) 编辑
摘要: git 忽略本地修改文件 1. .gitignore文件 显式地阻止提交文件, .gitignore 文件本身提交至远程仓库,全组共享忽略文件配置 # 忽略后缀为.class文件 *.class # 忽略文件夹 bin/ # 忽略名称中末尾为ignore的文件夹 *ignore/ # 忽略名称中间包 阅读全文
posted @ 2022-10-19 11:44 苍山落暮 阅读(2416) 评论(0) 推荐(0) 编辑
摘要: Websocket抓包 (1.)通过wirshark抓,需要在websocket连接的时候开始抓,如果已经连上则抓不到包 # 显示指定端口,http和websocket协议的数据包 tcp.port == 8088 && (http || websocket) # 说明: 必须从WebSocket建 阅读全文
posted @ 2022-10-19 11:42 苍山落暮 阅读(351) 评论(0) 推荐(0) 编辑
摘要: pytest自动化测试 1.下载源代码 https://github.com/zhangshan33/ATScripts 2.下载依赖库 阿里 https://mirrors.aliyun.com/pypi/simple/ 清华 https://pypi.tuna.tsinghua.edu.cn/s 阅读全文
posted @ 2022-10-19 11:42 苍山落暮 阅读(79) 评论(0) 推荐(0) 编辑
摘要: 网络调试工具 1. NetAssist 网络调试助手 https://www.cr173.com/soft/1188734.html 2. sokit http://sokit.soft32.com/ https://github.com/sinpolib/sokit/releases https: 阅读全文
posted @ 2022-10-19 11:38 苍山落暮 阅读(199) 评论(0) 推荐(0) 编辑
摘要: typora主题设置 1.文件 → 偏好设置 选择 【外观】 → 主题【获取主题】 2.手动下载主题,添加到 文件 → 偏好设置 选择 【外观】 → 主题 -> 打开主题文件夹 https://www.typora.net/themes/ 下载后,解压到对应的目录,重启即可 相关链接 https:/ 阅读全文
posted @ 2022-10-19 11:38 苍山落暮 阅读(162) 评论(0) 推荐(0) 编辑
摘要: chocolatey安装 1.管理员身份打开cmder,执行如下命令 @powershell -NoProfile -ExecutionPolicy unrestricted -Command "iex ((new-object net.webclient).DownloadString('http 阅读全文
posted @ 2022-10-19 11:38 苍山落暮 阅读(466) 评论(0) 推荐(0) 编辑
摘要: git配置比较工具 1.修改.gitconfig文件 [diff] tool = bc4 [difftool] prompt = false [difftool "bc4"] cmd = "\"C:/Users/xxx/AppData/Local/Beyond Compare 4/BComp.exe 阅读全文
posted @ 2022-10-19 11:36 苍山落暮 阅读(275) 评论(0) 推荐(0) 编辑
摘要: golang 字符串拼接 1. 使用+拼接 s := "" s += "aaa" 2. 使用fmt.Sprintf s = fmt.Sprintf("%s%s",str1,str2) 3.使用strings.Builder var builder strings.Builder builder.Wr 阅读全文
posted @ 2022-10-19 11:33 苍山落暮 阅读(43) 评论(0) 推荐(0) 编辑
摘要: Go generate使用 1.安装stringer 安装好的stringer命令位于$GOPATH/bin目录下,强烈建议将这个目录加入系统PATH中。 go get golang.org/x/tools/cmd/stringer 或者 $ git clone https://github.com 阅读全文
posted @ 2022-10-19 11:33 苍山落暮 阅读(88) 评论(0) 推荐(0) 编辑