/* * 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 can't remember if it was this show or not, but I remembering seeing a brief bit of a reality TV show with a high meat family and thinking there was no way I was going to eat that, but this forum has caused me to consider the possibility of eating high meat/fish in the future.
I did try some grassfed raw beef that went bad recently and it smelled and tasted like dung. I had to spit it out to avoid vomiting. Will it smell and taste better to me over time or is high meat somehow different from standard meat that has gone bad.
try many different varieties of aged raw animal foods. You'll find, like many, that you can only handle 1 or 2 types(for example, I still can't handle aged raw fish or aged raw eggs or aged raw muscle-meat, but aged raw beef heart or aged raw tongue is fine).Thanks Tyler. I'm guessing that I'll need to acquire a taste for organs before I like high-meat organs, right?
That said, you must ensure the high meat is always exposed to oxygen. I can tell, these days, if the high-meat hasn't had enough oyxgen as the taste is even wierder than usual, tasting highly unnatural unlike normal high-meat.I'm confused. Why in all of the examples of high-meat I've seen is the meat or fish kept in jars or buried underground if exposure to oxygen is key? This is a subject on which I know very little.