Skip to content

Instantly share code, notes, and snippets.

@rosalindwills
rosalindwills / index.js
Created October 30, 2012 03:18 — forked from max-mapper/index.js
twitter bot for #sandyaid retweets
var message = tweet.id_str + " @" + tweet.user.screen_name + ' ' + tweet.text
@rosalindwills
rosalindwills / index.js
Created October 30, 2012 03:34 — forked from max-mapper/index.js
twitter bot for #sandyaid retweets
if (tweet.text.match(/^RT/)) return
bot.privmsg('#sandyaid', tweet.id_str + " @" + tweet.user.screen_name + ' ' + tweet.text)