#!/usr/bin/env python
class HireMe(object):
    """
    You are hiring me to write code, right? :)
    """

    __TECHNOLOGIES = (
        'Python',
        'Django',
        'Flask',
        'Go',
        'Java'
        )

    __ABOUT = """
    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.
    """

    
    def __init__(self):
        self.location = 'Caribbean'
        self.us_citizen = True
        self.remote = True
        self.will_relocate = True


    @property
    def technologies(self):
        return self.__TECHNOLOGIES

    @property
    def about(self):
        return self.__ABOUT


if __name__ == '__main__':
    me = HireMe()
    print me.about
    print 'Technologies: {0}'.format(me.technologies)
    print 'Location: {0}'.format(me.location)
    print 'US citizen.' if me.us_citizen else 'Not an US citizen.'
    print 'Will work remotely.' if me.remote else 'Will not work remotely.'
    print 'Will relocate.' if me.will_relocate else 'Will not relocate.'  