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...

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...

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...

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...

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...

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...

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...

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...

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...

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...

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.                                                                  ...

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...

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.                                           ...

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...

Happy Independence day

Proud to be an IND...

Unlock copy protected CD or DVD

Hello friends,                                                                             Some times we can't copy the...

Complete security for your system-no need of antivirus

                                                                     ...

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...

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 compute...

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:...

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...

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                                                              ...

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....

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...

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 ...

Page 1 of 2712345Next
Twitter Delicious Facebook Digg Stumbleupon Favorites More