Tim Holy
Tim Holy
> Would moving dependencies over to say ExprTools.jl be helpful? I don't really know, I'm not a big user of such packages (I tend to "roll my own" when I...
Tada! ```julia julia> using DifferentialEquations, SnoopCompile julia> function lorenz(du,u,p,t) du[1] = 10.0(u[2]-u[1]) du[2] = u[1]*(28.0-u[3]) - u[2] du[3] = u[1]*u[2] - (8/3)*u[3] end lorenz (generic function with 1 method) julia>...
I can get this using the released versions of packages too, with the exceptions listed in https://github.com/SciML/DifferentialEquations.jl/issues/786#issuecomment-898521817 and the change to Unitful. I think the really big ones are (1)...
That is quite a masterpiece. Brightened my morning. Thanks for sharing!
The segfault is definitely not expected. But that would seem to be a Julia bug. I'd consider trying to binary-search-comment out blocks until you identify the line that's causing it....
I assume it still needs someone to tackle it. A few tips I've learned in the interim: - if you restrict precompilation to `Base.VERSION >= v"1.4.2"` hopefully you won't get...
> you meant the unique ones as reported with length(uinvalidated(invalidations)), right? exactly > not sure how to look into "mt_backedges" (as indicated with "signature"), as ascend doesn't seem to work...
While it doesn't leverage IJulia, you can also look at [ImageView.jl](https://github.com/timholy/ImageView.jl), which does most or all of the things you're asking for.
I know what you mean. If Gtk is any easier, there is a `gtk` branch of ImageView. It hasn't been updated in a while, though, so it likely requires an...
If your drawing needs are very simple, see the annotation framework in ImageView.