Entrepreneur Geek

Nirav Mehta on life, technology and future

Archive for the ‘Apple’ Category

Official iPhone will be in India soon: Rs. 8000 for 8GB

with 41 comments

Update: iPhone 3G was launched in India. But with exorbitant price tags. 31K and 36K are just too much for this phone. I don’t suggest buying it at this price. Wait a few more months! The price will come down!

(Photo Credit: James Martin/CNET News.com)

The latest version of the iPhone will be launched around 11 July. And it will be available in India. The price will be $199 for the 8GB model, and $299 for the 16GB one. It will have 3G, GPS and much more!

Things look very exciting for the iPhone now! At the same time, Samsung is launching a competitor!

Time to dump Reliance? ;-)

Written by Nirav

June 10th, 2008 at 1:01 am

Posted in Apple,Mobile

Tagged with , , , ,

SuperDuper Backup

with 2 comments

Super Duper! If you are on Mac, you must get SuperDuper! and an External Harddisk for yourself. What is SuperDuper?

SuperDuper is the wildly acclaimed program that makes recovery painless, because it makes creating a fully bootable backup painless. Its incredibly clear, friendly interface is understandable and easy to use.

I discovered SuperDuper about two months ago while trying to install Leopard on my MacBook. I installed it through Vishal’s MacBook (my DVD drive has stopped working). Later I discovered that I screwed up Vishal’s machine, and it wouldn’t boot at all. I had to finally reinstall the OS on Vishal’s machine. Those were horrible 3 days, trying out everything I could to get the two systems to work correctly. But that story some other time.

But I learned my lesson (again!). I should regularly backup. There was too much trust on the machine and a high ego that was coming in the way so far. But I dropped all that.

Wester Digital My Book 500GB backup driveAfter much thinking, I got myself a Western Digital My Book 500GB external harddisk. (for INR 6000, that was a good deal too). It supports FireWire (so I can easily boot the Mac off it) and has plenty of space. I was thinking about a 200 or 300GB drive earlier, but went with 500GB because of the price.

And I feel safe about my data now. Everyweek, I connect the disk to my MacBook, run a full backup with SuperDuper! and I am done. It takes only a few minutes to backup the files that have changed from last week and I am certain I can easily access them now.

I don’t use TimeMachine. I think it’s waste of resources, and I don’t need versions of my file. If I delete a file, I delete it for good. I also think SuperDuper! is one of the easiest software for backup. The most important feature is that it leaves the backup drive bootable. So you can simply plug it in and get started – even if your whole disk crashed.

From a careless geek to a peaceful geek – the journey was remarkable! ;-)

Written by Nirav

June 4th, 2008 at 3:56 pm

Posted in Apple

Tagged with , , , ,

iPod Nano Calendar sync problem

with 5 comments

I haven’t figured out a solution to this yet.. I sync my iCal calendar events with iPod Nano 3rd Generation via iTunes. I can see the .ics files when I go to the folder in Finder. But the events do not display on the iPod.

This is puzzling me.. Is it because of the @ character iGTD adds to the calendar name? What could it be?

Anyone had a similar problem?

Written by Nirav

April 2nd, 2008 at 7:10 pm

Posted in Apple

Search and Replace Recursively using sed and grep

with 10 comments

I have done this so many times, still I find a new problem doing recursive search and replace each time! Here's one small shell script that puts the issues I had on the Mac doing search and replace on a directory recursively.

Save the file as rpl.sh, chmod it 755, and execute it like:

CODE:
  1. ./rpl.sh folderContainingFiles/ oldText newText

Does the job for me! This could be done in a single line, I got some ideas of using xargs etc, but all that did not work on my Mac (at least). So resorting to this.

CODE:
  1. #!/bin/sh
  2. grep -rl $2 $1 |
  3.  while read filename
  4.  do
  5.  (
  6.   echo $filename
  7.   sed "s/$2/$3/g;" $filename> $filename.xx
  8.   mv $filename.xx $filename
  9.  )
  10.  done

And yes, if you are going to use this, take a little time and do some argument checking before passing them around! Unless you think only a God user like you is going to use it!

Written by Nirav

December 29th, 2007 at 1:21 pm

Posted in Apple,GNU/Linux

Apple Product Evolution

with one comment

A poster Edwin Tofslie created, is making rounds on the web these days! I must admit, it's rather good!

Apple Product Evolution poster (700k)

This shows the evolution of Apple products over time. Looking at the poster, I started thinking about what computers I used in those years! I was still on PC AT and XT in 1990. Would get my hand on a BBC if I fought with batch mates in the school computer class. No mouse, very little color. "Floppy" disks to boot!

And in 1997 I got my Compaq Presario 1425. Then a few other ones in between. Then a Compaq laptop, a Powerbook and now a MacBook.

Do you feel like doing a poster like this of the gadgets you have owned? ;-)

Written by Nirav

July 30th, 2007 at 9:37 am

Posted in Apple,Technology