// About me
import java.util.List;
import java.util.Map;
public class BackendDeveloper {
private String name;
private String city;
private String role;
private List<Map<String, String>> spokenLanguages;
private Map<String, List<String>> stack;
public BackendDeveloper() {
this.name = "Mikhail Trifonov";
this.city = "Innopolis";
this.role = "Java & Scala Backend Developer";
this.spoken_languages = List.of(
Map.of(
"language", "Russian",
"level", "Native"
),
Map.of(
"language", "English",
"level", "Upper-Intermediate"
)
);
this.stack = Map.of(
"mainLanguages", List.of(
"Java", "Scala", "Python"
),
"core", List.of(
"OOP", "Collections", "Stream API", "Generics", "Algorithms",
"Maven", "Gradle"
),
"backend", List.of(
"Spring Boot", "Hibernate", "Swagger", "Lombok", "jdbc", "PostgreSQL",
"MongoDB", "GraphQL", "Jakarta", "Slf4j", "JJWT", "JUnit", "Testcontainers",
"ZIO", "Doobie"
),
"frontend", List.of(
"React", "HTML", "CSS", "Javascript", "Flutter", "Dart"
),
"misc", List.of(
"Git", "SQL", "Docker", "LaTex", "Postman"
)
);
}
public void sayHi() {
System.out.println("Hi! My name is " + this.name + " and I am a " + this.role + ".\n" +
"Currently I live in " + this.city + ".\n" +
"You can see my projects and my code style here.");
}
public static void main(String[] args) {
BackendDeveloper me = new BackendDeveloper();
me.sayHi();
}
}
Highlights
- Pro
Pinned Loading
-
IU-Capstone-Project-2025/open-labs-share
IU-Capstone-Project-2025/open-labs-share PublicOpen Labs Share is a collaborative learning platform that combines practical lab exercises with community feedback. It enables subject-matter experts to create and share practical learning material…
Java 1
-
-
Linch-mini/DishDash
Linch-mini/DishDash PublicDishDash is a dynamic mobile application designed to inspire and guide you towards healthier eating habits by suggesting random delicious and nutritious recipes for meals and drinks every day.
Dart 3
-
Dark-theme-for-SNA-Labs
Dark-theme-for-SNA-Labs PublicGoogle Chrome extention to turn on dark theme on html files of SNA Labs.
JavaScript 1
-
-
Spring-Docker
Spring-Docker PublicPlayground project to test and practice different tools for Backend development with Spring Boot
Java
If the problem persists, check the GitHub status page or contact support.