Jean-Philippe Bergeron

Results 40 comments of Jean-Philippe Bergeron

I agree, I have the opposite use case and I would like to unzip a local `archive.tar.gz` and ftp it. ```javascript return gulp.src(path) .pipe(gunzip()) .pipe(untar()) .pipe(sftp({ host: '***', })); ```...

Hi, I made a wrapper which enables a shorter syntax. I understand that it will take all Boolean props and send them as icon, but with the object destructor, we...

There is a comparison here: https://tantivy-search.github.io/bench/

Thanks again for your library, I found something strange, when I embed Batang.ttf as MacRomanEncoding, then the file size is small, however when I embed Lato.ttf as WinAnsiEncoding, then the...

I would like to see support for `u64` for large databases.

Thank you for the answer. While I think about it, we are only storing deltas, and most `u64` deltas can be stored in `u32`. So this isn't as big of...

There is a third party benchmark here https://github.com/nitnelave/lru_cache

Would it be possible to use a different License other than GPL? This would make it possible to integrate this awesome library in commercial products.

This project is mentioned in the docs, but is in maintenance mode. https://www.serverless.com/framework/docs/guides/cicd/custom-scripts/ It would be really cool to get this functionality as part of serverless.

I am having another explanation for the same problem. I was trying to return a much smaller buffer from createReadStream, for fun, I returned ` return new Buffer(4)`. In Chrome,...