I hereby claim:
- I am joates on github.
- I am joates (https://keybase.io/joates) on keybase.
- I have a public key whose fingerprint is C91E 057B 45C8 0E57 5D7D AF27 F665 0811 4B33 8905
To claim this, I am signing this object:
| # example usage | |
| # ------------- | |
| # "version": "1.2.3-beta" | |
| # | |
| # value captured by `sed -e` | |
| # -------------------------- | |
| # | |
| # \1 = 1 (major) | |
| # \2 = 2 (minor) | |
| # \3 = 3-beta (patch) |
I hereby claim:
To claim this, I am signing this object:
| <?php | |
| /** | |
| * @file | |
| * Miscellaneous supporting functions. | |
| */ | |
| /** | |
| * Returns a structured array defining the fields bundled with this content type. |
| /** Tags that look like labels (CSS3) **/ | |
| a.label-style-tag { | |
| display: inline-block; | |
| padding: 0px 10px; | |
| height: 30px; | |
| line-height: 30px; | |
| border-radius: 5px; | |
| font-weight: bold; | |
| font-size: 0.9em; | |
| text-decoration: none; } |
| var fs = require('fs') | |
| , extend = require('extend') | |
| , async = require('async') | |
| , obj = {} | |
| var files = [ | |
| '001-050.json' | |
| , '051-100.json' | |
| , '101-150.json' | |
| , '151-200.json' |
| { [Error: Sending failed] | |
| errors: [ { [Error: queryMx ENOTFOUND] code: 'ENOTFOUND', errno: 'ENOTFOUND', syscall: 'queryMx' } ] } |
| // private implementation of '[].unique' | |
| Array.prototype.unique = function() { | |
| var orig = {} | |
| , i | |
| , il = this.length | |
| , res = [] | |
| for (i = 0; i < il; i++) orig[this[i]] = this[i] | |
| for (i in orig) res.push(orig[i]) | |
| return res | |
| } |