上一页 1 2 3 4 5 6 ··· 108 下一页
摘要: 私有仓库引用配置 go env -w GOPRIVATE=git.hauwie.com git config --global --add url.ssh://git@git.hauwie.com:7033.insteadof https://git.hauwie.com 日志库引用,go.mod文 阅读全文
posted @ 2024-01-17 17:09 jiftle 阅读(47) 评论(0) 推荐(0) 编辑
摘要: windows开放端口的方法(win10) 先从控制面板,进入到Windows Defender防火墙点击高级设置,点击入站规则点击右边的新建规则,点击端口,点击下一步 选择协议类型和端口号点击下一步即可 阅读全文
posted @ 2024-01-17 15:13 jiftle 阅读(204) 评论(0) 推荐(0) 编辑
摘要: 添加右键菜单 复制以下内容,创建11.reg 执行 Windows Registry Editor Version 5.00 [HKEY_CLASSES_ROOT\Directory\Background\shell\OpenMsys2Here] @="Open msys2 here" "Icon" 阅读全文
posted @ 2024-01-12 22:24 jiftle 阅读(41) 评论(0) 推荐(0) 编辑
摘要: void PrintBuffer(void* pBuff, unsigned int nLen) { if (NULL == pBuff || 0 == nLen) { return; } const int nBytePerLine = 16; unsigned char* p = (unsign 阅读全文
posted @ 2024-01-10 10:25 jiftle 阅读(24) 评论(0) 推荐(0) 编辑
摘要: [NO.1 2012-06-28 12:17:11 948 SEND 111字节] 02 2E 4B 00 91 33 AC 8C BA 02 56 02 00 00 00 01 01 01 00 00 65 74 4D 38 64 C9 CA 67 1F FC 47 F7 A1 20 1D E4 阅读全文
posted @ 2024-01-05 23:39 jiftle 阅读(108) 评论(0) 推荐(0) 编辑
摘要: UPX 是什么 UPX 全称是 "Ultimate Packer for eXecutables",是一个免费、开源、编写、可扩展、高性能的可执行程序打包程序。换句话说一个可执行文件的压缩工具。主要的功能是将可执行的二进制程序、动态链接库和其他的二进制文件压缩为更小的体积,UPX 通常可以将文件大小 阅读全文
posted @ 2023-12-28 14:52 jiftle 阅读(880) 评论(0) 推荐(0) 编辑
摘要: func Lock() { lockFile := "./lock.pid" lock, err := os.Open(lockFile) if err == nil { defer lock.Close() filePid, err := ioutil.ReadAll(lock) if err = 阅读全文
posted @ 2023-12-22 10:17 jiftle 阅读(26) 评论(0) 推荐(0) 编辑
摘要: log4j or log4j2 关闭spring框架日志输出 <Loggers> <Logger name="io.netty" level="off" additivity="false"> <AppenderRef ref="FileJson"/> </Logger> <Logger name= 阅读全文
posted @ 2023-12-20 10:40 jiftle 阅读(100) 评论(0) 推荐(0) 编辑
摘要: package main import ( "fmt" "io" "os/exec" ) func main() { fmt.Println("vim-go") // pipeReader, pipeWriter := io.Pipe() binPath := "../03-ncpk-nvm/nvm 阅读全文
posted @ 2023-12-16 16:37 jiftle 阅读(54) 评论(0) 推荐(0) 编辑
摘要: https://geek-docs.com/go-tutorials/go-examples/g_io-pipe-function-in-golang-with-examples.html 在Go语言中,io包提供了基本的I/O原语接口,其主要工作是封装这些原语的正在进行的实现。Go语言中的 Pip 阅读全文
posted @ 2023-12-16 12:20 jiftle 阅读(111) 评论(0) 推荐(0) 编辑
上一页 1 2 3 4 5 6 ··· 108 下一页