Andrew
Andrew
Hi, I enjoy Simple Comic, but unfortunately it has trouble providing a pleasing display for comics with small dimensions. Think postage stamp comics, around 200^2 pixels. Especially on high resolution...
Executable names are wonky. For example, `/usr/bin/python3 /usr/share/unattended-upgrades/unattended-upgrade-shutdown --wait-for-signal` is truncated to `unattended-upgr`. `unattended-upgr` is not the real executable name. It's not even a filename. It's an incomplete part of...
Hi, I am happy to report that process querying is working well with go-ps. Could we add a portable Terminate() function to the process interface? This can help developers to...
I have a need to show the complete list of processes, so that Go code running inside Windows Subsystem for Linux reports not only the Linux processes, but the native...
Hi, I am configuring gox to output: * Linux RISV-V targets (`linux/riscv`) * Windows ARM64 targets (`windows/arm64`) * FreeBSD ARM64 targets (`freebsd/arm64`) * Linux, Windows, and FreeBSD AMD64 targets The...
Gox is fantastic at streamlining the process of building ports for many different systems. Could Gox somehow help to organize ports targeting the different libc variants, such as exposing the...
Windows ARM and ARM64 are missing. Honestly, the gox database appears to have fallen behind the regular Go releases, in terms of basic target tuple support. https://gist.github.com/asukakenji/f15ba7e588ac42795f421b48b8aede63 Working around this...
Would be great to expose GoCrossCompile() as a library call, so that Go build tools like [Mage](https://magefile.org/) can trigger gox builds without requiring quite as many raw exec.Command invocations!
gox often tries to build target tuple combinations that are unavailable, forcing me to run several different custom gox calls instead of a simple `gox` run. For example, when I...