2013-08-01から1ヶ月間の記事一覧

Learning JavaScript

js

曖昧な知識をきちんと自分のものにしたい。 最強オブジェクト指向言語 JavaScript 再入門! from Yuji Nojima がわかりやすかった。 プロトタイプチェーン var a = {name: 'a'}; var b = Object.create(a); console.log(b.__proto__ === a); // true console…

brew install vim for neocomplete on Mac

neocomplcacheからneocompleteに乗り換えるため、luaサポートなvimをMacにインストールする。 $ brew install lua $ brew install vim --HEAD --enable-interp=ruby,perl,lua --with-lua こんだけ。ruby,perlはおまけ。知っていればかんたんだけども。

Getting Started with Vagrant Again..

インストール Vagrantfile # -*- mode: ruby -*- # vi: set ft=ruby : VAGRANTFILE_API_VERSION = "2" Vagrant.configure(VAGRANTFILE_API_VERSION) do |config| config.vm.box = "centos6.4-x86_64" config.vm.network :private_network, ip: "192.168.33.1…

Getting Started with Vagrant

クリーンな環境であれこれ試したい時にはやっぱりVM使って、いらなくなったら捨てちゃえばいいよねー。ということでVirtualBox + Vagrantをお試し。 環境 Host: MacBookAir OS X Mountain Lion Guest OS: CentOS 6.4 x86/64 VagrantのBase Boxを探す 今回はh…