Profile image

Yulian Bohomol

Software Engineer


1import asyncio
2
3async def main():
4  concise = "SWE. 1 Year of Experience. LeetCode 350+. System Design and optimizations."
5
6  skills = [
7    "TypeScript",
8    "Python",
9    "Django / DRF / FastAPI",
10    "React / React Native / Next.js"
11  ]
12
13  while True:
14    await asyncio.sleep(1)
15    print(concise)
16    print(skills)
17
18if __name__ == "__main__":
19  asyncio.run(main())