diff options
author | Serghei Cebotari <serghei@cebotari.ru> | 2023-11-29 23:58:56 +0300 |
---|---|---|
committer | Serghei Cebotari <serghei@cebotari.ru> | 2023-11-29 23:58:56 +0300 |
commit | f88055964d70b6d87503e19dcf17fd42c7df8529 (patch) | |
tree | 25e7e384d55a81ef8ac72193fabe06d68b62e7d5 /layouts | |
parent | 43addda0034746de8dc03756aff0e4fb976012c0 (diff) |
Add experience content
Diffstat (limited to 'layouts')
-rw-r--r-- | layouts/partials/body/experience.html | 81 |
1 files changed, 11 insertions, 70 deletions
diff --git a/layouts/partials/body/experience.html b/layouts/partials/body/experience.html index 95a49a1..5e25f37 100644 --- a/layouts/partials/body/experience.html +++ b/layouts/partials/body/experience.html @@ -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>
\ No newline at end of file +{{ .Content }} +{{ end }} +{{ end }}
\ No newline at end of file |