discord server: https://discord.gg/J7AjDFYA5m
telegram channel: https://t.me/nikymetaa
youtube channel: 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/nikymetaa";
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 = {"Vietnamese", "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", "skidding"};
std::vector<std::string> environment = {"vscode", "pycharm"};
return std::make_tuple(expert, specialities, environment);
}
std::tuple<std::vector<std::string>, std::vector<std::string>, std::vector<std::string>, std::vector<std::string>, std::vector<std::string>> projects() {
std::vector<std::string> discord = {"GEN Bot", "Nuke Bot", "Fun Casino Bot"};
std::vector<std::string> tiktok = {"Viewbot"};
std::vector<std::string> roblox = {"Executor / Exploit / Injector"};
std::vector<std::string> website = {"nikymetaa.is-a.dev (portfolio)", "nikywelcome.is-a.dev (python IDE)"};
return std::make_tuple(discord, tiktok, roblox, website);
}
};