-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
255 lines (210 loc) · 10.2 KB
/
index.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
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
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
<!DOCTYPE HTML>
<!--
Hyperspace by HTML5 UP
html5up.net | @ajlkn
Free for personal and commercial use under the CCA 3.0 license (html5up.net/license)
-->
<html>
<head>
<title>Kamal Chahrour</title>
<meta charset="utf-8" />
<link rel="icon" type="image/png" href="https://icons.iconarchive.com/icons/aha-soft/standard-portfolio/64/Resume-icon.png" />
<meta name="viewport" content="width=device-width, initial-scale=1, user-scalable=no" />
<link rel="stylesheet" href="assets/css/main.css" />
<noscript><link rel="stylesheet" href="assets/css/noscript.css" /></noscript>
</head>
<body class="is-preload">
<!-- Sidebar -->
<section id="sidebar">
<div class="inner">
<nav>
<ul>
<li><a href="#intro">About me</a></li>
<li><a href="#one">Projects</a></li>
<li><a href="#two">Courses</a></li>
<li><a href="#three">Interests</a></li>
<li><a href="#four">Work experience</a></li>
</ul>
</nav>
</div>
</section>
<!-- Wrapper -->
<div id="wrapper">
<!-- Intro -->
<section id="intro" class="wrapper style1 fullscreen fade-up" style="background-color: #8c1637;">
<div class="inner">
<h1>About me</h1>
<p>Hello, I am currently studying Computer Science at Carleton University as a third year CO-OP student. I started out my first year in September of 2019 as a software engineer and have since switch to Computer Science and enjoyed every second of it. I completed my first Internship in the Fall of 2021 as a Software Engineering Intern at the University of Ottawa in the Department of Medicine. I worked on a Virtual Reality Escape Room to be used by students of the department and worked closely with PropelVR as well as my co-workers to produce a 10 puzzle virtual experience to students.
</p>
<p><span class="image right"><img src="https://i.gyazo.com/78f3c4b759ebd31cef1fb323959bb223.png"></span>
I am currently open to positions starting in May of 2022 as a Software Engineering Intern.
</p>
<ul class="actions">
<li><a href="#one" class="button scrolly"><b>see more</b></a></li>
</ul>
</div>
</section>
<!-- One projects-->
<section id="one" class="wrapper style2 spotlights" style="background-color: #afccdc;">
<section>
<!-- put table of skills? -->
<div class="content" >
<div class="inner">
<h2>Projects</h2>
<b><a href="https://github.com/kamalchah/" target="_blank">Medical Device Emulator</a></b>
<ul>
<li>Created a Medical Device Emulator (Alpha-Stim) in QT using C++ in a group of 4 classmates</li>
<li>Used unit testing to test functionality of all core functions in the device’s usage</li>
<li>Organized a visual interface GUI to test the device with 6 functional buttons</li>
<li>Used git and GitHub to facilitate workflow with 4 classmates</li>
<li>Wrote documentation on the device including a use case model as well as sequence diagrams, a state diagram and UML Class</li>
</ul>
<b><a href="https://github.com/kamalchah/connect4" target="_blank">Connect 4</a></b>
<ul>
<li>Built a multiplayer Connect4 website with a fully functional user and game system using HTML, CSS and JavaScript</li>
<li>Designed an API unit testing suite that resulted in finding dozens of bugs which led to a strong foundation for web development</li>
<li>Programmed web routes using RESTful principles to enable a better user experience with no dead-end links using Express’ API handling</li>
<li>Utilized various libraries such as Node.js, socket.io, express and pug to handle web routes, concurrent connections for the game interface and to be able to load pages through a template easily</li>
</ul>
<b><a href="https://github.com/kamalchah/kamalchah.github.io" target="_blank">Personal Website (this website)</a></b>
<ul>
<li>Product of <b><a href="https://carleton.ca/scs/cu-events/build-a-portfolio-website-hackathon/" target="_blank">Web Dev Club Hacktathon at Carleton University (October 2019)</b></a> </li>
<li>Made using simple HTML, CSS and some JS</li>
<li>Simple scroll page with some cool animations</li>
</ul>
<b><a href="https://github.com/kamalchah/redditapi" target="_blank">Reddit API Tkinter Interface</a></b>
<ul>
<li>Uses Python to use PRAW (python reddit API wrapper) </li>
<li>Tkinter library to use as a display to pick from 5 subreddits</li>
<li>Ability to show top/hot/most recent posts in 5 different subreddits</li>
</ul>
<b><a href="https://github.com/kamalchah/minesweeper" target="_blank">Minesweeper</a></b>
<ul>
<li>Minesweeper made in python</li>
<li>Uses basic recursion and functions to display a 9x9 minesweeper grid</li>
<li>Takes input in form of (x,y) and handles bad input</li>
</ul>
</div>
</div>
</section>
</section>
<!-- Two courses-->
<section id="two" class="wrapper style3 fade-up">
<div class="inner">
<h2>Courses I've taken so far</h2>
<div class="features">
<section>
<span class="icon solid major fa-digital-tachograph"></span>
<h3>COMP 3004: A+</h3>
<p>Object-Oriented Software Engineering</p>
</section>
<section>
<span class="icon solid major fa-database"></span>
<h3>COMP 2402: A-</h3>
<p>Abstract Data Types and Algorithms</p>
</section>
<section>
<span class="icon solid major fa-laptop-code"></span>
<h3>COMP 2401: B+</h3>
<p>Introduction to Systems Programming</p>
</section>
<section>
<span class="icon solid major fa-digital-tachograph"></span>
<h3>COMP 2406: A</h3>
<p>Fundamentals of Web Applications</p>
</section>
<section>
<span class="icon solid major fa-digital-tachograph"></span>
<h3>COMP 2404: B</h3>
<p>Introduction to Software Engineering</p>
</section>
<section>
<span class="icon solid major fa-code"></span>
<h3>COMP 1406: A+</h3>
<p>Introduction to programming 2 in java</p>
</section>
<section>
<span class="icon solid major fa-code"></span>
<h3>COMP 1405: A</h3>
<p>Introduction to programming in python</p>
</section>
<section>
<span class="icon solid major fa-infinity"></span>
<h3>COMP 1805: A</h3>
<p>Discrete math</p>
</section>
</div>
</div>
</section>
<!-- Three interests-->
<section id="three" class="wrapper style4 fade-up" style="background-color: #ffd0cc;">
<div class="inner">
<h2>Interests</h2>
<div class="interests">
<p>Since starting my degree, I have loved every second of code that I have been in contact with. It's become one of my favorite hobbies
recently along with just learning new technologies. I also really like playing video games like CS:GO and Rocket League on my free time.
</p>
<p><span class="image right" style="width: 350px;"><img src="https://i.gyazo.com/1e447b756d47f7a0fe50d5b0c5a4f584.jpg"></span>
Before attending Carleton University, I played alot of soccer in high school. It is one of my passions that I enjoy every time I step on the
field. To the right is a photo of me and some teammates celebrating getting 3rd place at OFSAA (Provincial tournament for all high schools in ontario) in 2019, I was the goalkeeper. (I'm in yellow)
</p>
<br><br><br>
</div>
</div>
</section>
<!-- Four work experience -->
<section id="four" class="wrapper style5 fade-up" style="background-color: #5a84b6;">
<div class="inner">
<h2>Work Experience</h2>
<div class="workexp">
<section>
<span class="icon solid major fa-prescription"></span>
<h3>University of Ottawa: September 2021 - December 2021</h3>
<ul>
<li>Developed a Virtual Reality multiplayer escape room in Unity to the specification of the client</li>
<li>Primary developer of 2 of the 10 puzzles by working with team to ensure consistent game workflow</li>
<li>Engineered physics engine to work with a rotating maze that is controllable by players</li>
<li>Synced all physics manipulation by using the Photon engine</li>
<li>Refined lighting techniques to optimize game performance by over 40 frames</li>
</ul>
</section>
<section>
<span class="icon solid major fa-prescription"></span>
<h3>PharmaChoice: June 2019 to September 2019</h3>
<ul>
<li>Filled prescriptions and dosettes for patients </li>
<li>Took shipments of medical drugs and processed into production</li>
<li>Maintained store cleanliness</li>
</ul>
</section>
<section>
<span class="icon solid major fa-apple-alt"></span>
<h3>Food Basics: August 2018 to April 2019</h3>
<ul>
<li>Stock and Face shelves all while maintaining customer satisfaction. </li>
<li>Worked in all departments including and not limited to Diary, grocery and meat.</li>
<li>Maintained store refrigerators and processed store shipments</li>
</ul>
</section>
</div>
</div>
</section>
</div>
<!-- Footer -->
<footer id="footer" class="wrapper style1-alt">
<div class="inner">
<ul class="menu">
<li>© Kamal Chahrour TM. All rights reserved.</li>
</ul>
</div>
</footer>
<!-- Scripts -->
<script src="assets/js/jquery.min.js"></script>
<script src="assets/js/jquery.scrollex.min.js"></script>
<script src="assets/js/jquery.scrolly.min.js"></script>
<script src="assets/js/browser.min.js"></script>
<script src="assets/js/breakpoints.min.js"></script>
<script src="assets/js/util.js"></script>
<script src="assets/js/main.js"></script>
</body>
</html>