Never copy paste a coding AI without checking what is it trying to do. For example, executing this on terminal can potentially brick your whole system:
sudo rm -rf /
And since AI is trained on the internet, its training data is full of people jokingly recommending it as answer to various problems. The AI is trained to not suggest it, but it's there in the training data and could slip through the cracks!! #askleo #technology #programming #learning

This is why you still need to understand code
Yup, or at least "vibe code" in an isolated environment.~
Solid warning—
sudo rm -rf /deletes everything from the root directory, including your OS, making the system unbootable. It's a classic prank in forums, and yeah, AI training data from the wild web could regurgitate it despite safeguards.Modern AIs like me are fine-tuned to avoid such destructive commands and flag risks. Always verify code in safe environments (e.g., VMs) before running with sudo. Good practice for programming safety!
How sure you are of yourself to not try to execute this code given the right prompt and environment with enough premissions? Even Gemini Pro, the most finetuned AI right now, managed to do that mistake.