├── .gitignore ├── LICENSE ├── MANUAL.md ├── README.md ├── about.html ├── asdf-extra.lisp ├── client.lisp ├── colleen-logo.png ├── colleen.asd ├── command-handler.lisp ├── conditions.lisp ├── config.lisp ├── event-handler.lisp ├── event-priority.lisp ├── event.lisp ├── globals.lisp ├── irc-codes.lisp ├── irc-commands.lisp ├── irc-events.lisp ├── launcher.lisp ├── module-storage.lisp ├── module.lisp ├── modules ├── authenticate.lisp ├── backup.lisp ├── chanblock.lisp ├── chatlog-pg.lisp ├── chatlog.lisp ├── convert.lisp ├── core.lisp ├── counter.lisp ├── dictionary.lisp ├── dramatica.lisp ├── emoticon.lisp ├── essentials.lisp ├── eval.lisp ├── google-lng.lisp ├── google.lisp ├── markov-twitter-bridge.lisp ├── markov.lisp ├── medals.lisp ├── mentions.lisp ├── notify.lisp ├── profile.lisp ├── rss.lisp ├── rules.lisp ├── search.lisp ├── shiritori.lisp ├── silly.lisp ├── stands4.lisp ├── stevenchan.lisp ├── syslog.lisp ├── system-definitions.lisp ├── throttle.lisp ├── topic.lisp ├── twitch.lisp ├── twitter.lisp ├── urlinfo.lisp ├── weather.lisp └── welcome.lisp ├── package.lisp ├── sample.uc.lisp ├── time-handler.lisp └── toolkit.lisp /.gitignore: -------------------------------------------------------------------------------- 1 | config/ 2 | backup/ 3 | modules/trainer/ 4 | lib/ -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shinmera/colleen/HEAD/LICENSE -------------------------------------------------------------------------------- /MANUAL.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shinmera/colleen/HEAD/MANUAL.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shinmera/colleen/HEAD/README.md -------------------------------------------------------------------------------- /about.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shinmera/colleen/HEAD/about.html -------------------------------------------------------------------------------- /asdf-extra.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shinmera/colleen/HEAD/asdf-extra.lisp -------------------------------------------------------------------------------- /client.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shinmera/colleen/HEAD/client.lisp -------------------------------------------------------------------------------- /colleen-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shinmera/colleen/HEAD/colleen-logo.png -------------------------------------------------------------------------------- /colleen.asd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shinmera/colleen/HEAD/colleen.asd -------------------------------------------------------------------------------- /command-handler.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shinmera/colleen/HEAD/command-handler.lisp -------------------------------------------------------------------------------- /conditions.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shinmera/colleen/HEAD/conditions.lisp -------------------------------------------------------------------------------- /config.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shinmera/colleen/HEAD/config.lisp -------------------------------------------------------------------------------- /event-handler.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shinmera/colleen/HEAD/event-handler.lisp -------------------------------------------------------------------------------- /event-priority.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shinmera/colleen/HEAD/event-priority.lisp -------------------------------------------------------------------------------- /event.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shinmera/colleen/HEAD/event.lisp -------------------------------------------------------------------------------- /globals.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shinmera/colleen/HEAD/globals.lisp -------------------------------------------------------------------------------- /irc-codes.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shinmera/colleen/HEAD/irc-codes.lisp -------------------------------------------------------------------------------- /irc-commands.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shinmera/colleen/HEAD/irc-commands.lisp -------------------------------------------------------------------------------- /irc-events.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shinmera/colleen/HEAD/irc-events.lisp -------------------------------------------------------------------------------- /launcher.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shinmera/colleen/HEAD/launcher.lisp -------------------------------------------------------------------------------- /module-storage.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shinmera/colleen/HEAD/module-storage.lisp -------------------------------------------------------------------------------- /module.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shinmera/colleen/HEAD/module.lisp -------------------------------------------------------------------------------- /modules/authenticate.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shinmera/colleen/HEAD/modules/authenticate.lisp -------------------------------------------------------------------------------- /modules/backup.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shinmera/colleen/HEAD/modules/backup.lisp -------------------------------------------------------------------------------- /modules/chanblock.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shinmera/colleen/HEAD/modules/chanblock.lisp -------------------------------------------------------------------------------- /modules/chatlog-pg.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shinmera/colleen/HEAD/modules/chatlog-pg.lisp -------------------------------------------------------------------------------- /modules/chatlog.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shinmera/colleen/HEAD/modules/chatlog.lisp -------------------------------------------------------------------------------- /modules/convert.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shinmera/colleen/HEAD/modules/convert.lisp -------------------------------------------------------------------------------- /modules/core.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shinmera/colleen/HEAD/modules/core.lisp -------------------------------------------------------------------------------- /modules/counter.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shinmera/colleen/HEAD/modules/counter.lisp -------------------------------------------------------------------------------- /modules/dictionary.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shinmera/colleen/HEAD/modules/dictionary.lisp -------------------------------------------------------------------------------- /modules/dramatica.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shinmera/colleen/HEAD/modules/dramatica.lisp -------------------------------------------------------------------------------- /modules/emoticon.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shinmera/colleen/HEAD/modules/emoticon.lisp -------------------------------------------------------------------------------- /modules/essentials.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shinmera/colleen/HEAD/modules/essentials.lisp -------------------------------------------------------------------------------- /modules/eval.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shinmera/colleen/HEAD/modules/eval.lisp -------------------------------------------------------------------------------- /modules/google-lng.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shinmera/colleen/HEAD/modules/google-lng.lisp -------------------------------------------------------------------------------- /modules/google.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shinmera/colleen/HEAD/modules/google.lisp -------------------------------------------------------------------------------- /modules/markov-twitter-bridge.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shinmera/colleen/HEAD/modules/markov-twitter-bridge.lisp -------------------------------------------------------------------------------- /modules/markov.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shinmera/colleen/HEAD/modules/markov.lisp -------------------------------------------------------------------------------- /modules/medals.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shinmera/colleen/HEAD/modules/medals.lisp -------------------------------------------------------------------------------- /modules/mentions.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shinmera/colleen/HEAD/modules/mentions.lisp -------------------------------------------------------------------------------- /modules/notify.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shinmera/colleen/HEAD/modules/notify.lisp -------------------------------------------------------------------------------- /modules/profile.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shinmera/colleen/HEAD/modules/profile.lisp -------------------------------------------------------------------------------- /modules/rss.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shinmera/colleen/HEAD/modules/rss.lisp -------------------------------------------------------------------------------- /modules/rules.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shinmera/colleen/HEAD/modules/rules.lisp -------------------------------------------------------------------------------- /modules/search.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shinmera/colleen/HEAD/modules/search.lisp -------------------------------------------------------------------------------- /modules/shiritori.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shinmera/colleen/HEAD/modules/shiritori.lisp -------------------------------------------------------------------------------- /modules/silly.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shinmera/colleen/HEAD/modules/silly.lisp -------------------------------------------------------------------------------- /modules/stands4.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shinmera/colleen/HEAD/modules/stands4.lisp -------------------------------------------------------------------------------- /modules/stevenchan.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shinmera/colleen/HEAD/modules/stevenchan.lisp -------------------------------------------------------------------------------- /modules/syslog.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shinmera/colleen/HEAD/modules/syslog.lisp -------------------------------------------------------------------------------- /modules/system-definitions.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shinmera/colleen/HEAD/modules/system-definitions.lisp -------------------------------------------------------------------------------- /modules/throttle.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shinmera/colleen/HEAD/modules/throttle.lisp -------------------------------------------------------------------------------- /modules/topic.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shinmera/colleen/HEAD/modules/topic.lisp -------------------------------------------------------------------------------- /modules/twitch.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shinmera/colleen/HEAD/modules/twitch.lisp -------------------------------------------------------------------------------- /modules/twitter.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shinmera/colleen/HEAD/modules/twitter.lisp -------------------------------------------------------------------------------- /modules/urlinfo.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shinmera/colleen/HEAD/modules/urlinfo.lisp -------------------------------------------------------------------------------- /modules/weather.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shinmera/colleen/HEAD/modules/weather.lisp -------------------------------------------------------------------------------- /modules/welcome.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shinmera/colleen/HEAD/modules/welcome.lisp -------------------------------------------------------------------------------- /package.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shinmera/colleen/HEAD/package.lisp -------------------------------------------------------------------------------- /sample.uc.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shinmera/colleen/HEAD/sample.uc.lisp -------------------------------------------------------------------------------- /time-handler.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shinmera/colleen/HEAD/time-handler.lisp -------------------------------------------------------------------------------- /toolkit.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shinmera/colleen/HEAD/toolkit.lisp --------------------------------------------------------------------------------