Alexander Plavin
Alexander Plavin
Currently, whenever the compile_workload throws an exception, the package becomes effectively uninstallable. That's especially bad for packages with comprehensive precompilation workloads: they become impossible to install and use in any...
I wonder if BasicAutoloads could add registered symbols to REPL autocomplete? So that they could be tab-completed same as already available symbols. The goal is to make it is seamless...
The second line is clearly highlighted incorrectly:  Seems specific to Pluto, issue not present in VSCode nor here: ```julia x.var"abc" x.var"# abc" var"# abc" ```
Tried upgrading Julia version from 1.9 in one of my envs, and noticed this: ``` julia> using LinearAlgebra julia> f(a::AbstractMatrix) = sum(a) # MWE julia> f(qr(rand(5,5)).Q) # 1.9: -1.4572588703587335 #...
Not too often I see packages broken by patch versions of Julia, but it's one of those cases :( As a specific example, `using UnionCollections, Dictionaries, FlexiMaps` throws `ERROR: LoadError:...
Whenever I have a Julia process or a notebook that uses GLMakie, another taskbar item in the MacOS taskbar gets created:  They appear even if I just save the...
Would be convenient and generally useful to enable defining coordinate with a mix of different "spaces". Is it feasible to add a type for that or something? Potential examples include:...
### Feature description There seems to be no way to render a figure with another backend (not the activated one) inline. For example, I want most of the plots in...
Currently, HTML `show` displays an image with the pixel size the same as the `Figure(size=...)`: https://github.com/MakieOrg/Makie.jl/blob/899eeb591a151194605d5611232dd9a44d3fc46b/src/display.jl#L498-L503 and there's no way to scale the output. Changing `Figure(size=...)` doesn't just scale the...
```julia julia> image(rand(10,10), colorrange=0..1) ERROR: MethodError: Cannot `convert` an object of type IntervalSets.ClosedInterval{Int64} to an object of type Float64 ``` I think it should work, intervals are convenient and already...