frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Tinybox – Offline AI device 120B parameters

https://tinygrad.org/#tinybox
278•albelfio•4h ago•162 comments

Profiling Hacker News users based on their comments

https://simonwillison.net/2026/Mar/21/profiling-hacker-news-users/
26•simonw•34m ago•19 comments

Professional video editing, right in the browser with WebGPU and WASM

https://tooscut.app/
114•mohebifar•3h ago•29 comments

Some things just take time

https://lucumr.pocoo.org/2026/3/20/some-things-just-take-time/
493•vaylian•10h ago•169 comments

Boomloom: Think with your hands

https://www.theboomloom.com
34•rasengan0•1d ago•2 comments

Do Not Turn Child Protection into Internet Access Control

https://news.dyne.org/child-protection-is-not-access-control/
444•smartmic•4h ago•216 comments

The Impact of AI on Game Dev Jobs. Open to Work Crisis

https://darkounity.com/blog-post?id=the-impact-of-ai-on-game-dev-jobs-open-to-work-crisis--177412...
30•hacker_13•3h ago•6 comments

Bayesian statistics for confused data scientists

https://nchagnet.pages.dev/blog/bayesian-statistics-for-confused-data-scientists/
38•speckx•3d ago•4 comments

Trivy ecosystem supply chain briefly compromised

https://github.com/aquasecurity/trivy/security/advisories/GHSA-69fq-xp46-6x23
12•batch12•1d ago•3 comments

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

https://grafeo.dev/
183•0x1997•10h ago•59 comments

Electronics for Kids, 2nd Edition

https://nostarch.com/electronics-for-kids-2e
93•0x54MUR41•2d ago•14 comments

Show HN: Termcraft – terminal-first 2D sandbox survival in Rust

https://github.com/pagel-s/termcraft
81•sebosch•6h ago•9 comments

How Invisalign became the biggest user of 3D printers

https://www.wired.com/story/how-invisalign-became-the-worlds-biggest-3d-printing-company/
134•mikhael•2d ago•97 comments

Common Lisp Development Tooling

https://www.creativetension.co/posts/common-lisp-development-tooling
30•0bytematt•5h ago•2 comments

How Ford burned $12B in Brazil (2021)

https://www.reuters.com/business/autos-transportation/how-ford-burned-12-billion-brazil-2021-05-20/
21•kaycebasques•10h ago•0 comments

The paddle wheel aircraft carriers of Lake Michigan

https://signoregalilei.com/2026/03/08/the-paddle-wheel-aircraft-carriers-of-lake-michigan/
42•surprisetalk•4d ago•3 comments

Hide macOS Tahoe's Menu Icons

https://512pixels.net/2026/03/hide-macos-tahoes-menu-icons-with-this-one-simple-trick/
93•soheilpro•7h ago•25 comments

Show HN: Atomic – Self-hosted, semantically-connected personal knowledge base

https://github.com/kenforthewin/atomic
43•kenforthewin•5h ago•7 comments

Floci – A free, open-source local AWS emulator

https://github.com/hectorvent/floci
44•shaicoleman•3h ago•6 comments

Ubuntu 26.04 Ends 46 Years of Silent sudo Passwords

https://pbxscience.com/ubuntu-26-04-ends-46-years-of-silent-sudo-passwords/
310•akersten•19h ago•314 comments

Welcome to the Block Universe

https://nautil.us/welcome-to-the-block-universe-1278973
7•samizdis•4d ago•0 comments

Seam carving with forward energy

https://pictolab.io/seam-carving
11•ChadNauseam•8h ago•2 comments

Study finds no evidence cannabis helps anxiety, depression, or PTSD

https://www.sciencedaily.com/releases/2026/03/260319044656.htm
150•nothrowaways•4h ago•132 comments

ZJIT removes redundant object loads and stores

https://railsatscale.com/2026-03-18-how-zjit-removes-redundant-object-loads-and-stores/
71•tekknolagi•3d ago•10 comments

Meta's Omnilingual MT for 1,600 Languages

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

A Japanese glossary of chopsticks faux pas (2022)

https://www.nippon.com/en/japan-data/h01362/
459•cainxinth•1d ago•353 comments

Books of the Century by Le Monde

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

Mamba-3

https://www.together.ai/blog/mamba-3
275•matt_d•4d ago•50 comments

Thinking Fast, Slow, and Artificial: How AI Is Reshaping Human Reasoning

https://papers.ssrn.com/sol3/papers.cfm?abstract_id=6097646
87•Anon84•9h ago•53 comments

Hawaii's worst flooding in 20 years threatens dam, prompts evacuations

https://www.nbcnews.com/weather/floods/hawaii-worst-flooding-in-20-years-rcna264573
57•geox•5h ago•26 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?