Fredrik Bagge Carlson

Results 676 comments of Fredrik Bagge Carlson

I forked and solved this issue at https://github.com/baggepinnen/document-outline I think you can install my version by `apm install https://github.com/baggepinnen/document-outline/` Caveat: My implementation assumes that all your `\chapter` etc. start at...

I have a local fork of `LocalRegistry` where I've added the keyword argument `tag::Union{Nothing, AbstractString} = nothing`, and the following in the end of `register` ```julia if tag !== nothing...

>This issue might be related to the behavior I reported on the discourse here: https://discourse.julialang.org/t/determining-size-of-dataframe-for-memory-management/85277/36 MWE is from reading in and sub-sampling some big CSV files available from the Census:...

I could hack around the problem by putting `Pkg.activate()` in the notebook to wipe the manifest and then remove `Pkg.activate()` again.

I think it would be much better to default to returning a PyObject rather than converting the python namedtuple into a julia tuple. The python code ```python nt = fun1()...

I think it would be much better to default to returning a PyObject rather than converting the python namedtuple into a julia tuple. The python code ```python nt = fun1()...

https://github.com/SciML/ModelingToolkit.jl/issues/1396 one solution is to prevent variables that appear in callbacks to be moved to observerd

Hi @LiborKudela ! Are you solving to the same tolerances with both MTK and modelica?

The *symbolic* callbacks are generated based on additional information provided to `ODESystem`s and these callbacks have machinery to handle state indices etc. so you might be able to reuse some...

```julia prob = ODEProblem(fol, [fol.x => 0.1], (0.0,10.0), []) ``` I make this error *all the time* and it really is a huge footgun. It would be nice to detect...