Tuesday 27 December 2011

Change NERO to ASHAMPOO

Are you bored with Nero.Here i recommend another super burning software Ashampoo.
It is more simpler than Nero.It is capable of creating compilations of CDs, Optical Disc Images, DVDs and Blu-ray Discs.Allows  creation of DVD movies from video files.



Main features : Simple,More user friendly,Disk cheking before ejecting,speed

Note: Ashampoo Burning studio 6 is free try it

Ashampoo Burning studio 11 Download link 


                                                                       




Funny Firefox trick

Here i will show a  funny trick

Copy the following code in your Firefox URL box 
chrome://browser/content/browser.xul

Firefox will run another firefox inside it.
                                                                  


                                                       

Very simple trick to speed up windows 7

Here is a simple trick to speed up your pc.
                                                                             
Do the folowing

1) Run --> regedit
2)
Goto HKEY_CURRENT_USER-->Control panel-->Desktop
Select Desktop
Several values will appear.
Select MenuShowDelay
Change its value 400 to 000
That's it

Note:The changes will appear after restart.


Monday 26 December 2011

Helicopter- C Graphics program

#include<stdio.h>
#include<graphics.h>
#include<conio.h>
#include<math.h>
#include<dos.h>
void heli();

int main()
{
    initwindow(2000,2000, "First Sample");
    heli();
    getch();
}

void heli()
    {
    int xf,yf;
    int x1,y1,x2,y2,x3,y3,x4,y4;
    int j=0,i=0;
    float t;      
    t=3.14/180;
    xf=450;
    yf=160;
    while(1)
      {
      for(i=0;i<360;i++,j++)
      {
                        setcolor(15);
                        x1=xf+(175-xf)*cos(t*i)-(150-yf)*sin(t*i);
                        y1=yf+(175-xf)*sin(t*i)+(150-yf)*cos(t*i);
                        x2=xf+(700-xf)*cos(t*i)-(150-yf)*sin(t*i);
                        y2=yf+(700-xf)*sin(t*i)+(150-yf)*cos(t*i);
                        x3=xf+(700-xf)*cos(t*i)-(175-yf)*sin(t*i);
                        y3=yf+(700-xf)*sin(t*i)+(175-yf)*cos(t*i);
                        x4=xf+(175-xf)*cos(t*i)-(175-yf)*sin(t*i);
                        y4=yf+(175-xf)*sin(t*i)+(175-yf)*cos(t*i);
                       
                       
                        line(x1+j,y1,x2+j,y2);
                        line(x2+j,y2,x3+j,y3);
                        line(x3+j,y3,x4+j,y4);
                        line(x4+j,y4,x1+j,y1);
                       
                        line(450+j,160,450+j,200);
                        line(450+j,200,250+j,215);
                        line(250+j,215,250+j,250);
                        line(250+j,225,100+j,225);
                        line(100+j,225,100+j,175);
                        line(100+j,225,100+j,235);
                        line(100+j,235,250+j,235);
                       
                       
                        line(250+j,250,425+j,300);
                        line(425+j,300,475+j,300);
                        line(450+j,300,435+j,315);
                        line(450+j,300,465+j,315);
                        line(475+j,300,650+j,250);
                       
                        line(450+j,200,650+j,215);
                        line(650+j,215,650+j,250);
                       
                       
                        setcolor(0);
                        x1=xf+(175-xf)*cos(t*i)-(150-yf)*sin(t*i);
                        y1=yf+(175-xf)*sin(t*i)+(150-yf)*cos(t*i);
                        x2=xf+(700-xf)*cos(t*i)-(150-yf)*sin(t*i);
                        y2=yf+(700-xf)*sin(t*i)+(150-yf)*cos(t*i);
                        x3=xf+(700-xf)*cos(t*i)-(175-yf)*sin(t*i);
                        y3=yf+(700-xf)*sin(t*i)+(175-yf)*cos(t*i);
                        x4=xf+(175-xf)*cos(t*i)-(175-yf)*sin(t*i);
                        y4=yf+(175-xf)*sin(t*i)+(175-yf)*cos(t*i);
                       
                        line(x1+j,y1,x2+j,y2);
                        line(x2+j,y2,x3+j,y3);
                        line(x3+j,y3,x4+j,y4);
                        line(x4+j,y4,x1+j,y1);
                       
                        line(450+j,160,450+j,200);
                        line(450+j,200,250+j,215);
                        line(250+j,215,250+j,250);
                        line(250+j,225,100+j,225);
                        line(100+j,225,100+j,175);
                        line(100+j,225,100+j,235);
                        line(100+j,235,250+j,235);
                       
                       
                        line(250+j,250,425+j,300);
                        line(425+j,300,475+j,300);
                        line(450+j,300,435+j,315);
                        line(450+j,300,465+j,315);
                        line(475+j,300,650+j,250);
                        line(450+j,200,650+j,215);
                        line(650+j,215,650+j,250);
                        }
                        }
                       
     
   
   
    
     }

