frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

New 10 GbE USB adapters are cooler, smaller, cheaper

https://www.jeffgeerling.com/blog/2026/new-10-gbe-usb-adapters-cooler-smaller-cheaper/
143•calcifer•3h ago•44 comments

Show HN: A Karpathy-style LLM wiki your agents maintain (Markdown and Git)

https://github.com/nex-crm/wuphf
29•najmuzzaman•38m ago•8 comments

Google plans to invest up to $40B in Anthropic

https://www.bloomberg.com/news/articles/2026-04-24/google-plans-to-invest-up-to-40-billion-in-ant...
579•elffjs•17h ago•554 comments

A 3D Body from Eight Questions – No Photo, No GPU

https://clad.you/blog/posts/questionnaire-mlp/
57•arkadiuss•2d ago•9 comments

Humpback whales are forming super-groups

https://www.bbc.com/future/article/20260416-the-humpback-super-groups-swarming-the-seas
106•andsoitis•3d ago•48 comments

Paraloid B-72

https://en.wikipedia.org/wiki/Paraloid_B-72
182•Ariarule•3d ago•35 comments

PCR is a surprisingly near-optimal technology

https://nikomc.com/2026/04/22/pcr/
26•mailyk•2d ago•0 comments

A Powerful New 'QR Code' Untangles Math's Knottiest Knots

https://www.quantamagazine.org/a-powerful-new-qr-code-untangles-maths-knottiest-knots-20260422/
14•defrost•2d ago•3 comments

My audio interface has SSH enabled by default

https://hhh.hn/rodecaster-duo-fw/
243•hhh•14h ago•79 comments

Plain text has been around for decades and it’s here to stay

https://unsung.aresluna.org/plain-text-has-been-around-for-decades-and-its-here-to-stay/
98•rbanffy•8h ago•20 comments

Replace IBM Quantum back end with /dev/urandom

https://github.com/yuvadm/quantumslop/blob/25ad2e76ae58baa96f6219742459407db9dd17f5/URANDOM_DEMO.md
154•pigeons•8h ago•19 comments

Sabotaging projects by overthinking, scope creep, and structural diffing

https://kevinlynagh.com/newsletter/2026_04_overthinking/
428•alcazar•19h ago•107 comments

Iliad fragment found in Roman-era mummy

https://www.thehistoryblog.com/archives/75877
174•wise_blood•2d ago•51 comments

Turbo Vision 2.0 – a modern port

https://github.com/magiblot/tvision
115•andsoitis•5h ago•25 comments

Cosmology with Geometry Nodes

https://www.blender.org/user-stories/cosmology-with-geometry-nodes/
56•shankysingh•8h ago•1 comments

The Classic American Diner

https://blogs.loc.gov/picturethis/2026/04/the-classic-american-diner/
220•NaOH•14h ago•134 comments

There Will Be a Scientific Theory of Deep Learning

https://arxiv.org/abs/2604.21691
237•jamie-simon•15h ago•101 comments

Education must go beyond the mere production of words

https://www.ncregister.com/commentaries/schnell-repairing-the-ruins
64•signor_bosco•9h ago•18 comments

The mail sent to a video game publisher

https://www.gamefile.news/p/panic-mail-arco-despelote-time-flies-thank-goodness-teeth
24•colinprince•3d ago•0 comments

Work with the garage door up (2024)

https://notes.andymatuschak.org/Work_with_the_garage_door_up
158•jxmorris12•3d ago•114 comments

MacBook Neo and how the iPad should be

https://craigmod.com/essays/ipad_neo/
272•jen729w•2d ago•156 comments

Firefox Has Integrated Brave's Adblock Engine

https://itsfoss.com/news/firefox-ships-brave-adblock-engine/
221•nreece•7h ago•111 comments

Email could have been X.400 times better

https://buttondown.com/blog/x400-vs-smtp-email
173•maguay•2d ago•149 comments

Open source memory layer so any AI agent can do what Claude.ai and ChatGPT do

https://alash3al.github.io/stash?_v01
34•alash3al•8h ago•11 comments

Show HN: I've built a nice home server OS

https://lightwhale.asklandd.dk/
121•Zta77•11h ago•47 comments

DeepSeek v4

https://api-docs.deepseek.com/news/news260424
1907•impact_sy•1d ago•1478 comments

How to Implement an FPS Counter

https://vplesko.com/posts/how_to_implement_an_fps_counter.html
7•vplesko•3d ago•0 comments

Reverse-engineering infrared-based electronic shelf labels

https://www.furrtek.org/?a=esl
26•pabs3•3d ago•3 comments

You don't want long-lived keys

https://argemma.com/blog/long-lived-keys/
57•kkl•3d ago•37 comments

Diatec, known for its mechanical keyboard brand FILCO, has ceased operations

https://gigazine.net/gsc_news/en/20260424-filco-diatec/
120•gslin•17h ago•46 comments
Open in hackernews

Compiler Reminders

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

Comments

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

Best buds on this front

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