frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

I Won't Download Your App. The Web Version Is A-OK

https://www.0xsid.com/blog/wont-download-your-app
90•ssiddharth•27m ago•38 comments

Germany Doxes "UNKN," Head of RU Ransomware Gangs REvil, GandCrab

https://krebsonsecurity.com/2026/04/germany-doxes-unkn-head-of-ru-ransomware-gangs-revil-gandcrab/
34•Bender•1h ago•6 comments

What Being Ripped Off Taught Me

https://belief.horse/notes/what-being-ripped-off-taught-me/
141•doctorhandshake•2h ago•97 comments

Book Review: There Is No Antimemetics Division

https://www.stephendiehl.com/posts/no_antimimetics/
13•ibobev•1h ago•5 comments

Show HN: I built a tiny LLM to demystify how language models work

https://github.com/arman-bd/guppylm
704•armanified•14h ago•102 comments

The Team Behind a Pro-Iran, Lego-Themed Viral-Video Campaign

https://www.newyorker.com/culture/infinite-scroll/the-team-behind-a-pro-iran-lego-themed-viral-vi...
21•tantalor•57m ago•5 comments

France pulls last gold held in US for $15B gain

https://www.mining.com/france-pulls-last-gold-held-in-us-for-15b-gain/
393•teleforce•6h ago•225 comments

Microsoft hasn't had a coherent GUI strategy since Petzold

https://www.jsnover.com/blog/2026/03/13/microsoft-hasnt-had-a-coherent-gui-strategy-since-petzold/
657•naves•21h ago•434 comments

Gemma 4 on iPhone

https://apps.apple.com/nl/app/google-ai-edge-gallery/id6749645337
747•janandonly•20h ago•210 comments

PostHog (YC W20) Is Hiring

1•james_impliu•1h ago

An open-source 240-antenna array to bounce signals off the Moon

https://moonrf.com/
186•hillcrestenigma•11h ago•30 comments

The 1987 game “The Last Ninja” was 40 kilobytes

https://twitter.com/exQUIZitely/status/2040777977521398151
201•keepamovin•11h ago•130 comments

One ant for $220: The new frontier of wildlife trafficking

https://www.bbc.com/news/articles/cg4g44zv37qo
83•gmays•4d ago•6 comments

Show HN: Real-time AI (audio/video in, voice out) on an M3 Pro with Gemma E2B

https://github.com/fikrikarim/parlor
186•karimf•21h ago•14 comments

LÖVE: 2D Game Framework for Lua

https://github.com/love2d/love
361•cl3misch•2d ago•178 comments

Drop, formerly Massdrop, ends most collaborations and rebrands under Corsair

https://drop.com/
86•stevebmark•10h ago•29 comments

When Virality Is the Message: The New Age of AI Propaganda

https://time.com/article/2026/04/02/when-virality-is-the-message-the-new-age-of-ai-propaganda/
17•virgildotcodes•41m ago•7 comments

Signals, the push-pull based algorithm

https://willybrauner.com/journal/signal-the-push-pull-based-algorithm
97•mpweiher•2d ago•29 comments

Running Gemma 4 locally with LM Studio's new headless CLI and Claude Code

https://ai.georgeliu.com/p/running-google-gemma-4-locally-with
336•vbtechguy•21h ago•83 comments

Sheets Spreadsheets in Your Terminal

https://github.com/maaslalani/sheets
131•_____k•2d ago•31 comments

Show HN: I made a YouTube search form with advanced filters

https://playlists.at/youtube/search/
279•nevernothing•14h ago•173 comments

Show HN: Gemma Gem – AI model embedded in a browser – no API keys, no cloud

https://github.com/kessler/gemma-gem
115•ikessler•14h ago•18 comments

Case study: recovery of a corrupted 12 TB multi-device pool

https://github.com/kdave/btrfs-progs/issues/1107
100•salt4034•12h ago•44 comments

Music for Programming

https://musicforprogramming.net
266•merusame•20h ago•125 comments

Number in man page titles e.g. sleep(3)

https://lalitm.com/til-number-in-man-page-titles-e-g-sleep-3/
88•thunderbong•5h ago•37 comments

Why Switzerland has 25 Gbit internet and America doesn't

https://sschueller.github.io/posts/the-free-market-lie/
653•sschueller•20h ago•522 comments

Usenet Archives

https://usenetarchives.com
99•myth_drannon•13h ago•37 comments

Employers use your personal data to figure out the lowest salary you'll accept

https://www.marketwatch.com/story/employers-are-using-your-personal-data-to-figure-out-the-lowest...
342•thisislife2•14h ago•204 comments

Show HN: Modo – I built an open-source alternative to Kiro, Cursor, and Windsurf

https://github.com/mohshomis/modo
80•mohshomis•14h ago•17 comments

A tail-call interpreter in (nightly) Rust

https://www.mattkeeter.com/blog/2026-04-05-tailcall/
182•g0xA52A2A•23h ago•43 comments
Open in hackernews

Compiler Reminders

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

Comments

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

Best buds on this front

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