# -*- coding: utf-8 -*- #!/usr/bin/env python # coding: utf-8 __author__ = "Sokos Lee ( cnhawkwing@gmail.com )" __copyright__ = "Copyright (c) 2006-2019 CnHawk.Org & SokosLee.com" class AboutMe(): def __init__(self): self.fullName = 'Sokos Lee' self.footprint = 'GanZhou ----> ZhuHai ----> GuangZhou ----> ' \ 'Hohhot ----> ShenZhen ----> ?' self.skill = 'JavaScript & PHP & Java & C# & Python & Android & iOS ' \ ' & (Apache Tomcat Nginx MemCached MongoDB Redis MySQL)' self.twitter = 'https://twitter.com/CnHawkOrg' self.gmail = 'CnHawkWing@gmail.com' self.interest = 'Software Architect & Developer & Creator. #Python #Java #PHP #NodeJS #IoT' self.desire = 'Democracy & Equality & Fairness & Freedom' '''Contribution to Projects''' def getProject(self): self.project = [] return self.project def getFavor(self): print('Run & Mountain Climbing & Silence') def ps(self): print(u'史铁生:死是一件不必急于求成的事,死是一个必然会降临的节日') print(u'Tim O\'Reilly:人生是旅行,钱是汽油,旅程中需要加油,但汽油不是旅程的目的。') print(u'三毛:有谁,在这个世界上不是孤独的生,不是孤独的死?') print(u'Sokos Lee:人生就是一场苦行,你我在同一条路上孤独前行。') def getBio(self): # Pls, email me !!! pass if __name__ == '__main__': aboutMe = AboutMe() print("My Name:%s \nMy EMail:%s \nMy Skill:%s\n\n" % (aboutMe.fullName,aboutMe.gmail,aboutMe.skill)) projects = aboutMe.getProject() for p in projects: print("URL:%s\nTechnique:%s\nMyWork:%s\n\n" % (p['url'],p['Technique'],p['MyWork']))
# Next Sokos Lee @cnhawkorg © 2006-2017 Sokos Lee,Last Updated 2017-03-07 20:54 +08:00