Social Media Posts

Intro To Sed

Jul 09, 2020

Sed is a very useful tool in linux and can be very powerful when chained with other linux commands.

Install A NPM Package Under An Alias

Jun 07, 2020

As more and more NPM packages are being released the available names of packages are dwindling. You might want to name your module something but a package you installed might be causing a naming collision. Thanks to NPM aliasing feature you can install packages under an aliased name...

Javascript Map

Mar 12, 2020

Knowing and understanding javascript data structures in programming is essential. One of those very useful data structures in javascript is a Map. A map holds key-value pairs and remembers the insertion order of those keys...

Converting Docker Compose To Kubernetes Files

Mar 10, 2020

Kubernetes is a container orchestration system for automating deployment scaling and management. At some point you might outgrow using Docker and want to use Kubernetes to manage your containers. There are some great tools to make that transition easier.

Bash Script Error Flag

Mar 04, 2020

Bash scripts can be very useful but also very tough to debug. Setting the correct error flag and understanding the behavior can help you out.