From d21ddbdd3f4ba31b9372ff808df5ed1e4094f821 Mon Sep 17 00:00:00 2001 From: shockrah Date: Wed, 22 Sep 2021 12:39:21 -0700 Subject: [PATCH] + New job experience + Better education link support * Swapped exp and projects section --- .gitignore | 3 ++- config.toml | 29 +++++++++++++++++++---------- layouts/index.html | 2 +- layouts/partials/education.html | 7 ++++++- 4 files changed, 28 insertions(+), 13 deletions(-) diff --git a/.gitignore b/.gitignore index 9fbf39c..2325162 100644 --- a/.gitignore +++ b/.gitignore @@ -1,3 +1,4 @@ hugo.exe resources/ -public/ \ No newline at end of file +public/ +*.swp diff --git a/config.toml b/config.toml index 18bda9c..375195e 100644 --- a/config.toml +++ b/config.toml @@ -40,6 +40,15 @@ theme = "sada" dates = "Fall 2018 - Winter 2019" grad = "yes" + [[params.education.list]] + degree = "CompTIA Security+ Certified" + college = "Verification code: 83JZR9SPWDV1Q6CS" + link = "https://www.certmetrics.com/comptia/public/verification.aspx/" + + [[params.education.list]] + degree = "Splunk Core Certified User" + link = "https://www.credly.com/badges/709380cd-ac24-48a2-953d-803d63eaae96" + [[params.education.list]] college = "Irvine Valley College" dates = "Fall 2016 - Spring 2018" @@ -95,6 +104,16 @@ theme = "sada" icon = "fa-briefcase" title = "Experience" + [[params.jobs.list]] + position = "Devops/Fullstack Engineer" + dates = "August 2021 - Current" + details = "Helping build a new industry trend analyzer. Primarily working with Python, Gitlab CI/CD, AWS, and natural language processing frameworks like spacy." + + [[params.jobs.list]] + position = "Devops Intern" + dates = "May 2021 - August 2021" + details = "Learned how to build and manage scalable applications with modern CI/CD pipelines. Developed application workflows with Terraform, AWS, Gitlab CI, and Python. Acheived CompTIA Security+ Certification and Splunk Certification. Finished internship with an offer to work at sister company Career Mentor Group." + [[params.jobs.list]] position = "Amazon Fulfillment Associate" dates = "May 2020 - December 2020" @@ -105,11 +124,6 @@ theme = "sada" dates = "October 2019 - December 2019" details = "Prepared students for exams and helped with assignments through consistent office hour scheduling and by providing ample feedback on assignments. Course material covered MIPS assembly , sequential and combinatorial logic, and an introduction to CPU design. Left because I was graduating that very semester that I worked." - [[params.jobs.list]] - position = "Repair Technician" - dates = "February 2019 - April 2019" - company = "Loaves, Fishes, & Computers Inc." - details = "Diagnosed and repaired issues with Windows laptops and desktops. All repairs required technical write-ups describing the process used in troubleshooting. I assisted customers whenever they had questions regarding repairs or troubleshooting other problems. Left because my semester ended and I had to move back to Orange County." [[params.jobs.list]] position = "Data Visualization Capstone Project" @@ -117,11 +131,6 @@ theme = "sada" company = "CSU Monterey Bay" details = "Created a data visualization tool set with specially designed visualization algorithms to better represent supercomputer resource usage. Worked with data from the U.S Naval Research Laboratory's compute clusters." - [[params.jobs.list]] - position = "Kitchen Staff" - dates = "July 2016 - August 2016" - company = "Edible Arrangements" - details = "Prepared fruit by washing, cutting, and decorating with various toppings.Other responsibilities also included: cleaning kitchen workstations, taking the trash out, washing essential kitchen equipment, maintaining the refrigerator clean as well." # Projects section [params.projects] diff --git a/layouts/index.html b/layouts/index.html index 57f0f3d..94e2b72 100644 --- a/layouts/index.html +++ b/layouts/index.html @@ -16,8 +16,8 @@
- {{ partial "project.html" . }} {{ partial "experience.html" . }} + {{ partial "project.html" . }} {{ partial "skill.html" }}
diff --git a/layouts/partials/education.html b/layouts/partials/education.html index 425ef4e..fa7cc2a 100644 --- a/layouts/partials/education.html +++ b/layouts/partials/education.html @@ -12,5 +12,10 @@
{{ .college }}
{{ .dates }}
+ {{ if ne .link nil }} +
+ Link +
+ {{ end }} -{{ end }} \ No newline at end of file +{{ end }}