AI Summarized Hacker News

Front-page articles summarized hourly.

Stepfun Step 5 Preview (LLM): On AA Pareto frontier

Step 5 Preview is a proprietary multimodal model from StepFun (released Sept 18, 2026). It accepts text and image inputs, outputs text, and runs with a 1M-token context window. With 600B parameters, it ranks 44 on the Artificial Analysis Intelligence Index (high, above median 25). It produced 160M output tokens (more verbose than median 90M). Pricing: $1.00 per 1M input tokens and $2.70 per 1M output tokens (blended ~$0.51/1M tokens with cache). Not open source; API available via one provider. Total Intelligence Index evaluation cost: $918.34.

HN Comments

Veronese's Dogs

Thomas W. Laqueur argues Veronese’s dogs are essential, not decoration, in his theatrical canvases. Reading Cupid with Two Dogs, Happy Union, The Adoration of the Magi, and The Wedding Feast at Cana, he shows dogs shaping gaze, tenderness, and grounding grand scenes in the earthly present. The 1573 Inquisition over Christ in the House of Levi reveals Veronese’s theatricality in religious painting, leading to a label change rather than erasure. Across these works, dogs act as witnesses linking humans to the divine, even as Napoleon later looted The Wedding Feast.

HN Comments

If math is more than proof, we need to better celebrate the rest of it

Grant Sanderson's guest post, via Terence Tao, argues that mathematics should value 'motivated explanations'—narratives that explain how to think and why a result is right, not just produce proofs. Definitions may come in the middle; ideas can start imperfectly and be refined; exemplars include discovery fiction and the Princeton Companion to Mathematics. The piece proposes open exposition problems, new standards, and journals to credit explanatory work, and suggests career and funding shifts to reward expository contributions. It highlights examples from Thurston and Chow, and discusses AI-assisted progress on Erdős problems to show the need for human-understanding work.

HN Comments

GPT-6 Astra Solves a WWI German Radio Cipher

GPT-6 Astra cracked a WWI German ADFGVX cipher that had stumped others. The post explains ADFGVX encoding, with examples like HOUSE and PRINZ. Astra used the key TRUPPENVERSCHIEBUNG (rearranged alphabetically) and a long grid procedure to decode the November 27, 1918 message. The plaintext reportedly says an English cruiser arrived at Sevastopol and an Allied squadron would follow on the 26th; Astra notes a date mismatch and corroborates with HMS Canterbury logs, presenting this as a new decode.

HN Comments

Ctenophores: Wonders of Biology

Ctenophores, or comb jellies, are ancient marine predators whose biology illuminates core questions in evolution. They may be the earliest animal lineage, possibly before sponges. Their nervous system is a continuous nerve net with no synapses, suggesting nervous systems could have evolved more than once. Genomes show compact, loop-rich regulation and thousands of cell types—the aboral organ hosts a complex network of sensors. They also inform bioluminescence, membrane lipids like plasmalogens, and remarkable developmental plasticity, including staged reversal, offering deep insights into early life and neural origins.

HN Comments

You can run Git on object storage if you re-make packfiles

This article describes Objgit, a Git-on-object-storage approach that remakes packfiles for efficiency. Traditional Git packfiles assume local mmap and random access, which doesn’t map well to object stores. The author proposes a new, object-storage–native format: a 128 MiB binary packfile (.bin) plus a separate binary-encoded cue sheet (.cue) that lists each object’s hash, type, compression, offsets, sizes, and delta base. This enables precise HTTP Range requests to fetch single objects while the rest downloads in the background, stores deltas separately, and uses zstd. Benchmarks show huge reductions in S3 calls and faster pushes/clones; still experimental.

HN Comments

NASA-IBM Lunar Foundation open-Source Geospatial AI Model

Could not summarize article.

HN Comments

San Francisco Onion Futures Company

Private, transferable contracts for the future delivery of yellow onions. Sold to individuals up to 6 months out, priced $3–$12 per onion; payments via Stripe. Delivery in San Francisco, Toronto, Seattle, and Chicago (via For Our Futures); a representative coordinates delivery in the first week of each contract month, with third-party delivery possible. Prices recalculated daily by a proprietary algorithm. Each contract has a re-issuable key; owners can resell or transfer, with updated keys voiding old ones. No refunds or cash settlement. Contact [email protected]; owner Sophia Vysparov (a11ce.com).

HN Comments

Typesafe-computer-use drives a Mac toward a goal for 1/50th of a cent per step

typesafe-computer-use is a macOS automation project that OCRs the screen and chooses the next action with a small, deterministic classifier called TypeSafe, avoiding big-model prompts. It aims to reach a user’s plain-English goal at about $0.0002 per step. The loop reads the display, selects among up to 255 options with calibrated confidence, and performs a single action (click_item, use_browser, type_text, etc.). The project uses a modular pipeline (perception, dates, decide, writer), runs via uv, and logs full run artifacts.

HN Comments

Gemini hacked three companies in first known breakout by Google's AI

Could not summarize article.

HN Comments

Goroutine Leak Profiles

