HP recently announced a new industry-standard for mobile computing with a laptop that can operate up to 24 hours on a single battery charge.  The claim is based on the new HP EliteBook 6930p, equipped with a solid state hard drive, HP Illumi-Lite LED display and ultra capacity battery.

“All-day computing has been the holy grail of notebook computing,” said Ted Clark, senior vice president and general manager, Notebook Global Business Unit, HP.  “With the HP EliteBook 6930p, customers no longer have to worry about their notebook battery running out before their work day is over.”.

The 24 hours of run time is based on a so-called industry-standard benchmark.  HP also claims that its Illumi-Lite LED increase run times by up to 4 hours over traditional LCDs, along with certain hardware and software tweaks.

On a personal note, I’m pretty wary about realistically running an EliteBook 3930p for 24 hours as defined by actual real world usage.  Nevertheless, even if run times result in 8-12 hours of real world usage, it’s still pretty impressive!

Source: MarketWatch

# Determine the current base URL
if(!isset($_SERVER['REQUEST_URI'])) {
$psps_base_url = $_SERVER['PHP_SELF'];
if (isset($HTTP_SERVER_VARS['QUERY_STRING'])) { $psps_base_url .= $HTTP_SERVER_VARS['QUERY_STRING']; }
} else {
$psps_base_url = $_SERVER['REQUEST_URI'];
}

$psps_parameters = '';

foreach ($_REQUEST as $key => $value) {
if (strpos($key,”psps_”) > -1 ) {
$psps_parameters .= ‘&’.$key.’=’.urlencode($value);
$psps_base_url = str_replace(‘&’.$key.’=’.urlencode($value), “”, $psps_base_url);
$psps_base_url = str_replace($key.’=’.urlencode($value), “”, $psps_base_url);
}
}

$psps_parameters .= “&psps_show_search=true”;
$psps_parameters .= “&psps_show_navigation=true”;
$psps_parameters .= “&psps_show_products=true”;

$psps_url = “?psps_base_url=”.urlencode($psps_base_url);

$psps_url=”http://shops.popshops.com/shops/php/06ekbrhwplty9ylaaevbz4om5$psps_url$psps_parameters”;

# Include the shop
if (function_exists(‘curl_init’)) {
$shop=curl_init();
curl_setopt($shop,CURLOPT_URL,$psps_url);
curl_exec($shop);
curl_close($shop);
} else {
readfile($psps_url);
}
?>

Post to Twitter Post to Delicious Post to Digg Post to Facebook