Sunday, February 8, 2015

맥에서 VMWare Fusion 상에 설치된 Windows 한/영 전환 단축키 설정하기


Reference) [1] OS X VMware Fusion 7 한영 전환키 설정하기 (http://uncrownedx.com/archives/710)

Saturday, January 4, 2014

How to trigger screensaver on mac right away (osx maverick)

(1) In Maverick, the screen saver app is located at
/System/Library/Frameworks/ScreenSaver.framework/Versions/A/Resources/ScreenSaverEngine.app/Contents/MacOS/ScreenSaverEngine.

(2) Browse to that file in Finder, then right-click it to make alias.

(3) Next simply click the alias icon.

Sunday, December 22, 2013

Home/End key binding for Aquamacs

In order to let home/end keys to move the beginning/end of the line in Aquamacs,
add the following to ~/Library/Preferences/Aquamacs Emacs/Preferences.el.

(define-key osx-key-mode-map [home] 'beginning-of-line)
(define-key osx-key-mode-map [end] 'end-of-line)

Wednesday, December 11, 2013

Set zenburn as default theme for aquamacs

1. Download zenburn-theme.el from here (https://github.com/bbatsov/zenburn-emacs) to the directory ~/.emacs.d/themes/. Add this to your .emacs:
(add-to-list 'custom-theme-load-path "~/.emacs.d/themes/")

2. Select 'Options > Customize Aquamacs > Custom Theme'.

3. Check 'zenburn' and click on 'Save Theme Settings'.

4. Then Click on 'Options > Appearnce > Adopt Face and Frame parameters as Frame Default'.

Wednesday, October 30, 2013

Amazon Mechanical Turk setting

As worker's requirement,
Specify ALL the qualifications Workers must meet to work on your HITs:
- HIT approval rate (%): 95
- Number of HIT's approved: 500
- NEVER require "MASTER". It will make your annotation complete very slowly.

Tuesday, September 24, 2013

Use Homebrew'ed emacs as default on Mac OSX


$ brew update
$ brew install emacs --cocoa


 To link the application to a normal Mac OS X location:
   brew linkapps
 or:
   ln -s /usr/local/Cellar/emacs/24.3/Emacs.app /Applications



[Reference] http://wikemacs.org/index.php/Installing_Emacs_on_OS_X

Tuesday, August 13, 2013

Turn on Web server and PHP in Apache for Mac OS

In order to use tubekit (http://www.tubekit.org/) on my mac,
I have turn on Web server and enable php in apache.

It's fairly simple; just follow the instruction in [1] and [2].

[Reference]
[1] http://www.macinstruct.com/node/112
[2] http://osxdaily.com/2012/09/10/enable-php-apache-mac-os-x/