CV/src/skills/skills.ts
2023-10-22 13:43:42 +02:00

118 lines
4.3 KiB
TypeScript

import { SkillType } from "@/skills/skills.types";
export const skills: SkillType[] = [
{
name: "Git",
description:
"Efficiently manage Git repositories, handling pull/merge requests, and ensuring version control integrity.",
category: "Version control systems",
},
{
name: "NodeJs, TypeScript, and Javascript",
description: "Develop and maintain scalable microservices using NodeJs, TypeScript, and Javascript.",
category: "Programming languages",
},
{
name: "Docker",
description: "Containerize and orchestrate microservices in local development environments using Docker.",
category: "Containerization",
},
{
name: "Kubernetes",
description: "Deploy and manage containerized microservices on AWS (EKS) using Kubernetes.",
category: "Containerization",
},
{
name: "EKS",
description: "Administer and optimize Elastic Kubernetes Service (EKS) on AWS.",
category: "AWS",
},
{
name: "API Gateway",
description: "Design, implement, and deploy cloud-based applications using API Gateway on AWS.",
category: "AWS",
},
{
name: "Lambda",
description: "Develop and deploy serverless cloud-based applications using Lambda on AWS.",
category: "AWS",
},
{
name: "CloudWatch",
description: "Monitor and analyze cloud-based applications using CloudWatch on AWS.",
category: "AWS",
},
{
name: "ElasticSearch, Logstash and Kibana (ELK Stack)",
description:
"Extract valuable insights and generate comprehensive statistics from SaaS platform data using the ELK Stack.",
category: "Business Intelligence",
},
{
name: "CI/CD pipelines",
description: "Automate testing, building, and deployment processes using CI/CD pipelines.",
category: "DevOps",
},
{
name: "Server Management",
description: "Configure, maintain, and troubleshoot hosting servers to ensure optimal performance.",
category: "DevOps",
},
{
name: "Webhosting",
description: "Provision and manage web hosting environments for websites and email services.",
category: "DevOps",
},
{
name: "Web development",
description: "Design and develop custom WordPress websites using industry best practices.",
category: "Web development",
},
{
name: "PHP",
description: "Build and maintain dynamic websites and applications using PHP Laravel framework.",
category: "Programming languages",
},
{
name: "One-on-ones",
description:
"Conduct regular one-on-one meetings with junior developers and interns to guide their professional growth.",
category: "Team Management",
},
{
name: "Scrum Master",
description:
"Facilitate Scrum meetings, manage sprint backlogs, refine user stories, and collaborate with the Product Owner.",
category: "Collaboration",
},
{
name: "Finances",
description:
"Oversee financial operations, manage budgets, and ensure financial compliance for a student organization.",
category: "Finance",
},
{
name: "Event Organization",
description:
"Plan, organize, and execute educational events for students, ensuring engaging and informative experiences.",
category: "Organization",
},
{
name: "Communication",
description:
"Effectively communicate ideas and information both verbally and in writing, adapting communication style to suit the audience and purpose.",
category: "Collaboration",
},
{
name: "Problem-solving",
description:
"Apply analytical and creative thinking to identify, analyze, and resolve complex technical challenges, considering multiple perspectives and potential solutions.",
category: "Problem-solving",
},
{
name: "Teamwork",
description:
"Collaborate effectively with team members in a Scrum environment, sharing knowledge, providing constructive feedback, and contributing to a positive and productive team dynamic.",
category: "Collaboration",
},
] satisfies SkillType[];