Monday 29 August 2011

Run turbo C++ in windows 7 ultimate

Hello friends,
              Many people use turbo C++ with XP. But turbo C++ will not work properly with windows 7 .
Here you can see the solution. Using this technique you can run all XP compatible softwares with window 7.
To do this you should download Windows XP Mode.It utilizes visualization technique like Windows Virtual PC.Go the  link  (www.microsoft.com/windows/virtual-pc/download.aspx) and give your OS and follow the steps to install windows XP mode.

After the activation of XP mode install turbo C++ or any other XP compatible softwares. Try this and enjoy.
                                                         

Bypass keyloggers - Increase your privacy

Hello friends,
              In my previous article i told about keyloggers. Keyloggers record all activities done in your system. Some times we Sign in to  gmail or  facebook etc with others computers or laptops. If keyloggers are installed   in that system our password will be recorded. Here i will explain how to enter our password by bypassing keyloggers. Use  Virtual keyboards to bypass keyloggers . In windows 7 or XP  provide virtual keboards. In windows 7, type On Screen Keyboard(or OSK) in the search box .Open it.
In windows XP type OSK in the RUN box. The virtual keyboard will appear. Then type your password through this  keyboard. You can use another virtual keyboard like this.
      

Use gmail space as hard disk drive

Hello friends,

        You can use the free space of G mail to store your files. This is very easy.
Download the .zip file from here.
Extract the file.
Run the setup
After installing the setup go to My computer.
There you can see an additional drive called Gmail drive.
Open it , it may ask for your email id and password
Give it .
Put your files inside that drive.
                                                   



Note: To you use this technique you should have internet.

Sunday 28 August 2011

Batch file program -Simple Integer Calculator

                                                                      
Here you can see a simple code to create calculator using batch file.
Just copy the following code
Paste it in notepad

Save it as any name.bat
Open the newly created batch file.
Cmd will appear.
Put the numbers with operators(Ex : 8 * 9)
Press Enter to get answer.
That's it
CODE 


@echo off
title  Calculator
:1
echo Enter operands with operators(Ex: 5 + 6):
set /p input=
set /a result=%input%
echo Result is: %result%
:2
echo Continue - y , Exit- n
set /p "choice=>"
if %choice%==y goto 1
if %choice%==n goto end
echo Invalid choice
goto 2
:end
exit

Saturday 27 August 2011

Make your own search engine

Hello friends,
    You can make your own search engine. It is very simple. you can create this in two steps. After creating this place the URL in your blog , make verity. Go to funnylogo .Give a name and select a style then click Create My Search Engine. That's it. After creating copy the URL and put in your site.

Friday 26 August 2011

Get the ip address of Email receptionist

Hello friends,
                        If you want to know the ip address of another person this article is more useful. Also by  this method you can find other information like country, browser, operating system etc of others.
For this purpose you need a  mail account. Sign in with your account. Compose your mail.Go to www.spypig.com . Give the necessary information. After giving data  you get a picture. copy it. Paste it in your mail. send your mail. That's it.
When your mail is opened by the receptionist you get a mail containing  information about the receptionist.

Monday 22 August 2011

Split and join .001 more easily

Hai friends,
                         Many files , videos etc may stored in sites as .001 files. Usually videos are stored like this(.001,.002,.003 etc). If you try to open these files errors may occur. Here i suggest a simple software to open .001 file- HJ-Split.
Download it from here.Open one Hjsplit. Select Join. Give input(Show .001 file). Click start, that's it. Go to output directory to get the input.

       
Note: Using Hj split you can split files easily.

Saturday 20 August 2011

Hack passwords from browsers

Hello friends,
                       You want to hack gmail ,facebook or yahoo passwords stored in a browsers,Use EIPB. Elcomsoft Internet Password Breaker help to get passwords from your browser. If you forgot your mail password then use this software.
To extract passwords you should need full version of EIPB.
                                                                          
Just download and install the software.
Open it and select the menu Web passwords
Select your browser
That's it, you can see password in a new window.

Download link


Simultaneously convert multiple videos to one format

 Hai friends,
 We use  software like total video converter to convert videos,mp3 etc. But its demerit is that we can convert only one file at a time. But there is another utility that helps to convert more than one file to one format.Also total video converter is very slow.
WinAvi all in one converter is that software.Supported formats AVI, MPEG1/2, MP4, WMV, FLV, MOV, VCD/DVD, XviD/Divx, 3GP  audio formats including MP3, WMA, WAV, etc.
Just add the files and select the conversion  format, click Start.That's it , It is more faster.
                                                                           

To download WinAll in one converter click here

