Alexander Plavin
Alexander Plavin
Lambda functions work fine, while the same do-block throws an error: ```julia julia> using Test julia> @inferred map(x->x, [1,2]) 2-element Vector{Int64}: 1 2 julia> @inferred map([1,2]) do x x end...
``` # works fine: julia> scatter([(1., 100.), (2., 0.5)]; axis=(;yscale=sqrt)) # fails loudly, on all recent Makie versions (0.22, 0.24): julia> scatter([(1., 100.), (2., 0.2)]; axis=(;yscale=sqrt)) Error showing value of...
Setting (some?) attributes on a child plot throws `UndefRefError`s now in the new Makie 0.24. The same code works fine as expected in Makie 0.22. MWE: ```julia @recipe MyRecipe (X,)...
### Feature description Invocations like ```julia scatter!(x, y; axis=(...)) ``` make total sense conceptually, and I regularly miss this in practice. When tweaking plots, some axis attributes intuitively belong not...
MWE: ```julia julia> color = Observable{Any}(:red) julia> textlabel((0,0), text="Abc", background_color=color) julia> color[] = (:blue, 0.5) (:blue, 0.5) julia> ┌ Error: Failed to update renderobject - skipping update │ exception =...
I tried using static vectors for parameters, which works nicely. But not when combined with autodiff: ```julia julia> using Optimization, OptimizationOptimJL, StaticArrays, ForwardDiff # don't specify inplace/outofplace: julia> of =...
Extents are only used to add a method to their function, perfect for an extension. Also, remove IterTools completely as they don't seem to be needed here.
straightforward constructor implementation in an extension
fix https://github.com/andyferris/Dictionaries.jl/issues/110 the only thing I'm not fully certain is whether this condition https://github.com/aplavin/Dictionaries.jl/blob/3e98d311614b59f424b0d6f19c744fcc8bf65d51/src/Dictionary.jl#L310 is needed, and how to test it
Could probably relax it to allow any vectors (eg numbers)?..