frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

What the Fuck Happened to Nerds

https://mrmarket.lol/what-the-fuck-happened-to-nerds/
21•vrnvu•34m ago•4 comments

Your ePub Is fine

https://andreklein.net/your-epub-is-fine-kobo-disagrees-blame-adobe/
558•sohkamyung•10h ago•190 comments

Apple Foundation Models

https://platform.claude.com/docs/en/cli-sdks-libraries/libraries/apple-foundation-models
103•MehrdadKhnzd•4h ago•26 comments

Even more batteries included with Emacs

https://karthinks.com/software/even-more-batteries-included-with-emacs/
183•signa11•6h ago•37 comments

Curl will not accept vulnerability reports during July 2026

https://daniel.haxx.se/blog/2026/06/15/curl-summer-of-bliss/
355•secret-noun•2h ago•104 comments

Show HN: Kage – Shadow any website to a single binary for offline viewing

https://github.com/tamnd/kage
555•tamnd•15h ago•108 comments

There Is(Ǝ) – Such That (∋)

https://www.fractalkitty.com/there-is-3-such-that/
29•evakhoury•3d ago•11 comments

Bitsy

https://bitsy.org/
189•tosh•3d ago•6 comments

Firewood Splitting Simulator

https://screen.toys/firewood/
809•memalign•5d ago•241 comments

Dalus (YC W25) Is Hiring a Senior Software Engineer in Germany

https://www.ycombinator.com/companies/dalus/jobs/5IDmKJt-senior-software-frontend-engineer-german...
1•sebastianvoelkl•1h ago

The Last Surviving Japanese Porsche 912 Police Car

https://kottke.org/26/06/the-last-surviving-japanese-porsche-912-police-car
90•zdw•2d ago•30 comments

21 years and counting of 'eight fallacies of distributed computing' (2025)

https://blog.apnic.net/2025/12/08/21-years-and-counting-of-eight-fallacies-of-distributed-computing/
82•teleforce•8h ago•15 comments

Why does paper fold so well?

https://www.bbc.co.uk/programmes/w3ct8k70
41•zeristor•1d ago•11 comments

Rio de Janeiro's "homegrown" LLM appears to be a merge of an existing model

https://github.com/nex-agi/Nex-N2/issues/4
345•unrvl22•17h ago•186 comments

A short history of Cerro Torre, the most controversial mountain (2012)

https://www.markhorrell.com/blog/2012/a-short-history-of-cerro-torre/
40•joebig•4d ago•16 comments

Exploring building a tiny FUSE filesystem

https://www.shayon.dev/post/2026/161/building-a-tiny-fuse-filesystem/
6•shayonj•2d ago•1 comments

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

226•david927•16h ago•820 comments

Formal methods and the future of programming

https://blog.janestreet.com/formal-methods-at-jane-street-index/?from_theconsensus=1
260•eatonphil•20h ago•93 comments

Show HN: Trace – Offline Mac meeting transcripts you can flag mid-call

https://traceapp.info
159•AG342•1d ago•57 comments

Chaosnet (1981)

https://tumbleweed.nu/r/lm-3/uv/amber.html
83•RGBCube•13h ago•12 comments

TorchCodec 0.14: HDR Video Decoding for CPU and CUDA, and Fast Wav Decoder

https://github.com/meta-pytorch/torchcodec/releases/tag/v0.14.0
46•scott_s•4d ago•5 comments

The only scalable delete in Postgres is DROP TABLE

https://planetscale.com/blog/the-only-scalable-delete
164•hollylawly•3d ago•58 comments

Windows 11 users are tired of MS account requirements creeping into everything

https://www.windowscentral.com/microsoft/windows-11/windows-11-users-are-tired-of-microsoft-accou...
318•josephcsible•11h ago•220 comments

Perlisisms (1982)

https://www.cs.yale.edu/homes/perlis-alan/quotes.html
115•tosh•18h ago•56 comments

Caddy compatibility for zeroserve: 3x throughput and 70% lower latency

https://su3.io/posts/zeroserve-caddy-compat
184•losfair•19h ago•52 comments

Segmented type appreciation corner (2018)

https://aresluna.org/segmented-type/
72•unexpectedVCR•3d ago•16 comments

Write for One Person

https://wizardzines.com/comics/write-for-one-person/
211•evakhoury•2d ago•65 comments

Show HN: Discover Wikipedia articles popular on Hacker News

https://www.orangecrumbs.com/
111•octopus143•15h ago•26 comments

UK Brings in Full Social Media Ban for Under-16s

https://deadline.com/2026/06/uk-social-media-ban-under-16s-x-youtube-tiktok-reddit-1236956163/
4•01-_-•21m ago•0 comments

How to earn a billion dollars

https://paulgraham.com/earn.html
621•kingstoned•21h ago•1630 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?