Cody Schafer
Cody Schafer
@Ko496-glitch sure. 👍 For reference, [`sd_listen_fds_with_names()`](https://www.freedesktop.org/software/systemd/man/latest/sd_listen_fds.html) is the function systemd provides for C code to obtain this info, and the man page linked here also has some details on the...
It looks like you're doing "HOST" searches here and are using macos. Is it possible that the hostname macos is reporting is different between the time when the command is...
@NeckBeardPrince > Hmmm interesting, I just installed 15.1. Are you saying that on 15.0 you should no longer have this issue, and you don't need to run `scutil --set HostName...
> For this to work we'd need a full list of inputs and outputs for the build script up-front Even knowing the list of inputs & outputs _after_ a single...
Hmm... one can still construct a email address that the current code will consider a UUID: ``` iex(69)> a = "123456A§@abc.us" iex(70)> Ash.Type.cast_input(:uuid, a) {:ok, "31323334-3536-41c2-a740-6162632e7573"} iex(71)> ``` Requires a...
As rustc is itself written in rust, you'll need to initially cross compile rustc on a system that has a rustc snapshot already. Not sure if we have specific docs...
@miniupnp not quite. Assuming your goal is to have a rust compiler that runs on `powerpc-apple-darwin`, I meant `./configure --host=powerpc-apple-darwin` (on a build machine that already has rust support). That...