frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

DeepSeek v4

https://api-docs.deepseek.com/
715•impact_sy•4h ago•377 comments

Why I Write (1946)

https://www.orwellfoundation.com/the-orwell-foundation/orwell/essays-and-other-works/why-i-write/
142•RyanShook•5h ago•26 comments

Composition Shouldn't be this Hard

https://www.cambra.dev/blog/announcement/
5•larelli•20m ago•0 comments

An update on recent Claude Code quality reports

https://www.anthropic.com/engineering/april-23-postmortem
700•mfiguiere•13h ago•522 comments

GPT-5.5

https://openai.com/index/introducing-gpt-5-5/
1323•rd•13h ago•872 comments

Bitwarden CLI compromised in ongoing Checkmarx supply chain campaign

https://socket.dev/blog/bitwarden-cli-compromised
741•tosh•17h ago•359 comments

US special forces soldier arrested after allegedly winning $400k on Maduro raid

https://www.cnn.com/2026/04/23/politics/us-special-forces-soldier-arrested-maduro-raid-trade
187•nkrisc•9h ago•236 comments

Habitual coffee intake shapes the microbiome, modifies physiology and cognition

https://www.nature.com/articles/s41467-026-71264-8
117•scubakid•3h ago•46 comments

Meta tells staff it will cut 10% of jobs

https://www.bloomberg.com/news/articles/2026-04-23/meta-tells-staff-it-will-cut-10-of-jobs-in-pus...
574•Vaslo•12h ago•542 comments

Show HN: Tolaria – Open-source macOS app to manage Markdown knowledge bases

https://github.com/refactoringhq/tolaria
180•lucaronin•9h ago•68 comments

MeshCore development team splits over trademark dispute and AI-generated code

https://blog.meshcore.io/2026/04/23/the-split
208•wielebny•14h ago•109 comments

Familiarity is the enemy: On why Enterprise systems have failed for 60 years

https://felixbarbalet.com/familiarity-is-the-enemy/
26•adityaathalye•2h ago•9 comments

Ubuntu 26.04

https://lwn.net/Articles/1069399/
160•lxst•3h ago•78 comments

Using the internet like it's 1999

https://joshblais.com/blog/using-the-internet-like-its-1999/
146•joshuablais•11h ago•94 comments

TorchTPU: Running PyTorch Natively on TPUs at Google Scale

https://developers.googleblog.com/torchtpu-running-pytorch-natively-on-tpus-at-google-scale/
123•mji•10h ago•5 comments

Your hex editor should color-code bytes

https://simonomi.dev/blog/color-code-your-bytes/
567•tobr•2d ago•151 comments

UK Biobank health data keeps ending up on GitHub

https://biobank.rocher.lc
112•Cynddl•17h ago•27 comments

Show HN: Agent Vault – Open-source credential proxy and vault for agents

https://github.com/Infisical/agent-vault
103•dangtony98•1d ago•32 comments

My phone replaced a brass plug

https://drobinin.com/posts/my-phone-replaced-a-brass-plug/
122•valzevul•15h ago•23 comments

Why Not Venus?

https://mceglowski.substack.com/p/why-not-venus
4•zdw•2h ago•0 comments

Show HN: Honker – Postgres NOTIFY/LISTEN Semantics for SQLite

https://github.com/russellromney/honker
253•russellthehippo•19h ago•62 comments

A programmable watch you can actually wear

https://www.hackster.io/news/a-diy-watch-you-can-actually-wear-8f91c2dac682
175•sarusso•2d ago•81 comments

Incident with multple GitHub services

https://www.githubstatus.com/incidents/myrbk7jvvs6p
239•bwannasek•15h ago•117 comments

Astronomers find the edge of the Milky Way

https://skyandtelescope.org/astronomy-news/astronomers-find-the-edge-of-the-milky-way/
112•bookofjoe•13h ago•25 comments

Used La Marzocco machines are coveted by cafe owners and collectors

https://www.nytimes.com/2026/04/20/dining/la-marzocco-espresso-machine.html
65•mitchbob•3d ago•110 comments

Alberta startup sells no-tech tractors for half price

https://wheelfront.com/this-alberta-startup-sells-no-tech-tractors-for-half-price/
2178•Kaibeezy•1d ago•744 comments

Writing a C Compiler, in Zig (2025)

https://ar-ms.me/thoughts/c-compiler-1-zig/
159•tosh•22h ago•43 comments

I am building a cloud

https://crawshaw.io/blog/building-a-cloud
1050•bumbledraven•1d ago•526 comments

French government agency confirms breach as hacker offers to sell data

https://www.bleepingcomputer.com/news/security/french-govt-agency-confirms-breach-as-hacker-offer...
377•robtherobber•15h ago•132 comments

Advanced Packaging Limits Come into Focus

https://semiengineering.com/advanced-packaging-limits-come-into-focus/
39•PaulHoule•2d ago•5 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?