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", startDate: "Sep 2023",
endDate: "Sep 2024", endDate: "Sep 2024",
notes: [ 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", startDate: "Sep 2020",
endDate: "Jul 2023", endDate: "Jul 2023",
notes: [ notes: [
"Graduated with Honours, First Class", "Graduated with First Class Honours",
"Recipient of the Westfield Trust Academic Prize", "Recipient of the Westfield Trust Academic Prize",
"Graduated with overall average at 90%" "Graduated with overall average at 90%"
] ]
@@ -37,7 +39,7 @@ const educationData : EducationArgs[] = [
"Final exam in Physics: 97% percentile", "Final exam in Physics: 97% percentile",
"Final exam in Mathematics: 92% 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 score: number
}[] = [ }[] = [
{ {
name: "Automatic Speech Recognition", name: "MSc Dissertation",
level: "PG", level: "PG",
score: -1 score: 72
},
{
name: "Reinforcement Learning",
level: "PG",
score: -1
}, },
{ {
name: "Natural Language Understanding", name: "Natural Language Understanding",
level: "PG", level: "PG",
score: -1 score: 84
},
{
name: "Machine Learning Practical",
level: "PG",
score: -1
}, },
{ {
name: "Accelerated Natural Language Processing", name: "Accelerated Natural Language Processing",
level: "PG", level: "PG",
score: 81 score: 81
}, },
{
name: "Natural Computing",
level: "PG",
score: 81
},
{
name: "Automated Speech Recognition",
level: "PG",
score: 78
},
{ {
name: "Knowledge Graphs", name: "Knowledge Graphs",
level: "PG", level: "PG",
score: 76 score: 76
}, },
{ {
name: "Natural Computing", name: "Reinforcement Learning",
level: "PG", level: "PG",
score: 81 score: 75
}, },
{ {
name: "Algorithms and Data Structures", name: "Algorithms and Data Structures",

View File

@@ -1,23 +1,22 @@
import {WorkExperienceArgs} from "@/src/portfolio/helpers/WorkExperience"; import {WorkExperienceArgs} from "@/src/portfolio/helpers/WorkExperience";
const workExperienceData : WorkExperienceArgs[] = [ const workExperienceData : WorkExperienceArgs[] = [
{
industry: "Software",
title: "Software Developer",
company: "Softwire",
city: "Manchester",
country: "United Kingdom",
startDate: "November 2024"
},
{ {
industry: "Artificial Intelligence", industry: "Artificial Intelligence",
title: "Programming Data Annotator", title: "Programming Data Annotator",
company: "DataAnnotations", company: "DataAnnotation Tech",
city: "New York", city: "New York",
country: "USA", country: "USA",
startDate: "January 2024" startDate: "January 2024"
}, },
{
industry: "Software",
title: "Software Developer Intern",
company: "Softwire",
city: "London",
country: "United Kingdom",
startDate: "June 2023",
endDate: "August 2023"
},
{ {
industry: "Education", industry: "Education",
title: "Laboratory Demonstrator", title: "Laboratory Demonstrator",
@@ -27,6 +26,15 @@ const workExperienceData : WorkExperienceArgs[] = [
startDate: "September 2021", startDate: "September 2021",
endDate: "April 2024" endDate: "April 2024"
}, },
{
industry: "Software",
title: "Software Developer Intern",
company: "Softwire",
city: "London",
country: "United Kingdom",
startDate: "June 2023",
endDate: "August 2023"
},
{ {
industry: "Education", industry: "Education",
title: "Buddy Scheme Mentor Volunteer", 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, " + "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 " + "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. " + "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 " + "In the software industry, I gained experience as a Software Developer Intern at Softwire. During my masters, I " +
"been contributing to the Artificial Intelligence industry as a Programming Data Annotator at DataAnnotations. " + "have been contributing to the Artificial Intelligence industry as a Programming Data Annotator at DataAnnotation " +
"Throughout these diverse experiences, I have developed a strong work ethic and a wide range of transferable " + "Tech. Upon Graduation, I was offered to join Softwire as a Software Developer and I decided to take the offer " +
"skills."; "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; export default workExperienceData;