Software Engineer
Experienced in multiple programming languages and frameworks, with a strong focus on delivering high-quality, efficient code.
import java.time.LocalDate;
import java.time.Period;
import java.util.ArrayList;
import java.util.List;
public class Developer {
private String name;
private int age;
private String profession;
private List<String> hobbies;
public Developer() {
this.name = "Amador";
LocalDate birth = LocalDate.parse("1995-10-07");
this.age = Period.between(birth,LocalDate.now()).getYears();
this.proffesion = "Software Engineer";
this.hobbies = new ArrayList<>(
List.of("gym", "hiking", "travel", "boardgames", "videogames", "anime", "coding")
);
}
}
Comment only what the code cannot say - Kevlin Henney
Do not be afraid to break things - Mike Lewis
Do not repeat yourself - Steve Smith