[root@alexmrtr ~]# cat whoami.py#!/usr/bin/env python3
class Developer:
def __init__(self) -> None:
self.name: str = "Alexandre Marques Tortoza Canoa"
self.location: str = "Curitiba, Paraná, Brazil 🇧🇷"
self.role: str = "Full Stack Developer"
def about_me(self) -> str:
return (
"Full Stack Developer focused on building clean, scalable and user-centered "
"web applications. Strong background with Vue, React, Laravel and Node.js, "
"with interests in AI, Machine Learning and modern software architecture."
)
def specialties(self) -> list[str]:
return [
"Full Stack web development",
"Frontend with Vue, React and TypeScript",
"Backend with Laravel, Node.js and Python",
"REST API design and integration",
"Clean code and scalable architecture",
]
def technologies(self) -> dict[str, list[str]]:
return {
"frontend": ["Vue", "React", "TypeScript", "JavaScript", "Tailwind CSS"],
"backend": ["Laravel", "PHP", "Node.js", "Python"],
"database": ["MySQL", "MongoDB", "SQLite", "Redis"],
"devops": ["Docker", "Git", "Linux"],
"machine_learning": ["scikit-learn"],
}[root@alexmrtr ~]# cat status[root@alexmrtr ~]# ls ~/projects| Permissions | User | Name | Link |
|---|---|---|---|
| drwxr-xr-x | alexmrtr | front-end-projects | Link |
| drwxr-xr-x | alexmrtr | back-end-projects | Link |
| drwxr-xr-x | alexmrtr | machine-learning-and-ai-projects | Link |
[root@alexmrtr ~]# nvim[root@alexmrtr ~]# contact --info
Building things with lots of ☕
