This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Open the sql file in your text editor; | |
1. Search: utf8mb4_unicode_ci Replace: utf8_general_ci (Replace All) | |
2. Search: utf8mb4_unicode_520_ci Replace: utf8_general_ci (Replace All) | |
3. Search: utf8mb4 Replace: utf8 (Replace All) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
git rm -r --cached . | |
git add . | |
git commit -m ".gitignore is now working" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
html { | |
background: url(images/bg.jpg) no-repeat center center fixed; | |
-webkit-background-size: cover; | |
-moz-background-size: cover; | |
-o-background-size: cover; | |
background-size: cover; | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
sudo yum update | |
sudo yum install ruby | |
sudo yum install wget | |
wget https://{bucket-name}.s3.amazonaws.com/latest/install | |
chmod +x ./install | |
sudo ./install auto | |
## bucket-name represents one of the following: | |
## aws-codedeploy-us-east-1 for instances in the US East (N. Virginia) region | |
## aws-codedeploy-us-west-1 for instances in the US West (N. California) region |
OlderNewer