Warp_cache – SIEVE cache in Rust for Python, 25x faster than cachetools
SIEVE cache beats LRU with one-line swap, but only matters if you're bottlenecked on cache.
goxe is a log reduction tool written in go. it normalizes, filters, and aggregates repeated messages. the result is less noise, lower bandwidth, and cheaper storage without losing visibility into recurring issues.
Switching core processing from string conversions to zero-copy byte slices is a concrete, measurable win for tools that churn through repositories and API payloads — fewer allocations, better throughput. The addition of a self-update (goxe update) for Unix and several GitHub API edge-case fixes shows practical attention to workflow friction, but this is a focused performance/tooling improvement for a niche audience rather than a category changer.
Backend developers, DevOps engineers, and anyone who builds or uses performance-sensitive CLI tooling
Performance: Refactored core processing to use byte slices instead of string conversions, reducing allocations and improving throughput.
Reliability: Fixed several edge cases in the GitHub API integration.
UX (Unix): Added a new goxe update command for hot-reloading, allowing the binary to update itself without interrupting the workflow on Unix systems.
Check it out here: https://github.com/DumbNoxx/goxe/releases/tag/v1.3.6Version Notes: https://dumbnoxx.github.io/goxe-doc/releases/v136/
SIEVE cache beats LRU with one-line swap, but only matters if you're bottlenecked on cache.
They stopped pretending chunking at arbitrary byte offsets was fine and instead scan once to build message boundaries, then binary-search for clean split points — that simple change eliminates the OOM-by-design scenario. Couple that with SIMD-aware prefetch tuning (different distances for AVX2 vs AVX-512) and you get practical microarch-aware engineering, not just benchmark stunts; I want this shipped as a library or tool so other firms can stop reinventing the same footguns.
SSH tar streaming beats SFTP speeds, but rsync already owns this category.
Another typing speed game with no clear hook over Monkeytype.
Faster JSON output for AF_ALG detection than piping lsof through grep.
Porting a complex page-cache mutation exploit to pure portable C with zero assembly is impressive constraint craft.