Enrico Scholz
Enrico Scholz
> > What is the current recommendation to get the final output name? > > Another workaround with `jq`. Use at your own risk: > > ``` > cargo build...
> Yes, all of Microsoft's new technologies... who cares about Microsoft? Atm, I login on my machine and get a krb5 ticket over `pam_sss`. Formerly I was immediately able to...
> In the post-driver world, a printer application running in the user session handles all of the Kerberos needed. This means, `lpr` will work as before? E.g. no prompt for...
> If someone checks config-include in their VCS, that must mean they want to share some configs This is a wrong assumption. People can use config-include for local configuration (e.g....
> Then I will argue why the crate author added an include pointing to nowhere in the first place, and committing it into VCS? I feel like it shouldn't have...
> If it were a silent ignore, how long would it take for people to figure out there is a typo in their include Make it explicit whether file is...
@joshtriplett ok; by looking at the speed of implementing new features, this means that cargo will probably never support optional configuration files :(
> I'm also curious what those extra settings would actually be ``` [build] target-dir = "/home/ensc/.cache/rust/r-tftpd" ``` or cargo vendor setup
A much more simple false positive is ```bash #!/bin/bash foo() { cd /abc } ``` ``` $ shellcheck /tmp/foo.sh In /tmp/foo.sh line 4: cd /abc ^-----^ SC2164 (warning): Use 'cd...
It is not trivial to implement a timeout at the place where `F_SETLK*` is called; I see the following ways: - setting an [alarm()](https://man7.org/linux/man-pages/man2/alarm.2.html) - this might interfere with other...