-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
1271 lines (949 loc) · 54.8 KB
/
index.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
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">
<script src="https://www.gstatic.com/firebasejs/4.1.3/firebase.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/animejs/2.0.2/anime.min.js"></script>
<title>Personal Portfolio</title>
<meta content="" name="description">
<meta content="" name="keywords">
<!-- Favicons -->
<link href="assets/img/me.jpg" rel="icon">
<link href="assets/img/apple-touch-icon.png" rel="apple-touch-icon">
<link rel="stylesheet" href="https://unpkg.com/aos@next/dist/aos.css" />
<link rel="stylesheet"href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
<!-- Google Fonts -->
<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/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/remixicon/remixicon.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">
<link href="https://fonts.googleapis.com/icon?family=Material+Icons" rel="stylesheet">
<script href='https://kit.fontawesome.com/a076d05399.js' crossorigin='anonymous'></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
</head>
<!-- <script>
const firebaseConfig = {
apiKey: "AIzaSyBFm2fi238vkBaJNZCF8EX4C3sSu6b2tuQ",
authDomain: "data-store-15f74.firebaseapp.com",
databaseURL: "https://data-store-15f74-default-rtdb.firebaseio.com",
projectId: "data-store-15f74",
storageBucket: "data-store-15f74.appspot.com",
messagingSenderId: "207345801127",
appId: "1:207345801127:web:e6ce220b341f1017b30882",
measurementId: "G-51J2VRR8HK"
};
// Initialize Firebase
//const app = initializeApp(firebaseConfig);
firebase.initializeApp(firebaseConfig);
</script> -->
<body>
<!-- ======= Header ======= -->
<header id="header">
<div class="container">
<h1><a href="index.html">Ayon's Portfolio</a></h1>
<h2>I'm an undergraduate <span>CSE Engineer</span> from Bangladesh</h2>
<nav id="navbar" class="navbar">
<ul>
<li><a class="nav-link active" href="#header">Home</a></li>
<li><a class="nav-link" href="#about">About</a></li>
<li><a class="nav-link" href="#education">Education</a></li>
<li><a class="nav-link" href="#course">Course</a></li>
<li><a class="nav-link" href="#experience">Experience</a></li>
<li><a class="nav-link" href="#projects">Projects</a></li>
<li><a class="nav-link" href="#blogs">Blogs</a></li>
<li class="nav-item"><a class="nav-link" href="#contact">Contact</a></li>
</ul>
<i class="bi bi-list mobile-nav-toggle"></i>
</nav><!-- .navbar -->
<div class="social-links">
<a href="https://myaccount.google.com/" target="_new" class="google"><i class="bi bi-google"></i></a>
<a href="https://www.facebook.com/mohiuddin.bilwal" target="_new" class="facebook"><i
class="bi bi-facebook"></i></a>
<a href="https://www.instagram.com/ayon_suchok/" target="_new" class="instagram"><i
class="bi bi-instagram"></i></a>
<a href="https://www.linkedin.com/in/mohiuddin-bilwal-958a221a8/" target="_new" class="linkedin"><i
class="bi bi-linkedin"></i></a>
</div>
</div>
</header><!-- End Header -->
<!-- ======= About Section ======= -->
<section id="about" class="about">
<!-- ======= About Me ======= -->
<div class="about-me container">
<div class="section-title">
<h2>About</h2>
<p>Learn more about me</p>
</div>
<div class="row">
<div class="col-lg-4" data-aos="fade-right">
<img src="assets/img/me.jpg" class="img-fluid" alt="">
</div>
<div class="col-lg-8 pt-4 pt-lg-0 content" data-aos="fade-left">
<h3 class="about_heading">Programmer & Web Developer</h3>
<p class="fst-italic">
Hello! I'm Mohiuddin Bilwal (Ayon). I'm a student of Computer Science and Engineering.
My institution is Military Institute of Science and Technology.
My dream is to become a Software Engineer.
Recently I'm learning about various topics of competitive programming as I've a great interest with problem
solving.
Also, I've learnt about the basic concepts of Html, Css and Bootstrap of web development
Helping others is something that I prefer most if I've the ability to do so.
It's a noble work which has no regrets I think.
</p>
<div class="row">
<div class="col-lg-6">
<ul>
<li><i class="bi bi-chevron-right"></i> <strong>Birthday:</strong> <span>31 July 1999</span></li>
<li><i class="bi bi-chevron-right"></i> <strong>Website:</strong> <span>www.example.com</span></li>
<li><i class="bi bi-chevron-right"></i> <strong>Phone:</strong> <span>+88 0157111 8868</span></li>
<li><i class="bi bi-chevron-right"></i> <strong>City:</strong> <span>Dhaka, Bangladesh</span></li>
</ul>
</div>
<div class="col-lg-6">
<ul>
<li><i class="bi bi-chevron-right"></i> <strong>Age:</strong> <span>22</span></li>
<li><i class="bi bi-chevron-right"></i> <strong>Degree:</strong> <span>Bachelor of Science</span></li>
<li><i class="bi bi-chevron-right"></i> <strong>Email:</strong> <span>[email protected]</span>
</li>
<li><i class="bi bi-chevron-right"></i> <strong>Service:</strong> <span>Available</span></li>
</ul>
</div>
</div>
</div>
</div>
</div><!-- End About Me -->
<!-- ======= Counts ======= -->
<div class="counts container">
</div><!-- End Counts -->
<!-- ======= Skills ======= -->
<div class="skills container">
<div class="section-title">
<h2>Skills</h2>
</div>
<div class="row skills-content">
<div class="col-lg-6">
<div class="progress">
<span class="skill">HTML <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">CSS<i class="val">60%</i></span>
<div class="progress-bar-wrap">
<div class="progress-bar" role="progressbar" aria-valuenow="60" aria-valuemin="0" aria-valuemax="200">
</div>
</div>
</div>
<div class="progress">
<span class="skill">JavaScript <i class="val">25%</i></span>
<div class="progress-bar-wrap">
<div class="progress-bar" role="progressbar" aria-valuenow="25" aria-valuemin="0" aria-valuemax="100">
</div>
</div>
</div>
</div>
<div class="col-lg-6">
<div class="progress">
<span class="skill">Python<i class="val">45%</i></span>
<div class="progress-bar-wrap">
<div class="progress-bar" role="progressbar" aria-valuenow="45" aria-valuemin="0" aria-valuemax="100">
</div>
</div>
</div>
<div class="progress">
<span class="skill">C++<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">Photoshop <i class="val">35%</i></span>
<div class="progress-bar-wrap">
<div class="progress-bar" role="progressbar" aria-valuenow="35" aria-valuemin="0" aria-valuemax="100">
</div>
</div>
</div>
</div>
</div>
</div><!-- End Skills -->
<!-- ======= Interests ======= -->
<div class="interests container">
<div class="section-title">
<h2>Interests</h2>
</div>
<div class="row">
<div class="col-lg-3 col-md-4">
<div class="icon-box">
<span class="material-icons" style="color: gold;">sports_cricket</span>
<h3>Cricket</h3>
</div>
</div>
<div class="col-lg-3 col-md-4 mt-4 mt-md-0">
<div class="icon-box">
<span class='material-icons' style="color: #4233ff;">sports_football</span>
<h3>Football</h3>
</div>
</div>
<div class="col-lg-3 col-md-4 mt-4 mt-md-0">
<div class="icon-box">
<span class='material-icons' style="color: #e80368;"">music_note</span>
<h3>Music</h3>
</div>
</div>
<div class="col-lg-3 col-md-4 mt-4 mt-lg-0">
<div class="icon-box">
<span class='material-icons' style="color: #e361ff;">menu_book</span>
<h3>Books</h3>
</div>
</div>
<div class="col-lg-3 col-md-4 mt-4">
<div class="icon-box">
<span class='material-icons' style="color: #47aeff;">movie</span>
<h3>Movies</h3>
</div>
</div>
<div class="col-lg-3 col-md-4 mt-4">
<div class="icon-box">
<i class="bi bi-calculator-fill" style="color: #ffa76e;"></i>
<h3>Mathematics</h3>
</div>
</div>
<div class="col-lg-3 col-md-4 mt-4">
<div class="icon-box">
<i class="bi bi-code-slash"style="color: #11dbcf;"></i>
<h3>Programming</h3>
</div>
</div>
</div>
</div><!-- End Interests -->
</section><!-- End About Section -->
<!-- ======= Education Section ======= -->
<section id="education" class="education">
<div class="container">
<div class="section-title">
<h2>Education</h2>
<p>Check My Educational Background</p>
</div>
<!---- <div class="row">
<div class="col-lg-6">
<h3 class="education-title">Summary</h3>
<div class="education-item">
<h4>Secondary School Certificate</h4>
<h5>2015 - 2017</h5>
<p><em>Monipur High School and College, Dhaka</em></p>
<p>
I've completed my SSC Education from Monipur High School and College.
I've spent most of my educational life there(approximately 6 years).
I think the school moments were the golden moments of my educational career.
</p>
</div>
<div class="education-item">
<h4>Higher School Certificate</h4>
<h5>2017 - 2019</h5>
<p><em>Government Science College, Dhaka</em></p>
<p>
I've completed my HSC Education from Government Science College.
I've spent two years of my educational life there.
The time was too short to get introduced with all of my college friends.
But I've found some talentive friend circle in my college.
So, I've enjoyed my college life also.
</p>
</div>
<div class="education-item">
<h4>Bachelor of Science</h4>
<h5>2020 - Present</h5>
<p><em>Military Institute of Science and Technology, Mirpur-12, Dhaka</em></p>
<p>
I've started my Bsc life here.
At present, I'm an undergraduate CSE engineer at MIST.
Still learning and exploring new things here.
Hopefully, I'll have an awesome journey with some great enthusitists around me until my graduation.
</p>
</div>
</div>
</div> -->
<div class="row" style="flex-direction: column;">
<div class="card-group">
<div class="card" id="ghorar-dim-1">
<img class="card-img-top" style="height: 330px;" src="assets/img/MUBC-3.jpg" alt="Card image cap">
<div class="card-body">
<h5 class="card-title">Secondary School Certificate</h5>
<h5>2015-2017</h5>
<h5>Monipur High School and College, Dhaka</h5>
<p class="card-text">
<em>
I've completed my SSC Education from Monipur High School and College.
I've spent most of my educational life there(approximately 6 years).
I think the school moments were the golden moments of my educational career.
</em>
</p>
</div>
</div>
<div class="card" id="ghorar-dim-2">
<img class="card-img-top" src="assets/img/govt-science-college.jpg" style="height: 330px;"
alt="Card image cap">
<div class="card-body">
<h5 class="card-title">Higher School Certificate</h5>
<h5>2017-2019</h5>
<h5>Government Science College, Dhaka</h5>
<p class="card-text">
<em>
I've completed my HSC Education from Government Science College.
I've spent two years of my educational life there.
The time was too short to get introduced with all of my college friends.
But I've found some talentive friend circle in my college.
So, I've enjoyed my college life also.
</em>
</p>
</div>
</div>
<div class="card" id="ghorar-dim-3">
<img class="card-img-top" src="assets/img/MIST.jpg" style="height: 330px;" alt="Card image cap">
<div class="card-body">
<h5 class="card-title">Bachelor of Science</h5>
<h5>2020 - Present</h5>
<h5>Military Institute of Science and Technology, Mirpur-12, Dhaka</h5>
<p class="card-text">
<em>
I've started my Bsc life here.
At present, I'm an undergraduate CSE engineer at MIST.
Still learning and exploring new things here.
Hopefully, I'll have an awesome journey with some great enthusitists around me until my graduation.
</em>
</p>
</div>
</div>
</div>
</div>
</div>
</section><!-- End Education Section -->
<!-- ======= Course Section ======= -->
<section id="course" class="course">
<div class="courses container">
<div class="section-title">
<h2>Courses</h2>
<p>Check my Course Certificates</p>
<div class="row">
<div class="col-lg-5" data-aos="fade-right">
<img src="assets/img/Coursera1.PNG" class="img-fluid" alt="" onclick="image(this)" role="button">
</div>
<div class="col-lg-6 pt-4 pt-lg-0 content" animate__fadeIn>
<h3>Description</h3>
<p class="text-1">
The course was about how to write professional e-mails.
The method of thinking-style of people changes with different environment.
So as the art of writing e-mails also changes with the change of country.
This course gave much importance to think like the other person who would be eager to like to read my
e-mails.
Professional e-mails should be really communicative and attractive so that the reader finds it friendly
enough to communicate with the person who had written the e-mail.
Otherwise, the reader could be lost to get work with him.
</p>
</div>
<div class="col-lg-6 pt-4 pt-lg-0 content" data-aos="fade-left">
<h3>Description</h3>
<p class="text-1">
Basically,this course was taken to get introduced with Python Programming Language.
This course is very helpful for any beginner with no doubt and the fun thing is that,
a person with zero knowledge about Python can also do this course.I got to know about
various functionalities about Python and got used to it with continuous evaluation and
assignments taken through this course.The quiz which was taken at the end was very helpful
to get an overview about all the topics I had learnt through the course.Really,I had a very
interesting time while completing this course.
</p>
</div>
<div class="col-lg-5" data-aos="fade-right">
<img src="assets/img/Coursera2.PNG" class="img-fluid" alt="" onclick="image(this)" role="button">
</div>
<div class="col-lg-5" data-aos="fade-right">
<img src="assets/img/Coursera5.PNG" class="img-fluid" alt="" onclick="image(this)" role="button">
</div>
<div class="col-lg-6 pt-4 pt-lg-0 content" data-aos="fade-left">
<h3>Description</h3>
<p class="text-1">
This course combines cryptography and information theory.
More specifically, the course studies cryptography from the information-theoretical perspectives
and discuss the concepts such as entropy and the attacker knowledge capabilities, e.g., Kerckhoff's
Principle.
It also contrasts information-theoretic security and computational security to highlight the different
train of thoughts that drive the cryptographic algorithmic construction and the security analyses.
Actually,this course is a part of the Applied Cryptography specialization.
</p>
</div>
<div class="col-lg-6 pt-4 pt-lg-0 content" data-aos="fade-left">
<h3>Description</h3>
<p class="text-1">
This was my first ever online based educational course purchased form Pirple online learning platform.
I would be really greatful to them for launching this amazing course to teach web development from
scratch.
I learned basic HTML & CSS through this online platform.In fact,I made my first website by taking this
course.
It was a Facebook webpage.Though I had a tough time to launch the project but the experience I got while
making the webpage,was really amazing to conquer.
</p>
</div>
<div class="col-lg-5" data-aos="fade-right">
<img src="assets/img/Pirple.png" class="img-fluid" data-aos="fade-down" alt="" onclick="image(this)"
role="button">
</div>
<div class="col-lg-5" data-aos="fade-right">
<img src="assets/img/Coursera6.PNG" class="img-fluid" alt="" onclick="image(this)" role="button">
</div>
<div class="col-lg-6 pt-4 pt-lg-0 content" data-aos="fade-left">
<h3>Description</h3>
<p class="text-1">
Data structure topic was implemented with Python Programming language in this course. The topics
which were covered in this course was very fruitful. Principles of data structure, write and read
data from file, storing data as key/value pairs using dictionary, multi-step tasking like sorting and
looping
using tuples etc topics were covered. To know more about data structure, some resources and practice
problems
were also given. Besides, the full topics of data structure was taught by continuous algorithm and
implementing
codes, which I thought, was very beneficial.
</p>
</div>
<div class="col-lg-6 pt-4 pt-lg-0 content" data-aos="fade-left">
<h3>Description</h3>
<p class="text-1">
Another web development course purchased by me. This time, it was taken by MIST Computer Club. A good
initiative
from them. It was more advanced than the previous web development course I had taken from Pirple. Some
advanced theory
of front-end web development like Bootstrap and JavaScript were implemented in this course. How a website
can be responsive
and animations can be added were taught by coding skills. Besides, some logical concepts about Database,
Firebase and PHP were also
given by the instructors as they're very important to store data and add comment sections in a website.
</p>
</div>
<div class="col-lg-5" data-aos="fade-right">
<img src="assets/img/WEB DEVELOPMENT.png" class="img-fluid" data-aos="fade-down" alt=""
onclick="image(this)" role="button">
</div>
</div>
</div>
</div>
</section>
<!--End of Course Section-->
<!-- ======= Experience Section ======= -->
<section id="experience" class="experience">
<div class="experience container">
<div class="section-title">
<h2>Experience</h2>
<p>My Working Experiences</p>
</div>
<div class="row" style="flex-direction: column;">
<div class="card-group">
<div class="card">
<img class="card-img-top" style="height: 330px;" src="assets/img/Programming Adda.jpg" alt="Card image cap">
<div class="card-body">
<h5 class="card-title">MIST Computer Club</h5>
<p class="card-text">
<em>
I work as a mentor of Programming Adda arranged by MIST Computer Club.
Basically,I teach about some basic programming knowledge and problem solving approaches through
coding languages.The motive here is to get progressed in competitive programming through continuous
practice contests and contest <span id="dots1">...</span> <span id="more1">problems solving
sessions.</span>
</em>
<button onclick="myButtonForReadProgAdda()" id="myBtn1">Read more</button>
</p>
</div>
<div class="card-footer">
<small class="text-muted">Mentor</small>
</div>
</div>
<div class="card">
<img class="card-img-top" src="assets/img/URC.jpg" style="height: 330px;" alt="Card image cap">
<div class="card-body">
<h5 class="card-title">MIST Mongol Barota</h5>
<p class="card-text">
<em>
This is my first time where I got the opportunity to work with some enthusiastic members in a mega
event
named University Rover Challenge. Mongol Barota is a growing team of ingenious university students
from Bangladesh who give shape to their
vision of outlining, constructing and trialing advanced Mars rovers <span id="dots2">...</span><span
id="more2"> for digging out mysteries and exploring
outer space. Our team got the first position among 36 univerties of all over the world in the final
round. This
is something new experience for Bangladesh as it happened for the first time a university of
Bangladesh got this
kind of achievement. I'm really much honoured that, I got the opportunity to work with such a
dedicated and passionate team members.
I worked as a Software and Communication Team member under Shoeb Ahmed Tanjim vai who really brought
out the best out of me.
</span></em>
</em>
<button onclick="myButtonForReadURC()" id="myBtn2">Read more</button>
</p>
</div>
<div class="card-footer">
<small class="text-muted">Communication Team Member</small>
</div>
</div>
<div class="card">
<img class="card-img-top" src="assets/img/Programmer.jpg" style="height: 330px;" alt="Card image cap">
<div class="card-body">
<h5 class="card-title">Competitive Programmer</h5>
<p class="card-text">
<em>
I had a great fascination with mathematics from the school stage of my education life. I liked to
solve different types of math on and off whenever I had that chance to do. From that thought process,
I've become a competitive programmer as different types of mathematical equations and functions are
implemented here<span id="dots3">...</span> <span id="more3"> through coding skills. With the help of
some basic algorithms of Data Structure,
different types of problems can be solved. Besides, some online judge sites are available where
various types
of questions are given to practice and polish the problem solving skills as well as coding skills.
I've
participated in ICPC preliminary regional contest from the team named "MIST Nirjhor" in 2021. I also
try to solve
the contest related problems from the online judges like Codeforces,LightOj,AtCoder,VJudge
etc.</span>
</em>
<button onclick="myButtonForReadCP()" id="myBtn3">Read more</button>
</p>
</div>
<div class="card-footer">
<small class="text-muted">Contest Programmer</small>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- ======= Projects Section ======= -->
<section id="projects" class="projects">
<div class="container">
<div class="section-title">
<h2>Projects</h2>
<p>My Projects</p>
</div>
<div class="row" style="flex-direction:col;">
<div class="col-sm-4">
<div class="card" style="width: 18rem;">
<img src="assets/img/Card-1.jpg" alt="project-1" class="card-img-top" onclick="image(this)" role="button">
<div class="card-body">
<h5 class="card-title">Flower Sale</h5>
<p class="card-text">
Mother's day flower fresh sale on discount offer. Done with the help of basic Photoshop editing.
Really cool,huh!
</p>
<a href="https://github.com/ayon037/ayon037.github.io-/" target="_new" class="btn btn-primary">See Project...</a>
</div>
</div>
</div>
<div class="col-sm-4">
<div class="card" style="width: 18rem;">
<img src="assets/img/ay.PNG" alt="project-2" class="card-img-top" role="button" onclick="image(this)">
<div class="card-body">
<h5 class="card-title">Business Card</h5>
<p class="card-text">
A naive try to make a business card of my own using Adobe Illustrator. Was a good experience while
trying this.
</p>
<a href="https://github.com/ayon037/ayon037.github.io-/" target="_new" class="btn btn-primary">See Project...</a>
</div>
</div>
</div>
<div class="col-sm-4">
<div class="card" style="width: 18rem;">
<img src="assets/img/Prev-Protfolio.jpg" alt="project-3" class="card-img-top">
<div class="card-body">
<h5 class="card-title">Portfolio</h5>
<p class="card-text">
It was my first ever portfolio project made from scratch. Really,
had a fun time while doing this.
</p>
<a href="https://github.com/ayon037/Ayon-202014037.github.io" target="_new" class="btn btn-primary">See Project...</a>
</div>
</div>
</div>
<div class="col-sm-4" style="margin-top: 10px;">
<div class="card" style="width: 18rem;">
<img src="assets/img/Java.jpg" alt="project-3" class="card-img-top">
<div class="card-body">
<h5 class="card-title">Java GUI</h5>
<p class="card-text">
It is basically a group project made by the concept of Java Graphical User Interface.
Special thanks to my group mates Mahdi Mohtasim and Mahmud Hasan.
The name of the project was "Money Manager."
</p>
<a href="https://github.com/ayon037/Money_Manager" target="_new" class="btn btn-primary">See Project...</a>
</div>
</div>
</div>
</div>
</div>
</section>
<section id="blogs" class="blogs">
<div class="blogs container">
<div class="section-title">
<h2>Blogs</h2>
<p>My Blogs</p>
</div>
<div class="row">
<div class="col-lg-4 col-sm-6 mb-4" data-aos="fade-up">
<article class="card shadow" id="ghorar-dim-1">
<img class="rounded card-img-top" src="assets/img/Data Structure.jpg" alt="Data Structure">
<div class="card-body">
<h4 class="card-title"><a>ডাটা স্ট্রাকচার</a>
</h4>
<p class="cars-text">আমার প্রথম ব্লগ ডাটা স্ট্রাকচার নিয়ে। সম্পূর্ণটা বাংলা ভাষায় লেখার চেষ্টা করেছি। ডাটা স্ট্রাকচারের খুঁটিনাটি জেনে নিন এই ব্লগে...</p>
<a class="btn btn-xs btn-primary" onclick="window.open('#blogs-1', '_blank');" >Read More</a>
</div>
</article>
</div>
<div class="col-lg-4 col-sm-6 mb-4" data-aos="fade-up">
<article class="card shadow" id="ghorar-dim-1">
<img class="rounded card-img-top" src="assets/img/BFS.png" alt="BFS">
<div class="card-body">
<h4 class="card-title"><a>Breadth First Search</a>
</h4>
<p class="cars-text">Breadth First Search is one of the favourite topics of mine. You can check
about BFS from this blog if you want.
</p>
<a class="btn btn-xs btn-primary" onclick="window.open('#blogs-2', '_blank');">Read More</a>
</div>
</article>
</div>
</div>
</div>
</div>
</section>
<section id="blogs-1" class="blogs">
<div class="blogs container">
<div class="section-title">
<h2>Blogs</h2>
<p>My Blogs</p>
<h2>ডাটা স্ট্রাকচার নিয়ে কিছু কথা</h2>
</div>
<div class="row" style="flex-direction: column;" >
<img src="assets/img/Data Structure.jpg" alt="Data Structure">
<p class="para-1" style="margin-top: 10px;">
আমার এই পোর্টফলিওর এই একটি অংশই বাংলায় রাখলাম। আশা করি তোমরা কিছু মনে করবে না। অনেকদিন ধরেই ইচ্ছা ছিল
ডাটা স্ট্রাকচার নিয়ে আমার কিছু মতামত মানুষের সামনে তুলে ধরার। জানি না আমি কতটুকু এর যোগ্য, তবে কেউ যদি আমার
ব্লগ
পড়ে খানিকটাও উপকৃত হয়, তাতেই আমার স্বার্থকতা। আশা করি ফুলের কলির মতোই সুন্দর কিছু মতবাদ দিয়ে তোমাদেরকে ডাটা
স্ট্রাকচারের
মাহাত্ম্য,গুরুত্ব এবং এর প্রয়োজনীয়তা তোমাদেরকে বোঝাতে পারব।
</p>
<p>
ডাটা স্ট্রাকচার নিয়ে পড়তে গেলেই খুব কমন কোশ্চেন সবার সামনে চলে আসে যে এর ডেফিনেশন অর্থাৎ এর সংজ্ঞাটা কি? ডাটা
স্ট্রাকচার
হচ্ছে এমন একটি গাণিতিক এবং লজিক্যাল মডেল যেখানে বিভিন্ন ধরণের ডাটা সুবিন্যস্তভাবে সাজানো থাকে। সবচেয়ে সহজ
উদাহরণ হচ্ছে
কোনো ইন্সটিটিউশনের টার্ম ফাইনালের প্রাপ্ত ফলাফল। ধর, কোনো একটি বিভাগে মোট ৬০-৭০ জন শিক্ষার্থী অধ্যায়নরত আছে।
যদি প্রত্যেকের
প্রাপ্ত ফলাফল এক এক করে প্রত্যেকের কাছে আলাদাভাবে পৌঁছানো শুরু করা হয়, তাহলে সেটা মনে হয় না খুব ভালো কোনো
সলিউশন হবে।
কারণ এতে ফলাফল হারানোর এবং ভুল হবার সমূহ সম্ভাবনা থাকে। কত না ভালো হতো যদি এমন কোনো সিস্টেম থাকে যেখানে আমি
চাইলেই যেকোনো
সময় ডাটা স্টোর রাখতে পারব এবং প্রয়োজন অনুসারে সেই ডাটা আপডেটও করতে পারব। ডাটা স্ট্রাকচার এই সুযোগটা করে দেয়
যেখানে
আমি চাইলেই ডাটাসমূহ কোনো ইন্টারনাল সিস্টেমে স্টোর করে রাখতে পারি। মজার না বিষয়টা?
</p>
<p>
এই ডাটা স্টোর করা কিন্তু ডাটা স্ট্রাকচারের অন্যতম একটি এডভান্টেজ বলতে পারো। স্টোর করার এই পদ্ধতিটার নাম হচ্ছে
array.
এরে জিনিসটা হচ্ছে এমন যে এটি তোমার কম্পিউটারের ইন্টারনাল মেমোরিতে একই ধরণের ডেটা টাইপের জন্য জন্য কিছু মেমোরি
লোকেশন
এসাইন করে রাখে। আর এরের এই এলিমেন্টগুলোকে চেনা যায় তাদের ইন্ডেক্স দিয়ে। এখন এরে নিয়ে কথা বলতে গেলে
স্বাভাবিকভাবেই
ডাটা টাইপ,ইন্ডেক্স,মেমোরি এসব নিয়ে কথা চলে আসবে। যখনই তুমি কোনো ডাটা নিয়ে কথা বলতে যাবে, চিন্তা করবে যে কোন
ধরণের ডাটা নিয়ে
তুমি আসলে কথা বলতে চাচ্ছ। ছোটবেলায় তোমরা সেট নিয়ে পড়ে থাকার কথা। সেটেও কিন্তু দেখ, যখন তুমি Union অথবা
Intersection করতে
যেতে, তুমি কিন্তু একটা নির্দিষ্ট ডাটার মধ্যেই করতে যেতে। হয়তো কোনো বাস্তব সংখ্যাসমূহের সেট, হয়তো কোনো
স্বাভাবিক সংখ্যাসমূহের সেট,
হয়তো কোনো শহরের নামসমূহের সেট ইত্যাদি ইত্যাদি। এই যে তুমি যে বিভিন্ন ধরণের ডাটা নিয়ে কাজ করতে, এই বিভিন্ন
ধরণটাই হচ্ছে ডাটার বিভিন্ন
টাইপ। এখন কম্পিউটার যখন এসব বিভিন্ন ধরণের ডাটা নিয়ে কাজ করে, তো স্বাভাবিকভাবেই তার মেমোরিতে কিছু নির্দিষ্ট
পরিমাণে জায়গার
প্রয়োজন হয়,কেননা সে কিন্তু ডাটা স্টোর করছে। আশা করি মেমোরি লোকেশন আর ডাটা টাইপের এই কনসেপ্টগুলো নিয়ে তোমাদের
কিছুটা
হলেও ধারণা হয়েছে। আর ইন্ডেক্সিং হচ্ছে এমন যে মনে কর কোনো ব্যাংকের লাইনে দাঁড়ানো মানুষের সিরিয়াল। প্রথম থেকে
শেষ
মাথা পর্যন্ত কত মানুষ আছে তা সিরিয়ালি দেখা। এরের ইন্ডেক্সিংটাও এমনই। কিন্তু মনে রাখতে হবে, এরের ইন্ডেক্সিং
কিন্তু '১' থেকে নয়,
বরং '০' থেকে শুরু হয়!
</p>
<h2 class="sec-2" style="color: #18d26e;">ডাটা স্ট্রাকচারের গুরুত্ব</h2>
<p>
আচ্ছা বল তো দেখি, কোনো জিনিস গুছিয়ে রাখলে সেটা দেখতে বেশি বোধগম্য দেখায় নাকি অগোছালো রাখলে বোধগম্য দেখায়?
আশা করি তোমরাই এর গুরুত্বটা বুঝতে পারবে। ডাটা স্ট্রাকচার হচ্ছে তথ্য বা উপাত্তের সাজিয়ে কম্পিউটারের মেমোরিতে
সাজিয়ে রাখা
এবং সুবিন্যস্তভাবে সেই ডাটাগুলোর উপর বিভিন্ন ফাংশন এপ্লাই করার একটি দারুণ মেথড। ডাটা স্ট্রাকচার ডাটাগুলোর উপর
Efficient
way তে বিভিন্ন কাজ চালানোর সহজ একটি উপায়। ডাটা স্ট্রাকচার বিভিন্ন ম্যাথমেটিকাল কাজকে সহজ করে, লজিকালি বিভিন্ন
প্রবলেমকে
সহজভাবে ভাবতে সাহায্য করে। ডাটা স্ট্রাকচার শুধু ডাটা স্টোর করতেই ব্যবহৃত হয় তা কিন্তু নয়। ডাটা স্ট্রাকচার দিয়ে
তুমি সার্চ,সর্ট,ট্রাভারস
সবই করতে পারো চাইলে। এছাড়া প্রবলেম সলভিংয়ের ডাটা স্ট্রাকচার খুব দারুণ কাজ করে। এজন্য তোমাকে এলগোরিদমের বিভিন্ন
বেসিক
কনসেপ্ট শেখা প্রয়োজন যা আশা করি ভিবিষ্যতে সময় পেয়ে উঠলে আলোচনা করতে পারব। ডাটা স্ট্রাকচার অনেক বিস্তৃত একটি
এরিয়া।
ডাটা স্ট্রাকচারের বিভিন্ন টপিকের মধ্যে উল্লেখযোগ্য কিছু টপিক-
</p>
<p>
<li>স্ট্যাক(Stack)</li>
<li>কিউ(Queue)</li>
<li>লিংকড লিস্ট(Linked List)</li>
<li>বাইনারি ট্রি(Binary Tree)</li>
<li>হিপ(Heap)</li>
<li>স্প্যানিং ট্রি(Spanning Tree)</li>
<li>সেগমেন্ট ট্রি(Segment Tree) ইত্যাদি</li>
</p>
<p>
তো আমার কথার বলার ক্ষেত্রটা এতটুকুর মধ্যেই সীমাবদ্ধ থাকল আপাতত। আশা করি পরে কখনো আরও নতুন নতুন বিষয় নিয়ে নিজের
কিছু চিন্তা-ভাবনা, মতবাদ তোমাদের নিকট তুলে ধরতে পারব। ততদিনে তোমাদের সকলের সুস্থতা কামনা করছি। ভালো থাকবেন
সবাই।
</p>
</div>
</div>
</div>
</section>
<section id="blogs-2" class="blogs">
<div class="blogs container">
<div class="section-title">
<h2>Blogs</h2>
<p>My Blogs</p>
<h2>Breath First Search</h2>
</div>
<div class="row" style="flex-direction: column;">
<img src="assets/img/BFS.png" alt="Data Structure">
<p class="para-1" style="margin-top: 10px;">
Lorem, ipsum dolor sit amet consectetur adipisicing elit.
Facere obcaecati laborum laudantium minima itaque illum,
voluptas cupiditate repellat quam perferendis incidunt
corporis ullam saepe quaerat magni iure maxime veritatis
dignissimos dolores voluptates labore maiores quasi. Quibusdam
porro asperiores eum. Nemo ipsam mollitia fuga, autem nulla animi
porro, temporibus odio itaque ipsum quisquam non, quam ea. Eum autem
libero placeat esse illum cum iste harum nam. Cupiditate commodi temporibus
dignissimos, voluptates minus veritatis dolores voluptatum numquam quaerat
laudantium suscipit dicta ab, expedita perspiciatis soluta. Numquam sed officiis,
id quas repellat placeat quo consequuntur veniam quod animi unde sequi laboriosam veritatis ab!
</p>
<p>
Lorem, ipsum dolor sit amet consectetur adipisicing elit.
Facere obcaecati laborum laudantium minima itaque illum,
voluptas cupiditate repellat quam perferendis incidunt
corporis ullam saepe quaerat magni iure maxime veritatis
dignissimos dolores voluptates labore maiores quasi. Quibusdam
porro asperiores eum. Nemo ipsam mollitia fuga, autem nulla animi
porro, temporibus odio itaque ipsum quisquam non, quam ea. Eum autem
libero placeat esse illum cum iste harum nam. Cupiditate commodi temporibus
dignissimos, voluptates minus veritatis dolores voluptatum numquam quaerat
laudantium suscipit dicta ab, expedita perspiciatis soluta. Numquam sed officiis,
id quas repellat placeat quo consequuntur veniam quod animi unde sequi laboriosam veritatis ab!
Lorem ipsum dolor sit amet consectetur adipisicing elit. Asperiores corporis rem a aut ratione
eaque esse cum quos neque deserunt iure itaque perferendis, nam exercitationem nostrum
autem vitae iste voluptates, odio sed ipsam dicta nisi saepe! Quod nemo minus placeat,
architecto, voluptatibus maiores quisquam, suscipit harum culpa sunt facilis corrupti!
</p>
<p>
Lorem, ipsum dolor sit amet consectetur adipisicing elit.
Facere obcaecati laborum laudantium minima itaque illum,