惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

L
LangChain Blog
V
V2EX
爱范儿
爱范儿
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
Martin Fowler
Martin Fowler
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
Apple Machine Learning Research
Apple Machine Learning Research
WordPress大学
WordPress大学
有赞技术团队
有赞技术团队
宝玉的分享
宝玉的分享
Last Week in AI
Last Week in AI
让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
罗磊的独立博客
小众软件
小众软件
Vercel News
Vercel News
博客园 - 司徒正美
阮一峰的网络日志
阮一峰的网络日志
V
Visual Studio Blog
J
Java Code Geeks
P
Proofpoint News Feed
MongoDB | Blog
MongoDB | Blog
B
Blog
美团技术团队
量子位

Hacker News - Newest: "AI"

AI can't read an investor deck AI as an attorney? Student uses ChatGPT, Gemini to sue UW over alleged racial discrimination Hacking MCP Servers in AI Systems – The Rug Pull: Tool Changes After Approval GitHub - MeepCastana/KubeezCut: Free Web based video editor Can AI judge journalism? A Thiel-backed startup says yes, even if it risks chilling whistleblowers Coming soon: 10 Things That Matter in AI Right Now DARPA built an AI to fact-check enemy weapons claims What explains heterogeneity in AI adoption? When AI Meets Muscle: Context-Aware Electrical Stimulation Promises a New Way to Guide Human Movements - Department of Computer Science AI Changed How We Build. It Did Not Change What Matters. Linux rules on using AI-generated code - Copilot is OK, but humans must take 'full responsibility for the… Meta spins up AI version of Mark Zuckerberg to engage with employees Code Mode: Let Your AI Write Programs, Not Just Call Tools | TanStack Blog GitHub - Delavalom/graft: Go framework for building AI agents. Type-safe tools, multi-provider (OpenAI, Anthropic, Gemini, Bedrock), zero vendor SDKs. India's TCS tops estimates, says new AI models did not dent services demand Gen Z's fading AI hype Strong feeling: we are in a folded AI reality GitHub - machinarii/total-recall-catalog: A reference catalog of latest knowledge retrieval, memory & RAG systems GitHub - mensfeld/code-on-incus: Give each AI agent its own isolated machine with root, Docker, and systemd. Active defense detects and stops threats automatically.. Quantization, LoRA, and the 8% Problem: Benchmarking Local LLMs for Production AI Iran war: We spoke to the man making Lego-style AI videos that experts say are powerful propaganda Powell, Bessent discussed Anthropic's Mythos AI cyber threat with major U.S. banks GitHub - immartian/bellamem: Persistent belief-graph memory for AI agents. Retrieves decisive context by importance — not recency, not RAG, not /compact. recursive-mode: The Repo-Native Operating System for AI Engineering After the attack on Sam Altman's home, will AI CEO's go on the offensive? The biggest advance in AI since the LLM Opus 4.6 vs GPT 5.4 One Prompt Unity World Generation Test “AI polls” are fake polls Client Challenge Can AI be a 'child of God'? Inside Anthropic's meeting with Christian leaders
The Sandbox Shift
Yossi Eliaz · 2026-06-01 · via Hacker News - Newest: "AI"

Container era · 2013Trusted human writes the code

Goal: portability & reproducibility. Code is reviewed and vouched for. Environments are long-lived pets.

Sandbox era · nowA model writes the code

Goal: isolation, instant, disposable. Code is guilty until proven safe. Environments are ephemeral cattle, by the thousand.

01

Why

  1. The author is untrusted. Model-written code can carry an injected payload, a hallucinated rm -rf /, or a typo'd dependency that resolves to malware. You can't read every run.
  2. Blast radius is bounded. The box decides what the code may touch — filesystem, network egress, secrets, and (if isolation is weak) the host kernel itself.
  3. Reproducible, at scale. Identical clean state every run, thousands in parallel, cheap to spawn and kill. Without it, an eval's reward signal is just noise.

A wall, and a workbench

Containment is only half the story. A sandbox is also the whole computer an agent works inside — one place to dev, test, build and deploy, where it takes a task end to end with no human in the seat.

edit run test build deploy observe the agent's loop — repeated autonomously, thousands of times over

