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 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 |
| subject { Formatter.new( users( :homer ) ) } | |
| example '#mailing_address' do | |
| verify { subject.mailing_address } | |
| end |