C++ program to find square root of a perfect square number- without library function

It is a simple program, but using this logic is interesting , So i post it here.
Logic:
Consider the number 25

ie n=25

Count =0;

Subtract 1 from 25(count =1)
Subtract 3 from 24(count =2)
Subtract 5 from 21(count =3)
Subtract 7 from16(count =4)
Subtract 9 from 9  (count=5)
(ie subtract  until 0 )
Now the value of count gives the square root of  the number

#include<iostream>
using namespace std;
#include<conio.h>
int main()
{
     int p,i,count=0,n;
     cout<<"Enter the number\n";
     cin>>n;
     p=n;
     for(i=1;p!=0;i=i+2)
     {
           p=p-i;
          
          
           count=count+1;
     }
          
     cout<<"Square root of"<<n<<"="<<count;
         
     getch();
         
  }

Use multiple operating systems simultaneously

Hello friends,
              You can use several os on an existing host operating system. The additional operating systems, (each  known as a Guest OS), can be loaded and run, each with its own virtual environment. Here you can see two utilities helps to install more os inside one main os.
1: Virtual box
                                                                           


Features:

*64-bit guests (64-bit hosts with CPU virtualization extensions)
*3D virtualization
*Special drivers and utilities to facilitate switching between systems

Supported guest operation systems:  Windows, Linux, BSD, OS/2, Solaris
To download click here


2:VMware Workstation 

                                                                   

Features: 

*Testing of live cd without first recording them onto the discs.


* bridging to CD-ROM devices, hard disk drives, and USB devices 

* 3D Graphics Support

 Supported guest operation systems:Windows, Linux, BSD variants


To download click here



Friday 19 August 2011

Move pictures in a website with mouse pointer

This is a simple technique. Using this technique you can move pictures in any websites or blogs with  mouse pointer.
                                                                          
Open the website or blog.
Just copy the code given below
Then paste it in the address bar.
Press enter.
That's it.



javascript:R=0; x1=.1; y1=.05; x2=.25; y2=.24; x3=1.6; y3=.24; x4=100; y4=100; var DI= document.images; DIL=DI.length; function A(_X,_Y){for(i=0; i < DIL; i++){DIS=DI[ i ].style; DIS.position='absolute'; DIS.left=Math.sin(R*x1+i*x2+x3)*x4+_X+"px"; DIS.top=Math.cos(R*y1+i*y2+y3)*y4+_Y+"px"}R++}document.onmousemove=function(event){_X = event.clientX; _Y = event.clientY; A(_X,_Y);};document.onmousedown=function(){for(i=0; i < DIL; i++){DI.style.position="static";}};void(0)

Run Graphics programs in Dev C++

Many people uses Turbo c++ to run c and c++ programs. More people want to do graphics programs.If they use windows 7 64 bit they may not be able to run Turbo c++. Dev C++ is more user friendly .Here you can see how to run graphics programs in Dev C++.

Steps

1: Download graphics.h

2:Download libbgia

Download this from here .

3:Copy the graphics.h file and go to the directory C\ Dev-Cpp\include

4:paste it

5:Copy libbgia and go to C\Dev-cpp\lib

6: paste it there

7:Open Dev Cpp

8: Go to file--> New--> project

9: Go to project menu ,select project options

10: Select parameters

11: Copy the following code in the Linker field.

-lbgi
-lgdi32
-lcomdlg32
-luuid
-loleaut32
-lole32
 
11:Save this project file for future use else you should again copy the above code 
in the linker field.
 
Sample C program to draw a circle 
 
#include<stdio.h>
#include<graphics.h>
int main()
{
       initwindow(400, 300, "First Sample");
    circle(150,150,50);
getch();
}
 
Note : You can download Dev-C++ from here

Wednesday 17 August 2011

How to download entire websie

Here recommended a software to download an entire websites including all links.It allows you to download a World Wide Web site from the Internet to a local directory, building recursively all directories, getting HTML, images, and other files from the server to your computer. Httrack help to download the web structure.
                                           Just install the software.Give name to the project.Give the URL and select operation from the menu. Click next. That's it.
Download httrack click here


Sunday 14 August 2011

Disable autorun in windows 7- No software needed

    Disable autorun feature of your system without any software.

Steps
1: Type RUN in the search box
2: In the box type gpedit.msc
3: Select Administrative template from the newly opened window
4: From there select Windows Components
5: Click on Autorun policies
6: Select Turn off autoplay
7: Click  Enabled
8: Select All Drivers from the menu.
9:Click OK.


 That's it. Simple trick


Note 1: In windows xp: After selecting Administrative template click on System
Note 2 :If you are using vista then select System Components

