-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathindex.html
1231 lines (1209 loc) · 79 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>
<!-- Global site tag (gtag.js) - Google Analytics -->
<script async src="https://www.googletagmanager.com/gtag/js?id=UA-120140018-3"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag() {
dataLayer.push(arguments);
}
gtag('js', new Date());
gtag('config', 'UA-120140018-3');
</script>
<!--Meta Tags-->
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<meta name="description"
content="Akshat Gupta is a student developer studying in VIT University. This website has been made by him to act as his online Resume.">
<meta name="keywords"
content="Akshat,Gupta,akshatvg,Vellore Institute of Technology,Student,Developer,Programmer,Hackathon">
<meta name="author" content="Akshat Gupta">
<meta name="copyright" content="Akshat Gupta">
<meta name="language" content="en">
<meta name="url" content="https://www.akshatvg.com">
<meta name="category" content="Portfolio,Resume">
<meta name="coverage" content="Worldwide">
<meta name="rating" content="General">
<meta name="og:email" content="akshatvg23@gmail.com" />
<meta name="og:phone_number" content="+918799979997" />
<meta name="og:country-name" content="India" />
<meta name="og:region" content="Tamil Nadu" />
<meta name="og:site_name" content="Akshat Gupta" />
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta property="og:type" content="website">
<meta property="og:title" content="Akshat Gupta">
<meta name="theme-color" content="#242A2E">
<meta property="og:image" itemprop="image" content="assets/img/favicon.png">
<meta property="og:description"
content="Akshat Gupta is a student developer studying in VIT University. This website has been made by him to act as his online Resume.">
<meta property="og:url" content="https://www.akshatvg.com">
<meta property="og:site_name" content="Akshat Gupta">
<meta name="twitter:card" content="website">
<meta name="twitter:site" content="Akshat Gupta">
<meta name="twitter:title" content="Akshat Gupta">
<meta name="twitter:description"
content="Akshat Gupta is a student developer studying in VIT University. This website has been made by him to act as his online Resume.">
<meta name="twitter:creator" content="@akshatvg">
<meta itemprop="name" content="Akshat Gupta">
<meta itemprop="description"
content="Akshat Gupta is a student developer studying in VIT University. This website has been made by him to act as his online Resume.">
<link rel="canonical" href="https://www.akshatvg.com">
<!-- Linking Favicon, Apple Touch Icon, Font Awesome, AOS, Materialize & CSS -->
<link rel="icon" href="assets/img/favicon.png" type="image/png">
<link rel="apple-touch-icon" href="assets/img/apple-touch-icon.png" type="image/png">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css"
defer>
<link href="https://fonts.googleapis.com/icon?family=Material+Icons|Material+Icons+Outlined" rel="stylesheet">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/animate.css/3.7.2/animate.min.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/materialize/1.0.0/css/materialize.min.css">
<link rel="stylesheet" href="assets/css/spacing.css">
<link rel="stylesheet" href="assets/css/index.css">
<!-- Title -->
<title>Akshat Gupta - Frontend Developer with keen interest in SEO, Digital Marketing & Cloud Computing</title>
<!-- No Script -->
<noscript>Please enable JavaScript to open this page.</noscript>
</head>
<body>
<!-- Navbar -->
<div id="navbar" class="z-depth-0 mb-4">
<div class="row mb-0">
<div class="col left">
<h2><a href="https://github.com/akshatvg" target="_blank"><i
class="fa fa-github fa-2x white-text-special mt-1 ml-3"></i></a></h2>
</div>
<div class="col center">
<h1 class="mt-4 center"><a href="/" class="white-text-special">Akshat Gupta</a></h1>
</div>
<div class="col right">
<img src="assets/img/AkshatGupta.png" alt="Akshat Gupta" height="60px" width="auto">
</div>
<div class="col right hide-on-small-only">
<p class="mt-4"><a href="https://linktr.ee/akshatvg" target="_blank"
class="white-text-special">akshatvg</a>
</p>
</div>
</div>
</div>
<!-- Main -->
<main>
<!-- Header -->
<section id="header">
<div class="container">
<!-- First Row -->
<div class="row">
<!-- Breadcrumb -->
<div class="col s12 m5">
<h1><svg class="octicon octicon-repo text-gray" viewBox="0 0 16 16" width="16" height="16"
aria-hidden="true">
<path fill-rule="evenodd"
d="M2 2.5A2.5 2.5 0 014.5 0h8.75a.75.75 0 01.75.75v12.5a.75.75 0 01-.75.75h-2.5a.75.75 0 110-1.5h1.75v-2h-8a1 1 0 00-.714 1.7.75.75 0 01-1.072 1.05A2.495 2.495 0 012 11.5v-9zm10.5-1V9h-8c-.356 0-.694.074-1 .208V2.5a1 1 0 011-1h8zM5 12.25v3.25a.25.25 0 00.4.2l1.45-1.087a.25.25 0 01.3 0L8.6 15.7a.25.25 0 00.4-.2v-3.25a.25.25 0 00-.25-.25h-3.5a.25.25 0 00-.25.25z">
</path>
</svg>
<a href="https://github.com/akshatvg" target="_blank" class="link-color">akshatvg</a> / <a
href="https://github.com/akshatvg/akshatvg.github.io" target="_blank"
class="link-color font-bold">My-Portfolio</a>
</h1>
</div>
<!-- Social Media Links -->
<div class="col s12 m7">
<a href="https://www.linkedin.com/in/akshatvg" target="_blank" class="social"><i
class="fa mx-3 my-3 fa-linkedin"></i></a>
<a href="https://github.com/akshatvg" target="_blank" class="social"><i
class="fa mx-3 my-3 fa-github"></i></a>
<a href="https://twitter.com/akshatvg" target="_blank" class="social"><i
class="fa mx-3 my-3 fa-twitter"></i></a>
<a href="https://akshatvg.medium.com/" target="_blank" class="social"><i
class="fa mx-3 my-3 fa-medium"></i></a>
<a href="https://www.youtube.com/channel/UCjyVQRAcNuim27a7Q_2X_fA?sub_confirmation=1"
target="_blank" class="social"><i class="fa mx-3 my-3 fa-youtube"></i></a>
<a href="https://www.instagram.com/akshatvg" target="_blank" class="social"><i
class="fa mx-3 my-3 fa-instagram"></i></a>
<a href="https://www.facebook.com/akshatvg" target="_blank" class="social"><i
class="fa mx-3 my-3 fa-facebook"></i></a>
<a href="https://www.snapchat.com/add/akshatvg" target="_blank" class="social"><i
class="fa mx-3 my-3 fa-snapchat"></i></a>
</div>
</div>
<!-- Second Row (Tabs) -->
<nav class="tabs z-depth-0">
<ul class="-primary">
<li id="overview" class="active">
<a href="#!">
<i class="fa fa-file"></i> Overview
</a>
</li>
<li id="education">
<a href="#!">
<i class="fa fa-book"></i> Education
</a>
</li>
<li id="work">
<a href="#!">
<i class="fa fa-briefcase"></i> Work Experience
</a>
</li>
<li id="skills">
<a href="#!">
<i class="fa fa-database"></i> Skills
</a>
</li>
<li id="projects">
<a href="#!">
<i class="fa fa-tasks"></i> Projects
</a>
</li>
<li id="awards-certifications">
<a href="#!">
<i class="fa fa-trophy"></i> Awards & Certifications
</a>
</li>
</ul>
</nav>
</div>
</section>
<!-- Actual Content -->
<section id="actualContent" class="mt-4 mb-5">
<div class="container">
<div class="row">
<!-- Overview Section -->
<div id="overviewSection" class="col s12 xl7 mx-xl-5">
<!-- Overview Upper Section -->
<div id="overviewButtonsSection" class="my-3">
<div class="row">
<!-- Buttons -->
<div class="left">
<div class="social p-2">
<svg class="octicon octicon-git-branch" viewBox="0 0 16 16" width="16"
height="15" aria-hidden="true">
<path fill-rule="evenodd"
d="M11.75 2.5a.75.75 0 100 1.5.75.75 0 000-1.5zm-2.25.75a2.25 2.25 0 113 2.122V6A2.5 2.5 0 0110 8.5H6a1 1 0 00-1 1v1.128a2.251 2.251 0 11-1.5 0V5.372a2.25 2.25 0 111.5 0v1.836A2.492 2.492 0 016 7h4a1 1 0 001-1v-.628A2.25 2.25 0 019.5 3.25zM4.25 12a.75.75 0 100 1.5.75.75 0 000-1.5zM3.5 3.25a.75.75 0 111.5 0 .75.75 0 01-1.5 0z">
</path>
</svg> <span class="black-text">overview</span>
</div>
</div>
<div class="right">
<a href="assets/files/resume.pdf" download="Akshat Gupta's Resume">
<div class="p-2 green-social">
<i class="fa fa-download white-text"></i> <span class="white-text">Download
Resume</span>
</div>
</a>
</div>
</div>
</div>
<!-- Overview Markdown Section -->
<div id="overviewMarkdownSection" class="my-3">
<!-- File Name -->
<div class="row mt-n4">
<p class="font-bold">Overview.md</p>
</div>
<!-- Name -->
<div class="row mt-n2">
<h1 class="font-bold">Akshat Gupta 👨🏻💻</h1>
</div>
<!-- About -->
<div class="row mt-n2">
<p>I'm a <b>Software Developer</b> experienced in <b>Frontend Web Development</b>,
<b>Cloud Computing</b>,
<b>SEO</b>, <b>Digital Marketing</b>, <b>SEM</b> & <b>Offline Marketing</b>.
<br> <br>
When I am not coding, I am organising or taking part in workshops, webinars &
hackathons, writing blogs, solving doubts and mentoring students.
<br> <br>
I'm always open to have a talk about anything and look forward to getting connected
with you.</p>
</div>
<!-- Image -->
<div class="row mt-n2 center">
<img src="assets/img/Public_Speaking_akshatvg.jpg" alt="Akshat Gupta Speaking at VITMUN"
class="responsive-img overview-img center">
</div>
<div class="row">
<img src="https://img.shields.io/badge/Software-Developer-orange"
alt="Software Developer">
</div>
<!-- Activities -->
<div class="row">
<h1 class="font-bold">My Activities 📬</h1>
</div>
<div class="mt-n3">
<table class="responsive-table highlight">
<thead>
<tr>
<th>BLOGS 📖</th>
<th>WEBINARS 📺</th>
</tr>
</thead>
<tbody>
<tr>
<td><a href="https://medium.com/codechef-vit/web-development-101-with-codechefvit-4ec369e86f68"
class="link-color">Web
Development 101</a></td>
<td><a href="https://www.youtube.com/watch?v=7E5sDcNUKNo"
class="link-color">Frontend Web
Basics</a></td>
</tr>
<tr>
<td><a href="https://medium.com/@akshatvg/my-first-hackathons-experience-8c8ef23a055d"
class="link-color">My
First Hackathon's Experience</a></td>
<td><a href="https://www.youtube.com/watch?v=IZS2wlG1mew"
class="link-color">Bootstrap Crash
Course</a></td>
</tr>
<tr>
<td><a href="https://medium.com/codechef-vit/convert-your-website-into-a-pwa-ee8f6b67bca7"
class="link-color">Convert your Website into a PWA</a></td>
<td><a href="https://www.youtube.com/watch?v=H5nURvprvkc&feature=youtu.be"
class="link-color">DSC Afterhours - Hacktoberfest and Open Source
Stories</a></td>
</tr>
<tr>
<td><a href="https://www.agora.io/en/blog/build-your-own-many-to-many-live-video-streaming-using-the-agora-web-sdk/"
class="link-color">Building Your Own Many To Many, Live Video
Streaming Using The Agora Web SDK</a></td>
<td><a href="https://www.youtube.com/watch?v=HxSOQFZL9wE"
class="link-color">Agora Certificate Program - Working with the
Agora SDK</a></td>
</tr>
</tbody>
</table>
</div>
</div>
</div>
<!-- Education Section -->
<div id="educationSection" class="col s12 xl7 mx-xl-5">
<!-- Education Upper Section -->
<div id="educationUpperSection" class="my-3">
<div class="row">
<!-- Buttons -->
<div class="left">
<div class="social p-2">
<svg class="octicon octicon-git-branch" viewBox="0 0 16 16" width="16"
height="15" aria-hidden="true">
<path fill-rule="evenodd"
d="M11.75 2.5a.75.75 0 100 1.5.75.75 0 000-1.5zm-2.25.75a2.25 2.25 0 113 2.122V6A2.5 2.5 0 0110 8.5H6a1 1 0 00-1 1v1.128a2.251 2.251 0 11-1.5 0V5.372a2.25 2.25 0 111.5 0v1.836A2.492 2.492 0 016 7h4a1 1 0 001-1v-.628A2.25 2.25 0 019.5 3.25zM4.25 12a.75.75 0 100 1.5.75.75 0 000-1.5zM3.5 3.25a.75.75 0 111.5 0 .75.75 0 01-1.5 0z">
</path>
</svg> <span class="black-text">education</span>
</div>
</div>
<div class="right">
<a href="assets/files/resume.pdf" download="Akshat Gupta's Resume">
<div class="p-2 green-social">
<i class="fa fa-download white-text"></i> <span class="white-text">Download
Resume</span>
</div>
</a>
</div>
</div>
<!-- Education Table -->
<table class="responsive-table highlight bordered">
<thead class="commitHead">
<tr>
<th>Institution</th>
<th>Type</th>
<th>Course</th>
<th>Duration</th>
</tr>
</thead>
<tbody class="commitBody">
<tr>
<td>Vellore Institute Of Technology, Vellore</td>
<td>University</td>
<td>B.Tech.: Information Technology</td>
<td>2018-2022</td>
</tr>
<tr>
<td>Chinmaya Vidyalaya Tapovanam, Kilpauk</td>
<td>High School</td>
<td>PCM + Computer Science</td>
<td>2009-2018</td>
</tr>
<tr>
<td>Chinmaya Vidyalaya, Harrington Road</td>
<td>Primary School</td>
<td>General</td>
<td>2005-2009</td>
</tr>
</tbody>
</table>
</div>
<!-- Education Markdown Section -->
<div id="educationMarkdownSection" class="my-3">
<!-- File Name -->
<div class="row mt-n4">
<p class="font-bold">Education.md</p>
</div>
<!-- Outside the book Heading -->
<div class="row">
<h1 class="font-bold">Do I depend solely on books? 📚</h1>
</div>
<!-- Education Content -->
<div class="row">
<p>When I am not learning in University, I am exploring new web technologies at <a
href="https://www.youtube.com/channel/UCW5YeuERMmlnqo4oq8vwUpg"
class="link-color">The Net Ninja</a> on YouTube or learning what went wrong in
<a href="https://stackoverflow.com/users/11494538/akshat-gupta"
class="link-color">Stack Overflow</a>.</p>
<p>I've also learnt quite a lot while
solving doubts on Stack Overflow as it motivates me to learn stuff I don't already
know so I can help out someone else in need.</p>
<p>I am also a mentor for plenty of students and hence giving them tasks and learning
with them while solving their problems has also helped shape the person I am today.
</p>
</div>
</div>
</div>
<!-- Work Section -->
<div id="workSection" class="col s12 xl7 mx-xl-5">
<!-- Work Upper Section -->
<div id="workTableSection" class="my-3">
<div class="row">
<!-- Buttons -->
<div class="left">
<div class="social p-2">
<svg class="octicon octicon-git-branch" viewBox="0 0 16 16" width="16"
height="15" aria-hidden="true">
<path fill-rule="evenodd"
d="M11.75 2.5a.75.75 0 100 1.5.75.75 0 000-1.5zm-2.25.75a2.25 2.25 0 113 2.122V6A2.5 2.5 0 0110 8.5H6a1 1 0 00-1 1v1.128a2.251 2.251 0 11-1.5 0V5.372a2.25 2.25 0 111.5 0v1.836A2.492 2.492 0 016 7h4a1 1 0 001-1v-.628A2.25 2.25 0 019.5 3.25zM4.25 12a.75.75 0 100 1.5.75.75 0 000-1.5zM3.5 3.25a.75.75 0 111.5 0 .75.75 0 01-1.5 0z">
</path>
</svg> <span class="black-text">work</span>
</div>
</div>
<div class="right">
<a href="assets/files/resume.pdf" download="Akshat Gupta's Resume">
<div class="p-2 green-social">
<i class="fa fa-download white-text"></i> <span class="white-text">Download
Resume</span>
</div>
</a>
</div>
</div>
<!-- Work Table -->
<table class="responsive-table highlight bordered">
<thead class="commitHead">
<tr>
<th>Company</th>
<th>Role</th>
<th>Description</th>
<th>Duration</th>
<th>Feedback</th>
</tr>
</thead>
<tbody class="commitBody">
<tr>
<td><a href="https://www.agora.io/en/" class="link-color"
target="_blank">Agora</a></td>
<td>Developer Evangelist Intern</td>
<td>1. Responsible for making various ad-hoc projects.<br>
2. Writing technical tutorial blogs.<br>
3. Conducting workshops teaching web development and showing how the Agora
SDK can be used.<br>
4. Solving customer queries on Slack and Stack Overflow support channels.
</td>
<td>Jun 2021 - Present</td>
<td></td>
</tr>
<tr>
<td><a href="https://www.joshtalks.com" class="link-color" target="_blank">Josh
Talks</a></td>
<td>Software Development Intern</td>
<td>1. Incharge of making the mobile first Josh Skills web portal to improve the
brand's SEO & online presence for their online courses.<br>
2. Incharge of maintaining Josh Skills, Josh Kosh and DigitalBeti.<br>
3. Incharge of managing junior interns, delegating work and coordinating
with all teams.<br>
4. Incharge of developing and managing the Josh Recruitment Portal.</td>
<td>Jun 2020 - Present</td>
<td><a href="assets/files/Internship LOR JoshTalks (JoshSkills).pdf"
target="_blank" class="link-color">View</a></td>
</tr>
<tr>
<td><a href="https://gaiusnetworks.com" class="link-color" target="_blank">GAIUS
Networks</a>
</td>
<td>Full Stack Developer</td>
<td>1. Incharge of making the <a href="https://gaiusnetworks.com"
class="link-color" target="_blank">official web
portal</a> for the company.<br>
2. Responsible for making the official web portal for <a
href="http://bublr-io.netlify.app" class="link-color"
target="_blank">bublr.io</a>, a
community
engagement PWA.<br>
3. Responsible for making the official PWA for <a
href="https://flipped.gaiusnetworks.com" class="link-color"
target="_blank">Flipped
Classrooms</a>, an online
learning enhancement service.</td>
<td>July 2022</td>
<td><a href="assets/files/GAIUS Networks Internship Certificate.pdf"
target="_blank" class="link-color">View</a></td>
</tr>
<tr>
<td><a href="http://www.fametechnologies.in" class="link-color"
target="_blank">Fame Technologies</a></td>
<td>Frontend Developer</td>
<td>1. Responsible for making the <a
href="https://famerecruitstatic.netlify.app" class="link-color"
target="_blank">Fame Recruit</a> all-in-one portal consisting of a
static display page, pages where students can take tests & apply for jobs;
where companies can set challenges and recruit interested students & an
admin portal to monitor everything.<br>
2. Responsible for making the <a href="http://masterconnects.in"
class="link-color" target="_blank">Master Connects</a> portal where
mentors and
mentees can connect with each other and provide or find the help needed to
succeed in life.</td>
<td>April 2020 - May 2020</td>
<td><a href="assets/files/Fametronix Certificate.pdf" target="_blank"
class="link-color">View</a></td>
</tr>
<tr>
<td><a href="https://www.joshtalks.com" class="link-color" target="_blank">Josh
Talks</a></td>
<td>Software Development Intern</td>
<td>1. Incharge of making the frontend for the <a class="link-color"
target="_blank" href="https://goal.tribal.gov.in">Going Online As
Leaders</a> website
portal in association with the Ministry of Tribal Affairs.<br>
2. Incharge of making the frontend for the <a class="link-color"
target="_blank"
href="https://digitalbeti.cscacademy.org">DigitalBeti</a> portal falling
under the Digital India initiative by the Government of India.</td>
<td>Jan 2020 - Feb 2020</td>
<td><a href="assets/files/Internship LOR JoshTalks (GOAL & DigitalBeti).pdf"
target="_blank" class="link-color">View</a></td>
</tr>
<tr>
<td><a class="link-color" target="_blank"
href="https://www.findmind.in">FindMind Analytics</a></td>
<td>Digital Marketing Intern</td>
<td>Incharge of SEO for the company, creation & handling of social media
profiles, Google Analytics, Google Webmaster and Google Ads.</td>
<td>Jun 2019 - Aug 2019</td>
<td><a href="assets/files/FindMind Analytics Internship Certification.pdf"
target="_blank" class="link-color">View</a></td>
</tr>
</tbody>
</table>
</div>
<!-- Work Markdown Section -->
<div id="workMarkdownSection" class="my-3">
<!-- File Name -->
<div class="row mt-n4">
<p class="font-bold">Work.md</p>
</div>
<!-- More Heading -->
<div class="row">
<h1 class="font-bold">Is that all? 🤓</h1>
</div>
<!-- Work Content -->
<div class="row">
<p>The above table contains a list of internships I've done and my role in that company.
</p>
<p>I've also worked on several freelance projects. My most memorable freelance is <a
class="link-color" target="_blank"
href="assets/files/Onlala LOR.pdf">Onlala</a>, a full fledged
e-commerce portal consisting of an <a class="link-color"
href="https://admin.onlala.com" target="_blank">admin portal</a>, <a
class="link-color" href="https://supplier.onlala.com" target="_blank">supplier
portal</a> and <a class="link-color" href="https://www.onlala.com"
target="_blank">shopping portal</a>.</p>
<p>I've also completed the <a class="link-color"
href="assets/files/Inside Sherpa Virtual Internship Certificate (JP Morgan Chase).pdf"
target="_blank">Inside Sherpa Virtual Internship</a> by JP Morgan Chase & Co.
</p>
<p>I like to keep working on something or the other in order to be productive and learn
more while also meeting amazing new people. This is why I keep taking up work and
have at times worked on more than 1 project at once.</p>
</div>
</div>
</div>
<!-- Skills Section -->
<div id="skillsSection" class="col s12 xl7 mx-xl-5">
<!-- Skills Upper Section -->
<div id="skillsTableSection" class="my-3">
<div class="row">
<!-- Buttons -->
<div class="left">
<div class="social p-2">
<svg class="octicon octicon-git-branch" viewBox="0 0 16 16" width="16"
height="15" aria-hidden="true">
<path fill-rule="evenodd"
d="M11.75 2.5a.75.75 0 100 1.5.75.75 0 000-1.5zm-2.25.75a2.25 2.25 0 113 2.122V6A2.5 2.5 0 0110 8.5H6a1 1 0 00-1 1v1.128a2.251 2.251 0 11-1.5 0V5.372a2.25 2.25 0 111.5 0v1.836A2.492 2.492 0 016 7h4a1 1 0 001-1v-.628A2.25 2.25 0 019.5 3.25zM4.25 12a.75.75 0 100 1.5.75.75 0 000-1.5zM3.5 3.25a.75.75 0 111.5 0 .75.75 0 01-1.5 0z">
</path>
</svg> <span class="black-text">skills</span>
</div>
</div>
<div class="right">
<a href="assets/files/resume.pdf" download="Akshat Gupta's Resume">
<div class="p-2 green-social">
<i class="fa fa-download white-text"></i> <span class="white-text">Download
Resume</span>
</div>
</a>
</div>
</div>
</div>
<!-- Skills Markdown Section -->
<div id="skillsMarkdownSection" class="my-3">
<!-- File Name -->
<div class="row mt-n4">
<p class="font-bold">Skills.md</p>
</div>
<!-- Heading -->
<div class="row">
<h1 class="font-bold">My Tech Stack 💻</h1>
</div>
<!-- Tech Stack -->
<div class="row">
<img src="https://img.shields.io/badge/-HTML-red?style=for-the-badge" alt="HTML"> <img
src="https://img.shields.io/badge/-CSS-purple?style=for-the-badge" alt="CSS"> <img
src="https://img.shields.io/badge/-JavaScript-yellow?style=for-the-badge"
alt="JavaScript"> <img
src="https://img.shields.io/badge/-Git-blue?style=for-the-badge" alt="Git"> <img
src="https://img.shields.io/badge/-GitHub-green?style=for-the-badge" alt="GitHub">
<img src="https://img.shields.io/badge/-MaterializeCSS-pink?style=for-the-badge"
alt="MaterializeCSS"> <img
src="https://img.shields.io/badge/-Bootstrap-red?style=for-the-badge"
alt="Bootstrap"> <img
src="https://img.shields.io/badge/-Zurb_Foundation-purple?style=for-the-badge"
alt="Zurb Foundation"> <img
src="https://img.shields.io/badge/-JQuery-yellow?style=for-the-badge" alt="JQuery">
<img src="https://img.shields.io/badge/-React-blue?style=for-the-badge" alt="React">
<img src="https://img.shields.io/badge/-Azure-green?style=for-the-badge" alt="Azure">
<img src="https://img.shields.io/badge/-GCP-pink?style=for-the-badge" alt="GCP">
<img src="https://img.shields.io/badge/-Heroku-red?style=for-the-badge" alt="Heroku">
<img src="https://img.shields.io/badge/-SEO-purple?style=for-the-badge" alt="SEO">
<img src="https://img.shields.io/badge/-SEM-yellow?style=for-the-badge" alt="SEM">
<img src="https://img.shields.io/badge/-PHP-blue?style=for-the-badge" alt="PHP">
</div>
<!-- Heading -->
<div class="row mt-4">
<h1 class="font-bold">What I Am Learning 📙</h1>
</div>
<!-- Learning -->
<div class="row">
<img src="https://img.shields.io/badge/-Flutter-red?style=for-the-badge" alt="Flutter">
<img src="https://img.shields.io/badge/-Django-purple?style=for-the-badge" alt="Django">
<img src="https://img.shields.io/badge/-Docker-yellow?style=for-the-badge" alt="Docker">
<img src="https://img.shields.io/badge/-AWS-blue?style=for-the-badge" alt="AWS">
</div>
<!-- Skills Content -->
<div class="row">
<p>
<b><i>I’ve tried to efficiently maximise productivity out of efforts put into the
activities I’ve
indulged in over the years.</i></b></p>
<p>I'm a Web Developer with keen interest in Cloud Computing, SEO & Digital Marketing.
</p>
<p>
I'm also proficient at public speaking, working in teams, leading teams and
management.
</p>
</div>
</div>
</div>
<!-- Projects Section -->
<div id="projectsSection" class="col s12 xl7 mx-xl-5">
<!-- Projects Upper Section -->
<div id="projectsTableSection" class="my-3">
<div class="row">
<!-- Buttons -->
<div class="left">
<div class="social p-2">
<svg class="octicon octicon-git-branch" viewBox="0 0 16 16" width="16"
height="15" aria-hidden="true">
<path fill-rule="evenodd"
d="M11.75 2.5a.75.75 0 100 1.5.75.75 0 000-1.5zm-2.25.75a2.25 2.25 0 113 2.122V6A2.5 2.5 0 0110 8.5H6a1 1 0 00-1 1v1.128a2.251 2.251 0 11-1.5 0V5.372a2.25 2.25 0 111.5 0v1.836A2.492 2.492 0 016 7h4a1 1 0 001-1v-.628A2.25 2.25 0 019.5 3.25zM4.25 12a.75.75 0 100 1.5.75.75 0 000-1.5zM3.5 3.25a.75.75 0 111.5 0 .75.75 0 01-1.5 0z">
</path>
</svg> <span class="black-text">projects</span>
</div>
</div>
<div class="right">
<a href="assets/files/resume.pdf" download="Akshat Gupta's Resume">
<div class="p-2 green-social">
<i class="fa fa-download white-text"></i> <span class="white-text">Download
Resume</span>
</div>
</a>
</div>
</div>
<!-- Projects List -->
<div class="row">
<!-- Individual Project -->
<div class="col s12 projectBox my-2">
<p><svg class="octicon octicon-repo text-gray" viewBox="0 0 16 16" width="16"
height="16" aria-hidden="true">
<path fill-rule="evenodd"
d="M2 2.5A2.5 2.5 0 014.5 0h8.75a.75.75 0 01.75.75v12.5a.75.75 0 01-.75.75h-2.5a.75.75 0 110-1.5h1.75v-2h-8a1 1 0 00-.714 1.7.75.75 0 01-1.072 1.05A2.495 2.495 0 012 11.5v-9zm10.5-1V9h-8c-.356 0-.694.074-1 .208V2.5a1 1 0 011-1h8zM5 12.25v3.25a.25.25 0 00.4.2l1.45-1.087a.25.25 0 01.3 0L8.6 15.7a.25.25 0 00.4-.2v-3.25a.25.25 0 00-.25-.25h-3.5a.25.25 0 00-.25.25z">
</path>
</svg> <a href="https://github.com/akshatvg/Common-Entry-Test" target="_blank"
class="link-color">akshatvg/<span
class="font-bold">Common-Entry-Test</span></a>
</p>
<div class="row px-3">
<p class="project-text left"> Open
Source
</p>
<p class="right"><a href="https://cet.codechefvit.com"
class="link-color">Demo</a>
</p>
</div>
<div class="row px-3">
<p>- One stop solution to make club and chapter recruitments in VIT simpler and
hassle free.<br />
- This project was used by over 17 clubs, teams and chapters in 2020 with
over 70,000 page views and 3,000+ unique users.</p>
</div>
<div class="row px-3">
<div class="chip">
Recruitments
</div>
<div class="chip">
Clubs
</div>
<div class="chip">
Chapters
</div>
<div class="chip">
VIT
</div>
<div class="chip">
CodeChef
</div>
<div class="chip">
CET
</div>
</div>
</div>
<!-- Individual Project -->
<div class="col s12 projectBox my-2">
<p><svg class="octicon octicon-repo text-gray" viewBox="0 0 16 16" width="16"
height="16" aria-hidden="true">
<path fill-rule="evenodd"
d="M2 2.5A2.5 2.5 0 014.5 0h8.75a.75.75 0 01.75.75v12.5a.75.75 0 01-.75.75h-2.5a.75.75 0 110-1.5h1.75v-2h-8a1 1 0 00-.714 1.7.75.75 0 01-1.072 1.05A2.495 2.495 0 012 11.5v-9zm10.5-1V9h-8c-.356 0-.694.074-1 .208V2.5a1 1 0 011-1h8zM5 12.25v3.25a.25.25 0 00.4.2l1.45-1.087a.25.25 0 01.3 0L8.6 15.7a.25.25 0 00.4-.2v-3.25a.25.25 0 00-.25-.25h-3.5a.25.25 0 00-.25.25z">
</path>
</svg> <a href="https://github.com/CodeChefVIT/Road-To-DEVSOC-Landing"
target="_blank" class="link-color">CodeChefVIT/<span
class="font-bold">Road-To-DEVSOC-Landing</span></a>
</p>
<div class="row px-3">
<p class="project-text left"> Open
Source
</p>
<p class="right"><a href="https://journey.codechefvit.com"
class="link-color">Demo</a>
</p>
</div>
<div class="row px-3">
<p>Official landing page for Road to DEVSOC 21.</p>
</div>
<div class="row px-3">
<div class="chip">
DEVSOC
</div>
<div class="chip">
CodeChef-VIT
</div>
<div class="chip">
Hackathon
</div>
<div class="chip">
#LordOfAllHacks
</div>
</div>
</div>
<!-- Individual Project -->
<div class="col s12 projectBox my-2">
<p><svg class="octicon octicon-repo text-gray" viewBox="0 0 16 16" width="16"
height="16" aria-hidden="true">
<path fill-rule="evenodd"
d="M2 2.5A2.5 2.5 0 014.5 0h8.75a.75.75 0 01.75.75v12.5a.75.75 0 01-.75.75h-2.5a.75.75 0 110-1.5h1.75v-2h-8a1 1 0 00-.714 1.7.75.75 0 01-1.072 1.05A2.495 2.495 0 012 11.5v-9zm10.5-1V9h-8c-.356 0-.694.074-1 .208V2.5a1 1 0 011-1h8zM5 12.25v3.25a.25.25 0 00.4.2l1.45-1.087a.25.25 0 01.3 0L8.6 15.7a.25.25 0 00.4-.2v-3.25a.25.25 0 00-.25-.25h-3.5a.25.25 0 00-.25.25z">
</path>
</svg> <a href="https://github.com/akshatvg/Narrative" target="_blank"
class="link-color">akshatvg/<span class="font-bold">Narrative
</span></a>
</p>
<div class="row px-3">
<p class="project-text left"> Open
Source</p>
<p class="right"><a href="https://narrative.akshatvg.com"
class="link-color">Demo</a>
</p>
</div>
<div class="row px-3">
<p>With Narrative, anyone can express themself creatively and make exciting
comics in minutes through voice based commands and a simple UI.</p>
</div>
</p>
<div class="row px-3">
<div class="chip">
Comic
</div>
<div class="chip">
Voice
</div>
<div class="chip">
Generator
</div>
<div class="chip">
Hackathon
</div>
<div class="chip">
Entertainment
</div>
</div>
</div>
<!-- Individual Project -->
<div class="col s12 projectBox my-2">
<p><svg class="octicon octicon-repo text-gray" viewBox="0 0 16 16" width="16"
height="16" aria-hidden="true">
<path fill-rule="evenodd"
d="M2 2.5A2.5 2.5 0 014.5 0h8.75a.75.75 0 01.75.75v12.5a.75.75 0 01-.75.75h-2.5a.75.75 0 110-1.5h1.75v-2h-8a1 1 0 00-.714 1.7.75.75 0 01-1.072 1.05A2.495 2.495 0 012 11.5v-9zm10.5-1V9h-8c-.356 0-.694.074-1 .208V2.5a1 1 0 011-1h8zM5 12.25v3.25a.25.25 0 00.4.2l1.45-1.087a.25.25 0 01.3 0L8.6 15.7a.25.25 0 00.4-.2v-3.25a.25.25 0 00-.25-.25h-3.5a.25.25 0 00-.25.25z">
</path>
</svg> <a href="https://github.com/akshatvg/So-Many-Languages" target="_blank"
class="link-color">akshatvg/<span
class="font-bold">So-Many-Languages</span></a>
</p>
<div class="row px-3">
<p class="project-text left"> Open
Source</p>
<p class="right"><a href="https://sml.akshatvg.com" class="link-color">Demo</a>
</p>
</div>
<div class="row px-3">
<p>Web application to help convert one programming language's code to another
within seconds while also enabling the user to generate code using just
logic.
</p>
</div>
<div class="row px-3">
<div class="chip">
Code-Converter
</div>
<div class="chip">
Programming
</div>
<div class="chip">
Voice-To-Code
</div>
<div class="chip">
Coding
</div>
</div>
</div>
<!-- Individual Project -->
<div class="col s12 projectBox my-2">
<p><svg class="octicon octicon-repo text-gray" viewBox="0 0 16 16" width="16"
height="16" aria-hidden="true">
<path fill-rule="evenodd"
d="M2 2.5A2.5 2.5 0 014.5 0h8.75a.75.75 0 01.75.75v12.5a.75.75 0 01-.75.75h-2.5a.75.75 0 110-1.5h1.75v-2h-8a1 1 0 00-.714 1.7.75.75 0 01-1.072 1.05A2.495 2.495 0 012 11.5v-9zm10.5-1V9h-8c-.356 0-.694.074-1 .208V2.5a1 1 0 011-1h8zM5 12.25v3.25a.25.25 0 00.4.2l1.45-1.087a.25.25 0 01.3 0L8.6 15.7a.25.25 0 00.4-.2v-3.25a.25.25 0 00-.25-.25h-3.5a.25.25 0 00-.25.25z">
</path>
</svg> <a href="https://github.com/akshatvg/iWheel-inator" target="_blank"
class="link-color">akshatvg/<span class="font-bold">iWheel-inator
</span></a>
</p>
<div class="row px-3">
<p class="project-text left"> Open
Source</p>
</div>
<div class="row px-3">
<p>A multiservice attachable device (to wheelchairs) for the elderly and
handicapped to solve some of the daily challenges faced by millions
worldwide.</p>
</div>
</p>
<div class="row px-3">
<div class="chip">
Virtual-Assistant
</div>
<div class="chip">
Voice
</div>
<div class="chip">
Wheelchair
</div>
<div class="chip">
Disability
</div>
</div>
</div>
</div>
</div>
<!-- Projects Markdown Section -->
<div id="projectsMarkdownSection" class="my-3">
<!-- File Name -->
<div class="row mt-n4">
<p class="font-bold">Projects.md</p>
</div>
<!-- Heading -->
<div class="row">
<h1 class="font-bold">That's it? 😱</h1>
</div>
<!-- Projects Content -->
<div class="row">
<p>No! The above mentioned projects are just a few <b><i>open source</i></b> projects of
mine. I have worked on many more projects, a list of which can be found in the
projects section on my <a href="https://www.linkedin.com/in/akshatvg"
class="link-color">LinkedIn</a>.
</p>
</div>
<!-- Heading -->
<div class="row">
<h1 class="font-bold">Have a look at some more projects made by me 🤩</h1>
</div>
<!-- Other Projects Table -->
<div class="mt-n3">
<table class="responsive-table highlight">
<thead>
<tr>
<th>Project</th>
<th>Description</th>
<th>Link</th>
</tr>
</thead>
<tbody>
<tr>
<td>DigitalBeti</td>
<td>Web portal for Digital Beti in association with Josh Talks and the
Digital India initiative.</td>
<td><a href="https://digitalbeti.cscacademy.org" class="link-color">View</a>
</td>
</tr>
<tr>
<td>Going Online As Leaders</td>
<td>Official Web Portal for Going Online As Leaders in association with the
Tribal Ministry of India, Facebook & JoshTalks.</td>
<td><a href="https://goal.tribal.gov.in" class="link-color">View</a></td>
</tr>
<tr>
<td>Josh Skills</td>
<td>Frontend for the mobile first website for Josh Skills with an aim to
improve the company's SEO & online presence.</td>
<td><a href="https://joshskills.joshtalks.com" class="link-color">View</a>
</td>
</tr>
<tr>
<td>Lyricist</td>
<td>Lyricist helps get musical notes from online music classes
automatically.</td>
<td><a href="https://github.com/akshatvg/Lyricist"
class="link-color">View</a></td>
</tr>
<tr>
<td>Engagement Monitor</td>
<td>Monitor and analyse active or disinterested members of a WhatsApp group.
</td>
<td><a href="https://engagament-monitor.codechefvit.com"
class="link-color">View</a></td>
</tr>
</tbody>
</table>
</div>
<!-- Heading -->
<div class="row mt-4">
<h1 class="font-bold">Want more? 👀</h1>
</div>
<!-- Projects Content -->
<div class="row">
<p>Check out how I open source on my <a href="https://github.com/akshatvg"
class="link-color">GitHub</a> profile.
</p>
</div>
</div>
</div>
<!-- Awards Section -->
<div id="awards-certificationsSection" class="col s12 xl7 mx-xl-5">
<!-- Awards Upper Section -->
<div id="awards-certificatesCommitsSection" class="my-3">
<div class="row">
<!-- Buttons -->
<div class="left">
<div class="social p-2">
<svg class="octicon octicon-git-branch" viewBox="0 0 16 16" width="16"
height="15" aria-hidden="true">
<path fill-rule="evenodd"
d="M11.75 2.5a.75.75 0 100 1.5.75.75 0 000-1.5zm-2.25.75a2.25 2.25 0 113 2.122V6A2.5 2.5 0 0110 8.5H6a1 1 0 00-1 1v1.128a2.251 2.251 0 11-1.5 0V5.372a2.25 2.25 0 111.5 0v1.836A2.492 2.492 0 016 7h4a1 1 0 001-1v-.628A2.25 2.25 0 019.5 3.25zM4.25 12a.75.75 0 100 1.5.75.75 0 000-1.5zM3.5 3.25a.75.75 0 111.5 0 .75.75 0 01-1.5 0z">
</path>
</svg> <span class="black-text">awards-certs</span>
</div>
</div>
<div class="right">
<a href="assets/files/resume.pdf" download="Akshat Gupta's Resume">
<div class="p-2 green-social">
<i class="fa fa-download white-text"></i> <span class="white-text">Download
Resume</span>
</div>
</a>
</div>
</div>
<!-- Awards Table -->
<table class="responsive-table highlight bordered">
<thead class="commitHead">
<tr>
<th>Award</th>
<th>Description</th>
<th>By</th>
<th>When</th>
</tr>
</thead>
<tbody class="commitBody">
<tr>
<td>DEVSPACE 2021</td>
<td>Won the Second Place in the Industrial Collaborations by Dyte track out of
1,414 registered users.</td>
<td>Computer Society of India- VIT University</td>
<td>Mar 2021</td>
</tr>
<tr>
<td>WomenTechies 2021</td>
<td>Won the Second Runner Up award in this women-centric hackathon out of around
380 registered users.</td>
<td>DSC VIT</td>
<td>Mar 2021</td>
</tr>
<tr>
<td>VIT Hack 2020</td>
<td>Won the first place in the Gravitas AI Case partner problem statement as
well as the AWS Educate open challenge out of over 1,200 registered
participants.</td>
<td>Vellore Institute of Technology, Vellore</td>
<td>Oct 2020</td>
</tr>
<tr>
<td>Achiever & Special Achiever Award 2020</td>
<td>Awarded the Achiever Award & Special Achiever Award for exemplary
performance at various National & International events and in recognition of
my academic performance.</td>
<td>Vellore Institute of Technology, Vellore</td>
<td>Sep 2020</td>
</tr>
<tr>
<td>RTE Hack 2020</td>