Jaen

Results 80 comments of Jaen

This is such a bare minimum feature I am surprised it has not been implemented for this long... it basically makes this library unusable for working with ES `Map`s and...

_Side note:_ This sounds like a version of [Clojure's transducers](https://clojure.org/reference/transducers).

Qt [(for Python)](https://doc.qt.io/qtforpython/) works across Windows, Mac and Linux reasonably well, and would allow sharing at least some UI code (though not all of it, and it still generally needs...

GCC will generally [convert a zero-initialization loop to a `memset`](https://godbolt.org/g/f4fm1J), so there's no efficiency difference.

You can just put a `#pragma GCC optimize ("O3")` in your code instead of hand-optimizing it when you do not like the default optimization flags.

> I think the issue is that the `bash -c eval` is picking up the `[]` characters and those are special characters in bash. Makes sense, and sure enough, escaping...

This (or something similar) happens regularly when eg. the Vite dev server is running while doing a `git rebase` and the dev server terminates due to some error, and then...

This is still an issue in 7.6.16. Using a `` or anything related inside a `render` functions seems to trigger it, which is pretty bad, considering this is fairly common.

One solution is to use `--formatter=compact` on the CLI and the following matcher: ```json5 "problemMatcher": { "source": "stylelint", "owner": "stylelint", "fileLocation": "absolute", // Similar to ESLint-compact "pattern": { "regexp": "^(.+):...

Same issue on a run-of-the-mill Storybook. Removing the plugins option from Vite's `react()` block fixed it. * vite 5.1.1 (latest) * @storybook/react-vite 7.6.15 (latest) * @vitejs/plugin-react-swc 3.5.0 As a workaround,...