Nathan Zimmerberg

Results 150 comments of Nathan Zimmerberg

In the long run, we can do something more like what [zig does for decoding xz](https://github.com/ziglang/zig/tree/master/lib/std/compress). > Can we have some mechanism for users to provide the path of an...

Changes can be backported to v0.6 without needing a separate branch if you want both identical. For example, if the current versions are 0.7.x and 0.6.y and you want to...

I was able to work around this issue by turning on "Developer Mode" in the "For developers" settings on Windows 11. The issue with [iso_codes_jll](https://juliahub.com/ui/Packages/General/iso_codes_jll) is that it contains symlinks....

The main change affecting this from v1.9 is https://github.com/JuliaLang/Pkg.jl/pull/3349

No, I haven't tested 1.10.0 without that commit.

I'm able to reproduce the bad hash for `iso_codes` on Linux using `ENV["BINARYPROVIDER_COPYDEREF"]="true"`: ```julia julia> ENV["BINARYPROVIDER_COPYDEREF"]="true" "true" julia> using Pkg julia> Pkg.add("iso_codes_jll") Resolving package versions... Downloaded artifact: iso_codes Downloaded artifact:...

I've gone through the _jll packages with this [script ](https://gist.github.com/nhz2/2db880497293868178225a964c68fd99) and found the following have artifacts with symlinks that are installed on Windows: Edit: I've also gone through the non...

I'm reopening this issue because I think there are some issues to work on with the current interface. 1. The `Buffer` type used in #136 is internal. See #202 2....

Yes, I think this would require a new `unsafe_transcode!` function that works directly with pointers.

Also, a general `unsafe_transcode!` interface could be useful for other packages that don't support or need a streaming API like `Blosc.jl`, `LibDeflate.jl`, `JLD2.jl`, `HDF5.jl`, `Zarr.jl`... so maybe it should go...