Skip to content

Commit

Permalink
education json data
Browse files Browse the repository at this point in the history
  • Loading branch information
Matts52 committed Nov 19, 2023
1 parent 0119569 commit 8b54ec6
Show file tree
Hide file tree
Showing 2 changed files with 38 additions and 35 deletions.
33 changes: 33 additions & 0 deletions data/education.json
Original file line number Diff line number Diff line change
@@ -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%)"
]
}
]

40 changes: 5 additions & 35 deletions scripts/gen_tiles.js
Original file line number Diff line number Diff line change
Expand Up @@ -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");

Expand Down Expand Up @@ -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");
Expand Down

0 comments on commit 8b54ec6

Please sign in to comment.