Gunnar Guðvarðarson

Results 90 comments of Gunnar Guðvarðarson

It works fine, just listen on `unix:///proc/self/fd/3`. You can test it using something like: `systemd-socket-activate -l /tmp/test.sock -- cargo run` bonus points by using idle timeout to exit when not...

> And to find out that the fd is 3, I use a dice ;)? It's part of systemd socket activation https://www.freedesktop.org/software/systemd/man/latest/systemd-socket-activate.html > Otherwise, standard input and output will be...

I'm making an apt package for my own app, adding a dependent package is trivial, adding a postinst that uses pip to install ping3 feels dirty.

Isn't the simple way to move orgs management over to crates.io db, have it managed there, instead of on github? Helps implementing https://github.com/rust-lang/crates.io/issues/326 i'd think.

Hey this is still broken, I have Kuando Busylight Alpha and while the program seems to pretend to be doing something, nothing happens on the light itself.

The above PR was merged 4 years ago, why is this issue still open?

I want to add that i've been using nftables on Centos 7 for over a year now i believe, on dozens of different servers both with and without nat, using...

I found a way to disable apparmor on docker. Just set the environment variable `container` to any value. `$ systemctl edit docker` ```systemd [Service] Environment=container="disable apparmor" ``` https://github.com/containerd/containerd/blob/8317959018015f6a1756ec8cd08be1093fd630a2/pkg/apparmor/apparmor_linux.go#L37 It entirely...

The only way I have found to get a specific server to work, is for example to add something like this to `speedtest.py` right above the `if (servers or exclude)...

So I managed to get using this hack i cobbled together: ```python import json import varlink def parse_signature(signature): _, return_type = signature.split('->') return_type = return_type.strip('() ') args = return_type.split(', ')...