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
| {"keys": [], "values": ["123"]} |
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
| 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." | |
| ] |
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 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" | |
| ] |