Casey Rodarmor

Results 1064 comments of Casey Rodarmor

Yup. `[private]` hides recipes from `--summary`, so presumably it would also hide modules.

Very cool idea! I think we should add it first behind a flag, and then later think about turning it on automatically if `GITHUB_ACTIONS`, depending on whether grouped logs are...

Sounds good. We should do whatever is most usable. I don't really know what grouped logs look like, so if giving each recipe line its own group looks good, then...

Closing, since I think this is working.

I think that's pretty reasonable. There's a `help_heading` feature that clap provides, that we already use to separate commands from other options, so this would just require using different headings...

It would be pretty annoying to have to type `--sys`. Also, this would be a very disruptive breaking change.

I've been working on speeding up transaction fetching, and there are a bunch of annoying issues and tradeoffs. We currently use the JSON-RPC API, which is text-based, so transaction are...

Multithreading is quite hard. Individual transactions can be processed serially, but the coinbase transaction of each block cannot, because it depends on all the transaction in that block. Additionally, I...

I think this is actually pretty doable. This is technically a breaking change, since someone could have a path with `*` in it, which this would break, but that's so...

I don't really assign issues, but you're free to take a crack at it! I'm super slammed at the moment with another project, so I might not be able to...