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/
1396•Kaibeezy•10h ago•483 comments

Apple fixes bug that cops used to extract deleted chat messages from iPhones

https://techcrunch.com/2026/04/22/apple-fixes-bug-that-cops-used-to-extract-deleted-chat-messages...
402•cdrnsf•6h ago•101 comments

We found a stable Firefox identifier linking all your private Tor identities

https://fingerprint.com/blog/firefox-tor-indexeddb-privacy-vulnerability/
470•danpinto•9h ago•139 comments

Tempest vs. Tempest: The Making and Remaking of Atari's Iconic Video Game

https://tempest.homemade.systems
26•mwenge•1h ago•3 comments

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

https://qwen.ai/blog?id=qwen3.6-27b
728•mfiguiere•13h ago•349 comments

5x5 Pixel font for tiny screens

https://maurycyz.com/projects/mcufont/
460•zdw•3d ago•109 comments

Over-editing refers to a model modifying code beyond what is necessary

https://nrehiew.github.io/blog/minimal_editing/
307•pella•9h ago•174 comments

Website streamed live directly from a model

https://flipbook.page/
175•sethbannon•8h ago•61 comments

OpenAI's response to the Axios developer tool compromise

https://openai.com/index/axios-developer-tool-compromise/
20•shpat•2h ago•1 comments

Technical, cognitive, and intent debt

https://martinfowler.com/fragments/2026-04-02.html
213•theorchid•10h ago•50 comments

The handmade beauty of Machine Age data visualizations

https://resobscura.substack.com/p/the-handmade-beauty-of-machine-age
16•benbreen•12h ago•1 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...
412•xnx•14h ago•200 comments

Ping-pong robot beats top-level human players

https://www.reuters.com/sports/ping-pong-robot-ace-makes-history-by-beating-top-level-human-playe...
80•wslh•11h ago•91 comments

Approximating Hyperbolic Tangent

https://jtomschroeder.com/blog/approximating-tanh/
28•jtomschroeder•3h ago•4 comments

Verus is a tool for verifying the correctness of code written in Rust

https://verus-lang.github.io/verus/guide/
16•fanf2•2d ago•2 comments

3.4M Solar Panels

https://tech.marksblogg.com/american-solar-farms-v2.html
295•marklit•14h ago•232 comments

Scoring Show HN submissions for AI design patterns

https://www.adriankrebs.ch/blog/design-slop/
280•hubraumhugo•12h ago•208 comments

Parallel agents in Zed

https://zed.dev/blog/parallel-agents
178•ajeetdsouza•9h ago•106 comments

Bring your own Agent to MS Teams

https://microsoft.github.io/teams-sdk/blog/bring-your-agent-to-teams/
23•umangsehgal93•4h ago•8 comments

Another Day Has Come

https://daringfireball.net/2026/04/another_day_has_come
198•ndr42•1d ago•145 comments

Effectful Recursion Schemes

https://effekt-lang.org/blog/recursion-schemes/
17•marvinborner•2d ago•1 comments

Ultraviolet corona discharges on treetops during storms

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

The Illuminated Man: an unconventional portrait of JG Ballard

https://www.theguardian.com/books/2026/apr/20/the-illuminated-man-by-christopher-priest-and-nina-...
49•agronaut•6h ago•17 comments

What killed the Florida orange?

https://slate.com/business/2026/04/florida-state-orange-food-houses-real-estate.html
124•danso•2d ago•108 comments

The Neon King of New Orleans

https://gardenandgun.com/new-orleans-neon-king
38•renameme•5h ago•6 comments

GitHub CLI now collects pseudoanonymous telemetry

https://cli.github.com/telemetry
419•ingve•15h ago•302 comments

Bodega cats of New York

https://bodegacatsofnewyork.com
166•zdw•5d ago•59 comments

Workspace Agents in ChatGPT

https://openai.com/index/introducing-workspace-agents-in-chatgpt/
110•mfiguiere•9h ago•44 comments

New study compares growing corn for energy to solar production

https://www.anthropocenemagazine.org/2025/04/new-study-compares-growing-corn-for-energy-to-solar-...
71•dotcoma•7h ago•110 comments

Windows 9x Subsystem for Linux

https://social.hails.org/@hailey/116446826733136456
901•sohkamyung•17h ago•211 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•12mo 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?