Profile picture Lucas Matheus

Lucas Matheus

Back-end Developer

Brasília/DF

Estudante de TI com conhecimentos em desenvolvimento de sistemas. Atualmente estou em busca de uma oportunidade que possa aprimorar minhas habilidades, tanto técnicas quanto pessoais.

$ javac connect.java
Initializing...
Ready to connect.
Waiting for contact request...
import java.util.*;

public class DeveloperProfile {

    public static void main(String[] args) {
        TechStack techStack = new TechStack();
        techStack.languages = List.of("Java", "Python", "JavaScript");
        techStack.frontend = List.of("React", "JavaScript", "HTML", "CSS");
        techStack.backend = List.of("SpringBoot", "Node.js");
        techStack.tools = List.of("Insomnia", "Postman", "Git", "GitHub", "IntelliJ");
        techStack.databases = List.of("MySQL", "PostgreSQL");

        Developer me = new Developer();
        me.name = "Lucas Matheus";
        me.skills = new ArrayList<>();
        me.skills.addAll(techStack.languages);
        me.skills.addAll(techStack.frontend);
        me.skills.addAll(techStack.backend);
        me.skills.addAll(techStack.tools);
        me.skills.addAll(techStack.databases);
        me.experience = List.of(
            "Desenvolvimento de aplicações web",
            "API REST",
            "Automação",
            "Gráficos e análise de dados",
            "Integrações"
        );

        System.out.println("Perfil carregado com sucesso.");
    }

    static class Developer {
        String name;
        List<String> skills;
        List<String> experience;
    }

    static class TechStack {
        List<String> languages;
        List<String> frontend;
        List<String> backend;
        List<String> tools;
        List<String> databases;
    }
}

SSO Auth - Java

Sistema de autenticação SSO (Single Sign-On) desenvolvido em Java, utilizando Spring Boot e OAuth2.

Ver Projeto

© 2025 Lucas Matheus. By Juca with ❤.