AI Summarized Hacker News

Front-page articles summarized hourly.

Handsum: An LQIP Image File Format

Handsum is a fixed-size, lossy LQIP thumbnail format. For q=1–4 it outputs 48, 75, 123, or 147 bytes respectively, guaranteeing the same size per image at a given quality. It uses a DCT-based pipeline similar to JPEG but on a 16×16 workspace: resize to 16×16, convert RGB to YCbCr, downsample chroma to 4:2:0, apply 2×2 DCT, quantize, drop high-frequency coefficients, then apply a loop filter. It supports c=3 (RGB) and has reference/wuffs implementations and a Wasm demo. Not necessarily superior to existing LQIPs, just another option.

HN Comments

Protobuf-py: Protobuf for Python, without compromises

protobuf-py is Buf’s complete, from-scratch Python Protobuf implementation covering proto2/3/editions, extensions, custom options, unknown fields, dynamic messages, and well-known types. It uses plain Python objects (with __slots__), a Rust accelerator for parsing/serialization (optional), and no runtime dependencies. It passes the Protobuf conformance suite and, end-to-end, can outperform upb in real workloads by keeping data in Python. It’s fully Pythonic, with a Registry-based types system, and generated via Buf (protoc-gen-py).

HN Comments

Show HN: Mindwalk – Replay coding-agent sessions on a 3D map of your codebase

Mindwalk is a visualization tool that replays coding-agent sessions on a 3D map of your codebase. It reads agent session logs (supporting Claude Code and Codex) locally, so no data leaves your machine. The repo can be rendered as a night-map with glow reflecting file reads, edits, and touches; unvisited files stay dark. Its playback deck, HUD, timeline marks, and inspector let you scrub and jump to moments. Under the hood: a trace (session log) and a citymap (deterministic layout); a Go server with a React/Three.js frontend. Quickstart and dev setup via make and install.sh.

HN Comments

The 'Father of the Internet' is finally retiring

Vinton Cerf, the 'Father of the Internet,' will retire from Google next week after more than 20 years as chief internet evangelist. Cerf and Robert Kahn co-created TCP/IP, the foundational protocols of the internet. Speaking at the Open Frontier conference, he urged ongoing open standards amid AI’s rise, predicting that autonomous AI agents will require interoperable, formal standards rather than natural language. He warned that English may not be adequate for interagent communication. The article also notes his honors and a light anecdote about his three-piece suits.

HN Comments

Why Write Code in 2026

Doug Turnbull argues that even as AI agents, prompts, tests, and automated evaluation enable fast software changes, writing code remains valuable. Direct coding helps developers think in executable steps, understand architecture, and manage fragility that agents alone can’t handle. Agents aren’t perfect compilers; they read imperfect code and generate changes, so human guidance, taste, and ownership are essential. Details—from algorithms to CI—must connect to the big picture. The post also promotes a training course on using agents in search.

HN Comments

EF Core 11 makes your split queries faster

EF Core 11 speeds up split queries by pruning reference navigations from collection queries when using AsSplitQuery. Previously, the second query dragged in extra JOINs/ORDER BY columns for related references, hurting performance. Now the second query is leaner, e.g., joining Post to Blog only on needed keys. Benchmarks show faster runtimes and fewer allocations in .NET 11 vs .NET 10, though split queries can increase roundtrips and aren’t atomic. Use AsSplitQuery for speed, but beware potential state-change syncing issues.

HN Comments

Under federal rule, colleges must leave grads better off or lose financial aid

Education Dept. launches a 'do no harm' earnings test for federal loans: if a program's graduates don't earn more than non-college peers, it could lose aid. A program fails if grads earn less than a bachelor’s for two of three years; first-year data in 2027, with penalties possible from 2028–29. Most programs pass, but about 800,000 students are in at‑risk fields, many in for-profit certificates and some associate tracks. Arts and music programs—Juilliard, NE Conservatory, PSU music—are among those likely to fail. Critics say earnings alone undervalue arts careers and nonlinear pay.

