Updated 2010-07-05.
The notes here are accumulated everytime I got a problem with Mac. Most of the time, the answer could be found in google search results.defaults write com.apple.Safari IncludeDebugMenu 1
sudo newfs_hfs -v 'Windows' /dev/disk0s3
| Command+Shift+3 | Capture entire screen and save as a file |
| Command+Control+Shift+3 | Capture entire screen and copy to the clipboard |
| Command+Shift+4 | Capture dragged area and save as a file |
| Command+Control+Shift+4 | Capture dragged area and copy to the clipboard |
| Command+Shift+4 then Space bar | Capture a window, menu, desktop icon, or the menu bar and save as a file |
| Command+Control+Shift+4 then Space bar | Capture a window, menu, desktop icon, or the menu bar and copy to the clipboard |
After several weeks, I install Software Updates, and it suddenly works again.
First, I dislike the anti-aliase blur like fonts when I am writing code. I kind of get used to clear little letters. Download UCS-fonts . Download FontForge and convert bdf to apple font file. 7x14 looks good.
(setq default-font "-apple-Fixed-medium-normal-normal--14--*-*-m-0-iso10646-1") (setq mac-allow-anti-aliasing nil)Small fonts allow more content especially if you don't have an extended display.
In snow leopard, you have to run the following command in terminal:
defaults write org.gnu.Emacs AppleAntiAliasingThreshold 100
Just like all standard preferences it is under your
~/Library/Preferences directory with a file name matching the
applications bundle identifier.
~/Library/Preferences/com.apple.Xcode.plist
I don't know why, but when writing code in an IDE, I prefer Fixedsys font. Maybe it is because that when I learned to program, we were using VC6. And that makes a strong impression to me that code should be written that way. You can find an open source fixedsys font here.
The colors I used:
| background | 255 255 255 |
| comment | 0 128 0 |
| strings | 255 0 0 |
| keywords | 0 0 255 |
| selection | 255 255 0 |
IMHO, VC6 and VB6 has the best IDE design, clear and concise. Especially VB6, I think it is even better than VC6.
CTRL + COMMAND + C;