-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
1236 lines (1173 loc) · 58.3 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>Milan Panchal</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="description" content="" />
<meta name="keywords" content="" />
<meta name="author" content="" />
<!-- Facebook and Twitter integration -->
<meta property="og:title" content=""/>
<meta property="og:image" content=""/>
<meta property="og:url" content=""/>
<meta property="og:site_name" content=""/>
<meta property="og:description" content=""/>
<meta name="twitter:title" content="" />
<meta name="twitter:image" content="" />
<meta name="twitter:url" content="" />
<meta name="twitter:card" content="" />
<!-- 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="colorlib-page">
<div class="container-wrap">
<a href="#" class="js-colorlib-nav-toggle colorlib-nav-toggle" data-toggle="collapse" data-target="#navbar" aria-expanded="false" aria-controls="navbar"><i></i></a>
<aside id="colorlib-aside" role="complementary" class="border js-fullheight">
<div class="text-center">
<div class="author-img" style="background-image: url(images/about.jpeg);"></div>
<h1 id="colorlib-logo"><a href="index.html">Milan Panchal</a></h1>
<span class="position"><a href="#">IOS Team Lead</a> in Mumbai</span>
</div>
<nav id="colorlib-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="services">Services</a></li> -->
<li><a href="#" data-nav-section="skills">Skills</a></li>
<li><a href="#" data-nav-section="education">Education</a></li>
<li><a href="#" data-nav-section="experience">Experience</a></li>
<li><a href="#" data-nav-section="work">Work</a></li>
<li><a href="#" data-nav-section="certification">Certification</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="colorlib-footer">
<p><small>© <!-- Link back to Colorlib can't be removed. Template is licensed under CC BY 3.0. -->
Copyright ©<script>document.write(new Date().getFullYear());</script> All rights reserved | This template is made with <i class="icon-heart" aria-hidden="true"></i> by <a href="https://colorlib.com" target="_blank">Colorlib</a>
<!-- Link back to Colorlib can't be removed. Template is licensed under CC BY 3.0. --> </span> <span>Demo Images: <a href="https://unsplash.com/" target="_blank">Unsplash.com</a></span></small></p>
<ul>
<li><a href="#"><i class="icon-facebook2"></i></a></li>
<li><a href="#"><i class="icon-twitter2"></i></a></li>
<li><a href="#"><i class="icon-instagram"></i></a></li>
<li><a href="#"><i class="icon-linkedin2"></i></a></li>
</ul>
</div>
</aside>
<div id="colorlib-main">
<section id="colorlib-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-12 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>Hi! <br>I'm Milan Panchal</h1>
<h2>IOS Team Lead</h2>
<p><a class="btn btn-primary btn-learn" target="_blank" href="Resume/Milan_Panchal_IOS_TEAM_LEAD.pdf" media_type="application/pdf">Download CV <i class="icon-download4"></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>I am <br>a Designer</h1>
<h2>100% html5 bootstrap templates Made by <a href="https://colorlib.com/" target="_blank">colorlib.com</a></h2>
<p><a class="btn btn-primary btn-learn">View Portfolio <i class="icon-briefcase3"></i></a></p>
</div>
</div>
</div>
</div>
</div>
</li> -->
</ul>
</div>
</section>
<section class="colorlib-about" data-section="about">
<div class="colorlib-narrow-content">
<div class="row">
<div class="col-md-12">
<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">About Us</span>
<h2 class="colorlib-heading">Who Am I?</h2>
<p><strong>Hi I'm Milan Panchal</strong> Dynamic and passionate individual with extensive experience in application development lifecycle from concept through delivery of next-generation applications and customizable solutions in an Agile Environment.</p>
<p>With nearly eight years of development experience, three years of project management, I have a track record of working with top clients and building their business ideas. Continuous learner always looking for an enriching and strengthening my technical and professional skill set.</p>
<a href="https://github.com/milanpanchal"><img src="https://img.shields.io/github/followers/milanpanchal.svg?style=flat&label=GitHub+Followers&maxAge=2592000" alt="GitHub Follow"></a>
<a href="https://twitter.com/milan_panchal24" rel="nofollow noreferrer"><img src="https://img.shields.io/twitter/follow/milan_panchal24.svg" alt="Twitter Follow"></a>
</div>
</div>
</div>
<div class="row">
<!-- <div class="col-md-3 animate-box" data-animate-effect="fadeInLeft">
<div class="services color-1">
<span class="icon2"><i class="icon-bulb"></i></span>
<h3>Graphic Design</h3>
</div>
</div>
<div class="col-md-3 animate-box" data-animate-effect="fadeInRight">
<div class="services color-2">
<span class="icon2"><i class="icon-globe-outline"></i></span>
<h3>Web Design</h3>
</div>
</div> -->
<div class="col-md-3 animate-box" data-animate-effect="fadeInBottom">
<div class="services color-5">
<span class="icon2"><i class="icon-phone3"></i></span>
<h3>Mobile Application</h3>
</div>
</div>
<div class="col-md-3 animate-box" data-animate-effect="fadeInBottom">
<div class="services color-4">
<span class="icon2"><i class="icon-group"></i></span>
<h3>Team Lead<br><br></h3>
</div>
</div>
<div class="col-md-3 animate-box" data-animate-effect="fadeInTop">
<div class="services color-3">
<span class="icon2"><i class="icon-data"></i></span>
<h3>Project Management</h3>
</div>
</div>
</div>
<div class="row">
<div class="col-md-12 animate-box" data-animate-effect="fadeInLeft">
<div class="hire">
<h2>I am happy to know you <br>that 20+ projects done sucessfully!</h2>
<a target="_blank" href="Resume/Milan_Panchal_IOS_TEAM_LEAD.pdf" class="btn-hire">Hire me</a>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<!--
<section class="colorlib-services" data-section="services">
<div class="colorlib-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">What I do?</span>
<h2 class="colorlib-heading">Here are some of my expertise</h2>
</div>
</div>
<div class="row row-pt-md">
<div class="col-md-4 text-center animate-box">
<div class="services color-1">
<span class="icon">
<i class="icon-bulb"></i>
</span>
<div class="desc">
<p>managing software programs</p>
</div>
</div>
</div>
<div class="col-md-4 text-center animate-box">
<div class="services color-2">
<span class="icon">
<i class="icon-data"></i>
</span>
<div class="desc">
<p>Testing and evaluating new programs</p>
</div>
</div>
</div>
<div class="col-md-4 text-center animate-box">
<div class="services color-3">
<span class="icon">
<i class="icon-phone3"></i>
</span>
<div class="desc">
<h3>Deploying software tools, processes and metrics</h3>
<p>Deploying software tools, processes and metrics</p>
</div>
</div>
</div>
<div class="col-md-4 text-center animate-box">
<div class="services color-5">
<span class="icon">
<i class="icon-data"></i>
</span>
<div class="desc">
<p>Working closely with other developers, UX designers, business and systems analysts</p>
</div>
</div>
</div>
<div class="col-md-4 text-center animate-box">
<div class="services color-4">
<span class="icon">
<i class="icon-layers2"></i>
</span>
<div class="desc">
<p>Deploying software tools, processes and metrics</p>
</div>
</div>
</div>
<div class="col-md-4 text-center animate-box">
<div class="services color-6">
<span class="icon">
<i class="icon-phone3"></i>
</span>
<div class="desc">
<p>Training users</p>
</div>
</div>
</div>
</div>
</div>
</section> -->
<!--<div id="colorlib-counter" class="colorlib-counters" style="background-image: url(images/cover_bg_1.jpg);" data-stellar-background-ratio="0.5">
<div class="overlay"></div>
<div class="colorlib-narrow-content">
<div class="row">
</div>
<div class="row">
<div class="col-md-3 text-center animate-box">
<span class="colorlib-counter js-counter" data-from="0" data-to="309" data-speed="5000" data-refresh-interval="50"></span>
<span class="colorlib-counter-label">Cups of coffee</span>
</div>
<div class="col-md-3 text-center animate-box">
<span class="colorlib-counter js-counter" data-from="0" data-to="356" data-speed="5000" data-refresh-interval="50"></span>
<span class="colorlib-counter-label">Projects</span>
</div>
<div class="col-md-3 text-center animate-box">
<span class="colorlib-counter js-counter" data-from="0" data-to="30" data-speed="5000" data-refresh-interval="50"></span>
<span class="colorlib-counter-label">Clients</span>
</div>
<div class="col-md-3 text-center animate-box">
<span class="colorlib-counter js-counter" data-from="0" data-to="10" data-speed="5000" data-refresh-interval="50"></span>
<span class="colorlib-counter-label">Partners</span>
</div>
</div>
</div>
</div>-->
<section class="colorlib-skills" data-section="skills">
<div class="colorlib-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">My Specialty</span>
<h2 class="colorlib-heading animate-box">My Skills</h2>
</div>
</div>
<div class="row">
<div class="col-md-12 animate-box" data-animate-effect="fadeInLeft">
</div>
<div class="col-md-6 animate-box" data-animate-effect="fadeInLeft">
<div class="progress-wrap">
<h3>Swift (Programming Language)</h3>
<div class="progress">
<div class="progress-bar color-1" role="progressbar" aria-valuenow="90"
aria-valuemin="0" aria-valuemax="100" style="width:90%">
<span>90%</span>
</div>
</div>
</div>
</div>
<div class="col-md-6 animate-box" data-animate-effect="fadeInRight">
<div class="progress-wrap">
<h3>Objective-C</h3>
<div class="progress">
<div class="progress-bar color-2" role="progressbar" aria-valuenow="85"
aria-valuemin="0" aria-valuemax="100" style="width:85%">
<span>85%</span>
</div>
</div>
</div>
</div>
<div class="col-md-6 animate-box" data-animate-effect="fadeInLeft">
<div class="progress-wrap">
<h3>Xcode</h3>
<div class="progress">
<div class="progress-bar color-3" role="progressbar" aria-valuenow="90"
aria-valuemin="0" aria-valuemax="100" style="width:90%">
<span>90%</span>
</div>
</div>
</div>
</div>
<div class="col-md-6 animate-box" data-animate-effect="fadeInRight">
<div class="progress-wrap">
<h3>Cocoa Touch</h3>
<div class="progress">
<div class="progress-bar color-4" role="progressbar" aria-valuenow="90"
aria-valuemin="0" aria-valuemax="100" style="width:90%">
<span>90%</span>
</div>
</div>
</div>
</div>
<div class="col-md-6 animate-box" data-animate-effect="fadeInRight">
<div class="progress-wrap">
<h3>Core Data</h3>
<div class="progress">
<div class="progress-bar color-5" role="progressbar" aria-valuenow="85"
aria-valuemin="0" aria-valuemax="100" style="width:85%">
<span>85%</span>
</div>
</div>
</div>
</div>
<div class="col-md-6 animate-box" data-animate-effect="fadeInRight">
<div class="progress-wrap">
<h3>Firebase</h3>
<div class="progress">
<div class="progress-bar color-6" role="progressbar" aria-valuenow="80"
aria-valuemin="0" aria-valuemax="100" style="width:80%">
<span>80%</span>
</div>
</div>
</div>
</div>
<div class="col-md-6 animate-box" data-animate-effect="fadeInRight">
<div class="progress-wrap">
<h3>Unit Testing</h3>
<div class="progress">
<div class="progress-bar color-1" role="progressbar" aria-valuenow="80"
aria-valuemin="0" aria-valuemax="100" style="width:80%">
<span>80%</span>
</div>
</div>
</div>
</div>
<div class="col-md-6 animate-box" data-animate-effect="fadeInRight">
<div class="progress-wrap">
<h3>SwiftLint</h3>
<div class="progress">
<div class="progress-bar color-2" role="progressbar" aria-valuenow="80"
aria-valuemin="0" aria-valuemax="100" style="width:80%">
<span>80%</span>
</div>
</div>
</div>
</div>
<div class="col-md-6 animate-box" data-animate-effect="fadeInRight">
<div class="progress-wrap">
<h3>Version Control (GIT | SVN)</h3>
<div class="progress">
<div class="progress-bar color-3" role="progressbar" aria-valuenow="80"
aria-valuemin="0" aria-valuemax="100" style="width:80%">
<span>80%</span>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<section class="colorlib-education" data-section="education">
<div class="colorlib-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">Education</span>
<h2 class="colorlib-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">Bachelor of Technology, I.T.
</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-12">
<p>
<strong>Ganpat University, Maheshana</strong>
</br>Bachelor of Technology (B.Tech.) in Information Technology
</br>First Class with Distinction
</br>2007 - 2011
</p>
<p><strong>Activities</strong>
<ul>
<li>Presented paper on <strong>"Service-Oriented Architecture: Security Perspective"</strong> during Convergence - 2010, A National Level Technical Symposium</li>
<li>Volunteer/ Committee Member during Convergence - 2010</li>
</ul>
</p>
</div>
<!-- <div class="col-md-6">
<p>Separated they live in Bookmarksgrove right at the coast of the Semantics, a large language ocean.</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">12<sup>th</sup> Science, Shree Swaminaraya High School
</a>
</h4>
</div>
<div id="collapseTwo" class="panel-collapse collapse" role="tabpanel" aria-labelledby="headingTwo">
<div class="panel-body">
<p>
<strong>Shree Swaminaraya High School, Gandhinagar</strong><br>
Grade One with Distinction (78.40%)<br>
2005 - 2007<br>
Affiliated to GSEB: <a target="_blank" href="http://www.gseb.org">http://www.gseb.org</a>
</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">Diploma in Information Technology
</a>
</h4>
</div>
<div id="collapseThree" class="panel-collapse collapse" role="tabpanel" aria-labelledby="headingThree">
<div class="panel-body">
<p>Far far away, behind the word <strong>mountains</strong>, far from the countries Vokalia and Consonantia, there live the blind texts. Separated they live in Bookmarksgrove right at the coast of the Semantics, a large language ocean.</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">Diploma in Information Technology
</a>
</h4>
</div>
<div id="collapseFour" class="panel-collapse collapse" role="tabpanel" aria-labelledby="headingFour">
<div class="panel-body">
<p>Far far away, behind the word <strong>mountains</strong>, far from the countries Vokalia and Consonantia, there live the blind texts. Separated they live in Bookmarksgrove right at the coast of the Semantics, a large language ocean.</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">High School Secondary Education
</a>
</h4>
</div>
<div id="collapseFive" class="panel-collapse collapse" role="tabpanel" aria-labelledby="headingFive">
<div class="panel-body">
<p>Far far away, behind the word <strong>mountains</strong>, far from the countries Vokalia and Consonantia, there live the blind texts. Separated they live in Bookmarksgrove right at the coast of the Semantics, a large language ocean.</p>
</div>
</div>
</div> -->
</div>
</div>
</div>
</div>
</div>
</section>
<section class="colorlib-experience" data-section="experience">
<div class="colorlib-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">Experience</span>
<h2 class="colorlib-heading animate-box">Work 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><a href="#">iOS Lead at Antarctica Global</a> <span>Nov 2019 - Present</span></h2>
<p>- Lead and manage iOS team. <br>- End-to-end iOS application development.
<br>- Lead technical architecture, coding standards, and other team policies.
<br>- Assist with interviewing and attracting new talent to Organization.</p>
</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><a href="#">Deputy Manager at Cox & Kings</a> <span>Dec 2017 - Sept 2019</span></h2>
<p>- Design, development and maintenance of the native iOS mobile application.
<br>- Lead the entire app lifecycle right from concept stage until delivery and post-launch support.
<br>- Designing and implementing new features in existing iOS applications.
<br>- Debugging, bug fixes, and performance improvement.
<br>- Used GIT (Bit bucket) as a versioning control tool for the application code.
</p>
</div>
</div>
</article>
<article class="timeline-entry animate-box" data-animate-effect="fadeInLeft">
<div class="timeline-entry-inner">
<div class="timeline-icon color-3">
<i class="icon-pen2"></i>
</div>
<div class="timeline-label">
<h2><a href="#">Senior Software Engineer at Pocket App</a> <span>Feb 2015 - Dec 2017</span></h2>
<p><br>- Participate in various phases of SDLC including design, coding, reviews, testing, and documentation.
<br>- Had a chance to mentor junior developers.
<br>- Identify and correct bottlenecks and fix bugs.
<br>- Developed application in Objective-C as well as Swift
<br>- Have worked in In-app purchases, Location-Based Services and supporting multiple screens.
<br>- Used GIT and SVN (Project Locker) as a versioning control tool for the application code.
<br>- Used Bugzilla for the bug tracking.
<br>- Worked with tools such as Cocoa pods, etc.
<br>- Used Swift Lint - A tool to enforce Swift style and conventions.
<br>- Had done code review of the junior developers.
<br>- Involved in projects from start to delivery - Agile methodology.
<br>- Developing the base structure for iOS app.
<br>- Development of complex tasks.
<br>- Involved in discussions and providing suggestions on timeline, functionalities.
<br>- Worked with location-based services for Geofencing
<br>- GIT configuration management.
<br>- Research and Development.
</p>
</div>
</div>
</article>
<article class="timeline-entry animate-box" data-animate-effect="fadeInTop">
<div class="timeline-entry-inner">
<div class="timeline-icon color-4">
<i class="icon-pen2"></i>
</div>
<div class="timeline-label">
<h2><a href="#">Software Engineer - iOS at Ducktile Labs Pvt. Ltd.</a> <span>Jul 2014 - Jan 2015</span></h2>
<p>- Develop application for iPhone & iPad </p>
</div>
</div>
</article>
<article class="timeline-entry animate-box" data-animate-effect="fadeInLeft">
<div class="timeline-entry-inner">
<div class="timeline-icon color-5">
<i class="icon-pen2"></i>
</div>
<div class="timeline-label">
<h2><a href="#">Software Engineer at IntraSoft Technologies Limited</a> <span>Dec 2013 – Jul 2014</span></h2>
<p><br>- Own the iOS product end to end, including sprint management, development, bug tracking, app performance, and release to the AppStore.
<br>- Work closely with the design, back-end, and other engineering teams to build a world-class product.
<br>- Optimization of the application for maximum speed and scalability.
<br>- Social Media Integration (Facebook, Twitter, etc.)
<br>- Integrating external libraries (AFNetworking, SDWebImage, etc.)
<br>- Integrated Flurry for event tracking.
<br>- Integrated Google AdMob SDK for Sticky Banner Ads
</p>
</div>
</div>
</article>
<article class="timeline-entry animate-box" data-animate-effect="fadeInLeft">
<div class="timeline-entry-inner">
<div class="timeline-icon color-5">
<i class="icon-pen2"></i>
</div>
<div class="timeline-label">
<h2><a href="#">Software Engineer at VivaConnect Pvt. Ltd. (Movivation Labs Pvt. Ltd.)</a> <span>Nov 2011 – Dec 2013</span></h2>
<p>- Build applications for the iOS platform in Objective-C.
<br>- Build web services for the mobile team in Eclipse using spring technology.
</p>
</div>
</div>
</article>
<article class="timeline-entry begin animate-box" data-animate-effect="fadeInBottom">
<div class="timeline-entry-inner">
<div class="timeline-icon color-none">
</div>
</div>
</article>
</div>
</div>
</div>
</div>
</section>
<section class="colorlib-work" data-section="work">
<div class="colorlib-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">My Work</span>
<h2 class="colorlib-heading animate-box">Recent Work</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">Software Application</a></span><span><a href="#">Apps</a></span></p>
</div>
</div> -->
<div class="row">
<div class="col-md-4 animate-box" data-animate-effect="fadeInLeft">
<div class="project" style="background-image: url(images/Projects/FamilyTwist.png);">
<div class="desc">
<div class="con">
<h3><a href="https://apps.apple.com/us/app/family-twist/id1445999927?ls=1" target="_blank" >Family Twist</a></h3>
<span>iPhone App | Family Twist SAS</span>
<!-- <p class="icon">
<span><a href="#"><i class="icon-share3"></i></a></span>
<span><a href="#"><i class="icon-eye"></i> 100</a></span>
<span><a href="#"><i class="icon-heart"></i> 49</a></span>
</p> -->
</div>
</div>
</div>
</div>
<div class="col-md-4 animate-box" data-animate-effect="fadeInRight">
<div class="project" style="background-image: url(images/Projects/SnaptechSchoolApp.png);">
<div class="desc">
<div class="con">
<h3><a href="https://apps.apple.com/us/app/snaptech-school-app/id971055786?ls=1" target="_blank">Snaptech School App</a></h3>
<span>Universal App | Snaptech Digital</span>
<!-- <p class="icon">
<span><a href="#"><i class="icon-share3"></i></a></span>
<span><a href="#"><i class="icon-eye"></i> 100</a></span>
<span><a href="#"><i class="icon-heart"></i> 49</a></span>
</p> -->
</div>
</div>
</div>
</div>
<div class="col-md-4 animate-box" data-animate-effect="fadeInRight">
<div class="project" style="background-image: url(images/Projects/SevenEye.png);">
<div class="desc">
<div class="con">
<h3><a href="https://apps.apple.com/us/app/seven-eye/id445375780?ls=1" target="_blank">Seven Eye</a></h3>
<span>iPhone App | Seven Telematics Ltd.</span>
<!-- <p class="icon">
<span><a href="#"><i class="icon-share3"></i></a></span>
<span><a href="#"><i class="icon-eye"></i> 100</a></span>
<span><a href="#"><i class="icon-heart"></i> 49</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.jpg);">
<div class="desc">
<div class="con">
<h3><a href="work.html">Work 03</a></h3>
<span>Illustration</span>
<p class="icon">
<span><a href="#"><i class="icon-share3"></i></a></span>
<span><a href="#"><i class="icon-eye"></i> 100</a></span>
<span><a href="#"><i class="icon-heart"></i> 49</a></span>
</p>
</div>
</div>
</div>
</div>
<div class="col-md-6 animate-box" data-animate-effect="fadeInBottom">
<div class="project" style="background-image: url(images/img-4.jpg);">
<div class="desc">
<div class="con">
<h3><a href="work.html">Work 04</a></h3>
<span>Application</span>
<p class="icon">
<span><a href="#"><i class="icon-share3"></i></a></span>
<span><a href="#"><i class="icon-eye"></i> 100</a></span>
<span><a href="#"><i class="icon-heart"></i> 49</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-5.jpg);">
<div class="desc">
<div class="con">
<h3><a href="work.html">Work 05</a></h3>
<span>Graphic, Logo</span>
<p class="icon">
<span><a href="#"><i class="icon-share3"></i></a></span>
<span><a href="#"><i class="icon-eye"></i> 100</a></span>
<span><a href="#"><i class="icon-heart"></i> 49</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.jpg);">
<div class="desc">
<div class="con">
<h3><a href="work.html">Work 06</a></h3>
<span>Web Design</span>
<p class="icon">
<span><a href="#"><i class="icon-share3"></i></a></span>
<span><a href="#"><i class="icon-eye"></i> 100</a></span>
<span><a href="#"><i class="icon-heart"></i> 49</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">View All<i class="icon-reload"></i></a></p>
</div>
</div>
--> </div>
</section>
<section class="colorlib-education" data-section="certification">
<div class="colorlib-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">Certification</span>
<h2 class="colorlib-heading animate-box">PROFESSIONAL CERTIFICATION & TRAINING</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="certificationHeadingOne">
<h4 class="panel-title">
<a class="collapsed" data-toggle="collapse" data-parent="#accordion" href="#certificationCollapseOne" aria-expanded="false" aria-controls="certificationCollapseOne">Learning Functional Programming with Swift
</a>
</h4>
</div>
<div id="certificationCollapseOne" class="panel-collapse collapse" role="tabpanel" aria-labelledby="certificationHeadingOne">
<div class="panel-body">
<div class="row">
<div class="col-md-12">
<p>
<strong>Issuing Authority:</strong> LinkedIn</br>
<strong>Issued On:</strong> May 1, 2020 • No Expiration Date</br>
<strong>Credential ID:</strong> Aefh1XcSt1zDF8VcP4_dG0AZqKFz</br>
<a target="_blank" href="Certifications/CertificateOfCompletion_Learning Functional Programming with Swift.pdf">See credential</a>
</p>
</div>
</div>
</div>
</div>
</div>
<div class="panel panel-default">
<div class="panel-heading" role="tab" id="certificationHeadingTwo">
<h4 class="panel-title">
<a class="collapsed" data-toggle="collapse" data-parent="#accordion" href="#certificationCollapseTwo" aria-expanded="false" aria-controls="certificationCollapseTwo">Problem Solving (Basic) Certificate
</a>
</h4>
</div>
<div id="certificationCollapseTwo" class="panel-collapse collapse" role="tabpanel" aria-labelledby="certificationHeadingTwo">
<div class="panel-body">
<p>
<strong>Issuing Authority:</strong> HackerRank</br>
<strong>Issued On:</strong> April 21, 2020 • No Expiration Date</br>
<strong>Credential ID:</strong> 77977df43d88</br>
<a target="_blank" href="Certifications/Problem Solving (Basic) 77977df43d88.png">See credential</a>
</p>
</div>
</div>
</div>
<div class="panel panel-default">
<div class="panel-heading" role="tab" id="certificationHeadingThree">
<h4 class="panel-title">
<a class="collapsed" data-toggle="collapse" data-parent="#accordion" href="#certificationCollapseThree" aria-expanded="false" aria-controls="certificationCollapseThree">GitHub Actions First Look (2018)
</a>
</h4>
</div>
<div id="certificationCollapseThree" class="panel-collapse collapse" role="tabpanel" aria-labelledby="certificationHeadingThree">
<div class="panel-body">
<p>
<strong>Issuing Authority:</strong> LinkedIn</br>
<strong>Issued On:</strong> April 3, 2020 • No Expiration Date</br>
<strong>Credential ID:</strong> AflUOk9j7TFiutnRACjYmJj6Gltp</br>
<a target="_blank" href="Certifications/CertificateOfCompletion_Github Actions First Look 2018.pdf">See credential</a>
</p>
</div>
</div>
</div>
<div class="panel panel-default">
<div class="panel-heading" role="tab" id="certificationHeadingFour">
<h4 class="panel-title">
<a class="collapsed" data-toggle="collapse" data-parent="#accordion" href="#certificationCollapseFour" aria-expanded="false" aria-controls="certificationCollapseFour">Learning Git and GitHub
</a>
</h4>
</div>
<div id="certificationCollapseFour" class="panel-collapse collapse" role="tabpanel" aria-labelledby="certificationHeadingFour">
<div class="panel-body">
<p>
<strong>Issuing Authority:</strong> LinkedIn</br>
<strong>Issued On:</strong> April 2, 2020 • No Expiration Date</br>
<strong>Credential ID:</strong> ASYx11toIAhFXaWeB1G8lIouh78e</br>
<a target="_blank" href="Certifications/CertificateOfCompletion_Learning Git And Github.pdf">See credential</a>
</p>
</div>
</div>
</div>
<div class="panel panel-default">
<div class="panel-heading" role="tab" id="certificationHeadingFive">
<h4 class="panel-title">
<a class="collapsed" data-toggle="collapse" data-parent="#accordion" href="#certificationCollapseFive" aria-expanded="false" aria-controls="certificationCollapseFive">Swift 5 Essential Training
</a>
</h4>
</div>
<div id="certificationCollapseFive" class="panel-collapse collapse" role="tabpanel" aria-labelledby="certificationHeadingFive">
<div class="panel-body">
<p>
<strong>Issuing Authority:</strong> LinkedIn</br>
<strong>Issued On:</strong> April 2, 2020 • No Expiration Date</br>
<strong>Credential ID:</strong> AZuXI0Cbmhe8lnrvQ-VazLcG2agD</br>
<a target="_blank" href="Certifications/CertificateOfCompletion_Swift 5 Essential Training.pdf">See credential</a>
</p>
</div>
</div>
</div>
<div class="panel panel-default">
<div class="panel-heading" role="tab" id="certificationHeadingSeven">
<h4 class="panel-title">
<a class="collapsed" data-toggle="collapse" data-parent="#accordion" href="#certificationCollapseSeven" aria-expanded="false" aria-controls="certificationCollapseSeven">Unit Testing for iOS Developers
</a>
</h4>
</div>
<div id="certificationCollapseSeven" class="panel-collapse collapse" role="tabpanel" aria-labelledby="certificationHeadingSeven">
<div class="panel-body">
<p>
<strong>Issuing Authority:</strong> LinkedIn</br>
<strong>Issued On:</strong> March 26, 2020 • No Expiration Date</br>
<strong>Credential ID:</strong> AZMdlsXSFXp4nnzgAGOLlmBds3Uu</br>
<a target="_blank" href="Certifications/CertificateOfCompletion_Unit Testing For Ios Developers.pdf">See credential</a>
</p>
</div>
</div>
</div>
<div class="panel panel-default">
<div class="panel-heading" role="tab" id="certificationHeadingSix">
<h4 class="panel-title">
<a class="collapsed" data-toggle="collapse" data-parent="#accordion" href="#certificationCollapseSix" aria-expanded="false" aria-controls="certificationCollapseSix">Swift 4 Fundamentals
</a>
</h4>
</div>
<div id="certificationCollapseSix" class="panel-collapse collapse" role="tabpanel" aria-labelledby="certificationHeadingSix">
<div class="panel-body">
<p>
<strong>Issuing Authority:</strong> SoloLearn</br>
<strong>Issued On:</strong> March 23, 2020 • No Expiration Date</br>
<strong>Credential ID:</strong> 1075-17842079</br>
<a target="_blank" href="Certifications/SoloLearn-cert-1075-17842079.pdf">See credential</a>
</p>
</div>
</div>
</div>
<div class="panel panel-default">
<div class="panel-heading" role="tab" id="certificationHeadingEight">
<h4 class="panel-title">
<a class="collapsed" data-toggle="collapse" data-parent="#accordion" href="#certificationCollapseEight" aria-expanded="false" aria-controls="certificationCollapseEight">CutShort Certified Objective C - Basic
</a>
</h4>
</div>
<div id="certificationCollapseEight" class="panel-collapse collapse" role="tabpanel" aria-labelledby="certificationHeadingEight">
<div class="panel-body">
<p>
<strong>Issuing Authority:</strong> CutShort</br>
<strong>Issued On:</strong> February 15, 2020 • <strong>Valid till:</strong> February 15, 2021</br>
<strong>Credential ID:</strong> 3385</br>
<a target="_blank" href="Certifications/CutShort_ObjectiveC_3385.jpg">See credential</a>
</p>
</div>
</div>
</div>
<div class="panel panel-default">
<div class="panel-heading" role="tab" id="certificationHeadingNine">
<h4 class="panel-title">
<a class="collapsed" data-toggle="collapse" data-parent="#accordion" href="#certificationCollapseNine" aria-expanded="false" aria-controls="certificationCollapseNine">Introduction to Internet of Things and Cloud by Future Tech Lab
</a>
</h4>
</div>
<div id="certificationCollapseNine" class="panel-collapse collapse" role="tabpanel" aria-labelledby="certificationHeadingNine">
<div class="panel-body">
<p>
<strong>Issuing Authority:</strong> Udemy</br>
<strong>Issued On:</strong> January 16, 2020 • No Expiration Date</br>
<strong>Credential ID:</strong> UC-JB301AMM</br>
<a target="_blank" href="Certifications/UC-JB301AMM.pdf">See credential</a>
</p>
</div>
</div>
</div>
<div class="panel panel-default">
<div class="panel-heading" role="tab" id="certificationHeadingTen">
<h4 class="panel-title">
<a class="collapsed" data-toggle="collapse" data-parent="#accordion" href="#certificationCollapseTen" aria-expanded="false" aria-controls="certificationCollapseTen">Basic Swift 4 and iOS 11 - Free Preview by Grant Klimaytys
</a>
</h4>
</div>
<div id="certificationCollapseTen" class="panel-collapse collapse" role="tabpanel" aria-labelledby="certificationHeadingTen">
<div class="panel-body">
<p>
<strong>Issuing Authority:</strong> Udemy</br>
<strong>Issued On:</strong> December 28, 2019 • No Expiration Date</br>
<strong>Credential ID:</strong> UC-7JA5FEIB</br>
<a target="_blank" href="Certifications/UC-7JA5FEIB.pdf">See credential</a>
</p>
</div>
</div>
</div>
<div class="panel panel-default">
<div class="panel-heading" role="tab" id="certificationHeadingEleven">
<h4 class="panel-title">
<a class="collapsed" data-toggle="collapse" data-parent="#accordion" href="#certificationCollapseEleven" aria-expanded="false" aria-controls="certificationCollapseEleven">Swift 3 Basics - Learn to Code the Right Way for iOS 10 by Grant Klimaytys
</a>
</h4>
</div>
<div id="certificationCollapseEleven" class="panel-collapse collapse" role="tabpanel" aria-labelledby="certificationHeadingEleven">
<div class="panel-body">
<p>
<strong>Issuing Authority:</strong> Udemy</br>
<strong>Issued On:</strong> December 26, 2019 • No Expiration Date</br>
<strong>Credential ID:</strong> UC-M4N9BJS7</br>
<a target="_blank" href="Certifications/UC-M4N9BJS7.pdf">See credential</a>
</p>