I hereby claim:
- I am soldair on github.
- I am soldair (https://keybase.io/soldair) on keybase.
- I have a public key whose fingerprint is E225 9593 77B3 7C41 AF0E 9180 AEFB F862 B62A A835
To claim this, I am signing this object:
var foot = function(){ | |
/* | |
<div>footer</div> | |
*/ | |
} | |
var index = function fn(){ | |
/* | |
<!DOCTYPE html> | |
<html> |
var bs = require('binary-search'); | |
console.log(bs); |
{ | |
"name": "pinoccio-couch-example", | |
"description": "couch example for saving pinoccio stats", | |
"version": "0.0.0", | |
"repository": { | |
"url":"https://gist.github.com/c11d6ae6f4bead140838.git" | |
}, | |
"main": "index.js", | |
"scripts": { | |
"test": "tape test/*.js" |
<!DOCTYPE html> | |
<html> | |
<head></head> | |
<body> | |
<h1>Chipmunks!</h1> | |
<div id="graph"> | |
</div> | |
<script src="//ajax.googleapis.com/ajax/libs/jquery/1.9.1/jquery.min.js"></script> |
var pinoccio = require('pinoccio'); | |
var util = require('util'); | |
var style = require('style-dom'); | |
var term = require('hypernal')(); | |
var url = require('url'); | |
var colors = require('colors'); | |
var parsed = url.parse(window.location.href,true); | |
var token = (parsed.query||{}).token||"e113fa4270ae050a0c706d29eca5ad25"; |
I hereby claim:
To claim this, I am signing this object:
var UTF8_MASK = [0x80,0xc0,0xe0,0xf0]; | |
function utf8l(b){ | |
if (!(b & 0x80)) { | |
return 1; | |
} else if ((b & 0xE0) === 0xC0){ | |
return 2; | |
} else if ((b & 0xF0) === 0xE0) { | |
return 3; |
pressure-stream
pub-sub-duplex
i've exposed quite a few stats in my procfs-stats module. now i need to be able to make use of the data!
###poll-stream
###subtract-values-stream
var through = require('through') | |
module.exports = function(chain){ | |
chain = chain(); | |
var s = through(function(data){ | |
if(!chain.write(data)) this.pause(); | |
}); | |
chain.on('drain',function(){ | |
s.resume(); | |
}) |