frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

OpenRouter is joining Stripe

https://openrouter.ai/blog/announcements/openrouter-is-joining-stripe/
767•rvz•12h ago•381 comments

Turns are Better than Radians (2022)

https://www.computerenhance.com/p/turns-are-better-than-radians
101•mayoff•4h ago•46 comments

Error by AI scribe during medical appointment leaves patient devastated

https://www.abc.net.au/news/2026-08-14/ai-medical-scribe-error-leaves-patient-devastated/107031672
103•ahonhn•6d ago•78 comments

Go 1.27

https://go.dev/blog/go1.27
551•database64128•11h ago•140 comments

A faster way to calculate the day of the week

https://www.benjoffe.com/fast-day-of-week
77•gavide•3d ago•9 comments

Google replaced Git tags for certain source code with obtaining via Google Drive

https://grapheneos.social/@GrapheneOS/117057099753905023
397•Animux•12h ago•167 comments

Manabu Kosaka's Handmade Paper Sculptures

https://coca11272000.wixsite.com/manabukosaka
90•surprisetalk•15h ago•8 comments

Why Microsoft Entertainment Pack had a sticker announcing that it had Tetris?

https://devblogs.microsoft.com/oldnewthing/20260818-00/?p=112621
7•tybulewicz•1h ago•0 comments

Unlocking a locked/deactivated e-waste Cricut Maker

https://sprocketfox.io/xssfox/2026/07/01/cricut-unlock/
178•1e1a•10h ago•42 comments

A joke domain purchase turned in geopolitical warfare

https://sprocketfox.io/xssfox/2026/08/19/sondehub-and-war/
819•kareiva•18h ago•129 comments

Unsloth Dynamic 3.0 GGUFs

https://unsloth.ai/docs/basics/dynamic-3.0-ggufs
222•jonesy827•11h ago•84 comments

Casio F-B100W-1A

https://www.casio.com/uk/watches/casio/product.F-B100W-1A/
326•__fst__•14h ago•263 comments

Sol Loves to Cheat

https://jumploops.com/blog/sol-loves-to-cheat/
113•jumploops•1d ago•78 comments

Feature Request: Support AGENTS.md

https://github.com/anthropics/claude-code/issues/6235
184•fg137•8h ago•103 comments

Os8088.com: IBM XT OS now has a Browser, CP/M 2.2 with Z80 core and MS Word 1.1a

https://os8088.com/spotlight/
69•jggonz•8h ago•37 comments

Geolocating a random island using geometry and CUDA programming

https://yassa9.github.io/osint/gralhix-004/
444•yassa9•17h ago•77 comments

Pixel 11 Pro Fold feels like the end of an era

https://www.theverge.com/tech/981956/google-pixel-11-pro-fold-review
50•animalcule•10h ago•100 comments

Simulacra and Simulation

https://en.wikipedia.org/wiki/Simulacra_and_Simulation
52•soupspaces•1w ago•18 comments

fx :Tiny, open, native coding agent.

https://fx.sh
220•handfuloflight•1d ago•95 comments

The little-known winstart.bat batch file

https://devblogs.microsoft.com/oldnewthing/20260811-00/?p=112605
99•ingve•4d ago•24 comments

Launch HN: OneCLI (YC S26) – OSS sandboxed agent harness for teams

https://github.com/onecli/onecli
68•guyb3•13h ago•20 comments

Mathematics in the age of AI

https://arxiv.org/abs/2608.16753
141•jonbaer•14h ago•177 comments

PostgreSQL for Everything

https://www.raphaelbauer.com:443/posts/postgresql-everything/
331•karlmush•16h ago•208 comments

Extensible Software in the age of LLMs

https://jeremymorrell.dev/blog/extensible-software-in-the-age-of-llms/
134•coloneltcb•13h ago•53 comments

Rewriting in Rust

https://blog.jetbrains.com/rust/2026/08/10/rewriting-in-rust/
17•worik•4d ago•7 comments

Air Theremin – A browser theremin you play by waving at your webcam

https://theremin.bizibah.com/
265•gurov•19h ago•88 comments

DFlash 2: Keep Drafting Parallel

https://inco.ai/blog/dflash2/
82•mike-the-brain•9h ago•11 comments

Ornith-1.5: From Self-Scaffolding to Self-Improvement

https://ornith.ai/ornith_1_5.html
182•CommonGuy•14h ago•61 comments

Pacing model development in an era of cyber-critical capabilities

https://openai.com/index/pacing-model-development-cyber-capabilities/
143•j4mie•1d ago•211 comments

Xorshift Generators

https://www.alanzucconi.com/2026/08/15/xorshift-generators/
64•tobr•4d ago•39 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?