-
Hi,
See https://justine.lol/cosmopolitan/ and APE
It may not be a priority for you to be "actually portable", but curious, why is Windows not supported? Is it simply because you've not gotten arou…
-
The current method for `//` on `Integer` and `Complex{ Int8(8) // Int8(100)im
0//1 - 50//1*im
```
The expected answer is `0//1 - 2//25*im`
The issue is caused by `abs2` and `conj` on `Complex{In…
-
1. Julia is column major, use `A[:,j]` is much faster than `A[i,:]`
2. Avoid copying data, `A[:,j]` copies the elements into a new array, use `view(A, :, j)` is much faster!
3. utilize loop fusion h…
-
I am trying to set `environmentPath` to something like `"julia.environmentPath": "${workspaceFolder:Foo}/subdir"` that relies on [VS Code's configuration variables](https://code.visualstudio.com/docs/…
-
Minimal reproducer:
```julia-repl
julia> struct A struct B Union{A,B}(1//2)
ERROR: MethodError: no method matching nameof(::Type{Union{A, B}})
The function `nameof` exists, but no method is de…
-
I did a search on https://github.com/search?q=ArchGDAL and there's a growing usage of this package that makes it increasingly urgent for us to fix bugs, have a good API and user-friendly documentation…
-
The `source` button in the bottom right corner of a method's documentation always seems to point to some variation of [this link](https://github.com/JuliaLang/julia/tree/2d5741174ce3e6a394010d2e470e42…
-
The `to_indices` docs state that:
> The returned tuple must only contain either Ints or AbstractArrays of scalar indices that are supported by array A
But `StaticIndexing` is not either:
https:…
-
MATLAB: `my_function(arg1, arg2)`
Julia: `my_function[arg1, arg2]`
Came across this bug from a user report on: https://discourse.julialang.org/t/methoderror-no-method-matching-getindex/22496/3
-
Would be nice to omit default values in show() of structs that have defaults:
```julia
julia> @kwdef struct S
a = 1
b = 2
end
julia> @batteries S kwshow=true
julia> S()…