I hereby claim:
- I am ijin on github.
- I am ijin (https://keybase.io/ijin) on keybase.
- I have a public key ASC0K2jw7KG85ZUgkGzUlvumbqPjziWb8_xoVmxYsbsFsgo
To claim this, I am signing this object:
<!DOCTYPE html> | |
<html> | |
<head> | |
<meta charset="UTF-8"> | |
<title>Refresh Sample</title> | |
<script src="aws-iot-sdk-browser-bundle.js"></script> | |
<script src="https://sdk.amazonaws.com/js/aws-sdk-2.283.1.min.js"></script> | |
</head> | |
<body> |
// This Google Sheets script will post to a slack channel when a user submits data to a Google Forms Spreadsheet | |
// View the README for installation instructions. Don't forget to add the required slack information below. | |
// Source: https://github.com/markfguerra/google-forms-to-slack | |
///////////////////////// | |
// Begin customization // | |
///////////////////////// | |
// Alter this to match the incoming webhook url provided by Slack |
var slackIncomingWebhookUrl = 'https://xxxxxxxxxxxx'; | |
var postChannel = "#serverlessdays2019"; | |
var postIcon = ":papercall:"; | |
var postUser = "PaperCall"; | |
var postColor = "#FF7F50"; | |
var messageFallback = "The attachment must be viewed as plain text."; | |
var messagePretext = "CFPの応募があったよ!\nhttps://www.papercall.io/slsdaystokyo2019"; | |
var title = "Serverless Days Tokyo CFP"; | |
var searchString = "New Submission For ServerlessDays Tokyo 2019"; |
I hereby claim:
To claim this, I am signing this object:
#!/bin/bash | |
set -x | |
export SHA1=`echo ${CIRCLE_SHA1} | cut -c1-7` | |
export CONFIG_YML=$1 | |
shift | |
echo "running task" | |
time ./ecspresso run --config=$CONFIG_YML $@ |
#!/bin/bash | |
set -x | |
export SHA1=`echo ${CIRCLE_SHA1} | cut -c1-7` | |
export CONFIG_YML=$1 | |
shift | |
export SERVICE=`./ecspresso deploy --config=$CONFIG_YML --dry-run | grep Service | awk '{print $2}'` | |
echo "deploying" | |
time ./ecspresso deploy --config=$CONFIG_YML $@ |
#!/bin/bash | |
set -x | |
export SHA1=`echo ${CIRCLE_SHA1} | cut -c1-7` | |
export ENV=`echo $1 | rev | cut -d \- -f1 | rev` | |
pm2 deploy ./app/config/deploy/deploy.json $1 update --force | |
if [ $? -eq 0 ]; then | |
export SL_COLOR="good" |
#!/bin/bash | |
set -x | |
export SHA1=`echo ${CIRCLE_SHA1} | cut -c1-7` | |
export ENV=`echo $1 | rev | cut -d \- -f1 | rev` | |
echo "hi" | |
if [ $? -eq 0 ]; then | |
export SL_COLOR="good" |
Running setup.py install for PyYAML | |
checking if libyaml is compilable | |
gcc -pthread -fno-strict-aliasing -O2 -g -pipe -Wall -Wp,-D_FORTIFY_SOURCE=2 -fexceptions -fstack-protector --param=ssp-buffer-size=4 -m64 -mtune=generic -D_GNU_SOURCE -fPIC -fwrapv -DNDEBUG -O2 -g -pipe -Wall -Wp,-D_FORTIFY_SOURCE=2 -fexceptions -fstack-protector --param=ssp-buffer-size=4 -m64 -mtune=generic -D_GNU_SOURCE -fPIC -fwrapv -fPIC -I/usr/include/python2.7 -c build/temp.linux-x86_64-2.7/check_libyaml.c -o build/temp.linux-x86_64-2.7/check_libyaml.o | |
build/temp.linux-x86_64-2.7/check_libyaml.c:2:18: fatal error: yaml.h: No such file or directory | |
#include <yaml.h> | |
^ | |
compilation terminated. | |
libyaml is not found or a compiler error: forcing --without-libyaml | |
(if libyaml is installed correctly, you may need to | |
specify the option --include-dirs or uncomment and |