frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

I'm helping my dog vibe code games

https://www.calebleak.com/posts/dog-game/
637•cleak•9h ago•188 comments

Show HN: Moonshine Open-Weights STT models – higher accuracy than WhisperLargev3

https://github.com/moonshine-ai/moonshine
132•petewarden•4h ago•22 comments

Mac mini will be made at a new facility in Houston

https://www.apple.com/newsroom/2026/02/apple-accelerates-us-manufacturing-with-mac-mini-production/
354•haunter•5h ago•357 comments

Mercury 2: The fastest reasoning LLM, powered by diffusion

https://www.inceptionlabs.ai/blog/introducing-mercury-2
69•fittingopposite•3h ago•30 comments

Hacking an old Kindle to display bus arrival times

https://www.mariannefeng.com/portfolio/kindle/
177•mengchengfeng•6h ago•40 comments

Pi – a minimal terminal coding harness

https://pi.dev
164•kristianpaul•4h ago•66 comments

Nearby Glasses

https://github.com/yjeanrenaud/yj_nearbyglasses
245•zingerlio•8h ago•90 comments

Amazon Busted for Widespread Scheme to Inflate Prices Across the Economy

https://www.thebignewsletter.com/p/amazon-busted-for-widespread-price
66•toomuchtodo•1h ago•3 comments

Corgi Labs (YC W23) Is Hiring

https://www.ycombinator.com/companies/corgi-labs/jobs/ZiEIf7a-founders-associate
1•leastsquares•1h ago

I pitched a roller coaster to Disneyland at age 10 in 1978

https://wordglyph.xyz/one-piece-at-a-time
398•wordglyph•13h ago•152 comments

Justifying Text-Wrap: Pretty

https://matklad.github.io/2026/02/14/justifying-text-wrap-pretty.html
19•surprisetalk•5d ago•0 comments

Show HN: Emdash – Open-source agentic development environment

https://github.com/generalaction/emdash
116•onecommit•8h ago•47 comments

Hugging Face Skills

https://github.com/huggingface/skills
138•armcat•8h ago•41 comments

Aesthetics of single threading

https://ta.fo/aesthetics-of-single-threading/
22•todsacerdoti•3d ago•1 comments

Optophone

https://en.wikipedia.org/wiki/Optophone
36•Hooke•4d ago•8 comments

Anthropic Drops Flagship Safety Pledge

https://time.com/7380854/exclusive-anthropic-drops-flagship-safety-pledge/
38•cwwc•1h ago•5 comments

How we rebuilt Next.js with AI in one week

https://blog.cloudflare.com/vinext/
378•ghostwriternr•6h ago•131 comments

We Are Changing Our Developer Productivity Experiment Design

https://metr.org/blog/2026-02-24-uplift-update/
44•ej88•6h ago•27 comments

IRS Tactics Against Meta Open a New Front in the Corporate Tax Fight

https://www.nytimes.com/2026/02/24/business/irs-meta-corporate-taxes.html
187•mitchbob•13h ago•198 comments

We installed a single turnstile to feel secure

https://idiallo.com/blog/installed-single-turnstile-for-security-theater
271•firefoxd•2d ago•124 comments

Build Your Own Forth Interpreter

https://codingchallenges.fyi/challenges/challenge-forth/
52•AlexeyBrin•3d ago•16 comments

OpenAI, the US government and Persona built an identity surveillance machine

https://vmfunc.re/blog/persona/
453•rzk•7h ago•145 comments

Steel Bank Common Lisp

https://www.sbcl.org/
157•tosh•7h ago•51 comments

IDF killed Gaza aid workers at point blank range in 2025 massacre: Report

https://www.dropsitenews.com/p/israeli-soldiers-tel-sultan-gaza-red-crescent-civil-defense-massac...
1312•Qem•14h ago•522 comments

The history of knocking on wood

https://resobscura.substack.com/p/neolithic-habits-machine-age-tools
14•benbreen•11h ago•1 comments

Ask HN: Programmable Watches with WiFi?

20•dakiol•3d ago•9 comments

Stripe reportedly makes offer to acquire PayPal

https://www.cnbc.com/2026/02/24/paypal-stock-stripe-acquisition-report.html
71•nodesocket•4h ago•42 comments

US Military leaders meet with Anthropic to argue against Claude safeguards

https://www.theguardian.com/us-news/2026/feb/24/anthropic-claude-military-ai
32•KnuthIsGod•1h ago•4 comments

The Missing Semester of Your CS Education – Revised for 2026

https://missing.csail.mit.edu/
406•anishathalye•1d ago•118 comments

λProlog: Logic programming in higher-order logic

https://www.lix.polytechnique.fr/Labo/Dale.Miller/lProlog/
149•ux266478•4d ago•36 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?