Sunday, December 15, 2013

Bring back New Tab page in Google Chrome browser

No comments:
Goto:
1. chrome://flags/
2. Search for: Enable Instant Extended API Mac, Windows, Chrome OS
3. Select Disable from the drop-down below.
4. Click the Relaunch now button below

Wednesday, July 10, 2013

God Mode in Windows 7

No comments:
Hello Friend,
Did you tried God Mode in windows. Its fun..
Just create a folder with the name as below.
GodMode.{ED7BA470-8E54-465E-825C-99712043E01C}

Saturday, May 4, 2013

share WiFi internet in windows to another device - Hotspot

No comments:

Create using the following command in command prompt with administrator privileges:
netsh wlan set hostednetwork mode=allow ssid=myhostedwifi key=mypassword123* keyusage=persistent 


To start:
Type "netsh wlan start hostednetwork" in notpad without " and save as start.bat

To Stop:
Type "netsh wlan stop hostednetwork" in notpad without " and save as stop.bat

Run above bat files with administrator privileges.

Then share your internet connection with Microsoft Virtual WiFi Miniport Adapter in Network Connections

Thursday, February 21, 2013

Scan files in hard disk

No comments:
C# sample code below:


class Program
    {
        static void Main(string[] args)
        {
            try
            {
                string dir = @"C:\";
                TreeScan(dir);
                Console.ReadLine();
            }
            catch(Exception e)
            {
                Console.WriteLine("Error:" + e.Message);
                Console.Beep();
                Console.ReadLine();
            }
        }

        private static void TreeScan(string dir)
        {
            Console.WriteLine();
            Console.WriteLine("Files in: " + dir);
            foreach (string f in Directory.GetFiles(dir))
            {
                Console.WriteLine(f);
            }
            foreach (string d in Directory.GetDirectories(dir))
            {
                Console.WriteLine(d);
                Console.WriteLine();
                Console.WriteLine();
                TreeScan(d);
            }
        }
    }

Saturday, January 19, 2013

How to set filters in Gmail to move Facebook and other automated emails away from your inbox

2 comments:

Go to Gmail Settings by clicking the gear ion on the top left
  • Take Filters tab
  • On the page bottom click Create new filter
  • In the From filter type facebookmail.com
  • Click Create filter with this search » and in the next screen check skip the inbox and Apply the label and create a label by typing a label name like Facebook mails and click the Create button
  • Select the Checkbox Also apply filter to # matching conversations and click the Create filter button.

Repeat the above step with m.facebook.com

You can do these steps for: foursquare.com, dropbox.com, twitter.com, linkedin.com, soundcloudmail.com