frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Data Compression Explained

https://mattmahoney.net/dc/dce.html
36•mtdewcmu•3d ago•0 comments

Think of the children: How to force real ID for all internet traffic (2023)

https://nochan.net/b/Internet-Crap/20230829-Think-Of-The-Children/
170•Bender•8h ago•101 comments

There are no instances in ATProto

https://overreacted.io/there-are-no-instances-in-atproto/
371•danabramov•13h ago•207 comments

Surprising Economics of Load-Balanced Systems

https://brooker.co.za/blog/2020/08/06/erlang.html
65•KraftyOne•8h ago•18 comments

I used sound waves to make espresso

https://theconversation.com/i-used-sound-waves-to-make-espresso-it-could-cut-coffee-brewing-energ...
227•zeristor•6d ago•148 comments

Norway imposes near ban on AI in elementary school

https://www.reuters.com/technology/norway-imposes-near-ban-ai-elementary-school-2026-06-19/
523•ilreb•12h ago•356 comments

Hyundai buys Boston Dynamics

https://startupfortune.com/hyundai-takes-full-control-of-boston-dynamics-as-softbank-exits-for-32...
719•ck2•12h ago•329 comments

Bobby Prince, composer for Doom, Wolfenstein 3D, and Duke Nukem 3D, has died

https://www.legacy.com/legacy/robert-bobby-prince-lll
266•pgrote•9h ago•30 comments

Project Valhalla, Explained: How a Decade of Work Arrives in JDK 28

https://www.jvm-weekly.com/p/project-valhalla-explained-how-a
554•philonoist•22h ago•348 comments

How many of the 170k English words do you know?

https://vocabowl-870366514258.us-west1.run.app/
270•abnry•14h ago•388 comments

Hey, n00b, we didn't hire you to complete tasks

https://newsletter.kentbeck.com/p/hey-n00b-we-didnt-hire-you-to-complete
123•rrvsh•4h ago•55 comments

A Perceptron in Age of Empires II

https://adewynter.github.io/notes/aoe2-circuits
37•EvgeniyZh•1d ago•13 comments

Egyptian Fractions

https://blog.plover.com/math/egyptian-fractions.html
74•luu•4d ago•3 comments

How to feed a dictator

https://www.theguardian.com/film/2026/jun/09/how-to-feed-a-dictator-film
107•Michelangelo11•3h ago•37 comments

Meet Nikolai Evreinov, the 19th century Nathan Fielder

https://mssv.net/2026/06/16/meet-nikolai-evreinov-the-19th-century-nathan-fielder/
7•adrianhon•3d ago•0 comments

John Jumper to join Anthropic

https://twitter.com/JohnJumperSci/status/2068001285173834106
90•artninja1988•10h ago•61 comments

Telescope Ranchers

https://kottke.org/26/06/telescope-ranchers
109•bookofjoe•3d ago•43 comments

Big Banana Car

https://bigbananacar.com/
128•Bender•10h ago•73 comments

Court Records Should Be Free

https://www.eff.org/deeplinks/2026/06/court-records-should-be-free
296•hn_acker•11h ago•64 comments

The discovery that changed how scientists think about memory – IBM

https://www.ibm.com/think/news/discovery-changed-how-scientists-think-about-memory-kavli-prize
3•rbanffy•2d ago•0 comments

Ask HN: Will programmers write more efficient code during the memory shortage?

52•amichail•5h ago•87 comments

A 1976 university experiment spun up the U.S. wind industry

https://spectrum.ieee.org/william-heronemus-wind-energy
80•pseudolus•4d ago•8 comments

RhinoCollab a plugin for real-time editing for Rhino 3D

https://rhinocollab.com
24•Ashxius•5d ago•5 comments

Zen and the Art of Machine Learning Research

https://blog.jxmo.io/p/zen-and-the-art-of-machine-learning
243•jxmorris12•4d ago•87 comments

Building a robotics research setup that lives next to my desk

https://dfdxlabs.com/research/2026/robotics-setup/
127•mplappert•1d ago•43 comments

Show HN: Metiq: a real time 3D globe for 100 public datasets

https://metiq.space
97•rakeda•3d ago•30 comments

Zenzizenzizenzic

https://en.wikipedia.org/wiki/Zenzizenzizenzic
84•gyosifov•6h ago•23 comments

To study how chips work, MIT researchers built their own operating system

https://news.mit.edu/2026/to-study-how-chips-really-work-mit-researchers-built-their-own-operatin...
361•speckx•4d ago•55 comments

Ten years of ClickHouse in open source

https://clickhouse.com/blog/open-source-10
287•saisrirampur•4d ago•72 comments

The AirPods Effect

https://www.theescapenewsletter.com/p/the-airpods-effect
388•herbertl•1d ago•695 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?