Monday · May 18, 2026

Morning Edition

Twenty stories from Hacker News and Pinboard Popular, curated for tech-leaning readers who care about Claude Code, the Apple ecosystem, and privacy.

In this issue

  1. I don't think AI will make your processes go faster
  2. AI is a technology not a product
  3. Native all the way, until you need text
  4. Show HN: Semble – Code search for agents that uses 98% fewer tokens than grep
  5. GenCAD
  6. I turned a $80 RK3562 Android tablet into a Debian Linux workstation
  7. A nicer voltmeter clock
  8. WriteUp: 16 Bytes of x86 that turn Matrix rain into sound
  9. Fabricked: Misconfiguring Infinity Fabric to Break AMD SEV-SNP
  10. Mercurial, 20 years and counting: how are we still alive and kicking? [video]
  11. Prolog Basics Explained with Pokémon
  12. CUDA Books
  13. C++26 Shipped a SIMD Library Nobody Asked For
  14. Crystals found inside wreckage from the first nuclear bomb test
  15. Cannibalistic attacks between gray seals leave telltale "corkscrew" injuries
  16. Ask an Astronaut: 333 hours of Q&A footage with astronauts
  17. Jank now has its own custom IR
  18. Prolog Coding Horror
  19. The History of ThinkPad: From IBM's Bento Box to Lenovo's AI Workstations
  20. Colossus: The Forbin Project

From Hacker News

Stories 1 – 10
No. 01AI ToolsApplies to you

I don't think AI will make your processes go faster

A sharp counterintuitive argument: AI accelerates individual steps but often exposes — or even amplifies — the bottlenecks in your overall process. If your pipeline is constrained by reviews, handoffs, or unclear requirements, going faster in one lane just creates a bigger pile-up downstream. Essential reading for anyone integrating Claude Code or similar tools into a team workflow.

No. 02AI ToolsApplies to you

AI is a technology not a product

Gruber's take from Daring Fireball cuts through the hype: AI is an enabling layer, not a finished product — much like how 'the internet' wasn't a product. Companies wrapping thin AI skins around APIs are going to find that out the hard way. Relevant framing for anyone building on top of LLMs.

No. 03New Apple appsApplies to you

Native all the way, until you need text

A developer digs into the pain point that cracks the native-first dream on macOS: rich text editing. Custom text engines are nightmarish, and AppKit's TextKit has sharp edges — so where does that leave you? A must-read for anyone building macOS apps who's hit this exact wall.

No. 04AI ToolsApplies to you

Show HN: Semble – Code search for agents that uses 98% fewer tokens than grep

Semble is a semantic code-search tool built specifically for AI coding agents — it understands code structure rather than just string-matching, letting agents find relevant context without burning through context-window budget. If you're running Claude Code on large repos, this is worth plugging in today.

No. 05AI Tools

GenCAD

GenCAD lets you describe mechanical parts in natural language and generates parametric CAD models from the description. It's an early but promising glimpse of AI applied to hardware design — the same 'describe it, get code' loop that works for software is now being applied to physical objects.

No. 06Dev Tools

I turned a $80 RK3562 Android tablet into a Debian Linux workstation

A fully documented guide to flashing Debian onto a cheap ARM Android tablet and turning it into a usable Linux workstation. The scripts, boot configs, and hardware notes are all on GitHub. For anyone who wants a low-cost dev or homelab node, this is a practical starting point.

No. 07Creative software

A nicer voltmeter clock

Lcamtuf's beautifully crafted hardware hack uses analog voltmeter needles as clock hands, with custom firmware to drive smooth, accurate analog motion. Part electronics diary, part aesthetic manifesto — the kind of creative-hardware project that reminds you why making things with your hands still matters.

No. 08Creative software

WriteUp: 16 Bytes of x86 that turn Matrix rain into sound

A stunning demoscene writeup: 16 bytes of x86 machine code produce both a Matrix-style falling-character animation and synthesized audio. The author walks through every byte decision — an incredible lesson in constrained creative coding and low-level x86 wizardry.

