31 Dec 2011
by 無聊達人
in Apple, Mac, OS X
Tags: Automator, Contextual Menu, Lion, Mac OS X, Right-click, Services
If you don’t know this, certainly you would miss a lot from Mac OS! Some PC switchers would complain the lack of functions from Mac OS right-click contextual menu. One historical reason is Apple mouse originally designed with one button. Unlikely Windows, application menu bar in Mac OS is not tied to application window but always on top of the screen. (It becomes complaint if it has no gesture, who cares right click anymore?!) Also, with shortcut keys and now multi-touch gestures, I seldom find myself need to right-click or look for something from contextual menu.
Well, if you still want to, in fact Mac OS gives us even more in flexibility. It comes from a great feature called “Services” which existed long time ago. It was not well recognized or used because it’s hidden in menu bar before.
From Lion, it’s well located in System Preferecens -> Keyboard Shortcut. It worths you to take a look and enable some of the stuffs that you would like.
I found 2 great services that improve my life!
- Convert selected text/file to traditional/simplified Chinese
- New Terminal at Folder

“Automator” is another secret weapon from Mac OS. You can add more automations by combining tasks or AppleScript. Convert the action into contextual menu that’s fun!

25 Jun 2010
by 無聊達人
in Apple, Development, Java, Mac, OS X
Tags: Java, Mac OS X, Snow Leopard
May be it’s too late for me as a Java developer to realize this! There’s no more old JDK exist in Snow Leopard!
Well, actually it’s neither a problem for general user nor Apple. Just if you’re working on a project which is still compiled by the aging JDK1.5, that would be a concern…
It’s quite tricky that Snow Leopard set all old JDK as alias to 1.6…. That why I thought they still exist…

18 May 2010
by 無聊達人
in Mac, OS X
Tags: Command, Mac, SVN
Just to remind myself
To remove all “.svn” folders from your current path.
find . -type d -name .svn -depth -exec rm -rf {} \;
Recent Comments