-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
114 lines (114 loc) · 5.87 KB
/
index.html
File metadata and controls
114 lines (114 loc) · 5.87 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
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0-beta3/css/all.min.css">
<link rel = "stylesheet" href="css/style_template.css">
<title>index</title>
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Cactus+Classical+Serif&family=Markazi+Text:wght@400..700&family=Merriweather:ital,wght@0,300;0,400;0,700;0,900;1,300;1,400;1,700;1,900&display=swap" rel="stylesheet">
</head>
<body>
<nav>
<p >Mustafa Ahmad Khan</p>
<p><a href = contact.html> Contact Mustafa Khan</a></p>
</nav>
<section class="splash">
<h1 >Mustafa Khan</h1>
<img src="images/IMG_9917.jpg" alt="headshot" width="300">
<p>100 Fox Road Athens, GA 30609 • 404-844-1103 • mak87848@uga.edu</p>
<p>I am eager to work on larger group projects and expand my coding experience to strengthen my skills and build a more
comprehensive resume. By collaborating with others and tackling more substantial coding challenges, I aim to prepare
myself for future internships and job opportunities, showcasing my ability to contribute effectively in professional
environments.</p>
</section>
<hr>
<section>
<h2>Education</h2>
<p>UGA, Expected Graduation: May 2026, Computer Science, 3.9 GPA, Relevant Courses: CS 1302, Discrete Math,
Systems Programming, Data Structures, Computer Theory, Algorithms, Human-Computer Interaction, Linear Algebra</p>
</section>
<hr>
<section class="other">
<section class="honors">
<h2>Honors and Awards</h2>
<dl>
<dt>Morehouse Honors College</dt> <dd>2022-Present</dd>
<dt> <br></dt> <dd> </dd>
<dt>Dean's List</dt> <dd>2022-Present</dd>
<dt> <br></dt> <dd> </dd>
<dt>VEX Robotics Semifinalist</dt> <dd>2021-2022</dd>
<dt> <br></dt> <dd> </dd>
<dt>AP Scholar</dt> <dd>2020-2022</dd>
</dl>
</section>
<section class="skills">
<h2 >Skills</h2>
<ul>
<li>Java</li>
<li>HTML</li>
<li>CSS</li>
<li>C++</li>
<li>Python</li>
<li>UNIX</li>
<li>Unity</li>
</ul>
</section>
<section class="experience">
<h2>Leadership and Experience</h2>
<dl>
<dt> <br></dt> <dd> </dd>
<dt>Telemetry Monitor Technician, <a href = https://www.piedmont.org/locations/piedmont-athens/about target="_blank">
Piedmont Athens</a></dt> <dd>February 2024 - Present</dd>
<dt>Warehouse Crew, Phantom Fireworks</dt><dd>June 2022 - August 2023</dd>
<dt>Lab Technican, Emtech Labs</dt> <dd>September 2021 - May 2022</dd>
<dt>VEX Robotics Team Leader, GSMST</dt> <dd>August 2020 - May 2022</dd>
<dt>Grassroots Referee, Gwinnett Soccer Association</dt> <dd>June 2020 - May 2021</dd>
<dt> <br></dt> <dd> </dd>
</dl>
</section>
</section>
<section>
<h2>Projects</h2>
<div class="three-col">
<div class = "card">
<h3>Shell Program</h3>
<img class = "card img" src="images/shell image.png" alt="shell" width="400">
<ul>
<li>Key Techniques: C, File I/O, Forking, UNIX/LINUX, exec() Functions</li>
<li>Developed simple user interface mimicking a UNIX bash shell to take user inputs and display results</li>
<li>Forked child processes to run exec() functions based off parsed user inputs</li>
<li>Enclosed program in a controlled loop to allow continued usage after initial input</li>
</ul>
</div>
<div class = "card">
<h3>Event Planner GUI</h3>
<img class = "card img" src="images/calendar-color-icon.png" alt="calendar" width="400">
<ul>
<li>Key Techniques: Java, API Usage, JavaFx, Lambda Functionality</li>
<li>Used JavaFx to display a GUI for users to search for an event and its predicted weather for that event</li>
<li>Queried SeatGeek API using user input to obtain a list of events related to the user's search and display them</li>
<li>Used geolocation data provided by SeatGeek to request weather information from Weatherstack API </li>
</ul>
</div>
<div class = "card">
<h3>Local System File Organizer</h3>
<img class = "card img" src="images/folder-1484.png" alt="folder" width="400">
<ul>
<li>Key Techniques: Python, File I/O, API Usage</li>
<li>Created a program that sorted downloaded files not in any folder into prepared folders</li>
<li>Queried the OpenAI API to ask Chat GPT 3.5 to categorize files based on their names</li>
<li>Set up a text-based user interface to automatically create folders and run sorting algorithm</li>
</ul>
</div>
</div>
</section>
<footer>
©
<a href="contact.html">Mustafa Khan</a>
<a href="https://www.linkedin.com/in/mustafa-khan-a681b8251/" target="_blank"><i class="fab fa-linkedin"></i></a>
</footer>
</body>
</html>