To get to know about me:
python -m pip install jinsung; python -c "import jinsung"
Briefly,
class Me:
def __init__(self):
print('About Me - Jinsung Ha')
@property
def workspace(self) -> tuple[str, str]:
company: str = 'Dable'
position: str = 'Software Engineer'
return company, position
@property
def education(self) -> str:
degree: str = 'MEng Computing (Artificial Intelligence)'
where: str = 'Imperial College London'
when: str = '10.2014 - 06.2019'
return ' | '.join([degree, where, when])
@property
def location(self) -> tuple[float, float]:
return 37.5665, 126.9780
@property
def code(self) -> list[str]:
return [
'Python', 'Typescript', 'Java', 'C', 'Bash'
]