frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Agents can now create Cloudflare accounts, buy domains, and deploy

https://blog.cloudflare.com/agents-stripe-projects/
260•rolph•5h ago•145 comments

StarFighter 16-Inch

https://us.starlabs.systems/pages/starfighter
264•signa11•6h ago•143 comments

CARA 2.0 – “I Built a Better Robot Dog”

https://www.aaedmusa.com/projects/cara2
103•hakonjdjohnsen•2d ago•7 comments

DNSSEC disruption affecting .de domains – Resolved

https://status.denic.de/pages/incident/592577eab611ce1e0d00046f/69fa60ef9d12f5057a974f38
647•warpspin•12h ago•317 comments

Telus Uses AI to Alter Call-Agent Accents

https://letsdatascience.com/news/telus-uses-ai-to-alter-call-agent-accents-a3868f63
137•debo_•6h ago•85 comments

Accelerating Gemma 4: faster inference with multi-token prediction drafters

https://blog.google/innovation-and-ai/technology/developers-tools/multi-token-prediction-gemma-4/
548•amrrs•16h ago•254 comments

245TB Micron 6600 ION Data Center SSD Now Shipping

https://investors.micron.com/news-releases/news-release-details/industry-leading-245tb-micron-660...
68•neilfrndes•4h ago•46 comments

YouTube, your RSS feeds are broken

https://openrss.org/blog/youtube-your-feeds-are-broken
101•veeti•7h ago•36 comments

Write some software, give it away for free

https://nonogra.ph/write-some-software-give-it-away-for-free-05-05-2026
251•nohell•10h ago•166 comments

Computer Use is 45x more expensive than structured APIs

https://reflex.dev/blog/computer-use-is-45x-more-expensive-than-structured-apis/
387•palashawas•15h ago•223 comments

Three Inverse Laws of AI

https://susam.net/inverse-laws-of-robotics.html
431•blenderob•16h ago•299 comments

EEVblog: The 555 Timer is 55 years old [video]

https://www.youtube.com/watch?v=6JhK8iCQuqI
281•brudgers•16h ago•69 comments

Ombudsman column: The Pentagon is trying to silence me

https://www.stripes.com/opinion/2026-04-23/stripes-former-ombudsman-pentagon-trying-to-silence-21...
198•petethomas•4h ago•37 comments

Why most product tours get skipped

https://productonboarding.com/articles/why-product-tours-get-skipped
143•pancomplex•11h ago•111 comments

Make some art with your phone sensors

https://tautme.github.io/phone-sensors/sensor-etch.html
33•adm4•2d ago•6 comments

Knitting bullshit

https://katedaviesdesigns.com/2026/04/29/knitting-bullshit/
12•ColinEberhardt•3h ago•1 comments

Reverse-engineering the 1998 Ultima Online demo server

https://draxinar.github.io/articles/2026-05-01-uodemo-reverse-engineering.html
9•notsentient•1h ago•2 comments

Mark Cuban: OpenAI Will Never Return the $1T It's Investing [video]

https://www.youtube.com/watch?v=oEVHNvE_jDw
10•operatingthetan•40m ago•2 comments

Wiki Builder: Skill to Build LLM Knowledge Bases

https://academy.dair.ai/blog/wiki-builder-claude-code-plugin
51•omarsar•2d ago•6 comments

Google Chrome silently installs a 4 GB AI model on your device without consent

https://www.thatprivacyguy.com/blog/chrome-silent-nano-install/
1420•john-doe•1d ago•930 comments

Today I've made the difficult decision to reduce the size of Coinbase by ~14%

https://twitter.com/brian_armstrong/status/2051616759145185723
354•adrianmsmith•20h ago•543 comments

Show HN: Explore color palettes inspired by 3000 master painter artworks

https://paletteinspiration.com/
160•ouli•14h ago•58 comments

Show HN: Airbyte Agents – context for agents across multiple data sources

117•mtricot•17h ago•30 comments

I'm scared about biological computing

https://kuber.studio/blog/Reflections/I%27m-Scared-About-Biological-Computing
203•kuberwastaken•16h ago•167 comments

Agents for financial services and insurance

https://www.anthropic.com/news/finance-agents
235•louiereederson•17h ago•171 comments

GLM-5V-Turbo: Toward a Native Foundation Model for Multimodal Agents

https://arxiv.org/abs/2604.26752
140•gmays•14h ago•28 comments

Multi-stroke text effect in CSS

https://yuanchuan.dev/multi-stroke-text-effect-in-css
7•cheeaun•3h ago•1 comments

How to organize 3 acquired companies into one coherent website

https://littlelanguagemodels.com/how-to-structure-your-sites-after-a-big-acquisition/
6•mooreds•2d ago•0 comments

I completed 100 Days of Java over 5 years and mapped the journey as a graph

https://mohibulsblog.netlify.app/java/100daysofjava/graph/
53•celurian92•2d ago•26 comments

California farmers to destroy 420k peach trees following Del Monte bankruptcy

https://www.sfgate.com/centralcoast/article/usda-aid-california-farmers-22240694.php
327•littlexsparkee•14h ago•381 comments
Open in hackernews

Compiler Reminders

https://jfmengels.net/compiler-reminders/
38•jfmengels1•1y ago

Comments

JonChesterfield•1y 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•1y 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•1y ago
That is a feature. Compose instead of extending.
Yoric•1y ago
OCaml has extensible sum types. They work very nicely for some ranges of problems.
swiftcoder•1y ago
Elm <-> Rust

Best buds on this front

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