Web | Backend Developer
class Profile {
private static final String USERNAME = "mindcloud92";
private static final String BLOG_URL = "https://mindcloud92.github.io";
private static final LocalDate CAREER_STARTED_AT = LocalDate.of(2013, 3, 6);
private static final Map<TechStack, Set<String>> TECH_STACK_MAP = Map.of(
Backend, Set.of(
"java", "Spring", "Spring Boot", "JPA", "QueryDsl", "iBatis", "myBatis",
"C#", ".NET", ".NET Core", "Entity Framework"
),
Frontend, Set.of(
"jsp",
"xaml",
"asp", "Razor",
"javascript", "prototypeJS", "typescript", "jQuery",
"Vue", "Vuex", "Vuetify", "React",
"HTML", "sass", "scss", "css"
),
Database, Set.of(
"Mysql", "Oracle"
)
);
}