Friday is just around the corner

November 17, 2011
I made this.

Friday
Tags funny friday
Comments

Humility

November 15, 2011
The ability to lie about how awesome I am.
Tags words funny
Comments

Another Example of my SyncArray

November 2, 2011

I refer you to my original post with my SyncArray code

function getSubdirs = function(path, callback){ fs.readdir(path, function(err, files){ var sync = new SyncArray(files); var subdirs = []; sync.forEach(function(file, index, array, finishedOne){ fs.stat(file, function(err, stats){ if (stats.isDirectory()){ subdirs.push(file); } finishedOne(); }); }, function(){ callback(subdirs); }); }); }
Comments