Loïc Huder

Results 91 comments of Loïc Huder

After further investigation, this is a limitation of VSCode that prevents the buffer containing the file contents to go over a certain size (seems to be around 2Go). Removing some...

Having streamed reading in H5Wasm could also be a way to fix it. Anyway, thanks again for the report, I will close the issue as there is no immediate action...

@andygotz I reformulated the title of the issue. Please ensure that this was the feature you wanted to request. For the record, the tree in `silx view` can be navigated...

I wonder if we should switch to something like https://github.com/lissitz/react-accessible-treeview instead of reimplementing keyboard handlers ourselves. What do you think @axelboc ?

After a deeper dive, I understand your arguments against external libraries. I made a quick prototype by myself that we can discuss together.

Here are the envisioned supported features and their status: - [x] Support for Enter/Space (native) - [x] Support for Up/Down https://github.com/silx-kit/h5web/pull/1221 - [x] Support for Left/Right https://github.com/silx-kit/h5web/pull/1232 - [ ]...

Selection components are demonstrated in https://h5web-docs.panosc.eu/?path=/story/building-blocks-selection

This poses an issue at fetching: `NaN` and `Infinity`are not supported by the JSON format. There are several ways of deal with such values. The default behaviour or the `json`...

> A common workaround is to serialize Infinity and NaN as null. This is the approach currently in use in jupyterlab_hdf and orjson. Update: this behaviour was implemented in HSDS...

Here is the current status for our three providers: ### HSDS #### When fetching - As we don't use the [`ignore_nan` parameter](https://github.com/HDFGroup/hsds/issues/87), we receive invalid JSON containing `NaN` and `(-)Infinity`...