Jonas Isensee

Results 61 issues of Jonas Isensee

https://github.com/kynan/nbstripout This software implements a git filter. That means it makes git blind to cell outputs withing notebook files. I think it would be great to advertise this in the...

I came across what someone might consider a bug. ``` julia> p = Dict(:sourcefile => "path/to/my/sourcefile") Dict{Symbol,String} with 1 entry: :sourcefile => "path/to/my/sourcefile" julia> savename(p) "sourcefile=path/to/my/sourcefile" julia> produce_or_load(p, p ->...

I've been working a lot with `produce_or_load` recently. I think it's a great tool, especially when things are still under development and it saves a lot of time when having...

enhancement
discussion

When collecting results using `collect_results!` the path to the files is automatically added. This is great but we currently add the full system-path. For better portability one could change this...

good first issue
improvement

Hi, I'm currently trying to use Weave to export a bunch of jupyter notebooks to pdf. The very basic exporting with `md2pdf` or `md2tex` works but I struggle with customization....

enhancement

Hi there, I noticed that so far `weave` and `convert_doc` ignored whether the jupyter notebook cell was collapsed or not. This tiny PR annotates collapsed cells with `echo=false` during conversion...

Hi, Is there currently any way to have markdown tables translated to latex tables? For me this just throws errors. If not I'd like to file this as a feature...

I've added a new syntax to JLD2 and I'm wondering if this could be made compatible with FileIO. Current example using `FileIO`: ``` x = 1 y = 2 z...

Hi, I'm confused by the following reduced problem. Here, I'm trying to solve for the displacement field in the bulk after imposing the displacement of the surface via a dirichlet...

Hi, I noticed that this ``` a(u,v) = ∫(0.1*v⋅u)dΩ ``` yields `issymmetric(get_matrix(op)) == false` while this ``` a(u,v) = ∫(0.1*(v⋅u))dΩ ``` works as expected. I wouldn't expect general symbolic simplification...