30 lines
1.0 KiB
TypeScript
30 lines
1.0 KiB
TypeScript
import type { EducationEntry } from '@/components/svelte/EducationItem.svelte'
|
|
|
|
export const education: EducationEntry[] = [
|
|
{
|
|
school: 'Georgia Institute of Technology',
|
|
degree: 'Masters of Computer Science',
|
|
location: 'Atlanta, USA',
|
|
startYear: 2026,
|
|
startMonth: 'Sept',
|
|
},
|
|
{
|
|
school: 'University of Guelph',
|
|
degree: 'Bachelor of Computing',
|
|
minor: 'Mathematics',
|
|
gpa: '4.0',
|
|
location: 'Guelph, Canada',
|
|
startYear: 2019,
|
|
startMonth: 'Sept',
|
|
endYear: 2024,
|
|
endMonth: 'May',
|
|
expected: false,
|
|
courses: ['Data Structures', 'Algorithms', 'Software Engineering', 'Operating Systems', 'Databases', 'Computer Networks', 'Cloud Computing', 'Systems Programming'],
|
|
awards: [
|
|
{ name: "Dean's List", description: 'In each full-time semester' },
|
|
{ name: 'Weiner Mathematical Scholarship', description: 'Highest mathematics average (1st year)' },
|
|
{ name: 'R.A Fisher Statistics Scholarship', description: 'Highest statistics average (2nd year)' },
|
|
],
|
|
},
|
|
]
|