CV/src/experiences/experiences.ts
2023-10-21 14:07:03 +02:00

71 lines
2.2 KiB
TypeScript

import { ExperienceType } from "@/experiences/experiences.types";
export const experiences: ExperienceType[] = [
{
name: "Saysimple / Just Internet Group",
city: "Haarlem",
url: "https://saysimple.com/",
jobTitle: "Senior Developer / DevOps",
startDate: new Date(2018, 9, 1),
endDate: null,
description: `I started at Just Internet Group in 2018 working on Cocoon, a SaaS digital Asset Management (DAM) system. Here I implemented ElasticSearch & Kibana to keep track of assets uploaded and downloaded.
Later on I switched to Saysimple, to start building our brand new Customer Communication Platform. For Saysimple I was responsible for creating and maintaining our CI/CD pipelines, the EKS cluster and our HAProxy loadbalancers.
During my time
`,
skills: [
{
category: "AWS|Containerization|DevOps|Business Intelligence|Team Management"
},
{
name: "NodeJs|Git"
},
],
},
{
name: "Blackorange",
city: "Amsterdam",
url: "http://blackorange.nl/",
jobTitle: "Junior Developer / System Administrator",
startDate: new Date(2018, 9, 1),
endDate: new Date(2018, 8, 30),
description: "",
skills: [
{
category: "AWS|Containerization|DevOps"
},
{
name: "NodeJs|Git|Server"
},
],
},
{
name: "Werring Webdevelopment",
city: "Middenbeemster",
jobTitle: "ZZP",
startDate: new Date(2018, 9, 1),
endDate: new Date(2018, 8, 30),
description: "",
skills: [
{
name: "PHP|Webhosting"
},
],
},
{
name: "Sv. Ingenium",
city: "Utrecht",
url: "http://ingeniumcabobianci.nl/",
jobTitle: "Penningmeester",
startDate: new Date(2018, 9, 1),
endDate: new Date(2018, 8, 30),
description: "",
skills: [
{
name: "Finances"
},
{
category: "Organization"
},
],
},
] satisfies ExperienceType[];