Posts

Showing posts from July, 2014

Add Your Name (or) Application to right click Of My Computer

Caution. As it    is related to Windows registry it    can be dangerous. So, Try this at   you r own risk. To write your name on right click application Please follow the steps 1. Copy/ Paste the following code in Notepad And then Save it as   .reg Windows Registry Editor Version 5.00 [HKEY_CLASSES_ROOT\CLSID\{20D04FE0-3AEA-1069-A2D8-08002B30309D}\shell\Registry Editor] @="Your name or Name of the Application" [HKEY_CLASSES_ROOT\CLSID\{20D04FE0-3AEA-1069-A2D8-08002B30309D}\shell\Registry Editor\command] @="Location of    the Application" 2. Now edit it and then Type your name In Eample : [HKEY_CLASSES_ROOT \CLSID\{20D04FE0-3AEA-1069-A2D8-08002B30309D}\shell\Registry Editor] @="AHK" 3.    If you want to get any application, once you click your name or name Of    application Then , type the location Of the application Which you want to open In : [HKEY_CLASSES_ROOT\CLSID\{20D04FE0-3AEA-1069-A2D8-08002B30309D...

Keyboard Shortcuts List for Windows 7 and Windows Vista

Image
If you spend as much time in front of a computer as I do, learning a shortcut which can save a few seconds off a common task can be significant. Throw in the fact that I’m also a bit lazy… and it should explain why I’m always looking around for new Keyboard Shortcuts. The majority of Windows  7 keyboard shortcuts remain the same from Windows Vista and XP (thank you for that Microsoft), so many of the shortcuts I’ve compiled in this post should look familiar. If you have a favorite I’ve missed or you find a new one however, please be sure to tell me about it in the comments so I can add it to the list!  Windows 7 and Windows Vista Keyboard Shortcuts Windows logo key:: Open or close the Start menu  Windows logo key + Left Arrow Key:: Snap current window to left side of screen for side-by-side viewing  Windows logo key + Right Arrow Key:: Snap current window to left side of screen for side-by-side viewing  Windows logo key + Left Arrow 2x:: Snap current window left...

Some Tips And Tricks in Windows

1.TRICK TO CREATE FOLDERS WITHOUT NAME =>Click on a FOLDER =>Right click and goto rename option =>Delete the old name =>Pressing ALT key type 0160 =>Now press enter =>You have created a folder without name 2.TRICK TO ADD YOUR NAME IN TASK BAR GOTO =>Start =>Control Panel =>Regional & Language Options Customize =>Time =>AM Symbol =>Enter your name Thats it,your name is added to your Task Bar 3.TRICK TO CREATE A AUTORUN CD =>Open notepad and type [autorun] OPEN=setup.exe ICON=iconname.ico =>save as autorun.inf on the desktop Write ur CD with the autorun file, ur desired icon for the CD & the setup file. iconname.ico is the name of the icon file which is desired for ur CD. =>Setup.exe is the name of the setup which u want to make it autorun. 4.TRICK TO CHANGE THE INTERNET EXPLORER TITLE Follow these simple steps 1)=>Go to Start 2)=>Type Regedit 3)Go to HKEY_CURRENT_USER\Software\Microsoft\Internet Explorer\Main\Window Title 4)Ente...

10 Awesome Google Search Tricks.....

Image
You may be spending hours in searching with Google.So learn some Google search hacks to get effective search results. 1. Identify Local  Time  for Any City  in the World using Google     If you want to know current local time in a particular city, use the following method. To see the current           local TIME in INDIA do the following.     time india 2. Search  for Keywords with Similar Meaning using   Google     Instead of searching for only the given word, using ~ before the keyword you can instruct Google to             search for webpages with the exact given word or the words which has same meaning. In the following         example, giving ~tutorial also searches for keywords guide, manual, reference etc.     Linux Installation ~tutorial 3. Match Any Single Word  in the Search Using * ,While searching, if you are not sure about which ...

How to Lock Your Computer Using Mouse

