-
Notifications
You must be signed in to change notification settings - Fork 6
/
resume.py
208 lines (205 loc) · 8.48 KB
/
resume.py
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
# Koushik Krishnan's Resume
from resume_builder import (
Resume,
Section,
SectionEntry,
ContactInfo,
ConcatText,
ItalicsText,
UnderlinedText,
LinkText,
BulletedList,
)
resume = Resume(
contact_info=ContactInfo(
name="Koushik Krishnan",
details=[
"(111) 111-1111",
LinkText("koushik.bearblog.dev", "https://koushik.bearblog.dev"),
LinkText(
"linkedin.com/in/koushikkrishnan",
"https://www.linkedin.com/in/koushikkrishnan/",
),
LinkText("github.com/koek67", "https://www.github.com/koek67"),
],
tag_line="Making software as reliable as the sunrise.",
),
sections=[
Section(
title="Experience",
entries=[
SectionEntry(
title=LinkText("Microsoft", "https://www.microsoft.com"),
caption="Senior Software Engineer",
location="Remote",
dates="February 2023 - present",
description=BulletedList(
[
"Building reliability improvements into the storage and replication layers of Cosmos DB.",
"Technical lead for a team of engineers, ramping them up on distributed systems and database concepts as well as preparing them for incident response.",
]
),
),
SectionEntry(
title=LinkText("Yugabyte", "https://www.yugabyte.com"),
caption="Senior Site Reliability Engineer",
location="Seattle, Washington",
dates="May 2022 - February 2023",
description=BulletedList(
[
"Managed reliable operation of Kubernetes and Yugabyte database clusters across AWS and GCP for the Yugabyte Managed product."
]
),
),
SectionEntry(
title=LinkText("Microsoft", "https://www.microsoft.com"),
caption="Software Engineer 2, Azure Cosmos DB",
location="Redmond, Washington",
dates="August 2018 - April 2022",
description=BulletedList(
[
"Worked as a technical lead for a petabyte-scale, globally distributed database. Reduced number of production incidents by 80%.",
'Founded a team that built a Python microservice that would perform real-time root cause analysis/mitigation of incidents and eliminate the need for an on-call engineer. Open sourced this work on Github as <a class="open-link" target="_blank" href="http://github.com/microsoft/jupyrest">Jupyrest</a>',
]
),
),
SectionEntry(
title=LinkText("Microsoft", "https://www.microsoft.com"),
caption="Software Engineering Intern, Azure Cosmos DB",
location="Seattle, Washington",
dates="May 2017 - August 2017",
),
SectionEntry(
title=LinkText("Fitbit", "https://fitbit.com"),
caption="Software Engineering Intern",
location="Boston, Massachusetts",
dates="May 2016 - August 2016",
),
SectionEntry(
title=LinkText("Kayak.com", "https://www.kayak.com"),
caption="Software Engineering Intern",
location="Concord, Massachusetts",
dates="May 2015 - August 2015",
),
],
),
Section(
title="Presentations",
entries=[
SectionEntry(
title=LinkText(
text="PyCon 2024",
url="https://us.pycon.org/2024/schedule/presentation/95/",
show_icon=True,
),
caption="Rest East with Jupyrest: Deploy notebooks as web services",
location="Pittsburgh, PA",
dates="May 2024",
),
SectionEntry(
title=LinkText(
text="PyTexas",
url="https://www.pytexas.org/2024/schedule/talks/#rest-easy-with-jupyrest-deploy-notebooks-as-web-services",
show_icon=True,
),
caption="Rest East with Jupyrest",
location="Austin, TX",
dates="April 2024",
),
SectionEntry(
title=LinkText(
text="PyCascades",
url="https://2024.pycascades.com/program/talks/jupyrest/",
show_icon=True,
),
caption="Rest East with Jupyrest: Deploy notebooks as web services",
location="Seattle, WA",
dates="April 2024",
),
SectionEntry(
title=LinkText(
text="PyOhio 2023",
url="https://www.pyohio.org/2023/speakers/koushik-krishnan/",
show_icon=True,
),
caption=LinkText(
"Serverless Jupyter Notebook Functions (YouTube)",
url="https://youtu.be/hoGJ0c3jIeo?si=srbRtjSxOxETFWN5",
show_icon=True,
),
location="Virtual",
dates="December 2023",
),
SectionEntry(
title=LinkText(
text="PyData Seattle 2023",
url="https://seattle2023.pydata.org/cfp/talk/K8KV8M/",
show_icon=True,
),
caption=LinkText(
"Notebooks as Serverless Functions (YouTube)",
url="https://youtu.be/hoGJ0c3jIeo?si=srbRtjSxOxETFWN5",
show_icon=True,
),
location="Seattle, WA",
dates="April 2023",
),
],
),
Section(
title="Volunteering",
entries=[
SectionEntry(
title=LinkText(
"ASHA Chennai",
url="https://chennai.ashanet.org/",
show_icon=True,
),
caption="Spoken English Teacher",
location="Remote",
dates="December 2020 - March 2022",
description=BulletedList(
[
"Created a curriculum with story-telling, skits, and friendly debates to provide disadvantaged children isolated in quarantine a fun way to learn spoken English.",
]
),
)
],
),
Section(
title="Education",
entries=[
SectionEntry(
title="Georgia Institute of Technology",
location="Atlanta, Georgia",
dates="August 2014 - May 2018",
description=ItalicsText(
"Bachelors of Science in Computer Science and Mathematics"
),
)
],
),
Section(
title="Skills",
entries=[
SectionEntry(
description=BulletedList(
[
ConcatText(
UnderlinedText("Languages:"),
" Python, Golang, C/C++, JavaScript, C#, Powershell, Zig",
),
ConcatText(
UnderlinedText("Tools:"),
" Kubernetes, PostgreSQL, Linux, Windows, Azure Service Fabric, Distributed Databases, Storage Engines, Docker",
),
]
)
),
],
),
],
)
if __name__ == "__main__":
resume.cli_main()