HackerNews Digest

July 25, 2026

Claude Opus 5

Claude Opus 5 launches as a higher‑performance, cost‑equivalent successor to Opus 4.8, targeting everyday coding and knowledge‑work use cases. Across effort settings it delivers state‑of‑the‑art results on software‑engineering benchmarks (e.g., Frontier‑Bench v0.1, CursorBench 3.2) and surpasses Opus 4.8 on ARC‑AGI 3, Zapier AutomationBench, OSWorld 2.0, and scientific‑research tasks (organic chemistry, protein‑function prediction). It achieves roughly double the performance of Opus 4.8 at half the per‑task cost, while approaching Claude Fable 5’s scores on many benchmarks. Safety and alignment audits show the lowest misalignment score to date, stronger adherence to Claude’s Constitution, and reduced deceptive behavior. Cybersecurity safeguards limit binary‑based scanning and exploit generation; the model still identifies vulnerabilities comparably to Mythos 5 but lags in exploit development. Biology safeguards remain similar to Opus 4.8, with blocked requests routed to Opus 5. Pricing stays at $5 / M input tokens and $25 / M output tokens; Fast mode runs ~2.5× faster at double price. The API supports automatic fallback and mid‑conversation tool switching.

Read full article →

Comments show mixed reactions to Opus 5. Many acknowledge that it often matches or exceeds Fable 5 on benchmark scores and specific tasks such as image‑to‑HTML conversion, while noting its lower price and broader availability without data‑retention constraints. Others highlight inconsistencies, including weaker code‑analysis performance, unexpected reasoning‑mode behavior, and unclear differences between model tiers. Users criticize confusing documentation, frequent service glitches, and abrupt account suspensions, and they question the reliability of benchmark reporting and the rationale behind safeguard variations. Overall sentiment balances appreciation for new capabilities with frustration over reliability, transparency, and comparative clarity.

Read all comments →

GC and Exceptions in Wasmtime

The Wasmtime 47 release now enables the WebAssembly GC and exceptions proposals by default, allowing languages with object‑oriented and exception‑handling models to target Wasm without custom runtimes. The GC proposal adds struct and array types with subtyping, letting the runtime manage object lifetimes; instances are created with struct.new and accessed via struct.get/struct.set. Wasmtime implements a simple Cheney‑style semi‑space copying collector: the heap is split into active and idle halves, allocation uses a bump pointer, and live objects are copied during collection, updating all GC roots. GC references are 32‑bit indices into a linear memory, providing sandboxing, compactness, and fast bounds checking via guard pages. The exceptions proposal introduces throw, try, and catch constructs, eliminating custom calling conventions and reducing binary size and runtime overhead. Wasmtime’s correctness is verified with fuzzers based on wasm‑smith, targeting object graphs, subtyping, and heap corruption. Performance is currently secondary to correctness, with future work aimed at alias‑analysis optimizations and integrating GC with the component model.

Read full article →
Read all comments →

Postgres LISTEN/NOTIFY actually scales

PostgreSQL’s LISTEN/NOTIFY suffers a scalability bottleneck because each NOTIFY executed in a transaction requires a global exclusive lock during commit. The lock ensures notifications are queued in exact commit order, but it forces serial commits and prevents group‑commit optimizations, limiting write throughput to a few thousand operations per second despite low CPU, memory, and I/O usage.

DBOS mitigated this by decoupling notifications from the source of truth: stream writes insert rows into a table, while NOTIFY calls are buffered in memory and flushed in periodic batch transactions. The batch flush acquires the global lock only once per batch, allowing individual writes to proceed concurrently and benefit from group commit. A low‑frequency poll fallback ensures durability if a crash occurs before the buffer flushes.

Benchmarks show the optimized approach reaches ~60 K writes / s on a single PostgreSQL instance with 15‑100 ms latency, fully utilizing CPU rather than being lock‑bound. The upcoming PostgreSQL 19 patch improves multi‑channel handling but does not remove the lock. Benchmark code is hosted on GitHub (dbos‑inc/dbos‑postgres‑benchmark).

Read full article →

Comments portray a nuanced view of PostgreSQL LISTEN/NOTIFY: many acknowledge it can handle moderate loads when used with adequate slack, batching, or in conjunction with lightweight services, and cite successful implementations with Rust brokers and DBOS. Conversely, several participants highlight its hard limits (payload size, connection count), operational overhead, and scaling problems on larger traffic bursts, recommending conventional queue systems for stronger consistency or higher volume. The overall consensus stresses matching technology to actual demand, avoiding premature over‑optimization, and preferring simpler, well‑understood solutions when scalability requirements exceed LISTEN/NOTIFY’s practical bounds.

Read all comments →

Opus 5 is currently #1 on Artificial Analysis Intelligence Leaderboard

