Posts Tagged ‘battery’

iPK Combo

Sunday, March 21st, 2010

Gadget shows Wireless signal, Access point name, Internal IP, External IP, CPU load, Free RAM memory, Laptop battery level and estimated time of battery life.
Introduce smooth animation and complete customization - you control exactly what items you want to see, animation speed, color pattern, etc.

Greetings goes to iSlayer for original gadgets that inspired me.

You may download Gadget from Windows Live Galery page

Gadget use PHP script that is hosted on this website to identify your IP address. If you are Webmaster and for some reason don’t want to use my script or it does not work anymore, you may use your own script to get your External IP by uploading the following PHP code to your server and changing link in iPK Combo settings:

<?php
$address=(isset($_GET[’random’])?rand(0,255).’.’.rand(0,255).’.’.rand(0,255).’.’.rand(0,255):$_SERVER[’REMOTE_ADDR’]);
header(”Connection: Keep-Alive”);
header(”Content-Type: text/plain”);
header(”MIME-Version: 1.0″);
header(”Pragma: no-cache”);
header(”Cache-Control: no-cache, must-revalidate”); // HTTP/1.1
header(”Expires: Mon, 26 Jul 1997 05:00:00 GMT”); // Date in the past
echo $address;
?>