irc

Unicode Character Corrupting Text

I have a weird situation that has been puzzling me for weeks. My project, Textual, is an IRC client for Mac OS X. It works great except one problem. DCC SEND messages via the DCC protocol do not work properly. For some reason the first section of the IP address sent for which connections will be established is always cut off. For example...

extending an irc bot with modules

I've created an IRC bot in Python from scratch just for the fun of it. I've got a way to load modules into it, but you have to manually type out the code to load each module as below: if data.find('PRIVMSG %s :add_mod foo\r\n' % channel) enabled_mods.append(foo) if data.find('PRIVMSG %s :rm_mod foo\r\n' % channel) enabled_mods.r...