Nathan Smith

Results 40 comments of Nathan Smith

Might make sense to close #592 in favour of this issue. I wrote it without really knowning what cloud events were and this feels like its got a more specific...

On the tip of main I'm getting a slightly different error when reproducing ``` ./rekor-cli upload --signature Qubes-R4.0.4-x86_64.iso.asc --artifact Qubes-R4.0.4-x86_64.iso --public-key qubes-release-4-signing-key.asc [server exited unexpectedly] ``` My guess is that...

Yeah nevermind that. The "server" in this case was my tmux session getting killed not the rekor server. Can confirm the rekor-cli is getting killed...

@haydentherapper and I discussed something like this quite recently here: https://github.com/sigstore/fulcio/pull/496#discussion_r844185497 > Nit: I prefer having imports with side effects (e.g loading database drivers and plugins etc) in `package main`....

Just a case study of the how the pattern `distribution/distribution` used helped me: this made is extremely easy for me to create a new registry auth pattern and build my...

I seem to be affected by this bug as well. The following function is a minimal example. It allocates more and more memory everytime it's called and garbage collection does...

This seems to be a script versus repl thing I think. The following two scripts (python and julia) have no memory allocation problems. - [figure.py](https://gist.github.com/nsmith5/2e57ce209c7f65f2dce1ea612cd62601) - [figure.jl](https://gist.github.com/nsmith5/4a28a53ed280d336f9714fa40abc4abc) Run these scripts...

I've tried to recreate a minimal working example with the following code, but it didn't seem to reproduce the issue: ```julia struct Empty end show(io::IO, ::Empty) = print(io, "1 +...

Ah, excellent. Sorry I didn't notice that message in the readme. Here is the exact error message. Notify me if you think any preceding message would have been important as...

That wouldn't be possible in the case of Maxima.jl because they communicate over a pipe. No shared memory between Julia and Maxima. Thanks for parsing that error message though. I'll...