Random Groupchat
0
Updated over 8 years ago (24 May 2009 at 06:25 PM)
recent activity
In Brief | I found out how to join a Google Talk group chat here:... more |
Language | Python |
# 's
1import random
2print "private-chat-%08X-%04X-%04X-%04X-%012X" % (random.randint(0, 0xffffffff),
3 random.randint(0, 0xffff),
4 random.randint(0, 0xffff),
5 random.randint(0, 0xffff),
6 random.randint(0, 0xffffffffffff))
I found out how to join a Google Talk group chat here:
http://mkokotovich.blogspot.com/2007/12/google-talk-groupchat.html
It said that you could use any valid room ID you wanted, so of course I made a script to make one for me.
Add a Comment