Skip to content

Instantly share code, notes, and snippets.

@cmatheson
Created February 27, 2013 23:32
Show Gist options
  • Save cmatheson/5052865 to your computer and use it in GitHub Desktop.
Save cmatheson/5052865 to your computer and use it in GitHub Desktop.
jerkins!!! (irssi plugin)
use strict;
Irssi::command_bind jerkins => sub {
my ($data, $server, $witem) = @_;
return unless $witem;
my $poo = ":poop: :persevere: :poop:";
$server->send_raw(
"PRIVMSG $witem->{name} :$poo http://ryanflorence.com/gifs/jenkins.gif $poo"
);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment