My name is Jun.
std::vector<Experience*> experiences;
Experience* google_experience = new Experience{
"Google",
"Software Engineer",
"2021/09",
std::nullopt,
{"Agentspace", "NotebookLM Enterprise"}
};
experiences.push_back(google_experience);
Experience* rbc_experience = new Experience{
"Royal Bank of Canada",
"Software Developer Intern",
"2019/05",
"2019/08",
{"Technology and Operations"}
};
experiences.push_back(rbc_experience);
std::vector<Education*> educations;
Education* uoft_education = new Education{
"University of Toronto",
"Bachelor of Science",
"Computer Science",
"2021/11"
};
educations.push_back(uoft_education);
I also do some security research on the side, you can find me on various platforms using the handle antin0de
.