Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
58 changes: 52 additions & 6 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -104,8 +104,16 @@ <h2>Work Experience</h2>
<div class="job-role">Staff Software Engineer</div>
<ul>


<li class="project-item">
<span class="project-title"><a href="https://web.archive.org/web/20240902050109/https://news.pg.com/news-releases/news-details/2020/Baby-Monitoring-Takes-a-Quantum-Leap-Lumi-by-Pampers-All-in-One-Connected-Baby-Care-System-Unveiled-at-CES-2020/default.aspx" target="_blank" rel="noopener noreferrer">Lumi by Pampers</a></span> <span class="project-role">(Tech Lead)</span>
<div class="project-header">
<div class="project-meta">
<span class="project-title"><a href="https://web.archive.org/web/20240902050109/https://news.pg.com/news-releases/news-details/2020/Baby-Monitoring-Takes-a-Quantum-Leap-Lumi-by-Pampers-All-in-One-Connected-Baby-Care-System-Unveiled-at-CES-2020/default.aspx" target="_blank" rel="noopener noreferrer">Lumi by Pampers</a></span> <span class="project-role">(Tech Lead)</span>
</div>

<span class="project-dates">2019 – 2020</span>

</div>
<ul>

<li>Led the development of a smart diaper sensor and camera system.</li>
Expand All @@ -115,8 +123,16 @@ <h2>Work Experience</h2>
</ul>
</li>


<li class="project-item">
<span class="project-title"><a href="https://verily.com/perspectives/verily-launches-healthy-at-work-program-to-support-organizations-in-their-efforts-to-ensure-a-safe-return-to-work-and-school" target="_blank" rel="noopener noreferrer">Healthy at Work</a></span> <span class="project-role">(Tech Lead)</span>
<div class="project-header">
<div class="project-meta">
<span class="project-title"><a href="https://verily.com/perspectives/verily-launches-healthy-at-work-program-to-support-organizations-in-their-efforts-to-ensure-a-safe-return-to-work-and-school" target="_blank" rel="noopener noreferrer">Healthy at Work</a></span> <span class="project-role">(Tech Lead)</span>
</div>

<span class="project-dates">2020 – 2022</span>

</div>
<ul>

<li>Covid testing program for educational institutions and businesses enabling safe return to school/work.</li>
Expand All @@ -128,8 +144,16 @@ <h2>Work Experience</h2>
</ul>
</li>


<li class="project-item">
<span class="project-title">Verily Retinal Service</span> <span class="project-role">(Tech Lead, Engineering Manager)</span>
<div class="project-header">
<div class="project-meta">
<span class="project-title">Verily Retinal Service</span> <span class="project-role">(Tech Lead, Engineering Manager)</span>
</div>

<span class="project-dates">2022 – 2025</span>

</div>
<ul>

<li>Led development of core services including multiple microservices and frontends through exploration, refinement, testing to on-time public launch.</li>
Expand All @@ -141,8 +165,16 @@ <h2>Work Experience</h2>
</ul>
</li>


<li class="project-item">
<span class="project-title">Consumer Health Systems, Verily Lightpath</span> <span class="project-role">(Software Engineer)</span>
<div class="project-header">
<div class="project-meta">
<span class="project-title">Consumer Health Systems, Verily Lightpath</span> <span class="project-role">(Software Engineer)</span>
</div>

<span class="project-dates">2025</span>

</div>
<ul>

<li>Built integrations with biometrics devices (blood glucose monitors, blood pressure cuffs, etc.) for chronic condition management.</li>
Expand All @@ -152,8 +184,16 @@ <h2>Work Experience</h2>
</ul>
</li>


<li class="project-item">
<span class="project-title">Enrollment, Verily Lightpath &amp; VerilyMe</span> <span class="project-role">(Tech Lead)</span>
<div class="project-header">
<div class="project-meta">
<span class="project-title">Enrollment, Verily Lightpath &amp; VerilyMe</span> <span class="project-role">(Tech Lead)</span>
</div>

<span class="project-dates">2025 – present</span>

</div>
<ul>

<li>Led the team responsible for users&#39; first interactions with the VerilyMe app, both for consumers and Lightpath customers, ensuring seamless onboarding and leak-free funnel.</li>
Expand All @@ -172,8 +212,14 @@ <h2>Work Experience</h2>
<div class="job-role">Senior Software Engineer</div>
<ul>


