From 10657e63ab31e447a27429ee0a21031693a85eee Mon Sep 17 00:00:00 2001 From: KuchtaVR6 Date: Wed, 27 Nov 2024 22:32:09 +0000 Subject: [PATCH] update the basic information --- src/portfolio/data/educationData.ts | 8 +++-- src/portfolio/data/modulesTaken.ts | 30 +++++++++---------- src/portfolio/data/workExperienceData.ts | 38 +++++++++++++++--------- 3 files changed, 44 insertions(+), 32 deletions(-) diff --git a/src/portfolio/data/educationData.ts b/src/portfolio/data/educationData.ts index e092144..18382f9 100644 --- a/src/portfolio/data/educationData.ts +++ b/src/portfolio/data/educationData.ts @@ -9,7 +9,9 @@ const educationData : EducationArgs[] = [ startDate: "Sep 2023", endDate: "Sep 2024", notes: [ - "Expected graduation in September 2024" + "Graduated with Distinction", + "Delivered multiple complex AI projects", + "Conducted in-depth research projects in the NLP field" ] }, { @@ -20,7 +22,7 @@ const educationData : EducationArgs[] = [ startDate: "Sep 2020", endDate: "Jul 2023", notes: [ - "Graduated with Honours, First Class", + "Graduated with First Class Honours", "Recipient of the Westfield Trust Academic Prize", "Graduated with overall average at 90%" ] @@ -37,7 +39,7 @@ const educationData : EducationArgs[] = [ "Final exam in Physics: 97% percentile", "Final exam in Mathematics: 92% percentile" ], - useWith: true, + useWith: true, //todo fix this (i.e. this does nothing) } ]; diff --git a/src/portfolio/data/modulesTaken.ts b/src/portfolio/data/modulesTaken.ts index b01dde0..3115a44 100644 --- a/src/portfolio/data/modulesTaken.ts +++ b/src/portfolio/data/modulesTaken.ts @@ -4,39 +4,39 @@ export const modulesTaken : { score: number }[] = [ { - name: "Automatic Speech Recognition", + name: "MSc Dissertation", level: "PG", - score: -1 - }, - { - name: "Reinforcement Learning", - level: "PG", - score: -1 + score: 72 }, { name: "Natural Language Understanding", level: "PG", - score: -1 - }, - { - name: "Machine Learning Practical", - level: "PG", - score: -1 + score: 84 }, { name: "Accelerated Natural Language Processing", level: "PG", score: 81 }, + { + name: "Natural Computing", + level: "PG", + score: 81 + }, + { + name: "Automated Speech Recognition", + level: "PG", + score: 78 + }, { name: "Knowledge Graphs", level: "PG", score: 76 }, { - name: "Natural Computing", + name: "Reinforcement Learning", level: "PG", - score: 81 + score: 75 }, { name: "Algorithms and Data Structures", diff --git a/src/portfolio/data/workExperienceData.ts b/src/portfolio/data/workExperienceData.ts index 7c0b101..44527e9 100644 --- a/src/portfolio/data/workExperienceData.ts +++ b/src/portfolio/data/workExperienceData.ts @@ -1,23 +1,22 @@ import {WorkExperienceArgs} from "@/src/portfolio/helpers/WorkExperience"; const workExperienceData : WorkExperienceArgs[] = [ + { + industry: "Software", + title: "Software Developer", + company: "Softwire", + city: "Manchester", + country: "United Kingdom", + startDate: "November 2024" + }, { industry: "Artificial Intelligence", title: "Programming Data Annotator", - company: "DataAnnotations", + company: "DataAnnotation Tech", city: "New York", country: "USA", startDate: "January 2024" }, - { - industry: "Software", - title: "Software Developer Intern", - company: "Softwire", - city: "London", - country: "United Kingdom", - startDate: "June 2023", - endDate: "August 2023" - }, { industry: "Education", title: "Laboratory Demonstrator", @@ -27,6 +26,15 @@ const workExperienceData : WorkExperienceArgs[] = [ startDate: "September 2021", endDate: "April 2024" }, + { + industry: "Software", + title: "Software Developer Intern", + company: "Softwire", + city: "London", + country: "United Kingdom", + startDate: "June 2023", + endDate: "August 2023" + }, { industry: "Education", title: "Buddy Scheme Mentor Volunteer", @@ -100,9 +108,11 @@ export const workExperienceParagraph = "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."; + "In the software industry, I gained experience as a Software Developer Intern at Softwire. During my masters, I " + + "have been contributing to the Artificial Intelligence industry as a Programming Data Annotator at DataAnnotation " + + "Tech. Upon Graduation, I was offered to join Softwire as a Software Developer and I decided to take the offer " + + "and to work in their regional North West office in Manchester know for pushing innovation in the AI and Data " + + "Sector Throughout these diverse experiences, I have developed a strong work ethic and a wide range of " + + "transferable skills."; export default workExperienceData; \ No newline at end of file