GenkaOk - Overview

IT Lead at Polis812 šŸ’š

Hi! I'm Max, an IT Lead based in the Republic of Mari El, Russia.

I love creating smart systems, automating workflows, working with microcontrollers, and solving complex tech challenges.


#include <iostream>
#include <map>
#include <string>

std::map<std::string, std::string> GetBio() {
    return {
        {
            "⚔ Quick bio:",
            "Experienced software engineer and cybersecurity specialist "
            "with a strong background in DevOps and system automation."
            "\n\t"
            "Passionate about technology, artificial intelligence, "
            "microcontrollers, and complex system architecture."
        },
        {
            "šŸ’» I’m into:",
            "C++, GoLang, PHP, JavaScript, Linux, macOS, "
            "Artificial Intelligence, Cybersecurity, and embedded systems."
        },
        {
            "šŸ“« How to reach me:",
            "GitHub: github.com/genkaok"
            "\n\t"
            "Telegram: @genkaok"
        }
    };
}

int main() {
    for (const auto& [key, value] : GetBio()) {
        std::cout << key << "\n\t" << value << "\n\n";
    }

    return 0;
}