frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Valve releases Steam Controller CAD files under Creative Commons license

https://www.digitalfoundry.net/news/2026/05/valve-releases-steam-controller-cad-files-under-creat...
752•haunter•5h ago•250 comments

Appearing productive in the workplace

https://nooneshappy.com/article/appearing-productive-in-the-workplace/
426•diebillionaires•4h ago•157 comments

From Supabase to Clerk to Better Auth

https://blog.val.town/better-auth
132•stevekrouse•3h ago•75 comments

Vibe coding and agentic engineering are getting closer than I'd like

https://simonwillison.net/2026/May/6/vibe-coding-and-agentic-engineering/
215•e12e•6h ago•265 comments

Google Cloud fraud defense, the next evolution of reCAPTCHA

https://cloud.google.com/blog/products/identity-security/introducing-google-cloud-fraud-defense-t...
92•unforgivenpasta•3h ago•82 comments

Learning the Integral of a Diffusion Model

https://sander.ai/2026/05/06/flow-maps.html
32•benanne•2h ago•7 comments

The bottleneck was never the code

https://www.thetypicalset.com/blog/thoughts-on-coding-agents
430•Anon84•2d ago•290 comments

Inkscape 1.4.4

https://inkscape.org/doc/release_notes/1.4.4/Inkscape_1.4.4.html
108•s1291•1h ago•19 comments

MIT’s virtual violin offers luthiers a new design tool

https://arstechnica.com/science/2026/05/mits-virtual-violin-offers-luthiers-a-new-design-tool/
8•smushy•1h ago•1 comments

Show HN: Tilde.run – Agent sandbox with a transactional, versioned filesystem

https://tilde.run/
94•ozkatz•5h ago•80 comments

Life During Class Wartime

https://www.tbray.org/ongoing/When/202x/2026/05/03/Life-During-Class-Wartime
90•AndrewDucker•4h ago•52 comments

Show HN: I built an open-source email builder, alternative to Beefree/Unlayer

https://play.templatical.com
66•oahmadov•4h ago•18 comments

CARA 2.0 – “I Built a Better Robot Dog”

https://www.aaedmusa.com/projects/cara2
434•hakonjdjohnsen•2d ago•51 comments

Ted Turner has died

https://www.cnn.com/2026/05/06/us/ted-turner-death
166•pseudolus•6h ago•143 comments

Setting up a Sun Ray server on OpenIndiana Hipster 2025.10

https://catstret.ch/202605/srss-hipster202510/
114•jandeboevrie•10h ago•36 comments

Show HN: Hallucinopedia

http://halupedia.com/
59•bstrama•4h ago•58 comments

What makes a good smartphone camera?

https://cadence.moe/blog/2026-05-05-what-makes-a-good-smartphone-camera
56•zdw•1d ago•44 comments

Higher usage limits for Claude and a compute deal with SpaceX

https://www.anthropic.com/news/higher-limits-spacex
256•meetpateltech•4h ago•193 comments

Knitting bullshit

https://katedaviesdesigns.com/2026/04/29/knitting-bullshit/
396•ColinEberhardt•16h ago•166 comments

A Theory of Deep Learning

https://elonlit.com/scrivings/a-theory-of-deep-learning/
72•elonlit•1d ago•18 comments

Multi-stroke text effect in CSS

https://yuanchuan.dev/multi-stroke-text-effect-in-css
303•cheeaun•16h ago•39 comments

Reverse-engineering the 1998 Ultima Online demo server

https://draxinar.github.io/articles/2026-05-01-uodemo-reverse-engineering.html
214•notsentient•14h ago•54 comments

Coverage Cat (YC S22) Seeks Fractional Engineer to Build AI Growth Toolkit

https://www.coveragecat.com/careers/engineering/fractional-growth-engineer
1•botacode•9h ago

Google tools for customizing searches

https://cardcatalogforlife.substack.com/p/google-has-a-secret-reference-desk
58•maxutility•16h ago•16 comments

Going Full Time on Open Source

https://jdx.dev/posts/2026-04-17-going-full-time-on-open-source/
116•thunderbong•3h ago•16 comments

Batteries Not Included, or Required, for These Smart Home Sensors

https://coe.gatech.edu/news/2026/04/batteries-not-included-or-required-these-smart-home-sensors
178•gnabgib•3d ago•76 comments

245TB Micron 6600 ION Data Center SSD Now Shipping

https://investors.micron.com/news-releases/news-release-details/industry-leading-245tb-micron-660...
237•neilfrndes•17h ago•174 comments

Proton Meet

https://proton.me/business/blog/introducing-proton-meet
77•Einenlum•2h ago•26 comments

YouTube, your RSS feeds are broken

https://openrss.org/blog/youtube-your-feeds-are-broken
312•veeti•19h ago•104 comments

Wolfenstein 3D for Gameboy Color on custom cartridge (2016)

https://www.happydaze.se/wolf/
121•ksymph•2d ago•27 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?