struct Student {
char *name;
char *education;
char *courses[1024];
char *experience[1024];
char *certifications[1024];
char *leadership[1024];
char *interests[1024];
};
struct Student aschombe = {
.name = "Andrew Schomber",
.education = "Computer Science Student at Stevens Institute of Technology",
.courses = {
"CS 284 - Data Structures",
"CS 306 - Intro to IT Security",
"CS 334 - Theory of Computation",
"CS 382 - Computer Architecture and Organization",
"CS 385 - Algorithms",
"CS 392 - Systems Programming",
"CS 492 - Operating Systems",
"CS 496 - Programming Languages",
"CS 516 - Compiler Design & Implementation",
"CS 555 - Agile Methods for Software Development",
"CS 573 - Fundamentals of Cybersecurity",
"CS 615 - Systems Administration",
"CS 531 - Advanced Programming in the UNIX Environment"
"CS 810 - Automated Techniques for Security, Privacy & Reliability"
},
.experience = {
"IT Infrastructure Intern at ConnectiveRX",
"ROC Engineering Intern at Dega Systems",
"Course Assistant for Computer Architecture and Systems Programming"
},
.certifications = {
"AWS Certified Cloud Practitioner",
},
.leadership = {
"Vice President of the Stevens Game Development Club"
},
.interests = {
"Information Technology",
"Cybersecurity",
"Computer Architecture",
"Programming Languages",
"Cloud Technologies",
"Game Development"
}
};- aarch64-emulator - A modular and extensible AArch64 emulator written in Rust.
- AeroShield - Developing a security testing and detection framework that identifies and mitigates threats to UAV operations.

