Thursday, September 15, 2011

Windows 8


Can’t wait to try out Windows 8 for yourself after Microsoft’s big unveiling of the new OS at Tuesday’s Build Conference? Well, you needn’t wait any longer as the developer preview version of the OS is now available for download.

You can install it on a x86-based 32-bit or a 64-bit machine. Activation is not required, but it’s far from a finalized version of the OS, so if you do install it, expect bugs and glitches. In any case, you should definitely check out Microsoft’s Windows 8 guide to get an idea of what you can expect from the next version of Windows.



The download is available here.

Windows 8: Lock Screen

“Your personalized lock screen shows you unread emails and other app notifications. The image shown here is a photo of the road leading to Mt. Cook National Park in New Zealand.”






















Windows 8: Start Screen

“See your apps and content in a glance on the start screen.”





















Windows 8: Files

“Pick the files you want to send or share from one place.”





















Windows 8: Internet Explorer

“Touch browsing is fast, fluid and intuitive.”





















Windows 8: Thumb

“The thumb keyboard feels natural and comfortable.”





















Windows 8: Touch Keyboard


“Large buttons help you type on the touch keyboard.”

Thursday, December 9, 2010

Monday, October 18, 2010

How To: Change Your Ip In Less Then 1 Minute

1. Click on "Start" in the bottom left hand corner of screen
2. Click on "Run"
3. Type in "command" and hit ok

You should now be at an MSDOS prompt screen.

4. Type "ipconfig /release" just like that, and hit "enter"
5. Type "exit" and leave the prompt
6. Right-click on "Network Places" or "My Network Places" on your desktop.
7. Click on "properties"

You should now be on a screen with something titled "Local Area Connection", or something close to that, and, if you have a network hooked up, all of your other networks.

8. Right click on "Local Area Connection" and click "properties"
9. Double-click on the "Internet Protocol (TCP/IP)" from the list under the "General" tab
10. Click on "Use the following IP address" under the "General" tab
11. Create an IP address (It doesn't matter what it is. I just type 1 and 2 until i fill the area up).
12. Press "Tab" and it should automatically fill in the "Subnet Mask" section with default numbers.
13. Hit the "Ok" button here
14. Hit the "Ok" button again

You should now be back to the "Local Area Connection" screen.

15. Right-click back on "Local Area Connection" and go to properties again.
16. Go back to the "TCP/IP" settings
17. This time, select "Obtain an IP address automatically"
tongue.gif 18. Hit "Ok"
19. Hit "Ok" again
20. You now have a new IP address

With a little practice, you can easily get this process down to 15 seconds.

P.S:
This only changes your dynamic IP address, not your ISP/IP address. If you plan on hacking a website with this trick be extremely careful, because if they try a little, they can trace it back

Tuesday, October 5, 2010

How many strings are palimdrom using pointer


/*******************************
*    Program to convert each word's   *
*    first character into upper case      *
*******************************/
#include
#include
void main()
{
    int k=1,i=0;
    char str[100];
    clrscr();
    printf("enter any string");
    gets(str);
    while(str[i]!='\0')
    {
        if(k>0)
        {
            str[i]=str[i]-32;
            k=0;
        }
        if(str[i]==' ')
        {
            k=1;
        }
        i++;
    }
    puts(str);
    getch();
}