def bio(self):
print '''He's an average university student, living in New York City.
Most of the time, he's studying some labyrinthine concept for his
scientific endeavors, facebooking, programming, or writing up
some enormous essay that he doesn't expect many people to read.
He's also the coolest guy on the planet.'''
def print_likes(self, name):
likes = ['logic', 'artificial intelligence',
'computer vision', 'political philosophy',
'problem solving', 'epistemology',
'fiction writing', 'space',
'Star Trek and all things Spock']
for like in likes:
print "%s enjoys %s" % (name, like)
def print_talents(self, challenge):
if challenge == "complicated":
print "Easily simplifies it."
elif challenge == "paper":
print "He'll write a compelling literary masterpiece."
elif challenge == "skeptic":
print "He'll persuade like Dolos."
else:
print "Just cream."
def tech_familiarity(self):
langs = {
'compiled': ['C','Java','C++'],
'interpreted': ['Python','Perl'],
'web': ['HTML5','CSS'] }
envs = {
'editors': ['vim','notepad++'],
'IDE': ['Netbeans','Eclipse (with Pyev)','MSVC++'],
'other': ['XAMP','WAMP', 'PHPMyAdmin']}
others = ['Django', 'Win32 API', 'OpenCV', 'BSD Sockets', 'SQL',
'MongoDB', 'CGI', 'HTTP', 'IRC', 'TCP']
#familiar programming languages
for lang in langs.values():
for i in lang:
print "%s" % i
#familiar environments
for env in envs.values():
for j in env:
print j
#familiar frameworks, technologies, and protocols
print "Everything Else"
for other in others:
print other
import sys
def os_fav(self):
print "Windows 9x+"
print "Ubuntu 12.04"
print sys.platform
#greatest quote of all time
def gqat(self):
print "Superior ability breeds superior ambition."
print "\t-Spock"