Friday 23 December 2011

Vehicles moving on road- C graphics program

#include<stdio.h>
#include<conio.h>
#include<graphics.h>
#include<math.h>
#include<dos.h>
 int main()
{
    int i,j,k,l,m,n,p;
    initwindow(600, 400, "First Sample");

  line(0,160,700,160);
  line(0,275,700,275);
    for(i=0,j=500;i<500;i=i+2,j=j-3)
    {               
                     setcolor(15);
                      rectangle(25+j,225,75+j,245);
                      line(25+j,235,75+j,235);
                      circle(38+j,250,5);
                      circle(68+j,250,5);
                      delay(5);
                      setcolor(0);
                      rectangle(25+j,225,75+j,245);
                      line(25+j,235,75+j,235);
                      circle(38+j,250,5);
                      circle(68+j,250,5);
                      setcolor(15);
                      rectangle(25+i,165,75+i,200);
                      rectangle(75+i,175,85+i,200);
                      circle(38+i,205,5);
                      circle(68+i,205,5);
                      delay(5);
                      setcolor(0);
                      rectangle(25+i,165,75+i,200);
                      rectangle(75+i,175,85+i,200);
                      circle(38+i,205,5);
                      circle(68+i,205,5);
                      }
                      setcolor(15);
                      rectangle(25+i,165,75+i,200);
                      rectangle(75+i,175,85+i,200);
                      circle(38+i,205,5);
                      circle(68+i,205,5);
 getch();
}


Man walking on a road -C++ program

#include<stdio.h>
#include<graphics.h>
#include<conio.h>
#include<dos.h>
#include<math.h>
void man();
int main()
{
   
    initwindow(1050,1050 , "First Sample");
    man();
   
    getch();
}
void man()
{
     float t=3.14/180,j=0.0;
     int i,p,k=0,l,x1,y1,x2,y2,xf,yf,x,y,m=0; xf=201;yf=399;
     while(1)
     {
     for(i=0,j=0;(i<70||j<45);i++,j=j+1,k++)
     {
     cleardevice();
     line(0,400,1050,400);
     line(0,600,1050,600);
     line(200+k,400,200+k,200);
     circle(200+k,170,30);
     circle(225+k,160,3);
     x=199;y=249;
     x2=x+(280-x)*sin(t*j)-(300-y)*cos(t*j);
     y2=y+(280-x)*cos(t*j)+(300-y)*sin(t*j);
     line(200+k,250,x2+k,y2);
     x1=x+(280-x)*cos(t*j)-(300-y)*sin(t*j);
     y1=y+(280-x)*sin(t*j)+(300-y)*cos(t*j);
     line(200+k,250,x1+k,y1);
     x2=xf+(280-xf)*sin(t*i)-(500-yf)*cos(t*i);
     y2=yf+(280-xf)*cos(t*i)+(500-yf)*sin(t*i);
     line(200+k,400,x2+k,y2);
     x1=xf+(280-xf)*cos(t*i)-(500-yf)*sin(t*i);
     y1=yf+(280-xf)*sin(t*i)+(500-yf)*cos(t*i);
     line(200+k,400,x1+k,y1);
     delay(3);
     }
     }
     }

