pushing new data

This commit is contained in:
2024-04-10 22:30:17 +01:00
parent 2d08313b05
commit a59843534b
4 changed files with 27 additions and 17 deletions

View File

@@ -6,7 +6,8 @@ const educationData : EducationArgs[] = [
subtitle: "Artificial Intelligence",
institution: "University Of Edinburgh",
city: "Edinburgh",
startDate: "September 2023",
startDate: "Sep 2023",
endDate: "Sep 2024",
notes: [
"Expected graduation in September 2024"
]
@@ -16,8 +17,8 @@ const educationData : EducationArgs[] = [
subtitle: "Computer Science",
institution: "Queen Mary University of London",
city: "London",
startDate: "September 2020",
endDate: "July 2023",
startDate: "Sep 2020",
endDate: "Jul 2023",
notes: [
"Graduated with Honours, First Class",
"Recipient of the Westfield Trust Academic Prize",
@@ -29,8 +30,8 @@ const educationData : EducationArgs[] = [
subtitle: "advanced IT, Maths and Physics",
institution: "Zamoyski High-school",
city: "Warsaw",
startDate: "September 2017",
endDate: "July 2020",
startDate: "Sep 2017",
endDate: "Jul 2020",
notes: [
"Final exam in Computer Science: 98% percentile",
"Final exam in Physics: 97% percentile",

View File

@@ -60,8 +60,7 @@ const projectData : ProjectArguments[] = [
TechnologyEnum.javascript,
TechnologyEnum.css
],
github: "https://github.com/KuchtaVR6/PhotoCa.st",
access: "photocast.html"
github: "https://github.com/KuchtaVR6/PhotoCa.st"
},
{
imagePath: "port2.png",
@@ -86,7 +85,6 @@ const projectData : ProjectArguments[] = [
TechnologyEnum.bootstrap
],
github: "https://github.com/KuchtaVR6/porfolio2021",
access: "portfolio/view/index.html"
},
{
imagePath: "proj2.png",

View File

@@ -1,6 +1,14 @@
import {WorkExperienceArgs} from "@/src/portfolio/helpers/WorkExperience";
const workExperienceData : WorkExperienceArgs[] = [
{
industry: "Artificial Intelligence",
title: "Programming Data Annotator",
company: "DataAnnotations",
city: "New York",
country: "USA",
startDate: "January 2024"
},
{
industry: "Software",
title: "Software Developer Intern",
@@ -16,6 +24,7 @@ const workExperienceData : WorkExperienceArgs[] = [
city: "London",
country: "United Kingdom",
startDate: "September 2021",
endDate: "April 2024"
},
{
industry: "Education",
@@ -60,6 +69,7 @@ const workExperienceData : WorkExperienceArgs[] = [
city: "London",
country: "United Kingdom",
startDate: "December 2021",
endDate: "January 2024"
},
{
industry: "Hospitality",
@@ -83,14 +93,15 @@ const workExperienceData : WorkExperienceArgs[] = [
// todo update
export const workExperienceParagraph =
"My work experience started when I was 16 years old, starting with hospitality and retail-based " +
"positions. Although they are not the most relevant to my career path, I still believe there I had " +
"learned plenty from them in regards to depending on each other, reliability and teamwork. Since last " +
"year I have been moving more toward the education industry. I have experience working as a tutor in " +
"a significant number of companies. Furthermore, for 2 years I had worked as a Laboratory Demonstrator for Queen " +
"Mary University of London. This position involves assisting, teaching and marking students, which is " +
"a great opportunity to broaden my IT knowledge and improve my interpersonal skills. This year during the " +
"summer I am working as a Software Developer intern at Softwire which will allow me to develop my team" +
"-work and IT skills.";
"Since the age of 16, I have been actively engaged in various professional roles across multiple industries, " +
"including Artificial Intelligence, Software, Education, and Hospitality. My journey began in the hospitality " +
"sector, working as a Customer Assistant at McDonald's in Warsaw, Poland, and later at Morrisons in London, UK. " +
"I then transitioned into the education sector, serving as a Coding Tutor at Kodland, a Tutor at FireTechCamp, " +
"and a Computer Science Teaching Intern at Sacred Heart of Mary Girls' School in Upminster. I also volunteered " +
"as a Buddy Scheme Mentor at Queen Mary University, where I later took on the role of a Laboratory Demonstrator. " +
"In the software industry, I gained experience as a Software Developer Intern at Softwire. Most recently, I have " +
"been contributing to the Artificial Intelligence industry as a Programming Data Annotator at DataAnnotations. " +
"Throughout these diverse experiences, I have developed a strong work ethic and a wide range of transferable " +
"skills.";
export default workExperienceData;