There’s hope for paraplegics to walk again thanks to Amit Goffer, founder of Argo Medical Technologies, a high-tech company based in Israel.  Goffer and his team have developed a human exoskeleton with an uncanny ability to help paralyzed individuals walk again.

Human Exoskeleton by Argo Medical Technologies

Controlled by a remote control on a wrist band and a whole whack of technology, this suit allows a whole range of motions while standing up.  Crutches are required to help balance the user during operation.

I hope this project develops into a mirrored reality as commonly seen in Science Fiction lore, where users can recapture their ability to walk thanks to some exotic peice of technology.

A truly inspiring project if you ask me.

Source: Reuters

# 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/0uh26td11ylmws5h2w7vc0dr1$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