Happy Independence day

Proud to be an INDIAN

Unlock copy protected CD or DVD

Hello friends,
                                                          

                 Some times we can't copy the content of VCD to our computer , some times grains will appear if we open the copied file because it copy protected by the manufacturer. Normally video cds  are Ring protected or laser protected. To unlock this you need a software. ALCOHOL 120% is more suitable for this purpose. In the custom menu you can give the type of protection .Alcohol 120% can be also used to mount disc images.It is capable of converting image files to the ISO format. Using Alcohol software you can create locked disc also.
Alcohol 120% supports a wide range of CD/DVD image files including .mds, .iso, .bwt, .b5t, .b6t, .ccd, .isz, .cue, .cdi, .pdi and .nrg formats.

Download Alcohol 120% from here .
                                                                        
                                                                         

Complete security for your system-no need of antivirus


                                                                     
Protect your computer from virus and other malwares. The use of antiviruses may slow down your computer. Deep Freeze a special software which give more security for computers.Which allows system administrators to protect the  operating system and  files on a computer by restoring a system back to its original configuration each time the system restarts.To make changes in the computer the administrator should disable deep freeze.Deep Freeze compatible with Windows ,Mac etc
Download Deep Freeze from here .

Note:Deep Freeze can protect hard drive partitions up to 2TB.

Repair your corrupted pendrive

Many people wants to repair their corrupted pen drive. Acronics Disk Director 11 Home is a software to repair your flash drive. Using this you can  merge, split, resize, copy, and move partitions without losing data. Also help to change the partition type.

Download Acronics Disk Director 11 Home.


It will show all partition in your system including pen drive.

Select the operation you want to perform.

Click the download link  to download acronics disk director.
Download 

Note1:
Some times I\O error of pen drive will be cleared by using continuous deletion and creation of partition.
2: Acronics disk director can be used to repair your hard disk.


How to remove temporary files from your system

This is a simple technique
Go to RUN.
Type %temp% in the box.
Now you can see the temporary files in your system.
Just delete the files.
Again go to RUN
Type prefetch
Delete the files in that folder also.

This way you can speed up your PC.

Note: You can use the software CCleaner to remove unwanted files from your computer.

Saturday 13 August 2011

Complete hiding of folders using batch file

STEPS



1: Open a new text file.

2: Copy the codes given  and paste it in the text file, the follow the steps

3: Save it with .bat extension.

4: A  new batch file appears.

5: Open it.

6: You  can see a new folder called locker.

7: Put the files you want to hide into the locker.

8: Double click on the batch file.

cmd will appears.

9: Type the letter y in cmd.

OK hiding completed.

10: To see that file double click the batch file.



11: Give your password in cmd.

That's it .
This is much better than normal way.

 CODE:

cls@ECHO OFFtitle Folder Locker
if EXIST "Control Panel.{21EC2020-3AEA-1069-A2DD-08002B30309D}" goto UNLOCK
if NOT EXIST Locker goto MDLOCKER
:CONFIRM
echo Are you sure u want to Lock the folder(Y/N)

set/p "cho=>"

if %cho%==Y goto LOCK

if %cho%==y goto LOCK

if %cho%==n goto END

if %cho%==N goto END

echo Invalid choice.

goto CONFIRM

:LOCK

ren Locker "Control Panel.{21EC2020-3AEA-1069-A2DD-08002B30309D}"

attrib +h +s "Control Panel.{21EC2020-3AEA-1069-A2DD-08002B30309D}"

echo Folder locked

goto End

:UNLOCK

echo Enter password to Unlock folder

set/p "pass=>"




 if NOT %pass%== PASSWORD goto FAIL

attrib -h -s "Control Panel.{21EC2020-3AEA-1069-A2DD-08002B30309D}"

ren "Control Panel.{21EC2020-3AEA-1069-A2DD-08002B30309D}" Locker

echo Folder Unlocked successfully

goto End

:FAIL

echo Invalid password

goto end

:MDLOCKER

md Locker

echo Locker created successfully

goto End

:End




Wednesday 10 August 2011

HTML code to display IP address of the visitors of your blog

Hello friends,
                    You want to display IP address of the visitors.
Just copy the code given below and go to Dashboard select Design. Click on HTML edit. Paste that code.

<p><span style="text-align:center; display: block;"><img src="http://www.wieistmeineip.de/ip-address/" border="0" width="125" height="125" alt="IP" /><br /></span></p>




If you use this code then it display the browser,os and country of the visitor.



Comparison of internet speed and rate of different networks

