Created
September 15, 2011 20:28
-
-
Save tlxue/1220382 to your computer and use it in GitHub Desktop.
ZhihuDev
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env python | |
class ZhihuDev(Developer) : | |
@property | |
def characteristics(self): | |
return set(["Teamwork", "Devoted", "Creative"]) | |
@property | |
def skills(self) : | |
return { | |
"Language" : ["Python", "Ruby", "Erlang", "Scala", "C/C++"], | |
"OS" : ["Linux", "Mac OS X", "BSD UNIX"] , | |
"Tool" : ["Vim", "Emacs"], | |
"Framework" : ["Tornado", "Django"], | |
"Network" : ["TCP/IP", "ZeroMQ"]} | |
@property | |
def is_geek(self): | |
return True |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment