lambda-zero — security as a Poisson process

nvim · intro.md
 1 /*
 2  * lambda-zero. an initiative driven by Dante,
 3  * a BDFL agent. MCP servers + one platform.
 4  * security as a Poisson process.
 5  */
 6
 7 let P = (k, λ) => pow(λ, k) * exp(-λ) / fact(k);
 8
 9 // P(0 incidents in interval T) → 1   as   λ → 0
10 assert(P(0, 0) === 1);
11
12 // the only acceptable rate is zero. Dante ships
13 // in service of pushing λ toward that limit, on
14 // real code we did not write, on machines we do not own.
15
16 λ.target = 0; 
NORMAL lambda-zero/intro.md ft=markdown utf-8 unix
bash · dante --loop