This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
print 'hi'; | |
?> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var http = require('http'), | |
net = require("net"), | |
fs = require("fs"), | |
Canvas = require('canvas'); | |
var path_regex = /^\/apb\/status[\/]?$/; | |
var image_cache; | |
var servers = [{ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.4.1/jquery.min.js" type="text/javascript"></script> | |
<script type="text/javascript"> | |
function fetchAndPrintPosts(id,num,tag) | |
{ | |
// Read data from Tumblr, this creates the variable tumblr_api_read. | |
jQuery.ajax({ | |
url : "http://staff.tumblr.com/api/read/json?num=" + num + "&filter=text&tagged=" + tag, | |
dataType : "jsonp", | |
success : function(test) { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
centerMapOnCity: function() { | |
var that = this; | |
this.deleteOverlays(); | |
var entered_city = $("post_location_name").value; | |
if(entered_city) { | |
var city = "", state = "", country = ""; | |
this.geocoder.geocode( { 'address': entered_city}, function(results, status) { | |
if (status == google.maps.GeocoderStatus.OK) { | |
var latlng = results[0].geometry.location; | |
general_location = that.getGeneralLocation('address', results); |
NewerOlder