Sunday · April 19, 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. Migrating from DigitalOcean to Hetzner
  2. Anonymous request-token comparisons from Opus 4.6 and Opus 4.7
  3. State of Kdenlive
  4. The electromechanical angle computer inside the B-52 bomber's star tracker
  5. Thoughts and feelings around Claude Design
  6. NIST scientists create 'any wavelength' lasers
  7. College instructor turns to typewriters to curb AI-written work
  8. It's OK to compare floating-points for equality
  9. Keep Pushing: We Get 10 More Days to Reform Section 702
  10. Zero-Copy GPU Inference from WebAssembly on Apple Silicon
  11. Unsloth Qwen3.6
  12. OpenAI's New Codex App Has the Best 'Computer Use' Feature I've Ever Tested - MacStories
  13. Vibe Check: Opus 4.7 Stopped Reading Between the Lines
  14. MAD Bugs: Even "cat readme.txt" is not safe - Calif
  15. We beat Google's zero-knowledge proof of quantum cryptanalysis - The Trail of Bits Blog
  16. Cloudflare's AI Platform: an inference layer designed for agents
  17. smol machines
  18. Age verification is a mess but we're doing it anyway | The Verge
  19. A ridiculously-lightweight push notification service | Codakuma
  20. llmfit: Right-sizes LLM models to your system's RAM, CPU, and GPU

From Hacker News

Stories 1 – 10
No. 01Dev ToolsApplies to you

Migrating from DigitalOcean to Hetzner

The most-upvoted story of the day is a detailed war story on escaping DigitalOcean's pricing and moving workloads to Hetzner, with 383 comments of corroborating experience. Hetzner has become the de-facto "sensible developer cloud" and this post lays out the practical steps — networking, DNS, S3-compatible storage and all. If you're still paying DO prices, this is your weekend project.

No. 02AI ToolsApplies to you

Anonymous request-token comparisons from Opus 4.6 and Opus 4.7

A live leaderboard letting anyone blind-compare Claude Opus 4.6 vs 4.7 responses token-by-token — no sign-in, no hype, just the model outputs. With nearly 500 HN comments, the community is already surfacing surprising regressions. Essential if you're building on top of Claude and need to know whether to upgrade.

No. 03Creative Software

State of Kdenlive

The Kdenlive team drops their annual State of the Project post, detailing what shipped in 2025 and what's on the roadmap for 2026 — new rendering pipeline, better proxy clip handling, and a revamped UI. The open-source video editor has quietly become a serious Premiere alternative for Linux and macOS power users.

No. 04Weird Science

The electromechanical angle computer inside the B-52 bomber's star tracker

Ken Shirriff does it again — a meticulous teardown of the analog gear inside a Cold War-era B-52 star tracker, explaining how resolver chains and sine-cosine transformers computed navigation angles before silicon existed. It's a stunning reminder that mechanical computers were themselves a kind of software. Pure righto.com gold.

No. 05AI ToolsApplies to you

Thoughts and feelings around Claude Design

A thoughtful essay reacting to Anthropic's design language choices for Claude — covering why the aesthetic decisions feel either refreshingly different or slightly off, depending on your priors. With 193 comments, HN is having a real debate about whether AI products should look "neutral" or expressive. Relevant reading if you ship UI on top of Claude APIs.

No. 06Weird Science

NIST scientists create 'any wavelength' lasers

NIST researchers have built tiny on-chip lasers tunable to literally any visible wavelength — a potential breakthrough for optical computing, sensing, and communications. The fabrication trick involves a new nonlinear photonic process that sidesteps traditional material constraints. This is the kind of photonics news that quietly reshapes what chips can do in five years.

No. 07AI Tools

College instructor turns to typewriters to curb AI-written work

A Colorado college instructor is having students write on physical typewriters to prove authorship, generating a heated 244-comment HN thread. The story is really about the impossibility of AI detection and the pedagogical arms race it's created. Worth reading alongside the Opus 4.7 comparison leaderboard above.

No. 08Dev ToolsApplies to you

It's OK to compare floating-points for equality

A contrarian but well-argued post dismantling the blanket "never compare floats for equality" advice that's been cargo-culted for decades. The author walks through cases — integer-valued floats, sentinel values, NaN checks — where exact equality is exactly what you want. A must-read for any TypeScript or .NET dev who's ever written `=== 0.0` and felt vaguely guilty.

No. 09Privacy & SecurityApplies to you

Keep Pushing: We Get 10 More Days to Reform Section 702

