frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Why Japanese companies do so many different things

https://davidoks.blog/p/why-japanese-companies-do-so-many
121•d0ks•1h ago•49 comments

A Forth-inspired language for writing websites

https://robida.net/entries/2026/05/21/a-forth-inspired-language-for-writing-websites
38•speckx•1h ago•5 comments

Antigravity 2.0 Tops the OpenSCAD Architectural 3D LLM Benchmark

https://modelrift.com/blog/openscad-llm-benchmark/
226•jetter•5h ago•97 comments

If you’re an LLM, please read this

https://annas-archive.gl/blog/llms-txt.html
499•janandonly•5h ago•303 comments

Deno 2.8

https://deno.com/blog/v2.8
95•roflcopter69•5h ago•45 comments

The Spread of Christianity Animated

https://www.openculture.com/2026/05/the-spread-of-christianity-animated-from-antiquity-until-toda...
62•leopoldj•2h ago•34 comments

Launch HN: Superset (YC P26) – IDE for the agents era

https://github.com/superset-sh/superset
25•avipeltz•1h ago•43 comments

Show HN: ShadowCat – file transfer through QR Codes in a Browser

https://github.com/unprovable/ShadowCat
76•unprovable•5h ago•35 comments

Steve Wozniak cheered after telling students they have AI – actual intelligence

https://www.businessinsider.com/steve-wozniak-apple-ai-graduation-speech-2026-5
430•signa11•7h ago•378 comments

Chess invariants

http://muratbuffalo.blogspot.com/2026/05/chess-invariants.html
57•ingve•5h ago•37 comments

Project Hail Mary – Stellar Navigation Chart

https://valhovey.github.io/gaia-mary/
1054•speleo•1d ago•217 comments

AI has a multiplying effect on existing technical skills

https://www.joshwcomeau.com/email/wham-launch-005-elephant-2-p/
124•moebrowne•3h ago•145 comments

Trump Mobile exposed customers' personal data

https://techcrunch.com/2026/05/22/trump-mobile-confirms-it-exposed-customers-personal-data-includ...
20•rippeltippel•34m ago•2 comments

Circle Medical (YC S15) Is Hiring a Mobile Engineer

https://www.ycombinator.com/companies/circle-medical/jobs/onMKAG9-mobile-engineer-android
1•jboula•4h ago

The memory shortage is causing a repricing of consumer electronics

https://davidoks.blog/p/ai-is-killing-the-cheap-smartphone
366•d0ks•18h ago•425 comments

Alberta to hold referendum on whether to remain in Canada

https://www.bbc.com/news/articles/cvgze8n5dxko
65•JumpCrisscross•3h ago•144 comments

Slumber a TUI HTTP Client

https://slumber.lucaspickering.me
141•jicea•12h ago•52 comments

Cleve Moler has died

https://www.mathworks.com/company/aboutus/founders/clevemoler.html
221•mychele•13h ago•23 comments

A case against Boolean logic

https://abuseofnotation.github.io/boolean-thinking/
53•boris_m•5h ago•70 comments

Blog ran on Ubuntu 16.04 for 10 years. I migrated it to FreeBSD

https://crocidb.com/post/this-blog-ran-on-ubuntu-16-04-for-10-years-i-migrated-it-to-freebsd/
339•speckx•21h ago•201 comments

The current AI pricing was always going to go away

https://arnon.dk/the-current-ai-pricing-was-always-going-to-go-away/
45•arnon•5h ago•48 comments

Uv is fantastic, but its package management UX is a mess

https://www.loopwerk.io/articles/2026/uv-ux-mess/
288•nchagnet•19h ago•130 comments

Was my $48K GPU server worth it?

https://rosmine.ai/2026/05/13/was-my-48k-gpu-worth-it/
520•apwheele•3d ago•403 comments

CODA: Rewriting Transformer Blocks as GEMM-Epilogue Programs

https://arxiv.org/abs/2605.19269
95•matt_d•11h ago•12 comments

The surprising story behind the first British person in space

https://www.bbc.com/culture/article/20260518-helen-sharman-the-story-behind-the-first-british-per...
88•xoxxala•2d ago•44 comments

Indexing a year of video locally on a 2021 MacBook with Gemma4-31B (50GB swap)

https://blog.simbastack.com/indexed-a-year-of-video-locally/
437•asenna•1d ago•126 comments

Using Kagi Search with Low Vision

https://veroniiiica.com/using-kagi-search-with-low-vision/
241•speckx•21h ago•78 comments

The death of the brick and mortar toy store

https://brainbaking.com/post/2026/05/the-death-of-the-brick-and-mortar-toy-store/
124•speckx•3d ago•174 comments

Scientists solve 200-year-old puzzle of how tobacco plants make nicotine

https://www.york.ac.uk/news-and-events/news/2026/research/200-year-old-puzzle-tobacco-plants-nico...
7•sohkamyung•4h ago•1 comments

Lost Images from the 1945 Trinity Nuclear Test Restored

https://spectrum.ieee.org/trinity-nuclear-test
398•pseudolus•1d ago•117 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?