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    "TypeScript (NodeJS, React, React Native)",
8    "Python (Django, DRF, FastAPI)",
9    "PostgreSQL/MySQL",
10    "MongoDB",
11    "Docker",
12    "Docker Compose",
13    "Cloud: AWS(EC2, S3, VPC, RDS)",
14    "IaC: Terraform"
15  ]
16
17  while True:
18    await asyncio.sleep(1)
19    print(concise)
20    print(skills)
21
22if __name__ == "__main__":
23  asyncio.run(main())