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
# hook file of the echo target | |
* pre-receive | |
* update | |
* post-update | |
# script | |
echo "update >>" >> up.log | |
echo $# >> up.log | |
echo $@ >> up.log | |
echo "--------------" >> up.log |
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
# -*- mode: ruby -*- | |
# vi: set ft=ruby : | |
AWS_ACCESS_KEY_ID = "XXXXXXXXXXXXX" | |
AWS_SECRET_KEY = "XXXXXXXXXXXXX" | |
Vagrant.configure(2) do |config| | |
config.vm.box = "dummy" | |
config.vm.box_url = "https://github.com/mitchellh/vagrant-aws/raw/master/dummy.box" | |
config.vm.synced_folder ".", "/vagrant", disabled: true |
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
/** | |
* スプレットシートとフォームの結び付け | |
*/ | |
function bindForm() { | |
// フォーム取得 | |
var formUrl = 'XXXXXXXXXXXXXXXXXXXXXXXXXXXXX'; | |
var form = FormApp.openByUrl(formUrl); | |
// スプレットシート取得 |
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
#include <boost/format.hpp> | |
#include <boost/shared_ptr.hpp> | |
#include <iostream> | |
#include <iterator> | |
#include <string> | |
#include <vector> | |
#include <list> | |
using namespace std; |
NewerOlder