Nicholas Bauer
Nicholas Bauer
In profiling the creation of a plot with many series, after #4235 and #4236, a significant bottleneck is `warn_on_unsupported_args`, with two lines taking up a combined 23% of samples: 1614...
It looks like there used to be an option to have both "skinny" crosses and regular marker-shaped crosses, but I seem to only be able to generate skinny crosses. I...
## Details Tick spacing does not monotonically increase with axis length. This is especially noticeable when animating an increasing axis. The effect can be seen with these xlims: (0, 34),...
Fixed a type inference issue with `dims_howmany`, removed a few other unneeded array allocations. Using `imfilter` from ImageFiltering.jl, this is the result: Before: 457.400 μs (173 allocations: 1.21 MiB) After:...
I had a severe issue with latency and bunched up sounds when using this plugin on Android for sound effects. I found SoundPool, and simply by changing the backing Android...
The hardware silencing switch mutes playback from your player on iOS devices. It appears there is a way to override this behavior in an app: https://stackoverflow.com/questions/10322040/how-to-play-a-sound-using-avaudioplayer-when-in-silent-mode-in-iPhone Please consider making this...
When I see "Other" sticking around in South Africa, I'm curious what those are. I'm also curious to see if any minor variants are managing to hang around at low...
Like the per-country graphs, but incorporating the whole world. Perhaps normalized by country sequencing counts and population. I'd be curious to see what the global picture is.
Currently the docstring for `knn` refers to `nn`, but not vice versa. I can make a PR, just recording it.
To implement an exclusive nearest neighbor algorithm, I 'removed' points from my points array by setting their values to `Inf` and rebuilding the `BallTree` from the edited array. I did...