discord: https://discord.gg/J7AjDFYA5m
telegram: https://t.me/nikyofficial
youtube: https://www.youtube.com/@nikyisme
#include <iostream>
#include <string>
#include <vector>
#include <tuple>
class Attributes {
public:
Attributes() {}
static std::tuple<std::string, std::string, std::string> contact() {
std::string discord = "nikymetaa";
std::string telegram = "t.me/nikyofficial";
std::string youtube = "https://www.youtube.com/@nikyisme";
return std::make_tuple(discord, telegram, youtube);
}
std::tuple<std::vector<std::string>, std::vector<std::string>, int> life() {
std::vector<std::string> langs = {"English"};
int age = 16;
return std::make_tuple(langs, age);
}
std::tuple<std::vector<std::string>, std::vector<std::string>, std::vector<std::string>> coding() {
std::vector<std::string> expert = {"python"};
std::vector<std::string> intermediate = {"html", "js"};
std::vector<std::string> learning = {"c", "c++", "c#", "GLSL"};
std::vector<std::string> specialities = {"web/app reverse engineering", "fast learner"};
std::vector<std::string> environment = {"vscode", "pycharm"};
return std::make_tuple(expert, intermediate, learning, specialities, environment);
}
};

