#include <iostream>
#include <unistd.h>
#include "includes/Person.h"
int main () {
std::string * name, * biography;
Education * education;
Person * Bert;
name = new std::string("Bert JW Regeer");
biography = new std::string(
"I am a current student at the University of Advancing Technology studying software engineering. I am "
"currently nearing completion of my degree with only two more semesters left at UAT.\r\n"
"I am a highly motivated individual, who enjoys working with technology. My strongest points are my "
"expertise in UNIX/Linux server administration and programming for those platforms. I enjoy working "
"with open source software and writing my own software. I am currently part of several projects at "
"UAT and I am also working on several of my own projects.\r\n"
"I participate in various clubs and groups around school and am active in the Network Security "
"scene, having gone to both Black Hat and DefCon. I also enjoy going to the lesser known Net sec "
"groups. HATS is local to UAT, and ToorCon which is held in San Diego.\r\n"
"I am from the Netherlands, and as such bring a unique perspective to any team. Having lived in and "
"travelled to many countries I am very open to new cultures and ideas. I have resided in the US for "
"the last 8 years, and during that time have met many extra-ordinary and awesome people that I have "
"had the pleasure of working with."
);
education = new Education;
education->schoolname = "University of Advancing Technology";
education->degree = "Bachelor of Science: Software Engineering";
education->major = "Programming";
Bert = new Person(name, biography, education);
std::cout << (*Bert) << std::endl << std::flush;
execl("./Main", "Main", (char *)0);
return 0;
}