diff --git a/data/education.json b/data/education.json new file mode 100644 index 0000000..7500ba9 --- /dev/null +++ b/data/education.json @@ -0,0 +1,33 @@ +[ + { + "institution": "University of Toronto", + "logoSrc": "assets/companies/utoronto-logo.png", + "degree": "Master of Economics", + "description": "During my time at the University of Toronto pursuing my Master's in Economics, I was fortunate to have the opportunity to learn and grow at a world-class institution. Not only was I able to expand the breadth of my knowledge in economics and related fields, but I was also able to dive more deeply into my research niche of econometric machine learning. One of the highlights of my education was being surrounded by so many other motivated individuals who shared my passion for learning and discovery. Overall, my experience at the University of Toronto was an incredibly rewarding one that has shaped my academic and professional pursuits.", + "courseHighlights": [ + "Economic Machine Learning (A+)", + "Statistical Methods for Machine Learning and Data Mining: (A)", + "Computational Statistics: (A-)", + "Econometrics: (A-)" + ] + }, + { + "institution": "University of Saskatchewan", + "logoSrc": "assets/companies/usask-logo.png", + "degree": "Bachelor of Computer Science and Economics", + "description": "During my undergraduate studies, I gained foundational skills in both computer science and economics. The diverse faculty I learned from allowed me to approach concepts from multiple perspectives, shaping and forming my interests in both academia and industry. This experience provided me with a well-rounded education that allowed me to expand my knowledge beyond just the classroom. It was a great opportunity to learn from multiple fields, and this experience provided me with the tools to further my education and career.", + "courseHighlightsEconomics": [ + "Introduction to Empirical Economics (100%)", + "Intermediate Microeconomics (96%)", + "Monetary Theory (94%)", + "Mathematical Introduction to Micro Theory (93%)" + ], + "courseHighlightsComputerScience": [ + "Information Visualization (95%)", + "Machines and Algorithms (93%)", + "Simulation Principles (91%)", + "Deep Learning (87%)" + ] + } + ] + \ No newline at end of file diff --git a/scripts/gen_tiles.js b/scripts/gen_tiles.js index 3482087..0c98c57 100644 --- a/scripts/gen_tiles.js +++ b/scripts/gen_tiles.js @@ -48,7 +48,6 @@ async function generatePaperTiles() { const response = await fetch('data/papers.json'); const papers = await response.json(); - // Get the container element const container = document.querySelector("#papers"); @@ -88,40 +87,11 @@ async function generatePaperTiles() { -function generateEducationTiles() { - // Define an array of education data - const education = [ - { - institution: "University of Toronto", - logoSrc: "assets/companies/utoronto-logo.png", - degree: "Master of Economics", - description: "During my time at the University of Toronto pursuing my Master's in Economics, I was fortunate to have the opportunity to learn and grow at a world-class institution. Not only was I able to expand the breadth of my knowledge in economics and related fields, but I was also able to dive more deeply into my research niche of econometric machine learning. One of the highlights of my education was being surrounded by so many other motivated individuals who shared my passion for learning and discovery. Overall, my experience at the University of Toronto was an incredibly rewarding one that has shaped my academic and professional pursuits.", - courseHighlights: [ - "Economic Machine Learning (A+)", - "Statistical Methods for Machine Learning and Data Mining: (A)", - "Computational Statistics: (A-)", - "Econometrics: (A-)", - ], - }, - { - institution: "University of Saskatchewan", - logoSrc: "assets/companies/usask-logo.png", - degree: "Bachelor of Computer Science and Economics", - description: "During my undergraduate studies, I gained foundational skills in both computer science and economics. The diverse faculty I learned from allowed me to approach concepts from multiple perspectives, shaping and forming my interests in both academia and industry. This experience provided me with a well-rounded education that allowed me to expand my knowledge beyond just the classroom. It was a great opportunity to learn from multiple fields, and this experience provided me with the tools to further my education and career.", - courseHighlightsEconomics: [ - "Introduction to Empirical Economics (100%)", - "Intermediate Microeconomics (96%)", - "Monetary Theory (94%)", - "Mathematical Introduction to Micro Theory (93%)", - ], - courseHighlightsComputerScience: [ - "Information Visualization (95%)", - "Machines and Algorithms (93%)", - "Simulation Principles (91%)", - "Deep Learning (87%)", - ], - }, - ]; +async function generateEducationTiles() { + // Fetch paper data from JSON file + const response = await fetch('data/education.json'); + const education = await response.json(); + // Get the container element const container = document.querySelector("#education");