#include <iostream>
#include <string>
#include <vector>
class Superpatrex
{
private:
std::string username;
std::string linkedinUrl;
std::vector<std::string> pronouns = {"he", "him", "his"};
std::vector<std::string> programmingLanguages = {"C#", "C++", "C", "Java", "Python", "JavaScript"};
std::vector<std::string> tools = {"Git", "VS Code", "Unity"};
std::vector<std::string> hackathonWins = {"ShellHacks", "KnightHacks", "HackJam",
"IVRHA Virtual Reality and Healthcare Hackathon"};
void display(std::string itemName, const std::vector<std::string>& items)
{
std::cout << itemName << std::endl;
for (const auto& item : items) {
std::cout << " - " << item << std::endl;
}
}
public:
Superpatrex(std::string uname, std::string linkUrl) : username(uname), linkedinUrl(linkUrl)
{
}
void displayUserInfo() {
std::cout << "Username: " << username << std::endl;
std::cout << "LinkedIn: " << linkedinUrl << std::endl;
display("Programming Languages", programmingLanguages);
display("Tools", tools);
display("Hackathon Wins", hackathonWins);
}
};
int main(void)
{
Superpatrex superpatrex("Superpatrex", "https://www.linkedin.com/in/johnandrewscs/");
superpatrex.displayUserInfo();
return 0;
}Hi there! I'm Superpatrex, a passionate software engineer and Honors Computer Science student at the University of Central Florida. Welcome to my GitHub profile!
- 🌐 Find me on the web: My LinkedIn
Here are some of the technologies and tools I frequently work with:
I'm currently learning and interested in virtual reality and general software development. Always eager to explore new things and broaden my knowledge!
Here are some projects I'm currently working on:
- InterView: Virtual Reality Application written in Unity utilizing a large language model to interview individuals for different positions in companies, Oculus Voice SDK, and XR Interactive Toolkit.
- Quackademy: Virtual Reality Application written in Unity to function as a classroom for neuro-divergent elementary school children
- DABOMS: Augmented Reality Application written in Unity using GroKit Core that simulates visual and nervous system disorders for GERT suits, product development, and generation of empathy for those affilicted with those disabilities, diseases, and impairments
- 🏆 1st Place: Microsoft Mixed Reality Challenge
- 🏆 2nd Place: Assurant Way Challenge
- 🚀 Check out my team's project Quackademy
- 📄 Devpost
- 🏆 1st Place: Overall
- 🚀 Check out my project Cubedle
- 🏆 1st Place: Overall
- 🚀 Check out my project DABOMS
- 🏆 2st Place: Overall
- 🏆 1nd Place: Microsoft AI Challenge
- 🏆 2nd Place: Google Challenge
- 🚀 Check out my team's project ARSL
- 📄 Devpost
- 🏆 1nd Place: Most Useful Project
- 🚀 Check out my project Chat Clip That
- 📄 Devpost
Apart from coding, I have a keen interest in:
- 📚 Reading and learning new technologies.
- 🍽️ Cooking new foods and always eating.


