Yuri
Yuri
Currently `pretty_table` prints incorrect information about arrays with offset axes. Julia has a function [`Base.require_one_based_indexing`](https://docs.julialang.org/en/v1/devdocs/offset-arrays/) that can be used to disallow such arrays as input and throw an error instead...
The `dropout!` function will seed the global RNG when called with a `seed` argument, leading to unexpected deterministic behavior further on in program execution once the function has returned. For...
The `dropout!` function applies `@inbounds` to a for loop iterating over `1:length(x)` where `x` is not guaranteed to have standard indexing. As a consequence the function can return incorrect results...
Hi, I found a surprising (to me) edge case regarding routes with empty path components: ```go package main import ( "fmt" "net/http" "github.com/go-chi/chi" ) func empty(w http.ResponseWriter, r *http.Request) {}...
It would be nice if the `--cors` option accepted an origin regex to more securely allow secure local development. As an example, Observable notebooks namespace every user's notebooks by their...
Hello! I've been enjoying this package for some time and have a question — is it at all possible to disable the syntactic highlighting of Julia Base functions? I often...
`@capture` introduces assignments to variables indicated in its second argument. When one of these assignments is to a variable with the same name as the first argument, things seem to...
It seems the pattern-matching syntax gets confused by the `.` in the type: ``` julia> using MacroTools, Markdown julia> @capture(md"_hello_", x_Markdown.MD) false julia> using Markdown: MD julia> @capture(md"_hello_", x_MD) true...
These methods are documented [here](https://juliastats.org/StatsBase.jl/stable/sampling/) and all contain unsafe uses of `@inbounds`. Not all sampling methods suffer from this issue, but a number of them do. When I filed my...
Following https://github.com/JuliaStats/StatsBase.jl/issues/638 I did a quick search that turned up the same bug (improper use of `@inbounds`) in [misc.jl](https://github.com/JuliaStats/StatsBase.jl/blob/320411b96c0ef0c5b0006169768b13f2554afb00/src/misc.jl). ```julia julia> using OffsetArrays, StatsBase julia> a = OffsetArray(collect(1:11), -5:5) 11-element...