Nathan Zimmerberg

Results 150 comments of Nathan Zimmerberg

@Moelf @mkitti I have a draft interface for in-place encoding and decoding defined in https://github.com/nhz2/ChunkCodecs.jl/blob/main/ChunkCodecCore/src/interface.jl The interface currently doesn't directly use pointers, which is nice for avoiding GC issues, but...

With help from @mkitti I figured out how to compile the example. 1. Download the repository 2. Follow instructions at https://github.com/Blosc/c-blosc?tab=readme-ov-file#compiling-the-blosc-library 3. Run `$ cd ../examples` 4. Run `$ gcc...

That doesn't work for me, but ```sh $ gcc simple.c -I../blosc -o simple ../build/blosc/libblosc.a ``` does.

I'm working on a CodecCBlosc1 to see how new keyword arguments could be used. The goal is to allow a compressor Codec to avoid buffering input if there is no...

If I want to use the ["transcoding protocol" ](https://juliaio.github.io/TranscodingStreams.jl/latest/reference/#TranscodingStreams.Codec) to decompress data directly into a `Matrix{Float64}` I would use `unsafe_wrap` to convert the matrix to a `Vector{UInt8}` in this new...

I had issues using the quarto package. But looking into this issue more, I have no idea how actually to fix this in Julia, (besides some super hacky workarounds to...

I assume that because `print_tree` is exported and is in the README, it is part of the public API. That would make #124 a breaking change, because `print_tree(f::Function, io::IO, tree;...

The point of vendoring this code is that `Base.Ryu` is free to evolve without breaking JSON.jl There is no need for this to be kept in sync with Base because...

Why is that? From what I can tell, GeoJSON.jl doesn't depend on JSON.jl

Interesting, I think the shuffle filter was originally supposed to be compatible with HDF5. Ref: https://github.com/fsspec/kerchunk/issues/11 But they took the implementation from https://github.com/HDFGroup/hsds/blob/03890edfa735cc77da3bc06f6cf5de5bd40d1e23/hsds/util/storUtil.py#L43