Casey Rodarmor

Results 1063 comments of Casey Rodarmor

Thanks for the report! > Should I pull the relevant code changes from https://github.com/casey/just/pull/2344 and put a new PR in addressing the bug? Yes, that would be awesome!

Thanks for the report! Well that is annoying 😅 I submitted the 1.43.0 `just.exe` binary to Microsoft, hopefully they add an exception.

Thanks for the report! CTRL-C sends SIGINT to both `just` and the python subprocess. Just records receipt of SIGHUP, SIGINT, and SIGQUIT when it receives them, and if a child...

Thanks for creating this issue! I think that we should probably treat this like as a behavior bug and not a documentation bug. If you look at `Search::global_justfile_paths()` it uses...

I'm having the same issue, but cannot work around it by downgrading because I rely on a dependency, `softprops/action-gh-release` to upload release artifacts, so I can't control how it uploads...

This would be really nice to have, I found myself wondering about what the argument does today while setting up a new project that uses cpal.

Oh yeah, in particular I'm curious about efficiency. A downside of this approach is that the database has to open and close tables for each query, instead of reusing them.

One cool thing would be if you could express table definitions fully in the type system, i.e., by using the table name as a const generic, in which case you...

I added an example in the tests using a closure, which allows you to pass in outside arguments. I also added an example using a struct and implementing query manually,...

I'm not, but I'll try it out and see how it works in practice.