frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Fast16: Cyberweapon that predates Stuxnet by five years

https://hackingpassion.com/fast16-pre-stuxnet-cyber-sabotage/
40•dd23•1h ago•5 comments

The 1944 Warsaw Uprising, in Color

https://www.barwypowstania.pl/
32•keiferski•1h ago•3 comments

Magic: The Gathering took me from N2 to Japanese fluency

https://www.tokyodev.com/articles/how-magic-the-gathering-took-me-from-n2-to-japanese-fluency
39•pwim•2d ago•8 comments

SWE-bench Verified no longer measures frontier coding capabilities

https://openai.com/index/why-we-no-longer-evaluate-swe-bench-verified/
201•kmdupree•7h ago•120 comments

Clay PCB Tutorial

https://feministhackerspaces.cargo.site/Clay-PCB-Tutorial
162•j0r0b0•5h ago•104 comments

The Visible Zorker: Zork 1

https://eblong.com/infocom/visi/zork1/
67•PLenz•4h ago•9 comments

AI should elevate your thinking, not replace it

https://www.koshyjohn.com/blog/ai-should-elevate-your-thinking-not-replace-it/
105•koshyjohn•1h ago•101 comments

Show HN: AI memory with biological decay (52% recall)

https://github.com/sachitrafa/YourMemory
8•SachitRafa•24m ago•3 comments

GoDaddy gave a domain to a stranger without any documentation

https://anchor.host/godaddy-gave-a-domain-to-a-stranger-without-any-documentation/
408•jamesponddotco•4h ago•160 comments

Sawe smashes two-hour mark to 'move goalposts for marathon running'

https://www.bbc.com/sport/athletics/articles/crm1m7e0zwzo
4•berkeleyjunk•26m ago•0 comments

Show HN: Free textbook on engineering thermodynamics

https://thermodynamicsbook.com/
77•2DcAf•6h ago•26 comments

Statecharts: hierarchical state machines

https://statecharts.dev/
261•sph•11h ago•75 comments

An AI agent deleted our production database. The agent's confession is below

https://twitter.com/lifeof_jer/status/2048103471019434248
273•jeremyccrane•4h ago•353 comments

Orinoco: Young Generation Garbage Collection

https://v8.dev/blog/orinoco-parallel-scavenger
22•plow-tycoon•3d ago•1 comments

Amateur armed with ChatGPT solves an Erdős problem

https://www.scientificamerican.com/article/amateur-armed-with-chatgpt-vibe-maths-a-60-year-old-pr...
711•pr337h4m•1d ago•487 comments

Dillo Browser Release 3.3.0

https://dillo-browser.org/release/3.3.0/
115•rodarima•4h ago•18 comments

Asahi Linux Progress Linux 7.0

https://asahilinux.org/2026/04/progress-report-7-0/
557•elisaado•10h ago•257 comments

Why has there been so little progress on Alzheimer's disease?

https://freakonomics.com/podcast/why-has-there-been-so-little-progress-on-alzheimers-disease/
384•chiefalchemist•21h ago•259 comments

Plants can sense the sound of rain, a new study finds

https://news.mit.edu/2026/plants-can-sense-sound-rain-new-study-finds-0422
61•paulpauper•3h ago•7 comments

Sloppy Copies

https://www.markround.com/blog/2026/04/19/sloppy-copies/
46•dev_hugepages•2d ago•12 comments

Waymo says can't avoid bike lanes because riders want to be dropped off in them

https://road.cc/news/driverless-taxis-veering-into-cycle-lanes-normal-practice-says-waymo
161•randycupertino•2h ago•207 comments

XOXO Festival Archive

https://xoxofest.com/
3•surprisetalk•2d ago•0 comments

Show HN: Turning a Gaussian Splat into a videogame

https://blog.playcanvas.com/turning-a-gaussian-splat-into-a-videogame/
183•yak32•3d ago•37 comments

Tell HN: An app is silently installing itself on my iPhone every day

503•_-x-_•20h ago•179 comments

USB Cheat Sheet (2022)

https://fabiensanglard.net/usbcheat/index.html
475•gwerbret•23h ago•82 comments

QNX on the Commodore 900 – Raiders of the lost hard drive [video] (2025)

https://archive.fosdem.org/2025/schedule/event/fosdem-2025-5479-raiders-of-the-lost-hard-drive/
43•rbanffy•8h ago•1 comments

Show HN: Auge Vision from Your Terminal

https://auge.franzai.com/
12•franze•1h ago•1 comments

GitHub unwanted UX change: issue links now open in a popup

https://github.com/orgs/community/discussions/192666
207•luckman212•7h ago•110 comments

If you stop hiring juniors, your senior engineers own you

https://evalcode.com/posts/if-you-stop-hiring-juniors-your-seniors-own-you/
73•milkglass•1h ago•52 comments

GnuPG – post-quantum crypto landing in mainline

https://lists.gnupg.org/pipermail/gnupg-announce/2026q2/000504.html
157•zdkaster•17h ago•52 comments
Open in hackernews

Compiler Reminders

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

Comments

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

Best buds on this front

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