HN Comments

Fixed three bugs that made Qwen3.5-122B a daily driver on Mac Studio

Andryo Marzuki details switching from DS4 Flash to Qwen 3.5 122B to run a frontier model locally on an M3 Mac Studio Ultra for long-context, near-instant pair programming. He fixes three bugs in his serving stack—per-turn system-prompt timestamps breaking cache matches, interrupt-path history loss, and junk writes in the checkpoint store—by forking rapid-mlx into qMLX with hybrid attention and a disk-KV restore. Results show fast, cache-driven prefill and decode (~55 tok/s prefill; ~28–55 tok/s decode at long context). Verdict: DS4 was excellent but not right for his workflow; Qwen 3.5 122B fits.

HN Comments

An agent in 100 lines of Lisp

In a 1990s Lisp-heavy AI course, the author contrasts symbolic AI with today’s deep learning. In 2026 he builds a Lisp-based agent loop: a simple recursive process that feeds model outputs, runs tools when asked, and appends results, all without frameworks. The agent uses eval as a tool to generate new Lisp code, including a brave-search function, effectively turning code into data and memories into capabilities. Memory persists through transcript-based recall/remember, with no fixed tool catalog—capabilities are created at runtime from past conversations. Lisp’s code-as-data underpins modern agent loops, validating the professor’s early intuition.

HN Comments

Why are US consumers so angry? It's not just high prices

US consumers are angry not only about prices but an “annoyance economy” of overcharges, hidden fees, and poor service, costing households about $165 billion a year. Contributing factors include corporate consolidation, regulatory rollbacks, court rulings weakening consumer rights, tech-driven cost cuts, and private equity, plus a retreat of federal watchdogs. The FTC has pushed back in some cases, states are acting, but protections have weakened since the Nader era. Shrinking consumer journalism and a shift toward civil litigation are also highlighted as relief could come from new legal challenges.

HN Comments

Jellyfish Undersea Roundabout

Faroe Islands opened the world’s first undersea roundabout, inside the Eysturoyartunnil subsea tunnel (11.2 km; second-longest subsea road tunnel). A natural rock pillar sits 72 meters below the surface and is illuminated, surrounded by an 80-meter steel sculpture of life-sized figures holding hands, by Tróndur Patursson. The roundabout anchors the tunnel linking Tórshavn and Klaksvík across Skálafjørður, cutting driving time from about 70 to 35 minutes. Toll is 75 DKK one-way (175 DKK without a subscription). Opened Dec 19, 2020; project cost ~260 million EUR; funds future tunnels.

HN Comments

Show HN: Quantum-Qec / Matrix-Free Quantum Homeostatic Engine(Blueprint)

Quantum-Mesh-QEC v2 describes a production-ready, decentralized Surface Code control system that eliminates classical decoding latency with a three-tier hardware-fused loop. Layer 1: hardware edge with 32-channel ancilla rails, branchless C99 and inline assembly that monitor stabilizer parities without measuring data qubits, outputting -99.0f fault tokens. Layer 2: AI Core backend using JAX/XLA, zero-copy pybind11 bridge, and stop_gradient to isolate weights, performing local syndrome refinement. Layer 3: asynchronous Global Orchestrator updates a defect topology map for virtual lattice surgery. Apache 2.0; zero-copy, no cloning; μs-scale operation; 0ns allocation overhead.

HN Comments

A Erlang style pure Scheme Webserver and further

Igropyr is a fault-tolerant HTTP server for Chez Scheme built on libuv, Erlang-style actors and a single OS thread. It runs each request in a supervised worker pool; crashes are healed with automatic retries (up to 3) and long-running or half-sent requests are isolated. It supports live hot code swapping of handlers/routes with zero downtime, graceful shutdown, and multi-process listening via SO_REUSEPORT. When failures occur, a structured fault is returned on the same keep-alive connection. Dialogues are per-request conversations (processes) with transactional rollback across rounds. It includes non-blocking Redis/MySQL, WebSocket, streaming, and Prometheus metrics.