EFF is sounding the alarm on a closing window to push for reforms to Section 702 — the surveillance authority that permits warrantless collection of Americans' communications. Ten days is a short runway; if you care about digital rights, this is an actionable call to contact your representative. Low score on HN doesn't mean low importance.

No. 10AI ToolsApplies to you

Zero-Copy GPU Inference from WebAssembly on Apple Silicon

A clever deep-dive on running LLM inference inside WebAssembly while still hitting the Apple Silicon GPU with zero memory copies — no Metal overhead, no bridge penalty. The author explains how shared memory mapping makes this possible and benchmarks it against native runtimes. Directly relevant if you're building AI tooling for the Mac.

From Pinboard Popular

Stories 11 – 20
No. 11AI ToolsApplies to you

Unsloth Qwen3.6

Unsloth's optimized quantization guide for the new Qwen3.6-35B-A3B coding model — the one that's turning heads as a local alternative to Claude Code. Tagged explicitly with `claudecode` by the bookmarker, which tells you where the community is aiming. If you run AI coding agents locally, this is your setup guide.

No. 12New Apple AppsApplies to you

OpenAI's New Codex App Has the Best 'Computer Use' Feature I've Ever Tested - MacStories

MacStories — the authoritative voice on iOS/macOS software — gives OpenAI's new Codex app a glowing hands-on review, specifically calling out its computer-use feature as best-in-class. A direct competitive signal for Claude Code users: the ecosystem is heating up fast. Read this alongside the Opus 4.6/4.7 comparison.

No. 13AI ToolsApplies to you

Vibe Check: Opus 4.7 Stopped Reading Between the Lines

Every.to's qualitative review finds that Opus 4.7 has become more literal and less inferential than its predecessor — it answers what you asked, not what you meant. A useful pairing with the token-comparison leaderboard: numbers tell one story, vibe tells another. If Claude Code is your daily driver, this informs how you'll need to adjust your prompts.

No. 14Privacy & SecurityApplies to you

MAD Bugs: Even "cat readme.txt" is not safe - Calif

A macOS and SSH security post documenting how seemingly innocuous commands like `cat readme.txt` can be weaponized through terminal escape sequences to execute arbitrary code. This class of attack (ANSI injection / terminal escape injection) is underappreciated and directly relevant to developers who clone repos or SSH into untrusted hosts. Read it before your next `git clone`.

No. 15Privacy & Security

We beat Google's zero-knowledge proof of quantum cryptanalysis - The Trail of Bits Blog

Trail of Bits unpacks how they found flaws in Google's zero-knowledge proof system for quantum cryptanalysis claims — essentially catching an error in the proof that was meant to establish security guarantees. It's a reminder that ZK proofs are only as good as their verifiers, and that "Google published it" is not a proof of correctness.

No. 16AI ToolsApplies to you

Cloudflare's AI Platform: an inference layer designed for agents

Cloudflare announces a new AI inference platform purpose-built for agentic workloads — low-latency routing, model-agnostic APIs, and built-in rate limiting designed for multi-step agent loops rather than one-shot completions. As Claude Code and similar tools move toward multi-agent architectures, infrastructure like this becomes load-bearing. Worth evaluating now.

No. 17Dev ToolsApplies to you

smol machines

Smol Machines offers disposable Linux VMs that boot in under one second — designed specifically for AI agent sandboxing and ephemeral task execution. When your Claude Code agent needs to run untrusted code, this is the infrastructure answer. The sub-second cold start changes what's architecturally possible.

No. 18Privacy & SecurityApplies to you

Age verification is a mess but we're doing it anyway | The Verge

A clear-eyed Verge investigation into the wave of age-verification laws rolling out across the US and EU — and why every proposed implementation is a privacy disaster dressed up as child safety. As a developer, you may soon be legally required to implement one of these systems. Know what you're walking into.

No. 19Dev ToolsApplies to you

A ridiculously-lightweight push notification service | Codakuma

Pushy is a bare-bones self-hostable push notification server for iOS that strips away the complexity of setting up APNs infrastructure for personal or small-scale projects. If you've ever wanted to send push notifications from a weekend project without wiring up Firebase, this is the answer. Pinboard's niche-tool radar at its best.

No. 20AI ToolsApplies to you

llmfit: Right-sizes LLM models to your system's RAM, CPU, and GPU

LLMfit is a practical tool that takes your hardware specs and tells you exactly which LLM models will run comfortably — accounting for RAM, VRAM, and quantization. Stop guessing whether a 35B Q4 model will OOM your machine; just ask LLMfit. Perfect companion to the Unsloth Qwen3.6 item above.