Hong Kong Plaza Apple Store in Shanghai

I visited the Hong Kong Plaza Apple Store in Shanghai on May 17th. It is two floors with all the products show downstairs with a small video training area. Upstairs includes the Genius Bar, accessors and training. I was stopped from taking pictures inside after the first couple.

This slideshow requires JavaScript.

Bought A MacBook Air at the Hong Kong Apple Store

I visited the Hong Kong Apple Store this past weekend. It has the same look and feel of every Apple Store. I decided to pick up an 11″ MacBook Air and have found it to be a complete iPad replacement for me. Hundreds of good reviews are available online so I will not do another but this is the best couch computing device I have ever used. It is light, cool and sits up on its own.

I will be visiting all three Apple Stores in Shanghai soon, so check back.

This slideshow requires JavaScript.

If Simplicity Sells, Why Didn’t Macs?

John Gruber on Apple selling more iOS devices in the last year than Macs in the last 28 years:

It’s getting harder and harder to put iOS’s success in perspective. The lesson: simplicity sells.”

It makes me wonder why so many people declined to buy Macs compared to Microsoft OS based PCs. Macs have always been simpler than any version of Windows.

It’s true that iOS is simpler than Android or other mobile operating systems but there must be some other magic behind the success of the iPhone, iPad and iPod Touch that no one else has been able to match thus far.  

Is Apple Deprecating the Mouse Like the CD-Rom and Floppy Disk Before?

TheVerge on using the Notification center in OS X 10.8 Mountain Lion:

“…there’s no key command to invoke the panel, and the Magic Mouse won’t have a gesture for it either. You’re stuck clicking on the icon unless you have a trackpad.”

This means there is at least one new feature in OS X 10.8 that will not work with a Magic Mouse gesture. Apple has been pushing touch since the introduction of the original iPhone and have been slowly bringing touch gestures to the Mac using the Magic Mouse and multi-touch trackpads. Will Apple start selling their desktop iMac, Mac Mini and Mac Pro with the Magic Trackpad as the default input device in preperation to stop selling the Magic Mouse?


AppleScript to Act Like a UPS Monitor

If you have ever bought a cheap (or Chinese) UPS for your Mac’s battery backup, you may find that the UPS either has no USB connection, no software or your Mac just does not recognize the device. The purpose of having a UPS is to have backup power in case of power failure but if you don’t have software to tell the Mac to shut down when your running on battery power than your Mac may still shut down unexpectedly when the battery runs out. 

To Fix this, I have created an AppleScript that will monitor your your connection to another device on your network and when needed shut down. Let me explain; Not everything needs to have battery backup. I dont have my ADSL modem on battery backup so if the power goes out, I lose my internet and my connection to the modem. My AppleScript pings the modem every minute and if there is no response for 3 minutes from the modem, the computer shuts down preventing bad things from happening. 

Copy the code below, paste into AppleScript and save as an Application. Then set this to startup when you log into your computer. 

The Only change that needs changed is the password for shutting down the computer and the IP address of a device on your network that also loses power during an outage. 

 


set t to 0
repeat until t = 3
delay 60
if (do shell script "ping -c1 172.16.10.66 2>&1; exit 0") contains "1 packets received" then
set t to 0
else
set t to t + 1
end if
end repeat
do shell script "date > $HOME/Desktop/LastPowerOutage.txt"
do shell script "shutdown -h now" password "******" with administrator privileges

 

Move Your Gmail Signature Above the Reply To Message

Normally when you reply to a message in Gmail your signature is placed all the way at the bottom below both your response and the original message. I like my signature right under my response. Luckily you can turn on this feature in labs. 

From ithemes.com:

 

  1. Go to your Settings.
  2. Click the Labs link on the far right.
  3. Scroll down to “Signature Tweaks” and select “Enable.”
  4. Voila! It refreshes Gmail so you lose any open chat windows, and you’re good to go.

AppleScript To Help With iTunes Media on Network Drives.

I created this AppleScript because I wanted to store my iTunes Media from a shared Windows box but run iTunes on my Mac becuase iTunes is so GD awful on Windows. What this script does is the following:

  1. Ping the IP address of the Windows Box (172.168.10.5)
    1. If the computer is Un-reachable you get a pop-up asking to Retry or Cancel. 
    2. If the computer is online the process continues. 
  2. Mount the shared volume. (I have 2; Storage and Storage2)
  3. Check that the shared folder(s) acutally mounted to the Finder.
    1. If one or both disks do not mount than an error tells you which one is not there and gives you the option to Cancel or Retry.
    2. If all disks are mounted to the Finder, iTunes is launched. 

