-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
1281 lines (1068 loc) · 47.9 KB
/
Copy pathindex.html
File metadata and controls
1281 lines (1068 loc) · 47.9 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.0">
<meta name="description" content="Technical Operations & IT Infrastructure Professional with 15+ years of experience across IT support, networking, Linux, VoIP, industrial maintenance and field service engineering.">
<meta name="author" content="Md. Momtazur Rashid">
<meta name="robots" content="index, follow, max-image-preview:large">
<meta name="theme-color" content="#06111f">
<meta name="color-scheme" content="dark light">
<meta name="referrer" content="strict-origin-when-cross-origin">
<meta name="apple-mobile-web-app-capable" content="yes">
<meta name="apple-mobile-web-app-status-bar-style" content="black-translucent">
<meta name="apple-mobile-web-app-title" content="Md. Momtazur Rashid">
<meta name="mobile-web-app-capable" content="yes">
<meta name="application-name" content="Md. Momtazur Rashid Portfolio">
<meta name="format-detection" content="telephone=no">
<meta name="google-site-verification" content="gDpEWbF5jIFiAYYFTC6uHlX9bexP4YlXUKVcb75tYiU">
<!-- Open Graph / LinkedIn / Facebook -->
<meta property="og:type" content="website">
<meta property="og:site_name" content="Md. Momtazur Rashid Portfolio">
<meta property="og:title" content="Md. Momtazur Rashid | IT Infrastructure & Technical Operations">
<meta property="og:description" content="Technical Operations & IT Infrastructure Professional with 15+ years of experience in enterprise IT, desktop support, Windows administration, networking, VoIP, industrial maintenance and field service engineering.">
<meta property="og:url" content="https://portfolio.s-manha-mm.workers.dev/">
<meta property="og:image" content="https://portfolio.s-manha-mm.workers.dev/assets/og-image.png">
<meta property="og:image:secure_url" content="https://portfolio.s-manha-mm.workers.dev/assets/og-image.png">
<meta property="og:image:type" content="image/png">
<meta property="og:image:width" content="1200">
<meta property="og:image:height" content="630">
<meta property="og:image:alt" content="Md. Momtazur Rashid - IT Infrastructure & Technical Operations Professional">
<meta property="og:locale" content="en_US">
<!-- Twitter / X -->
<meta name="twitter:card" content="summary_large_image">
<meta name="twitter:title" content="Md. Momtazur Rashid | IT Infrastructure & Technical Operations">
<meta name="twitter:description" content="Technical Operations & IT Infrastructure Professional with 15+ years of experience in enterprise IT, desktop support, Windows administration, networking, VoIP, industrial maintenance and field service engineering.">
<meta name="twitter:image" content="https://portfolio.s-manha-mm.workers.dev/assets/og-image.png">
<meta name="twitter:image:alt" content="Md. Momtazur Rashid - IT Infrastructure & Technical Operations Professional">
<title>Md. Momtazur Rashid | IT Infrastructure & Technical Operations</title>
<link rel="canonical" href="https://portfolio.s-manha-mm.workers.dev/">
<!-- svg -->
<link rel="icon" type="image/svg+xml" href="/assets/icons/favicon.svg">
<!-- png fallback -->
<link rel="icon" type="image/png" sizes="32x32" href="/assets/icons/favicon-32x32.png">
<link rel="icon" type="image/png" sizes="16x16" href="/assets/icons/favicon-16x16.png">
<link rel="manifest" href="/site.webmanifest">
<!-- apple -->
<link rel="apple-touch-icon" href="/assets/icons/apple-touch-icon.png">
<link rel="preload"
href="/assets/images/md-momtazur-rashid-headshot.webp"
as="image"
type="image/webp"
fetchpriority="high">
<link rel="preload" href="/style.css" as="style">
<link rel="stylesheet" href="/style.css">
<script type="application/ld+json">
{
"@context": "https://schema.org",
"@type": "Person",
"@id": "https://portfolio.s-manha-mm.workers.dev/#person",
"mainEntityOfPage": {
"@type": "WebPage",
"@id": "https://portfolio.s-manha-mm.workers.dev/"
},
"name": "Md. Momtazur Rashid",
"jobTitle": "Technical Operations & IT Infrastructure Professional",
"description": "Technical Operations & IT Infrastructure Professional with 15+ years of experience in enterprise IT, desktop support, Windows administration, networking, VoIP, industrial maintenance and field service engineering.",
"email": "mailto:s.manha.mm@gmail.com",
"telephone": "+8801925868000",
"image": {
"@type": "ImageObject",
"url": "https://portfolio.s-manha-mm.workers.dev/assets/images/md-momtazur-rashid-profile.jpg",
"contentUrl": "https://portfolio.s-manha-mm.workers.dev/assets/images/md-momtazur-rashid-profile.jpg",
"encodingFormat": "image/jpeg",
"width": 1200,
"height": 630,
"caption": "Professional profile photo of Md. Momtazur Rashid",
"representativeOfPage": true
},
"url": "https://portfolio.s-manha-mm.workers.dev/",
"sameAs": [
"https://www.linkedin.com/in/momtazur-rashid-it-support",
"https://github.com/ManhaNet"
],
"nationality": {
"@type": "Country",
"name": "Bangladesh"
},
"knowsLanguage": [
"English",
"Bengali"
],
"contactPoint": {
"@type": "ContactPoint",
"contactType": "Professional",
"url": "https://portfolio.s-manha-mm.workers.dev/",
"email": "mailto:s.manha.mm@gmail.com",
"telephone": "+8801925868000",
"availableLanguage": [
"English",
"Bengali"
]
},
"hasOccupation": {
"@type":"Occupation",
"name":"Technical Operations & IT Infrastructure Professional",
"occupationLocation":{
"@type":"Country",
"name":"Bangladesh"
}
},
"homeLocation": {
"@type": "Place",
"name": "Bogura, Bangladesh"
},
"address": {
"@type": "PostalAddress",
"addressLocality": "Bogura",
"addressCountry": "Bangladesh"
},
"alumniOf": [
{
"@type": "CollegeOrUniversity",
"name": "Dhaka Polytechnic Institute"
},
{
"@type": "CollegeOrUniversity",
"name": "National University, Bangladesh"
}
],
"knowsAbout": [
"IT Support",
"Desktop Support",
"Technical Support",
"Technical Operations",
"IT Infrastructure",
"End-User Support",
"Windows 10",
"Windows 11",
"Windows Administration",
"Network Infrastructure",
"LAN/WAN",
"TCP/IP",
"DHCP",
"DNS",
"Router Configuration",
"Switch Configuration",
"Linux Server Administration",
"VoIP",
"Asterisk",
"FreePBX",
"Hardware Troubleshooting",
"Printer Support",
"CCTV Systems",
"Field Service",
"Technical Documentation",
"IT Asset Management",
"Electrical Installation and Maintenance",
"Industrial Maintenance",
"Enterprise IT",
"IT Infrastructure Management",
"Windows Deployment",
"Desktop Lifecycle Management"
],
"hasCredential": [
{
"@type": "EducationalOccupationalCredential",
"name": "NSDA Certified in Driving Level-3",
"dateCreated": "2026"
},
{
"@type": "EducationalOccupationalCredential",
"name": "NSDA Certified in Electrical Installation & Maintenance Level-2",
"dateCreated": "2025"
},
{
"@type": "EducationalOccupationalCredential",
"name": "NSDA Certified in Mobile Phone Servicing Level-1",
"dateCreated": "2025"
},
{
"@type": "EducationalOccupationalCredential",
"name": "Non-Professional Motor Driving Licence, Bangladesh Road Transport Authority (BRTA)",
"dateCreated": "2018"
}
]
}
</script>
<script type="application/ld+json">
{
"@context":"https://schema.org",
"@type":"Organization",
"@id":"https://portfolio.s-manha-mm.workers.dev/#organization",
"name":"Md. Momtazur Rashid Portfolio",
"url":"https://portfolio.s-manha-mm.workers.dev/",
"logo": {
"@type": "ImageObject",
"url": "https://portfolio.s-manha-mm.workers.dev/assets/icons/apple-touch-icon.png",
"contentUrl": "https://portfolio.s-manha-mm.workers.dev/assets/icons/apple-touch-icon.png",
"width": 180,
"height": 180
},
"image":"https://portfolio.s-manha-mm.workers.dev/assets/images/md-momtazur-rashid-profile.jpg",
"founder":{
"@id":"https://portfolio.s-manha-mm.workers.dev/#person"
},
"sameAs":[
"https://www.linkedin.com/in/momtazur-rashid-it-support",
"https://github.com/ManhaNet"
]
}
</script>
<script type="application/ld+json">
{
"@context":"https://schema.org",
"@type":"WebSite",
"@id":"https://portfolio.s-manha-mm.workers.dev/#website",
"name":"Md. Momtazur Rashid Portfolio",
"url":"https://portfolio.s-manha-mm.workers.dev/",
"author":{
"@id":"https://portfolio.s-manha-mm.workers.dev/#person"
},
"publisher":{
"@id":"https://portfolio.s-manha-mm.workers.dev/#organization"
}
}
</script>
</head>
<body>
<div class="page-loader" aria-hidden="true">
<span></span>
</div>
<a class="skip-link" href="#main">Skip to content</a>
<header class="site-header" id="top">
<nav class="nav container" aria-label="Primary navigation">
<a class="brand" href="#top" aria-label="Md. Momtazur Rashid home">
<span class="brand-mark" aria-hidden="true">MR</span>
<span class="brand-text">Md. Momtazur Rashid</span>
</a>
<button class="nav-toggle" type="button" aria-label="Open navigation" aria-expanded="false" aria-controls="nav-menu">
<span></span>
<span></span>
<span></span>
</button>
<ul class="nav-menu" id="nav-menu">
<li><a href="#about">About</a></li>
<li><a href="#experience">Experience</a></li>
<li><a href="#skills">Skills</a></li>
<li><a href="#projects">Projects</a></li>
<li><a href="#certifications">Certifications</a></li>
<li><a href="#resume">Resume</a></li>
<li><a href="#contact">Contact</a></li>
</ul>
</nav>
</header>
<main id="main" tabindex="-1">
<section class="hero section" aria-labelledby="hero-title">
<div class="container hero-grid">
<div class="hero-copy reveal">
<p class="eyebrow">15+ Years of Multidisciplinary Technical Experience</p>
<h1 id="hero-title">
Technical Operations &<br>
IT Infrastructure<br>
Professional
</h1>
<p class="typing-line" aria-live="polite">
<span>Core Expertise: </span>
<span class="typing-text"
data-words="Technical Operations,IT Infrastructure,Industrial Maintenance,Field Service Engineering,Windows & Linux,VoIP Systems">
Technical Operations
</span>
</p>
<p class="hero-lede">
Technical Operations professional with <strong>15+ years of multidisciplinary experience</strong> delivering IT infrastructure, industrial electrical systems, manufacturing support, field service engineering, Windows and Linux administration, enterprise networking, VoIP platforms and technical operations across multiple industries.
<br><br>
Open to international opportunities in <strong>Technical Operations, IT Infrastructure, Industrial Maintenance and Field Service Engineering.</strong>
</p>
<div class="hero-actions" aria-label="Primary actions">
<a class="btn btn-primary" href="assets/resume/Md_Momtazur_Rashid_Resume.pdf" download type="application/pdf">Download CV</a>
<a class="btn btn-secondary" href="#contact">Contact Me</a>
<a class="btn btn-ghost" href="#experience">Explore Experience</a>
</div>
<ul class="hero-meta" aria-label="Professional availability">
<li>Bogura, Bangladesh</li>
<li>Open to relocation</li>
<li>Available for Technical Operations & Infrastructure Roles</li>
<li>Open to visa-sponsored opportunities</li>
</ul>
</div>
<aside class="hero-panel glass-card reveal" aria-label="Professional profile snapshot">
<picture class="profile-photo hero-photo">
<source srcset="assets/images/md-momtazur-rashid-headshot.webp" type="image/webp">
<img src="assets/images/md-momtazur-rashid-headshot.jpg" alt="Md. Momtazur Rashid - Technical Operations Professional" width="720" height="720" decoding="async" fetchpriority="high">
</picture>
<div class="status-pill">Available for international opportunities</div>
<div class="metric-grid">
<div>
<strong>15+</strong>
<span>Years Experience</span>
</div>
<div>
<strong>50+</strong>
<span>Business Clients</span>
</div>
<div>
<strong>Multi</strong>
<span>Sector Experience</span>
</div>
<div>
<strong>Global</strong>
<span>Relocation Ready</span>
</div>
</div>
</aside>
</div>
</section>
<section class="stats-section">
<div class="container">
<div class="stats-grid">
<div class="stat-card glass-card reveal">
<strong class="stat-value">15+</strong>
<span class="stat-label">Years of Professional Experience</span>
</div>
<div class="stat-card glass-card reveal">
<strong class="stat-value">Multi-Skilled</strong>
<span class="stat-label">IT • Networking • Industrial • VoIP</span>
</div>
<div class="stat-card glass-card reveal">
<strong class="stat-value">4</strong>
<span class="stat-label">Business Divisions Established</span>
</div>
<div class="stat-card glass-card reveal">
<strong class="stat-value">Global</strong>
<span class="stat-label">Career Opportunities</span>
</div>
</div>
</div>
</section>
<section class="section about" id="about" aria-labelledby="about-title">
<div class="container about-grid">
<div class="about-visual reveal">
<picture class="profile-photo about-photo">
<source srcset="assets/images/md-momtazur-rashid-headshot.webp" type="image/webp">
<img src="assets/images/md-momtazur-rashid-headshot.jpg"
alt="Md. Momtazur Rashid - Technical Operations Professional"
width="720"
height="720"
loading="lazy"
decoding="async">
</picture>
<div class="about-badges" aria-label="Key career strengths">
<span>15+ Years Experience</span>
<span>Technical Operations</span>
<span>IT Infrastructure</span>
<span>Open to Relocation</span>
</div>
</div>
<div class="about-content reveal">
<p class="eyebrow">About</p>
<h2 id="about-title">
Technical Operations Professional with 15+ Years of Experience
</h2>
<p>
Technical Operations professional with <strong>15+ years of multidisciplinary experience</strong> delivering IT infrastructure, industrial electrical systems, enterprise networking, Windows & Linux administration and VoIP platforms.
</p>
<p>
Experienced across manufacturing, telecommunications, education, agriculture and commercial environments with a strong background in field service engineering and technical operations.
</p>
<div class="about-highlights">
<div class="about-highlight-item">
<span class="highlight-check" aria-hidden="true">✔</span>
<strong>15+ Years of Experience</strong> across Technical Operations, IT Infrastructure, Industrial Maintenance and Field Service Engineering.
</div>
<div class="about-highlight-item">
<span class="highlight-check" aria-hidden="true">✔</span>
<strong>Core Technologies:</strong>
Windows • Linux • Networking • VoIP • Industrial Electrical Systems • Preventive Maintenance • Technical Operations
</div>
<div class="about-highlight-item">
<span class="highlight-check" aria-hidden="true">✔</span>
<strong>Engineering Operations:</strong>
Equipment installation, preventive maintenance, commissioning, technical troubleshooting and field service delivery.
</div>
<div class="about-highlight-item">
<span class="highlight-check" aria-hidden="true">✔</span>
<strong>Industries Served:</strong>
Manufacturing, Telecommunications, Agriculture, Education and Commercial Operations.
</div>
</div>
<p>
Hands-on experience supporting enterprise IT infrastructure, Windows and Linux environments, industrial electrical systems, networking, production facilities and field engineering operations while improving system reliability and operational efficiency.
</p>
<p>
Proven ability to deliver multidisciplinary technical solutions including VoIP platforms, Linux server administration, enterprise networking, industrial maintenance, commissioning and technical operations for business-critical environments.
</p>
<ul class="keyword-cloud" aria-label="Recruiter keyword highlights">
<li>Technical Operations</li>
<li>IT Infrastructure</li>
<li>Industrial Maintenance</li>
<li>Industrial Electrical Systems</li>
<li>Field Service Engineering</li>
<li>Desktop Support</li>
<li>Technical Support</li>
<li>Windows Administration</li>
<li>Windows Server</li>
<li>Windows 10/11</li>
<li>Linux</li>
<li>LAN/WAN Networking</li>
<li>VoIP</li>
<li>Commissioning</li>
<li>Manufacturing Support</li>
<li>Technical Troubleshooting</li>
<li>Preventive Maintenance</li>
</ul>
</div>
</div>
</section>
<section class="section experience" id="experience" aria-labelledby="experience-title">
<div class="container">
<div class="section-heading centered reveal">
<p class="eyebrow">Experience</p>
<h2 id="experience-title">
Professional Experience
</h2>
<p class="section-subtitle">
15+ years of multidisciplinary experience delivering technical operations, IT infrastructure, industrial maintenance, enterprise networking, field service engineering and telecommunications solutions.
</p>
</div>
<div class="timeline">
<article class="timeline-item glass-card reveal">
<time class="timeline-date" datetime="2023-11">
Nov 2023 – Apr 2026
</time>
<div class="timeline-body">
<p class="role-label">
<strong>TMT Group BD</strong> • Bogura, Bangladesh
</p>
<h3>Technical Operations & Business Development Manager</h3>
<p>
Led IT infrastructure, engineering operations, industrial electrical systems and field engineering activities across multiple business divisions, supporting 130+ end users across manufacturing, education and commercial operations.
</p>
<ul class="achievement-list">
<li>Led the technical setup of four business divisions, including IT infrastructure, networking, CCTV, structured cabling and electrical systems.</li>
<li>Installed, configured and maintained Windows 10/11 desktops, printers, business applications and network devices for 130+ users.</li>
<li>Managed LAN/WAN networks, routers, switches, wireless connectivity, shared folders, network printers and enterprise network infrastructure.</li>
<li>Performed hardware troubleshooting, preventive maintenance, software deployment and on-site field support to maximize system uptime and operational reliability.</li>
<li>Installed and maintained server racks, UPS systems, CCTV, access control, biometric attendance systems and backup power infrastructure.</li>
</ul>
</div>
</article>
<hr class="timeline-divider">
<article class="timeline-item glass-card reveal">
<time class="timeline-date" datetime="2021-01">
Jan 2021 – Oct 2022
</time>
<div class="timeline-body">
<p class="role-label">
<strong>Fahad Plastic Industries Ltd</strong> • Narayanganj, Bangladesh
</p>
<h3>Chairman (Board of Directors) & Operations Partner</h3>
<p>
Directed manufacturing operations, industrial electrical infrastructure, production equipment, preventive maintenance and facility development for a large-scale packaging manufacturing facility supporting 180+ employees.
</p>
<ul class="achievement-list">
<li>Led the establishment of a manufacturing facility, including infrastructure planning, machinery procurement, factory layout and production readiness.</li>
<li>Managed technical operations for <strong>22 production machines</strong> supporting <strong>180+ employees</strong>.</li>
<li>Oversaw industrial electrical systems, production equipment, commissioning, troubleshooting and preventive maintenance to improve equipment reliability.</li>
<li>Coordinated international procurement, vendor management, inventory control and manufacturing operations.</li>
<li>Supported factory IT infrastructure, including Windows file & print services, shared folders and network printers.</li>
<li>Supported industrial power infrastructure, including electrical distribution systems, control panels and production utilities to ensure uninterrupted manufacturing operations.</li>
</ul>
</div>
</article>
<hr class="timeline-divider">
<article class="timeline-item glass-card reveal">
<time class="timeline-date" datetime="2009-01">
Jan 2009 – Mar 2021
</time>
<div class="timeline-body">
<p class="role-label">
<strong>ManhaNetworks</strong> • Bogura, Bangladesh
</p>
<h3>Founder & Managing Director</h3>
<p>
Founded and managed an IT services and telecommunications company delivering enterprise IT infrastructure, desktop support, Linux server administration, VoIP platforms and technical services for business clients in Bangladesh and international markets.
</p>
<ul class="achievement-list">
<li>Delivered enterprise IT services, desktop support, VoIP solutions and technical consulting for <strong>50+ business clients</strong> across multiple industries.</li>
<li>Built and managed enterprise IT infrastructure and VoIP platforms supporting business-critical communications for local and international clients.</li>
<li>Deployed, configured and maintained VoIP platforms using Asterisk, FreePBX, AsteriskNOW, ASTPP, VOS3000 and SIP-based communication systems.</li>
<li>Administered Linux servers, VPS, dedicated servers, VPN connectivity, server monitoring, backup operations and enterprise network services.</li>
<li>Installed, configured and supported LAN/WAN networks, routers, switches, structured cabling, Windows systems and customer IT infrastructure.</li>
<li>Provided remote and on-site technical support for business clients across Saudi Arabia, UAE, Oman, Kuwait, Libya and India.</li>
</ul>
</div>
</article>
<hr class="timeline-divider">
<article class="timeline-item glass-card reveal">
<time class="timeline-date" datetime="2007-06">
Jun 2007 – Feb 2009
</time>
<div class="timeline-body">
<p class="role-label">
<strong>Telewiz International Ltd</strong> • Bogura, Bangladesh
</p>
<h3>PCO Executive</h3>
<p>
Coordinated regional telecommunications operations for Warid Telecom (now Airtel Bangladesh), supporting Public Call Office (PCO) services across 16 districts of the Rajshahi Division.
</p>
<ul class="achievement-list">
<li>Supported regional telecommunications operations across <strong>16 districts</strong>, working with <strong>16 authorized distributors</strong> and <strong>32 Sales Representatives</strong> to ensure efficient service delivery.</li>
<li>Managed inventory planning, logistics coordination, banking reconciliation and distributor support to maintain uninterrupted product availability and operational compliance.</li>
<li>Monitored operational performance, regional KPIs and field activities while preparing reports that supported business planning and management decisions.</li>
<li>Coordinated promotional campaigns, resolved operational issues and maintained strong distributor relationships to improve regional service delivery.</li>
</ul>
</div>
</article>
<hr class="timeline-divider">
<article class="timeline-item glass-card reveal">
<time class="timeline-date" datetime="2006-03">
Mar 2006 – May 2007
</time>
<div class="timeline-body">
<p class="role-label">
<strong>Hamid Tellular</strong> • Bogura, Bangladesh
</p>
<h3>Transaction Manager</h3>
<p>
Managed regional sales operations, inventory control, product distribution, logistics coordination and business transaction management for an authorized Banglalink distributor across Bogura District.
</p>
<ul class="achievement-list">
<li>Led and supervised <strong>22 Sales Representatives</strong> across <strong>12 upazilas</strong>, improving territory coverage, operational efficiency and sales execution.</li>
<li>Managed inventory control, product distribution, cash reconciliation, payment verification and stock accuracy to ensure uninterrupted business operations.</li>
<li>Monitored sales performance, field activities, operational KPIs and prepared management reports to support planning and decision-making.</li>
<li>Coordinated promotional campaigns, logistics, distributor support and product training to improve regional sales performance and customer service.</li>
<li>Led the Bogura District sales team to achieve the <strong>#1 nationwide ranking</strong> among Banglalink distributors for sales target achievement through strong leadership and operational excellence.</li>
</ul>
</div>
</article>
<section class="section skills" id="skills" aria-labelledby="skills-title">
<div class="container">
<div class="section-heading centered reveal">
<p class="eyebrow">Skills</p>
<h2 id="skills-title">
Technical expertise spanning IT infrastructure, technical support, systems administration, enterprise networking, field service engineering and technical operations.
</h2>
</div>
<div class="skills-grid">
<article class="skill-card glass-card reveal">
<img src="assets/icons/headset.svg" alt="" aria-hidden="true" loading="lazy">
<h3>IT Support</h3>
<p>Desktop Support, Technical Support, End-User Support, Help Desk Support, Windows 10/11, Operating System Deployment, Software Installation, Hardware Troubleshooting, Printer & Peripheral Support, Remote Support, Ticket Resolution, IT Asset Management.</p>
<div class="skill-meter" style="--level: 95%"><span></span></div>
</article>
<article class="skill-card glass-card reveal">
<img src="assets/icons/network.svg" alt="" aria-hidden="true" loading="lazy">
<h3>Networking</h3>
<p>LAN/WAN Networking, TCP/IP, IPv4, Router & Switch Configuration, Structured Cabling, DHCP, DNS, VPN Connectivity, Wireless Networking, Enterprise Network Infrastructure, Network Troubleshooting.</p>
<div class="skill-meter" style="--level: 90%"><span></span></div>
</article>
<article class="skill-card glass-card reveal">
<img src="assets/icons/server.svg" alt="" aria-hidden="true" loading="lazy">
<h3>Systems</h3>
<p>Windows Administration, Windows Server, Linux (CentOS, Puppy Linux), VPS, Dedicated Servers, SSH, FTP, Remote Administration, File & Print Services, Server Monitoring.</p>
<div class="skill-meter" style="--level: 88%"><span></span></div>
</article>
<article class="skill-card glass-card reveal">
<img src="assets/icons/phone-call.svg" alt="" aria-hidden="true" loading="lazy">
<h3>VoIP</h3>
<p>Asterisk, FreePBX, AsteriskNOW, VOS3000, ASTPP, SIP, IAX, VoIP Deployment, Dial Plan Configuration, Carrier Routing, Call Quality Monitoring, Enterprise VoIP Support.</p>
<div class="skill-meter" style="--level: 93%"><span></span></div>
</article>
<article class="skill-card glass-card reveal">
<img src="assets/icons/electrical.svg" alt="" aria-hidden="true" loading="lazy">
<h3>Electrical</h3>
<p>Industrial Electrical Systems, Electrical Installation, Industrial Maintenance, Preventive Maintenance, Electrical Troubleshooting, Panel Boards, Cable Trays, Wiring, CCTV Installation, Electrical Safety.</p>
<div class="skill-meter" style="--level: 85%">
<span></span>
</div>
</article>
<article class="skill-card glass-card reveal">
<img src="assets/icons/wrench.svg" alt="" aria-hidden="true" loading="lazy">
<h3>Field Service</h3>
<p>Equipment Installation, Equipment Diagnostics, Commissioning, Break/Fix Support, Preventive Maintenance, Technical Troubleshooting, Component Replacement, Printer & Scanner Support, Mobile Device Servicing, On-site Technical Support.</p>
<div class="skill-meter" style="--level: 92%"><span></span></div>
</article>
<article class="skill-card glass-card reveal">
<img src="assets/icons/workflow.svg" alt="" aria-hidden="true" loading="lazy">
<h3>Operations</h3>
<p>Technical Operations, Procurement, Vendor Management, Inventory Management, Asset Management, Production Planning, Logistics Coordination, KPI Monitoring, Technical Documentation, Business Operations.</p>
<div class="skill-meter" style="--level: 89%">
<span></span>
</div>
</article>
<article class="skill-card glass-card reveal">
<img src="assets/icons/users.svg" alt="" aria-hidden="true" loading="lazy">
<h3>Professional Competencies</h3>
<p>Customer Service, Incident Management, Problem-solving, Adaptability, Cross-functional Collaboration, Stakeholder Communication, Time Management, SLA Compliance, Continuous Improvement, Analytical Thinking.</p>
<div class="skill-meter" style="--level: 91%">
<span></span>
</div>
</article>
</div>
</div>
</section>
<section class="section projects" id="projects" aria-labelledby="projects-title">
<div class="container">
<div class="section-heading centered reveal">
<p class="eyebrow">Featured Projects</p>
<h2 id="projects-title">
Enterprise Infrastructure, Technical Operations & Engineering Projects
</h2>
<p class="section-subtitle">
Representative projects demonstrating hands-on experience in enterprise IT infrastructure, systems administration, networking, VoIP, industrial electrical engineering, manufacturing operations and technical leadership across manufacturing, education, telecommunications and commercial environments.
</p>
</div>
<div class="project-grid">
<article class="project-card glass-card reveal">
<p class="project-source">
<strong>TMT Group BD</strong>
<span>• Bogura, Bangladesh</span>
</p>
<h3>
Enterprise IT Infrastructure Deployment
<span class="project-role-tag">
(Technical Operations Manager)
</span>
</h3>
<p>
Designed, deployed, administered and supported enterprise IT infrastructure across multiple business divisions, delivering desktop support, Windows administration, endpoint lifecycle management and end-user computing services for <strong>130+ end users</strong>.
</p>
<dl>
<dt>Technologies Used</dt>
<dd>
Windows 10/11,
Windows Administration,
Desktop Support,
End-User Support,
Microsoft Office,
IT Infrastructure,
LAN/WAN Networking,
TCP/IP,
OS Deployment,
Windows Imaging,
Software Installation,
IT Asset Management,
Remote Support,
Hardware Troubleshooting,
Field Service
</dd>
<dt>Key Responsibilities</dt>
<dd>
Installed, configured and supported Windows desktops, software, printers and network devices; performed Windows imaging, OS deployment, software installation, shared folder permissions, network drive mapping, Windows file & print services, user account support, endpoint lifecycle management, LAN/WAN administration, hardware troubleshooting and enterprise end-user support.
</dd>
<dt>Key Achievements</dt>
<dd>
Successfully established enterprise IT infrastructure across four business divisions, supporting 130+ end users while improving system availability, operational efficiency, business continuity and standardizing desktop support processes.
</dd>
</dl>
</article>
<article class="project-card glass-card reveal">
<p class="project-source">
<strong>TMT Group BD</strong>
<span>• Bogura, Bangladesh</span>
</p>
<h3>
Enterprise Network, Security & Surveillance Infrastructure
<span class="project-role-tag">
(Technical Operations Manager)
</span>
</h3>
<p>
Designed, deployed, administered and maintained enterprise networking and physical security infrastructure, delivering reliable connectivity, surveillance, secure access and uninterrupted business operations across multiple facilities.
</p>
<dl>
<dt>Technologies Used</dt>
<dd>
LAN/WAN Networking,
TCP/IP,
DHCP,
DNS,
VPN Connectivity,
Routers & Switches,
Wireless Access Points,
Structured Cabling,
CCTV Installation,
IP Camera Systems,
NVR/DVR,
Access Control Systems,
Biometric Attendance,
UPS Systems,
Network Monitoring,
Network Configuration,
Physical Security,
Network Troubleshooting
</dd>
<dt>Key Responsibilities</dt>
<dd>
Installed and configured enterprise routers, switches, wireless access points, VPN connectivity, structured cabling, CCTV systems, IP camera systems, NVR/DVR, biometric attendance devices, access control systems, UPS systems, performed network troubleshooting and provided on-site technical support.
</dd>
<dt>Key Achievements</dt>
<dd>
Successfully delivered enterprise networking and integrated physical security infrastructure across <strong>four business divisions</strong>, improving network availability, surveillance reliability, workplace security and business continuity.
</dd>
</dl>
</article>
<article class="project-card glass-card reveal">
<p class="project-source">
<strong>TMT Group BD</strong>
<span>• Bogura, Bangladesh</span>
</p>
<h3>
Industrial Electrical Infrastructure & Power Distribution Systems
<span class="project-role-tag">
(Technical Operations Manager)
</span>
</h3>
<p>
Designed, implemented, tested and commissioned industrial electrical infrastructure for manufacturing plants, technical laboratories, agricultural facilities and commercial operations, delivering reliable power distribution, electrical safety, backup power systems and production-ready electrical environments.
</p>
<dl>
<dt>Technologies Used</dt>
<dd>
Industrial Electrical Systems,
220V & 440V Power Distribution,
Single Line Diagram (SLD),
Electrical Load Calculation,
Distribution Boards,
MCCB,
MCB,
Industrial Control Panels,
Power Cables,
Electrical Wiring,
Cable Jointing,
Cable Tray Installation,
UPS Systems,
Backup Generator,
Earthing Systems,
Equipment Commissioning,
Electrical Testing,
Preventive Maintenance
</dd>
<dt>Key Responsibilities</dt>
<dd>
Performed electrical load calculations, prepared single-line diagrams (SLDs), installed distribution boards, MCCBs, MCBs, industrial control panels, cable trays, power cable routing, UPS systems, backup generators, earthing systems and production equipment power connections while conducting testing, commissioning, preventive maintenance, fault diagnosis and electrical safety inspections.
</dd>
<dt>Key Achievements</dt>
<dd>
Successfully delivered industrial electrical infrastructure for manufacturing plants, technical laboratories, agricultural facilities and commercial operations, improving power reliability, equipment availability, operational safety and production continuity through structured engineering, testing and commissioning.
</dd>
</dl>
</article>
<article class="project-card glass-card reveal">
<p class="project-source">
<strong>TMT Group BD</strong>
<span>• Bogura, Bangladesh</span>
</p>
<h3>
Technical Laboratory Infrastructure & Commissioning
<span class="project-role-tag">
(Technical Operations Manager)
</span>
</h3>
<p>
Planned, designed, commissioned and supported fully operational technical laboratories by integrating enterprise IT infrastructure, industrial electrical systems, networking, laboratory equipment and end-user computing environments for vocational education and technical training.
</p>
<dl>
<dt>Technologies Used</dt>
<dd>
Windows 10/11,
Windows Administration,
Desktop Support,
IT Infrastructure,
LAN/WAN Networking,
Network Configuration,
Computer Hardware,
Electrical Installation,
Structured Cabling,
UPS Systems,
Laboratory Equipment,
Workstation Deployment,
System Commissioning,
Technical Training Infrastructure
</dd>
<dt>Key Responsibilities</dt>
<dd>
Managed complete laboratory deployment including workstation installation, computer hardware setup, LAN/WAN infrastructure, structured cabling, electrical distribution, UPS installation, laboratory equipment configuration, system testing, commissioning, preventive maintenance, technical support and operational readiness for technical training facilities.
</dd>
<dt>Key Achievements</dt>
<dd>
Successfully delivered fully operational technical laboratories by integrating reliable IT infrastructure, industrial electrical systems, networking and laboratory equipment, creating production-ready practical training environments that enhanced vocational education and technical skills development.
</dd>
</dl>
</article>
<article class="project-card glass-card reveal">
<p class="project-source">
<strong>TMT Agro Industries Pvt. Ltd. & TMT Agro Farm</strong>
<span>• TMT Group BD</span>
</p>
<h3>
Agricultural Manufacturing Operations & Technical Infrastructure
<span class="project-role-tag">
(Technical Operations Manager)
</span>
</h3>
<p>
Managed agricultural manufacturing operations by overseeing production planning, industrial electrical infrastructure, factory utilities, inventory control, warehouse operations, packaging, quality assurance and technical support, ensuring efficient production, operational reliability and uninterrupted manufacturing operations.
</p>
<dl>
<dt>Technologies Used</dt>
<dd>
Manufacturing Operations,
Production Planning,
Batch Production,
Raw Material Management,
Inventory Management,
Warehouse Operations,
Stock Ledger,
Industrial Electrical Systems,
Equipment Maintenance,
Preventive Maintenance,
Packaging Operations,
Quality Control,
Vendor Management,
Factory Utilities,
Process Improvement,
Technical Operations
</dd>
<dt>Key Responsibilities</dt>
<dd>
Supervised batch production, coordinated raw material procurement, maintained inventory records and stock ledgers, managed warehouse operations, monitored production equipment, supported industrial electrical systems, coordinated packaging activities, scheduled preventive maintenance, ensured product quality and maintained efficient day-to-day production operations.
</dd>
<dt>Key Achievements</dt>
<dd>
Successfully supported the production, packaging, inventory management and stock control of agricultural products including <strong>Gypsum</strong>, <strong>Super Potash</strong>, <strong>Power Plus</strong>, <strong>Chelated Zinc</strong>, <strong>Solubor Boron</strong>, <strong>Platoon Plus</strong> and <strong>Organic Fertilizer</strong>, improving production efficiency, inventory accuracy, operational reliability and product quality through structured manufacturing processes and technical operations.