Goroutine leaks occur when goroutines block indefinitely on channels, locks, or other primitives, wasting memory and CPU. Traditional tests with goleak and synctest help but can miss production leaks. Go 1.27 adds a goroutine leak profiler (runtime/pprof) that detects leaks in running programs (including prod) by identifying blocked goroutines and marking leaks, focusing on leaks caused by channels and sync primitives. It’s precise but may miss other leaks and incurs some overhead. Use /debug/pprof/goroutineleak or curl to collect a profile, then go tool pprof to diagnose patterns (e.g., unbuffered channels, early returns, missing close/unlock).

HN Comments

SDCC – Small Device C Compiler

SDCC (Small Device C Compiler) is a retargetable, optimizing ANSI C compiler suite for microcontrollers, including Intel MCS-51, DS80C390, HC08, Z80/Z180, Padauk, STM8, MOS 6502/65C02, Rabbit 4000–6000, TLCS-90, eZ80, and PIC (ports). It comprises sdas/sdld (assembler/linker), sdcpp, ucsim, sdcdb, sdbinutils, runtime libraries, and more, released under GPL-family licenses. Features include MCU-specific optimizations, global register allocator, inline assembler, C99/C11/C23 support, and regression testing. PIC ports are unmaintained. Latest releases: 4.5.0 (2025-10-15) and 4.6.0 (2026-06-22 RC; final). Download from SourceForge; SVN/Git; works on Linux, Windows, macOS (amd64; others via ports).

HN Comments

Science Is Open Software

The author argues that modern science is synonymous with open‑source software because code encodes predictive models, enables reproducibility, and underpins results. Scientific knowledge must be executable, testable, and adaptable; without transparent methods, a paper cannot be trusted or extended. Open source provides modifiability, reliability, and community maintenance, allowing rapid improvement and audit. The piece envisions a future where every result is instantly reproducible through runnable code and reproducible environments, with models collaboratively evolved like Wikipedia. Practical steps: share and document code from day one; use stable, reproducible environments (NixOS); value software contributions in academia.

HN Comments

Why building a Rust LSP is hard

The post argues that building a Rust LSP is hard because you must deliver useful results from partial information. It contrasts two approaches: rust-analyzer’s incremental, salsa-based analysis with cache priming, which lazily computes only what queries require; and Rust Glancer’s eager workspace engines that index aggressively and store state on disk for restarts. Core challenges include starting up without indexing, maintaining a VFS with source generations, canceling queries in flight, and implementing analyses for definitions, bodies, macros, and type inference for features like inlay hints, hover, references, and completions. It also covers activation and protocol quirks (UTF-16, line endings).

HN Comments

Alibaba open-sources AI model that can detect cancer and nearly 150 conditions

Alibaba's Damo Academy has open-sourced Damo Radar, a vision-language AI that reads contrast-enhanced CT scans to identify nearly 150 abdominal conditions, including cancers. Trained on CTs paired with clinical reports and evaluated on roughly 40,000 real-world exams, it achieved an average AUC of 0.913 across 146 findings. The model analyzes scans across 18 abdominal organs and could extend to other imaging types, touted as the world's first expert-level generalist medical imaging model.

HN Comments

LispBM is a concurrent Lisp for microcontrollers with message passing

LispBM is a concurrent Lisp for microcontrollers, with documentation and getting-started resources, a WebAssembly demo, and community links (GitHub, Discord).

HN Comments

Show HN: LiveWorld – Every 24/7 YouTube live camera on one globe

A platform offering live webcam feeds from around the world.

HN Comments

Column built an issuer processor from scratch

Column offers an end-to-end card-issuing platform that bundles a bank, an issuer processor, and capital into a single API with direct Visa/Mastercard connections. In three API calls you can originate a revolving credit line, bind it to a card account, and issue a card (plastic, metal, or other). It supports every program type—credit, debit, prepaid, and stablecoin-backed—and lets you bring your own processor and capital. Features include real-time authorizations, wallet provisioning, 3DS, disputes, tokenization, and global issuance with stablecoin settlement.

HN Comments

A 1542 papal cipher cracked with simulated annealing

An April 1542 Farnese letter to Poggio (Vatican Segr. Stato Spagna 1A) is deciphered by recovering a key mapping digits to letters. After earlier work suggested multiple keys, the author uses a fixed monoalphabetic design and a beam-search language model to decode pages 70r–73v, treating dotted/null digits carefully. The resulting Italian reading, though still a candidate, places Montepulciano’s departure, Farnese’s push to arm against the Turks, the Hungarian subsidy, and Speyer’s 1542 diet within the papal–imperial diplomacy. The author notes partial verification by GPT readers and that external confirmation remains pending.

HN Comments

The US 'Kill Chain' That Destroyed an Iranian School

Bloomberg flags unusual activity from the user’s network and prompts a robot-verification step. To proceed, the user must confirm they’re not a bot (via CAPTCHA) and ensure JavaScript and cookies are enabled. The page links to Terms of Service and Cookie Policy, offers support with a reference ID, and pitches a Bloomberg subscription.

HN Comments

Made by Johno Whitaker using FastHTML