-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
978 lines (949 loc) · 49 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no" />
<meta content="/" name="app:pageurl" />
<meta name="description"
content="Software Engineer and author at Dev.Junction, specializing in Python/Django, Django Rest Framework, and NextJS (React). Educator and freelancer, based in India, creating a community for developers through content and resources." />
<meta name="author" content="Gaurav Sharma" />
<title>Gaurav Sharma</title>
<meta content="/" name="app:pageurl" />
<meta property="og:title" content="Gaurav Sharma - Portfolio" />
<meta property="og:type" content="website" />
<meta property="og:url" content="https://gaurav.devjunction.in" />
<meta property="og:site_name" content="Gaurav Sharma - Portfolio" />
<meta property="og:image" content="assets/img/website.png" />
<meta property="og:image:type" content="image/png" />
<meta property="og:image:width" content="1350" />
<meta property="og:image:height" content="768" />
<meta property="og:image:alt" content="Gaurav Sharma - Portfolio" />
<meta property="og:description"
content="Software Engineer and author at Dev.Junction, specializing in Python/Django, Django Rest Framework, and NextJS (React). Educator and freelancer, based in India, creating a community for developers through content and resources." />
<meta property="twitter:title" content="Gaurav Sharma - Portfolio" />
<meta property="twitter:description"
content="Software Engineer and author at Dev.Junction, specializing in Python/Django, Django Rest Framework, and NextJS (React). Educator and freelancer, based in India, creating a community for developers through content and resources." />
<meta property="twitter:image" content="assets/img/website.png" />
<meta name="keywords"
content="best freelance developer, top freelance developer in india, best freelance engineer, top freelance engineer in india, best freelancer, best freelance react developer, best django freelance developer, best full stack developer, top react developer, best django developer, best react developer india, best django developer india, best indian software developer, best indian websites developer, best indian web application developer, top web app developer, best react native developer, best freelance react engineer, best django freelance engineer, best full stack engineer, top react engineer, best django engineer, best react engineer india, best django engineer india, best indian software engineer, best indian websites engineer, best indian web application engineer, top web app engineer, best react native engineer" />
<link rel="canonical" href="https://gaurav.devjunction.in/" />
<link rel="prefetch" href="https://gaurav.devjunction.in/" />
<link rel="prerender" href="https://gaurav.devjunction.in/" />
<link rel="preconnect" href="https://fonts.googleapis.com" />
<link rel="preconnect" href="https://www.googletagmanager.com" />
<link rel="preconnect" href="https://cdn.jsdelivr.net" />
<link rel="preconnect" href="https://cdnjs.cloudflare.com" />
<link rel="preconnect" href="https://unpkg.com" />
<link rel="shortcut icon" type="image/png" sizes="16x16" href="assets/img/favicon.png" />
<link async rel="icon" type="image/png" href="assets/img/favicon.png" />
<!-- Bootstrap Icons -->
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap-icons@1.4.0/font/bootstrap-icons.css" />
<!-- Google fonts-->
<link async href="https://fonts.googleapis.com/css?family=Saira+Extra+Condensed:500,700&display=swap"
rel="stylesheet" />
<link async href="https://fonts.googleapis.com/css?family=Muli:400,400i,800,800i&display=swap" rel="stylesheet" />
<!-- Core theme CSS (includes Bootstrap)-->
<link async href="css/styles.min.css" rel="stylesheet" />
<!-- Global site tag (gtag.js) - Google Analytics -->
<script async src="https://www.googletagmanager.com/gtag/js?id=G-GSWXJYLP20"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag() {
dataLayer.push(arguments);
}
gtag("js", new Date());
gtag("config", "G-GSWXJYLP20");
</script>
</head>
<body id="page-top">
<!-- Navigation-->
<nav class="navbar navbar-expand-lg navbar-dark bg-primary fixed-top shadow-lg" id="sideNav">
<a class="navbar-brand js-scroll-trigger" href="#page-top">
<span class="d-block d-lg-none" id="header-title">About Me</span>
<span class="d-none d-lg-block"><img loading="lazy"
class="img-fluid img-profile rounded-circle mx-auto mb-2 shadow-lg" src="assets/img/profile.jpg"
alt="Profile" /></span>
</a>
<button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#navbarSupportedContent"
aria-controls="navbarSupportedContent" aria-expanded="false" aria-label="Toggle navigation">
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse" id="navbarSupportedContent">
<ul class="navbar-nav full-screen-mobile">
<li class="nav-item">
<a class="nav-link js-scroll-trigger active" href="#about">About</a>
</li>
<li class="nav-item">
<a class="nav-link js-scroll-trigger" href="#testimonials">Testimonials</a>
</li>
<li class="nav-item">
<a class="nav-link js-scroll-trigger" href="#experience">Experience</a>
</li>
<li class="nav-item">
<a class="nav-link js-scroll-trigger" href="#education">Education</a>
</li>
<li class="nav-item">
<a class="nav-link js-scroll-trigger" href="#skills">Skills</a>
</li>
<li class="nav-item">
<a class="nav-link js-scroll-trigger" href="#services">Services</a>
</li>
<li class="nav-item">
<a class="nav-link js-scroll-trigger" href="#projects">Personal Projects</a>
</li>
<li class="nav-item">
<a class="nav-link js-scroll-trigger" href="#awards">Awards</a>
</li>
<li class="nav-item">
<a class="nav-link js-scroll-trigger" href="#interests">Interests</a>
</li>
<li class="nav-item">
<a class="nav-link js-scroll-trigger" href="#contactMe">Contact Me</a>
</li>
</ul>
</div>
</nav>
<!-- Page Content-->
<div class="container-fluid p-0">
<!-- About-->
<section class="resume-section" id="about">
<div class="resume-section-content">
<h1 class="mb-0">
GAURAV
<span class="text-primary">SHARMA</span>
</h1>
<div class="subheading">
<strong>Full Stack Engineer</strong> | Educator | Founder |
<br />
<button class="my-3 px-5 btn btn-lg btn-danger rounded shadow-none" type="button" data-toggle="modal"
data-target="#contactMeModal">Contact Me</button>
<a class="my-3 px-5 btn btn-lg btn-secondary rounded shadow-none"
href="https://www.linkedin.com/in/mnamegaurav/" target="_blank">LinkedIn</a>
</div>
<div class="mb-4">
<a href="https://discord.gg/9YnpgB8Rv5" target="_blank"><u><small><strong>JOIN DEVJUNCTION ON
DISCORD</strong></small></u></a>
</div>
<p class="lead mb-5">
Namaste, Thanks for arriving here, I am a Software Engineer with <strong>5+ Years</strong> of experience, proficient in <strong>Django</strong> and <strong>React/NextJS</strong>, with expertise in <strong>Python</strong>, <strong>JavaScript(Typescript)</strong>, also an author of Dev.Junction Blogs & YouTube Channel, expert in Python/Django, Rest Framework, ReactJS/NextJS and TypeScript, currently based in Pune, India. Skilled in <strong>problem-solving</strong>, collaborating effectively, and staying updated with the latest technologies.
</p>
<div class="social-icons">
<a class="shadow social-icon mr-1 mr-md-4" href="https://www.linkedin.com/in/mnamegaurav/" target="_blank"><i
class="bi-linkedin"></i></a>
<a class="shadow social-icon mr-1 mr-md-4" href="https://github.com/mnamegaurav" target="_blank"><i
class="bi-github"></i></a>
<a class="shadow social-icon mr-1 mr-md-4" href="https://www.youtube.com/c/devjunction" target="_blank"><i
class="bi-youtube"></i></a>
<a class="shadow social-icon mr-1 mr-md-4" href="https://www.instagram.com/mnamegaurav/" target="_blank"><i
class="bi-instagram"></i></a>
<a class="shadow social-icon mr-1 mr-md-4" href="https://twitter.com/mnamegaurav" target="_blank"><i
class="bi-twitter"></i></a>
<a class="shadow social-icon mr-1 mr-md-4" href="https://blog.devjunction.in" target="_blank"><i
class="bi-book-half"></i></a>
</div>
</div>
</section>
<!-- Testimonials-->
<section class="resume-section" id="testimonials">
<div class="resume-section-content">
<h2 class="mb-5">Testimonials</h2>
<div class="d-flex flex-column flex-md-row justify-content-between mb-5 shadow-sm p-3 border rounded">
<div class="flex-grow-1">
<h3 class="mb-0">Owen Dixon</h3>
<div class="subheading mb-3">Founder at Best Student Halls</div>
<p>
""" Professional, skilled, efficient and trustworthy. Readily
available throughout the project, he was happy to provide advice
on areas he did not have to and had great communication skills.
The work was completed on time too. We would happily work with
Gaurav again and I would strongly recommend him to any business
or individual requiring his skill set.
</p>
</div>
<div class="flex-shrink-0">
<span class="text-primary">April 20, 2021</span>
</div>
</div>
<div class="d-flex flex-column flex-md-row justify-content-between mb-5 shadow-sm p-3 border rounded">
<div class="flex-grow-1">
<h3 class="mb-0">Viraj Deshwal</h3>
<div class="subheading mb-3">Leading AI @ Yum! Brands</div>
<p>
""" I got a chance to work with Gaurav in building an AI
platform. I would say Gaurav got an amazing skill set in
bringing UX design to the real-world web app. It is hard to find
a talent like Gaurav when it comes to building a web app from
scratch. I will definitely recommend Gaurav to folks who want to
build their web platform within no time :)
</p>
</div>
<div class="flex-shrink-0">
<span class="text-primary">July 25, 2021</span>
</div>
</div>
<div class="d-flex flex-column flex-md-row justify-content-between mb-5 shadow-sm p-3 border rounded">
<div class="flex-grow-1">
<h3 class="mb-0">Ketan Bansal</h3>
<div class="subheading mb-3">Vice President of Technology, Skylark Labs</div>
<p>
""" Gaurav Sharma is an asset to our team, showcasing exceptional organizational skills and a robust understanding of our products. His ability to work collaboratively ensures we stay on track and deliver effectively.
</p>
<p>
His quick grasp of complex concepts and his methodical approach to project execution make him a standout colleague. Gaurav is someone I confidently recommend for any role requiring strong product understanding and team collaboration.
</p>
</div>
<div class="flex-shrink-0">
<span class="text-primary">November 07, 2023</span>
</div>
</div>
<div class="d-flex flex-column flex-md-row justify-content-between mb-5 shadow-sm p-3 border rounded">
<div class="flex-grow-1">
<h3 class="mb-0">Karthik Dasari</h3>
<div class="subheading mb-3">SDE-1 at Skylark Labs</div>
<p>
""" I've had the pleasure of working with Gaurav Sharma for the past six months, and I highly recommend him as a Full Stack Developer. Gaurav's expertise in Django and React JS is top-notch, and his commitment to delivering high-quality work is commendable. He's a reliable and collaborative team member, and his problem-solving skills are exceptional. Gaurav would be a valuable addition to any team.
</p>
</div>
<div class="flex-shrink-0">
<span class="text-primary">November 09, 2023</span>
</div>
</div>
<div class="d-flex flex-column flex-md-row justify-content-between mb-5 shadow-sm p-3 border rounded">
<div class="flex-grow-1">
<h3 class="mb-0">Mansi Sonawane</h3>
<div class="subheading mb-3">SDE-1 at Skylark Labs</div>
<p>
""" I'm delighted to recommend Gaurav Sharma, a colleague whose helpful nature and solid knowledge base have been invaluable. Their cheerful personality adds a different vibe to our work environment, and he consistently manage to complete tasks promptly. Had good experience working with Gaurav Sharma.
</p>
</div>
<div class="flex-shrink-0">
<span class="text-primary">December 20, 2023</span>
</div>
</div>
<div class="d-flex flex-column flex-md-row justify-content-between mb-5 shadow-sm p-3 border rounded">
<div class="flex-grow-1">
<h3 class="mb-0">Shobha Shelke</h3>
<div class="subheading mb-3">SDE-1 at Skylark Labs</div>
<p>
""" As a software developer, I have worked with Gaurav and can attest to their coding and technical abilities. He is an expert in Django, Python, React, Javascript, and Typescript, and he has consistently created high-quality, scalable software solutions. He is an amazing teammate who is not only multi-skilled and intelligent, but also has an inspired strategy. Excellent individual.I recommend Gaurav to any company who will looking for a full-stack developer.
</p>
</div>
<div class="flex-shrink-0">
<span class="text-primary">December 09, 2023</span>
</div>
</div>
<div class="d-flex flex-column flex-md-row justify-content-between mb-5 shadow-sm p-3 border rounded">
<div class="flex-grow-1">
<h3 class="mb-0">Revati Biskunde</h3>
<div class="subheading mb-3">Marketing & Strategic Business Planning Head</div>
<p>
""" I've had the pleasure of knowing Gaurav both professionally and personally, and I can't recommend him enough. Gaurav is an incredibly talented individual with a strong work ethic and a keen eye for detail. His problem-solving skills and dedication to his work are truly admirable. Gaurav is not only a skilled professional but also a reliable and trustworthy friend. He's the kind of person you can always count on. I have no doubt that he will continue to achieve great things in his career, and I'm excited to see his future successes.
</p>
</div>
<div class="flex-shrink-0">
<span class="text-primary">November 07, 2023</span>
</div>
</div>
<div class="d-flex flex-column flex-md-row justify-content-between mb-5 shadow-sm p-3 border rounded">
<div class="flex-grow-1">
<h3 class="mb-0">Lavlesh Pandey</h3>
<div class="subheading mb-3">Sr. UI/UX Designer</div>
<p>
""" I had the pleasure of working with Gaurav Sharma and wholeheartedly recommend him. Gaurav is a multi-talented professional, excelling as a Full-Stack Developer. His development skills bring web applications to life seamlessly. Gaurav is a great collaborator, contributing valuable insights and going the extra mile to ensure project success. He's a versatile and dedicated team member who I'd gladly work with again in the future.
</p>
</div>
<div class="flex-shrink-0">
<span class="text-primary">November 07, 2023</span>
</div>
</div>
<div class="d-flex flex-column flex-md-row justify-content-between mb-5 shadow-sm p-3 border rounded">
<div class="flex-grow-1">
<h3 class="mb-0">Prem Kumar Verma</h3>
<div class="subheading mb-3">Machine Learning Engineer</div>
<p>
""" I strongly recommend Gaurav Sharma Sir, a senior full-stack developer at Skylark Labs. Gaurav's exceptional technical skills and dedication have significantly contributed to the success of our projects. Notably, he goes above and beyond by actively engaging in Machine Learning works, showcasing his versatility. His positive attitude, effective communication, and collaborative spirit make him an invaluable asset to any team. I wholeheartedly endorse Gaurav for his outstanding contributions in both full-stack development and Machine Learning.
</p>
</div>
<div class="flex-shrink-0">
<span class="text-primary">December 20, 2023</span>
</div>
</div>
<div class="d-flex flex-column flex-md-row justify-content-between mb-5 shadow-sm p-3 border rounded">
<div class="flex-grow-1">
<h3 class="mb-0">Phani Ponnapalli</h3>
<div class="subheading mb-3">Founder at APlusTopper</div>
<p>
""" Gaurav did an amazing job building Django Based web
applications. We approached him for couple of Django projects.
</p>
</div>
<div class="flex-shrink-0">
<span class="text-primary">June 22, 2022</span>
</div>
</div>
</div>
</section>
<hr class="m-0" />
<!-- Experience-->
<section class="resume-section" id="experience">
<div class="resume-section-content">
<h2 class="mb-5">Experience</h2>
<div class="d-flex flex-column flex-md-row justify-content-between mb-5 shadow-sm p-3 border rounded">
<div class="flex-grow-1">
<h3 class="mb-0">Staff Engineer (Associate)</h3>
<div class="subheading mb-3">Nagarro</div>
<p>
Engineering cool stuff at Nagarro in a strategic collaboration with ZS Associates.
</p>
</div>
<div class="flex-shrink-0">
<span class="text-primary">July 2024 - Present</span>
</div>
</div>
<div class="d-flex flex-column flex-md-row justify-content-between mb-5 shadow-sm p-3 border rounded">
<div class="flex-grow-1">
<h3 class="mb-0">Founder & Educator</h3>
<div class="subheading mb-3">Dev.Junction</div>
<p>
Learning is a never ending process, I started this initiative to
spread my knowledge to reach everyone through LinkedIn, YouTube
and Discord. Dev.Junction is an online community, and a YouTube
channel.
</p>
</div>
<div class="flex-shrink-0">
<span class="text-primary">Nov 2020 - Dec 2023</span>
</div>
</div>
<div class="d-flex flex-column flex-md-row justify-content-between mb-5 shadow-sm p-3 border rounded">
<div class="flex-grow-1">
<h3 class="mb-0">Full Stack Engineer</h3>
<div class="subheading mb-3">Skylark Labs</div>
<p>
Worked as a Full Stack Engineer at Skylark Labs India on security products such as Foreign Object Debris for Indian Navy, Intrusion Detection for Defense Organization of India and USA, and some other commercial products such Intelligent Traffic Management System (ITMS), Generic Dashboard also known as Multi Stream-Multi Solution for City Surveillance, ITMS, Fire Detection, PPE Detection etc. Lead a team of engineers for accident hotspot detection with Mercedes.
</p>
</div>
<div class="flex-shrink-0">
<span class="text-primary">Feb 2023 - June 2024</span>
</div>
</div>
<div class="d-flex flex-column flex-md-row justify-content-between mb-5 shadow-sm p-3 border rounded">
<div class="flex-grow-1">
<h3 class="mb-0">Freelance Full Stack Developer</h3>
<div class="subheading mb-3">Individual Freelancer</div>
<p>
Working as a Freelance developer with my primary stack
Django(Python) + NextJS(React), helping startups and small
businesses to help them build their online presence through Web
Apps, Mobile Apps and websites.
</p>
</div>
<div class="flex-shrink-0">
<span class="text-primary">May 2022 - Jan 2023</span>
</div>
</div>
<div class="d-flex flex-column flex-md-row justify-content-between mb-5 shadow-sm p-3 border rounded">
<div class="flex-grow-1">
<h3 class="mb-0">Full Stack Developer</h3>
<div class="subheading mb-3">
Best Student Halls Pvt. Ltd.(London, England)
</div>
<p>
Worked as a Full Stack developer, making amazing user
experiences, building the scalable backend through code.
</p>
</div>
<div class="flex-shrink-0">
<span class="text-primary">Oct 2021 - April 2022</span>
</div>
</div>
<div class="d-flex flex-column flex-md-row justify-content-between mb-5 shadow-sm p-3 border rounded">
<div class="flex-grow-1">
<h3 class="mb-0">Freelance React Developer</h3>
<div class="subheading mb-3">Reinforce AI(California, USA)</div>
<p>
Single-handedly built the full-fledged, optimized, and efficient
frontend application for Reinforce AI, The one-stop platform for
machine learning to build, train, and deploy.
</p>
</div>
<div class="flex-shrink-0">
<span class="text-primary">June 2021 - October 2021</span>
</div>
</div>
<div class="d-flex flex-column flex-md-row justify-content-between mb-5 shadow-sm p-3 border rounded">
<div class="flex-grow-1">
<h3 class="mb-0">Freelance Web Developer</h3>
<div class="subheading mb-3">
A Plus Topper Pvt. Ltd.(Hyderabad, Telengana - India)
</div>
<p>
Created a web based push notification management system for
website owners.
</p>
</div>
<div class="flex-shrink-0">
<span class="text-primary">May 2021 - May 2021</span>
</div>
</div>
<div class="d-flex flex-column flex-md-row justify-content-between mb-5 shadow-sm p-3 border rounded">
<div class="flex-grow-1">
<h3 class="mb-0">Freelance Django Developer</h3>
<div class="subheading mb-3">
Best Student Halls Pvt. Ltd.(London, England)
</div>
<p>
Started working on BSH project migration to latest Django
version and improving from the older system
</p>
</div>
<div class="flex-shrink-0">
<span class="text-primary">March 2021 - April 2021</span>
</div>
</div>
<div class="d-flex flex-column flex-md-row justify-content-between mb-5 shadow-sm p-3 border rounded">
<div class="flex-grow-1">
<h3 class="mb-0">Jr. Software Engineer</h3>
<div class="subheading mb-3">
Honest Conversations (Brandlogist Pvt. Ltd.)
</div>
<p>
Build the entire backend system of Honest Conversations, an
online version of Offline meetup system, to solve lonliness and
mental health issues.
</p>
</div>
<div class="flex-shrink-0">
<span class="text-primary">August 2020 - Jan 2021</span>
</div>
</div>
<div class="d-flex flex-column flex-md-row justify-content-between mb-5 shadow-sm p-3 border rounded">
<div class="flex-grow-1">
<h3 class="mb-0">Full Stack Web Developer - Internship</h3>
<div class="subheading mb-3">
EmpowerU (Promorph Solutions Pvt. Ltd.) - IIT Kanpur
</div>
<p>
Worked as a Full Stack Django Developer. Experience with REST
API, Data Analytics and Database. Lead in building the EmpowerU
Learning Platform Web Portal. Developed the Dashboard of
EmpowerU Tripura project to showcase the live statistics of
students and teachers from tripura schools.
</p>
</div>
<div class="flex-shrink-0">
<span class="text-primary">December 2019 - June 2020</span>
</div>
</div>
</div>
</section>
<hr class="m-0" />
<!-- Education-->
<section class="resume-section" id="education">
<div class="resume-section-content">
<h2 class="mb-5">Education</h2>
<div class="d-flex flex-column flex-md-row justify-content-between mb-5 shadow-sm p-3 border rounded">
<div class="flex-grow-1">
<h3 class="mb-0">Diploma in Information Technology</h3>
<div class="subheading mb-3">Government Polytechnic - Kanpur</div>
<div>Board Of Technical Education - Uttar Pradesh</div>
<p>79.30%</p>
</div>
<div class="flex-shrink-0">
<span class="text-primary">August 2016 - June 2019</span>
</div>
</div>
<div class="d-flex flex-column flex-md-row justify-content-between mb-5 shadow-sm p-3 border rounded">
<div class="flex-grow-1">
<h3 class="mb-0">B.Sc.(General)</h3>
<div class="subheading mb-3">
Maa Sharda Mahavidyalaya, Bindki Road - Fatehpur
</div>
<div>Chhatrapati Shahu Ji Maharaj University - Kanpur</div>
<p>57.55%</p>
</div>
<div class="flex-shrink-0">
<span class="text-primary">August 2014 - May 2017</span>
</div>
</div>
<div class="d-flex flex-column flex-md-row justify-content-between mb-5 shadow-sm p-3 border rounded">
<div class="flex-grow-1">
<h3 class="mb-0">Class 12th - Intermediate</h3>
<div class="subheading mb-3">S.V.M. Inter College - Fatehpur</div>
<div>
Board of High School and Intermediate Education - Uttar Pradesh
</div>
<p>90.6%</p>
</div>
<div class="flex-shrink-0">
<span class="text-primary">July 2012 - May 2014</span>
</div>
</div>
</div>
</section>
<hr class="m-0" />
<!-- Skills-->
<section class="row mx-0 resume-section" id="skills" style="overflow-x: hidden">
<div class="col-12 resume-section-content px-0 pr-md-2">
<h2 class="mb-5">Skills</h2>
<div class="subheading mb-3">
Programming Languages, Libraries & Tools
</div>
<ul class="list-inline dev-icons text-center justify-content-center shadow-sm border rounded">
<li class="list-inline-item">
<img loading="lazy" height="48" src="https://img.icons8.com/nolan/64/python.png"
alt="Python" />
<p class="m-0 font-weight-bold skill__title">Python</p>
</li>
<li class="list-inline-item">
<img loading="lazy" height="48" src="https://img.icons8.com/dusk/64/000000/javascript-logo.png"
alt="JavaScript" />
<p class="m-0 font-weight-bold skill__title">JavaScript</p>
</li>
<li class="list-inline-item">
<img loading="lazy" height="48" src="https://img.icons8.com/external-tal-revivo-shadow-tal-revivo/48/external-typescript-an-open-source-programming-language-developed-and-maintained-by-microsoft-logo-shadow-tal-revivo.png"
alt="TypeScript" />
<p class="m-0 font-weight-bold skill__title">TypeScript</p>
</li>
<li class="list-inline-item">
<img loading="lazy" height="48" src="https://img.icons8.com/color/48/000000/django.png"
alt="Django" />
<p class="m-0 font-weight-bold skill__title">Django</p>
</li>
<li class="list-inline-item">
<img loading="lazy" height="48" src="https://www.django-rest-framework.org/img/logo.png"
alt="DRF" />
<p class="m-0 font-weight-bold skill__title">DRF</p>
</li>
<li class="list-inline-item">
<img loading="lazy" height="48" src="https://img.icons8.com/dusk/50/000000/react.png"
alt="React" />
<p class="m-0 font-weight-bold skill__title">React</p>
</li>
<li class="list-inline-item">
<img loading="lazy" width="100%" height="64" src="https://img.icons8.com/ios-filled/50/000000/circled-n.png"
alt="NextJS" />
<p class="m-0 font-weight-bold skill__title">NextJS</p>
</li>
<li class="list-inline-item">
<img loading="lazy" height="48" src="https://img.icons8.com/color/50/000000/redux.png"
alt="Redux" />
<p class="m-0 font-weight-bold skill__title">Redux</p>
</li>
<li class="list-inline-item">
<img loading="lazy" height="48" src="https://img.icons8.com/color/48/000000/postgreesql.png"
alt="PostgreSQL" />
<p class="m-0 font-weight-bold skill__title">PostgreSQL</p>
</li>
<li class="list-inline-item">
<img loading="lazy" width="100%" height="64" src="https://img.icons8.com/fluent/64/000000/mysql-logo.png"
alt="MySQL" />
<p class="m-0 font-weight-bold skill__title">MySQL</p>
</li>
<li class="list-inline-item">
<img loading="lazy" width="100%" height="64" src="https://img.icons8.com/color/50/000000/docker.png"
alt="Docker" />
<p class="m-0 font-weight-bold skill__title">Docker</p>
</li>
<li class="list-inline-item">
<img loading="lazy" height="48" src="https://img.icons8.com/color/48/000000/redis.png"
alt="Redis" />
<p class="m-0 font-weight-bold skill__title">Redis</p>
</li>
<li class="list-inline-item">
<img loading="lazy" height="48" src="https://img.icons8.com/color/48/000000/elasticsearch.png"
alt="Elasticsearch" />
<p class="m-0 font-weight-bold skill__title">Elasticsearch</p>
</li>
<li class="list-inline-item">
<img loading="lazy" height="48" src="https://img.stackshare.io/service/1075/celery.png"
alt="Celery" />
<p class="m-0 font-weight-bold skill__title">Celery</p>
</li>
<li class="list-inline-item">
<img loading="lazy" height="48" src="https://img.icons8.com/color/48/000000/firebase.png"
alt="FCM" />
<p class="m-0 font-weight-bold skill__title">FCM</p>
</li>
<li class="list-inline-item">
<img loading="lazy" height="48" src="https://img.icons8.com/dusk/50/000000/api.png"
alt="Rest API" />
<p class="m-0 font-weight-bold skill__title">Rest API</p>
</li>
<li class="list-inline-item">
<img loading="lazy" height="48" src="https://img.icons8.com/nolan/48/linux--v2.png"
alt="Linux" />
<p class="m-0 font-weight-bold skill__title">Linux</p>
</li>
<li class="list-inline-item">
<img loading="lazy" height="48"
src="https://img.icons8.com/color/48/000000/amazon-web-services.png" alt="AWS" />
<p class="m-0 font-weight-bold skill__title">AWS</p>
</li>
<li class="list-inline-item">
<img loading="lazy" height="48"
src="https://img.icons8.com/color/48/nginx.png" alt="Nginx" />
<p class="m-0 font-weight-bold skill__title">Nginx</p>
</li>
<li class="list-inline-item">
<img loading="lazy" height="48"
src="https://img.icons8.com/color/48/mongodb.png" alt="MongoDB" />
<p class="m-0 font-weight-bold skill__title">MongoDB</p>
</li>
<li class="list-inline-item">
<img loading="lazy" height="48" src="https://img.icons8.com/color/48/000000/bootstrap.png"
alt="Bootstrap" />
<p class="m-0 font-weight-bold skill__title">Bootstrap</p>
</li>
<li class="list-inline-item">
<img loading="lazy" height="48" src="https://img.icons8.com/color/50/000000/material-ui.png"
alt="Material UI" />
<p class="m-0 font-weight-bold skill__title">Material UI</p>
</li>
<li class="list-inline-item">
<img loading="lazy" height="48" src="https://img.icons8.com/dusk/50/000000/css3.png"
alt="CSS3" />
<p class="m-0 font-weight-bold skill__title">CSS</p>
</li>
<li class="list-inline-item">
<img loading="lazy" height="48" src="https://img.icons8.com/color/48/000000/sass.png"
alt="SASS" />
<p class="m-0 font-weight-bold skill__title">SCSS</p>
</li>
<li class="list-inline-item">
<img loading="lazy" height="48" src="https://img.icons8.com/dusk/50/000000/html-5.png"
alt="HTML" />
<p class="m-0 font-weight-bold skill__title">HTML</p>
</li>
</ul>
</div>
<div class="col-12 img-responsive mt-5 w-100" style="overflow-x: auto">
<img loading="lazy" align="center"
src="https://github-readme-stats.vercel.app/api/top-langs?username=mnamegaurav&show_icons=true&theme=radical"
alt="Github top language statistics" />
<img loading="lazy"
src="https://github-readme-stats.vercel.app/api?username=mnamegaurav&show_icons=true&theme=radical"
alt="Github statistics" />
</div>
</section>
<hr class="m-0" />
<!-- Services-->
<section class="resume-section" id="services">
<div class="resume-section-content row">
<h2 class="mb-5 col-12">Deliverable(Services) & Workflow</h2>
<div class="col-12 col-lg-6">
<div class="subheading mb-3 mt-4 mt-lg-auto">Deliverables</div>
<ul class="mb-0 list-group shadow-sm">
<li class="list-group-item list-group-item-action">
<i class="bi bi-award text-primary"></i>
Freelancing as a Full-Stack Engineer.
</li>
<li class="list-group-item list-group-item-action">
<i class="bi bi-award text-primary"></i>
Consultation/Support
</li>
<li class="list-group-item list-group-item-action">
<i class="bi bi-award text-primary"></i>
Landing Websites
</li>
<li class="list-group-item list-group-item-action">
<i class="bi bi-award text-primary"></i>
Custom Web Applications
</li>
<li class="list-group-item list-group-item-action">
<i class="bi bi-award text-primary"></i>
Minimum Viable Product (MVP)
</li>
<li class="list-group-item list-group-item-action">
<i class="bi bi-award text-primary"></i>
Single Page Application (SPA)
</li>
<li class="list-group-item list-group-item-action">
<i class="bi bi-award text-primary"></i>
Dashboards/Management Systems
</li>
</ul>
</div>
<div class="col-12 col-lg-6">
<div class="subheading mb-3 mt-4 mt-lg-auto">Workflow</div>
<ul class="mb-0 list-group shadow-sm">
<li class="list-group-item list-group-item-action">
<i class="bi bi-check-circle text-primary"></i>
Mobile-First, Responsive Design.
</li>
<li class="list-group-item list-group-item-action">
<i class="bi bi-check-circle text-primary"></i>
Cross Browser Testing & Debugging.
</li>
<li class="list-group-item list-group-item-action">
<i class="bi bi-check-circle text-primary"></i>
Creating documentation of the project for further contribution.
</li>
<li class="list-group-item list-group-item-action">
<i class="bi bi-check-circle text-primary"></i>
Continuous integration and Continuous delivery.
</li>
<li class="list-group-item list-group-item-action">
<i class="bi bi-check-circle text-primary"></i>
Dockerizing the application.
</li>
<li class="list-group-item list-group-item-action">
<i class="bi bi-check-circle text-primary"></i>
API Development with Robust Authentication (MFA & OAuth).
</li>
</ul>
</div>
</div>
</section>
<hr class="m-0" />
<!-- Projects-->
<section class="resume-section" id="projects">
<div class="resume-section-content">
<h2 class="mb-5">Personal Projects</h2>
<div class="my-5">
<!-- <h4 class="ml-4 mb-2">Personal Projects</h4> -->
<ul class="mb-0 list-group shadow-sm">
<li class="list-group-item list-group-item-action d-flex justify-content-between align-items-center">
<div>
<i class="bi-kanban text-info"></i>
Dev Resources - One Destination for all the learning
resources.
</div>
<div>
<a href="https://devjunction-devresources.herokuapp.com/" target="_blank">Live</a> | <a
href="https://github.com/mnamegaurav/devresources" target="_blank">GitHub</a>
</div>
</li>
<li class="list-group-item list-group-item-action d-flex justify-content-between align-items-center">
<div>
<i class="bi-kanban text-info"></i>
E-Nursery - A Store to buy the plants from home.
</div>
<div>
<a href="https://enursery.netlify.app/" target="_blank">Live</a> | <a
href="https://github.com/mnamegaurav/e-nursery" target="_blank">GitHub</a>
</div>
</li>
<li class="list-group-item list-group-item-action d-flex justify-content-between align-items-center">
<div>
<i class="bi-kanban text-info"></i>
Insta Clone - Created as a part of my Video Session series
named Easy Django on Youtube.
</div>
<div>
<a href="https://devjunction-insta-clone.herokuapp.com/" target="_blank">Live</a> | <a
href="https://github.com/mnamegaurav/django_insta_clone" target="_blank">GitHub</a>
</div>
</li>
<li class="list-group-item list-group-item-action d-flex justify-content-between align-items-center">
<div>
<i class="bi-kanban text-info"></i>
Pushify - A Push Notification Management Application for any
kind of websites.
</div>
<div>
<a href="https://mnamegaurav-pushify.herokuapp.com/" target="_blank">Live</a> | <a
href="https://github.com/mnamegaurav/pushify" target="_blank">GitHub</a>
</div>
</li>
<li class="list-group-item list-group-item-action d-flex justify-content-between align-items-center">
<div>
<i class="bi-kanban text-info"></i>
Word Count Visualizer - A word count visualizer using Flask +
ChartJS + jQuery with Vanilla JS.
</div>
<div>
<a href="https://gaurav-word-count-visualize.herokuapp.com/"
target="_blank">Live</a> | <a
href="https://github.com/mnamegaurav/flask_word_count_visualizer" target="_blank">GitHub</a>
</div>
</li>
<li class="list-group-item list-group-item-action d-flex justify-content-between align-items-center">
<div>
<i class="bi-kanban text-info"></i>
The Linux Blog - My First ever personal project as a Django
developer for learning purposes in 2019.
</div>
<div>
<a href="https://devjunction-blog.herokuapp.com/" target="_blank">Live</a> | <a
href="https://github.com/mnamegaurav/django_personal_blog" target="_blank">GitHub</a>
</div>
</li>
<li class="list-group-item list-group-item-action d-flex justify-content-between align-items-center">
<div>
<i class="bi-kanban text-info"></i>
Learn With Me - A Personal Blog built using jekyll.
</div>
<div>
<a href="https://learnwithme.club/" target="_blank">Live</a> | <a
href="https://github.com/mnamegaurav/learn-with-me" target="_blank">GitHub</a>
</div>
</li>
<li class="list-group-item list-group-item-action d-flex justify-content-between align-items-center">
<div>
<i class="bi-kanban text-info"></i>
Lead Manager App - Build using ReactJS and Django Rest
Framework.
</div>
<div>
<a href="https://mnamegaurav-leadmanager.herokuapp.com/" target="_blank">Live</a> | <a
href="https://github.com/mnamegaurav/django_reactjs_leadmanager" target="_blank">GitHub</a>
</div>
</li>
<li class="list-group-item list-group-item-action d-flex justify-content-between align-items-center">
<div>
<i class="bi-kanban text-info"></i>
Weather Dashboard - Created as a part of my Video Session
series named Easy Django on Youtube.
</div>
<div>
<a href="https://devjunction-weather.herokuapp.com/" target="_blank">Live</a> | <a
href="https://github.com/mnamegaurav/django_weather_app" target="_blank">GitHub</a>
</div>
</li>
<li class="list-group-item list-group-item-action d-flex justify-content-between align-items-center">
<div>
<i class="bi-kanban text-info"></i>
ToDo App - A simple todo web app, created just for the purpose
of learning in 2019 using Django.
</div>
<div>
<a href="https://devjunction-todoapp.herokuapp.com/" target="_blank">Live</a> | <a
href="https://github.com/mnamegaurav/django_simple_todo_app" target="_blank">GitHub</a>
</div>
</li>
</ul>
</div>
</div>
</section>
<hr class="m-0" />
<!-- Awards-->
<section class="resume-section" id="awards">
<div class="resume-section-content">
<h2 class="mb-5">Awards & Certifications</h2>
<ul class="mb-0 list-group shadow-sm">
<li class="list-group-item list-group-item-action">
<i class="bi-trophy-fill text-warning"></i>
INSPIRE Scholarship for Higher Education (SHE) by the Department
of Science and Technology (DST), Government of India.
</li>
<li class="list-group-item list-group-item-action">
<i class="bi-trophy-fill text-warning"></i>
NPTEL Certification in ‘Programming, Data Structures and
Algorithms in Python’. (Roll No.-NOC19CS40S21510062)
</li>
<li class="list-group-item list-group-item-action">
<i class="bi-trophy-fill text-warning"></i>
Full Stack with Django and ReactJS from Learn Code Online (LCO).
<a href="http://courses.learncodeonline.in/learn/certificate/3315402-71676"><i class="bi-link"></i></a>
</li>
<li class="list-group-item list-group-item-action">
<i class="bi-trophy-fill text-warning"></i>
Udemy Certification in ‘Try Django 2.2 - Web Development with
Python’.
<a href="http://ude.my/UC-F44U0A7W"><i class="bi-link"></i></a>
</li>
<li class="list-group-item list-group-item-action">
<i class="bi-trophy-fill text-warning"></i>
Front-End Web UI Frameworks and Tools: Bootstrap 4 - Coursera
<a href="https://www.coursera.org/account/accomplishments/certificate/4JFRMRTLQNDJ"><i
class="bi-link"></i></a>
</li>
<li class="list-group-item list-group-item-action">
<i class="bi-trophy-fill text-warning"></i>
Introduction to databases and SQL Querying - Udemy
<a href="http://ude.my/UC-171177c1-0186-47ac-91b3-583c946571da"><i class="bi-link"></i></a>
</li>
<li class="list-group-item list-group-item-action">
<i class="bi-trophy-fill text-warning"></i>
Using Databases With Python - Coursera
<a href="http://coursera.org/verify/47P9NBTV5B6T"><i class="bi-link"></i></a>
</li>
</ul>
</div>
</section>
<hr class="m-0" />
<!-- Interests-->
<section class="resume-section" id="interests">
<div class="resume-section-content">
<h2 class="mb-5">Interests</h2>
<p>
Other than being a Web Development Engineer, I am an active Cyclist, also
involved in Teaching & Mentorship through my LinkedIn profile & my
YouTube channel.
</p>
<p>
I have my own YouTube channel, where I teach people how to build
efficient and scalable web applications in the easiest way possible.
As I love teaching and sharing my knowledge any way possible and I
regularly do it on my LinkedIn profile.
</p>
<p class="mb-0">Live your life, we all have only one.</p>
<h1 class="mt-5">Thanks</h1>
</div>
</section>
<hr class="m-0" />
<!-- Contact Me -->
<section class="resume-section" id="contactMe">
<div class="resume-section-content">
<!-- <h2 class="mb-5">Contact Me</h2> -->
<div style="height: 100%;">
<iframe
src="https://docs.google.com/forms/d/e/1FAIpQLSdR9x3pM_EdxTIytbcmKmRefcaZWo0y1_IpTXbyd4n_f30f4g/viewform?embedded=true"
width="100%" height="1200" frameborder="0" marginheight="0" marginwidth="0">Loading…</iframe>
</div>
</div>
</section>
</div>
<!-- Modal -->
<div class="pr-0 modal fade" id="contactMeModal" tabindex="-1" role="dialog" aria-labelledby="contactMeModalLabel"
aria-hidden="true">
<div class="modal-dialog" role="document" style="max-width: 100vw;margin: auto;">
<div class="modal-content">
<div class="modal-header">
<h5 class="modal-title" id="contactMeModalLabel">Contact Me</h5>
<button type="button" class="close" data-dismiss="modal" aria-label="Close">
<span aria-hidden="true">×</span>
</button>
</div>
<div class="modal-body" style="height: 100vh;">
<iframe
src="https://docs.google.com/forms/d/e/1FAIpQLSdR9x3pM_EdxTIytbcmKmRefcaZWo0y1_IpTXbyd4n_f30f4g/viewform?embedded=true"
width="100%" height="100%" frameborder="0" marginheight="0" marginwidth="0">Loading…</iframe>
</div>
<div class="modal-footer">
<button type="button" class="btn btn-secondary" data-dismiss="modal">
Close
</button>
</div>
</div>
</div>
</div>
<!-- Bootstrap core JS-->
<script defer src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.6.0/jquery.min.js"
integrity="sha512-894YE6QWD5I59HgZOGReFYm4dnWc1Qt5NtvYSaNcOP+u1T9qYdvdihz0PPSiiqn/+/3e7Jo4EaG7TubfWGUrMQ=="
crossorigin="anonymous"></script>
<script defer src="https://cdnjs.cloudflare.com/ajax/libs/twitter-bootstrap/4.6.0/js/bootstrap.bundle.min.js"
integrity="sha512-wV7Yj1alIZDqZFCUQJy85VN+qvEIly93fIQAN7iqDFCPEucLCeNFz4r35FCo9s6WrpdDQPi80xbljXB8Bjtvcg=="
crossorigin="anonymous"></script>
<script defer src="https://cdnjs.cloudflare.com/ajax/libs/jquery-easing/1.4.1/jquery.easing.min.js"></script>
<script defer src="js/scripts.js"></script>
<script async src="https://unpkg.com/github-corners@latest/dist/embed.min.js"
data-href="https://github.com/mnamegaurav" data-target="_blank" data-label="Checkout the Github Repo!"></script>
<style>
.github-corner>svg {
fill: #7138bdd9;
right: 0;
top: 0;
transform: scale(1, 1);
position: fixed;
}
@media only screen and (max-width: 576px) {
.github-corner>svg {
top: 54px;
}
}
</style>
</body>
</html>