Image
Alt+Ctrl+Del or Windows+L to lock our PCs.Instead of trying those windows keyboard shortcut keys to lock Pc, lets now tryout something new. Some might have already know this trick already… 1. Just Right click on the desktop, point to New and click Shortcut. 2. In the Create Shortcut dialog box, copy the following into the ‘Type the location’ of the     item text box: “ rundll32 user32.dll,LockWorkStation ” remove quotes while typing. 3. Click Next. 4. In “Type a name for this shortcut”, type LOCK MY  PC and Click Finish 5. Now just double click on the icon, your desktop will be locked. Though this is a age old trick.It makes some difference to newbies

Why Mark Zuckerberg’s Choose 4

Image
Adding the Number 4 to the End of Facebook’s URL will Automatically Redirect you to Mark Zuckerberg’s Profile, Just in case you’re not familiar with the term “URL” – type in this web address: www.facebook.com/4. We’re not sure why Zuckerberg chose the fourth ID number instead of number 1, but this is a quick and easy way to get to the original Facebook wall that is owned by its creator. Adding the numbers 5 or 6 to the end of the URL will take you to the respective profiles of Chris Hughes and Dustin Moskovitz, Facebook co-founders and Mark’s former college roommates. Tacking a 7 onto the web address leads to the profile of Arie Hasit, another good friend of Zuckerberg from his days at Harvard. Though this is a age old news.It makes some difference to newbies

Splitting the String TO Character Array using JAVA.........

Hi Friends this program will demonstrate the How to " Split String to Character Array ". Save the File SpiltStringTOCharArray.java class SpiltStringTOCharArray { public static void main(String[] args) { String msg = "HELLO"; char a[]=msg.toCharArray();                 int i=0;          for( i=0;i<msg.length();i++)               {                    a[i]=msg.charAt(i);            System.out.println("a["+i+"] value is : "+a[i] );                } } } OUTPUT : a[0] value is : H a[1] value is : E a[2] value is : L a[3] value is : L a[4] value is : O I hope this LOGIC will help full to all........

Convert Binary TO String Using JAVA.........

Hi Friends This Program Will Demonstrate the Logic of Binary TO String Conversion.... Save The File BinarytoStr.java import java.math.BigInteger; class BinarytoStr { public static void main(String[] args) { String z = "0100100001100101011011000110110001101111"; int len = z.length()/8; String orgstring = ""; byte[] bval = new BigInteger(z, 2).toByteArray(); for(int t = 0;t<len;t++) { char c1 = (char)bval[t]; orgstring = orgstring.concat(String.valueOf(c1)); } System.out.println("Original String : " + orgstring); } } OUTPUT :  Original String : Hello I hope this logic will helpful to all...........

Convert String to Binary AND Binary To String Using Java......

Hi Friends this program will  demonstrate   the logic for " How To Convert Sting to Binary AND Binary To Original String "  Save The file Binary.java class Binary { public static void main(String[] args) { String msg = "Hello";   //coverted String...                //conversion of String To Binary....... byte[] bytes = msg.getBytes();         //getting byte values StringBuilder binary = new StringBuilder(); int msgg = 0; for (byte b : bytes) { int val = b; for (int i = 0; i < 8; i++) { binary.append((val & 128) == 0 ? 0 : 1);    val <<= 1; } } System.out.println("'" + msg + "' to binary: " + binary);                                //Conversion of Binary to Original String..........                 String origmsg = ""; ...

String To Binary Conversion using java.....

Hi Friends, Here the logic for " String to Binary(8 bit) " conversion Save the file Binary.java class Binary { public static void main(String[] args) { String msg = "Hello";           //coverted String... byte[] bytes = msg.getBytes();             //getting byte values StringBuilder binary = new StringBuilder(); int msgg = 0; for (byte b : bytes) { int val = b; for (int i = 0; i < 8; i++) { binary.append((val & 128) == 0 ? 0 : 1);    val <<= 1; } } System.out.println("'" + msg + "' to binary: " + binary);        } } I hope it is usefulll....