From 8f1c2d70b55a1b0ade6fce5f2200a5aad2851b9a Mon Sep 17 00:00:00 2001 From: ReachableCEO Date: Thu, 28 Nov 2024 14:36:38 -0600 Subject: [PATCH] Short resume formatting locked! Finally. Content to come shortly. --- .../Resume/Common => }/Contact-Info.md | 0 .../Resume/Common => }/Education.md | 0 .../Resume/Common => }/Skills.csv | 0 .../Resume/Common => }/Skills.md | 0 common/WorkHistory.md | 33 ++++++---------- .../Resume/Non-CV => }/Projects.md | 0 .../Resume/Non-CV => }/Work-History.md | 0 non-cv/build.sh | 32 +++++++-------- .../intermediate/CharlesNWybleShortResume.md | 39 ++++++++----------- 9 files changed, 44 insertions(+), 60 deletions(-) rename common/{@ReachableCEO/Resume/Common => }/Contact-Info.md (100%) rename common/{@ReachableCEO/Resume/Common => }/Education.md (100%) rename common/{@ReachableCEO/Resume/Common => }/Skills.csv (100%) rename common/{@ReachableCEO/Resume/Common => }/Skills.md (100%) rename non-cv/{@ReachableCEO/Resume/Non-CV => }/Projects.md (100%) rename non-cv/{@ReachableCEO/Resume/Non-CV => }/Work-History.md (100%) diff --git a/common/@ReachableCEO/Resume/Common/Contact-Info.md b/common/Contact-Info.md similarity index 100% rename from common/@ReachableCEO/Resume/Common/Contact-Info.md rename to common/Contact-Info.md diff --git a/common/@ReachableCEO/Resume/Common/Education.md b/common/Education.md similarity index 100% rename from common/@ReachableCEO/Resume/Common/Education.md rename to common/Education.md diff --git a/common/@ReachableCEO/Resume/Common/Skills.csv b/common/Skills.csv similarity index 100% rename from common/@ReachableCEO/Resume/Common/Skills.csv rename to common/Skills.csv diff --git a/common/@ReachableCEO/Resume/Common/Skills.md b/common/Skills.md similarity index 100% rename from common/@ReachableCEO/Resume/Common/Skills.md rename to common/Skills.md diff --git a/common/WorkHistory.md b/common/WorkHistory.md index 594d2da..6b94744 100644 --- a/common/WorkHistory.md +++ b/common/WorkHistory.md @@ -1,21 +1,12 @@ -**CDK Global**, *Senior System Engineer*, July 2024 - October 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 - -**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 - -**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 \ No newline at end of file +**CDK Global**, *Senior System Engineer*, July 2024 - October 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 +**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 +**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 +\pagebreak \ No newline at end of file diff --git a/non-cv/@ReachableCEO/Resume/Non-CV/Projects.md b/non-cv/Projects.md similarity index 100% rename from non-cv/@ReachableCEO/Resume/Non-CV/Projects.md rename to non-cv/Projects.md diff --git a/non-cv/@ReachableCEO/Resume/Non-CV/Work-History.md b/non-cv/Work-History.md similarity index 100% rename from non-cv/@ReachableCEO/Resume/Non-CV/Work-History.md rename to non-cv/Work-History.md diff --git a/non-cv/build.sh b/non-cv/build.sh index 8a7ebc1..50c1d54 100644 --- a/non-cv/build.sh +++ b/non-cv/build.sh @@ -6,13 +6,10 @@ IntermediateOutputFile="./output/intermediate/CharlesNWybleShortResume.md" # Combine markdown files into single input file for pandoc -NonCvResumeInputFiles=( - "../@ReachableCEO/Resume/Non-CV/Skills.md" - "../@ReachableCEO/Resume/Non-CV/Projects.md" -) +echo "Combining markdown files..." #Pull in my contact info -cat "../common/@ReachableCEO/Resume/Common/Contact-Info.md" >> $IntermediateOutputFile +cat "../common/Contact-Info.md" >> $IntermediateOutputFile echo " " >> $IntermediateOutputFile #Pull in my skills @@ -21,20 +18,12 @@ echo "## Skills" >> "$IntermediateOutputFile" #Table heading - - -#| | | | -#| --- | --- | --- | -#| | | | -#| | | | - - echo "|Skill|Experience|Skil Details|" >> $IntermediateOutputFile echo "|---|---|---|" >> $IntermediateOutputFile #Table rows IFS=$'\n\t' 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_YEARS="$(echo $skill|awk -F '|' '{print $2}')" SKILL_DETAIL="$(echo $skill|awk -F '|' '{print $3}')" @@ -42,21 +31,30 @@ echo "|**$SKILL_NAME**|$SKILL_YEARS|$SKILL_DETAIL|" >> $IntermediateOutputFile done unset IFS +echo "\pagebreak" >> $IntermediateOutputFile + #Pull in my projects -cat "./@ReachableCEO/Resume/Non-Cv/Projects.md" >> $IntermediateOutputFile +cat "./Projects.md" >> $IntermediateOutputFile echo " " >> $IntermediateOutputFile +echo "\pagebreak" >> $IntermediateOutputFile + #Pull in my work history -cat "../common/WorkHistory.md" >> $IntermediateOutputFile echo " " >> $IntermediateOutputFile +echo "## Employment History" >> $IntermediateOutputFile + +cat "../common/WorkHistory.md" >> $IntermediateOutputFile #Pull in my education info -cat "../common/@ReachableCEO/Resume/common/Education.md" >> $IntermediateOutputFile + echo " " >> $IntermediateOutputFile +cat "../common/Education.md" >> $IntermediateOutputFile # Run pandoc to generate PDF into output dir +echo "Generating PDF..." + pandoc \ $IntermediateOutputFile \ --template eisvogel \ diff --git a/non-cv/output/intermediate/CharlesNWybleShortResume.md b/non-cv/output/intermediate/CharlesNWybleShortResume.md index 8807cfc..07e1e13 100644 --- a/non-cv/output/intermediate/CharlesNWybleShortResume.md +++ b/non-cv/output/intermediate/CharlesNWybleShortResume.md @@ -24,6 +24,7 @@ Senior (**Staff level**) **System Engineer/SRE/Architect** with extensive Linux/ |**Ticket / incident / project management (22 years): Jira, ServiceNow,Redmine,RT.**||| |**Git**|15 years|branching, merging, multiple teams, external vendors, submodules | |**LLM**|2 years|OpenWebUI, Apple Silicon, QA/validation, RAG, data cleaning/prep| +\pagebreak Projects -------- @@ -39,28 +40,22 @@ Projects - other cool project (go through CV to find) #todo - #todo Find and flesh out -**CDK Global**, *Senior System Engineer*, July 2024 - October 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 - -**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 - -**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 +\pagebreak + +## Employment History +**CDK Global**, *Senior System Engineer*, July 2024 - October 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 +**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 +**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 +\pagebreak ## Education -High School Graduate +High School Graduate \ No newline at end of file