forked from ymorsi7/ymorsi7.github.io
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
1051 lines (887 loc) · 33.7 KB
/
index.html
File metadata and controls
1051 lines (887 loc) · 33.7 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
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!DOCTYPE html>
<html style="position:relative;">
<head>
<title>Yusuf Morsi</title>
<!-- css files -->
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/font-awesome/4.6.3/css/font-awesome.min.css">
<link rel="stylesheet" type="text/css" href="https://cdnjs.cloudflare.com/ajax/libs/bulma/0.3.1/css/bulma.min.css">
<link rel="stylesheet" type="text/css" href="./docs/css/title2.css">
<link rel="stylesheet" type="text/css" href="./docs/css/popup.css">
<link rel="stylesheet" type="text/css" href="./docs/css/main1.css">
<link rel="stylesheet" type="text/css" href="docs\css\scrollfade.css">
<script src="docs\js\scrollfade.js"></script>
<link rel="stylesheet" href="./docs/css/bootstrap.min.css" />
<link rel="stylesheet" href="./docs/css/font-awesome.min.css" />
<link rel="stylesheet" href="./docs/css/magnific-popup.css" />
<link rel="stylesheet" href="./docs/css/slicknav.min.css" />
<link rel="stylesheet" href="./docs/css/owl.carousel.min.css" />
<link rel="stylesheet" type="text/css" href="./docs/css/stylep.css">
<link rel="stylesheet" type="text/css" href="./docs/css/styles.css">
<!-- Main Stylesheets -->
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.7.1/jquery.min.js"></script>
<script src="https://www.google.com/jsapi"></script>
<link rel="icon" type="image/x-icon" href="./docs/assets/img/profile.png">
<meta name="author" content="Yusuf Morsi">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<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=Syncopate&display=swap" rel="stylesheet">
<link href="https://fonts.googleapis.com/css2?family=Roboto+Mono:wght@300&display=swap" rel="stylesheet">
<meta property="og:image" content="./docs/assets/img/sf.jpeg" />
</head>
<body>
<br>
<!-- Navbar -->
<nav class="nav container void-background">
<!-- This "nav-menu" is hidden on mobile -->
<!-- Add the modifier "is-active" to display it on mobile -->
<div class="nav-left">
<a href="./docs/assets/files/resume.pdf" class="nav-item" style="color:#1B2D55" target="_blank">
<span class="icon">
<i class="fa fa-file"></i>
</span>
</a>
<a href="https://www.linkedin.com/in/yusufmorsi/" class="nav-item" style="color:#1B2D55" target="_blank">
<span class="icon">
<i class="fa fa-linkedin"></i>
</span>
</a>
<a href="https://www.github.com/ymorsi7" class="nav-item" style="color:#1B2D55" target="_blank">
<span class="icon">
<i class="fa fa-github"></i>
</span>
</a>
</div>
<div class="nav-right nav-menu">
<a class="nav-item" href="#about" style="color:#1B2D55; font-size:140%;">About</a>
<a class="nav-item" href="#projects" style="color:#1B2D55; font-size:140%;">Projects</a>
</div>
<!-- This "nav-toggle" hamburger menu is only visible on mobile -->
<!-- You need JavaScript to toggle the "is-active" class on "nav-menu" -->
<span class="nav-toggle">
<span></span>
<span></span>
<span></span>
</span>
</nav>
<!-- Desktop Title -->
<div id="content-desktop">
<div class="row1" style="padding-bottom:-10px;">
<div class="column2">
<section class="section section-1">
<div class="container has-text-centered">
<img class="avatar" src="./docs/assets/img/profile.png">
</div>
</div>
</section>
<div class="column25">
<div id="container">
<span id="text1"></span>
<span id="text2"></span>
</div>
<svg id="filters">
<defs>
<filter id="threshold">
<!-- Basically just a threshold effect - pixels with a high enough opacity are set to full opacity, and all other pixels are set to completely transparent. -->
<feColorMatrix in="SourceGraphic" type="matrix" values="1 0 0 0 0
0 1 0 0 0
0 0 1 0 0
0 0 0 255 -140" />
</filter>
</defs>
</svg>
</div>
</div>
<div class="sticky" id="stick" style="color:#1B2D55">
<center>ML Student + Researcher @ UCSD</center>
</div><br>
</div>
<!-- TITLE END-->
<!-- MOBILE TITLE-->
<div id="content-mobile">
<section class="section section-1">
<div class="container has-text-centered">
<img class="avatar" src="./docs/assets/img/profile.PNG">
</div>
<div class="container"></br>
<h1 style="font-size: 300%">
<center style="color:#1B2D55">Yusuf Morsi</center>
</h1>
</div>
</section>
</div>
<style>
#content-desktop {
display: block;
}
#content-mobile {
display: none;
}
@media screen and (max-width: 768px) {
#content-desktop {
display: none;
}
#content-mobile {
display: block;
}
}
</style>
</head>
<!-- MOBILE POPUP-->
<style media="screen">
*,
*:before,
*:after {
padding: 0;
margin: 0;
box-sizing: border-box;
}
.popupM {
background-color: #ffffff;
width: 90%;
padding: 30px 40px;
position: absolute;
transform: translate(-50%, -50%);
left: 50%;
top: 50%;
border-radius: 8px;
font-family: "Poppins", sans-serif;
display: none;
text-align: center;
z-index: 1 !important;
}
.popupM button {
display: block;
margin: 0 0 20px auto;
background-color: transparent;
font-size: 30px;
color: #ffffff;
background: #03549a;
border-radius: 100%;
width: 40px;
height: 40px;
border: none;
outline: none;
cursor: pointer;
}
.popupM h2 {
margin-top: -20px;
}
.popupM p {
font-size: 14px;
text-align: justify;
margin: 20px 0;
line-height: 25px;
}
a.M {
display: block;
width: 150px;
position: relative;
margin: 10px auto;
text-align: center;
background-color: #03549a;
border-radius: 20px;
color: #ffffff;
text-decoration: none;
padding: 8px 0;
}
</style>
<div id="content-mobile">
<div class="popupM" id="content-mobile" style="position: fixed;">
<button id="close">×</button>
<h2 style="color:#1B2D55" ;>Note:</h2>
<p style="color: black;">
Visit this site on a computer for the best user experience.
</p>
</div>
</div>
<script type="text/javascript">
window.addEventListener("load", function () {
setTimeout(
function open(event) {
document.querySelector(".popupM").style.display = "block";
},
1
)
});
document.querySelector("#close").addEventListener("click", function () {
document.querySelector(".popupM").style.display = "none";
});
</script>
<!-- MOBILE POPUP END-->
<!-- About -->
<section class="section section-2">
<div class="container">
<div class="has-text-centered">
<h3 class="title is-3">Bio</h3>
</div>
<div class="columns is-multiline is-desktop">
<p class="intro1">
I'm Yusuf, a second-year <b style="color:#aad0f8;">electrical engineering: machine learning</b>
undergraduate and researcher at <b style="color:#aad0f8;"> UC San Diego</b> minoring in <b
style="color:#aad0f8;">mathematics</b>.
If you wish to contact me, please
feel free to email me at <a href="mailto:ymorsi@ucsd.edu" style="color:white;">ymorsi@ucsd.edu</a>
</p>
</div>
</div>
</section>
<!-- Projects -->
<section id="projects" class="section section-2-5">
<div class="inner">
<div class="container">
<div class="has-text-centered">
<h3 class="title is-3" style="margin-bottom: -35px;">Projects</h3>
</div>
</div>
<div class="portfolio-2-section" id="content-desktop">
<ul class="portfolio-filter pf-2 controls">
<center>
<li class="control" data-filter="all" style="color: white;font-size: 110%;">All</li>
<li class="control" data-filter=".notable" style="color:white;font-size: 110%;">Notable</li>
<li class="control" data-filter=".ml" style="color:white;font-size: 110%;">Machine Learning</li>
</center>
<center>
<li class="control" data-filter=".python" style="color:white;font-size: 110%;">Python</li>
<li class="control" data-filter=".other" style="color:white;font-size: 120%;">Other</li>
</center>
<center>
<!-- <li class="control" data-filter=".arch" style= "color:#1B2D55">Architecture</li> -->
</center>
</ul>
<br>
<div class="scrollFade">
<div class="row portfolio-gallery m-0">
<section class="tiles">
<div class="mix col-lg-4 col-sm-6 p-0 ml python notable" style="margin: -23px;">
<div class="portfolio-box">
<article class="style1">
<span class="imageb">
<img src="./docs/images/biped0.png" style="filter: blur(7px);" alt= />
</span>
<a href="docs/minime.html">
<h2 style="font-size: 130%;">MiniMe Biped <br><b>(Current Project)</b></h2>
<div class="content" style="background-color: transparent;">
<p style="color: white">MiniMe is a bipedal robot that avoids obstacles
on its own. <br><i>Projected
Completion:
<b>July 20, 2022</b></i>
</p>
</div>
</a>
</article>
</div>
</div>
<div class="mix col-lg-4 col-sm-6 p-0 python ml" style="margin: -23px;">
<div class="portfolio-box">
<article class="style1">
<span class="imageb">
<img src="./docs/assets/img/discbot.png" style="filter: blur(11px);"
alt="" />
</span>
<a href="docs/projects.html#disc">
<h2 style="font-size: 130%;">Responsive AI Yusuf Discord Bot <br><b>(Current
Project)</b></h2>
<div class="content" style="background-color: transparent;">
<p style="color: white;">With all the time I spend on undergraduate
coursework,
research, and programming projects,
I decided to save time by creating an AI version of myself to talk
to my
friends.
<br><i>Projected Completion: <b>Mar. 12 2022</b></i>
</p>
</div>
</a>
</article>
</div>
</div>
<!---
<div class="mix col-lg-4 col-sm-6 p-0 ml python notable" style = "margin: -23px;">
<div class="portfolio-box">
<article class="style6">
<span class="imageb">
<img src="./docs/assets/img/ocean.jpg" style="filter: blur(4px);" alt="" />
</span>
<a href="docs/projects.html#yee">
<h2 style="font-size: 130%;">Identifying Garbage in the Ocean from Satellite Images<br><b> (Current)</b></h2>
<div class="content" style="background-color: transparent;">
<p style="color: white">In this end-to-end data science project,
I used Python and Jupyter Notebook to create an ML model that identifies
areas in the ocean with garbage.</p>
</div>
</a>
</article></div></div>
<div class="mix col-lg-4 col-sm-6 p-0 python notable ml" style = "margin: -23px;">
<div class="portfolio-box">
<article class="style4">
<span class="imageb">
<img src="./docs/images/forest.jpg" style="filter: blur(4px);" alt="" />
</span>
<a href="docs/projects.html#battleship">
<h2 style="font-size: 130%;">Forest Cover Classification
<br><b>(Winter 2021)</b>
</h2>
<div class="content" style="background-color: transparent;">
<p style="color: white">Here, I used deep learning to predict forest
cover type using only cartographic variables. I utilized TensorFlow with Keras to build my classifiers.</p>
</div>
</a>
</article></div></div> -->
<!---
<div class="mix col-lg-4 col-sm-6 p-0 ml python other ml" style = "margin: -23px;">
<div class="portfolio-box">
<article class="style6">
<span class="imageb">
<img src="./docs/assets/img/nlp.jpg" style="filter: blur(4px);" alt="" />
</span>
<a href="docs/projects.html#yee">
<h2 style="font-size: 130%;">NLP Message Analysis<br><b> (Winter 2021)</b></h2>
<div class="content" style="background-color: transparent;">
<p style="color: white">In this end-to-end data science project,
I used Python and Jupyter Notebook to create an ML model that identifies
areas in the ocean with garbage.</p>
</div>
</a>
</article></div></div>
<div class="mix col-lg-4 col-sm-6 p-0 python" style = "margin: -23px;">
<div class="portfolio-box">
<article class="style5">
<span class="imageb">
<img src="./docs/assets/img/cpu.jpg" style="filter: blur(5px);" alt="" />
</span>
<a href="docs/projects.html#lf">
<h2 style="font-size: 130%;">CPU Simluator <br><b>(Fall
2021)</b></h2>
<div class="content" style="background-color: transparent;">
<p style="color: white">In this project, I researched, designed, and built
a Python program that simulates the functionalities of a CPU.</p>
</div>
</a>
</article></div></div>
-->
<div class="mix col-lg-4 col-sm-6 p-0 notable python ml " style="margin: -23px;">
<div class="portfolio-box">
<article class="style1">
<span class="imageb">
<img src="./docs/assets/img/dappersuf.jpg" style="filter: blur(7px);"
alt="" />
</span>
<a href="docs/projects.html#drow">
<h2 style="font-size: 130%;">Drowsiness Detection with OpenCV and
Arduino<br><b>(Spring
2021)</b> </h2>
<div class="content" style="background-color: transparent;">
<p style="color: white">In this project, a colleague and I programmed a
software
that detects
when the user becomes drowsy before
alerting them with a buzzing noise until they open their eyes again.
</p>
</div>
</a>
</article>
</div>
</div>
<div class="mix col-lg-4 col-sm-6 p-0 other" style="margin: -23px;">
<div class="portfolio-box">
<article class="style4">
<span class="imageb">
<img src="./docs/assets/img/hcsr.jpg" style="filter: blur(4px);" alt="" />
</span>
<a href="docs/projects.html#hcsr">
<h2 style="font-size: 130%;">Non-Contact Range Detection of a HC-SR04
Ultrasonic Sensor
<br><b>(Fall 2020)</b>
</h2>
<div class="content" style="background-color: transparent;">
<p style="color: white">In this project, two ECE
classmates and I used MATLAB, an Arduino MEGA, LEDs, a buzzer, an IR
remote and receiver, and a DHT11 temperature
sensor to create a security device.</p>
</div>
</a>
</article>
</div>
</div>
<!--
<div class="mix col-lg-4 col-sm-6 p-0 cpp matlab">
<div class="portfolio-box">
<article class="style5">
<span class="imageb">
<img src="./docs/assets/img/lightfollowing.jpg" style="filter: blur(4px);" alt="" />
</span>
<a href="docs/projects.html#lf">
<h2 style="font-size: 130%;">Light-Following Arm with MATLAB and Arduino <br><b>(Fall
2020)</b></h2>
<div class="content" style="background-color: transparent;">
<p style="color: white">Using MATLAB, an Arduino MEGA, 2 breadboards, a servo motor,
and photoresistors, I had a board with photoresistors turn to follow LEDs as
they turn on.
</p>
</div>
</a>
</article></div></div> -->
<div class="mix col-lg-4 col-sm-6 p-0 other notable" style="margin: -23px;">
<div class="portfolio-box">
<article class="style1">
<span class="imageb">
<img src="./docs/images/site.png" style="filter: blur(11px);" alt="" />
</span>
<a href="docs/projects.html#site">
<h2 style="font-size: 130%;">Portfolio Site <br><b>(Summer 2020 -)</b></h2>
<div class="content" style="background-color: transparent;">
<p style="color: white;">Using HTML, CSS, and JavaScript, I created this
portfolio site to display my projects, education, and contact
information.
</p>
</div>
</a>
</article>
</div>
</div>
<div class="mix col-lg-4 col-sm-6 p-0 other" style="margin: -23px;">
<div class="portfolio-box">
<article class="style6">
<span class="imageb">
<img src="./docs/assets/img/yee.png" style="filter: blur(4px);" alt="" />
</span>
<a href="docs/projects.html#yee">
<h2 style="font-size: 130%;">Tensile Strength of ABS Plastic Moldings and 3D
Printed
Samples<br><b> (Summer 2019)</b></h2>
<div class="content" style="background-color: transparent;">
<p style="color: white">In this research experience at SDSU, I
researched the
tensile
strength of 3D printed ABS ASTM D638 samples versus ASTM D638
samples created
with injection molding (~100 hours).</p>
</div>
</a>
</article>
</div>
</div>
</section>
</div>
</div>
</div>
<!-- MOBILE PROJECTS-->
<div id="content-mobile">
<br><br><br>
<li><b>MiniMe:</b> 3D Printed Biped w/ OpenCV, TensorFlow</li><br>
<li><b>Responsive AI Yusuf Discord Bot</b> w/ PyTorch</li><br>
<li><b>Drowsiness Detection</b> w/ OpenCV</li><br>
<li><b>Non-Contact Range Detection of HC-SR04 U/S Sensor</b> w/ MATLAB, C++</li><br>
<li><b>Portfolio Site</b> w/ HTML, CSS, JS</li><br>
<li><b>Research:</b> Tensile Strength of ABS Plastic Moldings and 3D Printed Samples</li><br>
</div>
<!-- MOBILE PROJECTS END-->
</section>
<!-- ABOUT ME TABS -->
<section id="about" class="section section-2">
<div class="scrollFade" id="content-desktop">
<div class="container">
<div class="has-text-centered">
<h3 class="title is-3">About</h3>
</div>
<button class="collapsible" id="exp">Experience</button>
<div class="content" style="color:white">
<div class="columns is-multiline is-desktop"></div>
<br>
<p class="title is-4">Relevant Experience</p>
<a href="http://esdat.ucsd.edu/dey" class="intro" target="blank" style="color:white;">UCSD Mobile Systems Design Lab (Dr. Sujit Dey)</a><br><br>
<a class="button1" id="yantitle" href="#popup000">Research Intern <b>(June 2022 -
<i>September 2022</i>)</b></a>
<div id="popup000" class="overlay">
<div class="popup">
<h2>About</h2>
<a class="close" href="#exp">×</a>
<div class="content">
<p>Will focus on the research and development of an iOS application that enables engagement between an ML platform, patients, and physicians.
</p>
</div>
</div>
</div><br><br>
<a href="https://projectyllow.com/" class="intro" target="blank" style="color:white;">Project
YLLOW</a><br><br>
<a class="button1" id="yantitle" href="#popup00">Software Engineer Intern <b>(October 2021 -
<i>Present</i>)</b></a>
<div id="popup00" class="overlay">
<div class="popup">
<h2>About</h2>
<a class="close" href="#exp">×</a>
<div class="content">
<p>Developing iOS/Android app with React-Native. Also created new company site with
HTML, CSS, and JS.
</p>
</div>
</div>
</div><br><br>
<a href="https://digihealth.eng.ucsd.edu" class="intro" target="blank" style="color:white;">UCSD
DigiHealth Lab (Dr. Edward Wang)</a><br><br>
<a class="button1" id="yantitle" href="#popup01">Undergraduate Researcher <b>(April 2021 -
<i>Present</i>)</b></a>
<div id="popup01" class="overlay">
<div class="popup">
<h2>About</h2>
<a class="close" href="#exp">×</a>
<div class="content">
<p>I am working as an undergraduate researcher under the guidance of Professor Edward
Wang
at UCSD's DigiHealth Lab, a joint research
laboratory of UCSD Design Lab and the Jacobs School of Engineering ECE department.
I am working with undergraduate and PhD students
to develop a wearable health device that measures certain levels of the wearer, such
as
blood sugar. My contributions include writing
Arduino/C++ code for I2C communication, designing circuits on Autodesk Eagle,
soldering
them, and more.</p>
</div>
</div>
</div><br><br>
<hr>
<p class="title is-4">Other Experience</p>
<br>
<p class="intro">Mathnasium Learning Center</p>
<a class="button1" id="yantitle" href="#popup03">Mathematics Instructor <b>(May 2021 -
April 2022)</b></a><br><br>
<div id="popup03" class="overlay">
<div class="popup">
<h2>About</h2>
<a class="close" href="#exp">×</a>
<div class="content">
<p>Instructed elementary, middle, and high school students in mathematics.</p>
</div>
</div>
</div>
<a href="https://youssef-lab.sdsu.edu/our-team/young-engineer-experience-yee/" class="intro"
target="blank" style="color:white;">SDSU Experimental Mechanics Lab</a><br><br>
<a class="button1" id="yantitle" href="#popup02">Researcher - Young Engineer Experience <b>(June
2019 -
July 2019)</b></a>
<div id="popup02" class="overlay">
<div class="popup">
<h2>About</h2>
<a class="close" href="#exp">×</a>
<div class="content">
<p>In this research experience, I researched the tensile strength of 3D printed ABS
ASTM D638 samples versus ASTM D638 samples created with injection molding in SDSU's
Experimental Mechanics Laboratory (~100 hours). Working under the guidance of
Professor George Youssef and his graduate students, I not only learned how to
conduct
research, but also how to work efficiently in a lab environment.</p>
</div>
</div>
</div><br><br><br>
</div>
</div>
<div class="container">
<button class="collapsible">Education</button>
<div class="content" style="color:white">
<div class="columns is-multiline is-desktop"></div>
<br>
<p class="intro">UC San Diego</p>
<li id="yantitle">Electrical Engineering: Machine Learning (BS) <b>(2020-24)</b></li>
<li id="yantitle"><b>Minor:</b> Mathematics</li>
<p class="intro">PHHS- Engineering Academy</p>
<li id="yantitle">High School Diploma <b>(2016-20)</b></li>
<li id="yantitle">Graduated w/ Honors and Academic Distinction</li>
</div>
</div>
<div class="container">
<button class="collapsible" id="awa">Awards/Achievements</button>
<div class="content" style="color:white">
<div class="columns is-multiline is-desktop"></div>
<br>
<a href="https://sdhacks.io/" class="intro" target="blank" style="color:white;">SD Hacks- 2022</a><br><br>
<a class="button1" id="yantitle" href="#popup00b">Winner of Civic Engagement Category</a>
<div id="popup00b" class="overlay">
<div class="popup">
<h2>Info</h2>
<a class="close" href="#awa">×</a>
<div class="content">
<p>Selected out of 30 teams in this hackathon.
</p>
</div>
</div></div>
<br><br>
<a href="https://extension.ucsd.edu/news-and-events/division-of-extended-studies-blog/August-2020/Patrick-Henry-High-School-Grad-Plans-to-Make-a-Big" class="intro" target="blank" style="color:white;">UCSD Extension- 2020</a><br><br>
<a class="button1" id="yantitle" href="#popup01b">Student of Distinction</a>
<div id="popup01b" class="overlay">
<div class="popup">
<h2>Info</h2>
<a class="close" href="#awa">×</a>
<div class="content">
<p>As a result of my performance in this Front-End Web Development certification program, an article was written about me in the UCSD Extension Newsletter.</p>
</div>
</div>
</div><br><br>
<a href="https://acementorsd.org/" class="intro" target="blank" style="color:white;">ACE Mentor Program San Diego- 2020</a><br><br>
<a class="button1" id="yantitle" href="#popup01c">Scholarship for Electrical Engineering</a>
<div id="popup01c" class="overlay">
<div class="popup">
<h2>Info</h2>
<a class="close" href="#awa">×</a>
<div class="content">
<p>Selected due to academic success and activity in this engineering organization.</p>
</div>
</div>
</div><br><br>
<a href="https://acementorsd.org/" class="intro" target="blank" style="color:white;">ACE Mentor Program San Diego- 2019</a><br><br>
<a class="button1" id="yantitle" href="#popup01d">Scholarship for Electrical Engineering</a>
<div id="popup01d" class="overlay">
<div class="popup">
<h2>Info</h2>
<a class="close" href="#awa">×</a>
<div class="content">
<p>Selected due to academic success and activity in this engineering organization.</p>
</div>
</div>
</div><br><br><br>
</div>
</div>
<br><hr><br>
<div class="container">
<button class="collapsible">Courses</button>
<div class="content" style="color:white">
<div class="columns is-multiline is-desktop"></div>
<br>
<div class="row1">
<center>
<p><b>Relevant Coursework</b></p>
</center>
<div class="column1">
<center>
<div class="kewl">
<a href="https://catalog.ucsd.edu/courses/ECE.html#ece109" id="yantitle"
target="blank"><b>ECE109:</b> Engineering Probability & Stats</a>
</div>
<div class="kewl">
<a href="https://catalog.ucsd.edu/courses/ECE.html#ece101" id="yantitle"
target="blank"><b>ECE101:</b> Linear Systems</a>
</div>
<div class="kewl">
<a href="https://catalog.ucsd.edu/courses/ECE.html#ece45" id="yantitle"
target="blank"><b>ECE35/45:</b> Analysis of Circuits and Systems</a>
</div>
<div class="kewl">
<a href="https://catalog.ucsd.edu/courses/ECE.html#ece30" id="yantitle"
target="blank"><b>ECE30:</b> Computer Organization</a>
</div>
<div class="kewl">
<a href="https://catalog.ucsd.edu/courses/ECE.html#ece25" id="yantitle"
target="blank"><b>ECE25:</b> Digital Systems</a>
</div>
<br>
</center>
</div>
<div class="column1">
<center>
<div class="kewl">
<a href="https://catalog.ucsd.edu/courses/ECE.html#ece16" id="yantitle"
target="blank"><b>ECE16:</b> Rapid Hardware
and Software Design w/ Python</i> </a>
</div>
<div class="kewl">
<a href="https://catalog.ucsd.edu/courses/ECE.html#ece15" id="yantitle"
target="blank"><b>ECE15:</b> Accelerated C Programming</a>
</div>
<div class="kewl">
<a href="https://catalog.ucsd.edu/courses/MATH.html#math20d" id="yantitle"
target="blank"><b>MATH20A-D:</b> Calculus 1-4</a>
</div>
<div class="kewl">
<a href="https://catalog.ucsd.edu/courses/MATH.html#math18" id="yantitle"
target="blank"><b>MATH18:</b> Linear Algebra</a>
</div>
<div class="kewl">
<a id="yantitle"><b>CISC181:</b> Information Systems</a>
</div>
</div><br></center>
</div>
<br>
</div>
</div>
<div class="container">
<button class="collapsible" id="cert">Certifications</button>
<div class="content" style="color:white">
<br>
<p class="intro">UC San Diego Extension</p>
<a class="button1" id="yantitle" href="#popup2">Business Management Certification <b>(Sep. 2020 -
May
2021)</b></a>
<div id="popup2" class="overlay">
<div class="popup">
<h2>Courses:</h2>
<a class="close" href="#cert">×</a>
<div class="content">
<li>BUSA-90019: Organizational Behavior</li>
<li>BUSA-90018: Elements of Marketing</li>
<li>BUSA-90017: Business Decision Making</li>
</div>
</div>
</div><br>
<br>
<a class="button1" id="yantitle" href="#popup3">Front-End Web Development Certification <b>(Jan.
2020 -
Sep. 2020)</b></a>
<div id="popup3" class="overlay">
<div class="popup">
<h2>Courses:</h2>
<a class="close" href="#cert">×</a>
<div class="content">
<li>CSE-90027: Intro to Front End Technologies</li>
<li>CSE-90024: HTML5 and CSS</li>
<li>CSE-90025: HTML5 and JavaScript</li>
</div>
</div>
</div><br><br>
<a class="button1" id="yantitle" href="#popup4">iOS Programming Certification <b>(Jan. 2019 - May
2019)</b></a>
<div id="popup4" class="overlay">
<div class="popup">
<h2>Courses:</h2>
<a class="close" href="#cert">×</a>
<div class="content">
<li>CSE-90028: iOS Programming I</li>
<li>CSE-90029: iOS Programming II</li>
</div>
</div>
</div><br><br><br>
<p class="intro">Codecademy </p>
<a class="button1" id="yantitle" href="#popup5">Computer Science <b>(Oct. 2021 - Present)</b></a>
<div id="popup5" class="overlay">
<div class="popup">
<h2>Courses:</h2>
<a class="close" href="#cert">×</a>
<div class="content">
<li>CS101: Introduction to Programming</li>
<li>CS102: Data Structures and Algorithms</li>
<li>CS103: Databases</li>
<li>CS104: Computer Architecture</li>
<li>CS105: Discrete Math</li>
<br>
</div>
</div>
</div><br><br>
<p class="intro">MathWorks</p>
<a class="button1" id="yantitle" href="#popup6">MATLAB Onramp Training <b>(October 2020)</b></a>
<div id="popup6" class="overlay">
<div class="popup">
<h2>Certificate:</h2>
<a class="close" href="#cert">×</a>
<div class="content">
<img src="./docs/assets/img/matlab.png">
</div>
</div>
</div>
<div><br></div>
</div>
<!--
<p class="intro">MITx </p>
<a class="button1" id="yantitle" href="#popup7">Cybersecurity for Critical Urban Infrastructure <b>(July
2020)</b></a>
<div id="popup7" class="overlay">
<div class="popup">
<h2>Certificate:</h2>
<a class="close" href="#cert">×</a>
<div class="content">
<img src="./docs/assets/img/mit.png">
</div>
</div>
</div><br><br>
<p>
<p class = "intro">International Business Management Institute </p>
<li id = "yantitle">Project Management Program Certification <b>(August 2020 - December 2020)
</b></li>
<p class = "intro">American Red Cross</p>
<li id = "yantitle">Adult and Pediatric First Aid/CPR/AED <b>(August 2020)</b></li> -->
</div>
</div>
<center id="content-mobile">Yusuf M - Portfolio 2022 ©</center>
</div>
</section>
<section class="section section-2-5" id="content-desktop">
<div class="scrollFade">
<div class="container">
<br>
<div>
<a href="https://www.github.com/ymorsi7" class="title is-3" target="blank">Github Contributions</a>
</div><br><br>
<!-- Include the library. -->
<div>
<script src="https://unpkg.com/github-calendar@latest/dist/github-calendar.min.js"></script>
<link rel="stylesheet" href="./docs/css/ghfile.css" />
<!-- Prepare a container for your calendar. -->
<div class="calendar">
<!-- Loading stuff -->
Loading the data just for you.
</div>
<script>
GitHubCalendar(".calendar", "ymorsi7");
// or enable responsive functionality
GitHubCalendar(".calendar", "ymorsi7", { responsive: true });
</script>
</div>
</div>
<br><br>
<center>Yusuf Morsi 2022 ©</center>
</div>
</section>
<!-- ABOUT ME TABS END!!!! -->
<!--
<section id="projects" class="section section-2">
<div class="container">
<div class="has-text-centered">
<h3 class="title is-3">More About Me</h3>
<p style="display: inline;">Although I spend the majority of my free time coding, I also have interests
in <a href="./docs/photography.html" style="display: inline; margin:0;
padding:0;
overflow-x:hidden;" class="nav-item" target="_blank"><b>photography</b></a>, traveling and record collecting.