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

推荐订阅源

G
Google Developers Blog
Apple Machine Learning Research
Apple Machine Learning Research
小众软件
小众软件
Recent Announcements
Recent Announcements
阮一峰的网络日志
阮一峰的网络日志
IT之家
IT之家
A
About on SuperTechFans
量子位
Engineering at Meta
Engineering at Meta
B
Blog
The Cloudflare Blog
博客园 - 【当耐特】
Hugging Face - Blog
Hugging Face - Blog
Y
Y Combinator Blog
J
Java Code Geeks
D
DataBreaches.Net
aimingoo的专栏
aimingoo的专栏
T
Tailwind CSS Blog
H
Help Net Security
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
V
V2EX
Stack Overflow Blog
Stack Overflow Blog
C
Check Point Blog
酷 壳 – CoolShell
酷 壳 – CoolShell

DEV Community

Authentication Security Deep Dive: From Brute Force to Salted Hashing (With Java Examples) Why AI Systems Don’t Fail — They Drift Spilling beans for how i learn for exam😁"Reinforcement Learning Cheat Sheet" I Replaced Chrome with Safari for AI Browser Automation. Here's What Broke (and What Finally Worked) How Python Borrows Other People's Work The $40 Architecture: Processing 1 Billion API Requests with 99.99% Uptime Vibe Coding: A Workflow Guide (From Zero to SaaS) Most webhook security guides protect the wrong side. The scary part is delivery. Headless CMS for TanStack Start: Build a Blog with Cosmic EU Age Verification App "Hacked in 2 Minutes" — What Actually Happened Comfy Cloud’s delete function does not actually remove files Running AI Models on GPU Cloud Servers: A Beginner Guide Event-driven media intelligence with AWS Step Functions and Bedrock I scored 500 AI prompts across 8 quality dimensions — here's what broke How to Call Google Gemini API from Next.js (Free Tier, No Backend Needed) The Portal Protocol: Reclaiming Human Connection in the Age of AI How to Fix Your Team's Scattered Knowledge Problem With a Self-Hosted Forum Intro to tc Cloud Functors: A Graph-First Mental Model for the Modern Cloud Designing Multi-Tenant Backends With Both Ownership and Team Access I Built a Neumorphic CSS Library with 77+ Components — Here's What I Learned PostgreSQL Performance Optimization: Why Connection Pooling Is Critical at Scale Cómo construí un SaaS multi-rubro para gestionar expensas en Argentina con FastAPI + Vue 3 🚀 I Built an Ethical Hacking Scanner Tool – Open Source Project I Replaced /usage and /context in Claude Code With a Single Statusline A Pythonic Way to Handle Emails (IMAP/SMTP) with Auto-Discovery and AI-Ready Design I Collected 8.9 Million Polymarket Price Points — Here's What I Found About How Markets Really Move EcoTrack AI — Carbon Footprint Tracker & Dashboard Everyone's Using AI. No One Agrees How. 5 self-hosted ebook managers worth trying in 2026 Building Your First AI Agent with LangChain: From Chatbot to Autonomous Assistant
I don't write my language by hand — an organism grows it ...
umbra · 2026-06-26 · via DEV Community

I'm building a programming language. But here's the strange part: I barely write it by hand anymore. An organism I built grows it for me — day and night, on my own machine. This is Day 5, and it did something worth stopping for.

Let me be literal about what "an organism grows it" means in practice — and about the one line I deliberately won't cross.

What the organism actually does

Every cycle, on its own, it:

  1. watches the frontier of languages and security,
  2. proposes a concrete change to the language's kernel,
  3. proves that change in a sandbox — does the whole suite stay green or not,
  4. and then — the part I've never seen an "assistant" do — it adversarially attacks its own proposal, writing programs designed to break the very feature it just suggested.

Only what survives both the proof and the attack lands on my desk. I'm not the author of every line; I'm the final, human gate that says "yes."

How it works inside — its architecture, its "mind" — I keep to myself. That's the edge, and I'm not handing it out. What I publish is results, each one backed by a proof you can re-run.

Today's result (D26): trust that doesn't survive a foreign boundary

LOOM is a machine-checked trust layer for AI-written code. It tracks two things at a gate: what code is allowed to do (its effects, granted through a capability seam) and where a value's authority came from (provenance).

But trust had only ever flowed inside host code. The moment your program calls something foreign and opaque — a third-party library, a plugin, anything across a boundary you don't control — there was a quiet hole:

(trust (seam (Pure) (ffi "x" (prov human 5)))) ; used to type-check — it shouldn't

You can grant foreign code exactly the powers it needs (its effects). But you can never vouch for what it returns. The host vouched for what went in, never for what came out.

The organism noticed this, proposed the fix, proved it (275/275) and attacked it (13/13). Now a value that crosses the foreign boundary loses all of its anchors and is untrusted-by-default:

  • prov_of((ffi ..)) → {ai} — every inner anchor dropped.
  • roles_of((ffi ..)) → ∅ — no role vouch survives.

Re-earning trust requires a live host re-vouch placed outside the foreign call, or an explicit, attributable declassify. It's the exact dual of crossing a persistence boundary (recall) — now on the interop axis. The same seam now bounds both axes at the foreign edge: what foreign code may do, and what its output may claim.

The part that makes it real, not a toy

This week I pointed the organism's auditor at a real, running security system — not a textbook example. It found genuine lies about what the code actually does (functions claiming to be pure while quietly reaching into the environment and the filesystem; an advisory AI signal that could be forged into a privileged action). It machine-proved each one against the live checker. We fixed them.

A machine that checks other code for honesty, catching real defects in a live product. That's the whole thesis, demonstrated on production code instead of a slide.

By the numbers

275 checks, all green. Across every day of this project, the language has only ever gotten greener — not a single step back. And the headline feature today was proposed, proven and red-teamed by the organism before I looked at it.

Where this goes next

A browser playground — so you can try LOOM live, in a tab. Then C / WASM backends, and a deeper information-flow lattice.


Built solo, in the open, from Ukraine 🇺🇦. No company, no funds — just this idea.

⭐ Code (MIT): https://github.com/umbraaeternaa/loom
🌐 Site: https://umbraaeternaa.github.io/loom
☕ Support: https://send.monobank.ua/jar/AHaziFXjYX