class Ezequiel:
def __init__(self):
self.role = "Full-Stack Developer"
self.location = "Building cool things ๐"
self.focus = ["AI", "Computer Vision", "Web Apps"]
self.learning = ["Advanced Python", "AI Chatbots", "Full-Stack Dev"]
self.os = "Manjaro Linux ๐ง"
self.hobbies = ["Gaming ๐ฎ", "Music ๐ต", "Ricing my Linux"]
self.motto = "Code. Learn. Repeat."
def __repr__(self):
return (
f"<{self.__class__.__name__} | "
f"{self.role} | "
f'"{self.motto}">'
)
me = Ezequiel()
print(me)
# <Ezequiel | Full-Stack Developer | "Code. Learn. Repeat.">| ๐ง Linux Knowldge | ๐๏ธ Computer Vision | ๐ Web Apps |
|---|---|---|
| Building customizeed Linux Desktop | Real-time object detection & image processing pipelines | Full-stack apps with modern React & FastAPI backends |

