-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
922 lines (721 loc) · 47.2 KB
/
index.html
File metadata and controls
922 lines (721 loc) · 47.2 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
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
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
<!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="assets/css/styles.css">
<!-- =====BOX ICONS===== -->
<link href='https://cdn.jsdelivr.net/npm/boxicons@2.0.5/css/boxicons.min.css' rel='stylesheet'>
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/css/bootstrap.min.css" integrity="sha384-ggOyR0iXCbMQv3Xipma34MD+dH/1fQ784/j6cY/iJTQUOhcWr7x9JvoRxT2MZw1T" crossorigin="anonymous">
<title>Sparsh Pai</title>
<link rel="shortcut icon" type="image/ico" href="assets\img\favicon.ico" />
</head>
<body>
<!--===== HEADER =====-->
<header class="l-header">
<nav class="nav bd-grid">
<div>
<a href="#" class="nav__logo">Sparsh Pai</a>
</div>
<div class="nav__menu" id="nav-menu">
<dl class="nav__list">
<dl class="nav__item"><a href="#home" class="nav__link active">Home</a></dl>
<dl class="nav__item"><a href="#about" class="nav__link">About</a></dl>
<dl class="nav__item"><a href="#skills" class="nav__link">Skills</a></dl>
<dl class="nav__item"><a href="#internships" class="nav__link">Internships</a></dl>
<dl class="nav__item"><a href="#projects" class="nav__link">Projects</a></dl>
<dl class="nav__item"><a href="#accomplishments" class="nav__link">Awards</a></dl>
<dl class="nav__item"><a href="#ecs" class="nav__link">Leadership & Activities</a></dl>
</dl>
</div>
<div class="nav__toggle" id="nav-toggle">
<i class='bx bx-menu'></i>
</div>
</nav>
</header>
<main class="l-main">
<!--===== HOME =====-->
<section class="home bd-grid" id="home">
<div class="home__data">
<h1 class="home__title">Hi,<br>I'm <span class="home__title-color">Sparsh.</span></h1>
<h2 class="uni_name">Electrical & Computer Engineering Student</h2>
<h2 class="uni_name">@ University of Waterloo</h2>
<br />
<br />
<a href="assets\resume\Sparsh Pai Resume.pdf" class="button">Open Resume</a>
</div>
<div class="home__social">
<a href="https://www.linkedin.com/in/sparshpai/" class="home__social-icon" target=”_blank”><i class='bx bxl-linkedin'></i></a>
<a href="https://github.com/Sparsh2234" class="home__social-icon" target=”_blank”><i class='bx bxl-github'></i></a>
</div>
<div class="home__img">
<!--img src="assets/img/perfil.png" alt=""-->
</div>
</section>
<!--===== ABOUT =====-->
<section class="about section " id="about">
<h2 class="section-title">About</h2>
<div class="about__container bd-grid">
<div class="about__img">
<img src="assets/img/0.jpg" alt="" />
</div>
<div>
<h2 class="about__subtitle">Engineering + Leadership.</h2>
<p class="about__text">I am a second-year ECE student at the University of Waterloo. I enjoy exploring the fields of both hardware and software engineering. I'm currently interning
at <a href="https://www.siemens.com" target=”_blank”><strong>Siemens</strong></a> as a Software Engineer. I've also held 2 other internships. Read more about this here: <a href="#internships"><strong>Internships</strong></a>
<br /> <br />My love for technology has driven me to compete in large scale hackathons and continuously push my boundaries. You can read more about my awards and hackathon experiences here: <a href="#accomplishments"><strong>Awards & Projects</strong></a> <br /><br />In terms
of leadership, I've served as the president for a team that competes at the national level and founded my own app development team at Waterloo. You can read more about that here: <a href="#ecs"><strong>Leadership & Activities</strong></a>
</p>
</div>
</div>
</section>
<!--===== SOFTWARE SKILLS =====-->
<section class="skills section" id="skills">
<h2 class="section-title">Software Skills</h2>
<div class="skills__container bd-grid">
<div>
<h2 class="skills__general_subtitle">General Interests</h2>
<div class="skills__general bd-grid">
<div class="skills__data">
<div class="skills__names">
<i class='bx bxl-apple skills__icon'></i>
<span class="skills__name">iOS Mobile Development</span>
</div>
<div class="skills__bar skills__html">
</div>
</div>
<div class="skills__data">
<div class="skills__names">
<i class='bx bxl-android skills__icon'></i>
<span class="skills__name">Android Mobile Development</span>
</div>
<div class="skills__bar skills__css">
</div>
</div>
<div class="skills__data">
<div class="skills__names">
<i class='bx bxs-brain skills__icon'></i>
<span class="skills__name">Artificial Intelligence</span>
</div>
<div class="skills__bar skills__js">
</div>
</div>
<div class="skills__data">
<div class="skills__names">
<i class='bx bxl-html5 skills__icon'></i>
<span class="skills__name">Web Development</span>
</div>
<div class="skills__bar skills__ux">
</div>
</div>
</div>
</div>
<div>
<h2 class="skills__subtitle">Languages/Frameworks</h2>
<div class="skills__specific bd-grid">
<div class="skills__traits">
<div class="skills__names">
<span class="skills__name">Swift</span>
</div>
</div>
<div class="skills__traits">
<div class="skills__names">
<span class="skills__name">Java</span>
</div>
</div>
<div class="skills__traits">
<div class="skills__names">
<span class="skills__name">Python</span>
</div>
</div>
<div class="skills__traits">
<div class="skills__names">
<span class="skills__name">C++</span>
</div>
</div>
<div class="skills__traits">
<div class="skills__names">
<span class="skills__name">SQL</span>
</div>
</div>
<div class="skills__traits">
<div class="skills__names">
<span class="skills__name">SQLite DB</span>
</div>
</div>
<div class="skills__traits">
<div class="skills__names">
<span class="skills__name">Git</span>
</div>
</div>
<div class="skills__traits">
<div class="skills__names">
<span class="skills__name">TensorFlow</span>
</div>
</div>
<div class="skills__traits">
<div class="skills__names">
<span class="skills__name">Numpy</span>
</div>
</div>
<div class="skills__traits">
<div class="skills__names">
<span class="skills__name">Pandas</span>
</div>
</div>
<div class="skills__traits">
<div class="skills__names">
<span class="skills__name">Matplotlib</span>
</div>
</div>
<div class="skills__traits">
<div class="skills__names">
<span class="skills__name">Firebase</span>
</div>
</div>
<div class="skills__traits">
<div class="skills__names">
<span class="skills__name">AWS Lambda</span>
</div>
</div>
</div>
</div>
</div>
</section>
<!--===== HARDWARE SKILLS =====-->
<section class="skills section" id="skills">
<h2 class="section-title">Hardware Skills</h2>
<div class="skills__container bd-grid">
<div>
<h2 class="skills__general_subtitle">General Skills</h2>
<div class="skills__general bd-grid">
<div class="skills__data">
<div class="skills__names">
<i class='bx bx-analyse skills__icon'></i>
<span class="skills__name">AC/DC Circuit Analysis</span>
</div>
<div class="skills__bar skills__html">
</div>
</div>
<div class="skills__data">
<div class="skills__names">
<i class='bx bxs-chip skills__icon'></i>
<span class="skills__name">Circuit Design</span>
</div>
<div class="skills__bar skills__css">
</div>
</div>
<div class="skills__data">
<div class="skills__names">
<i class='bx bx-network-chart skills__icon'></i>
<span class="skills__name">Simulation Creation & Component Design</span>
</div>
<div class="skills__bar skills__js">
</div>
</div>
<div class="skills__data">
<div class="skills__names">
<i class='bx bx-time skills__icon'></i>
<span class="skills__name">Timing Analysis</span>
</div>
<div class="skills__bar skills__ux">
</div>
</div>
</div>
</div>
<div>
<h2 class="skills__subtitle">Languages/Technologies</h2>
<div class="skills__specific bd-grid">
<div class="skills__traits">
<div class="skills__names">
<span class="skills__name">VHDL</span>
</div>
</div>
<div class="skills__traits">
<div class="skills__names">
<span class="skills__name">Quartus</span>
</div>
</div>
<div class="skills__traits">
<div class="skills__names">
<span class="skills__name">LTSpice</span>
</div>
</div>
<div class="skills__traits">
<div class="skills__names">
<span class="skills__name">Arduino</span>
</div>
</div>
</div>
</div>
</div>
</section>
<!--===== INTERNSHIPS =====-->
<section class="work section" id="internships">
<h2 class="section-title">Internships</h2>
<div class="internship__container intern-grid">
<div class="skills__traits">
<div class="skills__names">
<span class="skills__name"><h3 class="intern__subtitle">Software Engineer @ <a href="https://www.siemens.com/" target=”_blank” style="color: rgb(3, 157, 204)">Siemens</a></h3>
<div style="position: absolute; top: 0; right: 0; width: 400px; text-align:right; margin-right: 10px; margin-top: 10px; margin-bottom: 20px;">
<h7>May 2021 - Aug 2021</h7>
</div>
<p class="about__text">
Currently working with leading edge medical technologies.
<br>
<br>
</p>
</span>
</div>
</div>
<div class="skills__traits">
<div class="skills__names">
<span class="skills__name"><h3 class="intern__subtitle">iOS Software Engineer @ <a href="https://www.dimensional.me" target=”_blank” style="color: rgb(3, 157, 204)">Dimensional</a></h3>
<div style="position: absolute; top: 0; right: 0; width: 400px; text-align:right; margin-right: 10px; margin-top: 10px; margin-bottom: 20px;">
<h7>Sept 2020 - Dec 2020</h7>
</div>
<p class="about__text">
Worked on the front-end implementation of a psychometrics engine.
<p style="color:teal">+ Languages/Technologies: Xcode, Swift, Git, Firebase
<br>
+ Operating System: macOS (Unix)
</p>
<ul>
<li>Implemented 10+ user-facing features from concept through deployment and configured several intricate views</li>
<li>Allowed for upwards of 50% increase in information visibility through custom scroll-view deployment</li>
<li>Developed and refactored major code components to allow for modularity and extensible design</li>
<li>Allowed for data persistence using Firebase backend and local data storage</li>
</ul>
<br>
</p>
</span>
</div>
</div>
<div class="skills__traits">
<div class="skills__names">
<span class="skills__name"><h3 class="intern__subtitle">Full Stack Android Developer @ <a href="#internships" style="color: rgb(3, 157, 204)">Revyoome</a></h3>
<div style="position: absolute; top: 0; right: 0; width: 400px; text-align:right; margin-right: 10px; margin-top: 10px;">
<h7>Jan 2020 - Apr 2020</h7>
</div>
<p class="about__text">
Worked on developing a cross-over Android app between Yelp and Google Maps.
<p style="color:teal">+ Languages/Technologies: Android Studio, Java, Git, SQL, AWS Lambda, Node.js
<br>
+ Operating System: Ubuntu (Linux)
</p>
<ul>
<li>Integrated Google Places TextSearch API to enable proximity-based search</li>
<li>Configured AWS Lambda functions using Node.js and queried MySQL database to retrieve information</li>
<li>Allowed for autocomplete with ambiguous search queries leading to 250% decrease in user search time </li>
<li>Parsed JSON location data to facilitate map marker clustering - allowed for visibility of 500% more locations on average</li>
<li>Fixed 25+ deprecation issues, configured several UI views, and took code base from non-functional to functional</li>
</ul>
</p>
</span>
</div>
</div>
</div>
</section>
<!--===== Projects =====-->
<section class="award section" id="projects">
<h2 class="section-title">Projects</h2>
<div class="general__container projects-grid">
<h2 class="projects_subtitle">Software Projects</h2>
<div onclick="location.href = 'https://devpost.com/software/infantxpert-0tjhmg';" id="myButton" class="skills__traits__click">
<div class="skills__names">
<span class="skills__name"><i class='bx bx-link-external skills__icon'></i><strong>InfantXpert</strong>
<p class="about__text">
<br>
The project allows for illness detection in infants using artificial intelligence. A secure doctor-patient model was put into place using encryption and website development.
<ul>
<li>Led development of a deep learning neural network</li>
<li>Website with SHA256 encryption</li>
<li>PHP Server to fetch data</li>
<li>Achieved ~ 90% training accuracy</li>
</ul>
</p>
</span>
</div>
</div>
<div onclick="location.href = 'https://github.com/Sparsh2234/YorkUHacks#yorkuhacks_2018';" id="myButton" class="skills__traits__click">
<div class="skills__names">
<span class="skills__name"><i class='bx bx-link-external skills__icon'></i><strong>FocusFinder</strong>
<p class="about__text">
<br>
Focused on helping learners with attention deficit/hyperactivity disorder (ADHD) take control of their education in order to tackle the United Nations 4th Sustainable Development Goal. The project was made so that it can be used and accessed by anyone to ensure they are receiving high quality education regardless of their background, geographical location, or socioeconomic status.
<ul>
<li>Created a website to help kids with learning disabilities grasp concepts</li>
</ul>
</p>
</span>
</div>
</div>
<div onclick="location.href = 'https://www.youtube.com/watch?v=62MHtRuwabY';" id="myButton" class="skills__traits__click">
<div class="skills__names">
<span class="skills__name"><i class='bx bx-link-external skills__icon'></i><strong>MedLife</strong>
<p class="about__text">
<br>
The purpose of this project was to detect infections in the ear using computer vision with the objective of decreasing hospital and clinic wait times.
<ul>
<li>Led development of an Android application to fetch user data</li>
<li>Assisted in OpenCV colour detection implementation to find infections in the ear</li>
</ul>
</p>
</span>
</div>
</div>
<div onclick="location.href = 'https://devpost.com/software/healthmod';" id="myButton" class="skills__traits__click">
<div class="skills__names">
<span class="skills__name"><i class='bx bx-link-external skills__icon'></i><strong>HealthMod</strong>
<p class="about__text">
<br>
The project was made to tackle one of the leading causes of death in men and women. In a 24-hour time frame, an application that uses machine learning software provided by AWS to predict a user's susceptibility to heart disease was created.
<ul>
<li>Developed Android application to fetch user data</li>
<li>Led development of a machine learning algorithm to process data</li>
<li>Custom MySQL server</li>
<li>Python script to convert fetched data into a .csv file</li>
</ul>
</p>
</span>
</div>
</div>
<!-- <div class="skills__traits">
<div class="skills__names">
<span class="skills__name"><strong>Flash Chat</strong>
<p class="about__text">
iOS application that allows users to chat.
<br>
<br>
- Firebase backend
<br>
- Swift programming (Delegates and Protocols, reusable components, UI/UX using auto-layout, etc.)
<br>
</p>
</span>
</div>
</div> -->
<div onclick="location.href = 'https://github.com/Sparsh2234/DataGrapher';" id="myButton" class="skills__traits__click">
<div class="skills__names">
<span class="skills__name"><i class='bx bx-link-external skills__icon'></i><strong>Data Graphing Software</strong>
<p class="about__text">
<br>
Allows users to plot data and receive insights.
<ul>
<li>Code generates frequency, cumulative frequency, and relative frequency graphs</li>
<li>Provides additional information (Standard Deviation, Z-score, Measures of Central Tendency, etc.)</li>
<li>Created using Java programming & GUI creation</li>
</ul>
</p>
</span>
</div>
</div>
<div class="skills__traits">
<div class="skills__names">
<span class="skills__name"><strong>da Vinci XI Surgical System Research & Development</strong>
<p class="about__text">
<br>
National Medical Innovations Competition Submission (HOSA).
<ul>
<li>Researched the da Vinci XI surgical system & presented possible improvements</li>
<li>Created a simple robotic replica</li>
<li>Competed Canada-wide</li>
</ul>
</p>
</span>
</div>
</div>
<h2 class="projects_subtitle_hardware">Hardware Projects</h2>
<div class="skills__traits">
<div class="skills__names">
<span class="skills__name"><strong>Home Energy Monitor</strong>
<p class="about__text">
<br>
Languages/Technologies: VHDL, Quartus
<ul>
<li>Created: Multiplexers, 1-bit comparators, 4-bit magnitude comparator</li>
<li>Used: Boolean logic, Structural/Dataflow VHDL styles</li>
<li>Programmed an Energy Monitor Control to regulate inputs from other components</li>
<li>Integrated pre-made components & included functional simulations</li>
</ul>
</p>
</span>
</div>
</div>
<div class="skills__traits">
<div class="skills__names">
<span class="skills__name"><strong>Gate Comparator</strong>
<p class="about__text">
<br>
Languages/Technologies: Quartus (Schematic Design)
<ul>
<li>Designed an IC to compare 2 Boolean values using various gates (AND, OR, XOR, etc.)</li>
<li>Included a polarity controller to dictate active high/low states</li>
<li>Used functional simulations to analyze results</li>
</ul>
</p>
</span>
</div>
</div>
<div class="skills__traits">
<div class="skills__names">
<span class="skills__name"><strong>Automated Door Locking System</strong>
<ul>
<li>Components: Arduino, Ultrasonic Sensor, L.C.D Display, Servo Motor</li>
<li>Used components to unlock a makeshift door when an object is within 3 inches of proximity</li>
</ul>
</span>
</div>
</div>
<div class="skills__traits">
<div class="skills__names">
<span class="skills__name"><strong>Counter Circuit</strong>
<ul>
<li>Components: Logic Gates (7486, 7408, etc.), Breadboard, 14-Segment L.E.D Display</li>
<li>Schematic used as basis for circuit design</li>
</ul>
</span>
</div>
</section>
<!--===== AWARDS =====-->
<section class="award section" id="accomplishments">
<h2 class="section-title">Awards</h2>
<div class="general__container awards-grid">
<h2 class="skills__general_subtitle">Major Technical Awards</h2>
<div onclick="location.href = 'https://devpost.com/software/infantxpert-0tjhmg';" id="myButton" class="skills__traits__click">
<div class="skills__names">
<i class='bx bx-link-external skills__icon'></i>
<span class="skills__name">McMaster Delta Hacks VI First Place Overall (250+ Competitors)
<div class="awards__bar skills__html">
</div>
</div>
</div>
<div onclick="location.href = 'https://github.com/Sparsh2234/YorkUHacks#yorkuhacks_2018';" id="myButton" class="skills__traits__click">
<div class="skills__names">
<i class='bx bx-link-external skills__icon'></i>
<span class="skills__name">York U Hacks 50:50 Challenge First Place (60+ Competitors)</span>
<div class="awards__bar skills__html">
</div>
</div>
</div>
<div onclick="location.href = 'https://www.youtube.com/watch?v=62MHtRuwabY';" id="myButton" class="skills__traits__click">
<div class="skills__names">
<i class='bx bx-link-external skills__icon'></i>
<span class="skills__name">HOSA Medical Innovations National Qualifier (250+ Competitors)</span>
<div class="awards__bar skills__html">
</div>
</div>
</div>
<div class="skills__traits">
<div class="skills__names">
<i class='bx bx-unlink skills__icon'></i>
<span class="skills__name">Waterloo Engineering Competition 3rd Place Overall (30+ Competitors)</span>
<div class="awards__bar skills__html">
</div>
</div>
</div>
<br>
<h2 class="skills__general_subtitle">Robotics Team Awards</h2>
<div class="skills__traits">
<div class="skills__names">
<i class='bx bx-unlink skills__icon'></i>
<span class="skills__name">(ONT District - Ryerson University Event) District Engineering Inspiration Award
</span>
<div class="awards__bar skills__html">
</div>
</div>
</div>
<div class="skills__traits">
<div class="skills__names">
<i class='bx bx-unlink skills__icon'></i>
<span class="skills__name">(ONT District - Windsor Essex Great Lakes Event) District Engineering Inspiration Award
</span>
<div class="awards__bar skills__html">
</div>
</div>
</div>
<div class="skills__traits">
<div class="skills__names">
<i class='bx bx-unlink skills__icon'></i>
<span class="skills__name"> FRC Curie Division, Championship Subdivision Finalist
</span>
<div class="awards__bar skills__html">
</div>
</div>
</div>
<div class="skills__traits">
<div class="skills__names">
<i class='bx bx-unlink skills__icon'></i>
<span class="skills__name"> FIRST Ontario Provincial Championship, Regional Chairman’s Award
</span>
<div class="awards__bar skills__html">
</div>
</div>
</div>
<br>
<h2 class="skills__general_subtitle">Other Awards</h2>
<div class="skills__traits">
<div class="skills__names">
<i class='bx bx-unlink skills__icon'></i>
<span class="skills__name"> MCSC (Mississauga Central Soccer Club) Team MVP
</span>
<div class="awards__bar skills__html">
</div>
</div>
</div>
<div class="skills__traits">
<div class="skills__names">
<i class='bx bx-unlink skills__icon'></i>
<span class="skills__name"> Grade 11 Computer Science Award
</span>
<div class="awards__bar skills__html">
</div>
</div>
</div>
<div class="skills__traits">
<div class="skills__names">
<i class='bx bx-unlink skills__icon'></i>
<span class="skills__name"> Junior Badminton Team Highest Academic Average Award
</span>
<div class="awards__bar skills__html">
</div>
</div>
</div>
<div class="skills__traits">
<div class="skills__names">
<i class='bx bx-unlink skills__icon'></i>
<span class="skills__name"> HOSA (Health Occupation Students of America) Chapter Outstanding Member Award
</span>
<div class="awards__bar skills__html">
</div>
</div>
</div>
<div class="skills__traits">
<div class="skills__names">
<i class='bx bx-unlink skills__icon'></i>
<span class="skills__name"> Mathematics Award
</span>
<div class="awards__bar skills__html">
</div>
</div>
</div>
<div class="skills__traits">
<div class="skills__names">
<i class='bx bx-unlink skills__icon'></i>
<span class="skills__name"> Science Award
</span>
<div class="awards__bar skills__html">
</div>
</div>
</div>
</div>
</section>
<!--===== EC's =====-->
<section class="ecs section" id="ecs">
<h2 class="section-title">Leadership & Activities</h2>
<div class="general__container ecs-grid">
<div class="ecs__box">
<div class="skills__names">
<span class="skills__name"><strong>Waterloo App Development Team (Develoopers) Co-Founder</strong>
<ul>
<li>Managed a group of 30+ students</li>
<li>Created a club as a first-year student focused on developing Android and iOS apps</li>
</ul>
</div>
</div>
<div class="ecs__box">
<div class="skills__names">
<span class="skills__name"><strong>HOSA (Health Occupations Students of America) Chapter President</strong>
<ul>
<li>Increased National qualifications by 250% from the previous year</li>
<li>Overlooked team budget and monthly expenses ($2000+)</li>
<li>Ensured harmonization of the executive board in terms of scheduled events and work timelines</li>
<li>Led and managed a group of 30+ students</li>
</ul>
</span>
</div>
</div>
<div class="ecs__box">
<div class="skills__names">
<span class="skills__name"><strong>Student Ambassadors Head Executive Council</strong>
<ul>
<li>Planned and managed events for 400+ students</li>
<li>Led a team of 40+ members</li>
</ul>
</span>
</div>
</div>
<div class="ecs__box">
<div class="skills__names">
<span class="skills__name"><strong>Waterloo Biomechatronics Pressure Sensor Team</strong>
<ul>
<li>Assited in the development of a wheel-chair system that can detect abnormalities in posture</li>
</ul>
</span>
</div>
</div>
<div class="ecs__box">
<div class="skills__names">
<span class="skills__name"><b>Robotics Senior Design Team</b>
<ul>
<li>Created 3D models of robotic parts</li>
<li>Worked alongside engineers and mentors</li>
<li>Played a key role on the senior team as a junior student</li>
</ul>
</span>
</div>
</div>
<div class="ecs__box">
<div class="skills__names">
<span class="skills__name"><strong>Design Team 3D Design and Architectural Design Mentor</strong>
<ul>
<li>Taught AutoCAD and Revit design to 20+ students</li>
<li>Assisted students in creating their own side projects</li>
</ul>
</span>
</div>
</div>
<div class="ecs__box">
<div class="skills__names">
<span class="skills__name">LINK Crew Leader</span>
</div>
</div>
<div class="ecs__box">
<div class="skills__names">
<span class="skills__name">Track and Field Team</span>
</div>
</div>
<div class="ecs__box">
<div class="skills__names">
<span class="skills__name">Chess Team</span>
</div>
</div>
<div class="ecs__box">
<div class="skills__names">
<span class="skills__name">Badminton Team</span>
</div>
</div>
<div class="ecs__box">
<div class="skills__names">
<span class="skills__name">Amnesty International Mississauga Youth Ambassador</span>
</div>
</div>
</section>
<!--===== FOOTER =====-->
<footer class="footer">
<p class="footer__title">Feel free to reach out!</p>
<h5>s4pai@uwaterloo.ca</h5>
<h5>(647) 915-9227</h5>
<div class="footer__social">
</div>
<p></p>
</footer>
<!--===== SCROLL REVEAL =====-->
<script src="https://unpkg.com/scrollreveal"></script>
<!--===== MAIN JS =====-->
<script src="assets/js/main.js"></script>
<script src="https://code.jquery.com/jquery-3.3.1.slim.min.js" integrity="sha384-q8i/X+965DzO0rT7abK41JStQIAqVgRVzpbzo5smXKp4YfRvH+8abtTE1Pi6jizo" crossorigin="anonymous"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.14.7/umd/popper.min.js" integrity="sha384-UO2eT0CpHqdSJQ6hJty5KVphtPhzWj9WO1clHTMGa3JDZwrnQq4sF86dIHNDz0W1" crossorigin="anonymous"></script>
<script src="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/js/bootstrap.min.js" integrity="sha384-JjSmVgyd0p3pXB1rRibZUAYoIIy6OrQ6VrjIEaFf/nJGzIxFDsf4x0xIM+B07jRM" crossorigin="anonymous"></script>
</body>
</html>