itchyny

Results 231 comments of itchyny

No further explanation given, so closing.

@wader Your patch looks correct to me. Could you create a PR?

`homedir` is good, it simply represents what it returns. `abspath` looks it converts any relative paths to absolute paths regardless of the existence, but current implementation does not seem to...

I'm thinking this can be archived if system() (#1614) is included. Long term feature request though.

The error message comes from 0fc8200ab42ea2b629fa0852987cfd4f6346b2dc, which implemented `strptime` fallback using `sscanf`. After that, fdab39bc7b8d41c1ae410f03a42afc10a9322c99 included `strptime` from NetBSD. So I think we can drop the `#ifdef` in `f_strptime` but...

@eli-hu @Alanscut Could you test the executable built [here](https://github.com/jqlang/jq/actions/runs/15507487636?pr=3342)?

Is there any Windows user able to test the executable as above comment?

There is a pull request for this feature #1643. My concern is what `[] | mul` should be. Considering `null` is the identity element of addition (i.e. `null + x...

The point is `add` is the [folding operation](https://en.wikipedia.org/wiki/Fold_(higher-order_function)) of addition. Since `null` is the additive identity, `add` is cleanly defined as `def add: reduce .[] as $x (null; . +...