frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Claude discovers a novel enzyme system with CRISPR-like repeats

https://www.anthropic.com/news/claude-discovers-novel-enzyme-system
341•raahelb•3h ago•329 comments

VSCode's SSH Agent Is Bananas

https://fly.io/blog/vscode-ssh-wtf/
20•Rapzid•54m ago•4 comments

Fixing the Portobello Police Station Clock

https://pointinthecloud.com/2026-04-11-211700.html
340•avidly•6h ago•76 comments

A brief history of Windows scroll bar shortcuts

https://devblogs.microsoft.com/oldnewthing/20260922-00/?p=112719/
76•tybulewicz•3h ago•36 comments

Italian parliament votes for return to nuclear energy

https://apnews.com/article/italy-nuclear-chernobyl-4891b6b7c7791ae84db6b0bf0f7cf567
422•geox•4h ago•254 comments

LensVLM: Compressing long context as images, expanding only relevant pages

https://huggingface.co/apple/LensVLM-9B
11•victormustar•3h ago•0 comments

OpenAI breaches Medicare, Albanese reveals

https://www.smh.com.au/politics/federal/openai-breaches-medicare-albanese-reveals-20260924-p6100u...
45•jonnonz•54m ago•9 comments

Gemini 3.8 text-to-speech

https://blog.google/innovation-and-ai/models-and-research/gemini-models/gemini-3-8-text-to-speech/
214•swolpers•6h ago•110 comments

Show HN: An atlas of system designs with interactive architecture diagrams

https://atlas-sysdes.vercel.app/
19•mertkahyaoglu•1d ago•5 comments

Jev in 25 Lines of Python

https://www.nobodywho.ai/posts/jev-in-25-lines/
591•bashbjorn•14h ago•190 comments

Radicle: Disclosure of Vulnerability in the Network Protocol

https://radicle.dev/2026/09/23/disclosure-of-vulnerability-in-network-protocol
104•lostmsu•6h ago•36 comments

A refined phylochronology of the second plague pandemic in Western Eurasia

https://www.pnas.org/doi/10.1073/pnas.2534899123
6•Thevet•2d ago•0 comments

The Curious Power of Punctuation

https://www.newyorker.com/magazine/2026/09/28/on-the-mark-louis-menand-book-review
4•pepys•1d ago•0 comments

Tokens too cheap to meter

https://jyn.dev/tokens-too-cheap-to-meter/
204•teoruiz•12h ago•166 comments

DoorDash Spent $1.4M Trying to Stop Mamdani from Becoming Mayor. Now We Know Why

https://theintercept.com/2026/09/23/doordash-delivery-nyc-mamdani-wage-theft-settlement/
217•vrganj•2h ago•82 comments

I don't want the details

https://michaelheap.com/i-dont-want-the-details/
317•mooreds•8h ago•178 comments

Z80 REPL (2018)

https://abagames.github.io/z80-repl/index.html
130•adunk•10h ago•18 comments

Claude Code reads AGENTS.md only when telemetry is on [fixed]

https://blog.szypowi.cz/p/claude-code-reads-agents.md-only-when-telemetry-is-on/
426•pszypowicz•9h ago•238 comments

Show HN: I built a post-mortem debugger for native Windows x64/x86 crashes

https://www.forensicdbg.com
11•Loren_SL•2h ago•0 comments

Stripe's Knowledge AI Platform

https://stripe.dev/blog/meet-stripes-knowledge-ai-platform
159•ltononro•8h ago•99 comments

Swap, ZRAM, Zswap and Hibernate on NixOS

https://blog.matthewbrunelle.com/swap-zram-zswap-and-hibernate-on-nixos/
16•speckx•3h ago•3 comments

Once Claude can measure something, it can make it faster

https://claude.dev/blog/how-we-made-claude-ai-faster/
114•matthieu_bl•2h ago•71 comments

QuestDB (YC S20) Is Hiring a Sales Engineer

https://questdb.com/careers/pre-sales-engineer-north-america/
1•nhourcard•9h ago

Show HN: Conway's Game of Life in boot sector

https://github.com/0xAX/BootLife
19•0xAX•2d ago•3 comments

UK military jamming other nations' satellites to defend itself, BBC told

https://www.bbc.com/news/articles/c32l8y8kygdvo
107•thm•4h ago•159 comments

Making Tailscale Faster

https://tailscale.com/blog/making-tailscale-faster
16•yarapavan•4h ago•2 comments

The mystery animal on an ancient god's head

https://signoregalilei.com/2026/09/13/the-mystery-animal-on-an-ancient-gods-head/
3•surprisetalk•1d ago•0 comments

Seattle City Council votes to ban surveillance pricing in sale of groceries

https://advocacy.consumerreports.org/press_release/seattle-city-council-votes-to-ban-surveillance...
251•ortusdux•7h ago•140 comments

Strands Harness

https://strandsagents.com/blog/introducing-strands-harness/
128•zuckerborg0101•6h ago•89 comments

28% of job postings on company career sites have been open over 90 days

https://unlisted.careers/ghost-jobs/report/2026-09
185•rubatrejo•5h ago•266 comments
Open in hackernews

Compiler Reminders

https://jfmengels.net/compiler-reminders/
38•jfmengels1•1y ago

Comments

JonChesterfield•1y ago
Exhaustive compile time checking of dispatch statements is a wonderful thing, sorely missing from the languages that decided "sum types" are a bit weird and niche.
fredrikholm•1y ago
They make it near impossible to extend from the outside.

I can pass a Reader interface to your function, but I cannot (easily) add a

> | UnusualProtocol(Socket)

as a third party consumer.

Other than that, sum types are the better abstraction. With exhaustive first class pattern matching (eg. with proper matching on destructuring), nothing comes close in terms of ergonomics.

hermanradtke•1y ago
That is a feature. Compose instead of extending.
Yoric•1y ago
OCaml has extensible sum types. They work very nicely for some ranges of problems.
swiftcoder•1y ago
Elm <-> Rust

Best buds on this front

gitroom•1y ago
Tbh, missing those checks in other languages bugs me so much - it's like why leave me hanging?