/* * Patch for filter_var() */ if(!function_exists('filter_var')){ define('FILTER_VALIDATE_IP', 'ip'); define('FILTER_FLAG_IPV4', 'ipv4'); define('FILTER_FLAG_IPV6', 'ipv6'); define('FILTER_VALIDATE_EMAIL', 'email'); define('FILTER_FLAG_EMAIL_UNICODE', 'unicode'); function filter_var($variable, $filter, $option = false){ if($filter == 'ip'){ if($option == 'ipv4'){ if(preg_match("/(\d{1,3}\.\d{1,3}\.\d{1,3}\.\d{1,3})/", $variable, $matches)){ $variable = $matches[1]; return $variable; } } if($option == 'ipv6'){ if(preg_match("/\s*(([:.]{0,7}[0-9a-fA-F]{0,4}){1,8})\s*/", $variable, $matches)){ $variable = $matches[1]; return $variable; } } } if($filter == 'email'){ if($option == 'unicode' || $option == false){ if(preg_match("/\s*(\S*@\S*\.\S*)\s*/", $variable, $matches)){ $variable = $matches[1]; return $variable; } } } } }
Actually, animals are highly selective as regards what they eat. For example, there was a Nature documentary on killer whales hunting grey whale calves and they would only eat the tongue of the calf but leave the rest. Lions in the wild do not, apparently, eat the whole carcass but leave the faeces alone.A rabbit would likely have to be skinned. I am sure, though, that carcasses were left out to age for a while so that they could be more easily dealt with minus flint-knives, in more ancient Palaeo times.I agree with you on this, Tyler. I would too, assuming I wouldn't be starving, rather eat some cuts of muscle or organs than others. So, I am wondering, what exactly humans would be eating instinctively from the animal. And I too, have noticed that dry aging meat makes it easier to chew and cut (most raw meat is already much easier to chew and cut than cooked).
Actually, animals are highly selective as regards what they eat. For example, there was a Nature documentary on killer whales hunting grey whale calves and they would only eat the tongue of the calf but leave the rest. Lions in the wild do not, apparently, eat the whole carcass but leave the faeces alone.A rabbit would likely have to be skinned. I am sure, though, that carcasses were left out to age for a while so that they could be more easily dealt with minus flint-knives, in more ancient Palaeo times.
I agree with you on this, Tyler. I would too, assuming I wouldn't be starving, rather eat some cuts of muscle or organs than others. So, I am wondering, what exactly humans would be eating instinctively from the animal. And I too, have noticed that dry aging meat makes it easier to chew and cut (most raw meat is already much easier to chew and cut than cooked).I suspect that HGs in palaeo times, prior to using flints etc., and perhaps even afterwards, just shoved a rabbit carcass under a rock and left it to rot for a week or more before being able to then tear it apart in chunks and eat the meat.