/* * 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; } } } } }
Enough to avoid air-pollution effects?Yes.
Not sure how to avoid air-pollution effects when living in an urban area. I hope a raw diet is enough.
Does anyone know if living in the countryside really is healthier than living in town, considering the fact that while city air might be full of bad stuff from car fumes, country air might not be better because of the higher amounts of endocrine-disruptive pesticides?
A raw diet may prevent the health hazards due to cooked food, but it doesn’t remove those due to air pollution, of course !Heterocyclic amines and polycyclic aromatic hydrocarbons are not only components of car-exhaust fumes but also toxins created by cooking. So I would imagine that if the body can get rid of such toxins derived from diet, they can also get rid of the same toxins derived from car-exhaust fumes.
Heterocyclic amines and polycyclic aromatic hydrocarbons are not only components of car-exhaust fumes but also toxins created by cooking. So I would imagine that if the body can get rid of such toxins derived from diet, they can also get rid of the same toxins derived from car-exhaust fumes.
Heterocyclic amines and polycyclic aromatic hydrocarbons are not only components of car-exhaust fumes but also toxins created by cooking. So I would imagine that if the body can get rid of such toxins derived from diet, they can also get rid of the same toxins derived from car-exhaust fumes.No point in eating raw then, since “the body can get rid of such toxins derived from diet” ! Where does your logic stand?
No point in eating raw then, since “the body can get rid of such toxins derived from diet” ! Where does your logic stand?I meant that the body has a limited ability to get rid of toxins on a daily basis, whether ingested or absorbed via the air etc. Obviously, when we eat a cooked food diet we overload the body's limited ability to detox. However, my idea was that if we are already eating 100% raw AND yet are subject to air-pollution, then MAYBE we might be able to use the body's ability to detox to get rid of the effects of air-pollution since we are not absorbing any toxins via our raw food diet. I suppose our ability to detox might be a problem in heavily overpolluted regions such as Beijing or Mexico City, though.
I meant that the body has a limited ability to get rid of toxins on a daily basis, whether ingested or absorbed via the air etc. Obviously, when we eat a cooked food diet we overload the body's limited ability to detox. However, my idea was that if we are already eating 100% raw AND yet are subject to air-pollution, then MAYBE we might be able to use the body's ability to detox to get rid of the effects of air-pollution since we are not absorbing any toxins via our raw food diet. I suppose our ability to detox might be a problem in heavily overpolluted regions such as Beijing or Mexico City, though.