Axel Bocciarelli

Results 216 comments of Axel Bocciarelli

Thought I'd share some learnings that may be helpful when you upgrade TypeScript and `@typescript-eslint/eslint-plugin` (no rush 😉). TypeScript has deprecated `importsNotUsedAsValues` since v5. I initially thought the replacement for...

Good call!

> For h5wasm, you could indeed use lazyFileLRU to deal with the large size issue, but local filesystem access is only asynchronous and (at the moment) the emscripten emulated filesystem...

Right okay, so `await file.slice(start, end).arrayBuffer()` is just not possible because file system calls have to be synchronous. While taking a closer look at Emscripten's file system API, I noticed...

Love the idea of typing files more strongly! Just wanted to point out that the syntax below is a type assertion in disguise: ```ts const file = h5wasm.File(...) ``` [This...

Basically, `h5wasm.File()` should return `unknown`, which (if I'm not mistaken) would force the use of the `as` syntax in strict mode. Though consumers would also be free to write a...

Totally on board with this! I've opened an issue in the myHDF5 repo: https://gitlab.esrf.fr/ui/myhdf5/-/issues/3 -- since our knowledge of WASM and Emscripten is very limited, contributions are very welcome! :grin:

Awesome stuff @bmaranville! :trophy: I'll play around with it in H5Web today. FYI, I've just moved over the repo of myHDF5 to GitHub to facilitate external contributions: https://github.com/silx-kit/myhdf5 :tada:

Do you have a practical reason in mind for this change that I'm not seeing? Because tags are just meant for breaking up the deck for easier learning. The `UG::Europe`...

I'm keen on the idea of storing an SVG world map in the deck. I feel like we might even be able to make it interactive with a bit of...