import { Psychology } from '@university/sao-judas-tadeu';
import { SystemAnalisysAndDevelopment } from '@university/sao-paulo-tech-school';
import { Component } from '@angular/core';
@Component({
selector: 'lui-life',
standalone: true,
templateUrl: './lui-life.component.html',
styleUrls: ['./lui-life.component.scss'],
})
export class LuiLifeComponent {
public about: string =
"A fullstack developer committed to adding value at
every stage of a solution's life, from conception to
support, with a focus on customer needs and data-driven decisions.";
public development: { [area: string]: { [tech: string]: string[] }[] } = {
frontend: [
{ code: ['HTML', 'CSS', 'Sass', 'Javascript', 'Typescript', 'Node.JS'] },
{ angular: ['RxJS', 'Jest', 'Karma', 'Jasmine', 'Material', 'Webpack'] },
{ react: ['JSX'] },
],
backend: [
{ code: ['C#', 'Java'] },
{ framework: ['.NET', 'Entity Framework', 'Spring Boot'] },
],
others: [
{ cloud: ['AWS'] },
{ analytics: ['GA4', 'Firebase'] },
{ database: ['MySQL', 'Azure'] },
{ iot: ['Arduino'] },
{ ides: ['VSCode', 'Intellij', 'Android Studio'] },
{ design: ['Figma'] },
{ methodologies: ['Scrum', 'Lean', 'Kanban'] },
],
};
public hobbies: { [category: string]: string[] }[] = [
{ leisure: ['Coffee', 'Plants & Nature', 'Photography'] },
{ academic: ['Behavioral Analysis', 'Intimacy'] },
];
}
― Martin Fowler, Refactoring: Improving the Design of Existing Code (1999, p. 15)“Any fool can write code that a computer can understand. Good programmers write code that humans can understand.”