Tim Holy
Tim Holy
I notice there's no integration with Images.jl here, and I'm curious about the reasons. If Images.jl doesn't actually offer anything of value to you, what would it take to make...
I am giving this exciting project a try, and getting this: ```julia (@v1.10) pkg> generate VoiceAssist Generating project VoiceAssist: VoiceAssist/Project.toml VoiceAssist/src/VoiceAssist.jl shell> cd VoiceAssist/ /tmp/VoiceAssist (@v1.10) pkg> add JustSayIt Resolving...
Pointed out by @KristofferC
These changes fix invalidation from the JuliaData ecosystem, presumably mostly due to new AbstractString subtypes.
Control-flow analysis changed considerably in LoweredCodeUtils 2.4 (xref https://github.com/JuliaDebug/LoweredCodeUtils.jl/issues/87). This updates to the new version. The overall trend is less reliance on `norequire` as a way of blocking certain "bad"...
One potential strategy to reducing noise from JET is to allow developers to annotate their code to give JET hints, much in the way that we can [annotate C source...
When writing out a report, the numbers appear to reflect the line number at the last time the method was defined, not the current line number in a file you...
When a call has many errors, it would be nice to have an easier way of iteratively inspecting the context and fixing the cause. One potential option would be to...
```julia julia> struct ItrList list::Union{Tuple{},Vector{Int}} end julia> function firstitem(ilist::ItrList) list = ilist.list if length(list) >= 1 return list[1] end error("list is empty") end firstitem (generic function with 1 method) julia>...
Feel free to close this, but I thought it might be useful to start a list of things that might need to be improved in Base to reduce the frequency...