January 2010 Archives
January 22, 2010
Recommending: lesscss
LESS CSS is a nice tool to simply your CSS work. It extends the syntax of CSS itself a little bit to make many tedious work easier. For instance, you can write nested rules:
.hd {
color: #000;
.title { font-size: 140%; }
}
And that compiles to:
.hd { color: #000; }
.hd .title { font-size: 140%; }
This is my favorites feature of LESS among others.
January 21, 2010
Plurking in Perl
Net-Plurk and AnyEvent-Plurk are fine, but they are sometimes too big for one small purpose.
January 14, 2010
url2qrcode bookmarklet
這個 bookmarklet 把目前網頁轉成 qrcode / This bookmarklet displays a qrcode for current URL:
在需要即時將網址傳到手機上時好用 / Particularly useful for sending an URL to phone.
January 7, 2010
DNS Benchmarking
The namebench is a GUI tool that tells you how DNS performed based on your own browser history. Based on the fact that I often visit the websites that I have already visited before, I really like such idea.
January 4, 2010
在 Mac (Snow Leopard) 上以 nginx 做為開發用伺服器
總之 nginx 是個又快又好又不用吃草的 http server,而現下 passenger 也己經做了 nginx 模組,所以也沒什麼理由不來試用一下。