Kristoffer Carlsson
Kristoffer Carlsson
I don't really know what you are allowed to do in the dynamic artifact selector but this improves performance a lot at least (e.g. for `Pkg.status`) when packages using this...
I have had an idea for a while which I call "sub-projects" and we discussed it on the pkg-dev call yesterday. The post here is to summarize that discussion. 1....
This has been fixed to work in Julia 1.10 cc @mauro3
```julia function f_debug(x) out = [] for i in x push!(out, 2i) end out end ``` ```julia julia> @enter f_debug(rand(10)) In f_debug(x) at /home/kc/demo.jl:14 14 function f_debug(x) >15 out =...
From Revise tests: ``` (jl_Sw1Slv) pkg> add Revise; test Revise ... beginning signatures tests julia: /source/src/jltypes.c:2005: jl_reinstantiate_inner_types: Assertion `ndt->types == ((void *)0)' failed. [9] signal (6.-6): Aborted in expression starting...
I sometimes see "runtime" indicators as in: ``` runtime libgfortran_version(p::Base.BinaryPlatforms.Platform)::Union{Nothing, VersionNumber} !== nothing::Nothing ``` But will this `!==` call really be a runtime call?
This is for: ```julia z = 0 function f_global(x) for v in x global z += v end end ``` Note the double `::Any`.
https://github.com/JuliaIO/WidthLimitedIO.jl
I came across this package and thought it was kind of slow to use so I added a small precompile workload to speed it up: ``` # Before: # 1.8:...