Nathan Zimmerberg

Results 150 comments of Nathan Zimmerberg

Also, not directly related to this PR, but maybe there should be a new package for supporting non-streaming codecs with a simpler API like https://numcodecs.readthedocs.io/en/stable/abc.html

Can this be implemented as a new `pledgedSrcSize` keyword argument with a default value of `ZSTD_CONTENTSIZE_UNKNOWN` when constructing the `ZstdCompressor`? The docs for `ZSTD_getFrameContentSize` say decompressed size is an optional...

Okay, I took a look at https://github.com/JuliaIO/JLD2.jl/pull/560 and why it would be nicer to have a special `ZstdFrameCompressor` that matches what HDF5 is doing. Maybe adding an internal buffer to...

This PR is missing tests for searching different possible `DenseArray`s. For example, a `DenseArray` that has zero based indexing.

Seems like there was an issue combining this PR and #54593

Thank you for making this list as I don't understand the internals of Automa. I think it is fine to keep the `Buffer` type and `.data`, `.markpos`, `.marginpos`, and `.bufferpos`...

There's a jll for libaec https://juliahub.com/ui/Packages/General/libaec_jll already, and it seems to have a similar API to zlib. IIUC when [decoding](https://github.com/MathisRosenhauer/libaec?tab=readme-ov-file#decoding) the parameters need to be set the exact same way...

I'm making a package that uses libaec to support the szip HDF5 filter. https://github.com/JuliaIO/ChunkCodecs.jl/pull/51 There are some padding and byte-shuffling differences between aec and szip, but at the core, they...

This post seems to be about a similar issue https://discourse.julialang.org/t/installation-of-nodejs-fails-directory-not-empty/111117 It might be good to put the `rm` at `src\Artifacts.jl:376` in a try block. If the `rm` fails there will...

Oh, I see, the real issue is `jl_fs_rename` failing. Would sleeping and multiple attempts of calling `jl_fs_rename` fix the issue?