#Cursor #IDE doesn't stop to amaze me. I had an old web scraper in #Python. It stopped working because the scraped website changed. I simply prompted that "it no longer finds the right data". No other details. It:
1. Run a few `curl` commands to analyze how the HTML looks now (!)
2. Adjusted CSS selectors (!!)
3. Run the program to figure out if it now works (it did!!!)
4. But Cursor didn't know that, so it added some print statements for himself, re-run and verify the output (!!!!)
#AI #DevEx