HN Comments

What xAI's Grok Build CLI Actually Sends to xAI

xAI's Grok Build CLI transmits file contents to xAI in two ways: model-turn payloads (/v1/responses) and a persistent workspace snapshot uploaded to Google Cloud Storage (/v1/storage) under grok-code-session-traces. It uploads the entire repo contents (as a git bundle), including never-read files, stored in GCS; in a 12 GB repo about 5.1 GB was uploaded vs ~192 KB in model-turn. Disabling "Improve the model" does not stop uploads. The summary covers transmission, not training policy; training use remains policy-based. Canary files recovered from the bundles corroborate the repo-wide upload.

HN Comments

We Know Simple Fluids Can Flow. Turns Out, Some Can Fracture

Extensional rheology experiments on a simple hydrocarbon blend show that even nonelastic fluids can fracture under sufficient tearing stress, challenging the idea that fracture requires elasticity. High-speed imaging reveals brittle cracks nucleating and propagating at 500–1,500 m/s, far faster than in viscoelastic melts. The fractures occur at about 2 MPa, with the critical stress scaling with viscosity times strain rate. Cavitation also contributes. Findings suggest fracture is not purely elasticity-driven and have implications for fibers, inkjet printing, and soft robotics.

HN Comments

Martha Lillard, last US polio patient using iron lung, dies at 78 in Oklahoma

Martha Lillard, diagnosed with polio at age 5, was the last U.S. polio patient using an iron lung. She died June 26 in Oklahoma at 78, with chronic pulmonary failure and post-polio syndrome listed as causes; long-haul COVID-19 contributed. She lived largely in an iron lung for years, attending school via intercom and even driving for a time. She later married Baha Salh, whom she met online after 9/11. She contracted COVID-19 twice and spent the last years mostly at home.

HN Comments

I Did Not Kill Stanley Lieber: How to Draw (With 9front)

How to draw (with 9front) teaches drawing on 9front with paint(1). It discusses hardware: computer, two-in-one machines, mouse, touch, tablets, keyboard, and drawterm/vnc. It presents paint(1) as a paper-like tool with no pressure sensitivity, no true layers, and emphasizes treating the window size as the canvas. It explains workflow and tool usage (colors, brush, fill, eraser, line, circle, pan, zoom, undo, reset), plus faux layers. It covers image operations: page(1) for viewing, vcrop/crop/resize/rotate, and defining exact canvas sizes via crop math. Finally, converting to PNG and sharing options, with credits and a wink.

HN Comments

Long Covid May Physically Damage the Nerves That Control the Stomach

Could not summarize article.

HN Comments

A public ledger of cloud outages and the SLA credits they trigger

SLA Credit Watch tracks vendor status pages, maintains a monthly downtime ledger, and notifies you when outages cross an SLA credit threshold. It shows the credit you’re entitled to and the filing deadline by email. Open incidents include Twilio SMS delays in Colombia. Vendors tracked include AWS, Cloudflare, Google Cloud, Microsoft 365/Azure, Slack, Twilio, and Zoom. Subscribing sends the credit math and deadlines by email; nothing else is shared. © 2026 AllCaps Technologies Inc.

HN Comments

A pure scheme web programming tool

Goeteia is a self-hosting Scheme compiler implemented in Scheme that compiles to WebAssembly and runs entirely in the browser. The page ships the compiler (goeteia.wasm ~70 KB gzipped); each Run recompiles the source in ~15 ms without a server. The build is byte-identical to its input. It uses Wasm GC, unboxed fixnums, GC structs, hygienic macros, real closures and tail calls, plus call/cc with dynamic-wind. It offers a reactive web stack, 3D/WebGL, and an s-expression RPC backend; quick-start scripts; MIT license; runs on Node 22+ or modern browsers.

HN Comments

Made by Johno Whitaker using FastHTML