Aaron Matthis

Results 121 comments of Aaron Matthis

@IanButterworth sadly that's not all. It's even impossible to upgrade: ```julia (@testing) pkg> st Status `C:\Users\Aaron\.julia\environments\testing\Project.toml` [cbdf2221] AlgebraOfGraphics v0.6.9 ⌃ [e9467ef8] GLMakie v0.6.9 Info Packages marked with ⌃ have new...

@IanButterworth ```julia (@testing) pkg> st --outdated Status `C:\Users\Aaron\.julia\environments\testing\Project.toml` ⌃ [e9467ef8] GLMakie v0.6.9 (

@IanButterworth it's already an MWE, this is the entire project.toml: ``` [deps] AlgebraOfGraphics = "cbdf2221-f076-402e-a563-3d30da359d67" GLMakie = "e9467ef8-e4e7-5192-8a1a-b1aee30e663a" ``` [Project.txt](https://github.com/JuliaLang/Pkg.jl/files/9228798/Project.txt) [Manifest.txt](https://github.com/JuliaLang/Pkg.jl/files/9228812/Manifest.txt) it didn't let me upload .toml files -.- @KristofferC...

yes, that MWE is fixed because the new one is compatible to the current Makie version. But the general problem persists. And yes I'd also say that it should get...

Sorry for asking, but since there have only been mentions of this issue for half a year, is this still being solved? For me because image processing is pretty annoying...

How about allowing to bind an already existing function name to the Button which then calls the function on click? ```julia begin function onclick(text) dostuff() println("Button $text has been pressed")...

@fonsp While that's true, there's no good way to barrier a cell from arbitrary evaluation on startup. We'd need an option to make a cell ONLY execute on the click...

And the counter is reset once the cell with the @bind is re-evaluated, right? Then that would be awesome. Is there an eta for it? :D

> In fact, it is not possible for a function to produce any kind of visual output, since the are no display side-effects in Pluto. That could individually be solved...

Together with https://github.com/fonsp/disorganised-mess/blob/f0f13eb4038604f0cccf12922cea6a4c635c6633/javascript.jl#L97-L128 (and div replaced by span in order to allow inline) the following code ```julia begin reactivitybreaker = Dict{Symbol, Int}() function needsupdate(x::Symbol, value) value != get(reactivitybreaker, x, 0)...