Work on resume

master
Tait Hoyem 3 years ago
parent 8c290d36b0
commit faf753646d

@ -1,8 +0,0 @@
- name: "C"
- name: "C++"
- name: "Python"
- name: "Javscript"
- name: "HTML/CSS"
- name: "Bash"
- name: "PHP"
- name: "Java EE"

@ -1,4 +0,0 @@
- name: "English"
level: "Native"
- name: "Mandarin Chinese"
level: "Novice"

@ -1,6 +0,0 @@
- institution: "Dartmouth College (Open Corseware)"
level: "Professional Certificate"
name: "C Programming with Linux"
years: "2020"
description: "A certification in C programming, the `gcc` compiler, and the `make` compilation system. 100% mark."
link: "https://credentials.edx.org/credentials/17b2f07e656d4d61a27153716c97a404/"

@ -0,0 +1,23 @@
- section: "Languages"
skilllist:
- skill: "English (native)"
- skill: "Mandarin (novice)"
- section: "Programming Languages"
skilllist:
- skill: "C/C++"
- skill: "Python"
- skill: "Java & Java EE"
- skill: "HTML/CSS/JS (Frontend Web)"
- skill: "Typescript, SCSS, Static Site Generation (Compiled Web)"
- skill: "PHP"
- skill: "POSIX Shell"
- section: "Frameworks/Environments"
skilllist:
- skill: "Flask"
- skill: "Django"
- skill: "JQuery"
- section: "Miscellaneous"
skilllist:
- skill: "3D Printing"
- skill: "Proxmox Virtualization"
- skill: "Embedded Systems (RPi, ESP-compatible)"

@ -1,43 +1,49 @@
---
---
layout: simple
title: "Resume"
---
# Tait Hoyem
---
<h1 class="center">Tait Hoyem</h1>
### Experience
## Experience
<ul class="clear-list">
{% for job in site.data.experience %}
**{{ job.company }}**---*{{ job.position }}* ({{ job.years }})
<li>
<strong>{{ job.company }}</strong> &mdash; <em>{{ job.position }}</em> ({{ job.years }})
{{ job.description }}
<p>{{ job.description }}</p>
</li>
{% endfor %}
</ul>
### Education
## Education
<ul class="clear-list">
{% for education in site.data.education %}
**{{ education.institution }}**---{{ education.level }} / *{{ education.name }}* ({{ education.years }})
{{ education.description }}
{% endfor %}
<li>
<strong>{{ education.institution }}</strong> &mdash; {{ education.level }} / <em>{{ education.name }}</em> ({{ education.years }})
### Professional Development
{% for education in site.data.proffedu %}
**{{ education.institution }}**---{{ education.level }} / *{{ education.name }}* ({{ education.years }})
{{ education.description }}
{{ education.description | markdownify }}
</li>
{% endfor %}
</ul>
### Projects
## Projects
<ul class="clear-list">
{% for project in site.data.projects %}
**[{{ project.name }}]({{ project.link }})**
<li>
<strong><a href="{{ project.link }}">{{ project.name }}</a></strong>
*{{ project.description }}*
{% endfor %}
### Languages
##### Human
{% for lang in site.data.languages %}
* {{ lang.name }} ({{ lang.level }})
<p>{{ project.description }}</p>
</li>
{% endfor %}
##### Computer
{% for lang in site.data.comp-langs %}
* {{ lang.name }}
</ul>
## Skills
{% for list in site.data.skills %}
<h3>{{ list.section }}</h3>
<ul>
{% for skill in list.skilllist %}
<li>{{ skill.skill }}</li>
{% endfor %}
</ul>
{% endfor %}

Loading…
Cancel
Save