Joseph Wilson
Joseph Wilson
I also have this issue. I have a `template` option for events/items displayed in the timeline which contains an `…`, but I cannot get the link to actually work. The...
I’m getting this exact error, but can’t fix it even after following the instructions at https://anwaarlabs.wordpress.com/2017/02/25/lucene-an-spi-class-of-type-org-apache-lucene-codecs-codec-with-name-does-not-exist/. Is there a workaround simple enough for non-Java users?
Note this is related, but not a duplicate. Note this only happens when using a startup file. --- *Edit:* Not a duplicate of [#227 (comment)](https://github.com/KristofferC/OhMyREPL.jl/issues/227#issuecomment-734997045), but **is** a duplicate of...
I’ve discovered that this bug (typing `[1]` and getting `[1]]`), which is only observed when loading `OhMyREPL` in the `startup.jl` file, is fixed by another call to `OhMyREPL.__init__()` in the...
My hacky solution for the meantime is to have this in my `startup.jl` file: ```julia using OhMyREPL schedule(@task begin sleep(0.1) OhMyREPL.__init__() end) ``` This reruns `OhMyREPL.__init__()` after the `julia>` prompt...
I just found a duplicate issue with the same hacky solution from three years ago! 😅 Duplicate: #166
(Closing since duplicate)
I’d like to encourage this proposal. Making `N` a type parameter will _not_ make code less efficient: whenever `Taylor1` and `TaylorN` have differing implementations, simply use dispatch so that the...
> People outside Invenia are using Nabla? > > I don't really recommend it for new projects, we are hoping to deprecate Nabla at some point, once we migrate the...
I believe the bonus task tests aren't being run because the `isdefined` check ```julia # Bonus A if isdefined(Main, Symbol("@R13_str")) @eval @testset "Bonus A: string literal R13" begin ``` always...