Convert joystick buttons into keyboard input and mouse movements.

joystick-wallpaper

Software :-  “Joy to key “.

This software enables you to control various windows applications (e.g.
a web browser, games on the web, Photoshop shortcuts, Microsoft office,
and even Windows itself) by using your favorite joystick. Whenever you
press joystick buttons and sticks, JoyToKey will convert the input into
keyboard strokes and mouse movements so that the target application works
as you pre-configured.You can create multiple configuration files to switch across different key/mouse assignments. It also supports the automatic association with target applications so that the config file will switch automatically when the target application changes.

Download it here( official site) :-

Download-Button2

 

First ever ANDROID RAT !

Have you been wondering if you could infect someone’s android device with RAT virus. Well , you have come at the right place. With this remote administration tool you can do these things remotely to the infected phone :

    • Media volume up/down
    • Ringer volume up/down
    • Screen On
    • Record Calls
    • Block SMS
    • Record Audio
    • Take Video
    • Take Photo
    • Send Text
    • Send Contacts
    • Get user accounts

Manage your ANDROID devices from anywhere using AIRDROID

AIRDROID is a free android app that lets you manage all your android devices from any device using internet.

– No USB cable required.
– No driver installation required.
– Same WiFi network or Internet.
– Pure web app, works on Windows, Mac, Chromebook and Linux.

Simply install AirDroid on your Android and you’ll be able to enjoy the following features on your computer at web.airdroid.com:

IT has features like :

– SMS: send and receive individual or group messages.
– Apps: Import and export .apk files.
– Files: Manage files on Android and transferring files between Android and computer.
– Photos: View and manage photos on Android and transferring photos between Android and computer Continue reading

Make Your CD-ROM open and close continuously .

1. Open note pad and paste the following code in it.


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

Continue reading

Program to find sum of series “1+ 1/3! + 1/5! + 1/7! + ……………+ 1/n! “.

source code:

#include <iostream>
#include<iomanip>
#include<conio.h>
#include<math.h>

using namespace std;

int main()
{
    int num,i=1;
    double fact=1,sum=0;
    cout<<"Enter number : "<<endl;
    cin>>num;cout<<endl<<endl;

    while(i<=num)
    {
        if(i>1)
            fact=fact*(i-1)*i;

        sum=sum+(1/fact);
        i=i+2;
    }
    cout<<"Sum is "<<sum;
    getch();
}

Program to find “SUM OF DIGITS of a given number” using while loop.

source code:

#include<iostream.h>
#include<conio.h>
#include<iomanip.h>
void main()
{
  int number,r,rev=0;
  cout<<"Enter a number to find sum of its digits : ";
  cin>>number;cout<<endl;
  while(number>0)
     {
        r=number%10;
        rev=rev*10+r;
        number=number/10;
      }
  
  cout<<"Reverse is "<<rev;
  getch();
}