Jared Lumpe
Jared Lumpe
I have two different ways I would like to convert some `attrs` classes to JSON, but with a lot of commonalities. It would be nice if I could create a...
`N` is going to be set by a special constructor argument/method and will default to 3. The issue isn't in the arguments to `DynamicalODEFunction` itself, it's that its fields `f1`...
@ChrisRackauckas maybe an `AbstractODEDomain` type could be defined, which would have concrete subtypes for `PositiveDomain`, `GeneralDomain`, and then something like `BooleanDomain` for `isoutofdomain`-type functions? You could then dispatch on the...
How is this going? I have a multi-user jupyter installation that I currently can't install this on because I can't enable it on a per-user basis. I'm happy to help...
@jwkvam I actually forked this branch and cleaned it up a bit to just have the "enable" setting. I added it to my shared Jupyter installation and it works great....
Any more progress on this?
Any chance of getting this merged? I've been successfully using it for the past year to disable the extension by default in my shared jupyter hub installation and only enable...
I submitted a PR for this (#76) over a year ago but never got a response from @jwkvam. I agree this repo no longer seems to be maintained.
Huh, well using that link I managed to get something working in the single-page notebook view: ```julia function page(mimebundle::Dict{String,String}, line::Int=1) push!(IJulia.execute_payloads, Dict( "source" => "page", "data" => mimebundle, "start" =>...
There seems to be two separate display systems in place: * `display(::InlineDisplay, x)` calls `display_dict(x)`, which calls `display_mimestring(mime, x)` and `display_mimejson(mime, x)` for all MIME types in `ijulia_mime_types` and `ijulia_jsonmime_types`....