/* * 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; } } } } }
I recently came across this study from 1973 in which a 27 years old male has fasted for 382 days under the supervision of researchers from a Scotland University. This is the longest fast ever been recorded.
This patient weighted in 456 pounds (~207 kg) and weighted out 180 pounds (~82 kg). So, he lost 276 pounds (~125kg) during his fast. Five years after the fast ended, the patient’s weight has been constantly around the values of 196 pounds. A.B. had no ill symptoms during and after the fast.
I believe the reason I eat less on a raw mostly carnivore diet is because food doesn't taste that great. It's been well over 5 years since I had a McDonalds hamburger but I still salivate whenever I buy on for someone and bring it home in my car. Probably not much different that a junkie craving a shot of heroin...I believe cravings are mostly a mental problem. After convincing myself that I do not desire those foods and not eating them for years, I have no interest in them whatsoever, despite being surrounded by them all the time. I would argue that on raw carnivore food can taste very good, but that depends on the health and state of the animal you are eating. I've had all kinds of muscle, organs, fat and whatever else taste both disgusting and great in the past. Not surprisingly, the more unhealthy the animal, the worse it tastes.
Any theories as to why almost everyone is overweight?I would say it is easier to get satiated on raw food, and both protein and fat are generally more satiating than carbohydrates. Meanwhile most people eat a heavily cooked high carbohydrate diet.
I read stuff like this:
and I'm mystified as to what is going on.
- why is it so easy to gain weight on cooked stuff?
- what purpose does this fat serve?
- why is it hard to gain weight on raw?