Posts
 
Reputation
Joined
Last Seen
0 Reputation Points
Unknown Quality Score

No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.

0 Endorsements
~352 People Reached
Favorite Forums

3 Posted Topics

Member Avatar for theOneCalledJef

In high school, I took a VB 6 programming class and I really enjoyed it. But now I want to know where to go from here. The farthest we got was arrays and control arrays.

Member Avatar for thecrow
0
89
Member Avatar for theOneCalledJef

I am working on making my own chat server and client, but have reached a little hiccup. The first line of text that the client send is not displayed by the server. Everything else is, just not the first line. Client [code=python] import socket uname = raw_input('username:> ') uname = …

Member Avatar for tac
0
178
Member Avatar for tondeuse34

I am confused by your choice of using s = socket.socket(AF_INET, SOCK_STREAM) then immediatly doing s = socket.socket(AF_INET, SOCK_DGRAM) by doing that, you have created a TCP/IP socket, then turned around and turned it into a udp socket. I really dont see why. Is this meant to be a server …

Member Avatar for theOneCalledJef
0
85

The End.