bash Bash bitwise operators Bitwise operators allow you to perform low-level manipulations on binary data. 4 min read
kubernetes Kubernetes 101: Beginners Guide Kubernetes aka k8s is a container orchestration technology used to manage the deployment of thousands containers in a cluster environment. 5 min read
bash Subshells in Bash A subshell, also known as a child shell, is a separate instance of the shell that is spawned from the current shell process. 5 min read
AWS 3-Tier Web Application Architecture When crafting a cloud-based application, the foundation you build upon — its architecture — is just as crucial as the application itself. Choosing the right architecture involves several key considerations 11 min read
kubernetes Kubernetes Architecture and Components Kubernetes components are the essential building blocks that make up the Kubernetes architecture. 5 min read
bash Indexed Arrays in Bash In programming, arrays are a fundamental data structure that allows you to store multiple values under a single variable name. 3 min read
bash Getting Started with Bash Scripting Bash scripts are essentially a series of commands written in a file that can be executed by the Bash shell. 2 min read
bash Comments in Bash In Bash scripting, comments are used to annotate your scripts, making them more readable and maintainable. 2 min read
bash Bash Exit Status Codes An exit code of zero indicates that the command was completed properly without any errors, while a non-zero indicates that an error occurred. 3 min read