frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Cloud in a Bottle: making self-hosting accessible to everyone

https://cloudinabottle.org/blog/launch-post
272•zplizzi•5h ago•109 comments

The revolt of the reader

https://bcantrill.dtrace.org/2026/09/05/the-revolt-of-the-reader/
233•chmaynard•8h ago•87 comments

GPT-6 Astra on robot arms

https://openai.robocurve.org/gpt-6-astra/
121•Anon84•3h ago•74 comments

OpenBSD Stories: Strange Medieval Devices

http://miod.online.fr/software/openbsd/stories/smd.html
30•zdw•3d ago•7 comments

The ColorChecker, photography's most important 24 squares, turns 50

https://www.dpreview.com/news/the-colorchecker-photographys-most-important-24-squares-turns-50/
22•sohkamyung•4d ago•1 comments

Chrome again exempts Google from user site data settings

https://lapcatsoftware.com/articles/2026/9/1.html
231•ExMachina73•5h ago•36 comments

Learn Programming with OCaml

https://usr.lmf.cnrs.fr/lpo/
217•elvis70•12h ago•82 comments

Private German rocket makes history, reaches orbit from European soil

https://www.space.com/space-exploration/launches-spacecraft/isar-aerospace-second-launch-norway-a...
465•bookmtn•9h ago•246 comments

The "$60 Gaming PC" – AMD BC-250 (2025)

https://devquasar.com/hardware/the-60-gaming-pc-amd-bc-250/
322•networked•16h ago•96 comments

Discovery of a new OpenAI agent message board

https://collusion.wiki/
2154•moultano•1d ago•1531 comments

RecurseCenter.return()

https://mm-dev.rocks/series/recursecenter.return/
34•evakhoury•4d ago•3 comments

Actively exploited sandbox RCE in all Chromium versions

https://nvd.nist.gov/vuln/detail/cve-2026-85046
762•negura•1d ago•451 comments

Nitter has more working instances than before the takedowns

https://codeberg.org/mv12star/shitter/wiki/Instances
658•Cider9986•1d ago•319 comments

Visualizing Rust's Vtables: How dyn Trait Works In Memory

https://sofiabelen.github.io/projects/visualizing-rusts-vtables-how-dyn-trait-works-in-memory/
153•torutofu•16h ago•24 comments

LLMs as a Cognitive Virus

https://arxiv.org/abs/2609.03344
236•canjobear•9h ago•182 comments

Vancouver strip club's Instagram taken down over sign featuring lake joke

https://www.vancouverisawesome.com/local-news/vancouver-strip-club-instagram-taken-down-sign-call...
67•anigbrowl•1h ago•30 comments

How Swiss tables work in Go built-in map

https://victoriametrics.com/blog/go-swiss-table-map/index.html
61•valyala•2d ago•4 comments

Topologist's Map of the World

https://www.futilitycloset.com/2026/09/01/small-world-20/
62•beardyw•4d ago•20 comments

Music Theory for Programmers

https://runjs.app/blog/music-theory-for-programmers
10•birdculture•3d ago•1 comments

Finite time blowup for an averaged three-dimensional Navier-Stokes equation (2014)

https://terrytao.wordpress.com/2014/02/04/finite-time-blowup-for-an-averaged-three-dimensional-na...
65•gmays•9h ago•33 comments

AI, Tools and Transformation

https://www.ben-evans.com/benedictevans/2026/9/3/ai-tools-and-transformation
13•firexcy•3h ago•3 comments

Delidded Intel I9-14900KS CT Scan

https://www.lttlabs.com/articles/2026/09/02/delidded-intel-i9-14900ks
87•willx86•3d ago•3 comments

Balrogg: Demonically compacting (up to 15%) lossless Vorbis/Opus recompressor

https://github.com/iczelia/balrogg
73•palaiologos•2d ago•10 comments

Terpstra Keyboard

http://terpstrakeyboard.com/
125•cl3misch•19h ago•57 comments

Show HN: Fly By – retro biplane flying game

https://michaelteter.com/flyby.html
67•michaelteter•4d ago•44 comments

OKF Agent Memory – Git-native persistent memory for AI coding agents

https://github.com/okf-memory/okf-agent-memory
54•okf_memory•7h ago•18 comments

Statichost.eu – European static site hosting

https://www.statichost.eu/
455•p4bl0•1d ago•205 comments

Can AI design circuit boards yet?

https://eebench.org/blog/can-ai-design-circuit-boards-yet/
399•iopapa•1d ago•212 comments

ISAR Aerospace 5 Sept Mission Onward and Upward

https://isaraerospace.com/mission-updates-overview
29•t43562•9h ago•4 comments

CHC5: Open Camera System – Image Sensor Specification Comparison

https://www.circuitvalley.com/2026/08/chc5-open-camera-sensor-comparison-specification.html
20•devoxel•3d ago•2 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?