Hacker News — 2026-07-10#

Top Story#

Apple has dropped a massive lawsuit against OpenAI, alleging that former design VP Tang Tan and other ex-employees stole proprietary secrets to benefit OpenAI’s new hardware push under Jony Ive. It’s top-tier industry drama that underscores just how aggressive the talent and IP wars have become as OpenAI attempts to build consumer physical devices.

Front Page Highlights#

Postgres rewritten in Rust, now passing 100% of the Postgres regression tests · GitHub It was only a matter of time before the “Rewrite it in Rust” crowd came for Postgres, but pgrust just hit a massive milestone by matching Postgres 18.3’s output across over 46,000 regression queries. The goal isn’t just memory safety, but making deep architectural changes—like multithreading and fast branching—easier to explore using AI-assisted programming.

Preempt_none Is Dead; Your Postgres Probably Doesn’t Care · thebuild.com A recent benchmark showed Postgres throughput halving on Linux 7.0, sparking panic, but this deep dive reveals it’s a configuration artifact, not a kernel crisis. The slowdown only happens when a massive shared memory pool takes minor page faults while holding a spinlock. The real lesson: if you’re running a massive database, just turn on huge pages and stop thrashing your TLB.

Scarf has moved away from Haskell · avi.press After seven years in production, the creators of Scarf are migrating to Python because the economics of software development have fundamentally changed. The author argues that slow compile times and ecosystem friction neutralize the speed advantages of LLM coding agents, making Haskell’s strict type safety a bottleneck rather than a feature in the AI era.

Why We Don’t Trust the Database with Authentication · blog.sturdystatistics.com Treating your database as the ultimate source of truth for API keys is a great way to turn a simple SQL injection into a full tenant takeover. This post outlines a paranoid, defense-in-depth architecture that uses server-side HMAC signatures and database triggers to cryptographically bind API keys to specific organizations and rotation epochs.

An Update on the scraper situation · lwn.net LWN details the ongoing nightmare of AI scraper bots hammering independent websites using “residential proxies”. The open web is being forced to hide behind proof-of-work checks and login gates just to survive the DDoS-level traffic generated by shadowy AI data-harvesting operations.

Unified Memory, Explained: Why Mini PCs Can Run 70B Models a Big GPU Can’t · vettedconsumer.com If you’re wondering why a $2,000 Mini PC can load a 70B parameter model that a $2,000 RTX 5090 chokes on, it comes down to unified memory capacity. However, the tradeoff is brutal: because generation is bottlenecked by memory bandwidth, these high-capacity, low-bandwidth machines are painfully slow at generating text and processing long prompts compared to discrete GPUs.

Why American ambulance rides are so expensive · davidoks.blog A fascinating look at the perverse economics of emergency medical services. Because Medicare pays below cost and the fixed costs of 24/7 readiness are astronomical, ambulance providers are forced to extract their entire operating margin by slamming privately insured patients with massive out-of-network surprise bills.

Show HN & Launches#

Show HN: Getting GLM 5.2 running on my slow computer is an absolutely wild pure C engine that runs a 744B-parameter MoE model on just 25GB of RAM by aggressively streaming experts directly from an NVMe drive. Show HN: Runloom – Go-style coroutines for Python free-threaded brings stackful M:N work-stealing coroutines to Python 3.14t, bypassing async/await completely and matching Go’s spawn throughput. Show HN: Wyrm – Solve algebra by touch offers a conditionally-sound symbolic algebra engine written in pure TypeScript that guarantees impossible mathematical moves remain impossible in the UI.

Discussion & Debate#

George Hotz published a raw, philosophical piece titled Punk, or why I don’t stream anymore, arguing that AI and performative online spectacles have hollowed out authentic hacker culture. Meanwhile, there’s a fantastic culture clash in the comments between the traditional UNIX philosophy of mastering complex tools—as debated in Good Tools Are Invisible—and the modern reality detailed in You’re Not a Better Engineer Because You Type Git Commands by Hand, where developers are happily outsourcing their git hygiene and boilerplate to AI agents.


Categories: News, Tech