-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcv.html
696 lines (529 loc) · 25.9 KB
/
cv.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
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
<!DOCTYPE html>
<html lang="en" dir="ltr">
<head>
<link rel="apple-touch-icon" sizes="180x180" href="images/favicon_io_cv/apple-touch-icon.png">
<link rel="icon" type="image/png" sizes="32x32" href="images/favicon_io_cv/favicon-32x32.png">
<link rel="icon" type="image/png" sizes="16x16" href="images/favicon_io_cv/favicon-16x16.png">
<link rel="manifest" href="/site.webmanifest">
<meta charset="utf-8">
<meta name="author" content="Noor Aldeen Almusleh">
<meta name="keywords" content="quantum computing, quantum information, machine learning, AI">
<meta name="description" content="">
<title>Noor Almusleh</title>
<!-- Google fonts -->
<link href="https://fonts.googleapis.com/css2?family=Montserrat:wght@900&family=Ubuntu&display=swap" rel="stylesheet">
<!-- CSS Stylesheets -->
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-0evHe/X+R7YkIZDRvuzKMRqM+OrBnVFBL6DOitfPri4tjfHxaWutUpFmBp4vmVor" crossorigin="anonymous">
<link rel="stylesheet" href="CSS/styles.css">
<!-- Font Awesome -->
<script src="https://kit.fontawesome.com/ec35dfd770.js" crossorigin="anonymous"></script>
<!-- Bootstrap Scripts -->
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.min.js" integrity="sha384-kjU+l4N0Yf4ZOJErLsIcvOU2qSb74wXpOhqTvwVx3OElZRweTnQ6d31fXEoRD1Jy" crossorigin="anonymous"></script>
<!-- MathJax scripts -->
<script type="text/x-mathjax-config">
MathJax.Hub.Config({tex2jax: {inlineMath: [['$','$'], ['\\(','\\)']]}});
</script>
<script type="text/javascript"
src="http://cdnjs.cloudflare.com/ajax/libs/mathjax/2.7.1/MathJax.js?config=TeX-AMS-MML_HTMLorMML">
</script>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
</head>
<body>
<div class="main-div">
<h1 class="name cv-title"><a href="index.html">Noor Aldeen Almusleh</a></h1>
<h4 class="professionals">Machine Learning Engineer | Data Scientist | Physicist</h4>
<div class="intro-p">
<p>I design machine learning and deep learning models (using <tt>TensorFlow</tt> and <tt>SciKit-Learn</tt>) to help make the world a better place. I passionate about <span class="redish">computer vision</span> and its applications. Also, I create visualizations to explain data and clarify drawn conclusions and predictions.</p>
<p>Right now, I'm working on expanding my machine learning toolkit and include <span class="redish">quantum computing</span> as it might change the future of computing, with <span class="bluish">superconducting qubits</span> being one among many candidates to achieve that.</p>
<div class="container text-left">
<div class="row">
<div class="col">
<div class="cv-social-link-icon-wrapper">
<a href="index.html"><i class="fa-solid fa-house-chimney-user"></i></a>
<a href="index.html">Home Page</a>
</div>
<div class="cv-social-link-icon-wrapper">
<a href="mailto:[email protected]"><i class="fa-solid fa-envelope-circle-check"></i></a>
<a href="mailto:[email protected]">[email protected]</a>
</div>
<div class="cv-social-link-icon-wrapper">
<a href="Noor_CV.pdf"><i class="fa-regular fa-file-pdf"></i></a>
<a href="Noor_CV.pdf">CV PDF</a>
</div>
</div>
<div class="col">
<div class="cv-social-link-icon-wrapper">
<a href="https://github.com/Nour-Aldein2"><i class="fa-brands fa-github"></i></a>
<a href="https://github.com/Nour-Aldein2">Nour-Aldein2</a>
</div>
<div class="cv-social-link-icon-wrapper">
<a href="https://www.linkedin.com/in/nour-aldein-b15361123/"><i class="fa-brands fa-linkedin"></i></a>
<a href="https://www.linkedin.com/in/nour-aldein-b15361123/">Nour-Aldein</a>
</div>
</div>
</div>
</div>
</div>
<hr><hr>
<!-- ------------------------------------------------------------------------------- -->
<div class="cv-section">
<h2>Eduction</h2>
<!-- Description -->
<div class="container text-left education">
<h5>B.Sc in Physics</h5>
<h6>Al Al-Bayt Univeristy, Mafraq, Jordan</h6>
<div class="container text-left">
<!-- Date -->
<div class="row">
<div class="col date">
July 2014 - Jan 2018
</div>
</div>
</div>
<div class="row">
<div class="col-2 index">
Grades
</div>
<div class="col">
GPA–84.5% (Excellent), with first-class honors.
</div>
</div>
<div class="row">
<div class="col-2 index">
Description
</div>
<div class="col">
This is a four year program with a fast track option delivered in English as the language of instruction. Relevant modules studied include Quantum Physics I (87%), Quantum Physics II (94%), Thermodynamics (90%), Statistical Mechanics (95%), Electricity and Magnetism I (74%), Electricity and Magnetism II (77%), Mathematical Physics I (94%), Mathematical Physics II (89%), Mathematical Physics III (95%), Astrophysics (98%), Nuclear Physics (80%), and Particle Physics (94%).
</div>
</div>
<div class="row">
<div class="col-2 index">
Thesis
</div>
<div class="col">
Final year dissertation ”Heavy Quarkonium Mass Spectra From Complex Potential”; this study was an attempt to improve our understanding of the heavy mesons (such as the bottomonium) by studying the solution of the relativistic Schrodinger equation for some complex potential. This project took five months and it was supervised by Dr. Ahmed Al-Jamel.
</div>
</div>
</div>
<!-- Description -->
<div class="container text-left education">
<h5>Qiskit Global Summer School on Quantum Machine Learning</h5>
<h6>IBM, Remote</h6>
<!-- Date -->
<div class="container text-left date">
<div class="row">
<div class="col">
July 2021 - Aug 2021
</div>
</div>
</div>
<div class="row">
<div class="col-2 index">
Description
</div>
<div class="col">
Completed the two-week intensive course which covered many topics in quantum computing such as Deutsch-Jozsa Algorithm, Grover’s Algorithm, quantum classifiers, Quantum Approximate Optimization Algorithm (QAOA), quantum fidelity, and quantum hardware, completing all graded lab work assignments with a final cumulative score of 100%, demonstrating applied understanding and comfort with and about Quantum Computing and Quantum Machine Learning using Qiskit.
</div>
</div>
</div>
</div>
<hr>
<!-- ------------------------------------------------------------------------------- -->
<div class="cv-section">
<h2>Skills</h2>
<!-- Skill -->
<div class="container text-left education">
<h5>Programming</h5>
<div class="row">
<div class="col-2 index">
Python
</div>
<div class="col">
Using different Python libraries and frameworks to develop machine learning and deep learning models such as <tt>SciKit-Learn</tt>, <tt>Keras</tt>, and <tt>TensorFlow</tt>, to predict fraud, paddy disease, and classify images. To optimize my models, exploratory data analysis was my first approach, using <tt>Pandas</tt>, <tt>Scipy</tt>, and <tt>Numpy</tt>, and by utilizing static and interactive visualizations using <tt>Matplotlib</tt>, <tt>Seaborn</tt>, <tt>Dash</tt>, and <tt>Plotly</tt> I can decide what type of data augmentation or dimensionality reduction I should use. Finally, deploy these models to the internet using <tt>Flask</tt> (see for example:).
</div>
</div>
<br>
<div class="row">
<div class="col-2 index">
Web Development
</div>
<div class="col">
Develop websites using <tt>HTML</tt>, <tt>CSS</tt>, <tt>Bootstrap</tt>, <tt>Flask</tt>, and <tt>Jinja</tt> where I deploy my machine learning and deep learning models alongside with explanations of the model itself and its development alongside visualizations of the data.
</div>
</div>
<br>
<div class="row">
<div class="col-2 index">
Qiskit
</div>
<div class="col">
Use different quantum algorithms such as VQE, QAOA, and QSVM to solve finance, chemistry, and optimization problems, as well as test quantum gates fidelity, training quantum circuits using gradient descent, using quantum kernels, and support vector machines. This was accomplished using Qiskit and IBM quantum lab with five qubits and using some quantum simulators such as QasmSimulator, StatevectorSimulator, and UnitarySimulator.
</div>
</div>
<br>
<div class="row">
<div class="col-2 index">
$\LaTeX$
</div>
<div class="col">
Using $\\LaTeX$ to edit scientific scripts that were published in peer reviewed journals, and writing my thesis using TexMaker editor, and Overleaf.
</div>
</div>
<br>
<div class="row">
<div class="col-2 index">
Communication
</div>
<div class="col">
Enhanced vocal and written commutation skills through working as an educator as this role required high-level communication skills and clear presentations to communicate with students and the management. Also, completing a dissertation and writing up numerous projects at university and research (including the publishing procedure and what it requires of communication by email) helped develop more written communication skills.
</div>
</div>
<br>
<div class="row">
<div class="col-2 index">
Team work
</div>
<div class="col">
Successful organization of science events for Phi Science Institute and the Ministry of Education (UAE) relied on effectively working with all volunteers. Understanding the importance of proactively developing relationships with others, sharing information, and supporting contributions from team members, which were then applied while working with a research group, helped develop excellent teamwork skills in academia.
</div>
</div>
</div>
</div>
<hr>
<!-- ------------------------------------------------------------------------------- -->
<div class="cv-section">
<h2>Research Experience</h2>
<!-- Description -->
<div class="container text-left education">
<h5>Researcher</h5>
<h6>Astrophysics research group, Amman, Jordan</h6>
<!-- Date -->
<div class="container text-left date">
<div class="row">
<div class="col">
Oct 2019 - June 2021
</div>
</div>
</div>
<div class="row">
<div class="col-2 index">
Description
</div>
<div class="col">
Our main focus was on studying the spectrum of different sample stars to predict different physical properties of those stars. Using statistical methods, and relevant Python libraries (such as <tt>Astropy</tt>, <tt>Numpy</tt>, and <tt>Matplotlib</tt>) to study the spectrum of a few stars, their abundances, and their kinematics which helped in constructing an action space map that indicates the eccentricity and the spherical coordinates for the sample stars from our study and the literature. Based on that we recommended further observations to expand the sample used in these two studies to better predict these stars progenitors.
</div>
</div>
</div>
<!-- Description -->
<div class="container text-left education">
<h5>Researcher</h5>
<h6>Al Al-Bayt University, Mafraq, Jordan</h6>
<!-- Date -->
<div class="container text-left date">
<div class="row">
<div class="col">
Jun 2016 - Dec 2017
</div>
</div>
</div>
<div class="row">
<div class="col-2 index">
Description
</div>
<div class="col">
Conducted a theoretical study of a Cornell-like potential with the linear term being imaginary (that is, $V(r) = iar + b/r$). Finding the exact solution of such potential could assist in describing the behavior of heavy-quark mesons (e.g. bottomonium and charmonium).
<!-- Furthermore, I had the chance to teach research methods, and scientific writing with $\\LaTeX$. -->
</div>
</div>
</div>
</div>
<hr>
<!-- ------------------------------------------------------------------------------- -->
<div class="cv-section">
<h2>Work Experience</h2>
<!-- Description -->
<div class="container text-left education">
<h5>AP Physics Teacher</h5>
<h6>Emirates Schools Establishment, Dubai, UAE</h6>
<!-- Date -->
<div class="container text-left date">
<div class="row">
<div class="col">
Jan 2019 - Present
</div>
</div>
</div>
<div class="row">
<div class="col-2 index">
Description
</div>
<div class="col">
Teaching AP Physics algebra and calculus based for grads 9, 10, 11, and 12 using English as the language of instruction. I worked in different classroom setups including traditional, online, and hybrid classrooms. Working as a teacher with the Emirates Schools Establishment involves creating lesson plans, in class activities, and arranging field trips. Furthermore, I supervise students who participate in science fairs, and create support plans for lower-achievers and execute those plans in cooperation with their parents.
During my time as a teacher, I had the opportunity to work across multiple teams from different backgrounds and roles. We planned to do cross-subject activities and plan the general trend for our lessons to help students relate between different subjects (such as chemistry and physics, or physics and mathematics, etc.)
</div>
</div>
</div>
</div>
<hr>
<!-- ------------------------------------------------------------------------------- -->
<div class="cv-section">
<h2>Certifications & Badges</h2>
<!-- Description -->
<div class="container text-left education">
<strong>Introduction to TensorFlow for Artificial Intelligence, Machine Learning, and Deep Learning</strong>
<!-- Date -->
<div class="container text-left date">
<div class="row">
<div class="col">
Mar 2022: <span class="address">DeepLearning.AI, Remote (Coursera)</span>
</div>
</div>
</div>
</div>
<!-- Description -->
<div class="container text-left education">
<strong>Python for Data Science and Machine Learning Bootcamp</strong>
<!-- Date -->
<div class="container text-left date">
<div class="row">
<div class="col">
Feb 2022: <span class="address">Udemy</span>
</div>
</div>
</div>
</div>
<!-- Description -->
<div class="container text-left education">
<strong>Interactive Python Dashboards with Plotly and Dash</strong>
<!-- Date -->
<div class="container text-left date">
<div class="row">
<div class="col">
Jan 2022: <span class="address">Udemy</span>
</div>
</div>
</div>
</div>
<!-- Description -->
<div class="container text-left education">
<strong>IBM Quantum Challenge Fall 2021</strong>
<!-- Date -->
<div class="container text-left date">
<div class="row">
<div class="col">
Nov 2021: <span class="address">IBM, Remote</span>
</div>
</div>
</div>
</div>
<!-- Description -->
<div class="container text-left education">
<strong>Using Python to Access Web Data</strong>
<!-- Date -->
<div class="container text-left date">
<div class="row">
<div class="col">
Aug 2021: <span class="address">University of Michigan, Remote (Coursera)</span>
</div>
</div>
</div>
</div>
<!-- Description -->
<div class="container text-left education">
<strong>Quantum Machine Learning</strong>
<!-- Date -->
<div class="container text-left date">
<div class="row">
<div class="col">
Jul 2021: <span class="address">IBM, Remote</span>
</div>
</div>
</div>
</div>
<!-- Description -->
<div class="container text-left education">
<strong>Python Data Structure</strong>
<!-- Date -->
<div class="container text-left date">
<div class="row">
<div class="col">
Jun 2021: <span class="address">University of Michigan, Remote (Coursera)</span>
</div>
</div>
</div>
</div>
<!-- Description -->
<div class="container text-left education">
<strong>Learning How to Learn</strong>
<!-- Date -->
<div class="container text-left date">
<div class="row">
<div class="col">
Sep 2016: <span class="address">UCSanDiego, Remote (Coursera)</span>
</div>
</div>
</div>
</div>
<!-- Description -->
<div class="container text-left education">
<strong>Scientific Methodology and Technical Writing</strong>
<!-- Date -->
<div class="container text-left date">
<div class="row">
<div class="col">
Aug 2016: <span class="address">Phi Science Institute, Amman, Jordan</span>
</div>
</div>
</div>
</div>
<!-- Description -->
<div class="container text-left education">
<strong>Effective Business Websites</strong>
<!-- Date -->
<div class="container text-left date">
<div class="row">
<div class="col">
Jan 2016: <span class="address">HP LIFE e-Learning, Remote</span>
</div>
</div>
</div>
</div>
<!-- Description -->
<div class="container text-left education">
<strong>Training of Trainers</strong>
<!-- Date -->
<div class="container text-left date">
<div class="row">
<div class="col">
May 2015: <span class="address">Al Al-bayt University, Mafraq, Jordan</span>
</div>
</div>
</div>
</div>
</div>
<hr>
<!-- ------------------------------------------------------------------------------- -->
<div class="cv-section">
<h2>Publications</h2>
<!-- Paper -->
<div class="container text-left">
<div class="row">
<div class="col">
<a href="http://doi.org/10.1002/asna.202113867"><strong>Metal-poor Stars Observed with the Automated Planet Finder Telescope. III. CEMP-no Stars are the Descendant of Population III Stars</strong></a>
</div>
</div>
<div class="row">
<div class="col">
<a href="index.html">Nour Aldein Almusleh</a>, <a href="https://scholar.google.com/citations?user=eQB2E9IAAAAJ&hl=en&oi=ao">Ali Taani</a>, <a href="https://www.researchgate.net/profile/Sergen-Oezdemir">Sergen Özdemir</a>, <a href="https://www.linkedin.com/in/maria-rah-b061689b/?originalSubdomain=ir">Maria Rah</a>, <a href="https://scholar.google.com/citations?user=4mOv8LwAAAAJ&hl=en">Mashhoor A. Al-Wardat</a>, <a href="https://www.iau.org/administration/membership/individual/1500/">Gang Zhao</a>, and <a href="https://scholar.google.com/citations?user=jh7W9QEAAAAJ&hl=en&oi=sra">Mohammad K. Mardini</a>
</div>
</div>
<div class="row">
<div class="col journal">
Astronomische Nachrichten (AN), June, 2021
</div>
</div>
<div class="row research-icons">
<div class="col">
<a href="http://doi.org/10.1002/asna.202113867"><i class="fa-solid fa-anchor"> ` DOI</i></a>
<a href="https://arxiv.org/pdf/2102.01076.pdf"><i class="fa-solid fa-file-pdf"> ` PDF</i></a>
<a href="https://ui.adsabs.harvard.edu/abs/2021AN....342..625A/exportcitation"><i class="fa-solid fa-book"> ` BibTex</i></a>
</div>
</div>
</div>
<!-- Paper -->
<div class="container text-left">
<div class="row">
<div class="col">
<a href="https://doi.org/10.52526/25792776-2020.67.2-267"><strong>The Origin of LAMOST J1109+7459</strong></a>
</div>
</div>
<div class="row">
<div class="col">
Yazan Khrais, and <a href="index.html">Nour Aldein Almusleh</a>
</div>
</div>
<div class="row">
<div class="col journal">
Segue Virtual Journal, November, 2020
</div>
</div>
<div class="row research-icons">
<div class="col">
<a href="https://doi.org/10.52526/25792776-2020.67.2-267"><i class="fa-solid fa-anchor"> ` DOI</i></a>
<a href="https://combao.bao.am/2020/267-271.pdf"><i class="fa-solid fa-file-pdf"> ` PDF</i></a>
<a href="https://ui.adsabs.harvard.edu/abs/2020CoBAO..67..267K/exportcitation"><i class="fa-solid fa-book"> ` BibTex</i></a>
</div>
</div>
</div>
<!-- Paper -->
<div class="container text-left">
<div class="row">
<div class="col">
<a href="https://doi.org/10.47011/13.3.8"><strong>Probability Distribution of Magnetic Field Strengths through the Cyclotron Lines in High-Mass X-ray Binaries</strong></a>
</div>
</div>
<div class="row">
<div class="col">
<a href="https://scholar.google.com/citations?user=eQB2E9IAAAAJ&hl=en&oi=ao">Ali Taani</a>, <a href="https://scholar.google.com/citations?user=6Nq84sEAAAAJ&hl=en">Ahmad A. Abushattal</a>, <a href="https://www.iau.org/administration/membership/individual/18191/">A. Khasawneh</a>, <a href="index.html">Nour Aldein Almusleh</a>, and <a href="https://scholar.google.com/citations?user=4mOv8LwAAAAJ&hl=en">Mashhoor A. Al-Wardat</a>
</div>
</div>
<div class="row">
<div class="col journal">
Jordan Journal of Physics, February, 2020
</div>
</div>
<div class="row research-icons">
<div class="col">
<a href="https://doi.org/10.47011/13.3.8"><i class="fa-solid fa-anchor"> ` DOI</i></a>
<a href="https://journals.yu.edu.jo/jjp/JJPIssues/Vol13No3pdf2020/8.pdf"><i class="fa-solid fa-file-pdf"> ` PDF</i></a>
<a href="#"><i class="fa-solid fa-book"> ` BibTex</i></a>
</div>
</div>
</div>
</div>
<hr>
<!-- ------------------------------------------------------------------------------- -->
<div class="cv-section">
<h2>Workshops & Conferences</h2>
<!-- Description -->
<div class="container text-left education">
<h5>Quantum Challenge Fall 2021</h5>
<h6>IBM, Remote</h6>
<!-- Date -->
<div class="container text-left date">
<div class="row">
<div class="col">
Nov 2021
</div>
</div>
</div>
<div class="row">
<div class="col-2 index">
Description
</div>
<div class="col">
Completed four challenges, two foundational, one intermediate, and one advanced, using Qiskit while studying some related papers. These challenges were focused on Variational Quantum Eigensolver (VQE), Quantum Approximate Optimization Algorithm (QAOA), Quantum Support Vector Machine (QSVM), and Qiskit Runtime. The challenges were, in order, Optimizing your portfolio with quantum computers (finance), Band gap calculation of OLED molecules (chemistry), Image classification by QSVM (machine learning), and Battery Revenue Optimization (optimiztion).
</div>
</div>
</div>
</div>
<hr>
<!-- ------------------------------------------------------------------------------- -->
<div class="cv-section">
<h2>References</h2>
<strong><a href="https://www.linkedin.com/in/seamus-o-shea-44097b18/">Mr. Seamus O’Shea</a></strong><span class="address">, Careers Coordinator</span>
<span class="address"><br>Emirates Schools Establishment</span>
<br>
<strong><a href="https://scholar.google.com/citations?user=4mOv8LwAAAAJ&hl=en">Dr. Mashhoor A. Al-Wardat</a></strong><span class="address">, Professor</span>
<span class="address"><br>Department of Applied Physics and Astronomy, University of Sharjah</span>
<br>
<strong><a href="https://scholar.google.com/citations?user=eQB2E9IAAAAJ&hl=en&oi=ao"> Dr. Ali Taani</a></strong><span class="address">, Research advisor</span>
<span class="address"><br>Physics Department, Faculty of Science, Al-Balqa Applied University</span>
</div>
<!-- ------------------------------------------------------------------------------- -->
</div>
<footer class="pt-3 mt-4 text-muted border-top footer">
© 2023 Noor Almusleh
</footer>
</body>
</html>