Provisioning infrastructure manually takes a lot of time, and scripting requires a lot of technical skills. In this article, “Getting Started with Terraform,” I will cover everything about HashiCorp’s Terraform, an Infrastructure as Code (IaC) tool that makes it easy to set…
How To Create A User In Linux
Create A User In Linux is considered a basic system administration task. User accounts in a Linux system are of two types, privileged users and unprivileged users. The default privileged user is ‘root’. This user account has full access to…
Setting Password Expiry For Users In Linux
Setting password expiry for users in linux is essential. By setting up password expiration, you can ensure that users are reminded to update their passwords on a regular basis. In this guide, I will take you through the necessary steps…
How To Recover Unsaved Changes Using .swp Files in Vim
If you’ve lost unsaved work in Vim due to a crash or an accidental closing, you can recover unsaved changes using .swp files. Recovering the Original File from a .swp File in Vim Launch Vim, from your terminal and Change…
How to install AWS CLI
Are you trying to figure out how to install AWS CLI? The AWS CLI is a command-line tool provided by Amazon for managing AWS services. It offers a set of commands to perform tasks such as creating EC2 instances, managing…
There is a tendency for files to accumulate on the desktop over time, making it difficult to locate the specific files that you want. The purpose of this Python script, “Organize Desktop Files with Python,” is to organize the files that are…
How to Install Git on Your System
Git is a powerful version control system that allows you to track changes in your code and collaborate effectively with others. In this guide, I will walk through the steps on How to install Git on different operating systems: Linux(Rocky…
AWS Account Creation
AWS serves as one of the gateways to the cloud. In this guide, I’ll walk you through the process of AWS account creation. Now let’s get started and work through the complexities of setting up an AWS account together. Let’s…
How to send Alerts and Notifications with Telegram
Understanding Telegram Bot API For sending Alerts and Notifications with Telegram, we utilize Telegram Bot API, which supports programmatic interaction between developers and the Telegram platform. Create a Telegram bot using BotFather, the official bot for managing Telegram bots, to…
Git Stash for Saving and Retrieving Changes
In this short article Git Stash for Saving and Retrieving Changes I will show you how to use the git stash command to save and get back changes in Git. There are times when you need to save your changes…