Skip to content

Instantly share code, notes, and snippets.

@taizilongxu
Last active August 29, 2015 14:01
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save taizilongxu/5b93bfcc67aa6c1e03bc to your computer and use it in GitHub Desktop.
Save taizilongxu/5b93bfcc67aa6c1e03bc to your computer and use it in GitHub Desktop.
#!/usr/bin/env python
class Me(Developer) :
@property
def education(self):
return {
"Undergraduate" : ["Saftey Engineering","Shenyang Aerospace University"],
"Graduate" : ["Soft Engineering","Liaoning University"]}
@property
def characteristics(self):
return set(["Teamwork", "Devoted", "Creative"])
@property
def skills(self) :
return {
"Language" : ["Python", "Java", "HTML/CSS", "C/C++"],
"OS" : ["Linux"] ,
"Tool" : ["Vim", "Sublime"],
"Framework" : ["Django"],
"Network" : ["TCP/IP"]}
@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