diff --git a/exampleSite/config.toml b/exampleSite/config.toml new file mode 100644 index 0000000..8e103b2 --- /dev/null +++ b/exampleSite/config.toml @@ -0,0 +1,13 @@ +baseURL = "http://example.org/" +languageCode = "en-us" +title = "Hugo's Resume" +disableKinds = ["taxonomy", "taxonomyTerm", "category", "sitemap", "RSS", "404", "robotsTXT"] +theme= "hugos-resume" + +[Params] + Name = "Hugo Jobless" + Description = "Hugo theme to build resume page in style of Jake's resume" + Phone = "123-456-7890" + EMail = "jake@su.edu" + LinkedIn = "linkedin.com/in/jake" + GitHub = "github.com/jake" \ No newline at end of file diff --git a/exampleSite/content/education/Blinn-College.md b/exampleSite/content/education/Blinn-College.md new file mode 100644 index 0000000..e11a9ad --- /dev/null +++ b/exampleSite/content/education/Blinn-College.md @@ -0,0 +1,7 @@ +--- +title: Blinn College +degree: Associate’s in Liberal Arts +location: Bryan, TX +start_date: 2014-08-01 +end_date : 2018-05-01 +--- \ No newline at end of file diff --git a/exampleSite/content/education/Southwestern-University.md b/exampleSite/content/education/Southwestern-University.md new file mode 100644 index 0000000..3c1d528 --- /dev/null +++ b/exampleSite/content/education/Southwestern-University.md @@ -0,0 +1,7 @@ +--- +title: Southwestern University +degree: Bachelor of Arts in Computer Science, Minor in Business +location: Georgetown, TX +start_date: 2018-08-01 +end_date : 2021-05-01 +--- \ No newline at end of file diff --git a/exampleSite/content/experience/Artificial-Intelligence-Research-Assistant.md b/exampleSite/content/experience/Artificial-Intelligence-Research-Assistant.md new file mode 100644 index 0000000..e8f553c --- /dev/null +++ b/exampleSite/content/experience/Artificial-Intelligence-Research-Assistant.md @@ -0,0 +1,14 @@ +--- +title: Artificial Intelligence Research Assistant +weight: 3 +workplace: Southwestern University +location: Georgetown, TX +start_date: 2019-05-01 +end_date : 2019-07-01 +--- +- Explored methods to generate video game dungeons based off of *The Legend of Zelda* +- Developed a game in Java to test the generated dungeons +- Contributed 50K+ lines of code to an established codebase via Git +- Conducted a human subject study to determine which video game dungeon generation technique is enjoyable +- Wrote an 8-page paper and gave multiple presentations on-campus +- Presented virtually to the World Conference on Computational Intelligence \ No newline at end of file diff --git a/exampleSite/content/experience/Information-Technology-Support-Specialist.md b/exampleSite/content/experience/Information-Technology-Support-Specialist.md new file mode 100644 index 0000000..9f67706 --- /dev/null +++ b/exampleSite/content/experience/Information-Technology-Support-Specialist.md @@ -0,0 +1,11 @@ +--- +title: Information Technology Support Specialist +weight: 2 +workplace: Southwestern University +location: Georgetown, TX +start_date: 2018-09-01 +end_date : +--- +- Communicate with managers to set up campus computers used on campus +- Assess and troubleshoot computer problems brought by students, faculty and staff +- Maintain upkeep of computers, classroom equipment, and 200 printers across campus \ No newline at end of file diff --git a/exampleSite/content/experience/Undergraduate-Research-Assistant.md b/exampleSite/content/experience/Undergraduate-Research-Assistant.md new file mode 100644 index 0000000..cb6ab98 --- /dev/null +++ b/exampleSite/content/experience/Undergraduate-Research-Assistant.md @@ -0,0 +1,11 @@ +--- +title: Undergraduate Research Assistant +weight: 1 +workplace: Texas A&M University +location: College Station, TX +start_date: 2020-06-01 +end_date : +--- +- Developed a REST API using FastAPI and PostgreSQL to store data from learning management systems +- Developed a full-stack web application using Flask, React, PostgreSQL and Docker to analyze GitHub data +- Explored ways to visualize GitHub collaboration in a classroom setting \ No newline at end of file diff --git a/exampleSite/content/projects/Gitlytics.md b/exampleSite/content/projects/Gitlytics.md new file mode 100644 index 0000000..52819c6 --- /dev/null +++ b/exampleSite/content/projects/Gitlytics.md @@ -0,0 +1,11 @@ +--- +title: Gitlytics +weight: 1 +tags: ["Python", "Flask", "React", "PostgreSQL", "Docker"] +start_date: 2020-06-01 +end_date : +--- +- Developed a full-stack web application using with Flask serving a REST API with React as the frontend +- Implemented GitHub OAuth to get data from user’s repositories +- Visualized GitHub data to show collaboration +- Used Celery and Redis for asynchronous tasks \ No newline at end of file diff --git a/exampleSite/content/projects/Paintball.md b/exampleSite/content/projects/Paintball.md new file mode 100644 index 0000000..1b57d5d --- /dev/null +++ b/exampleSite/content/projects/Paintball.md @@ -0,0 +1,11 @@ +--- +title: Simple Paintball +weight: 2 +tags: ["Spigot API", "Java", "Maven", "TravisCI", "Git"] +start_date: 2018-05-01 +end_date : 2020-05-01 +--- +- Developed a Minecraft server plugin to entertain kids during free time for a previous job +- Published plugin to websites gaining 2K+ downloads and an average 4.5/5-star review +- Implemented continuous delivery using TravisCI to build the plugin upon new a release +- Collaborated with Minecraft server administrators to suggest features and get feedback about the plugin diff --git a/exampleSite/content/skills/Developer-Tools.md b/exampleSite/content/skills/Developer-Tools.md new file mode 100644 index 0000000..464ab30 --- /dev/null +++ b/exampleSite/content/skills/Developer-Tools.md @@ -0,0 +1,5 @@ +--- +title: Developer Tools +weight: 3 +tags: ["Git", "Docker", "TravisCI", "Google Cloud Platform", "VS Code", "Visual Studio", "PyCharm", "IntelliJ", "Eclipse"] +--- \ No newline at end of file diff --git a/exampleSite/content/skills/Frameworks.md b/exampleSite/content/skills/Frameworks.md new file mode 100644 index 0000000..f1844a6 --- /dev/null +++ b/exampleSite/content/skills/Frameworks.md @@ -0,0 +1,5 @@ +--- +title: Frameworks +weight: 2 +tags: ["React", "Node.js", "Flask", "JUnit", "WordPress", "Material-UI", "FastAPI"] +--- \ No newline at end of file diff --git a/exampleSite/content/skills/Languages.md b/exampleSite/content/skills/Languages.md new file mode 100644 index 0000000..7e6565d --- /dev/null +++ b/exampleSite/content/skills/Languages.md @@ -0,0 +1,5 @@ +--- +title: Languages +weight: 1 +tags: ["Java", "Python", "C/C++", "SQL (Postgres)", "JavaScript", "HTML/CSS", "R"] +--- \ No newline at end of file diff --git a/exampleSite/content/skills/Libraries.md b/exampleSite/content/skills/Libraries.md new file mode 100644 index 0000000..101a698 --- /dev/null +++ b/exampleSite/content/skills/Libraries.md @@ -0,0 +1,5 @@ +--- +title: Libraries +weight: 4 +tags: ["pandas", "NumPy", "Matplotlib"] +--- \ No newline at end of file