161 reputation
3
bio website whatit.is
location Kansas City, MO
age 29
visits member for 2 years
seen Apr 1 at 19:10
stats profile views 9

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

...or if you are a bit adventurous:

#!/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 zk :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 zk :%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)

May
8
awarded  Teacher
May
8
comment Should downvotes on questions be “free”?
:D Maybe they do the math on how many bad questions they see in a day and the figures they come up with are truly frightening!
May
8
comment Should downvotes on questions be “free”?
I wonder if I'm in the minority then?
May
8
answered Should downvotes on questions be “free”?
May
8
awarded  Supporter
May
5
awarded  Autobiographer