View iam-s3-policy
This file contains 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
{ | |
"Version": "2012-10-17", | |
"Statement": [ | |
{ | |
"Sid": "Stmt1464945805848", | |
"Action": [ | |
"s3:GetObject", | |
"s3:PutObject", | |
"s3:PutObjectAcl" | |
], |
View 00-info-symfony-events-require-account-information-after-registration
This file contains 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
Source code for article http://ifdattic.com/symfony-events-require-account-information-after-registration | |
The first line provides the full file path, remove it from real files! |
View 00-info-integrating-datadog-and-logstash-on-aws-ec2
This file contains 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
Source code for article http://ifdattic.com/integrating-datadog-and-logstash-on-aws-ec2/ | |
The first line provides the full file path, remove it from real files! |
View config
This file contains 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
set GOOGLE_ACCOUNT "foobar" | |
set GOOGLE_PASSWORD "foobar" | |
# # Watch out !!! | |
# # If you have a '$' in your passphrase, make sure you escape it with '\' | |
set GNUPG_PASSPHRASE "foobar" | |
set VERBOSITY_LEVEL 8 |
View git-cherry-pick-between-repositories.sh
This file contains 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
# The gist for cherry pick between repositories | |
git remote add repositoryName An:\\absolute\path\to\repo | |
git fetch --progress --prune repositoryName | |
# OR | |
git remote show repositoryName | |
git fetch --progress -n repositoryName refs/heads/branch-name:refs/remotes/repositoryName/branch-name |