#intermediate
All the topics that we've covered at an intermediate level
Nullish Coalescing Operator (??) In Javascript
Oct 20, 2020
The nullish coalescing operator returns the left hand side if it is not null or undefined, otherwise it returns the right hand side. This makes it different from the logical OR (||) operator which returns the right hand side if the left side is falsey. Let’s see some examples to see exactly the behavior.
Getting to know kubernetes
Oct 01, 2020
You've probably heard of Kubernetes aka k8s if you've chatted about devops or containerization. Is it just the shiny new(ish) thing? Let's take a look into what it is and what we can do with it.
Shared Volume In Kubernetes - Using hostPath
Sep 23, 2020
Since data by nature in a container doesn't persist it is useful to be able to use a volume to allow data to persist across deployments. We wrote about this in our Docker post and it is a bit different in Kubernetes.
Linux (GNU) vs. Mac (BSD) Command Line Utility Differences
Aug 20, 2020
If you switch between Mac and Linux often you notice that certain command line utilities are sometimes slightly different...
Kubernetes Shortcuts & Helpers
Jul 28, 2020
If you work in CLI often enough you know how helpful it is to have shortcuts to both save time and key strokes. Check out these for kubernetes