diff options
-rw-r--r-- | content/resume.md | 18 | ||||
-rw-r--r-- | update_resume.sh | 5 |
2 files changed, 16 insertions, 7 deletions
diff --git a/content/resume.md b/content/resume.md index 920e566..881c863 100644 --- a/content/resume.md +++ b/content/resume.md @@ -6,15 +6,19 @@ aliases = ["portfolio", "resume"] author = "Matt Strapp" +++ +If you want it as a PDF, [contact me](/about/#contact) + + --- + <div class="center"> -**Matthew Strapp** +# **Matthew Strapp** (814)732-0836 | [<u>matt@mattstrapp.net</u>](mailto:matt@mattstrapp.net) | [<u>git.mattstrapp.net</u>](https://git.mattstrapp.net) </div> -# Experience +## Experience - <table> <tbody> @@ -33,7 +37,7 @@ author = "Matt Strapp" - Made an ASP.NET API that took a feedback form and added it to the company CRM system - - Made a C# program that helped the company migrate CRM systems + - Made a C## program that helped the company migrate CRM systems - Created a Go application allowing automated translation between ANSI X12 EDI and a proprietary format @@ -63,7 +67,7 @@ author = "Matt Strapp" - Read about the latest products being manufactured and sold to be able to answer questions -# Education +## Education - <table> <tbody> @@ -80,7 +84,7 @@ author = "Matt Strapp" </tbody> </table> -# Leadership +## Leadership - <table> <tbody> @@ -104,7 +108,7 @@ author = "Matt Strapp" - Hosted the Academic Affairs Committee meetings over Zoom -# Projects +## Projects - <table> <tbody> @@ -173,7 +177,7 @@ author = "Matt Strapp" - Set up a fixed-sized FIFO cache to reduce needed disk I/O and increase speed -# Technical Skills +## Technical Skills <div class="itemize"> diff --git a/update_resume.sh b/update_resume.sh index acad4cf..d0d45ca 100644 --- a/update_resume.sh +++ b/update_resume.sh @@ -1,7 +1,12 @@ #!/bin/sh pandoc --from latex+ascii_identifiers ./resume.tex --to commonmark+ascii_identifiers -o content/resume.md +sed -i 's/# /## /g' content/resume.md +# Make my name more prominent :) +sed -i '3 s/./# &/' content/resume.md + # Add the hugo stuff +sed -i '1s/^/If you want it as a PDF, [contact me](\/about\/\#contact)\n\n --- \n\n/' content/resume.md sed -i '1s/^/+++\n\n/' content/resume.md sed -i '1s/^/author = "Matt Strapp"\n/' content/resume.md sed -i '1s/^/aliases = ["portfolio", "resume"]\n/' content/resume.md |