frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Removable batteries in smartphones will be mandatory in the EU starting in 2027

https://www.ecopv-eu.com/en/blog-en/replaceable-smartphone-batteries-2027-eu-regulation/
362•rdeboo•2h ago•343 comments

Does Employment Slow Cognitive Decline? Evidence from Labor Market Shocks

https://www.nber.org/papers/w35117
50•littlexsparkee•1h ago•17 comments

Redis array: short story of a long development process

https://antirez.com/news/164
117•antirez•3h ago•33 comments

GitHub Is Down

https://www.githubstatus.com/incidents/72q3n8yxthcy
271•gen220•1h ago•164 comments

Talking to 35 Strangers at the Gym

https://thienantran.com/talking-to-35-strangers-at-the-gym/
655•thitran•5h ago•329 comments

Pomiferous: The most extensive apples (pommes) database

https://pomiferous.com/
29•Ariarule•2h ago•12 comments

PyInfra 3.8.0 Is Out

https://github.com/pyinfra-dev/pyinfra/releases/tag/v3.8.0
161•wowi42•4h ago•62 comments

I tracked 7,700 UK petrol stations every 10 minutes for 3 months

https://www.fuelinsight.co.uk
49•theazureguy•2h ago•27 comments

GameStop makes $55.5B takeover offer for eBay

https://www.bbc.co.uk/news/articles/cn0p8yled1do
472•n1b0m•7h ago•411 comments

I am worried about Bun

https://wwj.dev/posts/i-am-worried-about-bun/
14•remote-dev•40m ago•3 comments

How Monero's proof of work works

https://blog.alcazarsec.com/tech/posts/how-moneros-proof-of-work-works
100•alcazar•3h ago•68 comments

Newton's law of gravity passes its biggest test

https://www.science.org/content/article/newton-s-law-gravity-passes-its-biggest-test-ever
80•pseudolus•4h ago•49 comments

Sierra Raises $950M at $15B Valuation

https://sierra.ai/blog/better-customer-experiences-built-on-sierra
16•doppp•1h ago•11 comments

Alberta voter list leak is a potential public safety disaster

https://globalnews.ca/news/11828244/alberta-voter-list-leak-public-safety-disaster/
40•Teever•1h ago•26 comments

DAG Workflow Engine

https://github.com/vivekg13186/Daisy-DAG
32•blobmty•4h ago•20 comments

Using “underdrawings” for accurate text and numbers

https://samcollins.blog/underdrawings/
330•samcollins•2d ago•120 comments

OpenAI, Google, and Microsoft Back Bill to Fund 'AI Literacy' in Schools

https://www.404media.co/literacy-in-future-technologies-artificial-intelligence-act-adam-schiff-m...
23•cdrnsf•1h ago•16 comments

Why are neural networks and cryptographic ciphers so similar? (2025)

https://reiner.org/neural-net-ciphers
83•jxmorris12•2d ago•28 comments

Trademark violation: Fake Notepad++ for Mac

https://notepad-plus-plus.org/news/npp-trademark-infringement/
494•maxloh•7h ago•208 comments

Texico: Learn the principles of programming without even touching a computer

https://www3.nhk.or.jp/nhkworld/en/shows/texico/
146•o4c•2d ago•11 comments

BYOMesh – New LoRa mesh radio offers 100x the bandwidth

https://partyon.xyz/@nullagent/116499715071759135
443•nullagent•23h ago•144 comments

DeepClaude – Claude Code agent loop with DeepSeek V4 Pro

https://github.com/aattaran/deepclaude
600•alattaran•19h ago•254 comments

Homebridge 2.0 is here, and it speaks Matter

https://www.theverge.com/tech/922877/homebridge-2-0-matter-update-robot-vacuums
15•Brajeshwar•1h ago•1 comments

1966 Ford Mustang Converted into a Tesla with Working 'Full Self-Driving'

https://electrek.co/2026/05/02/tesla-1966-mustang-ev-conversion-full-self-driving/
32•Brajeshwar•2h ago•26 comments

Discovering hard disk physical geometry through microbenchmarking (2019)

https://blog.stuffedcow.net/2019/09/hard-disk-geometry-microbenchmarking/
148•TapamN•3d ago•6 comments

A treasure trove of fossils rewrites the story of early life

https://www.quantamagazine.org/a-treasure-trove-of-cambrian-fossils-rewrites-the-story-of-early-l...
87•worldvoyageur•3d ago•19 comments

World's biggest RC A380 [video]

https://www.youtube.com/watch?v=wr9YLGbhxng
92•NaOH•1d ago•51 comments

Southwest Headquarters Tour

https://katherinemichel.github.io/blog/travel/southwest-headquarters-tour-2026.html
303•KatiMichel•1d ago•91 comments

Let's Buy Spirit Air

https://letsbuyspiritair.com/
521•bjhess•17h ago•495 comments

US–Indian space mission maps extreme subsidence in Mexico City

https://phys.org/news/2026-04-usindian-space-mission-extreme-subsidence.html
208•leopoldj•3d ago•72 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?