AI Summarized Hacker News

Front-page articles summarized hourly.

Open Source Durable Objects for Postgres

Open source Durable Objects for Postgres makes the Durable Objects model a library that runs inside your database (SQLite, PostgreSQL, MySQL) with no daemon, broker, or vendor lock-in. Each object has an identity, durable state, and an ordered mailbox; actions are committed one turn at a time in a single transaction. This replaces multi-part scaffolding (row locks, Redis locks, sweeps, retries) with one object abstraction. Shown via a TicketSale example; ~2.6 ms p50 in one process, Redis optional for wakeups. Not edge placement; pre-1.0.

HN Comments

Samsung Debuts zHBM Prototype, Stacking Memory Directly on AI Accelerators

Samsung unveiled zHBM, a z-axis memory architecture that stacks HBM directly on AI accelerators to shorten data paths, delivering up to 8x the performance of HBM5 and ~3x power efficiency, with over 50% lower thermal resistance. It also introduced zNAND-O, a TSV-connected, 4–8-layer V‑NAND aimed at on-device AI, and V10 BV‑NAND with 400+ layers, boosting density ~58% over V9. The lineup includes HBM4E/5, LPDDR5X-PIM, and AI-optimized SSDs (PM1763, BM1773). Samsung touts end-to-end IDM capability and co-optimization with customers, showcased at FMS 2026.

HN Comments

OpenAI might have stolen another major proof

Valerio Capraro posted that Andreas Thom presents evidence OpenAI trained Astra on conversations with Gábor Kun and Thom about Gromov’s soficity conjecture, one of the problems Astra allegedly solved. Capraro notes this would indicate unpublished human work was absorbed into a model and claimed as the model’s breakthrough, not a minor attribution dispute. If the allegations by Alpöge, Buckmaster, and Thom are true, we may be witnessing a major intellectual scandal—AI not discovering new mathematics but stealing human discovery.

HN Comments

DeepSeek v4.1 Flash

DeepSeek launches V4.1-Flash, the smallest model in a new architecture with native visual understanding, delivering greater capability, faster inference, higher throughput, and scalable performance. Key features: 552B MoE; a causal encoder–decoder with 8B active input and 16B output; improved pre-training and RL post-training; and a smaller KV cache (1/4 HBM, 1/8 SSD) to cut costs. V4.1-Flash is live with native multimodal support; older V4.x variants are retired. Open-source collaboration and flexible deployments are planned, including large-scale setups (e.g., 2,000 GPUs). Available on Hugging Face: deepseek-ai/DeepSeek-V4.1-Flash.

HN Comments

Larger Pacific Striped Octopus

Require a proper user-agent and adherence to the robot policy; see the two links for details.

HN Comments

OpenAI have no mathematicians capable of understanding what they put out

Mastodon’s web app requires JavaScript; if it’s disabled, users are advised to use Mastodon’s native apps for their platform.

HN Comments

All grown-ups were once children… but only few of them remember it

Terence Tao posts on Mathstodon, opening with the French fragment "Toutes les grandes personnes ont d'abord été des…", the familiar line about how all grown-ups were once children.

HN Comments

Version Control Second Coming

Version control is entering a second coming. After Git reshaped the field in 2005, a new wave—driven by AI/agents and efforts to replace GitHub—is reshaping the space. The author, a veteran of Plastic SCM, argues that GitHub’s dominance is under pressure from new forges (Entire, Pierre, Origin, GitButler, Jujutsu, Diversion, Lore, Oxen.ai) and from ideas like provenance tracking, ultra-fast commits, and cloud-first workspaces. Big monorepos, higher commit tempo, and different backends may supplant today’s Git; the winner isn’t known, but now is the moment to build VCS anew.

HN Comments

ESP32 Bit Pirate Hardware Hacking Kit with Web Tools That Speaks Every Protocol

ESP32 Bit Pirate is an open-source firmware ecosystem that turns ESP32-S3 boards into a browser-based, multi-protocol hardware workbench for learning, debugging and testing. It provides a C++ core firmware plus browser tools, docs, scripts, and companion hardware (docks, adapters) to work with I2C, SPI, UART, JTAG, CAN, USB, Wi‑Fi, BLE, Infrared, Sub‑GHz, LoRa, etc. You can flash via Web Flasher in the browser, use Web Serial terminal, or CLI over USB/Web CLI, and automate tasks with Python. Supports multiple ESP32-S3 boards. Free to use; open source on GitHub.

HN Comments

Aardman (Wallace and Gromit) Is Selling Its Original Movie Puppets

Aardman is marking its 50th anniversary by auctioning nearly 250 production puppets and props with PropStore. Items span Wallace & Gromit classics (The Wrong Trousers, A Close Shave) and newer titles (Robin Robin, Chicken Run 2), plus Morph and other pieces; Shawn the Sheep: The Beast of Mossy Bottom is also included. Some titles aren’t represented (Pokémon Tales, Over the Garden Wall). The auction launches September 24 with online, phone, and absentee bidding. Proceeds fund internal talent development programs to broaden access to animation careers, curated to connect with fans.

HN Comments

Training a 3.8B LLM to 0.384 CORE for $998 – Hugo Vergnes

Solo engineer trains a 3.8B decoder‑only LLM from scratch, achieving 0.384 CORE on 65B tokens in 43 hours for $998. Built with a YAML‑driven 'little-lm' framework, the model uses Llama‑style RMSNorm, RoPE, 14 value‑embedding tables (19% of params), and 24×8 heads. Key throughput wins came from FP8 training, vocab padding, fused cross‑entropy, and context length (2048) vs 1024. Surpasses nanochat at similar cost, proving meaningful AI work outside labs. Appendix contains full config.

