- π» Building with: Python β’ Flask β’ FastAPI β’ Django
- ποΈ Working with: PostgreSQL β’ SQLite β’ Redis
- π Creating: HTML β’ CSS β’ JavaScript
- π οΈ Daily tools: Git β’ GitHub β’ VS Code β’ PyCharm β’ Postman
- π Exploring: Docker β’ Linux β’ System Design
class Kamoliddin:
def __init__(self):
self.name = "Kamoliddin Tukhtaboev"
self.role = "Software Engineering Student"
self.location = "Uzbekistan πΊπΏ"
self.code = [
"Python",
"JavaScript",
"HTML",
"CSS",
"SQL",
]
self.learning = [
"Backend Development",
"Algorithms & Data Structures",
"Software Architecture",
"Artificial Intelligence",
]
self.interests = [
"Web Development",
"Clean and secure code",
"Automation",
"Open Source",
]
self.current_focus = (
"Building modern web applications and improving my programming skills."
)
self.open_to_work = True
self.always_learning = True
def __repr__(self):
return f"<{self.name} | {self.role}>"
me = Kamoliddin()
print(me)



