Saturday, March 13, 2010

பன்னிரண்டு ஜோதிர்லிங்கங்கள்

பன்னிரண்டு ஜோதிர்லிங்கங்களாவன
1. "சோமநாதம்" - குஜராத்திலும்,
2. வைத்தியநாதம்,
3. பீமசங்கரம்,
4. நாகேசம்,
5. த்ரயம்பகம்,
6. குஸ்மேசம் முறையே - மகாராஷ்டிரத்திலும்,
7. ஸ்ரீசைலம் - ஆந்திராவிலும்,
8. ஓங்காரம்,
9. உஜ்ஜையினி முறையே - மத்தியப் பிரதேசத்திலும்,
10. விச்வேசம் (வாரணாசி),
11. கேதாரம் முறையே - உத்திரப் பிரதேசத்திலும்,
12. இராமேசுவரம் - தமிழ்நாட்டிலும் உள்ளன.

Friday, March 5, 2010

Never Worry how many people Dislike you

A man hated his wife's cat and he decided to get rid of it. He drove 20 blocks away from home and dropped the cat there. The cat was already walking up the driveway when he approached his home.

The next day, he decided to drop the cat 40 blocks away but the same thing happened.. He kept increasing the number of blocks but the cat kept coming home before him.

At last he decided to drive a few miles away, turn right, then left, past the bridge, then right again and another right and so on until he reached what he thought was a perfect spot and dropped the cat there.

An hour later.... The man calls his wife at home and asked her, "Jen is the cat there?" "Yes, why do you ask?" answered the wife.

Frustrated the man said," Put that damn cat on the phone, I am lost and I need directions to reach home!!!

Moral:

"How much ever we dislike somebody, someday we will need their assistance. So never worry how many people dislike you... "

The Treasure of Today

The way this day goes, begins with you. The way this day
Goes, begins right now.

Your attitude can make today a great one. Your actions can
Make this day an effective and fulfilling time.

It all begins right now, with how you choose to see it. It
All begins right where you are, with what you choose to do.

There is enormous power in your hands right now. You have
The power to put meaning, fulfillment and value in this day.

Feel the power of your most beautiful purpose, and get
Yourself going. Make some steady progress, and keep it up.

The treasure of today is here to be unlocked by who you are
And what you do. Now, make that treasure yours.

Tuesday, February 16, 2010

How to copy SVN repository from one machine to another?

How to copy SVN repository from one machine to another?

SVN repository can be moved from one machine to another without considering the change in version numbers. The following are the steps to do that.

1. Dump the whole repository.

a. Check the latest revision in the SVN

Command: svnlook youngest REPOS_PATH

Example: svnlook youngest /opt/UNICODESVNREPOS

b. Dump the repository until the latest revision.

Command: svnadmin dump REPOS_PATH > DUMP_TEXT_FILE

Example: svnadmin dump /opt/UNICODESVNREPOS > UNICODESVNREPOS_dump.txt

2. Load the dumped repository to the new repository.

a. Create a new repository.

Command: svnadmin create [Options] REPOS_PATH

Example: svnadmin create --fs-type fsfs UNICODESVNREPOS

b. Load the repository with the dump.

Command: svnadmin load REPOS_PATH <>

Example: svnadmin load UNICODESVNREPOS <>

This is a simple way to do the processing at the whole repository level. Processing with each projects in the repository is also possible. An additional command is required to do this process and that specific command is “svndumpfilter”.

References:

http://svnbook.red-bean.com/en/1.4/index.html

http://svnbook.red-bean.com/en/1.4/svn.reposadmin.maint.html

Monday, February 1, 2010

A note on Navapashana

Navapashana idol, made by Siddhar Bogar, is the speciality of the temple that belonged to the ninth century.
According to legend, Siddhar Bogar, in consultation with Sage Agasthiya, blended nine kinds of herbs - Veeram, Pooram, Rasam, Jathilingam, Kandagam, Gauri Pasanam, Vellai Pasanam, Mridharsingh, Silasat – to create the main deity. He started doing abishekam with milk, rose water, curd and tender coconut. This tradition has been followed since then.

Friday, December 18, 2009

How to identify the overwritten buffer's in C/C++ programming.

How to identify the overwritten buffer's in C/C++ programming.

Usually when we allocate memory using malloc(),
CRT does that with the hex value "FD" before and
after the memory being allocated. We can do the
check of them by looking into the memory view of
that allocated particular memory address.

While writing to the buffer if we examine
these memory locations, we can able to identity
whether we are using memory over than the allocated
size.

This is a simple method or a quick examining
method to override memory issues becuase of wrong
allocation.

Wednesday, December 2, 2009

Error in AVG Exchange Extension

I am using Outlook 2007. I have been left pop up with the following errors, while starting Outlook after recent updates from AVG.

The Add-in "AVG Exchange Extension" (C:\PROGRA~1\AVG\AVG8\avgxch32.dll) cannot be loaded and has been disabled by Outlook. Please contact the Add-in manufacturer for an update. If no update is available, please uninstall the Add-in.

The Add-in "AVG Exchange Extension" (C:\PROGRA~1\AVG\AVG8\avgxch32.dll) cannot be loaded and has been disabled by Outlook. Please contact the Add-in manufacturer for an update. If no update is available, please uninstall the Add-in.

The Add-in "AVG Exchange Extension" (C:\PROGRA~1\AVG\AVG8\avgxch32.dll) cannot be loaded and has been disabled by Outlook. Please contact the Add-in manufacturer for an update. If no update is available, please uninstall the Add-in.

Inorder to disable the AVG Exchange Extension I have followed the following steps:

1. Open Outlook 2007.
2. Follow the path. Tools -> Trust Center -> Add ins(in the left column).
3. Select "Client Exchange Extensions" in the combo box at the right hand side bottom and press "Go".
4. You will get the Pop-up of extensions listed with the outlook from various clients.
5. Disable "AVG Exchange Extension" by unchecking that from the checkbox list.
6. Click Okay and restart Outlook to confirm error free.

Enjoy error free Outlook.......

IMPORTANT:

It is better to follow if you have outlook configured for Official mails. Usage of other mail ids are at your own risk.