| bio | website | whatit.is |
|---|---|---|
| location | Los Angeles, CA | |
| age | 29 | |
| visits | member for | 2 years, 2 months |
| seen | yesterday | |
| stats | profile views | 692 |
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)
|
|
Stack Overflow | 18,378 rep | 32348 |
|
|
Server Fault | 346 rep | 24 |
|
|
Programmers | 276 rep | 13 |
|
|
Audio-Video Production | 174 rep | 4 |
|
|
Meta Stack Overflow | 161 rep | 3 |
| Great Answer | Analytical |
| Nice Answer × 22 | Custodian |
| Yearling × 2 | Revival × 3 |
| Good Answer × 3 | Guru |
| Enlightened × 13 | Self-Learner |
This user has no active bounties
1,532 Votes Cast
| all time | by type | ||||
|---|---|---|---|---|---|
| 1,507 | up | 480 | question | ||
| 25 | down | 1,052 | answer | ||