-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathresume.html
124 lines (109 loc) · 6.82 KB
/
resume.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Resume - Yash's Portfolio</title>
<link href="https://fonts.googleapis.com/css2?family=Press+Start+2P&display=swap" rel="stylesheet">
<link rel="stylesheet" href="styles.css">
</head>
<body>
<div class="moon">
<div class="small-crater"></div>
<div class="small-crater"></div>
<div class="small-crater"></div>
<div class="small-crater"></div>
</div>
<div class="clouds"></div>
<div class="clouds-reverse"></div>
<div class="stars"></div>
<div class="container">
<h1 class="title">My Resume</h1>
<div class="resume-content">
<!-- Tabs for Resume Sections -->
<div class="tabs">
<button class="tab-button active" onclick="openTab('skills')">Skills</button>
<button class="tab-button" onclick="openTab('experience')">Experience</button>
<button class="tab-button" onclick="openTab('education')">Education</button>
<button class="tab-button" onclick="window.open('Yash Resume.pdf', '_blank')">View Resume</button> <!-- Modify this line -->
</div>
<!-- Tab Content -->
<div id="summary" class="tab-content">
<h2 class="resume-heading">Summary</h2>
<p class="resume-description">
Passionate software engineer with expertise in web development using React, Flask, and PostgreSQL. Adept at creating full-stack applications and improving performance through optimization.
</p>
</div>
<div id="skills" class="tab-content" style="display: block;">
<h2 class="resume-heading">Skills</h2>
<ul class="resume-skills">
<p class="job-description" style="text-align: left;">Languages & Database: </p><br>
<li style="text-align: left;">Python, Java, C++, C#, .NET, JavaScript, TypeScript, React.js, Node.js, Flask, Maven, PostgreSQL, MongoDB</li><br>
<p class="job-description" style="text-align: left;">Software & Tools: </p><br>
<li style="text-align: left;">Tableau, PowerBI, Excel, AWS, Git, Docker, Linux</li>
</ul>
</div>
<div id="experience" class="tab-content">
<h2 class="resume-heading">Experience</h2>
<!-- Toggle buttons for experience -->
<div class="experience-toggle">
<button class="toggle-button active" onclick="toggleExperience('exp1')">Cvent</button>
<button class="toggle-button" onclick="toggleExperience('exp2')">Plural Technology Pvt. Ltd.</button>
</div>
<!-- Experience 1 -->
<div id="exp1" class="experience-item active">
<h3>Software Engineer Intern</h3><br>
<p class="job-description" style="text-align: left; font-size: 15px;">From: June 2024 To: August 2024</p>
<p class="job-description" style="text-align: left; font-size: 15px;">Location: Tysons, VA</p><br>
<ul>
<li style="text-align: left; font-size: 15px;">Developed a feature to summarize penetration test outcomes using Python, Flask, React.js and PostgreSQL, reducing report
generation time by 60% and enabling efficient reporting for 50+ security assessments annually.</li><br>
<li style="text-align: left; font-size: 15px;">Integrated Cvent’s AI Writing Assistant to ensure uniformity in tone and style of customer-facing documents, enhancing clarity
and reducing editing time by 20%.</li><br>
</ul>
</div>
<!-- Experience 2 -->
<div id="exp2" class="experience-item" style="display: none;">
<h3>Software Engineer</h3><br>
<p class="job-description" style="text-align: left; font-size: 15px;">From: July 2022 To: June 2023</p>
<p class="job-description" style="text-align: left; font-size: 15px;">Location: Pune, India</p><br>
<ul>
<li style="text-align: left; font-size: 15px;">Implemented Data Engineering processes for the seamless ingestion of 20 million records into the ArangoDB graph database.</li><br>
<li style="text-align: left; font-size: 15px">Implemented optimized data pipelines and analytics solutions using Snowflake, enabling efficient data processing and
real-time insights for large datasets.</li><br>
<li style="text-align: left; font-size: 15px">Performed Data Analysis using Python, SQL, Pandas and PowerBI to generate valuable insights.</li><br>
</ul>
</div>
</div>
<div id="education" class="tab-content">
<h2 class="resume-heading">Education</h2>
<!-- Toggle buttons for each education level -->
<div class="education-toggle">
<button class="education-button active" onclick="toggleEducation('masters')">Master's</button>
<button class="education-button" onclick="toggleEducation('undergrad')">Bachelor's</button>
</div>
<!-- Master's education details, visible by default -->
<div id="masters" class="education-content active" style="display: block;">
<p class="resume-description">
<p class="job-description" style="text-align: left;">Virginia Tech, Blacksburg, VA</p><br>
<p style="text-align: left;">Master of Science in Computer Science</p><br>
<p style="text-align: left;">Graduation: May 2025</p><br>
<p style="text-align: left;">Coursework: Machine Learning - 1, Software Engineering, Cloud Computing, Social Media Analytics, Urban Computing, Information Visualization</p>
</p>
</div>
<!-- Undergraduate education details, hidden by default -->
<div id="undergrad" class="education-content" style="display:none;">
<p class="resume-description">
<p class="job-description" style="text-align: left;">MIT University, Pune, India</p><br>
<p style="text-align: left;">Bachelor of Technology in Computer Science</p><br>
<p style="text-align: left;">Graduation: June 2022</p><br>
<p style="text-align: left;">Coursework: Software Engineering, Data Analytics, Object Oriented Programming, Operating Systems, Web Development</p>
</p>
</div>
</div>
</div>
<button class="back-home-button" onclick="window.location.href='index.html'">Back to Home</button>
</div>
<script src="script.js"></script>
</body>
</html>