#!/usr/bin/python
# -*- coding: utf-8 -*-
class Developer:
def __init__(self):
self.name = "lvdousha26"
self.role = "Full Stack Developer"
self.location = "China"
self.code = {
"frontend": ["HTML", "CSS", "JavaScript", "TypeScript", "React", "Vue"],
"backend": ["Python", "Java", "Node.js", "Go"],
"database": ["MySQL", "PostgreSQL", "MongoDB", "Redis"],
"devops": ["Docker", "Kubernetes", "CI/CD", "Linux"],
"tools": ["Git", "VS Code", "Figma", "Postman"]
}
self.current_focus = "Building awesome things with code"
self.motto = "Talk is cheap. Show me the code."
def say_hi(self):
print("Thanks for dropping by! Let's connect and build something amazing!")
me = Developer()
me.say_hi()- ❗ Opened issue #1 in SurroundedByGugugu/WHATtheSpirebasedonQQ