Blog Posts

How to Programmatically get Amazon IP Ranges/CIDRs

Amazon Web Services (AWS) operates an extensive network infrastructure with a vast number of IP addresses and CIDR blocks.

Read More

The Ultimate Guide to Emacs: Mastering the Art of CLI Programming

In the realm of command-line interface (CLI) programming, Emacs stands as a legendary text editor, known for its immense power and unparalleled extensibility.

Read More

The Ultimate Guide to VI: Mastering the Art of CLI Programming

In the world of command-line interface (CLI) programming, efficiency is paramount.

Read More

AWS Assume to another role

OUT=$(aws sts assume-role --role-arn arn:aws:iam::0123456789:role/OrganizationAccountAccessRole --role-session-name test) export AWS_ACCESS_KEY_ID=$(echo $OUT | cut -d '"' -f 6 ) export AWS_SECRET_ACCESS_KEY=$(echo $OUT | cut -d '"' -f 10 ) export AWS_SESSION_TOKEN=$(echo $OUT | cut -d '"' -f 14 ) aws sts get-caller-identity

Read More

Programming Languages Series

1. Introduction Welcome to our Programming Languages Series! In this series, we’ll explore various programming languages, understand their purposes, provide code examples, and discuss when to use each one.

Read More

Docker Deep Dive Series

1. Getting Started In this first part of the series, we will kick things off by getting Docker installed and running on your system.

Read More

Machine Learning Mastery Series

Part 1. Introduction to Machine Learning Welcome to the Machine Learning Mastery Series, a comprehensive journey into the exciting world of machine learning.

Read More

Kubernetes Mastery

Part 1. Introduction Welcome to the Kubernetes Mastery Series! In this first part, we’ll set up a Kubernetes cluster using KinD (Kubernetes in Docker).

Read More

Managing Multiple Environments with Terraform Workspaces

Managing infrastructure across multiple environments such as development, staging, and production can be a daunting task.

Read More

Controlling and Understanding Parallelism Impact on the DAG

When working with large-scale infrastructure deployments, managing the provisioning and orchestration of resources efficiently becomes crucial.

Read More

How to add Payment Subscriptions with Stripe in Django

Integrating Stripe subscriptions into your Django site involves several steps. Here’s a high-level overview of the process.

Read More

Private Application Load Balancer for EKS in Terraform

Amazon Web Services (AWS) provides a powerful combination of services for building, deploying, and managing applications.

Read More

Kubernetes vs Docker Swarm for Container Orchestration

Container orchestration has become a cornerstone of modern application deployment and management.

Read More

Setting Comprehensive CI/CD Pipeline with Jenkins and Docker

In today’s dynamic software landscape, the fusion of Continuous Integration and Continuous Deployment (CI/CD) pipelines with robust tools like Jenkins and Docker has emerged as a cornerstone of efficient and reliable application delivery.

Read More

Navigating Microsoft Azure for Seasoned AWS Experts

In the ever-evolving landscape of cloud computing, two mammoth players, Amazon Web Services (AWS) and Microsoft Azure, have emerged as titans, offering an extensive array of services that cater to a diverse spectrum of business needs.

Read More

Navigating Google Cloud Platform (GCP) for AWS Experts

In today’s rapidly evolving landscape of cloud computing, Amazon Web Services (AWS) and Google Cloud Platform (GCP) have emerged as prominent contenders, furnishing an extensive array of services tailored to cater to the dynamic requirements of modern businesses.

Read More

Create a slug from a name in MySQL/MariaDB

How to create a slug from the name of an item in MySQL/MariaDB.

Read More

Secure Efficient Server Management with AWS Systems Manager

In the ever-evolving landscape of cloud computing, AWS (Amazon Web Services) continually introduces innovative solutions to enhance operational efficiency, security, and ease of management.

Read More

How to Get a List of Available Regions from AWS CLI

AWS (Amazon Web Services) is a prominent cloud service provider that offers a wide range of services to businesses and individuals worldwide.

Read More

[Solved] A Number After a Double Reversal in Python

The problem Reversing an integer means to reverse all its digits.

Read More