GitHub Fetch Upstream Branch
A key feature of GitHub is the ability to work repositories in order to contribute back to them. Until recently, there was no built-in way to keep a fork up to date with its upstream source repository. Now, there's …
MANY articles on a wide array of topics. You’ll find a lot of my newer content is going to my YouTube channel first, but I do still blog occasionally.
A key feature of GitHub is the ability to work repositories in order to contribute back to them. Until recently, there was no built-in way to keep a fork up to date with its upstream source repository. Now, there's …
When it's time to build that big new system to replace the aging old one, consider Gall's Law and the benefit of frequent feedback and evolutionary development.
Spend less time worrying about optimizing your images for your blog, README, etc. and leave it to this simple but helpful bot. Free for open source.
If a method you're writing throws exceptions under certain circumstances, such as through guard clauses or other expected conditions, be sure to write tests to verify this behavior. The xUnit test framework has great …
Docker compose can take a while to execute, especially for a large set of containers. Fortunately there's a way to take advantage of extra processors (and any extra bandwidth you may have) by running the build step in …
Want to compare how long a command takes to run with different parameters? Curious how long it takes a multi-step build/test script to run, overall? PowerShell has a command for that.
A lesson I learned early in my career - you don't need to micro-optimize as long as you have fast enough hardware.
A client I'm working with wanted a set of initial decisions and questions their team should address as they begin a new project. I did a bit of research, thinking surely such a list must exist already, but I didn't find …
A recent discussion on devBetter.com about how to model data in a loosely-coupled manner spurred this article which describes a few different ways to model data without referential integrity and foreign keys.