Wednesday 21 December 2011

Find nearest DNS server to increase internet speed

Domain Name System(DNS) that translates hostnames into ipaddress.If you can find your nearest DNS server
that will increase your internet speed. Here i suggest a software that will help you to find the nearest DNS server.
namebench is that useful software.
                                                                             
Run this in your system.
After some time it will show you the address of primary server.
After obtaing the server information open Network and Sharing Center.
Change the adapter settings.
Select properties of wireless network.
Select TCP/IPV4.
Give this address in the preferred  DNS server space. Also give secondary server address as  alternate address.

Download Namebench from here

Wednesday 7 December 2011

Simple Analog Clock- C program

This is very simple program for simple clock.Here the use of cleardevice() is eliminated because cleardevice() cause blinking of screen.Several steps of program is repeated with the color black -which is similar to clearsdevice() and avoids blinking.
       

                                                                    ANALOG CLOCK


#include<stdio.h>
#include<conio.h>
#include<graphics.h>
#include<math.h>
#include<dos.h>
void circles();
 int main()
{
    int xf,yf,x1,y1,x2,y2,k=0,x3,y3,x4,y4;
    float t,i=0.0,j=0.0;
    initwindow(1050, 1050, "First Sample");
       xf=249;
       yf=251;
       t=3.14/180;
       for(;;i=i+0.2,j=j+0.6,k=k+6)
        {
            setcolor(0);
            circles();
                
                
        x1=xf+(250-xf)*cos((i-0.2)*t)-(250-yf)*sin((i-0.2)*t);
        y1=yf+(250-xf)*sin((i-0.2)*t)+(250-yf)*cos((i-0.2)*t);
        x2=xf+(250-xf)*cos((i-0.2)*t)-(350-yf)*sin((i-0.2)*t);
        y2=yf+(250-xf)*sin((i-0.2)*t)+(350-yf)*cos((i-0.2)*t);
       
        line(x1,y1,x2,y2);
       
        x1=xf+(250-xf)*cos((j-0.6)*t)-(250-yf)*sin((j-0.6)*t);
        y1=yf+(250-xf)*sin((j-0.6)*t)+(250-yf)*cos((j-0.6)*t);
        x2=xf+(250-xf)*cos((j-0.6)*t)-(400-yf)*sin((j-0.6)*t);
        y2=yf+(250-xf)*sin((j-0.6)*t)+(400-yf)*cos((j-0.6)*t);
       
        line(x1,y1,x2,y2);
       
       
        x1=xf+(250-xf)*cos((k-6)*t)-(250-yf)*sin((k-6)*t);
        y1=yf+(250-xf)*sin((k-6)*t)+(250-yf)*cos((k-6)*t);
        x2=xf+(250-xf)*cos((k-6)*t)-(450-yf)*sin((k-6)*t);
        y2=yf+(250-xf)*sin((k-6)*t)+(450-yf)*cos((k-6)*t);
       
        line(x1,y1,x2,y2);
       
        setcolor(12);
        circles();
       
        x1=xf+(250-xf)*cos(i*t)-(250-yf)*sin(i*t);
        y1=yf+(250-xf)*sin(i*t)+(250-yf)*cos(i*t);
        x2=xf+(250-xf)*cos(i*t)-(350-yf)*sin(i*t);
        y2=yf+(250-xf)*sin(i*t)+(350-yf)*cos(i*t);
       
        line(x1,y1,x2,y2);
       
        x1=xf+(250-xf)*cos(j*t)-(250-yf)*sin(j*t);
        y1=yf+(250-xf)*sin(j*t)+(250-yf)*cos(j*t);
        x2=xf+(250-xf)*cos(j*t)-(400-yf)*sin(j*t);
        y2=yf+(250-xf)*sin(j*t)+(400-yf)*cos(j*t);
       
        line(x1,y1,x2,y2);
       
        x1=xf+(250-xf)*cos(k*t)-(250-yf)*sin(k*t);
        y1=yf+(250-xf)*sin(k*t)+(250-yf)*cos(k*t);
        x2=xf+(250-xf)*cos(k*t)-(450-yf)*sin(k*t);
        y2=yf+(250-xf)*sin(k*t)+(450-yf)*cos(k*t);
       
        line(x1,y1,x2,y2);
       delay(850);
       
       
        }
getch();
}
 void circles()
 {
                 circle(250,250,1.5);
                 circle(250,250,2);
                 circle(250,250,3);
                 circle(250,250,4);
                 circle(250,250,225);
                 circle(30,250,4);
                 circle(471,250,4);
                 circle(250,29,4);
                 circle(250,471,4);
 }   

