-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
721 lines (600 loc) · 29.5 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
<!DOCTYPE html>
<!--[if IE 8 ]>
<html class="no-js oldie ie8" lang="en"> <![endif]-->
<!--[if IE 9 ]>
<html class="no-js oldie ie9" lang="en"> <![endif]-->
<!--[if (gte IE 9)|!(IE)]><!-->
<html class="no-js" lang="en"> <!--<![endif]-->
<head>
<!--- basic page needs
================================================== -->
<meta charset="utf-8">
<title>Hi There</title>
<meta name="description" content="">
<meta name="author" content="">
<!-- mobile specific metas
================================================== -->
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1">
<!-- CSS
================================================== -->
<link rel="stylesheet" href="css/base.css">
<link rel="stylesheet" href="css/vendor.css">
<link rel="stylesheet" href="css/main.css">
<!-- script
================================================== -->
<script src="js/modernizr.js"></script>
<script src="js/pace.min.js"></script>
<!-- favicons
================================================== -->
<link rel="shortcut icon" href="favicon.ico" type="image/x-icon">
<link rel="icon" href="favicon.ico" type="image/x-icon">
</head>
<body id="top">
<!-- header
================================================== -->
<header>
<div class="header-logo">
<a href="index.html">Howdy</a>
</div>
<a id="header-menu-trigger" href="#0">
<span class="header-menu-text">Menu</span>
<span class="header-menu-icon"></span>
</a>
<nav id="menu-nav-wrap">
<a href="#0" class="close-button" title="close"><span>Close</span></a>
<h3>Howdy.</h3>
<ul class="nav-list">
<li class="current"><a class="smoothscroll" href="#home" title="">Home</a></li>
<li><a class="smoothscroll" href="#about" title="">About</a></li>
<li><a class="smoothscroll" href="#skills" title="">Skills</a></li>
<li><a class="smoothscroll" href="#credentials" title="">Experience</a></li>
<!-- <li><a class="smoothscroll" href="#portfolio" title="">Works</a></li> --->
<!-- <li><a class="smoothscroll" href="#stats" title="">Stats</a></li> --->
<li><a class="smoothscroll" href="#contact" title="">Contact</a></li>
</ul>
<ul class="header-social-list">
<li>
<a href="https://www.linkedin.com/in/adwait-vaidya-7759171b3/" target="_blank" rel="noopener noreferrer"><i class="fa fa-linkedin-square"></i></a>
</li>
<li>
<a href="https://www.facebook.com/adwait.vaidya.7758/" target="_blank" rel="noopener noreferrer"><i class="fa fa-facebook-square"></i></a>
</li>
<!---
<li>
<a href="#"><i class="fa fa-twitter"></i></a>
</li>
--->
<li>
<a href="https://github.com/AdwaitVaidya" target="_blank" rel="noopener noreferrer"><i class="fa fa-github-square"></i></a>
</li>
<li>
<a href="https://www.instagram.com/adwaitvaidya123/" target="_blank" rel="noopener noreferrer"><i class="fa fa-instagram"></i></a>
</li>
</ul>
</nav> <!-- end #menu-nav-wrap -->
</header> <!-- end header -->
<!-- home
================================================== -->
<section id="home">
<div class="overlay"></div>
<div class="gradient-overlay"></div>
<div class="home-content-table">
<div class="home-content-tablecell">
<div class="row">
<div class="col-twelve">
<div class="home-bottom-text">
<h3 class="animate-intro">Hello, World.</h3>
<h2 class="animate-intro">
My name is Adwait Vaidya. <br>
Coder <br>
Always Curious <br>
</h2>
<ul class="home-section-links">
<li class="animate-intro">More <a href="#about" class="smoothscroll">About Me</a></li>
<li class="animate-intro">View <a href="#credentials" class="smoothscroll">My Works</a></li>
<li class="animate-intro">Contact <a href="#contact" class="smoothscroll">By Email</a></li>
</ul>
</div> <!-- end home-bottom-text -->
</div> <!-- end col-twelve -->
</div> <!-- end row -->
</div> <!-- end home-content-tablecell -->
</div> <!-- end home-content-table -->
<a href="#about" class="scroll-icon smoothscroll">
<span class="icon-DownArrow"></span>
</a>
</section> <!-- end home -->
<!-- about
================================================== -->
<section id="about">
<div class="about-profile-bg"></div>
<div class="about-wrap">
<div class="about-profile">
<div class="about-profile-bg"></div>
<div class="intro">
<h3 class="animate-this">About</h3>
<h1 class="animate-this">More About Me.</h1>
<p class="lead animate-this">Hi there, I'm Adwait Vaidya </p>
</div>
<p class="animate-this">
As a SWE at Verizon, I am a highly motivated and detail-oriented individual
with a passion for coding and problem-solving. With a strong foundation in programming languages such as Rust,Go,
and Python, I am skilled in developing, testing, and debugging software applications. During my academic
career, I gained experience in Machine Learning, Computer Vision, NLP, Software Design and Development Methodologies, and Algorithms.
I also participated in several projects, including team-based software development projects and individual research
projects, which further developed my technical and collaboration skills. I am excited to apply my skills and knowledge
to a professional setting, and to continue learning and growing in a dynamic and challenging work environment.
</p>
</div> <!-- end about-profile -->
<div class="about-services">
<div class="vertical-center">
<p>
<a href="#contact" class="button full-width animate-this">Contact Me<a class="smoothscroll"></a></a>
<a href=https://drive.google.com/file/d/1iLZKChp84TYZ1hc3VSYhacLBsYi3BnFo/view?usp=sharing
class="button button-primary full-width animate-this">Download Resume</a>
</p>
</div>
</div>
</div> <!-- end about-wrap -->
</section> <!-- end about -->
<!-- about
================================================== -->
<section id="skills">
<div class="overlay"></div>
<div class="gradient-overlay"></div>
<div class="row wide">
<div class="col-skills">
<div class="section-intro">
<h3 class="animate-this">Skillset</h3>
<h1 class="animate-this">I've Got Some Skills.</h1>
</div>
<ul class="skill-bars">
<li class="animate-this" data-animate="fadeInRight">
<strong>Java</strong>
</li>
<li class="animate-this" data-animate="fadeInRight">
<strong>Python</strong>
</li>
<li class="animate-this" data-animate="fadeInRight">
<strong>React</strong>
</li>
</li>
<li class="animate-this" data-animate="fadeInRight">
<strong>TypeScript</strong>
</li>
<li class="animate-this" data-animate="fadeInRight">
<strong>C++</strong>
</li>
<li class="animate-this" data-animate="fadeInRight">
<strong>Rust</strong>
</li>
<li class="animate-this" data-animate="fadeInRight">
<strong>Go</strong>
</li>
<li class="animate-this" data-animate="fadeInRight">
<strong>C#</strong>
</li>
<li class="animate-this" data-animate="fadeInRight">
<strong>Android</strong>
</li>
<li class="animate-this" data-animate="fadeInRight">
<strong>Firebase</strong>
</li>
<li class="animate-this" data-animate="fadeInRight">
<strong>AWS</strong>
</li>
</ul>
</div> <!-- end col-six -->
</div> <!-- end row wide -->
</section> <!-- end skills -->
<!-- credentials
================================================== -->
<section id="credentials">
<div class="row narrow section-intro with-bottom-sep">
<div class="col-twelve">
<h3 class="animate-this">Career and Education</h3>
<h1 class="animate-this">More of My Credentials.</h1>
</div>
</div> <!-- end section-intro -->
<div class="row wide credentials-content">
<div class="col-six tab-full left">
<h2 class="animate-this">Experience</h2>
<div class="timeline-wrap">
<div class="timeline-block animate-this">
<div class="timeline-ico">
<i class="fa fa-briefcase"></i>
</div>
<div class="timeline-header">
<p class="timeframe">June 2023 - Present </p>
<h3>Verizon </h3>
<h4>Software Engineer</h4>
</div>
<div class="timeline-content">
<ul>
<li>
Worked on the VSON team, an automation tool that takes care of and identifies and corrects misaligned configurations within the Verizon Network, mainly used to care of System performance, Network planning, Network Engineering Maintenance, etc.
</li>
<li>
Implemented REST Microservices using spring boot. Generated Metrics with method level
granularity and Persistence using Spring AOP and Spring Actuator.
</li>
<li>
Worked in agile framework as an individual contributor Responsibilities include -
Interaction with Business team in story grooming, reviewing story/acceptance criteria.
</li>
</ul>
</div>
</div>
</div>
<div class="timeline-wrap">
<div class="timeline-block animate-this">
<div class="timeline-ico">
<i class="fa fa-briefcase"></i>
</div>
<div class="timeline-header">
<p class="timeframe">September 2022 - May 2023 </p>
<h3>Interactive Learning & Design Lab </h3>
<h4>Research Assistant</h4>
</div>
<div class="timeline-content">
<ul>
<li>
Developed a website that will be used by over 1000 students in local schools.
</li>
<li>
Optimized web application performance, including page load times, image optimization, and caching.
</li>
<li>
Fixed major bug in Unity physics simulation and integrated into the website to provide a more refined UX.
</li>
</ul>
</div>
</div>
</div> <!-- end timeline-block -->
<div class="timeline-wrap">
<div class="timeline-block animate-this">
<div class="timeline-ico">
<i class="fa fa-briefcase"></i>
</div>
<div class="timeline-header">
<p class="timeframe">January 2022 - May 2023</p>
<h3>Department of Computer Science - University of Wisconsin, Madison</h3>
<h4>Peer Mentor - CS 540:Introduction to AI</h4>
</div>
<div class="timeline-ico">
<i class="fa fa-briefcase"></i>
</div>
<div class="timeline-header">
<p class="timeframe">August 2021 -- January 2022</p>
<h3>Department of Computer Science - University of Wisconsin, Madison</h3>
<h4>Peer Mentor/Assistant Grader -Foundations of Mobile Sys. and Apps</h4>
</div>
<div class="timeline-content">
<ul>
<li>
Mentor and support students and colleagues in studying coursework, providing constructive feedback and guidance to improve work and performance.
</li>
<li>
Use effective communication and active listening skills to identify the individual needs and goals of each mentee, and share personal experiences and insights to help mentees build knowledge, skills, and confidence.
</li>
<li>
Assist with course administration and provide brief code reviews, helping students to identify and resolve bugs in their code.
</li>
</ul>
</div>
</div> <!-- end timeline-block -->
<div class="timeline-block animate-this">
<div class="timeline-ico">
<i class="fa fa-briefcase"></i>
</div>
<div class="timeline-header">
<p class="timeframe">June 2022 - August 2022 </p>
<h3>Enfusion</h3>
<h4>Software Developer- Intern</h4>
</div>
<div class="timeline-content">
<ul>
<li>
Designed, developed, and implemented an internal tool to manage API endpoints in a fintech environment.
</li>
<li>
Developed and maintained websites and web applications using a variety of programming languages, including HTML, CSS and TypeScript,
</li>
<li>
Collaborated with cross-functional teams, including UX designers, product managers, and quality assurance engineers to ensure that the web application meets user requirements and quality standards.
</li>
<li>
Ensured that the web application has high availability and fault tolerance, and can handle large volumes of traffic and data.
</li>
<li>
Designed and develop data models and algorithms to support Data processing.
Implement and integrate with third-party APIs, such as data providers and optimize web application performance, including transaction processing times and data latency.
</li>
<li>
Participated in code reviews, pair programming, and other collaborative activities to help improve the overall quality of the codebase
</li>
</ul>
</div>
</div> <!-- end timeline-block -->
<div class="timeline-block animate-this">
<div class="timeline-ico">
<i class="fa fa-briefcase"></i>
</div>
<div class="timeline-header">
<p class="timeframe">December 2021 - September 2022</p>
<h3>Department of Computer Science - University of Wisconsin, Madison</h3>
<h4>Student Researcher - WiNGS Lab</h4>
</div>
<div class="timeline-content">
<ul>
<li>
Designed and developed a central command application for Microsoft HoloLens for firefighters to manage complex building structures in 3D augmented reality.
</li>
<li>
Collaborated with cross-functional teams to gather requirements and identify necessary features.
</li>
<li>
Developed intuitive interfaces and real-time communication capabilities, such as audio and video streaming, for easy navigation and effective communication among firefighters and with command centers.
</li>
</ul>
</div>
</div> <!-- end timeline-block -->
<div class="timeline-block animate-this">
<div class="timeline-ico">
<i class="fa fa-briefcase"></i>
</div>
<div class="timeline-header">
<p class="timeframe">January 2022 - May 2022</p>
<h3>Department of Computer Science - University of Wisconsin, Madison</h3>
<h4>Robotics Engineer - People and Robotics Lab</h4>
</div>
<div class="timeline-content">
<ul>
<li>
Designed, developed, and tested robotic systems and solutions using ROS (Robot Operating System) and Gazebo simulation environments.
</li>
<li>
Wrote code in a variety of programming languages, including C++ and Python, to control robot motion, perception, and interaction with the environment.
</li>
<li>
Optimized robot performance, including speed, accuracy, and efficiency, through iterative testing and improvement of algorithms and control systems.
</li>
<li>
Worked with robotics simulators to test and verify robot performance in a virtual environment before deploying in the real world.
</li>
</ul>
</div>
</div>
</div> <!-- end timeline-wrap -->
</div> <!-- end col-six -->
<div class="col-six tab-full right">
<h2 class="animate-this">Education</h2>
<div class="timeline-wrap">
<div class="timeline-block animate-this">
<div class="timeline-ico">
<i class="fa fa-institution"></i>
</div>
<div class="timeline-header">
<p class="timeframe">Jan 2021 - May 2023</p>
<h3>University of Wisconsin, Madison</h3>
<h4>BSc in Computer Science</h4>
<h5>- Runner up Enfusion Hackathon</h5>
</div>
<ul>
</ul>
<div class="timeline-content">
</div>
</div> <!-- end timeline-block -->
</div>
<h2 class="animate-this">Certification</h2>
<div class="timeline-wrap">
<div class="timeline-block animate-this">
<div class="timeline-ico">
<i class="fa fa-graduation-cap"></i>
</div>
<a href="https://drive.google.com/file/d/1LixQYlzfmrqYTkVvvzaywTnq672koA9j/view" target="_blank" div class="timeline-header">
<p class="timeframe">Issued May 2021</p>
<h3>Engineering Virtual Experience</h3>
<h4>Goldman Sachs</h4>
</a>
<div class="timeline-content">
</div>
</div>
</div>
<div class="timeline-wrap">
<div class="timeline-block animate-this">
<div class="timeline-ico">
<i class="fa fa-graduation-cap"></i>
</div>
<a href="https://drive.google.com/file/d/1mkMRxO3ip1RKjhDCz1Euu5RjtZcAz9MA/view" target="_blank" div class="timeline-header">
<p class="timeframe">Issued Jan 2021</p>
<h3>Software Engineering Virtual Experience</h3>
<h4>JP Morgan Chase & Co.</h4>
</a>
<div class="timeline-content">
</div>
</div>
</div>
<div class="timeline-wrap">
<div class="timeline-block animate-this">
<div class="timeline-ico">
<i class="fa fa-graduation-cap"></i>
</div>
<a href="https://drive.google.com/file/d/1UBh-uI3BhYCB_kfbh0JZ-BmoppX2ZUXH/view" target="_blank" div class="timeline-header">
<p class="timeframe">Issued Dec 2020</p>
<h3>Python 101 for Data Science</h3>
<h4>IBM Developer Skills Network</h4>
</a>
</div>
<div class="timeline-content">
</div>
</div>
<div class="timeline-wrap">
<div class="timeline-block animate-this">
<div class="timeline-ico">
<i class="fa fa-graduation-cap"></i>
</div>
<a href="https://drive.google.com/file/d/197klNcFapCyMv4_EnseLIZP6kZ8gKwpa/view" target="_blank" div class="timeline-header">
<p class="timeframe">Issued August 2019</p>
<h3>Java Programming Masterclass</h3>
<h4>Udemy</h4>
</a>
</div>
<div class="timeline-content">
</div>
</div>
<h2 class="animate-this">Projects</h2>
<div class="timeline-wrap">
<div class="timeline-block animate-this">
<div class="timeline-ico">
<i class="fa fa-gears"></i>
</div>
<div class="timeline-header">
<h3>Workout Recommendation system</h3>
<h4>- Developed a machine learning-based system that provides personalized health tips based on users' medical conditions and other relevant data
, and integrated them with a website's front end.</h4>
</div>
</div>
<div class="timeline-content">
</div>
</div>
<div class="timeline-wrap">
<div class="timeline-block animate-this">
<div class="timeline-ico">
<i class="fa fa-gears"></i>
</div>
<div class="timeline-header">
<h3>IceCube - Neutrinos in Deep Ice</h3>
<h4>- Developed a neural network regression algorithm using Python and deep learning frameworks
such as TensorFlow and PyTorch to predict neutrino event energies from the raw detector signals, using large datasets genered by Ice-Cube facility in Antarctica.</h4>
</div>
</div>
<div class="timeline-content">
</div>
</div>
<div class="timeline-wrap">
<div class="timeline-block animate-this">
<div class="timeline-ico">
<i class="fa fa-gears"></i>
</div>
<div class="timeline-header">
<h3>CNN classifier for leaves</h3>
<h4>- Developed a deep learning model using Convolutional Neural Networks (CNN) to classify leaves from different plant species accurately.</h4>
</div>
</div>
<div class="timeline-content">
</div>
</div>
<div class="timeline-wrap">
<div class="timeline-block animate-this">
<div class="timeline-ico">
<i class="fa fa-gears"></i>
</div>
<div class="timeline-header">
<h3>Student Scheduler</h3>
<h4>- Developed a mobile-based scheduling application specifically for students to manage their daily, weekly, and monthly academic schedules, assignments, and deadlines.</h4>
</div>
</div>
<div class="timeline-content">
</div>
</div>
<div class="timeline-wrap">
<div class="timeline-block animate-this">
<div class="timeline-ico">
<i class="fa fa-gears"></i>
</div>
<div class="timeline-header">
<h3>Foster Friends</h3>
<h4>-Developed a website for a foster parent program that connects potential foster parents with local rescue organizations and facilitates the process of fostering animals, and created a back-end system to manage the application process, which includes collecting relevant information about potential foster parents, their living situation, and their experience with animals.</h4>
</div>
</div>
<div class="timeline-content">
</div>
</div>
<div class="timeline-wrap">
<div class="timeline-block animate-this">
<div class="timeline-ico">
<i class="fa fa-gears"></i>
</div>
<div class="timeline-header">
<h3>R4 HAL</h3>
<h4>-Developing a HAL (Hardware Abstraction Layer) for Arduino Uno R4 in Rust.</h4>
</div>
</div>
<div class="timeline-content">
</div>
</div>
<div class="timeline-wrap">
<div class="timeline-block animate-this">
<div class="timeline-ico">
<i class="fa fa-gears"></i>
</div>
<div class="timeline-header">
<h3>Reflexive HID</h3>
<h4>-Developing an interface to convert telemetry data to HID inputs.</h4>
</div>
</div>
<div class="timeline-content">
</div>
</div>
</div> <!-- end timeline-wrap -->
</div> <!-- end col-six -->
</div> <!-- end row wide -->
</section> <!-- end credentials -->
<!-- contact
================================================== -->
<section id="contact">
<div class="overlay"></div>
<div class="row narrow section-intro">
<div class="col-twelve">
<h3 class="animate-this">Contact</h3>
<h1 class="animate-this">Always looking for new exciting opportunities. Feel Free to Contact Me At.</h1>
</div>
</div> <!-- end section-intro -->
<div class="row contact-info">
<div class="col-four tab-full">
<h5 class="animate-this">Where to find me</h5>
<p class="animate-this">
Dallas, TX<br>
</p>
</div> <!-- end col-four -->
<div class="col-four tab-full collapse">
<h5 class="animate-this">Email Me At</h5>
<p class="animate-this">
<a href="mailto:adwait.vaidya120@gmail.com">adwait.vaidya1120@outlook.com</a>
<br>
</p>
</div> <!-- end col-four -->
<div class="col-four tab-full">
<h5 class="animate-this">Call Me At</h5>
<p class="animate-this">
<a href="tel:5554280940">
Phone: (+1) 608-886-1658<br>
</a>
</p>
</div> <!-- end col-four -->
</div> <!-- end row contact-info -->
</section> <!-- end contact -->
<!-- footer
================================================== -->
<footer>
<div class="row">
<div class="col-twelve tab-full social">
<ul class="footer-social">
<li><a href="https://www.linkedin.com/in/adwait-vaidya-7759171b3/">Linkedin</a></li>
</ul>
</div>
</div> <!-- end row -->
<div id="go-top">
<a class="smoothscroll" title="Back to Top" href="#top"><i class="icon-UpArrow"></i></a>
</div>
</footer>
<div id="preloader">
<div id="loader"></div>
</div>
<!-- Java Script
================================================== -->
<script src="js/jquery-2.1.3.min.js"></script>
<script src="js/plugins.js"></script>
<script src="js/main.js"></script>
</body>
</html>