<li class="project-item">
<span class="project-title">Google Video Conferencing Platform</span> <span class="project-role">(Tech Lead)</span>
<div class="project-header">
<div class="project-meta">
<span class="project-title">Google Video Conferencing Platform</span> <span class="project-role">(Tech Lead)</span>
</div>

</div>
<ul>

<li>Led the development of software powering in-conference room video conferencing experience.</li>
Expand Down
20 changes: 19 additions & 1 deletion resume.html.ejs
Original file line number Diff line number Diff line change
Expand Up @@ -85,8 +85,26 @@
<div class="job-role"><%= job.role %></div>
<ul>
<% job.projects.forEach(function(project) { %>
<% var dateRange = '';
if (project.start_year) {
if (!project.end_year) {
dateRange = project.start_year + ' \u2013 present';
} else if (project.start_year === project.end_year) {
dateRange = String(project.start_year);
} else {
dateRange = project.start_year + ' \u2013 ' + project.end_year;
}
}
%>
<li class="project-item">
<span class="project-title"><% if (project.url) { %><a href="<%= project.url %>" target="_blank" rel="noopener noreferrer"><%= project.title %></a><% } else { %><%= project.title %><% } %></span> <span class="project-role">(<%= project.roleLabel %>)</span>
<div class="project-header">
<div class="project-meta">
<span class="project-title"><% if (project.url) { %><a href="<%= project.url %>" target="_blank" rel="noopener noreferrer"><%= project.title %></a><% } else { %><%= project.title %><% } %></span> <span class="project-role">(<%= project.roleLabel %>)</span>
</div>
<% if (dateRange) { %>
<span class="project-dates"><%= dateRange %></span>
<% } %>
</div>
<ul>
<% project.items.forEach(function(item) { %>
<li><%= item %></li>
Expand Down
9 changes: 9 additions & 0 deletions resume.json
Original file line number Diff line number Diff line change
Expand Up @@ -47,6 +47,8 @@
"projects": [
{
"title": "Lumi by Pampers",
"start_year": 2019,
"end_year": 2020,
"url": "https://web.archive.org/web/20240902050109/https://news.pg.com/news-releases/news-details/2020/Baby-Monitoring-Takes-a-Quantum-Leap-Lumi-by-Pampers-All-in-One-Connected-Baby-Care-System-Unveiled-at-CES-2020/default.aspx",
"roleLabel": "Tech Lead",
"items": [
Expand All @@ -56,6 +58,8 @@
},
{
"title": "Healthy at Work",
"start_year": 2020,
"end_year": 2022,
"url": "https://verily.com/perspectives/verily-launches-healthy-at-work-program-to-support-organizations-in-their-efforts-to-ensure-a-safe-return-to-work-and-school",
"roleLabel": "Tech Lead",
"items": [
Expand All @@ -66,6 +70,8 @@
},
{
"title": "Verily Retinal Service",
"start_year": 2022,
"end_year": 2025,
"roleLabel": "Tech Lead, Engineering Manager",
"items": [
"Led development of core services including multiple microservices and frontends through exploration, refinement, testing to on-time public launch.",
Expand All @@ -75,6 +81,8 @@
},
{
"title": "Consumer Health Systems, Verily Lightpath",
"start_year": 2025,
"end_year": 2025,
"roleLabel": "Software Engineer",
"items": [
"Built integrations with biometrics devices (blood glucose monitors, blood pressure cuffs, etc.) for chronic condition management.",
Expand All @@ -83,6 +91,7 @@
},
{
"title": "Enrollment, Verily Lightpath & VerilyMe",
"start_year": 2025,
"roleLabel": "Tech Lead",
"items": [
"Led the team responsible for users' first interactions with the VerilyMe app, both for consumers and Lightpath customers, ensuring seamless onboarding and leak-free funnel."
Expand Down
Binary file modified screenshots/html-screenshot.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified screenshots/pdf-screenshot.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
16 changes: 16 additions & 0 deletions styles.css
Original file line number Diff line number Diff line change
Expand Up @@ -266,6 +266,22 @@ td.bibtexitem {
color: var(--text-muted);
font-size: 0.88rem;
}
.project-header {
display: flex;
justify-content: space-between;
align-items: baseline;
gap: 1rem;
}
.project-meta {
flex: 1;
min-width: 0;
}
.project-dates {
font-size: 0.78rem;
color: var(--text-muted);
white-space: nowrap;
flex-shrink: 0;
}

/* ── Print / PDF ── */
@media print {
Expand Down
Loading