frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Alberta startup sells no-tech tractors for half price

https://wheelfront.com/this-alberta-startup-sells-no-tech-tractors-for-half-price/
481•Kaibeezy•2h ago•173 comments

Coding Models Are Doing Too Much

https://nrehiew.github.io/blog/minimal_editing/
67•pella•48m ago•29 comments

Qwen3.6-27B: Flagship-Level Coding in a 27B Dense Model

https://qwen.ai/blog?id=qwen3.6-27b
360•mfiguiere•5h ago•204 comments

5x5 Pixel font for tiny screens

https://maurycyz.com/projects/mcufont/
113•zdw•3d ago•29 comments

Windows 9x Subsystem for Linux

https://social.hails.org/@hailey/116446826733136456
730•sohkamyung•8h ago•168 comments

Parallel Agents in Zed

https://zed.dev/blog/parallel-agents
42•ajeetdsouza•1h ago•11 comments

Our eighth generation TPUs: two chips for the agentic era

https://blog.google/innovation-and-ai/infrastructure-and-cloud/google-cloud/eighth-generation-tpu...
297•xnx•6h ago•147 comments

Martin Fowler: Technical, Cognitive, and Intent Debt

https://martinfowler.com/fragments/2026-04-14.html
68•theorchid•2h ago•13 comments

Workspace Agents in ChatGPT

https://openai.com/index/introducing-workspace-agents-in-chatgpt/
20•mfiguiere•52m ago•5 comments

Ultraviolet corona discharges on treetops

https://www.psu.edu/news/earth-and-mineral-sciences/story/treetops-glowing-during-storms-captured...
149•t-3•5h ago•40 comments

Surveillance Pricing: Exploiting Information Asymmetries

https://lpeproject.org/blog/surveillance-pricing-exploiting-information-asymmetries/
19•cainxinth•1h ago•5 comments

Bodega Cats of New York

https://bodegacatsofnewyork.com
72•zdw•4d ago•33 comments

3.4M Solar Panels

https://tech.marksblogg.com/american-solar-farms-v2.html
233•marklit•6h ago•161 comments

OpenAI: Workspace Agents for Business

https://openai.com/business/workspace-agents/
12•tosh•35m ago•2 comments

Who Killed the Florida Orange?

https://slate.com/business/2026/04/florida-state-orange-food-houses-real-estate.html
51•danso•1d ago•28 comments

GitHub CLI now collects pseudoanonymous telemetry

https://cli.github.com/telemetry
318•ingve•6h ago•244 comments

Columnar Storage Is Normalization

https://buttondown.com/jaffray/archive/columnar-storage-is-normalization/
78•ibobev•6h ago•29 comments

Youth Suicides Declined After Creation of National Hotline

https://www.nytimes.com/2026/04/22/science/988-youth-suicides-decline.html
104•marojejian•2h ago•53 comments

Scoring Show HN submissions for AI design patterns

https://www.adriankrebs.ch/blog/design-slop/
222•hubraumhugo•3h ago•171 comments

Making RAM at Home [video]

https://www.youtube.com/watch?v=h6GWikWlAQA
554•kaipereira•1d ago•157 comments

How does GPS work?

https://perthirtysix.com/how-the-heck-does-gps-work
183•alfanick•9h ago•37 comments

Show HN: Broccoli, one shot coding agent on the cloud

https://github.com/besimple-oss/broccoli
19•yzhong94•2h ago•13 comments

XOR'ing a register with itself is the idiom for zeroing it out. Why not sub?

https://devblogs.microsoft.com/oldnewthing/20260421-00/?p=112247
163•ingve•12h ago•173 comments

Another Day Has Come

https://daringfireball.net/2026/04/another_day_has_come
139•ndr42•21h ago•118 comments

DuckDB 1.5.2 – SQL database that runs on laptop, server, in the browser

https://duckdb.org/2026/04/13/announcing-duckdb-152
89•janandonly•3h ago•27 comments

Anker made its own chip to bring AI to all its products

https://www.theverge.com/tech/916463/anker-thus-chip-announcement
31•Brajeshwar•1h ago•10 comments

Startups Brag They Spend More Money on AI Than Human Employees

https://www.404media.co/startups-brag-they-spend-more-money-on-ai-than-human-employees/
41•SLHamlet•2h ago•32 comments

Drunk post: Things I've learned as a senior engineer (2021)

https://luminousmen.substack.com/p/drunk-post-things-ive-learned-as
290•zdw•18h ago•209 comments

MuJoCo – Advanced Physics Simulation

https://github.com/google-deepmind/mujoco
98•modinfo•3d ago•21 comments

Prefill-as-a-Service:KVCache of Next-Generation Models Could Go Cross-Datacenter

https://arxiv.org/abs/2604.15039
42•matt_d•3d ago•1 comments
Open in hackernews

Compiler Reminders

https://jfmengels.net/compiler-reminders/
38•jfmengels1•12mo ago

Comments

JonChesterfield•12mo 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•12mo 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•12mo ago
Elm <-> Rust

Best buds on this front

gitroom•12mo ago
Tbh, missing those checks in other languages bugs me so much - it's like why leave me hanging?