Alexander Plavin

Results 579 comments of Alexander Plavin

A slightly different, but probably similar, occurrence of the same error: ```julia fig = Figure() ax = Axis(fig[1,1], limits=(nothing, (2,nothing))) scatter!([(1,0),(2,0),(3,0)]) fig ``` Here, the figure displays without the `scatter!`...

It's just annoying to switch to another env, run `]up`, and again wait for all (two in my case) registries to redownload. Even though it's not needed the majority of...

If it's basically instant, why Pkg went with reducing the number of registry updates at all? :) Eg https://github.com/JuliaLang/Pkg.jl/pull/3320 and the whole `UPDATED_REGISTRY_THIS_SESSION` setting. For me: ```julia julia> @time Registry.update()...

And it may take much more time on flaky connections.

Would be nice to have the ability to "update packages given the current registries state". Especially given that precompilation times increased a lot in the recent years, and it often...

If wonder if there were any updates or new considerations on this topic? When I share a Julia script with colleagures, I provide script.jl + Project + Manifest, and the...

Relevant refs: https://github.com/MakieOrg/Makie.jl/issues/5205 https://github.com/MakieOrg/Makie.jl/issues/1524 https://github.com/MakieOrg/Makie.jl/issues/379 https://github.com/MakieOrg/Makie.jl/discussions/4174. Some things you can do now: - return `SpecApi` objects from your `convert_arguments` - overload `Makie.plot!(ax::AbstractAxis, plot::PlotType{Tuple{your_arguments}})` _if the desired plot type can directly...

Would be convenient indeed! Happy that others also consider this useful :) Ref https://github.com/fonsp/Pluto.jl/issues/2705 from almost exactly a year ago

Added `show_gl_icon_in_dock(true/false)` to MakieExtra.jl: https://github.com/JuliaAPlavin/MakieExtra.jl/blob/000000006524e0a0729128be0a0681f081cff0aa/src/MakieExtra.jl#L69-L85. These icons took half of my dock otherwise :) The ideal behavior would be to show the dock icon when the GLMakie window is open,...

> I also noticed this On which Julia version?