摘要:
chocolatey安装 1.管理员身份打开cmder,执行如下命令 @powershell -NoProfile -ExecutionPolicy unrestricted -Command "iex ((new-object net.webclient).DownloadString('http 阅读全文
摘要:
git配置比较工具 1.修改.gitconfig文件 [diff] tool = bc4 [difftool] prompt = false [difftool "bc4"] cmd = "\"C:/Users/xxx/AppData/Local/Beyond Compare 4/BComp.exe 阅读全文
摘要:
golang 字符串拼接 1. 使用+拼接 s := "" s += "aaa" 2. 使用fmt.Sprintf s = fmt.Sprintf("%s%s",str1,str2) 3.使用strings.Builder var builder strings.Builder builder.Wr 阅读全文
摘要:
Go generate使用 1.安装stringer 安装好的stringer命令位于$GOPATH/bin目录下,强烈建议将这个目录加入系统PATH中。 go get golang.org/x/tools/cmd/stringer 或者 $ git clone https://github.com 阅读全文