Short resume formatting locked! Finally. Content to come shortly.
This commit is contained in:
parent
8c2d094cac
commit
8f1c2d70b5
@ -1,21 +1,12 @@
|
|||||||
**CDK Global**, *Senior System Engineer*, July 2024 - October 2024
|
**CDK Global**, *Senior System Engineer*, July 2024 - October 2024
|
||||||
|
**Apple Computer**, *Senior System Administrator*, March 2024 - July 2024
|
||||||
**Apple Computer**, *Senior System Administrator*, March 2024 - July 2024
|
**SHEIN.com**, *Staff Site Reliability Engineer*, December 2022 - August 2023
|
||||||
|
**3M**, *Senior Site Reliability Engineer* , March 2020 November 2022
|
||||||
**SHEIN.com**, *Staff Site Reliability Engineer*, December 2022 - August 2023
|
**TippingPoint**, *Staff System/Network Architect*, March 2012 - June 2019
|
||||||
|
**HostGator.com**, *Automation and Escalation Engineer*, March 2011 - May 2012
|
||||||
**3M**, *Senior Site Reliability Engineer* , March 2020 November 2022
|
**RippleTV**, *Systems Engineer*, October 2008 - Jaunary 2010
|
||||||
|
**Walt Disney Internet Group**, *Site Reliability Engineer*, August 2006 - September 2007
|
||||||
**TippingPoint**, *Staff System/Network Architect*, March 2012 - June 2019
|
**Electronic Clearing House**, *Senior Linux System Administrator*, April 2005 - July 2006
|
||||||
|
**GSI Commerce**, *HPUX/Windows/Linux System Administrator*, March 2002 - February 2005
|
||||||
**HostGator.com**, *Automation and Escalation Engineer*, March 2011 - May 2012
|
**Reachable CEO Enterprises**, *Freelancer*, January 2001 - December 2024
|
||||||
|
\pagebreak
|
||||||
**RippleTV**, *Systems Engineer*, October 2008 - Jaunary 2010
|
|
||||||
|
|
||||||
**Walt Disney Internet Group**, *Site Reliability Engineer*, August 2006 - September 2007
|
|
||||||
|
|
||||||
**Electronic Clearing House**, *Senior Linux System Administrator*, April 2005 - July 2006
|
|
||||||
|
|
||||||
**GSI Commerce**, *HPUX/Windows/Linux System Administrator*, March 2002 - February 2005
|
|
||||||
|
|
||||||
**Reachable CEO Enterprises**, *Freelancer*, January 2001 - December 2024
|
|
@ -6,13 +6,10 @@ IntermediateOutputFile="./output/intermediate/CharlesNWybleShortResume.md"
|
|||||||
|
|
||||||
# Combine markdown files into single input file for pandoc
|
# Combine markdown files into single input file for pandoc
|
||||||
|
|
||||||
NonCvResumeInputFiles=(
|
echo "Combining markdown files..."
|
||||||
"../@ReachableCEO/Resume/Non-CV/Skills.md"
|
|
||||||
"../@ReachableCEO/Resume/Non-CV/Projects.md"
|
|
||||||
)
|
|
||||||
|
|
||||||
#Pull in my contact info
|
#Pull in my contact info
|
||||||
cat "../common/@ReachableCEO/Resume/Common/Contact-Info.md" >> $IntermediateOutputFile
|
cat "../common/Contact-Info.md" >> $IntermediateOutputFile
|
||||||
echo " " >> $IntermediateOutputFile
|
echo " " >> $IntermediateOutputFile
|
||||||
|
|
||||||
#Pull in my skills
|
#Pull in my skills
|
||||||
@ -21,20 +18,12 @@ echo "## Skills" >> "$IntermediateOutputFile"
|
|||||||
|
|
||||||
#Table heading
|
#Table heading
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
#| | | |
|
|
||||||
#| --- | --- | --- |
|
|
||||||
#| | | |
|
|
||||||
#| | | |
|
|
||||||
|
|
||||||
|
|
||||||
echo "|Skill|Experience|Skil Details|" >> $IntermediateOutputFile
|
echo "|Skill|Experience|Skil Details|" >> $IntermediateOutputFile
|
||||||
echo "|---|---|---|" >> $IntermediateOutputFile
|
echo "|---|---|---|" >> $IntermediateOutputFile
|
||||||
#Table rows
|
#Table rows
|
||||||
IFS=$'\n\t'
|
IFS=$'\n\t'
|
||||||
for skill in \
|
for skill in \
|
||||||
$(cat ../common/@ReachableCEO/Resume/Common/Skills.csv); do
|
$(cat ../common/Skills.csv); do
|
||||||
SKILL_NAME="$(echo $skill|awk -F '|' '{print $1}')"
|
SKILL_NAME="$(echo $skill|awk -F '|' '{print $1}')"
|
||||||
SKILL_YEARS="$(echo $skill|awk -F '|' '{print $2}')"
|
SKILL_YEARS="$(echo $skill|awk -F '|' '{print $2}')"
|
||||||
SKILL_DETAIL="$(echo $skill|awk -F '|' '{print $3}')"
|
SKILL_DETAIL="$(echo $skill|awk -F '|' '{print $3}')"
|
||||||
@ -42,21 +31,30 @@ echo "|**$SKILL_NAME**|$SKILL_YEARS|$SKILL_DETAIL|" >> $IntermediateOutputFile
|
|||||||
done
|
done
|
||||||
unset IFS
|
unset IFS
|
||||||
|
|
||||||
|
echo "\pagebreak" >> $IntermediateOutputFile
|
||||||
|
|
||||||
#Pull in my projects
|
#Pull in my projects
|
||||||
cat "./@ReachableCEO/Resume/Non-Cv/Projects.md" >> $IntermediateOutputFile
|
cat "./Projects.md" >> $IntermediateOutputFile
|
||||||
echo " " >> $IntermediateOutputFile
|
echo " " >> $IntermediateOutputFile
|
||||||
|
|
||||||
|
echo "\pagebreak" >> $IntermediateOutputFile
|
||||||
|
|
||||||
#Pull in my work history
|
#Pull in my work history
|
||||||
|
|
||||||
cat "../common/WorkHistory.md" >> $IntermediateOutputFile
|
|
||||||
echo " " >> $IntermediateOutputFile
|
echo " " >> $IntermediateOutputFile
|
||||||
|
echo "## Employment History" >> $IntermediateOutputFile
|
||||||
|
|
||||||
|
cat "../common/WorkHistory.md" >> $IntermediateOutputFile
|
||||||
|
|
||||||
#Pull in my education info
|
#Pull in my education info
|
||||||
cat "../common/@ReachableCEO/Resume/common/Education.md" >> $IntermediateOutputFile
|
|
||||||
echo " " >> $IntermediateOutputFile
|
echo " " >> $IntermediateOutputFile
|
||||||
|
cat "../common/Education.md" >> $IntermediateOutputFile
|
||||||
|
|
||||||
# Run pandoc to generate PDF into output dir
|
# Run pandoc to generate PDF into output dir
|
||||||
|
|
||||||
|
echo "Generating PDF..."
|
||||||
|
|
||||||
pandoc \
|
pandoc \
|
||||||
$IntermediateOutputFile \
|
$IntermediateOutputFile \
|
||||||
--template eisvogel \
|
--template eisvogel \
|
||||||
|
@ -24,6 +24,7 @@ Senior (**Staff level**) **System Engineer/SRE/Architect** with extensive Linux/
|
|||||||
|**Ticket / incident / project management (22 years): Jira, ServiceNow,Redmine,RT.**|||
|
|**Ticket / incident / project management (22 years): Jira, ServiceNow,Redmine,RT.**|||
|
||||||
|**Git**|15 years|branching, merging, multiple teams, external vendors, submodules |
|
|**Git**|15 years|branching, merging, multiple teams, external vendors, submodules |
|
||||||
|**LLM**|2 years|OpenWebUI, Apple Silicon, QA/validation, RAG, data cleaning/prep|
|
|**LLM**|2 years|OpenWebUI, Apple Silicon, QA/validation, RAG, data cleaning/prep|
|
||||||
|
\pagebreak
|
||||||
|
|
||||||
Projects
|
Projects
|
||||||
--------
|
--------
|
||||||
@ -39,28 +40,22 @@ Projects
|
|||||||
- other cool project (go through CV to find) #todo
|
- other cool project (go through CV to find) #todo
|
||||||
- #todo Find and flesh out
|
- #todo Find and flesh out
|
||||||
|
|
||||||
**CDK Global**, *Senior System Engineer*, July 2024 - October 2024
|
\pagebreak
|
||||||
|
|
||||||
**Apple Computer**, *Senior System Administrator*, March 2024 - July 2024
|
## Employment History
|
||||||
|
**CDK Global**, *Senior System Engineer*, July 2024 - October 2024
|
||||||
**SHEIN.com**, *Staff Site Reliability Engineer*, December 2022 - August 2023
|
**Apple Computer**, *Senior System Administrator*, March 2024 - July 2024
|
||||||
|
**SHEIN.com**, *Staff Site Reliability Engineer*, December 2022 - August 2023
|
||||||
**3M**, *Senior Site Reliability Engineer* , March 2020 November 2022
|
**3M**, *Senior Site Reliability Engineer* , March 2020 November 2022
|
||||||
|
**TippingPoint**, *Staff System/Network Architect*, March 2012 - June 2019
|
||||||
**TippingPoint**, *Staff System/Network Architect*, March 2012 - June 2019
|
**HostGator.com**, *Automation and Escalation Engineer*, March 2011 - May 2012
|
||||||
|
**RippleTV**, *Systems Engineer*, October 2008 - Jaunary 2010
|
||||||
**HostGator.com**, *Automation and Escalation Engineer*, March 2011 - May 2012
|
**Walt Disney Internet Group**, *Site Reliability Engineer*, August 2006 - September 2007
|
||||||
|
**Electronic Clearing House**, *Senior Linux System Administrator*, April 2005 - July 2006
|
||||||
**RippleTV**, *Systems Engineer*, October 2008 - Jaunary 2010
|
**GSI Commerce**, *HPUX/Windows/Linux System Administrator*, March 2002 - February 2005
|
||||||
|
**Reachable CEO Enterprises**, *Freelancer*, January 2001 - December 2024
|
||||||
**Walt Disney Internet Group**, *Site Reliability Engineer*, August 2006 - September 2007
|
\pagebreak
|
||||||
|
|
||||||
**Electronic Clearing House**, *Senior Linux System Administrator*, April 2005 - July 2006
|
|
||||||
|
|
||||||
**GSI Commerce**, *HPUX/Windows/Linux System Administrator*, March 2002 - February 2005
|
|
||||||
|
|
||||||
**Reachable CEO Enterprises**, *Freelancer*, January 2001 - December 2024
|
|
||||||
|
|
||||||
## Education
|
## Education
|
||||||
|
|
||||||
High School Graduate
|
High School Graduate
|
Loading…
Reference in New Issue
Block a user