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" | |
], |
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! |
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! |
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 |
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 |