THE MATRIX was released 24 years ago today. One of the most iconic and groundbreaking movies of its generation, the making of story is a fascinating one.
A THREAD
1/25
AWS Simple Email Service is a popular could-based option for sending emails quickly and efficiently.
Especially if you don't want to manage your own email server.
In this guide @sophiairoegbu_ walks you through how to set up AWS SES to get you started.
freecodecamp.org/news/set-up…
Criminals and hackers frequently use a technique named SQL Injection to gain unauthorized entry to a remote database. This guide describes a SQL injection attack, how it's used, how to detect SQL vulnerabilities, and how to defend against them: lin0.de/1bEv36#LinodeDocs
Quick MySql tip 💡
To backup a database use mysqldump tool, once you have the backup file, you can restore the data using mysql command.
#mysql#codingtips
ALT mysqldump -u user_name -p --routines data_base > data_base_dump.sql
mysql -u user_name -p -D data_base < data_base_dump.sql
I ended up using AWS Code Pipeline to deploy a static site from GitHub to AWS S3.
Pipelines are free for the first 30 days after creation, and then it will cost $1 per month only if it has at least one code change happened.
#aws#CloudComputing#amazonwebservices
Do you know how to update a Git branch from mani?
First, make sure that you are in the target branch, ‘git switch branch_name'
Now merge from main using ‘git merge origin/main'
Then update your remote branch with ‘git push -u origin branch_name’ #git#midjourneyart#github
I will show you how to delete a remote branch in Git.
To delete a local branch, run:
git branch -d branch_name
To remove a remote branch, run:
git push origin -d branch_name
#git#github#midjourneyart
The CLI is a daily tool for every DevOps engineer working with AWS 🏗
A deep-dive for the 𝗮𝘄𝘀 𝘀𝟯 𝘀𝘆𝗻𝗰 command & its powerful options ↓
blog.awsfundamentals.com/aws…