Eric Hanson
Eric Hanson
closes https://github.com/JuliaLang/julia/issues/58667 re- https://github.com/JuliaLang/julia/pull/58666, embarrassingly enough I did use cursor to help with this 1-line change because I don't know C.
For loading packages just for their side-effects. Discussed here: https://discourse.julialang.org/t/is-there-tooling-to-mark-unused-imports/129638/7
it would be nice if one could do ```julia using ForwardDiff: _ ``` That actually works and does load the module on 1.11, but it gives a warning: ```julia WARNING:...
```julia julia> using CairoMakie julia> save("log10.png", scatter(exp.(1:10), 1:10; axis=(; xscale=log10))) CairoScreen{Cairo.CairoSurfaceBase{UInt32}} with surface: Cairo.CairoSurfaceBase{UInt32}(Ptr{Nothing} @0x00007f9d6bc142f0, 800.0, 600.0) ```  while ```julia julia> save("pseudolog10.png", scatter(exp.(1:10), 1:10; axis=(; xscale=Makie.pseudolog10))) CairoScreen{Cairo.CairoSurfaceBase{UInt32}} with surface:...
When calling `resample` with a floating-point value, it takes a different codepath than with a rational value. The floating-point version seems more susceptible to aliasing issues. Here is an example,...
https://docs.github.com/en/pages/getting-started-with-github-pages/configuring-a-publishing-source-for-your-github-pages-site#publishing-with-a-custom-github-actions-workflow It seems like pushing to a branch is not necessary, and instead a GitHub action can upload the files directly. This avoids repo bloat, and obviates the per-PR cleanup...
These check compatibility bounds among other things, preventing issues like the issue in 2.8.0: https://github.com/JuliaRegistries/General/pull/120826#issuecomment-2526892744 Aqua.jl: https://github.com/JuliaTesting/Aqua.jl
#452 seems to have regressed runtime in ExplicitImports quite a bit On the parent commit f425045d56f75c71493aba77e1b751f69f552e48 I get ```julia julia> using ExplicitImports julia> @time explicit_imports(ExplicitImports); 0.196597 seconds (922.30 k allocations:...
in General we have seen some spam AI generated registration requests from the same user. It would be great if Registrator could block users. General itself can't block users since...
this ends up kind of undoing #614 because it seemed easier to use RegistryInstances everywhere. Now we can use packed registries everywhere except the RegistryCI.jl-based check which needs to support...