I hereby claim:
- I am nagarjun on github.
- I am nagarjunp (https://keybase.io/nagarjunp) on keybase.
- I have a public key ASDxsZlu6v48W6kkgBPjqak6bo7c7avu2DJthz8kx4FVGgo
To claim this, I am signing this object:
I hereby claim:
To claim this, I am signing this object:
[ | |
{ | |
"icaoCode": "A124", | |
"iataCode": "A4F", | |
"description": "Antonov AN-124 Ruslan" | |
}, | |
{ | |
"icaoCode": "A140", | |
"iataCode": "A40", | |
"description": "Antonov AN-140" |
var zones = { | |
"-12:00" : "Etc/GMT-12", | |
"-11:00" : "Etc/GMT-11", | |
"-11:00" : "Pacific/Midway", | |
"-10:00" : "America/Adak", | |
"-09:00" : "America/Anchorage", | |
"-09:00" : "Pacific/Gambier", | |
"-08:00" : "America/Dawson_Creek", | |
"-08:00" : "America/Ensenada", | |
"-08:00" : "America/Los_Angeles", |
// in the component's didInsertElement | |
$(window).on('resize', function() { | |
return Em.run.debounce(that, 'resizeWindow', 250); | |
}); | |
// in the route's willTransition | |
actions: { | |
willTransition: function() { | |
$(window).off('resize'); | |
} |
/** | |
* Get the contents of Title tag from URL. | |
*/ | |
function get_title($URL) | |
{ | |
// Set the user agent so external servers don't block us. | |
ini_set('user_agent', 'Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.9.0.11) Gecko/2009060215 Firefox/3.0.11'); | |
$page_contents = file_get_contents($URL); |