-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
1142 lines (1078 loc) · 53.6 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!DOCTYPE HTML>
<html>
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<title>Jamshid Azizov | Portfolio</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="description" content="Jamshid Azzov portfolio" />
<meta name="keywords" content="cv portfolio" />
<meta name="author" content="Jamshid Azizov" />
<!-- Place favicon.ico and apple-touch-icon.png in the root directory -->
<link rel="shortcut icon" href="favicon.ico">
<link href="https://fonts.googleapis.com/css?family=Quicksand:300,400,500,700" rel="stylesheet">
<link href="https://fonts.googleapis.com/css?family=Playfair+Display:400,400i,700" rel="stylesheet">
<!-- Animate.css -->
<link rel="stylesheet" href="css/animate.css">
<!-- Icomoon Icon Fonts-->
<link rel="stylesheet" href="css/icomoon.css">
<!-- Bootstrap -->
<link rel="stylesheet" href="css/bootstrap.css">
<!-- Flexslider -->
<link rel="stylesheet" href="css/flexslider.css">
<!-- Flaticons -->
<link rel="stylesheet" href="fonts/flaticon/font/flaticon.css">
<!-- Owl Carousel -->
<link rel="stylesheet" href="css/owl.carousel.min.css">
<link rel="stylesheet" href="css/owl.theme.default.min.css">
<!-- Theme style -->
<link rel="stylesheet" href="css/style.css">
<!-- Modernizr JS -->
<script src="js/modernizr-2.6.2.min.js"></script>
<!-- FOR IE9 below -->
<!-- [if lt IE 9]>
<script src="js/respond.min.js"></script>
<![endif] -->
</head>
<body>
<div id="azyz-page">
<div class="container-wrap">
<a href="#" class="js-azyz-nav-toggle azyz-nav-toggle" data-toggle="collapse" data-target="#navbar"
aria-expanded="false" aria-controls="navbar"><i></i></a>
<aside id="azyz-aside" role="complementary" class="border js-fullheight">
<div class="text-center">
<div class="author-img" style="background-image: url(images/about.jpg);"></div>
<h1 id="azyz-logo"><a href="index.html">Jamshid Azizov</a></h1>
<span class="position"><a href="#"><strong>Cloud ` DevOps ` Systems</strong></a></span>
<span class="position">Switzerland</span>
</div>
<nav id="azyz-main-menu" role="navigation" class="navbar">
<div id="navbar" class="collapse">
<ul>
<li class="active"><a href="#" data-nav-section="home">Home</a></li>
<li><a href="#" data-nav-section="about">About</a></li>
<li><a href="#" data-nav-section="experience">Experience</a></li>
<li><a href="#" data-nav-section="education">Education</a></li>
<li><a href="#" data-nav-section="services">Expertise</a></li>
<li><a href="#" data-nav-section="skills">Skills</a></li>
<li><a href="#" data-nav-section="work">Works</a></li>
<li><a href="#" data-nav-section="blog">Blog</a></li>
<li><a href="#" data-nav-section="contact">Contact</a></li>
</ul>
</div>
</nav>
<div class="azyz-footer">
<ul>
<li><a href="https://www.linkedin.com/in/kimawalo/" target="_blank"><i class="icon-linkedin2"></i></a></li>
<li><a href="https://github.com/kimawalo" target="_blank"><i class="icon-github"></i></a></li>
</ul><br>
<p><small>©
<script>document.write(new Date().getFullYear());</script> No rights reserved
</small></p>
<!-- HIGHLIGHTS SECTION -->
<div class="">
<div class="col-md-12 animate-box" data-animate-effect="fadeInBottom">
<div class="services color-4">
<span class="icon2"><i class="icon-data"></i></span>
<h3>Cloud</h3>
</div>
</div>
<div class="col-md-12 animate-box" data-animate-effect="fadeInTop">
<div class="services color-1">
<span class="icon2"><i class="icon-bulb"></i></span>
<h3>DevOps</h3>
</div>
</div>
<div class="col-md-12 animate-box" data-animate-effect="fadeInRight">
<div class="services color-2">
<span class="icon2"><i class="icon-globe-outline"></i></span>
<h3>Systems</h3>
</div>
</div>
<div class="col-md-12 animate-box" data-animate-effect="fadeInLeft">
<div class="services color-5">
<span class="icon2"><i class="icon-diamond"></i></span>
<h3>CI - CD</h3>
</div>
</div>
</div>
</div>
</aside>
<div id="azyz-main">
<!-- ABOUT section -->
<section class="azyz-about" data-section="about" id='about'>
<div class="azyz-narrow-content">
<div class="row">
<div class="col-md-12">
<!-- QUOTES sub -->
<div class="row">
<div class="col-md-6 animate-box" data-animate-effect="fadeInLeft">
<div class="services color-1">
<p>
<span id='purple'>To develop a complete mind: </span><br><br>
Study the science of art; Study the art of science. <br>
Learn how to see. <br>
Realize that everything connects to everything else.
</p>
<h3>– Leonardo da Vinci</h3>
</div>
</div>
<div class="col-md-6 animate-box" data-animate-effect="fadeInLeft">
<div class="services color-4">
<p>
<span id='purple'>Stuff your eyes with wonder... </span><br><br>
Live as if you'd drop dead in ten seconds. <br>
See the world! It's more fantastic than any dream made or paid for in factories.
</p>
<h3>– Ray Bradbury</h3>
</div>
</div>
<!-- <div class="col-md-4 animate-box" data-animate-effect="fadeInLeft">
<div class="services color-1">
<p>
<span id='purple'>To live is to risk it all.</span><br><br>
Otherwise... <br>
... you’re just an inert chunk of randomly assembled molecules drifting wherever the
universe blows you. <br>
</p>
<h3>– Rick</h3>
</div>
</div> -->
</div>
<!-- ABOUT sub -->
<div class="row row-bottom-padded-sm animate-box" data-animate-effect="fadeInLeft">
<div class="col-md-12">
<div class="about-desc">
<!-- <span class="heading-meta">I AM</span> -->
<h2 class="azyz-heading">About</h2>
<p>
As a systems engineer with expertise in software configuration, automation, systems monitoring and administration, I specialize in optimizing IT infrastructures for high availability, reliability, and performance.
</p>
<p>
I have experience setting up and supporting IT infrastructure within cloud ecosystems for multiple projects, and my knowledge of Linux, Docker, AWS, and Jenkins CI/CD have been valuable assets in my work.
</p>
<p>
As a results-oriented communicator, I always strive to achieve the best outcomes for my team and clients. Throughout my career, I have collaborated with cross-functional teams to deliver successful outcomes in domains such as logistics, finance, and life sciences.
</p>
<p>
As a committed troubleshooter, I enjoy automating tasks, designing and implementing new solutions with simplicity, maintainability, and security in mind. I believe in inspiring others and contributing to the progress of the team.
</p>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- EXPERIENCE section -->
<section class="azyz-experience" data-section="experience">
<div class="azyz-narrow-content">
<div class="row">
<div class="col-md-6 col-md-offset-3 col-md-pull-3 animate-box" data-animate-effect="fadeInLeft">
<!-- <span class="heading-meta">I HAVE DONE</span> -->
<h2 class="azyz-heading animate-box">Experience</h2>
</div>
</div>
<div class="row">
<div class="col-md-12">
<div class="timeline-centered">
<article class="timeline-entry animate-box" data-animate-effect="fadeInLeft">
<div class="timeline-entry-inner">
<div class="timeline-icon color-1">
<i class="icon-pen2"></i>
</div>
<div class="timeline-label">
<h2>Systems Engineer - DevOps.CI/CD</h2>
<h4><span><a href="https://www.epam.com/">EPAM Systems</a> | Jun 2022 – Present</span></h4>
<h5><i>IT Services and IT Consulting ` Zurich, Switzerland</i></h5>
<ul>
<li>Preparation and execution of application version releases</li>
<li>Maintaining automated pipelines to ensure smooth deployment across all environments</li>
<li>Improving the current build chain by identifying and eliminating bottlenecks</li>
<li>Provisioning infrastructure and implementing development and CI/CD processes</li>
<li>Monitoring and control of CI/CD process and operations</li>
</ul>
</div>
</div>
</article>
<article class="timeline-entry animate-box" data-animate-effect="fadeInLeft">
<div class="timeline-entry-inner">
<div class="timeline-icon color-1">
<i class="icon-pen2"></i>
</div>
<div class="timeline-label">
<h2>Systems Engineer - DevOps.Cloud</h2>
<h4><span><a href="https://www.foundationmedicine.com/">Foundation Medicine, ROCHE</a> | Apr 2021 – May 2022</span></h4>
<h5><i>Biotechnology Research ` Cambridge, Massachusetts, USA</i></h5>
<ul>
<li>Provided expert support for operational requests related to Cloud technology</li>
<li>Developed and managed a subset of FMI's DevOps platform tools and processes</li>
<li>Designed, implemented, and maintained AWS CloudFormation and Jenkins scripts</li>
<li>Researched and evaluated new technologies and proposed methods to integrate them into the existing technology stack</li>
</ul>
</div>
</div>
</article>
<article class="timeline-entry animate-box" data-animate-effect="fadeInLeft">
<div class="timeline-entry-inner">
<div class="timeline-icon color-1">
<i class="icon-pen2"></i>
</div>
<div class="timeline-label">
<h2>Site Reliability Engineer</h2>
<h4><span><a href="https://www.evri.com/">Evri, Hermes Parcelnet Limited</a> | Oct 2020 – Mar 2021</span></h4>
<h5><i>Transportation, Logistics, Supply Chain and Storage ` Leeds, UK</i></h5>
<ul>
<li>Provided support for shared services utilized in development, testing, and production environments</li>
<li>Resolved operational issues related to availability, performance, and scalability</li>
<li>Raised deviations from technology standards to the Technical Design Authority for review</li>
<li>Maintained documentation and runbooks to ensure that the knowledge gained from SRE is shared across the organization</li>
</ul>
</div>
</div>
</article>
<article class="timeline-entry animate-box" data-animate-effect="fadeInRight">
<div class="timeline-entry-inner">
<div class="timeline-icon color-2">
<i class="icon-pen2"></i>
</div>
<div class="timeline-label">
<h2>DevOps Engineer - Intern</h2>
<h4><span><a href="https://www.epam.com/">EPAM Systems</a> | Feb 2020 – Sep 2020</span></h4>
<h5><i>IT Services and IT Consulting ` Kyiv, Ukraine</i></h5>
<ul>
<li>Designed and developed a complete CI/CD Jenkins pipeline for a Java web application</li>
<li>Utilized Terraform as Infrastructure as Code (IaC) to provision and configure all infrastructure components within AWS</li>
<li>Configured Ansible to provision Jenkins on an AWS instance within the Terraform environment</li>
<li>Created a Jenkinsfile within the GitHub repository to automate the CI/CD pipeline, including webhook triggers for changes in the GitHub repo</li>
<li>Implemented SCM pulling, building and testing of the Java app, artifact creation, and Docker image building based on the Dockerfile in the repository</li>
<li>Pushed the Docker image to DockerHub and configured the EKS cluster using a YAML file with Deployment and Service configurations, including load balancing</li>
</ul>
</div>
</div>
</article>
<article class="timeline-entry begin animate-box" data-animate-effect="fadeInBottom">
<div class="timeline-entry-inner">
<div class="timeline-icon color-3">
<i class="icon-pen2"></i>
</div>
<div class="timeline-label">
<h2>System Administrator</h2>
<h4><span><a href="https://sun-gik.kg/">‘Blue Issykkul’ Health Resorts</a> | May 2016 – May 2017</span></h4>
<h5><i>Healthcare ` Kyrgyzstan</i></h5>
<ul>
<li>Installed and updated security software across all company devices, ensuring protection against cyber threats and vulnerabilities</li>
<li>Developed and implemented backup and encryption processes for sensitive data, ensuring data privacy and availability</li>
<li>Conducted regular health checks on computer systems and network infrastructure, promptly updating systems to ensure optimal performance and security</li>
<li>Conducted an inventory of hardware and software assets, reported departmental needs to management, and contributed to the development of technology refresh plans</li>
</ul>
</div>
</div>
</article>
</div>
</div>
</div>
</div>
</section>
<!-- EDUCATION section -->
<section class="azyz-education" data-section="education">
<div class="azyz-narrow-content">
<div class="row">
<div class="col-md-6 col-md-offset-3 col-md-pull-3 animate-box" data-animate-effect="fadeInLeft">
<!-- <span class="heading-meta">I STUDY</span> -->
<h2 class="azyz-heading animate-box">Education</h2>
</div>
</div>
<div class="row">
<div class="col-md-12 animate-box" data-animate-effect="fadeInLeft">
<div class="fancy-collapse-panel">
<div class="panel-group" id="accordion" role="tablist" aria-multiselectable="true">
<div class="panel panel-default">
<div class="panel-heading" role="tab" id="headingOne">
<h4 class="panel-title">
<a data-toggle="collapse" data-parent="#accordion" href="#collapseOne" aria-expanded="true"
aria-controls="collapseOne">Computer Science | MOOC: MITx on edX | 2016 – Ongoing
</a>
</h4>
</div>
<div id="collapseOne" class="panel-collapse collapse in" role="tabpanel"
aria-labelledby="headingOne">
<div class="panel-body">
<div class="row">
<div class="col-md-6">
<p>edX - Harvard ` MIT</p>
<p>Documentation</p>
<p>EPAM University</p>
</div>
<div class="col-md-6">
<p>Computer Science</p>
<p>Systems Engineering ` DevOps</p>
<p>Engineering Excellence</p>
</div>
</div>
</div>
</div>
</div>
<div class="panel panel-default">
<div class="panel-heading" role="tab" id="headingTwo">
<h4 class="panel-title">
<a class="collapsed" data-toggle="collapse" data-parent="#accordion" href="#collapseTwo"
aria-expanded="false" aria-controls="collapseTwo">Economics / Computer Science | American University of Central
Asia | 2008 - 2012
</a>
</h4>
</div>
<div id="collapseTwo" class="panel-collapse collapse" role="tabpanel"
aria-labelledby="headingTwo">
<div class="panel-body">
<p></p>
<ul>
<li>Major: Economics and Finance</li>
<li>Minor: Computer Science</li>
<li>Short stories published twice in international literature almanacs</li>
<li>Essay contest winner (prize – 2-week trip to USA)</li>
</ul>
<p>Full merit scholarship</p>
</div>
</div>
</div>
<div class="panel panel-default">
<div class="panel-heading" role="tab" id="headingThree">
<h4 class="panel-title">
<a class="collapsed" data-toggle="collapse" data-parent="#accordion" href="#collapseThree"
aria-expanded="false" aria-controls="collapseThree">American Studies: Business & Politics | Utica
College | 2007 - 2008
</a>
</h4>
</div>
<div id="collapseThree" class="panel-collapse collapse" role="tabpanel"
aria-labelledby="headingThree">
<div class="panel-body">
<p>Global Undergraduate Exchange Program</p>
<p>Full merit scholarship</p>
</div>
</div>
</div>
<div class="panel panel-default">
<div class="panel-heading" role="tab" id="headingFour">
<h4 class="panel-title">
<a class="collapsed" data-toggle="collapse" data-parent="#accordion" href="#collapseFour"
aria-expanded="false" aria-controls="collapseFour">Linguistics | Uzbek State World Languages
University | 2005 – 2007</a>
</h4>
</div>
<div id="collapseFour" class="panel-collapse collapse" role="tabpanel"
aria-labelledby="headingFour">
<div class="panel-body">
<p>English Language Teacher Education program</p>
<p>Full merit scholarship</p>
</div>
</div>
</div>
<div class="panel panel-default">
<div class="panel-heading" role="tab" id="headingFive">
<h4 class="panel-title">
<a class="collapsed" data-toggle="collapse" data-parent="#accordion" href="#collapseFive"
aria-expanded="false" aria-controls="collapseFive">School #6, Jizzakh (one of the leading
high-schools in Uzbekistan)
</a>
</h4>
</div>
<div id="collapseFive" class="panel-collapse collapse" role="tabpanel"
aria-labelledby="headingFive">
<div class="panel-body">
<p>Class specialized in banking and finance</p>
<ul>
<li>2nd place in regional Engineering Olympiad</li>
<li>2nd place in regional English Olympiad</li>
</ul>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- EXPERTISE section -->
<section class="azyz-services" data-section="services" id="services">
<div class="azyz-narrow-content">
<div class="row">
<div class="col-md-6 col-md-offset-3 col-md-pull-3 animate-box" data-animate-effect="fadeInLeft">
<!-- <span class="heading-meta">I DO</span> -->
<h2 class="azyz-heading">Expertise</h2>
</div>
</div>
<div class="row row-pt-md">
<div class="col-md-4 text-center animate-box">
<div class="services color-2">
<span class="icon">
<i class="icon-diamond"></i>
</span>
<div class="desc">
<h4><b>Development Process</b></h4>
<!-- <p>...</p> -->
</div>
</div>
</div>
<div class="col-md-4 text-center animate-box">
<div class="services color-3">
<span class="icon">
<i class="icon-key3"></i>
</span>
<div class="desc">
<h4><b>Continuous Integration</b></h4>
</div>
</div>
</div>
<div class="col-md-4 text-center animate-box">
<div class="services color-6">
<span class="icon">
<i class="icon-layers2"></i>
</span>
<div class="desc">
<h4><b>Continuous Delivery</b></h4>
</div>
</div>
</div>
<div class="row row-pt-md">
<div class="col-md-4 text-center animate-box">
<div class="services color-4">
<span class="icon">
<i class="icon-diamond"></i>
</span>
<div class="desc">
<h4>version control strategy</h4>
<!-- <p>...</p> -->
</div>
</div>
</div>
<div class="col-md-4 text-center animate-box">
<div class="services color-5">
<span class="icon">
<i class="icon-key3"></i>
</span>
<div class="desc">
<h4>code quality</h4>
</div>
</div>
</div>
<div class="col-md-4 text-center animate-box">
<div class="services color-1">
<span class="icon">
<i class="icon-layers2"></i>
</span>
<div class="desc">
<h4>release strategy</h4>
</div>
</div>
</div>
<div class="col-md-4 text-center animate-box">
<div class="services color-4">
<span class="icon">
<i class="icon-diamond"></i>
</span>
<div class="desc">
<h4>code flow</h4>
</div>
</div>
</div>
<div class="col-md-4 text-center animate-box">
<div class="services color-5">
<span class="icon">
<i class="icon-key3"></i>
</span>
<div class="desc">
<h4>security policies</h4>
</div>
</div>
</div>
<div class="col-md-4 text-center animate-box">
<div class="services color-1">
<span class="icon">
<i class="icon-layers2"></i>
</span>
<div class="desc">
<h4>release management</h4>
</div>
</div>
</div>
<div class="col-md-4 text-center animate-box">
<div class="services color-4">
<span class="icon">
<i class="icon-diamond"></i>
</span>
<div class="desc">
<h4>app configuration</h4>
</div>
</div>
</div>
<div class="col-md-4 text-center animate-box">
<div class="services color-5">
<span class="icon">
<i class="icon-key3"></i>
</span>
<div class="desc">
<h4>build strategy</h4>
</div>
</div>
</div>
<div class="col-md-4 text-center animate-box">
<div class="services color-1">
<span class="icon">
<i class="icon-layers2"></i>
</span>
<div class="desc">
<h4>deployment patterns</h4>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- SKILLS section -->
<section class="azyz-skills" data-section="skills">
<div class="azyz-narrow-content">
<div class="row">
<div class="col-md-6 col-md-offset-3 col-md-pull-3 animate-box" data-animate-effect="fadeInLeft">
<!-- <span class="heading-meta">I USE</span> -->
<h2 class="azyz-heading animate-box">Skills</h2>
</div>
</div>
<div class="row">
<!-- <div class="col-md-12 animate-box" data-animate-effect="fadeInLeft">
<p>Tools I use in 2023:</p>
</div> -->
<div class="col-md-6 animate-box" data-animate-effect="fadeInLeft">
<div class="progress-wrap">
<h3>Amazon Web Services (AWS)</h3>
<div class="progress">
<div class="progress-bar color-1" role="progressbar" aria-valuenow="100" aria-valuemin="0"
aria-valuemax="100" style="width:100%">
<!-- <span>75%</span> -->
</div>
</div>
</div>
</div>
<div class="col-md-6 animate-box" data-animate-effect="fadeInRight">
<div class="progress-wrap">
<h3>Linux</h3>
<div class="progress">
<div class="progress-bar color-4" role="progressbar" aria-valuenow="100" aria-valuemin="0"
aria-valuemax="100" style="width:100%">
<!-- <span>90%</span> -->
</div>
</div>
</div>
</div>
<div class="col-md-6 animate-box" data-animate-effect="fadeInRight">
<div class="progress-wrap">
<h3>Docker</h3>
<div class="progress">
<div class="progress-bar color-2" role="progressbar" aria-valuenow="75" aria-valuemin="0"
aria-valuemax="100" style="width:75%">
<!-- <span>75%</span> -->
</div>
</div>
</div>
</div>
<div class="col-md-6 animate-box" data-animate-effect="fadeInLeft">
<div class="progress-wrap">
<h3>Kubernetes</h3>
<div class="progress">
<div class="progress-bar color-3" role="progressbar" aria-valuenow="75" aria-valuemin="0"
aria-valuemax="100" style="width:75%">
<!-- <span>65%</span> -->
</div>
</div>
</div>
</div>
<div class="col-md-6 animate-box" data-animate-effect="fadeInRight">
<div class="progress-wrap">
<h3>Java</h3>
<div class="progress">
<div class="progress-bar color-3" role="progressbar" aria-valuenow="50" aria-valuemin="0"
aria-valuemax="100" style="width:50%">
<!-- <span>75%</span> -->
</div>
</div>
</div>
</div>
<div class="col-md-6 animate-box" data-animate-effect="fadeInLeft">
<div class="progress-wrap">
<h3>Python</h3>
<div class="progress">
<div class="progress-bar color-6" role="progressbar" aria-valuenow="75" aria-valuemin="0"
aria-valuemax="100" style="width:75%">
<!-- <span>65%</span> -->
</div>
</div>
</div>
</div>
<div class="col-md-6 animate-box" data-animate-effect="fadeInLeft">
<div class="progress-wrap">
<h3>Git</h3>
<div class="progress">
<div class="progress-bar color-5" role="progressbar" aria-valuenow="100" aria-valuemin="0"
aria-valuemax="100" style="width:100%">
<!-- <span>75%</span> -->
</div>
</div>
</div>
</div>
<div class="col-md-6 animate-box" data-animate-effect="fadeInRight">
<div class="progress-wrap">
<h3>Jenkins</h3>
<div class="progress">
<div class="progress-bar color-2" role="progressbar" aria-valuenow="75" aria-valuemin="0"
aria-valuemax="100" style="width:65%">
<!-- <span>65%</span> -->
</div>
</div>
</div>
</div>
<div class="col-md-6 animate-box" data-animate-effect="fadeInRight">
<div class="progress-wrap">
<h3>Ansible</h3>
<div class="progress">
<div class="progress-bar color-6" role="progressbar" aria-valuenow="50" aria-valuemin="0"
aria-valuemax="100" style="width:50%">
<!-- <span>65%</span> -->
</div>
</div>
</div>
</div>
<div class="col-md-6 animate-box" data-animate-effect="fadeInLeft">
<div class="progress-wrap">
<h3>Terraform</h3>
<div class="progress">
<div class="progress-bar color-6" role="progressbar" aria-valuenow="100" aria-valuemin="0"
aria-valuemax="100" style="width:100%">
<!-- <span>90%</span> -->
</div>
</div>
</div>
</div>
<div class="col-md-6 animate-box" data-animate-effect="fadeInLeft">
<div class="progress-wrap">
<h3>Prometheus</h3>
<div class="progress">
<div class="progress-bar color-6" role="progressbar" aria-valuenow="50" aria-valuemin="0"
aria-valuemax="100" style="width:50%">
<!-- <span>90%</span> -->
</div>
</div>
</div>
</div>
<div class="col-md-6 animate-box" data-animate-effect="fadeInLeft">
<div class="progress-wrap">
<h3>Grafana</h3>
<div class="progress">
<div class="progress-bar color-4" role="progressbar" aria-valuenow="50" aria-valuemin="0"
aria-valuemax="100" style="width:50%">
<!-- <span>65%</span> -->
</div>
</div>
</div>
</div>
<div class="col-md-6 animate-box" data-animate-effect="fadeInLeft">
<div class="progress-wrap">
<h3>Bash</h3>
<div class="progress">
<div class="progress-bar color-2" role="progressbar" aria-valuenow="50" aria-valuemin="0"
aria-valuemax="100" style="width:50%">
<!-- <span>65%</span> -->
</div>
</div>
</div>
</div>
<div class="col-md-6 animate-box" data-animate-effect="fadeInLeft">
<div class="progress-wrap">
<h3>Vim</h3>
<div class="progress">
<div class="progress-bar color-6" role="progressbar" aria-valuenow="75" aria-valuemin="0"
aria-valuemax="100" style="width:75%">
<!-- <span>65%</span> -->
</div>
</div>
</div>
</div>
<div class="col-md-6 animate-box" data-animate-effect="fadeInLeft">
<div class="progress-wrap">
<h3>HTML / CSS / JS</h3>
<div class="progress">
<div class="progress-bar color-5" role="progressbar" aria-valuenow="50" aria-valuemin="0"
aria-valuemax="100" style="width:50%">
<!-- <span>90%</span> -->
</div>
</div>
</div>
</div>
<div class="col-md-6 animate-box" data-animate-effect="fadeInRight">
<div class="progress-wrap">
<h3>Yaml / JSON / XML</h3>
<div class="progress">
<div class="progress-bar color-2" role="progressbar" aria-valuenow="100" aria-valuemin="0"
aria-valuemax="100" style="width:100%">
<!-- <span>65%</span> -->
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- HERO section -->
<section id="azyz-hero" class="js-fullheight" data-section="home">
<div class="flexslider js-fullheight">
<ul class="slides">
<li style="background-image: url(images/img_bg_1.jpg);">
<div class="overlay"></div>
<div class="container-fluid">
<div class="row">
<div class="col-md-6 col-md-offset-3 col-md-pull-3 col-sm-12 col-xs-12 js-fullheight slider-text">
<div class="slider-text-inner">
<div class="desc">
<h1>THINK</h1>
<h2><strong><br><br>to see the world in a grain of sand</strong></h2>
<p><a class="btn btn-primary btn-learn" href="#about">View Portfolio <i
class="icon-briefcase3"></i></a></p>
</div>
</div>
</div>
</div>
</div>
</li>
<li style="background-image: url(images/img_bg_2.jpg);">
<div class="overlay"></div>
<div class="container-fluid">
<div class="row">
<div class="col-md-6 col-md-offset-3 col-md-pull-3 col-sm-12 col-xs-12 js-fullheight slider-text">
<div class="slider-text-inner">
<div class="desc">
<h1>DESIGN</h1>
<h2><strong><br><br>to make beauty match performance</strong></h2>
<p><a class="btn btn-primary btn-learn" href="#work">View Works <i
class="icon-briefcase3"></i></a></p>
</div>
</div>
</div>
</div>
</div>
</li>
<li style="background-image: url(images/img_bg_3.jpg);">
<div class="overlay"></div>
<div class="container-fluid">
<div class="row">
<div class="col-md-6 col-md-offset-3 col-md-pull-3 col-sm-12 col-xs-12 js-fullheight slider-text">
<div class="slider-text-inner js-fullheight">
<div class="desc">
<h1>ENGINEER<br></h1>
<h2><strong><br><br>to give wings to ideas</strong></h2>
<p><a class="btn btn-primary btn-learn" href="./Azizov_CV_DevOps_Cloud_2023.pdf"
download="Jamshid_Azizov_CV">Download CV<i class="icon-download4"></i></a></p>
</div>
</div>
</div>
</div>
</div>
</li>
</ul>
</div>
</section>
<!-- WORK section -->
<section class="azyz-work" data-section="work" id="work">
<div class="azyz-narrow-content">
<div class="row">
<div class="col-md-6 col-md-offset-3 col-md-pull-3 animate-box" data-animate-effect="fadeInLeft">
<!-- <span class="heading-meta">Work</span> -->
<h2 class="azyz-heading animate-box">Projects</h2>
</div>
</div>
<!-- <div class="row row-bottom-padded-sm animate-box" data-animate-effect="fadeInLeft">
<div class="col-md-12">
<p class="work-menu"><span><a href="#" class="active">Front-end</a></span> <span><a href="#">Back-end</a></span> <span><a href="#">SPA</a></span> <span><a href="#">PWA</a></span></p>
</div>
</div>
<div class="row">
<div class="col-md-6 animate-box" data-animate-effect="fadeInBottom">
<div class="project" style="background-image: url(images/img-4.png);">
<div class="desc">
<a href="http://delys.herokuapp.com/" target="_blank">
<div class="con">
<h3><a href="http://delys.herokuapp.com/" target="_blank">De Lys</a></h3>
<span>Website for handcrafted candles</span>
<p class="icon">
<span><a href="#"><i class="icon-share3"></i></a></span>
<span><a href="#"><i class="icon-eye"></i> 1001</a></span>
<span><a href="#"><i class="icon-heart"></i> 69</a></span>
</p>
</div>
</a>
</div>
</div>
</div>
<div class="col-md-6 animate-box" data-animate-effect="fadeInLeft">
<div class="project" style="background-image: url(images/img-5.png);">
<div class="desc">
<a href="#" target="_blank">
<div class="con">
<h3><a href="#" target="_blank">Evoli</a></h3>
<span>React project (work in progress)</span>
<p class="icon">
<span><a href="#"><i class="icon-share3"></i></a></span>
<span><a href="#"><i class="icon-eye"></i> 1001</a></span>
<span><a href="#"><i class="icon-heart"></i> 69</a></span>
</p>
</div>
</a>
</div>
</div>
</div>
<div class="col-md-6 animate-box" data-animate-effect="fadeInRight">
<div class="project" style="background-image: url(images/img-2.png);">
<div class="desc">
<div class="con">
<h3><a href="http://facez.herokuapp.com/" target="_blank">FaceZ</a></h3>
<span>Image-recognition web app that tags faces</span>
<p class="icon">
<span><a href="#"><i class="icon-share3"></i></a></span>
<span><a href="#"><i class="icon-eye"></i> 1001</a></span>
<span><a href="#"><i class="icon-heart"></i> 69</a></span>
</p>
</div>
</div>
</div>
</div>
<div class="col-md-6 animate-box" data-animate-effect="fadeInLeft">
<div class="project" style="background-image: url(images/img-1.png);">
<div class="desc">
<div class="con">
<h3><a href="https://xwear.herokuapp.com/" target="_blank">X-Wear</a></h3>
<span>E-commerce Website</span>
<p class="icon">
<span><a href="#"><i class="icon-share3"></i></a></span>
<span><a href="#"><i class="icon-eye"></i> 1001</a></span>
<span><a href="#"><i class="icon-heart"></i> 69</a></span>
</p>
</div>
</div>
</div>
</div>
<div class="col-md-6 animate-box" data-animate-effect="fadeInTop">
<div class="project" style="background-image: url(images/img-3.png);">
<div class="desc">
<div class="con">
<h3><a href="http://ro8ots.herokuapp.com/" target="_blank">Ro8oTs</a></h3>
<span>Database search engine</span>
<p class="icon">
<span><a href="#"><i class="icon-share3"></i></a></span>
<span><a href="#"><i class="icon-eye"></i> 1001</a></span>
<span><a href="#"><i class="icon-heart"></i> 69</a></span>
</p>
</div>
</div>
</div>
</div>
<div class="col-md-6 animate-box" data-animate-effect="fadeInRight">
<div class="project" style="background-image: url(images/img-6.png);">
<div class="desc">
<div class="con">
<h3><a href="#" target="_blank">ENSO</a></h3>
<span>Personal Project (work in progress)</span>
<p class="icon">
<span><a href="#"><i class="icon-share3"></i></a></span>
<span><a href="#"><i class="icon-eye"></i> 1001</a></span>
<span><a href="#"><i class="icon-heart"></i> 69</a></span>
</p>
</div>
</div>
</div>
</div>
</div>
<div class="row">
<div class="col-md-12 animate-box">
<p><a href="#" class="btn btn-primary btn-lg btn-load-more">Load more <i class="icon-reload"></i></a></p>
</div>
</div> -->
</div>
<div id="azyz-counter" class="azyz-counters" style="background-image: url(images/cover_bg_1.jpg);"
data-stellar-background-ratio="0.5">
<div class="overlay"></div>
<div class="azyz-narrow-content">
<div class="row">
</div>
<div class="row">
<div class="col-md-3 text-center animate-box">
<span class="azyz-counter js-counter" data-from="0" data-to="3698" data-speed="5000"
data-refresh-interval="50"></span>
<span class="azyz-counter-label">Pages of Code</span>
</div>
<div class="col-md-3 text-center animate-box">
<span class="azyz-counter js-counter" data-from="0" data-to="9" data-speed="1"
data-refresh-interval="50"></span>
<span class="azyz-counter-label">Projects</span>
</div>
<div class="col-md-3 text-center animate-box">
<span class="azyz-counter js-counter" data-from="0" data-to="6" data-speed="1"
data-refresh-interval="50"></span>
<span class="azyz-counter-label">Clients</span>
</div>
<div class="col-md-3 text-center animate-box">
<span class="azyz-counter js-counter" data-from="0" data-to="3" data-speed="1"
data-refresh-interval="50"></span>
<span class="azyz-counter-label">Partners</span>
</div>
</div>
</div>
</div>
</section>
<!-- BLOG section -->
<section class="azyz-blog" data-section="blog">
<div class="azyz-narrow-content">
<div class="row">
<div class="col-md-6 col-md-offset-3 col-md-pull-3 animate-box" data-animate-effect="fadeInLeft">
<!-- <span class="heading-meta">I WRITE</span> -->
<h2 class="azyz-heading">Blog</h2>
</div>
</div>
<!-- <div class="row">
<div class="col-md-4 col-sm-6 animate-box" data-animate-effect="fadeInLeft">