Comparison of Stamen Design's previous Toner style with new Toner data as of 2014.
Borrowed from Andrew Harvey's gist here and his live demo.
Extended with Leaflet-hash by Michael Evans
Adapted to function on bl.ocks.org by Alan McConchie
Comparison of Stamen Design's previous Toner style with new Toner data as of 2014.
Borrowed from Andrew Harvey's gist here and his live demo.
Extended with Leaflet-hash by Michael Evans
Adapted to function on bl.ocks.org by Alan McConchie
var HTML5Audio = true; | |
if (HTML5Audio) { | |
Campfire.HTML5Audio = Class.create({ | |
initialize: function(chat) { | |
this.chat = chat; | |
var messages = this.chat.transcript.messages; | |
for(var i = 0; i < messages.length; i++) { | |
this.detectAudio(messages[i], false); | |
} |
web: node app.js | |
worker: node consumer.js |
{ | |
"layer": "mojodna.net", | |
"id": "simplegeo-boulder", | |
"type": "Feature", | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
-105.27728, | |
40.01690 | |
] |
{ | |
"geometry":{ | |
"type":"Point", | |
"coordinates":[ | |
-122.421583, | |
37.795027 | |
] | |
}, | |
"type":"Feature", | |
"id":"SG_5JkVsYK82eLj26eomFrI7S_37.795027_-122.421583@1291796505", |
package com.simplejavaapp; | |
import java.io.IOException; | |
import java.util.ArrayList; | |
import com.simplegeo.client.SimpleGeoPlacesClient; | |
import com.simplegeo.client.callbacks.FeatureCollectionCallback; | |
import com.simplegeo.types.Feature; | |
import com.simplegeo.types.FeatureCollection; |
{ | |
"query":{ | |
"latitude":37.778381, | |
"longitude":-122.389388 | |
}, | |
"timestamp":1291766899.794, | |
"weather": { | |
"temperature": "65F", | |
"conditions": "light haze" | |
}, { |
#!/usr/bin/env ruby -rubygems | |
require 'oauth' | |
require 'optparse' | |
options = {} | |
option_parser = OptionParser.new do |opts| | |
opts.banner = "Usage: #{$0} [options] <query>" |
jsonpretty: A command-line JSON pretty-printer. | |
Get it: gem install jsonpretty | |
Source: http://github.com/nicksieger/jsonpretty | |
Example: | |
$ curl -i http://github.com/api/v1/json/nicksieger | jsonpretty | pygmentize -l js | |
HTTP/1.1 200 OK | |
Server: nginx/0.6.26 |