Quote from: HeatFireFlame on May 20, 2013, 08:40 amI am literally right at the beggining of it all, so writing ym own programs aint viable just yet ...Long way from TCP sockets etc, I will get there, but not today lol. Walk before i can run type thing. Don't be afraid to set a task for yourself that you don't know how to accomplish. If you already knew how to accomplish it, what would you be learning from it in the first place...? :)By the way, TCP sockets are just things you talk to the internet through. If you want to get data from a website, you "open" a TCP socket to the web site's address, and then you read & write to the TCP socket and the web site does the same thing on the other end. That's how you pass data back and forth. That's how your web browser is getting these words right now -- through a TCP socket. It isn't as complicated as it sounds. Well, not in a high level language like Python or Ruby anyway...