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);
}
}
Always concerned about following the technologies, he is often participating in courses and lectures on technology and agile methodologies.
Popular repositories Loading
-
-
-
-
terminal-mac-cheatsheet
terminal-mac-cheatsheet PublicForked from 0nn0/terminal-mac-cheatsheet
List of my most used commands and shortcuts in the terminal for Mac
-
Something went wrong, please refresh the page to try again.
If the problem persists, check the GitHub status page or contact support.
If the problem persists, check the GitHub status page or contact support.