class Person {
std::string name;
std::vector<std::string> positions;
std::vector<std::string> skills;
std::vector<std::string> hobbies;
public:
Person(
const std::string& name,
const std::vector<std::string>& positions,
const std::vector<std::string>& skills,
const std::vector<std::string>& hobbies
) : name(name), positions(positions), skills(skills), hobbies(hobbies) {}
};
Person mihail_croitor(
"Mihail Croitor",
{
"university lecturer", "software developer", "national data manager"
},
{
"C++", "PHP", "JS", "Python", "Java", "C#", // programming languages
"HTML + CSS", "XML", "JSON", "YAML", // formatting / structuring languages
"MySQL", "sqlite", "Memcached", "Redis", "RethinkDB", // database
"software reuse", "frameworks", "automatization", "DevOps", // directions
"SOAP", "REST", "Docker", "docker-compose", // technologies & frameworks
"windows", "linux", "arduino", // platforms
},
{
"chess", "chess composition", "reading", "writing"
}
);
-
Moldova State University
- Chisinau, Moldova
- http://shahmatiuga.livejournal.com
Pinned Loading
Something went wrong, please refresh the page to try again.
If the problem persists, check the GitHub status page or contact support.
If the problem persists, check the GitHub status page or contact support.




