-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.html
More file actions
1112 lines (1077 loc) · 60.6 KB
/
index.html
File metadata and controls
1112 lines (1077 loc) · 60.6 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 name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no" />
<meta name="description" content="" />
<meta name="author" content="" />
<title>Chaudhary Hamdan - Data Scientist | Flutter Developer</title>
<link rel="icon" type="image/x-icon" href="assets/img/favicon.ico" />
<!-- Font Awesome icons (free version)-->
<script src="https://use.fontawesome.com/releases/v5.15.1/js/all.js" crossorigin="anonymous"></script>
<!-- Google fonts-->
<link href="https://fonts.googleapis.com/css?family=Montserrat:400,700" rel="stylesheet" type="text/css" />
<link href="https://fonts.googleapis.com/css?family=Droid+Serif:400,700,400italic,700italic" rel="stylesheet"
type="text/css" />
<link href="https://fonts.googleapis.com/css?family=Roboto+Slab:400,100,300,700" rel="stylesheet" type="text/css" />
<!-- Core theme CSS (includes Bootstrap)-->
<link href="css/styles.css" rel="stylesheet" />
</head>
<body id="page-top">
<!-- Navigation-->
<nav class="navbar navbar-expand-lg navbar-dark fixed-top" id="mainNav">
<div class="container">
<a class="navbar-brand js-scroll-trigger" href="#page-top"><img src="assets/img/navbar-logo.png" alt=""
width="150px" /></a>
<button class="navbar-toggler navbar-toggler-right" type="button" data-toggle="collapse"
data-target="#navbarResponsive" aria-controls="navbarResponsive" aria-expanded="false"
aria-label="Toggle navigation">
Menu
<i class="fas fa-bars ml-1"></i>
</button>
<div class="collapse navbar-collapse" id="navbarResponsive">
<ul class="navbar-nav text-uppercase ml-auto">
<li class="nav-item"><a class="nav-link js-scroll-trigger" href="#experiences">Experiences</a></li>
<li class="nav-item"><a class="nav-link js-scroll-trigger" href="#reach">Reach me</a></li>
<li class="nav-item"><a class="nav-link js-scroll-trigger" href="#skills">Skills</a></li>
<li class="nav-item"><a class="nav-link js-scroll-trigger" href="#tools">Tools</a></li>
<li class="nav-item"><a class="nav-link js-scroll-trigger" href="#projects">Projects</a></li>
<li class="nav-item"><a class="nav-link js-scroll-trigger" href="#certifications">Certifications</a></li>
<li class="nav-item"><a class="nav-link js-scroll-trigger" href="#education">Education</a></li>
<li class="nav-item"><a class="nav-link js-scroll-trigger" href="#interests">Interests</a></li>
<li class="nav-item"><a class="nav-link js-scroll-trigger" href="#hireme">Hire Me</a></li>
</ul>
</div>
</div>
</nav>
<!-- Masthead-->
<header class="masthead">
<div class="container">
<div class="masthead-heading text-uppercase" style="background: #80ff00; color: black; ">
Chaudhary Hamdan
</div>
<div class="masthead-subheading">
<p style="color:#ff0000;background: #000000">
<marquee>
Automation Developer Intern at AKON group of Industries | Winner of SMARK HACKS penultimate round by IITK | R&D intern at Samsung, India | Teaching Assistant at Coding Blocks | Driven Data Scientist | Machine Learning | Deep Learning | Flutter Developer | 5 ⭐ Coder at Codechef | Web Automation | Webapp Developer
</marquee>
</p>
</div>
<div class="masthead-subheading" style="background: white;">
<h6 style="color:black;">Driven Data Science and Flutter app dev Intern ready to thrive in demanding digital Intelligence processing and professional Android - IOS app dev environments. Well-informed on latest machine learning and flutter advancements. Ready to combine tireless hunger for new skills with desire to exploit cutting-edge data science and flutter technology.
Solving real-time problems, big-data and taking the best insights from raw data and designing the app catchy apps with ML at backend are some of the strengths.</h6>
</div>
<a class="btn btn-primary btn-xl text-uppercase js-scroll-trigger" href="#experiences">Know Me More</a>
</div>
</header>
<!-- Experiences -->
<section class="page-section" id="experiences">
<div class="container">
<div class="text-center">
<h2 class="section-heading text-uppercase">Experiences</h2>
<h3 class="section-subheading text-muted">My Learning and Student career Experiences.</h3>
</div>
<ul class="timeline">
<li class="timeline-inverted">
<div class="timeline-image"><a href="https://www.linkedin.com/posts/chaudhary-hamdan-34ab5b1a6_winner-smarthacks-iitk-activity-6822163539097116672-iorT"><img class="rounded-circle img-fluid" src="assets/img/about/-1.png"
alt="" /></a></div>
<div class="timeline-panel">
<div class="timeline-heading">
<h4>July, 2021</h4>
<h4 class="subheading">Winner of the penultimate round, SMART HACKS, IITK Kanpur</h4>
</div>
<div class="timeline-body">
<p class="text-muted">
<ul>
<li>Conducted online by IIT Kanpur in association with GFG SRMGPC.</li>
<li>Final round at IIT Kanpur.</li>
</ul>
</p>
</div>
</div>
</li>
<li>
<div class="timeline-image"><a href="https://www.linkedin.com/posts/chaudhary-hamdan-34ab5b1a6_offered-paid-internship-activity-6814608701840773120-guln"><img class="rounded-circle img-fluid" src="assets/img/about/0.jpg"
alt="" /></a></div>
<div class="timeline-panel">
<div class="timeline-heading">
<h4>July 2021 - Present</h4>
<h4 class="subheading">Automation Developer Intern, AKON GROUP OF INDUSTRIES</h4>
</div>
<div class="timeline-body">
<p class="text-muted">
<ul>
<li>Paid Internship for ML role in MNC.</li>
<li>Worked on Real world project.</li>
<li>Self Driving Car project.</li>
</ul>
</p>
</div>
</div>
</li>
<li class="timeline-inverted">
<div class="timeline-image"><a href="https://www.linkedin.com/posts/chaudhary-hamdan-34ab5b1a6_samsung-prism-opportunity-activity-6800436885073256448-iYQr"><img class="rounded-circle img-fluid" src="assets/img/about/1.png"
alt="" /></a></div>
<div class="timeline-panel">
<div class="timeline-heading">
<h4>Jun, 2021 - Present</h4>
<h4 class="subheading">Research & Development Intern, Samsung India</h4>
</div>
<div class="timeline-body">
<p class="text-muted">
<ul>
<li>Samsung Prism Clearance with all three Solutions Accepted.</li>
<li>Got a real time project.</li>
</ul>
</p>
</div>
</div>
</li>
<li>
<div class="timeline-image"><a href="https://www.linkedin.com/posts/chaudhary-hamdan-34ab5b1a6_first-internship-grip-activity-6805699020737060864-siHd"><img class="rounded-circle img-fluid" src="assets/img/about/2.png"
alt="" /></a></div>
<div class="timeline-panel">
<div class="timeline-heading">
<h4>May 2021 - Jun 2021</h4>
<h4 class="subheading">Computer Vision Intern, The Sparks Foundation</h4>
</div>
<div class="timeline-body">
<p class="text-muted">
<ul>
<li>Outstanding Contribution Certificate.</li>
<li>Internship Completion Certificate.</li>
<li>Project to extract colors from images. </li>
</ul>
</p>
</div>
</div>
</li>
<li class="timeline-inverted">
<div class="timeline-image"><a href="https://www.linkedin.com/posts/chaudhary-hamdan-34ab5b1a6_teachingabrassistantabrinternship-cpp-official-activity-6802152439974834176-6zb8"><img class="rounded-circle img-fluid" src="assets/img/about/3.jpg"
alt="" /></a></div>
<div class="timeline-panel">
<div class="timeline-heading">
<h4>May 2021 - Present</h4>
<h4 class="subheading">Paid Teaching Assistant, Coding Blocks</h4>
</div>
<div class="timeline-body">
<p class="text-muted">
<ul>
<li>C++, DSA batch for working professional.</li>
<li>Guiding them and solving doubts.</li>
<li>Stipend is secret shhhh : ). </li>
</ul>
</p>
</div>
</div>
</li>
<li>
<div class="timeline-image"><img class="rounded-circle img-fluid" src="assets/img/about/2.jpg"
alt="" /></div>
<div class="timeline-panel">
<div class="timeline-heading">
<h4>May 2021</h4>
<h4 class="subheading">SGPA calc app and Github Bot
</h4>
</div>
<div class="timeline-body">
<p class="text-muted">
<ul>
<li><a href="https://github.com/hamdan-codes/github-follow-unfollow-bot">Web Automation</a> and <a href="https://all-sems-sgpa-calc.herokuapp.com/">SGPA Calc app</a>for my University Students.</li>
</ul>
</p>
</div>
</div>
</li>
<li class="timeline-inverted">
<div class="timeline-image"><a href="https://www.linkedin.com/posts/chaudhary-hamdan-34ab5b1a6_flutter-dart-kiit-activity-6806106888967647232-3cdB"><img class="rounded-circle img-fluid" src="assets/img/about/5.png"
alt="" /></a></div>
<div class="timeline-panel">
<div class="timeline-heading">
<h4>Apr 2021 - Present</h4>
<h4 class="subheading">Flutter Projects, Udemy, Anjela Yu</h4>
</div>
<div class="timeline-body">
<p class="text-muted">
<ul>
<li>Many apps for Android and IOS.</li>
<li>Through one Code Base.</li>
</ul>
</p>
</div>
</div>
</li>
<li>
<div class="timeline-image"><a href="https://www.codechef.com/users/ch_hamdan/"><img class="rounded-circle img-fluid" src="assets/img/about/6i.jpg"
alt="" /></a></div>
<div class="timeline-panel">
<div class="timeline-heading">
<h4>30 Apr - 2021</h4>
<h4 class="subheading">5 ⭐ Coder at Codechef</h4>
</div>
<div class="timeline-body">
<p class="text-muted">
<ul>
<li>After solving 5 out of 6 Questions in April Lunchtime.</li>
<li>Got a global rank of 130.</li>
<li>Achieved 5th ⭐ to show my Competitive Programming skills to land into the Gold. </li>
</ul>
</p>
</div>
</div>
</li>
<li class="timeline-inverted">
<div class="timeline-image"><a href="https://chaudharyhamdan.me/"><img class="rounded-circle img-fluid" src="assets/img/about/7.png"
alt="" /></a></div>
<div class="timeline-panel">
<div class="timeline-heading">
<h4>31 Dec - 2020</h4>
<h4 class="subheading">Build and Published my Website</h4>
</div>
<div class="timeline-body">
<p class="text-muted">
<ul>
<li>Web development experience.</li>
</ul>
</p>
</div>
</div>
</li>
<li>
<div class="timeline-image"><a href="https://www.linkedin.com/posts/chaudhary-hamdan-34ab5b1a6_github-python-programming-activity-6798565298942357504-e8Ux"><img class="rounded-circle img-fluid" src="assets/img/about/2.jpg"
alt="" /></a></div>
<div class="timeline-panel">
<div class="timeline-heading">
<h4>Jun 2020 - Present</h4>
<h4 class="subheading">Data Science Projects, Coding Blocks, India
</h4>
</div>
<div class="timeline-body">
<p class="text-muted">
<ul>
<li>Accuracy upto 99% in Project submissions.</li>
<li>Reached in top 5 students among hundreds competing there.</li>
<li>Got the Course Certificate as Certified Data Scientist. </li>
</ul>
</p>
</div>
</div>
</li>
<li class="timeline-inverted">
<div class="timeline-image"><img class="rounded-circle img-fluid" src="assets/img/about/3.jpg"
alt="" /></div>
<div class="timeline-panel">
<div class="timeline-heading">
<h4>May 2020 - Present</h4>
<h4 class="subheading">Campus Ambassador, Coding Blocks, India</h4>
</div>
<div class="timeline-body">
<p class="text-muted">
<ul>
<li>Organised Workshops for University.</li>
<li>Earned stipends for my work.</li>
</ul>
</p>
</div>
</div>
</li>
<li class="timeline-inverted">
<div class="timeline-image">
<h4>
<a href="mailto:ch.hamdan.edu@gmail.com?subject=Want%20to%20be%20a%20part%20of%20your%20journey%20Hamdan"
style="color:Black">Be Part<br />Of My<br />Journey!</a>
</h4>
</div>
</li>
</ul>
</div>
</section>
<!-- Reach-->
<section class="page-section" id="reach">
<div class="container">
<div class="text-center">
<h2 class="section-heading text-uppercase">You can reach me through : </h2>
</div>
<div class="text-center">
<a href="https://www.linkedin.com/in/chaudhary-hamdan-34ab5b1a6/">
<img align="center" alt="Hamdan's LinkedIN" width="100px" src="assets/img/contact/linkedin.png" />
</a>
<a href="https://www.instagram.com/bright_hamdan/">
<img align="center" alt="Hamdan's Instagram" width="100px" src="assets/img/contact/instagram.jpg" />
</a>
<a href="https://www.facebook.com/chaudhary.hamdan.58">
<img align="center" alt="Hamdan's Facebook" width="100px" src="assets/img/contact/facebook.png" />
</a>
<a href="http://t.me/hamdan_1905387">
<img align="center" alt="Hamdan's Telegram" width="100px" src="assets/img/contact/telegram.jpg" />
</a>
<a href="https://twitter.com/bright_hamdan">
<img align="center" alt="Hamdan's Twitter" width="100px" src="assets/img/contact/twitter.png" />
</a>
<a href="https://www.codechef.com/users/ch_hamdan">
<img align="center" alt="Hamdan's Codechef" width="100px" src="assets/img/contact/codechef.png" />
</a>
<a href="https://www.hackerrank.com/ch_hamdan_edu">
<img align="center" alt="Hamdan's Hackerrank" width="100px"
src="assets/img/contact/hackerrank.png" />
</a>
<a href="https://github.com/hamdan-codes">
<img align="center" alt="Hamdan's Github" width="100px" src="assets/img/contact/github.png" />
</a>
</a><br>
<br><br><hr>
<h2>Chaudhary Hamdan <br><br></h2>
<h3>
Parents : <br>
Mr. Hammad Ahmad (Practicing Law)<br>
Mrs. Farzana<br>
<br>
DOB : 14th August, 2000<br>
<br><br>
</h3>
<h4>2-116, Chaudharana, <br>
Raebareli - 229001,<br>
Uttar Pradesh - India.<br>
<a href="tel:+918948880356">+91-8948880356 </a><br>
<a href="mailto:ch.hamdan.edu@gmail.com?subject=Hey%20Hamdan" style="font-size: 20px">ch.hamdan.edu@gmail.com</a>
</h4>
</div>
</div>
</section>
<!-- Skills -->
<section class="page-section" id="skills">
<div class="container">
<div class="text-center">
<h2 class="section-heading text-uppercase">Skills </h2>
<h3 class="section-subheading text-muted">Enthusiastic and curious learner for life.</h3>
</div>
<div class="row text-center">
<div class="col-md-4">
<span class="fa-stack fa-4x">
<i class="fas fa-circle fa-stack-2x text-primary"></i>
<i class="fas fa-chart-line fa-stack-1x fa-inverse"></i>
</span>
<h4 class="my-3">Data Science</h4>
<p class="text-muted">A Driven Data Scientist learnt from various platforms to enhance skills to
dive in demanding digital Intelligence processing environments.Well-informed on latest machine
learning advancements. Ready to combine tireless hunger for new skills with desire to exploit
cutting-edge data science technology.</p>
</div>
<div class="col-md-4">
<span class="fa-stack fa-4x">
<i class="fas fa-circle fa-stack-2x text-primary"></i>
<i class="fas fa-mobile-alt fa-stack-1x fa-inverse"></i>
</span>
<h4 class="my-3">Flutter Developer</h4>
<p class="text-muted">Flutter is an amazing development tool for app development for Android and IOS using just one code base in Dart.<br>
I love making realtime responsive apps using different tools as cloud and firebase. And can integrate any machine learning model using as a backend for the app.</p>
</div>
<div class="col-md-4">
<span class="fa-stack fa-4x">
<i class="fas fa-circle fa-stack-2x text-primary"></i>
<i class="fas fa-code fa-stack-1x fa-inverse"></i>
</span>
<h4 class="my-3">Competitive Programming and DSA</h4>
<p class="text-muted">With a healthy understanding of basic and advanced Data Structures and with mainly all Algorithms ready to give my efforts for the well being on the planet. Also became 4 star coder on Codechef and working hard for 5th. </p>
</div>
<div class="col-md-4">
<span class="fa-stack fa-4x">
<i class="fas fa-circle fa-stack-2x text-primary"></i>
<i class="fas fa-laptop-code fa-stack-1x fa-inverse"></i>
</span>
<h4 class="my-3">Webapp Developer and<br>Web Automation</h4>
<p class="text-muted">With Python web frameworks like Flask and Django developing webapps and using it to deploy ML, DL models and some more techy apps used to drive client's attentions. Filled with latest tech advancements and looks.<br>
Web automation using bots for almost everything, I can make.Using python libraries automates bring stuffs without human efforts.</p>
</div>
<div class="col-md-4">
<span class="fa-stack fa-4x">
<i class="fas fa-circle fa-stack-2x text-primary"></i>
<i class="fas fa-database fa-stack-1x fa-inverse"></i>
</span>
<h4 class="my-3">Technical Skills</h4>
<p class="text-muted">
<table>
<tr>
<td>Python</td>
<td>★★★★★★★★★☆</td>
</tr>
<tr>
<td>Machine Learning</td>
<td>★★★★★★★★★☆</td>
</tr>
<tr>
<td>Deep Learning</td>
<td>★★★★★★★★★☆</td>
</tr>
<tr>
<td>Big Data</td>
<td>★★★★★★★★★☆</td>
</tr>
<tr>
<td>Statistics</td>
<td>★★★★★★★★★☆</td>
</tr>
<tr>
<td>Flutter/Dart</td>
<td>★★★★★★★★★☆</td>
</tr>
<tr>
<td>Firebase/AWS</td>
<td>★★★★★★★★☆☆</td>
</tr>
<tr>
<td>Data Manipulation</td>
<td>★★★★★★★★☆☆</td>
</tr>
<tr>
<td>Data Munging</td>
<td>★★★★★★★★☆☆</td>
</tr>
<tr>
<td>Problem Solving</td>
<td>★★★★★★★★☆☆</td>
</tr>
<tr>
<td>Model Deployment</td>
<td>★★★★★★★★☆☆</td>
</tr>
<tr>
<td>Flask</td>
<td>★★★★★★★★☆☆</td>
</tr>
<tr>
<td>Django</td>
<td>★★★★★★★☆☆☆</td>
</tr>
<tr>
<td>HTML-CSS</td>
<td>★★★★★★★☆☆☆</td>
</tr>
<tr>
<td>SQL/MYSQL</td>
<td>★★★★★★★☆☆☆</td>
</tr>
</table>
</p>
</div>
<div class="col-md-4">
<span class="fa-stack fa-4x">
<i class="fas fa-circle fa-stack-2x text-primary"></i>
<i class="fas fa-users fa-stack-1x fa-inverse"></i>
</span>
<h4 class="my-3">Non-Technical Skills</h4>
<p class="text-muted">
<table>
<tr>
<td>Communication Skills</td>
<td>★★★★★★★★★☆</td>
</tr>
<tr>
<td>Time Management</td>
<td>★★★★★★★★★☆</td>
</tr>
<tr>
<td>Creative Thinking</td>
<td>★★★★★★★★☆☆</td>
</tr>
<tr>
<td>Adaptability</td>
<td>★★★★★★★★☆☆</td>
</tr>
<tr>
<td>Team Work</td>
<td>★★★★★★★☆☆☆</td>
</tr>
<tr>
<td>Curiosity</td>
<td>★★★★★★★☆☆☆</td>
</tr>
</table>
</p>
</div>
</div>
</div>
</section>
<!-- Tools -->
<section class="page-section" id="tools">
<div class="container">
<div class="text-center">
<h2 class="section-heading text-uppercase">Languages I use : </h2><br>
<code><img height="100" src="https://raw.githubusercontent.com/github/explore/80688e429a7d4ef2fca1e82350fe8e3517d3494d/topics/python/python.png"></code>
<code><img height="100" src="https://raw.githubusercontent.com/github/explore/80688e429a7d4ef2fca1e82350fe8e3517d3494d/topics/dart/dart.png"></code>
<code><img height="100" src="https://raw.githubusercontent.com/github/explore/80688e429a7d4ef2fca1e82350fe8e3517d3494d/topics/java/java.png"></code>
<code><img height="100" src="https://raw.githubusercontent.com/github/explore/80688e429a7d4ef2fca1e82350fe8e3517d3494d/topics/cpp/cpp.png"></code>
<code><img height="100" src="https://raw.githubusercontent.com/github/explore/80688e429a7d4ef2fca1e82350fe8e3517d3494d/topics/html/html.png"></code>
<code><img height="100" src="https://raw.githubusercontent.com/github/explore/80688e429a7d4ef2fca1e82350fe8e3517d3494d/topics/css/css.png"></code>
<code><img height="100" src="https://raw.githubusercontent.com/github/explore/80688e429a7d4ef2fca1e82350fe8e3517d3494d/topics/javascript/javascript.png"></code>
<code><img height="100" src="https://raw.githubusercontent.com/github/explore/80688e429a7d4ef2fca1e82350fe8e3517d3494d/topics/php/php.png"></code>
<code><img height="100" src="https://raw.githubusercontent.com/github/explore/80688e429a7d4ef2fca1e82350fe8e3517d3494d/topics/sql/sql.png"></code>
<code><img height="100" src="https://raw.githubusercontent.com/github/explore/80688e429a7d4ef2fca1e82350fe8e3517d3494d/topics/mysql/mysql.png"></code>
<h2 class="section-heading text-uppercase"><br><br>Tech Tools : </h2><br>
<code><img height="100" src="https://raw.githubusercontent.com/github/explore/80688e429a7d4ef2fca1e82350fe8e3517d3494d/topics/jupyter-notebook/jupyter-notebook.png"></code>
<code><img height="100" src="https://raw.githubusercontent.com/github/explore/80688e429a7d4ef2fca1e82350fe8e3517d3494d/topics/flutter/flutter.png"></code>
<code><img height="100" src="https://raw.githubusercontent.com/github/explore/80688e429a7d4ef2fca1e82350fe8e3517d3494d/topics/firebase/firebase.png"></code>
<code><img height="100" src="https://raw.githubusercontent.com/github/explore/80688e429a7d4ef2fca1e82350fe8e3517d3494d/topics/scikit-learn/scikit-learn.png"></code>
<code><img height="100" src="https://raw.githubusercontent.com/github/explore/80688e429a7d4ef2fca1e82350fe8e3517d3494d/topics/tensorflow/tensorflow.png"></code>
<code><img height="100" src="https://raw.githubusercontent.com/github/explore/80688e429a7d4ef2fca1e82350fe8e3517d3494d/topics/flask/flask.png"></code>
<code><img height="100" src="https://raw.githubusercontent.com/github/explore/80688e429a7d4ef2fca1e82350fe8e3517d3494d/topics/django/django.png"></code>
<code><img height="100" src="https://raw.githubusercontent.com/github/explore/80688e429a7d4ef2fca1e82350fe8e3517d3494d/topics/git/git.png"></code>
<code><img height="100" src="https://raw.githubusercontent.com/github/explore/80688e429a7d4ef2fca1e82350fe8e3517d3494d/topics/ubuntu/ubuntu.png"></code>
<code><img height="100" src="https://raw.githubusercontent.com/github/explore/80688e429a7d4ef2fca1e82350fe8e3517d3494d/topics/windows/windows.png"></code>
<code><img height="100" src="https://raw.githubusercontent.com/github/explore/80688e429a7d4ef2fca1e82350fe8e3517d3494d/topics/visual-studio-code/visual-studio-code.png"></code>
<code><img height="100" src="https://raw.githubusercontent.com/github/explore/80688e429a7d4ef2fca1e82350fe8e3517d3494d/topics/terminal/terminal.png"></code>
<code><img height="100" src="https://raw.githubusercontent.com/github/explore/80688e429a7d4ef2fca1e82350fe8e3517d3494d/topics/aws/aws.png"></code>
<code><img height="100" src="https://raw.githubusercontent.com/github/explore/80688e429a7d4ef2fca1e82350fe8e3517d3494d/topics/bootstrap/bootstrap.png"></code>
<code><img height="100" src="https://raw.githubusercontent.com/github/explore/80688e429a7d4ef2fca1e82350fe8e3517d3494d/topics/linux/linux.png"></code>
<code><img height="100" src="https://raw.githubusercontent.com/github/explore/80688e429a7d4ef2fca1e82350fe8e3517d3494d/topics/sublime-text/sublime-text.png"></code>
</div>
</div>
</section>
<!-- Projects -->
<section class="page-section" id="projects">
<div class="container">
<div class="text-center">
<h2 class="section-heading text-uppercase">Projects</h2>
<h3 class="section-subheading text-muted">Some of my projects are listed below.</h3>
</div>
<div class="row text-center">
<div class="col-md-4">
<span class="fa-stack fa-4x">
<img src="assets/img/Projects/automation.jpg" height="125px">
</span>
<h4 class="my-3"><a href="https://github.com/hamdan-codes/github-follow-unfollow-bot">Github Automation Bot</a></h4>
<p class="text-muted">Automating Boring stuffs with selenium without human efforts.<br><br></p>
</div>
<div class="col-md-4">
<span class="fa-stack fa-4x">
<img src="assets/img/Projects/sgpa_calc.png" height="125px">
</span>
<h4 class="my-3"><a href="https://all-sems-sgpa-calc.herokuapp.com/">SGPA calculator Webapp</a></h4>
<p class="text-muted">SGPA Calculator app made for my University Students with the use of Flask framework and web dev.<br><br></p>
</div>
<div class="col-md-4">
<span class="fa-stack fa-4x">
<img src="assets/img/Projects/chat_app.jpg" height="125px">
</span>
<h4 class="my-3"><a href="">Flutter Chat App</a></h4>
<p class="text-muted">Chat app for Android and IOS through one code base in Dart.<br><br></p>
</div>
<div class="col-md-4">
<span class="fa-stack fa-4x">
<img src="assets/img/Projects/caption-bot.png" width="200px">
</span>
<h4 class="my-3"><a href="https://github.com/hamdan-codes/ai-image-captioning-bot">AI Caption Bot</a></h4>
<p class="text-muted">Caption bot with Machine learning integrated with Flask framework.<br><br></p>
</div>
<div class="col-md-4">
<span class="fa-stack fa-4x">
<img src="assets/img/Projects/mail-app.png" height="125px">
</span>
<h4 class="my-3"><a href="https://github.com/hamdan-codes/hamdan-flask-mail-app">Flask Easy Mail App</a></h4>
<p class="text-muted">Using inbuilt library, a mailing app without logging in to gmail or any big app.<br><br></p>
</div>
<div class="col-md-4">
<span class="fa-stack fa-4x">
<img src="assets/img/Projects/music-gen.png" width="200px">
</span>
<h4 class="my-3"><a href="https://github.com/hamdan-codes/music-generation-piano">Music Generation with Deep Learning</a></h4>
<p class="text-muted">Using NLP, automatic generation of music.<br><br></p>
</div>
<div class="col-md-4">
<span class="fa-stack fa-4x">
<img src="assets/img/Projects/face-swap.png" height="125px">
</span>
<h4 class="my-3"><a href="https://github.com/hamdan-codes/face_swap_and_capture">Face Swap using Open CV</a></h4>
<p class="text-muted">Identifies pair faces and swap them among themselves after resizing the square boxes pixels.<br><br></p>
</div>
<div class="col-md-4">
<span class="fa-stack fa-4x">
<img src="assets/img/Projects/tel-bot.png" height="125px">
</span>
<h4 class="my-3"><a href="https://github.com/hamdan-codes/bot_hamdan">Telegram AI Bot</a></h4>
<p class="text-muted">A Bot for Telegram for automatic msg and some general messages.<br><br></p>
</div>
<div class="col-md-4">
<span class="fa-stack fa-4x">
<img src="assets/img/Projects/lyrics-gen.png" width="200px">
</span>
<h4 class="my-3"><a href="">Lyrics Generation</a></h4>
<p class="text-muted">Using NLP, generation of music lyrics.<br><br></p>
</div>
<div class="col-md-4">
<span class="fa-stack fa-4x">
<img src="assets/img/Projects/snap-filter.png" height="125px">
</span>
<h4 class="my-3"><a href="">Snapchat Filter</a></h4>
<p class="text-muted">Idenify face and put some specs or something over it.<br><br></p>
</div>
<div class="col-md-4">
<span class="fa-stack fa-4x">
<img src="assets/img/Projects/automating-codechef.png" width="200px">
</span>
<h4 class="my-3"><a href="">Automating Codechef Submissions</a></h4>
<p class="text-muted">Selenium used to automate submission of a specific problem on my behalf.<br><br></p>
</div>
<div class="col-md-4">
<span class="fa-stack fa-4x">
<img src="assets/img/Projects/image-classification.png" height="125px">
</span>
<h4 class="my-3"><a href="">Image Classification</a></h4>
<p class="text-muted">Classification of images using different ML techniques.<br><br></p>
</div>
<div class="col-md-4">
<span class="fa-stack fa-4x">
<img src="assets/img/Projects/face-detect.png" width="200px">
</span>
<h4 class="my-3"><a href="">Face Detection with OpenCV</a></h4>
<p class="text-muted">Face detection from images and live video using Open CV.<br><br></p>
</div>
<div class="col-md-4">
<span class="fa-stack fa-4x">
<img src="assets/img/Projects/odd-one-out.png" height="125px">
</span>
<h4 class="my-3"><a href="https://github.com/hamdan-codes/oddOneOut">Odd One Out</a></h4>
<p class="text-muted">Odd one out in a group of words with different respects.</p>
</div>
<div class="col-md-4">
<span class="fa-stack fa-4x">
<img src="assets/img/Projects/covid-detector.png" height="125px">
</span>
<h4 class="my-3"><a href="https://github.com/hamdan-codes/covid19-detector">Covid Detector</a></h4>
<p class="text-muted">Using X-Ray images of lungs, Identifies Covid in patients.<br><br></p>
</div>
<div class="col-md-4">
<span class="fa-stack fa-4x">
<img src="assets/img/Projects/emoji-pred.png" height="125px">
</span>
<h4 class="my-3"><a href="">Emoji Prediction</a></h4>
<p class="text-muted">With words used in sentence, predicts emoji wrt mood.<br><br></p>
</div>
<div class="col-md-4">
<span class="fa-stack fa-4x">
<img src="assets/img/Projects/word-analogy.png" width="200px">
</span>
<h4 class="my-3"><a href="">Word Analogies</a></h4>
<p class="text-muted">Trains model and predicts the correct analogy.<br><br></p>
</div>
<div class="col-md-4">
<span class="fa-stack fa-4x">
<img src="assets/img/Projects/more-to-come.png" height="125px">
</span>
<h4 class="my-3"><a href="https://github.com/hamdan-codes">...</a></h4>
<p class="text-muted">Do you really need more? : (</p>
</div>
</div>
</div>
</section>
<!-- Certifications -->
<section class="page-section" id="certifications">
<div class="container">
<div class="text-center">
<h2 class="section-heading text-uppercase">Certifications</h2>
<h3 class="section-subheading text-muted">Some of the Certificates I received till now.</h3>
</div>
<div class="row text-center">
<div class="col-md-4">
<span>
<a href="https://online.codingblocks.com/app/certificates/CBOL-145412-2831">
<img src="assets/img/certificates/1.PNG" height="200px">
</a>
</span>
<h1><br></h1>
</div>
<div class="col-md-4">
<span>
<a href="https://www.linkedin.com/posts/chaudhary-hamdan-34ab5b1a6_first-internship-grip-activity-6805699020737060864-siHd">
<img src="assets/img/certificates/2.png" height="200px">
</a>
</span>
<h1><br></h1>
</div>
<div class="col-md-4">
<span>
<a href="https://www.linkedin.com/posts/chaudhary-hamdan-34ab5b1a6_linkedin-skill-certification-activity-6805848204844896256-zKTJ">
<img src="assets/img/certificates/3.PNG" height="200px">
</a>
</span>
<h1><br></h1>
</div>
<div class="col-md-4">
<span>
<a href="https://www.linkedin.com/in/chaudhary-hamdan-34ab5b1a6/">
<img src="assets/img/certificates/4.PNG" height="200px">
</a>
</span>
<h1><br></h1>
</div>
<div class="col-md-4">
<span>
<a href="https://www.udemy.com/certificate/UC-1871721f-fd4a-45ae-be72-2ffe96e69ef8/">
<img src="assets/img/certificates/5.jpg" height="200px">
</a>
</span>
<h1><br></h1>
</div>
<div class="col-md-4">
<span>
<a href="https://www.udemy.com/certificate/UC-6235acc0-2c8b-4981-b07d-653efe6213d1/">
<img src="assets/img/certificates/6.jpg" height="200px">
</a>
</span>
<h1><br></h1>
</div>
<div class="col-md-4">
<span>
<a href="https://www.udemy.com/certificate/UC-044ad1d3-9468-44cb-b028-d1aee08372fb/">
<img src="assets/img/certificates/7.jpg" height="200px">
</a>
</span>
<h1><br></h1>
</div>
<div class="col-md-4">
<span>
<a href="https://www.udemy.com/certificate/UC-3100ad9f-0609-45db-92e3-8fc2a96a408b/">
<img src="assets/img/certificates/8.jpg" height="200px">
</a>
</span>
<h1><br></h1>
</div>
<div class="col-md-4">
<span>
<a href="https://www.udemy.com/certificate/UC-e7363c5c-4bb9-4bf9-81ef-abdd938c3054/">
<img src="assets/img/certificates/9.jpg" height="200px">
</a>
</span>
<h1><br></h1>
</div>
<div class="col-md-4">
<span>
<a href="https://www.hackerrank.com/certificates/39a2638276df">
<img src="assets/img/certificates/10.png" height="200px">
</a>
</span>
<h1><br></h1>
</div>
<div class="col-md-4">
<span>
<a href="https://www.hackerrank.com/certificates/71c6201316d1">
<img src="assets/img/certificates/11.png" height="200px">
</a>
</span>
<h1><br></h1>
</div>
<div class="col-md-4">
<span>
<a href="https://www.hackerrank.com/certificates/ac7463fd111d">
<img src="assets/img/certificates/12.png" height="200px">
</a>
</span>
<h1><br></h1>
</div>
<div class="col-md-4">
<span>
<a href="https://www.hackerrank.com/certificates/97a95be90953">
<img src="assets/img/certificates/13.png" height="200px">
</a>
</span>
<h1><br></h1>
</div>
<div class="col-md-4">
<span>
<a href="https://www.hackerrank.com/certificates/9cbcc06ff322">
<img src="assets/img/certificates/14.png" height="200px">
</a>
</span>
<h1><br></h1>
</div>
<div class="col-md-4">
<span>
<a href="https://www.hackerrank.com/certificates/a038fc4b1b44">
<img src="assets/img/certificates/15.png" height="200px">
</a>
</span>
<h1><br></h1>
</div>
<div class="col-md-4">
<span>
<a href="https://www.hackerrank.com/ch_hamdan_edu">
<img src="assets/img/certificates/16.png" height="200px">
</a>
</span>
<h1><br></h1>
</div>
<div class="col-md-4">
<span>
<a href="https://www.hackerrank.com/ch_hamdan_edu">
<img src="assets/img/certificates/17.PNG" height="200px">
</a>
</span>
<h1><br></h1>
</div>
<div class="col-md-4">
<span>
<a href="https://www.hackerrank.com/ch_hamdan_edu">
<img src="assets/img/certificates/18.png" height="200px">
</a>
</span>
<h1><br></h1>
</div>
<div class="col-md-4">
<span>
<a href="https://online.codingblocks.com/app/certificates/CBOL-176455-01c5">
<img src="assets/img/certificates/19.PNG" height="200px">
</a>
</span>
<h1><br></h1>
</div>
<div class="col-md-4">
<span>
<a href="https://www.linkedin.com/posts/chaudhary-hamdan-34ab5b1a6_python-college-university-activity-6804402467468570624-OSBT">
<img src="assets/img/certificates/20.jpg" height="200px">
</a>
</span>
<h1><br></h1>
</div>
<div class="col-md-4">
<span>
<a href="https://www.linkedin.com/posts/chaudhary-hamdan-34ab5b1a6_python-learning-exam-activity-6751482297398157312-1Cmu/">
<img src="assets/img/certificates/21.PNG" height="200px">
</a>
</span>
<h1><br></h1>
</div>
<div class="col-md-4">
<span>
<a href="https://www.linkedin.com/posts/chaudhary-hamdan-34ab5b1a6_topper-third-rank-activity-6763470194070355968-JxGS/">
<img src="assets/img/certificates/22.png" height="200px">
</a>
</span>
<h1><br></h1>
</div>
<div class="col-md-4">
<span>
<a href="https://www.linkedin.com/posts/chaudhary-hamdan-34ab5b1a6_scaler-edge-apex2021-activity-6761150332887187456-XdD0/">
<img src="assets/img/certificates/23.PNG" height="200px">
</a>
</span>
<h1><br></h1>
</div>
<div class="col-md-4">
<span>
<a href="https://www.linkedin.com/posts/chaudhary-hamdan-34ab5b1a6_quite-happy-to-share-my-certificate-not-a-activity-6760190692171010049-LOVX/">
<img src="assets/img/certificates/24.PNG" height="200px">
</a>
</span>
<h1><br></h1>
</div>
</div>
</div>
</section>
<!-- Education-->
<section class="page-section" id="education">
<div class="container">
<div class="text-center">
<h2 class="section-heading text-uppercase">Education</h2>
<h3 class="section-subheading text-muted">My School and College where I become what I am today.</h3>
</div>
<ul class="timeline">
<li>
<div class="timeline-image"><a href="https://kiit.ac.in/"><img class="rounded-circle img-fluid" src="assets/img/about/6.jpg"
alt="" /></a> </div>
<div class="timeline-panel">
<div class="timeline-heading">
<h4>2019-2023 (expected)</h4>
<h4 class="subheading">UNDERGRADUATE DEGREE -<br> KIIT University, <br>Bhubaneswar, India
</h4>
</div>
<div class="timeline-body">
<p class="text-muted">
<ul>
<li>B. TECH in Computer Science (CSE).</li>
<li>Member of Technical and Non-Technical societies like ACM, etc.</li>
<li>Head of Python, CP and ML sections of Technical Society, Genesis of the University.
</li>
<li>Overall CGPA till now (3rd Sem) : <b>9.70</b></li>
<li>SGPA in First Sem : <b>9.64</b></li>
<li>2nd University Topper with <b>9.95</b> SGPA in the first year of Academic curriculum. </li>
<li>SGPA in third Sem : <b>9.52</b></li>
</ul>
</p>
</div>
</div>
</li>
<li class="timeline-inverted">
<div class="timeline-image"><a href="https://www.ryaninternational.org/"><img class="rounded-circle img-fluid" src="assets/img/about/7.jpg"
alt="" /></a></div>
<div class="timeline-panel">
<div class="timeline-heading">
<h4>2018</h4>
<h4 class="subheading">INTERMEDIATE - <br> Ryan International School, <br>Raebareli, India
</h4>
</div>
<div class="timeline-body">
<p class="text-muted">
<ul>
<li>ISC Board.</li>
<li>Stream PCM-Computer.</li>
<li>With a percentage of 80% </li>
<li>Good Career Conduct </li>
</ul>
</p>
</div>
</div>
</li>
<li>
<div class="timeline-image"><a href="https://www.ryaninternational.org/"><img class="rounded-circle img-fluid" src="assets/img/about/7.jpg"
alt="" /></a></div>
<div class="timeline-panel">
<div class="timeline-heading">
<h4>2016</h4>
<h4 class="subheading">MATRICULATION - <br> Ryan International School, <br>Raebareli, India
</h4>
</div>
<div class="timeline-body">
<p class="text-muted">
<ul>
<li>ICSE Board.</li>
<li>With a percentage of 87.6%.</li>
<li>Good Career Conduct.</li>
</ul>
</p>
</div>
</div>
</li>
<li class="timeline-inverted">
<div class="timeline-image">
<h4>
<a href="mailto:ch.hamdan.edu@gmail.com?subject=Want%20to%20be%20a%20part%20of%20your%20journey%20Hamdan"
style="color:Black">Be Part<br />Of My<br />Journey!</a>
</h4>
</div>
</li>
</ul>
</div>
</section>
<!-- My Section -->
<section class="page-section" id="mysection">
<div class="container">
<div class="text-center">
<h2 class="section-heading text-uppercase">My Section</h2>
<h3 class="section-subheading text-muted">I didn't work in team as I think in student's life its better
to gain more and more knowledge and try doing everything by myself for the sake of learning.<br>
But I have someone who always kept me motivated.</h3>
</div>
<ul class="timeline">
<li>
<div class="timeline-image"><img class="rounded-circle img-fluid" src="assets/img/papa.jpg"
alt="" /></div>
<div class="timeline-panel">
<div class="timeline-heading">
<h4>PAPA</h4>
<h4 class="subheading">Mr. Hammad Ahmad<br>Advocate by Profession</h4>
</div>
<div class="timeline-body">