Design a iPhone Convert App

August 25th, 2009

This is how TapTapTap designed their iPhone Convert App:

Convert Design Evolution from tap tap tap on Vimeo.

Pretty amazing!

Apple, iPhone ,

TextMate Shortcuts Desktop

August 23rd, 2009

I’ve been using this TextMate shortcuts Desktop Wallpaper for two years already, it’s really helpful, no matter how long have you used TextMate. And, did we missed anything new about TextMate in the past two or three years? I don’t think so.

Snow Leopard is here already, but we still know nothing about TextMate 2.

Download ↓

TextMate Keyboard Shortcuts Desktop Wallpaper 1280 x 800

TextMate Keyboard Shortcuts Desktop Wallpaper 1920 x 1200

Source: Scott Boms

Apple, Mac, OS X, Ruby, TextMate , , , ,

links for 2009-08-14

August 15th, 2009

links for 2009-08-11

August 12th, 2009

links for 2009-08-05

August 6th, 2009

links for 2009-08-03

August 4th, 2009

links for 2009-07-29

July 30th, 2009

links for 2009-07-28

July 29th, 2009

links for 2009-07-27

July 28th, 2009

Less is better, than tail

July 27th, 2009

I’ve been using tail to watch my log files for years:

tail -f log/production.log

It works great all the time, until you want to search for something, then you have to ctrl+c and open the file in less or vi.

Maybe there is a better way? After some googling, I found less is the answer:

less +F log/production.log

less +F works exactly like tail -f, with more:

  • Simply press ctrl+c to switch to editing model, so you can scroll backward and using any more/vi command, such as /pattern to search
  • Press shift+f again to switch back to tail model

Anyway, just run man less to find some more information.

English, OS X , ,