Hi there 👋 , I'm Evgeniy
I'm a versatile developer, with experience in building web platforms. I like accessibility, performance and robust code.
class WhoAmI:
def __init__(self):
self.name = 'Evgeniy Golodnykh'
self.position = 'Python Developer'
self.current_work = 'Writing code'
self.web = 'https://www.github.com/Evgeniy-Golodnykh'
self.code = {
'backend': ['Python', 'Django', 'FastAPI', 'Flask', 'Quart',],
'database': ['MongoDB', 'PostgreSQL', 'SQLite',],
'devops': ['Linux', 'Docker', 'Synology Container Manager', 'GitHub Actions', 'Grafana',],
'tools': ['Jupyter Notebook', 'GitHub', 'Postman', 'Nginx', 'Synology Virtual Machine Manager',],
'misc': ['SCRUM', 'SOLID', 'Stack Overflow', 'Jira', 'Kaiten', 'Notion', 'ChatGPT',],
}
self.language_spoken = ['ru_RU', 'en_US',],
def __str__(self):
return f'{self.name} | {self.position}'
if __name__ == '__main__':
me = WhoAmI()
print(me)