fork download
  1. #!/usr/bin/env python
  2. class HireMe(object):
  3. """
  4. You are hiring me to write code, right? :)
  5. """
  6.  
  7. __TECHNOLOGIES = (
  8. 'Python',
  9. 'Django',
  10. 'Flask',
  11. 'Go',
  12. 'Java'
  13. )
  14.  
  15. __ABOUT = """
  16. Software engineer with 5+ years of experience
  17. working with web stacks, mobile and desktop.
  18. Currently working as technical lead on startup
  19. that is not financially stable. Looking to
  20. join a good team. Remote is good but will relocate
  21. if the offer is too good to pass up. I\'m a self starter
  22. with a knack for writing code that minimizes technical debt.
  23. """
  24.  
  25.  
  26. def __init__(self):
  27. self.location = 'Caribbean'
  28. self.us_citizen = True
  29. self.remote = True
  30. self.will_relocate = True
  31.  
  32.  
  33. @property
  34. def technologies(self):
  35. return self.__TECHNOLOGIES
  36.  
  37. @property
  38. def about(self):
  39. return self.__ABOUT
  40.  
  41.  
  42. if __name__ == '__main__':
  43. me = HireMe()
  44. print me.about
  45. print 'Technologies: {0}'.format(me.technologies)
  46. print 'Location: {0}'.format(me.location)
  47. print 'US citizen.' if me.us_citizen else 'Not an US citizen.'
  48. print 'Will work remotely.' if me.remote else 'Will not work remotely.'
  49. print 'Will relocate.' if me.will_relocate else 'Will not relocate.'
Success #stdin #stdout 0.02s 9016KB
stdin
Standard input is empty
stdout
    Software engineer with 5+ years of experience 
    working with web stacks, mobile and desktop.
    Currently working as technical lead on startup
    that is not financially stable. Looking to 
    join a good team. Remote is good but will relocate
    if the offer is too good to pass up. I'm a self starter
    with a knack for writing code that minimizes technical debt.
    
Technologies: ('Python', 'Django', 'Flask', 'Go', 'Java')
Location: Caribbean
US citizen.
Will work remotely.
Will relocate.