Elliot Saba
Elliot Saba
While trying to figure out how best to get `Revise` to work with the REPL, I came up with the following recipe: ```julia using Revise using REPL Revise.track(REPL) term =...
This creates a new section in `csr.h` that contains metadata about all CSRs contained wtihin the SOC build. This is useful for projects that wish to do some amount of...
``` ┌ Error: Some Julia code in the VS Code extension crashed └ @ Main ~/.vscode/extensions/julialang.language-julia-1.48.1/scripts/error_handler.jl:15 ERROR: BoundsError: attempt to access 0-element Vector{Any} at index [2] Stacktrace: [1] getindex(A::Vector{Any}, i1::Int64)...
If I need to include the docstring of one of my dependencies I must include that dependency as one of the modules passed to `makedocs()`, if I do not the...
I've noticed that this package is sucking up a lot of CI time. I will never argue for running fewer tests as I love good test coverage, and I understand...
I see that in `3.1.2` an example was added to demonstrate how killing the process from a `CTRL-C` handler can be done, however this masks an important distinction, which is...
The `isapprox()` definition in this package does not match that of Julia's, causing differences when units are applied versus when they are not: ``` x = 1.0u"s" y = 1.0u"s"...
Fixes https://github.com/PainterQubits/Unitful.jl/issues/709
MWE: ```julia xs = 1:0.1:2 ustrip.(xs) ``` This errors out: ``` ERROR: MethodError: no method matching ustrip(::Base.TwicePrecision{Float64}) The function `ustrip` exists, but no method is defined for this combination of...
Recently, I have noticed that on builds of Julia `master`, I am getting errors such as the following: ``` pkg> resolve Expected package Foo to exist at path ... ```...