18,418 reputation
32348
bio website whatit.is
location Los Angeles, CA
age 29
visits member for 2 years, 2 months
seen 2 hours ago
stats profile views 694

I ♥ code. You can find me hanging with the usual suspects: twitter, github, bitbucket.

...or if you are a bit adventurous (and on mac/linux):

#!/usr/bin/env python
import os, select, socket, sys, time

print 'Connecting to chat...'
irc = socket.socket(socket.AF_INET, socket.SOCK_STREAM)
irc.connect(('irc.freenode.net', 6667))
irc.send('NICK %s_from_so\r\n' % os.getlogin())
irc.send('USER so irc.freenode.net bla :so\r\n')

print 'Contacting zeekay...'
irc.send('PRIVMSG zeekay :hello from stack overflow!\r\n')

while True:
    read, write, error = select.select([sys.stdin, irc],[],[])
    for i in read:
        if i == sys.stdin:
            irc.send('PRIVMSG zeekay :%s\r\n' % i.readline())
            sys.stdout.write('> ')
            sys.stdout.flush()
        elif i == irc:
            buffer = i.recv(1024)
            for line in buffer.splitlines():
                try:
                    _, info, line = line.split(':', 2)
                except ValueError: break
                if 'PRIVMSG' in info:
                    sys.stdout.write('\x08'*2)
                    sys.stdout.write('< %s\n> ' % line)
                    sys.stdout.flush()
    time.sleep(0.01)

1k
× 424
92
× 6
314
× 134
83
× 2
143
× 8
76
× 2
112
74
112
52
× 12

1,532 Votes Cast

all time   by type  
1,507 up 480 question
25 down 1,052 answer