-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
1138 lines (967 loc) · 53.5 KB
/
Copy pathindex.html
File metadata and controls
1138 lines (967 loc) · 53.5 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 lang="en">
<head>
<meta charset="utf-8">
<meta content="width=device-width, initial-scale=1.0" name="viewport">
<title>Sami Alfattany</title>
<meta content="" name="description">
<meta content="" name="keywords">
<!-- Favicons -->
<link href="assets/img/favicon.png" rel="icon">
<link href="assets/img/apple-touch-icon.png" rel="apple-touch-icon">
<!-- Google Fonts -->
<!-- https://fonts.google.com/?subset=arabic -->
<link href="https://fonts.googleapis.com/css?family=Open+Sans:300,300i,400,400i,600,600i,700,700i|Raleway:300,300i,400,400i,500,500i,600,600i,700,700i|Poppins:300,300i,400,400i,500,500i,600,600i,700,700i" rel="stylesheet">
<!-- Vendor CSS Files -->
<link href="assets/vendor/aos/aos.css" rel="stylesheet">
<link href="assets/vendor/bootstrap/css/bootstrap.min.css" rel="stylesheet">
<link href="assets/vendor/bootstrap-icons/bootstrap-icons.css" rel="stylesheet">
<link href="assets/vendor/boxicons/css/boxicons.min.css" rel="stylesheet">
<link href="assets/vendor/glightbox/css/glightbox.min.css" rel="stylesheet">
<link href="assets/vendor/swiper/swiper-bundle.min.css" rel="stylesheet">
<!-- Template Main CSS File -->
<link href="assets/css/style.css" rel="stylesheet">
<!-- Choose Bootstrap Icons from here: -->
<!-- https://icons.getbootstrap.com/icons/ -->
<!-- Example <i class="bi bi-alarm-fill"></i> -->
<!-- Choose Boxicons Icons from here: -->
<!-- https://boxicons.com/ -->
<!-- Example <i class='bx bxl-postgresql'></i> -->
<!-- our project just needs Font Awesome Solid + Brands -->
<!-- <script src="assets/vendor/fontawesome/b3360409b2.js" ></script> -->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.1.1/css/all.min.css" integrity="sha512-KfkfwYDsLkIlwQp6LFnl8zNdLGxu9YAA1QvwINks4PhcElQSvqcyVLLD9aMhXd13uQjoXtEKNosOWaZqXgel0g==" crossorigin="anonymous" referrerpolicy="no-referrer" />
<!-- JQuery -->
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.6.0/jquery.min.js"></script>
<!-- =======================================================
* Template Name: iPortfolio - v3.7.0
* Template URL: https://bootstrapmade.com/iportfolio-bootstrap-portfolio-websites-template/
* Author: BootstrapMade.com
* License: https://bootstrapmade.com/license/
======================================================== -->
</head>
<body>
<!-- ======= Mobile nav toggle button ======= -->
<i class="bi bi-list mobile-nav-toggle d-xl-none"></i>
<!-- ======= Header ======= -->
<header id="header">
<div class="d-flex flex-column">
<div class="profile">
<a href="index.html">
<img src="assets/img/profile-img3.jpg" alt="" class="img-fluid rounded-circle">
<h1 class="text-light">Sami Alfattany</h1>
</a>
<div class="social-links mt-3 text-center">
<a href="https://twitter.com/Sami_alfattani" class="twitter" target="_blank"><i class="bx bxl-twitter"></i></a>
<a href="https://www.facebook.com/sami.alfattani/" class="facebook" target="_blank"><i class="bx bxl-facebook"></i></a>
<!-- <a href="#" class="instagram"><i class="bx bxl-instagram" target="_blank"></i></a> -->
<!-- <a href="#" class="google-plus"><i class="bx bxl-skype" target="_blank"></i></a> -->
<a href="https://www.linkedin.com/in/sami-al-fattani-a69531a/" class="linkedin" target="_blank"><i class="bx bxl-linkedin"></i></a>
<a href="https://github.com/samialfattani" target="_blank"><i class='bx bxl-github'></i></a>
<a href="https://www.hackerrank.com/sami_alfattani" target="_blank"><i class='fab fa-hackerrank' style="color: aliceblue;"></i></a>
<!-- <a href="https://www.hackerrank.com/sami_alfattani?hr_r=1" ><i class='fab fa-hackerrank' style="color: aliceblue;"></i></a> -->
</div>
</div>
<nav id="navbar" class="nav-menu navbar">
<ul>
<!-- https://boxicons.com/ -->
<!-- <li><a href="#hero" class="nav-link scrollto active"><i class="bx bx-home"></i> <span>Home</span></a></li> -->
<li><a href="#about" class="nav-link scrollto"><i class="bx bx-user"></i> <span>About</span></a></li>
<li><a href="#facts" class="nav-link scrollto"><i class='bx bx-podcast'></i> <span>Facts</span></a></li>
<li><a href="#skills" class="nav-link scrollto"><i class='bx bx-code-block'></i> <span>Coding Skills</span></a></li>
<li><a href="#research" class="nav-link scrollto"><i class="bx bx-search"></i> <span>Research</span></a></li>
<li><a href="#resume" class="nav-link scrollto"><i class="bx bx-file-blank"></i> <span>Resume</span></a></li>
<!-- <li><a href="#portfolio" class="nav-link scrollto"><i class="bx bx-book-content"></i> <span>Portfolio</span></a></li>
<li><a href="#services" class="nav-link scrollto"><i class="bx bx-server"></i> <span>Services</span></a></li> -->
<li><a href="#testimonials" class="nav-link scrollto"><i class='bx bxs-like' ></i> <span>Testimonials</span></a></li>
<li><a href="#contact" class="nav-link scrollto"><i class="bx bx-envelope"></i> <span>Contact</span></a></li>
</ul>
</nav><!-- .nav-menu -->
<br>
<a href="assets/img/qr-code-business-card.png" target="_blank">
<img src="assets/img/qr-code-business-card.png" alt="" height="50" width="50">
</a>
</div>
</header><!-- End Header -->
<!-- ======= Hero Section ======= -->
<section id="hero" class="d-flex flex-column justify-content-center align-items-center">
<div class="hero-container" data-aos="fade-in">
<h1>Sami Alfattany</h1>
<p>I'm <span class="typed" data-typed-items="Developer, Freelancer, Researcher, Lecturer"></span></p>
<p>
<a href="index.html">
<button>
<img src="assets/img/uk.png" alt="English">
English
</button>
</a>
<a href="ar.html">
<button>
عربي
<img src="assets/img/saudi.png" alt="Arabic">
</button>
</a>
</p>
</div>
</section><!-- End Hero -->
<main id="main">
<!-- ======= About Section ======= -->
<section id="about" class="about">
<div class="container">
<div class="section-title">
<h2>About</h2>
<p>Currently, Eng. Sami is a PhD researcher of Artificial Intellegence in Natural Language Processing (NLP) in the University of Sheffield, UK. He is also a professional full stack developer including long experiences in Database systems, web & mobile development, and Machine Learning (ML) applications and He built many software apps in several industries including <i>Healthcare, Business, E-learning, and others</i>. He has been working as a Lecturer of Software Engineering department in University of Business and Technology (UBT) for 9 years.</p>
</div>
<div class="row">
<div class="col-lg-4" data-aos="fade-right">
<!-- <img src="assets/img/profile-img.jpg" class="img-fluid" alt=""> -->
<!-- <img src="https://fakeimg.pl/300x300/"> -->
<img src="assets/img/personal-1.png" height="300" width="280">
</div>
<div class="col-lg-8 pt-4 pt-lg-0 content" data-aos="fade-left">
<h3>Developer & Lecturer</h3>
<p class="fst-italic">
<b>Master</b> of Engineering at Nara Institute of Science and Technology <b>(NAIST)</b>, Japan
</p>
<div class="row">
<div class="col-lg-6">
<ul>
<li><i class="bi bi-chevron-right"></i> <strong>Nationality:</strong> <span>Saudi Arabia</span></li>
<li><i class="bi bi-chevron-right"></i> <strong>Phone (UK):</strong> <span>+44 74 127 80808</span></li>
<li><i class="bi bi-chevron-right"></i> <strong>Phone (KSA):</strong> <span>+966 5645 99127</span></li>
<li><i class="bi bi-chevron-right"></i> <strong>City:</strong> <span>Sheffield, UK</span></li>
<li><i class="bi bi-chevron-right"></i> <strong>Website:</strong> <span><a href="https://samialfattani.github.io">https://samialfattani.github.io</a></span></li>
</ul>
</div>
<div class="col-lg-6">
<ul>
<li><i class="bi bi-chevron-right"></i> <strong>Age:</strong> <span>39</span></li>
<li><i class="bi bi-chevron-right"></i> <strong>Status:</strong> <span>Single</span></li>
<li><i class="bi bi-chevron-right"></i> <strong>Degree:</strong> <span>Master</span></li>
<li><i class="bi bi-chevron-right"></i> <strong>Email:</strong> <span><a href="mailto:sami_alfattani@hotmail.com">sami_alfattani@hotmail.com</a> </span></li>
</ul>
</div>
</div>
</div>
</div>
</div>
</section><!-- End About Section -->
<!-- ======= Facts Section ======= -->
<section id="facts" class="facts">
<div class="container">
<div class="section-title">
<h2>Facts</h2>
<!-- <p></p> -->
</div>
<!-- https://icons.getbootstrap.com/ -->
<div class="row no-gutters">
<div class="col-lg-3 col-md-6 d-md-flex align-items-md-stretch" data-aos="fade-up">
<div class="count-box">
<i class="bi bi-person-video3"></i>
<span data-purecounter-start="0" data-purecounter-end="1000" data-purecounter-duration="1.5" class="purecounter"></span>
<p><strong>or more Taught Students</strong> with <b>30+</b> Different Courses</p>
</div>
</div>
<div class="col-lg-3 col-md-6 d-md-flex align-items-md-stretch" data-aos="fade-up">
<div class="count-box">
<i class="bi bi-mortarboard-fill"></i>
<span data-purecounter-start="0" data-purecounter-end="9" data-purecounter-duration="1" class="purecounter"></span>
<p><strong>Years of Academic Experience</strong></p>
</div>
</div>
<div class="col-lg-3 col-md-6 d-md-flex align-items-md-stretch" data-aos="fade-up" data-aos-delay="100">
<div class="count-box">
<i class="bi bi-award-fill"></i>
<span data-purecounter-start="0" data-purecounter-end="2" data-purecounter-duration="1" class="purecounter"></span>
<p><strong>Full Scholarship Awards</strong></p>
</div>
</div>
<div class="col-lg-3 col-md-6 d-md-flex align-items-md-stretch" data-aos="fade-up" data-aos-delay="200">
<div class="count-box">
<i class="bi bi-file-earmark-code-fill"></i>
<span data-purecounter-start="0" data-purecounter-end="20" data-purecounter-duration="1" class="purecounter"></span>
<p><strong>Years of Coding Experience</strong>with <b>15+</b> Programming Languages</p>
</div>
</div>
<div class="col-lg-3 col-md-6 d-md-flex align-items-md-stretch" data-aos="fade-up" data-aos-delay="300">
<div class="count-box">
<i class="bi bi-coin"></i>
<span data-purecounter-start="0" data-purecounter-end="1" data-purecounter-duration="1" class="purecounter"></span>
<p><strong>Funded Research Programs</strong></p>
</div>
</div>
<div class="col-lg-3 col-md-6 d-md-flex align-items-md-stretch" data-aos="fade-up" data-aos-delay="300">
<div class="count-box">
<i class="bi bi-bookmark-star-fill"></i>
<span data-purecounter-start="0" data-purecounter-end="6" data-purecounter-duration="1" class="purecounter"></span>
<p><strong>Conference and Certificates</strong></p>
</div>
</div>
<div class="col-lg-3 col-md-6 d-md-flex align-items-md-stretch" data-aos="fade-up" data-aos-delay="300">
<div class="count-box">
<i class="bi bi-terminal-fill"></i>
<span data-purecounter-start="0" data-purecounter-end="5" data-purecounter-duration="1" class="purecounter"></span>
<p><strong>Software Projects </strong>built from scratch</p>
</div>
</div>
</div>
</div>
</section><!-- End Facts Section -->
<!-- ======= Skills Section ======= -->
<section id="skills" class="skills section-bg">
<div class="container">
<div class="section-title">
<h2>Coding Skills</h2>
<!-- <p>Lorem, ipsum dolor.</p> -->
</div>
<div class="row skills-content">
<div class="col-lg-6" data-aos="fade-up">
<div class="progress">
<span class="skill">Frontend:
<!-- <img src="assets/img/skills/css.png" alt="" > -->
<!-- <img src="assets/img/skills/html-css.png" alt="" > -->
<img src="assets/img/skills/html-css-js.png" >
<img src="assets/img/skills/sass.png" alt="" >
<img src="assets/img/skills/bootstrap.png" alt="" >
<i class="val">100%</i></span>
<div class="progress-bar-wrap">
<div class="progress-bar" role="progressbar" aria-valuenow="100" aria-valuemin="0" aria-valuemax="100"></div>
</div>
</div>
<div class="progress">
<span class="skill">
<img src="assets/img/skills/nodejs.png" alt="" >
<img src="assets/img/skills/express.png" alt="" >
<img src="assets/img/skills/angularjs.png" alt="" >
<i class="val">90%</i>
</span>
<div class="progress-bar-wrap">
<div class="progress-bar" role="progressbar" aria-valuenow="90" aria-valuemin="0" aria-valuemax="100"></div>
</div>
</div>
<div class="progress">
<span class="skill">Python:
<img src="assets/img/skills/python.png" alt="" >
<img src="assets/img/skills/flask.png" alt="" >
<img src="assets/img/skills/pytorch.png" alt="" >
<i class="val">95%</i>
</span>
<div class="progress-bar-wrap">
<div class="progress-bar" role="progressbar" aria-valuenow="95" aria-valuemin="0" aria-valuemax="100"></div>
</div>
</div>
<div class="progress">
<span class="skill">Mobile:
<img src="assets/img/skills/flutter.png" alt="" >
<img src="assets/img/skills/android.png" alt="" >
<img src="assets/img/skills/swift.png" alt="" >
<img src="assets/img/skills/react_native.png" alt="" >
<i class="val">75%</i>
</span>
<div class="progress-bar-wrap">
<div class="progress-bar" role="progressbar" aria-valuenow="75" aria-valuemin="0" aria-valuemax="100"></div>
</div>
</div>
<div class="progress">
<span class="skill">Hardware:
<img src="assets/img/skills/raspberry_pi.svg" alt="">
<img src="assets/img/skills/arduino.png" alt="">
<img src="assets/img/skills/drone.png" alt="">
<i class="val">50%</i>
</span>
<div class="progress-bar-wrap">
<div class="progress-bar" role="progressbar" aria-valuenow="50" aria-valuemin="0" aria-valuemax="100"></div>
</div>
</div>
</div><!-- End of Left Colmun -->
<div class="col-lg-6" data-aos="fade-up" data-aos-delay="100">
<div class="progress">
<span class="skill">Database:
<img src="assets/img/skills/mongodb.png" alt="" >
<img src="assets/img/skills/firebease.png" alt="" >
<img src="assets/img/skills/oracle.png" alt="" width="100">
<img src="assets/img/skills/postgres.png" alt="" >
<i class="val">100%</i>
</span>
<div class="progress-bar-wrap">
<div class="progress-bar" role="progressbar" aria-valuenow="100" aria-valuemin="0" aria-valuemax="100"></div>
</div>
</div>
<div class="progress">
<span class="skill">
<img src="assets/img/skills/php.png" alt="">
<img src="assets/img/skills/laravel.png" alt="">
<img src="assets/img/skills/mysql.png" alt="">
<i class="val">65%</i>
</span>
<div class="progress-bar-wrap">
<div class="progress-bar" role="progressbar" aria-valuenow="65" aria-valuemin="0" aria-valuemax="100"></div>
</div>
</div>
<div class="progress">
<span class="skill">
<img src="assets/img/skills/javafx.png" alt="">
<img src="assets/img/skills/gradle.png" alt="">
<img src="assets/img/skills/junit.png" alt="">
<img src="assets/img/skills/selenium.png" alt="">
<i class="val">95%</i>
</span>
<div class="progress-bar-wrap">
<div class="progress-bar" role="progressbar" aria-valuenow="95" aria-valuemin="0" aria-valuemax="100"></div>
</div>
</div>
<div class="progress">
<span class="skill">Linux:
<img src="assets/img/skills/linux.png" alt="">
<img src="assets/img/skills/kali.png" alt="">
<img src="assets/img/skills/docker.png" alt="">
<img src="assets/img/skills/git.png" alt="">
<i class="val">85%</i>
</span>
<div class="progress-bar-wrap">
<div class="progress-bar" role="progressbar" aria-valuenow="85" aria-valuemin="0" aria-valuemax="100"></div>
</div>
</div>
</div> <!-- End of left coulmn -->
</div>
</div>
</section><!-- End Skills Section -->
<!-- ======= Research Section ======= -->
<section id="research" class="research">
<div class="container mb-3 content" data-aos="fade-right">
<div class="row">
<!-- <div class="col-12 " > -->
<ul class="list-group list-group-horizontal-sm" >
<li class="list-group-item col-md-5">
<div class="d-flex">
<i class="fas fa-eye"></i>
<strong>Pattern Recognition <br></strong>
</div>
</li>
<li class="list-group-item col-md-5">
<div class="d-flex">
<i class="fas fa-language"></i>
<strong>Artificial Intelligence in<br>Natural Language Processing (NLP)<br></strong>
</div>
</li>
</ul>
<ul class="list-group list-group-horizontal-sm" >
<li class="list-group-item col-md-5">
<div class="d-flex">
<i class="fas fa-database"></i>
<strong>Machine Learning <br>(ML)</strong>
</div>
</li>
<li class="list-group-item col-md-5">
<div class="d-flex">
<i class="fas fa-network-wired"></i>
<strong>Healthcare Applications<br> </strong>
</div>
</li>
</ul>
<ul class="list-group list-group-horizontal-sm" >
<li class="list-group-item col-md-5">
<div class="d-flex">
<i class="fas fa-robot"></i>
<strong>Machine Learnint <br>(ML)</strong>
</div>
</li>
<li class="list-group-item col-md-5">
<div class="d-flex">
<i class="fas fa-laptop-medical"></i>
<strong>Healthcare Applications<br> </strong>
</div>
</li>
</ul>
<!-- </div> -->
</div>
</div>
<div class="container">
<!-- https://boxicons.com/?query=jpg -->
<div class="row">
<div class="col-lg-8 pt-4 pt-lg-0 content" data-aos="fade-left">
<h3>Research Experience & Skills</h3>
<ol>
<li>
<a class="proof_icon" href="pdf-viewer.html?url=assets/img/certs/food-abstract.pdf" target="_blank">
<i class='bx bxs-file-pdf pdf proof_icon' ></i>
<br> abstract
</a>
I am a co-author in a research funded by <b>250,000 SAR (£50,000)</b> with a research group (5 PhDs including 2 Professors) from University of Jeddah (Saudi). The research suggests a system that uses Internet Of Things (IoT) integrating with drone in Food Logistics Management(FLM). I wrote the major part of the proposal including abstract, literature review, methodology and project design. We are going to publish very soon (Augest 2022) targeting 3 articles in ISI Jornal.
</li>
<li>I am a co-author in a research that of involving dron and Crowd Management which is under proccess. </li>
<li>A research project of examining soft ear biometrics for human identification using Machine Learning. Currently, We are in the implementation phase and I am contributing the coding parts. Most probably we will publish on Feb 2023. </li>
<li>
<a class="proof_icon" href="pdf-viewer.html?url=assets/img/certs/master-abstract.pdf" target="_blank">
<i class='bx bxs-file-pdf pdf proof_icon' ></i>
</a>
<b>Master Thesis:</b> Expermimental Study of executing Database opertions using paralle computing by exploiting the Graphic Proccessor (GPU).
</li>
<li>
<a class="proof_icon" href="assets/img/certs/Symposium.jpg" target="_blank">
<i class='bx bxs-file-jpg proof_icon'></i>
</a>
<a class="proof_icon" href="pdf-viewer.html?url=assets/img/poster_tosmty.pdf" target="_blank">
<i class='bx bxs-file-pdf pdf proof_icon' ></i>
</a>
<b>Best Poster</b> award in 2nd research symposium in University of Business and Technology (UBT), Automated Configured Router For Controlling WiFi Sharing For Internet Guests. (2017)
</li>
<li>
Presenter of Workshop in How to Write Successful Proposal.
<a href="assets/img/certs/How to write a proposal.jpg" target="_blank" rel="noopener noreferrer"><b>(Click)</b> </a>
</li>
<li>
Workshop in How to Make a Scientific Poster.
<a href="assets/img/certs/How to make a Scientific Poster.jpg" target="_blank" rel="noopener noreferrer"> <b>(Click)</b> </a>
</li>
<li>
Workshop in Design Thinking in UBT.
<a href="assets/img/certs/Design Thinking.jpg" target="_blank" rel="noopener noreferrer"> <b>(Click)</b> </a>
</li>
<li>
Workshop in LEAN Startup Methodology in UBT.
<a href="assets/img/certs/Lean Methodology.jpg" target="_blank" rel="noopener noreferrer"> <b>(Click)</b> </a>
</li>
</ol>
</div>
</div>
</div>
</section><!-- End Research Section -->
<!-- ======= Resume Section ======= -->
<section id="resume" class="resume">
<div class="container">
<div class="section-title">
<h2>Resume</h2>
<!-- <p>Lorem, ipsum dolor.</p> -->
</div>
<div class="row">
<div class="col-lg-6" data-aos="fade-up">
<h3 class="resume-title">Education</h3>
<div class="resume-item">
<h5>2022 - Present: Progressing PhD Course in Computer Science</h5>
<p><em>The University of Sheffield, UK</em></p>
<p> PhD student working on Machine Learning (ML) and Deep Learning (DL) in <b>Natual Language Processing (NLP)</b> and Information Retrieva (IR) <br>
My research topic helps many researchers specially who are in medical fields to achieve thier Systematic Review task in a faster way by the hlep of the Machine Learning. </p>
</div>
<div class="resume-item">
<h5>2009 - 20012: Master of Engineering & Computer Science</h5>
<!-- <h4>Master of Engineering & Computer Science</h4> -->
<p><em>Nara Institute of Science and Technology (NAIST), Japan</em></p>
<p> <b>30</b> Credit hours including Master desertation. Master thieses was about execute Database opertions using paralle computing by exploiting the Graphic Proccessor (GPU).</p>
</div>
<div class="resume-item">
<!-- <h4>Bachelor of Computer Engineering</h4> -->
<h5 class="expandable">2001 - 2006: Bachelor of Computer Engineering</h5>
<div>
<p><em>Umm Al-Qura University (UQU), Makkah, Saudi Arabia</em></p>
<p> <b>165</b>Credit hours in Computer Engineering including many Hardware courses in Computer Archiecture, Computer Design, Networking, and Robotics, as well as Software courses such as Programming, Database, and web development.</p>
</div>
</div>
<h3 class="resume-title">Achievments</h3>
<div class="resume-item">
<h4 class="expandable">2020: Online Store </h4>
<!-- <h5>2020</h5> -->
<p><em>A solution of online store system build from scratch using Python-Flask framework integrated with MySQL. The system includes administration panel to manage different type of users, products, reports, and history log.</em></p>
</div>
<div class="resume-item">
<h4 class="expandable">2019: E-learning System for CLOs & PLOs </h4>
<!-- <h5>2019</h5> -->
<p><em>A solution of e-learning system that computerizing the Course Learning Outcome (CLO) assessments. It built with the respect of ABET & NCAAA accreditation framework.</em></p>
</div>
<div class="resume-item">
<h4 class="expandable">2018: Machine Learning (ML)</h4>
<!-- <h5>2018</h5> -->
<p><em>A prototype of automated door locking system using machine learning (ML) of facial recognition. Machine is learned using tenswer flow model.</em></p>
</div>
<div class="resume-item">
<h4 class="expandable">2018: Reverse Engineering</h4>
<!-- <h5>2018</h5> -->
<p><em>A task of merging database system that is distributed in two versions in two separate data centers. This is a took a year of reverse engineering analysis plus 2 months of task implementation.</em></p>
</div>
<div class="resume-item">
<h5 class="expandable">2016: E-learning System for Quizzes</h5>
<!-- <h5>2016</h5> -->
<p><em>A solution E-learning system dedicated for Academic Institutes where assisting them to computerize exams sheets over network using clients-server technique. The system is flexible, reliable, customizable, and applicable for many alternative exam styles.</em></p>
</div>
</div><!-- end of right side -->
<div class="col-lg-6" data-aos="fade-up" data-aos-delay="100">
<h3 class="resume-title">Professional Experience</h3>
<div class="resume-item">
<!-- <h4>Software Engineering (SE) Lecturer & Developer</h4> -->
<h5 class="expandable">2019 - 2023: Freelancer in Mobile & Web Develpment</h5>
<div>
<ul>
<li>Achieved many small and intermediate software projects related to web and mobile development using Laravel, Python, Flask, Django, and others.</li>
<li>Lead online software team using professional software code management tools such as Github.</li>
<li>Worked as a DevOps consultant.</li>
</ul>
</div>
</div>
<div class="resume-item">
<!-- <h4>Software Engineering (SE) Lecturer & Developer</h4> -->
<h5 class="expandable">2013 - 2022: Software Engineering (SE) Lecturer</h5>
<div>
<p><em>University of Business and Technology (UBT), Jeddah, Saudi Arabia</em></p>
<ul>
<li>Teaching 30+ different courses related to SE including Programming, Databases, Web & Mobile Develpment and others.</li>
<li>Couching student to participate in many programming competitions (Hackathons) locally and internationally such as IEEEXtreme Competition.</li>
</ul>
</div>
</div>
<div class="resume-item">
<!-- <h4>Software Engineering (SE) Lecturer & Developer</h4> -->
<h5 class="expandable">2013 - 2022: Developer (Part-time)</h5>
<div>
<p><em>University of Business and Technology (UBT), Jeddah, Saudi Arabia</em></p>
<ul>
<li>Creating IT solutions including creating an academic quality system for accreditation.</li>
<li>Merging two duplicated database systems into single centeral data center.</li>
</ul>
</div>
</div>
<div class="resume-item">
<!-- <h4>Director of Innovation Center</h4> -->
<h5 class="expandable">2016 - 2021: Director of Innovation Center </h5>
<div>
<p><em>University of Business and Technology (UBT), Jeddah, Saudi Arabia</em></p>
<ul>
<li>
<a class="proof_icon" href="pdf-viewer.html?url=assets/img/certs/hackathon-makkah.pdf" target="_blank" >
<i class='bx bxs-file-pdf pdf proof_icon' ></i>
</a>
Supervising Participants in Hackathon Jeddah for Programming and AI 2021
</li>
<li>
<a class="proof_icon" href="pdf-viewer.html?url=assets/img/certs/IEEEXtream-10.0-2016-certificate.pdf" target="_blank">
<i class='bx bxs-file-pdf pdf proof_icon' ></i>
</a>
<a class="proof_icon" href="pdf-viewer.html?url=assets/img/certs/IEEEXtreme-12.0-2018.pdf" target="_blank" >
<i class='bx bxs-file-pdf pdf proof_icon' ></i>
</a>
Trainer for Participating in IEEEXtreme Programming Competition. 2016 and 2018. We have achieved a competable socre (3rd over Saudi)
</li>
</ul>
</div>
</div>
<div class="resume-item">
<!-- <h4>Database developer (ORACLE)</h4> -->
<h5 class="expandable">2014 - 2016: Database developer (ORACLE)</h5>
<div>
<p><em>Umm-Alqura Unicersity, IT Center, Makkah, Saudi Arabia</em></p>
<ul>
<li>Working on ERP system and advising HR system</li>
<li>Developing Database & Web integration</li>
</ul>
</div>
</div>
<div class="resume-item">
<!-- <h4>Solution Analyst</h4> -->
<h5 class="expandable">2013 - 2014: Solution Analyst</h5>
<div>
<p><em>GAMA software development organization</em></p>
<ul>
<li>Decision maker and analyst of software requirements</li>
<li>Software Quality Testing and Evaluation</li>
</ul>
</div>
</div>
<div class="resume-item">
<!-- <h4>Business Developer </h4> -->
<h5 class="expandable">2013 - 2014: Business Developer </h5>
<div>
<p><em>IT department in United Naghi Co. Ltd</em></p>
<ul>
<li>Implementing full-stack project of workflow system</li>
</ul>
</div>
</div>
<div class="resume-item">
<!-- <h4>Part-time job as a Programmer & Web developer</h4> -->
<h5 class="expandable">2008 - 2010: Part-time job as a Programmer & Web developer</h5>
<p><em>FAL company,</em></p>
</div>
</div>
</div>
</div>
</section><!-- End Resume Section -->
<!-- ======= Portfolio Section ======= -->
<!-- <section id="portfolio" class="portfolio section-bg">
<div class="container">
<div class="section-title">
<h2>Portfolio</h2>
<p>Magnam dolores commodi suscipit. Necessitatibus eius consequatur ex aliquid fuga eum quidem. Sit sint consectetur velit. Quisquam quos quisquam cupiditate. Et nemo qui impedit suscipit alias ea. Quia fugiat sit in iste officiis commodi quidem hic quas.</p>
</div>
<div class="row" data-aos="fade-up">
<div class="col-lg-12 d-flex justify-content-center">
<ul id="portfolio-flters">
<li data-filter="*" class="filter-active">All</li>
<li data-filter=".filter-app">App</li>
<li data-filter=".filter-card">Card</li>
<li data-filter=".filter-web">Web</li>
</ul>
</div>
</div>
<div class="row portfolio-container" data-aos="fade-up" data-aos-delay="100">
<div class="col-lg-4 col-md-6 portfolio-item filter-app">
<div class="portfolio-wrap">
<img src="assets/img/portfolio/portfolio-1.jpg" class="img-fluid" alt="">
<div class="portfolio-links">
<a href="assets/img/portfolio/portfolio-1.jpg" data-gallery="portfolioGallery" class="portfolio-lightbox" title="App 1"><i class="bx bx-plus"></i></a>
<a href="portfolio-details.html" title="More Details"><i class="bx bx-link"></i></a>
</div>
</div>
</div>
<div class="col-lg-4 col-md-6 portfolio-item filter-web">
<div class="portfolio-wrap">
<img src="assets/img/portfolio/portfolio-2.jpg" class="img-fluid" alt="">
<div class="portfolio-links">
<a href="assets/img/portfolio/portfolio-2.jpg" data-gallery="portfolioGallery" class="portfolio-lightbox" title="Web 3"><i class="bx bx-plus"></i></a>
<a href="portfolio-details.html" title="More Details"><i class="bx bx-link"></i></a>
</div>
</div>
</div>
<div class="col-lg-4 col-md-6 portfolio-item filter-app">
<div class="portfolio-wrap">
<img src="assets/img/portfolio/portfolio-3.jpg" class="img-fluid" alt="">
<div class="portfolio-links">
<a href="assets/img/portfolio/portfolio-3.jpg" data-gallery="portfolioGallery" class="portfolio-lightbox" title="App 2"><i class="bx bx-plus"></i></a>
<a href="portfolio-details.html" title="More Details"><i class="bx bx-link"></i></a>
</div>
</div>
</div>
<div class="col-lg-4 col-md-6 portfolio-item filter-card">
<div class="portfolio-wrap">
<img src="assets/img/portfolio/portfolio-4.jpg" class="img-fluid" alt="">
<div class="portfolio-links">
<a href="assets/img/portfolio/portfolio-4.jpg" data-gallery="portfolioGallery" class="portfolio-lightbox" title="Card 2"><i class="bx bx-plus"></i></a>
<a href="portfolio-details.html" title="More Details"><i class="bx bx-link"></i></a>
</div>
</div>
</div>
<div class="col-lg-4 col-md-6 portfolio-item filter-web">
<div class="portfolio-wrap">
<img src="assets/img/portfolio/portfolio-5.jpg" class="img-fluid" alt="">
<div class="portfolio-links">
<a href="assets/img/portfolio/portfolio-5.jpg" data-gallery="portfolioGallery" class="portfolio-lightbox" title="Web 2"><i class="bx bx-plus"></i></a>
<a href="portfolio-details.html" title="More Details"><i class="bx bx-link"></i></a>
</div>
</div>
</div>
<div class="col-lg-4 col-md-6 portfolio-item filter-app">
<div class="portfolio-wrap">
<img src="assets/img/portfolio/portfolio-6.jpg" class="img-fluid" alt="">
<div class="portfolio-links">
<a href="assets/img/portfolio/portfolio-6.jpg" data-gallery="portfolioGallery" class="portfolio-lightbox" title="App 3"><i class="bx bx-plus"></i></a>
<a href="portfolio-details.html" title="More Details"><i class="bx bx-link"></i></a>
</div>
</div>
</div>
<div class="col-lg-4 col-md-6 portfolio-item filter-card">
<div class="portfolio-wrap">
<img src="assets/img/portfolio/portfolio-7.jpg" class="img-fluid" alt="">
<div class="portfolio-links">
<a href="assets/img/portfolio/portfolio-7.jpg" data-gallery="portfolioGallery" class="portfolio-lightbox" title="Card 1"><i class="bx bx-plus"></i></a>
<a href="portfolio-details.html" title="More Details"><i class="bx bx-link"></i></a>
</div>
</div>
</div>
<div class="col-lg-4 col-md-6 portfolio-item filter-card">
<div class="portfolio-wrap">
<img src="assets/img/portfolio/portfolio-8.jpg" class="img-fluid" alt="">
<div class="portfolio-links">
<a href="assets/img/portfolio/portfolio-8.jpg" data-gallery="portfolioGallery" class="portfolio-lightbox" title="Card 3"><i class="bx bx-plus"></i></a>
<a href="portfolio-details.html" title="More Details"><i class="bx bx-link"></i></a>
</div>
</div>
</div>
<div class="col-lg-4 col-md-6 portfolio-item filter-web">
<div class="portfolio-wrap">
<img src="assets/img/portfolio/portfolio-9.jpg" class="img-fluid" alt="">
<div class="portfolio-links">
<a href="assets/img/portfolio/portfolio-9.jpg" data-gallery="portfolioGallery" class="portfolio-lightbox" title="Web 3"><i class="bx bx-plus"></i></a>
<a href="portfolio-details.html" title="More Details"><i class="bx bx-link"></i></a>
</div>
</div>
</div>
</div>
</div>
</section>End Portfolio Section -->
<!-- ======= Services Section ======= -->
<!-- <section id="services" class="services">
<div class="container">
<div class="section-title">
<h2>Services</h2>
<p>Magnam dolores commodi suscipit. Necessitatibus eius consequatur ex aliquid fuga eum quidem. Sit sint consectetur velit. Quisquam quos quisquam cupiditate. Et nemo qui impedit suscipit alias ea. Quia fugiat sit in iste officiis commodi quidem hic quas.</p>
</div>
<div class="row">
<div class="col-lg-4 col-md-6 icon-box" data-aos="fade-up">
<div class="icon"><i class="bi bi-briefcase"></i></div>
<h4 class="title"><a href="">Lorem Ipsum</a></h4>
<p class="description">Voluptatum deleniti atque corrupti quos dolores et quas molestias excepturi sint occaecati cupiditate non provident</p>
</div>
<div class="col-lg-4 col-md-6 icon-box" data-aos="fade-up" data-aos-delay="100">
<div class="icon"><i class="bi bi-card-checklist"></i></div>
<h4 class="title"><a href="">Dolor Sitema</a></h4>
<p class="description">Minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat tarad limino ata</p>
</div>
<div class="col-lg-4 col-md-6 icon-box" data-aos="fade-up" data-aos-delay="200">
<div class="icon"><i class="bi bi-bar-chart"></i></div>
<h4 class="title"><a href="">Sed ut perspiciatis</a></h4>
<p class="description">Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur</p>
</div>
<div class="col-lg-4 col-md-6 icon-box" data-aos="fade-up" data-aos-delay="300">
<div class="icon"><i class="bi bi-binoculars"></i></div>
<h4 class="title"><a href="">Magni Dolores</a></h4>
<p class="description">Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum</p>
</div>
<div class="col-lg-4 col-md-6 icon-box" data-aos="fade-up" data-aos-delay="400">
<div class="icon"><i class="bi bi-brightness-high"></i></div>
<h4 class="title"><a href="">Nemo Enim</a></h4>
<p class="description">At vero eos et accusamus et iusto odio dignissimos ducimus qui blanditiis praesentium voluptatum deleniti atque</p>
</div>
<div class="col-lg-4 col-md-6 icon-box" data-aos="fade-up" data-aos-delay="500">
<div class="icon"><i class="bi bi-calendar4-week"></i></div>
<h4 class="title"><a href="">Eiusmod Tempor</a></h4>
<p class="description">Et harum quidem rerum facilis est et expedita distinctio. Nam libero tempore, cum soluta nobis est eligendi</p>
</div>
</div>
</div>
</section>-->
<!-- End Services Section -->
<!-- ======= Testimonials Section ======= -->
<section id="testimonials" class="testimonials section-bg">
<div class="container">
<div class="section-title">
<h2>Testimonials</h2>
<!-- <p>Lorem, ipsum dolor.</p> -->
</div>
<div class="testimonials-slider swiper" data-aos="fade-up" data-aos-delay="100">
<div class="swiper-wrapper">
<div class="swiper-slide">
<div class="testimonial-item" data-aos="fade-up" data-aos-delay="300">
<p>
<i class="bx bxs-quote-alt-left quote-icon-left"></i>
He mainly worked alone and created a test bed system by himself. It means that he is suited to be a researcher. In addition, he is bright and has enthusiasm not only for his research theme but also for other related areas, such as fundamental algorithm design and parallel processing with GPGPU. (2012)
<i class="bx bxs-quote-alt-right quote-icon-right"></i>
<a href="pdf-viewer.html?url=assets/img/testimonials/miyazaki-letter.pdf" target="_blank">
<i class='bx bxs-file-pdf pdf' ></i>
</a>
</p>
<img src="assets/img/testimonials/miyazaki.jpg" class="testimonial-img" alt="">
<h3>Professor Jun Miyazaki</h3>
<h4>School of Information Science</h4>
</div>
</div>
<!-- End testimonial item -->
<div class="swiper-slide">
<div class="testimonial-item" data-aos="fade-up">
<p>
<i class="bx bxs-quote-alt-left quote-icon-left"></i>
Mr. Alfattany is a talented person. He is intelligent and hardworking. Moreover, he tries to do the assigned job as perfectly as possible. I have no hesitation in strongly recommending him for higher studies. I am confident he would perform quite well in his graduate studies. (2007)
<i class="bx bxs-quote-alt-right quote-icon-right"></i>
<a href="pdf-viewer.html?url=assets/img/testimonials/khalid-letter.pdf" target="_blank">
<i class='bx bxs-file-pdf pdf' ></i>
</a>
</p>
<img src="assets/img/testimonials/khalid.jpg" class="testimonial-img" alt="">
<h3>Dr. Khalid Alhindi</h3>
<h4>Head of Computer Eng. Dept.</h4>
</div>
</div>
<!-- End testimonial item -->
<div class="swiper-slide">
<div class="testimonial-item" data-aos="fade-up" data-aos-delay="200">
<p>
<i class="bx bxs-quote-alt-left quote-icon-left"></i>
Sami is an ambitious student and eager to learn, he applies his analytical skills to his work, something that is evident in his questions during and after lectures. Sami's excellent programming skills are visible is all the projects that he submitted, especially in MATLAB and C++. (2007)
<i class="bx bxs-quote-alt-right quote-icon-right"></i>
<a href="pdf-viewer.html?url=assets/img/testimonials/anas-letter.pdf" target="_blank">
<i class='bx bxs-file-pdf pdf' ></i>
</a>
</p>
<img src="assets/img/testimonials/anas.jpeg" class="testimonial-img" alt="">
<h3>Dr. Anas Basalamah</h3>
<h4>Assistant Professor</h4>
</div>
</div>
<!-- End testimonial item -->
<div class="swiper-slide">
<div class="testimonial-item" data-aos="fade-up" data-aos-delay="100">
<p>
<i class="bx bxs-quote-alt-left quote-icon-left"></i>
Mr. Sami Alfattany is a hard worker student. I found him a conscientious, keen and energetic young man. I am confident that, given proper opportunity, he will do well in any place. (2007)
<i class="bx bxs-quote-alt-right quote-icon-right"></i>
<a href="pdf-viewer.html?url=assets/img/testimonials/hamza-letter.pdf" target="_blank">
<i class='bx bxs-file-pdf pdf' ></i>
</a>
</p>
<img src="assets/img/testimonials/hamza.jpg" class="testimonial-img" alt="">
<h3>Dr. Hamzah Ghulman</h3>
<h4>Vise Dean, Collage of Eng.</h4>
</div>
</div><!-- End testimonial item -->
</div>
<div class="swiper-pagination"></div>
</div>
</div>
</section><!-- End Testimonials Section -->
<!-- ======= Contact Section ======= -->
<section id="contact" class="contact">
<div class="container">
<div class="section-title">
<h2>Contact</h2>
<p></p>
</div>
<div class="row" data-aos="fade-in">
<div class="col-lg-5 d-flex align-items-stretch">
<div class="info">
<div class="address">
<i class="bi bi-geo-alt"></i>
<h4>Location:</h4>
<p>Apartment 30, Atlantic One, 16 St. Georges Close <br>
Sheffield, S3 7AN <br>
United Kingdom</p>
</div>
<div class="email">
<i class="bi bi-envelope"></i>
<h4>Email: </h4>
<p><a href="mailto:sami_alfattani@hotmail.com">sami_alfattani@hotmail.com</a></p>
</div>
<div class="phone">
<i class="bi bi-phone"></i>
<h4>Call:</h4>
<p>
<a href="tel:+44 74 127 80808">+44 74 127 80808</a> <br>
<a href="tel:+966 5645 99 127">+966 5645 99 127</a>
<a href="https://wa.me/+966564599127">
<img src="assets/img/whatsapp.png" height="30" width="30">
</a>
</p>
</div>
<!-- width="600" height="450" -->
<iframe height="350" style="border:0;" allowfullscreen="" loading="lazy" src="https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d1888.7880280868887!2d-1.4813829942965384!3d53.384005966104475!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x0%3A0xd89c4c4465eced12!2sAtlantic%20One!5e0!3m2!1sen!2ssa!4v1645111900896!5m2!1sen!2ssa" ></iframe>
</div>
</div>
<script src="https://smtpjs.com/v3/smtp.js"></script>
<div class="col-lg-7 mt-5 mt-lg-0 d-flex align-items-stretch">
<form id="frm_email" method="POST" class="php-email-form" onsubmit="return sendEmail()">
<div class="row">
<div class="form-group col-md-6">
<label for="name">Your Name</label>
<input type="text" name="name" class="form-control" id="name" required>
</div>
<div class="form-group col-md-6">
<label for="name">Your Email</label>
<input type="email" class="form-control" name="email" id="email" required>