frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Jimi Hendrix was a systems engineer

https://spectrum.ieee.org/jimi-hendrix-systems-engineer
109•tintinnabula•1h ago•41 comments

The Om Programming Language

https://www.om-language.com/
191•tosh•4h ago•33 comments

Bus stop balancing is fast, cheap, and effective

https://worksinprogress.co/issue/the-united-states-needs-fewer-bus-stops/
240•surprisetalk•5h ago•391 comments

Making MCP cheaper via CLI

https://kanyilmaz.me/2026/02/23/cli-vs-mcp.html
25•thellimist•1h ago•19 comments

Windows 11 Notepad to support Markdown

https://blogs.windows.com/windows-insider/2026/01/21/notepad-and-paint-updates-begin-rolling-out-...
96•andreynering•4h ago•192 comments

Large-Scale Online Deanonymization with LLMs

https://simonlermen.substack.com/p/large-scale-online-deanonymization
135•DalasNoin•1d ago•129 comments

Show HN: Respectify – A comment moderator that teaches people to argue better

https://respectify.org/
25•vintagedave•7h ago•33 comments

Following 35% growth, solar has passed hydro on US grid

https://arstechnica.com/science/2026/02/final-2025-data-is-in-us-energy-use-is-up-as-solar-passes...
305•rbanffy•5h ago•219 comments

Show HN: I ported Tree-sitter to Go

https://github.com/odvcencio/gotreesitter
137•odvcencio•3h ago•57 comments

Why isn't LA repaving streets?

https://lapublicpress.org/2026/02/why-isnt-la-repaving-streets/
49•speckx•5h ago•77 comments

Dissecting the CPU-memory relationship in garbage collection (OpenJDK 26)

https://norlinder.nu/posts/GC-Cost-CPU-vs-Memory/
7•jonasn•1d ago•1 comments

Access to a Shared Unix Computer

http://tilde.club/
16•TigerUniversity•3d ago•1 comments

PA Bench: Evaluating Frontier Models on Multi-Tab Pa Tasks

https://vibrantlabs.com/blog/pa-bench
6•shahules•1h ago•1 comments

Learnings from 4 months of Image-Video VAE experiments

https://www.linum.ai/field-notes/vae-reconstruction-vs-generation
15•schopra909•1d ago•1 comments

The Misuses of the University

https://www.publicbooks.org/the-misuses-of-the-university/
97•ubasu•5h ago•66 comments

Trellis AI (YC W24) is hiring deployment lead to accelerate medication access

https://www.ycombinator.com/companies/trellis-ai/jobs/7ZlvQkN-lead-deployment-strategist
1•macklinkachorn•4h ago

How to fold the Blade Runner origami unicorn (1996)

https://web.archive.org/web/20011104015933/www.linkclub.or.jp/~null/index_br.html
225•exvi•2d ago•30 comments

Devirtualization and Static Polymorphism

https://david.alvarezrosa.com/posts/devirtualization-and-static-polymorphism/
19•dalvrosa•3h ago•4 comments

GNU Texmacs

https://www.texmacs.org/tmweb/home/welcome.en.html
89•remywang•6h ago•32 comments

Never buy a .online domain

https://www.0xsid.com/blog/online-tld-is-pain
613•ssiddharth•8h ago•365 comments

ECS Survivors Parts VII – X

https://blog.ptidej.net/ecs-survivors-parts-vii-x/
7•yann-gael•39m ago•1 comments

Launch HN: TeamOut (YC W22) – AI agent for planning company retreats

https://app.teamout.com/ai
32•vincentalbouy•7h ago•36 comments

Claude Code Remote Control

https://code.claude.com/docs/en/remote-control
438•empressplay•14h ago•249 comments

New accounts on HN more likely to use em-dashes

https://www.marginalia.nu/weird-ai-crap/hn/
509•todsacerdoti•7h ago•425 comments

US orders diplomats to fight data sovereignty initiatives

https://www.reuters.com/sustainability/boards-policy-regulation/us-orders-diplomats-fight-data-so...
366•colinhb•7h ago•303 comments

Text-Based Google Directions

https://gdir.telae.net/
38•TigerUniversity•4d ago•12 comments

Show HN: Django Control Room – All Your Tools Inside the Django Admin

https://github.com/yassi/dj-control-room
91•yassi_dev•7h ago•44 comments

Danish government agency to ditch Microsoft software (2025)

https://therecord.media/denmark-digital-agency-microsoft-digital-independence
679•robtherobber•11h ago•349 comments

Racket v9.1

https://blog.racket-lang.org/2026/02/racket-v9-1.html
121•azhenley•5h ago•13 comments

Scipy.stats. Chatterjeexi

https://docs.scipy.org/doc/scipy/reference/generated/scipy.stats.chatterjeexi.html
19•kamaraju•3d ago•2 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?