Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save xiaogaozi/4662182 to your computer and use it in GitHub Desktop.
Save xiaogaozi/4662182 to your computer and use it in GitHub Desktop.
class ZhihuDev(Developer) :
@property
def characteristics(self):
return set(["Teamwork", "Devoted", "Creative"])
@property
def skills(self) :
return {
"Language" : ["Python","Erlang", "Golang", "C/C++"],
"OS" : ["Linux", "Mac OS X", "BSD UNIX"] ,
"Tool" : ["Vim", "Emacs", "Git"],
"Framework" : ["Tornado", "Gevent", "Flask"],
"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