-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
221 lines (197 loc) · 9.96 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
<!DOCTYPE html>
<html lang="en">
<head>
<title>Krishna's Website</title>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet">
<script src="script.js"></script>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.bundle.min.js"></script>
<link rel="stylesheet" href="index.css">
</head>
<body>
<!-- <div class="p-5 bg-primary text-white text-center">
<h1>My First Bootstrap 5 Page</h1>
<p>Resize this responsive page to see the effect!</p>
</div> -->
<!-- Navbar -->
<nav class="navbar navbar-expand-sm bg-dark navbar-dark">
<div class="container-fluid">
<ul class="navbar-nav">
<li class="nav-item">
<a class="nav-link active button trans" href="#about">Krishna Praneet Gudipaty</a>
</li>
<li class="nav-item">
<a class="nav-link button trans" href="#projects">Projects</a>
</li>
<li class="nav-item">
<a class="nav-link button trans" href="#experience">Experience</a>
</li>
<li class="nav-item">
<a class="nav-link button trans" href="#education">Education</a>
</li>
<li class="nav-item">
<a class="nav-link button trans" href="#academic">Teaching</a>
</li>
<li class="nav-item">
<a class="nav-link button trans" href="files/2024-07-22_KrishnaPraneet_Gudipaty_Resume.pdf" target="_blank">Resume</a>
</li>
<!-- <li class="nav-item">
<a class="nav-link disabled" href="#">Disabled</a>
</li> -->
<li class="nav-item">
<a class="nav-link button trans btn" onclick="toggleDarkMode()"><img class="pb-1" src="images/dark-mode.svg"></a>
</li>
</ul>
</div>
</nav>
<div class="container mt-5">
<div class="row">
<div class="col-sm-2 justify-content-center" >
<img class="fakeimg " src="images/profile.png" alt="Profile" style="margin-bottom: 1.5%;"/>
<!-- <p class="fw-bold text-center mt-1 fs-5">Krishna Praneet Gudipaty</p> -->
<h4 class="mt-4">Krishna Praneet Gudipaty</h3>
<p>Master of Science <br> <a href="https://www.cics.umass.edu/" class="text-secondary">College of Information and Computer Sciences</a> <br> University of Massachusetts Amherst</p>
<p><img src="images/location-logo.svg"> Amherst, MA, USA</p>
<!-- <p class="">Connect with me!</p> -->
<p><img src="images/email-logo.svg" class="me-2">[email protected]</p>
<p><a href="https://www.linkedin.com/in/krishna-praneet/" class="text-secondary"><img src="images/linkedin-logo.svg" class="me-2">krishna-praneet</a></p>
<p><a href="https://github.com/krishna-praneet" class="text-secondary"><img src="images/github-logo.svg" class="me-2">krishna-praneet</a></p>
<hr class="d-sm-none">
</div>
<div class="col-sm-9 ms-5" id="about">
<h2>About Me</h2>
<p>Hi! I’m a Ph.D. student in computer science at the University of Massachusetts Amherst. My research is focussed on the engineering and decarbonization of cloud and AI systems. Prior to this, I completed my Masters at UMass Amherst, with a thesis on LDPC Decoders for Quantum Error correction. I also have 2 years of experience working in the industry as a full-stack software engineer at Deskera, where I worked on the development of distributed and parallel microservices (Java Spring) + ReactJS UIs for business data flow across multiple e-commerce platforms. I am also a holder of a bachelor's degree from the Indian Institute of Technology Madras (IITM).</p>
<!-- <p>In the interest of broadening my skillset, during my master’s, I have taken advanced courses in Machine Learning, Quantum information systems, software engineering, distributed and operating systems and in blockchain systems. Over the summer, I’ve been working on developing software libraries for decoding Quantum LDPC codes in Julia and implementing the ideas from my coursework.</p> -->
<h2 class="mt-5" id="projects">Projects</h2><hr>
<!-- Deskera -->
<div class="d-flex justify-content-between">
<div class="d-flex">
<h5>LDPC Decoders for Quantum Error Correcting Codes</h5>
</div>
<em>Jun '23 - May '24</em>
</div>
<p>Developed and deployed a software library of simple iterative bit-flip and belief propagation decoding algorithms in Julia <br>
Implemented Ordered Statistics Decoding processing that improved logical error rate by 20% for LDPC qubit codes</p>
<div class="d-flex justify-content-between">
<div class="d-flex">
<h5>Stock Trading System</h5>
</div>
<em>Feb '23 - May '23</em>
</div>
<p>Developed a 3-tier stock trading server using Python that handles requests from various clients using a thread-pool mode with replication and consistency accross failures. Also Implemented Least Recently Used caching for improving latency of requests.</p>
<div class="d-flex justify-content-between">
<div class="d-flex">
<h5>Stock Recommendation System</h5>
</div>
<em>Feb '23 - Feb '23</em>
</div>
<p>Developed a stock recommendation system using Python which analyzes historical data using PySpark and PyTorch <br>
Implemented LSTM, Random Forest, and Factorization Machine models from SparkMLLib to predict stock closing prices</p>
<div class="d-flex justify-content-between">
<div class="d-flex">
<h5>Elevation-based Navigation System (EleNa)</h5>
</div>
<em>Oct '22 - Dec '22</em>
</div>
<p>Built a navigation app using JavaScript and React to suggest the shortest path between two user-defined locations <br>
Implemented Dijkstra’s, A*, and BFS algorithms with elevation gain and achieved the best performance with the first two</p>
<h2 class="mt-5" id="experience">Industry Experience</h2><hr>
<!-- Deskera -->
<div class="d-flex justify-content-between">
<div class="d-flex">
<img src="images/deskera.jpeg" alt="Deskera" class="company-icon" />
<div class="d-flex ms-2">
<h5>Deskera</h5>
<p class="ms-1"> - Software Development Engineer (Full-stack)</p>
</div>
</div>
<em>Dec '20 - Jul '22</em>
</div>
<!-- Publicis Sapient -->
<div class="d-flex justify-content-between">
<div class="d-flex">
<img src="images/publicis-sapient.png" alt="Publicis Sapient" class="company-icon" />
<div class="d-flex ms-2">
<h5>Publicis Sapient</h5>
<p class="ms-1">- Software Engineer Intern (Full-stack)</p>
</div>
</div>
<em>May '19 - Jul '19</em>
</div>
<!-- Boeing -->
<div class="d-flex justify-content-between">
<div class="d-flex">
<img src="images/boeing.png" alt="Boeing" class="company-icon" />
<div class="d-flex ms-2">
<h5>Boeing</h5>
<p class="ms-1">- Software Research Intern (MATLAB)</p>
</div>
</div>
<em>Jun '18 - Jul '18</em>
</div>
<h2 class="mt-5" id="education">Education</h2><hr>
<!-- UMass Ph.D. -->
<div class="d-flex justify-content-between">
<div class="d-flex">
<img src="images/umass.png" alt="UMass Amherst" class="company-icon" />
<div class="d-flex ms-2">
<h5>UMass Amherst</h5>
<p class="ms-1">- Doctor of Philosophy (PhD) in Computer Science (GPA: 4.0)</p>
</div>
</div>
<em>Jul '24 - Present</em>
</div>
<!-- UMass MS -->
<div class="d-flex justify-content-between">
<div class="d-flex">
<img src="images/umass.png" alt="UMass Amherst" class="company-icon" />
<div class="d-flex ms-2">
<h5>UMass Amherst</h5>
<p class="ms-1">- Master of Science (MS) in Computer Science (GPA: 3.97)</p>
</div>
</div>
<em>Sep '22 - May '24</em>
</div>
<!-- IITM -->
<div class="d-flex justify-content-between">
<div class="d-flex">
<img src="images/iitm.png" alt="IIT Madras" class="company-icon" />
<div class="d-flex ms-2">
<h5>IIT Madras</h5>
<p class="ms-1">- Bachelor of Technology (GPA: 8.75 / 10.0)</p>
</div>
</div>
<em>Aug '16 - Dec '20</em>
</div>
<h2 class="mt-5" id="academic">Teaching Experience</h2><hr>
<div class="d-flex justify-content-between">
<div class="d-flex">
<h5 class="pe-1">Teaching Assistant </h5> - CS 230: Computer System Principles
</div>
<em>Sep '24 - Dec '24</em>
</div>
<div class="d-flex justify-content-between">
<div class="d-flex">
<h5 class="pe-1">Grading Assistant </h5> - CS 677: Distributed and Operating Systems
</div>
<em>Feb '24 - May '24</em>
</div>
<div class="d-flex justify-content-between">
<div class="d-flex">
<h5 class="pe-1">Teaching Assistant</h5>- MM 2061: Phase Transformations
</div>
<em>Jan '20 - May '20</em>
</div>
<!-- <p>Developed a 3-tier stock trading server using Python that handles requests from various clients using a thread-pool mode with replication and consistency accross failures. Also Implemented Least Recently Used caching for improving latency of requests.</p> -->
<!-- <p>Some text..</p>
<p>Sunt in culpa qui officia deserunt mollit anim id est laborum consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco.</p> -->
</div>
<!-- <div class="col-sm-2 pr-2"></div> -->
</div>
</div>
<div class="mt-5 p-1 bg-dark text-white text-center">
<p>© 2024 Krishna Praneet Gudipaty. Thanks for visiting! Back to <a href="#" class="text-secondary">top</a>.</p>
</div>
</body>
</html>