irc Questions
3
Solved
After some googling an obvious answer or starting point for a Java IRC bot has not presented itself, my question; is there an existing framework to help me do build an IRC bot? Failing that, is thi...
4
Solved
Is it possible for a browser-based irc client to work without using any gateway, that is, to communicate with the irc sever directly?
Baseball asked 23/4, 2010 at 5:2
2
I have to develop my own IRC Server for a project for school.
School does not require much and all i have to show them is a functioning
irc server which accepts multiple connections and actually pe...
Woodsia asked 27/6, 2011 at 20:56
5
I'm looking for a good, free, preferrably open source, IRC client to be embedded in a web page.
The obvious requirements of supporting most browsers, if requiering a plug-in it should be a plug-in...
1
Solved
I'm trying to programmatically send IRC messages with the PRIVMSG command. IRC uses CRLF to delimit separate commands, so "enter" is the end of each command.
I want to send a single message with l...
Wilmington asked 16/12, 2012 at 4:22
4
Solved
I want to embed a small chat window in my program that will function as a basic IRC client. This requires limited functionality such as connecting, disconnecting, listing users, and sending p...
1
Solved
I use VS 2010 in Win7.
I want use IRC programatically, using IRC client library in C# for
Connect to an IRC server
Detect if exists a channel in IRC server
Get Users list of a given channel...
1
Solved
I am trying to make Hubot detect when a user enters or leaves a channel, but so far I have been unable to actually find ANY information pertaining to this.
Does anyone have any ideas of how to do ...
Ruffina asked 25/5, 2012 at 14:7
3
Solved
I'm comparing between IRC, XMPP and a third proprietary server I have.
what are the pros and cons of each and suggest others if you know any mentionable ones.
Consuetudinary asked 10/11, 2010 at 21:43
3
Solved
I'm writing python code for IRC client.
I want to understand how IRC client and server communicating each other.
Can anyone give me good tutorial or IRC communication architecture to understand i...
3
require "socket"
server = "irc.rizon.net"
port = "6667"
nick = "Ruby IRC Bot"
channel = "#0x40"
s = TCPSocket.open(server, port)
s.print("USER Testing", 0)
s.print("NICK #{nick}", 0)
s.print("JOI...
3
Solved
I've looked at the RFC but I am still struggling. I've written a basic client in C# but I cannot find documentation for how to connect properly.
Once I connect and transmit NICK and USER informati...
2
Solved
I have a command that I want to restrict only to certain ranks. I'm using unreal3.2.6 IRC.
I read this:
But I still am not sure what I can do to check the users rank.
I want to see if the user ...
4
Solved
Intro
I've been tinkering with Twisted for the past few days, having picked up python less than a month ago. My first inclination was to play with something I know and use every day, IRC. I've got...
4
Solved
So my question is, how would i get my bot to listen if there is a PING and if there's no ping in an interval of a minute, it will react as though the connection has been lost. How would one go abou...
1
I am trying to write a function that will print the lists of nicks in an IRC channel to the channel using Twisted Python. How do I do this? I have read the API documentation and I have only seen on...
2
Is it possible to have get subset of related buffers with each emacs frame
when switching and displaying buffers
I mean
A frame that is dedicated for GNUS will show only gnus buffers
A frame th...
1
Solved
3
Solved
First, please tell me if I'm not allowed to ask about this protocol here... It just seemed like the best place. Sorry if I'm wrong.
So according to wikipedia the USER message goes like the followi...
Diatribe asked 4/3, 2011 at 22:3
6
Solved
I want to build a bot that basically does the following:
Listens to the room and interacts with users and encourages them to PM the bot.
Once a user has PMed the bot engage with the client ...
1
Solved
How would I use a regular expression to match an IRC nickname? This is being done in Ruby if that makes a difference (it probably will, with the syntax of the regex, but who knows.)
EDIT: An IRC n...
4
Solved
I'm working on a tool that needs to send IRC messages to an internal IRC channel. This isn't a constantly running program, but rather a tool that will be invoked occasionally and needs to be able t...
12
I'm trying to connect my PHP script to IRC, but it keeps timing out. I'm on the server, so I know it's up and running, I can't tell what the problem is.
Could it be an error in my code?
<?php
...
5
Solved
I was wondering if there is a good IRC channel around somewhere that allows iPhone developers to get together and talk about code and etc.
Any channel already around that people are using?
2
Solved
This is a sample script. When I hit Ctrl+C, the bot quits IRC but it reconnects back after some time. How do I shut down the bot correctly?
#!/usr/bin/perl
package main;
my $bot = Perlbot->ne...
© 2022 - 2024 — McMap. All rights reserved.