bb010g

Results 88 comments of bb010g

Ideally? All of them. `st_mtime`, `st_ctime`, & `st_atime` are standard file system fields, `st_size` is being returned anyways from this call and useful, `st_mode` allows for [making files visible to...

There's one linked in the VitaShell commit? As for documentation, VitaSDK's Doxygen seems to cover it pretty alright; Unix's `chmod(2)` is also pretty similar. https://manpage.me/index.cgi?q=chmod&sektion=2&manpath=OpenBSD+6.2

Ran into this pattern while chaining an `OnceCell`; using `Iterator::chain` caused evaluation to happen too early.

I also don't like the unset variable subtlety in this proposal, but I don't know a cleaner way to deal with backwards compat while not messing up a potential future...

Ah, a per-extension configuration variable makes sense and is a lot less obtrusive for repositories. However, I don't like how new extensions could sneak back on by default if registered...

I like Dhall, but Eno has muuch better syntax IMO for basic templating situtations than Dhall. Dhall is a (Turing-incomplete) language, with executable semantics, while Eno is much more of...

Is a mutex strictly necessary here? I'm not familiar with nng code, but browsing around some, it seems you're mixing an ordering / state transition problem with an exclusivity problem....

Using a MWE `conftest-2.c` of: ```c #include int main() { FILE *f = fopen("conftest.out", "w"); return ferror(f) || fclose(f) != 0; } ``` Compiling with `/nix/store/vmg52dd5bdjz8syv73irk4isdyj30x82-gcc-wrapper-9.2.0/bin/cc -fuse-ld=gold -o conftest-2 conftest-2.c`...

NixOS/nixpkgs#49071 might be our issue here?

After chasing issues down, it looks like NixOS/nixpkgs#84741 fixed this problem, and applying NixOS/nixpkgs@acfccf7f5ba83ce4ec279ce4416e5de5edca2fb7 to `nixos-20.03` lets GHC build properly.