- Graduated Software Engineer at University of Joinville.
- Back-End Developer Consultant at FCamara.
public class DeveloperInfo {
public static void main(String[] args) {
Developer dev = Developer.builder()
.withName("Mathaus Erich Ramos")
.withLanguages("Java", "Python", "Javascript", "Typescript")
.withArchitectures("Monolithic", "Microservices", "Event-Driven", "MVC")
.withApis("REST", "SOAP", "GraphQL")
.withCloud("AWS", "GCP")
.build();
}
}