frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Asahi Linux Progress Linux 7.0

https://asahilinux.org/2026/04/progress-report-7-0/
162•elisaado•2h ago•22 comments

Statecharts: hierarchical state machines

https://statecharts.dev/
104•sph•4h ago•23 comments

Amateur armed with ChatGPT solves an Erdős problem

https://www.scientificamerican.com/article/amateur-armed-with-chatgpt-vibe-maths-a-60-year-old-pr...
487•pr337h4m•19h ago•319 comments

Why has there been so little progress on Alzheimer's disease?

https://freakonomics.com/podcast/why-has-there-been-so-little-progress-on-alzheimers-disease/
288•chiefalchemist•13h ago•176 comments

Show HN: Turning a Gaussian Splat into a videogame

https://blog.playcanvas.com/turning-a-gaussian-splat-into-a-videogame/
64•yak32•2d ago•13 comments

The West forgot how to make things, now it’s forgetting how to code

https://techtrenches.dev/p/the-west-forgot-how-to-make-things
624•milkglass•7h ago•373 comments

USB Cheat Sheet (2022)

https://fabiensanglard.net/usbcheat/index.html
381•gwerbret•15h ago•69 comments

At least 10 people tied to sensitive US research have died or disappeared

https://www.cnn.com/2026/04/21/us/deaths-disappearances-scientists-investigation
22•acdanger•40m ago•18 comments

Tell HN: An app is silently installing itself on my iPhone every day

351•_-x-_•12h ago•132 comments

GnuPG – post-quantum crypto landing in mainline

https://lists.gnupg.org/pipermail/gnupg-announce/2026q2/000504.html
100•zdkaster•10h ago•34 comments

Cheating at Tetris

https://chalkdustmagazine.com/features/cheating-at-tetris/
22•t-3•4d ago•4 comments

Exposing Floating Point – Bartosz Ciechanowski (2019)

https://ciechanow.ski/exposing-floating-point/
44•subset•6h ago•5 comments

Mahjong: A Visual Guide

https://themahjong.guide/
130•iamwil•2d ago•36 comments

OpenAI Privacy Filter

https://openai.com/index/introducing-openai-privacy-filter/
238•tanelpoder•3d ago•49 comments

Flickr: The first and last great photo platform

https://petapixel.com/2026/04/22/flickr-the-first-and-last-great-photo-platform/
205•Nrbelex•3d ago•103 comments

The Free Universal Construction Kit

https://fffff.at/free-universal-construction-kit/
336•robinhouston•4d ago•73 comments

Terra API (YC W21) Hiring: Applied AI Strategist(Health Intelligence)

https://www.ycombinator.com/companies/terra-api/jobs/DY7BCZU-applied-ai-strategist-market-intelli...
1•kyriakosel•6h ago

My .config Ship of Theseus

https://shift1w.com/blog/config-of-theseus/
11•jacobwiseberg•2d ago•3 comments

The route from Prussian military headquarters to Gary Gygax’s basement

https://asteriskmag.com/issues/14/shall-we-play-a-game
42•jger15•2d ago•3 comments

Using coding assistance tools to revive projects you never were going to finish

https://blog.matthewbrunelle.com/its-ok-to-use-coding-assistance-tools-to-revive-the-projects-you...
289•speckx•21h ago•185 comments

Quirks of Human Anatomy

https://www.sdbonline.org/sites/fly/lewheldquirk/figlegq6.htm
48•gurjeet•1d ago•22 comments

I spent 6 years building my Kanban as I hated how managers run the boards

https://www.npmjs.com/package/ooko
57•okovooo•2d ago•60 comments

Mine, a Coalton and Common Lisp IDE

https://coalton-lang.github.io/20260424-mine/
35•Jach•1d ago•1 comments

APL is more French than English

https://www.jsoftware.com/papers/perlis78.htm
30•tosh•6h ago•13 comments

EU Age Control: The trojan horse for digital IDs

https://juraj.bednar.io/en/blog-en/2026/04/17/eu-age-control-the-trojan-horse-for-digital-ids/
241•gasull•9h ago•128 comments

The Joy of Folding Bikes

https://blog.korny.info/2026/04/19/the-joy-of-folding-bikes
205•pavel_lishin•3d ago•136 comments

Eden AI – European Alternative to OpenRouter

https://www.edenai.co
88•muzzy19•5h ago•43 comments

America's Geothermal Breakthrough

https://oilprice.com/Alternative-Energy/Geothermal-Energy/Americas-Geothermal-Breakthrough-Could-...
125•sleepyguy•17h ago•144 comments

Math Is Hard – OpenBSD Stories

http://miod.online.fr/software/openbsd/stories/vaxfp.html
132•signa11•2d ago•11 comments

The Super Nintendo Cartridges (2024)

https://fabiensanglard.net/snes_carts/
92•offbyone42•12h ago•12 comments
Open in hackernews

Compiler Reminders

https://jfmengels.net/compiler-reminders/
38•jfmengels1•12mo ago

Comments

JonChesterfield•12mo 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•12mo 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•12mo ago
That is a feature. Compose instead of extending.
Yoric•12mo ago
OCaml has extensible sum types. They work very nicely for some ranges of problems.
swiftcoder•12mo ago
Elm <-> Rust

Best buds on this front

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