Is this chat using \"long polling\" or \"http streaming\" ? http://go-开发者_如何学Gomono.com/moonlight/chat.aspxIt\'s not anything that simple. It uses http://www.mibbit.com/chat, which is a full IR
I\'m running an IRC Bot (Bot::BasicBot) which has two child processes runni开发者_如何学Gong File::Tail but when exiting, they don\'t terminate. So I\'m killling them using Proc::ProcessTable like thi
I have followed the tutorial on the Haskell wiki about implementing an IRC bot. and everything worked out fine. But once I started extending it, I realised that It would need to respond to CTCP reques
import socket irc = \'irc.hack3r.com\' port = 6667 channel = \'#chat\' sck = socket.socket(socket.AF_INET, socket.SOCK_STREAM)
I have a gridView that I display in a popupwindow (the gridview is in a transparent layout, which inherits from linearlayout and just has a partially transparent background).I can never get this GridV
Is there any info about the future of extending the safe C++ header list in the NDK (or maybe some hints to what might be safe to use) ? Or how soon we can expect the next NDK update? Also will there
Is there a way to display a file/string of text to a user\'s channel output when a user joins a channel? Would this 开发者_开发百科have to happen serverside in the irc config or could a bot do the sam
My friend and I are writing an C# IRC Bot that will allow users to extend it\'s capabilities via plugins.开发者_开发知识库 We need it so that each command will be able to have its own permissions. So
I\'m trying to test whether a user is registered on FreeNode. nick_info() doesn\'t seem to return information about this, so I want to use $irc->yield(whois => $nick); and then grab the irc_whois even
I\'ve written a very complex multi-server IRC bot recently, and have encountered an issue.. I have stripped down the code as much as I could which can be viewed here.