/* * 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; } } } } }
For those who eat relatively low carb, what sort of values are you hitting for daily fat consumption (grams if possible)?I eat it usually as chunks of suet with my meat. I hit maybe 1/2 pound a day.
Do you just chew on fat until your desire to eat any more diminishes?
Could over-eating raw fat be taxing on digestion?Yes, definitely. It takes a fair amount of bile to break down denser fats and if you eat way too much they'll sit very heavy. It's also likely if you eat much more that you can handle that you'll purge it all with diarrhea as well.
Do you consider my taste for fat and my desire to eat it as a sign I should go wild with it?Personally, yes. Just take it slow and listen to your body. You should get signs to stop when you've had enough.
For those who eat relatively low carb, what sort of values are you hitting for daily fat consumption (grams if possible)?
Do you just chew on fat until your desire to eat any more diminishes?
Could over-eating raw fat be taxing on digestion?
Do you consider my taste for fat and my desire to eat it as a sign I should go wild with it?