LiewCF.com: “Malaysia Apple Store Chinese New Year Sales” plus 1 more

LiewCF.com: “Malaysia Apple Store Chinese New Year Sales” plus 1 more


Malaysia Apple Store Chinese New Year Sales

Posted: 10 Jan 2011 09:34 PM PST


Malaysia Apple Store Chinese New Year Sales

Apple Store Malaysia may not have Black Friday discount but it will soon to have a Chinese New Year 1-day Apple Store shopping event at January 14, 2011.

Though no details available yet, we can assume the special discount is about the same as last Black Friday event. Have a glance at following screenshot taken from 9to5mac.com:

apple store black friday discount

Now you can add products into Apple Store’s cart and check out at January 14, 2011 for special discount.

Tip: Check Mac Buyer’s Guide before you buy Apple products!

HOW TO: Automatic Start Safari in Private Browsing Mode (Mac Only)

Posted: 10 Jan 2011 06:10 PM PST


safari private browsing modeMac OS X only: Tutorial to teach how to start Safari web browser in Private Browsing mode by default.

I use Google Chrome as my primary web browser and Safari to access my bank accounts. For security concerns, I would like to have “Private Browsing” mode by default when I launch Safari.

There is no option for auto private mode in Safari.

But, thanks to the Mac OS X’s Apple Script, we can write a script to instruct Safari to start in Private Browsing mode.

  1. Launch “AppleScript Editor” app found inside the “Utilities” folder under “Application” folder.
  2. Paste the following text in AppleScript Editor:
    tell application "Safari" 	activate end tell tell application "System Events" 	tell process "Safari" 	tell menu bar 1 	tell menu bar item "Safari" 	tell menu "Safari" 	click menu item "Private Browsing" 	end tell 	end tell 	end tell 	end tell end tell
  3. Save the script as an application then use the application to launch Safari with Private Browsing enabled.

[via Macworld]