• 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

    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.

    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.

    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.

    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

    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.");

    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);

    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);

    Thursday, 17 November 2011

    Website for Youtube Download

    You can download YouTube videos by using below sites:
    http//:www.keepvid.com
    http://mediaconverter.org
    http://www.tubenow.co.cc/
    jdownloader
    Website for Youtube Download

    Website for Youtube Download

    Posted at  Thursday, November 17, 2011  |  in  INTERNET  |  Read More»

    Website for Youtube Download

    You can download YouTube videos by using below sites:
    http//:www.keepvid.com
    http://mediaconverter.org
    http://www.tubenow.co.cc/
    jdownloader
    Website for Youtube Download

    Samsung Secret Mobile Codes

    IMEI number: *#06#
    Software version: *#9999# *#0837#
    Net Monitor: *#0324#
    Chaning LCD contrast: *#0523#
    Memory info: *#0377# *#0246#
    Reset (SIMLOCK removing!!!): *2767*3855#
    Reset CUSTOM: *2767*2878#
    Battery state: *#9998*228#
    Alarm beeper: *#9998*289#
    Vibra test: *#9998*842#
    Software version: *#9999#

    Samsung Secret Mobile Codes

    Posted at  Thursday, November 17, 2011  |  in  MOBILE  |  Read More»

    Samsung Secret Mobile Codes

    IMEI number: *#06#
    Software version: *#9999# *#0837#
    Net Monitor: *#0324#
    Chaning LCD contrast: *#0523#
    Memory info: *#0377# *#0246#
    Reset (SIMLOCK removing!!!): *2767*3855#
    Reset CUSTOM: *2767*2878#
    Battery state: *#9998*228#
    Alarm beeper: *#9998*289#
    Vibra test: *#9998*842#
    Software version: *#9999#

    101 Very Useful Websites You Must Know

    Here are the 101 most useful websites of the year 2010.


    The sites mentioned below will solve at least one problem of yours. This Little known websites would be of great help.

    01. screenr.com – record movies of your desktop and send them straight to YouTube.
    02. bounceapp.com – for capturing full length screenshots of web pages.
    03. goo.gl – shorten long URLs and convert URLs into QR codes.
    04. untiny.me – find the original URLs that’s hiding behind a short URLs.
    05. localti.me – know more than just the local time of a city
    06. copypastecharacter.com – copy special characters that aren’t on your keyboard.
    07. topsy.com – a better search engine for twitter.
    08. fb.me/AppStore – search iOS app without launching iTunes.
    09. iconfinder.com – the best place to find icons of all sizes.
    10. office.com – download templates, clipart and images for your Office documents.
    11. woorank.com – everything you wanted to know about a website.
    12. virustotal.com – scan any suspicious file or email attachment for viruses.
    13. wolframalpha.com – gets answers directly without searching – see more wolfram tips.
    14. printwhatyoulike.com – print web pages without the clutter.
    15. joliprint.com – reformats news articles and blog content as a newspaper.
    16. isnsfw.com – when you wish to share a NSFW page but with a warning.
    17. e.ggtimer.com – a simple online timer for your daily needs.
    18. coralcdn.org – if a site is down due to heavy traffic, try accessing it through coral CDN.
    19. random.org – pick random numbers, flip coins, and more.
    20. mywot.com – check the trust level of any website – example.
    21. viewer.zoho.com – Preview PDFs and Presentations directly in the browser.
    22. tubemogul.com – simultaneously upload videos to YouTube and other video sites.
    23. truveo.com – the best place for searching web videos.
    24. scr.im – share you email address online without worrying about spam.
    25. spypig.com – now get read receipts for your email.
    26. sizeasy.com – visualize and compare the size of any product.
    27. whatfontis.com – quickly determine the font name from an image.
    28. fontsquirrel.com – a good collection of fonts – free for personal and commercial use.
    29. regex.info – find data hidden in your photographs – see more EXIF tools.
    30. tineye.com – this is like an online version of Google Googles.
    31. iwantmyname.com – helps you search domains across all TLDs.
    32. tabbloid.com – your favorite blogs delivered as PDFs.
    33. join.me – share you screen with anyone over the web.
    34. onlineocr.net – recognize text from scanned PDFs and images – see other OCR tools.
    35. flightstats.com – Track flight status at airports worldwide.
    36. wetransfer.com – for sharing really big files online.
    37. pastebin.com – a temporary online clipboard for your text and code snippets.
    38. polishmywriting.com – check your writing for spelling or grammatical errors.
    39. awesomehighlighter.com – easily highlight the important parts of a web page.
    40. typewith.me – work on the same document with multiple people.
    41. whichdateworks.com – planning an event? find a date that works for all.
    42. everytimezone.com – a less confusing view of the world time zones.
    43. warrick.cs.odu.edu – you’ll need this when your bookmarked web pages are deleted.
    44. gtmetrix.com – the perfect tool for measuring your site performance online.
    45. imo.im – chat with your buddies on Skype, Facebook, Google Talk, etc. from one place.
    46. translate.google.com – translate web pages, PDFs and Office documents.
    47. youtube.com/leanback – enjoy a never ending stream of YouTube videos in full-screen.
    48. similarsites.com – discover new sites that are similar to what you like already.
    49. wordle.net – quick summarize long pieces of text with tag clouds.
    50. bubbl.us – create mind-maps, brainstorm ideas in the browser.
    51. kuler.adobe.com – get color ideas, also extract colors from photographs.
    52. followupthen.com – setup quick reminders via email itself.
    53. lmgtfy.com – when your friends are too lazy to use Google on their own.
    54. tempalias.com – generate temporary email aliases, better than disposable email.
    55. pdfescape.com – lets you can quickly edit PDFs in the browser itself.
    56. faxzero.com – send an online fax for free – see more fax services.
    57. feedmyinbox.com – get RSS feeds as an email newsletter.
    58. isendr.com – transfer files without uploading to a server.
    59. tinychat.com – setup a private chat room in micro-seconds.
    60. privnote.com – create text notes that will self-destruct after being read.
    61. flightaware.com – live flight tracking service for airports worldwide.
    62. boxoh.com – track the status of any shipment on Google Maps – alternative.
    63. chipin.com – when you need to raise funds online for an event or a cause.
    64. downforeveryoneorjustme.com – find if your favorite website is offline or not?
    65. example.com – this website can be used as an example in documentation.
    66. whoishostingthis.com – find the web host of any website.
    67. google.com/history – found something on Google but can’t remember it now?
    68. errorlevelanalysis.com – find whether a photo is real or a photoshopped one.
    69. google.com/dictionary – get word meanings, pronunciations and usage examples.
    70. urbandictionary.com – find definitions of slangs and informal words.
    71. seatguru.com – consult this site before choosing a seat for your next flight.
    72. sxc.hu – download stock images absolutely free.
    73. zoom.it – view very high-resolution images in your browser without scrolling.
    74. wobzip.org – unzip your compressed files online.
    75. vocaroo.com – record your voice with a click.
    76. scribblemaps.com – create custom Google Maps easily.
    77. buzzfeed.com – never miss another Internet meme or viral video.
    78. alertful.com – quickly setup email reminders for important events.
    79. encrypted.google.com – prevent your ISP and boss from reading your search queries.
    80. formspring.me – you can ask or answer personal questions here.
    81. snopes.com – find if that email offer you received is real or just another scam.
    82. typingweb.com – master touch-typing with these practice sessions.
    83. mailvu.com – send video emails to anyone using your web cam.
    84. ge.tt – quickly send a file to someone, they can even preview it before downloading.
    85. timerime.com – create timelines with audio, video and images.
    86. stupeflix.com – make a movie out of your images, audio and video clips.
    87. aviary.com/myna – an online audio editor that lets record, and remix audio clips online.
    88. noteflight.com – print music sheets, write your own music online (review).
    89. disposablewebpage.com – create a temporary web page that self-destruct.
    90. namemytune.com – when you need to find the name of a song.
    91. homestyler.com – design from scratch or re-model your home in 3d.
    92. snapask.com – use email on your phone to find sports scores, read Wikipedia, etc.
    93. teuxdeux.com – a beautiful to-do app that looks like your paper dairy.
    94. livestream.com – broadcast events live over the web, including your desktop screen.
    95. bing.com/images – automatically find perfectly-sized wallpapers for mobiles.
    96. historio.us – preserve complete web pages with all the formatting.
    97. dabbleboard.com – your virtual whiteboard.
    98. whisperbot.com – send an email without using your own account.
    99. sumopaint.com – an excellent layer-based online image editor.
    100. lovelycharts.com – create flowcharts, network diagrams, sitemaps, etc.
    101. nutshellmail.com – Get your Facebook and Twitter streams in your inbox

    101 Very Useful Websites You Must Know

    Posted at  Thursday, November 17, 2011  |  in  INTERNET  |  Read More»

    101 Very Useful Websites You Must Know

    Here are the 101 most useful websites of the year 2010.


    The sites mentioned below will solve at least one problem of yours. This Little known websites would be of great help.

    01. screenr.com – record movies of your desktop and send them straight to YouTube.
    02. bounceapp.com – for capturing full length screenshots of web pages.
    03. goo.gl – shorten long URLs and convert URLs into QR codes.
    04. untiny.me – find the original URLs that’s hiding behind a short URLs.
    05. localti.me – know more than just the local time of a city
    06. copypastecharacter.com – copy special characters that aren’t on your keyboard.
    07. topsy.com – a better search engine for twitter.
    08. fb.me/AppStore – search iOS app without launching iTunes.
    09. iconfinder.com – the best place to find icons of all sizes.
    10. office.com – download templates, clipart and images for your Office documents.
    11. woorank.com – everything you wanted to know about a website.
    12. virustotal.com – scan any suspicious file or email attachment for viruses.
    13. wolframalpha.com – gets answers directly without searching – see more wolfram tips.
    14. printwhatyoulike.com – print web pages without the clutter.
    15. joliprint.com – reformats news articles and blog content as a newspaper.
    16. isnsfw.com – when you wish to share a NSFW page but with a warning.
    17. e.ggtimer.com – a simple online timer for your daily needs.
    18. coralcdn.org – if a site is down due to heavy traffic, try accessing it through coral CDN.
    19. random.org – pick random numbers, flip coins, and more.
    20. mywot.com – check the trust level of any website – example.
    21. viewer.zoho.com – Preview PDFs and Presentations directly in the browser.
    22. tubemogul.com – simultaneously upload videos to YouTube and other video sites.
    23. truveo.com – the best place for searching web videos.
    24. scr.im – share you email address online without worrying about spam.
    25. spypig.com – now get read receipts for your email.
    26. sizeasy.com – visualize and compare the size of any product.
    27. whatfontis.com – quickly determine the font name from an image.
    28. fontsquirrel.com – a good collection of fonts – free for personal and commercial use.
    29. regex.info – find data hidden in your photographs – see more EXIF tools.
    30. tineye.com – this is like an online version of Google Googles.
    31. iwantmyname.com – helps you search domains across all TLDs.
    32. tabbloid.com – your favorite blogs delivered as PDFs.
    33. join.me – share you screen with anyone over the web.
    34. onlineocr.net – recognize text from scanned PDFs and images – see other OCR tools.
    35. flightstats.com – Track flight status at airports worldwide.
    36. wetransfer.com – for sharing really big files online.
    37. pastebin.com – a temporary online clipboard for your text and code snippets.
    38. polishmywriting.com – check your writing for spelling or grammatical errors.
    39. awesomehighlighter.com – easily highlight the important parts of a web page.
    40. typewith.me – work on the same document with multiple people.
    41. whichdateworks.com – planning an event? find a date that works for all.
    42. everytimezone.com – a less confusing view of the world time zones.
    43. warrick.cs.odu.edu – you’ll need this when your bookmarked web pages are deleted.
    44. gtmetrix.com – the perfect tool for measuring your site performance online.
    45. imo.im – chat with your buddies on Skype, Facebook, Google Talk, etc. from one place.
    46. translate.google.com – translate web pages, PDFs and Office documents.
    47. youtube.com/leanback – enjoy a never ending stream of YouTube videos in full-screen.
    48. similarsites.com – discover new sites that are similar to what you like already.
    49. wordle.net – quick summarize long pieces of text with tag clouds.
    50. bubbl.us – create mind-maps, brainstorm ideas in the browser.
    51. kuler.adobe.com – get color ideas, also extract colors from photographs.
    52. followupthen.com – setup quick reminders via email itself.
    53. lmgtfy.com – when your friends are too lazy to use Google on their own.
    54. tempalias.com – generate temporary email aliases, better than disposable email.
    55. pdfescape.com – lets you can quickly edit PDFs in the browser itself.
    56. faxzero.com – send an online fax for free – see more fax services.
    57. feedmyinbox.com – get RSS feeds as an email newsletter.
    58. isendr.com – transfer files without uploading to a server.
    59. tinychat.com – setup a private chat room in micro-seconds.
    60. privnote.com – create text notes that will self-destruct after being read.
    61. flightaware.com – live flight tracking service for airports worldwide.
    62. boxoh.com – track the status of any shipment on Google Maps – alternative.
    63. chipin.com – when you need to raise funds online for an event or a cause.
    64. downforeveryoneorjustme.com – find if your favorite website is offline or not?
    65. example.com – this website can be used as an example in documentation.
    66. whoishostingthis.com – find the web host of any website.
    67. google.com/history – found something on Google but can’t remember it now?
    68. errorlevelanalysis.com – find whether a photo is real or a photoshopped one.
    69. google.com/dictionary – get word meanings, pronunciations and usage examples.
    70. urbandictionary.com – find definitions of slangs and informal words.
    71. seatguru.com – consult this site before choosing a seat for your next flight.
    72. sxc.hu – download stock images absolutely free.
    73. zoom.it – view very high-resolution images in your browser without scrolling.
    74. wobzip.org – unzip your compressed files online.
    75. vocaroo.com – record your voice with a click.
    76. scribblemaps.com – create custom Google Maps easily.
    77. buzzfeed.com – never miss another Internet meme or viral video.
    78. alertful.com – quickly setup email reminders for important events.
    79. encrypted.google.com – prevent your ISP and boss from reading your search queries.
    80. formspring.me – you can ask or answer personal questions here.
    81. snopes.com – find if that email offer you received is real or just another scam.
    82. typingweb.com – master touch-typing with these practice sessions.
    83. mailvu.com – send video emails to anyone using your web cam.
    84. ge.tt – quickly send a file to someone, they can even preview it before downloading.
    85. timerime.com – create timelines with audio, video and images.
    86. stupeflix.com – make a movie out of your images, audio and video clips.
    87. aviary.com/myna – an online audio editor that lets record, and remix audio clips online.
    88. noteflight.com – print music sheets, write your own music online (review).
    89. disposablewebpage.com – create a temporary web page that self-destruct.
    90. namemytune.com – when you need to find the name of a song.
    91. homestyler.com – design from scratch or re-model your home in 3d.
    92. snapask.com – use email on your phone to find sports scores, read Wikipedia, etc.
    93. teuxdeux.com – a beautiful to-do app that looks like your paper dairy.
    94. livestream.com – broadcast events live over the web, including your desktop screen.
    95. bing.com/images – automatically find perfectly-sized wallpapers for mobiles.
    96. historio.us – preserve complete web pages with all the formatting.
    97. dabbleboard.com – your virtual whiteboard.
    98. whisperbot.com – send an email without using your own account.
    99. sumopaint.com – an excellent layer-based online image editor.
    100. lovelycharts.com – create flowcharts, network diagrams, sitemaps, etc.
    101. nutshellmail.com – Get your Facebook and Twitter streams in your inbox

    Proudly Powered by Blogger.
    back to top