-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
953 lines (778 loc) · 48 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
<!DOCTYPE html>
<html lang="en">
<head>
<!-- Global site tag (gtag.js) - Google Analytics -->
<script async src="https://www.googletagmanager.com/gtag/js?id=UA-162866202-1"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag() { dataLayer.push(arguments); }
gtag('js', new Date());
gtag('config', 'UA-162866202-1');
</script>
<script type="text/javascript"
src="https://platform-api.sharethis.com/js/sharethis.js#property=5ec59888a356d90013c4b1e8&product=inline-share-buttons"
async="async"></script>
<title> Abhishek Kashyap </title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta charset="utf-8">
<meta name="description"
content="Online portfolio showcasing work-experience, education, skills and achievements of Abhishek Kashyap, an aspiring product manager">
<meta name="author" content="Abhishek Kashyap">
<meta name="keywords"
content="resume, product management, development, testing, marketing, analytics, mentor, instructor,Portfolio,business intelligence,data analysis">
<meta property="og:title" content="Abhishek Kashyap's Portfolio">
<meta property="og:type" content="website">
<!-- <meta property=”og:url” content=”https://abhi3566.github.io” /> -->
<meta property="og:description"
content="Online portfolio showcasing work-experience, education, skills and achievements of Abhishek Kashyap, an aspiring product manager">
<meta property="og:image" content="https://abhi3566.github.io/assets/media.png">
<meta property="og:locale" content="en_IN" />
<link rel="stylesheet" href="./style.css">
<link rel="icon" type="image/png" href="./assets/WebLogo.png">
<!-- <script data-ad-client="ca-pub-6266944681296820" async src="https://pagead2.googlesyndication.com/pagead/js/adsbygoogle.js"></script> -->
</head>
<!-- This website is made by Abhishek Kashyap -->
<body>
<div class="container">
<header class="col-full">
<div class="backdrop"></div>
<div class="backdrop filtered"></div>
<div class="title">
<div class="laptop">
<div class="monitor">
<div class="camera"></div>
<div class="mic"></div>
<div class="screen-bg">
<div class="window">
<div class="circle red"></div>
<div class="circle yellow"></div>
<div class="circle green"></div>
<div class="area">
<span class="code short key"></span>
<span class="code name"></span>
<span class="code short"></span><br />
<span class="code short key medium"></span>
<span class="code val"></span><br />
<span class="code offset"></span>
<span class="code val long"></span><br />
<span class="code offset key short"></span>
<span class="code semilong"></span>
<span class="code name"></span>
<span class="code name semilong"></span><br />
<span class="code offset double key medium"></span>
<span class="code name"></span><br />
<span class="code offset long"></span>
<span class="code val short"></span>
<span class="code name medium"></span><br /><br />
<span class="code val comment long"></span>
<span class="code val comment"></span><br />
<span class="code name medium"></span>
<span class="code"></span>
<span class="code key short"></span><br />
<span class="code val"></span>
<span class="code name long"></span><br />
<span class="code key"></span>
<span class="code short"></span>
<span class="code name semilong"></span><br />
<span class="code short key offset"></span>
<span class="code val"></span><br />
<span class="code medium"></span>
<span class="code long name"></span>
<span class="code val short"></span>
<span class="code key medium"></span>
<span class="code name"></span><br />
<span class="code semilong"></span>
<span class="code val"></span>
<span class="code name long"></span><br />
<span class="code name long offset"></span>
<span class="code val"></span><br />
<span class="code medium offset double"></span>
<span class="code name long"></span><br />
<span class="code key short offset"></span>
<span class="code name"></span>
<span class="code val semilong"></span><br />
<span class="code name"></span>
<span class="code medium"></span>
<span class="code long val"></span>
<span class="code short"></span><br />
</div>
</div>
</div>
</div>
<div class="base">
<div class="pad"></div>
</div>
</div>
<div class="separator"></div>
<h1>Abhishek Kashyap
<small>Full Stack Web Development | UI/UX | Digital Marketing</small>
</h1>
</div>
<a href="#introduction" class="scroll-down"></a>
<div class="nav-icon">
<span></span>
<span></span>
<span></span>
<span></span>
</div>
<nav id="navbar">
<ul>
<li id="introductionLink"><a href="#introduction">Introduction 🙋♂️</a></li>
<li id="experienceLink"><a href="#experience">Experience 💼</a></li>
<li id="educationLink"><a href="#education">Education 📚</a></li>
<li id="projectsLink"><a href="#projects">Projects 💻</a></li>
<li id="ExtraLink"><a href="#Extra">Achievements & Activities 🥇</a></li>
<li id="communityLink"><a href="#community">Contact Info 📧</a></li>
<li id="resumeLink"><a href="assets/Abhishek_Resume.pdf" href="{{.}}" target="_blank"
title="Résumé English (UK)">View Résumé 📄</a></li>
</ul>
</nav>
<nav2 id="navbar2" class="shown">
<ul>
<li id="ConsoleLink" style=" margin-right: 40% ;"><a href="http://www.theletstream.com/">> $ cd
/home/
<span id="logo__cursor" style="
width: 10px;
height: 1rem ;
background: #20C20E;
margin-left: 5px;
border-radius: 1px;
display: inline-block;" !important> </span>
</a></li>
<li id="resumelink"><a href="assets/Abhishek_Resume.pdf" href="{{.}}" target="_blank"
title="Résumé English (UK)">View
Résumé (PDF) 📄</a></li>
</ul>
</nav2>
</header>
<section class="col-centered container" id="introduction">
<div class="col-full">
<div class="flex-container">
<div class="flex-media-obj">
<img src="./assets/P.jpg" class="profile-picture">
</div>
<div class="flex-fill">
<h1>Abhishek Kashyap
<small><svg xmlns="http://www.w3.org/2000/svg" width="18" height="18" viewBox="0 0 24 24"
fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round"
stroke-linejoin="round" style="margin-right: 8px;">
<path d="M21 10c0 7-9 13-9 13s-9-6-9-13a9 9 0 0 1 18 0z"></path>
<circle cx="12" cy="10" r="3"></circle>
</svg>India</small>
</h1>
<a href="mailto:[email protected]?Subject=Regarding Online Resume" target="_blank"
class="social-icon social-icongmail" title="Email"><svg xmlns="http://www.w3.org/2000/svg"
width="32" height="32" viewBox="0 0 24 24" fill="none" stroke="currentColor"
stroke-width="2" stroke-linecap="round" stroke-linejoin="round">
<path d="M4 4h16c1.1 0 2 .9 2 2v12c0 1.1-.9 2-2 2H4c-1.1 0-2-.9-2-2V6c0-1.1.9-2 2-2z">
</path>
<polyline points="22,6 12,13 2,6"></polyline>
</svg></a>
<a href="https://www.linkedin.com/in/abhishek-kashyap-dev/" target="_blank"
class="social-icon social-iconlinkedin" title="LinkedIn"><svg
xmlns="http://www.w3.org/2000/svg" width="32" height="32" viewBox="0 0 24 24"
fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round"
stroke-linejoin="round">
<path
d="M16 8a6 6 0 0 1 6 6v7h-4v-7a2 2 0 0 0-2-2 2 2 0 0 0-2 2v7h-4v-7a6 6 0 0 1 6-6z">
</path>
<rect x="2" y="9" width="4" height="12"></rect>
<circle cx="4" cy="4" r="2"></circle>
</svg></a>
<a href="https://github.com/abhi3566" target="_blank" class="social-icon social-icongithub"
title="GitHub"><svg xmlns="http://www.w3.org/2000/svg" width="32" height="32"
viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2"
stroke-linecap="round" stroke-linejoin="round">
<path
d="M9 19c-5 1.5-5-2.5-7-3m14 6v-3.87a3.37 3.37 0 0 0-.94-2.61c3.14-.35 6.44-1.54 6.44-7A5.44 5.44 0 0 0 20 4.77 5.07 5.07 0 0 0 19.91 1S18.73.65 16 2.48a13.38 13.38 0 0 0-7 0C6.27.65 5.09 1 5.09 1A5.07 5.07 0 0 0 5 4.77a5.44 5.44 0 0 0-1.5 3.78c0 5.42 3.3 6.61 6.44 7A3.37 3.37 0 0 0 9 18.13V22">
</path>
</svg></a>
<a href="https://twitter.com/abhi3566" target="_blank" class="social-icon social-icontwitter"
title="Twitter"><svg xmlns="http://www.w3.org/2000/svg" width="32" height="32"
viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2"
stroke-linecap="round" stroke-linejoin="round">
<path
d="M23 3a10.9 10.9 0 0 1-3.14 1.53 4.48 4.48 0 0 0-7.86 3v1A10.66 10.66 0 0 1 3 4s-4 9 5 13a11.64 11.64 0 0 1-7 2c9 5 20 0 20-11.5a4.5 4.5 0 0 0-.08-.83A7.72 7.72 0 0 0 23 3z">
</path>
</svg></a>
<a href="https://www.instagram.com/abhishekk_kashyap/" target="_blank"
class="social-icon social-iconinstagram" title="instagram"><svg
xmlns="http://www.w3.org/2000/svg" width="32" height="32" viewBox="0 0 24 24"
fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round"
stroke-linejoin="round">
<rect x="2" y="2" width="20" height="20" rx="5" ry="5" />
<path d="M16 11.37A4 4 0 1 1 12.63 8 4 4 0 0 1 16 11.37z" />
<line x1="17.5" y1="6.5" x2="17.5" y2="6.5" />
</svg></a>
<!-- <a href="https://medium.com/@Abhishek240498" target="_blank" class="social-icon" title="Medium"><svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512" width="26" height="26" fill="currentColor" stroke="currentColor"
stroke-width="16" stroke-linecap="round" stroke-linejoin="round">
<path d="M511.981 118.509c-.135-2.956-1.892-5.726-4.565-7.04l-159.24-79.62a8.295 8.295 0 0 0-10.664 2.898L229.916 200.282l-55.413-85.891a8.382 8.382 0 0 0-3.259-2.922l-159.24-79.62C6.582 29.138 0 33.218 0 39.268v79.621a8.293 8.293 0 0 0 8.294 8.294 8.293 8.293 0 0 0 8.294-8.294V52.687l142.652 71.326v335.32L16.587 388.008V154.277a8.293 8.293 0 0 0-8.294-8.294 8.293 8.293 0 0 0-8.294 8.294v238.857a8.293 8.293 0 0 0 4.585 7.418l159.24 79.62c5.427 2.714 12.003-1.375 12.003-7.418V318.087l324.17 162.085c5.427 2.714 12.003-1.375 12.003-7.418V118.888c0-.128-.013-.252-.019-.379zM175.827 299.541v-152.5l145.239 225.12-145.239-72.62zm319.586 159.794l-139.34-69.671 108.576-186.993a8.295 8.295 0 0 0-3.009-11.337 8.296 8.296 0 0 0-11.337 3.009L344.094 377.258 239.77 215.555 347.383 49.998 492.1 122.357l-26.387 45.446a8.295 8.295 0 0 0 3.009 11.337 8.297 8.297 0 0 0 11.337-3.009l15.354-26.443v309.647z" />
</svg></a> -->
<!-- <a href="assets/Abhishek_LOR.pdf" class="social-icon" title="Letter of Recommendation" target="_blank"><svg xmlns="http://www.w3.org/2000/svg" width="32" height="32" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="feather feather-briefcase"><rect x="2" y="7" width="20" height="14" rx="2" ry="2">
</rect><path d="M16 21V5a2 2 0 0 0-2-2h-4a2 2 0 0 0-2 2v16"></path></svg></a> -->
<!-- <a href="https://api.whatsapp.com/send?phone=917011189445&utm_source=Messaging&utm_medium=Whatsapp" target="_blank" class="social-icon" title="WhatsApp">
<svg xmlns="http://www.w3.org/2000/svg" width="32" height="32" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="feather feather-activity"><path d="M21 11.5a8.38 8.38 0 0 1-.9 3.8 8.5 8.5 0 0 1-7.6 4.7 8.38 8.38 0 0 1-3.8-.9L3 21l1.9-5.7a8.38 8.38 0 0 1-.9-3.8 8.5 8.5 0 0 1 4.7-7.6 8.38 8.38 0 0 1 3.8-.9h.5a8.48 8.48 0 0 1 8 8v.5z"></path></svg>
</a> -->
<a href="assets/Abhishek_Resume.pdf" class="social-icon" title="Résumé English (US)"
target="_blank">
<svg xmlns="http://www.w3.org/2000/svg" width="32" height="32" viewBox="0 0 24 24"
fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round"
stroke-linejoin="round" class="feather feather-activity">
<path d="M14 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V8z"></path>
<polyline points="14 2 14 8 20 8"></polyline>
<line x1="16" y1="13" x2="8" y2="13"></line>
<line x1="16" y1="17" x2="8" y2="17"></line>
<polyline points="10 9 9 9 8 9"></polyline>
</svg>
</a>
</div>
</div>
<h2>About Me 👨💻</h2>
<p>Hey internet user 👋 I'm Abhishek Kashyap, <strong>Full Stack Web Developer </strong> in Startup 💲
space.
Understanding coding and business aspect of products is not just a career path for me, but also a
passion of
mine.
I like to build web-apps 🌐, games 🎮 and solve user problems 🧐
Really love to contribute in open source ❤️ and various communities of students & professionals. If
you've
made any cool projects, would really like to try it!!
Recently, I've taken a keen interest in product management 💭 and data analytics 📈</p>
<!-- <p>I apply the same thinking in product management that I also apply in leadership,
because whether you're connecting with consumers or with your team, you're connecting with the fun irrationality of their logic-in order to bring ideas together, influence an outcome, and also optimize and scale for future growth.
I’m well-versed in negotiations, planning and development, relationship management, coordination and scheduling. Furthermore digital Marketing, Tutoring, brand awareness, and omni-channel marketing campaigns And I am the conduit between Tech and Marketing.
I help Brands find the subject and medium that best fits their unique identity, and then I produce high-quality content that meets their objectives.
I've worked in B2C marketing across the technology and Educational services industries helping companies generate revenue.</p> -->
<strong> My specialities include :</strong> <span> Product Management, Development, Digital Marketing,
Business
Intelligence, Data Analysis and People skills. </span>
<br>
<strong> My leisure time activites :</strong> <span> Travelling ✈️, Rifle Shooting 🔫, Swimming 🏊♂️,
Standups
🤣 and Mentoring 👨🏫 </span>
</div>
</section>
<section class="col-centered container" id="experience">
<div class="col-full">
<h2>Professional Work Experience 👨💼💼</h2>
<div class="flex-container">
<div class="flex-media-logo">
<img src="./assets/akrivia-logo.png" style="width: 39px; height: 39px;">
</div>
<div class="flex-title">
<h3>Full Stack Software Engineer
<a href="https://akriviahcm.com/"><small>AKRIVIA HCM</small> </a>
<small>Nov 2023 - Present</small>
</h3>
</div>
</div>
<div class="content-left-offset">
<p>Full stack software team lead, everyday tasks includes:</p>
<ul>
<li>Following Agile Methodologies, Working on Jira Sprint Points and Live Issues</li>
<li>Improve existing code quality using Sonalqube and Bitbuket.</li>
<li>Assisting Junior Full Stack Developers.</li>
</ul>
</div>
<div class="flex-container">
<div class="flex-media-logo">
<img src="./assets/Telspiel Logo_Icon PNG.png">
</div>
<div class="flex-title">
<h3>Software Engineer
<a href="hhttps://telspiel.com/"><small>telSpiel</small> </a>
<small>Feb 2022 - Nov 2023</small>
</h3>
</div>
</div>
<div class="content-left-offset">
<p>Part of software team focused on product development at telSpiel, everyday tasks includes:</p>
<ul>
<li>Collaborate with backend & app side engineers and designers to build and launch products
features and
enhancements to increase Productivity.</li>
<li>Improve existing features in order to create best user experience.</li>
<li>Working on all LIVE portals of the Comapany.</li>
</ul>
</div>
<div class="flex-container">
<div class="flex-media-logo">
<img src="./assets/cdac-logo.png" style="width: 80px; height: 79px; padding-right: 10px;">
</div>
<div class="flex-title">
<h3>Software Engineer
<a href="https://www.cdac.in/"><small>CDAC</small> </a>
<small>Aug 2021 - Feb 2022</small>
</h3>
</div>
</div>
<div class="content-left-offset">
<p>Part of software team focused on product development at CDAC, everyday tasks includes:</p>
<ul>
<li>Collaborate with backend & app side engineers and designers to build and launch products
features and
enhancements to increase Productivity.</li>
<li>Improve existing features in order to create best user experience.</li>
<li>Part of ITMS (Indian Transport Management System) Projects.</li>
</ul>
</div>
<div class="flex-container">
<div class="flex-media-logo">
<img src="./assets/devtown.png">
</div>
<div class="flex-title">
<h3> Full Stack MERN Developer
<a href="https://www.zs.com/"><small>Dev Town</small> </a>
<small>Jun 2021 - Aug 2021</small>
</h3>
</div>
</div>
<div class="content-left-offset">
<p>Part of Full Stack Application Building</p>
<ul>
<li> Worked on full stack applications to productise development of algorithms packaged as
applications for
client and internal use. Leveraged technical and analytical skills to solve problems and
improve
performance.</li>
<li> Worked on multiple projects to build frontend solutions using JavaScript showcasing
meaningful insights
for clients to assist them with their day to day problems.</li>
<li> Bridging the gap between technical and business management teams by acting as a
Techno-Management
Consultant and developing desktop and cloud-based applications (analytic apps).</li>
</ul>
</div>
<div class="flex-container">
<div class="flex-media-logo">
<img src="./assets/cdac-logo.png" style="width: 79px; height: 79px; padding-right: 10px;">
</div>
<div class="flex-title">
<h3>Project Intern
<a href="https://www.unilodgers.com/"><small>CDAC </small> </a>
<small>May 2019 - Jul 2019 </small>
</h3>
</div>
</div>
<div class="content-left-offset">
<p>Part of a project:</p>
<ul>
<li>Setting up cohorts for users based upon current funnel stage in product life cycle for
precise
targeting.</li>
<li>Built a dashboard to track performance of campaigns.</li>
<li>Strategized loyalty program for user rebooking to increase LTV</li>
</ul>
</div>
</div>
</section>
<section class="col-centered container" id="education">
<div class="col-full">
<h2>Education 🎓 </h2>
<div class="flex-container">
<div class="flex-media-logo">
<img src="./assets/Amity_University_logo.png">
</div>
<div class="flex-title">
<h3>B.Tech - Computer Science and Engineering 👨🎓
<small>Amity University Noida</small>
<small>May 2016 - Dec 2020</small>
</h3>
</div>
</div>
<div class="content-left-offset">
<p>I studied various core concepts of computer science, such as algorithms, network architecture,
programming
languages and artificial intelligence. During this time, I learnt to code in C++, Java, Python,
C#, HTML,
CSS and JavaScript along with developing various projects and applications, integrating SQL
databases.</p>
</div>
<div class="flex-container">
<div class="flex-media-logo">
<img src="./assets/sainik-school-ghorakhal.png">
</div>
<div class="flex-title">
<h3>Senior Secondary Education- XII (CBSE) 👨⚖️
<small>Sainik School Ghorakhal , Nainital</small>
<small>2015 - 2016</small>
</h3>
</div>
</div>
<div class="flex-container">
<div class="flex-media-logo">
<img src="./assets/sainik-school-ghorakhal.png">
</div>
<div class="flex-title">
<h3>Secondary Education- X (CBSE) 👨⚖️
<small>Sainik School Ghorakhal , Nainital </small>
<small>2013 - 2014</small>
</h3>
</div>
</div>
</div>
</section>
<section class="col-centered container" id="projects">
<div class="col-full">
<h2>Projects 💻 </h2>
<!-- <div class="flex-container">
<div class="flex-media-logo">
<img src="./assets/favicon.png">
</div>
<div class="flex-title">
<h3>Interactive Resume Website <a href="https://www.ekarth.me/" target="_blank"><img
src="./assets/link-external.svg"></a>
<small>JavaScript, CSS, HTML</small>
</h3>
</div>
</div> -->
<!-- <div class="content-left-offset">
<p>Mobile responsive online portfolio showcasing my work experience,
education, projects and achievements along with mailing service
and personal payments page. </p>
</div> -->
<div class="flex-container">
<div class="flex-media-logo">
<img src="./assets/sct.png">
</div>
<div class="flex-title">
<h3>PIZZA DELIVERY APP WITH ADMIN 🎂 <a href="https://abhi-pizza.onrender.com" target="_blank">
<img src="./assets/link-external.svg"></a>
<small>MERN</small>
</h3>
</div>
</div>
<div class="content-left-offset">
<p> A Full Stack Project (Pizza Booking) with Admin Functionality.</p>
</div>
<div class="flex-container">
<div class="flex-media-logo">
<img src="./assets/link-external.svg">
</div>
<div class="flex-title">
<h3>ECOMMERCE APPLICATION 🎼 <a href="https://abhi-ecommerce.onrender.com" target="_blank"><img
src="./assets/link-external.svg"></a>
<small>MERN</small>
</h3>
</div>
</div>
<div class="content-left-offset">
<p>A Full Stack Ecommerce Application.</p>
</div>
<!-- <div class="flex-container">
<div class="flex-media-logo">
<img src="./assets/gamee.png">
</div>
<div class="flex-title">
<h3>DEVELOPER'S SOCIAL MEDIA 🚀 <a href="https://fierce-island-93511.herokuapp.com/" target="_blank"><img
src="./assets/link-external.svg"></a>
<small>Phaser.js, CSS, HTML and JavaScript</small>
</h3>
</div>
</div>
<div class="content-left-offset">
<p>A very simple, yet elegant space shooter game. It is crafted with customization
in mind for ultra casual players and runs on all browsers.</p>
</div> -->
<!-- <div class="flex-container">
<div class="flex-media-logo">
<img src="./assets/WeddingEvite.png">
</div>
<div class="flex-title">
<h3>Wedding Online Invitation <a href="https://abhi3566.github.io/WeddingEvite/" target="_blank"><img
src="./assets/link-external.svg"></a>
<small>HTML, CSS and JavaScript</small>
</h3>
</div>
</div>
<div class="content-left-offset">
<p>This is the <a href="https://saharshisha.netlify.app/">website</a> for my brother's wedding invitation.</p>
</div> -->
<!-- <div class="flex-container">
<div class="flex-media-logo">
<img src="./assets/browser.png">
</div>
<div class="flex-title">
<h3>Web Skills Script <a href="https://abhi3566.github.io/Web-Skills-Script/" target="_blank"><img src="./assets/link-external.svg"></a>
<small>HTML and JavaScript</small>
</h3>
</div>
</div>
<div class="content-left-offset">
<p>This is a web application developed to showcase my projects with
LIVE coding and animations.</p>
</div> -->
<!-- <div class="flex-container">
<div class="flex-media-logo">
<img src="./assets/Abhishek_Resume.jpg">
</div>
<div class="flex-title">
<h3>Latex Resume <a href="https://github.com/Abhishek-1998/Abhishek-Latex-Resume" target="_blank"><img src="./assets/link-external.svg"></a>
<small>Latex</small>
</h3>
</div>
</div>
<div class="content-left-offset">
<p> My Resume.</p>
</div>
</div> -->
</section>
<section class="col-centered container" id="Extra">
<div class="col-full">
<h2>Achievements and Activities ⚡ </h2>
<br>
<div class="content-left-offset2">
<strong>ACHIEVEMENTS: 🏆 </strong>
<ul>
<li>Selected for the <a href="https://www.linkedin.com/in/abhishek-kashyap-dev/"><small> Best
Drill AWARD in
2 Defence camps.
Indian BasketBall Award </small> </a> by NCC 2013, Uttrakhand</li>
<!-- <li>Interned at Unilodgers to set up user journey
funnel for segmented targeting. Built a dashboard
to track performance of campaigns.
</li> -->
<li>Nanital Monsoon Marathon (20Km)</li>
<li>First Position in Singing & Art</li>
<li>SPORTS- Basketball (Inter-school Inter-university), Cricket, Football.</li>
</ul>
</div>
<br>
<!-- <div class="content-left-offset2"><strong>TALKS & PRESENTATIONS: 🎤</strong>
<ul>
<li> <a
href="https://www.linkedin.com/posts/Abhishek-Kashyap24apr98_io19extended-google-io-activity-6542084758430674944-dDkg">
<small> Google I/O Extended 2019 </small> </a>
</li>
<li> <a
href="https://www.linkedin.com/posts/Abhishek-Kashyap24apr98_devfest-googledevelopergroups-womentechmakers-activity-6588625422014091264-Pbc-/">
<small> Google Developer Group DevFest Punjab 2019</small> </a>
</li>
<li> <a href="https://www.youtube.com/watch?v=6RS0q9Oih2E&feature=youtu.be&t=368%20">
<small> Webinar - Top Web-Development technologies of 2020.</small> </a>
</li>
<li> <a href="https://www.youtube.com/watch?v=XB4mPyofwjY">
<small> Webinar - Roadmap for engineering college students and AMA.</small> </a>
</li>
<li>NIT Kurukshetra, LPU, Manipal University
Jaipur and more. Educated over 1000 students
on professional growth in IT Industry</li>
</ul>
</div> -->
<br>
<div class="content-left-offset2"><strong>PROFESSIONAL SKILLS :</strong>
<ul>
<li>Javascript and Python 3</li>
<li>Advanced Excel, Power Apps and MySQL</li>
<li>CDS, Power BI and Power Automate</li>
<li>Market & Competitor Research</li>
<li>Requirements Gathering & Data Analysis</li>
<li>Product Management and Growth for B2B and B2C</li>
</ul>
</div>
<br>
<div class="content-left-offset2"><strong>PLATFORM EXPERIENCE:</strong>
<ul>
<li>Google Analytics and Tag Manager</li>
<li>Metabase, OneSignal and Firebase</li>
<li>Zoho, Medium, WordPress and Ghost</li>
<li>YouTube, VdoCipher</li>
</ul>
</div>
<br>
<!-- <div class="content-left-offset2"><strong>TECHNICAL FORUMS:</strong>
<ul>
<li> Active member of <a href="https://forum.xda-developers.com/member.php?u=7551149" target="_blank">XDA
forum </a>
and <a href="https://forums.oneplus.com/members/Abhishek-sark.896573/" target="_blank">OnePlus
community </a> [ Honeycomb (Level 8) ]</li>
<li> Alpha and Beta testing mobile ROMs for
Lenovo and OnePlus devices. 📱 </li>
<li>Testing plethora of Android apps.</li>
</ul>
</div> -->
<br>
<h3><strong>My Articles and Blogs: 📜 </strong> </h3>
<p>I have been writing on Medium for a while, covering various programming topics, mostly focused around
web
development and design. Some of my most popular contributions:</p>
<div class="container card-container">
<a class="card" target="_blank" href="https://medium.com/@abhi3566">
<img class="section media" src="./assets/med.png">
<div class="content">
<h3>My Medium Articles
</h3>
</div>
</a>
<a class="card" target="_blank" href="https://blog.codingblocks.com/author/Abhishek/">
<img class="section media" src="./assets/cblogo.png">
<div class="content">
<h3>My Articles for Coding Blocks
</h3>
</div>
</a>
</div>
</div>
</section>
<section class="col-centered container" id="community">
<div class="col-full">
<h2>Contact Me ✍️</h2>
<div>
<p>
<span>I am <strong> always looking for new interesting opportunities </strong> across roles and
functions in
Product Management, Community and Freelance jobs.
Kindly let me know if your organization has a suitable opening or if you could connect me
with potential
recruiters.
</span> <br>
<div style="justify-content: center;display: flex; padding: 5px;">
<span>📧
<a class="well" hreff="mailto:[email protected]">[email protected]</a> 📧</span>
<!-- <span> ------------------------------------ </span>
<span class="right-text">
<a href="assets/Abhishek_LOR.pdf" target="_blank"> 📄 Letter of Recommendation 📄 </a>
</span> -->
</div>
<p>I'm a Swiss Army Knife for a company, with an expertise in bringing digital experiences to
reality that
make life easier and enjoyable for consumers and businesses around the world.
I've previously worked in B2C company across the Educational and Technology service industry.
Moreover I'm like a conduit between Technology and Marketing. Working along with different
stakeholders is
one of my key strength.
If you’re interested in grabbing coffee, please send an email my way at [email protected]
</p>
<p>
Experienced in Product Development, Management and omni-channel Marketing with a demonstrated
history of
working in the Education and Healthcare industry.
Whether I'm connecting with users or with my team members,
I'm always connecting with the fun irrationality of their logic-in order to bring out
<span id="dots">.... </span>
<span id="more">
ideas together, influence an outcome, and also optimize to scale for future growth.
Analysing products to understand and overcome product challenges to improve customer
interaction and as a
result improve conversion.
Furthermore focused on increasing user acquisition, retention, engagement with product and
conversion.
Putting my skills and knowledge from past experiences to bring out the best product.
Very passionate about building solutions to big problems through innovative technologies and
working with
cross-functional teams.
Trained to manage multiple projects with strict timelines, which adhere to quality and
provide end to end
solution.
</span>
<span class="well" onclick="ExpandShrink()" id="myBtn"> Read more </span>
</p>
<p>Most interesting thing is the way I talk to my brain, we are always doing our best to find a
smart and
elegant design-driven solution for the task at hand.
I live everyday with positivity and gratitude so that to best utilize superpowers of curiosity,
ingenuity
and empathy to fulfil life purpose: to unlock the superhero in all of us.
</p>
</div>
<!-- <div class="razorpay-embed-btn" style="justify-content: center;display: flex; transform: scale(1.2);" data-url="https://pages.razorpay.com/pl_EnbwskquILTF5X/view" data-text="❤️ Donate Now ❤️" data-color="#528FF0" data-size="large">
<script>
(function(){
var d=document; var x=!d.getElementById('razorpay-embed-btn-js')
if(x){ var s=d.createElement('script'); s.defer=!0;s.id='razorpay-embed-btn-js';
s.src='https://cdn.razorpay.com/static/embed_btn/bundle.js';d.body.appendChild(s);} else{var rzp=window['__rzp__'];
rzp && rzp.init && rzp.init()}})();
</script>
</div> -->
<br>
<div style=" justify-content: center;display: flex; ">
<a href="https://www.youtube.com/channel/UCEapUkODV0dKW7kDxXuH6Nw" target="_blank">
<h2>Watch my latest YouTube video 💥</h2>
</a>
</div>
<br>
<!-- This website is made by Abhishek Kashyap -->
<div class="form">
<h3 class="sm-heading"><strong>If you’re interested to get in touch with me, just fill this form and
I'll get
back to you soon.</strong></h3>
<br><br>
<!-- <p> --------------------------------------------------------------------------------------------- </p> -->
<form action="https://formspree.io/xwkqgaow" method="POST">
<label for="fname">Full Name</label>
<input type="text" id="fname" name="First Name" placeholder="Your name.." required>
<label for="em">Email Address</label>
<input type="text" id="em" name="Email" placeholder="Your email address.." required>
<label for="msg">Your message</label>
<textarea name="Message" style="height:200px" placeholder="Your Message..."
required> </textarea>
<input type="submit" value="Submit">
</form>
</div>
<br>
<!-- <div style="margin-right: auto; margin-left: auto; width: 70%;">
<iframe width="560" height="315" src="https://www.youtube.com/embed/uWWWeIAtMX4" title="YouTube video player" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture" allowfullscreen></iframe>
</div>
-->
<!-- <script type="text/javascript" src="https://platform.linkedin.com/badges/js/profile.js" async defer></script>
<div class="LI-profile-badge" style="justify-content: center;display: flex; padding: 5px;" data-version="v1" data-size="medium" data-locale="en_US" data-type="horizontal" data-theme="dark" data-vanity="Abhishek-Kashyap24apr98">
<a class="LI-simple-link" href='https://in.linkedin.com/in/Abhishek-Kashyap24apr98?trk=profile-badge'>Abhishek Kashyap</a>
</div> // Linkedin code//-->
<br>
<div class="sharethis-inline-share-buttons" data-url="https://abhi3566.github.io/"
data-title="Abhishek Kashyap's Portfolio"
data-description="Checkout this interactive resume website, a mobile responsive online portfolio. To connect with him, mail at [email protected] ">
</div>
<div style=" justify-content: center;display: flex; ">
<a href="https://abhi3566.github.io/404">
<h2>Try 404 page 💥</h2>
</a>
</div>
</div>
</section>
<footer class="col-full container">
<div class="col-centered">
<h3>It was nice to have you here, see you around !! </h3>
<p>Developed with ❤️ by <a href="https://github.com/Abhishek-1998" target="_blank">Abhishek Kashyap</a>
<br>
<strong> Copyright ©️ 2020 | All Rights Reserved </strong>
</p>
<!-- This website is made by Abhishek Kashyap -->
<div style="transform: scale(1.05); padding: 10px;">
<a href="https://github.com/Abhishek-1998/followers">
<img style="padding-right: 10px;padding-left: 10px;" alt="GitHub followers"
src="https://img.shields.io/github/followers/Abhishek-1998?label=Follow&style=social">
</img>
</a>
<!-- <img alt="GitHub forks" src="https://img.shields.io/github/forks/Abhishek-1998/Abhishek-1998.github.io?label=Fork&style=social">
<img alt="GitHub stars" src="https://img.shields.io/github/stars/Abhishek-1998/Abhishek-1998.github.io?style=social">
<img alt="GitHub last commit" src="https://img.shields.io/github/last-commit/Abhishek-1998/Abhishek-1998.github.io"> -->
<a href="https://www.linkedin.com/in/Abhishek-Kashyap24apr98/" rel="nofollow noreferrer">
<img style="padding-right: 10px;padding-left: 10px;"
src="https://img.shields.io/badge/LinkedIn-Abhishek Kashyap-blue?style=social&logo=LinkedIn"
alt="linkedin">
</img>
</a>
<a
href="https://twitter.com/intent/follow?original_referer=https%3A%2F%2Fpublish.twitter.com%2F&ref_src=twsrc%5Etfw®ion=follow_link&screen_name=sabhi3566&tw_p=followbutton">
<img style="padding-right: 10px;padding-left: 10px;" alt="Twitter Follow"
src="https://img.shields.io/twitter/follow/abhi3566?style=social">
</img>
</a>
<h3>Website contains ads, to support my open source work </h3>
</div>
<p>
Icons made by <a href="https://www.flaticon.com/authors/dave-gandy" target="_blank">Dave Gandy</a>
and <a href="https://www.freepik.com/" target="_blank">Freepik</a> from <a
href="https://www.flaticon.com/" target="_blank">Flaticon</a>, as well as <a
href="https://twitter.com/colebemis" target="_blank">Cole
Blemis</a> from <a href="https://feathericons.com/" target="_blank">Feather</a>
</p>
</div>
</footer>
</div>
<script type="text/javascript" src="https://ajax.googleapis.com/ajax/libs/jquery/2.0.0/jquery.min.js"></script>
<script src="./main.js"></script>
</body>
</html>
<!-- <script src="https://ajax.googleapis.com/ajax/libs/d3js/5.15.0/d3.min.js"></script> -->