If you want, you can hide your hard drive. To do this, go to Start > Run. Then type gpedit.msc
On the left side, you will see a bar. From there, go to Local Computer Policy > User Configuration > Administrative Templates > Windows components > Windows Explorer. From the right side, double click on Hide these specified drives in my computer and then select Enable from Settings tab. After that, select the desired drive that you want to hide from Pick on of the following combinations box.
Sunday, November 8, 2009
Hide your desired hard drive
Friday, November 6, 2009
Amazing Search Features of Google
Everyday Essentials
Weather
To see the weather for many U.S. and worldwide cities, type "weather" followed by the city and state, U.S. zip code, or city and country.Stock Quotes
Time
Sports Scores
To see scores and schedules for sports teams type the team name or league name into the search box. This is enabled for many leagues including the National Basketball Association, National Football League, National Hockey League, and Major League Baseball.All sports data provided by STATS, Inc.
Reference Tools
Calculator
To use Google's built-in calculator function, simply enter the calculation you'd like done into the search box.Book Search
Earthquakes
Unit Conversion
Public Data
People Profiles
Choosing Keywords
Synonym Search
Dictionary Definitions
Spell Checker
Local Search
Local Search
Movie Showtimes
To find reviews and showtimes for movies playing near you, type "movies" or the name of a current film into the Google search box. If you've already saved your location on a previous search, the top search result will display showtimes for nearby theaters for the movie you've chosen.Trip Planning
Airline Travel Info
To see flight status for arriving and departing U.S. flights, type in the name of the airline and the flight number into the search box. You can also see delays at a specific airport by typing in the name of the city or three-letter airport code followed by the word "airport".Currency Conversion
Maps
Query Refinements
Plus (+) Operator
Related Search
Fill in the Blank
Search by Number
Package Tracking
You can track packages by typing the tracking number for your UPS, Fedex or USPS package directly into the search box. We’ll return results that include quick links to easily track the status of your shipment.Patent Numbers
Area Code
To see the geographical location for any U.S. telephone area code, just type the three-digit area code into the Google search box and hit the Enter key or click the Google Search button.Wednesday, November 4, 2009
PHP script – Number System Converter
We know that there are various kinds of bases (binary, decimal etc.) in number system in Mathematics. Four of them are most useful. So I have created a PHP script for converting binary, octal, decimal and hexadecimal to binary, octal, decimal and hexadecimal. The script is given below for sharing with you:
<html>
<head>
<title>Base Converter</title>
</head>
<body>
<form action="binary.php" method="get">
<input type="text" name="num" />
<br />
From: <select name="from">
<option value="binary" selected="selected">Binary</option>
<option value="octal">Octal</option>
<option value="decimal">Decimal</option>
<option value="hexadecimal">Hexadecimal</option>
</select>
<br />
To: <select name="to">
<option value="binary" selected="selected">Binary</option>
<option value="octal">Octal</option>
<option value="decimal">Decimal</option>
<option value="hexadecimal">Hexadecimal</option>
</select>
<br />
The Converted number is:
<?php
if ($_GET['from'] == 'binary' && $_GET['to'] == 'binary' ){
$a = base_convert($_GET['num'], 2, 2);
print $a;
} else if ($_GET['from'] == 'binary' && $_GET['to'] == 'octal' ){
$a = base_convert($_GET['num'], 2, 8);
print $a;
} else if ($_GET['from'] == 'binary' && $_GET['to'] == 'decimal' ){
$a = base_convert($_GET['num'], 2, 10);
print $a;
} else if ($_GET['from'] == 'binary' && $_GET['to'] == 'hexadecimal' ){
$a = base_convert($_GET['num'], 2, 16);
print $a;
} else if ($_GET['from'] == 'octal' && $_GET['to'] == 'binary' ){
$a = base_convert($_GET['num'], 8, 2);
print $a;
} else if ($_GET['from'] == 'octal' && $_GET['to'] == 'octal' ){
$a = base_convert($_GET['num'], 8, 8);
print $a;
} else if ($_GET['from'] == 'octal' && $_GET['to'] == 'decimal' ){
$a = base_convert($_GET['num'], 8, 10);
print $a;
} else if ($_GET['from'] == 'octal' && $_GET['to'] == 'hexadecimal' ){
$a = base_convert($_GET['num'], 8, 16);
print $a;
} else if ($_GET['from'] == 'decimal' && $_GET['to'] == 'binary' ){
$a = base_convert($_GET['num'], 10, 2);
print $a;
} else if ($_GET['from'] == 'decimal' && $_GET['to'] == 'octal' ){
$a = base_convert($_GET['num'], 10, 8);
print $a;
} else if ($_GET['from'] == 'decimal' && $_GET['to'] == 'decimal' ){
$a = base_convert($_GET['num'], 10, 10);
print $a;
} else if ($_GET['from'] == 'decimal' && $_GET['to'] == 'hexadecimal' ){
$a = base_convert($_GET['num'], 10, 16);
print $a;
} else if ($_GET['from'] == 'hexadecimal' && $_GET['to'] == 'binary' ){
$a = base_convert($_GET['num'], 16, 2);
print $a;
} else if ($_GET['from'] == 'hexadecimal' && $_GET['to'] == 'octal' ){
$a = base_convert($_GET['num'], 16, 8);
print $a;
} else if ($_GET['from'] == 'hexadecimal' && $_GET['to'] == 'decimal' ){
$a = base_convert($_GET['num'], 16, 10);
print $a;
} else {
$a = base_convert($_GET['num'], 16, 16);
print $a;
}
?>
<br />
<input type="submit" name="submit" value="Convert" />
<input type="reset" name="reset" value="Reset" />
</form>
</body>
</html>
You can also download the script from this link.
Saturday, June 27, 2009
HJSplit, a wonderful file splitting program for Windows XP
HJSplit is a wonderful file splitting program for Windows XP, Vista, 2000, NT, 95, 98, ME. It is a freeware, free for commercial and non commercial use. You can also distribute this program, freely and without charge (on CD-ROMs, Websites, etc.) provided that you do not change the program or the zip file in any way, that the program is clearly freeware or shareware, that you do not ask any money for the program itself.
Split file with HJSplit:
First run hjsplit.exe and click on "Split". To split a file, please first open the input file with the 'Input file' button. After pressing 'Start' the output (split) files will be put into the 'Output' location.
Join files with HJSplit:
The files split by the HJSplit can be joined by HJSplit. To join a set of files, please first open the .001 file using 'Input file' button. If other files (.002, .003, etc.) are in the same directory they will be found automatically.
Friday, June 26, 2009
Change the background of your hard drive or pen drive
Do you want to change the background of your hard drive or pen drive? Then this tutorial is only for you. To change background of your hard drive or pen drive, first open Notepad (Start > All Programs > Accessories > Notepad). Write the following codes:
[{BE098140-A513-11D0-A3A4-00C04FD706EC}]On the second line (IconArea_Image=), after equal sign (=) write your image name (that you want to use as background) without any space. For example: If the name of the image (that you want to use as background) is test.jpg then the second line will be as following:
IconArea_Image=
iconarea_text=0x00FFFFFF
IconArea_Image=test.jpgNow save these codes with the name desktop.ini in the drive of which background will be changed. If you save the file into a folder it will not work. I.e. if you want to change the background of D: drive, after saving the desktop.ini the location of it will be D:\desktop.ini. Now copy the desired image in the same drive.
Now refresh the drive and you will see the change. If you use background of light color like white, please delete the third line of the code and save it otherwise you will not be able to see the texts of the drive such as folder's name properly. Now hide both the image and the desktop.ini file.
Wednesday, June 24, 2009
Upload, share and earn at ziddu

