Skip to content

Instantly share code, notes, and snippets.

View zdzolton's full-sized avatar

Zach Zolton zdzolton

View GitHub Profile
@zdzolton
zdzolton / map.coffee
Created January 6, 2012 03:43 — forked from plesiecki/map.js
Hadoop Streaming with Node.js (CoffeeScript edition)
#!/usr/bin/env coffee
stdin = process.openStdin()
stdout = process.stdout
input = ''
stdin.setEncoding 'utf8'
stdin.on 'data', (data) ->
return unless data?