Skip to content

Instantly share code, notes, and snippets.

@chesles
chesles / gist:7143817
Last active December 26, 2015 11:29 — forked from paladiy/gist:5591997
{"keys": [], "values": ["123"]}
@chesles
chesles / borg.rb
Created May 31, 2013 19:17 — forked from xunker/borg.rb
voices = %w[Agnes Alex Bruce Bubbles Fred Junior Kathy Princess Ralph Vicki Victoria]
phrases = [
"We are the Borg.",
"Lower your shields and surrender your ships.",
"We will add your biological and technological distinctiveness to our own.",
"Your culture will adapt to service us.",
"Resistance is futile."
]
@chesles
chesles / index.js
Created October 25, 2012 03:05 — forked from max-mapper/index.js
fetch images and store in pouchdb
var path = require('path')
var Pouch = require('pouchdb')
var async = require('async')
var request = require('request')
var queue = async.queue(queueWorker, 5) // 5 requests at a time
var imageURLs = [
"http://substack.net/images/ben.png",
"http://substack.net/images/bed.png"
]