Just a student who is trying to delve deep into this rabbit hole.
I am also a Linux and FOSS enthusiast;
tinkering with my system and walking the tightrope between breaking it and customization is what I love the most!
(I might not be perfectly right in the head)
#include <iostream>
#include <string>
#include <vector>
class TechStack {
public:
std::vector<std::string> languages{"C", "C++", "Python"};
std::vector<std::string> databases{"PostgreSQL", "MongoDB"};
std::vector<std::string> environment{"Arch Linux", "Neovim"};
std::vector<std::string> version_control{"Git", "Github"};
~TechStack();
};
TechStack::~TechStack() {
std::cout << "NOOOOOOOOOOO!!!!!" << "\n";
std::cout << "Wait, how do I exit this editor?!" << std::endl;
}