diff --git a/index.html b/index.html
index 90567c2..1f7aec1 100644
--- a/index.html
+++ b/index.html
@@ -104,8 +104,16 @@
Work Experience
Staff Software Engineer
+
-
- Lumi by Pampers (Tech Lead)
+
- Led the development of a smart diaper sensor and camera system.
@@ -115,8 +123,16 @@ Work Experience
+
-
- Healthy at Work (Tech Lead)
+
- Covid testing program for educational institutions and businesses enabling safe return to school/work.
@@ -128,8 +144,16 @@ Work Experience
+
-
- Verily Retinal Service (Tech Lead, Engineering Manager)
+
- Led development of core services including multiple microservices and frontends through exploration, refinement, testing to on-time public launch.
@@ -141,8 +165,16 @@ Work Experience
+
-
- Consumer Health Systems, Verily Lightpath (Software Engineer)
+
- Built integrations with biometrics devices (blood glucose monitors, blood pressure cuffs, etc.) for chronic condition management.
@@ -152,8 +184,16 @@ Work Experience
+
-
- Enrollment, Verily Lightpath & VerilyMe (Tech Lead)
+
- 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.
@@ -172,8 +212,14 @@ Work Experience
Senior Software Engineer
+
-
- Google Video Conferencing Platform (Tech Lead)
+
- Led the development of software powering in-conference room video conferencing experience.
diff --git a/resume.html.ejs b/resume.html.ejs
index 78974a3..0b75b79 100644
--- a/resume.html.ejs
+++ b/resume.html.ejs
@@ -85,8 +85,26 @@
<%= job.role %>
<% 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;
+ }
+ }
+%>
-
- <% if (project.url) { %><%= project.title %><% } else { %><%= project.title %><% } %> (<%= project.roleLabel %>)
+
<% project.items.forEach(function(item) { %>
- <%= item %>
diff --git a/resume.json b/resume.json
index b1948b0..129289c 100644
--- a/resume.json
+++ b/resume.json
@@ -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": [
@@ -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": [
@@ -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.",
@@ -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.",
@@ -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."
diff --git a/screenshots/html-screenshot.png b/screenshots/html-screenshot.png
index 5e60633..5b8b117 100644
Binary files a/screenshots/html-screenshot.png and b/screenshots/html-screenshot.png differ
diff --git a/screenshots/pdf-screenshot.png b/screenshots/pdf-screenshot.png
index a170eea..341f5a4 100644
Binary files a/screenshots/pdf-screenshot.png and b/screenshots/pdf-screenshot.png differ
diff --git a/styles.css b/styles.css
index 0e698b4..0bcafea 100644
--- a/styles.css
+++ b/styles.css
@@ -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 {