Nathan Zimmerberg

Results 150 comments of Nathan Zimmerberg

I've tested in https://github.com/nhz2/ChunkCodecs.jl/pull/6 that HDF5 copies the remaining data at the end if the data length is not evenly divisible by the element size. For example "12312312312345" with element...

#181 would add some basic round trip tests, which should cover all the code in this PR. I'm not sure how to test if this is thread-safe, but in [ChunkCodecLibZstd](https://github.com/nhz2/ChunkCodecs.jl/tree/main/LibZstd),...

I'm happy to accept a PR to ChunkCodecLibZstd.jl to support Julia 1.10. Currently, the only 1.11 feature I am using is the public keyword. But is there a need to...

I've updated the PR. It should work with Julia 1.10 now. Also, the new `decode!` function throws a `DecodedSizeError` if the decoded size is too small or large, which cleans...

I think this function will work to correct the `textwidth` result in case there are colors. ```julia function colored_textwidth(x::AbstractString) i = firstindex(x) width = textwidth(x) while true found = findnext(r"\x1b\[[0-9;]*m",...

Yes, feel free to submit the function as a PR to `Base` as I will be pretty busy for the next two weeks. Also, the changes in this PR look...

https://github.com/JuliaIO/WidthLimitedIO.jl Seems to have some ANSI escape code detection without regex. Maybe this function could be added to WidthLimitedIO.jl?

I think a typo. Also, what numpy calls `complex64`, Julia calls `ComplexF32`, so that might be part of the confusion. https://numpy.org/doc/stable/reference/arrays.interface.html#type-description-examples

Unfortunately, I can't reproduce this issue. Can you please share the output of `julia> versioninfo()` and `julia> import Pkg; Pkg.pkg"st -m"` to show what versions of Julia and other packages...