frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

On The <dl> (2021)

https://benmyers.dev/blog/on-the-dl/
271•ravenical•6h ago•82 comments

My two-part desk setup

https://arslan.io/2025/11/18/my-two-part-desk-setup/
82•James72689•2d ago•37 comments

Reverse engineering circuitry in a Spacelab computer from 1980

https://www.righto.com/2026/05/reverse-engineering-spacelab-computer.html
46•elpocko•2h ago•3 comments

Texas woman arrested for Facebook post about town water quality

https://reclaimthenet.org/texas-woman-arrested-for-facebook-post-about-town-water-quality
133•abawany•1h ago•42 comments

Hengefinder: Finding When the Sun Aligns with Your Street

https://victoriaritvo.com/blog/hengefinder/
35•evakhoury•22h ago•11 comments

z386: An Open-Source 80386 Built Around Original Microcode

https://nand2mario.github.io/posts/2026/z386/
76•wicket•4h ago•16 comments

Green card seekers must leave U.S. to apply, Trump administration says

https://www.nytimes.com/2026/05/22/us/politics/green-card-changes-trump.html
95•tlhunter•21h ago•380 comments

80386 Microcode Disassembled

https://www.reenigne.org/blog/80386-microcode-disassembled/
170•nand2mario•6h ago•29 comments

Iowa lawmakers to mandate students take Center for Intellectual Freedom classes

https://www.kcrg.com/2026/05/20/iowa-lawmakers-move-mandate-students-take-center-intellectual-fre...
10•hn_acker•1h ago•6 comments

PHP's Oddities

https://flowtwo.io/post/php%27s-oddities
52•thejoeflow•3d ago•55 comments

Italy Cancels Boeing Pegasus Order, Shifting to Airbus A330 MRTT

https://www.euronews.com/my-europe/2026/05/21/italy-moves-to-airbus-a330-tankers-in-major-nato-al...
124•embedding-shape•3h ago•35 comments

Making Deep Learning Go Brrrr from First Principles (2022)

https://horace.io/brrr_intro.html
118•tosh•7h ago•43 comments

The Art of Money Getting

https://kk.org/cooltools/book-freak-210-the-art-of-money-getting/
109•dxs•6h ago•74 comments

SpaceX launches Starship v3 rocket

https://www.space.com/space-exploration/launches-spacecraft/spacex-starship-v3-megarocket-first-t...
255•busymom0•19h ago•174 comments

Evaluating Spec CPU2026

https://chipsandcheese.com/p/evaluating-spec-cpu2026
12•zdw•2h ago•1 comments

- -dangerously-skip-reading-code

https://olano.dev/blog/dangerously-skip/
43•fagnerbrack•9h ago•51 comments

Oura says it gets government demands for user data

https://this.weekinsecurity.com/oura-says-it-gets-government-demands-for-user-data-will-it-share-...
207•donohoe•4h ago•123 comments

Project Glasswing: An Initial Update

https://www.anthropic.com/research/glasswing-initial-update
502•louiereederson•23h ago•298 comments

Lisp in Vim (2019)

https://susam.net/lisp-in-vim.html
34•whent•4h ago•5 comments

Highest Random Weight in Elixir

https://jola.dev/posts/highest-random-weight-in-elixir
45•shintoist•2d ago•1 comments

Kindle loyalists scramble as Amazon turns page on old e-readers

https://www.reuters.com/business/retail-consumer/kindle-loyalists-scramble-amazon-turns-page-old-...
52•cf100clunk•4d ago•67 comments

sp.h: Fixing C by giving it a high quality, ultra portable standard library

https://spader.zone/sp/
132•dboon•3d ago•131 comments

Shipping a laptop to a refugee camp in Uganda

https://notesbylex.com/shipping-a-laptop-to-a-refugee-camp-in-uganda
633•lexandstuff•21h ago•220 comments

Rubish: A Unix shell written in pure Ruby

https://github.com/amatsuda/rubish
146•winebarrel•12h ago•87 comments

Why Japanese companies do so many different things

https://davidoks.blog/p/why-japanese-companies-do-so-many
813•d0ks•1d ago•379 comments

AI Engineering from Scratch

https://aiengineeringfromscratch.com
53•rippeltippel•2d ago•11 comments

The FBI Wants 'Near Real-Time' Access to US License Plate Readers

https://www.wired.com/story/security-news-this-week-fbi-license-plate-reader-real-time-access/
141•Brajeshwar•5h ago•69 comments

We made our filesystem 47× faster by deleting it

https://microsandbox.dev/blog/oci-filesystem-47x-faster
4•appcypher•4d ago•2 comments

Electrobun 2.0 will be decoupled from Bun due to the Rust rewrite

https://twitter.com/i/status/2058064720553222567
78•bundie•7h ago•76 comments

Improving C# Memory Safety

https://devblogs.microsoft.com/dotnet/improving-csharp-memory-safety/
118•soheilpro•2d ago•22 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?