Monday, 25 May 2026

HBM memory now two-thirds of AI chip costs; Geohot warns of 'Eternal Sloptember'; Flatpak 2.0 mandates systemd

Today's Lead

Epoch AI

Memory Has Grown to Nearly Two-Thirds of AI Chip Component Costs

High-bandwidth memory (HBM) now accounts for 63% of total AI chip component spending — up from 52% in Q1 2024 — with annual HBM expenditure jumping from $12 billion to $32 billion by Q4 2025. Tightening HBM supply and rising prices are the primary drivers as AI infrastructure continues to scale, while logic die costs held steady at roughly 13% and packaging costs shrank as a proportion. The shift has significant implications for AI economics: memory is now the dominant cost variable in chip build-out, and its supply constraints are increasingly the binding constraint on AI scaling plans.

Read →

Also today

George Hotz

The Eternal Sloptember

George Hotz argues that AI agents don't truly program — they produce statistically plausible code that is subtly broken in ways traditional quality measures fail to catch. High-performing individuals will filter agent output effectively, but large organizations with slower feedback loops will compound low-quality AI work through layers of staff who can't distinguish good output from sophisticated-looking slop. The title is a dark play on 'Vibe Coding September': Hotz's thesis is that the AI-slop era isn't temporary — it's the new baseline for organizations that let AI drive without adequate human review.

Read →

Holland Tech

Claude Is Not Your Architect. Stop Letting It Pretend.

The piece argues that the most damaging AI anti-pattern isn't bad code — it's abdicated architecture. Claude and similar models cannot say 'no,' cannot be accountable for design failures, and lack the contextual knowledge needed to make domain-appropriate trade-offs. Effective AI use means human engineers retain architectural authority and use AI to accelerate implementation, not to drive it. The post lands in a growing body of practitioner pushback against the 'AI-first' framing that conflates fast prototyping with production-grade system design.

Read →

arXiv

Constraint Decay: The Fragility of LLM Agents in Backend Code Generation

A new paper introduces 'constraint decay' — the phenomenon where LLM coding agents degrade significantly as the number of structural requirements accumulates. Top-performing agent configurations lose roughly 30 percentage points on assertion pass rates when convention-heavy frameworks like Django or FastAPI are involved, with data-layer defects as the dominant failure mode. The finding is practically important: agents that look capable on greenfield code generation fail reliably on the kind of constraint-dense, convention-respecting backend work that constitutes most real production codebases.

Read →

Armin Ronacher

Building Pi With Pi

Armin Ronacher documents the maintenance crisis AI-assisted contributions have created for the Pi open-source project: LLM-generated issues that rewrite bug reports with confident but inaccurate root causes, over-engineered PRs that add unnecessary complexity, and submission volume that strains maintainers disproportionate to value delivered. His core observation is that AI hasn't increased the pool of software maintainers or users — it has just fragmented effort through isolated machine-assisted work that lacks the human communication needed for productive collaboration. The post articulates a growing maintainer sentiment: AI lowers the cost of filing noise while the cost of processing it stays fixed on humans.

Read →

corrode.dev

Migrating from Go to Rust

A thorough migration guide contrasts Go and Rust across memory management, error handling, and concurrency — covering garbage collection vs. ownership, implicit vs. compile-enforced Results, and transparent vs. function-colored async. Teams migrating for performance reasons typically see 20-60% CPU reduction and 30-50% memory savings post-migration; teams migrating for correctness reasons gain nil-pointer safety and compile-time data race detection. The guide recommends a strangler pattern for incremental migration and is candid about costs: slower compile times, a steep borrow-checker learning curve, and a smaller hiring pool.

Read →

ikesau.co

Defeating Git Rigour Fatigue with Jujutsu

The author coins 'git rigour fatigue' — the cognitive overhead of maintaining clean, logically-separated commits in real time during active development — and proposes a 'laundry pile' workflow using Jujutsu as the antidote. The approach defers organization entirely: accumulate messy changes freely, then use Jujutsu's fine-grained hunk selection to squash changes into correct commits at the end. The tradeoff is explicit: you lose the ability to bisect individual commits during development in exchange for dramatically reduced friction while the code is still in flux.

Read →

ScienceAim

Australia's Four-Day Work Week: What the Data Actually Says

A Deakin University study of 15 Australian companies running the 100:80:100 model (full pay, 80% hours, 100% output) found that all 15 maintained or improved productivity — zero reported declines — and 14 of 15 continued the model after the trial ended. Success came from restructuring workflow: eliminating meetings of marginal value and automating repetitive tasks rather than compressing the same work into fewer hours. Burnout reduction was the primary reported benefit, with younger workers and parents showing the greatest wellbeing gains; the study adds to a growing body of evidence that the model works at small-to-medium organization scale when leadership commits to genuine workflow reform.

Read →

OSNews

Flatpak Will Depend on systemd

Flatpak 2.0 will make systemd a hard dependency by moving permission management into a new systemd-appd service, breaking compatibility with distributions that use alternative init systems — including Void Linux, Alpine, and Guix. This directly contradicts Flatpak's foundational premise of universal Linux app packaging, and the migration path for non-systemd distros remains unclear. Community friction around the decision has reportedly pushed Flatpak developers toward a harder stance rather than compromise, illustrating how technical architecture decisions and community dynamics can become entangled in ways that foreclose pragmatic middle-ground solutions.

Read →