interface Developer {
name: string;
age: number;
location: string;
role: string[];
technologies: {
frontend: string[];
backend: string[];
};
currentFocus: string[];
lifePhilosophy: string;
}
const luan: Developer = {
name: "Luan de Almeida Machado",
age: 19,
location: "Florianópolis, 🇧🇷",
role: ["Full Stack Developer"],
technologies: {
frontend: ["HTML", "CSS", "Bootstrap", "Sass", "Angular" "TypeScript", "PrimeNG"],
backend: ["NestJS", "Node.js", "RESTful APIs"]
},
currentFocus: ["Microservices", "Cloud Computing", "Advanced Angular"],
lifePhilosophy: "Code with passion, design with purpose! 💫"
};"The best way to predict the future is to create it." - Peter Drucker
Sempre em busca da próxima inovação! 🚀
while (alive) {
eat();
sleep();
code();
repeat();
}

