Tidy up day.

I spent some time renaming some files in my Google Cloud Storage bucket because it was becoming a mess.

There are a few automated things that happen in the cloud storage bucket, so I had to rename all the paths and then modify all the code that was refering to those paths. When I did the rename, I first tried to use bucket.getFiles() and then rename all the files that matched my prefix. However, it would kill my network router because I didn’t check how many files were coming back. My computer was making 1000s of simultaneous requests. It took me a few gos to figure out why, once I did, switched to number to 20 per page and everything worked fine.