Max

Results 229 comments of Max

@mafintosh is the one to ping on this

I looked into this a while ago and found something about the docker NAT implementation having a bug with UDP hole punching. Can't find the github thread now but thought...

I don't have time to work on this right now, but here's an old thread from a similar initiative I worked on https://github.com/depjs/dep/issues/8

possible prior art https://github.com/jbenet/multihash

There's a great talk on constant time cryptography from this years CCC https://www.youtube.com/watch?v=O07uRT-5BDM

the first article doesn't show any browserify usage at all

@lh3 just curious, are you benchmarks for `wc -l` online? the node one (from the speed) sounds like it was implemented incorrectly

this may be a more fair entry, written using a more modern node style ``` js var split = require('binary-split') var through = require('through2') var max = 0 var counter...

ah, the versions using `split` and `binary-split` create new objects for each line, which is very expensive. the version by @mafintosh just counts newlines in a big buffer. useful approach...