-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
893 lines (805 loc) · 43 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
<!DOCTYPE html>
<html lang="en">
<head>
<!-- Meta -->
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=0" />
<!-- Title -->
<title>Mukesh Rathore</title>
<!-- Favicons -->
<link rel="icon" type="image/png" sizes="32x32" href="assets/img/favicon.jpg">
<!-- Favicons -->
<link rel="apple-touch-icon" sizes="32x32" href="assets/img/favicon.jpg">
<link rel="icon" type="image/png" sizes="32x32" href="assets/img/favicon.jpg">
<meta name="msapplication-TileColor" content="#ffffff">
<meta name="msapplication-TileImage" content="assets/img/ms-icon-144x144.png">
<meta name="theme-color" content="#ffffff">
<meta name="msapplication-TileColor" content="#ffffff">
<meta name="theme-color" content="#ffffff">
<!-- Google Web Fonts -->
<link href='https://fonts.googleapis.com/css?family=Roboto+Condensed:400,700,300' rel='stylesheet' type='text/css'>
<link href='https://fonts.googleapis.com/css?family=Roboto:400,700,500,300,100' rel='stylesheet' type='text/css'>
<!-- CSS Styles -->
<link rel="stylesheet" href="assets/css/styles.css" type="text/css" />
<!-- CSS Template -->
<link rel="stylesheet" href="assets/css/theme.min.css" type="text/css" />
<link rel="stylesheet" href="assets/css/color/blue-beige.css" id="color" type="text/css" />
<link rel="stylesheet" href="assets/css/main.css" type="text/css" />
</head>
<body class="header-vertical">
<!-- Loader -->
<div id="page-loader" class="bg-white"></div>
<!-- Loader / End -->
<!-- Header -->
<header id="header" class="bg-white hidden-sm hidden-xs">
<!-- Logo -->
<div class="logo bg-primary">
<h1 class="name">Mukesh
<strong>Rathore</strong>
</h1>
<span class="caption text-secondary">Software Engineer / Web Developer</span>
</div>
<!-- Navigation -->
<nav id="main-menu">
<ul class="nav nav-vertical">
<li>
<a href="#start">
<span>Start</span>
</a>
</li>
<li>
<a href="#profile">
<span>Profile</span>
</a>
</li>
<li>
<a href="#portfolio">
<span>Portfolio</span>
</a>
</li>
<li>
<a href="#testimonials">
<span>Testimonials</span>
</a>
</li>
<li>
<a href="#posts">
<span>Latest Posts</span>
</a>
</li>
<li>
<a href="#contact">
<span>Contact</span>
</a>
</li>
</ul>
</nav>
<!-- Social Media -->
<div class="social-media">
<strong class="text-sm hidden-md">Check my social media!</strong>
<ul class="list-inline margin-t-10">
<li>
<a target="_blank" href="https://www.linkedin.com/in/mukeshrathore86/" class="icon icon-xs">
<i class="fa fa-linkedin text-muted"></i>
</a>
</li>
<li>
<a target="_blank" href="https://twitter.com/mukeshrathore86" class="icon icon-xs">
<i class="fa fa-twitter text-muted"></i>
</a>
</li>
<li>
<a target="_blank" href="https://github.com/mukeshrathore" class="icon icon-xs">
<i class="fa fa-github text-muted"></i>
</a>
</li>
</ul>
</div>
</header>
<!-- Header / End -->
<!-- Content -->
<div id="content" class="bg-white">
<!-- Section - Home -->
<section id="start" class="section fullheight bg-secondary dark padding-v-60">
<!-- BG Image -->
<div class="bg-image animated infinite zooming">
<img src="assets/img/photos/bg-01.jpg" alt="background profile image">
</div>
<!-- Top -->
<div class="container container-wide text-md">
<i class="icon-before fa fa-comments text-primary"></i>Have you got any questions? Write to me
<a class="text-primary" href="mailto:[email protected]">here</a>
</div>
<!-- Middle -->
<div class="container container-wide v-bottom padding-v-80">
<h1 class="text-lg margin-b-0">Hi! I’m
<strong>Mukesh Rathore</strong>
</h1>
<h5 class="text-tertiary margin-b-40">Software Engineer / Web Developer</h5>
<span data-target="local-scroll">
<a href="https://mukeshrathore.github.io/resume" target="_blank"
class="btn btn-lg btn-primary animated" data-animation="bounceIn">
<span>Go to Resume!</span>
<i class="ti-arrow-right"></i>
</a>
</span>
<!-- <a target="_blank"
href="https://mukeshrathore.github.io/resume/assets/Mukesh_Rathore_Wells_Fargo_SSE_Resume.pdf"
class="btn btn-link">
<span>Download CV</span>
<i class="ti-download"></i>
</a> -->
</div>
</section>
<!-- Section - Home / End -->
<!-- Section - Resume -->
<section id="profile" class="section padding-v-60">
<!-- Content -->
<div class="container container-wide">
<h6 class="margin-b-50">Profile</h6>
<div class="row padding-lg">
<div class="col-md-4 col-sm-6 col-xs-12">
<!-- Resume Box / About Me -->
<div class="resume-box">
<span class="icon animated" data-animation="fadeInDown">
<i class="ti-comment-alt text-tertiary"></i>
</span>
<h4>
<strong>About</strong> Me
</h4>
<p class="lead">Versatile and Dynamic Java UI Developer</p>
<p>Working as
<strong>Senior Software Developer</strong>, capable of pushing the limits creatively in
fast paced,
deadline-oriented
environment and experience with Information Architecture.
</p>
</div>
<!-- Resume Box / Skills and Abilities -->
<div class="resume-box">
<span class="icon animated" data-animation="fadeInDown">
<i class="ti-cup text-tertiary"></i>
</span>
<h4>
<strong>Skills</strong> & abilities
</h4>
<!-- Skill -->
<div class="skill">
<div class="progress progress-animated">
<div class="progress-bar progress-bar-primary" role="progressbar" aria-valuenow="90"
aria-valuemin="0" aria-valuemax="100">
<span></span>
</div>
</div>
<strong>HTML5 & CSS3</strong>
</div>
<!-- Skill -->
<div class="skill">
<div class="progress progress-animated">
<div class="progress-bar progress-bar-primary" role="progressbar" aria-valuenow="90"
aria-valuemin="0" aria-valuemax="100">
<span></span>
</div>
</div>
<strong>JavaScript & jQuery</strong>
</div>
<!-- Skill -->
<div class="skill">
<div class="progress progress-animated">
<div class="progress-bar progress-bar-primary" role="progressbar" aria-valuenow="80"
aria-valuemin="0" aria-valuemax="100">
<span></span>
</div>
</div>
<strong>Angular & Reactjs</strong>
</div>
<!-- Skill -->
<div class="skill">
<div class="progress progress-animated">
<div class="progress-bar progress-bar-primary" role="progressbar" aria-valuenow="70"
aria-valuemin="0" aria-valuemax="100">
<span></span>
</div>
</div>
<strong>Node.js & MongoDB</strong>
</div>
<!-- Skill -->
<div class="skill">
<div class="progress progress-animated">
<div class="progress-bar progress-bar-primary" role="progressbar" aria-valuenow="60"
aria-valuemin="0" aria-valuemax="100">
<span></span>
</div>
</div>
<strong>Java SpringBoot & MySQL</strong>
</div>
</div>
</div>
<div class="col-md-4 col-sm-6 col-xs-12">
<!-- Resume Box / my Specilities -->
<div class="resume-box">
<span class="icon animated" data-animation="fadeInDown">
<i class="ti-mouse-alt text-tertiary"></i>
</span>
<h4>My
<strong>Specialities</strong>
</h4>
<!-- Speciality -->
<div class="speciality">
<span class="speciality-icon">
<i class="text-muted-2x ti-desktop"></i>
</span>
<div class="speciality-content">
<h5 class="margin-b-0">Enterprise Application Development</h5>
<p class="speciaity-description">Financial, Banking and Insurance Domain Knowledge
</p>
</div>
</div>
<!-- Speciality -->
<div class="speciality">
<span class="speciality-icon">
<i class="text-muted-2x ti-layers-alt"></i>
</span>
<div class="speciality-content">
<h5 class="margin-b-0">Front-End Development</h5>
<p class="speciaity-description">Modern and Responsive Designs.</p>
</div>
</div>
<!-- Speciality -->
<div class="speciality">
<span class="speciality-icon">
<i class="text-muted-2x ti-layout-grid2"></i>
</span>
<div class="speciality-content">
<h5 class="margin-b-0">Team Player</h5>
<p class="speciaity-description">It takes two flints to make a fire.</p>
</div>
</div>
</div>
<!-- Resume Box / Languages skills -->
<!-- Resume Box / Hobbies and interest -->
<div class="resume-box">
<span class="icon animated" data-animation="fadeInDown">
<i class="ti-music-alt text-tertiary"></i>
</span>
<h4>
<strong>Hobbies</strong> & Interests
</h4>
<ul class="list-inline">
<li>
<div class="icon-box text-center">
<span class="icon icon-sm icon-circle icon-primary icon-filled">
<i class="ti-music-alt"></i>
</span>
<span class="title">Music</span>
</div>
</li>
<li>
<div class="icon-box text-center">
<span class="icon icon-sm icon-circle icon-primary icon-filled">
<i class="ti-camera"></i>
</span>
<span class="title">Photography</span>
</div>
</li>
<li>
<div class="icon-box text-center">
<span class="icon icon-sm icon-circle icon-primary icon-filled">
<i class="ti-map-alt"></i>
</span>
<span class="title">Travel</span>
</div>
</li>
</ul>
</div>
</div>
<div class="col-md-4 col-sm-6 col-xs-12">
<!-- Resume Box / Education and Jobs -->
<div class="resume-box">
<span class="icon animated" data-animation="fadeInDown">
<i class="ti-calendar text-tertiary"></i>
</span>
<h4>
<strong>Education</strong> & jobs
</h4>
<div class="timeline">
<!-- Single event -->
<div class="timeline-event te-primary">
<span class="event-date">Jan 2004 - Dec 2008</span>
<span class="event-name">Bachelor Degree Electronics</span>
<span class="event-description">University of Mumbai, India</span>
</div>
<!-- Single event -->
<div class="timeline-event te-primary">
<span class="event-date">Jan 2009 - Dec 2011</span>
<span class="event-name">Software Engineer</span>
<span class="event-description">RVMK Semantic Labs, India</span>
</div>
<!-- Single event -->
<div class="timeline-event te-primary">
<span class="event-date">Jan 2012 - Mar 2013</span>
<span class="event-name">UI Developer</span>
<span class="event-description">TalentServ Consulting, India</span>
</div>
<!-- Single event -->
<div class="timeline-event te-primary">
<span class="event-date">Mar 2013 - Nov 2015</span>
<span class="event-name">Senior Associate Software</span>
<span class="event-description">Synechron Technologies, India</span>
</div>
<!-- Single event -->
<div class="timeline-event te-primary">
<span class="event-date">Nov 2015 - Dec 2016</span>
<span class="event-name">Software Programmer</span>
<span class="event-description">Bank of America Merrill Lynch, NJ</span>
</div>
<!-- Single event -->
<div class="timeline-event te-primary">
<span class="event-date">Dec 2016 - Jun 2021</span>
<span class="event-name">Senior FrontEnd Developer</span>
<span class="event-description">Synechron INC, NC</span>
</div>
<!-- Single event -->
<div class="timeline-event te-primary">
<span class="event-date">June 2021 - Present</span>
<span class="event-name">Senior Software Engineer</span>
<span class="event-description">Wells Fargo Bank N.A., NC</span>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- Section - Resume / End -->
<!-- Section - Portfolio -->
<section id="portfolio" class="section bg-grey padding-v-60">
<!-- Content -->
<div class="container container-wide">
<h6 class="margin-b-50">Portfolio</h6>
<div id="portfolio-list" class="row masonry">
<!-- Masonry Sizer -->
<div class="masonry-sizer col-lg-3 col-sm-6 col-xs-12"></div>
<!-- Masonry Element -->
<div class="webdesign masonry-item margin-b-30 col-lg-6 col-sm-12 col-xs-12">
<div class="gallery-item">
<div class="item-photo">
<a href="https://mukeshrathore.github.io/resume/projects/#ir_digital_marketing"
target="_blank" id="ir_image">
<img src="assets/img/projects/ir.jpg" alt="institutional retirement image" />
</a>
<!-- <div class="item-hover bg-dark dark">
<div class="item-hover-content">
<a href="https://mukeshrathore.github.io/resume/projects/#ir_digital_marketing" target="_blank" class="icon icon-sm icon-hover icon-circle icon-primary">
<i class="fa fa-link"></i>
</a>
</div>
</div> -->
</div>
<div class="item-title">
<a href="https://mukeshrathore.github.io/resume/projects/#ir_digital_marketing"
class="title" target="_blank">IR Digital Marketing</a>
<span class="caption text-muted">Screens</span>
</div>
</div>
</div>
<!-- Masonry Element -->
<div class="development masonry-item margin-b-30 col-lg-3 col-sm-6 col-xs-12">
<div class="gallery-item">
<div class="item-photo">
<a href="https://mukeshrathore.github.io/resume/projects/#feelBetter" target="_blank">
<img src="assets/img/projects/tgi.jpg" alt="the general insurance image" />
</a>
</div>
<div class="item-title">
<a href="https://mukeshrathore.github.io/resume/projects/#tgi" target="_blank"
class="title">The General Insurance</a>
<span class="caption text-muted">Screens</span>
</div>
</div>
</div>
<!-- Masonry Element -->
<div class="graphic masonry-item margin-b-30 col-lg-3 col-sm-6 col-xs-12">
<div class="gallery-item">
<div class="item-photo">
<a href="https://mukeshrathore.github.io/resume/projects/#feelBetter" target="_blank">
<img src="assets/img/projects/feelBetter.jpg" alt="feel better" />
</a>
</div>
<div class="item-title">
<a href="https://mukeshrathore.github.io/resume/projects/#feelBetter" target="_blank"
class="title">FeelBetter</a>
<span class="caption text-muted">Screens</span>
</div>
</div>
</div>
<!-- Masonry Element -->
<div class="webdesign masonry-item margin-b-30 col-lg-3 col-sm-6 col-xs-12">
<div class="gallery-item">
<div class="item-photo">
<a href="https://mukeshrathore.github.io/resume/projects/#tapToBook" target="_blank">
<img src="assets/img/projects/tapToBook.png" alt="tap to book" />
</a>
</div>
<div class="item-title">
<a href="https://mukeshrathore.github.io/resume/projects/#tapToBook" class="title"
target="_blank">TapToBook</a>
<span class="caption text-muted">Screens</span>
</div>
</div>
</div>
<!-- Masonry Element -->
<div class="development masonry-item margin-b-30 col-lg-6 col-sm-12 col-xs-12">
<div class="gallery-item">
<div class="item-photo">
<a href="https://mukeshrathore.github.io/resume/projects/#nats" target="_blank">
<img src="assets/img/projects/nats.jpg" alt="nats image" />
</a>
</div>
<div class="item-title">
<a href="https://mukeshrathore.github.io/resume/projects/#nats" class="title"
target="_blank">NATS AERO BLOG</a>
<span class="caption text-muted">Screens</span>
</div>
</div>
</div>
<!-- Masonry Element -->
<div class="graphic masonry-item margin-b-30 col-lg-3 col-sm-6 col-xs-12">
<div class="gallery-item">
<div class="item-photo">
<a href="https://mukeshrathore.github.io/resume/projects/#mucinex" target="_blank">
<img src="assets/img/projects/mucinex.jpg" alt="mucinex" />
</a>
</div>
<div class="item-title">
<a href="https://mukeshrathore.github.io/resume/projects/#mucinex" target="_blank"
class="title">Mucinex</a>
<span class="caption text-muted">Screens</span>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- Section - Portfolio / End -->
<!-- Section - Testimonials -->
<section id="testimonials" class="section bg-primary dark padding-v-60">
<!-- Content -->
<div class="container container-wide">
<h6 class="margin-b-50">Testimonials</h6>
<h1 class="margin-b-0">
<span id="yearOfExperience"></span>+ years of Experience
<h5 class="text-muted margin-b-60">Look at their opinions!</h5>
<div class="row padding-lg">
<div class="col-lg-4 col-sm-6">
<!-- Testimonial -->
<div class="testimonial testimonial-dark">
<div class="testimonial-content font-alt">
Last night Mukesh Rathore went above and beyond to log in from home to help the
Global Markets business distribute a client
communication on market volatility ahead of the election results overnight to
300,000+
institutional client contacts.
<br>
<br> I wanted to let you know that I appreciated Mukesh’s willingness to go above
and beyond
to help us accomplish this goal.
<br>
<br> Thank you
</div>
<div class="testimonial-author testimonial-with-photo">
<div class="testimonial-photo animated" data-animation="zoomIn">
<img class="img-circle" src="assets/img/photos/testimonial-avatar01.jpg"
alt="" />
</div>
<div class="testimonial-author-txt">
<span class="name">Mark Winarsky</span>
<span class="caption text-secondary">Bank of America</span>
</div>
</div>
</div>
</div>
<div class="col-lg-4 col-sm-6">
<!-- Testimonial -->
<div class="testimonial testimonial-dark">
<div class="testimonial-content font-alt">
Thank you very much for your support and commitment towards this PBIG PWA redesign
project. Keep it up!
</div>
<div class="testimonial-author testimonial-with-photo">
<div class="testimonial-photo animated" data-animation="zoomIn">
<img class="img-circle" src="assets/img/photos/testimonial-avatar03.jpg"
alt="" />
</div>
<div class="testimonial-author-txt">
<span class="name">Paresh Pawar</span>
<span class="caption text-secondary">Synechron Inc.</span>
</div>
</div>
</div>
</div>
<div class="col-lg-4 col-sm-6">
<div class="testimonial testimonial-dark">
<div class="testimonial-content font-alt">
Thank you Mukesh, I very much appreciate your dedication and partnership. It’s great
to get these types of emails from our
LOB partners.
</div>
<div class="testimonial-author testimonial-with-photo">
<div class="testimonial-photo animated" data-animation="zoomIn">
<img class="img-circle" src="assets/img/photos/testimonial-avatar04.jpg"
alt="" />
</div>
<div class="testimonial-author-txt">
<span class="name">Thomas M Kerekes</span>
<span class="caption text-secondary">Bank of America</span>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- Section - Testimonials / End -->
<!-- Section - Latest Posts -->
<section id="posts" class="section bg-grey padding-v-60">
<!-- Content -->
<div class="container container-wide">
<h6 class="margin-b-50">Latest Posts</h6>
<div class="row masonry">
<!-- Masonry Sizer -->
<div class="masonry-sizer col-lg-4 col-sm-6 col-xs-12"></div>
<!-- Masonry Element / Post -->
<article class="post post-item masonry-item col-lg-4 col-sm-6 col-xs-12">
<div class="post-photo">
<img src="assets/img/photos/post-01.jpg" alt="cloud image">
</div>
<div class="post-content animated" data-animation="fadeInUp">
<div class="meta">
<span>
<i class="fa fa-clock-o"></i>
<a href="javascript:void(0);" title="Time to Read">4 minutes</a>
</span>
<span>
<i class="fa fa-tag"></i>
<a href="javascript:void(0);">Cloud Foundry, AWS</a>
</span>
</div>
<div class="date">8 April, 2018</div>
<h1>
<a href="javascript:void(0);">PCF Articulate Code</a>
</h1>
<p class="lead">Demonstrating Capabilities of Cloud Foundry</p>
<p>A sample application built with Spring Boot that demonstrates capabilities of Cloud
Foundry.</p>
<a href="https://github.com/mukeshrathore/pcf-articulate-code" target="_blank"
class="btn btn-primary btn-xs">
<span>Read more</span>
<i class="ti-arrow-right"></i>
</a>
</div>
</article>
<!-- Masonry Element / Post -->
<article class="post post-item masonry-item col-lg-4 col-sm-6 col-xs-12">
<div class="post-photo">
<img src="assets/img/photos/post-02.jpg" alt="node and express image">
</div>
<div class="post-content animated" data-animation="fadeInUp">
<div class="meta">
<span>
<i class="fa fa-clock-o"></i>
<a href="javascript:void(0);" title="Time to Read">4 minutes</a>
</span>
<span>
<i class="fa fa-tag"></i>
<a href="javascript:void(0);">Node.js, Express.js</a>
</span>
</div>
<div class="date">2 June, 2018</div>
<h1>
<a href="javascript:void(0);">Http Service Interceptor using Node</a>
</h1>
<p class="lead">Microservice based on Express.js</p>
<p>This micro-service is used as layer between local angular presentation layer and domain
services
to resolve CORS issues on latest browsers</p>
<a href="https://github.com/mukeshrathore/http-service-interceptor-using-node"
target="_blank" class="btn btn-primary btn-xs">
<span>Read more</span>
<i class="ti-arrow-right"></i>
</a>
</div>
</article>
<!-- Masonry Element / Post -->
<article class="post post-item masonry-item col-lg-4 col-sm-6 col-xs-12">
<div class="post-photo">
<img src="assets/img/photos/post-03.jpg" alt="angular image">
</div>
<div class="post-content animated" data-animation="fadeInUp">
<div class="meta">
<span>
<i class="fa fa-clock-o"></i>
<a href="javascript:void(0);" title="Time to Read">4 minutes</a>
</span>
<span>
<i class="fa fa-tag"></i>
<a href="javascript:void(0);">Angular, Material</a>
</span>
</div>
<div class="date">18 May, 2018</div>
<h1>
<a href="javascript:void(0);">Angular Material mat-table</a>
</h1>
<p class="lead">This demo is showcases Paginator and Sorting on mat-table using http
services</p>
<p>The demo will include inline-editing, CRUD operations and many more feature in future
Enhancement</p>
<a href="https://github.com/mukeshrathore/angular-material-mat-table" target="_blank"
class="btn btn-primary btn-xs">
<span>Read more</span>
<i class="ti-arrow-right"></i>
</a>
</div>
</article>
</div>
</div>
</section>
<!-- Section - Latest Posts / End -->
<!-- Section - Contact -->
<section id="contact" class="section padding-v-60 min-fullheight">
<div id="google-map" class="bg-image" data-latitude="35.324837" data-longitude="-80.739799"
data-style="light"></div>
<div class="contact-box bg-secondary dark animated" data-animation="flipInY">
<h1>Don’t hesitate to
<strong>contact me</strong>!
</h1>
<ul class="list-unstyled list-unstyled-icons">
<li>
<i class="inline-icon icon-before-and-after text-primary fa fa-map-marker"></i>
9907 Network Ln,
<br />Charlotte, NC-28262
</li>
<li>
<i class="inline-icon icon-before-and-after text-primary fa fa-comment"></i>
<a href="javascript:void(0);">[email protected]</a>
</li>
</ul>
<h5 class="margin-t-60">Check my social media!</h5>
<ul class="list-inline">
<li>
<a target="_blank" href="https://www.linkedin.com/in/mukeshrathore86/"
class="icon icon-circle icon-xs icon-linkedin">
<i class="fa fa-linkedin"></i>
</a>
</li>
<li>
<a target="_blank" href="https://twitter.com/mukeshrathore86"
class="icon icon-circle icon-xs icon-twitter">
<i class="fa fa-twitter"></i>
</a>
</li>
<li>
<a target="_blank" href="https://github.com/mukeshrathore"
class="icon icon-circle icon-xs icon-github">
<i class="fa fa-github"></i>
</a>
</li>
</ul>
<div class="fb-like" data-href="https://www.linkedin.com/in/mukeshrathore86/" data-layout="button_count"
data-action="like" data-show-faces="false" data-share="false"></div>
</div>
</section>
<!-- Section - Contact / End -->
</div>
<!-- Content / End -->
<!-- Mobile Navigation -->
<a href="javascript:void(0);" id="mobile-nav-toggle"
class="icon icon-circle icon-sm icon-primary icon-hover visible-xs visible-sm" data-target="mobile-nav">
<i class="ti-menu"></i>
</a>
<nav id="mobile-nav" class="bg-white">
<div class="mobile-nav-wrapper">
<!-- Avatar -->
<img src="assets/img/photos/it-avatar-96x96.jpg" alt="..." class="img-circle margin-b-30">
<!-- Nav -->
<ul class="nav nav-vertical">
<li>
<a href="#start">
<span>Start</span>
</a>
</li>
<li>
<a href="#profile">
<span>Profile</span>
</a>
</li>
<li>
<a href="#portfolio">
<span>Portfolio</span>
</a>
</li>
<li>
<a href="#testimonials">
<span>Testimonials</span>
</a>
</li>
<li>
<a href="#posts">
<span>Latest Posts</span>
</a>
</li>
<li>
<a href="#contact">
<span>Contact</span>
</a>
</li>
</ul>
<!-- Social Media -->
<div class="margin-t-20">
<strong class="text-sm hidden-md">Check my social media!</strong>
<ul class="list-inline margin-t-10">
<li>
<a target="_blank" href="https://www.linkedin.com/in/mukeshrathore86/" class="icon icon-xs">
<i class="fa fa-linkedin text-muted"></i>
</a>
</li>
<li>
<a target="_blank" href="https://twitter.com/mukeshrathore86" class="icon icon-xs">
<i class="fa fa-twitter text-muted"></i>
</a>
</li>
<li>
<a target="_blank" href="https://github.com/mukeshrathore" class="icon icon-xs">
<i class="fa fa-github text-muted"></i>
</a>
</li>
</ul>
</div>
</div>
<a href="javascrip;t:void(0)" class="mobile-nav-close icon icon-hover icon-xs icon-circle icon-primary"
data-target="mobile-nav">
<i class="fa fa-times"></i>
</a>
</nav>
<!-- Ajax Wrapper & Loader -->
<div id="ajax-modal"></div>
<div id="ajax-loader">
<i class="fa fa-spinner fa-spin"></i>
</div>
<!-- FB Like -->
<!-- <div id="fb-root"></div>
<script>(function (d, s, id) {
var js, fjs = d.getElementsByTagName(s)[0];
if (d.getElementById(id)) return;
js = d.createElement(s); js.id = id;
js.src = "//connect.linkedin.net/en_US/sdk.js#xfbml=1&version=v2.5";
fjs.parentNode.insertBefore(js, fjs);
}(document, 'script', 'linkedin-jssdk'));</script> -->
<!-- JS Libraries -->
<script src="assets/js/jquery-1.11.3.min.js"></script>
<!-- JS Plugins -->
<script>
window.paceOptions = {
target: '#page-loader',
ajax: false
};
</script>
<script src="assets/js/plugins.js"></script>
<!-- JS Core -->
<script src="assets/js/core.min.js"></script>
<!-- Google Map API -->
<!-- <script src="https://maps.googleapis.com/maps/api/js?v=3.exp&sensor=false"></script> -->
<script src="https://maps.googleapis.com/maps/api/js?key=AIzaSyAaocuVhEZrqkwqTCnZNdsSeDzCqv1HSj0"></script>
<!-- <script async defer src="https://maps.googleapis.com/maps/api/js?key=AIzaSyAaocuVhEZrqkwqTCnZNdsSeDzCqv1HSj0&callback=initMap">
</script> -->
<!-- Global site tag (gtag.js) - Google Analytics -->
<script async src="https://www.googletagmanager.com/gtag/js?id=UA-51672663-2"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag() { dataLayer.push(arguments); }
gtag('js', new Date());
gtag('config', 'UA-51672663-2');
</script>
<script src="main.js"></script>
</body>
</html>