-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
118 lines (105 loc) · 3.56 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Kedar Vaidya</title>
<link
href="https://fonts.googleapis.com/css2?family=Merriweather:wght@700&family=Open+Sans:wght@400;600&display=swap"
rel="stylesheet">
<style>
body {
display: flex;
align-items: center;
justify-content: center;
color: #444;
line-height: 1.6;
font-size: 18px;
font-family: 'Open Sans', sans-serif;
background-color: #f9f9f9;
}
.content-container {
flex: none;
max-width: 80%;
}
h1 {
font-size: 3em;
margin-bottom: 0.5em;
font-family: 'Merriweather', serif;
color: rgb(24, 24, 24);
line-height: 1.125;
}
.lead {
font-weight: 700;
font-family: 'Merriweather', serif;
}
.strong {
font-weight: 600;
}
a {
color: #3273dc;
cursor: pointer;
text-decoration: none;
font-weight: 400;
}
a:hover {
color: #363636;
}
hr {
background-color: #dddddd;
border: none;
display: block;
height: 2px;
margin: 1.5rem 0;
}
</style>
<!-- Global site tag (gtag.js) - Google Analytics -->
<script async src="https://www.googletagmanager.com/gtag/js?id=UA-17806840-29"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag() { dataLayer.push(arguments); }
gtag('js', new Date());
gtag('config', 'UA-17806840-29');
</script>
</head>
<body>
<div class="content-container">
<h1>Kedar Vaidya</h1>
<hr />
<p>
<span class="lead">tldr;</span><br />
<ul>
<li>Engineering Manager @ <a href="https://www.yelp.com/" class="strong">Yelp</a>
<br />
<b>previously at Yelp:</b>
<ul>
<li>Developer Productivity Engineer <b>(2021 - 2022)</b></li>
<li>Technical Lead & Full Stack Developer in Product Engineering <b>(2018 - 2021)</b></li>
</ul>
<li>M.S. in Computer Science @ <span
class="strong">Georgia Institute of Technology</span>, 2020-2023</li>
<li>B.S. in Computer Science @ <span class="strong">Purdue University</span>, 2014-2017</li>
</ul>
</p>
<hr />
<p>
<span class="lead">Writing.</span>
<a href="https://engineeringblog.yelp.com/2022/07/migrating-from-styleguidist-to-storybook.html">Migrating from Styleguidist to Storybook</a>,
<a href="https://engineeringblog.yelp.com/2022/02/server-side-rendering-at-scale.html">Server Side Rendering
at Scale @ Yelp</a>
</p>
<p>
<span class="lead">Links.</span>
<a href="https://www.linkedin.com/in/vaidyak/">LinkedIn</a>,
<a href="https://github.com/kedarv">Github</a>
</p>
<p>
<span class="lead">Projects.</span>
<a href="https://tv2cal.kedarv.com/">tv2cal</a>,
<a href="https://github.com/kedarv/votey">votey</a>,
<a href="https://boggld.kedarv.com/">Boggld</a>,
<a href="https://unstable.kedarv.com/">Unstable</a>
</p>
</div>
</body>
</html>