-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
executable file
·2170 lines (1831 loc) · 99.2 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">
<head>
<!-- Meta UTF8 charset -->
<meta charset="utf-8"><!-- Viewport specification for mobile devices -->
<meta content="width=device-width, initial-scale=1.0" name="viewport">
<!-- Basic page information -->
<meta content="Rahul yadav" name="author">
<meta content="Personal Website" name="description">
<title>Rahul Yadav | Home</title><!-- Favicons -->
<link href="./img/Favicon.png" rel="shortcut icon">
<link href="./assets/apple-touch-icon-144-precomposed.png" rel=
"apple-touch-icon-precomposed" sizes="144x144">
<link href="./assets/apple-touch-icon-114-precomposed.png" rel=
"apple-touch-icon-precomposed" sizes="114x114">
<link href="./assets/apple-touch-icon-72-precomposed.png" rel=
"apple-touch-icon-precomposed" sizes="72x72">
<link href="./assets/apple-touch-icon-57-precomposed.png" rel=
"apple-touch-icon-precomposed">
<!-- HTML5 shim and Respond.js IE8 support of HTML5 elements and media queries -->
<!--[if lt IE 9]>
<script src="./js/html5shiv.js"></script>
<script src="./js/respond.min.js"></script>
<![endif]-->
<!-- CSS libraries and styles -->
<link href="./css/bootstrap.min.css" rel="stylesheet">
<link href="./css/font-awesome.min.css" rel="stylesheet">
<link href="./css/animate.min.css" rel="stylesheet">
<link href="./css/styles.css" rel="stylesheet">
<link href="./css/retina.css" rel="stylesheet">
<link href="./css/small.css" media="screen and (min-width: 768px)" rel=
"stylesheet">
<link href="./css/medium.css" media="screen and (min-width: 992px)" rel=
"stylesheet">
<link href=
"//maxcdn.bootstrapcdn.com/font-awesome/4.1.0/css/font-awesome.min.css"
rel="stylesheet"><!-- LESS generated customizable styles -->
<link href="./css/less.css" rel="stylesheet">
<link href="./css/blue.css" id="preview-color" rel="stylesheet">
<style type="text/css">
.cf-hidden { display: none; } .cf-invisible { visibility: hidden; }
</style>
<script type="text/javascript">
var _gaq = _gaq || [];
_gaq.push(['_setAccount', 'UA-51399070-1']);
_gaq.push(['_trackPageview']);
(function() {
var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
})();
</script>
</head>
<body class="loaded">
<!-- Hero -->
<div data-fixed-pattern="" id="hero" style="background-image:url('assets/overlay.jpg');">
<div class="overlay" style="background-image:url('assets/overlay.jpg');"></div>
<div class="container">
<div class="content padding-top padding-tq-bottom text-center">
<div class="hero-heading uppercase bounceIn animated"
data-group="1" style="opacity: 1;color:white;">
<span>Rahul Yadav</span>
<div class="tl"></div>
<div class="tr"></div>
<div class="br"></div>
<div class="bl"></div>
</div>
<div class="hero-handscript lowercase flipInY animated"
data-delay="300" data-group="1" style=
"opacity: 1;color:white;">
Web Designer & Web developer
</div>
<div class="hero-amp flipInY animated" data-delay="600"
data-group="1" style="opacity: 1;color:white;">
&
</div>
<div class="hero-subheading uppercase flipInY animated"
data-delay="900" data-group="1" style=
"opacity: 1;color:white;">
Also a Photographer.
</div>
<div class="cover-space hidden-sm hidden-xs"></div>
</div>
</div>
<div class="cover hidden-sm hidden-xs fadeInDown animated" data-delay=
"350" style="opacity: 1;">
<div class="one"></div>
<div class="two"></div><img alt="" height="186" src="./assets/Logo.png"
width="186"></div>
</div><!-- Navigation -->
<nav class="navbar fadeInDown animated" style="opacity: 1;">
<div class="container">
<div class="navbar-header">
<button class="navbar-toggle" data-target=".navbar-collapse"
data-toggle="collapse" type="button"><span class=
"sr-only">Toggle navigation</span> <span class=
"icon-bar"></span> <span class="icon-bar"></span> <span class=
"icon-bar"></span></button> <a class=
"navbar-brand fadeInDown animated" data-delay="300" href=
"#hero" style="opacity: 1;"><span>RY Rahul</span></a>
</div>
<div class="collapse navbar-collapse">
<ul class="nav navbar-nav">
<li class="active">
<a href="#about-me"><span>About me<span class=
"tl"></span><span class="br"></span></span></a>
</li>
<li>
<a href="#portfolio"><span>Portfolio<span class=
"tl"></span><span class="br"></span></span></a>
</li>
<li>
<a href="http://ryrahul.info/photography/"><span>
Photography<span class="tl"></span><span class=
"br"></span></span></a>
</li>
<li>
<a href="#contacts"><span>Contact<span class=
"tl"></span><span class="br"></span></span></a>
</li>
</ul>
</div>
</div>
</nav><!-- Who I am section -->
<section class="padding-bottom text-center" id="about-me">
<div class="section-heading bounceIn animated" style="opacity: 1;">
Who am I
<div class="tl"></div>
<div class="tr"></div>
<div class="br"></div>
<div class="bl"></div>
</div>
</section>
<div class="container">
<div class="row">
<div class="col-lg-8 col-md-8 col-sm-8 padding-minus-bottom">
<p data-animate="flipInY" data-delay="300*index" data-group="1"
style="opacity: 0;">Hi, I am Rahul Yadav, chief business development officer at
<strong> Yellow Messenger</strong> . I take care of all patnerships, sales & business development at Yellow
<strong></strong></p>
<p data-animate="flipInY" data-delay="300*index" data-group="1"
style="opacity: 0;">I love playing Basketball, Photography, Making crazy videos, watching beautiful
pieces of art, swimming, movie hangouts followed by amazing
food. I don't mind spending a day discussing various things
ranging from Tech to politics to Cartoons. Oh, forgot to
mention, love to talk and interact with people .</p>
</div>
<div class="col-lg-4 col-md-4 col-sm-4 padding-minus-bottom">
<ul class="no-style">
<li data-animate="flipInY" data-delay="300*index"
data-group="1" style="opacity: 0;">
<strong>Birthdate:</strong> 11/November/1993</li>
<li data-animate="flipInY" data-delay="300*index"
data-group="1" style="opacity: 0;">
<strong>Phone:</strong> <a href=
"callto://ryp.rahulyadav">Click Here</a>
</li>
<li data-animate="flipInY" data-delay="300*index"
data-group="1" style="opacity: 0;">
<strong>E-mail:</strong>
[email protected]<script type="text/javascript">
/* <![CDATA[ */
(function(){try{var s,a,i,j,r,c,l,b=document.getElementsByTagName("script");l=b[b.length-1].previousSibling;a=l.getAttribute('data-cfemail');if(a){s='';r=parseInt(a.substr(0,2),16);for(j=2;a.length-j;j+=2){c=parseInt(a.substr(j,2),16)^r;s+=String.fromCharCode(c);}s=document.createTextNode(s);l.parentNode.replaceChild(s,l);}}catch(e){}})();
/* ]]> */
</script>
</li>
<li data-animate="flipInY" data-delay="300*index"
data-group="1" style="opacity: 0;">
<strong>Address:</strong> Sap Starup studeio,
1st Floor, Bangalore</li>
</ul><a class="button button-icon fa fa-facebook" data-animate=
"fadeInUp" data-delay="300*index" data-group="1" href=
"https://www.facebook.com/ryrahul099" style=
"font-style: italic; opacity: 0; padding-top: 10px"></a>
<a class="button button-icon fa fa-twitter" data-animate=
"fadeInUp" data-delay="300*index" data-group="1" href=
"https://twitter.com/ryprahul" style=
"font-style: italic; opacity: 0; padding-top: 10px"></a>
<a class="button button-icon fa fa-linkedin" data-animate=
"fadeInUp" data-delay="300*index" data-group="1" href=
"https://www.linkedin.com/in/ryrahul/" style=
"font-style: italic; opacity: 0; padding-top: 10px"></a>
</div>
</div>
</div><!-- My skills section -->
<section class="padding-bottom text-center">
<div class="section-heading" data-animate="bounceIn" style=
"opacity: 0;">
My skills
<div class="tl"></div>
<div class="tr"></div>
<div class="br"></div>
<div class="bl"></div>
</div>
</section>
<div class="container">
<div class="row">
<div class="col-lg-4 col-md-4 col-sm-4 padding-minus-bottom">
<div class="sub-heading" data-animate="fadeInRight" data-group=
"1" style="opacity: 0;">
Graphic & Design skills
</div><label data-animate="fadeInRight" data-delay="300"
data-group="1" style="opacity: 0;">HTML,CSS</label>
<div class="skill-bar compact" data-animate="fadeInRight"
data-animate-callback="animate-skill" data-delay="600"
data-group="1" data-value="99%" style="opacity: 0;">
<div class="bar">
<div class="fill">
<div class="value">
0%
</div>
</div>
</div>
</div><label data-animate="fadeInRight" data-delay="300"
data-group="1" style="opacity: 0;">Photoshop</label>
<div class="skill-bar compact" data-animate="fadeInRight"
data-animate-callback="animate-skill" data-delay="600"
data-group="1" data-value="90%" style="opacity: 0;">
<div class="bar">
<div class="fill">
<div class="value">
0%
</div>
</div>
</div>
</div><label data-animate="fadeInRight" data-delay="900"
data-group="1" style="opacity: 0;">Illustrator</label>
<div class="skill-bar compact" data-animate="fadeInRight"
data-animate-callback="animate-skill" data-delay="1200"
data-group="1" data-value="55%" style="opacity: 0;">
<div class="bar">
<div class="fill">
<div class="value">
0%
</div>
</div>
</div>
</div><label data-animate="fadeInRight" data-delay="1500"
data-group="1" style="opacity: 0;">Fireworks</label>
<div class="skill-bar compact" data-animate="fadeInRight"
data-animate-callback="animate-skill" data-delay="1800"
data-group="1" data-value="55%" style="opacity: 0;">
<div class="bar">
<div class="fill">
<div class="value">
0%
</div>
</div>
</div>
</div><label data-animate="fadeInRight" data-delay="900"
data-group="1" style="opacity: 0;">AutoCAD</label>
<div class="skill-bar compact" data-animate="fadeInRight"
data-animate-callback="animate-skill" data-delay="1200"
data-group="1" data-value="65%" style="opacity: 0;">
<div class="bar">
<div class="fill">
<div class="value">
0%
</div>
</div>
</div>
</div><label data-animate="fadeInRight" data-delay="1500"
data-group="1" style="opacity: 0;">Adobe Aftereffects</label>
<div class="skill-bar compact" data-animate="fadeInRight"
data-animate-callback="animate-skill" data-delay="1800"
data-group="1" data-value="80%" style="opacity: 0;">
<div class="bar">
<div class="fill">
<div class="value">
0%
</div>
</div>
</div>
</div>
</div>
<div class="col-lg-4 col-md-4 col-sm-4 padding-minus-bottom">
<div class="sub-heading" data-animate="fadeInRight" data-group=
"1" style="opacity: 0;">
Language skills
</div><label data-animate="fadeInRight" data-delay="300"
data-group="1" style="opacity: 0;">C</label>
<div class="skill-bar compact" data-animate="fadeInRight"
data-animate-callback="animate-skill" data-delay="600"
data-group="1" data-value="95%" style="opacity: 0;">
<div class="bar">
<div class="fill">
<div class="value">
0%
</div>
</div>
</div>
</div><label data-animate="fadeInRight" data-delay="300"
data-group="1" style="opacity: 0;">C++</label>
<div class="skill-bar compact" data-animate="fadeInRight"
data-animate-callback="animate-skill" data-delay="600"
data-group="1" data-value="95%" style="opacity: 0;">
<div class="bar">
<div class="fill">
<div class="value">
0%
</div>
</div>
</div>
</div><label data-animate="fadeInRight" data-delay="300"
data-group="1" style="opacity: 0;">Python</label>
<div class="skill-bar compact" data-animate="fadeInRight"
data-animate-callback="animate-skill" data-delay="600"
data-group="1" data-value="90%" style="opacity: 0;">
<div class="bar">
<div class="fill">
<div class="value">
0%
</div>
</div>
</div>
</div><label data-animate="fadeInRight" data-delay="300"
data-group="1" style="opacity: 0;">JavaScript</label>
<div class="skill-bar compact" data-animate="fadeInRight"
data-animate-callback="animate-skill" data-delay="600"
data-group="1" data-value="95%" style="opacity: 0;">
<div class="bar">
<div class="fill">
<div class="value">
0%
</div>
</div>
</div>
</div><label data-animate="fadeInRight" data-delay="300"
data-group="1" style="opacity: 0;">PHP</label>
<div class="skill-bar compact" data-animate="fadeInRight"
data-animate-callback="animate-skill" data-delay="600"
data-group="1" data-value="65%" style="opacity: 0;">
<div class="bar">
<div class="fill">
<div class="value">
0%
</div>
</div>
</div>
</div><label data-animate="fadeInRight" data-delay="300"
data-group="1" style="opacity: 0;">HTML&Css</label>
<div class="skill-bar compact" data-animate="fadeInRight"
data-animate-callback="animate-skill" data-delay="600"
data-group="1" data-value="85%" style="opacity: 0;">
<div class="bar">
<div class="fill">
<div class="value">
0%
</div>
</div>
</div>
</div><label data-animate="fadeInRight" data-delay="300"
data-group="1" style="opacity: 0;">Java</label>
<div class="skill-bar compact" data-animate="fadeInRight"
data-animate-callback="animate-skill" data-delay="600"
data-group="1" data-value="65%" style="opacity: 0;">
<div class="bar">
<div class="fill">
<div class="value">
<!-- 0%
</div>
</div>
</div>
</div> --><!-- <label data-animate="fadeInRight" data-delay="300"
data-group="1" style="opacity: 0;">Objective C</label>
<div class="skill-bar compact" data-animate="fadeInRight"
data-animate-callback="animate-skill" data-delay="600"
data-group="1" data-value="65%" style="opacity: 0;">
<div class="bar">
<div class="fill">
<div class="value">
0%
</div>
</div>
</div>
</div><label data-animate="fadeInRight" data-delay="300"
data-group="1" style="opacity: 0;">C#</label>
<div class="skill-bar compact" data-animate="fadeInRight"
data-animate-callback="animate-skill" data-delay="600"
data-group="1" data-value="75%" style="opacity: 0;">
<div class="bar">
<div class="fill">
<div class="value">
--> 0%
</div>
</div>
</div>
</div>
</div>
<div class="col-lg-4 col-md-4 col-sm-4 padding-minus-bottom">
<div class="sub-heading" data-animate="fadeInRight" data-group=
"1" style="opacity: 0;">
Frameworks
</div>
<ul class="list">
<li data-animate="fadeInRight" data-delay="300*index"
data-group="2" style="opacity: 0;"><span class=
"bullet"></span>jQuery</li>
<li data-animate="fadeInRight" data-delay="300*index"
data-group="2" style="opacity: 0;"><span class=
"bullet"></span>Flask Python</li>
<li data-animate="fadeInRight" data-delay="300*index"
data-group="2" style="opacity: 0;"><span class=
"bullet"></span>Django Python</li>
<li data-animate="fadeInRight" data-delay="300*index"
data-group="2" style="opacity: 0;"><span class=
"bullet"></span>Bootstrap</li>
<!--
<li data-animate="fadeInRight" data-delay="300*index"
data-group="2" style="opacity: 0;"><span class=
"bullet"></span>Code Igniter PHP</li>
<li data-animate="fadeInRight" data-delay="300*index"
data-group="2" style="opacity: 0;"><span class=
"bullet"></span>Ionic</li>
<li data-animate="fadeInRight" data-delay="300*index"
data-group="2" style="opacity: 0;"><span class=
"bullet"></span>Ruby on Rails</li> -->
<li data-animate="fadeInRight" data-delay="300*index"
data-group="2" style="opacity: 0;"><span class=
"bullet"></span>Angular JS</li>
<li data-animate="fadeInRight" data-delay="300*index"
data-group="2" style="opacity: 0;"><span class=
"bullet"></span>Angular Dart</li>
<!--
<li data-animate="fadeInRight" data-delay="300*index"
data-group="2" style="opacity: 0;"><span class=
"bullet"></span>Apache Cordova</li>
<li data-animate="fadeInRight" data-delay="300*index"
data-group="2" style="opacity: 0;"><span class=
"bullet"></span>Meteor JS</li>
<li data-animate="fadeInRight" data-delay="300*index"
data-group="2" style="opacity: 0;"><span class=
"bullet"></span>Backbone JS</li>
<li data-animate="fadeInRight" data-delay="300*index"
data-group="2" style="opacity: 0;"><span class=
"bullet"></span>Chocolate Chip</li>
<li data-animate="fadeInRight" data-delay="300*index"
data-group="2" style="opacity: 0;"><span class=
"bullet"></span></li>
<li data-animate="fadeInRight" data-delay="300*index"
data-group="2" style="opacity: 0;"><span class=
"bullet"></span>Pyramid</li>
<li data-animate="fadeInRight" data-delay="300*index"
data-group="2" style="opacity: 0;"><span class=
"bullet"></span>Bottle</li>
<li data-animate="fadeInRight" data-delay="300*index"
data-group="2" style="opacity: 0;"><span class=
"bullet"></span>Qt</li> -->
</ul>
</div>
</div>
</div><!-- Download my CV - parallax section -->
<!-- <section class="padding-tq-top padding-minus-tq-bottom text-center"
data-parallax="./assets/clouds.jpg" style=
"background-image: url(./assets/clouds.jpg); background-repeat: repeat; background-attachment: fixed; background-size: 1440px 960px; background-position: 0px -256px;">
<div class="overlay"></div>
<div class="content">
<div class="container">
<a class="button button-big" data-animate="flipInY" data-group=
"1" href="cv.pdf" style=
"opacity: 0; opacity: 1; border-color: #f2635F; color: #f2635F;"
target="_blank"><span class="icon fa fa-download" style=
"font-style: italic"></span>Download cv</a>
<div class="footer-label uppercase" data-animate="fadeInUp"
data-group="1" style="opacity: 0;">
143.00kb | cv.pdf
</div>
</div> -->
</div>
</section><!-- Work and education section -->
<section class="padding text-center">
<div class="section-heading" data-animate="bounceIn" style=
"opacity: 0;">
Work & education
<div class="tl"></div>
<div class="tr"></div>
<div class="br"></div>
<div class="bl"></div>
</div>
</section>
<div class="container">
<div class="row">
<div class="col-lg-6 col-md-6 col-sm-6 padding-minus-bottom">
<ul class="history">
<li>
<div class="heading">
<div class="title" data-animate="fadeInRight"
data-group="2" style="opacity: 0;">
Web designing and photography Intern
</div>
<div class="icon fa fa-briefcase" data-animate=
"bounceIn" data-group="2" style=
"font-style: italic; opacity: 0"></div>
<div class="datetime" data-animate="fadeInUp"
data-delay="300" data-group="2" style=
"opacity: 0;">
May 2015 – August 2015
</div>
<div class="aff uppercase" data-animate="fadeInUp"
data-delay="600" data-group="2" style=
"opacity: 0;">
FashionTv Amsterdam
</div>
</div>
<p data-animate="flipInY" data-delay="300*index+600"
data-group="1" style="opacity: 0;">After Working with FashionTv I understood the meaning of design and how a creative lead works in an orginization, and improved all my design and photography skills.</p>
</li>
<li>
<div class="heading">
<div class="title" data-animate="fadeInRight"
data-group="2" style="opacity: 0;">
WSDC
(web and software development cell )
</div>
<div class="icon fa fa-briefcase" data-animate=
"bounceIn" data-group="2" style=
"font-style: italic; opacity: 0"></div>
<div class="datetime" data-animate="fadeInUp"
data-delay="300" data-group="2" style=
"opacity: 0;">
May 2013 – Present
</div>
<div class="aff uppercase" data-animate="fadeInUp"
data-delay="600" data-group="2" style=
"opacity: 0;">
WSDC
</div>
</div>
<p data-animate="flipInY" data-delay="300*index+600"
data-group="1" style="opacity: 0;">Responsible for building internal tools and products to benchmark developer performance and provide insights of project progress to the managers. I've worked on open source bugzilla integrations and distributed RPC systems along with GlusterFS.</p>
</li>
<li>
<div class="heading">
<div class="title" data-animate="fadeInRight"
data-group="2" style="opacity: 0;">
Biotechnology Intern
</div>
<div class="icon fa fa-briefcase" data-animate=
"bounceIn" data-group="2" style=
"font-style: italic; opacity: 0"></div>
<div class="datetime" data-animate="fadeInUp"
data-delay="300" data-group="2" style=
"opacity: 0;">
May 2014 – August 2014
</div>
<div class="aff uppercase" data-animate="fadeInUp"
data-delay="600" data-group="2" style=
"opacity: 0;">
Srl labs, Fortis Hospital
</div>
</div>
<p data-animate="flipInY" data-delay="300*index+600"
data-group="1" style="opacity: 0;">Third time continuous winner of the Microsoft Code.Fun.Do at NIT-Warangal campus and selected for the National Finals of the Microsoft Academic Accelerator Program.</p>
</li>
<li>
<div class="heading">
<div class="title" data-animate="fadeInRight"
data-group="2" style="opacity: 0;">
TNP, NIT-Warangal
</div>
<div class="icon fa fa-briefcase" data-animate=
"bounceIn" data-group="2" style=
"font-style: italic; opacity: 0"></div>
<div class="datetime" data-animate="fadeInUp"
data-delay="300" data-group="2" style=
"opacity: 0;">
July 2015 – Present
</div>
<div class="aff uppercase" data-animate="fadeInUp"
data-delay="600" data-group="2" style=
"opacity: 0;">
Traaning and Placement coordinator
</div>
</div>
<p data-animate="flipInY" data-delay="300*index+600"
data-group="1" style="opacity: 0;">An intern with the
IT, Security and Audit teams at Kuwait Oil Company, to
understand more about indepth details regarding usage
of computers and thorough policies and security
measures implemented in an oil company.</p>
</li>
<li>
<div class="heading">
<div class="title" data-animate="fadeInRight"
data-group="2" style="opacity: 0;">
PGC, Nit-Warangal
</div>
<div class="icon fa fa-briefcase" data-animate=
"bounceIn" data-group="2" style=
"font-style: italic; opacity: 0"></div>
<div class="datetime" data-animate="fadeInUp"
data-delay="300" data-group="2" style=
"opacity: 0;">
May 2015 – Present
</div>
<div class="aff uppercase" data-animate="fadeInUp"
data-delay="600" data-group="2" style=
"opacity: 0;">
General Secretary, Photography club
</div>
</div>
<p data-animate="flipInY" data-delay="300*index+600"
data-group="1" style="opacity: 0;">As a General Secretary of Photography club, i created a new patfom for all the students who were a part of club Motivated them and lead a team of 80 students And came out with four big projects and gave various lightning talk on photography and chagend the wasy of working in the club. </p>
</li>
<li>
<div class="heading">
<div class="title" data-animate="fadeInRight"
data-group="2" style="opacity: 0;">
Contributor and Committer
</div>
<div class="icon fa fa-briefcase" data-animate=
"bounceIn" data-group="2" style=
"font-style: italic; opacity: 0"></div>
<div class="datetime" data-animate="fadeInUp"
data-delay="300" data-group="2" style=
"opacity: 0;">
March 2013 – Present
</div>
<div class="aff uppercase" data-animate="fadeInUp"
data-delay="600" data-group="2" style=
"opacity: 0;">
Mozilla, Mozilla India
</div>
</div>
<p data-animate="flipInY" data-delay="300*index+600"
data-group="1" style="opacity: 0;">As a person who
believes in a free and an open internet for all,
Mozilla was the step taken to contribute towards this
aim along with a lot of other dedicated mozillians who
share the same aim. As a contributor to Mozilla, I've
contributed to various projects like Firefox, Mozilla
Websites, Firefox OS, Support, Mentorship and
Evangelism.</p>
</li>
<!-- <li>
<div class="heading">
<div class="title" data-animate="fadeInRight"
data-group="2" style="opacity: 0;">
Contributor
</div>
<div class="icon fa fa-briefcase" data-animate=
"bounceIn" data-group="2" style=
"font-style: italic; opacity: 0"></div>
<div class="datetime" data-animate="fadeInUp"
data-delay="300" data-group="2" style=
"opacity: 0;">
October 2013 – January 2014
</div>
<div class="aff uppercase" data-animate="fadeInUp"
data-delay="600" data-group="2" style=
"opacity: 0;padding-left: 35px;">
Ubuntu
</div>
</div>
<p data-animate="flipInY" data-delay="300*index+600"
data-group="1" style="opacity: 0;">Contributed to the
Ubuntu, Ubuntu Touch.</p>
</li>
<li>
<div class="heading">
<div class="title" data-animate="fadeInRight"
data-group="2" style="opacity: 0;">
Contributor
</div>
<div class="icon fa fa-briefcase" data-animate=
"bounceIn" data-group="2" style=
"font-style: italic; opacity: 0"></div>
<div class="datetime" data-animate="fadeInUp"
data-delay="300" data-group="2" style=
"opacity: 0;">
July 2013 – September 2013
</div>
<div class="aff uppercase" data-animate="fadeInUp"
data-delay="600" data-group="2" style=
"opacity: 0;padding-left: 25px;">
Fedora Project
</div>
</div>
<p data-animate="flipInY" data-delay="300*index+600"
data-group="1" style="opacity: 0;">Contributed to the
Fedora project.</p>
</li>
<li>
<div class="heading">
<div class="title" data-animate="fadeInRight"
data-group="2" style="opacity: 0;">
Software Engineering Intern
</div>
<div class="icon fa fa-briefcase" data-animate=
"bounceIn" data-group="2" style=
"font-style: italic; opacity: 0"></div>
<div class="datetime" data-animate="fadeInUp"
data-delay="300" data-group="2" style=
"opacity: 0;">
May 2013 – July 2013
</div>
<div class="aff uppercase" data-animate="fadeInUp"
data-delay="600" data-group="2" style=
"opacity: 0;">
Microsoft
</div>
</div>
<p data-animate="flipInY" data-delay="300*index+600"
data-group="1" style="opacity: 0;">As a part of the
first cohort of Academic Accelerator and Microsoft
India Development Center, I've interned working with
Windows 8, Microsoft Kinect and Azure</p>
</li>
<li>
<div class="heading">
<div class="title" data-animate="fadeInRight"
data-group="2" style="opacity: 0;">
Web Development Intern
</div>
<div class="icon fa fa-briefcase" data-animate=
"bounceIn" data-group="2" style=
"font-style: italic; opacity: 0"></div>
<div class="datetime" data-animate="fadeInUp"
data-delay="300" data-group="2" style=
"opacity: 0;">
January 2013 – July 2013
</div>
<div class="aff uppercase" data-animate="fadeInUp"
data-delay="600" data-group="2" style=
"opacity: 1; padding-left: 15px;">
National Innovation Foundation ,<br>
The Honeybee Network
</div>
</div>
<p data-animate="flipInY" data-delay="300*index+600"
data-group="1" style="opacity: 0;">Developed a portal
for tracking of grass root innovations in collaboration
with National Innovation Foundation, Govt.of.India and
The HoneyBee Network, Indian Institute of Management,
Ahmedabad.</p>
</li>
<li>
<div class="heading">
<div class="title" data-animate="fadeInRight"
data-group="2" style="opacity: 0;">
Web Development and Design
</div>
<div class="icon fa fa-briefcase" data-animate=
"bounceIn" data-group="2" style=
"font-style: italic; opacity: 0"></div>
<div class="datetime" data-animate="fadeInUp"
data-delay="300" data-group="2" style=
"opacity: 0;">
December 2012 – April 2013
</div>
<div class="aff uppercase" data-animate="fadeInUp"
data-delay="600" data-group="2" style=
"opacity: 1; padding-left: 25px;">
Clouds Green
</div>
</div>
<p data-animate="flipInY" data-delay="300*index+600"
data-group="1" style="opacity: 0;">Worked as a web
developer and UX Desginer for CloudsGreen a startup
dedicated to keeping track of one's bills on the
clouds, reduce paper and never lose track of
billings.</p>-->
</li>
</ul>
</div>
<div class="col-lg-6 col-md-6 col-sm-6 padding-minus-bottom">
<ul class="history">
<li>
<div class="heading">
<div class="title" data-animate="fadeInRight"
data-delay="900" data-group="2" style=
"opacity: 0;">
GEAR SYSTEMS, Product Designer
</div>
<div class="icon fa fa-book" data-animate=
"bounceIn" data-delay="900" data-group="2" style=
"font-style: italic; opacity: 0"></div>
<div class="datetime" data-animate="fadeInUp"
data-delay="1200" data-group="2" style=
"opacity: 0;">
June 2014 – June 2016
</div>
<div class="aff uppercase" data-animate="fadeInUp"
data-delay="1500" data-group="2" style=
"opacity: 0;">
Epics Gear syatems started by IEEE
</div>
</div>
<p data-animate="flipInY" data-delay="300*index+1500"
data-group="1" style="opacity: 0;">We build a cross platform applications that work on all devices from the highest end phones and tablets to the cheapest phones and the web to make reporting easier and more noticeable to those in charge. At the same time, you as the general public can see the progress thats happening in and around you and how the elected representatives are actually solving your problems.</p>
</li>
<li>
<div class="heading">
<div class="title" data-animate="fadeInRight"
data-delay="900" data-group="2" style=
"opacity: 0;">
Biotechnology
</div>
<div class="icon fa fa-book" data-animate=
"bounceIn" data-delay="900" data-group="2" style=
"font-style: italic; opacity: 0"></div>
<div class="datetime" data-animate="fadeInUp"
data-delay="1200" data-group="2" style=
"opacity: 0;">
July 2012 – May 2016
</div>
<div class="aff uppercase" data-animate="fadeInUp"
data-delay="1500" data-group="2" style=
"opacity: 0;">
Bachelors degree,<br>
National Institute of Technology - Warangal
</div>
</div>
<p data-animate="flipInY" data-delay="300*index+1500"
data-group="1" style="opacity: 0;">Undergraduate degree
in Biotechnology, working on various
projects mainly targeted at Cancer stem cells,
Bioinformatics, Drug Designing.</p>
</li>
<li>
<div class="heading">
<div class="title" data-animate="fadeInRight"
data-delay="900" data-group="2" style=
"opacity: 0;">
Grade 12 Secondary School CBSE
</div>
<div class="icon fa fa-book" data-animate=
"bounceIn" data-delay="900" data-group="2" style=
"font-style: italic; opacity: 0"></div>
<div class="datetime" data-animate="fadeInUp"
data-delay="1200" data-group="2" style=
"opacity: 0;">
July 2011 – March 2012
</div>
<div class="aff uppercase" data-animate="fadeInUp"
data-delay="1500" data-group="2" style=
"opacity: 0;">
Kulachi Hans Raj Model School - New Delhi
</div>
</div>
<p data-animate="flipInY" data-delay="300*index+1500"
data-group="1" style="opacity: 0;">Grade 12, Central
Board of Secondary Education</p>
</li>
<li>
<div class="heading">
<div class="title" data-animate="fadeInRight"
data-delay="900"
data-group="2" style="opacity: 0;">Grade 10, Central
Board of Secondary Education</p>
</div>