If you find my projects helpful and want to support my work, consider buying me a coffee! β
class Developer:
def __init__(self):
self.name = "Yasin Samooei"
self.role = "Full Stack Developer"
self.code = ["Python", "Django", "Go", "JavaScript", "HTML/CSS"]
self.specialties = ["Web Development", "3D Design", "IoT", "AI/ML"]
self.tools = ["Blender", "Adobe Suite", "VSCode", "Git"]
self.current_focus = "Building scalable web applications with Django"
def say_hi(self):
print("Thanks for dropping by! Let's build something amazing together π")
me = Developer()
me.say_hi()