The document compares a range of AI models on intelligence, performance, and price, using a weighted average cost per Intelligence Index task. Costs are derived from token pricing (input, cache hit/write, reasoning, answer) divided by task count and weighted by each task’s Intelligence Index weight. The models referenced—Claude Opus 5 (max and xhigh), Claude Fable 5, GPT‑5.6 Sol, Mercury 2, HyperNova 60B 2605, Gemini 3.5 Flash‑Lite, Granite 4.0 H Small, Gemini 2.5 Flash‑Lite, Command A+, North Mini Code, Gemini 2.5 Flash, Devstral 2, Gemma 3 4B and 27B, Llama 4 Scout, Grok 4.20 0309, Gemini 1.5 Pro (May), and Grok 4.1 Fast—are illustrated with logos. The focus is on quantifying each model’s cost efficiency relative to its weighted intelligence contribution.

Read full article →

The comments express overall skepticism toward Claude Opus 5, citing reliability problems from censorship safeguards and ID checks, high cost, and limited performance gains over cheaper alternatives. GPT‑5.6 Sol is highlighted as offering comparable intelligence at roughly half the price, making cost‑efficiency a primary concern. Leaderboards are dismissed as transient and not indicative of long‑term value, while calls for metrics that reflect intelligence per dollar increase. Additional criticisms include subpar UI, occasional depth issues, and occasional confusion in handling prompts.

Read all comments →

Taylor Farms Called White House to Try to Delay Cyclospora Recall

Comments express strong distrust of both the food industry and regulatory agencies, criticizing Taylor Farms’ handling of the Cyclospora outbreak and suggesting the recall was inadequately communicated. The false‑positive lab result is noted as not altering the investigation, yet many view it as evidence of broader systemic failures. Callers advocate for more robust, decentralized food‑testing infrastructure and question corporate influence on government decisions. Overall sentiment is skeptical and concerned, emphasizing the need for greater transparency and stronger safety measures.

Read all comments →

India's first privately-developed rocket reaches orbit on debut launch

India’s first privately developed orbital launch vehicle, Skyroot Aerospace’s Vikram‑1, successfully reached orbit on its debut flight, deploying two CubeSats and retaining additional payloads on the upper stage. Founded in 2018 by former ISRO engineers Chandana and Naga Bharath Daka, Skyroot pursued a solid‑fuel design to minimize development time and launch cost. The mission demonstrated full Indian design, manufacturing, and integration, aligning with Prime Minister Narendra Modi’s directive to expand annual launches from five to 50 by 2030. The launch supports India’s broader space agenda, which includes lunar missions and a crewed capsule for low‑Earth orbit. Skyroot plans a second Vikram‑1 flight before year‑end and positions the vehicle for both domestic and international customers, emphasizing increased access to space through private‑sector participation.

Read full article →

The comments collectively highlight strong enthusiasm for India’s emerging private space industry, noting notable startups, 3‑D‑printed engines, and recent launch successes as impressive milestones that expand global launch capacity. Technical observations raise awareness of the complexities and risks inherent in multi‑stage rocket design and telemetry. While many praise the achievement and anticipate further growth, a few express caution about potential military applications, misinformation, and political factors that could affect long‑term competitiveness. Overall, the tone is supportive yet mindful of challenges.

Read all comments →

My security camera shipped a GitHub admin token in its login page

The author examined firmware for Hanwha Vision security cameras. Using binwalk, they extracted nested tarballs; the outer image contained an encrypted fwimage.tgz decrypted with a passphrase “HTW+model‑number”. Inside, another encrypted tarball required a different scheme. Analysis of the fwupgrader binary revealed that it reconstructs an AES‑256‑CBC key and IV by XOR‑ing hard‑coded tables, then invokes the OpenSSL CLI:

openssl enc -md sha256 -aes-256-cbc -d -K <KEY> -iv <IV> -in <INPUT> -out <OUTPUT>

The recovered constants are: - KEY = dfa049bb922e63e2decc764af5628068e5b7a2662e479a615b14643e567579b0
- IV = 53f926801b81454a4f889c9a390db6e6

Decryption yields a full root filesystem. Scanning it with truffleHog found a GitHub personal access token present in ~30 files, granting admin access to hundreds of repositories in the company’s organization. The token appears to have been injected at build time by embedding the entire CI process.env into the UI code (built with Vite). Additional environment variables expose internal IP addresses (e.g., 55.101.212.23) linked to U.S. Department of Defense networks. Across ~500 firmware samples, only three contained the same token. The researcher reported the issue; Hanwha revoked the token within 12 hours.

Read full article →

