PatrickHaecker
PatrickHaecker
@KristofferC I think you can close this issue. We have every indication that it is fixed and the OP will probably let us know if they still observe the problem.
In this case, the cell with the field with the undefined type gets an `UndefVarError` and all the other cells get an `InterruptException:` or sometimes a `Malt.TerminatedWorkerException()`.
Ok, I think I boiled it down. The crash can simply be activated and deactivated. This is with Julia 1.11.5: ```julia ### A Pluto.jl notebook ### # v0.20.6 using Markdown...
Steps to reproduce: 1. Create new Pluto notebook (or empty an existing one) 2. Create a cell with the following content: ```julia struct MyName distance::Int index::Int # If `Int` is...
Yes, that matches my observations. And that is probably the reason I initially thought it would have to do with a Julia/Pluto update. Probably I introduced some of these references...
That is an interesting perspective. Thanks for sharing it. When comparing fixed-point numbers with floating-point numbers I agree that this is only a matter of accuracy. I also understand that...
Ah, thanks, I only now understood what you meant with [round-tripability](https://en.wikipedia.org/wiki/Round-trip_format_conversion). > However, exact representation in decimal numbers is redundant, both from a practical standpoint and in terms of the...
I think I could address two from six with #901. However, I do not have the knowledge (yet?) to tackle the other four. I can try again after fully grasping...
Ok, I need help here. After reading the precompilation tutorial, I thought that introducing a backedge would do the trick like in ```julia __first() = Base.first(Any[]) @warnpcfail precompile(__first, ()) ```...
Status with Julia 1.12.0-rc1 and Revise v3.8.0: ``` precompile(Tuple{typeof(Base.indexed_iterate), Tuple{String, Array{Base.CacheHeaderIncludes, 1}, Array{Base.PkgId, 1}, UInt128}, Int64}) precompile(Tuple{typeof(Base.indexed_iterate), Tuple{String, Array{Base.CacheHeaderIncludes, 1}, Array{Base.PkgId, 1}, UInt128}, Int64, Int64}) precompile(Tuple{typeof(Base.setproperty!), Revise.PkgData, Symbol, Array{Base.PkgId, 1}})...