frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

SQLite is all you need for durable workflows

https://obeli.sk/blog/sqlite-is-all-you-need-for-durable-workflows/
93•tomasol•1h ago•48 comments

Notes from the Mistral AI Now Summit in Paris

https://koenvangilst.nl/lab/mistral-ai-now-summit
195•vnglst•3h ago•51 comments

The dead economy theory

https://www.owenmcgrann.com/p/the-dead-economy-theory
297•WillDaSilva•3h ago•395 comments

Bijou64: A variable-length integer encoding

https://www.inkandswitch.com/tangents/bijou64/
165•justinweiss•4h ago•61 comments

Rothko for your current weather conditions

https://rothko.joonas.wtf/
35•jxmorris12•56m ago•3 comments

On Rendering Diffs

https://pierre.computer/writing/on-rendering-diffs
11•amadeus•23m ago•1 comments

It's hard to justify buying a Framework 12

https://www.jeffgeerling.com/blog/2026/its-hard-to-justify-framework-12/
108•watermelon0•4h ago•206 comments

GTA 6 Developers Unionize

https://rockstarintel.com/gta-6-developers-announce-rockstar-games-union/
384•AndrewKemendo•3h ago•234 comments

CAPTCHAs can still detect AI agents

https://research.roundtable.ai/captchas-detect-ai/
47•timshell•3h ago•30 comments

Liquid AI reveals 8B-A1B MoE trained on 38T

https://www.liquid.ai/blog/lfm2-5-8b-a1b
34•simjnd•3h ago•1 comments

Show HN: TV Explorer. Adding advanced UI to free online TV

https://tvexplorer.live
34•dtagames•2h ago•6 comments

High Density Living, 2000 Years Ago: Inside the Roman Apartment Building

https://commonedge.org/high-density-living-2000-years-ago-inside-the-roman-apartment-building/
119•surprisetalk•6h ago•39 comments

We should be more tired than the model

https://vickiboykis.com/2026/05/28/we-should-be-more-tired-than-the-model/
114•tosh•7h ago•95 comments

I am retiring from tech to live offline

https://openpath.quest/2026/i-am-retiring-from-tech-to-live-offline/
588•PinkG•4h ago•410 comments

A letter from the Duke of Wellington to the British Foreign Office (1809)

https://wellsoc.org/society-member-pages/anecdotes-of-wellington/
11•backuprestore•1h ago•0 comments

Someone used my open source project to phish people

https://andrej.sh/posts/phishing-through-my-open-source-project
63•andrejsshell•6h ago•36 comments

Expertise in the age of AI

https://www.moderndescartes.com/essays/ai_and_expertise/
72•brilee•5h ago•76 comments

Real-time LLM Inference on Standard GPUs: 3k tokens/s per request

https://blog.kog.ai/real-time-llm-inference-on-standard-gpus-3-000-tokens-s-per-request/
179•NicoConstant•9h ago•79 comments

ATLAS: Autoformalized Textbook Library At Scale

https://github.com/facebookresearch/atlas-lean
20•vrm•1d ago•3 comments

Cedana (YC S23) Is Hiring

https://www.ycombinator.com/companies/cedana/jobs/d1vYocG-forward-deployed-engineer-ai-hpc
1•neelm•7h ago

Durable execution, the hard way

https://github.com/hatchet-dev/durable-execution-the-hard-way
39•abelanger•1d ago•1 comments

AI will be used to estimate age of asylum seekers from next year

https://www.bbc.co.uk/news/articles/ce3pe36qe7ro
16•vylorn•1h ago•3 comments

The Secret Garden of Rock-Paper-Scissors

https://theshamblog.com/the-secret-garden-of-rock-paper-scissors/
30•scottshambaugh•5h ago•7 comments

The Science of Weather and the Nature of Science

https://www.the-hinternet.com/p/the-science-of-weather-and-the-nature
11•benbreen•23h ago•0 comments

Tulip mania: when a single flower was worth more than a house (2025)

https://dutchreview.com/culture/tulip-mania-netherlands/
132•dotcoma•7h ago•115 comments

Orchestrating AI code review at scale

https://blog.cloudflare.com/ai-code-review/
117•pramodbiligiri•3d ago•46 comments

Poll: How often do you check "newest"?

58•ColinWright•6h ago•80 comments

Let's compile Quake like it's 1997

https://fabiensanglard.net/compile_like_1997/
182•goranmoomin•16h ago•60 comments

Claude Opus 4.8

https://www.anthropic.com/news/claude-opus-4-8
1708•craigmart•1d ago•1334 comments

Bricks and Minifigs Stole a Man's $200k Lego Collection

https://mybricklog.com/blog/bricks-minifigs-corporate-stole-old-mans-200000-lego-collection
1266•philips•1d ago•572 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?