[root@alexmrtr ~]# cat whoami.ts#!/usr/bin/env node
class Developer {
private readonly name: string;
private readonly location: string;
private readonly role: string;
constructor() {
this.name = "Alexandre Marques Tortoza Canoa";
this.location = "Curitiba, Paraná, Brazil 🇧🇷";
this.role = "Full Stack Developer";
}
public aboutMe(): string {
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.
`.trim();
}
public specialties(): string[] {
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",
];
}
public technologies(): Record<string, string[]> {
return {
frontend: ["Vue", "React", "TypeScript", "JavaScript", "Tailwind CSS"],
backend: ["Laravel", "PHP", "Node.js", "Python"],
database: ["MySQL", "MongoDB", "SQLite", "Redis"],
devops: ["Docker", "Git", "Linux"],
machineLearning: ["scikit-learn"],
};
}
}
export default Developer;[root@alexmrtr ~]# cat status[root@alexmrtr ~]# ls ~/projects[root@alexmrtr ~]# nvim[root@alexmrtr ~]# contact --info



