Ask HN: Why hasn't x86 caught up with Apple M series?
450 points by stephenheron 7d ago 620 comments
Ask HN: Did Developers Undermine Their Own Profession?
8 points by rayanboulares 19h ago 16 comments
Differential Sync Protocol (DSP)
1 iLikeFunctional 1 9/1/2025, 4:12:59 PM github.com ↗
It’s an HTTP/2 layer (written in Rust) that reduces payload sizes by sending binary diffs instead of full resource bodies. The server tracks resource versions per client session, computes minimal deltas, and only transmits what’s changed. If that’s not possible, it falls back to a normal full response.
In practice, this cuts bandwidth dramatically (often ~90%) for high-frequency polling APIs — things like dashboards, log streams, chat threads, IoT feeds. Not as useful for tiny or highly volatile resources.
Under the hood it’s built in Rust using similar for diffing, with a compact binary wire format, session management (TTL, memory limits, cleanup), and comes with a demo client + server.