Yannik Sander

Results 138 comments of Yannik Sander

FWIW at least in the rust case `std::env::current_exe` is often used for such usage notes but is implemented by looking up `/proc/self/exe` ```rust pub fn current_exe() -> io::Result { match...

triage notes: > exit after showing the N most recent logs ~currently (or last time i checked), process compose just blocks with no output once a process has finished~ ~If...

Actually, since we don't know the total order of log lines, with the current implementation we will receive up to `n` logs per process more or less _instantaniously_, i.e. with...

> When not within in activation > - an error is returned because we are only supporting services within activations for now. With the watchdog and all is this still...

I've been looking into this a bit more. Are you sure there are still "debug assertions to make sure the Id is a valid Arg or Group Id" in the...

Oh my that happens when you start off with existing work and mess up your rebase. So those lines 290 - 300 were _my_ changes from investigating the original subgroups...

Hej, thank you for using flox! `flox` should pick up any `SSL_CERT_FILE` variable already set up: https://github.com/flox/flox/blob/3789c408182f1b1e60b44f55f496f5939e9a41be/cli/flox/src/utils/mod.rs#L46-L53 I figure you on nixos `NIX_SSL_CERT_FILE` is set instead and we don't yet...

> add another flag to allow specifying this considering that the semantics are different ones ("container target" vs "building runtime") i'd prefer a separate flag

Would checking for an env var work? Instead of adding a new flag, that would override the default or --remote if given? IMO these are different uses and in the...

I take this is likely rather uncommon, but it itches me a bit that `--runtime --runtime ` should theoretically be possible but isn't. Also semantic overloading is a bit of...