Martin_Chammah

Software_Engineer

Notes

Note_Is AI boosting creativity?

With the rise of AI and powerful tools like Cursor and v0, we're undoubtedly going to see more micro apps and products. The ones that truly stand out will be the most successful. However, I feel creativity is becoming harder to achieve. Tools like GPT are excellent for generating ideas, but while they make creativity easier, they also seem to work against it in some ways.

Note_Bash rename files 1 liner

Building this website, I found out images are better being served from the nextjs server, instead of from my cloud image hosting. So I had to rename all the images, because they had weird names as they were downloaded from google photos. To rename each car image, if you are just looking for 1.webp, 2.webp, etc, you can use this command:

counter=1; for file in *.webp; do mv "$file" "$counter.webp"; ((counter++)); done