-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
510 lines (439 loc) · 22.3 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta content="width=device-width, initial-scale=1.0" name="viewport">
<title>My Portfolio</title>
<meta content="" name="description">
<meta content="" name="keywords">
<!-- Favicons -->
<link href="assets/img/favicon3.png" rel="icon">
<!-- Google Fonts -->
<link href="https://fonts.googleapis.com/css?family=Open+Sans:300,300i,400,400i,600,600i,700,700i|Raleway:300,300i,400,400i,500,500i,600,600i,700,700i|Poppins:300,300i,400,400i,500,500i,600,600i,700,700i" rel="stylesheet">
<!-- Vendor CSS Files -->
<link href="assets/vendor/aos/aos.css" rel="stylesheet">
<link href="assets/vendor/bootstrap/css/bootstrap.min.css" rel="stylesheet">
<link href="assets/vendor/bootstrap-icons/bootstrap-icons.css" rel="stylesheet">
<link href="assets/vendor/boxicons/css/boxicons.min.css" rel="stylesheet">
<link href="assets/vendor/glightbox/css/glightbox.min.css" rel="stylesheet">
<link href="assets/vendor/swiper/swiper-bundle.min.css" rel="stylesheet">
<script src="https://code.iconify.design/1/1.0.7/iconify.min.js"></script>
<!-- Template Main CSS File -->
<link href="assets/css/style.css" rel="stylesheet">
</head>
<body>
<!-- ======= Mobile nav toggle button ======= -->
<i class="bi bi-list mobile-nav-toggle d-xl-none"></i>
<!-- ======= Header ======= -->
<header id="header" class="d-flex flex-column justify-content-center">
<nav id="navbar" class="navbar nav-menu">
<ul>
<li><a href="#hero" class="nav-link scrollto active"><i class="bx bx-home"></i> <span>Home</span></a></li>
<li><a href="#about" class="nav-link scrollto"><i class="bx bx-user"></i> <span>About</span></a></li>
<li><a href="#resume" class="nav-link scrollto"><i class="bx bx-file-blank"></i> <span>Resume</span></a></li>
</ul>
</nav><!-- .nav-menu -->
</header><!-- End Header -->
<!-- ======= Hero Section ======= -->
<section id="hero" class="d-flex flex-column justify-content-center">
<div class="container" data-aos="zoom-in" data-aos-delay="100">
<h1>Vaari Gupta</h1>
<p>I'm <span class="typed" data-typed-items="Developer, Programmer, Creator, An Explorer"></span></p>
<div class="social-links">
<a href="https://www.linkedin.com/in/vaarigupta/" class="linkedin"><span class="iconify" data-icon="fa-brands:linkedin" data-inline="false"></span></a>
<a href="https://github.com/vaarigupta" class="github"><span class="iconify" data-icon="fa-brands:github-square" data-inline="false"></span></a>
<a href="https://twitter.com/vaari_gupta/" class="twitter"><span class="iconify" data-icon="fa-brands:twitter-square" data-inline="false"></span></a>
<a href="https://leetcode.com/vaarigupta/" class="leetcode"><span class="iconify" data-icon="simple-icons:leetcode" data-inline="false"></span></a>
</div>
</div>
</section><!-- End Hero -->
<main id="main">
<!-- ======= About Section ======= -->
<section id="about" class="about">
<div class="container" data-aos="fade-up">
<div class="section-title">
<h2>About</h2>
</div>
<div>
<img src="assets/img/profile-img.jpg" class="img-fluid myPhoto mx-auto d-block" alt="MyProfilePic">
</div>
<div class = "about">
<div class="content">
<br />
<h4> <span style='font-size:30px;'>👋</span> I am software Engineer ...... <Coder> ... <Developer> ... <Programmer> </h2>
</div>
</div>
</div>
</section><!-- End About Section -->
<!-- ======= Skills Section ======= -->
<section id="skills" class="skills section-bg">
<div class="container" data-aos="fade-up">
<div class="section-title">
<h2>Skills</h2>
</div>
<div class="row skills-content">
<div class="col-lg-6">
<div class="progress">
<span class="skill">C++ <i class="val">90%</i></span>
<div class="progress-bar-wrap">
<div class="progress-bar" role="progressbar" aria-valuenow="90" aria-valuemin="0" aria-valuemax="100"></div>
</div>
</div>
<div class="progress">
<span class="skill">C# <i class="val">70%</i></span>
<div class="progress-bar-wrap">
<div class="progress-bar" role="progressbar" aria-valuenow="70" aria-valuemin="0" aria-valuemax="100"></div>
</div>
</div>
<div class="progress">
<span class="skill">Javascript<i class="val">70%</i></span>
<div class="progress-bar-wrap">
<div class="progress-bar" role="progressbar" aria-valuenow="70" aria-valuemin="0" aria-valuemax="100"></div>
</div>
</div>
<div class="progress">
<span class="skill">Node.js<i class="val">60%</i></span>
<div class="progress-bar-wrap">
<div class="progress-bar" role="progressbar" aria-valuenow="60" aria-valuemin="0" aria-valuemax="100"></div>
</div>
</div>
<div class="progress">
<span class="skill">SQL <i class="val">70%</i></span>
<div class="progress-bar-wrap">
<div class="progress-bar" role="progressbar" aria-valuenow="70" aria-valuemin="0" aria-valuemax="100"></div>
</div>
</div>
</div>
<div class="col-lg-6">
<div class="progress">
<span class="skill">Problem Solving Ability <i class="val">70%</i></span>
<div class="progress-bar-wrap">
<div class="progress-bar" role="progressbar" aria-valuenow="70" aria-valuemin="0" aria-valuemax="100"></div>
</div>
</div>
<div class="progress">
<span class="skill">Data structures and algorithms <i class="val">70%</i></span>
<div class="progress-bar-wrap">
<div class="progress-bar" role="progressbar" aria-valuenow="70" aria-valuemin="0" aria-valuemax="100"></div>
</div>
</div>
<div class="progress">
<span class="skill">Object Oriented Programming <i class="val">75%</i></span>
<div class="progress-bar-wrap">
<div class="progress-bar" role="progressbar" aria-valuenow="75" aria-valuemin="0" aria-valuemax="100"></div>
</div>
</div>
<div class="progress">
<span class="skill">ASP.NET Core <i class="val">60%</i></span>
<div class="progress-bar-wrap">
<div class="progress-bar" role="progressbar" aria-valuenow="60" aria-valuemin="0" aria-valuemax="100"></div>
</div>
</div>
<div class="progress">
<span class="skill">Frontend- HTML/CSS <i class="val">60%</i></span>
<div class="progress-bar-wrap">
<div class="progress-bar" role="progressbar" aria-valuenow="60" aria-valuemin="0" aria-valuemax="100"></div>
</div>
</div>
</div>
</div>
</div>
</section><!-- End Skills Section -->
<!-- ======= Resume Section ======= -->
<section id="resume" class="resume">
<div class="container" data-aos="fade-up">
<!-- ======= Short Description ======= -->
<div class="section-title">
<h2>Resume</h2>
</div>
<div class="row">
<div class="col-lg-6">
<h3 class="resume-title">Short Description</h3>
<div class="resume-item pb-0 ">
<h4>Vaari Gupta</h4>
<p><em>Software Engineer with good problem solving skills and a dedicated and hardworking person who always tries to give her best </em></p>
</div>
</div>
<!-- ======= Education ======= -->
<div class="col-lg-6">
<h3 class="resume-title">Education</h3>
<div class="resume-item ">
<h4>Bachelors of Technology in Information Technology</h4>
<h5>2016 - 2020</h5>
<p><em>Guru Gobind Singh Indraprastha University, Delhi, India | <b>CGPA :</b> 8.6</em></p>
</div>
</div>
</div>
<br>
<div>
<!-- ======= Experience ======= -->
<div >
<h3 class="resume-title">Professional Experience</h3>
<div class="resume-item">
<h4>Software Engineer | Precisely Software and Data Pvt. Ltd</h4>
<h5>Nov 2021 – Current</h5>
<p><em>Noida, India </em></p>
<ul>
<li>Working on MapInfo Pro, a cutting-edge GIS software, and contributing
towards transformation from 2D to 3D visualizations.
</li>
<li>Introduced Z/M values in supported objects like point, polygon, and
polyline and the status bar of MapInfo Pro for 3D visualization.
</li>
<li>Enhanced UI of server dialog boxes (WMS, WFS, WMTS) by developing
authentication controls and making localization changes.
</li>
<li>Contributed to Mapbasic, a command-line tool for MapInfo Pro in
which CRS of any table can be converted to any desired CRS.
</li>
<li>
Analyzed and resolved threats and vulnerabilities reported by tools like
BlackDuck and Checkmarkx during security scans of MapInfo Pro.
</li>
<li>
Contributed to Spectrum Spatial Analyst tool to showcase line statistics
for the line annotations drawn over a map and created unit tests using
Angular and Jasmine Framework.
</li>
</ul>
</div>
<div class="resume-item">
<h4>Associate Engineer | Nagarro Software Pvt. Ltd. </h4>
<h5>Oct 2020 – Oct 2021</h5>
<p><em>Gurgaon, India </em></p>
<ul>
<li>Contributed to a tax information module for an investment banking
client and developed a robust 3-layered design pattern module.</li>
<li>Created stored procedure to retrieve data from SQL Server database,
and processed all the data to present it onto the screen as per user
requirements for tax information module.</li>
<li>Developed SSRS reports, manipulated SQL procedures, and created
queries using SQL Server Data Tools.</li>
<li>Resolved several technical bugs related to Databases.</li>
</ul>
</div>
<div class="resume-item">
<h4>Technical content Developer Intern | CoCubes Technologies Pvt. Ltd. </h4>
<h5>Mar 2020 – Sept 2020</h5>
<p><em>Gurgaon, India</em></p>
<ul>
<li>Designed unique problems using data structures and algorithms in C++
along with their solutions and formulated well-defined test cases</li>
<li>Assessed and analyzed the complexity levels of various algorithms.</li>
<li>Invigilated in the university exams conducted via online mode,
verified the scores obtained in the online exam manually</li>
<li>Improved coding question development process</li>
</ul>
</div>
<div class="resume-item">
<h4>Technical Trainer | Coding Shastra</h4>
<h5>June 2019 – July 2019</h5>
<p><em>Rohini,India</em></p>
<ul>
<li>Conducted 20+ offline sessions on C++ and Object Oriented
Programming for diploma students.</li>
</ul>
</div>
<div class="resume-item">
<h4>Mentee | Learn IT Girl</h4>
<h5>Mar 2019 – June 2019</h5>
<p><em>Remote Work</em></p>
<ul>
<li>Developed CodeChat project to share codes like a chat message to the
team members in real-time </li>
</ul>
</div>
</div>
</div>
<br>
<!-- ======= Projects Section ======= -->
<div class="main">
<h3 class="resume-title">Project Description</h3>
<ul class="cards">
<li class="cards_item">
<div class="card">
<div class="card_image"><img src="assets/img/BookReadingEvent1.png"></div>
<!-- D:\Practice\MyPortfolio\MyResume\MyResume\assets\img\Projects_Images -->
<div class="card_content">
<h2 class="card_title">Event Management System</h2>
<p class="card_text">A 3-layered design pattern is used to create this
web app in which a user can create public and
private events, send an invite, get an invite, and
post a comment.
</p>
<a class="card_text" href="https://github.com/vaarigupta/Book-Reading-Event">
<button class="btn card_btn"> Read More</button>
</a>
</div>
</div>
</li>
<li class="cards_item">
<div class="card">
<div class="card_image"><img src="assets/img/Savior_1.png"></div>
<div class="card_content">
<h2 class="card_title">Saviour</h2>
<p class="card_text"> A marker-based augmented Reality application where an interactive 3D cartoon character teaches
“good touch and bad touch” and talks to the child for knowing
their mental state
</p>
<a class="card_text" href="https://github.com/vaarigupta/Savior">
<button class="btn card_btn"> Read More</button>
</a>
</div>
</div>
</li>
<li class="cards_item">
<div class="card">
<div class="card_image"><img src="assets/img/collage1.png"></div>
<div class="card_content">
<h2 class="card_title">Heartify</h2>
<p class="card_text">A desktop app for detecting non-contact heart-rate
using facial image frames captured from live video, uses reflective remote photoplethysmography with 90% efficiency
</p>
<a class="card_text" href="https://github.com/vaarigupta/Heartify">
<button class="btn card_btn"> Read More</button>
</a>
</div>
</div>
</li>
<li class="cards_item">
<div class="card">
<div class="card_image"><img src="assets/img/Collaborative Editor2.png"></div>
<div class="card_content">
<h2 class="card_title">Collaborative Ace Editor</h2>
<p class="card_text">A Collaborative online editor developed in React.js and firebase in which multiple users can send the code in online editor and chat at the same time</p>
<a class="card_text" href="https://github.com/vaarigupta/Collaborative_Editor">
<button class="btn card_btn"> Read More</button>
</a>
</div>
</div>
</li>
<li class="cards_item">
<div class="card">
<div class="card_image"><img src="assets/img/ChatRoom1.png"></div>
<div class="card_content">
<h2 class="card_title">Chat Room</h2>
<p class="card_text">A Node.js application in which a user can chat with other user in Real Time.
An online user can send and receive messages with each other in an open session</p>
<a class="card_text" href="https://github.com/vaarigupta/Chat-Room">
<button class="btn card_btn"> Read More</button>
</a>
</div>
</div>
</li>
<li class="cards_item">
<div class="card">
<div class="card_image"><img src="assets/img/Golem2.png"></div>
<div class="card_content">
<h2 class="card_title">Golem Creature</h2>
<p class="card_text">An application developed on marker based AR
where Golem (3d character) produces voice and performs action on the voice command like sleep, rage, hit, walk, rage..</p>
<a class="card_text" href="https://github.com/vaarigupta/Golem-AR">
<button class="btn card_btn"> Read More</button>
</a>
</div>
</div>
</li>
</ul>
</div>
<!-- <h3 class="made_by">Made with ♡</h3> -->
<!-- ======= Training Certification Section ======= -->
<div>
<h3 class="resume-title">Training & Certifications</h3>
<div class="resume-item pb-0 ">
<h4>CODING BLOCKS</h4>
<h5>June 2019 – July 2019</h5>
<p><em>Attended Classroom course of
<a href="https://drive.google.com/file/d/1oErWNJ7U_UinUkJMYyxMsjsiU1zhuGtZ/view?usp=sharing">Data structures & algorithm</a>
in C++ with 100% Scholarship</em></p>
</div>
<div class="resume-item pb-0 ">
<h4>Voxy</h4>
<h5>Aug 2018 - Sept 2019</h5>
<p><em>Completed <a href="https://drive.google.com/file/d/1rL8_amIp09hNrJZoxWTao66L1tcbo_GJ/view?usp=sharing" >125 hours </a>of English Proficiency
course with High Intermediate Level</em></p>
</div>
<div class="resume-item pb-0 ">
<h4>Coding Elements</h4>
<h5>June 2018 - Aug 2018</h5>
<p><em>Completed <a href="https://drive.google.com/file/d/1SwaUxDhHfzCQQ9bJNh3R__flzd7DVmsB/view?usp=sharing" >Project Based </a>course of
Full Stack Web Development</em></p>
</div>
</div>
<br>
<br>
<!-- ======= Achievements Section ======= -->
<div >
<h3 class="resume-title">Achievements & Awards</h3>
<div class="resume-item pb-0 ">
<h4>Bestowed with Spot Award twice in my current organization (2022-2023) </h4>
<span>Spot Award for performing outstanding work in the organization </span>
</div>
<br>
<div class="resume-item pb-0 ">
<h4>100% Scholarship from Coding Blocks </h4>
<span>One of the 8 total Selected scholars for data structures and algorithms course </span>
</div>
<br>
<div class="resume-item pb-0 ">
<h4>Finalist in Smart India Hackathon 2k18 by Govt. of India </h4>
<span>Selected in Top 10 among several teams at NIET, Greater Noida </span>
</div>
<br>
<div class="resume-item pb-0 ">
<h4>Top 5 in HackOver Hackathon </h4>
<span>Selected in Top 5 among 50+ teams </span>
</div>
<br>
<div class="resume-item pb-0 ">
<h4>Indira Gandhi Award </h4>
<span>Presented by Manish Sisodia for outstanding performance in 10th class </span>
</div>
<br>
<div class="resume-item pb-0 ">
<h4>National Level, Science and Mathematics Exhibition</h4>
<span>Model on biodiesel production using algae farming</span>
</div>
<br>
<div class="resume-item pb-0 ">
<h4>State Level, Science and Mathematics Exhibition</h4>
<span>Model on Adulteration</span>
</div>
<br>
<div class="resume-item pb-0 ">
<h4>Outstanding Performance as an Intern at Highway Connect</h4>
<span>Made 250 downloads on my own</span>
</div>
</div>
<!-- Temp -->
</div>
</section><!-- End Resume Section -->
</main><!-- End #main -->
<!-- ======= Footer ======= -->
<footer id="footer">
<div class="container">
<h4>Follow me here</h4>
<div class="social-links">
<a href="https://www.linkedin.com/in/vaarigupta/" class="linkedin"><span class="iconify" data-icon="bi:linkedin" data-inline="false"></span></a>
<a href="https://github.com/vaarigupta" class="github"><span class="iconify" data-icon="bi:github" data-inline="false"></span></a>
<a href="https://twitter.com/vaari_gupta/" class="twitter"><span class="iconify" data-icon="bi:twitter" data-inline="false"></span></a>
<a href="https://leetcode.com/vaarigupta/" class="leetcode"><span class="iconify" data-icon="simple-icons:leetcode" data-inline="false"></span></a>
</div>
<h6>Developed by Vaari Gupta with 💗 </h6>
</div>
</footer><!-- End Footer -->
<div id="preloader"></div>
<a href="#" class="back-to-top d-flex align-items-center justify-content-center"><i class="bi bi-arrow-up-short"></i></a>
<!-- Vendor JS Files -->
<script src="assets/vendor/aos/aos.js"></script>
<script src="assets/vendor/bootstrap/js/bootstrap.bundle.min.js"></script>
<script src="assets/vendor/glightbox/js/glightbox.min.js"></script>
<script src="assets/vendor/isotope-layout/isotope.pkgd.min.js"></script>
<script src="assets/vendor/purecounter/purecounter.js"></script>
<script src="assets/vendor/swiper/swiper-bundle.min.js"></script>
<script src="assets/vendor/typed.js/typed.min.js"></script>
<script src="assets/vendor/waypoints/noframework.waypoints.js"></script>
<!-- Template Main JS File -->
<script src="assets/js/main.js"></script>
</body>
</html>