frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

OpenCode – Open source AI coding agent

https://opencode.ai/
1046•rbanffy•18h ago•502 comments

Meta's Omnilingual MT for 1,600 Languages

https://ai.meta.com/research/publications/omnilingual-mt-machine-translation-for-1600-languages/?...
59•j0e1•3d ago•16 comments

Mamba-3

https://www.together.ai/blog/mamba-3
214•matt_d•3d ago•42 comments

Grafeo – A fast, lean, embeddable graph database built in Rust

https://grafeo.dev/
3•0x1997•53m ago•0 comments

Some Things Just Take Time

https://lucumr.pocoo.org/2026/3/20/some-things-just-take-time/
4•vaylian•56m ago•1 comments

Major leap towards reanimation after death as mammal's brain preserved

https://www.newscientist.com/article/2520204-major-leap-towards-reanimation-after-death-as-mammal...
23•Brajeshwar•1h ago•15 comments

FFmpeg 101 (2024)

https://blogs.igalia.com/llepage/ffmpeg-101/
161•vinhnx•12h ago•5 comments

A Japanese glossary of chopsticks faux pas (2022)

https://www.nippon.com/en/japan-data/h01362/
370•cainxinth•18h ago•284 comments

Blocking Internet Archive Won't Stop AI, but Will Erase Web's Historical Record

https://www.eff.org/deeplinks/2026/03/blocking-internet-archive-wont-stop-ai-it-will-erase-webs-h...
273•pabs3•8h ago•74 comments

How HN: Ironkernel – Python expressions, Rust parallel

https://github.com/YuminosukeSato/ironkernel
19•acc_10000•2d ago•4 comments

Fujifilm X RAW STUDIO webapp clone

https://github.com/eggricesoy/filmkit
114•notcodingtoday•2d ago•40 comments

Molly Guard

https://bookofjoe2.blogspot.com/2026/02/molly-guard.html
159•surprisetalk•1d ago•68 comments

The Story of Marina Abramovic and Ulay (2020)

https://www.sydney-yaeko.com/artsandculture/marina-and-ulay
30•NaOH•2d ago•18 comments

Ghostling

https://github.com/ghostty-org/ghostling
267•bjornroberg•17h ago•50 comments

Linux Applications Programming by Example: The Fundamental APIs (2nd Edition)

https://github.com/arnoldrobbins/LinuxByExample-2e
134•teleforce•15h ago•17 comments

Books of the Century by Le Monde

https://standardebooks.org/collections/le-mondes-100-books-of-the-century
8•zlu•2d ago•2 comments

The Los Angeles Aqueduct Is Wild

https://practical.engineering/blog/2026/3/17/the-los-angeles-aqueduct-is-wild
390•michaefe•3d ago•195 comments

Padel Chess – tactical simulator for padel

https://www.padelchess.me/
61•AlexGerasim•3d ago•29 comments

We rewrote our Rust WASM parser in TypeScript and it got faster

https://www.openui.com/blog/rust-wasm-parser
256•zahlekhan•17h ago•165 comments

Attention Residuals

https://github.com/MoonshotAI/Attention-Residuals
206•GaggiX•21h ago•29 comments

The worst volume control UI in the world (2017)

https://uxdesign.cc/the-worst-volume-control-ui-in-the-world-60713dc86950
183•andsoitis•3d ago•88 comments

Just make it hard to fail

https://nekolucifer.substack.com/p/just-make-it-really-hard-to-fail
18•andai•2h ago•11 comments

Cryptography in Home Entertainment (2004)

https://mathweb.ucsd.edu/~crypto/Projects/MarkBarry/
66•rvnx•2d ago•36 comments

Mayor of Paris removed parking spaces, "drastically" reduced the number of cars

https://www.cnn.com/2026/03/21/travel/paris-transformation-anne-hidalgo-mayor
139•heresie-dabord•2h ago•150 comments

Why western carmakers' retreat from electric risks dooming them to irrelevance

https://www.theguardian.com/business/2026/mar/21/west-carmakers-retreat-electric-vehicle-risks-ir...
92•n1b0m•1h ago•127 comments

Show HN: We built a terminal-only Bluesky / AT Proto client written in Fortran

https://github.com/FormerLab/fortransky
115•FormerLabFred•17h ago•56 comments

Turing Award Honors Bennett and Brassard for Quantum Information Science

https://amturing.acm.org
55•throw0101d•3d ago•0 comments

France's aircraft carrier located in real time by Le Monde through fitness app

https://www.lemonde.fr/en/international/article/2026/03/20/stravaleaks-france-s-aircraft-carrier-...
599•MrDresden•1d ago•481 comments

AI Team OS – Turn Claude Code into a Self-Managing AI Team

https://github.com/CronusL-1141/AI-company
7•cronus1141•6h ago•0 comments

An industrial piping contractor on Claude Code [video]

https://twitter.com/toddsaunders/status/2034243420147859716
85•mighty-fine•2d ago•47 comments
Open in hackernews

Compiler Reminders

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

Comments

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

Best buds on this front

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