Social Media Posts
Conditional Logic In Dockerfile
Oct 12, 2019
Sometimes when running a Dockerfile you need to run some conditional logic based upon an ARG variable.
Passing Arguments Using Spread
Oct 10, 2019
The spread syntax in javascript allows an iterable (array, strings, or object literals) to expand in places where zero or more arguments are expected. Why is this useful? Let's find out!
Typescript Useful Compilation Options
Oct 05, 2019
If you’re using typescript (tsc) to compile your typescript files, there are some handy compilation options that can give you more insight into how compilation happens or why certain files are compiled.
Git Shallow Clone
Oct 03, 2019
If you git clone a repository it brings in the entire repository which contains every revision of every file ever made. Sometimes this is overkill. Try a shallow clone instead!
Linux Which Command
Sep 30, 2019
Sometimes in linux you need to know if you have a program/utility installed and maybe even where it is installed.