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
AWSTemplateFormatVersion : '2010-09-09' | |
Transform: AWS::Serverless-2016-10-31 | |
Description: A hello world application. | |
Resources: | |
# Lambda 関数を1つ定義して | |
HelloWorldFunction: | |
Type: AWS::Serverless::Function | |
Properties: | |
Handler: index.handler | |
Runtime: nodejs6.10 |
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 RequestId: 94a083a4-700a-11e6-bd2f-39c6f7b14de8 Version: $LATEST | |
2016-09-01T06:09:02.914Z 94a083a4-700a-11e6-bd2f-39c6f7b14de8 | |
{ | |
"errorMessage": "fail" | |
} | |
END RequestId: 94a083a4-700a-11e6-bd2f-39c6f7b14de8 | |
REPORT RequestId: 94a083a4-700a-11e6-bd2f-39c6f7b14de8 Duration: 0.73 ms Billed Duration: 100 ms Memory Size: 128 MB Max Memory Used: 16 MB | |
START RequestId: 94a083a4-700a-11e6-bd2f-39c6f7b14de8 Version: $LATEST | |
2016-09-01T06:09:59.216Z 94a083a4-700a-11e6-bd2f-39c6f7b14de8 | |
{ |
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
# Description: | |
# オフィスにいるっぽい人を知りたい、そんなあなた向けのスクリプト. | |
# Using the Slack API and an IP address of your office. | |
# | |
# Dependencies: | |
# "q": "1.4.1" | |
# "slack-api-client": "0.0.2" | |
# | |
# Configuration: | |
# HUBOT_SLACK_WEB_API_TOKEN - https://api.slack.com/web |
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
# | |
# Add code below at the bottom of your zshrc/bashrc. | |
# You can use Docker Toolbox with simple commands like boot2docker. | |
# Notice: This script can handle only `default` machine. | |
# | |
# e.g. | |
# b2d start | |
# b2d ssh | |
# b2d stop | |
# |
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/sh | |
### BEGIN INIT INFO | |
# Provides: kibana | |
# Required-Start: $local_fs $remote_fs $network | |
# Should-Start: $time | |
# Required-Stop: $local_fs $remote_fs $network | |
# Default-Start: 3 5 | |
# Default-Stop: 0 1 2 6 | |
# Short-Description: Kibana 4 |
NewerOlder