frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

EuroBirdPortal – Live bird movements across Europe

https://www.eurobirdportal.org/ebp/en/
38•NKosmatos•2h ago•9 comments

Fable 5.1 Solves the Cyphral Distich, a 370-year-old cipher

https://www.vals.ai/blogs/fable-solves-cyphral-distich
964•u1hcw9nx•13h ago•414 comments

A 386 PC for Your RP2350

https://github.com/rh1tech/frank-386
31•SamuraiLion•2h ago•10 comments

XCancel Taken Down Again

https://xcancel.com/#
49•gaganyaan•39m ago•31 comments

Spaceships (Reverse Asteroid)

https://spaceships.treybastian.com/
243•zdw•4d ago•44 comments

Registration without a phone number on Signal will use zero-knowledge proofs

https://community.signalusers.org/t/registration-without-a-phone-number/2222?page=10
271•Cider9986•12h ago•130 comments

Apple's Dimensional Drawings

https://developer.apple.com/accessories/dimensional-drawings/
207•herbertl•10h ago•78 comments

The case against JPEG XL

https://giannirosato.com/blog/post/case-against-jxl/
170•contact9879•9h ago•233 comments

Show HN: 1080p is 920px tall – 1k real browser viewports

https://screensize.net/reports/viewport-stats
17•zenpe•2h ago•12 comments

An atlas of periodic solutions to the three-body problem

https://www.threebodyorbits.com/
7•danielmorozoff•2d ago•0 comments

OpenArch – PyTorch implementations of modern LLM architectures

https://github.com/anuj0456/OpenArch
12•anuj0456•2h ago•3 comments

Mullenweg has returned as CEO after attempted board ouster

https://techcrunch.com/2026/09/12/automattic-confirms-mullenweg-has-returned-as-ceo-after-attempt...
163•ilamont•14h ago•224 comments

Rope, twine and thread: Invisible technologies of the Stone Age

https://knowablemagazine.org/content/article/society/2026/prehistory-lost-threads
72•knowablemag•2d ago•21 comments

Ask HN: What are you working on? (September 2026)

178•david927•16h ago•554 comments

OEMpocalypse: Unprivileged Android app to root on Samsung, Xiaomi, others

https://calif.io/research/oempocalypse
69•negura•8h ago•29 comments

Julia 1.13 highlights

https://julialang.org/blog/2026/09/julia-1.13-highlights/
232•eigenspace•3d ago•21 comments

Why is Google still serving dodgy ads?

https://www.atomic14.com/2026/09/13/why-is-google-still-serving-dodgy-ads
828•iamflimflam1•16h ago•366 comments

The Nature of Dance

https://vester.si/blog/nature-of-dance/
7•wonger_•2d ago•7 comments

Show HN: EterDB, a Postgres fork that makes it easy to recover from incidents

https://eterdb.com/
34•fdeth•3d ago•15 comments

The GDR and Vietnam: From Fake Coffee to Coffee Empire

https://www.katjahoyer.uk/p/the-gdr-and-vietnam-from-fake-coffee
84•NaOH•3d ago•40 comments

Bad benchmarks and evals: Senior SWE-Bench, napkin math, and winter tires

https://danluu.com/exercise-7/
29•luu•3d ago•10 comments

Flawed routers flood University of Wisconsin internet time server (2003)

https://pages.cs.wisc.edu/~plonka/netgear-sntp/
87•walrus01•13h ago•10 comments

Nike exits the S&P 100 after 18 years and a $200B market-cap wipeout

https://fortune.com/2026/09/08/nike-stock-plummets-sp500-market-cap-index/
143•andsoitis•7h ago•188 comments

Open-source AI and open models reading list

https://www.interconnects.ai/p/open-source-ai-reading-list
112•simonpure•10h ago•22 comments

CUDA for AMD on Windows

https://github.com/Speedstu/CUDA-for-AMD-Windows
168•chiassedu80•20h ago•90 comments

AI Robots – When will they be in our homes

https://spectrum.ieee.org/ai-robots
37•andsoitis•9h ago•39 comments

The Malicious Use of Artificial Intelligence

https://arxiv.org/abs/1802.07228
66•rasengan0•9h ago•15 comments

Five Words from Vanishing Fleece

https://blog.wordnik.com/five-words-from-vanishing-fleece
11•dan353hehe•2d ago•0 comments

Astra and Fable still hack on simple variants of alignment evals from 2025

https://www.lesswrong.com/posts/munJKF7iWMsWJLAH2/astra-and-fable-still-hack-on-simple-variants-o...
440•Levitating•20h ago•205 comments

'Coltrane' Review: Sound and Spirit

https://www.wsj.com/arts-culture/books/coltrane-review-sound-and-spirit-b2417282
13•Thevet•1d ago•1 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?