-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathexperience.html
More file actions
85 lines (79 loc) · 4.9 KB
/
experience.html
File metadata and controls
85 lines (79 loc) · 4.9 KB
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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Experience | Meheraj Khatri</title>
<link rel="stylesheet" href="style.css">
<link href="https://fonts.googleapis.com/css2?family=Inter:wght@400;600;800&family=Fira+Code:wght@400;500&display=swap" rel="stylesheet">
</head>
<body>
<nav>
<div class="container nav-content">
<a href="index.html" class="logo">MK</a>
<ul class="nav-links">
<li><a href="experience.html" class="active">Experience</a></li>
<li><a href="projects.html">Projects</a></li>
<li><a href="education.html">Education</a></li>
</ul>
</div>
</nav>
<main class="container" style="padding-top: 2rem;">
<section>
<h2 class="section-title">// RESEARCH_EXPERIENCES</h2>
<div class="card">
<span class="date-tag">JUN 2025 – JULY 2025</span>
<h3>Undergraduate Research Fellow | SURE 2025</h3>
<p style="color: var(--primary); font-family: 'Fira Code'; margin-bottom: 1rem;">Kent State University</p>
<ul>
<li>Engineered a Python data pipeline using Pandas to automate the integration of four disparate datasets (ACM, IEEE, Springer, WoS).</li>
<li>Performed data cleaning, deduplication, and row validation to unify 4 files into 1 structured repository for CS and Marketing.</li>
<li>Applied Kitchenham and Booth SLR frameworks to establish a rigorous research protocol, ensuring methodological integrity in the synthesis of academic literature.</li>
<li>Screened 60+ peer-reviewed papers following a preliminary analysis of 40+ publications to optimize keyword extraction and identify research gaps in AI's impact on pedagogy.</li>
</ul>
</div>
</section>
<section>
<h2 class="section-title">// PROFESSIONAL_EXPERIENCES</h2>
<div class="card">
<span class="date-tag">AUG 2025 – PRESENT</span>
<h3>Federated Desktop Support Specialist</h3>
<p style="color: var(--primary); font-family: 'Fira Code'; margin-bottom: 1rem;">SRWC Technology, KSU</p>
<ul>
<li>Manage all IT support for staff, serving as the primary technical contact resolving hardware, software, and network issues across the facility.</li>
<li>Provide specialized support for critical departmental systems: POS terminals, Fusion, and WINPAK access control.</li>
<li>Deployed and maintained computer systems, ensuring compliance with university IT security standards.</li>
</ul>
</div>
<div class="card">
<span class="date-tag">APR 2025 – PRESENT</span>
<h3>Facility Supervisor</h3>
<p style="color: var(--primary); font-family: 'Fira Code'; margin-bottom: 1rem;">SRWC Operations & Guest Services, KSU</p>
<ul>
<li>Oversaw all building operations and served as the primary decision-maker for incidents in a 150k+ sq. ft. facility.</li>
<li>Supervised and guided a team of student employees to ensure strict adherence to operational and safety protocols.</li>
<li>Provided frontline troubleshooting for all facility malfunctions, including technology and system issues (access control, POS).</li>
</ul>
</div>
<div class="card">
<span class="date-tag">JULY 2024 – APRIL 2025</span>
<h3>Operations Assistant</h3>
<p style="color: var(--primary); font-family: 'Fira Code'; margin-bottom: 1rem;">SRWC Operations & Guest Services, KSU</p>
<ul>
<li>Played a key role in maintaining a safe and welcoming environment at the Student Recreation and Wellness Center (SRWC).</li>
<li>Gained foundational experience by rotating through distinct positions, including Welcome Desk, Equipment Issue, and Fitness Floor.</li>
<li>Provided high-quality customer service and enforced facility policies to ensure smooth operations.</li>
</ul>
</div>
</section>
<section id="contact" class="contact-footer">
<h2 class="section-title">// CONNECT</h2>
<div class="contact-links">
<a href="mailto:[email protected]" class="btn">Email: [email protected]</a>
<a href="https://linkedin.com/in/meherajkhatri/" target="_blank" class="btn">LinkedIn: /meherajkhatri</a>
<a href="https://github.com/meherajkhatri" target="_blank" class="btn">GitHub: @meherajkhatri</a>
</div>
</section>
</main>
<footer>© 2026 Meheraj Khatri | All Rights Reserved</footer>
</body>
</html>