Skip to content

Instantly share code, notes, and snippets.

View brianneisler's full-sized avatar
🏠
Working from home

Brian Neisler brianneisler

🏠
Working from home
View GitHub Profile
@staltz
staltz / introrx.md
Last active August 6, 2026 06:30
The introduction to Reactive Programming you've been missing
@nicolasfont
nicolasfont / targznode
Created March 15, 2012 00:52
tar.gz with node.js
var fstream = require("fstream"),
tar = require("tar"),
zlib = require("zlib");
fstream.Reader("src").pipe(tar.Pack()).pipe(zlib.createGzip()).pipe(fstream.Writer("output.tar.gz"));