Making Small and Manageable Pull Requests
July 13, 2022In a previous article, I shared some thoughts about Writing Better Pull Requests . Continuing on that topic, I want to share some ideas on…
In a previous article, I shared some thoughts about Writing Better Pull Requests . Continuing on that topic, I want to share some ideas on…
Over the last year, I've become more thoughtful about the code I write and how quickly it gets merged. Wanting to improve on this process, I…
Recently, I made a decision to incorporate the GitHub CLI into my daily routine. To my surprise it was much easier than I thought it would…
By default the WordPress Gutenberg RichText component will insert <br> tags into the block grammar when the "enter" key is used. While…
What's new in 2021 Back in October of 2020, I decided it was time to rebrand myself as a JavaScript focused engineer. I've been in this odd…
Using git stash Saving code for later use with git stash is one of my favorite features of git. Stashing code allows me to save an idea…
Simple Examples of Destructuring in Javascript Before going too far, let's talk about what destructuring is. Destructuring is the process of…