Jun's Blog

Output, activities, memo and etc.

Entries from 2014-01-01 to 1 year

Set up Sublime Text 2

http://www.sublimetext.com/ http://mnemoniqs.com/web/sublimetext2/ http://hondou.homedns.org/pukiwiki/index.php?Mac%20Sublime%20Text%202%20%A4%C8%20Ricty%20Font http://ytsuda.hateblo.jp/entry/2012/12/05/170506必要なら→全角スペース表示(Full…

Set up Ruby development environment

rbenv Ruby をバージョンごとに管理するツールです。https://github.com/sstephenson/rbenv $ brew install rbenv ruby-build ruby-buildが依存しているopensslのinstallに失敗したため。 ダウンロードサイトがメンテナンス中だったのかもしれません。 個別…

Set up Node.js development environment

nvm Node.js をバージョンごとに管理するツールです。 $ curl https://raw.githubusercontent.com/creationix/nvm/v0.13.1/install.sh | bash 自動的に挿入されます。 $ cat ~/.bash_profile ... export NVM_DIR="$HOME/.nvm" [ -s "$NVM_DIR/nvm.sh" ] && .…

Set up Perl development environment

In this article, I used perlbrew (perl version management tool). Perlbrew $ curl -kL http://install.perlbrew.pl | bash Add these lines to .bash_profile $ vi ~/.bash_profile # Perlbrew if [ -f ~/perl5/perlbrew/etc/bashrc ]; then . ~/perl5/p…