This is default featured slide 2 title

Go to Blogger edit html and find these sentences.Now replace these sentences with your own descriptions.

This is default featured slide 3 title

Go to Blogger edit html and find these sentences.Now replace these sentences with your own descriptions.

This is default featured slide 4 title

Go to Blogger edit html and find these sentences.Now replace these sentences with your own descriptions.

This is default featured slide 5 title

Go to Blogger edit html and find these sentences.Now replace these sentences with your own descriptions.

Monday, July 1, 2013

How To Hack Saved Password In Firefox ?


HOW TO SEE SAVED FIREFOX PASSWORD



In this post i will share with you guys how to view saved password in Mozilla Firefox web browser. This trick can be helpfull if you get your hands on someone computer maybe your friends and he has saved password for certain websites like gmail, facebook,yahoo etc then you can easily view his password with very simple and easy trick that i am going to share today.


For demonstration purpose i have already saved a fake email password for facebook. But it will work on any website. So lets get started.

1. Open Firefox Web Broweser
2. Then Click on FireFox > Option > Option as shown in below picture


3. Then a POP Up box will appear, In that go to security and click on Show Passwords as show below.


4. Now click on website whose password you want to see ans click on show password as shown in below image. (Note: It will ask for confirmation so click on yes when dialog box appears)


5. Done, You have hacked password of your victim with few simple steps. You can try this at school computer lab if someone have saved their password.


You Have Done By This ............ Like Us On FaceBook For Stay Updated

Tuesday, June 25, 2013

சில பயனுள்ள இனையத்தளங்கள்

Thursday, June 20, 2013

How to Check if another instance of the application is already running


how it is possible to check whether another instance of the program is running and if so stop the application before loading if there is an existing instance of it.

Solution:


write at your Main method the following code to quit the method which will kill the currently loading process instantly.

if (System.Diagnostics.Process.GetProcessesByName(
 System.IO.Path.GetFileNameWithoutExtension(
  System.Reflection.Assembly.GetEntryAssembly().Location)).Length > 1)
 {
  MessageBox.Show("Application is already running");
  System.Diagnostics.Process.GetCurrentProcess().Kill();
 

How to: Reset the Visual Studio 2010 Environment Settings


To reset your Visual Studio settings:

1. From the Tools menu, click Import and Export Settings.



2. On the Welcome to the Import and Export Settings Wizard page, click Reset all settings and then click Next.


3. If you want to save your current settings combination, click Yes, save my current settings, specify a file name, and then click Next.
—or—
If you want to delete your current settings combination, choose No, just reset settings, overwriting my current settings, and then click Next. This option does not delete default settings, which will still be available the next time you use the wizard.


4. In Which collection of settings do you want to reset to, select a settings collection from the list.


5. Click Finish.
The Reset Complete page alerts you to any problems encountered during the reset.

---------------------------------------------------------
There are a couple of command line options to reset the environment
The command "devenv /resetsettings" will restore Visual Studio back to its original factory state.