Sunday, October 10, 2010

Turn Your Bluetooth Enabled Cell Phone Into Wireless WebCam

Posted: 06 Jul 2010 01:36 PM PDT

When I was doing my project for final year, I needed a wireless camera. But wireless camera actually costs higher that I was unable to afford. Later this thing came in my mind. Why can’t I turn my Bluetooth enabled cell phone in to wireless webcam?

After doing several researches, I finally hit the success. That’s why I would like to share this to you too. To turn my cell phone in to wireless webcam I needed only extra thing that is Bluetooth adapter for my desktop. I purchased it from the local market.

Let’s summarize things you’ll need:

-Cell phone with java, Bluetooth and camera in it.

-Bluetooth adapter for desktop

-Computer

-Software that will turn your phone in to wireless webcam

Now lets begin with the tutorial.

Download and install Smart Cam V1.5 for your desktop. Now again download the favorable cell phone software from here. If you have symbian OS in your cell phone then download the correct symbian version, or you can download the java version as well. After downloading install it to your cell phone.

Now you’ll need to pair your Cell phone with computer from Bluetooth.

Run smart cam program in windows. And open smart cam in your cell phone as well.

In windows, choose Bluetooth as the connection in Files>settings.

In cell phone select connect and choose the Computer device in range.

Remember your PC must be visible to everyone in order to detect the PC by cell phone.

If everything went well, you’ll be seeing through cell phone’s camera in your computer.

You can use it as webcam in instant messengers like hotmail and yahoo.

Hope this was helpful.

Saturday, October 9, 2010

Turn On Your PC From LAN

Posted: 03 Jul 2010 02:15 PM PDT

You might have heard and searched about shutting down remote PC.But, have you ever wished to turn on your PC remotely and access your file from FTP server and shut it down when not needed? Well you can. Sounds crazy isn’t it?

With simple tweak, you can turn your PC on from LAN. This will be a lot help if you have FTP server enabled from your desktop and you may want to access it from internet occasionally. Turning your PC always on will not be good as it will consume lots of energy. Even more your PC will be much more venerable for uninvited access.

To prevent this remotely turning on your PC can be good alternative.

To turn your PC on, all you need is the MAC (Physical address) address of the PC that you are turning on and Wake up on LAN or Power management from PCI enabled in the BIOS in the PC you want to turn on Remotely.

To check if it is enabled or not, go to BIOS setting in your PC by restarting and pressing Delete key(may varry according to motherboard). Go to Power Management Options, search for Wake up on LAN or Power management from PCI or any similar terms and enable it.

If you don’t see any option to manage power for PCI adapters then it might be possible to do it in Windows mode.

To do this, boot your computer to windows, go to Device Manager. Under network adapter choose the Network card that will be used to connect to LAN, i.e. your ethernet card.

Right click on it and choose properties. Go to Advanced tab.

Now in Property box scroll down to Shutdown Wake up or any similar terms. Select it and Enable it.

You may require a reboot after this.

Now your PC is ready to be turned on from LAN. This will enable to manage power from PCI devices like Ethernet cards. What it actually does is, configures BIOS to turn the PCI Ethernet card to grab some power even if PC is Powered Off. If any computer from LAN sends some command to PCI card then will will power on your PC.

Now anyting left to do is to have a tool to turn your remote PC own from remote location. I often use this tool since its free and customizable. With this free tool you only need to enter IP address of your PC and it will automatically get the MAC address of it. If required you have password field to enter.

Pressing Turn On button will turn on the PC with specified MAC address or IP address.

You can also check if the PC is on or off.

Hope this was helpful post. If you liked this post then bookmark us.

Oops! nearly forgot to mention the download link. Here it is: Fusion WakeUp On LAN

Thursday, October 7, 2010

Know The Date Of Installation Of Your Windows

Posted: 01 Jul 2010 11:38 AM PDT

Sometime you may need the OS installation date. You may want to know how old is your OS or any other information related to your system. Windows does not provide direct information about the installation date of installation of your OS.

However you can view the date of OS installation from command prompt by giving some syntax to it.

With following command you can view whole detail about the manufacturer and about your OS. In this tutorial I am focusing to installation date of Windows.

systeminfo

Open command prompt window by going to Run and type “cmd” (without quotes).

Input “systeminfo” command to it.

It will look up for system information and load the result below the input.

Search for the OS installation date. There you’ll find exact date for installation of OS. Not only this, you can view the BIOS version of your system, Computer model name, Product code, Time and date of system startup etc.

Hope this tutorial was informative.

This is guest post from You Can Hack Blog.

Wednesday, October 6, 2010

>> Run Registry Editor From Guest Account Even If It Is Blocked >> Learn To Create Your Own PHP Page Hit Counter

