Nathan Zimmerberg
Nathan Zimmerberg
Thank you for figuring out how to get the right color to show for point clouds of uniform color. However, I tried it out, and setting vertexColors to 0 will...
I think the issue of h5py not being able to read boolean arrays written by HDF5.jl was solved by https://github.com/h5py/h5py/pull/1889
Can the julia compat and CI tests be bumped to 1.6?
Adding the following test results in a stack overflow. ```julia tarball, io = mktemp() tar_write_link(io, "a", "b/q") tar_write_link(io, "b", "a/q") close(io) Tar.tree_hash(tarball; copy_symlinks=true) ``` ```julia StackOverflowError: Stacktrace: [1] exec(re::Ptr{Nothing}, subject::String,...
The following test results in a stack overflow from a different function: ```julia tarball, io = mktemp() tar_write_dir(io, "foo/bar") tar_write_link(io, "foo/bar/b", "../a") tar_write_link(io, "foo/a", "bar/") close(io) Tar.tree_hash(tarball; copy_symlinks=true) ``` ```julia...
extract has a stack overflow in the first case and goes into an infinite loop in the second case.
That makes sense, though sometimes `extract` will ignore symlinks that it cannot copy. This might be the same issue as https://github.com/JuliaIO/Tar.jl/issues/77 . Maybe these issues could be resolved while doing...
@ThummeTo @ssingh13-rms @fhs This is ready for review. For reference, The zlib C documentation is here: https://github.com/madler/zlib/blob/master/zlib.h And https://github.com/madler/zipflow/blob/2bef2123ebe519c17b18d2d0c3c71065088de952/zipflow.c#L774C1-L827 contains an example of using zlib to write zip64 files in...
The issue is that `view` protects the parent from being truncated by `String` in 1.10, but in 1.11.0-beta1 this is broken. If this is intended what is the correct way...
Maybe the `view` method that converts a `Memory` to a `Vector` could be called something like `make_vector` to avoid confusion with normal `view`? The difference would be that the result...