Marshall Lochbaum

Results 41 comments of Marshall Lochbaum

There are quite a lot of non-indexed repositories with BQN code. I found this while looking for Advent of Code repositories for [this page](https://mlochbaum.github.io/BQN/community/aoc.html) and [this year's chart](https://gist.github.com/mlochbaum/51f7ce4b5966d9bb54ae89915d81b15b), and as...

I've indexed the following 28 Advent of Code repositories, which brings [this search](https://github.com/search?type=code&q=NOT+is%3Afork+path%3A*.bqn+NOT+repo%3Aacmeism%2FRosettaCodeData) up to 2k. I did find that some repositories I listed earlier were actually deleted or renamed,...

Apologies, I'd just talked to skykanin who believed popularity was the only remaining issue. I'm asking around to see if I can find someone to help.

It's not supported as a configuration, but if you change `normalizePhone` to set `p.norm = 0` instead of doing anything else, nothing will be normalized. To remove the UI elements...

Hi Banbeu! I don't consider config.js to be part of the tool, really. It's included to make the sample graph tool work and for convenience when working with Crin (but...

Thanks for working on this! I think I'll be able to merge, and possibly find a sensible solution for the old UI, but I probably won't have time to do...

Thanks for reaching out! I'm happy to work with you to get accurate benchmarks and I'll see if I can get the Julia code running a little later. Note that...

Here's a run on a rather slow CPU; can also confirm that Julia 1.9.0 is >2x faster than 1.8.5! ``` $ gcc -O3 bench.c -o bench && ./bench Sorting random...

The idea with SingeliSort is to use a top-down quicksort, and switch over to Robin Hood when the array gets small enough and a sample indicates that the distribution is...

`./bench 7` will also run up to 1e7, and you can do a finer benchmark with `./bench l 40`. Since RH on random data does random writes, the spike comes...