Skip to content

Instantly share code, notes, and snippets.

@mojodna
mojodna / README.md
Last active August 29, 2015 14:05 — forked from almccon/README.md
@mojodna
mojodna / caveatPatchor.js
Created October 14, 2011 23:14
caveatPatchor.js with html5 audio support
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);
}
@mojodna
mojodna / Procfile
Created September 29, 2011 20:22 — forked from RandomEtc/Procfile
Getting Kue working on Heroku
web: node app.js
worker: node consumer.js
{
"layer": "mojodna.net",
"id": "simplegeo-boulder",
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-105.27728,
40.01690
]
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
{
"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>"
@mojodna
mojodna / jsonpretty.txt
Created February 20, 2009 19:54 — forked from nicksieger/jsonpretty.txt
nicksieger's jsonpretty example with syntax highlighting
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