Jonas Isensee
Jonas Isensee
Hello there, I saw that you were interested in an implementation of the Kuramoto-Sivashinsky model using `ApproxFun` and `OrdinaryDiffEq`. I played around with this for a while but sadly haven't...
Set `JLD2.DISABLE_COMMIT[] = true` to throw errors instead of committing types to files. Can be used to guarantee *plain* files.
If the user really wants to ensure that no julia structs accidentally end up in the file, this would be useful
This adds a method `jldopen(::IO, mode; kwargs...)` that should take in already opened IOs and figure out what to do with them. Currently, this PR implements a `ReadOnlyBuffer` that can...
Tries to turn committed types into `NamedTuple` and (non-committed) parametric type signatures into `Any`. ``` julia> load("struct_reconstruction.jld2"; plain=true) Dict{String, Any} with 4 entries: "dms" => @NamedTuple{kvvec}((Any[@NamedTuple{first::String, second}(("a", (a = 1,)))],))...
This PR makes the REPL path completions also search through open JLD2 files and allows easy navigation / access of files. The current implementation has to redefine the `REPL.REPLCompletions` function...
 ``` julia> text(0,0; text=L"\left\langle\left|\int\right|\right\rangle", fontsize=30, align=(:center, :center)) julia> text!(0,-0.5; text=L"\left\langle\left|\left\langle\left|\int\right|\right\rangle\right|\right\rangle", fontsize=30, align=(:center, :center)) MakieCore.Text{Tuple{Vector{Point{2, Float32}}}} julia> text!(0,-1; text=L"\left\langle\left|\left\langle\left|\left\langle\left|\int\right|\right\rangle\right|\right\rangle\right|\right\rangle", fontsize=30,align=(:center, :center)) MakieCore.Text{Tuple{Vector{Point{2, Float32}}}} ``` Possibly related to #105 This also...
Hi, I put together proof of concept script that uses the internals of `JLD2` to write to a given `IOStream` and then read from an `IOStream` as well. It certainly...
Hi, I'm currently working on bringing better compression to [JLD2.(https://github.com/JuliaIO/JLD2.jl). Most of the other compression libraries seem to support the [TranscodingStreams](https://github.com/JuliaIO/TranscodingStreams.jl) API and it appears to be straight forward to...