Max

Results 228 comments of Max

I have another idea that might work (for OSX/Linux). Recently @mafintosh and I wrote https://www.npmjs.com/package/utun which lets you create virtual network devices by using the same syscall that VPN software...

The benefit is that you can do it programmatically and capture all system traffic

We're happy to add anyone to utun who wants to help improve it too (http://openopensource.org/ style). Only thing it needs right now is prebuilt binaries (we use https://www.npmjs.com/package/prebuild but havent...

Today I ran into this when trying to parse my gmail `.mbox` (https://support.google.com/accounts/answer/3024195?hl=en) with the https://www.npmjs.org/package/mbox-stream module which uses https://www.npmjs.org/package/mailparser which uses iconv-lite ``` [Error: Encoding not recognized: 'ISO-2022-JP' (searched...

Ah actually I forgot to also mention that mailparser uses https://www.npmjs.org/package/encoding which in turn uses `iconv-lite`, but `encoding` is supposed to be normalization layer around `iconv` and `iconv-lite` so it...

@mafintosh yea thats probably a good idea as well. destroy/remove could be in the manifest too

@olalonde not yet, but soon we're gonna be doing a blob heavy project so there will probably be some movement then

we are revisiting this now, and think a low level optional API for random access would be nice (in addition to the existing higher level stream API) ``` js module.exports.read...