Ask HN: Why hasn't x86 caught up with Apple M series?
366 points by stephenheron 1d ago 520 comments
How can a mutex in Wine be faster than a native one on Linux
3 points by lh_mouse 14h ago 1 comments
Ask HN: Best codebases to study to learn software design?
100 points by pixelworm 2d ago 89 comments
Show HN: Sip: Alternative to Git Clone
3 seeyebe 2 8/26/2025, 6:22:47 PM github.com ↗
Built a tiny CLI called sip; lets you grab a single file, a directory, or an entire repo from GitHub without cloning everything.
Works smoothly on Linux/macOS. On Windows, there’s still a libstdc++ linking issue with the exe, contributions or tips are welcome.
GitHub: https://github.com/allocata/sip
Comments (2)
Disposal8433 · 3h ago
Why no regexes, and why restrict yourself to C++17?
seeyebe · 3h ago
Didn't need the complexity of regexes for this, and C++17 strikes a good balance between features and availability.