Profile image

Yulian Bohomol

Software Engineer


1import asyncio
2
3async def main():
4  concise = "Software Engineer | Full-Stack | 1+ YOE | 450+ LeetCode | System Design"
5
6  skills = [
7    "Go (Gin, Cobra)",
8    "Python (Django, DRF, FastAPI)",
9    "TypeScript (NodeJS, React, React Native)",
10    "PostgreSQL/MySQL",
11    "MongoDB",
12    "Docker",
13    "Docker Compose",
14    "Cloud: AWS (EC2, S3, VPC, RDS)",
15    "IaC: Terraform",
16    "Data Structures & Algorithms"
17  ]
18
19  while True:
20    await asyncio.sleep(1)
21    print(concise)
22    print(skills)
23
24if __name__ == "__main__":
25  asyncio.run(main())