March 2012
4 posts
easyboot - easily add #twitterbootstrap to your...
Announcing easyboot:
An easy way to get and keep the latest twitter bootstrap updated in your application.
Twitter Bootstrap has exploded and the project continues to iterate and come up with great
patterns and ui tools, but it can sometimes be very time consuming to pull down the latest version and integrate it to your application. This is where easyboot comes in.
What is easyboot?
...
Contributing to Open Source →
Kris Windham’s thoughts and reactions after a month of really getting into open source. He has committed to maintaining an open source project called ‘CoffeeKup’ that was abandoned, and is really making a difference. Great Stuff!
Installing NodeJs v6.12 on Ubuntu 10.04
Here are my steps to installing NodeJs v6.12 on a fresh Ubuntu 10.04
sudo apt-get install git-core build-essential libssl-dev openssl pkg-config -y
wget http://nodejs.org/dist/v0.6.12/node-v0.6.12.tar.gz
tar -xzvf node-v0.6.12.tar.gz
cd node-v0.6.12/
./configure
make
sudo chown -R [user] /usr/local
make install
2 tags
Installing NodeJs v6.12 on Ubuntu 10.04
Here are my steps to installing NodeJs v6.12 on a fresh Ubuntu 10.04
sudo apt-get install git-core build-essential libssl-dev openssl pkg-config -y
wget http://nodejs.org/dist/v0.6.12/node-v0.6.12.tar.gz
tar -xzvf node-v0.6.12.tar.gz
cd node-v0.6.12/
./configure
make
sudo chown -R [user] /usr/local
make install