hhaensel
hhaensel
replace `vect` syntax by `vcat` syntax for generation of subplots as the vect syntax has been removed
I recently committed an `:include_mathjax` option for the plotly() backend in plot and wondered, whether I could reuse my experience for PlotlyJS and its respective Backend in plots. This is,...
I've published a package [PlotlySave](https://github.com/hhaensel/PlotlySave.jl) to implement PlotlyBase together with a saving function independently of [PlotlyJS](https://github.com/sglyon/PlotlyJS.jl). This could live side by side with PlotlyJS, but could also be integrated. One...
Currently assetserving fails when files contain spaces or other url-forbidden characters. I propose to modify `assetserve()` in order to solve that issue.
The code was copied from a real world example, where @__DIR__ referred to the correct directory. After moving this to `Assets.jl` I think the best is to default it to...
Currently, all white space characters in a textbox are merged into a single space character (`' '`) This makes it very difficult to extract tabular data. Here, I propose to...
Currently, all white space characters in a textbox are merged into a single space character (`' '`) This makes it very difficult to extract tabular data. In #106, I propose...
A big 🚀 to the Julia wrapper of RDKit! Will there be support of Windows? Could you tell, what is restricting your choice of OSes?
Using a proprietary jdbc driver I experienced a `java.lang.NoClassDefFoundError`. It turned out that I could solve it by calling ```julia JDBC.JavaCall.init(["--add-opens=java.base/java.nio=ALL-UNNAMED"]) ``` instead of ```julia JDBC.init() ``` While the underlying...