How to Install MySQL Database on EC2 Ubuntu 22.04 LTS
This guide walks you through how to install MySQL on an EC2 Ubuntu 22.04 instance, secure it, and … Read more
This guide walks you through how to install MySQL on an EC2 Ubuntu 22.04 instance, secure it, and … Read more
Rsync is the fastest way to copy files between your local machine and an EC2 instance. Unlike scp, … Read more
If the VSCode integrated terminal throws Operation not permitted when you run basic commands like ls or cat, … Read more
Every time you SSH into an EC2 instance with a .pem key, you have to pass the -i … Read more
The AWS CLI v2 is the primary tool for managing AWS resources from the terminal. This guide shows … Read more
You deleted a branch on GitHub or GitLab, but when you type git checkout and hit Tab, the … Read more
This guide shows you how to connect AWS Lambda to Microsoft SQL Server using PyODBC. Lambda doesn’t include … Read more
When you start writing Python beyond simple scripts, you’ll run into classes, objects, isinstance(), and hasattr(). These are … Read more
Every AWS Lambda function in Python starts with the same two parameters: event and context. The event carries … Read more
You’re working on something, haven’t committed yet, and need to switch to a different branch in Git. Maybe … Read more