-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
1220 lines (1103 loc) · 69.5 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!DOCTYPE html>
<html lang="en" class="no-js">
<head>
<!-- Global site tag (gtag.js) - Google Analytics -->
<script async src="https://www.googletagmanager.com/gtag/js?id=G-80S84ZKY0F"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag() {
dataLayer.push(arguments);
}
gtag('js', new Date());
gtag('config', 'G-80S84ZKY0F');
</script>
<!-- HTML Meta Tags -->
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<title>Abishek Kumar | Portfolio Website</title>
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1" />
<meta name="description" content="My Personal Portfolio for display that contains my experience in different fields, hobbies and passion" />
<meta name="keywords" content="abishek, kumar, resume, portfolio" />
<meta name="author" content="abishek kumar" />
<meta property="og:title" content="Abishek Kumar | Portfolio">
<meta property="og:description" content="My Personal Portfolio for display that contains my experience in different fields, hobbies and passion">
<meta property="og:type" content="website">
<meta property="og:url" content="https://abishekkumar.me/">
<meta property="og:image" content="https://abishekkumar.me/img/ogimage.png" />
<meta property="og:image:type" content="image/png">
<meta property="og:image:height" content="1200">
<meta property="og:image:width" content="630">
<!-- Facebook Meta Tags -->
<meta property="og:url" content="https://abishekkumar.me/">
<meta property="og:type" content="website">
<meta property="og:title" content="Abishek Kumar | Portfolio">
<meta property="og:description" content="My Personal Portfolio for display that contains my experience in different fields, hobbies and passion">
<meta property="og:image" content="https://abishekkumar.me/img/ogimage.png">
<!-- Twitter Meta Tags -->
<meta name="twitter:card" content="summary_large_image">
<meta property="twitter:domain" content="abishekkumar.me">
<meta property="twitter:url" content="https://abishekkumar.me/">
<meta name="twitter:title" content="Abishek Kumar | Portfolio">
<meta name="twitter:description" content="My Personal Portfolio for display that contains my experience in different fields, hobbies and passion">
<meta name="twitter:image" content="https://abishekkumar.me/img/ogimage.png">
<link rel="shortcut icon" href="img/favicon/favicon.ico" />
<link rel="stylesheet" href="css/reset.css" type="text/css" />
<link rel="stylesheet" href="css/bootstrap-grid.min.css" type="text/css" />
<link rel="stylesheet" href="css/animations.css" type="text/css" />
<link rel="stylesheet" href="css/perfect-scrollbar.css" type="text/css" />
<link rel="stylesheet" href="css/owl.carousel.css" type="text/css" />
<link rel="stylesheet" href="css/magnific-popup.css" type="text/css" />
<link rel="stylesheet" href="css/main.css" type="text/css" />
</head>
<body>
<!-- Animated Background -->
<div class="lm-animated-bg" style="background-image: url(img/main_bg.png)"></div>
<!-- /Animated Background -->
<!-- Loading animation -->
<div class="preloader">
<div class="preloader-animation">
<div class="preloader-spinner"></div>
</div>
</div>
<!-- /Loading animation -->
<div class="page">
<div class="page-content">
<header id="site_header" class="header mobile-menu-hide">
<div class="header-content">
<div class="header-photo">
<img src="img/main_photo.jpg" alt="Abishek Kumar" />
</div>
<div class="header-titles">
<h2>Abishek Kumar</h2>
<h4>Engineer</h4>
</div>
</div>
<ul class="main-menu">
<li class="active">
<a href="#home" class="nav-anim">
<span class="menu-icon lnr lnr-home"></span>
<span class="link-text">Home</span>
</a>
</li>
<li>
<a href="#about-me" class="nav-anim">
<span class="menu-icon lnr lnr-user"></span>
<span class="link-text">About Me</span>
</a>
</li>
<li>
<a href="#resume" class="nav-anim">
<span class="menu-icon lnr lnr-graduation-hat"></span>
<span class="link-text">Resume</span>
</a>
</li>
<li>
<a href="#projects" class="nav-anim">
<span class="menu-icon lnr lnr-briefcase"></span>
<span class="link-text">Projects</span>
</a>
</li>
<!--<li>
<a href="#blog" class="nav-anim">
<span class="menu-icon lnr lnr-book"></span>
<span class="link-text">Blog</span>
</a>
</li>-->
<li>
<a href="#contact" class="nav-anim">
<span class="menu-icon lnr lnr-envelope"></span>
<span class="link-text">Contact</span>
</a>
</li>
</ul>
<div class="social-links">
<ul>
<li>
<a href="https://www.linkedin.com/in/abishek-kumar-51a1761b" target="_blank"><i class="fab fa-linkedin-in"></i
></a>
</li>
<li>
<a href="https://github.com/kumarabd" target="_blank"><i class="fab fa-github"></i
></a>
</li>
<li>
<a href="https://twitter.com/abd_abishek" target="_blank"><i class="fab fa-twitter"></i
></a>
</li>
<li>
<a href="https://discord.com/invite/nighthawk#2887" target="_blank"><i class="fab fa-discord"></i
></a>
</li>
<li>
<a href="mailto:[email protected]" target="_blank"><i class="far fa-envelope"></i
></a>
</li>
</ul>
</div>
<div class="header-buttons">
<a href="#" target="_blank" class="btn btn-primary">Download CV</a>
</div>
<div class="copyrights">© 2021 All rights reserved.</div>
</header>
<!-- Mobile Navigation -->
<div class="menu-toggle">
<span></span>
<span></span>
<span></span>
</div>
<!-- End Mobile Navigation -->
<!-- Arrows Nav -->
<div class="lmpixels-arrows-nav">
<div class="lmpixels-arrow-right">
<i class="lnr lnr-chevron-right"></i>
</div>
<div class="lmpixels-arrow-left">
<i class="lnr lnr-chevron-left"></i>
</div>
</div>
<!-- End Arrows Nav -->
<div class="content-area">
<div class="animated-sections">
<!-- Home Subpage -->
<section data-id="home" class="animated-section start-page">
<div class="section-content vcentered">
<div class="row">
<div class="col-sm-12 col-md-12 col-lg-12">
<div class="title-block">
<h1>Howdy! This is my personal portfolio hub</h1>
<div class="owl-carousel text-rotation">
<div class="item">
<div class="sp-subtitle">I am a Backend Developer</div>
</div>
<div class="item">
<div class="sp-subtitle">
and a Site Reliabilty Engineer
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- End of Home Subpage -->
<!-- About Me Subpage -->
<section data-id="about-me" class="animated-section">
<div class="section-content">
<div class="page-title">
<h2>About <span>Me</span></h2>
</div>
<!-- Personal Information -->
<div class="row">
<div class="col-xs-12 col-sm-7">
<p>
The world is full of opportunities, the ones who not only just grab them but in the right time wins it. I am a passionate engineer who is looking to solve real world problems. My knowledge is widespread on the software domain, ranging from Development,
Devops, Machine Learning and Hardware Programming.
</p>
</div>
<div class="col-xs-12 col-sm-5">
<div class="info-list">
<ul>
<li>
<span class="title">Age</span>
<span class="value">25</span>
</li>
<li>
<span class="title">Residence</span>
<span class="value">USA</span>
</li>
<li>
<span class="title">Address</span>
<span class="value">Dallas, Texas</span>
</li>
<li>
<span class="title">e-mail</span>
<span class="value">[email protected]</span>
</li>
<!--<li>
<span class="title">Phone</span>
<span class="value"></span>
</li>-->
</ul>
</div>
</div>
</div>
<!-- End of Personal Information -->
<div class="white-space-50"></div>
<!-- Services -->
<div class="row">
<div class="col-xs-12 col-sm-12">
<div class="block-title">
<h3>What <span>I Do</span></h3>
</div>
</div>
</div>
<div class="row">
<div class="col-xs-12 col-sm-6">
<div class="col-inner">
<div class="info-list-w-icon">
<div class="info-block-w-icon">
<div class="ci-icon">
<i class="lnr lnr-volume-high"></i>
</div>
<div class="ci-text">
<h4>Public Conference</h4>
<p>
I have been well involved in attending interesting conferences such as KubeCon, GopherCon, etc. I have also been on stage to speak about Service Meshes on IstioCon and a couple of Docker conferences.
</p>
</div>
</div>
<div class="white-space-50"></div>
<div class="info-block-w-icon">
<div class="ci-icon">
<i class="lnr lnr-laptop-phone"></i>
</div>
<div class="ci-text">
<h4>Esports</h4>
<p>
I am an active player of Dota2, my id is <span>abishek50</span>. Feel free to add me to your list and lets play party games together.
</p>
</div>
</div>
</div>
</div>
</div>
<div class="col-xs-12 col-sm-6">
<div class="col-inner">
<div class="info-list-w-icon">
<div class="info-block-w-icon">
<div class="ci-icon">
<i class="lnr lnr-dice"></i>
</div>
<div class="ci-text">
<h4>Sports</h4>
<p>
I am a Manchester UTD fanboy, I love Lionel Messi. I have played a ton of football/soccer matches throught my life, won several championships during my Intermediate and Undergraduation course study. I prefer to play CDM (Center defender Mid), good at
defense and my role model is David Luiz. Anyone up for a game, hit me up!
</p>
</div>
</div>
<div class="info-block-w-icon">
<div class="ci-icon">
<i class="lnr lnr-flag"></i>
</div>
<div class="ci-text">
<h4>Leadership</h4>
<p>
I have represented Leadership throughout my career. I have been the General Secretary of my college during my undergraduate studies, and also the Overall Coordinator of our Technical and cultural festivals during the same year. I have also been the captain
of my college football team during my juniors.
</p>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- End of Services -->
<div class="white-space-50"></div>
<!-- Fun Facts -->
<div class="row">
<div class="col-xs-12 col-sm-12">
<div class="block-title">
<h3>Fun <span>Facts</span></h3>
</div>
</div>
</div>
<div class="row">
<div class="col-xs-12 col-sm-4">
<div class="fun-fact gray-default">
<i class="lnr lnr-volume-high"></i>
<h4>Conferences as Speaker</h4>
<span class="fun-fact-block-value">3</span>
<span class="fun-fact-block-text"></span>
</div>
</div>
<div class="col-xs-12 col-sm-4">
<div class="fun-fact gray-default">
<i class="lnr lnr-clock"></i>
<h4>Years of Experience</h4>
<span class="fun-fact-block-value">3</span>
<span class="fun-fact-block-text"></span>
</div>
</div>
<div class="col-xs-12 col-sm-4">
<div class="fun-fact gray-default">
<i class="lnr lnr-star"></i>
<h4>Companies</h4>
<span class="fun-fact-block-value">3</span>
<span class="fun-fact-block-text"></span>
</div>
</div>
</div>
<!-- End of Fun Facts -->
</div>
</section>
<!-- End of About Me Subpage -->
<!-- Resume Subpage -->
<section data-id="resume" class="animated-section">
<div class="section-content">
<div class="page-title">
<h2>Resume</h2>
</div>
<div class="row">
<div class="col-xs-12 col-sm-7">
<div class="block-title">
<h3>Experience</h3>
</div>
<div class="timeline timeline-second-style clearfix">
<div class="timeline-item clearfix">
<div class="left-part">
<h5 class="item-period">10/2020 - 07/2021</h5>
<span class="item-company">Layer5</span>
</div>
<div class="divider"></div>
<div class="right-part">
<h4 class="item-title">
Principal Software Architect
</h4>
<p>
Architect for Meshery as a project for Service Meshes.
</p>
<p>
Created Kubernetes custom operators and controllers for Meshery/Service Meshes.
</p>
<p>
Maintainer of Service Mesh Performance Spec.
</p>
<p>
Automation and Continuous integration around the hosted cloud solution for Meshery.
</p>
<p>
Webassembly Hub for Envoy based Webassembly Filters written in Rust.
</p>
<p>
Mentor of a number of Linux foundation candidates.
</p>
</div>
</div>
<div class="timeline-item clearfix">
<div class="left-part">
<h5 class="item-period">2013 - 2016</h5>
<span class="item-company">Bookmyshow</span>
</div>
<div class="divider"></div>
<div class="right-part">
<h4 class="item-title">Site Reliability Engineer</h4>
<p>
Setting up and migration of applications to Kubernetes clusters for better scaling and stability.
</p>
<p>
Created Terraform modules to maintain the infrastructure components like Network, Firewall rules, Brokers, Kubernetes, VMs and Databases.
</p>
<p>
Developer/Manager of Communication Architecture for Bookmyshow. Developed and ported legacy architecture to a GRPC based new system.
</p>
<p>
Ansible playbook roles to automate application configuation.
</p>
<p>
Created Grpc/Protocol buffers based rule engine for internal systems.
</p>
<p>
Wrote SMPP server for protocol translation from http to smpp.
</p>
</div>
</div>
<div class="timeline-item clearfix">
<div class="left-part">
<h5 class="item-period">Summer Intern 2016</h5>
<span class="item-company">I2R Industries</span>
</div>
<div class="divider"></div>
<div class="right-part">
<h4 class="item-title">Software Engineer</h4>
<p>
Machine learning based project that predicted weather data based on soil data from sensors.
</p>
<p>
Python and Arduino scripts to pull and process data and analyse from Thingspeak.
</p>
<p>
Websocket implementation for event based streaming of data (to improve energy efficiency).
</p>
</div>
</div>
</div>
<div class="block-title">
<h3>Education</h3>
</div>
<div class="timeline timeline-second-style clearfix">
<div class="timeline-item clearfix">
<div class="left-part">
<h5 class="item-period">2021-Present</h5>
<span class="item-company">University of Texas at Dallas</span>
</div>
<div class="divider"></div>
<div class="right-part">
<h4 class="item-title">Masters in Computer Science</h4>
</div>
</div>
<div class="timeline-item clearfix">
<div class="left-part">
<h5 class="item-period">2014-2018</h5>
<span class="item-company">Indian Institute of Technology, Indore</span>
</div>
<div class="divider"></div>
<div class="right-part">
<h4 class="item-title">BTech in Electrical Engineering</h4>
</div>
</div>
</div>
<div class="white-space-50"></div>
</div>
<!-- Skills & Certificates -->
<div class="col-xs-12 col-sm-5">
<div class="block-title">
<h3>Achievements & <span>Awards</span></h3>
</div>
<div class="timeline timeline-second-style clearfix">
<div class="timeline-item clearfix">
<div class="left-part">
<h5 class="item-period">Present</h5>
</div>
<div class="divider"></div>
<div class="right-part">
<h4 class="item-title">Chair Member at CNCF WGs</h4>
<p>
<li>Service Mesh Interface</li>
<li>Meshery</li>
<li>Service Mesh Performance</li>
</p>
</div>
</div>
<div class="timeline-item clearfix">
<div class="left-part">
<h5 class="item-period">2020</h5>
</div>
<div class="divider"></div>
<div class="right-part">
<h4 class="item-title">Speaker at IstioCon</h4>
</div>
</div>
<div class="timeline-item clearfix">
<div class="left-part">
</div>
<div class="divider"></div>
<div class="right-part">
<h4 class="item-title">Co-Instructor at Oreilly Istio Workshop</h4>
</div>
</div>
<div class="timeline-item clearfix">
<div class="left-part">
<h5 class="item-period">2019</h5>
</div>
<div class="divider"></div>
<div class="right-part">
<h4 class="item-title">Speaker at DockerBdy</h4>
</div>
</div>
</div>
<div class="white-space-50"></div>
<!-- Design Skills -->
<div class="block-title">
<h3>Coding <span>Languages</span></h3>
</div>
<div class="skills-info skills-second-style">
<!-- Skill 1 -->
<div class="skill clearfix">
<h4>Golang</h4>
<div class="skill-value">98%</div>
</div>
<div class="skill-container skill-1">
<div class="skill-percentage"></div>
</div>
<!-- End of Skill 1 -->
<!-- Skill 2 -->
<div class="skill clearfix">
<h4>C++</h4>
<div class="skill-value">70%</div>
</div>
<div class="skill-container skill-2">
<div class="skill-percentage"></div>
</div>
<!-- End of Skill 2 -->
<!-- Skill 3 -->
<div class="skill clearfix">
<h4>Javascript</h4>
<div class="skill-value">70%</div>
</div>
<div class="skill-container skill-3">
<div class="skill-percentage"></div>
</div>
<!-- End of Skill 3 -->
<!-- Skill 4 -->
<div class="skill clearfix">
<h4>Rust</h4>
<div class="skill-value">50%</div>
</div>
<div class="skill-container skill-4">
<div class="skill-percentage"></div>
</div>
<!-- End of Skill 4 -->
<!-- Skill 5 -->
<div class="skill clearfix">
<h4>Perl</h4>
<div class="skill-value">40%</div>
</div>
<div class="skill-container skill-5">
<div class="skill-percentage"></div>
</div>
<!-- End of Skill 5 -->
<!-- Skill 6 -->
<div class="skill clearfix">
<h4>HTML/CSS</h4>
<div class="skill-value">70%</div>
</div>
<div class="skill-container skill-6">
<div class="skill-percentage"></div>
</div>
<!-- End of Skill 6 -->
<!-- Skill 7 -->
<div class="skill clearfix">
<h4>Python</h4>
<div class="skill-value">90%</div>
</div>
<div class="skill-container skill-7">
<div class="skill-percentage"></div>
</div>
<!-- End of Skill 7 -->
</div>
<!-- End of Design Skills -->
<div class="white-space-10"></div>
<!-- Frameworks -->
<div class="block-title">
<h3>Frameworks</h3>
</div>
<ul class="knowledges">
<li>React JS</li>
<li>Terraform</li>
<li>Webassembly</li>
<li>gRPC</li>
<li>SMTP</li>
<li>Protocol Buffers</li>
<li>Ansible</li>
</ul>
<!-- End of Frameworks -->
<div class="white-space-50"></div>
<!-- Technologies -->
<div class="block-title">
<h3>Technologies</h3>
</div>
<ul class="knowledges">
<li>Kubernetes</li>
<li>Docker</li>
<li>Service Meshes</li>
<li>Kafka/NATS</li>
<li>Prometheus/Grafana</li>
<li>MySQL/Postgres/MariaDB</li>
<li>MongoDB/Aerospike</li>
<li>Redis/Memcached</li>
<li>Argo/Pipelines</li>
<li>Elasticsearch</li>
<li>Newrelic/Jaeger/Zipkin</li>
<li>Cloudflare/Heroku</li>
</ul>
<!-- End of Technologies -->
<div class="white-space-50"></div>
<!-- Technologies -->
<div class="block-title">
<h3>Cloud Experience</h3>
</div>
<ul class="knowledges">
<li>Google Cloud</li>
<li>AWS</li>
<li>Digital Ocean</li>
<li>On-Premises VMware</li>
</ul>
<!-- End of Technologies -->
</div>
<!-- End of Skills & Certificates -->
</div>
<!--<div class="white-space-50"></div>-->
<!-- Certificates -->
<!--<div class="row">
<div class="col-xs-12 col-sm-12">
<div class="block-title">
<h3>Certificates</h3>
</div>
</div>
</div>
<div class="row">-->
<!-- Certificate 1 -->
<!--<div class="col-xs-12 col-sm-6">
<div class="certificate-item clearfix">
<div class="certi-logo">
<img src="img/clients/client-1.png" alt="logo" />
</div>
<div class="certi-content">
<div class="certi-title">
<h4>Psyhology of Intertnation Design</h4>
</div>
<div class="certi-id">
<span>Membership ID: XXXX</span>
</div>
<div class="certi-date">
<span>19 April 2018</span>
</div>
<div class="certi-company">
<span></span>
</div>
</div>
</div>
</div>-->
<!-- End of Certificate 1 -->
<!--</div>-->
<!-- End of Certificates -->
</div>
</section>
<!-- End of Resume Subpage -->
<!-- Portfolio Subpage -->
<section data-id="projects" class="animated-section">
<div class="section-content">
<div class="page-title">
<h2>Projects</h2>
</div>
<div class="row">
<div class="col-xs-12 col-sm-12">
<!-- Portfolio Content -->
<div class="portfolio-content">
<ul class="portfolio-filters">
<li class="active">
<a class="filter btn btn-sm btn-link" data-group="category_all">All</a
>
</li>
<li>
<a
class="filter btn btn-sm btn-link"
data-group="category_golang"
>Golang</a
>
</li>
<li>
<a
class="filter btn btn-sm btn-link"
data-group="category_javascript"
>Javascript</a
>
</li>
<li>
<a
class="filter btn btn-sm btn-link"
data-group="category_python"
>Python</a
>
</li>
<li>
<a
class="filter btn btn-sm btn-link"
data-group="category_html_css"
>HTML/CSS</a
>
</li>
<li>
<a
class="filter btn btn-sm btn-link"
data-group="category_java"
>Java</a
>
</li>
<!--<li>
<a
class="filter btn btn-sm btn-link"
data-group="category_vimeo-videos"
>Vimeo Videos</a
>
</li>
<li>
<a
class="filter btn btn-sm btn-link"
data-group="category_youtube-videos"
>YouTube Videos</a
>
</li>-->
</ul>
<!-- Portfolio Grid -->
<div class="portfolio-grid three-columns">
<!--<figure
class="item lbaudio"
data-groups='["category_all", "category_soundcloud"]'
>
<div class="portfolio-item-img">
<img
src="img/portfolio/1.jpg"
alt="SoundCloud Audio"
title=""
/>
<a
href="https://w.soundcloud.com/player/?url=https%3A//api.soundcloud.com/tracks/221650664&color=%23ff5500&auto_play=false&hide_related=false&show_comments=true&show_user=true&show_reposts=false&show_teaser=true&visual=true"
class="lightbox mfp-iframe"
title="SoundCloud Audio"
></a>
</div>
<i class="fa fa-volume-up"></i>
<h4 class="name">SoundCloud Audio</h4>
<span class="category">SoundCloud</span>
</figure>-->
<!-- -->
<!-- Projects -->
<!-- -->
<figure class="item standard" data-groups='["category_all", "category_golang"]'>
<div class="portfolio-item-img">
<img src="https://raw.githubusercontent.com/layer5io/meshsync/master/.github/readme/images/meshsync.svg" alt="Meshery Kubernetes Operator" title="" />
<a href="https://github.com/meshery/meshsync"></a>
</div>
<i class="far fa-file-alt"></i>
<h4 class="name">Meshery Kubernetes Operator</h4>
<span class="category">Projects</span>
</figure>
<figure class="item standard" data-groups='["category_all", "category_golang", "category_javascript", "category_html_css"]'>
<div class="portfolio-item-img">
<img src="https://raw.githubusercontent.com/meshery/meshery/master/.github/assets/images/meshery/meshery-logo-tag-light-text-side.png" alt="Meshery" title="" />
<a href="https://github.com/meshery/meshery"></a>
</div>
<i class="far fa-file-alt"></i>
<h4 class="name">Meshery</h4>
<span class="category">Projects</span>
</figure>
<figure class="item standard" data-groups='["category_all", "category_golang"]'>
<div class="portfolio-item-img">
<img src="https://raw.githubusercontent.com/layer5io/service-mesh-performance/master/docs/assets/spec/readme/smp-dark-text-side.svg" alt="Service Mesh Performance" title="" />
<a href="https://github.com/service-mesh-performance/service-mesh-performance"></a>
</div>
<i class="far fa-file-alt"></i>
<h4 class="name">Service Mesh Performance</h4>
<span class="category">Projects</span>
</figure>
<figure class="item standard" data-groups='["category_all", "category_golang", "category_java"]'>
<div class="portfolio-item-img">
<img src="img/projects/jmeter.webp" alt="Jmeter helper CLI" title="" />
<a href="pages/projects/jmeter.html" class="ajax-page-load"></a>
</div>
<i class="far fa-file-alt"></i>
<h4 class="name">Jmeter helper CLI</h4>
<span class="category">Projects</span>
</figure>
<figure class="item standard" data-groups='["category_all", "category_golang"]'>
<div class="portfolio-item-img">
<img src="img/projects/bucky.png" alt="GoBucky" title="" />
<a href="https://github.com/realnighthawk/bucky"></a>
</div>
<i class="far fa-file-alt"></i>
<h4 class="name">Go Bucky</h4>
<span class="category">Projects</span>
</figure>
<figure class="item standard" data-groups='["category_all", "category_golang"]'>
<div class="portfolio-item-img">
<img src="img/projects/email.jpg" alt="Go Email" title="" />
<a href="pages/projects/email.html"></a>
</div>
<i class="far fa-file-alt"></i>
<h4 class="name">Go Email</h4>
<span class="category">Projects</span>
</figure>
<figure class="item standard" data-groups='["category_all", "category_javascript", "category_html_css"]'>
<div class="portfolio-item-img">
<img src="img/projects/notes.webp" alt="Notes Application" title="" />
<a href="pages/projects/notes.html"></a>
</div>
<i class="far fa-file-alt"></i>
<h4 class="name">Notes Application</h4>
<span class="category">Projects</span>
</figure>
<figure class="item standard" data-groups='["category_all", "category_golang"]'>
<div class="portfolio-item-img">
<img src="img/projects/argo.png" alt="Argo Sidecar" title="" />
<a href="pages/projects/argo.html" class="ajax-page-load"></a>
</div>
<i class="far fa-file-alt"></i>
<h4 class="name">Argo Sidecar</h4>
<span class="category">Projects</span>
</figure>
<figure class="item standard" data-groups='["category_all", "category_python", "category_html_css"]'>
<div class="portfolio-item-img">
<img src="img/projects/chat.png" alt="Chat Application" title="" />
<a href="pages/projects/chat.html" class="ajax-page-load"></a>
</div>
<i class="far fa-file-alt"></i>
<h4 class="name">Chat Application</h4>
<span class="category">Projects</span>
</figure>
<figure class="item standard" data-groups='["category_all", "category_python"]'>
<div class="portfolio-item-img">
<img src="img/projects/dhcp.png" alt="Wireless DHCP starvation module" title="" />
<a href="pages/projects/dhcp.html" class="ajax-page-load"></a>
</div>
<i class="far fa-file-alt"></i>
<h4 class="name">Wireless DHCP starvation module</h4>
<span class="category">Projects</span>
</figure>
<!--<figure class="item lbvideo" data-groups='["category_all", "category_vimeo-videos"]'>
<div class="portfolio-item-img">
<img src="img/portfolio/3.jpg" alt="Vimeo Video 1" title="" />
<a href="https://player.vimeo.com/video/158284739" class="lightbox mfp-iframe" title="Vimeo Video 1"></a>
</div>
<i class="fas fa-video"></i>
<h4 class="name">Vimeo Video 1</h4>
<span class="category">Vimeo Videos</span>
</figure>-->
<!--<figure class="item lbimage" data-groups='["category_all", "category_mockups"]'>
<div class="portfolio-item-img">
<img src="img/portfolio/5.jpg" alt="Mockup Design 1" title="" />
<a class="lightbox" title="Mockup Design 1" href="img/portfolio/full/5.jpg"></a>
</div>
<i class="far fa-image"></i>
<h4 class="name">Mockup Design 1</h4>
<span class="category">Mockups</span>
</figure>
<figure class="item lbvideo" data-groups='["category_all", "category_youtube-videos"]'>
<div class="portfolio-item-img">
<img src="img/portfolio/6.jpg" alt="YouTube Video 1" title="" />
<a href="https://www.youtube.com/embed/bg0gv2YpIok" class="lightbox mfp-iframe" title="YouTube Video 1"></a>
</div>
<i class="fas fa-video"></i>
<h4 class="name">YouTube Video 1</h4>
<span class="category">YouTube Videos</span>
</figure>-->
</div>
</div>
<!-- End of Portfolio Content -->
</div>
</div>
</div>
</section>
<!-- End of Portfolio Subpage -->
<!-- Blog Subpage -->
<section data-id="blog" class="animated-section">
<div class="section-content">
<div class="page-title">
<h2>Blog</h2>
</div>
<div class="row">
<div class="col-xs-12 col-sm-12">
<div class="blog-masonry two-columns clearfix">
<!-- Blog Post 1 -->
<div class="item post-1">
<div class="blog-card">
<div class="media-block">
<div class="category">
<a href="#" title="View all posts in Design">Design</a
>
</div>
<a href="blog-post-1.html">
<img
src="img/blog/blog_post_1.jpg"
class="size-blog-masonry-image-two-c"
alt="Why I Switched to Sketch For UI Design"
title=""
/>
<div class="mask"></div>
</a>
</div>
<div class="post-info">
<div class="post-date">05 Mar 2020</div>
<a href="blog-post-1.html">