frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Claude Opus 4.7

https://www.anthropic.com/news/claude-opus-4-7
1366•meetpateltech•9h ago•998 comments

Codex for almost everything

https://openai.com/index/codex-for-almost-everything/
618•mikeevans•6h ago•348 comments

Guy builds AI driven hardware hacker arm from duct tape, old cam and CNC machine

https://github.com/gainsec/autoprober
55•scaredpelican•1h ago•9 comments

A Better R Programming Experience Thanks to Tree-sitter

https://ropensci.org/blog/2026/04/02/tree-sitter-overview/
55•sebg•2h ago•1 comments

Official Clojure Documentary page with Video, Shownotes, and Links

https://clojure.org/about/documentary
72•adityaathalye•4h ago•16 comments

Android CLI: Build Android apps 3x faster using any agent

https://android-developers.googleblog.com/2026/04/build-android-apps-3x-faster-using-any-agent.html
85•ingve•5h ago•24 comments

Qwen3.6-35B-A3B: Agentic coding power, now open to all

https://qwen.ai/blog?id=qwen3.6-35b-a3b
851•cmitsakis•10h ago•404 comments

Show HN: Marky – A lightweight Markdown viewer for agentic coding

https://github.com/GRVYDEV/marky
26•GRVYDEV•7h ago•5 comments

New unsealed records reveal Amazon's price-fixing tactics, California AG claims

https://www.theguardian.com/us-news/ng-interactive/2026/apr/16/amazon-price-fixing-california-law...
39•kmfrk•1h ago•7 comments

Qwen3.6-35B-A3B on my laptop drew me a better pelican than Claude Opus 4.7

https://simonwillison.net/2026/Apr/16/qwen-beats-opus/
254•simonw•6h ago•58 comments

Join Akkari's Founding Team (YC P26) as an Engineer

1•michael_moore•2h ago

Cloudflare's AI Platform: an inference layer designed for agents

https://blog.cloudflare.com/ai-platform/
223•nikitoci•10h ago•56 comments

The future of everything is lies, I guess: Where do we go from here?

https://aphyr.com/posts/420-the-future-of-everything-is-lies-i-guess-where-do-we-go-from-here
470•aphyr•10h ago•510 comments

Python Package Compiler:Package Matlab Programs for Deployment as Python Package

https://www.mathworks.com/help/compiler_sdk/ml_code/pythonpackagecompiler-app.html
6•teleforce•3d ago•0 comments

Launch HN: Kampala (YC W26) – Reverse-Engineer Apps into APIs

https://www.zatanna.ai/kampala
65•alexblackwell_•8h ago•61 comments

Artifacts: Versioned storage that speaks Git

https://blog.cloudflare.com/artifacts-git-for-agents-beta/
144•jgrahamc•10h ago•14 comments

GPT‑Rosalind for life sciences research

https://openai.com/index/introducing-gpt-rosalind/
39•babelfish•4h ago•7 comments

Circuit Transformations, Loop Fusion, and Inductive Proof

https://natetyoung.github.io/carry_save_fusion/
18•matt_d•3d ago•1 comments

Playdate’s handheld changed how Duke University teaches game design

https://news.play.date/news/duke-playdate-education/
37•Ivoah•4h ago•15 comments

IBM AP-101 general-purpose computer [pdf]

https://gandalfddi.z19.web.core.windows.net/Shuttle/IBM%20AP-101S%20General%20Purpose%20Computer%...
12•__patchbit__•3d ago•3 comments

Show HN: CodeBurn – Analyze Claude Code token usage by task

https://github.com/AgentSeal/codeburn
69•agentseal•3d ago•14 comments

The "Passive Income" trap ate a generation of entrepreneurs

https://www.joanwestenberg.com/the-passive-income-trap-ate-a-generation-of-entrepreneurs/
102•devonnull•3h ago•83 comments

Show HN: MacMind – A transformer neural network in HyperCard on a 1989 Macintosh

https://github.com/SeanFDZ/macmind
108•hammer32•10h ago•31 comments

Codex Hacked a Samsung TV

https://blog.calif.io/p/codex-hacked-a-samsung-tv
199•campuscodi•12h ago•113 comments

AI cybersecurity is not proof of work

https://antirez.com/news/163
191•surprisetalk•12h ago•78 comments

Cloudflare Email Service

https://blog.cloudflare.com/email-for-agents/
397•jilles•10h ago•187 comments

European civil servants are being forced off WhatsApp

https://www.politico.eu/article/european-civil-servants-new-messaging-services/
81•aa_is_op•4h ago•48 comments

Six Characters

https://ajitem.com/blog/iron-core-part-2-six-characters/
84•Airplanepasta•3d ago•13 comments

PHP 8.6 Closure Optimizations

https://wiki.php.net/rfc/closure-optimizations
109•moebrowne•2d ago•29 comments

George Orwell Predicted the Rise of "AI Slop" in Nineteen Eighty-Four (1949)

https://www.openculture.com/2026/04/how-george-orwell-predicted-the-rise-of-ai-slop.html
5•doener•26m ago•0 comments
Open in hackernews

Compiler Reminders

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

Comments

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

Best buds on this front

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