Fons van der Plas

Results 302 issues of Fons van der Plas

```julia # ╔═╡ 91084099-6515-4cfb-8f79-755bd54cd6b0 begin x = 1 let # f() = 123 x = 2 end x end # ╔═╡ 14f79ed1-782c-4e1a-888c-7a5249cf9c66 begin xe = 1 let f() = 123...

bug

Website like this one load quite slow: https://computationalthinking.mit.edu/Fall22/images_abstractions/seamcarving/ Because the statefile contains data for lots of images. A normal website would _first_ load the page (containing `` tags), render it,...

enhancement
frontend
HTTP/WS
performance
publishing

We currently disable editing while waiting for the binder backend to connect, which is annoying. Instead, we should save up the patches until we [connect](https://github.com/fonsp/Pluto.jl/blob/f889d4f83927163366c3e4f36106605f5e28f778/frontend/components/Editor.js#L660), and send all patches in...

enhancement
frontend
publishing

The time estimate in this screenshot now uses #2672 to improve the estimate for Pkg.instantiate time (instead of just the time measured by the html generating process). # TODO -...

This notebook file does not work on Windows, Julia 1.6.7. The call `CSV.File(filename)` throws `Malt.TerminatedWorkerException()`. ```julia ### A Pluto.jl notebook ### # v0.19.29 using Markdown using InteractiveUtils # ╔═╡ b8592dff-07d0-4ae4-b69e-64cc74bd17cc...

even though julia doesnt work that way we should show it anyways!!

enhancement

### Discussed in https://github.com/fonsp/Pluto.jl/discussions/2592 Originally posted by **jonas-schulze** July 3, 2023 When working with DataFrames, I like to wrap more complex cells in a `let ... end` block and reuse...

expression explorer

#720 is not working properly in this notebook: The first interactive board takes 130ms when I move the slider, but when I replace it with exactly the same code wrapped...

performance

A bit annoying that `Pkg.upgrade_manifest()` throws an error when the manifest is already up to date... so i just put it in an empty try catch untested

To make a change to a notebook environment from a script and save directly, without file watching. untested