About Me
I'm a 19-year-old developer from Almaty with expertise in creating web applications, bots, and automation solutions. I specialize in both frontend and backend development, always eager to tackle interesting challenges.
When I'm not coding, you'll find me exploring mountains and practicing hiking or mountaineering. I love bringing creative ideas to life through technology.
Next.js
TypeScript
React
Node.js
Python
Laravel
PostgreSQL
Postman
from typing import Tuple, List, Dict
class damirTAG:
def __init__(self):
self.hatred = True
self.narciss = False
self.lazy = False
class Attributes(damirTAG):
def __init__(self):
super().__init__()
@property
def life(self) -> Tuple[List[str], int, str]:
interests = [
'code', 'mountains', 'sport', 'tech'
]
age = 19
location = "almaty, kz"
return interests, age, location
@property
def personality(self) -> Dict[str, bool]:
return {
"spontaneous" : False,
"night_owl" : True,
"coffee_addicted" : False,
"hyperfix_addicted" : True
}