Why Ziddu ?
- All free accounts! No Premium accounts!!
- Accepts parallel downloads! no waiting !!
- Apart from download, you can view / watch / listen online any uploaded file with Ziddu!
- Invite, Make and Share the joy and files with your Friends.
- A plethora of photo management tools such as 'Photo Album' and 'Slide Show' to share!
- Easy file management with multiple folder facility.
- Flexibility to create Video and Audio libraries to share!!
- Now users can browse & Use in Multiple Languages offered.
- Wish your loved ones with personalized Greetings !!
If you want to register with ziddu just click on the image in this post or click here.
Thursday, June 18, 2009
Hide installed programs from Add or Remove Programs
If you install any program in your computer, it will appear in Add or Remove Programs. From Add or Remove Programs, the installed program can be deleted. But you can hide some programs from Add or Remove Programs according your wish. Please follow the following steps:
- Go to Start > Run.
- Write regedit in the box and press Enter.
- Registry Editor will appear.
- Then go to HKEY_LOCAL_MACHINE \ SOFTWARE \ Microsoft \ Windows \ CurrentVersion \ Uninstall
- Now select your desire program (the program you want to hide).
- Now double click on the DisplayName from the right side.
A box will appear. Now delete the text in value data field and click OK.
Set multiple homepages in Firefox
Generally, there is a default homepage for every browser. But you can set your favorite web pages in multiple homepages in Firefox. For this you have to run Firefox at first. Then select Tools > Option. Suppose, you want to set three web pages as home page. In homepage field write down as following:
http://mahfuzbd.blogspot.com|http://www.google.com|http://www.mail.yahoo.com
Now click OK. Next time when you will run Firefox, these three homepage will appear in three different tabs in the same time.
Delete border from blogger.com
02. Select Layout.
03. Click on Edit HTML.

04. You will see HTML code of your blog.
05. Find out #header-wrapper and #header.
#header-wrapper {
width:660px;
margin:0 auto 10px;
border:0px solid $bordercolor;
}
#header {
margin: 5px;
border: 0px solid $bordercolor;
text-align: center;
color:$pagetitlecolor;
}
06. Do border 0 (Zero)
07. Now paste the following code anywhere.
#navbar-iframe {
height:0px;
visibility:hidden;
display:none
}
08. Save your settings.
09. Now visit your blog and the border will disappear.
Tuesday, June 9, 2009
Convert pdf to txt, doc, image etc.
PDF format is much known to us. We use pdf file for various purpose. Especially, we download pdf file from internet. Sometimes we need to convert these pdf file into other format such as .doc, .txt, .html etc. Besides, sometimes we need to convert .txt format to .pdf. There is some mobile phone that supports E-book but they support .txt format in lieu of .pdf. In this case if you want to read your .pdf formatted e-book in your phone you have to convert it in .txt format. A question may come in your mind that how you will convert your .pdf file to .txt file. Recently I found some links from where you will be able to convert a .pdf formatted file to another. The links are below:
If you some more links related to .pdf format conversion I expect that you will post them in comments. I will try to add them in this post.

