NEWS
Hacker News
Using their Prove2Me platform, an autonomous swarm of Claude agents generated 13 million lines of Lean code in just 11 days, checking off the final, legendary entry on Freek …
The front page today is an absolute goldmine of deep-technical systems engineering, retro-computing wizardry, and some highly explosive industry drama. If you’ve been busy shipping code and missed the firehose, here is the curated signal from the noise.
Top Story
Anthropic has stunned the technical and mathematical communities by announcing the complete auto-formalization of Fermat’s Last Theorem in Lean 4. Using their Prove2Me platform, an autonomous swarm of Claude agents generated 13 million lines of Lean code in just 11 days, checking off the final, legendary entry on Freek Wiedijk’s 20-year-old list of 100 formalization challenges and provoking a mix of awe, excitement, and existential dread from veteran mathematicians like Kevin Buzzard.
Front Page Highlights
Why is Arrays.fill 265 times slower on G1GC? · Krzysztof Ślusarski
This masterclass in low-level JVM performance diagnostics traces an unexpected 265x slowdown in simple reference-filling arrays to memory barriers (specifically ARM64’s dmb fence) triggered because the arrays exceeded the G1GC “humongous threshold” and were allocated directly into the old generation. Ślusarski walks through machine assembly, HotSpot C++ internals, and JEP 522 in the upcoming JDK 26, which finally solves the issue by introducing a second card table. The HN crowd is eating this up as a textbook example of why developer priors on “simple operations” fail under complex compiler and garbage-collector heuristics.
Grep beats LSP? Why coding agents ignore your fancier tools · AgentConnect
An empirical study of LLM coding agents reveals that, despite having access to highly precise Language Server Protocol (LSP) semantic tools, models unprompted choose grep lexical searches on code localization tasks. The author demonstrates that “harness design” is the bottleneck: raw LSP locations force models into expensive, token-intensive multi-turn file reads, whereas grep’s simple path:line:content output matches LLM cognitive loops perfectly. Comments are buzzing with agreement from developers who see this as a validation of text-based developer environments over heavy IDE abstractions.
Porting my 1993 Amiga game to Godot, with an LLM reading the 68000 assembly · Babylonian Twins The creator of Babylonian Twins recounts using Claude Fable 5 to help port his original 1993 Amiga 500 game (originally written in pure 68000 assembly under wartime sanctions in Baghdad) to Godot 4. The model successfully decoded 72,000 lines of undocumented, shorthand-heavy assembly files, wrote Python scripts to unpack custom assets, and scaffolded characters in Godot in minutes. This incredible retro-engineering triumph resonated deeply with the community, sparking conversations about the sheer capability of frontier models at parsing extremely rare historical datasets.
Google AI Mode shows same products 21.6% more expensive than traditional search · Productrise A massive study tracking 2 million product listings across 100,000 search results reveals that when Google’s “AI Mode” recommends the exact same product as traditional search, it displays a price that is on average 21.6% higher. AI Mode acts as a curated path to high-priced merchant-direct stock, swapping out cheaper third-party marketplace sellers in nearly half of the matched cases. Technical founders on HN are pointing to this as a dark foreboding of “enshittified” search, where AI discovery mechanisms are optimized for corporate margin capture rather than consumer utility.
Hackers Had a Live Feed of Every ID Verification Company Scanned for over a Year · Techdirt A devastating data breach exposing over 153 million driver’s license scans (including that of the sitting U.S. Secretary of Defense) reveals that Louisiana-based identity verifier IDScan.net was leaking scans to hackers in real-time for over a year. The company, which actively lobbied for Kids Online Safety Act (KOSA) age-verification mandates, failed to detect the breach internally while hackers sold live exfiltrated database access on the dark web. The comment section is a unified wall of outrage against state-mandated age verification laws, which developers argue are fundamentally insecure honeypots waiting to be cracked.
The asteroid currently hitting front end web development · Nolan Lawson Browser performance engineer Nolan Lawson examines the quiet, systemic collapse of frontend web development education as legendary educators dial back their efforts. Lawson argues that the AI coding boom is rendering specialized developer-experience standards (like shadow DOM or new CSS syntaxes) obsolete because agents don’t care about syntactic ergonomics, leaving humans to mostly debug “vibe-coded monstrosities”. The thread is a fascinating and melancholic debate on whether frontend has been reduced from an art of performance and craft into a commoditized, machine-generated glue layer.
Digital Sovereignty Is Written in PHP · The PHP Foundation Germany is spending €108 million to migrate its federal websites to TYPO3 (a PHP content management system), highlighting a bizarre asymmetry: the public sector runs entirely on open-source PHP, yet the PHP Foundation struggles with a tiny $730K annual budget. The post notes that Europe’s “digital sovereignty” is heavily built on PHP apps like Drupal, Nextcloud, and MediaWiki, which are kept alive by a mere thirteen contracted engineers. HN readers are debating the “tragedy of the commons” in open source, with many advocating for procurement reform that forces government contracts to allocate a percentage back to upstream code maintainers.
VC isn’t VC anymore · Anil Dash Anil Dash delivers a scathing, insider indictment of the venture capital industry’s transformation into what he terms “Cancer Capital”. Dash exposes how top-tier firms like Andreessen Horowitz (a16z) have restructured to bypass regulatory oversight, pumped a record $115 million into political midterms, and even hired high-profile cultural warfare figures as partners purely for political posturing. The resulting comments are highly polarized, debating whether VC has officially abandoned funding genuine technological innovation in favor of buying unchecked oligarchical influence.
Show HN & Launches
This week’s standout is TERMy, a fast, lightweight local terminal assistant built in only 1000 lines of Python and JS that achieves NLU-style command execution with zero machine learning, embeddings, or LLMs, sidestepping expensive API costs. We also saw GitHub launch Project HydraFusion, a research preview for Copilot CLI that uses an adaptive multi-model orchestration harness to route queries through cascading and critiquing pathways to optimize cost versus quality. Finally, the hardware crowd is loving OpenTrailPaper, an open-source e-paper bike computer built for LilyGO T5S3 boards that handles GPX route tracking and offline maps completely offline.
Discussion & Debate
A highly heated thread erupted over 1Password’s defense of its $100,000 corporate patronage of the Omacom Foundation, causing many privacy-conscious users to threaten migrating to competitors over the “moral dilemma” of supporting discriminatory behaviors. Meanwhile, a massive debate is ongoing regarding the unexplained simultaneous outages of ChatGPT, Claude, and Grok, with users skeptical of OpenAI’s claim of a “routing error” and xAI’s Memphis data center explanation given the precise concurrency.
🛠️ Would you like me to create an interactive quiz or study guide on JVM garbage collection tuning and assembly-level memory barriers to help lock in these core systems performance concepts?