Daniel Matz
Daniel Matz
I'm a little confused by your word choice for `adoc-promote` and `adoc-denote`. First, the opposite of promote is demote, not denote. Denote means to indicate. Second, promote in this sense...
When using the `@deprecate` macro without specifying the deprecated signature, a method is created for the old name that accepts a variable number of positional arguments. This PR makes the...
Is using an `ArrayPartition` within another `ArrayPartition` supported? I'm having the following problem: ```julia julia> using StaticArrays, RecursiveArrayTools julia> x = ArrayPartition(ArrayPartition(@SMatrix [1.1 1.2; 1.3 1.4]), SVector(1.2)) ([1.1 1.2; 1.3...
It seems like the `~` only gets replaced with the home directory when it is at the beginning of a word. Is that intentional? I tried this in fish: ```...
Using Distributions v0.25.87, the following results in an infinite loop: ```julia julia> d = Normal(204.764679086758, 0.0) Normal{Float64}(μ=204.764679086758, σ=0.0) julia> rand(d) 204.764679086758 julia> d2 = truncated(d, 204.764679086758, 204.764679086758) Truncated(Normal{Float64}(μ=204.764679086758, σ=0.0); lower=204.764679086758,...
After only a few days using vinegar, I'm now quite addicted to hitting `-` to navigate around. It's a lot faster than what I used to do, so thank you!...
I'd like to be able to host artifacts on my company's Linux compute server and use SCP, SFTP, etc., to download them with SSH authentication. Unfortunately, this doesn't currently work....
Libcurl's SSH key-based and agent-based authentication methods don't work unless the username is set, either by including it in the URL or by setting `CURLOPT_USERNAME`. This PR adds a `username`...
I get subtly different matrix multiplication results in different contexts in Julia 1.10. This is the simplest example I've come up with so far: ```julia using StaticArrays struct Foo{A} array::A...
I'm trying to use PkgBenchmark with one of the private packages we've developed at my company. We have a private registry. The registry and packages are stored on a self-hosted...