This commit is contained in:
Charles N Wyble 2024-12-09 14:31:38 -06:00
parent 247dba5374
commit 72deda5cfd
13 changed files with 2 additions and 254 deletions

View File

@ -1,30 +0,0 @@
First Middle Last
=====
## Career Highlights
- Cool project 1.
- cool project 2.
\pagebreak
## Employment History
**job1 | Title of job 1 | January 1 1970 - January 6 1980**
- Stuff
- Things
- Amazing project!
**job2 | Title of Job 2 | January 1 1970 - January 6 1980**
- Stuff
- Things
- Amazing project!
\pagebreak
## Skills
|Skill|Experience|Skill Details|
|---|---|---|
|**skill1**|1 years|skill,1,details,and,stuff|
|**skill2**|2 years|skill2,2,details,and,stuff,and,things|

View File

@ -0,0 +1 @@
This directory is used by the build process. Ignore it.

Binary file not shown.

View File

@ -1,36 +0,0 @@
First Middle Last
=====
[ [Github Profile](github.com) ] . [ [Linkedin Profile](linkedin.com) ] . [ candidate@domain.com ] . [ 1 123 456 7890 ] . [ Place 1/Place 2 ]
## Career Highlights
- Cool project 1.
- cool project 2.
\pagebreak
## Employment History
**job1 | Title of job 1 | January 1 1970 - January 6 1980**
- Stuff
- Things
- Amazing project!
**job2 | Title of Job 2 | January 1 1970 - January 6 1980**
- Stuff
- Things
- Amazing project!
\pagebreak
## Skills
|Skill|Experience|Skill Details|
|---|---|---|
|**skill1**|1 years|skill,1,details,and,stuff|
|**skill2**|2 years|skill2,2,details,and,stuff,and,things|

Binary file not shown.

View File

@ -0,0 +1 @@
This directory is used by the build process. Ignore it.

View File

@ -1,66 +0,0 @@
#!/bin/bash
MarkdownOutputFile="../MarkdownOutput/client-submit/CharlesNWybleResume.md"
rm $MarkdownOutputFile
# Combine markdown files into single intermediate markdown file
#Pull in my contact info
cat "../boilerplate/Contact-Info-Client-Submit.md" >> $MarkdownOutputFile
echo " " >> $MarkdownOutputFile
echo "## Highlights from my 22 year IT career" >> $MarkdownOutputFile
cat ../SkillsAndProjects/Projects.md >> "$MarkdownOutputFile"
echo "\pagebreak" >> $MarkdownOutputFile
echo " " >> $MarkdownOutputFile
echo "## Employment History" >> $MarkdownOutputFile
echo " " >> $MarkdownOutputFile
#And here we do some magic...
#Pull in my :
# employer
# title
# start/end dates of employment
# long form position summary data from each position
IFS=$'\n\t'
for position in \
$(cat ../WorkHistory/WorkHistory.csv); do
COMPANY="$(echo $position|awk -F ',' '{print $1}')"
TITLE="$(echo $position|awk -F ',' '{print $2}')"
DATEOFEMPLOY="$(echo $position|awk -F ',' '{print $3}')"
echo "**$COMPANY | $TITLE | $DATEOFEMPLOY**" >> $MarkdownOutputFile
echo " " >> "$MarkdownOutputFile"
cat ../EmployerItems/$COMPANY.md >> "$MarkdownOutputFile"
echo " " >> "$MarkdownOutputFile"
done
unset IFS
#Pull in my skills and generate a beautiful table.
echo "\pagebreak" >> $MarkdownOutputFile
echo " " >> "$MarkdownOutputFile"
echo "## Skills" >> "$MarkdownOutputFile"
echo " " >> "$MarkdownOutputFile"
#Table heading
echo "|Skill|Experience|Skill Details|" >> $MarkdownOutputFile
echo "|---|---|---|" >> $MarkdownOutputFile
#Table rows
IFS=$'\n\t'
for skill in \
$(cat ../SkillsAndProjects/Skills.csv); do
SKILL_NAME="$(echo $skill|awk -F '|' '{print $1}')"
SKILL_YEARS="$(echo $skill|awk -F '|' '{print $2}')"
SKILL_DETAIL="$(echo $skill|awk -F '|' '{print $3}')"
echo "|**$SKILL_NAME**|$SKILL_YEARS|$SKILL_DETAIL|" >> $MarkdownOutputFile
done
unset IFS

View File

