Automatically syncing my Nokia Mobile with iSync
22.10.09 – 12:41I’m having this Nokia E51 mobile phone which basically has become my main brain extension to go, since i have abandoned all paper-based approaches. Best thing about the mobile is, that half of the day I’m on the go and I always have my mobile with me, be it on the train, on my bike or in the club. It is always not more than one quick reach into the pocket away. The other half of the day, I usually sit on my Laptop. Handling my schedule and tasks is easier on the big screen, so I prefer that when I have the chance for it. Problem is, that Laptop and Mobile have to stay in sync.
I use iSync for doing that, but the problem is, that I have to start it on my own (which I do forget always). So this is how to have regular scheduled syncing:
Put this in a file somewhere:
tell application "iSync"
synchronize
repeat while (syncing is true)
delay 5
end repeat
quit
Now go to your terminal, type in crontab -e (for hourly sync) and add:
0 * * * * osascript {full script path}
This did not work for me in the first place, but after calling osascript with arch -i386 osascript it worked on my MacBook Pro with Snow Leopard.
Now every full hour iSync pop-up in the background, syncs with my mobile and closes automatically. I do not get disturbed by it, but also do not get any error messages. Bluetooth has to be constantly turned on on mobile and mac. When it is not, sync just fails silently.
As long as I have not moved all my personal data in the cloud, which will make keeping in sync far more easier, this is a pretty convenient way.
For more infos:
An extended Version I based my approach on
Apple Script on Wikipedia
Crontab on Wikipedia

Sorry, comments for this entry are closed at this time.