frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

OpenAI – How to delete your account

https://help.openai.com/en/articles/6378407-how-to-delete-your-account
1252•carlosrg•4h ago•229 comments

Don't trust AI agents

https://nanoclaw.dev/blog/nanoclaw-security-model
97•gronky_•2h ago•52 comments

Timeline: Anthropic, OpenAI, and U.S. Government

https://anthropic-timeline.vercel.app
27•vldszn•1h ago•5 comments

Please do not use auto-scrolling content on the web and in applications

https://cerovac.com/a11y/2026/01/please-do-not-use-auto-scrolling-content-on-the-web-and-in-appli...
13•speckx•1h ago•0 comments

Show HN: Decided to play god this morning, so I built an agent civilisation

https://github.com/nocodemf/werld
14•urav•1h ago•6 comments

Addressing Antigravity Bans and Reinstating Access

https://github.com/google-gemini/gemini-cli/discussions/20632
13•RyanShook•1h ago•4 comments

Show HN: Now I Get It – Translate scientific papers into interactive webpages

https://nowigetit.us
11•jbdamask•1h ago•8 comments

We Will Not Be Divided

https://notdivided.org
2080•BloondAndDoom•14h ago•647 comments

Customer Update on Simplenote

https://forums.simplenote.com/forums/topic/customer-update-on-simplenote/?view=all
10•0in•1h ago•5 comments

Unsloth Dynamic 2.0 GGUFs

https://unsloth.ai/docs/basics/unsloth-dynamic-2.0-ggufs
107•tosh•6h ago•37 comments

Show HN: SplatHash – A lightweight alternative to BlurHash and ThumbHash

https://github.com/junevm/splathash
25•unsorted2270•3h ago•11 comments

Everything Changes, and Nothing Changes

https://btao.org/posts/2026-02-28-everything-changes-nothing-changes/
5•todsacerdoti•1h ago•0 comments

The Eternal Promise: A History of Attempts to Eliminate Programmers

https://www.ivanturkovic.com/2026/01/22/history-software-simplification-cobol-ai-hype/
112•dinvlad•3d ago•69 comments

The Life Cycle of Money

https://doap.metal.bohyen.space/blog/post/complete-life-cycle-of-money/
7•nanacnote•1h ago•0 comments

What AI coding costs you

https://tomwojcik.com/posts/2026-02-15/finding-the-right-amount-of-ai/
8•tomwojcik•2h ago•4 comments

Woxi: Wolfram Mathematica Reimplementation in Rust

https://github.com/ad-si/Woxi
10•adamnemecek•2d ago•1 comments

More Cows, More Wives

https://www.worksinprogress.news/p/more-cows-more-wives
27•oxw•2d ago•4 comments

OpenAI Fires an Employee for Prediction Market Insider Trading

https://www.wired.com/story/openai-fires-employee-insider-trading-polymarket-kalshi/
22•bookofjoe•1h ago•6 comments

OpenAI agrees with Dept. of War to deploy models in their classified network

https://twitter.com/sama/status/2027578652477821175
1041•eoskx•12h ago•490 comments

A new California law says all operating systems need to have age verification

https://www.pcgamer.com/software/operating-systems/a-new-california-law-says-all-operating-system...
676•WalterSobchak•1d ago•586 comments

US and Israel launch strikes on Iran, as Trump says ‘massive’ campaign underway

https://www.cnn.com/2026/02/28/middleeast/israel-attack-iran-intl-hnk
468•lavp•8h ago•1171 comments

OpenAI raises $110B on $730B pre-money valuation

https://techcrunch.com/2026/02/27/openai-raises-110b-in-one-of-the-largest-private-funding-rounds...
530•zlatkov•1d ago•561 comments

Show HN: Gitcredits – movie-style end credits for any Git repo in your terminal

https://github.com/Higangssh/gitcredits
6•swq115•2h ago•0 comments

Smallest transformer that can add two 10-digit numbers

https://github.com/anadim/AdderBoard
195•ks2048•1d ago•83 comments

Show HN: Reclaim Flowers – A 2D physics-based "Digital Altar" protocol

https://github.com/voice-of-japan/Virtual-Protest-Protocol/blob/main/README.md
3•sakanakana00•2h ago•1 comments

Cash issuing terminals

https://computer.rip/2026-02-27-ibm-atm.html
80•zdw•9h ago•12 comments

Latency numbers every programmer should know

https://cheat.sh/latency
7•ksec•2h ago•1 comments

Croatia declared free of landmines after 31 years

https://glashrvatske.hrt.hr/en/domestic/croatia-declared-free-of-landmines-after-31-years-12593533
390•toomuchtodo•12h ago•90 comments

No Bookmarks

https://nik.art/no-bookmarks/
4•herbertl•2h ago•1 comments

Bootc and OSTree: Modernizing Linux System Deployment

https://a-cup-of.coffee/blog/ostree-bootc/
67•mrtedbear•12h ago•21 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?