frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Virginia bans sale of geolocation data

https://www.hunton.com/privacy-and-cybersecurity-law-blog/virginia-bans-sale-of-geolocation-data
723•toomuchtodo•10h ago•118 comments

CarPlay Is Additive

https://www.caseyliss.com/2026/7/2/carplay-is-additive-you-dolts
234•sprawl_•6h ago•272 comments

Right to Local Intelligence

https://righttointelligence.org/
186•thoughtpeddler•8h ago•68 comments

crustc: entirety of `rustc`, translated to C

https://github.com/FractalFir/crustc
245•Philpax•8h ago•42 comments

The Safari MCP server for web developers

https://webkit.org/blog/18136/introducing-the-safari-mcp-server-for-web-developers/
64•coloneltcb•6h ago•8 comments

Since Linux 6.9, LUKS suspend stopped wiping disk-encryption keys from memory

https://mathstodon.xyz/@iblech/116769502749142438
452•IngoBlechschmid•16h ago•200 comments

14× faster embeddings: how we rebuilt the ONNX path in Manticore

https://manticoresearch.com/blog/onnx-embeddings-speedup/
35•snikolaev•4h ago•5 comments

Reality has a surprising amount of detail (2017)

https://johnsalvatier.org/blog/2017/reality-has-a-surprising-amount-of-detail
235•vinhnx•5d ago•84 comments

Podman v6.0.0

https://blog.podman.io/2026/07/introducing-podman-v6-0-0/
498•soheilpro•17h ago•200 comments

Exapunks (2018)

https://www.zachtronics.com/exapunks/
275•yu3zhou4•13h ago•93 comments

I Type Holes in Keyboard Covers – This One Survived

https://medium.com/@jamesgarside_/i-type-holes-in-keyboard-covers-e5664732ef93
8•monkeymagick•2d ago•10 comments

Underwater Suit-Wearing Cyborg Insect Capable of Diving and Terra-Aqua Travel

https://www.nature.com/articles/s41467-026-74235-1
24•gscott•3d ago•2 comments

Immich 3.0

https://github.com/immich-app/immich/discussions/29439
352•hashier•17h ago•169 comments

An American Privacy Emergency

https://scottaaronson.blog/?p=9902
286•flowercalled•7h ago•88 comments

Ask HN: Is anyone experimenting with different ways of using LLMs for coding?

24•yehiaabdelm•1h ago•32 comments

Mystery identity of 'Green Boots' climber is finally solved after DNA test

https://www.dailymail.com/news/article-15943905/Mystery-identity-Green-Boots-climber-macabre-land...
94•FireBeyond•9h ago•55 comments

Cowboys, Frontiersmen, Settlers, Townspeople, Cityfolk

https://huntersoftwareconsulting.com/posts/2026-06-28-company-phase-changes/
11•mooreds•3d ago•1 comments

Postgres transactions are a distributed systems superpower

https://www.dbos.dev/blog/co-locating-workflow-state-with-your-data
168•KraftyOne•13h ago•68 comments

A Special Wireless-Free Nikon Camera Is Publicly Available for the First Time

https://petapixel.com/2026/06/24/a-special-wireless-free-nikon-camera-is-publicly-available-for-t...
53•HardwareLust•1w ago•26 comments

The short leash AI coding method for beating Fable

https://blog.okturtles.org/2026/07/short-leash-ai-method/
118•Riseed•12h ago•137 comments

Why Switzerland has 25 gbit internet and America doesn't

https://stefan.schueller.net/posts/the-free-market-lie/
451•talonx•3h ago•278 comments

Claude-real-video - any LLM can watch a video

https://github.com/HUANGCHIHHUNGLeo/claude-real-video
128•cortexosmain•12h ago•41 comments

Great Salt Lake Tracker – Grow the Flow

https://growtheflowutah.org/laketracker/
94•cfowles•12h ago•36 comments

Superpowers 6

https://blog.fsck.com/2026/06/15/Superpowers-6/
136•seahorseemoji•2d ago•51 comments

FoundationDB's Flow – Bringing Actor-Based Concurrency to C++11

https://apple.github.io/foundationdb/flow.html
58•sourdecor•17h ago•8 comments

This is my attempt to get Vulkan going on NetBSD

https://github.com/segaboy/vulkan-netbsd
100•segaboy81•13h ago•25 comments

EFF letter to FTC on X consent order [pdf]

https://www.eff.org/deeplinks/2026/06/eff-and-allies-xs-ftc-petition-waive-privacy-violation-orde...
134•Terretta•12h ago•50 comments

Perform DFU Restores on Apple Silicon Macs with Macvdmtool (2021)

https://www.bkurtz.io/posts/macvdmtool/
19•gregsadetsky•3d ago•3 comments

Show HN: zkGolf – Competitive optimization of formally verified circuits

https://zk.golf/
57•rot256•16h ago•9 comments

Lightning Memory-Mapped Database Manager (LMDB) 1.0

http://www.lmdb.tech/doc/
80•radiator•11h ago•42 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?