/* * 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 do occasionally eat small, fresh potatoes (yellow, white, purple and red) raw.
Last year I tried fermenting raw potato pulp and ended up slightly poisoned, so that I couldn't walk straight and kept veering to one side and bumping into things! I had to stay home for the day to let my brain recover.
Now I stick to vegetables containing safe resistant starches like cauliflower, cabbage, carrots, celery, broccoli, spinach, and beans.
Do you find raw potatos are more digestible than cooked?Yes (and I know that contradicts the claims of Wrangham and others), though I notice that as I eat more that I get a bit of a tingling in my mouth, so I don't push it beyond that point.
Last year I tried fermenting raw potato pulp and ended up slightly poisoned, so that I couldn't walk straight and kept veering to one side and bumping into things! I had to stay home for the day to let my brain recover.I haven't experienced this so far, luckily. Would you please provide more details that might help us to avoid the pitfall you experienced? How much were you eating? How did you ferment the potatoes and for how long? Thanks.
Now I stick to vegetables containing safe resistant starches like cauliflower, cabbage, carrots, celery, broccoli, spinach, and beans.The only food that I think contains significant RS among those is beans, though the others contain other forms of prebiotics.
So every plant contains resistant starch granules.Many do not contain any significant amount of RS. They contain other resistant microbiota-accessible storage carbohydrates resistant to stomach digestion, such as inulin, beta glucans and arabinogalactans. They don't get counted as carbs in calorie counts, because they aren't digested in our stomachs, and they reportedly tend to get converted into fats (SCFAs, which are easily converted into energy by our mitochondria) by the microbes, rather than carbs, so they don't function like ordinary carbs.