Skip to content
View Kauavitorio's full-sized avatar

Highlights

  • Pro

Organizations

@System-Strength @Squash-Company @Uspery @My-Economy
Block or Report

Block or report Kauavitorio

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
Kauavitorio/README.md

👋 Hello, I'm Kaua Vitório!

Computador iuriCode

Linkedin Badge Instagram Badge Gmail Badge Twitter Badge

🌄 Born in the of São Paulo, Brazil, I have a burning passion for software development. Currently, I work as a Systems Analyst at JBS S.A.

🚀 I'm the founder of Uspery, an initiative dedicated to providing and performing various services in the world of technology. Our primary goal is always to seek the best efficiency and availability in everything we do.

💻 To learn more about me, visit kauavitorio.com.
💻 To discover more about Uspery, check out uspery.com.

📅 I've been developing projects since February 2020, and I'm continually looking for ways to enhance my technical skills and share knowledge with the developer community.

⚡ Github Stats
⚡ My Programming Languages

firebase

Pinned

  1. Kaua-Vitorio Kaua-Vitorio Public

    My personal site

    JavaScript 1

  2. Squash_App Squash_App Public

    Production of the mobile Squash social media

    Java 5 3

  3. Palace_Fountain Palace_Fountain Public

    IOT project for my technical course TCC

    C++ 1

  4. Method for validating CPF in java Method for validating CPF in java
    1
    private static final int[] WeightCPF = {11, 10, 9, 8, 7, 6, 5, 4, 3, 2};
    2
    
                  
    3
        public static boolean isValidCPF(String cpf) {
    4
            cpf = cpf.trim().replace(".", "").replace("-", "");
    5
            if (cpf.length() != 11) return false;