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.

Maximum 250 characters. Please don’t include any personal information such as legal names or email addresses. Markdown is supported. This note will only be visible to you.
Report abuse

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

Report abuse
LuminiteTime/README.md

A little bit about me •ᴗ•

Java & Scala Backend Developer · Innopolis · building backend systems, APIs and developer tools

Am I Dreaming — Metro Boomin, A$AP Rocky, Roisee

// 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.spokenLanguages = List.of(
                Map.of("language", "Russian", "level", "Native"),
                Map.of("language", "English", "level", "Upper-Intermediate")
        );
        this.stack = Map.of(
            "backend", List.of("Java", "Scala", "Spring Boot", "Hibernate", "gRPC", "GraphQL"),
            "databases", List.of("PostgreSQL", "MongoDB", "Redis"),
            "devops", List.of("Docker", "Kafka", "RabbitMQ", "Nginx", "Grafana", "Prometheus"),
            "tools", List.of("Git", "Maven", "Gradle", "JUnit", "Testcontainers")
        );
    }

    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();
    }
}

Engineering map

Core backend

Java, Scala, Kotlin, Spring, Hibernate, GraphQL, FastAPI
Systems & languages

C++, C, Python, Bash, JavaScript, TypeScript, LaTeX
Data & messaging

PostgreSQL, MongoDB, Redis, SQLite, Kafka, RabbitMQ
Apache Airflow
Platform & delivery

Docker, Kubernetes, Nginx, Prometheus, Grafana, GitHub Actions, GitLab
Frontend & mobile

React, Tailwind CSS, Flutter, Dart
Workspace

IntelliJ IDEA, VS Code, GitHub, Git, Maven, Gradle
Codex Cursor claude


Contact me

telegram linkedin

Pinned Loading

  1. IU-Capstone-Project-2025/open-labs-share IU-Capstone-Project-2025/open-labs-share Public

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

  2. Tournament-Microservice Tournament-Microservice Public

    A microservice for managing table tennis tournaments, including tournament lifecycle, players, matches, game tables, and single-elimination brackets. The service provides a PostgreSQL-backed REST A…

    Java 7

  3. 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

  4. motor-screwdriver/mts-true-tech-hack-26 motor-screwdriver/mts-true-tech-hack-26 Public

    WikiLive is a real-time document collaboration platform. The project combines an editor with CRDT synchronization, a backend API for business logic, and a separate collaboration service for realtim…

    TypeScript 4

  5. Linch-JG/Distributed-Log-Analysis-Framework Linch-JG/Distributed-Log-Analysis-Framework Public

    This project introduces a custom distributed log analysis framework based on the MapReduce paradigm, allowing scalable log processing and aggregation across multiple nodes.

    Python 2

  6. Compilers-Construction-Hmm Compilers-Construction-Hmm Public

    A Java-based compiler for a custom imperative language, featuring JavaCC parsing, AST generation, and compilation to WebAssembly Text Format. The project includes CLI commands for compiling, runnin…

    WebAssembly 2