-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
236 lines (225 loc) · 9.7 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Yash's Portfolio</title>
<style>
body {
font-family: 'Arial', sans-serif;
line-height: 1.6;
color: #333; /* Dark gray text for readability */
background-color: #f4f7f6; /* Very light gray background */
max-width: 900px;
margin: 0 auto;
padding: 20px;
}
header {
background-color: #004a99; /* Deep blue background for header */
color: #ffffff; /* White text */
padding: 20px;
display: flex;
align-items: center;
border-radius: 8px;
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}
.profile-container {
display: flex;
align-items: center;
}
.profile-pic {
width: 150px;
height: 150px;
border-radius: 50%;
object-fit: cover;
border: 4px solid #ffffff; /* White border */
margin-right: 20px;
}
h1 {
font-size: 1.8rem;
margin: 0;
font-weight: 100; /* Light font weight */
}
h2 {
color: #e0e0e0; /* Light gray for subheadings */
margin-top: 5px;
font-size: 1.5rem;
font-weight: 100;
}
h3 {
color: #0066cc; /* Blue for job titles */
}
a {
color: #ffffff; /* Deep blue links */
text-decoration: none;
}
a:hover {
text-decoration: underline;
color: #003366; /* Darker blue on hover */
}
nav {
background-color: #003366; /* Darker blue for nav */
padding: 10px;
border-radius: 8px;
margin-bottom: 20px;
}
nav a {
color: #ffffff; /* White text for links */
margin: 0 15px;
text-decoration: none;
}
nav a:hover {
text-decoration: underline;
color: #e0e0e0; /* Light gray on hover */
}
.section {
margin-bottom: 30px;
background-color: #ffffff; /* White background for sections */
padding: 20px;
border-radius: 8px;
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}
.job, .education {
margin-bottom: 20px;
border-left: 4px solid #004a99; /* Deep blue border */
padding-left: 15px;
}
.job-title, .degree {
font-weight: bold;
color: #333; /* Dark gray for titles */
}
.job-period, .edu-period {
font-style: italic;
color: #888888; /* Medium gray for dates */
}
ul {
padding-left: 20px;
}
footer {
background-color: #004a99; /* Deep blue footer */
color: #ffffff; /* White text */
padding: 20px;
border-radius: 8px;
margin-top: 30px;
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}
.job:hover, .education:hover {
background-color: #f0f0f0; /* Light gray on hover */
}
a:hover {
font-weight: bold;
}
</style>
</head>
<body>
<header>
<div class="profile-container">
<img src="profile-pic.jpeg" alt="Profile Picture" class="profile-pic">
<div>
<h1>Yash Bharatiya</h1>
<h2>Graduate Student | Software Engineer | GSoC Participant</h2>
</div>
</div>
</header>
<nav>
<a href="#about-me">About Me</a>
<a href="#education">Education</a>
<a href="#skills">Skills</a>
<a href="#experience">Professional Experience</a>
<a href="#projects">Projects</a>
<a href="#contact">Contact</a>
</nav>
<main>
<section class="section" id="about-me">
<h2>About Me</h2>
<p>Hello! I'm Yash, a passionate software engineer with experience in full-stack development, cloud technologies, and open-source contributions. I've participated in Google Summer of Code twice and previously worked at Persistent Systems from 2022 to 2024. I'm currently pursuing a Master of Technology in Computer Science at the International Institute of Information Technology (IIIT), Hyderabad, India.</p>
<p><strong><a href="https://github.com/yashTEF" target="_blank">Check out my GitHub profile</a></strong></p>
</section>
<section class="section" id="education">
<h2>Education</h2>
<div class="education">
<h3 class="degree">Master of Technology in Computer Science</h3>
<p class="edu-period">Current</p>
<p>International Institute of Information Technology (IIIT), Hyderabad, India</p>
</div>
</section>
<section class="section" id="skills">
<h2>Skills</h2>
<ul>
<li>Full-stack Development</li>
<li>Cloud Technologies (AWS)</li>
<li>Database Design and Optimization</li>
<li>RESTful API Development</li>
<li>SCRUM and Agile Methodologies</li>
<li>UI/UX Design</li>
<li>Performance Optimization</li>
<li>Version Control (Git)</li>
<li>Java</li>
<li>JavaScript</li>
<li>SQL</li>
</ul>
</section>
<section class="section" id="experience">
<h2>Professional Experience</h2>
<div class="job">
<h3 class="job-title">Software Engineer</h3>
<p class="job-period">Aug 2022 – Jul 2024</p>
<p>Persistent Systems, Pune, India</p>
<ul>
<li>Collaborated within a SCRUM team to innovate and deliver a robust patient portal platform, facilitating seamless patient-provider interactions.</li>
<li>Engineered database schemas and optimized queries on AWS RDS, enhancing data retrieval efficiency by 30%.</li>
<li>Leveraged AWS services to architect and deploy RESTful APIs, streamlining communication channels and reducing latency by 25%.</li>
<li>Led the design and development of the contract management module, automating workflow processes and reducing manual errors by 50%.</li>
<li>Demonstrated initiative and accountability by taking ownership of the contract management module, ensuring its successful integration into the patient portals platform.</li>
</ul>
</div>
<div class="job">
<h3 class="job-title">Google Summer of Code 2023 Participant</h3>
<p class="job-period">May 2023 – Sep 2023</p>
<p>Eclipse Foundation, Remote, India</p>
<ul>
<li>Led enhancement of Eclipse Cargo Tracker project's design and user experience.</li>
<li>Implemented modern design elements and navigation enhancements, boosting user engagement.</li>
<li>Upgraded to Primefaces version 12.0.0, reducing system bugs and improving performance.</li>
<li>Resolved critical bugs, ensuring responsive navigation and mobile-friendly design, enhancing user satisfaction.</li>
<li>Initiated exploration of future UI enhancements and integration of modern tooling for improved functionality.</li>
</ul>
</div>
<div class="job">
<h3 class="job-title">Google Summer of Code 2020 Participant</h3>
<p class="job-period">May 2020 – Sep 2020</p>
<p>Eclipse Foundation, Remote, India</p>
<ul>
<li>Implemented SVG Template Export for high-quality image exports.</li>
<li>Enhanced Export Settings for dynamic series selection.</li>
<li>Optimized R-Script Export for performance and visualization.</li>
<li>Integrated Inkscape Templates for consistent export formatting.</li>
<li>Conducted testing, bug fixing, and collaborated for future enhancements.</li>
</ul>
</div>
</section>
<section class="section" id="projects">
<h2>Projects</h2>
<p>Here are some key projects I've worked on:</p>
<ul>
<li><strong>Patient Portal Platform:</strong> A robust system facilitating seamless patient-provider interactions.</li>
<li><strong>Contract Management Module:</strong> A module for automating workflow processes in a patient portal platform.</li>
<li><strong>SVG Template Export:</strong> Implementation of SVG export for enhanced image quality.</li>
<li><strong>Design Enhancement for Eclipse Cargo Tracker:</strong> Modernizing design and navigation elements.</li>
</ul>
</section>
<section class="section" id="contact">
<h2>Contact</h2>
<p>You can reach me at:</p>
<ul>
<li>Email: <a href="mailto:yash@example.com">yash@example.com</a></li>
<li>LinkedIn: <a href="https://www.linkedin.com/in/yash-bharatiya" target="_blank">linkedin.com/in/yash-bharatiya</a></li>
<li>GitHub: <a href="https://github.com/yashTEF" target="_blank">github.com/yashTEF</a></li>
</ul>
</section>
</main>
<footer>
<p>© 2024 Yash Bharatiya</p>
</footer>
</body>
</html>