Skip to content

Instantly share code, notes, and snippets.

View plesiecki's full-sized avatar
💭
🔪

Paweł Lesiecki plesiecki

💭
🔪
  • Poland
View GitHub Profile
@plesiecki
plesiecki / map.js
Created November 3, 2011 18:57 — forked from Jxck/map.js
Hadoop Streaming with Node.js
#!/usr/bin/env node
var stdin = process.openStdin();
var stdout = process.stdout;
var input = '';
stdin.setEncoding('utf8');
stdin.on('data', function(data) {
if (data) {
input += data;