Posts tagged apple

Rumour Roundup: the Apple Tablet

A cool mockup/rumour guide about the alledged Apple Tablet:

grab-001.png

Syncing my iPhone with Snow Leopard Server with Address Book — Not!

I have some contacts I wanted to share with other people so I figured let’s put them into Address Book Server on my Snow Leopard Server. I moved the group on to the server and everything was great. Contacts show up in Address Book on my macbook.

I synch my iPhone as usual. Next day I get a call from a familiar number but no name (I can’t remember phone numbers if my life dependent on it)! I check the contacts on my iPhone and none of the ones I moved are there!

After much fiddling and googling it turns out it doesn’t work! That doesn’t make any sense. How could Apple fail at something so basic? I imagine they want the iPhone to sync remotely to Address Book Server much like iCal and mail. Reasonable philosophy but it doesn’t do that! In the interim, I’d expect iTunes to be able to sync — after all, it’s in your address book. Not only that, they already handle Google sync using CardDAV, right? So why isn’t it in iTunes until they get it working on the iPhone!

From ForkBombr:

> Sadly, this isn’t the case. Address Book Server works beautifully between Macs. It’s fast and reliable. However, the iPhone OS doesn’t support CardDAV, the technology behind Address Book Server, meaning these contacts cannot be synced over the air to an iPhone like iCal or Mail data.

And the relevant discussion:

> ABS does not sync OTA or have push changes. The iPhone supports LDAP access. This means you can lookup contct info stored in your WGM for users in your company. It does not support CardDAV.

ABS is Address Book Sync; OTA is over-the-air; WGM is Work Group Manager (aka Apple’s LDAP server); CardDAV is how to share contact information.

Xcode: notes

To reset Xcode to the default settings:

$ defaults delete com.apple.Xcode
$ rm -rf ~/Library/Application\ Support/Xcode

First, I dislike having a lot of popup windows so I set the layout to “All-In-One” to keep most things within a single window:

grab-001.png

And my usual indentation style:

grab-003.png

I like having the files autosaved on build:

=grab-007.png

Seeing /opt in Mac OS X Finder

From How to make /opt visible in Mac OS X Finder:

$ sudo SetFile -a v /opt
grab-001.png

SproutCore

I’d looked into SproutCore and sort of liked the idea. I see Apple is doing more with it — the gallery of MobileMe looks pretty cool.

Here’s an interesting video (jump to the 20min point and listen for about 20min) that argues why we should move more business logic to the browser and use a higher level framework like SproutCore.

Gmail, Apple Mail, and IMAP

I’d noticed my Apple Mail wasn’t always getting new messages in a timely manner. My iPhone would frequently get it before Mail!

  • Setup gmail, apple mail account as per google’s suggestions
  • These imap settings from google combine how gmail works with Apple’s mail. Read the extra details and the settings make sense.
  • It took 25 minutes to download all the email

While I was at it, I went ahead and setup syncing with google calendar. Recently, Google and Apple improved it so it could be two way:

Finally, it turns out that contact info between Apple’s Address book and gmail (and Yahoo!, for that matter) are doable:

Address Book002.png

Mac OS X (10.5), NFS, and Linux

I got around to getting my MacBook to mount an NFS filesystem from my Linux server. There’s a nice set of instructions on using the Directory Utility to do so. The problem stumping me was:

kernel: nfsd: request from insecure port (10.0.1.197:57367)!

And the bit of magic that eluded me before was adding the “-P” option:

Directory Utility.png

Unfortunately, my uid on my MacBook is 500 and on my Linux server it is 1000.
There’s an option for more recent implementations of NFS that allow the
/etc/exports file to include a ‘map_static=”/etc/nfs_map”‘ option to specify a
uid mapping but it’s not available in OpenSuse.

Mac OS X hints

Ran across this nice hint to make it so the Unix path shows in the title of Finder windows:

defaults write com.apple.finder _FXShowPosixPathInTitle -bool YES

Courtesy of a http://www.itbusiness.ca

Application