-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathwork_experience.html
52 lines (52 loc) · 2.66 KB
/
work_experience.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
<!DOCTYPE html>
<html lang="en" dir="ltr">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Work Experience - Eideen Mozaffari</title>
<link rel="stylesheet" href="styles.css">
</head>
<body>
<!-- Sidebar Navigation -->
<nav>
<h3>Navigation</h3>
<a href="index.html">Home</a>
<a href="education.html">Education</a>
<a href="work_experience.html" style="background-color: #575757;">Work Experience</a>
<a href="projects.html">Projects</a>
<a href="contact.html">Contact</a>
</nav>
<!-- Main Content -->
<main>
<!-- HEADER -->
<header>
<h1>Company and Academic Work Experience</h1>
</header>
<!-- Content -->
<section>
<h2>Company Experience</h2>
<h3>Associate Analytics Developer Intern</h3>
<p><strong>Company:</strong> <a href="https://www.pinc-ai.com/applied-sciences" target="_blank">Premier Inc.</a> </p>
<p><strong>Location:</strong> Charlotte, NC</p>
<p><strong>Duration:</strong> June 2024 - September 2024</p>
<ul>
<li>Worked on developing and enhancing a web application using Python Flask and Dash frameworks.</li>
<li>Utilized REST API to retrieve and process clinical trials data, leveraging Pandas and NumPy for data manipulation.</li>
<li>Collaborated with the team to create a dynamic and user-friendly interface for data exploration.</li>
</ul>
</section>
<section>
<h2>Academic Experience</h2>
<h3>Undergraduate Learning Assistant</h3>
<p><strong>Course:</strong> <a href="https://web.cs.ucla.edu/classes/fall24/cs35L/">Computer Science 35L - Introduction to Software Construction</a> </p>
<p><strong>Institution:</strong> University of California, Los Angeles (UCLA)</p>
<p><strong>Duration:</strong> September 2024 - Present</p>
<ul>
<li>Taught 2-hour sections each week during the quarter: going over lectures, homework assignments, and software practices for the students' course-project.</li>
<li>Attended weekly pedadogy seminar and completed teaching reflections to learn and improve on teaching techniques, such as using wait time after posing a question, or asking closed questions to check understanding and open questions to facilitate critcial thinking.</li>
<li>Assisted the professor and graduate students in preparing course materials during weekly meetings.</li>
</ul>
</section>
</main>
</body>
</html>