Skip to main content

Posts

Showing posts from 2013

Handling of Andriod Phone with magic Tricks...

Android Phone Tricks 1. Complete Information About your Phone  *#*#4636#*#*  This code can be used to get some interesting information about your phone and battery.   2. Factory data reset  *#*#7780#*#*  This code can be used for a factory data reset. It'll remove following things:  Google account settings stored in your phone  System and application data and settings  Downloaded applications  It'll NOT remove:  Current system software and bundled application  SD card files e.g. photos, music files, etc.  Note: Once you give this code, you get a prompt screen asking you to click on "Reset phone" button. So you get ...

Top 10 computer mouse tips everyone should know

Top 10 computer mouse tips everyone should know Mouse clickMost computer users don't take full advantage of the computer Mouse. Below are computer mouse tips and secrets that help you get the full potential of your computer mouse and increase your overall productivity while on the computer. Shift key and mouse click Bonus tip: Holding down the Alt key while dragging and highlighting text in a text editor will allow you to selectively highlight text. This can be useful if your paragraph or other text is in a column. Many text editors and programs allow you to highlight all or portions of text using the Shift key and the mouse. For example, place the cursor at the beginning of a paragraph in a text editor, hold down the Shift key and click at the end of the paragraph to highlight the full paragraph. Take full advantage of the scroll wheel Today, everyone is familiar with a mouse wheels ability to scroll up and down on a page. However, this wheel can also ...

Learn to Format Your Computer using XP o/s

Windows XP Home Install Guide Introduction: Important Information Before the install/reinstallation of Windows XP, I highly recommend that you download Service Pack 3 “for multiple computers” and burn it onto a CD. The download is approximately 316.4MB. If you choose not to do this step, your system could become infected with a virus or worm exploiting the vulnerabilities that Service Pack 3 fixes. I also recommend that you do NOT have your system connected to the Internet until after the installation of Service Pack 3. This means that you cannot activate your XP installation during setup, but you can accomplish that task following a reboot after Service Pack 3 is installed. 1) Shall we begin? (Image 1.1) After configuring the system for booting from a CD, the Windows Setup screen appears. At this point, Setup is loading the driver files it needs to continue with installation. 1) Shall we begin? (Image 1.1) 2) Welcome to Setup: (Image 1.2) The “We...

Program For Implementing the TCP client and Server

     C program to implemet TCP Server #include <stdio.h> #include <sys/socket.h> #include <sys/types.h> #include <arpa/inet.h> #include <string.h> int main(void) {     int s, len;     char buf[BUFSIZ];     struct sockaddr_in remote_addr;     memset(&remote_addr, 0, sizeof(remote_addr));     remote_addr.sin_family = AF_INET;     remote_addr.sin_addr.s_addr = inet_addr(“127.0.0.1″);     remote_addr.sin_port = htons(8000);     if( (s = socket(AF_INET, SOCK_STREAM, 0)) < 0)     {         printf(“Error\n”);         return -1;     }     if( connect(s, (struct sockaddr*)&remote_addr, sizeof(struct sockaddr)) < 0 )     {         printf(“Error\n”);  ...