/* * 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; } } } } }
Raw Paleo Diet Forums > General Discussion
Iconic raw-meat-eating scenes in films/TV+texts about eating raw meat
TylerDurden:
That reminds me, in the film "Castaway", Tom Hanks spears a fish and eats it raw.
invisible:
In Indiana Jones and The Temple of Doom the Indians eat raw bugs, snakes and monkey brains
TylerDurden:
--- Quote from: invisible on April 03, 2009, 12:09:33 pm ---In Indiana Jones and The Temple of Doom the Indians eat raw bugs, snakes and monkey brains
--- End quote ---
Are you sure they were raw, not cooked?
Flymaster:
'Rosemary's Baby' - Mia Farrow eats a plate of raw liver out of the fridge -d. Grossed me out at the time, but now I almost do the same myself (light searing of the outside, for appearances sake, you understand.)
TylerDurden:
In the Dukes of Hazzard TV series, Boss Hogg, the chief villain, is often shown eating raw liver. The implication is that someone who eats raw meat must be a villain.
Navigation
[0] Message Index
[#] Next page
[*] Previous page
Go to full version