active questions tagged irc - Stack Overflow most recent 30 from stackoverflow.com 2009-11-30T06:35:18Z http://stackoverflow.com/feeds/tag/irc http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1759708/which-is-the-best-irc-client-for-windows -2 Which is the best IRC client for Windows? [closed] cambr 2009-11-18T22:49:11Z 2009-11-18T22:49:11Z <p>I am new to IRC chat. Which would be the best client to use on Windows (Vista)?</p> http://stackoverflow.com/questions/1734757/delphi-2009-idirc-mdi-and-problems-with-hanging 1 (Delphi 2009) idIRC, MDI, and problems with hanging. Commodianus 2009-11-14T16:35:38Z 2009-11-14T19:23:23Z <p>I'm working on an IRC client. I've hit a majors snag which, up until not I've been able to work around. I'll show code below. What's I'm having a problem with is creating MDI child windows within the event handlers of idIRC. </p> <p>For example, if I want to create a new channel form (FrmChannel), I can accomplish this easily by calling it's create procedure when I catch the '/join' command.</p> <p>However, if I want to do it the right way, and wait until I've actually joined the channel, and receive confirmation of this from the server (by handling it in the onjoin event handler) then my call to my form creation procedure causes the application to hang.</p> <p>The same goes for status windows. For example, if I put my status window creation procedure call on a TButton's onclick event, fine. Child form created. However, if I try the same thing when I actually receive a private message, by checking the event handler... Application hangs, no exception, and no MDI Child.</p> <p>Here's the relevant code (for the sake of solving this I'll deal with the query window only).</p> <p>First, the actual MDI Child creation goes like this. I have a TComponentList in here to manage a list of this class of form (in case you're wondering). There are some other things in here that keep track of the form as well, though commenting them out doesn't prevent the hang (I've tried).</p> <pre><code>procedure TFrmMain.NewQuery(const Server, MsgFrom: String); var Child: TFrmMessage; TN: TTreeNode; begin /// /// Create form, set some data so we can reference it later. /// /// Child := TFrmMessage.Create(Application); // QueryManager.Add(Child); //TComponent List -- Used to find the Form Later On with Child do begin MyServer := Server; {What server this PM window is on} QueryWith := MsgFrom; {nickaname of the other person} Caption := MsgFrom; {Asthetic} end; Child.Echo('*** Conversation with ' + MsgFrom); //Herro World /// /// The following code is working. /// I'm pretty sure it's not causing the hangs. /// TN := GetNodeByText(ChanServTree, Server, True); {Find our parent node} with ChanServTree.Items.AddChild(TN, MsgFrom) do begin Selected := True; Tag := 2; {TYPE OF QUERY} Data := Pointer(Integer(Child)); //Pointer to Form we created end; end; </code></pre> <p>Here's the event handler for my IRC component:</p> <pre><code>procedure TFrmMain.IRCPrivateMessage(ASender: TIdContext; const ANicknameFrom, AHost, ANicknameTo, AMessage: string); var CheckVr: String; aThread: TNQThread; begin //DEBUG: (StatusManager[0] as TFrmStatus).Echo('From: ' + ANickNameFrom + 'AMESSAGE: ' + '''' +AMessage + ''''); /// /// Handle Drone Version Requests! /// This is REQUIRED on servers like irc.blessed.net - or they won't let you join /// channels! - It's part of the Registration proccess /// {The Drones on some server's don't follow specifications, so we need to search hard for their presence} CheckVr := AMessage; StringReplace(CheckVr,' ','',[rfReplaceAll, rfIgnoreCase]); StringReplace(CheckVr,#1,'',[rfReplaceAll, rfIgnoreCase]); (StatusManager[0] as TFrmStatus).Echo('Message was: ' + '''' + CheckVr + ''''); if Trim(CheckVr) = 'VERSION' then begin IRC.CTCPReply(ANickNameFrom,'VERSION','mIRC v6.01 Khaled Mardam-Bey'); (StatusManager[0] as TFrmStatus).Echo('*** Sent Version Reply to ' + ANickNameFrom); exit; {Because if we don't, this could mess things up} end; /// /// The Following code sends the PM to the appropriate window. /// If that window does not exist, we will create one first. /// if Pos('#',Amessage) = 1 then begin //Handled Elsewhere end else {is PM} begin if FindQueryFrm(ANickNameTo,IRC.Host) = nil then begin NewQuery(IRC.Host, ANickNameFrom); exit; end; end; // FindChannelFrm(ANickNameTo,IRC.Host).ChannelMessage(ANicknameFrom, AMessage); end; </code></pre> <p>I've tried commenting out various parts of the code to try to track down the cause of the hanging. The hang is caused by the Child := TFrmMessage.Create(Application); call specifically. What gives?</p> <p>I've tried implementing threads to see if that might be an issue. If that's what you're thinking the problem is, I'll need help with my threading because apparently though the code is compiling, I'm still calling something wrong (because even my threaded version hangs).</p> <p>Thanks in advance.</p> http://stackoverflow.com/questions/1682920/determine-if-a-user-is-idented-on-irc 1 Determine If a User Is Idented On IRC Xiong Chiamiov 2009-11-05T19:19:56Z 2009-11-14T11:18:23Z <p>In my IRC Bot, there are some commands that I want to only be usable by me, and I want to check to make sure that anyone using my name is identified with nickserv (idented). I couldn't, however, find an easy way to determine this, which is why I'm here.</p> <p><a href="http://freenode.net/" rel="nofollow">Freenode</a> and <a href="http://www.rizon.net/" rel="nofollow">Rizon</a> are the primary target networks, if that matters.</p> <p>Edit: I was actually aware of the various usermodes for idented users (although I didn't pay enough attention to realize that they differ!); sorry for not mentioning that before. The raw response that I get from a user, however, doesn't include their usermodes; it looks something like this:</p> <pre><code>:liam_neeson!n=pearson@71-9-55-124.dhcp.snlo.ca.charter.com PRIVMSG #erasmus-testing :foo </code></pre> <p>I suppose, then, that I'm trying to find a way (with various ircds, grr) to get those flags. If, as someone mentioned, Rizon returns whether or not someone is idented in a WHOIS query, then that's the sort of thing I'm looking for.</p> http://stackoverflow.com/questions/1705847/threading-linq-class-list-problem 1 Threading / Linq Class list problem Xavier 2009-11-10T05:38:29Z 2009-11-10T05:51:09Z <p>Ok, so ive been writing a very complex multiserver irc bot recently, and ive encountered an issue.. i stipped down the code as much as i could because its very large, the full code is here: <a href="http://pastie.org/691449.txt" rel="nofollow">http://pastie.org/691449.txt</a></p> <p>so what my issue is, when i call the Disconnect() void in Connection, instead of disconnecting and closing the given server, it just freezes the calling class instead of stopping the correct instance of the Class. Any help would be greatly appriciated ~ code examples for answers when possible please</p> http://stackoverflow.com/questions/1671649/c-irc-bot-connection-class 0 C# irc bot connection class sniperX 2009-11-04T04:17:02Z 2009-11-04T04:28:01Z <p>alright, so im making an irc bot, and im wondering a few ways that i could create a connection class, so that i can connect to multiple networks, i have it connecting to one server, i just dont know how to make that into a way to connect to more than one.</p> <p>basically my question is: how can i take the current bot i wrote, rewrite it, with a connection class that can be reused to make multiple connections.</p> http://stackoverflow.com/questions/1640811/best-irc-server-for-programming-channels 1 Best IRC server for programming channels? JamesBrownIsDead 2009-10-28T23:31:27Z 2009-10-28T23:47:30Z <p>I've always used EFnet for IRC but discovered Freenode recently. Is this the most populated server for programmers in general?</p> http://stackoverflow.com/questions/930700/python-parsing-irc-messages 2 Python & parsing IRC messages tt 2009-05-30T21:51:58Z 2009-10-18T16:00:07Z <p>What's the best way to parse messages received from an IRC server with Python according to the RFC? I simply want some kind of list/whatever, for example:</p> <pre><code>:test!~test@test.com PRIVMSG #channel :Hi! </code></pre> <p>becomes this:</p> <pre><code>{ "sender" : "test!~test@test.com", "target" : "#channel", "message" : "Hi!" } </code></pre> <p>And so on?</p> <p>(Edit: I want to parse IRC messages in <strong>general</strong>, not just PRIVMSG's)</p> http://stackoverflow.com/questions/1391610/embed-mirc-color-codes-into-a-c-literal 0 Embed mIRC Color codes into a C# literal? FlySwat 2009-09-08T02:03:09Z 2009-09-08T02:14:50Z <p>I'm working on a simple irc bot in C#, and I can't figure out how to embed the typical mirc control codes for bold/color etc into string literals.</p> <p>Can someone point me towards how to do this?</p> http://stackoverflow.com/questions/1286527/i-am-looking-for-a-javascript-irc-client 0 I am looking for a JavaScript IRC client Sean A.O. Harney 2009-08-17T07:07:08Z 2009-08-18T06:48:55Z <p><a href="http://sourceforge.net/projects/jisirc/" rel="nofollow">http://sourceforge.net/projects/jisirc/</a> is exactly what I need, only problem is it has multiple ActiveX dependencies and that will not do. Does anyone know of any similar projects which are more portable?</p> http://stackoverflow.com/questions/1274177/looking-for-a-pure-powershell-irc-client 0 Looking for a pure PowerShell IRC client Scott Weinstein 2009-08-13T19:47:40Z 2009-08-16T11:35:17Z <p>I'm looking for a IRC client library/script written in PowerShell. The goal is to replace a <code>Perl</code> script that uses <code>Net::IRC</code> to communicate with a MindAlign channel.</p> <p>SmartIrc4net will do in a pinch, but I'd rather have a pure implementation for simplicities sake.</p> <p>Ideas?</p> http://stackoverflow.com/questions/1263785/plugins-modules-for-my-c-program 1 Plugins / modules for my C# program sniperX 2009-08-12T01:14:43Z 2009-08-12T18:00:56Z <p>i am making a IRC bot in C#, and i would like to have the feature to load plugins... for example: there would be a text file with some code in it, and then the program would import the contents of that text file AS CODE... into a function... how is this possible?</p> http://stackoverflow.com/questions/490645/is-there-a-super-high-load-ajax-chat-script-out-there 0 Is there a super-high-load (Ajax) chat script out there? Jens Roland 2009-01-29T06:15:13Z 2009-08-10T08:34:40Z <p>For a pet project, I have been looking for a web chat script capable of running potentially <em>tens of thousands of users</em> simultaneously. I don't want to use any kind of applet or browser extension, so on the client side, it should be simple Ajax. On the server side I'm pretty much open to anything.</p> <p>I'm not looking for bells and whistles, a simple text-only chat is more than enough, as long as it supports a number of 'channels' or 'rooms' simultaneously, and a very large number of users.</p> <p>When I first started researching the chat scripts out there, it seemed like the only viable option was to run an IRC server and just build a web interface on top of that. I know I could get good performance and stability with that setup, but could I get better performance by using something else?</p> <p>Any ideas?</p> http://stackoverflow.com/questions/1121002/improve-a-irc-client-in-python 0 Improve a IRC Client in Python Nathan Campos 2009-07-13T17:47:09Z 2009-08-02T03:55:39Z <p>Hello,</p> <p>How i can make some improvement in my IRC client made in Python. The improvement is: How i can put something that the user can type the <em>HOST, PORT, NICK, INDENT and REALNAME</em> strings and the message? And here is the code of the program:</p> <blockquote> <p>simplebot.py</p> <pre><code>import sys import socket import string HOST="irc.freenode.net" PORT=6667 NICK="MauBot" IDENT="maubot" REALNAME="MauritsBot" readbuffer="" s=socket.socket( ) s.connect((HOST, PORT)) s.send("NICK %s\r\n" % NICK) s.send("USER %s %s bla :%s\r\n" % (IDENT, HOST, REALNAME)) while 1: readbuffer=readbuffer+s.recv(1024) temp=string.split(readbuffer, "\n") readbuffer=temp.pop( ) for line in temp: line=string.rstrip(line) line=string.split(line) if(line[0]=="PING"): s.send("PONG %s\r\n" % line[1]) </code></pre> </blockquote> <p>Remember that i'm starting in Python development. Here is where i have found this code: <a href="http://oreilly.com/pub/h/1968" rel="nofollow">http://oreilly.com/pub/h/1968</a>.Thanks.</p> http://stackoverflow.com/questions/1187653/how-to-make-the-program-run-again-after-unexpected-exit-in-python 1 How to make the program run again after unexpected exit in Python? JustRegisterMe 2009-07-27T11:29:23Z 2009-07-28T12:07:20Z <p>I'm writing an IRC bot in Python, due to the alpha nature of it, it will likely get unexpected errors and exit.</p> <p>What's the techniques that I can use to make the program run again?</p> http://stackoverflow.com/questions/1063409/python-irc-client-write-from-scratch-or-write-plugin-for-existing-framework 4 Python IRC client: write from scratch or write plugin for existing framework? Mark van Lent 2009-06-30T12:33:19Z 2009-07-15T07:29:39Z <p>For our company I'd like to have a Python based IRC bot which checks whether the websites of our clients are still up and running. More specific: I want to list a number of URL which should be visited every, say, 15 minutes. If it fails, the URL should be checked again after 5 minutes. If retrieving the URL still doesn't result in an HTTP status code 200, it should echo the failing URL in the channel so we can investigate it.</p> <p>I've written a plugin for <a href="http://sourceforge.net/projects/supybot/" rel="nofollow">Supybot</a> some time ago that basically does some of the above in a crude but effective way. If I want to expand the functionality of the current code to the above 'specs' I need to do some major refactoring; basically it would mean starting from scratch.</p> <p>Which raises the question: should I write a better plugin for Supybot, matching the new requirements, or go for something else altogether? Should I start from scratch (learning the most, implementing the <a href="http://stackoverflow.com/questions/24310/programming-a-simple-irc-internet-relay-chat-client/844821#844821">relevant RFCs</a> myself, spending more time than planned) or is there a suitable framework which handles the basic IRC stuff?</p> http://stackoverflow.com/questions/1120976/how-do-you-address-data-returned-to-a-socket-in-python 0 How do you address data returned to a socket in python? Noah Clark 2009-07-13T17:40:52Z 2009-07-13T18:14:26Z <p>Say you are telneting into IRC to figure out how it all works. As you issue commands the IRC server returns data telling you what it's doing. Once I have created a default script that basically is how a normal IRC connection between server and client occurs, if it ever deviates from that it won't tell me what is wrong. I need to be able to throw exceptions based on what the server returns to me. How do I do that in python?</p> http://stackoverflow.com/questions/1120650/what-is-the-best-irc-network-for-java-java 1 What is the best IRC network for Java (#java)? jsight 2009-07-13T16:41:49Z 2009-07-13T16:46:20Z <p>Is efnet the network to be on in #java? Or are there other more active networks?</p> http://stackoverflow.com/questions/415213/php-irc-robot-send-command-but-now-i-need-the-bot-to-read-the-command 2 PHP IRC Robot, Send Command, but now I need the bot to read the command. Brad R 2009-01-06T02:22:42Z 2009-07-11T15:33:51Z <p>Hello, I have a PHP IRC Robot that I use in my channel and I need it to make OPs to specific set users in the script by me. Anyways I want the robot to check if the user is logged into NickServ to prevent any sort of fraud or anything.</p> <p>Anyways, here is my connect and DO things code, followed by what I really need help with below it. All help is appreciated. :) On Freenode, typing /NS ACC [user] will return whether or not the [user] is logged in with a numerical value, they decided 3 would be logged in. and 0-2 as some sort of not logged in.</p> <p>So here is how the bot logs into my IRC channel... (feel free to join #tyreus on freenode, ask for BwaddArr (or his email))</p> <pre><code>&lt;?php set_time_limit(0); //Stop the script timing out $server = "irc.freenode.net"; //server to connect to $channel = "#tyreus"; //channel to connect to initialy $password = "sumpass"; //password for bot to login to irc $pass2 = "anotherpass"; //password to make the bot do stuff $users[0] = "0"; //array of logged in users $nickname = "Samcal"; //Set the bot's nick here $logger = FALSE; //for the channel logger $takeover = FALSE; //for the auto banner $socket=fsockopen($server,'6667') ; //Connect and join the channel stream_set_timeout($socket, 300); //Set a timeout value (so the bot quits if it's disconnected) fwrite($socket, "NICK ".$nickname."\r\n"); fwrite($socket, "USER ".$nickname." 8 * ::\x01VERSON 1.0 Brad's bot\x01\n"); //read rfc 1459 to understand this line while ($line=fgets($socket)) { echo htmlentities($line)."&lt;br&gt;"; if (strpos($line, "433")&gt;0) die("error nick in use"); //Quit if bot's nick is already taken (irc code 433 is received) if (strpos($line, "004")&gt;0) { fwrite($socket, "JOIN ".$channel."\r\n"); //Join the channel if everything is ok (irc code 004 is received) fwrite($socket, "NickServ IDENTIFY ".$nickname." ".$password."\r\n"); fwrite($socket, "ChanServ OP ".$channel." Samcal\r\n"); fwrite($socket, "MODE ".$channel." +v Samcal \r\n"); break; } } </code></pre> <p>And this is where i really need all the help! :)</p> <pre><code> if(strpos($line, "PRIVMSG ".$channel." :+oB\r\n")&gt;0) { //Command to make the bot run the command $name = "BwaddArr"; // my username, this can be easily changed to the other users who will need opping $command = "NickServ ACC $name"; // the NickServ command I was talking about $result = fwrite($socket, "$command \r\n"); // my attempt at retrieving the result $accr = readline(strpos($line, "$result \r\n")); //part 2 of my failure to retrieve a result $loggd = str_replace("3","three","$accr"); // replace '3' with 'three' if($loggd != "three") { // if result is not three do below fwrite($socket, "PRIVMSG ".$channel." :$name is not logged in. \r\n"); // write into the chat that the user is not logged in } if($loggd == "three") { // OP the user if they are logged in fwrite($socket, "MODE ".$channel." +ov $name\r\n"); // sends the OPping command } } ?&gt; </code></pre> http://stackoverflow.com/questions/1100840/irc-python-bot-best-way 1 IRC Python Bot: Best Way Noah Clark 2009-07-08T22:17:44Z 2009-07-09T06:13:47Z <p>I want to build a bot that basically does the following:</p> <ol> <li>Listens to the room and interacts with users and encourages them to PM the bot.</li> <li>Once a user has PMed the bot engage with the client using various AI techniques. </li> </ol> <p>Should I just use the IRC library or Sockets in python or do I need more of a bot framework.</p> <p>What would you do?</p> <p>Thanks!</p> <p>Here is the code I'm currently using, however, I haven't gotten it to work.</p> <pre><code>#!/usr/bin/python import socket network = 'holmes.freenet.net' port = 6667 irc = socket.socket ( socket.AF_INET, socket.SOCK_STREAM ) irc.connect ( ( network, port ) ) irc.send ( 'NICK PyIRC\r\n' ) irc.send ( 'USER PyIRC PyIRC PyIRC :Python IRC\r\n' ) irc.send ( 'JOIN #pyirc\r\n' ) irc.send ( 'PRIVMSG #pyirc :Can you hear me?\r\n' ) irc.send ( 'PART #pyirc\r\n' ) irc.send ( 'QUIT\r\n' ) irc.close() </code></pre> http://stackoverflow.com/questions/24310/programming-a-simple-irc-internet-relay-chat-client 3 Programming a simple IRC (Internet-Relay-Chat) Client. CodingWithoutComments 2008-08-23T15:49:06Z 2009-06-30T12:49:48Z <p>I started using IRC at a young age, and I have always been fascinated with it. As a language exercise, I was thinking about programming a simple IRC client in Ruby with <a href="http://www.shoooes.net/" rel="nofollow">Shoes</a> as a graphical front-end. My question to you, kind-sirs, what do I need to become familiar with to start on this great adventure (besides shoes and Ruby of course)? I imagine there is some-sort of specification on IRC Protocol. Any pointers?</p> http://stackoverflow.com/questions/1052274/would-it-be-ridiculous-to-use-a-switch-statement-to-handle-irc-server-codes 1 Would it be ridiculous to use a switch statement to handle irc server codes? apphacker 2009-06-27T07:09:02Z 2009-06-27T08:06:24Z <p>There are quite <a href="http://www.mirc.net/raws/#001" rel="nofollow">a few of IRC server codes</a></p> <p>I am working on a small <a href="http://www.apphackers.com" rel="nofollow">IRC client for Adobe AIR</a>, and I started out by supporting only a few of these initially, and then a switch statement didn't seem like a bad idea. But as I support more and more, the switch statement is getting longer and it feels like it's a little out of control. One issue is that I've kept the low level IRC handling code in a file on its own so that it can be reused. I would like to keep everything in one file. Another issue is that code blocks in the switch statements currently assume to be part of this IRC class and there's frequent use of the this statement. Making changes now would be a lot of work and introduce regressions. The only problem really is my distaste for a long switch statement, otherwise you know it works, and it's kind of easy to read, but not really making it more difficult to maintain. But it's such a long switch statement. And the function that contains the switch statement is obviously long too. ://</p> <p>One thing I sometimes do in lieu of a switch is that I define functions that are named after the value the switch evaluates. Instead of a switch:</p> <pre><code>switch ( val ) { case: "alert": alert( "yo" ); break; } </code></pre> <p>I check to see if a method exists in scope and execute it:</p> <pre><code>obj.alert = function ( ) { alert( "yo" ); } if ( val in obj &amp;&amp; isFunction( obj[ val ] ) ) { obj[ val ]( ); } </code></pre> <p>But again in this case I've feel like there's a high risk in regressions and I'm not sure it's worth the effort only to avoid having a long switch statement, for the sake of its length.</p> http://stackoverflow.com/questions/1037387/customizing-sort-order-of-c-arrays 1 Customizing Sort Order of C# Arrays Daniel Martin 2009-06-24T09:45:18Z 2009-06-24T10:13:46Z <p>Hey there.</p> <p>This has been bugging me for some time now. I've tried several approaches and none have worked properly.</p> <p>I'm writing and IRC client and am trying to sort out the list of usernames (which needs to be sorted by a users' access level in the current channel).</p> <p>This is easy enough. Trouble is, this list needs to added to whenever a user joins or leaves the channel so their username must be removed the list when the leave and re-added in the correct position when they rejoin.</p> <p>Each users' access level is signified by a single character at the start of each username. These characters are reserved, so there's no potential problem of a name starting with one of the symbols. The symbols from highest to lowest (in the order I need to sort them) are: ~ &amp; @ % +</p> <p>Users without any sort of access have no symbol before their username. They should be at the bottom of the list.</p> <p>For example: the unsorted array could contain the following: ~user1 ~user84 @user3 &amp;user8 +user39 user002 user2838 %user29</p> <p>And needs to be sorted so the elements are in the following order: ~user1 ~user84 &amp;user8 @user3 %user29 +user39 user002 user2838</p> <p>After users are sorted by access level, they also need to be sorted alphabetically.</p> <p>Asking here is a last resort, if someone could help me out, I'd very much appreciate it. Thankyou in advance.</p> http://stackoverflow.com/questions/144049/recommended-irc-server-ircd-for-a-small-site 5 Recommended IRC server (ircd) for a small site? Zed 2008-09-27T17:17:54Z 2009-06-13T07:13:02Z <p>The situation:</p> <p>I want to play around with IRC bots as general communications interfaces to other code I am investigating. The server hardware would be old and low-memory, but running on a relatively up-to-date Debian GNU/Linux install. I don't expect more than a hundred users at a time, tops, and probably in the single-digits most of the time. The interfaces are more of interest here than the server itself, so I'd prefer something relatively simple to maintain over something with a huge number of configuration and tuning options more useful to a larger site.</p> <p>Referencing the <a href="http://en.wikipedia.org/wiki/Comparison_of_IRC_daemons" rel="nofollow">Wikipedia comparison</a> and the <a href="http://www.google.com/Top/Computers/Software/Internet/Servers/Chat/IRC/" rel="nofollow">Google PageRank list</a> against the available package list for Debian comes up with the following top contenders: <a href="http://coder-com.undernet.org/" rel="nofollow">Undernet</a> (ircd-ircu), <a href="http://www.ircd-ratbox.org/" rel="nofollow">Ratbox</a> (ircd-ratbox), and <a href="http://www.inspircd.org/" rel="nofollow">Inspire</a> (inspircd). Unfortunately, I can't find any serious comparisons of them, so I'm hoping that asking here will provide a faster solution than just trying them one at a time until something frustrates me enough to move.</p> <p>Thanks in advance for any advice.</p> http://stackoverflow.com/questions/938870/python-irc-bot-and-encoding-issue 2 Python IRC bot and encoding issue Adi 2009-06-02T10:41:48Z 2009-06-02T11:59:04Z <p>Currently I have a simple IRC bot written in python.</p> <p>Since I migrated it to python 3.0 which differentiates between bytes and unicode strings I started having encoding issues. Specifically, with others not sending UTF-8.</p> <p>Now, I could just tell everyone to send UTF-8 (which they should regardless) but an even better solution would be try to get python to default to some other encoding or such.</p> <p>So far the code looks like this:</p> <pre><code>data = str(irc.recv(4096),"UTF-8", "replace") </code></pre> <p>Which at least doesn't throw exceptions. However, I want to go past it: I want my bot to default to another encoding, or try to detect "troublesome characters" somehow.</p> <p>Additionally, I need to figure out what this mysterious encoding that mIRC uses actually is - as other clients appear to work fine and send UTF-8 like they should.</p> <p>How should I go about doing those things?</p> http://stackoverflow.com/questions/718551/writing-supybot-plugins-not-in-python 0 Writing supybot plugins not in python? flybywire 2009-04-05T07:57:30Z 2009-05-24T12:23:57Z <p>What's the best way to write a supybot plugin in ruby? Or other language (not python)?</p> http://stackoverflow.com/questions/833893/irc-useful-developer-tool-or-time-sink 1 IRC useful developer tool or time sink? Omar Kooheji 2009-05-07T10:31:13Z 2009-05-07T11:26:40Z <p>I work for a company with a small dev team and Access to IRC is blocked. Our IT guys cite this as for "Security Reasons".</p> <p>I've had several problems whith 3rd party libs which I've only been able to solve by plugging in a 3G data card, disconnecting from the network and logging into the IRC channel for the dev team behind the tool kit.</p> <p>Many Open source projects have IRC channels that are constantly occupied with people willing to answer questions where it could take days to get the answer on the associated Forum.</p> <p>Is IRC a useful dev tool and if so what arguments can I use to get it opened up, or is it a time sink/ security risk and should I be Grateful that this festering pit of botnets and timewastiness has been closed, and feel safer for it?</p> http://stackoverflow.com/questions/778430/best-way-to-embed-an-irc-client-in-a-webpage 0 Best way to embed an IRC client in a webpage John Nilsson 2009-04-22T17:55:27Z 2009-04-22T18:05:05Z <p>I'm looking for a good, free, preferrably open source, IRC client to be embedded in a web page.</p> <p>The obvious requirements of supporting most browsers, if requiering a plug-in it should be a plug-in that is allready widley deployed and it should not put too much strain on the webserver serving the page.</p> http://stackoverflow.com/questions/756343/is-there-a-semi-standard-way-to-associate-a-url-with-an-irc-user 2 Is there a semi-standard way to associate a URL with an IRC user? DRMacIver 2009-04-16T14:21:52Z 2009-04-16T14:48:13Z <p>I'm in the process of doing some identity consolidation, so I'm providing URLs to me at various locations on the internet. I'm quite active on IRC, so this naturally lead me to wonder whether there was a way to provide a link to my IRC presence. </p> <p>This lead to me finding <a href="http://www.w3.org/Addressing/draft-mirashi-url-irc-01.txt" rel="nofollow">http://www.w3.org/Addressing/draft-mirashi-url-irc-01.txt</a> which appears to be a draft of an RFC for associating URLs with IRC, which suggests that I would be </p> <p>irc://irc.freenode.net/DRMacIver,isnick</p> <p>Which seems a little on the lame side. Further, this RFC draft has very thoroughly expired (February 28 1997). On the other hand it seems to be implemented in chatzilla at least:</p> <p><a href="http://www.mozilla.org/projects/rt-messaging/chatzilla/irc-urls.html" rel="nofollow">http://www.mozilla.org/projects/rt-messaging/chatzilla/irc-urls.html</a></p> <p>So does anyone know if there's a superseding RFC and/or any other de facto standard for this? </p> http://stackoverflow.com/questions/39020/what-are-some-good-irc-channels-for-programmers 8 What are some good IRC channels for programmers? JawnV6 2008-09-02T08:23:51Z 2009-03-28T10:14:41Z <p>I am looking for some IRC channels for programmers. Websites, forums, and stackoverflow are good for large-ish questions, but for quick stupid things or just chatting about issues with easy back-and-forth then IRC would be ideal.</p> <p>Can anyone recommend IRC channels, either about specific languages or more general programming chat?</p> http://stackoverflow.com/questions/651053/a-simple-python-irc-client-library-that-supports-ssl 2 A simple Python IRC client library that supports SSL? flybywire 2009-03-16T16:01:01Z 2009-03-16T18:34:28Z <p>A simple Python IRC client library that supports SSL?</p>