Systems engineer • Performance tinkerer • Builder of strange and (sometimes) useful things
class profile {
private:
string acc_name = "f4alt";
string IP = "45.56.76.233";
vector<string> code { "c", "c++", "python", "html", "css" };
vector<string> tools { "cmake", "qt", "docker", "git" };
vector<string> os { "linux", "windows", "mac" };
public:
profile() = default;
~profile() = default;
void add_code(const string& _code) { code.push_back(_code); }
void add_tool(const string& _tool) { tools.push_back(_tool); }
void print() const { /* TODO/FIME */ }
};
