Ask HN: Why hasn't x86 caught up with Apple M series?
419 points by stephenheron 2d ago 599 comments
Ask HN: Best codebases to study to learn software design?
100 points by pixelworm 3d ago 89 comments
Stop squashing your commits. You're squashing your AI too
4 points by jannesblobel 1d ago 9 comments
The Performance Spectrum
2 ingve 1 8/27/2025, 4:54:09 PM mropert.github.io ↗
Comments (1)
mmcn · 6h ago
Agreed that performance always has a cost, and not just on maintainability. I've seen working with financial ledgers that there's a ceiling on throughput when read-after-write consistency is required. If you want to make sure a financial account can't go below 0, then each write must be processed serially. That means a round trip to a database each time.