- Scott Chacon on the Interwebs(リンク切れ)
- Scott Chacon on the Interwebs
- GitHub Flow - The best way to use Git and GitHub
31 Aug 2011
#!/usr/bin/env ruby | |
# -*- coding: utf-8 -*- | |
require 'eventmachine' | |
class UpdateEvent | |
include EM::Deferrable | |
def fire(msg) | |
p "update: #{msg}" |
apt-get install -y wget build-essential gettext autoconf automake libtool | |
wget http://download.mono-project.com/sources/mono/mono-3.2.3.tar.bz2 | |
bunzip2 -df mono-3.2.3.tar.bz2 | |
tar -xf mono-3.2.3.tar | |
cd mono-3.2.3 | |
./configure --prefix=/usr/local; make; make install | |
rm -rf /tmp/* | |
apt-get remove --purge wget build-essential gettext autoconf automake libtool |
require 'celluloid/io' | |
require 'ircp' | |
require 'thread' | |
require 'sinatra/base' | |
require 'json' | |
$q = Queue.new | |
class Client | |
include Celluloid::IO |
シーケンス図とかフローチャートをしごとで描画することになった場合、 テキストから生成できたら楽なので、それ系のツールまとめ