Skip to content
View leocarlos-dias's full-sized avatar

Highlights

  • Pro
Block or Report

Block or report leocarlos-dias

Block user

Prevent this user from interacting with your repositories and sending you notifications. Learn more about blocking users.

You must be logged in to block users.

Please don't include any personal information such as legal names or email addresses. Maximum 100 characters, markdown supported. This note will be visible to only you.
Report abuse

Contact GitHub support about this user’s behavior. Learn more about reporting abuse.

Report abuse
leocarlos-dias/README.md
// Olá, eu sou o Leonardo Carlos!
// Aqui está um pouco sobre mim:

interface AboutProps {
    name: string;
    job: string;
    skills: string[];
    educations: { course: string; institution: string; status: string }[];
}

const me: AboutProps = {
        name: "Leonardo Carlos",
        job: "Software Developer at byecar",
        skills: [
            "HTML5", "CSS3", "React", "JavaScript", "TypeScript", "Next.js", "Node.js",
            "Express.js", "NestJS", "PostgreSQL", "MongoDB", "Redis", "SQL", "NoSQL",
            "TypeORM", "Prisma", "Jest", "Java", "Spring Boot", "PHP", "Laravel", "Docker",
            "Kafka", "RESTful", "GraphQL", "AWS"
        ],
        educations: [{
            course: "Full Stack Developer",
            institution: "Kenzie Academy Brasil",
            status: "completed"
        },
        {
            course: "Electrical Engineering",
            institution: "UniFOA - Volta Redonda University Center",
            status: "completed"
        }]
};

class About {
    constructor(private props: AboutProps) {
        Object.assign(props, this);
    }
};

const aboutMe = new About(me);

Pinned

  1. leocarlos-dias leocarlos-dias Public

  2. personal-portfolio personal-portfolio Public

    Bem-vindo(a) ao meu Portfólio Pessoal! Este repositório contém o código-fonte e os arquivos necessários para visualizar e explorar o meu portfólio online, onde busco expressar um pouco sobre quem s…

    HTML 1