Run Registry Editor From Guest Account Even If It Is Blocked

Posted: 29 Jun 2010 12:38 PM PDT

Registry editor is well known registration directory where windows keep all the records of their setting files. Keeping it inaccessible from other users is extremely necessary in the point of view of security of data and information. Wherever you are, public cyber cafes, Library, College labs, etc you’ll see that you cannot access the heart utilities like Registry Editor.

The Regedit.exe is only the executable file to list up registries in systematically. You can arrange the registry’s easily by your own if you are a good programmer. But who is talking about programming here? I am talking about the program which is alternative for registry editor, RegAlyzer. This works exactly similar to Windows’ registry editor, only the difference is it’s name and it’s third-party.

This tool might be great help if you want to have instant hack to public computers and networks.


You can easily Download RegAlyzer from here.

Hope you liked this info.

Learn To Create Your Own PHP Page Hit Counter

Posted: 29 Jun 2010 06:32 AM PDT

Today, I will show you how you can use php’s file handling functions to create a web site page visit counter.
The script that we are going to create will open a file when called and read the value of the file then increment the value by one and then write that value to the file. We’re going to put the actual code inside a function so that way you can call the script on your page with only one line of code.

Now let’s begin. In order to open a text file in php, we need to call the function fopen(). This will open the file, if it exists, and return a file pointer. Instead of using the file name, you pass a file pointer to functions. Here is the beginning of our code:

In the above script, we declared a function by using the keyword function followed by the name of our function. Next, we used fopen() passing the name of a file in the same directory as the script where the page visits data will be stored as the first parameter; we then passed the second parameter r+, this tells the server that we want to open the hit.txt file for reading and writing. For more details about text file handling parameters, please review my previous tutorial about PHP and txt file interaction.
We must create a blank text file named as hit.txt in the directory where the current script is situated.
fopen() can take one more parameter: 1. If you pass the third parameter as 1, the file you passed the name of in the first parameter will be searched for in the include path. We store the result of fopen() in a variable named $file_pointer. If the file does not exist, fopen() will return false. Therefore we’ll need hit.txt initially.

if ($file_pointer == false)
{
return "Error:File not found or could not be opened!";
exit;
}

Now since file is opened, we’ll need to read the file, to do so, we’ll use function fread().

$hit= fread($file_pointer, filesize("hit.txt"));

The syntax for fread is (file open, filesize). To get the file open we’ll be using $file_pointer string and to get the size of the file we use the filesize(“filename.txt”) function. Now the contents of the file are stored in a variable with the name $hit. We will use the trim() function to strip any whitespace from the beginning and ending of the string.

$hit= trim($hit);

Trim will remove all the blank white spaces if exists, this will be helpful to maintain the file size and unexpected results. Now we have read the contents of the file into a variable and trimed up the variable, we will increase it’s value by 1 per hit, and write it back into the file. Before we write to the file, we need to go back to the begining of the file so we can write over the current count. We do this by using fseek().

$his++;
fseek($file_pointer, 0);
$result= fwrite($file_pointer, $hit);
if ($result == false)
{
return "Error: could unable to write file!";
exit;
}
else {
return $hit;
}

We use the increment operator (++) to add 1 to the hit count, then we use fwrite() function to write to the file. We then pass the file pointer and the hit count to fwrite(). If it returns false, the it will show error message. Lastly, we return the value of $hit, which holds the hit count.
Now we’ll need to close the file after reading and writing it. To do that we use fclose() and pass it the file pointer, and also we’ll add some error checking.

$close= fclose($file_pointer);
if ($close == false)
{
return "Error: could not close the file!";
exit;
}

And that’s all, we’re done! Here is the complete script for a hit counter:

function count_hit()

{

$file_pointer= fopen("hits.txt", "r+");

if ($file_pointer == false)

{

return "Error: could not open the file! It may not exist!";

exit;

}

$hits= fread($file_pointer, filesize("hits.txt"));

$hits= trim($hits);

$hits++;

fseek($file_pointer, 0);

$result= fwrite($file_pointer, $hits);

if ($result == false)

{

return "Error: could not write to the file!";

exit;

}

else {

return $hits;

}

$close= fclose($file_pointer);

if ($close == false)

{

echo "Error: could not close the file!";

exit;

}

}

?>

Now to display the hit on a webpage by adding following code snippet:

< ? php count_hit(); ?>

Hope you like the post :)


Tuesday, October 5, 2010

How To Use USB Flash Drives As A RAM

Posted: 27 Jun 2010 11:48 AM PDT

