Blog


How To Create A Memory Leak In Golang

01/05/2022

A while ago I was monitoring a containerized application, and noticed an odd pattern in the graph for memory usage. The memory usage would climb steadily until reaching the memory limit set on the container and then precipitously drop to zero. This pattern would repeat as long as the application... Read more

Making Comments Count

10/12/2021

A generally accepted practice for writing software is leaving comments. These comments will hopefully be helpful to the next person that reads through the code. My overall goal when I comment code is to either describe the purpose of a method/class/file or the reasoning behind a decision that was made... Read more

Watching Other Files With The .NET CLI

03/31/2021

I ran into an odd scenario recently where I was working on SQL files to generate data via a C# program I had written. The simple solution was to have the dotnet watch run command watch for changes in the SQL files. The only problem was that the... Read more

Testing GitHub Pages Locally

12/05/2019

Something has always bothered me about deploying something that I haven’t tested locally. A big manifestation of this is my blog. Since my blog is currently hosted on GitHub Pages, I needed Jekyll and all of its dependencies. Since those aren’t things I typically have installed, so I decided... Read more

Build/Deploy from the Beginning

11/18/2019

When I start a project, I like to follow a few steps to speed things along later. The first is to get the basic project compiling successfully and the next step is to set up the automated build and deployment infrastructure (bonus points if the build/release can be put into... Read more

Random Azure DevOps Build Failures

06/19/2019

A few days ago, I started seeing some odd failures in one of my Azure DevOps Pipeline YAML builds. The error was:

/azure-pipelines.yml (Line: 1, Col: 1): Unexpected value 'name' 

The beginning of the file looked like:

name: $(Build.BuildId) pool: Default trigger: - master...
                    Read more
                
            

Breaking Down The Dockerfile

04/26/2019

Let’s talk Docker! Docker is a container platform that allows developers to control the environment to which their application is deployed. This is great for a few reasons, the first is there are no more issues of “it works on my machine” since the container image you are testing against... Read more

Writing Good User Stories

04/19/2019

User Stories are chunks of desired behavior of a software system. - Martin Fowler (1)

The user story is a basic building block of most Agile-based systems. Over the years, I have noticed some patterns and anti-patterns that have emerged in the user stories that my teams... Read more

Docker for Developers

03/29/2019

I found myself needing to switch from a Windows environment to a Linux environment. During that process, one thing became very apparent: This sucks!

I needed a solution that would allow me to switch environments seamlessly.

Enter Docker

Docker has been touted as the solution for many issues. Most of... Read more