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);
}
}
-
Notifications
You must be signed in to change notification settings - Fork 0
RodolfoJustina/rodolfojustina
Folders and files
Name | Name | Last commit message | Last commit date | |
---|---|---|---|---|
Repository files navigation
About
My profile
Resources
Stars
Watchers
Forks
Releases
No releases published
Packages 0
No packages published