03 1 / 2013

Great talk for vim user and someone are still looking for the perfect text editor :)

03 1 / 2013

A must read interview for people who want to be a creator as all of us can be. My favourite quotation from this interview is : “Inspiration is for amateurs - the rest of us just show up and get to work” - but don’t take all of it, amazing work needs something more, it’s just the beginning.

15 12 / 2012

zackshapiro:

The last two years of high school every teacher talked about getting us ready for college. I guess they did a good job because the transition to college was relatively painless. I packed up all of my stuff and moved to Boulder but for the most part, transitioning was easy.

Nobody talks about…

Permalink 110 notes

14 12 / 2012

Small change makes huge difference.

01 12 / 2012

How to open file with custom application in Mac OSX terminal

I’ve just discovered an useful command to open a file with custom application in Mac OSX terminal. Normall if we open a file in terminal, we will use open command, but it does have something more interesting which is -a flag ( think a as application ). Now I want to open video file with my MplayerX application instead of @*(& Quicktime, I just do this:

open -a MpalyerX <video-file-path>

For the sake of my laziness, I create a simple alias for it:

mp() { open -a MplayerX $1 } # I'm zsh user
mp <video-file-path>

Now I live more happily with my terminal !

Vote on HN