Justin Willmert
Justin Willmert
It'd be nice to add a custom expander which generates HTML `` and LaTeX `\begin{figure}\includegraphics{}\caption{}\end{figure}` blocks. As far as I have been able to find, there's no standard Markdown syntax...
In some recent documentation I've been writing, I discovered that ` ```@repl ... ``` ` blocks would not expand if contained within a Markdown list. The first commit in this...
Extracted from #681 so that this can have some more discussion and not slow down that PR. From the other PR: > [This] commit enables a lower optimization level for...
So that it's not forgotten: _Originally posted by @musm in https://github.com/JuliaIO/HDF5.jl/pull/788#discussion_r551562279_ > I feel like we should instead use `displaysize(io)` to determine a suitable truncation point instead of the heuristics.
This is the follow-up to discussions in #759 on how to automatically allow passing scalars through to pointer arguments to make using the low-level API more ergonomic. Rather than the...
This isn't necessarily a real proposal — I wanted to explore how far we could get with actually doing runtime initialization of the in-principle dynamic global "constants" from the HDF5...
The following reliably causes segfaults for me on both Julia v1.4.1 and Julia master: ```julia using EzXML for _ in 1:2 doc = XMLDocument() root = ElementNode("root") setroot!(doc, root) t1...
Running the recurrence relations require some state be held across iterations, and in general this requires allocating some memory to store the state. There should be a way of pre-allocating...
Since the Associated Legendre Polynomials are naturally 0-indexed, we should take advantage of the `OffsetArrays` package and work with 0-indexed arrays.
Improvements/changes should be validated via a set of benchmarks before being committed. To do that, though, first a suite of benchmarks must be created and added. * First level goal...