frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

My friends spent thousands on engagement photos, so I built an AI alternative

https://www.engagement-photos.com
1•michaellzd0303•1m ago•1 comments

I bought the cheapest EV (a used Nissan Leaf)

https://www.jeffgeerling.com/blog/2025/i-bought-cheapest-ev-used-nissan-leaf
1•calcifer•2m ago•0 comments

Cloud based ERP for Small and medium businesses

https://obsidyun.com/
1•ahmeddabdurahim•3m ago•0 comments

Search the Web Before AI

https://pregptsearch.com
2•jiayuanzhang•8m ago•0 comments

Agents to Do the Things Claude Can't (With Marimo and Bespoken)

https://elite-ai-assisted-coding.dev/p/agents-to-do-the-things-claude-cant
1•intellectronica•9m ago•0 comments

An Open Letter to Everyone I've Butted Heads With

https://andrewkelley.me/post/open-letter-everyone-butted-heads.html
1•weinzierl•10m ago•0 comments

Show HN: IssuePay Job Offers – Hire developers through their open-source work

https://issuepay.app
1•Mario10•10m ago•0 comments

Mycareerwise.ai – See your CV's role fit score and learning path

https://mycareerwise.ai
1•Farid_agha87•10m ago•1 comments

Fiber Concurrency

https://honeyryderchuck.gitlab.io/httpx/wiki/Fiber-Concurrency
1•amalinovic•15m ago•0 comments

The state of `fq_codel` and `sch_cake` worldwide (2022)

https://blog.cerowrt.org/post/state_of_fq_codel/
1•Bogdanp•15m ago•0 comments

Microsoft's Rust Bet: From Blue Screens to Safer Code

https://thenewstack.io/microsofts-rust-bet-from-blue-screens-to-safer-code/
2•unripe_syntax•16m ago•0 comments

Carbon Language: An experimental successor to C++

https://github.com/carbon-language/carbon-lang
1•thunderbong•20m ago•0 comments

Alexandria: A Lightweight Library Genesis eBook Browser

https://github.com/Samin100/Alexandria/releases
1•freetonik•25m ago•0 comments

A wild week: Grok Code Fast 1 exploding to 66% usage share

https://blog.kilocode.ai/p/a-wild-week-grok-code-fast-i-exploding
1•nix_95•26m ago•1 comments

$TRAVEL, a coin where holders win free flights with the coin fees. Pump or rug?

https://twitter.com/qt_tahani/status/1963829870288663021
1•bingwu1995•26m ago•0 comments

Cooking the Federal Reserve's Credibility

https://paulkrugman.substack.com/p/cooking-the-federal-reserves-credibility
1•throwawayffffas•27m ago•0 comments

Subverting code integrity checks to locally backdoor Signal, 1Password and more

https://blog.trailofbits.com/2025/09/03/subverting-code-integrity-checks-to-locally-backdoor-sign...
1•elashri•28m ago•0 comments

To what extent is the war in Gaza justified?

https://mathsandsoundingoff.wordpress.com/2025/06/23/to-what-extent-is-the-war-in-gaza-justified/
2•EvgeniyZh•32m ago•0 comments

Robinhood CEO: Investing for a living could replace labor in a post-AI world

https://fortune.com/2025/08/27/robinhood-ceo-vlad-tenev-leadership-next/
1•signa11•33m ago•0 comments

Polish oil company Orlen to build small nuclear power

https://www.reuters.com/sustainability/boards-policy-regulation/polish-oil-company-orlen-build-sm...
3•danielam•34m ago•1 comments

Show HN: Democratic Writing

https://hivedtokens.com
1•levmiseri•35m ago•0 comments

Truco and clones: the beginnings of Argentinian computer gaming

https://zeitgame.net/archives/18373
1•Michelangelo11•42m ago•0 comments

First brain-wide map of decision-making charted in mice

https://www.eurekalert.org/news-releases/1096579
2•signa11•43m ago•0 comments

Beijing Is Failing to Solve Its Involution Problem

https://www.thewirechina.com/2025/08/31/beijing-is-failing-to-solve-its-involution-problem/
1•theconomist•45m ago•0 comments

Kimi K2-0905 Update

https://twitter.com/Kimi_Moonshot/status/1963802687230947698
2•tosh•48m ago•0 comments

Nepal blocks Facebook, X, YouTube and others for failing to register

https://apnews.com/article/nepal-ban-social-media-platform-3b42bbbd07bc9b97acb4df09d42029d5
2•perihelions•51m ago•0 comments

Using LSD to Treat Anxiety

https://www.newscientist.com/article/2495132-a-single-dose-of-lsd-seems-to-reduce-anxiety/
1•didntknowyou•55m ago•1 comments

Radicle 1.4.0

https://radicle.xyz/2025/09/04/radicle-1.4.0
3•Skinney•56m ago•0 comments

Using antibiodies in breast milk to treat inflammatory bowel disease

https://finance.yahoo.com/news/lactiga-wins-nih-backing-first-120300217.html
1•didntknowyou•58m ago•1 comments

Awesome Code Docs: 60+ Deep-Dive Tutorials on AI, Databases, and Dev Tools

https://github.com/johnxie/awesome-code-docs
1•johnxie•59m ago•0 comments
Open in hackernews

Type Checking Is a Symptom, Not a Solution

https://programmingsimplicity.substack.com/p/type-checking-is-a-symptom-not-a
2•mpweiher•2h ago

Comments

stephenlf•1h ago
Horrendous take. Humans can reason about (some) hardware chips because they are space-constrained. The analogous solution in software would be to limit the size of your programs to a human-readable size—18k loc or so.

The author seems to like black boxes. Unix corelib is a collection of black boxes[1]. So are docker containers[2]. Do you know what else are black boxes? TYPES. Specifically interfaces. Types let you compartmentalize your software into as many black boxes as you want, then compose them.

———

[1] Try building any non trivial service by composing Unix corelib tools, docker containers, or REST APIs. You’re in for a world of hurt.

[2] Docker containers aren’t even really isolated. The JupyterHub DockerSpawner image spins up and tears down other docker containers at will. The whole thing is a mess of state. There’s no composition—just the container equivalent of `goto`