Keybase proof
I hereby claim:
- I am jeremyruppel on github.
- I am ruppel (https://keybase.io/ruppel) on keybase.
- I have a public key whose fingerprint is 6BC0 48A5 BA4D 361A 7F22 26D8 5E8C 0AAA 6F00 5E06
To claim this, I am signing this object:
I hereby claim:
To claim this, I am signing this object:
var path = require("path"); | |
/** | |
* GET /services/rest?api_key=9147f8d3b61c82089641b1268482c2a1&format=json&nojsoncallback=1&method=flickr.photos.search&text=coffee | |
* | |
* host: api.flickr.com | |
* accept-encoding: gzip, deflate | |
* user-agent: node-superagent/1.8.3 | |
* connection: close | |
*/ |
var request = require('superagent'); | |
/** | |
* @constructor | |
*/ | |
module.exports = Client; | |
function Client(api_key) { | |
this.params = {}; |
var request = require('superagent'); | |
/** | |
* @constructor | |
*/ | |
module.exports = Client; | |
function Client(api_key) { | |
this.params = {}; |
var request = require('superagent'); | |
/** | |
* @constructor | |
*/ | |
module.exports = Client; | |
function Client(api_key) { | |
this.params = {}; |
on run {input, parameters} | |
tell application "Evernote" | |
get the note link of the first item in (selection as list) | |
end tell | |
end run |
#!/usr/bin/env bash | |
## | |
# The dimensions for the physical QR code, in pixels. | |
# The Brother QL-570 Label Printer tape is 2.44" wide | |
# at 72ppi, and 72 * 2.44 = 175.68, so 175 is good. | |
size=175x175 | |
## | |
# Usage: qrcode [url] |
describe MyClass do | |
example '#foo' do | |
verify { subject.foo } | |
end | |
end |
it 'should GET index' do | |
xhr :get, api_resource_path( version, resource.id ), :auth_token => user.authentication_token | |
verify :format => :json do | |
last_response.body | |
end | |
end |
example '#tracking_hash' do | |
verify { users( :homer ).tracking_hash } | |
end |