Andrey Petrov
Andrey Petrov
Ah, so the `precision` parameter indicates the exact precision your output should have. For the first case, why `"60 seconds"` and not `"1 minute"`, this example should better illustrate the...
Kinda silly but here's a short script I'm using right now to find the latest version and uninstall all of the others: ```bash FLATPAK_LATEST_NVIDIA=$(flatpak list | grep "GL.nvidia" | cut...
@wokawoka You need both lines (you quoted just one), and it only does anything if there are outdated versions. Otherwise there's nothing to uninstall and it will complain. :) Feel...
IRC: https://tools.ietf.org/html/rfc2812 https://tools.ietf.org/html/rfc2813 At the very least, lots of lessons to be learned of what not to do. (Modes is possibly my least favourite part of the spec.) Also might...
https://github.com/42wim/mm-go-irckit/pull/3 looks related
@selfuryon I don't have strong feelings here, the bundle itself is comparatively large (50MB+) that I don't feel bad adding a few kb of dependencies. A separate flake in a...
HMM, good question, I'm not sure. Seems like `nix develop` is not any better, either. I appreciate you looking into this, I don't have time today to dive deeper here...
I don't disagree but not a problem I run into often enough to warrant it. :) I aim for solving the 80-90% case, the rest I'm happy to do manually.
> My guess was that we needed to use `extra_link_args=["gohttplib.a"]` to get `c-archive` mode to work. Then this happens: ``` ld: illegal text-relocation to 'type..eq.[0]string' in ../../build/gohttplib.a(go.o) from 'runtime.rodata' in...
Hmm will need to strace the command and try it. Though reading up more, getting the sense c-shared mode should be sufficient if/when #6 is done.