| 1. | The new rules of context engineering for Claude 5 generation models(claude.com) |
| 443 points by mellosouls 46 days ago | 360 comments | permalink | |
tl;dr: Anthropic's newer Claude models require less prescriptive context engineering: instead of rigid rules, repeated instructions, and front-loaded examples, developers should rely on Claude's judgment, well-designed tool interfaces, and progressive disclosure (loading context only when needed). CLAUDE.md files should be lightweight and focused on non-obvious gotchas, while skills should encode team-specific opinions and reference richer artifacts like code, test suites, or HTML mockups rather than simple markdown specs. A new `claude doctor` command helps simplify existing prompts. | |
HN Discussion:
| |
| 2. | Android may soon restrict on-device ADB(kitsumed.github.io) |
| 998 points by shscs911 47 days ago | 499 comments | permalink | |
tl;dr: Google is considering restricting Android's ADB daemon to only bind to the wlan0 interface in response to CVE-2026-0073, which would break on-device ADB (loopback connections used by tools like Shizuku, App Manager, and Canta) along with ADB over VPN or Ethernet. The author argues this framing treats legitimate on-device ADB use as an exploit vector, when in practice attackers can't start ADBD themselves, and proposes a persistent user-toggleable setting instead of a hard block. | |
HN Discussion:
| |
| 3. | Turn And Face The Strange(fly.io) |
| 223 points by subarctic 46 days ago | 151 comments | permalink | |
tl;dr: Fly.io is pivoting to focus on "Sprites"—semi-disposable cloud VMs designed as computers for AI coding agents, betting that agents will soon drive most software development. The relaunched Sprites include a new block device (SBD) enabling fast forking/cloning and Connectors for authenticated external requests without exposing credentials. Founder Kurt Mackay is stepping down as CEO, handing the role to former Docker CEO Scott Johnston, and the company has raised a substantial new round to fund the shift. | |
HN Discussion:
| |
| 4. | Open-weight AI is having its Kubernetes moment(tobi.knaup.me) |
| 400 points by tknaup 47 days ago | 313 comments | permalink | |
tl;dr: Summary not available | |
HN Discussion:
| |
| 5. | Bitchat is now on Radicle(radicle.network) |
| 254 points by h1watt 47 days ago | 142 comments | permalink | |
tl;dr: Summary not available | |
HN Discussion:
| |
| 6. | How My Images Are Dithered(dead.garden) |
| 244 points by surprisetalk 50 days ago | 78 comments | permalink | |
tl;dr: The author uses ImageMagick to fake an AM halftone print effect on images by splitting into CMYK channels, scaling/rotating each at different angles (0°, 15°, 45°, 75°) to avoid Moiré, then recompositing—optionally remapping to a limited pink palette. The technique is computationally expensive and doesn't reliably reduce file size, so it's purely aesthetic rather than practical. Full shell scripts are provided, along with a workaround (brightness/saturation boost + invert) for overly light images that break the effect. | |
HN Discussion:
| |
| 7. | Did they ghost you?(didtheyghostyou.com) |
| 464 points by mooreds 46 days ago | 205 comments | permalink | |
tl;dr: Summary not available | |
HN Discussion:
| |
| 8. | An old patent inspired the new "Y-zipper", a three-sided fastener(news.mit.edu) |
| 287 points by crescit_eundo 50 days ago | 46 comments | permalink | |
tl;dr: MIT CSAIL researchers revived a rejected 1985 patent from professor William Freeman for a three-sided "Y-zipper" that transforms objects between flexible and rigid states. They built a software tool that lets users customize the zipper's shape (straight, bent, coiled, or twisted) and 3D-prints it in plastic, with prototypes surviving 18,000 open/close cycles. Potential applications include rapid tent assembly, adjustable medical casts, shape-shifting robots, and disaster relief shelters. | |
HN Discussion:
| |
| 9. | Zero roadkill as Amazon canopy bridges secure 15,000 crossings(news.mongabay.com) |
| 383 points by hn_acker 50 days ago | 120 comments | permalink | |
tl;dr: Brazil's Projeto Reconecta installed 8 rope canopy bridges over a highway near Alta Floresta in the Amazon, and camera traps recorded 15,000 safe crossings by arboreal wildlife over 15 months with zero roadkill. The multilayer design accommodates different primate locomotion styles and has been adopted by Brazil's National Department of Transport Infrastructure as the recommended standard for highways. The project is expanding to other Brazilian biomes and Suriname, addressing the estimated 9 million mammals killed annually on Brazilian roads. | |
HN Discussion:
| |
| 10. | The Dark Night of Mathematics(kirwinhampshire.substack.com) |
| 220 points by rmdmphilosopher 47 days ago | 294 comments | permalink | |
tl;dr: A mathematician expresses a profound spiritual crisis over recent LLMs producing counterexamples to long-standing conjectures, arguing that the community's coping responses (e.g., the Leiden Declaration) sidestep the real loss: mathematical discovery as a sacred, human experience of accessing the ineffable. The author contends that even if humans can still "do math" as spectators or curators, the creative act itself—historically a mystical tradition from Ramanujan to Grothendieck—is being permanently foreclosed. The piece offers no policy prescriptions, only a raw emotional plea for acknowledgment before the "coup de grâce." | |
HN Discussion:
| |
| 11. | The growing vigilante movement to knock out Flock surveillance cameras(theguardian.com) |
| 270 points by bookofjoe 46 days ago | 166 comments | permalink | |
tl;dr: A growing vigilante movement is destroying, obstructing, and vandalizing Flock Safety's automated license plate readers, with the Guardian identifying at least 33 incidents across 23 states. While some perpetrators like "NoMark" in Minneapolis have evaded capture, others face criminal charges, and state fusion centers are now directing law enforcement to monitor anti-Flock activism. The backlash has also pushed 80+ cities to drop Flock contracts and prompted a Texas lawmaker to introduce a bill requiring warrants for Flock camera data. | |
HN Discussion:
| |
| 12. | Hannah Fry Wins the Leelavati Prize in 2026 for Mathematics Outreach(maths.cam.ac.uk) |
| 594 points by agnishom 47 days ago | 110 comments | permalink | |
tl;dr: Professor Hannah Fry, Cambridge's first Professor of the Public Understanding of Mathematics, has won the 2026 Leelavati Prize from the International Mathematical Union for her work communicating mathematics to the public. Awarded every four years at the International Congress of Mathematicians, the prize recognizes her books, TV programs, podcasts, and social media reaching millions. Recent accolades include a 2025 Emmy for "The Future with Hannah Fry" and a 2026 Webby for her podcast "The Rest is Science." | |
HN Discussion:
| |
| 13. | Building a Tiny 3D Renderer for a Tiny Handheld(saffroncr.itch.io) |
| 254 points by g0xA52A2A 49 days ago | 20 comments | permalink | |
tl;dr: A developer built a 3D software renderer from scratch for the Playdate handheld, which has no GPU and a 1-bit display, using Quake's BSP format to leverage precomputed visibility (PVS) and lighting via existing tools like TrenchBroom. Key techniques include a 16-bit reciprocal z-buffer, perspective-correct texture mapping with cheap reciprocal approximations, 8x8 Bayer dithering for faux-grayscale lighting, and half-resolution (200x120) rendering scaled up. The final look is a cel-shaded, high-contrast style inspired by Obra Dinn, chosen because fully textured scenes became too noisy on a 1-bit screen. | |
HN Discussion:
| |
| 14. | If coding has been solved, why does software keep getting worse?(ptrchm.com) |
| 874 points by pchm 48 days ago | 666 comments | permalink | |
tl;dr: Despite AI coding tools raising productivity and skill floors, everyday software (banking apps, car infotainment, macOS) keeps getting buggier and more fragile because complexity has grown while incentives still reward features over stability. The author argues KPI-driven vendors won't prioritize bug-fixing, so quality will keep decaying at big companies—but sees an opening for individual developers to leverage AI to build better alternatives. | |
HN Discussion:
| |
| 15. | Claude Opus 5(anthropic.com) |
| 1765 points by alvis 47 days ago | 1315 comments | permalink | |
tl;dr: Anthropic released Claude Opus 5, claiming state-of-the-art performance on coding and knowledge-work benchmarks (Frontier-Bench, GDPval-AA, ARC-AGI 3, OSWorld 2.0) at half the cost of their top-tier "Fable 5" model, though it still trails "Mythos 5" on cybersecurity exploit development and advanced biology tasks. Pricing matches Opus 4.8 at $5/$25 per million input/output tokens, and Anthropic is loosening cyber safeguards (blocking ~85% less often than Fable 5) while adding beta features like mid-conversation tool changes and automatic model fallbacks for flagged requests. | |
HN Discussion:
| |
| 16. | I regret migrating to Codeberg(xn--gckvb8fzb.com) |
| 550 points by boramalper 49 days ago | 559 comments | permalink | |
tl;dr: The author moved from GitHub to Codeberg to escape Microsoft's "enshittification," but is now leaving after Codeberg updated its ToS to ban LLM-generated and cryptocurrency projects, arguing this crosses into censorship and sets a slippery precedent for a "free software" host. They propose Codeberg should have addressed the underlying resource-consumption issue with disclosure requirements, quotas, and paid tiers rather than blanket category bans. They're now setting up their own Git host, frustrated that the policy change was pushed through without meaningful user consultation. | |
HN Discussion:
| |
| 17. | Writing by hand is good for your brain(nealstephenson.substack.com) |
| 1475 points by dwwoelfel 49 days ago | 664 comments | permalink | |
tl;dr: Neal Stephenson (author of The Baroque Cycle, which he wrote entirely by hand) argues that writing longhand engages more of the brain and, done properly, doesn't cause the cramps people fear. He offers practical tips: use a fountain pen (or gel pen) rather than pencils/ballpoints to minimize force, choose paper with a bit of "tooth," use cursive, don't skimp on paper, and start with cheap pens and cartridges. He also dismisses common objections around left-handedness and ink disasters as largely overblown. | |
HN Discussion:
| |
| 18. | Claude Cookbook(platform.claude.com) |
| 338 points by saikatsg 48 days ago | 167 comments | permalink | |
tl;dr: Anthropic's Claude Cookbook is a growing collection of practical guides and notebooks covering agent development, RAG, tool use, evals, multimodal workflows, and integrations. Recent entries emphasize the Claude Agent SDK and Managed Agents API, with tutorials on multi-agent orchestration, memory/context compaction, vulnerability detection, SRE incident response, and self-verifying agents. Older entries cover foundational topics like prompt caching, extended thinking, structured JSON extraction, and vector DB integrations. | |
HN Discussion:
| |
| 19. | Show HN: Echo – Fable-level results at 1/3 the cost using open-weight models |
| 474 points by adam_rida 48 days ago | 222 comments | permalink | |
tl;dr: Echo is a routing system that dynamically allocates queries across a pool of open-weight models (GLM-5.2, Kimi K2.7, etc.), deciding per-request which models participate and how their outputs combine. The author claims it outperforms any single model in the pool and matches Fable's aggregate performance at roughly one-third the inference cost. A chat UI and OpenAI-compatible API are available for testing, with coding/agentic task evaluation still underway. | |
HN Discussion:
| |
| 20. | My security camera shipped a GitHub admin token in its login page(hhh.hn) |
| 640 points by hhh 48 days ago | 231 comments | permalink | |
tl;dr: A researcher extracted firmware from Hanwha Vision security cameras by reverse-engineering the fwupgrader binary (with Claude Code's help) to recover a hardcoded AES key/IV used across the model line. Inside the rootfs, they found a GitHub admin token duplicated across ~30 files—caused by Vite dumping the entire CI `process.env` into the built UI—granting access to hundreds of repos, alongside env vars referencing DoD-assigned IP addresses. Hanwha revoked the token within 12 hours of disclosure. | |
HN Discussion:
| |