$ gem install rpcoder
#!/usr/bin/env ruby
git clone [email protected]:tosik/cradol.git | |
cd cradol | |
git submodule update --init | |
cd BlueCarrot | |
git checkout master | |
git remote add private [email protected]:tosik/BlueCarrot.git | |
cd ../ | |
cd automaze |
#!/bin/ruby | |
require 'open-uri' | |
user_id = 1168 | |
pages = (1..16) | |
url_prefix = "http://www.gumonji.net/cgi-bin/" | |
url_no_page_num = url_prefix + "diary_list.cgi?order=id&user_id=" + user_id.to_s + "&page=" |
class Calc | |
def initialize | |
@value = 0 | |
end | |
def add(value) | |
@value += value | |
end | |
def sub(value) |
* ゲームの目的 | |
* 死なずに出口を見つける | |
* 基本ルール | |
* 一人称二次元迷路 | |
* 出口まで移動するとゴール | |
* 死亡すると失敗 | |
* 迷宮は階層構造になっている | |
* 階段を登る | |
* 一歩移動・アイテム使用で時間が経つ |
hello, vim gist plugin |
hello, vim gist plugin |
footage new PackageName | |
script/generate class foo.bar.Baz | |
script/generate interface foo.bar.IBaz | |
script/destroy | |
script/install lib as3-signals | |
rake build | |
rake test | |
rake ci | |
rake run |
hello, world |
git pr # git pull --rebase |