1.0 prep
This commit is contained in:
		
										
											Binary file not shown.
										
									
								
							@@ -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|
 | 
			
		||||
										
											Binary file not shown.
										
									
								
							
							
								
								
									
										1
									
								
								build-output/client-submission/ignore-this-dir
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										1
									
								
								build-output/client-submission/ignore-this-dir
									
									
									
									
									
										Normal file
									
								
							@@ -0,0 +1 @@
 | 
			
		||||
This directory is used by the build process. Ignore it.
 | 
			
		||||
										
											Binary file not shown.
										
									
								
							@@ -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.
										
									
								
							
							
								
								
									
										1
									
								
								build-output/job-board/ignore-this-dir
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										1
									
								
								build-output/job-board/ignore-this-dir
									
									
									
									
									
										Normal file
									
								
							@@ -0,0 +1 @@
 | 
			
		||||
This directory is used by the build process. Ignore it.
 | 
			
		||||
@@ -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
 | 
			
		||||
@@ -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
 | 
			
		||||
@@ -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
 | 
			
		||||
@@ -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
 | 
			
		||||
		Reference in New Issue
	
	Block a user