#include
#include
#include
std::map Contacts()
{
std::map contacts;
contacts[“Name”] = “Miron Bury”;
contacts[“Email”] = “miron.bury@gmail.com”;
contacts[“GitHub”] = “https://github.com/miron178”;
return contacts;
}
std::string Personal_Statement()
{
return std::string(
“As a bilingual tinkerer and inquisitive soul it was only natural \n”
“that I’d spend much of my youth experimenting within various \n”
“games: escaping out of bounds, exploiting games mechanics, resource \n”
“glitches and of course using unintended routes and solutions. With \n”
“my interest in computers and games it was inevitable that I would \n”
“eventually look under the hood. With a hint of irony, I now spend \n”
“my time building the game rules and restrictions that my younger \n”
“self would reval in breaking down. After all, trying to make a \n”
“foolproof mechanic is easy, it’s the clever ones you need to watch \n” “out for.”);
}
std::vector Skills()
{
return {“C++”, “C#”, “Python”, “Unity3D”, “Unreal Tournament Editor”};
}
std::map Projects()
{
std::map projects;
projects[“C++”] =
“Lunar Lander – A ascii game where one needs to land a space – \n” “craft on a flat surface at a slow enough speed to not damage it.”;
projects[“Unity3D & C#”] =
“Slimstitution – A game where the player can take over other \n” “objects to obtain ‘skills’ they have.\n”
“Ready, Build, Race – A game where you construct and upgrade a car \n” “then use it to : race, destruction derby, time trial, etc.\n”
“Rewind – A game which uses portals and the rewinding of time – to \n” “solve puzzles.”;
return projects;
}
std::map Education(){
std::map education;
education[“University”] =
“Game_Engine_Scripting {Grade::C} \n”
“Programming_and_Mathematics{ Grade::A } \n”
“Games_Production{ Grade::B } \n”
“Introduction_to_3D_Modeling{ Grade::C }”;
education[“A Levels”] =
“Polish{ Grade::A } \n”
“Computer Science{ Grade::C } \n”
“IT{ Grade::Distinction* } \n”
“Media{ Grade::Distinction * +Distinction } \n”
“Business{ Grade::Distinction* }”;
return education;
}
std::vector Interests_Hobbies()
{
return { “Climbing”, “Gliding”, “Hiking”, “Gaming” };
}
/*
01010100 01101000 01100001 01101110 01101011 00100000 01111001 01101111 01110101 00100000 01100110 01101111 01110010 00100000 01111001 01101111 01110101 01110010 00100000 01110100 01101001 01101101 01100101 00100000 00111010 00101001
*/