Nokia E61i lost all contacts

I feel I made a mistake by choosing the Nokia E61i. The so called Enterprise phone does not give a damn warning when deleting all contacts when uninstalling the BlackBerry Connect software. The cost – lost all my contacts and calendar entries on the phone.

Luckily I have an old backup of my 6630 to give me some peace.

The phone does not come pre-installed with BlackBerry connect. You have to manually initiate the setup. I did it and paid the price for it.

But not a single warning anywhere. I’m afraid Nokia loosing its trustworthiness !

Nokia E61i finally got my new wi-fi phone

Its almost been 2 years with my Nokia 6630, so I decided to go for a upgrade this time.

Nokia E61i is a phone which meets most of my requirements which are as follows

  • slim form factor
  • plenty of connectivity options – Wi-fi, Bluetooth, IR, GPRS , EDGE , 3G ( which is not coming to India anytime soon :( )
  • long lasting battery
  • large screen
  • Symbian OS
  • email and browsing support

Sad points

  • I don’t mind the 2Megapixel Camera which is not as good as the Sony Ericsson phones.
  • Bluetooth is still version 1.2 and lacks stereo support.
  • Audio output in earphones is mono. Lacks a headphone/headset jack.
  • Memory card is not hot swappable.

But on the whole , I am happy to have got this phone . Much better than the 6630 in many ways. After all it’s only a day old.

Head over to FoneArena for the specs : Nokia E61i

Desktop Blogging with Windows Live Writer

Windows Live Writer is a really cool tool from Microsoft that lets you blog from your desktop. I have been very lazy to update my blog for the following reasons

  • I have my blog open inside a browser tab in the middle of many other tabs, when I come across something interesting on some other site, I just don’t feel like updating my blog.
  • I decided to give Desktop blogging a shot

Lets see how it goes. Windows Live Writer looks really a good blogging client.

Building a Visual Studio solution without opening Visual Studio

MS Visual studio is a real memory hog. Any developer would crib about that. I just don’t want to open one instance of the IDE for each project. This cool code which you see below is a batch file which builds the solution for you and shows the result of the same.

C:
CD \Program Files\Microsoft Visual Studio 8\VC
call vcvarsall.bat
devenv C:\projects\MySolution.sln /build
pause

Why Subversion SVN can be a pain

I was faced with a really annoying situation today. I was tempted to try Open-Source source control after a lot of VSS and TFS usage.

I tried CVS using WinCVS.

SubVersion has become famous recently and just wanted to give it a try. There’s also a pretty Windows client called TortoiseSVN Now after moving the stuff into the repository , I saw that both CVS and SVN create directories called ‘CVS’ and ‘.svn’ everywhere inside the project. Now I wanted to FTP the files to my site. But a crazy bug bit me with SVN. I saw even the damn .svn directories being moved to the site ? WTH ?

I wanted to move only the source code and not the file version information.

2007-06-09_203058.png

This blog entry came to my rescue Shell Command – Remove SVN Folders

It’s a Windows hack which adds a context menu into Windows explorer

I modified the script a bit to add CVS removal support

Windows Registry Editor Version 5.00

[HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Folder\shell\DeleteSVN]
@=”Delete SVN Folders”

[HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Folder\shell\DeleteSVN\command]
@=”cmd.exe /c \”TITLE Removing SVN Folders in %1 && COLOR 9A && FOR /r \”%1\” %%f IN (.svn) DO RD /s /q \”%%f\” \””

[HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Folder\shell\DeleteCVS]
@=”Delete CVS Folders”


[HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Folder\shell\DeleteCVS\command]
@=”cmd.exe /c \”TITLE Removing CVS Folders in %1 && COLOR 9A && FOR /r \”%1\” %%f IN (CVS) DO RD /s /q \”%%f\” \”"

2007-06-09_204454.png

Don’t try these scripts unless you are damn sure what you are doing :D The above scripts deletes all folders named .svn and CVS in the folder inside which you call it . It will wipe off all versioning info, so better be careful