/* * 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 like high meat, but not in a craving/instinct sort of way...For the time being anyway
How does this fit into the philosophy?
You grew up on a SAD diet what you expect to have super instincts or something?
maybe next 10 years or something you will develop something like that.
What do you like in high meat? Its smell? Its taste? Do you speak about meat aged hanging on hook in a fridge or about small cuts of meat enclosed in a jar for some time in AV’s style? Don't rely on your cravings but on your smell and taste senses.
You grew up on a SAD diet what you expect to have super instincts or something?Don't remember saying anything about having super instincts or something...
maybe next 10 years or something you will develop something like that.
Btw how long you on RPD now?
From my early experience with high meat, I didn't much like the taste, but the increased energy and strengthened digestion, convinced me to keep eating it. Finally after experimenting with different types of aged- high-meat, I have discovered how wonderful properly rotted meat can taste. My shed has the most wonderful smell of decay, and I will visit it regularly for a snack.It is growing on me, that is for sure.