

- Measles estimated case-fatality rate: 1.3%
- Estimated US population: 346,715,067
- Measles deaths if everyone in the US got measles: 4,507,295
- Upper limit on estimated MMR vaccine caused anaphylaxis: 0.000066%
- Anaphylaxis case-fatality rate: 0.3%
- Estimated vaccine-caused fatality rate: 1.98 * 10^-7 %
- Estimate vaccine-caused fatalities avoided by not vaccinating US population: 0.69
- Net increase in fatalities from switching to measles natural immunity for everyone in the US: 4,507,294
So it would only be better if he wants an extra 4.5 million Americans to die.
As an experiment / as a bit of a gag, I tried using Claude 3.7 Sonnet with Cline to write some simple cryptography code in Rust - use ECDHE to establish an ephemeral symmetric key, and then use AES256-GCM (with a counter in the nonce) to encrypt packets from client->server and server->client, using off-the-shelf RustCrypto libraries.
It got the interface right, but it got some details really wrong:
wrapping_add
to increment the 32 sequence number! For those who don’t know much Rust and/or much cryptography: the golden rule of using ciphers like GCM is that you must never ever re-use the same nonce for the same key (otherwise you leak the XOR of the two messages).wrapping_add
explicitly means when you get up to the maximum number (and remember, it’s only 32 bits, so there’s only about 4.3 billion numbers) it silently wraps back to 0. The secure implementation would be to explicitly fail if you go past the maximum size for the integer before attempting to encrypt / decrypt - and the smart choice would be to use at least 64 bits.To be fair, I didn’t really expect it to work well. Some kind of security auditor agent that does a pass over all the output might be able to find some of the issues, and pass it back to another agent to correct - which could make vibe coding more secure (to be proven).
But right now, I’d not put “vibe coded” output into production without someone going over it manually with a fine-toothed comb looking for security and stability issues.