David Anthoff

Results 1184 comments of David Anthoff

Thanks for the explanation!

Running a query and even just getting the first 10 elements is potentially really costly/slow? If so, displaying even just the first 10 results might not be a good idea....

> After all, you never have to call show if you know the output will be costly. I thought this was mainly for REPL output? I just generally feel that...

This is how these latest examples look in [Query](https://github.com/davidanthoff/Query.jl): ``` julia q = @from i in table1 begin @where i.y in @from j in table2 begin @where j.y>0 @select j.y...

I would actually prefer a version of Lint that is purely static. We are using Lint in the VS Code plugin, and something that didn't actually load any user code...

This looks very similar to https://github.com/JuliaEditorSupport/julia-vscode/issues/489, which @ZacLN thinks goes back to something @Keno would fix :) I believe this is by far the #1 report crash we get from...

Ok, I'm back working on testing in VS Code (see https://github.com/julia-vscode/julia-vscode/pull/2350 for a snapshot) and we will need something like this package here to bring that over the finishing line....

@oxinabox Alrighty, I'm at a point where it would be great if we could try to pull this off :) I'd also be happy to help, just not sure what...

@oxinabox I started doing the quick and dirty version that doesn't preserve history, take a look at https://github.com/davidanthoff/TestEnv.jl/tree/main. For now I'm using that fork/branch in the VS Code extension, so...

So, for the VS Code extension https://github.com/davidanthoff/TestEnv.jl/tree/main is the way to go. Reducing the number of branches to 2 won't work for us. Also, from the VS Code side of...