What I Learned From My First High Visibility Project

Since I’m new to the blogging space, I thought I’d try writing about my experience in a project at work I just finished up.  What I Learned: The One-Minute Version Overall, the project was a success. My success criteria are that the project fulfills the requirements laid out for it, the customer is satisfied, and […]

Activating a New SSL Certificate Using Namecheap

This is how you activate an SSL certificate when using Namecheap from start to finish.  This assumes that you have already purchased an SSL Certificate through Namecheap.com.  How I documented this was by updating my current SSL certificate but it works from having no SSL or updating. Let’s get into it. Step 1: Activate the […]

My Journey to Cleaner Code

This article is the result of reading the book Clean Code by Robert C Martin. All the recommendations made here are suggested by Robert C Martin.  Looking back on my code from before I read Clean Code to after, I can see huge changes. It’s very apparent now to be able to judge “good” code […]

Naming Conventions from Clean Code

Meaningful Names Choosing good names takes time but saves more than it takes. So the idea is to take your time choosing a name and change them when you find a better one.  Use Intention-Revealing Names The name should answer the big questions such as why it exists, what it does, and how it is […]