Skip to content
View LuminiteTime's full-sized avatar
🍊
drinking bumble
🍊
drinking bumble

Highlights

  • Pro

Block or report LuminiteTime

Block user

Prevent this user from interacting with your repositories and sending you notifications. Learn more about blocking users.

You must be logged in to block users.

Please don't include any personal information such as legal names or email addresses. Maximum 100 characters, markdown supported. This note will be visible to only you.
Report abuse

Contact GitHub support about this user’s behavior. Learn more about reporting abuse.

Report abuse
LuminiteTime/README.md

Hello there👋

// 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 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", "Python", "Scala"
                ),
            "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"
                ),
            "frontend", List.of(
                    "React", "HTML", "CSS", "Javascript", "Flutter", "Dart"
                ),
            "misc", List.of(
                    "Git", "SQL", "Docker", "LaTex", "Postman"
                )
        );
    }

    public void sayHi() {
        System.out.println("Hello! 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();
    }
}

📝 Links

🔧 Technologies & Tools

Languages:

Frameworks:

Tools:

Pinned Loading

  1. Tournament-Microservice Tournament-Microservice Public

    Microservice to manage tournaments.

    Java 3

  2. Linch-mini/DishDash Linch-mini/DishDash Public

    DishDash 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 2

  3. VertoBot VertoBot Public

    Bot for operations with files

    Python

  4. Scala-Studying Scala-Studying Public

    Studying Scala and its aspects.

    Scala

  5. LinchMafia LinchMafia Public

    App for Mafia game (not finished yet)

    C++

  6. PygamePlatformer PygamePlatformer Public

    Игра-платформер на Python с использованием библиотеки Pygame

    Python 1