Docker packaged the artifact: build, ship, run. The sandbox hands the agent the entire workflow — and the keys. Give it a box that can only run code and you get a calculator; give it one that can edit, build and ship, and you get a developer.

02

When

Four jobs people actually reach for them:

  1. devThe harness's workshopGive the coding agent — Claude Code & friends — a box to develop in: edit, install, run, break things, without touching your laptop or your main branch.
  2. test · evalProve it worksRun code you or your AI just wrote on a clean slate and grade it, before you trust a single line.
  3. deployShip AI-written codeRun model-authored code in production inside a contained runtime, where its blast radius is bounded by design.
  4. parallelTen at onceFork one environment ten ways and let agents chase ten features and bugs at the same time. Keep what passes; bin the rest.

And the same primitive, by role — pick yours:

Agents now open PRs and run shell commands. You ship code no human fully reviewed.

Why
An autonomous coding agent's diff is untrusted input the moment it executes.
Where
Code-interpreter tools · agent dev loops (a worktree per task) · CI · production tool-calls serving real users.
The call
Untrusted code, nothing private to reach → ephemeral container or microVM, egress off.

Model-generated code and SQL run against real datasets and pipelines.

Why
The generated step touches data you actually care about — and might exfiltrate or corrupt it.
Where
Feature pipelines · notebook / analysis agents · batch scoring · data-cleaning tools.
The call
Untrusted code that needs private data → inside the VPC, scoped credentials, deny-by-default egress.

Every rollout and every eval runs untrusted code — thousands at once — and the reward must be reproducible.

Why
RL and evals are untrusted execution at scale; dirty state silently poisons the signal.
Where
RL environments · verifiable evals · reasoning sandboxes that run harnesses: spawn → set up task → run the agent's code → score → destroy.
The call
Disposability is the whole game → microVMs: VM-grade isolation, ~100 ms boot, thousands per host.

The boundary decision Untrusted code with nothing to steal belongs outside — a public, ephemeral box, lowest blast radius. Untrusted code that needs your data belongs inside the VPC, isolated hard — now you're fencing something with real network reach.

03

How

An isolation ladder — weak & fast at the bottom, strong & heavy at the top. Pick the lowest rung that holds your threat model.

  1. subprocess + limitsSame kernel, same user. A timeout and a ulimit. Trusted code only.
  2. namespaces · cgroups · seccompnsjail, bubblewrap. Cheap kernel-level fencing for semi-trusted code.
  3. containerrunc / containerd. Shared kernel — one kernel CVE is an escape.
  4. gVisorA user-space kernel intercepts syscalls. Container ergonomics, smaller attack surface.
  5. microVM · FirecrackerA real VM boundary that boots in ~100 ms, thousands per host. The agent sweet spot.
  6. full VM · air-gappedMaximum isolation, maximum cost. For the genuinely hostile.

isolation strengthboot latencydensity / cost

microVMs broke the old rule that VM-grade isolation must be slow and expensive — which is what makes per-run disposability economically real.

the real lessonDocker didn't beat LXC on isolation — it won on developer experience. Sandboxes get won the same way: the best API and the fastest boot, not the thickest wall.

Decide

Four questions. Live verdict, recommended rung (it highlights the ladder), and placement. Nothing leaves your browser.

Isn't this just…?

…a VM? In isolation terms, yes. The novelty is booting it in ~100 ms and packing thousands per host — that economics is what makes per-rollout disposability possible at all.

…containers? Containers share the host kernel; one kernel CVE is an escape. Fine for code you trust, thin for unreviewed model output. That gap is why gVisor and microVMs exist.

…hype? we've run untrusted code for decades. True. What changed is authorship and volume: code is now machine-written, unreviewed, and generated faster than humans can vet. Isolation moves from edge case to default substrate.

The landscape

A vast, fast-moving market — converging on the same shape: fast, disposable, API-driven isolation.

Daytona · E2B · Blacksmith · Tensorlake · exe.dev · Modal · islo.dev · …

Pick any of them and the concepts on this page don't change. crabbox.sh exists so you don't have to choose blindly — it runs the same task across every provider, turning the sandbox into a commodity you can swap.

full disclosureislo.dev is one of these providers — and it's ours. There's only one bear in town. 🐻

the bet

It's the container revolution again — at a far larger scale. Shipping software without sandboxes in 2026 is not using Docker in 2016.