You might be probably searching for such software that can convert your 4 GB USB flash drive to usable RAM. I am going to guide you through the steps and tools that will be using your USB storage as a RAM. Though windows supports virtual paging file which uses your harddisk as a temporary RAM. But if you are working on notebook with lower RAM then Virtual RAM will boost up the harddisk usage. Finally dropping your battery life.

Therefore, using your USB storage device as RAM can be one of the best alternative for your real RAM.

First of all, you’ll need to download this file, Eboostr (Trial Version) or Eboostr (Full Version from torrent ).

Now you’ve one of the above file downloaded to your computer. Install it with default settings.

After installation, it is compulsary to reboot your computer.

Insert your USB flash drive first then open eBoostr from start menu.

In the program window, go to Edit > Add new cache device

You’ll see your USB disk at the left screen. Select it and click ok.

Then start caching the memory in your USB drive.

Alternatively, you can also click on Autoconfiguration button. Program will diagnose your system. After the diagnose is ended, click next. Choose all the recommended option to increase your system performance and click Next.

Now program will start to cache your memory. You may feel some difference in your windows performance.

This software requires USB device more than 256 MB.

It stores the current memory as a cache in your USB device. Eboostr stores cache of your frequently used applications on your USB Flash drive. It will help to reduce the Hard Disk access which is comparatively slower as compared to access in chips. Since hard disk requiers motor to rotate the disks, it will also consume a lot of your battery.

This is guest post from suraj kayastha, where he blogs about technology at You Can Hack Blog and Hacktutors.

Sunday, October 3, 2010

How To Use USB Flash Drives As A RAM

Posted: 27 Jun 2010 11:48 AM PDT

You might be probably searching for such software that can convert your 4 GB USB flash drive to usable RAM. I am going to guide you through the steps and tools that will be using your USB storage as a RAM. Though windows supports virtual paging file which uses your harddisk as a temporary RAM. But if you are working on notebook with lower RAM then Virtual RAM will boost up the harddisk usage. Finally dropping your battery life.

Therefore, using your USB storage device as RAM can be one of the best alternative for your real RAM.

First of all, you’ll need to download this file, Eboostr (Trial Version) or Eboostr (Full Version from torrent ).

Now you’ve one of the above file downloaded to your computer. Install it with default settings.

After installation, it is compulsary to reboot your computer.

Insert your USB flash drive first then open eBoostr from start menu.

In the program window, go to Edit > Add new cache device

You’ll see your USB disk at the left screen. Select it and click ok.

Then start caching the memory in your USB drive.

Alternatively, you can also click on Autoconfiguration button. Program will diagnose your system. After the diagnose is ended, click next. Choose all the recommended option to increase your system performance and click Next.

Now program will start to cache your memory. You may feel some difference in your windows performance.

This software requires USB device more than 256 MB.

It stores the current memory as a cache in your USB device. Eboostr stores cache of your frequently used applications on your USB Flash drive. It will help to reduce the Hard Disk access which is comparatively slower as compared to access in chips. Since hard disk requiers motor to rotate the disks, it will also consume a lot of your battery.

This is guest post from suraj kayastha, where he blogs about technology at You Can Hack Blog and Hacktutors.

Friday, October 1, 2010

How To Add An Option To Print All The Contents Of A Folder In XP

Posted: 24 Jun 2010 04:19 PM PDT

Once in many times, you may need to print whole files of the specific folder. Well if you need often to print number of files or you run a press media company then I am going to teach you how to print all the items in specific folder.

We’ll be adding new right click option to print the folder. Whenever you right click on any folder, this print option will be shown and whole folder files can be printed.

To do so you’ll need to create a batch file called Printdir.bat. Open Notepad and paste the following code:

@echo off
dir %1 /-p /o:gn > "%temp%\Listing"
start /w notepad /p "%temp%\Listing"
del "%temp%\Listing"
exit

Save it as, “%windir%\printme.bat” (without the quotes).

Now go to Start > Control Panel> Folder Options. Click the File Types tab, and then click File Folder.

Click the Advanced button.

Click the New button.

In the Action box, type “Print this folder” (without the quotes). In Application used to perform action box, type “printme.bat” (without the quotes).

If you did right then you’ll see image similar to below:

Click on OK in all three dialogue boxes.

Now you need to edit the Registry to add the Print this folder shortcut in right click. Open Registry Editor by typing “regedit” (without quotes) in RUN box (Start> Run).

Navigate to HKEY_CLASSES_ROOT>Directory>shell.

In the right side of the window, right click on “default” and select Modify.

In Value Data, type “none” (without the quotes).IMG_F

Click OK and close the Registry Editor.

Now when you right click on any folder, you’ll see the option, Print this folder.

Selecting it will print the contents of the folder.

Hope this was helpful.