Michael Färber

Results 246 comments of Michael Färber

Note that `--argjson a '[1, 2, 3]` binds `$a` to `[1, 2, 3]`, yet: ~~~ $ jq --argjson a '1 2 3' -n '$a' jq: invalid JSON text passed to...

In the meanwhile, @bb1, you can use `--arg a v` and then use `$a | fromjson` instead of `$a`.

Hi @syrusakbary, thanks for this interesting work! I'm fine with most changes, but what is your motivation for your changes to `Cargo.toml`, in particular leaving out `codegen-units` and adding `lto`?...

> The main reason is that otherwise the Wasm file generated was not runnable by the runtime (it was generating a wasm file with functions too big to be processed...

@syrusakbary, I might have found a partial way towards running WASM builds with different flags. On [this article](https://blog.orhun.dev/stdout-vs-stderr/), I found the following syntax: ~~~ [profile.profiling] inherits = "release" debug =...

Regarding the "weird" number parsing behaviour for "0012": This is unfortunate, I agree, but it stems from the fact that sequences of JSON values are not standardised (I believe). First,...

Regarding `tonumber`, I still have to think a bit about how to do this best ...

Thank you @pkoppstein for pointing out this issue. I tried to document the jq behaviour in d6c3445.

I just found ansisvg, and I have to say that this is a really neat idea! Finally a way to create proper small-size screenshots that are diff-friendly and that can...

@wader, I just gave 0.1.0 a try, and it works perfectly. Thanks a lot! Concerning unit testing usage: My idea was to use ansisvg to produce colored output from an...