update the basic information

This commit is contained in:
2024-11-27 22:32:09 +00:00
parent f8a5f03f58
commit 10657e63ab
3 changed files with 44 additions and 32 deletions

View File

@@ -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)
}
];

View File

@@ -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",

View File

@@ -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;