-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
1043 lines (936 loc) · 77.2 KB
/
index.html
File metadata and controls
1043 lines (936 loc) · 77.2 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">
<!-- Global site tag (gtag.js) - Google Analytics -->
<!-- <script async src="https://www.googletagmanager.com/gtag/js?id=UA-153845433-1"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag() {
dataLayer.push(arguments);
}
gtag('js', new Date());
gtag('config', 'UA-153845433-1');
</script> -->
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<meta name="description" content="IT ICT vmware vdi karam ajaj CV resume windows server esxi vsphere virtualization vcenter docker network security Eindhoven Helmond Netherlands Nederland Damascus fortigate firewall vm horizon vmware backup monitoring system server managementnet work printer linux system administrator networking ubuntu alpine arch OS kubernetes k8s jenkins web developer NAS commvault zerto HTML CSS JS Metro CSS3 Javascript HTML5 UI Library Web Development Framework cloud software engineer, cloud computing engineer, cloud system engineer cloud engineer requirements, cloud engineer qualifications, become a cloud engineer, it cloud engineer, software cloud engineer, engineer cloud, requirements for cloud engineer, cloud engineering software, cloud engineer program, software engineering cloud computing, system cloud engineer, prerequisite for cloud engineer, cloud engineering for beginners, engineering cloud computing, software engineering for the cloud">
<meta name="keywords" content="KARAM AJAJ, IT, ICT, vmware, vdi, karam, ajaj, CV, resume, windows server, esxi, vsphere, virtualization, vcenter, docker, network, security, Eindhoven, Helmond, Netherlands, Nederland, Damascus, fortigate, firewall, vm horizon, vmware backup, monitoring system, server managementnet, work printer, linux, linux system administrator, networking, ubuntu, alpine, arch, OS, kubernetes, k8s, jenkins, web developer, NAS, commvault, zerto, HTML, CSS, JS, Metro, CSS3, Javascript, HTML5, UI, Library, Web, Development, Framework">
<!-- <meta name="description" content="Helmond, Noord-Brabant, Nederland · System Engineer · Acknowledge"> -->
<meta name="author" content="Karam Ajaj">
<!-- <meta name="keywords" content="Helmond, Noord-Brabant, Nederland · System Engineer · Acknowledge"> -->
<!-- Google / Search Engine Tags -->
<meta itemprop="name" content="My resume">
<meta itemprop="description" content="private blog">
<meta itemprop="image" content="https://cv.vnerd.nl/img/preview.png">
<!-- Facebook Open Graph data -->
<meta property="og:title" content="My resume" />
<meta property="og:type" content="website" />
<meta property="og:image" content="https://cv.vnerd.nl/img/preview.png" />
<meta property="og:description" content="private blog" />
<meta property="og:site_name" content="test" />
<!-- Twitter Meta Tags -->
<meta name="twitter:card" content="summary_large_image">
<meta name="twitter:title" content="My resume">
<meta name="twitter:description" content="private blog">
<meta name="twitter:image" content="https://cv.vnerd.nl/img/preview.png">
<!-- Hotjar Tracking Code for https://cv.vnerd.nl -->
<!-- <script>
(function(h,o,t,j,a,r){
h.hj=h.hj||function(){(h.hj.q=h.hj.q||[]).push(arguments)};
h._hjSettings={hjid:1629954,hjsv:6};
a=o.getElementsByTagName('head')[0];
r=o.createElement('script');r.async=1;
r.src=t+h._hjSettings.hjid+j+h._hjSettings.hjsv;
a.appendChild(r);
})(window,document,'https://static.hotjar.com/c/hotjar-','.js?sv=');
</script> -->
<!-- Matomo -->
<!-- <script>
var _paq = window._paq = window._paq || [];
/* tracker methods like "setCustomDimension" should be called before "trackPageView" */
_paq.push(['trackPageView']);
_paq.push(['enableLinkTracking']);
(function() {
var u="//monitoring.caprover.karamajaj.nl/";
_paq.push(['setTrackerUrl', u+'matomo.php']);
_paq.push(['setSiteId', '1']);
var d=document, g=d.createElement('script'), s=d.getElementsByTagName('script')[0];
g.async=true; g.src=u+'matomo.js'; s.parentNode.insertBefore(g,s);
})();
</script> -->
<!-- End Matomo Code -->
<!-- <script async defer data-website-id="c9261da7-92c7-4d82-894e-e8caeecbe577" src="https://umami.caprover.karamajaj.nl/umami.js"></script> -->
<!-- Bootstrap core CSS -->
<link href="vendor/bootstrap/css/bootstrap.min.css" rel="stylesheet">
<!-- Custom fonts for this template -->
<!-- <link rel="preload" as="font"> -->
<link href="https://fonts.googleapis.com/css?family=Saira+Extra+Condensed:500,700" rel="stylesheet">
<link href="https://fonts.googleapis.com/css?family=Muli:400,400i,800,800i" rel="stylesheet">
<link href="vendor/fontawesome-free/css/all.min.css" rel="stylesheet">
<!-- Custom styles for this template -->
<link href="./css/resume.min.css" rel="stylesheet">
<!-- Custom icon-->
<link rel="icon" href="img/1.png">
<title>Karam Ajaj - System Engineer - Resume</title>
</head>
<body id="page-top">
<nav class="navbar navbar-expand-lg navbar-dark bg-primary fixed-top" id="sideNav">
<a class="navbar-brand js-scroll-trigger" href="#page-top">
<span class="d-block d-lg-none">Karam Ajaj</span>
<span class="d-none d-lg-block">
<img class="img-fluid img-profile rounded-circle mx-auto mb-2" src="img/profile.jpg" alt="karam ajaj CV resume profile picture">
</span>
</a>
<button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#navbarSupportedContent" aria-controls="navbarSupportedContent" aria-expanded="false" aria-label="Toggle navigation">
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse" id="navbarSupportedContent">
<ul class="navbar-nav">
<li class="nav-item">
<a class="nav-link js-scroll-trigger" href="#about" style="text-decoration:none">About</a>
</li>
<li class="nav-item">
<a class="nav-link js-scroll-trigger" href="#experience" style="text-decoration:none">Experience</a>
</li>
<li class="nav-item">
<a class="nav-link js-scroll-trigger" href="#education" style="text-decoration:none">Education</a>
</li>
<!--
<li class="nav-item">
<a class="nav-link js-scroll-trigger" href="#skills" style="text-decoration:none">Skills</a>
</li>
-->
<li class="nav-item">
<a class="nav-link js-scroll-trigger" href="#Certifications" style="text-decoration:none">Certifications</a>
</li>
<li class="nav-item">
<a class="nav-link js-scroll-trigger" href="#Courses" style="text-decoration:none">Courses</a>
</li>
<li class="nav-item">
<a class="nav-link js-scroll-trigger" href="#Badges" style="text-decoration:none">Badges</a>
</li>
<li class="nav-item">
<a class="nav-link js-scroll-trigger" href="#Languages" style="text-decoration:none">Languages</a>
</li>
<!-- <li class="nav-item">
<a class="nav-link js-scroll-trigger" href="" style="text-decoration:none"></a>
</li>
<li class="nav-item">
<a class="nav-link js-scroll-trigger" href="" style="text-decoration:none"></a>
</li> -->
<!-- <li class="nav-item">
<a class="nav-link js-scroll-trigger" href="resrc/karam-ajaj.pdf" target="_blank" style="text-decoration:underline">Download PDF version</a>
</li> -->
<li class="nav-item">
<a class="nav-link js-scroll-trigger" href="" style="text-decoration:underline">
<form class="nav-link js-scroll-trigger" style="text-decoration:underline" action="https://v2.convertapi.com/convert/web/to/pdf?Secret=LJmwd6I8hrUxCw8X&download=attachment" method="post" enctype="multipart/form-data">
<input type="hidden" name="Url" value="https://cv.vnerd.nl" />
<input type="submit" value="Convert to pdf"/>
</form>
</a>
</li>
<!--<li>
<script src="https://cdn.convertapi.com/button.js" data-secret="LJmwd6I8hrUxCw8X"></script>
<link rel="stylesheet" type="text/css" href="https://cdn.convertapi.com/button.css">
<button class="convertapi-btn" data-filename="karam-ajaj" UserCss="https://cv.karamajaj.nl/css/resume.min.css">Save page as PDF</button>
</li>
<li class="nav-item">
<a onclick="this.setAttribute('href', 'https://v2.convertapi.com/convert/web/to/pdf?secret=LJmwd6I8hrUxCw8X&download=attachment&url=' + encodeURI(window.location))" href="#">
Save page as PDF1
</a>
<a href="https://cv.karamajaj.nl;url=https://www.convertapi.com/labs/pdf-button" class="d-block mb-3" onclick="this.setAttribute('href', 'https://v2.convertapi.com/convert/web/to/pdf?secret=LJmwd6I8hrUxCw8X&download=attachment&url=' + encodeURI(window.location))">Save page as PDF2</a>
</li>
<li>
<form action="https://v2.convertapi.com/convert/web/to/pdf?Secret=LJmwd6I8hrUxCw8X&download=attachment" method="post" enctype="multipart/form-data">
<input type="hidden" name="Url" value="https://cv.karamajaj.nl" />
<input type="hidden" name="FileName" value="karam-ajaj" />
<input type="hidden" name="UserCss" value="https://cv.karamajaj.nl/css/resume.min.css" />
<input type="submit" value="Convert file"/>
</form>
</li>
<li>
<script src="https://cdn.convertapi.com/button.js" data-secret="LJmwd6I8hrUxCw8X"></script>
<link rel="stylesheet" type="text/css" href="https://cdn.convertapi.com/button.css">
<button class="convertapi-btn">Save page as PDF</button>
</li>-->
</ul>
</div>
</nav>
<div class="container-fluid p-0">
<section class="resume-section p-3 p-lg-5 d-flex align-items-center" id="about">
<div class="w-100">
<h1 class="mb-0">Karam
<span class="text-primary">Ajaj</span>
</h1>
<div class="subheading mb-5">
<a href="mailto:karam.ajaj@hotmail.com">karam.ajaj@hotmail.com</a>
<!-- </br>+31 6 53 50 28 65 -->
</div>
<p class="lead mb-5"><h3 class="mb-0">Cloud & Infrastructure Automation Consultant</h3><br>
Experienced in designing, automating, and optimizing cloud and hybrid infrastructures for enterprise clients. Certified in VMware, Azure, and multiple industry-leading technologies.<br>
Passionate about delivering scalable solutions, driving digital transformation, and enabling operational excellence. Skilled in Infrastructure-as-Code, CI/CD, and cross-team collaboration.<br>
Actively seeking new opportunities to leverage my expertise in cloud automation, DevOps, and IT modernization to help organizations innovate and grow.
</p><br>
<div class="social-icons">
<a href="https://www.facebook.com/karam.ajaj" aria-label="facebook" target="_blank" rel="noopener">
<i class="fab fa-facebook-f"></i>
</a>
<a href="https://www.linkedin.com/in/karam-ajaj" aria-label="linkedin" target="_blank" rel="noopener">
<i class="fab fa-linkedin-in"></i>
</a>
<a href="https://www.credly.com/users/karam-ajaj/badges?sort=-state_updated_at&page=1" aria-label="credly" target="_blank" rel="noopener">
<i class="fas fa-id-badge"></i>
</a>
<a href="https://github.com/karam-ajaj" aria-label="github" target="_blank" rel="noopener">
<i class="fab fa-github"></i>
</a>
</div>
</div>
</section>
<hr class="m-0">
<section class="resume-section p-3 p-lg-5 d-flex justify-content-center" id="experience">
<div class="w-100">
<h2 class="mb-5">Experience</h2>
<div class="resume-item d-flex flex-column flex-md-row justify-content-between mb-5">
<div class="resume-content">
<h3 class="mb-0">Cloud Management & Automation Consultant</h3>
<div class="subheading mb-3"><a href="https://itq.eu/" target="_blank" rel="noopener">ITQ</a></div>
<p>
• Design and implement end-to-end automation solutions using VMware Aria Automation (formerly vRealize Automation) tailored to client-specific infrastructure and governance needs.</br>
• Develop infrastructure-as-code modules to manage provisioning, configuration, and lifecycle of virtualized and hybrid cloud environments.</br>
• Customize workflows and blueprints to integrate external systems and enable dynamic resource allocation, self-service portals, and automated lifecycle management.</br>
• Collaborate with ITQ architects and client stakeholders to assess existing environments, identify gaps, and propose modernization strategies.</br>
• Lead cloud migration and infrastructure modernization projects involving vSphere, NSX, vSAN, and other components of the VMware ecosystem.</br>
• Build and maintain reusable automation libraries, modules, and APIs to streamline operations across multiple customer environments.</br>
• Provide documentation, knowledge transfer, and enablement workshops to client teams for operational continuity and skill development.
</br>
</p>
</div>
<div class="resume-date text-md-right">
<span class="text-primary">Beverwijk, The Netherlands</span></br>
<span class="text-primary">August 2023 - Present</span>
</div>
</div>
<div class="resume-item d-flex flex-column flex-md-row justify-content-between mb-5">
<div class="resume-content">
<h3 class="mb-0">Automation Consultant (ITQ)</h3>
<div class="subheading mb-3"><a href="https://www.windesheim.com/" target="_blank" rel="noopener">Windesheim University of Applied Sciences</a></div>
<p>
• Design and implement the required use cases in VMware Aria Automation and VMware Aria Automation Orchestrator.</br>
• Create the logic and workflows to deploy students labs based on the customer requirements.
</br>
</p>
</div>
<div class="resume-date text-md-right">
<span class="text-primary">Zwolle, The Netherlands</span></br>
<span class="text-primary">January 2025 - February 2025</span>
</div>
</div>
<div class="resume-item d-flex flex-column flex-md-row justify-content-between mb-5">
<div class="resume-content">
<h3 class="mb-0">Platform Engineer (ITQ)</h3>
<div class="subheading mb-3"><a href="https://www.rhhbv.nl/" target="_blank" rel="noopener">Rotterdam Harbour Holding</a></div>
<p>
• Automated Azure infrastructure using Terraform, enhancing consistency and reducing manual effort.</br>
• Deployed and configured Terraform Cloud for CI/CD pipelines and created reusable modules for scalable infrastructure management.</br>
• Replicated production environments into acceptance and recovery tenants, implementing robust disaster recovery processes.</br>
• Developed comprehensive documentation for Terraform scripts, recovery procedures, and operational workflows.
</br>
</p>
</div>
<div class="resume-date text-md-right">
<span class="text-primary">Rotterdam, The Netherlands</span></br>
<span class="text-primary">October 2024 - December 2024</span>
</div>
</div>
<div class="resume-item d-flex flex-column flex-md-row justify-content-between mb-5">
<div class="resume-content">
<h3 class="mb-0">Automation Consultant (ITQ)</h3>
<div class="subheading mb-3"><a href="https://www.windesheim.com/" target="_blank" rel="noopener">Windesheim University of Applied Sciences</a></div>
<p>
• Design and implement the required use cases in VMware Aria Automation and VMware Aria Automation Orchestrator.</br>
• Create the logic and workflows to deploy students labs based on the customer requirements.
</br>
</p>
</div>
<div class="resume-date text-md-right">
<span class="text-primary">Zwolle, The Netherlands</span></br>
<span class="text-primary">July 2024 - September 2024</span>
</div>
</div>
<div class="resume-item d-flex flex-column flex-md-row justify-content-between mb-5">
<div class="resume-content">
<h3 class="mb-0">Automation Consultant (ITQ)</h3>
<div class="subheading mb-3"><a href="https://www.kpn.com/" target="_blank" rel="noopener">KPN</a></div>
<p>
• This was the second phase of a migration project from vra/vro version 7 to Aria Automation 8.x </br>
• This was the deployment phase, and the main purpose of this phase is to deploy the new environments (TST,DTA,PRD) based on the design, and create the necessary workflows/actions for onboarding.</br>
• Created SQL queries to get the current customers data from an external database so it will be triggered from Aria Automation before starting the migration for customers.
</br>
</p>
</div>
<div class="resume-date text-md-right">
<span class="text-primary">Apeldoorn, The Netherlands</span></br>
<span class="text-primary">March 2024 - June 2024</span>
</div>
</div>
<div class="resume-item d-flex flex-column flex-md-row justify-content-between mb-5">
<div class="resume-content">
<h3 class="mb-0">Automation Consultant (ITQ)</h3>
<div class="subheading mb-3"><a href="https://interconnect.nl/" target="_blank" rel="noopener">Interconnect Services B.V.</a></div>
<p>
• The use case was to deploy the right workload on the pre-defined hosts/clusters using Ansible, and to monitor these placements using Aria Operations.</br>
• Created Ansible Tower dynamic inventories based on parameters collected from vCenters.</br>
• Created Playbooks, Templates, Schedules, etc.. to get the current status and automate the resource migration process.</br>
• Created customized views, reports and dashboards in Aria Operations to have an overview of the resources placement with historical data.
</br>
</p>
</div>
<div class="resume-date text-md-right">
<span class="text-primary">'s-Hertogenbosch, The Netherlands</span></br>
<span class="text-primary">February 2024 - February 2024</span>
</div>
</div>
<div class="resume-item d-flex flex-column flex-md-row justify-content-between mb-5">
<div class="resume-content">
<h3 class="mb-0">Automation Consultant (ITQ)</h3>
<div class="subheading mb-3"><a href="https://www.denhaag.nl/nl/" target="_blank" rel="noopener">The Hague Municipality</a></div>
<p>
• Created catalog items and customized forms.</br>
• Created customization specifications and all the required day 2 actions.</br>
• Created the required custom naming policies.
</br>
</p>
</div>
<div class="resume-date text-md-right">
<span class="text-primary">The Hague, The Netherlands</span></br>
<span class="text-primary">February 2024 - March 2024</span>
</div>
</div>
<div class="resume-item d-flex flex-column flex-md-row justify-content-between mb-5">
<div class="resume-content">
<h3 class="mb-0">Aria Operations Specialist (ITQ)</h3>
<div class="subheading mb-3"><a href="https://www.true.nl/" target="_blank" rel="noopener">True B.V.</a></div>
<p>
• Deploy a green field Aria Operations environment.</br>
• Created dashboards and customized views based on the customer requested input.</br>
• Helped the customer with workshops for a better understanding of the product and how it will align with the current in-house tools and how it will be used in the long term.
</br>
</p>
</div>
<div class="resume-date text-md-right">
<span class="text-primary">Amsterdam, The Netherlands</span></br>
<span class="text-primary">December 2023 - January 2024</span>
</div>
</div>
<div class="resume-item d-flex flex-column flex-md-row justify-content-between mb-5">
<div class="resume-content">
<h3 class="mb-0">Automation Consultant (ITQ)</h3>
<div class="subheading mb-3"><a href="https://www.nn-group.com/home.htm" target="_blank" rel="noopener">Nationale Nederlanden (NN Group)</a></div>
<p>
• Creating catalog items based on the client requirments.</br>
• Developing actions in Aria Orchestrator.</br>
• Developing Onboarding workflows (creating NSX-T elements, projects, catalog entities, etc..).
</br>
</p>
</div>
<div class="resume-date text-md-right">
<span class="text-primary">The Hague, The Netherlands</span></br>
<span class="text-primary">November 2023 - December 2023</span>
</div>
</div>
<div class="resume-item d-flex flex-column flex-md-row justify-content-between mb-5">
<div class="resume-content">
<h3 class="mb-0">Aria Operations Specialist (ITQ)</h3>
<div class="subheading mb-3"><a href="https://www.q8.com/" target="_blank" rel="noopener">Kuwait Petroleum International (Q8)</a></div>
<p>
• Evaluate the customer requirements.</br>
• Install and configure integrations.</br>
• Create the requested views, dashboards, alerts, reports and policies in Aria Operations.
</br>
</p>
</div>
<div class="resume-date text-md-right">
<span class="text-primary">Kuwait City, Kuwait</span></br>
<span class="text-primary">October 2023 - October 2023</span>
</div>
</div>
<div class="resume-item d-flex flex-column flex-md-row justify-content-between mb-5">
<div class="resume-content">
<h3 class="mb-0">Automation Consultant (ITQ)</h3>
<div class="subheading mb-3"><a href="https://www.kpn.com/" target="_blank" rel="noopener">KPN</a></div>
<p>
• This was the first phase of a migration project from vra/vro version 7 to Aria Automation 8.x </br>
• This was the evaluation phase, and the main purpose of this phase is to collect all the information about the environment (components, integrations, etc..) and create a migration plan plus a new design for the new environment.
</br>
</p>
</div>
<div class="resume-date text-md-right">
<span class="text-primary">Apeldoorn, The Netherlands</span></br>
<span class="text-primary">August 2023 - October 2023</span>
</div>
</div>
<div class="resume-item d-flex flex-column flex-md-row justify-content-between mb-5">
<div class="resume-content">
<h3 class="mb-0">IT consultant (ITQ)</h3>
<div class="subheading mb-3"><a href="https://www.asml.com/en" target="_blank" rel="noopener">ASML</a></div>
<p>
• Two week assessment and tests to evaluate the migration from RedHat Enterprise Virtualization to Aria Automation/Orchestration.</br>
• During this project we implemented the required actions and workflows in Aria Orchestrator and did some performance tests to compare with the current production environment.
</br>
</p>
</div>
<div class="resume-date text-md-right">
<span class="text-primary">Eindhoven, The Netherlands</span></br>
<span class="text-primary">August 2023 - August 2023</span>
</div>
</div>
<div class="resume-item d-flex flex-column flex-md-row justify-content-between mb-5">
<div class="resume-content">
<h3 class="mb-0">Datacenter and Cloud Specialist</h3>
<div class="subheading mb-3"><a href="https://www.acknowledge.nl/" target="_blank" rel="noopener">Acknowledge</a></div>
<p>
• Aligning architecture choices with the security team, consultants and project engineers.</br>
• Lifecycle management and capacity management for cloud and data center services.</br>
• Maintaing the highest level of quality of our customers' infrastructure.</br>
• Delivering and maintaining relevant commissioning, management guidelines and technical documentation of data center and cloud services.</br>
• Training and coaching junior and medior data center engineers.
</br>
</p>
</div>
<div class="resume-date text-md-right">
<span class="text-primary">Waalre, The Netherlands</span></br>
<span class="text-primary">September 2021 - July 2023</span>
</div>
</div>
<div class="resume-item d-flex flex-column flex-md-row justify-content-between mb-5">
<div class="resume-content">
<h3 class="mb-0">Senior System Engineer (Cloud)</h3>
<div class="subheading mb-3"><a href="https://www.copaco.com/nl-nl/2tcloud-home" target="_blank" rel="noopener">Copaco 2tCloud</a></div>
<p>
• Designing, implementing, monitoring and ensuring timely troubleshooting within an advanced IT infrastructure.</br>
• Managing the lifecycle of servers, storage and network hardware.</br>
• Automating tasks, using "state of the art" configuration management tools.</br>
• Developing technical implementations of new products and services at both hardware and software level.</br>
• Support of the product managers in translating the requirements from the business into specifications for the infrastructure.
</br>
</p>
</div>
<div class="resume-date text-md-right">
<span class="text-primary">Eindhoven, The Netherlands</span></br>
<span class="text-primary">April 2020 - September 2021</span>
</div>
</div>
<div class="resume-item d-flex flex-column flex-md-row justify-content-between mb-5">
<div class="resume-content">
<h3 class="mb-0">ICT system administrator</h3>
<div class="subheading mb-3"><a href="https://www.please.nl" target="_blank" rel="noopener">Please
Payroll</a></div>
<p>
• Design, develop and maintain automation of VMWARE infrastructure.</br>
• Design installation, management and routine upgrades of VMWARE infrastructure.</br>
• Document the architecture and all procedures; prepare guidelines for other teams working with the platform.</br>
• Monitor performance and maintain systems according to requirements.</br>
• Ensure security through access controls, backups and firewall.</br>
• Perform server administration tasks, including user/group administration, security permissions, group policies, research event log warnings and errors, and resource monitoring, ensuring system architecture components work together seamlessly.
</br>
</p>
</div>
<div class="resume-date text-md-right">
<span class="text-primary">Helmond, The Netherlands</span></br>
<span class="text-primary">July 2018 - April 2020</span>
</div>
</div>
<div class="resume-item d-flex flex-column flex-md-row justify-content-between mb-5">
<div class="resume-content">
<h3 class="mb-0">Network and system engineer</h3>
<div class="subheading mb-3"><a href="http://mcc-syria.com/" target="_blank" rel="noopener">Medical Care
Company</a></div>
<p>• Design and develop of the Network Infrastructure (new structure migration).</br>• Manage system rolls (Java based medical insurance system).</br>• Resolve problems for network components, cameras, printers, computers
and servers.</br>• Coordinating the tasks for IT team.</br>• Perform daily system monitoring, verifying the integrity and availability of all hardware. </p>
</div>
<div class="resume-date text-md-right">
<span class="text-primary">Damascus, Syria</span></br>
<span class="text-primary">March 2015 – October 2016</span>
</div>
</div>
<div class="resume-item d-flex flex-column flex-md-row justify-content-between mb-5">
<div class="resume-content">
<h3 class="mb-0">IT Specialist</h3>
<div class="subheading mb-3"><a href="http://www.technoware-sy.com/" target="_blank" rel="noopener">TechnoWare</a></div>
<p>• Printers and pc's hardware and software maintenance.</br>• Responsible for hardware, OS and network maintenance for (62) servers.</br>• Manage networks in several organizations (more than 1000 client).
</p>
</div>
<div class="resume-date text-md-right">
<span class="text-primary">Damascus, Syria</span></br>
<span class="text-primary">February 2014 – March 2015</span>
</div>
</div>
</div>
</section>
<hr class="m-0">
<section class="resume-section p-3 p-lg-5 d-flex align-items-center" id="education">
<div class="w-100">
<h2 class="mb-5">Education</h2>
<div class="resume-item d-flex flex-column flex-md-row justify-content-between mb-5">
<div class="resume-content">
<h3 class="mb-0">Hack Your Future</h3>
<div class="subheading mb-3">Coding School</div>
<div>Front End Web Developer</div>
<p></p>
</div>
<div class="resume-date text-md-right">
<span class="text-primary">Amsterdam, Netherlands</span></br>
<span class="text-primary">March 2018 – June 2018</span>
</div>
</div>
<div class="resume-item d-flex flex-column flex-md-row justify-content-between mb-5">
<div class="resume-content">
<h3 class="mb-0">Damascus University</h3>
<div class="subheading mb-3">Bachelor of Science</div>
<div>Computer and Automation Engineering</div>
<p></p>
</div>
<div class="resume-date text-md-right">
<span class="text-primary">Damascus, Syria</span></br>
<span class="text-primary">September 2009 – June 2015</span>
</div>
</div>
<div class="resume-item d-flex flex-column flex-md-row justify-content-between">
<div class="resume-content">
<h3 class="mb-0">Damascus University</h3>
<div class="subheading mb-3">HIAST</div>
<div>Higher Institute for Applied Sciences and Technology</div>
<p></p>
</div>
<div class="resume-date text-md-right">
<span class="text-primary">Damascus, Syria</span></br>
<span class="text-primary">September 2008 - June 2009</span>
</div>
</div>
</div>
<!--
</section>
<hr class="m-0 ">
<section class="resume-section p-3 p-lg-5 d-flex align-items-center " id="skills">
<div class="w-100 ">
<h2 class="mb-5 ">Skills</h2>
<div class="row ">
<div class="col-6 mb-4 ">
<div class="subheading mb-3 ">Programming Languages</div>
<ul class="fa-ul mb-5 ">
<li>
<i class="fa-li fa fa-check "></i>HTML
</li>
<li>
<i class="fa-li fa fa-check "></i>CSS
</li>
<li>
<i class="fa-li fa fa-check "></i>JavaScript
</li>
<li>
<i class="fa-li fa fa-check "></i>WordPress
</li>
<li>
<i class="fa-li fa fa-check "></i>C#
</li>
<li>
<i class="fa-li fa fa-check "></i>PowerShell
</li>
</ul>
<div class="subheading mb-3 ">Networking</div>
<ul class="fa-ul mb-5 ">
<li>
<i class="fa-li fa fa-check "></i> Fortinet Firewalls & VMX
</li>
<li>
<i class="fa-li fa fa-check "></i> CCNA
</li>
<li>
<i class="fa-li fa fa-check "></i> Juniper Switches</li>
<li>
<i class="fa-li fa fa-check "></i> VPN
</li>
</ul>
</div>
<div class="col-6 mb-4 ">
<div class="subheading mb-3 ">VMWare</div>
<ul class="fa-ul mb-5 ">
<li><i class="fa-li fa fa-check "></i> vCenter Administration</li>
<li><i class="fa-li fa fa-check "></i> Horizon App Volumes</li>
<li><i class="fa-li fa fa-check "></i> Horizon Identity Manager</li>
<li> <i class="fa-li fa fa-check "></i> ThinApps</li>
<li><i class="fa-li fa fa-check "></i> vRealize Operations Manager</li>
<li><i class="fa-li fa fa-check "></i> vRealize Network Insight</li>
<li><i class="fa-li fa fa-check "></i> vRealize Log Insight</li>
<li><i class="fa-li fa fa-check "></i> vSAN</li>
<li><i class="fa-li fa fa-check "></i> NSX</li>
<li><i class="fa-li fa fa-check "></i> ESXi</li>
</ul>
<div class="subheading mb-3 ">Monitoring</div>
<ul class="fa-ul mb-5 ">
<li><i class="fa-li fa fa-check "></i> PRTG</li>
<li><i class="fa-li fa fa-check "></i> iLO</li>
<li><i class="fa-li fa fa-check "></i> iRDAC</li>
</ul>
</div>
<div class="col-6 mb-4 ">
<div class="subheading mb-3 ">Windows</div>
<ul class="fa-ul mb-5 ">
<li><i class="fa-li fa fa-check "></i> Active Directory</li>
<li><i class="fa-li fa fa-check "></i>Group Policy</li>
<li><i class="fa-li fa fa-check "></i>DNS</li>
<li><i class="fa-li fa fa-check "></i>DHCP</li>
<li><i class="fa-li fa fa-check "></i> RDS 2012</li>
<li><i class="fa-li fa fa-check "></i> ADFS</li>
<li><i class="fa-li fa fa-check "></i> VISIO</li>
</ul>
<div class="subheading mb-3 ">Security</div>
<ul class="fa-ul mb-5 ">
<li><i class="fa-li fa fa-check "></i> Fortinet VMX</li>
<li><i class="fa-li fa fa-check "></i> Kaspersky Administration</li>
</ul>
</div>
<div class="col-6 mb-4 ">
<div class="subheading mb-3 ">Storage</div>
<ul class="fa-ul mb-5 ">
<li><i class="fa-li fa fa-check "></i> CommVault</li>
<li><i class="fa-li fa fa-check "></i> NAS</li>
</ul>
<div class="subheading mb-3 ">Other</div>
<ul class="fa-ul mb-5 ">
<li><i class="fa-li fa fa-check "></i> Linux</li>
<li><i class="fa-li fa fa-check "></i> Matlab</li>
<li><i class="fa-li fa fa-check "></i> MySQL</li>
<li><i class="fa-li fa fa-check "></i> Labview</li>
</ul>
</div>
</div>
</div>
-->
</section>
<hr class="m-0 ">
<section class="resume-section p-3 p-lg-5 d-flex align-items-center " id="Certifications">
<div class="w-100 ">
<h2 class="mb-5 ">Certifications</h2>
<ul class="fa-ul mb-0 ">
<li><i class="fa-li fa fa-bookmark text-dark"></i>VMware:
<ul>
<li><a href="resrc/certification/VMware/VMware Certified Professional - VMware Cloud 2023 certificate.pdf" target="_blank" rel="noopener">VMware Certified Professional - VMware Cloud 2023 certificate</a></li>
<li><a href="resrc/certification/VMware/VMware Certified Professional - Data Center Virtualization 2022 certificate.pdf" target="_blank" rel="noopener">VMware Certified Professional - Data Center Virtualization 2022</a></li>
<li><a href="resrc/certification/VMware/VMware Certified Professional - Network Virtualization 2019 certificate.pdf" target="_blank" rel="noopener">VMware Certified Professional - Network Virtualization 2019</a></li>
<li><a href="resrc/certification/VMware/VMware Certified Professional - Desktop and Mobility 2019 certificate.pdf" target="_blank" rel="noopener">VMware Certified Professional - Desktop and Mobility 2019</a></li>
<li><a href="https://www.youracclaim.com/badges/6dd15a0c-54d0-40a9-ba59-5b1780bb39fe/public_url" target="_blank" rel="noopener">VMware vSphere 6.5 Foundations</a></li>
</ul>
</li>
<br>
<li><i class="fa-li fa fa-bookmark text-dark"></i>Zerto:
<ul>
<li><a href="resrc/certification/Zerto/ZCP Enterprise Engineer 8.0.pdf" target="_blank" rel="noopener">Zerto Certified Professional (ZCP) Enterprise Engineer 8.0</a></li>
<li><a href="resrc/certification/Zerto/ZCP Advanced.pdf" target="_blank" rel="noopener">Zerto Certified Professional (ZCP) Advanced</a></li>
<li><a href="resrc/certification/Zerto/ZCP Enterprise Engineer.pdf" target="_blank" rel="noopener">Zerto Certified Professional (ZCP) Enterprise Engineer</a></li>
<li><a href="resrc/certification/Zerto/ZCP Basic.pdf" target="_blank" rel="noopener">Zerto Certified Professional (ZCP) Basic</a></li>
<li><a href="resrc/certification/Zerto/Zerto - Associate.pdf" target="_blank" rel="noopener">Zerto - Associate</a></li>
</ul>
</li>
<br>
<li><i class="fa-li fa fa-bookmark text-dark"></i>Fortinet:
<ul>
<li><a href="resrc/certification/Fortinet/NSE 2 Network Security Associate - 2021.pdf" target="_blank" rel="noopener">NSE 2 Network Security Associate - 2021</a></li>
<li><a href="resrc/certification/Fortinet/NSE 1 Network Security Associate - 2021.pdf" target="_blank" rel="noopener">NSE 1 Network Security Associate - 2021</a></li>
<li><a href="resrc/certification/Fortinet/NSE 2 Network Security Associate - 2020.pdf" target="_blank" rel="noopener">NSE 2 Network Security Associate - 2020</a></li>
<li><a href="resrc/certification/Fortinet/NSE 1 Network Security Associate - 2019.pdf" target="_blank" rel="noopener">NSE 1 Network Security Associate - 2019</a></li>
</ul>
</li>
<br>
<li><i class="fa-li fa fa-bookmark text-dark"></i>IBM:
<ul>
<li><a href="resrc/certification/IBM/CC0101EN - Introduction to Cloud.pdf" target="_blank" rel="noopener">CC0101EN - Introduction to Cloud</a></li>
<li><a href="resrc/certification/IBM/CC0103EN - IBM Cloud Essentials V3.pdf" target="_blank" rel="noopener">CC0103EN - IBM Cloud Essentials V3</a></li>
<li><a href="resrc/certification/IBM/CC0150EN - Building Cloud Native and Multicloud Applications.pdf" target="_blank" rel="noopener">CC0150EN - Building Cloud Native and Multicloud Applications</a></li>
<li><a href="resrc/certification/IBM/CC0201EN - Introduction to Containers, Kubernetes, and OpenShift V2.pdf" target="_blank" rel="noopener">CC0201EN - Introduction to Containers, Kubernetes, and OpenShift V2</a></li>
<li><a href="resrc/certification/IBM/CO0101EN - Docker Essentials: A Developer Introduction.pdf" target="_blank" rel="noopener">CO0101EN - Docker Essentials: A Developer Introduction</a></li>
</ul>
</li>
<br>
<li><i class="fa-li fa fa-bookmark text-dark"></i>HP:
<ul>
<li><a href="resrc/certification/HP/HPE ATP - Hybrid IT Solutions V2.pdf" target="_blank" rel="noopener">HPE ATP - Hybrid IT Solutions V2</a></li>
</ul>
</li>
<br>
<li><i class="fa-li fa fa-bookmark text-dark"></i>Oracle:
<ul>
<li><a href="resrc/certification/Oracle/Oracle Cloud Infrastructure 2022 Certified Foundations Associate.pdf" target="_blank" rel="noopener">Oracle Cloud Infrastructure 2022 Certified Foundations Associate</a></li>
<li><a href="resrc/certification/Oracle/Oracle Cloud Data Management 2022 Foundations Certified Associate.pdf" target="_blank" rel="noopener">Oracle Cloud Data Management 2022 Foundations Certified Associate</a></li>
</ul>
</li>
<br>
<li><i class="fa-li fa fa-bookmark text-dark"></i>ITIL:
<ul>
<li><a href="resrc/certification/ITIL/ITILv4 Foundation Certificate in IT Service Management.pdf" target="_blank" rel="noopener">ITILv4 Foundation Certificate in IT Service Management</a></li>
</ul>
</li>
<br>
<li><i class="fa-li fa fa-bookmark text-dark"></i>Linux
<ul>
<li><a href="resrc/certification/Linux/LFD116 Software Engineering Basics for Embedded Systems.pdf" target="_blank" rel="noopener">LFD116 - Software Engineering Basics for Embedded Systems</a></li>
<li><a href="resrc/certification/Linux/Green Software for Practitioners LFC131.pdf" target="_blank" rel="noopener">LFC131 - Green Software for Practitioners</a></li>
<li><a href="resrc/certification/Linux/CS401 Operating Systems.pdf" target="_blank" rel="noopener">CS401 - Operating Systems</a></li>
<li><a href="resrc/certification/Linux/Docker Essentials - A Developer Introduction.pdf" target="_blank" rel="noopener">Docker Essentials - A Developer Introduction</a></li>
</ul>
</li>
<br>
<li><i class="fa-li fa fa-bookmark text-dark"></i>Security
<ul>
<li><a href="resrc/certification/Security/Security en Privacy Awareness Certificate.pdf" target="_blank" rel="noopener">Security en Privacy Awareness Certificate</a></li>
</ul>
</li>
<br>
<li><i class="fa-li fa fa-bookmark text-dark"></i>Others:
<ul>
<li><a href="resrc/certification/Others/CS107 C++ Programming.pdf" target="_blank" rel="noopener">CS107: C++ Programming</a></li>
<li><a href="resrc/certification/Others/Python Basic Certificate.png" target="_blank" rel="noopener">Python Basic Certificate.png</a></li>
<li><a href="resrc/certification/Others/Google - Creative Certification Exam.pdf" target="_blank" rel="noopener">Google - Creative Certification Exam</a></li>
<li><a href="resrc/certification/Others/UAE Codes Certificate.pdf" target="_blank" rel="noopener">UAE Codes Certificate</a></li>
<li><a href="resrc/certification/Others/Hour_of_code.jpg" target="_blank" rel="noopener">The Hour of Code</a></li>
<li><a href="resrc/certification/Others/automatic_control_certificate.pdf" target="_blank" rel="noopener">Automatic Control Systems</a></li>
<li><a href="resrc/certification/Others/information-retrieval_certificate.pdf" target="_blank" rel="noopener">Principals of information retrieval</a></li>
<li><a href="resrc/certification/Others/thinkingand-logical-fallacies_certificate.pdf" target="_blank" rel="noopener">Thinking and Logical Fallacies Certificate</a></li>
<li><a href="resrc/certification/Others/PrinciplesofScientificResearchWorkshop.pdf" target="_blank" rel="noopener">Principles of Scientific Research Workshop</a></li>
</ul>
</li>
<br>
</ul>
</div>
</section>
<hr class="m-0 ">
<section class="resume-section p-3 p-lg-5 d-flex align-items-center " id="Courses">
<div class="w-100 ">
<h2 class="mb-5 ">Courses</h2>
<ul class="fa-ul mb-0 ">
<li>
<li><i class="fa-li fa fa-book text-dark"></i>VMware:
<ul>
<li><a href="resrc/courses/VMware/Skyline Advisor Pro Technologist.pdf" target="_blank" rel="noopener">Skyline Advisor Pro Technologist</a></li>
<li><a href="resrc/courses/VMware/Cloud Computing and Operations.pdf" target="_blank" rel="noopener">Cloud Computing and Operations</a></li>
<li><a href="resrc/courses/VMware/SDDC Planning and Design.pdf" target="_blank" rel="noopener">SDDC Planning and Design</a></li>
<li><a href="resrc/courses/VMware/VMware Cloud Onboarding and Setup.pdf" target="_blank" rel="noopener">VMware Cloud Onboarding and Setup</a></li>
<li><a href="resrc/courses/VMware/SDDC Networking.pdf" target="_blank" rel="noopener">SDDC Networking</a></li>
<li><a href="resrc/courses/VMware/VMware Horizon 7.7 Professional Exam Prep.pdf" target="_blank" rel="noopener">VMware Horizon 7.7 Professional Exam Prep</a</li>
<li><a href="resrc/courses/VMware/Horizon 7 Install, Configure, Manage [V7.3] - On Demand Lab.pdf" target="_blank" rel="noopener">Horizon 7 Install, Configure, Manage [V7.3] - On Demand Lab</a></li>
<li><a href="resrc/courses/VMware/VMware NSX Install, Configure, Manage [V6.4] - On Demand Assessment.pdf" target="_blank" rel="noopener">VMware NSX Install, Configure, Manage [V6.4] - On Demand Assessment</a></li>
<li><a href="resrc/courses/VMware/VMware NSX Install, Configure, Manage [V6.4] - On Demand Content.pdf" target="_blank" rel="noopener">VMware NSX Install, Configure, Manage [V6.4] - On Demand Content</a></li>
<li><a href="resrc/courses/VMware/VMware NSX Install, Configure, Manage [V6.4] - On Demand Evaluation.pdf" target="_blank" rel="noopener">VMware NSX Install, Configure, Manage [V6.4] - On Demand Evaluation</a></li>
<li><a href="resrc/courses/VMware/VMware NSX Install, Configure, Manage [V6.4] - On Demand Lab.pdf" target="_blank" rel="noopener">VMware NSX Install, Configure, Manage [V6.4] - On Demand Lab</a></li>
<li><a href="resrc/courses/VMware/VMware vSAN Deploy and Manage [V6.6] - On Demand Lab.pdf" target="_blank" rel="noopener">VMware vSAN Deploy and Manage [V6.6] - On Demand Lab</a></li>
<li><a href="resrc/courses/VMware/VMware vSAN Deploy and Manage [V6.6] - On Demand.pdf" target="_blank" rel="noopener">VMware vSAN Deploy and Manage [V6.6] - On Demand</a></li>
<li><a href="resrc/courses/VMware/VMware Horizon 7 - Configure and Manage User Environment Manager.pdf" target="_blank" rel="noopener">VMware Horizon 7: Configure and Manage User Environment Manager</a></li>
<li><a href="resrc/courses/VMware/VMware Horizon 7 - Configure and Manage VMware Identity Manager.pdf" target="_blank" rel="noopener">VMware Horizon 7: Configure and Manage VMware Identity Manager</a></li>
<li><a href="resrc/courses/VMware/VMware Horizon 7 Fundamentals.pdf" target="_blank" rel="noopener">VMware Horizon 7 Fundamentals</a></li>
<li><a href="resrc/courses/VMware/vSphere 6.5 Foundations 1.pdf" target="_blank" rel="noopener">vSphere 6.5 Foundations 1</a></li>
<li><a href="resrc/courses/VMware/vSphere 6.5 Foundations 2.pdf" target="_blank" rel="noopener">vSphere 6.5 Foundations 2</a></li>
<li><a href="resrc/courses/VMware/vSphere 6.5 Foundations 3.pdf" target="_blank" rel="noopener">vSphere 6.5 Foundations 3</a></li>
<li><a href="resrc/courses/VMware/vSphere 6.5 Foundations 4.pdf" target="_blank" rel="noopener">vSphere 6.5 Foundations 4</a></li>
<li><a href="resrc/courses/VMware/vSphere 6.5 Foundations 5.pdf" target="_blank" rel="noopener">vSphere 6.5 Foundations 5</a></li>
<li><a href="resrc/courses/VMware/vSphere 6.5 Foundations 6.pdf" target="_blank" rel="noopener">vSphere 6.5 Foundations 6</a></li>
<li><a href="resrc/courses/VMware/VMware Workspace ONE - Introducing the Cloud-based and On-premises Architectures.pdf" target="_blank" rel="noopener">VMware Workspace ONE - Introducing the Cloud-based and On-premises Architectures</a></li>
<li><a href="resrc/courses/VMware/VMware Workspace ONE - Manage Windows Desktop Devices.pdf" target="_blank" rel="noopener">VMware Workspace ONE - Manage Windows Desktop Devices</a></li>
<li><a href="resrc/courses/VMware/VMware Workspace ONE - Create a Tenant and Integrate Identity Providers.pdf" target="_blank" rel="noopener">VMware Workspace ONE - Create a Tenant and Integrate Identity Providers</a></li>
<li><a href="resrc/courses/VMware/VMware Certified Associate - Cloud (VCA-Cloud).pdf" target="_blank" rel="noopener">VMware Certified Associate - Cloud (VCA-Cloud)</a></li>
<li><a href="resrc/courses/VMware/vSphere 6.5 Foundations - Configure vSphere Storage.pdf" target="_blank" rel="noopener">vSphere 6.5 Foundations - Configure vSphere Storage</a></li>
<li><a href="resrc/courses/VMware/VMware vCloud Director Essentials.pdf" target="_blank" rel="noopener">VMware vCloud Director Essentials</a></li>
<li><a href="resrc/courses/VMware/vSphere 6.5 Foundations - Install and Configure vCenter and ESXi.pdf" target="_blank" rel="noopener">vSphere 6.5 Foundations - Install and Configure vCenter and ESXi</a></li>
<li><a href="resrc/courses/VMware/VMware Horizon 7.10 ESB Create and Configure Desktop Pools.pdf" target="_blank" rel="noopener">VMware Horizon 7.10 ESB Create and Configure Desktop Pools</a></li>
<li><a href="resrc/courses/VMware/vSphere 6.5 Foundations Introduction.pdf" target="_blank" rel="noopener">vSphere 6.5 Foundations Introduction</a></li>
<li><a href="resrc/courses/VMware/vSphere 6.5 Foundations Configure vSphere Storage.pdf" target="_blank" rel="noopener">vSphere 6.5 Foundations Configure vSphere Storage</a></li>
</ul>
</li>
</li>
<br>
<li><i class="fa-li fa fa-book text-dark"></i>Linux:
<ul>
<li><a href="resrc/courses/Linux/Docker and Kubernetes - The Big Picture.pdf" target="_blank" rel="noopener">Docker and Kubernetes: The Big Picture</a></li>
<li><a href="resrc/courses/Linux/Linux Server Virtualization.pdf" target="_blank" rel="noopener">Linux Server Virtualization</a></li>
<li><a href="resrc/courses/Linux/Learning the Essentials of CentOS Enterprise Linux 7 Administration.pdf" target="_blank" rel="noopener">Learning the Essentials of CentOS Enterprise Linux 7 Administration</a></li>
<li><a href="resrc/courses/Linux/Raspberry Pi for Developers.pdf" target="_blank" rel="noopener">Raspberry Pi for Developers</a></li>
<li><a href="resrc/courses/Linux/Automating Container Management with Ansible.pdf" target="_blank" rel="noopener">Automating Container Management with Ansible</a></li>
<li><a href="resrc/courses/Linux/Raspberry Pi Home Server.pdf" target="_blank" rel="noopener">Raspberry Pi Home Server</a></li>
<li><a href="resrc/courses/Linux/Introduction to Arduino.pdf" target="_blank" rel="noopener">Introduction to Arduino</a></li>
<li><a href="resrc/courses/Linux/Getting Started with Docker.pdf" target="_blank" rel="noopener">Getting Started with Docker</a></li>
</ul>
</li>
<br>
<li><i class="fa-li fa fa-book text-dark"></i>Fortinet:
<ul>
<li><a href="resrc/courses/Fortinet/Information Security Awareness - 2021.pdf" target="_blank" rel="noopener">Information Security Awareness - 2021</a></li>
<li><a href="resrc/courses/Fortinet/The Evolution of Cybersecurity - 2021.pdf" target="_blank" rel="noopener">The Evolution of Cybersecurity - 2021</a></li>
<li><a href="resrc/courses/Fortinet/The Threat Landscape.pdf" target="_blank" rel="noopener">The Threat Landscape</a></li>
<li><a href="resrc/courses/Fortinet/The Evolution of Cybersecurity - 2020.pdf" target="_blank" rel="noopener">The Evolution of Cybersecurity - 2020</a></li>
<li><a href="resrc/courses/Fortinet/The Threat Landscape - 2019.pdf" target="_blank" rel="noopener">The Threat Landscape - 2019</a></li>
</ul>
</li>
<br>
<li><i class="fa-li fa fa-book text-dark"></i>HP:
<ul>
<li><a href="resrc/courses/HP/HPE GreenLake Services.pdf" target="_blank" rel="noopener">HPE GreenLake Services</a></li>
<li><a href="resrc/courses/HP/HPE ProLiant Gen10 Plus.pdf" target="_blank" rel="noopener">HPE ProLiant Gen10 Plus</a></li>
<li><a href="resrc/courses/HP/Aruba Networking.pdf" target="_blank" rel="noopener">Aruba Networking</a></li>
<li><a href="resrc/courses/HP/Managing Contact Information.pdf" target="_blank" rel="noopener">Managing Contact Information</a></li>
<li><a href="resrc/courses/HP/IT for Business Success.pdf" target="_blank" rel="noopener">IT for Business Success</a></li>
</ul>
</li>
<br>
<li><i class="fa-li fa fa-book text-dark"></i>Microsoft:
<ul>
<li><a href="resrc/courses/Microsoft/SQL Server - Benchmarking and Baselining.pdf" target="_blank" rel="noopener">SQL Server - Benchmarking and Baselining</a></li>
<li><a href="resrc/courses/Microsoft/Install and Configure Active Directory Domain Services in Windows Server 2016.pdf" target="_blank" rel="noopener">Install and Configure Active Directory Domain Services in Windows Server 2016</a></li>
<li><a href="resrc/courses/Microsoft/Introducing System Center 2016 - Operations Manager (SCOM).pdf" target="_blank" rel="noopener">Introducing System Center 2016 - Operations Manager (SCOM)</a></li>
<li><a href="resrc/courses/Microsoft/Microsoft Azure IoT Developer - Configure Routing in Azure IoT Hub.pdf" target="_blank" rel="noopener">Microsoft Azure IoT Developer - Configure Routing in Azure IoT Hub</a></li>
<li><a href="resrc/courses/Microsoft/Azure IoT Hub for Developers - Getting Started.pdf" target="_blank" rel="noopener">Azure IoT Hub for Developers - Getting Started</a></li>
<li><a href="resrc/courses/Microsoft/Introduction to Microsoft Cloud Services.pdf" target="_blank" rel="noopener">Introduction to Microsoft Cloud Services</a></li>
<li><a href="resrc/courses/Microsoft/Microsoft Azure Developer Creating IoT Solutions.pdf" target="_blank" rel="noopener">Microsoft Azure Developer Creating IoT Solutions</a></li>
<li><a href="resrc/courses/Microsoft/Deep Learning for Developer Crash Course, Part 1 - Microsoft Azure + AI Conference 2019.pdf" target="_blank" rel="noopener">Deep Learning for Developer Crash Course, Part 1 - Microsoft Azure + AI Conference 2019</a></li>
<li><a href="resrc/courses/Microsoft/Discovering Microsoft Azure.pdf" target="_blank" rel="noopener">Discovering Microsoft Azure</a></li>
<li><a href="resrc/courses/Microsoft/SharePoint Conference '19 - Flowverload - The World's Greatest Intro to Microsoft Flow.pdf" target="_blank" rel="noopener">SharePoint Conference '19 - Flowverload - The World's Greatest Intro to Microsoft Flow</a></li>
<li><a href="resrc/courses/Microsoft/SharePoint Conference '19 - An Overview of Microsoft Teams.pdf" target="_blank" rel="noopener">SharePoint Conference '19 - An Overview of Microsoft Teams</a></li>
</ul>
</li>
<br>
<li><i class="fa-li fa fa-book text-dark"></i>Programming:
<ul>
<li><a href="resrc/courses/Programming/Web Layouts with Flexbox and Bootstrap 4.pdf" target="_blank" rel="noopener">Web Layouts with Flexbox and Bootstrap 4</a></li>
<li><a href="resrc/courses/Programming/Python - The Big Picture.pdf" target="_blank" rel="noopener">Python - The Big Picture</a></li>
<li><a href="resrc/courses/Programming/Advanced Python.pdf" target="_blank" rel="noopener">Advanced Python</a></li>
<li><a href="resrc/courses/Programming/Core Python - Getting Started.pdf" target="_blank" rel="noopener">Core Python - Getting Started</a></li>
<li><a href="resrc/courses/Programming/Python Quick Start for Linux System Administrators.pdf" target="_blank" rel="noopener">Python Quick Start for Linux System Administrators</a></li>
<li><a href="resrc/courses/Programming/Python Best Practices for Code Quality.pdf" target="_blank" rel="noopener">Python Best Practices for Code Quality</a></li>
<li><a href="resrc/courses/Programming/Managing Python Packages and Virtual Environments.pdf" target="_blank" rel="noopener">Managing Python Packages and Virtual Environments</a></li>
<li><a href="resrc/courses/Programming/Unit Testing with Python.pdf" target="_blank" rel="noopener">Unit Testing with Python</a></li>
<li><a href="resrc/courses/Programming/Full Stack Web Development with Python (WEB2PY).pdf" target="_blank" rel="noopener">Full Stack Web Development with Python (WEB2PY)</a></li>
<li><a href="resrc/courses/Programming/Introduction to Bootstrap.pdf" target="_blank" rel="noopener">Introduction to Bootstrap</a></li>
<li><a href="resrc/courses/Programming/Core Python Getting Started.pdf" target="_blank" rel="noopener">Core Python Getting Started</a></li>
<li><a href="resrc/courses/Programming/Java Web Fundamentals.pdf" target="_blank" rel="noopener">Java Web Fundamentals</a></li>
<li><a href="resrc/courses/Programming/Java EE 7 Fundamentals.pdf" target="_blank" rel="noopener">Java EE 7 Fundamentals</a></li>
<li><a href="resrc/courses/Programming/Java EE - The Big Picture.pdf" target="_blank" rel="noopener">Java EE - The Big Picture</a></li>
<li><a href="resrc/courses/Programming/Python - Beyond the Basics.pdf" target="_blank" rel="noopener">Python - Beyond the Basics</a></li>
</ul>
</li>
<br>
<li><i class="fa-li fa fa-book text-dark"></i>Security:
<ul>
<li><a href="resrc/courses/Security/Initial Access with Aircrack-ng.pdf" target="_blank" rel="noopener">Initial Access with Aircrack-ng</a></li>
<li><a href="resrc/courses/Security/Initial Access with WiFi-Pumpkin.pdf" target="_blank" rel="noopener">Initial Access with WiFi-Pumpkin</a></li>
<li><a href="resrc/courses/Security/Penetration Testing of Identity, Authentication and Authorization Mechanism.pdf" target="_blank" rel="noopener">Penetration Testing of Identity, Authentication and Authorization Mechanism</a></li>
<li><a href="resrc/courses/Security/People Information Gathering with the Social Engineering Toolkit (SET).pdf" target="_blank" rel="noopener">People Information Gathering with the Social Engineering Toolkit (SET)</a></li>
<li><a href="resrc/courses/Security/Risk Assessment and Management.pdf" target="_blank" rel="noopener">Risk Assessment and Management</a></li>
<li><a href="resrc/courses/Security/Risk Management and Information Systems Control Introduction to Risk.pdf" target="_blank" rel="noopener">Risk Management and Information Systems Control Introduction to Risk</a></li>
<li><a href="resrc/courses/Security/Risk Management and Information Systems Control IT Risk Assessment.pdf" target="_blank" rel="noopener">Risk Management and Information Systems Control IT Risk Assessment</a></li>
<li><a href="resrc/courses/Security/Risk Management and Information Systems Control Risk Identification.pdf" target="_blank" rel="noopener">Risk Management and Information Systems Control Risk Identification</a></li>
<li><a href="resrc/courses/Security/Security Architecture.pdf" target="_blank" rel="noopener">Security Architecture</a></li>
<li><a href="resrc/courses/Security/Security Management.pdf" target="_blank" rel="noopener">Security Management</a></li>
<li><a href="resrc/courses/Security/Writing Penetration Testing Reports.pdf" target="_blank" rel="noopener">Writing Penetration Testing Reports</a></li>
<li><a href="resrc/courses/Security/Web Application Penetration Testing Fundamentals.pdf" target="_blank" rel="noopener">Web Application Penetration Testing Fundamentals</a></li>
<li><a href="resrc/courses/Security/Web Application Penetration Testing Input Validation.pdf" target="_blank" rel="noopener">Web Application Penetration Testing Input Validation</a></li>
<li><a href="resrc/courses/Security/Web Application Penetration Testing Insecure Error Handling.pdf" target="_blank" rel="noopener">Web Application Penetration Testing Insecure Error Handling</a></li>
<li><a href="resrc/courses/Security/Web Application Penetration Testing Session Management Testing.pdf" target="_blank" rel="noopener">Web Application Penetration Testing Session Management Testing</a></li>
<li><a href="resrc/courses/Security/Web Application Penetration Testing Configuration and Deployment Management Testing.pdf" target="_blank" rel="noopener">Web Application Penetration Testing Configuration and Deployment Management Testing</a></li>
</ul>
</li>
<br>
<li><i class="fa-li fa fa-book text-dark"></i>Others:
<ul>
<li><a href="resrc/courses/Others/Windows Server 2012 High Availability - Hyper-V.pdf" target="_blank" rel="noopener">Windows Server 2012 High Availability: Hyper-V</a></li>
<li><a href="resrc/courses/Others/Integrate Veeam Availability Suite Components.pdf" target="_blank" rel="noopener">Integrate Veeam Availability Suite Components</a></li>
<li><a href="resrc/courses/Others/Introduce and Implement Veeam Backup and Replication.pdf" target="_blank" rel="noopener">Introduce and Implement Veeam Backup and Replication</a></li>
<li><a href="resrc/courses/Others/Provisioning Virtual Machines on Oracle Compute Cloud.pdf" target="_blank" rel="noopener">Provisioning Virtual Machines on Oracle Compute Cloud</a></li>
<li><a href="resrc/courses/Others/Oracle Autonomous Transaction Processing for Developers.pdf" target="_blank" rel="noopener">Oracle Autonomous Transaction Processing for Developers</a></li>
<li><a href="resrc/courses/Others/Managing IT - Communication.pdf" target="_blank" rel="noopener">Managing IT - Communication</a></li>
<li><a href="resrc/courses/Others/Managing IT - Metrics and Measurements.pdf" target="_blank" rel="noopener">Managing IT - Metrics and Measurements</a></li>
<li><a href="resrc/courses/Others/Managing IT Services with ITIL.pdf" target="_blank" rel="noopener">Managing IT Services with ITIL</a></li>
<li><a href="resrc/courses/Others/Getting Started with NetScaler 12 Essentials.pdf" target="_blank" rel="noopener">Getting Started with NetScaler 12 Essentials</a></li>
<li><a href="resrc/courses/Others/SIEM Administration with QRadar.pdf" target="_blank" rel="noopener">SIEM Administration with QRadar</a></li>
</ul>
</li>
<br>
</ul>
</div>
</section>
<hr class="m-0 ">
<section class="resume-section p-3 p-lg-5 d-flex flex-wrap align-items-center" id="Badges">
<h2 class="mb-5 ">Badges</h2>
<div class="w-100 d-flex flex-wrap justify-content-center" >
<div id="badge-container" class="d-flex flex-wrap justify-content-center px-4 w-100"></div>
<!-- This script will fetch all the ids from the files "js/badges.json" which was made by hand and consists of all the badges ids, then it will render all the badges -->
<script>
document.addEventListener("DOMContentLoaded", loadBadges);
async function loadBadges() {
try {
const resp = await fetch('js/badges.json');
if (!resp.ok) throw new Error(`HTTP ${resp.status}`);
const badges = await resp.json();
const container = document.getElementById('badge-container');
badges.forEach(id => {
const div = document.createElement('div');
div.className = 'img-fluid px-4 w-100';
div.setAttribute('data-iframe-height', '270');
div.setAttribute('data-iframe-width', ''),
div.setAttribute('data-share-badge-id', id);
div.setAttribute('data-share-badge-host', 'https://www.credly.com');
container.appendChild(div);
});
const script = document.createElement('script');
script.src = '//cdn.credly.com/assets/utilities/embed.js';
script.async = true;
document.body.appendChild(script);
} catch (err) {
console.error('Failed to load badges:', err);
}
}
</script>
</div>
</section>
<!--
<hr class="">
<h2 class=" ">Badges</h2>
<section class="grid">
<div class="box"><img src="resrc/pics/Oracle Cloud Data Management 2022 Foundations Certified Associate.jpg"></div>
<div class="box"><img src="resrc/pics/Oracle Cloud Infrastructure 2022 Certified Foundations Associate.jpg"></div>
<div class="box"><img src="resrc/pics/badge-foundations.png"></div>
<div class="box"><img src="resrc/pics/badge-VCPDM19.png"></div>
<div class="box"><img src="resrc/pics/badge-VCPDM19.pnd"></div>
<div class="box"><img src="resrc/pics/badge-VCPNV19.png"></div>
<div class="box"><img src="resrc/pics/commvault.png"></div>
<div class="box"><img src="resrc/pics/DTM.png"></div>
<div class="box"><img src="resrc/pics/Fortinet.png"></div>
<div class="box"><img src="resrc/pics/NSX.png"></div>
<div class="box"><img src="resrc/pics/NV.png"></div>
<div class="box"><img src="resrc/pics/zerto.png"></div>
<div class="box"><img src="resrc/pics/badge-VCPDM19.png"></div>