Vladimir Panteleev
Vladimir Panteleev
Is this the same as https://github.com/dlang/dub/issues/2651 ? Note that you need `--temp-build` to make Dub not try to write to the package cache. https://github.com/dlang/dub/pull/2652 fixes a remaining occurrence of an...
I think at some point Dub started using a YAML parser for `dub.json`. YAML is a superset of JSON so existing files "just work". But this also means you can...
I think Dub should be the only software parsing Dub configuration files. Trying to do it any other way is where the problems start. If we start saying "we can't...
OK, but therefore we should not have made Dub use a YAML parser for `dub.json`, right?
@larskanis Can you use that process to sign Windows executables? I believe Microsoft may have more stringent standards towards current signatures, so hardware issued by Certum in 2018 might no...
I'm not sure that looping is the best way to handle this situation. It will put the program into a busyloop which keeps asking the OS to write data and...
> Duplicating the file descriptor will share the blocking properties, so that's not an option. Hm, yeah. > Despite the added complexity, wouldn't `select` also interfere with users event pollers?...
> I think I misinterpreted select. I thought that listening to the same descriptor it wont notify both. Well, could be an option. How would you suggest to use it?...
> Since the file descriptors are shared you can't control them, so, in theory, every program should handle these cases, it just happens to be an edge case, in most...
Philosophy aside, here are some blockers which I think would make sense to address before we decide that we should support this situation in `std.stdio`: - [ ] Major programming...