wget -qO - https://releases.hashicorp.com/packer/1.2.4/packer_1.2.4_linux_amd64.zip | zcat > packer
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 install gcc -y | |
| # そんな掛からない | |
| wget http://download.redis.io/redis-stable.tar.gz && tar xvzf redis-stable.tar.gz && cd redis-stable && make |
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
| start_block | |
| indent expr | |
| expr | |
| dedent end_block | |
| program: expr* EOF | |
| expr: block | function_call | field_access | |
| block: start_block (indent expr* dedent)* end_block | start_block end_block |
-
AopAutoConfiguration
-
EnableAspectJAutoProxy
-
AspectJAutoProxyRegistrar
-
AopConfigUtils#registerAspectJAnnotationAutoProxyCreatorIfNecessary
-
AopConfigUtils#registerOrEscalateApcAsRequired
-
AnnotationAwareAspectJAutoProxyCreator.class <--> AspectJAwareAdvisorAutoProxyCreator.class
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
| package main | |
| import ( | |
| "encoding/base64" | |
| "encoding/json" | |
| "fmt" | |
| "io/ioutil" | |
| "os" | |
| "time" |
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
| { | |
| "Version": "2012-10-17", | |
| "Statement": [ | |
| { | |
| "Effect": "Allow", | |
| "Action": [ | |
| "ecs:RunTask" | |
| ], | |
| "Resource": [ | |
| "*" |
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
| user nginx; | |
| worker_processes auto; | |
| error_log /var/log/nginx/error.log; | |
| pid /var/run/nginx.pid; | |
| events { | |
| worker_connections 1024; | |
| } | |
| http { |
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
| #!/bin/bash | |
| TEMP=$(git remote get-url origin | sed 's/[email protected]://' | sed s/.git// | sed 's/\// /') | |
| ORG=$(echo $TEMP | sed -e 's/\(.*\) \(.*\)/\1/') | |
| REPO=$(echo $TEMP | sed -e 's/\(.*\) \(.*\)/\2/') | |
| echo $ORG | |
| echo $REPO |