frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

POSSE – Publish on your Own Site, Syndicate Elsewhere

https://indieweb.org/POSSE
112•tosh•1h ago•26 comments

Walmart: ChatGPT checkout converted 3x worse than website

https://searchengineland.com/walmart-chatgpt-checkout-converted-worse-472071
59•speckx•3d ago•34 comments

PC Gamer recommends RSS readers in a 37mb article that just keeps downloading

https://stuartbreckenridge.net/2026-03-19-pc-gamer-recommends-rss-readers-in-a-37mb-article/
620•JumpCrisscross•15h ago•288 comments

Tin Can, a 'landline' for kids

https://www.businessinsider.com/tin-can-landline-kids-cellphone-cell-alternative-how-2025-9
135•tejohnso•2d ago•101 comments

Can you get root with only a cigarette lighter? (2024)

https://www.da.vidbuchanan.co.uk/blog/dram-emfi.html
77•HeliumHydride•2d ago•13 comments

The gold standard of optimization: A look under the hood of RollerCoaster Tycoon

https://larstofus.com/2026/03/22/the-gold-standard-of-optimization-a-look-under-the-hood-of-rolle...
387•mariuz•15h ago•114 comments

The future of version control

https://bramcohen.com/p/manyana
532•c17r•18h ago•294 comments

Reports of code's death are greatly exaggerated

https://stevekrouse.com/precision
411•stevekrouse•22h ago•301 comments

The way CTRL-C in Postgres CLI cancels queries is incredibly hack-y

https://neon.com/blog/ctrl-c-in-psql-gives-me-the-heebie-jeebies
65•andrenotgiant•2d ago•9 comments

AI Proteomics Competition 2026 – $13K Prize, Internships and Compute Support

https://www.bohrium.com/competitions/9813928053?tab=introduce
16•choubao•3h ago•3 comments

Show HN: The King Wen Permutation: [52, 10, 2]

https://gzw1987-bit.github.io/iching-math/
13•gezhengwen•1h ago•7 comments

Why I love NixOS

https://www.birkey.co/2026-03-22-why-i-love-nixos.html
324•birkey•16h ago•229 comments

Project Nomad – Knowledge That Never Goes Offline

https://www.projectnomad.us
455•jensgk•21h ago•152 comments

Show HN: Agent Kernel – Three Markdown files that make any AI agent stateful

https://github.com/oguzbilgic/agent-kernel
13•obilgic•3h ago•3 comments

Flash-MoE: Running a 397B Parameter Model on a Laptop

https://github.com/danveloper/flash-moe
353•mft_•22h ago•114 comments

Plane and ground vehicle collide at New York's LaGuardia airport halting flights

https://www.bbc.com/news/articles/cy01g522ww4o
44•mememememememo•2h ago•31 comments

GoGoGrandparent (YC S16) is hiring Back end Engineers

https://www.ycombinator.com/companies/gogograndparent/jobs/2vbzAw8-backend-engineer
1•davidchl•6h ago

MAUI Is Coming to Linux

https://avaloniaui.net/blog/maui-avalonia-preview-1
215•DeathArrow•18h ago•116 comments

A Copy-Paste Bug That Broke PSpice AES-256 Encryption

https://jtsylve.blog/post/2026/03/18/PSpice-Encryption-Weakness
51•jtsylve•3d ago•11 comments

You are not your job

https://jry.io/writing/you-are-not-your-job/
180•jryio•18h ago•196 comments

They’re vibe-coding spam now

https://tedium.co/2026/02/25/vibe-coded-email-spam/
94•raybb•11h ago•54 comments

GrapheneOS will remain usable by anyone without requiring personal information

https://grapheneos.social/@GrapheneOS/116261301913660830
418•nothrowaways•12h ago•116 comments

What young workers are doing to AI-proof themselves

https://www.wsj.com/economy/jobs/ai-jobs-young-people-careers-14282284
136•wallflower•15h ago•225 comments

Ordered dithering with arbitrary or irregular colour palettes (2023)

https://matejlou.blog/2023/12/06/ordered-dithering-for-arbitrary-or-irregular-palettes/
42•surprisetalk•5d ago•3 comments

Five years of running a systems reading group at Microsoft

https://armaansood.com/posts/systems-reading-group/
164•Foe•17h ago•50 comments

Migrating the American express payment network, twice

https://americanexpress.io/migrating-the-payments-network-twice/
76•madflojo•9h ago•26 comments

Building an FPGA 3dfx Voodoo with Modern RTL Tools

https://noquiche.fyi/voodoo
196•fayalalebrun•20h ago•42 comments

A Bilingual Localization for Pillars of Eternity (EN and ZH)

https://blog.cerrorism.com/blog/2026-03-19
4•cerrorism•3d ago•1 comments

LLMs predict my coffee

https://dynomight.net/coffee/
118•surprisetalk•4d ago•49 comments

More common mistakes to avoid when creating system architecture diagrams

https://www.ilograph.com/blog/posts/more-common-diagram-mistakes/
190•billyp-rva•22h ago•57 comments
Open in hackernews

Compiler Reminders

https://jfmengels.net/compiler-reminders/
38•jfmengels1•11mo ago

Comments

JonChesterfield•10mo 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•10mo 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•10mo ago
That is a feature. Compose instead of extending.
Yoric•10mo ago
OCaml has extensible sum types. They work very nicely for some ranges of problems.
swiftcoder•10mo ago
Elm <-> Rust

Best buds on this front

gitroom•10mo ago
Tbh, missing those checks in other languages bugs me so much - it's like why leave me hanging?