Fons van der Plas
Fons van der Plas
No, Pluto will probably never support side effects like the one you suggested
Yep, we should make `with_terminal` asynchronous, but this https://github.com/fonsp/PlutoUI.jl/labels/needs%20Pluto.jl%20feature
I should say that I am not very interested in this feature, but what I am excited about is https://github.com/fonsp/Pluto.jl/pull/437 which should solve roughly the same use case in a...
Have a look at the rectangle drawing widget in the Interactivity sample notebook :) You probably want to wrap what you made in a ``, and set the value of...
Cool! What you could do is output ``` body.hide_all_inputs pluto-input { display: none; } ``` (or something) and then with you button, you would do: ```js button.onclick = () =>...
Curious to see how you made the run button!
Instead of writing a Julia mechanism to break out of reactivity, we could also create a "confirm wrapper" around multiple inputs, which delays updating the bond until you click submit:...
Woah this is going to be a lot of work to create and maintain... Maybe you can use `@bind filename Select(readdir(my_dir))` instead?
If you already know which folder the file is in, and there are no subfolders: ```julia @bind filename Select(readdir(my_dir)) ``` You could add the ability to select subfolders by making...
Sorry I already kind of wrote this myself: https://github.com/fonsp/disorganised-mess/blob/master/drawoncanvas.jl 🙂 let's turn it into a PlutoUI element after #3 is done