frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Google to invest up to $40B in Anthropic in cash and compute

https://techcrunch.com/2026/04/24/google-to-invest-up-to-40b-in-anthropic-in-cash-and-compute/
140•elpakal•1h ago•77 comments

Sabotaging projects by overthinking, scope creep, and structural diffing

https://kevinlynagh.com/newsletter/2026_04_overthinking/
302•alcazar•6h ago•72 comments

My audio interface has SSH enabled by default

https://hhh.hn/rodecaster-duo-fw/
42•hhh•1h ago•8 comments

The Classic American Diner

https://blogs.loc.gov/picturethis/2026/04/the-classic-american-diner/
70•NaOH•2h ago•29 comments

I Cancelled Claude: Token Issues, Declining Quality, and Poor Support

https://nickyreinert.de/en/2026/2026-04-24-claude-critics/
636•y42•5h ago•380 comments

Could a Claude Code routine watch my finances?

https://driggsby.com/blog/claude-code-routine-watch-my-finances
22•mbm•1h ago•24 comments

Diatec, known for its mechanical keyboard brand FILCO, has ceased operations

https://gigazine.net/gsc_news/en/20260424-filco-diatec/
62•gslin•4h ago•19 comments

SFO Quiet Airport (2025)

https://viewfromthewing.com/san-francisco-airport-removed-90-minutes-of-daily-noise-travelers-say...
90•CaliforniaKarl•2h ago•49 comments

OpenAI releases GPT-5.5 and GPT-5.5 Pro in the API

https://developers.openai.com/api/docs/changelog
150•arabicalories•2h ago•86 comments

How to be anti-social – a guide to incoherent and isolating social experiences

https://nate.leaflet.pub/3mk4xkaxobc2p
251•calcifer•10h ago•256 comments

SDL Now Supports DOS

https://github.com/libsdl-org/SDL/pull/15377
185•Jayschwa•4h ago•64 comments

CC-Canary: Detect early signs of regressions in Claude Code

https://github.com/delta-hq/cc-canary
22•tejpalv•3h ago•7 comments

CSS as a Query Language

https://evdc.me/blog/css-query
36•evnc•3h ago•14 comments

There Will Be a Scientific Theory of Deep Learning

https://arxiv.org/abs/2604.21691
32•jamie-simon•3h ago•2 comments

Spinel: Ruby AOT Native Compiler

https://github.com/matz/spinel
281•dluan•12h ago•78 comments

I'm done making desktop applications (2009)

https://www.kalzumeus.com/2009/09/05/desktop-aps-versus-web-apps/
120•claxo•5h ago•135 comments

Different Language Models Learn Similar Number Representations

https://arxiv.org/abs/2604.20817
79•Anon84•6h ago•34 comments

Iliad fragment found in Roman-era mummy

https://www.thehistoryblog.com/archives/75877
4•wise_blood•2d ago•0 comments

Physicists revive 1990s laser concept to propose a next-generation atomic clock

https://phys.org/news/2026-04-physicists-revive-1990s-laser-concept.html
44•wglb•20h ago•5 comments

Show HN: Browser Harness – Gives LLM freedom to complete any browser task

https://github.com/browser-use/browser-harness
52•gregpr07•6h ago•24 comments

DeepSeek v4

https://api-docs.deepseek.com/
1738•impact_sy•18h ago•1347 comments

Redesigning the Recurse Center application to inspire curious programmers

https://www.recurse.com/blog/192-redesigning-the-recurse-center-application
44•nicholasjbs•4h ago•9 comments

TIPSv2: Advancing Vision-Language Pretraining with Enhanced Patch-Text Alignment

https://gdm-tipsv2.github.io/
6•gmays•1h ago•0 comments

Hear your agent suffer through your code

https://github.com/AndrewVos/endless-toil
167•AndrewVos•10h ago•79 comments

The operating cost of adult and gambling startups

https://orchidfiles.com/stigma-is-a-tax-on-every-operational-decision/
99•theorchid•8h ago•152 comments

Mounting tar archives as a filesystem in WebAssembly

https://jeroen.github.io/notes/webassembly-tar/
103•datajeroen•10h ago•33 comments

Machine Learning Reveals Unknown Transient Phenomena in Historic Images

https://arxiv.org/abs/2604.18799
49•solarist•7h ago•36 comments

GPT-5.5

https://openai.com/index/introducing-gpt-5-5/
1515•rd•1d ago•1013 comments

Why I Write (1946)

https://www.orwellfoundation.com/the-orwell-foundation/orwell/essays-and-other-works/why-i-write/
260•RyanShook•18h ago•70 comments

Tariffs Raised Consumers' Prices, but the Refunds Go Only to Businesses

https://www.nytimes.com/2026/04/24/us/politics/companies-consumers-tariff-refunds.html
86•duxup•3h ago•25 comments
Open in hackernews

Compiler Reminders

https://jfmengels.net/compiler-reminders/
38•jfmengels1•12mo ago

Comments

JonChesterfield•12mo 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•12mo 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•12mo ago
That is a feature. Compose instead of extending.
Yoric•12mo ago
OCaml has extensible sum types. They work very nicely for some ranges of problems.
swiftcoder•12mo ago
Elm <-> Rust

Best buds on this front

gitroom•12mo ago
Tbh, missing those checks in other languages bugs me so much - it's like why leave me hanging?