frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

HERMES.md: Anthropic bug causes $200 extra charge, refuses refund

https://github.com/anthropics/claude-code/issues/53262
255•homebrewer•45m ago•84 comments

Zed 1.0

https://zed.dev/blog/zed-1-0
1103•salkahfi•5h ago•352 comments

Copy Fail – CVE-2026-31431

https://copy.fail/
160•unsnap_biceps•1h ago•77 comments

FastCGI: 30 years old and still the better protocol for reverse proxies

https://www.agwa.name/blog/post/fastcgi_is_the_better_protocol_for_reverse_proxies
130•agwa•3h ago•34 comments

Cursor Camp

https://neal.fun/cursor-camp/
223•bpierre•4h ago•29 comments

We need a federation of forges

https://blog.tangled.org/federation/
431•icy•5h ago•253 comments

Ramp's Sheets AI Exfiltrates Financials

https://www.promptarmor.com/resources/ramps-sheets-ai-exfiltrates-financials
40•takira•1h ago•11 comments

Laws of UX

https://lawsofux.com/
59•bobbiechen•2h ago•8 comments

"People who don't use AI will be left behind"

https://migrainebrain.bearblog.dev/people-who-dont-use-ai-will-be-left-behind/
6•speckx•24m ago•0 comments

An open-source stethoscope that costs between $2.5 and $5 to produce

https://github.com/GliaX/Stethoscope
103•0x54MUR41•4h ago•45 comments

Third Editor Fired in Elsevier's Citation Cartel Crackdown

https://www.chrisbrunet.com/p/third-editor-fired-in-elseviers-citation
125•RigbyTaro•3h ago•35 comments

Online age verification is the hill to die on

https://x.com/GlennMeder/status/2049088498163216560
469•Cider9986•3h ago•291 comments

Soft launch of open-source code platform for government

https://www.nldigitalgovernment.nl/news/soft-launch-for-government-open-source-code-platform/
463•e12e•10h ago•111 comments

Linux 7.0 Broke PostgreSQL: The Preemption Regression Explained

https://read.thecoder.cafe/p/linux-broke-postgresql
104•0xKelsey•4h ago•46 comments

Why I still reach for Lisp and Scheme instead of Haskell

https://jointhefreeworld.org/blog/articles/lisps/why-i-still-reach-for-scheme-instead-of-haskell/...
50•jjba23•10h ago•6 comments

How to Build the Future: Demis Hassabis [video]

https://www.youtube.com/watch?v=JNyuX1zoOgU
34•sandslash•5h ago•12 comments

Maryland becomes first state to ban surveillance pricing in grocery stores

https://www.theguardian.com/technology/2026/apr/29/maryland-grocery-stores-ban-surveillance-pricing
114•01-_-•2h ago•77 comments

Show HN: A new benchmark for testing LLMs for deterministic outputs

https://interfaze.ai/blog/introducing-structured-output-benchmark
33•khurdula•3h ago•12 comments

Mistral Medium 3.5

https://mistral.ai/news/vibe-remote-agents-mistral-medium-3-5
291•meetpateltech•4h ago•163 comments

Bugs Rust won't catch

https://corrode.dev/blog/bugs-rust-wont-catch/
582•lwhsiao•17h ago•320 comments

Stardex Is Hiring a Founding Customer Success Lead

https://www.ycombinator.com/companies/stardex/jobs/6GCK1HC-founding-customer-success-lead
1•sanketc•7h ago

Letting AI play my game – building an agentic test harness to help play-testing

https://blog.jeffschomay.com/letting-ai-play-my-game
103•jschomay•6h ago•20 comments

At Protocol: Building the Social Internet

https://atproto.com/
24•resiros•3h ago•9 comments

GitHub – DOS 1.0: Transcription of Tim Paterson's DOS Printouts

https://github.com/DOS-History/Paterson-Listings
92•s2l•8h ago•5 comments

Ghostty is leaving GitHub

https://mitchellh.com/writing/ghostty-leaving-github
3259•WadeGrimridge•23h ago•962 comments

Virtualisation on Apple Silicon Macs is different

https://eclecticlight.co/2026/04/29/virtualisation-on-apple-silicon-macs-is-different/
19•zdw•2h ago•6 comments

Rise of the Forward Deployed Engineer

https://www.hfsresearch.com/research/fde-optional-ai-flywheel-spin/
23•nipponese•2h ago•26 comments

Before GitHub

https://lucumr.pocoo.org/2026/4/28/before-github/
628•mlex•22h ago•205 comments

Improving ICU handovers by learning from Scuderia Ferrari F1 team

https://healthmanagement.org/c/icu/IssueArticle/improving-handovers-by-learning-from-scuderia-fer...
48•embedding-shape•6h ago•47 comments

How ChatGPT serves ads

https://www.buchodi.com/how-chatgpt-serves-ads-heres-the-full-attribution-loop/
469•lmbbuchodi•19h ago•328 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?