Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 0 additions & 1 deletion src/components/skills-block/SkillsBlock.css
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,6 @@

.skill-container {
padding: 6px 15px;
border: 1px solid var(--GREY);
border-radius: var(--BORDER-RADIUS-DEFAULT);
}

Expand Down
2 changes: 1 addition & 1 deletion src/data/education-data.js
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ export const educationData = [
icon: <FaGraduationCap />,
data: [
{
label: "Management Sciences, PhD",
label: "Management Sciences & Engineering, PhD",
company: "University of Waterloo",
duration: "Sep 2024 - Present",
details: [
Expand Down
88 changes: 48 additions & 40 deletions src/data/experience-data.js
Original file line number Diff line number Diff line change
@@ -1,42 +1,71 @@
import React from "react";
import { FaCalendar } from "react-icons/fa6";
import { FaIndustry, FaSchool } from "react-icons/fa6";

export const experienceData = [
{
label: "2024",
icon: <FaCalendar />,
label: "Teaching",
icon: <FaSchool />,
data: [
{
label: "Decision Support Systems Teaching Assistant",
company: "University of Waterloo",
duration: "May 2025 - Aug 2025",
details: [
"Taught data engineering concepts such as transformations, predictions, and pyspark.",
"Promptly graded student assessments.",
],
},
{
label: "Advanced Machine Learning Teaching Assistant",
company: "University of Waterloo",
duration: "Jan 2025 - Apr 2025",
details: [
"Taught machine learning concepts such as neural networks, ensemble methods, and regression.",
"Promptly graded student assessments.",
],
},
{
label: "Python Programming Teaching Assistant",
company: "University of Waterloo",
duration: "Sep 2024 - Dec 2024",
details: [
"Taught Python programming concepts such as classes, looping, and testing.",
"Promptly graded student assessments.",
],
},
{
label: "Java Programming Teaching Assistant",
company: "University of Waterloo",
duration: "Jan 2021 - Apr 2021",
details: [
"Taught Java programming concepts such as classes, looping, and testing.",
"Promptly graded student assessments.",
],
},
],
},
{
label: "Industry",
icon: <FaIndustry />,
data: [
{
label: "Data Engineer",
company: "Super.com",
duration: "Jan 2023 - Jun 2024",
details: [
"Optimized database storage and compute usage resulting in drastic cost savings.",
"Triaged alerts to enhance data quality.",
"Setup weekly pipelines to generate sitemaps.",
],
},
],
},
{
label: "2022",
icon: <FaCalendar />,
data: [
{
label: "Software Engineer",
company: "FundThrough",
duration: "May 2022 - Aug 2022",
details: [
"Strengthened the application's infrastructure by updating all project dependencies.",
"Strengthened the application's infrastructure by updating project dependencies.",
"Integrated Slack to automate the process of sending approval messages.",
],
},
],
},
{
label: "2021",
icon: <FaCalendar />,
data: [
{
label: "Software Engineer",
company: "TribalScale",
Expand All @@ -46,21 +75,6 @@ export const experienceData = [
"Collaborated in a pair programming environment focused on efficiently developing the backend of a client's car dealership application.",
],
},
{
label: "Programming Teaching Assistant",
company: "University of Waterloo",
duration: "Jan 2021 - Apr 2021",
details: [
"Prepared practice problems and explanations to teach complex Java programming concepts to students.",
"Validated all programming content and concepts to ensure students could easily learn.",
],
},
],
},
{
label: "2020",
icon: <FaCalendar />,
data: [
{
label: "Design and Manufacturing Technician",
company: "EngineeringCPR",
Expand All @@ -70,19 +84,13 @@ export const experienceData = [
"Assembled fixtures through soldering, comprehending electrical schematics, and optimizing component placements.",
],
},
],
},
{
label: "2019",
icon: <FaCalendar />,
data: [
{
label: "Machine Shop Assistant",
company: "CANASTAMPI inc.",
duration: "Jun 2019 - Aug 2019",
details: [
"Operated machines including a CNC Mill, Lathe, Drill Press, and Pantograph to engrave, polish, and fabricate parts.",
"Validated and verified machined parts precisely met drawing specifications.",
"Operated machines including a CNC Mill, Lathe, Drill Press, and Pantograph to engrave, polish, and manufacture parts.",
"Validated and verified designed parts precisely met drawing specifications.",
],
},
],
Expand Down
4 changes: 2 additions & 2 deletions src/routes/routes.js
Original file line number Diff line number Diff line change
Expand Up @@ -16,9 +16,9 @@ import Skills from "../pages/skills/Skills";
export const home = {
...rootRoutes.home,
label: FULL_NAME,
sublabel: "Management Sciences PhD Student @ University of Waterloo",
sublabel: "PhD Student at University of Waterloo",
description:
"Dedicated and diligent engineering graduate passionate about learning and teaching. Currently focused on researching how programming and optimization can enhance search engines and recommendation systems.",
"Passionate engineering graduate committed to learning and teaching, with a keen focus on researching human-centric evaluation of recomendation systems.",
};

export const pageNotFound = {
Expand Down