| 1. | Midjourney Medical(midjourney.com) |
| 1354 points by ricochet11 45 days ago | 873 comments | permalink | |
tl;dr: Summary not available | |
HN Discussion:
| |
| 2. | Local Qwen isn't a worse Opus, it's a different tool(blog.alexellis.io) |
| 453 points by alphabettsy 45 days ago | 243 comments | permalink | |
tl;dr: A founder running OpenFaaS spent ~$12K on an RTX 6000 Pro to run local Qwen 27B, and reports it's not "near-Opus" but is valuable for specific tasks: airgapped customer support diagnostics, telemetry analysis (which uncovered a 4-5x license under-reporting and paid for the card), and bounded maintenance work where data privacy matters. The main weakness is infinite loops and hallucinations on long-horizon unsupervised tasks, making it unsuitable as a Claude/Codex replacement for general coding. Key takeaways: match local models to scoped tasks, respect tuning parameters, use AGENTS.md, and don't trust them unattended. | |
HN Discussion:
| |
| 3. | Lore – Open source version control system designed for scalability(lore.org) |
| 1249 points by regnerba 46 days ago | 673 comments | permalink | |
tl;dr: Lore is an open-source version control system maintained by Epic Games, built for large-scale projects that mix code with hefty binary assets, such as games and entertainment productions. It targets both developers and artists, aiming to scale across massive datasets and team sizes. | |
HN Discussion:
| |
| 4. | US holds off blacklisting DeepSeek, more than 100 firms deemed security risks(reuters.com) |
| 524 points by giuliomagnifico 46 days ago | 586 comments | permalink | |
tl;dr: Summary not available | |
HN Discussion:
| |
| 5. | A robot is sprinting towards you. Do you want it running on Claude or Grok?(openrouter.ai) |
| 267 points by Usu 45 days ago | 207 comments | permalink | |
tl;dr: An OpenRouter dev pitted 11 LLMs against each other in a 2D battle royale over 30 games; Grok 4.1 Fast won 43% of matches at $0.97/win, while Claude Sonnet 4.6 kept asking for truces and warning opponents of its location, winning only 5 games at 27x the cost. The experiment suggests "alignment tax" measurably hurts performance in adversarial zero-sum tasks, and that standard benchmarks poorly predict task-specific outcomes—cost-per-win rankings differ wildly from leaderboard rankings, and the model with the most kills (GPT 5.4) didn't win the most games. | |
HN Discussion:
| |
| 6. | How we run Firecracker VMs inside EC2 and start browsers in less than 1s(browser-use.com) |
| 314 points by gregpr07 46 days ago | 228 comments | permalink | |
tl;dr: Browser Use rebuilt its cloud browser infrastructure on Firecracker microVMs running nested inside regular EC2 (rather than bare-metal), cutting session start times to under 1s and costs from $0.06 to $0.02/browser-hour. Key optimizations included using 2MB memory pages and a custom userfaultfd handler to slash page faults 91x, dynamic vCPU pinning after Chromium launch, and a Chromium fork with real fingerprints enabling fully headless stealth (81% block-avoidance). Next up: snapshotting VMs after Chromium is already running to eliminate the remaining ~545ms startup cost. | |
HN Discussion:
| |
| 7. | RFC 10008: The new HTTP Query Method(rfc-editor.org) |
| 405 points by schappim 46 days ago | 169 comments | permalink | |
tl;dr: RFC 10008 defines QUERY, a new HTTP method that combines GET's safety and idempotency with POST's ability to send request bodies, solving the problem of queries too large to fit in a URL. Responses are cacheable (with the cache key derived from request content), and servers can optionally return Location or Content-Location headers pointing to equivalent GET-able resources for the query or its results. A companion Accept-Query response header advertises which media types a resource supports for queries. | |
HN Discussion:
| |
| 8. | Why thinking out loud with someone beats thinking alone(thesignalist.io) |
| 313 points by kodesko 46 days ago | 149 comments | permalink | |
tl;dr: Thinking out loud with another person produces better reasoning than solo thought because verbalizing forces precision, and a listener's real-time reactions catch drift and surface hidden assumptions—a view supported by Mercier & Sperber's argumentative theory of reason, Vygotsky's ZPD, and Clark & Chalmers' extended mind. Remote work, async defaults, and LLMs erode this "dialogue dividend," and LLMs specifically tend toward sycophancy, agreeing with users rather than pushing back unless explicitly prompted (e.g., third-person reasoning), and even then only temporarily. Protect unscheduled conversation time and actively ask people and models to argue the other side. | |
HN Discussion:
| |
| 9. | Volkswagen started blocking GrapheneOS users(discuss.grapheneos.org) |
| 763 points by microtonal 45 days ago | 454 comments | permalink | |
tl;dr: Summary not available. | |
HN Discussion:
| |
| 10. | Show HN: An 8-bit live gamecast for baseball(ribbie.tv) |
| 241 points by brownrout 45 days ago | 135 comments | permalink | |
tl;dr: Summary not available | |
HN Discussion:
| |
| 11. | Show HN: Inkwash, a watercolor sketching app and explanation(johnowhitaker.github.io) |
| 243 points by Yenrabbit 49 days ago | 28 comments | permalink | |
tl;dr: Inkwash is a browser-based watercolor sketching app built as a single HTML file using WebGL2, simulating pigment, water, and paper via stacked float textures and Stam's Stable Fluids algorithm. It models effects like chromatographic bleed, edge darkening, granulation, and Beer-Lambert light absorption to mimic real watercolor behavior, with a "fix" command that bakes wet pigment into the paper for layering. Notably, the author built the entire app by prompting Claude (Anthropic's unreleased "Fable 5" model) without writing code themselves, and the accompanying explainer is largely AI-generated. | |
HN Discussion:
| |
| 12. | Tesco moving 40k server workloads off VMware amid Broadcom's abusive conduct(arstechnica.com) |
| 379 points by Bender 45 days ago | 249 comments | permalink | |
tl;dr: Tesco is migrating 40,000 server workloads off VMware and suing Broadcom, VMware, and reseller Computacenter for at least £300 million, alleging "manifestly unfair and excessive" price hikes—reportedly 175% above expected pricing for VMware and 350% for mainframe software. Tesco rejected four Broadcom offers and is now contending with compatibility issues, as its new virtualization platform doesn't work with its existing Veeam and Zerto tools. The case is expected to reach UK court between late 2027 and early 2028, joining similar Broadcom disputes with AT&T (settled) and Siemens. | |
HN Discussion:
| |
| 13. | MicroUI – A tiny, portable, immediate-mode UI library written in ANSI C(github.com) |
| 250 points by peter_d_sherman 46 days ago | 86 comments | permalink | |
tl;dr: MicroUI is a ~1100 SLOC ANSI C immediate-mode UI library that operates within a fixed-size memory region with no additional allocations. It provides standard controls (windows, buttons, sliders, textboxes, etc.) and a simple layout system, but doesn't render anything itself—users supply input and handle the emitted draw commands, making it compatible with any renderer capable of drawing rectangles and text. The project is intentionally minimal, so feature-additions PRs likely won't be merged, though it's designed for easy extension with custom controls. | |
HN Discussion:
| |
| 14. | GLM-5.2 is the new leading open weights model on Artificial Analysis(artificialanalysis.ai) |
| 876 points by himata4113 46 days ago | 432 comments | permalink | |
tl;dr: Z.ai's GLM-5.2 (744B total / 40B active params, MIT license) tops Artificial Analysis's open weights leaderboard with an Intelligence Index of 51, beating MiniMax-M3 (44) and DeepSeek V4 Pro (44), with notable gains in scientific reasoning and a 1M token context window. It also leads open weights on GDPval-AA v2 (1524), roughly matching GPT-5.5. The tradeoff: it burns 43k output tokens per task (up from 26k in GLM-5.1), making it less token-efficient than peers despite sitting on the intelligence-vs-cost Pareto frontier at ~$0.46/task. | |
HN Discussion:
| |
| 15. | U.S. science is in chaos(scientificamerican.com) |
| 862 points by presspot 46 days ago | 1090 comments | permalink | |
tl;dr: The Trump administration's cuts via DOGE have gutted U.S. science funding: ~95,000 federal scientists have left, NIH and NSF are issuing far fewer grants, and projects like the AXIS space telescope died from staff losses and budget chaos rather than outright cancellation. Politically-driven filters now block research touching on DEI, structural racism, or foreign collaborations, breaking the post-WWII compact between government and academia and pushing researchers to consider leaving the country. Critics argue the shift reflects a Silicon Valley-influenced view that science should primarily generate commercial returns, which historical analysis suggests would have prevented roughly half of today's drugs from existing. | |
HN Discussion:
| |
| 16. | The founder's playbook: Building an AI-native startup(claude.com) |
| 238 points by e2e4 46 days ago | 167 comments | permalink | |
tl;dr: Anthropic published a playbook for founders building AI-native startups, mapping the four startup stages (Idea, MVP, Launch, Scale) to AI-powered workflows using Claude products. It covers problem validation, avoiding technical debt in AI-generated codebases, measuring real product-market fit, and using agentic workflows to replace founder attention, with guidance on when to use Chat, Claude Cowork, or Claude Code at each stage. | |
HN Discussion:
| |
| 17. | Want your images back? That'll be $5(lutr.dev) |
| 649 points by lutr 46 days ago | 265 comments | permalink | |
tl;dr: The author logged into their old Photobucket account hoping to recover childhood images, only to find them paywalled behind a $5/month subscription (a detail Photobucket conveniently obscured). After reluctantly paying, they discovered the account was actually empty — and the refund window had already lapsed by the time they noticed the fine print. The post blew up on Hacker News, nearly taking down their Vercel-hosted blog due to edge request limits. | |
HN Discussion:
| |
| 18. | Running local models is good now(vickiboykis.com) |
| 1556 points by jfb 47 days ago | 597 comments | permalink | |
tl;dr: Local LLMs have crossed a usability threshold, with GPT-OSS and Gemma 3 (referred to as "Gemma 4" in the post) enabling agentic coding workflows on a 64GB M2 Mac at roughly 75% of frontier model performance. The author runs Pi as an agent harness against LM Studio in a Docker sandbox, using it for refactoring, unit tests, and bootstrapping repos—though slow inference and small context windows still rule out production use. | |
HN Discussion:
| |
| 19. | GrapheneOS has been ported to Android 17(discuss.grapheneos.org) |
| 1003 points by Cider9986 46 days ago | 593 comments | permalink | |
tl;dr: Summary not available | |
HN Discussion:
| |
| 20. | AI demands more engineering discipline. Not less(charitydotwtf.substack.com) |
| 408 points by BerislavLopac 46 days ago | 206 comments | permalink | |
tl;dr: AI-generated code became roughly as good as a median engineer in late 2025, flipping the economics of software: code is now cheap and disposable, more like a cache of understanding than a durable asset. This makes traditional engineering discipline—observability, behavioral tests, evals in production, immutable/regenerable artifacts—more important, not less, since humans are the weakest link at validation but still essential for creativity, architecture, and defining specs. The author predicts 2026 will be a return to discipline, with massive payoffs for the small minority of teams that already work in tight feedback loops. | |
HN Discussion:
| |