Resume: languages in front of project

This commit is contained in:
2024-07-09 13:18:51 -04:00
parent 7ea1739380
commit 79b7e336a7
5 changed files with 19 additions and 8 deletions

View File

@@ -500,7 +500,7 @@ header {// {{{
#contact-info {// {{{ #contact-info {// {{{
@include side-margin-em(0); @include side-margin-em(0);
// @include vert-padding-rem(0.5); // @include vert-padding-rem(0.5);
@include a-color($base-sky-blue); // @include a-color($base-sky-blue);
// min-width: $max-page-width; // min-width: $max-page-width;
@media (min-width: 1200px) { @media (min-width: 1200px) {
.container{ .container{
@@ -646,6 +646,7 @@ header {// {{{
.project-title { .project-title {
// color: $base-blue; // color: $base-blue;
color: black; color: black;
display: inline;
} }
.project-link { .project-link {
@@ -706,6 +707,11 @@ header {// {{{
margin-bottom: 15px; margin-bottom: 15px;
} }
.languages {
// font-style: italic;
// font-size: .9em;
}
.institution { .institution {
// color: $base-yellow; // color: $base-yellow;
// color: $base-dark-orange; // color: $base-dark-orange;
@@ -996,7 +1002,8 @@ article.single section.body h5 { color: #515151; }
article.single section.body h6 { color: #747369; } article.single section.body h6 { color: #747369; }
// article.single section.body a,a:visited { color: #a06700; } // article.single section.body a,a:visited { color: #a06700; }
article.single section.body a,a:visited { color: $base-sky-blue; } // article.single section.body a,a:visited { color: $base-sky-blue; }
// article.single section.body a,a:visited { color: $base-sky-blue; }
/* Article Elements */ /* Article Elements */

View File

@@ -6,7 +6,7 @@ draft: false
{{% resume/section "Work Experience" %}}<!--- {{{ --> {{% resume/section "Work Experience" %}}<!--- {{{ -->
{{% resume/work-experience name="Red Hat" {{% resume/work-experience name="Red Hat"
title="Cloud/Software Engineer Intern" date="May 2020 — Aug 2021" %}} title="Cloud/Software Engineer Intern" languages="GoLang, Kubernetes, Jenkins" date="May 2020 — Aug 2021" %}}
- Reduced deployment time by **66%** by [implementing ability](https://github.com/apache/incubator-kie-kogito-operator/commit/175a6356c5474f2360ccb8ae835e0b9b2d653cf1) to - Reduced deployment time by **66%** by [implementing ability](https://github.com/apache/incubator-kie-kogito-operator/commit/175a6356c5474f2360ccb8ae835e0b9b2d653cf1) to
deploy locally-compiled binaries onto **Kubernetes**/**OpenShift** deploy locally-compiled binaries onto **Kubernetes**/**OpenShift**
using only command-line (**GoLang** used for this and below). using only command-line (**GoLang** used for this and below).
@@ -27,8 +27,8 @@ title="Cloud/Software Engineer Intern" date="May 2020 — Aug 2021" %}}
<!--- AWS {{{ --> <!--- AWS {{{ -->
{{% resume/project name="AWS/Kubernetes/Terraform" {{% resume/project name="AWS Server"
url="https://kevin-mok.com/server/" date="May 2024" show="true" %}} url="https://kevin-mok.com/server/" languages="AWS, Kubernetes, Terraform, Docker" date="May 2024" show="true" %}}
- Deployed [various web apps](https://kevin-mok.com/server/) using **Docker** (Compose) on an - Deployed [various web apps](https://kevin-mok.com/server/) using **Docker** (Compose) on an
**AWS EC2** Debian/**Linux** server. **AWS EC2** Debian/**Linux** server.
@@ -53,7 +53,7 @@ url="https://kevin-mok.com/server/" date="May 2024" show="true" %}}
<!--- Rarity Surf {{{ --> <!--- Rarity Surf {{{ -->
{{% resume/project name="Rarity Surf" {{% resume/project name="Rarity Surf" languages="Python, Django, React"
date="Oct 2021" show="true" %}} date="Oct 2021" show="true" %}}
- Web app to give rarity rankings to NFT's within minutes of their metadata being revealed and check which are listed (based on rarity and price filters) on the OpenSea marketplace using their API. - Web app to give rarity rankings to NFT's within minutes of their metadata being revealed and check which are listed (based on rarity and price filters) on the OpenSea marketplace using their API.
@@ -72,7 +72,7 @@ date="Oct 2021" show="true" %}}
<!--- Astronofty {{{ --> <!--- Astronofty {{{ -->
{{% resume/project name="Astronofty" {{% resume/project name="Astronofty"
url="https://github.com/Kevin-Mok/astronofty" date="Jan 2023" url="https://github.com/Kevin-Mok/astronofty" languages="React, Solidity" date="Jan 2023"
show="true" %}} show="true" %}}
- Created for a 36 hour hackathon (UofTHacks X) where it [**came 2nd overall**](https://devpost.com/software/astronofty). - Created for a 36 hour hackathon (UofTHacks X) where it [**came 2nd overall**](https://devpost.com/software/astronofty).

View File

@@ -4,6 +4,7 @@
<h2 class="project-title"> <h2 class="project-title">
{{ .Get "name" }} {{ .Get "name" }}
</h2> </h2>
<span><{{ .Get "languages" }}></span>
</div> </div>
<div class="col-4 text-right date">{{ .Get "date" }}</div> <div class="col-4 text-right date">{{ .Get "date" }}</div>
</div> </div>

View File

@@ -11,4 +11,7 @@
<span class="position"> <span class="position">
{{ .Get "title" }} {{ .Get "title" }}
</span> </span>
<span class="languages">
<{{ .Get "languages" }}>
</span>
</div> </div>