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