Posts

My picture in Sony's Official website with SeinFeld

Image
Click here to view the original image.

PIN from Google Adsense Support Team

Image
Today, I get the PIN from Google , which is required to be verified before any payment is made. I have submitted my PIN to Google AdSense and all my hold is clear now. Here are the pictures of the mail that I got from the google . I'm a little excited about this. :)

Disable Notification in Windows Vista

Image
To remove the hassle of allowing user permission every time in Windows Vista is very easy. It is possible to disable notification in Windows Vista from User Account. 1. Go to the control panel and double "Users Accounts" icon.   2. Then, select "Turn User Account Control on or off" option in the bottom.     3. Finally, uncheck the option in the shown below and click ok, which will prompt you to restart your immediately. Restart your computer immediately to see the effect.

Keyboard shortcuts in Gmail

Keyboard shortcuts help you save time by allowing you to never take your hands off the keyboard to use the mouse. You'll need a Standard 101/102-Key or Natural PS/2 Keyboard to use the shortcuts. To turn these case-sensitive shortcuts on or off, click Settings , and then pick an option next to Keyboard shortcuts . Shortcut Key Definition Action c Compose Allows you to compose a new message. + c allows you to compose a message in a new window. / Search Puts your cursor in the search box. k Move to newer conversation Opens or moves your cursor to a more recent conversation. You can hit to expand a conversation. j Move to older conversation Opens or moves your cursor to the next oldest conversation. You can hit to expand a conversation. n Next message Moves your cursor to the next mes...

Thanksgiving Dinner at UTA, US.

Image
I had a dinner tonight. Its for Thanksgiving . Although the thanksgiving will be on the 27th of November, 2008, we had a early dinner. Local people from different state came to that dinner and prepare traditional American food for us. For the first time I taste Turkey and that was good and I liked it very much. Also, I met an American family there and some other American guys. We played Table Tennis there also. Here is a picture of Turkey :P. That was the most interesting part of the Dinner. :D

You Tube-Live, 2008

Image
Watch You Tube Live on the 22nd of November, 2008. This is a live streamed event. Click on the image to see more...  

Allow only one user in ASP.NET using web.config

  Put the domain in the code below and the user name that you want to give the permission to. This works fine for me. You can add multiple user if you want to by adding the allow tag multiple times.   <authentication mode="Windows" /> <authorization> <allow users="domainname\username" /> <deny users="*" /> </authorization>