I hereby claim:
- I am tillberg on github.
- I am tillberg (https://keybase.io/tillberg) on keybase.
- I have a public key ASBLA7JrC8xqZQqf4j_-vFR2PvS4IMBH_DurAozkba2BGgo
To claim this, I am signing this object:
I hereby claim:
To claim this, I am signing this object:
| ### Keybase proof | |
| I hereby claim: | |
| * I am tillberg on github. | |
| * I am tillberg_librato (https://keybase.io/tillberg_librato) on keybase. | |
| * I have a public key whose fingerprint is 9AD8 3F16 9561 4C8E 6FF7 9CC2 90CA 87BE 040A 55C5 | |
| To claim this, I am signing this object: |
| function loggedAsyncAuto (obj, doneCb) { | |
| var globalStart; | |
| function time () { | |
| return new Date().getTime(); | |
| } | |
| function elapsed (now) { | |
| var s = '' + (now - globalStart); | |
| return _.times(5 - s.length, function () { return ' '; }).join('') + s; | |
| } | |
| var keys = _.keys(obj); |
| Mix well and let sit for ~5 minutes: | |
| 2/3 cup lukewarm water | |
| 2 tablespoons olive oil | |
| 1 packet active dry yeast | |
| And then combine in mixing bowl with: | |
| 2 cups bread flour | |
| 1-2 teaspoons sugar | |
| 1 teaspoon kosher/sea salt | |
| Optionally: 1 tablespoon fresh rosemary (or 1-2 teaspoons dry), rough chopped. |
| #!/usr/bin/env node | |
| var http = require("http"), | |
| url = require("url"), | |
| path = require("path"), | |
| fs = require("fs"), | |
| port = process.argv[2] || 8888, | |
| mime; | |
| try { | |
| mime = require("mime"); | |
| } |
| @-webkit-keyframes 'blink' { | |
| 0% { opacity: 1; } | |
| 50% { opacity: 0; } | |
| } | |
| blink { | |
| -webkit-animation-duration: 1s; | |
| -webkit-animation-iteration-count: infinite; | |
| -webkit-animation-name: blink; | |
| -webkit-animation-timing-function: steps(1, end); | |
| } |