You are welcome to download this AppleScript from the link below and change as you need or copy and paste below code into AppleScript, make changes and save as Application. 

You will need to change the following information:

  • IP address of the computer you share files from. (Mine is 172.16.10.5)
  • Name of the computer you store media on.  (Mine is WHS)
  • Change network drive from SMB to AFP or NFS if needed.
  • Change the name of the shared folder(s).  (Mine are Storage and Storage2)

Downlaod from HERE.

 

set x to 0
set t to 0
set s to 0
repeat until t = 1
try
set t to 1
do shell script "ping -c1 172.16.10.5"
on error number 2
set decision to display dialog ("Unable to start iTunes because the server 'WHS' can not be found. Please check that the server is turned on and connected to the network then press 'Retry'.") buttons {"Retry", "Cancel"} default button 1 with icon note
if button returned of decision is "Retry" then
set t to 0
end if
end try
end repeat
repeat until x = 1
try
mount volume "smb://172.16.10.5/Storage"
mount volume "smb://172.16.10.5/Storage2"
end try
#delay 5
tell application "Finder"
if exists disk "Storage" then
set s to s + 1
end if
if exists disk "Storage2" then
set s to s + 2
end if
if s = 3 then
tell (launch application "iTunes")
tell application "iTunes"
activate
end tell
end tell
set x to 1
else if s = 2 then
set decision to display dialog ("Unable to start iTunes, cannot connect to drive 'Storage'.") buttons {"Retry", "Cancel"} default button 1 with icon note
if button returned of decision is "Retry" then
set s to 0
end if
else if s = 1 then
set decision to display dialog ("Unable to start iTunes, cannot connect to drive 'Storage2'.") buttons {"Retry", "Cancel"} default button 1 with icon note
if button returned of decision is "Retry" then
set s to 0
end if
else if s = 0 then
set decision to display dialog ("Unable to start iTunes, cannot connect to network drives.") buttons {"Retry", "Cancel"} default button 1 with icon note
if button returned of decision is "Retry" then
end if
end if
end tell
end repeat

 

Have A Giant Screen On Your Mac? Here Is How To Make Your Mouse Faster

Searching the web I found a great little write up on how to increase your mouse speed beyond the limit of the Mouse Control Panel in System Preferences. For some strange reason, Apple limits the maximum speed and the mouse on OS X just feels sluggish. Using the Terminal application, found in the Applications/Utilities folder, you can adjust the mouse speed.

1st, enter this command to see what the current setting is:

defaults read -g com.apple.mouse.scaling

this will return a 3 if you currently have the settings at maximum in System Preferences.

To Change it to something a little faster, type this and hit Enter:

defaults write -g com.apple.mouse.scaling  5.0

Be careful not to go overboard as it will be hard to control and undo if you do. Start with 5 and if you want faster, try 6.

You will need to Log Out and back in or restart your computer for the changes to take affect. 

How to Delete Photo Stream Photos from iCloud and iOS 5 (Updated)

Update: Looks like iOS 5.1 beta 2, recently released to Devs, will allow users to individually delete photos from the Photo Stream on your iOS devices. This is a big change from having to reset your entire stream using the iCloud.com website. 

With the release of iOS 5 and iCloud Apple introduced Photo Stream (or is it PhotoStream?). Photo Stream allows you to take a picture with your iPad, iPhone or iPod Touch and have it automatically upload to iCloud so all your devices can see it. The problem so far with Photo Stream is that there has been no way to delete photos from there. UPDATED BELOW

Apple will delete photos automatically from Photo Stream after 30 days or after 1000 pictures but If I want to delete everything there is a way to do it on iCloud.com, although non functional as of yet. 

To reset your Photo Stream, login to iCloud.com and click on your name on the top right corner by the Sign Out button.

 

 

 

 

 

 

 

 

 

Then Click on Advanced.

 

 

 

 

 

 

 

 

 

 

Click Reset Photo Stream.

 

 

 

 

 

 

 

 

 

 

The Confirm by clicking the Reset button.

 

 

 

 

 

 

 

 

 

 

This process does not seem to be working yet but should be implemented soon. Hopefully there will also be a way to remove individual pictures from Photo Stream in the future. On Second Look, It does work, See update below.