Axel Bocciarelli

Results 216 comments of Axel Bocciarelli

#635 implements cancellation on the front-end, but it doesn't resolve crashes on Bosquet when attempting to fetch (and cancel the fetch of) extremely large datasets.

#640 implements retrying after cancelling (including evicting cancellation errors from the value store's cache).

Binary is now used with H5Grove when getting dataset values: #817

[Playing with](https://observablehq.com/@d3/d3-format) some [D3 formats](https://github.com/d3/d3-format#locale_format): ### `.3~g` ```js d3.format(".3~g")(3234234234234452) // 3.23e+15 (B) d3.format(".3~g")(123452) // 1.23e+5 d3.format(".3~g")(122) // 122 d3.format(".3~g")(1) // 1 (C) d3.format(".3~g")(0.12342354345) // 0.123 d3.format(".3~g")(0.0000012342354345) // 0.00000123 (A) d3.format(".3~g")(0.00000012342354345)...

Remaining known issues/limitations/awkwardness: - [x] Re-enable ESLint's sort imports rule. #805 - [x] Review global app styles (remove unused, move, refactor, etc.) #808 - [x] Move all feature tests in...

For reference, the monorepo set-up has been simplified significantly in PRs #937, #938, #939, and #942. Notable changes: - The `demo` is now based on Vite instead of CRA and...

I've rebased and updated a few packages. `react-reflex`, `react-use` and `react-slider` now allow React 18 as peer dep. I've noticed that the H5Wasm provider no longer works. I get warnings...

### TODO - [x] Fix feature tests (lots of `act` warnings) - [x] Fix H5Wasm demo - [x] ~Backwards compatibility with React 17: `Html` element should fallback to use legacy...

@bmaranville I'm getting some warnings in the H5Wasm demo when I select a simple HDF5 file. ![image](https://user-images.githubusercontent.com/2936402/172852781-24758ea1-afe4-4b6d-bce1-a548656df204.png) After the warnings, I get a `name not defined` error followed by a...

I've reverted the switch to `createRoot` in `Html` so we can remain backward compatible with React 17. It seems to work, but the downside is that we'll get lots of...