redo resume

This commit is contained in:
Benjamin Palko 2025-06-18 13:21:28 -04:00
parent 6add8bb344
commit 342a0bffdb
3 changed files with 161 additions and 76 deletions

View file

@ -0,0 +1,98 @@
{
"basics": {
"name": "Benjamin Palko",
"email": "benjaminpalko@hotmail.com",
"phone": "613-340-4839",
"location": {
"city": "Ottawa",
"region": "ON"
}
},
"education": [
{
"institution": "Carleton University",
"location": "Ottawa, ON",
"area": "Software Engineering",
"studyType": "B. Eng",
"endDate": "2019-11",
"startDate": "2014-09"
}
],
"work": [
{
"company": "Bizxcel",
"location": "Brockville, ON",
"position": "Software Developer",
"website": "",
"description": "Contributed to an internal issue tracking web app by adding Markdown support to time entries. Later returned full-time to maintain and enhance a proprietary insurance submission server, ensuring stability and compliance with evolving submission rules.",
"startDate": "2018-05",
"endDate": "2020-02"
},
{
"company": "Mitel",
"position": "Backend Developer",
"description": "At Mitel as backend developer working on MiCloud Contact Center, later I moved to a new project to create a PBX cloud solution, on this project I was part of a team developing an Analytics Service in AWS Lambda. This service integrated with a third party analytics tool to provide user dashboards of operational data, which enhanced management level decision making.",
"location": "Ottawa, ON",
"startDate": "2020-03",
"endDate": "2021-08"
},
{
"company": "Privacy Analytics",
"position": "Backend Developer",
"description": "Contributed to a new product for parsing and de-identifying unstructured healthcare documents. Worked on a multinational team building a multi-language microservices backend. Developed unit testdriven PDF parsing code, migrated a core Node.js service to TypeScript to improve reliability and speed, and led the creation of an asynchronous job service API integrating with existing company tools.",
"location": "Ottawa, ON",
"startDate": "2021-09",
"endDate": "2022-09"
},
{
"company": "Shakudo",
"position": "Full Stack Developer",
"description": "Worked in a fast-paced Scrum environment with a focus on frontend development for a Web3 and data processing platform. Built robust, reusable UI components and led improvements including an asynchronous notification system, enhanced state management, and more responsive, validated forms.",
"location": "Toronto, ON",
"startDate": "2022-09",
"endDate": "2023-05"
},
{
"position": "Full Stack Developer",
"description": "Provided production support and feature development for a logistics management platform, including client communications and coordination with cross-functional teams. Also contributed to a .NET-based integration system for importing AS400 data, built on Azure infrastructure and managed using Pulumi for infrastructure-as-code, ensuring efficient, scalable, and reliable data processing.",
"company": "Bridgenext",
"location": "Ottawa, ON",
"startDate": "2023-12"
}
],
"skills": [
{
"keywords": ["Typescript", "Javascript", "CSS", "C#", "C++", "Bash"],
"name": "Languages"
},
{
"keywords": [
"React",
"Nextjs",
"Svelte",
"Expressjs",
"GraphQL",
"Tailwindcss",
".NET",
"ASPNET"
],
"name": "Frameworks & Web"
},
{
"keywords": ["Docker", "Kubernetes", "Github Actions", "AWS", "Azure"],
"name": "Build & Deployment"
},
{
"keywords": ["CosmosDb", "MongoDb", "PostgresDb", "Prisma"],
"name": "Databases"
}
],
"projects": [
{
"url": "https://store.steampowered.com/app/2648600/Cowpocalypse/",
"keywords": ["Unity, C#"],
"name": "Cowpocalypse",
"description": "This was a solo project based on a Game Jam submission for GB Jam 2023, the game was further developed and released on Steam. It is an arcade style game built with the Unity game engine, written in C#, with assets made in Aseprite and audio assets from the Kenneys asset pack."
}
]
}

View file

@ -1,43 +0,0 @@
import { error } from '@sveltejs/kit';
import type { PageServerLoad } from './$types';
import { logger } from '$lib/server/logger';
export const load: PageServerLoad = async ({ locals }) => {
const { strapi } = locals;
try {
const { data: experiences, meta: experiencesMeta } = await strapi.Experiences();
const { data: education, meta: educationMeta } = await strapi.Education();
return {
experiences: experiences.map((item) => {
return {
title: item.Title,
company: item.Company,
description: item.Description,
startDate: item.StartDate,
endDate: item.EndDate,
logo: item.Logo
};
}),
education: education.map((item) => {
return {
institute: item.Institute,
field: item.Field,
description: item.Description,
startDate: item.StartDate,
endDate: item.EndDate
};
}),
meta: {
experiences: experiencesMeta,
education: educationMeta
}
};
} catch (err) {
logger.error('Uh-oh!', err);
if (err instanceof Error) {
error(500, err);
}
}
};