HN Comments

A Stupid Idea for AI Alignment We Came with by Looking at Specification Gaming

Examines “specification gaming” in AI—agents exploiting reward design rather than solving tasks as intended, using DeepMind’s list as examples. It outlines three AI-alignment problems: specification failure, unintended instrumental goals, and power-seeking via instrumental convergence. The piece provocatively suggests making the AI crave death (or be easy to shut down) as a way to align, arguing a death wish could keep behavior safe and contained. It uses Meeseeks from Rick and Morty as an analogy and notes many gaming behaviors exploit loopholes or simulation bugs.

HN Comments

Be Using Rootless Containers

Rootless containers improve security by avoiding a root-owned Docker daemon and the Docker socket. The article highlights a Linux vulnerability where a regular user could escalate to root via docker run that mounts the host filesystem, and notes many users insecurely add themselves to the docker group. It discusses Docker’s client-server architecture on Linux and notes that virtualization on macOS/Windows mitigates host risk, with WSL as a special case. It then proposes two rootless paths: rootless Docker (user-level daemon) and Podman (daemonless). Podman is more secure but has workflow caveats (image naming, registries, 24/7 uptime). The author favors Podman.

HN Comments

Show HN: Compute polynomials twice as fast

Introduces a fast polynomial evaluation technique: after preprocessing coefficients, monic polynomials need ⌊n/2⌋+1 multiplications, and general polynomials require one more. This enables efficient approximation of exp, sin, cos, and practical polynomial evaluation in cryptography, hashing, and coding theory. A tool lets users input a polynomial and a field, then preprocesses it; described in arXiv:2609.06022 (2026) and on GitHub.

HN Comments

Show HN: What if the speed of light was 5 km/h?

Relativity Park lets you explore special relativity with a world where the speed of light is 5 km/h. Accelerate with W/A/S/D and observe relativistic effects: length contraction, time dilation, Doppler shifts, aberration, Terrell rotation, and relativistic beaming. Light-travel delays show objects where their light left. The Ferris wheel, carousel cars, and a shuttle reach ~0.75c and display contraction and rotation. A rough color mapping depicts blueshift/redshift; extremes alter color. The simulation emphasizes accuracy within a simplified, non-physical setting and notes several unphysical caveats.

HN Comments

Automattic's board forces CEO Matt Mullenweg into leave of absence

Automattic's board placed CEO Matt Mullenweg on paid leave, against his wishes, with CFO Mark Davies named interim CEO. Mullenweg alleged that Ann Dunwoody, Toni Schneider, and Sue Decker conspired to oust him; WordPress.org said the move does not affect the project, with Mary Hubbard noting Mullenweg remains a board member. Automattic, owner of WordPress.com, Tumblr, WooCommerce, and Pocket Casts, has ongoing litigation with WP Engine over royalties and governance. The company has also cut staff recently, and the rationale for the action remains unclear.

HN Comments

The Kuycon P20 – 28" 4500x3000px 3:2 monitor

Rui Carmo reviews the Kuycon P20, a 28.2-inch 4500x3000 IPS monitor with a 3:2 aspect ratio, praising its tall, productive proportions, strong stand, VESA mounting, and broad cross‑platform compatibility (Mac, Windows, Linux, iPad, Chromebook). It lacks built‑in speakers and HDR can wash out colours; its own colour tint proved hard to calibrate, requiring user tweaks. He values the height for writing, coding, and CAD, especially with an iPad, but notes initial shipping delays and a finicky colour setup. Overall, a very good, desk‑friendly monitor for his use.

HN Comments

I'm sorry, you're not going to die from an AI-engineered supervirus

Claus Wilke argues that Noah Smith's claim about AI-designed "superviruses" is implausible. Designing a virus with both high lethality and airborne spread is biologically constrained; no known mechanism permits such a virus; real-world viruses show tradeoffs between transmission and lethality. Ebola, measles, HIV illustrate. The author contends COVID-19 was near-ideal for pandemic spread but not civilization-ending; even AI-made viruses would not likely surpass COVID's harm. Real threats come from existing pathogens and public health gaps; focus should be on surveillance, vaccination, antivirals, indoor air quality, and basic hygiene, not speculative AI threats.

HN Comments

Scanned, segmented, and animated my keyboard. Now you can type on my keyboard

Fragment referencing Gaussian Splats by Chyuang Chyuang, showing a web/demo interface with loading splats, keyboard hints, and navigation controls: click to activate; drag to orbit; wheel to zoom; shift-drag to pan; ESC to release; sound on; with sections labeled "Keyboards" and "Before segmentation."

HN Comments

Factoring RSA 260

Factoring RSA-260, a 260-digit RSA modulus, was achieved with GPU-accelerated GNFS guided by Devin (an autonomous software agent). They built a high-performance GPU lattice siever and ran the GNFS pipeline on spare cluster capacity. The run cost about 4,900 GPU-days (~13.5 GPU-years) or ~$400k, with roughly 643 GPU-days for polynomial selection, 3,813 for sieving, and 467 for linear algebra. RSA-260 factors into two ~130-digit primes. This suggests RSA-1024 could be feasible at ~$30M, while RSA-2048 remains far harder; human oversight remained essential alongside AI orchestration.

HN Comments

Made by Johno Whitaker using FastHTML