frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Iroh 1.0

https://www.iroh.computer/blog/v1
384•chadfowler•2h ago•136 comments

TinyWind: A pixel pirate sailing game with real wind physics (380k+ kms sailed)

https://tinywind.io
89•tinywind•1h ago•20 comments

My Homelab AI Dev Platform

https://rsgm.dev/post/ai-dev-platform/
52•rsgm•2h ago•20 comments

Launch HN: Drafted (YC P26) – Models for residential architecture

11•PrimalNick•45m ago•8 comments

Making glass-to-metal seals for home­made vacuum tubes

https://maurycyz.com/projects/glass/1/
50•zdw•1d ago•19 comments

What the fuck happened to nerds

https://mrmarket.lol/what-the-fuck-happened-to-nerds/
629•vrnvu•9h ago•432 comments

Fox to buy Roku

https://www.wsj.com/business/deals/fox-roku-deal-f6e564f9
136•thm•4h ago•180 comments

Copper transport drug restores memory and clears toxic Alzheimer's proteins

https://www.monash.edu/news/articles/copper-drug-restores-memory-and-clears-toxic-alzheimers-prot...
114•bookofjoe•2h ago•36 comments

Memory safety CVEs differ between Rust and C/C++

https://kobzol.github.io/rust/2026/06/15/how-memory-safety-cves-differ-between-rust-and-c-cpp.html
18•nicoburns•1h ago•3 comments

CrankGPT

https://crankgpt.com
414•rishikeshs•4h ago•163 comments

Apple Foundation Models

https://platform.claude.com/docs/en/cli-sdks-libraries/libraries/apple-foundation-models
397•MehrdadKhnzd•12h ago•187 comments

Your ePub Is fine

https://andreklein.net/your-epub-is-fine-kobo-disagrees-blame-adobe/
823•sohkamyung•18h ago•277 comments

Show HN: machine0 – Persistent NixOS VMs You Control from the CLI

https://machine0.io
14•bwm•1h ago•2 comments

Boot Naked Linux

https://nick.zoic.org/art/boot-naked-linux/
8•abnercoimbre•1h ago•0 comments

Hetzner Price Adjustment

https://docs.hetzner.com/general/infrastructure-and-availability/price-adjustment/#cloud-servers
50•tuhtah•4h ago•213 comments

Ask HN: Has anyone replaced Claude/GPT with a local model for daily coding?

70•cloudking•2h ago•34 comments

Show HN: Exploiting Slack's video embeds to achieve E2EE communication

https://v1c.rocks/log/exploiting-slack-video/
16•victorio•1h ago•2 comments

Teenagers Stayed Overnight at Their School and Found Hidden Ancient Roman Ruins

https://www.smithsonianmag.com/smart-news/these-italian-teenagers-stayed-overnight-at-their-schoo...
122•thunderbong•4d ago•62 comments

Openrouter Fusion API

https://openrouter.ai/openrouter/fusion
163•tdchaitanya•10h ago•63 comments

Even more batteries included with Emacs

https://karthinks.com/software/even-more-batteries-included-with-emacs/
314•signa11•15h ago•106 comments

Improvement in advanced Alzheimer’s disease following high-dose psilocybin

https://www.frontiersin.org/journals/neuroscience/articles/10.3389/fnins.2026.1813281/full
137•cl3misch•10h ago•101 comments

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

https://github.com/tamnd/kage
650•tamnd•1d ago•124 comments

Google Flight Simulator

https://developers.google.com/maps/documentation/earth/flight-simulator
107•bookofjoe•4h ago•38 comments

Firewood Splitting Simulator

https://screen.toys/firewood/
950•memalign•5d ago•275 comments

How to build a virtual cell and biology scaling laws

https://letter.nikomc.com/p/virtual-cells
6•ogundipeore•2d ago•0 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•10h ago

Anthropic's Safety Superpower

https://stratechery.com/2026/anthropics-safety-superpower/
175•swolpers•7h ago•155 comments

Asciline – real-time ASCII video rendering engine

https://github.com/YusufB5/ASCILINE
48•godot•3d ago•19 comments

Salesforce to Acquire Fin (formerly Intercom) for $3.6B

https://www.salesforce.com/news/press-releases/2026/06/15/salesforce-signs-definitive-agreement-t...
214•colesantiago•5h ago•179 comments

PRC-linked spies hid inside medical and military networks for more than a year

https://www.theregister.com/research/2026/06/15/google-says-prc-linked-spies-hid-in-medical-resea...
12•Bender•50m ago•0 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?