AI is both impressive and ridiculous. I have a little command line Python script that does some basic text reformatting stuff for me. I wanted a version that I could use on my phone. I gave Gemini the script, and asked it to make "a version of this program with the same functionality that I can use on my iphone, but with a textbox and some buttons instead of command line options." I expected it to rewrite this extremely simple Python file into JavaScript or something and give me an HTML file. Or if it wanted to do things the hard way, maybe swift. Nope! It installed uvicorn and requests and fastapi and a bunch of stuff and then rewrote the python script so it could import the existing functionality into the web app it just built. To be fair, it worked perfectly the first time, either on the command line or as a web server. But the original script was about 100 lines of Python! Rewriting it in JavaScript would've been much faster. And not required a reverse proxy and a bunch of deployment work. I guess it took "the same functionality" way too literally and decided the best way to achieve that would be to run the exact same code. When we talk about the impact of #AI, nobody seems to be talking about the impact caused by running AI generated code for years to come. If I didn't know better, and was just an AI vibe coder, I'd now be running an entire docker and reverse proxy setup for something that could be done in the browser with a hundred or so lines of JavaScript. That's honestly a tiny impact individually, but over the course of hundreds and thousands of people and companies, it's going to add up.