Kurtis Rader
Kurtis Rader
I just read http://www.oilshell.org/blog/2022/05/release-0.10.0.html. It's pretty clear that the Oil shell project also recognizes that the POSIX standard is a mess and is attempting to fix the POSIX warts by...
In light of @xiaq's response to my solution for issue #1385, wherein they introduced a `runtime` module, I'm going to assume they would prefer this variable to exist in that...
For anyone inclined to implement this note that Elvish already depends on `github.com/mattn/go-isatty` which provides an OS agnostic API for determining whether an open file refers to a tty.
FYI, I started work on implementing this. Which quickly revealed an obvious, in hindsight, challenge to using such a command. Consider that the POSIX `test -d $fd` returns a non-zero...
More context in the commit comment would be helpful. What does this do? What problem does it solve? Why isn't there a unit test?
> There's already test for move-dot-right and close-mode. And I didn't thought there this requires additional test. Correct me if I'm wrong. You're introducing a definition for a new key...
@aca You wrote "I added some context in PR." However, this pull-request wasn't updated. Did you neglect to do a `git push -f` Also, your change still needs to include...
It is probably better to dynamically size the default number of benchmark runs based on the time to run each benchmark; rather than hardcode the default to a value like...
This [issue](https://github.com/google/benchmark/issues/746) is interesting. It's semi-relevant since it applies to a C++ benchmark framework but the issues it explores are relevant to benchmarks of any other language. I've read many...
Other prior art is the Python `sorted` command: https://docs.python.org/3/howto/sorting.html. However, note this statement in that documentation: > The value of the key parameter should be a function (or other callable)...