frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Meta’s AI smart glasses and data privacy concerns

https://www.svd.se/a/K8nrV4/metas-ai-smart-glasses-and-data-privacy-concerns-workers-say-we-see-e...
879•sandbach•7h ago•506 comments

British Columbia is permanently adopting daylight time

https://www.cbc.ca/news/canada/british-columbia/b-c-adopting-year-round-daylight-time-9.7111657
650•ireflect•9h ago•326 comments

Ars Technica fires reporter after AI controversy involving fabricated quotes

https://futurism.com/artificial-intelligence/ars-technica-fires-reporter-ai-quotes
137•danso•4h ago•68 comments

Simple screw counter

https://mitxela.com/projects/screwcounter
55•jk_tech•2d ago•11 comments

Show HN: I built a sub-500ms latency voice agent from scratch

https://www.ntik.me/posts/voice-agent
294•nicktikhonov•8h ago•90 comments

Intent-Based Commits

https://github.com/adamveld12/ghost
17•adamveld12•1h ago•10 comments

Guilty Displeasures

https://www.hopefulmons.com/p/what-are-your-guilty-displeasures
44•aregue•1d ago•52 comments

Seed of Might Color Correction Process (2023) [pdf]

https://andrewvanner.github.io/som/SoM_CC_Process_Day.pdf
82•haunter•7h ago•20 comments

Moldova broke our data pipeline

https://www.avraam.dev/blog/moldova-broke-our-pipeline
19•almonerthis•2d ago•6 comments

First in-utero stem cell therapy for fetal spina bifida repair is safe: study

https://health.ucdavis.edu/news/headlines/first-ever-in-utero-stem-cell-therapy-for-fetal-spina-b...
282•gmays•15h ago•51 comments

New iPad Air, powered by M4

https://www.apple.com/newsroom/2026/03/apple-introduces-the-new-ipad-air-powered-by-m4/
358•Garbage•15h ago•571 comments

Physicists developing a quantum computer that’s entirely open source

https://physics.aps.org/articles/v19/24
72•tzury•6h ago•18 comments

I've been running GrapheneOS on my Pixel Fold for over half a year

https://blog.matthewbrunelle.com/8-4-months-of-daily-driving-grapheneos/
9•zdw•51m ago•0 comments

The Excommunicated Devs Making Games with AI

https://www.tyleo.com/blog/the-excommunicated-devs-making-games-with-ai
19•tyleo•3h ago•4 comments

Launch HN: OctaPulse (YC W26) – Robotics and computer vision for fish farming

88•rohxnsxngh•13h ago•31 comments

Show HN: Govbase – Follow a bill from source text to news bias to social posts

https://govbase.com
181•foxfoxx•13h ago•73 comments

Motorola announces a partnership with GrapheneOS

https://motorolanews.com/motorola-three-new-b2b-solutions-at-mwc-2026/
2126•km•23h ago•768 comments

Against Query Based Compilers

https://matklad.github.io/2026/02/25/against-query-based-compilers.html
50•surprisetalk•1d ago•25 comments

iPhone 17e

https://www.apple.com/newsroom/2026/03/apple-introduces-iphone-17e/
241•meetpateltech•16h ago•332 comments

RCade: Building a Community Arcade Cabinet

https://www.frankchiarulli.com/blog/building-the-rcade/
67•evakhoury•4d ago•14 comments

The 185-Microsecond Type Hint

https://blog.sturdystatistics.com/posts/type_hint/
58•kianN•8h ago•7 comments

Inside the M4 Apple Neural Engine, Part 1: Reverse Engineering

https://maderix.substack.com/p/inside-the-m4-apple-neural-engine
307•zdw•1d ago•82 comments

The Cathode Ray Tube site

https://www.crtsite.com/didactic-crt.html
24•joebig•1d ago•2 comments

Programmable Cryptography (2024)

https://0xparc.org/writings/programmable-cryptography-1
61•fi-le•2d ago•35 comments

Ask HN: Who is hiring? (March 2026)

190•whoishiring•14h ago•234 comments

Guido van Rossum Interviews Thomas Wouters (Python Core Dev)

https://gvanrossum.github.io/interviews/Thomas.html
3•azhenley•1d ago•0 comments

Show HN: Visual Lambda Calculus – a thesis project (2008) revived for the web

https://github.com/bntre/visual-lambda
38•bntr•3d ago•5 comments

Welcome (back) to Macintosh

https://take.surf/2026/03/01/welcome-back-to-macintosh
290•Udo_Schmitz•9h ago•208 comments

Reflex (YC W23) Is Hiring Software Engineers – Python

https://www.ycombinator.com/companies/reflex/jobs
1•apetuskey•13h ago

Ask HN: Who wants to be hired? (March 2026)

85•whoishiring•14h ago•208 comments
Open in hackernews

Compiler Reminders

https://jfmengels.net/compiler-reminders/
38•jfmengels1•10mo 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?