@ -1,26 +0,0 @@
#!/bin/bash
echo "Generating PDF output for client submission version..."
PDFOutputFile="D:/tsys/@Reachableceo/resume.reachableceo.com/client-submit/CharlesNWyble-Resume.pdf"
MSWordOutputFile="D:/tsys/@Reachableceo/resume.reachableceo.com/client-submit/CharlesNWyble-Resume.doc"
MarkdownInputFile="../MarkdownOutput/client-submit/CharlesNWybleResume.md "
PandocMetadataFile="./CharlesNWyble-ClientSubmit.yml"
pandoc \
"$MarkdownInputFile" \
--template eisvogel \
--metadata-file="$PandocMetadataFile" \
--from markdown \
--to=pdf \
--output $PDFOutputFile
echo "Generating MSWord output for client submission version..."
pandoc \
"$MarkdownInputFile" \
--metadata-file="$PandocMetadataFile" \
--from markdown \
--to=docx \
--reference-doc=resume-docx-reference.docx \
--output $MSWordOutputFile

View File

@ -1,69 +0,0 @@
#!/bin/bash
echo "Cleaning up from previous runs..."
MarkdownOutputFile="../MarkdownOutput/job-board/CharlesNWybleResume.md"
rm $MarkdownOutputFile
echo "Combining markdown files into single input file for pandoc..."
#Pull in my contact info
cat "../boilerplate/Contact-Info.md" >> $MarkdownOutputFile
echo " " >> $MarkdownOutputFile
echo "## Highlights from my 22 year IT career" >> $MarkdownOutputFile
cat ../SkillsAndProjects/Projects.md >> "$MarkdownOutputFile"
echo "\pagebreak" >> $MarkdownOutputFile
echo " " >> $MarkdownOutputFile
echo "## Employment History" >> $MarkdownOutputFile
echo " " >> $MarkdownOutputFile
#And here we do some magic...
#Pull in my :
# employer
# title
# start/end dates of employment
# long form position summary data from each position
IFS=$'\n\t'
for position in \
$(cat ../WorkHistory/WorkHistory.csv); do
COMPANY="$(echo $position|awk -F ',' '{print $1}')"
TITLE="$(echo $position|awk -F ',' '{print $2}')"
DATEOFEMPLOY="$(echo $position|awk -F ',' '{print $3}')"
echo "**$COMPANY | $TITLE | $DATEOFEMPLOY**" >> $MarkdownOutputFile
echo " " >> "$MarkdownOutputFile"
cat ../EmployerItems/$COMPANY.md >> "$MarkdownOutputFile"
echo " " >> "$MarkdownOutputFile"
done
unset IFS
#Pull in my skills and generate a beautiful table.
echo "\pagebreak" >> $MarkdownOutputFile
echo " " >> "$MarkdownOutputFile"
echo "## Skills" >> "$MarkdownOutputFile"
echo " " >> "$MarkdownOutputFile"
#Table heading
echo "|Skill|Experience|Skill Details|" >> $MarkdownOutputFile
echo "|---|---|---|" >> $MarkdownOutputFile
#Table rows
IFS=$'\n\t'
for skill in \
$(cat ../SkillsAndProjects/Skills.csv); do
SKILL_NAME="$(echo $skill|awk -F '|' '{print $1}')"
SKILL_YEARS="$(echo $skill|awk -F '|' '{print $2}')"
SKILL_DETAIL="$(echo $skill|awk -F '|' '{print $3}')"
echo "|**$SKILL_NAME**|$SKILL_YEARS|$SKILL_DETAIL|" >> $MarkdownOutputFile
done
unset IFS

View File

@ -1,27 +0,0 @@
#!/bin/bash
echo "Generating PDF output for job board version..."
PDFOutputFile="D:/tsys/@Reachableceo/resume.reachableceo.com/job-board/CharlesNWyble-Resume.pdf"
MSWordOutputFile="D:/tsys/@Reachableceo/resume.reachableceo.com/job-board/CharlesNWyble-Resume.doc"
MarkdownInputFile="../MarkdownOutput/job-board/CharlesNWybleResume.md "
PandocMetadataFile="./CharlesNWyble-JobBoard.yml"
pandoc \
"$MarkdownInputFile" \
--template eisvogel \
--metadata-file="$PandocMetadataFile" \
--from markdown \
--to=pdf \
--output $PDFOutputFile
echo "Generating MSWord output for client submission version..."
pandoc \
"$MarkdownInputFile" \
--metadata-file="$PandocMetadataFile" \
--from markdown \
--to=docx \
--reference-doc=resume-docx-reference.docx \
--output $MSWordOutputFile