Git Product home page Git Product logo

aula-retrofit's Introduction

Hi there ๐Ÿ‘‹

Working From Home visitors

import java.util.Arrays;
import java.util.function.Function;

/**
 * @author Rodolfo Justina
 * @since 2022/05/16
 * @version 1.0.0
 */
public class ApplicationDeveloper {
    
    public static void main(String[] args) {

        String name = "Rodolfo Faquin Della Justina";
        String role = "Application Developer";
        String[] languageSpoken = {"pt_BR", "en_US"};
        String[] principalSkils = {"Java", "Docker", "SQL", "Angular", "TypeScript", "Android", "Cloud"};
        
        Function<String[], String> skills = f -> {
            String allSkillsTogether = "";
            for(String skill : Arrays.asList(f)) {
                allSkillsTogether+= "\n\t- " + skill;
            }
            return allSkillsTogether;
        };

        StringBuilder aboutMe = new StringBuilder();
        aboutMe.append("Hi, I'm ").append(name).append(". Is a pleasure to have you here!")
        .append("\n\n")
        .append("I have a degree in information system, a pos-graduationg in engineering ")
        .append("and architecture of software and master degree in technology of information and communications.")
        .append("\n\n")
        .append("I started my job career in 2010 as an Android Application Developer, in 2012 I worked as System Analist, ")
        .append("in 2017 I founded my startup ended it in 2020 where I started as Java Senior Develop in a global company. ")
        .append("my main role is to be an ").append(role).append(" at IBM.")
        .append("\n\n")
        .append("My principal skills are:").append(skills.apply(principalSkils))
        .append("\n\n")
        .append("As a friendly brazilian are, I love to talk and to meet new people. ")
        .append("My native language is Portuguese(").append(languageSpoken[0])
        .append(") and my second language is English(").append(languageSpoken[1]).append(").");
        
        System.out.println(aboutMe);
    }
    
}

๐Ÿค– Technologies & Tools

aula-retrofit's People

Contributors

rodolfojustina avatar

Watchers

 avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.