PatrickHaecker
PatrickHaecker
- fix typos - fix typography - improve wording - split long lines
We should document the difference between `Base.Iterators.map` and `IterTools.imap` or document that there is no difference. I think that there is no difference, but I am not certain that ```julia...
I regularly waste a bit of time because when I want to activate an environment, I need to give the path. As the absolute path is often long, I need...
PackageCompiler.jl works here on an Ubuntu 24.04 system, but I get a warning at the end ``` […] Precompiling packages finished. 25 dependencies successfully precompiled in 32 seconds. 72 already...
### Problem Description This is related to #383. I want to open a PWA with the "Open out-of-scope URLs in a default browser (can break some web apps)" option active....
In Julia nightly ```julia julia> versioninfo() Julia Version 1.13.0-DEV.1317 Commit 3a50d6fb4b3 (2025-10-15 14:03 UTC) ``` `parsestmt` throws, although it should not throw: ```julia julia> using Base.JuliaSyntax julia> parsestmt(SyntaxNode, "do"; ignore_errors...
The current approach seems to have multiple disadvantages: - If the user only got `TensorOperatoins.jl` as a indirect dependency, the information seems to be completely useless - It's untypical to...
Fixes BoundsError when trying to open the found method by hitting the return key on Julia >= 1.9. Fixes #32 Solution by @jd-foster
There are two advantages in using `reinterpret` instead of `Base.bitcast`. 1. `reinterpret` is exported while `Base.bitcast` is private 2. `reinterpret` can handle `isbitstype`s, while `Base.bitcast` is limited to `primitive type`s...