-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
1703 lines (1534 loc) · 62.7 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 -->
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="description"
content="Professional Web Scraping and Automation Services by Mominur Rahman. Expert in data scraping, analysis, Python development, and web automation with Selenium. Specializing in real estate, social media, and e-commerce data extraction for market research and competitive analysis.">
<meta name="keywords"
content="Web Scraping Developer, web scraping, data scraping, data analysis, data science, Python developer, web data extraction, data processing, data mining, Web crawling, data extraction, web scraper, data collection, data scraper, real estate data scraping, real estate data extraction, yellow pages scraping, yellow pages extraction, web scraping tools, python, python script, python scraping bot, desktop application, email scraping, email extraction, scraping, amazon scraping, facebook scraping, google scraping, linkedin scraping, twitter scraping, web automation, automation, web automation with selenium, web automation with python, web automation with python script,website scraping, website scraper, web data scraping, web data scraper, web autofills, website autofills with selenium,Market Research and Competitive Analysis, Market Research, Competitive Analysis,Marketing and Advertising Agencies, Data Enrichment, Social Media and Influencer Analysis, Travel and Hospitality, Finance and Investment, Healthcare and Pharmaceuticals, Financial Analysis, Financial Data Analysis, Research and Consulting Firms, Marketing and Advertising Agencies, Stock Market Analysis, Job Market Analysis, Weather and Environmental Data, web search, google search data, Mominur Rahman, Mominur, Freelancer">
<meta name="author" content="Mominur Rahman">
<link rel="shortcut icon" type="image/png" href="images/profile.png">
<!-- Page Title -->
<title>Mominur Rahman</title>
<!-- Google Fonts css-->
<link href="https://fonts.googleapis.com/css?family=Berkshire+Swash%7CRoboto:300,400,400i,500,500i,700,700i,900"
rel="stylesheet">
<!-- Bootstrap css -->
<link href="css/bootstrap.min.css" rel="stylesheet" media="screen">
<!-- Font Awesome icon css-->
<link href="css/font-awesome.min.css" rel="stylesheet" media="screen">
<link href="css/flaticon.css" rel="stylesheet" media="screen">
<!-- Swiper's CSS -->
<link rel="stylesheet" href="css/swiper.min.css">
<!-- Animated css -->
<link href="css/animate.css" rel="stylesheet">
<!-- Magnific Popup CSS -->
<link href="css/magnific-popup.css" rel="stylesheet">
<!-- Animation Headline CSS -->
<link href="css/animation-headline.css" rel="stylesheet">
<!-- Slick nav css -->
<link rel="stylesheet" href="css/slicknav.css">
<!-- Main custom css -->
<link href="css/custom.css" rel="stylesheet" media="screen">
<!-- HTML5 shim and Respond.js for IE8 support of HTML5 elements and media queries -->
<!-- WARNING: Respond.js doesn't work if you view the page via file:// -->
<!--[if lt IE 9]>
<script src="https://oss.maxcdn.com/html5shiv/3.7.2/html5shiv.min.js"></script>
<script src="https://oss.maxcdn.com/respond/1.4.2/respond.min.js"></script>
<![endif]-->
</head>
<body data-spy="scroll" data-target="#main-navbar" data-offset="75">
<!-- Preloader starts -->
<div class="preloader">
<div class="loader">
<div class="diamond"></div>
<div class="diamond"></div>
<div class="diamond"></div>
</div>
</div>
<!-- Preloader Ends -->
<!-- Header Section Start -->
<header class="header">
<nav class="navbar navbar-expand-md navbar-light fixed-top" id="main-navbar">
<div class="container">
<!-- Navbar Brand start -->
<a class="navbar-brand" href="#">
<h1><span>Mominur</span> Rahman</h1>
</a>
<!-- Navbar Brand end -->
<!-- Navigation Starts -->
<ul class="navbar-nav ml-auto" id="main-menu">
<li class="nav-item"><a class="nav-link active" href="#home">Home</a></li>
<li class="nav-item"><a class="nav-link" href="#about">About</a></li>
<li class="nav-item"><a class="nav-link" href="#services">Services</a></li>
<li class="nav-item"><a class="nav-link" href="#resume">Resume</a></li>
<li class="nav-item"><a class="nav-link" href="#portfolio">Portfolio</a></li>
<li class="nav-item"><a class="nav-link" href="#pricing">Pricing</a></li>
<li class="nav-item"><a class="nav-link" href="#blog">Blog</a></li>
<li class="nav-item"><a class="nav-link" href="#contact">Contact</a></li>
</ul>
<!-- Navigation Ends -->
<div class="navbar-toggle"></div>
<div id="responsive-menu"></div>
</div>
</nav>
</header>
<!-- Header Section End -->
<!-- Banner Slider Section starts -->
<div class="banner" id="home">
<div class="container">
<div class="row">
<div class="col-lg-6">
<!-- Banner Content Start -->
<div class="banner-content">
<h2 class="cd-headline clip">
<span class="before-heading">Hi There! I'm </span>
<span class="cd-words-wrapper">
<b class="is-visible">Python Developer</b>
<b>Web Scraping Developer</b>
<b>Automation Specialist</b>
<b>Data Science Enthusiast</b>
</span>
</h2>
<p>Python developer skilled in web scraping, automation, and data-driven solutions. Passionate
about using technology to optimize workflows and unlock insights.</p>
<a href="resume/My-Resume.pdf" class="btn-download" target="_blank">Download Resume</a>
</div>
<!-- Banner Content End -->
</div>
</div>
</div>
</div>
<!-- Banner Slider Section ends -->
<!-- About us Section Starts -->
<section class="about-us" id="about">
<div class="container">
<div class="row">
<div class="col-md-12">
<!-- Section title start -->
<div class="section-title">
<h2>About Me</h2>
<p>Professional Profile - There Is All About Me</p>
</div>
<!-- Section title end -->
</div>
</div>
<div class="row">
<div class="col-lg-4">
<!-- About image start -->
<div class="about-image wow fadeInLeft" data-wow-delay="0.3s">
<img src="images/mominur1.png" alt="" />
</div>
<!-- About image end -->
</div>
<div class="col-lg-8">
<!-- About Content start -->
<div class="about-content wow fadeInUp" data-wow-delay="0.8s">
<h3>I'm Mominur Rahman</h3>
<p>Hi! I’m Mominur Rahman, a passionate and dedicated Computer Science student with a strong focus on web scraping and data extraction. With over 2 years of hands-on experience in Python, C, and C++, I specialize in automating data extraction processes from websites, delivering efficient, high-quality data solutions that streamline workflows and enhance productivity.</p>
<p>I have a proven track record in web scraping, having developed robust and scalable solutions that help businesses automate data collection. While I have an interest in data science and can perform data analysis, my core expertise is in web scraping, automation, and building powerful systems for extracting and managing data.</p>
<p>I believe in continuous learning and collaboration, and I’m always eager to work with others to solve challenging problems and create innovative solutions. Let’s connect and explore how I can help your team leverage the power of web scraping and automation for success.</p>
<p>Thank you for taking the time to learn more about me. I look forward to working with you!</p>
<ul>
<li><i class="flaticon-freelance"></i><b>Freelance:</b> Available</li>
<li><i class="flaticon-flag"></i><b>Nationality:</b> Bangladesh</li>
<li><i class="flaticon-placeholder"></i><b>Address:</b> Dhaka, Bangladesh</li>
<li><i class="flaticon-phone-call"></i><b>Phone:</b> (+880) 19250-25750</li>
<li><i class="flaticon-translation"></i><b>Spoken Langages:</b> Bengali - English</li>
<li><i class="flaticon-email"></i><b>Email:</b> [email protected]</li>
<li><i class="flaticon-skype"></i><b>Skype:</b> live:.cid.1506aaad66ca9bb4</li>
</ul>
</div>
<!-- About Content End -->
<!-- <li><i class="flaticon-calendar"></i><b>Date of birth:</b> 21 june 1990</li> -->
</div>
</div>
</div>
</section>
<!-- About us Section Ends -->
<!-- Services Section Starts -->
<section class="services" id="services">
<div class="container">
<div class="row">
<div class="col-md-12">
<!-- Section title start -->
<div class="section-title">
<h2>My Services</h2>
<p>Premium Python Solutions: Web Scraping, Automation, & Full Stack Development Offering
cutting-edge web scraping, front-end development, Python-based automation with Selenium,
data analysis, and 24/7 support to streamline your projects and deliver efficient,
high-quality results.</p>
</div>
<!-- Section title end -->
</div>
</div>
<div class="row">
<div class="col-md-4">
<!-- Service Single Start -->
<div class="service-single wow fadeInUp" data-wow-delay="0.3s">
<div class="icon-box">
<i class="flaticon-web-scraping"></i>
</div>
<h3>Web Scraping & Data Extraction</h3>
<p>Unlock valuable insights by extracting data from any website with custom web scraping
solutions.</p>
</div>
<!-- Service Single End -->
</div>
<div class="col-md-4">
<!-- Service Single Start -->
<div class="service-single wow fadeInUp" data-wow-delay="0.6s">
<div class="icon-box">
<i class="flaticon-web-developer"></i>
</div>
<h3>Front-End Development</h3>
<p>Build sleek, responsive websites with HTML, CSS, and Bootstrap for an optimal user experience
on any device.</p>
</div>
<!-- Service Single End -->
</div>
<div class="col-md-4">
<!-- Service Single Start -->
<div class="service-single wow fadeInUp" data-wow-delay="0.9s">
<div class="icon-box">
<img src="images/python-brands-solid.svg" alt="" style="width: 50px; height: 50px;">
</div>
<h3>Python Development Solutions</h3>
<p>Create scalable and efficient applications with Python, tailored to fit your specific project
requirements.</p>
</div>
<!-- Service Single End -->
</div>
<div class="col-md-4">
<!-- Service Single Start -->
<div class="service-single wow fadeInUp" data-wow-delay="1.2s">
<div class="icon-box">
<i class="flaticon-growth"></i>
</div>
<h3>Data Analysis</h3>
<p>Leverage advanced data analysis techniques to turn raw data into meaningful, actionable
insights.</p>
</div>
<!-- Service Single End -->
</div>
<div class="col-md-4">
<!-- Service Single Start -->
<div class="service-single wow fadeInUp" data-wow-delay="1.5s">
<div class="icon-box">
<img src="images/automation.png" alt=""
style="width: 50px; height: 50px; background-color: #FF5D56;">
</div>
<h3>Automation with Selenium</h3>
<p>Simplify and automate tasks, from routine to complex workflows, using Selenium automation
scripts.</p>
</div>
<!-- Service Single End -->
</div>
<div class="col-md-4">
<!-- Service Single Start -->
<div class="service-single wow fadeInUp" data-wow-delay="1.8s">
<div class="icon-box">
<i class="flaticon-support"></i>
</div>
<h3>24 X 7 Support</h3>
<p>Enjoy reliable, round-the-clock support to keep your projects on track, no matter the time
zone.</p>
</div>
<!-- Service Single End -->
</div>
</div>
</div>
</section>
<!-- Services Section Ends -->
<!-- My Resume Section Starts -->
<section class="my-resume" id="resume">
<div class="container">
<div class="row">
<div class="col-md-12">
<!-- Section title start -->
<div class="section-title">
<h2>My Resume</h2>
<p>
Experienced Python Developer with over 2 years in web scraping and automation using
Selenium, complemented by a one-month online Data Science internship. Currently pursuing a
degree in Computer Science and Engineering (CSE), I am skilled in developing efficient
solutions that enhance data retrieval and processing.
</p>
</div>
<!-- Section title end -->
</div>
</div>
<div class="row mb-5 pb-5">
<div class="col-md-6">
<div class="experience">
<h3 class="sub-title"><i class="fa fa-briefcase"></i> Experience</h3>
<!-- Experience Slider Start -->
<div class="swiper-container experience-slider">
<div class="swiper-wrapper">
<!-- Experience Slide start -->
<div class="swiper-slide">
<div class="experience-single">
<h5>November, 2023 - December, 2023</h5>
<h4>Data Science Intern(online) - Oasis Infobyte</h4>
<p>
Used Python, pandas and scikit-learn to create insights for projects like
Unemployment Analysis and Sales Prediction.
</p>
</div>
</div>
<!-- Experience Slide end -->
<!-- Experience Slide start -->
<div class="swiper-slide">
<div class="experience-single">
<h5>April, 2022 - Present</h5>
<h4>Python Developer - Web Data Scraping</h4>
<p>
Python Developer specializing in web scraping and automation, adept at
extracting data and enhancing productivity with advanced Python solutions.
</p>
</div>
</div>
<!-- Experience Slide end -->
</div>
<!-- Experience Pagination Start -->
<div class="experience-pagination"></div>
<!-- Experience Pagination Start -->
</div>
<!-- Experience Slider Start -->
</div>
</div>
<div class="col-md-6">
<div class="education">
<h3 class="sub-title"><i class="fa fa-graduation-cap"></i> Education</h3>
<!-- Education Slider Start -->
<div class="swiper-container education-slider">
<div class="swiper-wrapper">
<!-- Experience Slide start -->
<div class="swiper-slide">
<div class="experience-single">
<h5>2019 - 2020</h5>
<h4>H.S.C - Nalta Ahasania Mission Residential College</h4>
<p>
H.S.C. in Science from Nalta Ahasania Mission Residential College, 2020.
Achieved Grade: A+.
</p>
</div>
</div>
<!-- Experience Slide end -->
<!-- Experience Slide start -->
<div class="swiper-slide">
<div class="experience-single">
<h5>2021 - Present</h5>
<h4>B.Sc - Institute of Science and Technology (IST)</h4>
<p>
B.Sc (Hons.) in Computer Science and Engineering (CSE) from the Institute of
Science and Technology (IST), Dhaka, Bangladesh (2021 - Present).
</p>
</div>
</div>
<!-- Experience Slide end -->
</div>
<!-- Education Pagination Start -->
<div class="education-pagination"></div>
<!-- Education Pagination Start -->
</div>
<!-- Education Slider End -->
</div>
</div>
</div>
<div class="row">
<div class="col-md-6">
<div class="skill">
<h3 class="sub-title"><i class="fa fa-star-o"></i>My Skills</h3>
<!-- Skill Content Start -->
<div class="skill-content">
<div class="row">
<div class="col-md-6">
<!-- Skill Single Start -->
<div class="skill-single">
<h5>Web Scraping & Data Extraction</h5>
<div class="skill-ratting">
<i class="fa fa-star-o"></i>
<i class="fa fa-star-o"></i>
<i class="fa fa-star-o"></i>
<i class="fa fa-star-o"></i>
<i class="fa fa-star-o"></i>
</div>
</div>
<!-- Skill Single End -->
</div>
<div class="col-md-6">
<!-- Skill Single Start -->
<div class="skill-single">
<h5>Automation with Selenium</h5>
<div class="skill-ratting">
<i class="fa fa-star-o"></i>
<i class="fa fa-star-o"></i>
<i class="fa fa-star-o"></i>
<i class="fa fa-star-o"></i>
<i class="fa fa-star-o"></i>
</div>
</div>
<!-- Skill Single End -->
</div>
<div class="col-md-6">
<!-- Skill Single Start -->
<div class="skill-single">
<h5>HTML 5</h5>
<div class="skill-ratting">
<i class="fa fa-star-o"></i>
<i class="fa fa-star-o"></i>
<i class="fa fa-star-o"></i>
<i class="fa fa-star-o"></i>
<i class="fa fa-star-o"></i>
</div>
</div>
<!-- Skill Single End -->
</div>
<div class="col-md-6">
<!-- Skill Single Start -->
<div class="skill-single">
<h5>CSS 3</h5>
<div class="skill-ratting">
<i class="fa fa-star-o"></i>
<i class="fa fa-star-o"></i>
<i class="fa fa-star-o"></i>
<i class="fa fa-star-o"></i>
<i class="fa fa-star-o"></i>
</div>
</div>
<!-- Skill Single End -->
</div>
<div class="col-md-6">
<!-- Skill Single Start -->
<div class="skill-single">
<h5>Bootstrap 5</h5>
<div class="skill-ratting">
<i class="fa fa-star-o"></i>
<i class="fa fa-star-o"></i>
<i class="fa fa-star-o"></i>
<i class="fa fa-star-o"></i>
<i class="fa fa-star-o"></i>
</div>
</div>
<!-- Skill Single End -->
</div>
<div class="col-md-6">
<!-- Skill Single Start -->
<div class="skill-single">
<h5>Python</h5>
<div class="skill-ratting">
<i class="fa fa-star-o"></i>
<i class="fa fa-star-o"></i>
<i class="fa fa-star-o"></i>
<i class="fa fa-star-o"></i>
<i class="fa fa-star-o"></i>
</div>
</div>
<!-- Skill Single End -->
</div>
<div class="col-md-6">
<!-- Skill Single Start -->
<div class="skill-single">
<h5>C</h5>
<div class="skill-ratting">
<i class="fa fa-star-o"></i>
<i class="fa fa-star-o"></i>
<i class="fa fa-star-o"></i>
<i class="fa fa-star-o"></i>
<i class="fa fa-star-half-o"></i>
</div>
</div>
<!-- Skill Single End -->
</div>
<div class="col-md-6">
<!-- Skill Single Start -->
<div class="skill-single">
<h5>C++</h5>
<div class="skill-ratting">
<i class="fa fa-star-o"></i>
<i class="fa fa-star-o"></i>
<i class="fa fa-star-o"></i>
<i class="fa fa-star-half-o"></i>
</div>
</div>
<!-- Skill Single End -->
</div>
<div class="col-md-6">
<!-- Skill Single Start -->
<div class="skill-single">
<h5>Mysql</h5>
<div class="skill-ratting">
<i class="fa fa-star-o"></i>
<i class="fa fa-star-o"></i>
<i class="fa fa-star-o"></i>
<i class="fa fa-star-half-o"></i>
</div>
</div>
<!-- Skill Single End -->
</div>
<div class="col-md-6">
<!-- Skill Single Start -->
<div class="skill-single">
<h5>MongoDB</h5>
<div class="skill-ratting">
<i class="fa fa-star-o"></i>
<i class="fa fa-star-o"></i>
<i class="fa fa-star-o"></i>
<i class="fa fa-star-half-o"></i>
</div>
</div>
<!-- Skill Single End -->
</div>
</div>
</div>
<!-- Skill Content End -->
</div>
</div>
<div class="col-md-6">
<div class="counter-stats">
<h3 class="sub-title"><i class="fa fa-heart"></i>Fun Facts</h3>
<div class="counter-content">
<div class="row">
<div class="col-md-6">
<!-- Counter Single Start -->
<div class="counter-single">
<div class="icon-box">
<i class="flaticon-employee"></i>
</div>
<h4 class="counter">150</h4>
<p>Happy Clients</p>
</div>
<!-- Counter Single End -->
</div>
<div class="col-md-6">
<!-- Counter Single Start -->
<div class="counter-single">
<div class="icon-box">
<i class="flaticon-trophy"></i>
</div>
<h4 class="counter">100</h4>
<p>Awards Achieved</p>
</div>
<!-- Counter Single End -->
</div>
<div class="col-md-6">
<!-- Counter Single Start -->
<div class="counter-single">
<div class="icon-box">
<i class="flaticon-award"></i>
</div>
<h4 class="counter">300</h4>
<p>Projects Done</p>
</div>
<!-- Counter Single End -->
</div>
<div class="col-md-6">
<!-- Counter Single Start -->
<div class="counter-single">
<div class="icon-box">
<i class="flaticon-customer"></i>
</div>
<h4 class="counter">500</h4>
<p>User Rattings</p>
</div>
<!-- Counter Single End -->
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- My Resume Section Ends -->
<!-- Portfolio Section Starts -->
<section class="portfolio" id="portfolio">
<div class="container">
<div class="row">
<div class="col-md-12">
<!-- Section title start -->
<div class="section-title">
<h2>Portfolio</h2>
<p>I specialize in web scraping and data extraction, leveraging advanced techniques for
efficient data gathering and analysis. With expertise in automation using Selenium, I
streamline tasks and enhance productivity. My skills extend to data analysis with Python,
providing insights from complex datasets, and front-end development, creating user-friendly
interfaces. My portfolio showcases high-quality solutions across these domains.</p>
</div>
<!-- Section title end -->
</div>
</div>
<div class="row">
<div class="col-md-12">
<!-- Portfolio Filter list start -->
<div class="filter-container portfolio-nav">
<ul class="list-inline filter">
<li><a href="#" class="active-portfolio" data-filter="*">All </a></li>
<li><a href="#" data-filter=".scraping">Scraping</a></li>
<li><a href="#" data-filter=".automation">Automation</a></li>
<li><a href="#" data-filter=".websites">Websites</a></li>
<li><a href="#" data-filter=".data-science">Data Science</a></li>
</ul>
</div>
<!-- Portfolio Filter list End -->
</div>
</div>
<div class="row portfolio-boxes">
<!-- Single Portfolio starts -->
<div class="col-md-3 col-sm-6 col-xs-12 portfolio-box scraping">
<div class="single-portfolio">
<a href="#popup-1" class="has-popup">
<img src="images/portfolio-1.png" class="Portfolio Image" alt="" />
<div class="single-portfolio-overlay">
<h2>Yellow Pages Data Scraping</h2>
<h3>Scraping</h3>
</div>
</a>
</div>
<div id="popup-1" class="popup-box mfp-fade mfp-hide">
<div class="content">
<div class="image">
<img src="images/portfolio-1.png" alt="">
</div>
<div class="desc">
<h4>Yellow Pages Data Scraping</h4>
<h5><i class="fa fa-folder"></i> Scraping</h5>
<p>
This project extracts essential business details from
<a href="https://www.yellowpages.com.au" target="_blank">yellowpages.com.au</a> and
<a href="https://www.yellowpages.com" target="_blank">yellowpages.com</a>,
including:
</p>
<ul>
<li>Business Name</li>
<li>Email</li>
<li>Phone Number</li>
<li>Address</li>
<li>Website</li>
</ul>
<p>
The automated scraping process aids in market research, lead generation, and contact
database creation, providing valuable insights for targeted outreach.
</p>
<a href="https://github.com/mominurr/Yellow-Pages-Data-Scraping"
class="btn-view-project" target="_blank">View Project</a>
</div>
</div>
</div>
</div>
<!-- Single Portfolio Ends -->
<!-- Single Portfolio starts -->
<div class="col-md-3 col-sm-6 col-xs-12 portfolio-box scraping">
<div class="single-portfolio">
<a href="#popup-2" class="has-popup">
<img src="images/portfolio-2.jpg" class="Portfolio Image" alt="" />
<div class="single-portfolio-overlay">
<h2>Social Media Scraping</h2>
<h3>Scraping</h3>
</div>
</a>
</div>
<div id="popup-2" class="popup-box mfp-fade mfp-hide">
<div class="content">
<div class="image">
<img src="images/portfolio-2.jpg" alt="">
</div>
<div class="desc">
<h4>Social Media Scraping</h4>
<h5><i class="fa fa-folder"></i> Scraping</h5>
<h6>1. TikTok Data Scraping</h6>
<p>Scrape TikTok data: author username, follower count, video URL, and more.</p>
<h6>2. LinkedIn Data Scraping</h6>
<p>Scrape public LinkedIn user and company data.</p>
<h6>3. Facebook Data Scraping</h6>
<p>Scrape public group/page data: post text, comments, group name, and URL.</p>
<h6>4. Twitter (X.com) Data Scraping</h6>
<p>Scrape Twitter data: tweet text, likes, retweets, views, and more.</p>
<p>Additional scraping services for other platforms are available.</p>
<a href="https://github.com/mominurr/Social-Media-Scraping" class="btn-view-project"
target="_blank">View Project</a>
</div>
</div>
</div>
</div>
<!-- Single Portfolio Ends -->
<!-- Single Portfolio starts -->
<div class="col-md-3 col-sm-6 col-xs-12 portfolio-box scraping">
<div class="single-portfolio">
<a href="#popup-3" class="has-popup">
<img src="images/portfolio-3.png" class="Portfolio Image" alt="" />
<div class="single-portfolio-overlay">
<h2>Real Estate Web Scraping</h2>
<h3>Scraping</h3>
</div>
</a>
</div>
<div id="popup-3" class="popup-box mfp-fade mfp-hide">
<div class="content">
<div class="image">
<img src="images/portfolio-3.png" alt="">
</div>
<div class="desc">
<h4>Real Estate Web Scraping</h4>
<h5><i class="fa fa-folder"></i> Scraping</h5>
<p>This project scrapes property and agent data from websites like Zillow, Realtor.com,
Microburbs, Realtor.ca, and Walk Score. The extracted data includes property
listings, agent details, and location scores, creating comprehensive datasets for
market analysis, property valuation, and agent profiling. The automated approach
helps users make informed decisions regarding property investments and agent
selection.</p>
<p>A sample JSON file is attached to the repository.</p>
<a href="https://github.com/mominurr/Real-Estate-Web-Scraping" class="btn-view-project"
target="_blank">View Project</a>
</div>
</div>
</div>
</div>
<!-- Single Portfolio Ends -->
<!-- Single Portfolio starts -->
<div class="col-md-3 col-sm-6 col-xs-12 portfolio-box scraping">
<div class="single-portfolio">
<a href="#popup-4" class="has-popup">
<img src="images/portfolio-4.jpg" class="Portfolio Image" alt="" />
<div class="single-portfolio-overlay">
<h2>Google Map Scraping</h2>
<h3>Scraping</h3>
</div>
</a>
</div>
<div id="popup-4" class="popup-box mfp-fade mfp-hide">
<div class="content">
<div class="image">
<img src="images/portfolio-4.jpg" alt="">
</div>
<div class="desc">
<h4>Google Map Scraping</h4>
<h5><i class="fa fa-folder"></i> Scraping</h5>
<p>This project extracts business details from Google Maps listings, including name,
email (if available), phone number, website URL, rating, and review count. The
automated web scraping process collects structured data for market research, lead
generation, and business analysis, making data collection efficient and enabling
informed decision-making.</p>
<a href="https://github.com/mominurr/Google-Map-Scraping" class="btn-view-project"
target="_blank">View Project</a>
</div>
</div>
</div>
</div>
<!-- Single Portfolio Ends -->
<!-- Single Portfolio starts -->
<div class="col-md-3 col-sm-6 col-xs-12 portfolio-box scraping">
<div class="single-portfolio">
<a href="#popup-5" class="has-popup">
<img src="images/portfolio-5.png" class="Portfolio Image" alt="" />
<div class="single-portfolio-overlay">
<h2>Web Scraping Projects</h2>
<h3>Scraping</h3>
</div>
</a>
</div>
<div id="popup-5" class="popup-box mfp-fade mfp-hide">
<div class="content">
<div class="image">
<img src="images/portfolio-5.png" alt="">
</div>
<div class="desc">
<h4>Web Scraping Projects</h4>
<h5><i class="fa fa-folder"></i> Scraping</h5>
<p>I have completed 200+ web scraping projects using Python and Selenium, covering a
wide range of industries such as real estate, e-commerce, and social media. Below
are some key projects.</p>
<h6>Featured Projects</h6>
<ul>
<li><strong>Zillow Scraper</strong>: Property data from <a href="https://zillow.com"
target="_blank">zillow.com</a></li>
<li><strong>Amazon Scraper</strong>: Product and review data from <a
href="https://amazon.com" target="_blank">amazon.com</a></li>
<li><strong>eBay Scraper</strong>: Product listings from <a href="https://ebay.com"
target="_blank">ebay.com</a></li>
<li><strong>VFS Global Bot</strong>: Visa appointment automation on <a
href="https://vfsglobal.com" target="_blank">vfsglobal.com</a></li>
<li><strong>Facebook Scraper</strong>: Group post and comment data from <a
href="https://facebook.com" target="_blank">facebook.com</a></li>
</ul>
<a href="https://github.com/mominurr/Web-Scraping-Projects" class="btn-view-project"
target="_blank">View Project</a>
</div>
</div>
</div>
</div>
<!-- Single Portfolio Ends -->
<!-- Single Portfolio starts -->
<div class="col-md-3 col-sm-6 col-xs-12 portfolio-box websites">
<div class="single-portfolio">
<a href="#popup-6" class="has-popup">
<img src="images/portfolio-6.png" class="Portfolio Image" alt="" />
<div class="single-portfolio-overlay">
<h2>Digital Agency Website</h2>
<h3>Websites</h3>
</div>
</a>
</div>
<div id="popup-6" class="popup-box mfp-fade mfp-hide">
<div class="content">
<div class="image">
<img src="images/portfolio-6.png" alt="">
</div>
<div class="desc">
<h4>Digital Agency Website</h4>
<h5><i class="fa fa-folder"></i> Websites</h5>
<p>A fully responsive digital agency website, designed for all devices. Built with HTML,
CSS, and Bootstrap for seamless performance and modern design.</p>
<a href="https://github.com/mominurr/agency-website" class="btn-view-project"
target="_blank">View Project</a>
</div>
</div>
</div>
</div>
<!-- Single Portfolio Ends -->
<!-- Single Portfolio starts -->
<div class="col-md-3 col-sm-6 col-xs-12 portfolio-box automation">
<div class="single-portfolio">
<a href="#popup-7" class="has-popup">
<img src="images/portfolio-7.png" class="Portfolio Image" alt="" />
<div class="single-portfolio-overlay">
<h2>Visa Appointment Automation Bot</h2>
<h3>Automation</h3>
</div>
</a>
</div>
<div id="popup-7" class="popup-box mfp-fade mfp-hide">
<div class="content">
<div class="image">
<img src="images/portfolio-7.png" alt="">
</div>
<div class="desc">
<h4>Visa Appointment Automation Bot</h4>
<h5><i class="fa fa-folder"></i> Automation</h5>
<p>This bot automates the process of checking visa appointment availability on the VFS
Global website, bypassing Cloudflare protection and solving reCAPTCHA challenges. It
also rotates proxies to avoid IP bans and sends email notifications to clients about
appointment status.</p>
<a href="https://github.com/mominurr/visa.vfsglobal.com" class="btn-view-project"
target="_blank">View Project</a>
</div>
</div>
</div>
</div>
<!-- Single Portfolio Ends -->
<!-- Single Portfolio starts -->
<div class="col-md-3 col-sm-6 col-xs-12 portfolio-box data-science">
<div class="single-portfolio">
<a href="#popup-8" class="has-popup">
<img src="images/portfolio-8.png" class="Portfolio Image" alt="" />
<div class="single-portfolio-overlay">
<h2>Email Spam Detection With Machine Learning</h2>
<h3>Data Science</h3>
</div>
</a>
</div>
<div id="popup-8" class="popup-box mfp-fade mfp-hide">
<div class="content">
<div class="image">
<img src="images/portfolio-8.png" alt="">
</div>
<div class="desc">
<h4>Email Spam Detection With Machine Learning</h4>
<h5><i class="fa fa-folder"></i> Data Science</h5>
<p>This project aims to build a spam detection model using machine learning, utilizing a
dataset of text messages labeled as "ham" (non-spam) or "spam." The key features of
the project include:</p>
<ul>
<li>Data analysis, visualization, and preprocessing of the dataset.</li>
<li>Implementation of a Naive Bayes classifier (MultinomialNB) for spam detection.
</li>
<li>Evaluation of model performance through confusion matrix and classification
report visualizations.</li>
</ul>
<a href="https://github.com/mominurr/Email-Spam-Detection-With-Machine-Learning"
class="btn-view-project" target="_blank">View Project</a>
</div>
</div>
</div>
</div>
<!-- Single Portfolio Ends -->
</div>
<div class="row">
<div class="col-md-12">
<div class="load-more-portfolio">
<a href="portfolio.html" target="_blank">Load More Portfolio</a>
</div>
</div>
</div>
</div>
</section>
<!-- Portfolio Section Ends -->
<!-- Our Team Section Starts -->
<!--
<section class="our-team">
<div class="container">
<div class="row">
<div class="col-md-12">
/* Section title start */
<div class="section-title">
<h2>Team Member</h2>
<p>Meet the team - Lorem ipsum dolor</p>
</div>
/* Section title end */
</div>
</div>
<div class="row">
<div class="col-lg-3 col-md-6">
/* Team single start */
<div class="team-single wow fadeInUp" data-wow-delay="0.3s">
<figure>
<img src="images/team-1.jpg" alt="" />
</figure>
<div class="team-info">
<h3>Madisin Payne</h3>
<p>Digital Producer</p>
</div>
</div>
/* Team single end */
</div>
<div class="col-lg-3 col-md-6">
/* Team single start */
<div class="team-single wow fadeInUp" data-wow-delay="0.6s">
<figure>
<img src="images/team-2.jpg" alt="" />
</figure>
<div class="team-info">
<h3>Madisin Payne</h3>
<p>SEO Analyst</p>
</div>
</div>
/* Team single end */
</div>
<div class="col-lg-3 col-md-6">
/* Team single start */
<div class="team-single wow fadeInUp" data-wow-delay="0.9s">
<figure>
<img src="images/team-3.jpg" alt="" />
</figure>