摘要: 起因 在 windows10 64位 下测试 C 和 Go 效率都差不多 但 Go 编译出来的文件比 C 编译出来的还大 个人感觉简单的 Hellow world 都这么大,体积太夸张了 所以查询了一些关于 Go 的编译优化,得出了下面两个方案 优化方案 第一步:编译优化 使用一下指令进行编译: g 阅读全文
posted @ 2022-12-15 16:23 黄彬子 阅读(333) 评论(0) 推荐(0) 编辑
摘要: URL:https://cloud.tencent.com/developer/article/1997890 使用 UPX 压缩可执行文件 发布于2022-05-09 20:34:03阅读 1.4K0 UPX 可以有效地对可执行文件进行压缩,并且压缩后的文件可以直接由系统执行,支持多系统和平台。 阅读全文
posted @ 2022-12-15 16:20 黄彬子 阅读(328) 评论(0) 推荐(0) 编辑
摘要: package main import ( "fmt" "path" "path/filepath" ) func main() { filePath := "D:/DDPS/log/log.txt" paths, fileName := filepath.Split(filePath) fmt.P 阅读全文
posted @ 2022-12-15 15:06 黄彬子 阅读(913) 评论(0) 推荐(0) 编辑
摘要: 参考URL:go - 如何将gin模式设置为release模式? - IT工具网 (coder.work) 我需要将 gin 模式设置为 release 模式。我应该怎么做? 现在,当我运行我的 API 时,会出现如下提示: [GIN-debug] [WARNING] Running in "deb 阅读全文
posted @ 2022-12-14 11:49 黄彬子 阅读(1480) 评论(0) 推荐(0) 编辑
摘要: 生成的图片: package main import ( "fmt" "math" ) const ( width, height = 1200, 820 cells = 100 xyrange = 30.0 xyscale = width / 2 / xyrange zscale = height 阅读全文
posted @ 2022-11-03 17:22 黄彬子 阅读(386) 评论(0) 推荐(0) 编辑
摘要: 参考: flag学习 Golang Flag包使用介绍 0.前言 一个可执行文件,我们可以使用不同的启动参数来控制程序的行为。如果程序仅仅读取命令行输入来控制程序的行为,那么这个程序的使用体验一定很差。为了提供用户体验,程序的开发者需要给用户提供如下信息: 启动参数的名称 启动参数的说明 启动参数的 阅读全文
posted @ 2022-11-03 14:54 黄彬子 阅读(278) 评论(0) 推荐(0) 编辑
摘要: golang:exported function Script should have comment or be unexported 当自己定义的包被外部使用时,如果不遵循一定的规范,那么会出现讨厌的绿色纹条,还会警告: 虽然不会影响运行,但是也令人讨厌,那么如何解决这个问题呢? 为结构体或者变 阅读全文
posted @ 2021-02-04 15:59 黄彬子 阅读(1010) 评论(0) 推荐(0) 编辑
摘要: 配置文件 :wgetrc 配置项: 1)代理设置 # You can set the default proxies for Wget to use for http, https, and ftp.# They will override the value in the environment. 阅读全文
posted @ 2021-02-02 11:37 黄彬子 阅读(687) 评论(0) 推荐(0) 编辑
摘要: Rust Crates 源使用帮助 — USTC Mirror Help 文档 Windows 用户在使用 crates 源时可能会出现 next InitializeSecurityContext failed: Unknown error 错误(见 https://github.com/ustc 阅读全文
posted @ 2020-12-25 16:29 黄彬子 阅读(181) 评论(0) 推荐(0) 编辑
摘要: 2020大风口!什么是图神经网络?有什么用?终于有人讲明白了 2020-01-17阅读 1.3K0 导读:2020年一开年,就有神秘大咖跟数据叔说:2020,两个事必火,一个是中台,一个是图神经网络。大咖还说,有数据为证,因为2019-2020年之间,图神经网络成为各大顶会的增长热词。 本文就带你全 阅读全文
posted @ 2020-09-27 15:02 黄彬子 阅读(583) 评论(0) 推荐(0) 编辑