Skip to content

Commit

Permalink
CV v2.5.0 (New icons, experience, new photo)
Browse files Browse the repository at this point in the history
  • Loading branch information
Kostiantyn-Salnykov committed Dec 1, 2023
1 parent 90d9a9b commit 6935f96
Show file tree
Hide file tree
Showing 51 changed files with 1,933 additions and 82 deletions.
17 changes: 15 additions & 2 deletions src/App.vue
Original file line number Diff line number Diff line change
Expand Up @@ -167,7 +167,7 @@
<section class="modal-card-body has-text-black has-background">
<div class="is-flex is-align-content-center is-justify-content-center">
<div class="block image is-4by4">
<img src="/src/assets/Photo.jpg" alt="Photo" class="round photo" />
<img src="/src/assets/photo.png" alt="Photo" class="round photo" />
</div>
</div>
<div class="block indent" v-html="p" v-for="p in aboutMeMore.paragraphs" :key="p"></div>
Expand Down Expand Up @@ -220,7 +220,20 @@
<p v-html="block.blockName + ': '" class="subtitle is-size-6 mt-2 mb-0"></p>
<div class="">
<template v-for="item in block.items" :key="item.name">
<span class="tag is-info is-rounded is-outlined mr-1">{{ item.name }} {{ item.icon }}</span>
<template v-if="item.link">
<a class="tag is-info is-rounded is-outlined mr-1" target="_blank" :href="item.link"
>{{ item.name }} {{ item.icon }}
<img
v-if="item.image"
class="image"
:src="`/src/assets/icons/${item.image}`"
width="15"
alt="Test"
/></a>
</template>
<template v-else>
<span class="tag is-info is-rounded is-outlined mr-1">{{ item.name }} {{ item.icon }}</span>
</template>
</template>
</div>
</template>
Expand Down
Binary file removed src/assets/Photo.jpg
Binary file not shown.
51 changes: 50 additions & 1 deletion src/assets/data/experience.json
Original file line number Diff line number Diff line change
@@ -1,8 +1,57 @@
[
{
"heading": "Edvantis LLC - Senior Software Engineer",
"fromDate": "April 2023",
"toDate": "Present",
"projects": [
{
"date": "October 2023",
"title": "Access Management (ITK)",
"icon": "fa-solid fa-lg fa-fingerprint",
"description": "Project for managing the access to different company's services.",
"responsibilities": "Design new approach for testing. Add new tests infrastructure. Write tests for existing functionality. Collaborate with DevOps team to improve developers experience working on a project.",
"usedTechnologies": ["Python 3.10", "Flask", "Pytest", "Unittest", "Docker", "PostgreSQL"],
"teamSize": "8-12",
"positionInTeam": "Senior Software Engineer, SDET",
"customer": "\uD83C\uDDE9\uD83C\uDDEA (Germany)",
"domain": "Employee management"
},
{
"date": "April 2023",
"title": "Unify (Gracehill)",
"icon": "fa-solid fa-lg fa-users-gear",
"description": "A set of microservices, that unifies other products of the company with event-driven approach.",
"responsibilities": "Creating new microservices, writing GraphQL schemas and APIs for AppSync. Deployment on EKS with Helm configurations. Creating python libraries for microservices. Write acceptance and unit tests.",
"usedTechnologies": [
"Python 3.10",
"FastAPI",
"Pydantic",
"GraphQL",
"Terraform",
"Docker",
"Pulsar",
"AWS",
"AppSync",
"S3",
"Cognito",
"Helm"
],
"teamSize": "10",
"positionInTeam": "Senior Software Engineer",
"customer": "\uD83C\uDDFA\uD83C\uDDF8 (USA)",
"domain": "Company & employee management",
"achieved": [
"created new microservice for bulk operations loading",
"new DevOps skills (Terraform, Helm, Kubernetes)",
"experience with event-driven microservices"
]
}
]
},
{
"heading": "Lead Software Engineer (open-source)",
"fromDate": "September 2022",
"toDate": "Present",
"toDate": "April 2023",
"projects": [
{
"date": "December 2022",
Expand Down
Loading

0 comments on commit 6935f96

Please sign in to comment.