Skip to content
View Kauavitorio's full-sized avatar

Highlights

  • Pro

Organizations

@System-Strength @Squash-Company @Uspery @My-Economy

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 São Paulo, Brazil, I have a burning passion for software development. I currently work as Uspery Founder and 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 Kaua's stats graph
⚡ My Programming Languages
⚡ My Trophies Kaua's trophy graph

azure logo jenkins logo firebase logo csharp logo postgresql logo docker logo microsoftsqlserver logo mysql logo cplusplus logo java logo kotlin logo nodejs logo python logo dotnetcore logo

Pinned Loading

  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;