█████╗ ██╗ ██╗ ██╗ ██╗ ██████╗ ██╗ ██╗██████╗
██╔══██╗██║ ██║ ██║ ██║██╔════╝ ██║ ██║██╔══██╗
███████║██║ ██║ ██║ ██║██║ ███╗██║ ██║██████╔╝
██╔══██║██║ ██║ ██║ ██║██║ ██║██║ ██║██╔══██╗
██║ ██║███████╗ ██╗ ╚██████╔╝╚██████╔╝╚██████╔╝██║ ██║
╚═╝ ╚═╝╚══════╝ ╚═╝ ╚═════╝ ╚═════╝ ╚═════╝╚═╝ ╚═╝
class Developer:
def __init__(self):
self.name = "Alligur"
self.location = "Bursa, Türkiye 🇹🇷"
self.role = "Software Developer"
self.focus = ["Mobile Apps", "Backend Systems", "Clean Code"]
@property
def skills(self) -> dict:
return {
"languages" : ["Python 🐍", "Dart", "JavaScript", "C#"],
"frameworks" : ["Django", "Flutter", "React"],
"tools" : ["Git", "Docker", "Selenium", "Shopify"],
}
def __str__(self):
return "Fonksiyonelliği ve temiz kodu her zaman önceliklendiririm."
me = Developer()
print(me)
# → Fonksiyonelliği ve temiz kodu her zaman önceliklendiririm.| 🐍 Diller | ⚙️ Frameworkler | 🛠️ Araçlar |
|---|---|---|
| Python | Django | Git |
| Dart | Flutter | Docker |
| JavaScript | React | Selenium |
| C# |
currently_working_on = [
"🔧 Backend APIs with Django REST Framework",
"📱 Cross-platform apps with Flutter",
"🤖 Automation scripts with Python & Selenium",
]
for task in currently_working_on:
print(f" {task}")