Blog Archive

Getting Started with FlagOps

A getting started guide to instrumenting your GitOps projects with feature flags.

Feature Flags In GitOps

Feature flags have become a very popular way to control how your application behaves in real time without having to manually go update a config file or change an environment variable. Why has this same convenince not come to the infrastructure layer?

Composition vs Inheritance

The topic of how to structure reusuable code chuncks often comes down to a debate of composition vs inheriance. I will answer the questions of what do these terms mean and how can I apply them in my own code?

Introduction to Golang Pointers

Whether you started with C or Python pointers in Golang can be tricky at the start. This guide will be a solid foundation to help you learn go.