2011年7月15日金曜日

GoogleAppsでガントチャート

Gantterを使う。

http://gantter.com/

Integrates with GoogleDocs
から自分のブラウザ用アドインをインストールすると、GoogleDocsのCreateNewからGuntterプロジェクトが選択できるようになる。

2011年7月7日木曜日

macでgitインストール〜設定

http://git-scm.com/download
http://code.google.com/p/git-osx-installer/downloads/list?can=3
git-1.7.5.4-i386-leopard.dmg
をダウンロード&インストール。

~/.bashrc
に下記を追記することでgitコマンドのタブ補完と、
現在向けているブランチのプロンプト表示ができる。
{{{
# git
source /usr/local/git/contrib/completion/git-completion.bash
if [ -r "/usr/local/git/contrib/completion/git-completion.bash" ]; then
PS1="[\u@\h \w\[\033[1m\]\$(__git_ps1 \" %s\")\[\033[0m\]]\\$ "
else
:
fi
}}}