Skip to content

Instantly share code, notes, and snippets.

@hudsonfoo
hudsonfoo / popcorn.coffee
Last active November 13, 2015 00:41 — forked from psi/popcorn.coffee
# Hubot likes popcorn
#
# brb, making popcorn
module.exports = (robot) ->
robot.hear /popcorn/i, (msg) ->
if Math.floor(Math.random() * 2) == 0
msg.send 'https://media.giphy.com/media/zQxnrdxitCRkQ/giphy.gif'
else
msg.send 'https://media.giphy.com/media/GjYjLvGErsggg/giphy.gif'