frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

I Forked Httpx

https://tildeweb.nl/~michiel/httpxyz.html
57•roywashere•1h ago•27 comments

TurboQuant: Redefining AI efficiency with extreme compression

https://research.google/blog/turboquant-redefining-ai-efficiency-with-extreme-compression/
143•ray__•4h ago•27 comments

VitruvianOS – Desktop Linux Inspired by the BeOS

https://v-os.dev
131•felixding•6h ago•65 comments

Goodbye to Sora

https://twitter.com/soraofficialapp/status/2036532795984715896
700•mikeocool•13h ago•504 comments

Flighty Airports

https://flighty.com/airports
311•skogstokig•8h ago•102 comments

Show HN: I took back Video.js after 16 years and we rewrote it to be 88% smaller

https://videojs.org/blog/videojs-v10-beta-hello-world-again
396•Heff•15h ago•73 comments

Tell HN: Litellm 1.82.7 and 1.82.8 on PyPI are compromised

https://github.com/BerriAI/litellm/issues/24512
668•dot_treo•21h ago•420 comments

Apple Business

https://www.apple.com/newsroom/2026/03/introducing-apple-business-a-new-all-in-one-platform-for-b...
623•soheilpro•17h ago•355 comments

I wanted to build vertical SaaS for pest control, so I took a technician job

https://www.onhand.pro/p/i-wanted-to-build-vertical-saas-for-pest-control-i-took-a-technician-job...
293•tezclarke•12h ago•122 comments

You can run a DNS server (2025)

https://simonsafar.com/2025/running_dns/
73•surprisetalk•4d ago•37 comments

Arm AGI CPU

https://newsroom.arm.com/blog/introducing-arm-agi-cpu
342•RealityVoid•15h ago•257 comments

Fun with CSF firmware (RK3588 GPU firmware)

https://icecream95.gitlab.io/fun-with-csf-firmware.html
26•M95D•3d ago•0 comments

Show HN: DuckDB community extension for prefiltered HNSW using ACORN-1

https://github.com/cigrainger/duckdb-hnsw-acorn
45•cigrainger•6h ago•3 comments

Algorithm Visualizer

https://algorithm-visualizer.org/
91•vinhnx•4d ago•5 comments

Show HN: Email.md – Markdown to responsive, email-safe HTML

https://www.emailmd.dev/
288•dancablam•17h ago•68 comments

VNDB founder Yorhel has died

https://vndb.org/t24787
23•indrora•2d ago•7 comments

Wine 11 rewrites how Linux runs Windows games at kernel with massive speed gains

https://www.xda-developers.com/wine-11-rewrites-linux-runs-windows-games-speed-gains/
922•felineflock•14h ago•329 comments

A Compiler Writing Journey

https://github.com/DoctorWkt/acwj
78•ibobev•9h ago•7 comments

The Last Testaments of Richard II and Henry IV

https://www.historytoday.com/archive/feature/last-testaments-richard-ii-and-henry-iv
4•Petiver•3d ago•0 comments

Intel Device Modeling Language for virtual platforms

https://github.com/intel/device-modeling-language
28•transpute•4d ago•0 comments

An Aural Companion for Decades, CBS News Radio Crackles to a Close

https://www.nytimes.com/2026/03/21/business/media/cbs-news-radio-appraisal.html
55•tintinnabula•3d ago•13 comments

Show HN: Gemini can now natively embed video, so I built sub-second video search

https://github.com/ssrajadh/sentrysearch
325•sohamrj•18h ago•89 comments

Hypothesis, Antithesis, synthesis

https://antithesis.com/blog/2026/hegel/
250•alpaylan•18h ago•85 comments

Hypura – A storage-tier-aware LLM inference scheduler for Apple Silicon

https://github.com/t8/hypura
204•tatef•17h ago•76 comments

Missile defense is NP-complete

https://smu160.github.io/posts/missile-defense-is-np-complete/
336•O3marchnative•20h ago•337 comments

What happened to GEM?

https://dfarq.homeip.net/whatever-happened-to-gem/
76•naves•4d ago•40 comments

Implementing automatic eSIM installation on Android

https://medium.com/proandroiddev/integration-of-automatic-esim-installation-on-android-6c5f6d7124cb
25•nesterenkopavel•3h ago•5 comments

How the world’s first electric grid was built

https://worksinprogress.co/issue/how-the-worlds-first-electric-grid-was-built/
88•zdw•4d ago•27 comments

Nanobrew: The fastest macOS package manager compatible with brew

https://nanobrew.trilok.ai/
210•syrusakbary•21h ago•126 comments

The final switch: Goldsboro, 1961

https://blog.nuclearsecrecy.com/2013/09/27/final-switch-goldsboro-1961/
13•1970-01-01•3d ago•2 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?