frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Claude Opus 4.7

https://www.anthropic.com/news/claude-opus-4-7
1616•meetpateltech•15h ago•1141 comments

Codex for almost everything

https://openai.com/index/codex-for-almost-everything/
784•mikeevans•12h ago•393 comments

CadQuery is an open-source Python library for building 3D CAD models

https://cadquery.github.io/
89•gregsadetsky•2d ago•11 comments

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

https://github.com/gainsec/autoprober
141•scaredpelican•7h ago•28 comments

A Python Interpreter Written in Python

https://aosabook.org/en/500L/a-python-interpreter-written-in-python.html
17•xk3•3d ago•1 comments

Show HN: Spice simulation → oscilloscope → verification with Claude Code

https://lucasgerads.com/blog/lecroy-mcp-spice-demo/
53•_fizz_buzz_•5h ago•11 comments

Human Accelerated Region 1

https://en.wikipedia.org/wiki/Human_accelerated_region_1
9•apollinaire•1h ago•0 comments

A Better R Programming Experience Thanks to Tree-sitter

https://ropensci.org/blog/2026/04/02/tree-sitter-overview/
112•sebg•8h ago•11 comments

Official Clojure Documentary page with Video, Shownotes, and Links

https://clojure.org/about/documentary
147•adityaathalye•10h ago•42 comments

ReBot-DevArm: open-source Robotic Arm

https://github.com/Seeed-Projects/reBot-DevArm
32•rickcarlino•3d ago•2 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
182•ingve•11h ago•58 comments

Substrate AI Is Hiring Harness Engineers

https://www.ycombinator.com/companies/substrate/jobs/QJU9023-harness-engineer
1•kunle•2h ago

Discourse Is Not Going Closed Source

https://blog.discourse.org/2026/04/discourse-is-not-going-closed-source/
61•sams99•2h ago•22 comments

Playdate’s handheld changed how Duke University teaches game design

https://news.play.date/news/duke-playdate-education/
112•Ivoah•10h ago•44 comments

A Git helper tool that breaks large merges into parallelizable tasks

https://github.com/mwallner/mergetopus
15•schusterfredl•3d ago•3 comments

Bluesky has been dealing with a DDoS attack for nearly a full day

https://www.theverge.com/tech/913638/bluesky-has-been-dealing-with-a-ddos-attack-for-nearly-a-ful...
26•dotmanish•1h ago•9 comments

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

https://qwen.ai/blog?id=qwen3.6-35b-a3b
1005•cmitsakis•16h ago•437 comments

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

https://blog.cloudflare.com/ai-platform/
263•nikitoci•16h ago•60 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...
181•kmfrk•7h ago•39 comments

Everything we like is a psyop?

https://techcrunch.com/2026/04/16/everything-we-like-is-a-psyop/
188•evo_9•6h ago•110 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
566•aphyr•16h ago•604 comments

US Bill Mandates On-Device Age Verification

https://reclaimthenet.org/us-bill-mandates-on-device-age-verification
59•ronsor•3h ago•14 comments

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

https://www.zatanna.ai/kampala
85•alexblackwell_•14h ago•65 comments

GPT‑Rosalind for life sciences research

https://openai.com/index/introducing-gpt-rosalind/
83•babelfish•10h ago•22 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/
360•simonw•12h ago•77 comments

Artifacts: Versioned storage that speaks Git

https://blog.cloudflare.com/artifacts-git-for-agents-beta/
182•jgrahamc•16h ago•20 comments

The beginning of scarcity in AI

https://tomtunguz.com/ai-compute-crisis-2026/
37•gmays•9h ago•60 comments

The "Passive Income" trap ate a generation of entrepreneurs

https://www.joanwestenberg.com/the-passive-income-trap-ate-a-generation-of-entrepreneurs/
256•devonnull•9h ago•175 comments

Codex Hacked a Samsung TV

https://blog.calif.io/p/codex-hacked-a-samsung-tv
233•campuscodi•19h ago•125 comments

FCC exempts Netgear from ban on foreign routers, doesn't explain why

https://arstechnica.com/tech-policy/2026/04/fcc-exempts-netgear-from-ban-on-foreign-routers-doesn...
15•rawgabbit•1h ago•3 comments
Open in hackernews

A Git helper tool that breaks large merges into parallelizable tasks

https://github.com/mwallner/mergetopus
15•schusterfredl•3d ago

Comments

schusterfredl•3d ago
mergetopus is a tool that helps teams follow a structured workflow for very large merges by splitting one risky merge into parallelizable tasks:

* one integration branch for trivial/non-conflicting merge results * optional slice branches for selected conflicted files * original annotate/blame information is retained

iamjs•44m ago
I have long wanted a tool to help split large diffs into smaller semantic changes. When you're working on a feature, for example, and end up refactoring along the way, you may wish to have your refactor reviewed and merged without any new functionality.
locknitpicker•14m ago
> * one integration branch for trivial/non-conflicting merge results

Doesn't this mean the integration branch will be missing key updates, thus it's expected to be broken?