Hello from Node.js!

Notice anything new?! Probably not…but now the entire site is running on Node.js! Along with the new Node.js backend, I revamped the development and deployment processes: Using Visual Studio Code for Mac as my editor (instead of Visual Studio Community Edition on Windows) Bitbucket.org for code repository (instead of keeping it local on my Windows […]

Automatic Photo refresh

In addition to displaying random images from a collection on the homepage, it now changes a random photo on the page every 10 seconds to another image from the collection. First, I created the timer and it will call the changeImg function every 10 seconds (10000 milliseconds): var myTimer = setInterval(changeImg, 10000); Then I get […]