英文: Go code to list files in a Linux directory using getdents() 问题 作为练习,我想将一些使用了许多系统调用的 C 代码翻译成 Gola...
Go: serving http directory with subdirectories
英文: Go: serving http directory with subdirectories 问题 我有一个文件服务器层次结构: /tmp/core/css/*.css /tmp/core/j...
在Go语言中使用Windows的DLL库,编译为Linux和Mac OS X平台。
英文: Use windows dll libraries in go, compiled for linux and mac os x 问题 我想知道在我的Go项目中,是否有机会在编译为Mac OS...
使用Go运行带参数的sh/bash/python脚本。
英文: Running sh/bash/python scripts with arguments using Go 问题 我已经卡在这个问题上几天了,我试图运行一个基于第一个参数的bash脚本(也许...
Go, sudo, and apache port 80
英文: Go, sudo, and apache port 80 问题 我正在使用golang中的gorilla/mux包,但是遇到了一些问题。首先,我没有权限在我的应用程序上使用端口80,因为当使用...
如何在Linux上编译跨平台的Go语言项目?
英文: How to compile cross-platform Go language project on Linux? 问题 我正在尝试在Linux上设置我的Go编译器,以便可以为任何其他架构...
使用多个参数运行Linux命令
英文: Running Linux commands with multiple arguments 问题 在进行一些调查后,我可以像这样从Go中运行Linux命令: func main() { ls...
Go在使用time.Tick时会导致OpenGL崩溃,但使用time.After则不会。
英文: Go causes OpenGL to segfault with time.Tick but not time.After 问题 我有以下两个文件: bridge.go: package c...
如何降低在Linux上运行的Go进程的占用空间?
英文: How can I lower the footprint of a Go process running on Linux? 问题 我想在内存非常有限的设备上执行使用Go编写的“Hello ...
ngrok在防火墙后面是如何工作的?
英文: How does ngrok work behind a firewall? 问题 Ngrok(https://ngrok.com/)可以通过转发来将本地端口和服务暴露给全球网络。但是,如果我...
85