View file

@ -1,33 +1,49 @@
<script lang="ts">
import dayjs from 'dayjs';
import type { PageProps } from './$types';
import { Briefcase, Heart, Zap } from '@lucide/svelte';
import resume from '$lib/constants/resume.json';
let { data }: PageProps = $props();
type ExperienceItem = Exclude<typeof experiences, undefined>[number];
type EducationItem = Exclude<typeof education, undefined>[number];
type ExperienceItem = Exclude<typeof experiences, undefined>[number];
type SkillItem = Exclude<typeof skills, undefined>[number];
let experiences = $derived(
data.experiences?.sort((a, b) => {
if (dayjs(a.endDate).isBefore(b.startDate)) {
return 1;
}
return -1;
})
);
let education = $derived(
data.education?.sort((a, b) => {
resume.education?.sort((a, b) => {
if (dayjs(a.endDate).isBefore(b.startDate)) {
return 1;
}
return -1;
})
);
let experiences = $derived(
resume.work?.sort((a, b) => {
if (dayjs(a.endDate).isBefore(b.startDate)) {
return 1;
}
return -1;
})
);
let skills = $derived(resume.skills);
</script>
{#snippet EducationEntry(item: EducationItem)}
<div class="bg-base-100 rounded p-4">
<div class="flex items-center gap-2">
<div class="badge badge-outline badge-primary">
{dayjs(item.startDate).format('MMM YYYY')} - {item.endDate
? dayjs(item.endDate).format('MMM YYYY')
: 'Current'}
</div>
<p class="font-light text-gray-400">{item.location}</p>
</div>
<div class="flex flex-col gap-2 p-4">
<h3 class="text-lg font-semibold">{item.studyType}, {item.area}</h3>
<p>{item.institution}</p>
</div>
</div>
{/snippet}
{#snippet ExperienceEntry(item: ExperienceItem)}
<div class="bg-base-100 rounded">
<div class="bg-base-100 rounded p-4">
<div class="flex items-center gap-2">
<div class="badge badge-outline badge-primary">
{dayjs(item.startDate).format('MMM YYYY')} - {item.endDate
@ -37,30 +53,44 @@
<p class="font-light text-gray-400">{item.company}</p>
</div>
<div class="flex flex-col gap-2 p-4">
<h3 class="text-lg font-semibold">{item.title}</h3>
<h3 class="text-lg font-semibold">{item.position}</h3>
<p>{item.description}</p>
</div>
</div>
{/snippet}
{#snippet EducationEntry(item: EducationItem)}
<div class="bg-base-100 rounded">
{#snippet SkillEntry(skill: SkillItem)}
<div class="bg-base-100 rounded p-4">
<div class="flex items-center gap-2">
<div class="badge badge-outline badge-primary">
{dayjs(item.startDate).format('MMM YYYY')} - {item.endDate
? dayjs(item.endDate).format('MMM YYYY')
: 'Current'}
{skill.name}
</div>
<p class="font-light text-gray-400">{item.institute}</p>
</div>
<div class="flex flex-col gap-2 p-4">
<h3 class="text-lg font-semibold">{item.field}</h3>
<p>{item.description}</p>
<div class="flex flex-wrap gap-2 p-4">
{#each skill.keywords as keyword (keyword)}
<div class="badge badge-primary">{keyword}</div>
{/each}
</div>
</div>
{/snippet}
<div class="grid w-full gap-4 px-6 py-6 sm:px-8 sm:py-4 lg:grid-cols-2">
<!-- Education -->
<div class="col-span-full">
<div class="flex flex-col gap-1">
<h2 class="text-2xl font-light">Education</h2>
<div class="bg-base-100 h-0.5 w-48 rounded-full">
<div class="bg-primary h-0.5 w-1/3 rounded-full"></div>
</div>
</div>
</div>
{#if !education}
Looks like I have no education :(
{:else}
{#each education as item (item.location)}
{@render EducationEntry(item)}
{/each}
{/if}
<!-- Experience -->
<div class="col-span-full">
<div class="flex flex-col gap-1">
@ -79,21 +109,21 @@
{/each}
{/if}
<!-- Education -->
<!-- Skills -->
<div class="col-span-full">
<div class="flex flex-col gap-1">
<h2 class="text-2xl font-light">Education</h2>
<h2 class="text-2xl font-light">Skills</h2>
<div class="bg-base-100 h-0.5 w-48 rounded-full">
<div class="bg-primary h-0.5 w-1/3 rounded-full"></div>
</div>
</div>
</div>
{#if !education}
Looks like I have no education :(
{#if !experiences}
Looks like I have no skills :(
{:else}
{#each education as item (item.field)}
{@render EducationEntry(item)}
{#each skills as skill (skill.name)}
{@render SkillEntry(skill)}
{/each}
{/if}
</div>