Add experience content
This commit is contained in:
parent
43addda003
commit
f88055964d
7
archetypes/experience.md
Normal file
7
archetypes/experience.md
Normal file
@ -0,0 +1,7 @@
|
||||
---
|
||||
title: '{{ replace .File.ContentBaseName `-` ` ` | title }}'
|
||||
workplace: Workplace
|
||||
location: City
|
||||
start_date: '{{ .Date }}'
|
||||
end_date :
|
||||
---
|
@ -0,0 +1,13 @@
|
||||
---
|
||||
title: Artificial Intelligence Research Assistant
|
||||
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
|
@ -0,0 +1,10 @@
|
||||
---
|
||||
title: Information Technology Support Specialist
|
||||
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
|
10
content/experience/Undergraduate-Research-Assistant.md
Normal file
10
content/experience/Undergraduate-Research-Assistant.md
Normal file
@ -0,0 +1,10 @@
|
||||
---
|
||||
title: Undergraduate Research Assistant
|
||||
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
|
@ -1,80 +1,21 @@
|
||||
{{ with .Site.GetPage "/experience"}}
|
||||
<h3>Experience</h3>
|
||||
{{ range sort (.Pages) "Params.start_date" "desc" }}
|
||||
<table>
|
||||
<tbody>
|
||||
<tr>
|
||||
<td><strong>Undergraduate Research Assistant</strong></td>
|
||||
<td style="text-align: right;">June 2020 – Present
|
||||
<td><strong>{{ .Title }}</strong></td>
|
||||
<td style="text-align: right;">
|
||||
{{ with .Params.start_date }}{{ time.Format "Jan 2006" . }}{{ end }} –
|
||||
{{ with .Params.end_date }}{{ time.Format "Jan 2006" . }}{{ else }}{{ "Present" }}{{ end }}
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><em>Texas A&M University</em></td>
|
||||
<td style="text-align: right;"><em>College Station, TX</em></td>
|
||||
<td><em>{{with .Params.workplace}}{{ . }}{{ end }}</em></td>
|
||||
<td style="text-align: right;"><em>{{ with .Params.location}}{{ . }}{{ end }}</em></td>
|
||||
</tr>
|
||||
</tbody>
|
||||
</table>
|
||||
<ul>
|
||||
<li>Developed a REST API using FastAPI and PostgreSQL to store data from learning management systems
|
||||
</li>
|
||||
<li>Developed a full-stack web application using Flask, React, PostgreSQL and Docker to analyze GitHub
|
||||
data
|
||||
</li>
|
||||
<li>Explored ways to visualize GitHub collaboration in a classroom setting
|
||||
</li>
|
||||
</ul>
|
||||
<table>
|
||||
<tbody>
|
||||
<tr>
|
||||
<td><strong>Information Technology Support
|
||||
Specialist</strong></td>
|
||||
<td style="text-align: right;">Sep. 2018 – Present</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><em>Southwestern University</em></td>
|
||||
<td style="text-align: right;"><em>Georgetown, TX</em></td>
|
||||
</tr>
|
||||
</tbody>
|
||||
</table>
|
||||
<ul>
|
||||
<li>Communicate with managers to set up campus computers
|
||||
used on campus
|
||||
</li>
|
||||
<li>Assess and troubleshoot computer problems brought by
|
||||
students, faculty and staff
|
||||
</li>
|
||||
<li>Maintain upkeep of computers, classroom equipment,
|
||||
and 200 printers across campus
|
||||
</li>
|
||||
</ul>
|
||||
<table>
|
||||
<tbody>
|
||||
<tr>
|
||||
<td><strong>Artificial Intelligence Research
|
||||
Assistant</strong></td>
|
||||
<td style="text-align: right;">May 2019 – July 2019</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><em>Southwestern University</em></td>
|
||||
<td style="text-align: right;"><em>Georgetown, TX</em></td>
|
||||
</tr>
|
||||
</tbody>
|
||||
</table>
|
||||
<ul>
|
||||
<li>Explored methods to generate video game dungeons
|
||||
based off of <em>The Legend of Zelda</em>
|
||||
</li>
|
||||
<li>Developed a game in Java to test the generated
|
||||
dungeons
|
||||
</li>
|
||||
<li>Contributed 50K+ lines of code to an established
|
||||
codebase via Git
|
||||
</li>
|
||||
<li>Conducted a human subject study to determine which
|
||||
video game dungeon generation technique is enjoyable
|
||||
</li>
|
||||
<li>Wrote an 8-page paper and gave multiple
|
||||
presentations on-campus
|
||||
</li>
|
||||
<li>Presented virtually to the World Conference on
|
||||
Computational Intelligence
|
||||
</li>
|
||||
</ul>
|
||||
{{ .Content }}
|
||||
{{ end }}
|
||||
{{ end }}
|
Loading…
Reference in New Issue
Block a user