Author: Glen Young

  • The Hard Part: Navigating Emotional Turmoil

    The Hard Part: Navigating Emotional Turmoil

    I’ve just finished reading “The Life of Dai” and highly recommend it. This book beautifully captures the experience of going through a health crisis and provides insights on supporting someone through one without being bleak. It was a restorative read for me, bringing up a lot of emotions. Although I don’t have cancer, my condition…

  • A Surreal Journey: From Head Rushes to Heart Surgery

    A Surreal Journey: From Head Rushes to Heart Surgery

    So, this post is a bit different from the norm, but I think it will do me good to write it, so here we are. April 18th, 2024, was a bit of a “game changer” for me, but the story starts the day before. It was my daughter’s 13th birthday, and while I was very…

  • Ternary! ☘️

    Ternary! ☘️

    If you find yourself with a conditional in the form on an if else, there’s a more concise way of writing it. Say hello to a ternary. Take this code: Simple enough, but using a ternary we can do even better: So how’s this thing structured? Basically, we start with the item we are checking…

  • Mutation === 💩

    Mutation === 💩

    One of the many things I’ve picked up from the excellent Syntax podcast over the years is mutation should be avoided. Today a came across a great example of this with the reverse array method. I had some code that looked something like this: To my surprise the resulting output of the console logging was…

  • Protecting myself from myself 🔒

    Protecting myself from myself 🔒

    Being the lone developer on a personal project makes it really easy to do sloppy things. For example, doing undisciplined things with my git repo, like just working in the master branch (I really need to change that to main) and pushing commits directly to it. It’s much better practice to create a branch for…

  • Taking the month off

    Taking the month off

    After I completed the full stack web dev boot camp (see my final project code) I decided to give myself a month off studying software development to explore a few other interests. I’d always kicked around the idea of doing some electronics, so I had a hunt around for some little starter projects to up…

  • Sponsor me!

    Did you know you can sponsor my study and contributions to open source projects? If I had my way that’s how I’d spend all my professionally time, but a dude’s got to eat right?! Any funds raised will go directly towards covering costs of study and/or contributions to the open web. The best part is…

  • MongoDB and macOS Catalina

    Like a good Apple nerd, I updated to the latest version of macOS Catalina. If you’re using older 32bit apps Catalina won’t run them. Thankfully, I wasn’t in that position, so I didn’t anticipate any issues. So young so innocent. As it turns out another chance in Catalina does affect my normal workflow. The change…

  • Coding on a plane… on an iPad

    Coding on a plane… on an iPad

    The project In my ongoing efforts to up my development game, I’m currently working on learning how to create an app that has user authentication. Adding authentication to the web app is completely new to me and as always, I’m time constrained. So, when I found myself in a plane on the runway for over…