ederag

Results 116 comments of ederag

Agreed, it should have been "cryptic *at first*", edited now. That was the feeling of a new user who mistakenly thought that `new-version` allowed a full override. After reading #45,...

OK, thanks for the answer, that makes some sense now. Of course the proposition summary added to the OP makes even more sense to me :wink: I really like your...

To me too (as a *random user feedback*; the following is only what would be natural to me), when `--new-version` is used, the new version should be *exactly* the one...

It does look very similar, but `julia 1.6.0` was from 2021-03-24, before JuliaArrays/ArrayInterface.jl#137 was merged, and the mwe in JuliaArrays/ArrayInterface.jl#142 first post works fine here, as also reported by https://github.com/JuliaArrays/ArrayInterface.jl/issues/142#issuecomment-818751073,...

I now see that JuliaArrays/ArrayInterface.jl is not part of julia itself, so the date of julia is irrelevant. Checked, same issue with `julia-1.5.3`. What might be interesting is that JuliaArrays/ArrayInterface.jl#142...

Following https://discourse.julialang.org/t/heatmap-with-log-scale-colorbar-cscale/63018/2, `scale=log10` does not work as expected: ```julia let x = 10.0.^(1:0.1:4) y = 1.0:0.1:5.0 data = x .* ones(Float64, 1, length(y)) fig = Figure() cmap = cgrad(:viridis, scale=:log10)...

@asinghvi17 creating the colorbar without scale yields a colorbar without "log scale" ticks, and the colors are not as in the [goal image](https://github.com/JuliaPlots/Makie.jl/issues/1405#issue-1034362838) (the first one): ![image](https://user-images.githubusercontent.com/10962809/173391150-56eefa47-e0b7-40c8-8f41-bdafc6c18bee.png) code ```julia let...

The latest: `CairoMakie v0.8.5` and `Makie 0.17.5` in the manifest.

The same as https://github.com/SciML/DifferentialEquations.jl/issues/740: ```julia using DifferentialEquations f(u,p,t) = 1.01*u u0 = 1/2 tspan = (0.0,1.0) prob = ODEProblem(f,u0,tspan) sol = solve(prob, Tsit5(), reltol=1e-8, abstol=1e-8) idxs = Union{Nothing, Int64}[1, 2]...

As stated in SciML/DifferentialEquations.jl#740, this is a contrived minimal example, it actually happened > when the output of `indexin` is used to index the solution. `indexin(interesting_z, saved_z)` was used to...