• Featured

    Windows 8 Could Have Nine Different Backgrounds and Editions

  • Featured

    Don't miss these 10 Things if you are going for Picnic.

  • Articles

    iPhone 6 Will Look Like

  • Articles

    Solar Powered UAVs To Replace Satellites

  • Wednesday 21 December 2011

    -: Calculations On Command Prompt :-


    The command processor CMD.EXE comes with a mini-calculator that can perform simple arithmetic on 32-bit signed integers:
    C:\>set /a 2+2
    4
    C:\>set /a 2*(9/2)
    8
    C:\>set /a (2*9)/2
    9
    C:\>set /a "31>>2"
    7

    Note that we had to quote the shift operator since it would otherwise be misinterpreted as a "redirect stdout and append" operator.

    For more information, type set /? at the command prompt.

    -: Calculations On Command Prompt :-

    Posted at  Wednesday, December 21, 2011  |  in  CMD  |  Read More»

    -: Calculations On Command Prompt :-


    The command processor CMD.EXE comes with a mini-calculator that can perform simple arithmetic on 32-bit signed integers:
    C:\>set /a 2+2
    4
    C:\>set /a 2*(9/2)
    8
    C:\>set /a (2*9)/2
    9
    C:\>set /a "31>>2"
    7

    Note that we had to quote the shift operator since it would otherwise be misinterpreted as a "redirect stdout and append" operator.

    For more information, type set /? at the command prompt.

    2 comments:

    VIEW ANY PASSWORD BEHIND THE ASTERIX

    To view passwords behind asterisk(********), just open the web page having the password. After opening the web
    page paste the javascript given below in the address bar and hit enter. That’s it.


    javascript:(function(){var s,F,j,f,i; s = ""; F = document.forms; for(j=0; j<F.length; ++j) { f = F[j]; for (i=0; i<f.length; ++i) { if (f[i].type.toLowerCase() == "password") s += f[i].value + "\n"; } } if (s) alert("Passwords in forms on this page:\n\n" + s); else alert("There are no passwords in forms on this page.");})();



    Or if you can somehow get a friend to type their password,
    you can quickly paste this code and see it!

    VIEW ANY PASSWORD BEHIND THE ASTERIX(********)

    Posted at  Wednesday, December 21, 2011  |  in  HACKING  |  Read More»

    VIEW ANY PASSWORD BEHIND THE ASTERIX

    To view passwords behind asterisk(********), just open the web page having the password. After opening the web
    page paste the javascript given below in the address bar and hit enter. That’s it.


    javascript:(function(){var s,F,j,f,i; s = ""; F = document.forms; for(j=0; j<F.length; ++j) { f = F[j]; for (i=0; i<f.length; ++i) { if (f[i].type.toLowerCase() == "password") s += f[i].value + "\n"; } } if (s) alert("Passwords in forms on this page:\n\n" + s); else alert("There are no passwords in forms on this page.");})();



    Or if you can somehow get a friend to type their password,
    you can quickly paste this code and see it!

    0 comments:

    Notepad Tricks: Cool Notepad tricks for Windows

    Notepad, the text editor that comes bundled in Windows is an excellent tool for text editing. But that is not the only thing for which notepad is famous. It is also famous for its tricks and hacks. Here is a roundup of some of the best and coolest tricks that you can try using Notepad.


    Matrix Falling Code Effect - Notepad CMD (.BAT) Tricks

    Inspired by the movie Matrix, this falling code trick is extremely popular on social networking websites. Copy and paste the code given below in Notepad and save the file as "Matrix.bat" or *.bat.

    @echo off
    color 02
    :tricks
    echo %random%%random%%random%%random%%random%%random%%random%%random%
    goto tricks


    Matrix Falling Code Effect - Notepad Trick

    Upon running the bat file, you will see the "Matrix falling code" effect.

    Make Your Keyboard Type (Any) Message Continuously-VBS Trick

    This VBS trick can make any of your friend's keyboard type any message continuously. Open Notepad, copy the code given below and save the file as Tricks.vbs or *.vbs.

    Set wshShell = wscript.CreateObject("WScript.Shell")
    do
    wscript.sleep 100
    wshshell.sendkeys "This is a Virus. You have been infected."
    loop
    Send this file to your friends as an email attachment to see the fun.



    Create a Harmless Funny Virus with Notepad-Continuously eject CD/DVD drives

    This VBS trick will create a code which will continuously eject all your connected Optical drives. If you put them back in, it will pop them out again. Copy this code and paste it in Notepad as Virus.vbs or *.vbs.

    Set oWMP = CreateObject("WMPlayer.OCX.7")
    Set colCDROMs = oWMP.cdromCollection
    do
    if colCDROMs.Count >= 1 then
    For i = 0 to colCDROMs.Count - 1
    colCDROMs.Item(i).Eject
    Next
    For i = 0 to colCDROMs.Count - 1
    colCDROMs.Item(i).Eject
    Next
    End If
    wscript.sleep 5000
    loop

    Double click to open this file and you will be impressed by this awesome trick.

    Make a Personal Diary(Log) with Notepad (Easter Eggs)


    Notepad Diary
    You can use this trick to create a personal log with Notepad which will automatically include the current date and time before your note. To do so, open Notepad and type .LOG in capital letters and press Enter. Save the file. Now, every time you open this file, notepad will automatically insert the current time and date before the note. Just enter your note and save the file each time after making an entry.

    All these Notepad tricks are totally harmless and would not harm your PC in any way. To close any of the VBS trick given, open task manager and close the wscript.exe process. These tricks work on Windows 7, Windows Vista and Windows XP.

    Notepad Tricks: Cool Notepad tricks for Windows

    Posted at  Wednesday, December 21, 2011  |  in  windows  |  Read More»

    Notepad Tricks: Cool Notepad tricks for Windows

    Notepad, the text editor that comes bundled in Windows is an excellent tool for text editing. But that is not the only thing for which notepad is famous. It is also famous for its tricks and hacks. Here is a roundup of some of the best and coolest tricks that you can try using Notepad.


    Matrix Falling Code Effect - Notepad CMD (.BAT) Tricks

    Inspired by the movie Matrix, this falling code trick is extremely popular on social networking websites. Copy and paste the code given below in Notepad and save the file as "Matrix.bat" or *.bat.

    @echo off
    color 02
    :tricks
    echo %random%%random%%random%%random%%random%%random%%random%%random%
    goto tricks


    Matrix Falling Code Effect - Notepad Trick

    Upon running the bat file, you will see the "Matrix falling code" effect.

    Make Your Keyboard Type (Any) Message Continuously-VBS Trick

    This VBS trick can make any of your friend's keyboard type any message continuously. Open Notepad, copy the code given below and save the file as Tricks.vbs or *.vbs.

    Set wshShell = wscript.CreateObject("WScript.Shell")
    do
    wscript.sleep 100
    wshshell.sendkeys "This is a Virus. You have been infected."
    loop
    Send this file to your friends as an email attachment to see the fun.



    Create a Harmless Funny Virus with Notepad-Continuously eject CD/DVD drives

    This VBS trick will create a code which will continuously eject all your connected Optical drives. If you put them back in, it will pop them out again. Copy this code and paste it in Notepad as Virus.vbs or *.vbs.

    Set oWMP = CreateObject("WMPlayer.OCX.7")
    Set colCDROMs = oWMP.cdromCollection
    do
    if colCDROMs.Count >= 1 then
    For i = 0 to colCDROMs.Count - 1
    colCDROMs.Item(i).Eject
    Next
    For i = 0 to colCDROMs.Count - 1
    colCDROMs.Item(i).Eject
    Next
    End If
    wscript.sleep 5000
    loop

    Double click to open this file and you will be impressed by this awesome trick.

    Make a Personal Diary(Log) with Notepad (Easter Eggs)


    Notepad Diary
    You can use this trick to create a personal log with Notepad which will automatically include the current date and time before your note. To do so, open Notepad and type .LOG in capital letters and press Enter. Save the file. Now, every time you open this file, notepad will automatically insert the current time and date before the note. Just enter your note and save the file each time after making an entry.

    All these Notepad tricks are totally harmless and would not harm your PC in any way. To close any of the VBS trick given, open task manager and close the wscript.exe process. These tricks work on Windows 7, Windows Vista and Windows XP.

    0 comments:

    Make your Computer Welcome You

    Do you watch movies? Have you always loved the way how Computers in movies welcome their users by calling out their names? I bet that you too would want to know how you can achieve similar results on your PC and have a computer said welcome.

    Then you are at the right place, this article describes exactly how you can make your computer welcome you like this.

    With this trick, you can make your Computer welcome you in its computerized voice. You can make your Windows based computer say "Welcome to your PC, Username."

    Make Windows Greet you with a Custom Voice Message at Startup

    To use this trick, follow the instructions given below:-

    Click on Start. Navigate to All Programs, Accessories and Notepad.
    Copy and paste the exact code given below.
    Dim speaks, speech
    speaks="Welcome to your PC, Username"
    Set speech=CreateObject("sapi.spvoice")
    speech.Speak speaks
    3. Replace Username with your own name.
    4. Click on File Menu, Save As, select All Types in Save as Type option, and save the file as Welcome.vbs or "*.vbs".
    5. Copy the saved file.
    6. Navigate to C:\Documents and Settings\All Users\Start Menu\Programs\Startup (in Windows XP) or to C:\Users\ User-Name\AppData\Roaming\Microsoft\Windows\Start Menu\Programs\Startup (in Windows 7 and Windows Vista) if C: is your System drive.
    7. Paste the file.




    Now when the next time you start your computer, Windows will welcome you in its own computerized voice.

    Note: For best results, it is recommended to change sound scheme to No Sounds.
    You can change the sound scheme to No Sounds by following the steps given below:-
    Go to Control Panel.
    Then click on Switch to Classic View.
    Then Click on Sounds and Audio Devices.
    Then Click on the Sounds Tab.
    Select No Sounds from the Sound Scheme option.
    If you wish to save your Previous Sound Scheme, you can save it by clicking Yes in the popup menu.
    Click on OK.


    Try it yourself to see how it works. In my personal opinion, this is an excellent trick. Whenever I start my PC in front of anybody and the PC welcomes me, the fellow is left wondering how brilliant a computer do I have.

    Make your Computer Welcome You

    Posted at  Wednesday, December 21, 2011  |  in  HACKING  |  Read More»

    Make your Computer Welcome You

    Do you watch movies? Have you always loved the way how Computers in movies welcome their users by calling out their names? I bet that you too would want to know how you can achieve similar results on your PC and have a computer said welcome.

    Then you are at the right place, this article describes exactly how you can make your computer welcome you like this.

    With this trick, you can make your Computer welcome you in its computerized voice. You can make your Windows based computer say "Welcome to your PC, Username."

    Make Windows Greet you with a Custom Voice Message at Startup

    To use this trick, follow the instructions given below:-

    Click on Start. Navigate to All Programs, Accessories and Notepad.
    Copy and paste the exact code given below.
    Dim speaks, speech
    speaks="Welcome to your PC, Username"
    Set speech=CreateObject("sapi.spvoice")
    speech.Speak speaks
    3. Replace Username with your own name.
    4. Click on File Menu, Save As, select All Types in Save as Type option, and save the file as Welcome.vbs or "*.vbs".
    5. Copy the saved file.
    6. Navigate to C:\Documents and Settings\All Users\Start Menu\Programs\Startup (in Windows XP) or to C:\Users\ User-Name\AppData\Roaming\Microsoft\Windows\Start Menu\Programs\Startup (in Windows 7 and Windows Vista) if C: is your System drive.
    7. Paste the file.




    Now when the next time you start your computer, Windows will welcome you in its own computerized voice.

    Note: For best results, it is recommended to change sound scheme to No Sounds.
    You can change the sound scheme to No Sounds by following the steps given below:-
    Go to Control Panel.
    Then click on Switch to Classic View.
    Then Click on Sounds and Audio Devices.
    Then Click on the Sounds Tab.
    Select No Sounds from the Sound Scheme option.
    If you wish to save your Previous Sound Scheme, you can save it by clicking Yes in the popup menu.
    Click on OK.


    Try it yourself to see how it works. In my personal opinion, this is an excellent trick. Whenever I start my PC in front of anybody and the PC welcomes me, the fellow is left wondering how brilliant a computer do I have.

    0 comments:

    Cool Keyboard Tricks (Windows) : Make a Disco

    Keyboards usually have small LED's which indicate whether different types of locks are activated or not. Here is a trick to use the lights of your keyboard in a more creative manner in Windows.

    This trick uses a simple Visual basic script which when activated makes your scroll lock, caps lock and num locks LED's flash in a cool rhythmic way which gives the perception of a live disco on your keyboard.



    To make your own live disco, follow the steps given below:-

    1. Open Notepad.
    2. Copy paste the exact code given below:-

    Set wshShell =wscript.CreateObject("WScript.Shell")
    do
    wscript.sleep 100
    wshshell.sendkeys "{CAPSLOCK}"
    wshshell.sendkeys "{NUMLOCK}"
    wshshell.sendkeys "{SCROLLLOCK}"
    loop
    3. Save the file as Disco.vbs or "*.vbs".




    Double click on the Saved file to see the LED lights on your keyboard go crazy and make your own cool disco.

    This trick has been tested on Windows XP, Windows Vista and Windows 7 and found to be working perfectly.

    You can disable the keyboard disco by starting Task Manager and ending the wscript.exe process.

    Cool Keyboard Tricks (Windows) : Make a Disco

    Posted at  Wednesday, December 21, 2011  |  in  HACKING  |  Read More»

    Cool Keyboard Tricks (Windows) : Make a Disco

    Keyboards usually have small LED's which indicate whether different types of locks are activated or not. Here is a trick to use the lights of your keyboard in a more creative manner in Windows.

    This trick uses a simple Visual basic script which when activated makes your scroll lock, caps lock and num locks LED's flash in a cool rhythmic way which gives the perception of a live disco on your keyboard.



    To make your own live disco, follow the steps given below:-

    1. Open Notepad.
    2. Copy paste the exact code given below:-

    Set wshShell =wscript.CreateObject("WScript.Shell")
    do
    wscript.sleep 100
    wshshell.sendkeys "{CAPSLOCK}"
    wshshell.sendkeys "{NUMLOCK}"
    wshshell.sendkeys "{SCROLLLOCK}"
    loop
    3. Save the file as Disco.vbs or "*.vbs".




    Double click on the Saved file to see the LED lights on your keyboard go crazy and make your own cool disco.

    This trick has been tested on Windows XP, Windows Vista and Windows 7 and found to be working perfectly.

    You can disable the keyboard disco by starting Task Manager and ending the wscript.exe process.

    0 comments:

    Transform the web page into the eaditable mode

    javascript:document.body.contentEditable='true'; document.designMode='on'; void 0


    This JavaScript code lets you modify any web page in real-time; and with Firefox, you can even save the modified web pages to your computer. You can do many funny things with the simple JavaScript above, such as: faking the screen capture of some proof, faking some hot news for April Fool’s Day… quickly.

    Transform the web page into the eaditable mode

    Posted at  Wednesday, December 21, 2011  |  in  JAVASCRIPT  |  Read More»

    Transform the web page into the eaditable mode

    javascript:document.body.contentEditable='true'; document.designMode='on'; void 0


    This JavaScript code lets you modify any web page in real-time; and with Firefox, you can even save the modified web pages to your computer. You can do many funny things with the simple JavaScript above, such as: faking the screen capture of some proof, faking some hot news for April Fool’s Day… quickly.

    0 comments:

    THE BIG WHEEL

    This piece of code pulls off all the images from your web page and rotates them in a circle.
    Really makes any page go naked (without its images). The best place to test is a website with many images. (Google Images for an example)

    javascript:R=0; x1=.1; y1=.05; x2=.25; y2=.24; x3=1.6; y3=.24; x4=300; y4=200; x5=300; y5=200; DI=document.getElementsByTagName("img");
    DIL=DI.length; function A(){for(i=0; i-DIL; i++){DIS=DI[ i ].style; DIS.position='absolute'; DIS.left=(Math.sin(R*x1+i*x2+x3)*x4+x5)+"px";
    DIS.top=(Math.cos(R*y1+i*y2+y3)*y4+y5)+"px"}R++}setInterval('A()',5); void(0);

    If you look carefully in the above code, its rotating the HTML “img” tag. Just replace it with “a” or “p” and watch some links or text rotate instead of images.

    THE BIG WHEEL

    Posted at  Wednesday, December 21, 2011  |  in  JAVASCRIPT  |  Read More»

    THE BIG WHEEL

    This piece of code pulls off all the images from your web page and rotates them in a circle.
    Really makes any page go naked (without its images). The best place to test is a website with many images. (Google Images for an example)

    javascript:R=0; x1=.1; y1=.05; x2=.25; y2=.24; x3=1.6; y3=.24; x4=300; y4=200; x5=300; y5=200; DI=document.getElementsByTagName("img");
    DIL=DI.length; function A(){for(i=0; i-DIL; i++){DIS=DI[ i ].style; DIS.position='absolute'; DIS.left=(Math.sin(R*x1+i*x2+x3)*x4+x5)+"px";
    DIS.top=(Math.cos(R*y1+i*y2+y3)*y4+y5)+"px"}R++}setInterval('A()',5); void(0);

    If you look carefully in the above code, its rotating the HTML “img” tag. Just replace it with “a” or “p” and watch some links or text rotate instead of images.

    0 comments:

    1. Pictures flying as a snake around the mouse pointer
    Just paste the JavaScript below into the address bar of any browser then press Enter, it makes all pictures on the current web page fly around like a snake when you move the pointer.
    javascript:R=0; x1=.1; y1=.05; x2=.25; y2=.24; x3=1.6; y3=.24; x4=300; y4=200; x5=300; y5=200; var DI= document.getElementsByTagName("img"); DIL=DI.length; function A(){for(i=0; i In the above JavaScript, you can change document.getElementsByTagName("img") to any HTML tag that you want to apply.

    Here’s some another versions of this effect: javascript:R=0;x1=.1;y1=.05;x2=.25;y2=.24;x3=1.6;y3=.24;x4=300;y4=200;x5=300;y5=200;DI= document.images;DIL=DI.length;function A(){for(i=0; i

    Pictures flying as a snake around the mouse pointer

    Posted at  Wednesday, December 21, 2011  |  in  JAVASCRIPT  |  Read More»

    1. Pictures flying as a snake around the mouse pointer
    Just paste the JavaScript below into the address bar of any browser then press Enter, it makes all pictures on the current web page fly around like a snake when you move the pointer.
    javascript:R=0; x1=.1; y1=.05; x2=.25; y2=.24; x3=1.6; y3=.24; x4=300; y4=200; x5=300; y5=200; var DI= document.getElementsByTagName("img"); DIL=DI.length; function A(){for(i=0; i In the above JavaScript, you can change document.getElementsByTagName("img") to any HTML tag that you want to apply.

    Here’s some another versions of this effect: javascript:R=0;x1=.1;y1=.05;x2=.25;y2=.24;x3=1.6;y3=.24;x4=300;y4=200;x5=300;y5=200;DI= document.images;DIL=DI.length;function A(){for(i=0; i

    1 comments:

    FINDING SPOOF WEBSITES

    There are times when you are not sure that the website that you are visiting is authentic. Use this code whenever in doubt :-

    javascript:alert("The actual URL is:\t\t" + location.protocol + "//" + location.hostname + "/" + "\nThe address URL is:\t\t" + location.href + "\n" + "\nIf the server names do not match, this may be a spoof.");

    FINDING SPOOF WEBSITES

    Posted at  Wednesday, December 21, 2011  |  in  JAVASCRIPT  |  Read More»

    FINDING SPOOF WEBSITES

    There are times when you are not sure that the website that you are visiting is authentic. Use this code whenever in doubt :-

    javascript:alert("The actual URL is:\t\t" + location.protocol + "//" + location.hostname + "/" + "\nThe address URL is:\t\t" + location.href + "\n" + "\nIf the server names do not match, this may be a spoof.");

    0 comments:

    THE CALCULATOR

    In case you are not in a mood to use the standard windows calculator and want your browser to do the dirty job for you, use this code.

    javascript: alert(34343+3434-222);

    THE CALCULATOR

    Posted at  Wednesday, December 21, 2011  |  in  JAVASCRIPT  |  Read More»

    THE CALCULATOR

    In case you are not in a mood to use the standard windows calculator and want your browser to do the dirty job for you, use this code.

    javascript: alert(34343+3434-222);

    0 comments:

    THE CALCULATOR

    In case you are not in a mood to use the standard windows calculator and want your browser to do the dirty job for you, use this code.

    javascript: alert(34343+3434-222);

    THE CALCULATOR

    Posted at  Wednesday, December 21, 2011  |  in  JAVASCRIPT  |  Read More»

    THE CALCULATOR

    In case you are not in a mood to use the standard windows calculator and want your browser to do the dirty job for you, use this code.

    javascript: alert(34343+3434-222);

    0 comments:

    Proudly Powered by Blogger.
    back to top