frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

1•Danikov•9s ago

Wikipedia Goes For-Profit

https://old.reddit.com/r/ChatGPT/comments/1t2hjoq/wikipedia_goes_forprofit/
1•us321•52s ago•0 comments

A Theory of Generalization in Deep Learning

https://arxiv.org/abs/2605.01172
1•E-Reverance•1m ago•0 comments

Math long resisted a digital disruption. AI is poised to change that

https://www.sciencenews.org/article/math-disrupted-by-ai-verify-proofs
1•digital55•2m ago•0 comments

The performance bug hiding in our Cloud Run billing settings

https://oblique.security/blog/the-performance-bug-hiding-in-our-billing-settings/
2•ericchiang•5m ago•1 comments

A list of known issues with passkey implementations in popular password managers

https://passkeys.dev/docs/reference/known-issues/
2•Cider9986•5m ago•0 comments

Google, Microsoft, and xAI will allow the government to review their new models

https://www.theverge.com/ai-artificial-intelligence/924017/google-microsoft-xai-government-review
1•ambigious7777•6m ago•0 comments

Right Types, Wrong Code: Surprising Bugs a Python Type Checker Catches

https://pyrefly.org/blog/surprising-errors/
2•ocamoss•6m ago•0 comments

Yann LeCun's $1B Bet Against LLMs [video]

https://www.youtube.com/watch?v=kYkIdXwW2AE
3•tanishqkanc•7m ago•0 comments

UNIMATRIx – A Society of AI Agents

https://github.com/gslf/UNIMATRIx
2•gslf•7m ago•0 comments

US Government Expands Vetting of Frontier AI Models for Security Risks

https://www.politico.com/news/2026/05/05/microsoft-xai-google-caisi-safety-testing-00906529
2•r3trohack3r•8m ago•0 comments

Trump Pressures FDA Commissioner to Approve Flavored Vapes

https://www.wsj.com/politics/policy/trump-pressures-fda-commissioner-to-approve-flavored-vapes-9d...
3•impish9208•9m ago•1 comments

Donald Trump Is Elected President (2016)

https://www.bbc.com/news/election-us-2016-37920175
2•downbad_•9m ago•1 comments

DuckDB ↔ Arrow Compatibility: A Status Page

https://rusty.today/blog/duckdb-arrow-compatibility-status/
2•rustyconover•9m ago•0 comments

Show HN: I'm paying senior engineers to read B2B content

https://www.nexertise.com/founding
3•yisrael_g•10m ago•0 comments

Damnlines / NYC Restaurant Lines

https://damnlines.com/
2•lucastgordon•10m ago•0 comments

Why interaction is more powerful than algorithms (1997) [pdf]

https://www.lri.fr/~mbl/ENS/FONDIHM/2013/papers/Wegner-CACM97.pdf
2•aragonite•11m ago•0 comments

PayPal to Cut 20% of the Workforce

https://rollingout.com/2026/05/05/paypal-pypl-workforce-cuts-turnaround/
2•upupupandaway•13m ago•0 comments

PySimpleGUI 6

https://github.com/PySimpleGUI/PySimpleGUI
2•geophph•13m ago•0 comments

Show HN: AI-DLC-UML (AI-Driven Development Life Cycle with UML Modeling)

https://github.com/takaakit/ai-dlc-uml
2•takaakit•14m ago•0 comments

AI Generated Content Broke the Social Contract

https://jfdi.bot/blog/ai-generated-content-broke-the-social-contract/
1•Swizec•16m ago•0 comments

Build secure OS agents with LangGraph

https://gantrygraph.com/quickstart
1•alekkk777•17m ago•0 comments

You only see typos after you post

https://diels-daydreams.bearblog.dev/you-only-see-typos-after-you-post/
1•speckx•17m ago•0 comments

J for C Programmers

https://www.jsoftware.com/help/jforc/_.htm
1•tosh•18m ago•0 comments

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

https://www.sfgate.com/centralcoast/article/usda-aid-california-farmers-22240694.php
17•littlexsparkee•18m ago•0 comments

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

https://paletteinspiration.com/
2•ouli•19m ago•0 comments

Coinbase cuts headcount by 14% citing AI acceleration

https://www.cnbc.com/2026/05/05/coinbase-cuts-headcount-by-14percent-citing-ai-acceleration-the-s...
3•1vuio0pswjnm7•21m ago•0 comments

Google Web Bot Auth

https://developers.google.com/crawling/docs/crawlers-fetchers/web-bot-auth
1•poisonborz•21m ago•0 comments

U.S. and Iran Both Claim Control over Strait of Hormuz

https://www.nytimes.com/live/2026/05/05/world/iran-war-trump-hormuz
2•tcp_handshaker•21m ago•0 comments

When Too Many Maps Overlap on One Person

https://yusufaytas.com/when-too-many-maps-overlap-on-one-person
10•brainrotted•21m ago•0 comments
Open in hackernews

Treat your coding agents like developers

https://finbarr.site/2026/05/05/treat-your-coding-agents-like-developers.html
4•Finbarr•1h ago

Comments

Finbarr•1h ago
Author here. Three months ago I posted a Show HN for yolobox [1] - a sandbox for running AI coding agents without them being able to nuke your home directory.

Since then I've been using it almost every day, which eventually meant wanting more than one agent running against the same project at the same time. This post is what I learned trying to make that work without it being a constant disaster.

The short version: git worktrees are the right Git abstraction and the wrong abstraction for this problem. The unit you want to fork is the developer, not the branch - full folder copy, its own Compose project, its own URL. yolobox now ships a fork subcommand that does this.

Happy to answer questions.

[1] https://news.ycombinator.com/item?id=46592344

akurilin•1h ago
This is great stuff, walking the reader through your thought process was helpful for me as a developer to grok why yolobox was designed this way. I ended up landing in the "just make a local copy, don't get fancy" world myself after many iterations of workflows. Separate agents, separate containers, separate ports, that all resonates.

You mention this approach gobbling up a bunch of extra disk space as a consequence of the tradeoffs. Have you considered using APFS cloning on macOS to reduce some of that burden, or is that too tiny of an optimization to be worth it at this point?

Finbarr•1h ago
Hard drives are cheap and I haven't approached the limit yet. So I left this as a future optimization.