I hereby claim:
- I am Tyil on github.
- I am tyil (https://keybase.io/tyil) on keybase.
- I have a public key whose fingerprint is EB9E A484 1672 2D37 16F5 A799 9ACF E193 FFBC 1F50
To claim this, I am signing this object:
I hereby claim:
To claim this, I am signing this object:
#!/usr/bin/env bash | |
#set -e | |
#set -x | |
#set -v | |
function gitt () { | |
git tag --sort='-committerdate' --format=' %(authordate:relative)%09%(refname:short)' | |
} | |
function gitre () { | |
git remote -v | |
} |
Making IRC bots is incredibly simple in Raku, thanks to IRC::Client
. It
allows you to create a very simple bot in about 20 lines of code. There's a
plugin system that allows easy re-use of code between multiple bots, and adding
customized features can be as easy as dropping in an anonymous class.
So, let's get to it!