Tuesday 6 December 2011

Simple Fan implementation-C program

This is simple program that implements a fan.
It just gives an idea,you can modify by filling color  and additional  drawings etc.
This graphics progam is written  in Dev C++ so it needs slight modifications to  run in Turbo C++ or C etc.



                                                                    FAN
                 


 #include<stdio.h>
#include<graphics.h>
#include<conio.h>
#include<math.h>
#include<dos.h>

void fan(int );

int main()
{
    initwindow(500, 500, "First Sample");
    fan(100);
    getch();
}

void fan(int p)
    {
    int xf,yf;
    int x1,y1,x2,y2,x3,y3,x4,y4;
    int j=0,i;
    float t;
      
       setcolor(12);
       xf=150;                        //Center of circle
       yf=150;
       t=3.14/180;
       while(j==0 )
           {   
                    for(;;i++)
       {
           cleardevice();
           circle(150,150,25);
           circle(150,150,1);
           line(150,126,150,100);
          
       x1=xf+(175-xf)*cos(120*t+i)-(130-yf)*sin(120*t+i);
       y1=yf+(175-xf)*sin(120*t+i)+(130-yf)*cos(120*t+i);
       x2=xf+(275-xf)*cos(120*t+i)-(130-yf)*sin(120*t+i);
       y2=yf+(275-xf)*sin(120*t+i)+(130-yf)*cos(120*t+i);
       x3=xf+(175-xf)*cos(120*t+i)-(150-yf)*sin(120*t+i);
       y3=yf+(175-xf)*sin(120*t+i)+(150-yf)*cos(120*t+i);
       x4=xf+(275-xf)*cos(120*t+i)-(150-yf)*sin(120*t+i);
       y4=yf+(275-xf)*sin(120*t+i)+(150-yf)*cos(120*t+i);
                         line(x1,y1,x2,y2);
                         line(x2,y2,x4,y4);
                         line(x4,y4,x3,y3);
                         line(x3,y3,x1,y1);
       x1=xf+(175-xf)*cos(240*t+i)-(130-yf)*sin(240*t+i);
       y1=yf+(175-xf)*sin(240*t+i)+(130-yf)*cos(240*t+i);
       x2=xf+(275-xf)*cos(240*t+i)-(130-yf)*sin(240*t+i);
       y2=yf+(275-xf)*sin(240*t+i)+(130-yf)*cos(240*t+i);
       x3=xf+(175-xf)*cos(240*t+i)-(150-yf)*sin(240*t+i);
       y3=yf+(175-xf)*sin(240*t+i)+(150-yf)*cos(240*t+i);
       x4=xf+(275-xf)*cos(240*t+i)-(150-yf)*sin(240*t+i);
       y4=yf+(275-xf)*sin(240*t+i)+(150-yf)*cos(240*t+i);
                         line(x1,y1,x2,y2);
                         line(x2,y2,x4,y4);
                         line(x4,y4,x3,y3);
                         line(x3,y3,x1,y1);
       x1=xf+(175-xf)*cos(360*t+i)-(130-yf)*sin(360*t+i);
       y1=yf+(175-xf)*sin(360*t+i)+(130-yf)*cos(360*t+i);
       x2=xf+(275-xf)*cos(360*t+i)-(130-yf)*sin(360*t+i);
       y2=yf+(275-xf)*sin(360*t+i)+(130-yf)*cos(360*t+i);
       x4=xf+(175-xf)*cos(360*t+i)-(150-yf)*sin(360*t+i);
       y4=yf+(175-xf)*sin(360*t+i)+(150-yf)*cos(360*t+i);
       x3=xf+(275-xf)*cos(360*t+i)-(150-yf)*sin(360*t+i);
       y3=yf+(275-xf)*sin(360*t+i)+(150-yf)*cos(360*t+i);
                         line(x1,y1,x2,y2);
                         line(x2,y2,x3,y3);
                         line(x3,y3,x4,y4);
                         line(x4,y4,x1,y1);
       delay(p);
    }
    }
    }

Sunday 27 November 2011

Make deleted files unrecoverable

                                                                                 
We delete some personal data from our system permanently. But some of these data came recover easily by using softwares(Ex: Delete  recova, easeus data recovery wizard). If you want to erase recoverable deleted data here is a simple software-MooO Anti-Recovery.
                                                                          
It is freeware.This software does not affect other existing files.MooO Anti-Recovery is compatible with windows xp/7 etc.
                               
To download this software use the below link

Download link

Mail protection-prevent answering of security question

                                                                                 
If we forgot our gmail or yahoo password we can recover it by answering our security question. But this technique can be used by other persons to hack your password. In the case of gmail there is only one security question but for yahoo there is  two questions. To protect our account we should give verity answers for the questions so that it will not easily guess by the hacker. Most people give simple questions because think it is very easy to remember but it is also very easy to answer.(Ex: Most people select the question what is your phone number?- They also give their phone number. So this can easily identified by other person.)
To protect your account you can give any question but the answer should be different(ie not the expected answer).
                                                                                

Also use sms security alert feature of gmail.

If you use others mobile phones to enter into  account you should sign out from your account. Don't directly close the browser. If you directly close the browser ,before closing you should clear the cache and cookies.

This article is only for ethical hacking purpose for protecting mail.
                    

Shutdown icon creation

                                                                         
Here is a simple trick to make a shortcut for shutdown.
Right click in your desktop.
Select New--> Shortcut
Then it will ask for the location of the item. In the box give the below command
shutdown.exe -s -t 0 (Just copy paste this).
Click Next--> then Finish
A new icon will appear in the desktop.
You can change the icon image  to any icon image by the following steps.

Right click on the icon.
Select Properties
Select Change Icon.
From the newly appeared menu select one icon. That's it.

                                                                                  

Wednesday 23 November 2011

Use Back Up facility in phones to prevant data loss

                                                                     
Our mobile phones contain important data such as phone numbers ,messages ,settings and applications. If our phone is destructed (may be software or hardware)any way we cant get these files. To avoid this data loss we should use the  back up option  provided in our phone.Many people does not use this facility .
Some times settings( Settings means GPRS settings or other phone settings) of our phone will  loss and cause  problems.
Ex: When you try to play a song the music player show out of memory. This problems can be simply solved by applying back up(.NBF )file.

Some times we want to  restore our phone . Restoring will loss all data and settings. Some service providers will take more to send GPRS settings to our phone. If we store our previous GPRS settings then we can easily  apply it.
                                                                 


STEPS for BACK UP
(Nokia phones)
Go to MENU-->Settings-->Sync and backup-->Create back up
This will create a .NBF file in your memory card. Store it in your computer for future use.

Note: I found that  some Nokia   phones shows  music player problems( out of memory problems).  If we apply .NBF file of another same type phone this problem will be solved.

