Nathan Zimmerberg

Results 67 issues of Nathan Zimmerberg

From what I can tell https://github.com/JuliaNLSolvers/Optim.jl/blob/89b6804badaf49e4df1a54da0b9378507f7aa583/src/multivariate/solvers/constrained/fminbox.jl#L152 isn't being used anywhere. Can this function be deleted?

I was using Clarabel and JuMP to test my code that analytically calculates the minimum distance between line segments and triangles in 3D. In random testing I found a line...

This PR should improve error messages if an anti-virus prevents the temporary directory the artifact is unpacked into from being renamed or deleted. Ref #3822 The issue is that an...

`unzip_jll` fails to unzip certain types of zip files on MacOS and Windows. These files can be unzipped by the builtin `unzip` command and can also be unzipped by `unzip_jll`...

Hello, I cannot install MeshCat.jl on Windows in a fresh depo in Julia 1.10 because of the symlinks contained in the `meshcat` artifact. See also, #249 and #248 This PR...

Here is an example of the bug this PR fixes: ```julia using Test using TranscodingStreams stream = NoopStream(NoopStream(IOBuffer())) write(stream, b"foobar") flush(stream) @test TranscodingStreams.stats(stream).out == 6 ``` Before this PR this...

This is just a draft to see how many downstream packages are affected.

This PR changes a hardcoded `1` to `firstindex` in the `readbytes!` function. I can't test this with OffsetArrays.jl because an `OffsetArray` isn't a `DenseArray`

This would have mitigated the effect of #186 Since `Buffer` already has an internal `Vector{UInt8}` it already does bounds checking, it is just not the correct bounds.