Questions tagged [chat]
To chat is to talk in a friendly and informal way. A chatroom is a place where two or more users can post messages to talk with each other. A chat service is a service providing two or more users with the ability to communicate.
97 questions
0
votes
2
answers
18
views
Encrypted Messaging Protocol over FTP in Python
Project Overview
I have developed a project named FTPChat, which is a lightweight messaging protocol that uses a shared file hosted on an FTP server as its transport layer. The project is intended for ...
3
votes
1
answer
140
views
simple multi-threaded TCP chatroom in Java
I'm fairly new at coding and looking to improve. Down below is all of my files for a TCP chatroom with a GUI in java. This is my first networking project so I'm sure it has many problems and does not ...
1
vote
1
answer
195
views
Simple code example for WebRTC
I'm trying to make a simple and straightforward example for WebRTC without a signaling server. The code works (whole HTML file below), but it feels like I'm overshadowing something in the logic that I ...
1
vote
1
answer
92
views
Event handler for client webrtc video chat
This is my event handler for a videochat client that takes all the events that the server throws at us and routes them to different functions. All of the functions are imported and both settings and ...
3
votes
0
answers
205
views
Simple websocket chat app
I'm coding a simple websocket chat app. I was wondering if my code is secure and efficient.
I also have a question about the way how I'm sending objects and then checking the type, is there anything ...
4
votes
1
answer
957
views
A simple chatterbot using Tkinter in Python
I'm wrote a basic chatterbot. What would you do to pretty much improve it and make it better than this?
Because I want this chatterbot to be the best it could be, and I really want other peoples' ...
4
votes
1
answer
4k
views
Socket chat room made with Tkinter Python
This is a real live chatroom that I have made with Tkinter
I posted a question before about making a chatroom but the problem that I had with that one was that only one user could connect to the ...
5
votes
1
answer
215
views
Simple Console Chat in Java
I have rewritten my little chat application and tried to pay attention to former hints and tips. The viewer and the writer have to run as seperate applications. the Writer.class basically stores ...
4
votes
1
answer
144
views
Internet Relay Chat bot core with plugins system
I started learning Python by making an IRC bot, as it took some pains in another language. I've improved it now over time. As it involves networking, I'd also like some comments on that side.
...
2
votes
2
answers
478
views
User Management Program
Main Goal
My goal is to create a chat app for my company (they are all software developers). I first make a console version and if it is working fine, I will make a GUI version. The program will run ...
3
votes
1
answer
121
views
Chat Viewer working with files
I am writing a textual chat app for exercise purposes. All Chatters using my program have access to a network directory, and there my program is stored. This chat app consists of three programs. The ...
4
votes
4
answers
2k
views
Unix chat server making communication between terminals possible
This Server handles clients communicating with each other. Because I was not willing to actually give every client a name, they are named by their socket's file descriptor. This is my first ...
6
votes
2
answers
3k
views
Socket chat room in Python
This is a Python chat room that I've been working on and it enables to you to chat to other people on the same network through Python.
Server.py:
...
4
votes
0
answers
3k
views
UDP chat program with server, client and listener
This is a little chat program that I have been working on and I want general feedback such as feature suggestions, efficiency comments, etc...
The server will setup a DGRAM socket and constantly ...
10
votes
2
answers
11k
views
Simple IRC Bot in C#
This was a simple IRC bot I threw together a long time ago, found recently, and was curious as to if there were any kind of significant improvements that could be made.
...