Darren Schroeder

Results 2076 comments of Darren Schroeder

ok, if I'm understanding you correctly, I think you're saying that nushell should follow the linux precedent of where files are placed? It seems like the location has to be...

IMO, `find` and `where` are similar but different and fulfill different use cases. Here are just a few use cases where they differ. 1. `ls | where size < 10kb`,...

Hmm, 🤔 I just registered the python plugin without issue like this `register crates/nu_plugin_python/nu_plugin_python_example.py`.

Generally speaking, you can't use variables with `register`, you need a full path. The same is true for all of these type commands like `source`. You can see this in...

FWIW, I was able to add these two lines and update the `use` statements and get the tests to work. ```rust working_set.add_decl(Box::new(IntoDatetime)); working_set.add_decl(Box::new(IntoFilesize)); ``` cargo test -p nu-command date::format::test::test_examples this...

I'm definitely willing to explore that and see how it goes. The problem is that I don't remember exactly the limitation. @sholderbach mentions that startup time was bad. That may...

yes, i would still like nushell's group-by to work better, specifically more like csv-group-by linked above.

inspiration, yes. code, probably not. dataframe's tables are very different from nushell's tables.

it would be cool to have a smarter group-by in engine-q.

I'm down with just about anything that makes group-by better. I try not to use it now unfortunately.