EK bio photo

EK

Totally not a hacker

Email Twitter Github

Use github and jekyll for blog

Install RVM and NVM

curl -sSL https://get.rvm.io | bash -s stable --ruby
rvm install 2.1
rvm --default use 2.1 
gem install bundle
wget -qO- https://raw.githubusercontent.com/creationix/nvm/v0.24.1/install.sh | bash
nvm install 0.10
nvm use 0.10

Clone Github Repo and install Jekyll

git clone -b develop https://github.com/jivoi/jivoi.github.io.git
cd jivoi.github.io
bundle install
git clone -b master https://github.com/jivoi/jivoi.github.io.git _site
rake new_post
vim _posts/

Build and Test

jekyll b
jekyll s --host 0.0.0.0 --watch
rake b

Commit and deploy

git st
git add _posts/*
git push -u origin develop
git commit -a -m "blogging with github"
rake deploy