
Shoopy
336 posts

Shoopy
@0xShoopy
research over speculation. AI • Crypto • Automation



Andrej Karpathy just exposed why most AI engineers don’t understand their own models: “Backprop is a leaky abstraction” PyTorch can calculate every gradient for you and still leave you blind when training breaks Autograd gives you derivatives. It doesn’t give you intuition In 40 min, Karpathy deletes .backward() and rebuilds the entire learning process by hand: cross-entropy + linear layers + tanh + BatchNorm + embeddings Worth more than any $500 deep learning course you’ve seen this year









A 4-agent pipeline ran loose for 11 days and burned $47K before anyone caught it. the fix is a pattern web teams have had since 2012, and almost no AI team uses it. Sachin Gupta (staff engineer, 15+ years on internet-scale backends), on why agents need feature flags: → most AI teams ship prompt, tool, model and autonomy changes to 100% of users on every deploy. no canary, no segment, no kill switch → that's why your "small" prompt tweak just broke 12% of users and you found out from a Discord screenshot → a boolean toggle isn't enough for agents. you need segment-targeted prompt variants, per-tool access flags, model-routing flags → the one that matters most: an autonomy-level flag – suggest vs auto-approve vs auto-execute – so you can dial an agent back without a redeploy → and a kill switch every agent system should have on day one, and almost none do Web teams stopped shipping to 100% on every deploy thirteen years ago. agent teams are about to relearn why, one runaway loop at a time.