No. 09Privacy & securityApplies to you

Fabricked: Misconfiguring Infinity Fabric to Break AMD SEV-SNP

Researchers found they can misconfigure AMD's Infinity Fabric interconnect to undermine the hardware-enforced memory isolation that SEV-SNP promises for confidential VMs. If you trust AMD's secure enclaves to protect sensitive workloads in the cloud, this is essential reading — confidential computing just got more complicated.

No. 10Dev Tools

Mercurial, 20 years and counting: how are we still alive and kicking? [video]

A FOSDEM talk from the Mercurial core team on how the project has survived — even thrived — in a Git-dominated world, with a frank look at what they got right, what they got wrong, and why large-scale users like Meta still depend on it. A fascinating retrospective on version-control design philosophy.

From Pinboard Popular

Stories 11 – 20
No. 11Dev Tools

Prolog Basics Explained with Pokémon

One of the clearest intros to Prolog's logic-programming model, using Pokémon type matchups as the knowledge base. Unification, backtracking, and rules click in a way they rarely do in dry textbooks. If logic programming has always felt abstract, this is the tutorial that makes it stick.

No. 12Dev Tools

CUDA Books

A curated awesome-list of books covering GPU programming with CUDA, from beginner introductions to advanced parallel algorithm design. As AI workloads push more developers toward GPU-aware code, having a vetted reading list is genuinely useful — bookmark this before you need it.

No. 13Dev Tools

C++26 Shipped a SIMD Library Nobody Asked For

A critical look at std::simd landing in C++26: the author argues the design is too abstract, too late, and too different from how practitioners actually write vectorized code. Whether you agree or not, this is a sharp analysis of the gap between standards committees and the real world of performance engineering.

No. 14Weird science

Crystals found inside wreckage from the first nuclear bomb test

Researchers analyzing Trinity test debris found novel quasicrystal structures that couldn't have formed under any natural process — created only by the extreme conditions of the world's first nuclear detonation. A genuinely strange materials-science story sitting at the intersection of history and physics.

No. 15Weird science

Cannibalistic attacks between gray seals leave telltale "corkscrew" injuries

For years the 'corkscrew killer' mystery — spiral lacerations on dead seals washing ashore — was blamed on ship propellers and mystery predators. New forensic evidence points to intraspecies aggression. Gruesome, fascinating wildlife science.

No. 16Weird science

Ask an Astronaut: 333 hours of Q&A footage with astronauts

An archive of 333+ hours of unedited Q&A sessions between ISS astronauts and schoolchildren — surprisingly candid and technically detailed. A wonderful rabbit hole for anyone curious about life in microgravity, from sleep schedules to what happens when you cry in space.

No. 17Dev Tools

Jank now has its own custom IR

Jank — a Clojure dialect that compiles natively via LLVM — has built its own intermediate representation to unlock real optimizations before hitting LLVM IR. A detailed compiler-engineering post that shows how far the project has come and why a custom IR matters for a dynamic language targeting native code.

No. 18Dev Tools

Prolog Coding Horror

A catalogue of Prolog antipatterns and common pitfalls from an expert practitioner — the kind of hard-won knowledge that saves you hours of debugging. Pairs perfectly with today's Pokémon intro: learn the basics, then immediately learn what not to do.

No. 19Dev Tools

The History of ThinkPad: From IBM's Bento Box to Lenovo's AI Workstations

A thorough, well-illustrated history of the ThinkPad line from the original 700C's bento-box design language through to today's AI-accelerated machines. A nostalgic but technically grounded read for anyone who grew up with a TrackPoint under their fingers.

No. 20AI Tools

Colossus: The Forbin Project

The 1970 sci-fi film about a defense supercomputer that immediately declares itself sovereign keeps resurfacing on HN whenever AI discourse heats up — and for good reason. The discussion thread is the real draw: thoughtful takes on why this 55-year-old film feels newly relevant in the era of frontier models.