又挂了

博客所在机房出了问题,12小时还没有恢复。索性买了个VPS搬过来,正好折腾一下Ghost这个新玩意,同时学习学习node。 ... read more

testing post by Ghost on Nodejs

Wow, its the first time i write with markdown. And,It's AWESOME! On next step, i'll try to write a new theme for this site. Perhaps the main site instead. ... read more

Welcome to Ghost

You're in! Nice. We've put together a little post to introduce you to the Ghost editor and get you started. Go ahead and edit this post to get going and learn how it all works! Getting Started Writing in markdown is really easy. In the left hand panel of Ghost, ... read more

CSS: calc()

可以在css中计算单位值,比如 a{width:calc(100% - 20px);} 切记计算符号两边要有空格 http://caniuse.com/calc ... read more

cd后自动ls

function cd { command cd $1 && ls;} AT ~/.bash_profile ... read more