Tagged Questions
IRC - Stands for Internet Relay Chat is an internet based chat protocol.
17
votes
8answers
4k views
What are some good IRC channels for programmers?
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 ...
12
votes
5answers
5k views
IRC channel for iPhone developers?
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?
9
votes
2answers
105 views
Buffers per frame
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 that ...
7
votes
12answers
648 views
Connection timing out when connecting to an IRC server with PHP
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
...
7
votes
2answers
654 views
Why does my IRC bot not connect?
public static string SERVER = "irc.rizon.net";
private static int PORT = 6667;
private static string USER = "Test C# Irc bot";
private static string NICK = "Testing";
private static string CHANNEL = ...
6
votes
2answers
119 views
Detect if IRC user is a “voice” or higher [C# irc bot]
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 is ...
6
votes
2answers
2k views
Best tutorial for application multicasting?
I've recently become aware that there's a distinction between IP multicasting (which apparently doesn't work that well on the public internet) and application multicasting (which is apparently used in ...
5
votes
3answers
2k views
A simple Python IRC client library that supports SSL?
A simple Python IRC client library that supports SSL?
5
votes
1answer
154 views
.net 2.0 IRC component
Anyone know of a good winforms IRC component? I don't want an IRC application, I want to be able to add IRC functionality to an existing windows form
5
votes
4answers
2k views
Recommended IRC server (ircd) for a small site?
The situation:
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 ...
5
votes
5answers
3k views
Programming a simple IRC (Internet-Relay-Chat) Client
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 Shoes as a graphical ...
4
votes
2answers
635 views
What is a good IRC channel for objective - c and cocoa programming
What is a good IRC channel for objective - c and cocoa programming?
4
votes
5answers
657 views
IRC bot functionalities
I'm learning Python and would like to start a small project. It seems that making IRC bots is a popular project amongst beginners so I thought I would implement one. Obviously, there are core ...
4
votes
7answers
7k views
IRC Python Bot: Best Way
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 using ...
4
votes
4answers
1k views
Python IRC client: write from scratch or write plugin for existing framework?
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 ...
4
votes
5answers
2k views
How to strip color codes used by mIRC users?
I'm writing a IRC bot in Python using irclib and I'm trying to log the messages on certain channels.
The issue is that some mIRC users and some Bots write using color codes.
Any idea on how i could ...
4
votes
5answers
2k views
Python & parsing IRC messages
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:
:test!~test@test.com PRIVMSG #channel :Hi!
...
3
votes
1answer
52 views
Check if user is 'voiced' or 'op' in IRC channel using twisted
I'm writing an IRC bot using twisted python, and some actions should only be available to channel operators. How do I determine the 'user level' of a user in a channel using twisteds IRCClient?
3
votes
4answers
114 views
Load/reload a portion of code in Python without restarting main script
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 gotten ...
3
votes
1answer
160 views
3
votes
1answer
163 views
How can I conduct a poll through an irc bot?
I've set up a irc bot using socket. I've added a few commands , but I'd like to add a "poll" function.
Ideally, the bot would get a command with this format:
!poll <name> <opt1> ...
3
votes
3answers
127 views
IRC USER message makes no sense to me
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 following:
...
3
votes
1answer
143 views
Error in constructor: couldn't execute “git”: no such file or directory
Ok, so I am setting up a modified eggdrop bot, but after getting all the required perl modules and libraries, I am getting this error:
sudo perl run-test
Running bot 18076
tcltest
Error in ...
3
votes
3answers
171 views
Sanitizing Input from irc
So I was thinking of writing a irc bot/bot extension that lets users play certain text based games by starting the game,
sending parts of certain lines they enter(regexp match for game signal if not ...
3
votes
1answer
861 views
Good Example of Twisted IRC Server?
I'm in the process of experimenting a bit with the twisted libraries for IRC servers/clients. I've found a few good examples of how to implement an IRC client but seem to find anything good on the ...
3
votes
6answers
2k views
How do i program a simple IRC bot in python?
I need help writing a basic IRC bot that just connects to a channel.. is anyone able to explain me this? I have managed to get it to connect to the IRC server but i am unable to join a channel and log ...
3
votes
1answer
788 views
Building an IRC bot in Java
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 this ...
3
votes
3answers
611 views
About irc clients
Is it possible for a browser-based irc client to work without using any gateway, that is, to communicate with the irc sever directly?
3
votes
2answers
864 views
Python (Twisted) - reading from fifo and sending read data to multiple protocols
Im trying to write some kind of multi protocol bot (jabber/irc) that would read messages from fifo file (one liners mostly) and then send them to irc channel and jabber contacts. So far, I managed to ...
3
votes
1answer
721 views
Implementing CTCP commands in an IRC bot (Haskell)
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 ...
3
votes
2answers
1k views
Android NDK future extended support for C++
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 ...
3
votes
3answers
3k views
IRC client library in C#
I want to embed a small chat window in my program that will function as a basic IRC client. Are there any well-known, simple, and secure C# libraries that will allow me to do basic things such as ...
3
votes
6answers
686 views
Determine If a User Is Idented On IRC
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 ...
3
votes
3answers
2k views
Best IRC server for programming channels?
I've always used EFnet for IRC but discovered Freenode recently. Is this the most populated server for programmers in general?
3
votes
3answers
3k views
Embed mIRC Color codes into a C# literal?
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.
Can someone point me towards how to do this?
3
votes
2answers
779 views
Python IRC bot and encoding issue
Currently I have a simple IRC bot written in python.
Since I migrated it to python 3.0 which differentiates between bytes and unicode strings I started having encoding issues. Specifically, with ...
3
votes
3answers
3k views
Best way to embed an IRC client in a webpage
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 ...
3
votes
2answers
93 views
Is there a semi-standard way to associate a URL with an IRC user?
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 ...
3
votes
1answer
1k views
How to write and send text to mIRC in C#/Win32?
In a previous question, I asked how to send text to Notepad. It helped me immensely. For part 2, here's a simplified version of the same applied mIRC:
[DllImport("User32.dll", EntryPoint = ...
3
votes
5answers
324 views
How can I implement an IRC Server with 'owned' nicknames?
Recently, I've been reading up on the IRC protocol (RFCs 1459, 2810-2813), and I was thinking of implementing my own server.
I'm not necessarily looking into adhering religiously to the IRC protocol ...
3
votes
13answers
350 views
Best language communities [closed]
Often, a language won't have its own community, or the "official" community isn't the most popular one. For all the languages you use, what is your favorite place to visit (besides SO!) for help - or ...
3
votes
5answers
1k views
Where do developers hang out to chat? [closed]
Which chatrooms do you use to interact with other developers? Which IRC channels, for example, on freenode? What other, besides IRC, places and communities?
2
votes
3answers
180 views
How to run a PHP script via SSH and keep it running after I quit
I'm trying to restart a custom IRC bot. I tried various commands :
load.php
daemon load.php
daemon load.php &&
But that makes the script execute inside the console (I see all the ...
2
votes
3answers
76 views
Trying to write an IRC client but struggling to find a good resource regarding codes and connection protocol
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 information, ...
2
votes
0answers
112 views
Having trouble with Omegle IRC bot
I found this Omegle bot for IRC in Python:
I have set it up and managed to get it to join my channel, however whenever I use the command to connect a client to the bot, nothing happens, I can't ...
2
votes
2answers
58 views
Determining the topic of a conversation programmatically
This is probably an extremely difficult question to answer, but here is my question anyway.
I am wondering what the best method is for determining the topic of a conversation. The conversation takes ...
2
votes
2answers
90 views
Python twisted: Functions are not called properly?
I've got a problem with setting up a client which connects to a "distributor" server to send certain data.
The server's purpose is to get data from the client and then send that data to it's all ...
2
votes
2answers
60 views
Importing methods from file into a class
I am making an IRC bot with Twisted and I have run into a problem. I want to import functions from a seperate file into my main class (the one that inherits irc.IRCClient) so they can be used as ...
2
votes
1answer
82 views
IRC client - No reply on JOIN
I am writing a IRC client in C++ (with the help of the SFML library), but it is behaving strangely. I send the NICK and USER commands and I can connect to the server, but the JOIN command has many ...
2
votes
1answer
90 views
How to run a C program and get output of the program using Twisted Python
I have a Python Bot written using Twisted framework and I have a C program that outputs certain text. How would I be able to run have Twisted run the C program using a command, collect the output, ...