frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Windows 3.1 tiled background .bmp archive

https://github.com/andreasjansson/win-3.1-backgrounds
167•justsomehnguy•3h ago•49 comments

Autoresearch on an old research idea

https://ykumar.me/blog/eclip-autoresearch/
283•ykumards•8h ago•67 comments

FCC Updates Covered List to Include Foreign-Made Consumer Routers

https://www.fcc.gov/document/fcc-updates-covered-list-include-foreign-made-consumer-routers
192•moonka•5h ago•135 comments

iPhone 17 Pro Demonstrated Running a 400B LLM

https://twitter.com/anemll/status/2035901335984611412
492•anemll•12h ago•244 comments

Ju Ci: The Art of Repairing Porcelain

https://thesublimeblog.org/2025/03/13/ju-ci-the-ancient-art-of-repairing-porcelain/
61•lawrenceyan•2d ago•7 comments

Pompeii's battle scars linked to an ancient 'machine gun'

https://phys.org/news/2026-03-pompeii-scars-linked-ancient-machine.html
29•pseudolus•3d ago•1 comments

Abusing Customizable Selects

https://css-tricks.com/abusing-customizable-selects/
36•speckx•5d ago•1 comments

Show HN: Cq – Stack Overflow for AI coding agents

https://blog.mozilla.ai/cq-stack-overflow-for-agents/
74•peteski22•10h ago•27 comments

IRIX 3dfx Voodoo driver and glide2x IRIX port

https://sdz-mods.com/index.php/2026/03/23/irix-3dfx-voodoo-driver-glide2x-irix-port/
34•zdw•4h ago•0 comments

Finding all regex matches has always been O(n²)

https://iev.ee/blog/the-quadratic-problem-nobody-fixed/
166•lalitmaganti•4d ago•44 comments

Dune3d: A parametric 3D CAD application

https://github.com/dune3d/dune3d
108•luu•1d ago•34 comments

Claude Code Cheat Sheet

https://cc.storyfox.cz
175•phasE89•5h ago•64 comments

Local Stack Archived their GitHub repo and requires an account to run

https://github.com/localstack/localstack
162•ecshafer•7h ago•93 comments

Trivy under attack again: Widespread GitHub Actions tag compromise secrets

https://socket.dev/blog/trivy-under-attack-again-github-actions-compromise
162•jicea•1d ago•60 comments

Epoch confirms GPT5.4 Pro solved a Frontier Math Open Problem for the first time

https://epoch.ai/frontiermath/open-problems/ramsey-hypergraphs
6•in-silico•58m ago•1 comments

Two pilots dead after plane and ground vehicle collide at LaGuardia

https://www.bbc.com/news/articles/cy01g522ww4o
359•mememememememo•19h ago•555 comments

An incoherent Rust

https://www.boxyuwu.blog/posts/an-incoherent-rust/
131•emschwartz•11h ago•58 comments

TI-89 Height-Mapped Raycaster

https://github.com/dzoba/ti-89-raycasting-with-z
27•zoba•4d ago•3 comments

A retro terminal music player inspired by Winamp

https://github.com/bjarneo/cliamp
57•mkagenius•6h ago•9 comments

I Created My First AI-Assisted Pull Request and I Feel Like a Fraud

https://nelson.cloud/i-created-my-first-ai-assisted-pull-request-and-i-feel-like-a-fraud/
42•nelsonfigueroa•1h ago•48 comments

BIO: The Bao I/O Coprocessor

https://www.bunniestudios.com/blog/2026/bio-the-bao-i-o-coprocessor/
130•zdw•3d ago•26 comments

How I'm Productive with Claude Code

https://neilkakkar.com/productive-with-claude-code.html
126•neilkakkar•6h ago•87 comments

I built an AI receptionist for a mechanic shop

https://www.itsthatlady.dev/blog/building-an-ai-receptionist-for-my-brother/
223•mooreds•16h ago•254 comments

An unsolicited guide to being a researcher [pdf]

https://emerge-lab.github.io/papers/an-unsolicited-guide-to-good-research.pdf
170•sebg•4d ago•21 comments

US and TotalEnergies reach 'nearly $1B' deal to end offshore wind projects

https://www.lemonde.fr/en/international/article/2026/03/23/us-and-totalenergies-reach-nearly-1-bi...
359•lode•9h ago•259 comments

Bombadil: Property-based testing for web UIs

https://github.com/antithesishq/bombadil
224•Klaster_1•4d ago•88 comments

America tells private firms to “hack back”

https://www.economist.com/united-states/2026/03/22/america-tells-private-firms-to-hack-back
120•andsoitis•13h ago•126 comments

“Collaboration” is bullshit

https://www.joanwestenberg.com/collaboration-is-bullshit/
313•mitchbob•1d ago•164 comments

Migrating to the EU

https://rz01.org/eu-migration/
836•exitnode•16h ago•640 comments

Designing AI for Disruptive Science

https://www.asimov.press/p/ai-science
64•mailyk•8h ago•38 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•10mo 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?