Greg Hurrell

Results 403 comments of Greg Hurrell

Maybe something to revisit in some years. For now, it's clear that simply turning off IPv4 is not an option.

Quick test of [Hoard](https://github.com/emeryberger/Hoard), for comparison: ``` brew tap emeryberger/hoard brew install --HEAD emeryberger/hoard/libhoard make clean make hoard bin/benchmarks/matcher.lua ``` Results (relative to `wincent/mimalloc` branch) on M3: ``` Summary of...

Another hang, with most of the samples landing after `markdown.so`... ``` Sort by top of stack, same collapsed (when >= 5): ??? (in ) [0x10513fb84] 227 ??? (in ) [0x10513fe78]...

Another hang, again with the samples landing somewhere between `commandt.so` and `typescript.so`. As before, I don't see how Command-T could be involved (I'm in `INSERT` mode when this happens, with...

Just noting, I'd try [blink.cmp](https://github.com/Saghen/blink.cmp) to see if that sidesteps the problem, but I would need it to implement the `MatchSuffix` behaviour described here, which I can't live without: -...

~Need to fix docs on `scanner_new()` too. It doesn't lead to `scanner_free()` freeing individual string contents.~

This hasn't been prioritized because I never used the MRU finder myself, but I'd be open to a pull request (and even in the absence of a pull request, I...

Likely fix that doesn't look like it will be merged: - https://github.com/actions/checkout/pull/1321

Here's a not-useful SIMD change (no effect, because it doesn't run in a loop): ```diff diff --git a/lua/wincent/commandt/lib/matcher.c b/lua/wincent/commandt/lib/matcher.c index e75fa39..0db3772 100644 --- a/lua/wincent/commandt/lib/matcher.c +++ b/lua/wincent/commandt/lib/matcher.c @@ -5,6 +5,7 @@...

Perhaps some interesting ideas in this blog post, ["How we made JSON.stringify more than twice as fast"](https://v8.dev/blog/json-stringify). Specifically they are using SIMD to search for characters that need to be...