Thursday 17 November 2011

Make portable software -Easy way.

We know about portable applications. Installing of  software spoil our disk space as well as it affect system's speed. A portable application  sometimes also called standalone programs. It is a  software program designed to run independently from an operating system. This type of application is stored on a removable storage device such as a CD, USB flash drive or flash card – storing its program files, configuration information and data on the storage medium alone.A portable application does not leave its files or settings on the computer.

Here is a simple software that helps you to make portable softwares.

Download the software Cameyo.(just 6.67 MB)
Install it by clicking the button Capture installation.
Don't click the Install done button appears after some time.


Now install the application that you want to make portable.

After installation click Install done button. That's it .

Go to the location containing the potable version of the application.








Saturday 15 October 2011

Usb disk protection

                                                                           
Many viruses and Trojans spreads via flash drives. Antivirus can't find some  virus that enter into system through usb auto run.By the use  usb security softwares you can prevent this. Usb disk security softwares delivers high level of protection against theft and prevents unauthorized persons from stealing your data.It protect your system without the need for signature updates.Also the use of antiviruses slowdown your system.
                                                                 


      Download one usb disk security software from here.
                               

Saturday 24 September 2011

100% deep recovery of deleted files

    
                                                                        
Here is an efficient  software to recover deleted files. Many softwares are available for recovery. But efficiency may be very low. EASEUS Data Recovery Wizard Professional is a good option if your important data is deleted from the hard disk. Unlike most other softwares, it restores files from formatted  disks, dynamic disks,  lost partitions. The type of the file system does not really matter as the program supports  FAT, NTFS and EXT2/EXT3.The program supports  medias such as memory cards, USB flash drive, memory stick, CF card or SD card. 

Download link 

Note1 : Download Full version else you can recover upto 1Mb files.
Note2:  You can recover data from formatted partitions.


Change wallpaper in the windows 7 log in screen

                                                                             
This is simple.
To change the the wallpaper  first RUN regedit.
Right click on HKEY_LOCAL_MACHINE and select find.
Give this word OEMBackground.

After finding OEMBackground  ,change its value 0 to 1.

Then go to the directory C:\Windows\System32\oobe.

Create there a folder and give the name INFO

Open that folder and inside that again create another folder then give the name BACKGROUNDS.

There paste the wallpaper you want to place instead of the default.

Give the name backgroundDefault to that picture.


Note: Size should be < 254 KB

Friday 23 September 2011

Change the size of picture - Easy way

                                                                              
Job application forms needs photo of the applicant or photo of signature. But the photo should have a desired size
(Eg: 10-20 KB). But it is very difficult to convert a small photo to this size. Here you can see a simple application to do this.

Advanced JPEG Compressor is that software.

Just open the photo in this software.

There is place to give the desired size.
Download it from here






See all features of Windows 7 in one window

This is very simple technique.
To do this first make a new folder in desktop.
Change the name of folder as  GodMode.{ED7BA470-8E54-465E-825C-99712043E01C} (press enter)
Then the icon will change.
Just double click. That's it , you can see all features of windows 7 .


Wednesday 21 September 2011

Convert photo to sketch

You want to convert a picture to pencil sketch ,then here is a simple way to do that. This is a simple software(photo to sketch standard) (size <2 MB)  coverts picture to pencil or pen sketch(The sketch has a professional look). Its free.

Download link is here .
                                                                  



Monday 19 September 2011

Windows 7 hidden themes and wallpapers

There are hidden wallpapers in windows 7. Normally you can apply  only the selected  themes depending upon the country selected at the time of windows  installation.
To take the hidden themes go to the location C:\Windows\Globalization\MCT (Copy this directory to search box and press enter)
Now you can see some folders.
Each folder contains awesome themes and wallpapers.
Apply any theme you like  and enjoy.
                                                                          


Sunday 18 September 2011

Protect your pendrive from virus-Easy trick

