1import asyncio
2
3async def main():
4 concise = "SWE. 1 YOE. LeetCode 370+. DSA, System Design and Optimizations savvy"
5
6 skills = [
7 "TypeScript",
8 "Python",
9 "Django/DRF/FastAPI",
10 "React/React Native/Next.js",
11 "SQL: PostgreSQL/MySQL",
12 "NoSQL: MongoDB",
13 "Docker, DockerCompose",
14 "Cloud: AWS(EC2, S3, VPC, RDS, etc.)",
15 "IaC: Terraform"
16 ]
17
18 while True:
19 await asyncio.sleep(1)
20 print(concise)
21 print(skills)
22
23if __name__ == "__main__":
24 asyncio.run(main())