11/25/25 A look back… It's been a year (a little more to be honest) since I started this page and also since I began programming. I've done many things, learned many things, and grown both as a programmer and as an artist. In honor of that, I've made a remake of the first version of this page, the same one I coded in 2023; but now with a refreshed look and cleaner code, applying all the knowledge I've gained over the past year. Looking at the old code, I realized how disastrous that page was. If I had to edit it today, it would be a headache. It was much easier to rebuild it from scratch. For example, I used invisible "li" tags to keep the page from sticking completely to the bottom edge, when it would have been far simpler to just make a footer with padding. There are many questionable decisions on the original page. Another thing I learned to appreciate is adding comments to the code to make it much more understandable in the future, because looking at the old page there were no instructions about what each part did. Many CSS classes weren't entirely clear and a lot of code was repeated because I didn't know how to use variables or consolidate similar styles. The folder structure wasn't good either...Everything was in the root, and for some reason I capitalized filenames and put "HTML/CSS" at the start of each file so Windows would sort the files together (when you can just sort by file extension natively). The fonts were even worse, they weren't included in the project itself; I pulled them directly from Google Fonts. I will launch both soon so you can see them in more detail. Thinking of some kind of JS that allows you to switch between both pages so you can see a much better side-by-side view in real time. Lately, I have been thinking about getting much more into JS to achieve more amazing things. What little I know is thanks to tutorials, me asking Copilot how to do some things, and trial and error...