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.
https://t.co/bYHoz6D8GL
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: https://t.co/6mRgVz3rpk #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
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