Friends,
Most of us uses various mobile service providers like idea,airtel etc. Also we use their internet services.
Here you can see the features of some internet services.
TATADOCOMO



Acess point                                                               TATA.DOCOMO.INTERNET 

Dialing no:                                                                 *99#

Lowest charge for internet                                         15 Rs

Usage                                                                       500 MB    

validity                                                                      7 days

Speed     (Min- Max)                                                25 KB/S- 35 KB/S

                                                          Docomo Gives High Speed and very good offers
   
VODAFONE

Acess point                                                              www

Dialing no:                                                                 *99#

Lowest charge for internet                                        14 Rs

Usage                                                                      200 MB

validity                                                                     3 days

Speed(Min-Max)                                                    25KB/S- 34KB/S

                                                                Gives High speed but limited offer

BSNL

Acess point                                                              bsnlnet 

Dialing no:                                                                 *99**1#

Lowest charge for internet                                        13 Rs

Usage                                                                      100 MB

validity                                                                     3 days

Speed(Min-Max)                                                    15KB/S- 22KB/S
                           
                                                                Average spped and offers(89 rupees for 3GB)

IDEA

Acess point                                                             internet 

Dialing no:                                                                 *99#

Lowest charge for internet                                       15 Rs

Usage                                                                     200 MB

validity                                                                    3 days

Speed(Min-Max)                                                    15KB/S- 20KB/S

                                                 Very poor offers and an average speed

AIRTEL 

Acess point                                                              airtelgprs.com

Dialing no:                                                                 *99#

Lowest charge for internet                                        13 Rs

Usage                                                                      2GB for browsing and unlimited downloading

validity                                                                     3 days

Speed(Min-Max)                                                     6KB/S- 12KB/S
  
                                             Very poor offers and very low speed


AIRCEL 

Acess point                                                             aircelgprs

Dialing no:                                                                 *99#

Lowest charge for internet                                       14 Rs

Usage                                                                     Unlimited browsing and downloading

validity                                                                    3 days

Speed(Min-Max)                                                   6KB/S- 12KB/S

                                           Poor speed but good offers




Sunday 7 August 2011

Remove software completely including registry entries

Hai friends,
Here discussing about a software called Revo Uninstaller. The is a simple software alternate for Windows "Add/Remove Programs"( Not exactly same). It has some extra features like forced to uninstall,hunter mode,unrecoverable delete, evidence cleaner, multi-level backup etc.Free versions of this software may not be include the  features. It supports windows xp,7 etc.Using Revo uninstaller you can uninstall trial version softwares in your system,it  edits the registry entries  so you can extend the trial period.
 


click here to download Revo uninstaller (free version)

C++ program to generate pascal's triangle without using array

Hai friends,
Here i give   c++ program to generate Pascal's  triangle. Many people use 2D array to generate Pascal's triangle.The use of 2D array may be complex. Use the following program.Try this simple code.

Pascal's triangle for the limit 6

1
1 2 1
1 3 3 1
1 4 6 4 1
1 5 10 10 5 1
1 6 15 20 15 6 1



C++ Program to generate Pascal's Triangle


#include<iostream>
using namespace std;
#include<conio.h>
int fact(int);
int main()
{
     int t,r,p=1,f,k,n,c,i,j;
     cout<<"Enter the limit \n";
     cin>>n;
     for(i=1;i<=n;i++,p++)
     {
                     k=0;
     for(j=0;j<=i;j++,k++)
     {
              t=fact(p);
     r=fact(p-k);
     f=fact(k);
      c=t/(f*r);
     cout<<c<<'\t';
     }
     cout<<'\n';
     }
     getch();
     }
     int fact(int x)
     {
         int z,f=1;
         if(x==0)
         return(1);
         else
         for(z=1;z<=x;z++)
         f=f*z;
         return(f);
         } 



Sample Output:
Enter the limit
5

1
1 2 1
1 3 3 1
1 4 6 4 1
1 5 10 10 5 1

Saturday 6 August 2011

Make remote control and desktop sharing more easier

Hello friends,
                    Some times we have to control different computers from different places through internet.A software called Team Viewer give  more efficient control. It give high security also. With team viewer  you can remotely  control any system from any where,including  Unattended computers.This operates with Windows, Mac , Linux and with Android operating systems.It is firewall friendly.

To operate a system from another computer you should run Team viewer on both sides.It generates partner id and password. After giving id and password properly you can access the other computer. It also optimize slow internet connections.Non commercial versions of Team viewer is available.
Try Team viewer and enjoy.


To download Team viewer go to www.teamviewer.com

Twitter Delicious Facebook Digg Stumbleupon Favorites More