Rebecca Turner
Rebecca Turner
I'm a little perplexed that `git-revise` doesn't just use the built-in `git commit` signing process. Is there a reason it can't?
Agreed that support for float durations would be really nice (I want to be able to parse `0.5 seconds`). I do understand not wanting to open this can of worms...
Hello! I’m assuming you [have Python 3 installed](https://www.python.org/downloads/) and you’ve downloaded the code as a zip and extracted it… somewhere? Here’s what you’ll need to run it. `cmd` is a...
This PR doesn't compile on GHC 9.6 yet. Here's a patch to enable support: ```patch --- a/src/Hint/PatternWildCard.hs +++ b/src/Hint/PatternWildCard.hs @@ -1,3 +1,4 @@ +{-# LANGUAGE CPP #-} {- Warn against...
> Under unix you're not really supposed to do that (call wait twice) though. Ah, that's the context I was missing. I read the `waitpid(2)` `man` page but I didn't...
This seems to work, although I had to write the `killpg` call myself because the borrow checker complained about calling `AsyncCommandGroup::kill` when I had the `AsyncCommandGroup::wait` future still pending. ```rust...
Current behavior: ``` # Subject Updat Owner Status 682 Format Nix code with `nixfmt` 22:25 rbt open ✗ 778 Add `nixfmt` 22:17 rbt wip ✗ ``` Here I've chosen the...
> Additionally, having this as a constraint would prevent usage of any of the other constraints, which doesn't make a lot of sense. For a particular column? Yeah, that's correct....
...Huh. I'd noticed the "default" stylesheet but assumed it was just a new stylesheet. The reduced whitespace, particularly around the table of contents, makes it much easier to parse. I...
That's correct. I don't want concurrent writes to the database, I want `hiedb` to wait for the database lock to be released instead of exiting with an error. Currently the...