Kristoffer Carlsson

Results 1634 comments of Kristoffer Carlsson

> Those who don't know history are destined to repeat it. Reading through https://github.com/JuliaLang/julia/issues/24388, https://github.com/JuliaLang/julia/pull/25241, https://github.com/JuliaLang/julia/pull/25846, https://github.com/JuliaLang/julia/pull/26093 is probably a good idea for people interested in this to know a...

A trick is to use `const ⊕ = +` and do `a ⊕ b ⊕ c ⊕ ...` to get rid of the n-arg parsing and not have code suddenly...

Someone that can repro this could probably get it in a profiler and see if it is waiting on some syscall or something.

Also, is it really entering package mode that is slow or is it `using Pkg`?

I think this is too vague to be on the milestone. Also, on the video it seem to take 25 seconds to even start julia so I would not say...

> I'm getting errors when I'm just trying to enter the REPL mode Elaborate please....

With the juliaup notarization fix on 1.11 and the signing of the windows libraries I will remove this from the milestone.

The TOML parser is bugged with this: ```julia julia> TOML.parse("4= \"value\"") ERROR: TOML Parser error: none:1:1 error: invalid bare key character: '4' 4= "value" ^ Stacktrace: ... julia> @eval Base.Unicode...

The TOML spec is here https://toml.io/en/v1.0.0#keys > Bare keys may only contain ASCII letters, ASCII digits, underscores, and dashes (A-Za-z0-9_-). Note that bare keys are allowed to be composed of...

https://github.com/JuliaPackaging/RelocatableFolders.jl is a bit of a "hack" to work around this.