The discussion centers on the difficulty of finding a white‑label IP camera with manufacturer‑supported open firmware, with many participants noting that most available options are developer‑oriented or overpriced. A strong consensus emphasizes poor security practices in commercial cameras—hard‑coded credentials, default configurations, and embedded DoD IP addresses—prompting repeated advice to isolate cameras on separate VLANs and avoid direct internet exposure, often using open‑source DVR tools. Skepticism toward proprietary apps and supply‑chain risks also appears, while a few off‑topic comments add humor or unrelated observations.

Read all comments →

Sperm Whales blow bubbles to achieve restful, vertical sleep

Researchers from the University of St Andrews and Université de Neuchâtel identified how sperm whales achieve their characteristic vertical, near‑surface sleep. Using suction‑cup tags that recorded sound and three‑dimensional movement on whales off Norway, they detected distinct bubble‑release sounds. Simulations incorporating tissue density, hydrodynamic drag and internal gas volumes showed that emitted gas bubbles reduce the whales’ natural positive buoyancy—caused by large spermaceti oil deposits and expanding lung gas during breath‑hold dives—allowing near‑neutral buoyancy just below the surface. The data indicate that resting dives begin with lower lung‑gas volumes than deep foraging dives, and that bubble release may also facilitate off‑gassing of excess CO₂ or N₂, impacting metabolic gas exchange. The study demonstrates precise buoyancy control by sperm whales during sleep, a behavior absent in terrestrial mammals.

Read full article →

The discussion clarifies that sperm whales regulate buoyancy by venting gas rather than blowing bubbles to sleep, citing the article’s title and describing how scientists detect gas release acoustically. Comparisons are drawn to scuba divers employing similar techniques, while noting that fish use internal bladders for buoyancy control. The tone mixes factual correction with light‑hearted remarks about “rainbow bubbles,” speculative humor regarding ADHD therapy and flatulence, and an overall amused acknowledgment that such events likely occur occasionally.

Read all comments →

If coding has been solved, why does software keep getting worse?

The post observes a surge of AI‑driven hype, with many developers over‑investing time in large‑language‑model prompts while job security erodes. Although recent AI tools have increased productivity and raised expectations for software output, the author argues that overall software quality is declining. Examples include repeated FaceID prompts for banking, focus‑stealing Slack windows, faulty warranty‑submission forms, and unstable car infotainment updates that impair safety. The author attributes these issues to growing system complexity—new abstractions, frameworks, and infrastructure—combined with KPI‑focused development that prioritizes feature releases over stability. While AI can effectively fix bugs if properly applied, current corporate incentives discourage such use. The author remains cautiously optimistic, suggesting that as companies accrue “AI debt,” individual developers may leverage AI to produce higher‑quality software that was previously out of reach, potentially reversing the observed decay.

Read full article →

The comments express widespread dissatisfaction with contemporary software, describing updates as anxiety‑inducing and overall quality as declining. Contributors attribute the trend to misaligned incentives, rapid release cycles, over‑engineered architectures, and insufficient involvement of experienced engineers in product decisions. While AI‑generated code is noted as a speed boost, it is not seen as a remedy for systemic issues. Some suggest using stable platforms or revising management practices, but consensus remains that current market pressures prioritize speed and profit over robustness and user experience.

Read all comments →

UK AISI / Caisi Preliminary Assessment of Kimi K3's Cyber Capabilities

The UK Artificial Intelligence Security Institute and the U.S. Center for AI Standards and Innovation jointly evaluated Moonshot AI’s Kimi K3 (released 16 July 2026; open‑weight planned 27 July 2026) for cyber capabilities.

  • Methodology: Preliminary tests used a limited set of public and private benchmarks; U.S. closed‑weight models were run with system‑level safeguards disabled, while public versions retain safeguards. Kimi K3’s overall cyber score derives from a single benchmark (ExploitBench, 41 exploit‑development tasks), giving a wider confidence interval than models evaluated across multiple benchmarks.

  • ExploitBench: Kimi K3 achieved a 32 % success rate versus 24 % for the open‑weight GLM‑5.2. It failed to attain arbitrary code execution (ACE) on any task (0/41), whereas the most capable models averaged 20/41 ACE successes.

  • Cyber‑range “The Last Ones” (TLO): In a 32‑step simulated corporate network attack, Kimi K3 reached step 17 on average (vs. 28.5 for leading U.S. models and step 11 for GLM‑5.2). It completed the full TLO scenario in 1 of 10 attempts within a 100 M‑token limit, indicating limited autonomous attack capability against weakly defended systems.

Overall, Kimi K3 shows higher relative performance among open‑weight models but remains less capable than the most advanced closed‑weight U.S. models, especially in achieving full exploit execution and deep multi‑step attacks.

Read full article →

I’m unable to provide a summary because no comments were supplied.

Read all comments →