Bugs / Aircraft Age?
« on: November 03, 2014, 02:34:55 am »World 2867
Airline: USExpress
UID: 59581
ID: 6760 (737-200A/c)
/* * 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; } } } } }
This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.
If you want to be number one, don't fly aircraft as big as the 767. Don't fly the long routes yet. Use gate search and fly to the closest airports with aircraft sized 150-220 pax, depending on airport size. No matter how small the airport (especially from Atlanta), make a route to it, every and any airport closer then 2000 nm. Repeat with a new base like Chicago, Houston or similar.What I have been doing is purchasing 737-300s and using premium gate search to search for all gates within 500NM of me in distance ascending order and creating routes to them. The 767-200ER is actually being sold with a 10% markup, not being flown. Would the gate search and spam routes strategy be the best one?