There are situation ,to use our USB drive in virus infected system. This may cause problems to our pendrive. Here you can use a simple protection technique. Use a portable antivirus with the pendrive.

ClamWin Portable (for Windows ) a free portable antivirus protects your usb. It has high detection rate to find virus and spywares. It provides a graphical user interface to the ClamAV (Clam AntiVirus) engine.Context menu integration for Windows Explorer is a feature of this antivirus.It may take  25 MB after installation on to the USB drive

Download it from here .

                                                                          


Change Google Chrome Theme

Are you bored with your normal Google Chrome theme. Get free  Google Chrome themes from Chrome Web store.
To change your theme Go to Preference then select Personal Stuff. Then select the last option Get themes.This will direct you to Chrome web store. Choose any theme from there .
Also You can  reset your default theme by clicking the option Reset to default theme.

Simple protection from keyloggers-Without software

We will handle several computers and use mail or facebook etc. If that system contains keyloggers then our password also recorded. I my previous article i told another technique to bypass keyloggers using virtual keyboards.But there is no virtual keyboards to use then use this trick.

Consider the password ZIMPLEBITZ
Then type MPLEB( ie a part of your password)
Move the mouse pointer to the starting part(Means infront of MPLEB)
Type ZI
Go to last (Use mouse to move the cursor) and type ITZ
That is split your password in to several parts and then complete  the password using mouse movements.
Note: Use mouse pointer to move forward or backward. If use keyboard then it will recorded by the keylogger.

Monday 5 September 2011

Save necessary drivers from system before installation

                                                                             
Hai friends,
           In Windows XP we need to install all the drivers. Some people need to reinstall Windows because of problem caused by virus activities or some other reasons. But They don't have the drivers to install(Some old system drivers are very hard to get from manufactures site). Here i tell some solution for this. You need a simple software for this known as driver collector(Just 20 KB).Run this it in your system, it helps to collect all drivers in your system to some specific folder. After installation you should specify the driver location(through Device Manager). that's it.

Download Link: Driver collector.

Play any videos with Windows media player

Hello friends,
                 Windows media player will not support formats like .flv ,.mkv etc. So we use other players. But using  this simple trick we can make windows media player to support any formats. Download   Combined Community Codec Pack(just 8.35 MB) This improves the performance of windows media player.
Enjoy the power of windows media player.
                                               
Note: There is also Windows Essentials Codec Pack to improve windows media player performance.

Hide Your Drives - Windows trick

                                                                             
Hello friends,

                   Any one want to protect their private data . Windows provide facility  hiding folders. Also you can  another folder hiding trick in my previous article which uses batch file. Here i explain how to hide a drive which contain your private data. It is  very simple.

Right click in My Computer icon.

Select Manage.

Select Disk Management.

There you can see your drives.Right Click the drive to be hide.

There is an option Change Drive Letter and Paths, select it.

A menu will appear.

Which contain your drive letter and options to add ,change and remove.
                                                                   
Select Remove.

Select Yes from the warning message.

That's it.

To View this drive again go to Disk Management.

 Right click on the drive.

Select the option Change Drive Letter and Paths

From the menu select Add

Then click OK in the new menu.

That's it.




Saturday 3 September 2011

Block websites in windows - No software needed

Hai friends,

Here you can see a simple trick to block websites in your system.
Go to C --> Windows-->System32-->drivers-->etc.
Open host file in  notepad.
Go to the end of the  line             127.0.0.1       localhost 
Press Enter.
Type 127.0.0.1 Name of the to be blocked(Ex: 127.0.0.1 www.zimplebitz.blogspot.com)
Save it
That's it.

Note : If you want to block many websites then each name should follow this IP address(127.0.0.1)
If you don't have permissions to edit host file then you can't do this. Right click the host file and select properties open  select security tab. Edit permissions.


                                                                   
                                                             



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



Twitter Delicious Facebook Digg Stumbleupon Favorites More