Juniper Tyree

Results 292 comments of Juniper Tyree

Perhaps this discrepancy could be since I use the stream API from zstd but perhaps sz3 uses some code path that does need to allocate?

Looking at both output modules again, I can see that the first does export all symbols from the wasm-shim, while they are missing from the second. I might have an...

Ok, this seems to be an issue in Rust itself (https://github.com/rust-lang/rust/issues/50007 is the closest I could find, even though that one says it is fixed). The issue can be fixed...

I've been thinking about it some more and here is my best understanding. `zstd-sys` provides the compiled C library `libzstd.a`, the Rust bindings, and the WASM shim. When using it...

I stumbled across https://github.com/rust-lang/rust/issues/94348#issuecomment-1079770043, which seems to work for me - just add `extern crate zstd_sys;` somewhere in the import hierarchy, which seemingly forces rustc to link the crate even...

I've been playing around with JupyterLite in the dev tools a bit and made some progress, which can be found in this Jupyter notebook gist: https://gist.github.com/juntyr/b78392f990d423bb835e49dd4e23a260 At the moment, I...

I have made some significant progress using the `BroadcastChannel` API and am now able to automatically mount files uploaded via an input element into the running Pyodide kernel FS. I've...

> Sounds like good stuff: while I don't think it would be appropriate to add this kind of JupyterLite-specific capability to [ipylab](https://github.com/jtpio/ipylab), a `ipylite` widget library (which _could_ live in...

> * adding new things to the `js` object from upstream is of course _possible_, but probably not to be _recommended_ Good point, I can see two alternative places to...

I'd also be very interested in this - I have a custom class implementing `io.IOBase` but from which I cannot load a grib file at the moment since `cfgrib` seems...