I hereby claim:
- I am stash on github.
- I am stash (https://keybase.io/stash) on keybase.
- I have a public key whose fingerprint is 57C8 8A18 B8A2 7183 F1D2 508D E8B2 D70F 321F 87A1
To claim this, I am signing this object:
| - this: is a yaml file | |
| with: a top level array containing a hash | |
| but: > | |
| When I want to have folded text like this | |
| where single newlines are converted into spaces | |
| I can't have colons | |
| like: this | |
| or it breaks the highlighting. |
| var crypto = require('crypto'); | |
| /* | |
| * Pretend you've got something like this stuffed into a JSON blob. Because | |
| * the IV is not authenticated, an attacker can alter the IV to flip arbitrary | |
| * bits in the plaintext. | |
| * | |
| * Solution is to use an AEAD cipher construct, | |
| * e.g. AES-256-GCM or AES + HMAC-SHA512/256 | |
| */ |
| -----BEGIN PGP SIGNED MESSAGE----- | |
| Hash: SHA512 | |
| I'm transitioning GPG keys. | |
| My old key is | |
| pub 4096R/321F87A1 2012-06-13 [expires: 2016-06-01] | |
| Key fingerprint = 57C8 8A18 B8A2 7183 F1D2 508D E8B2 D70F 321F 87A1 | |
| uid Jeremy Stashewsky <jeremy@goinstant.com> |
| { | |
| "name": "whatever", | |
| "version": "0.0.0", | |
| "main": "index.js", | |
| "scripts": { | |
| "test": "mocha tests", | |
| "coverage": "./node_modules/.bin/istanbul cover ./node_modules/.bin/_mocha tests" | |
| }, | |
| "devDependencies": { | |
| "mocha": "~1.18.2", |
| git reflog | perl -ne 'print $1,$/ if (/checkout: moving from .+? to (.+)$/ && !$seen{$1}++)' |
| var async = require('async'); | |
| var q = async.queue(runner, 1); | |
| function singular(fn) { | |
| return function() { | |
| if (!fn) { | |
| return; | |
| } | |
| var cb = fn; |
I hereby claim:
To claim this, I am signing this object:
| var fs = require('fs'); | |
| var util = require('util'); | |
| var Transform = require('stream').Transform; // import the Transform class | |
| var express = require('express'); | |
| var SVGO = require('svgo'); // svg optimizer - https://github.com/svg/svgo | |
| /** | |
| * Express setup goo goes here | |
| */ |
| /*jshint node:true */ | |
| 'use strict'; | |
| var assert = require('assert'); | |
| var sinon = require('sinon'); | |
| var util = require('util'); | |
| function spew(label, o) { | |
| console.log(label, util.inspect(o, {colors:true, depth:null})); | |
| } |