Full Page

Priya Nair

Staff Software Engineer

Summary

Ten years building data infrastructure at scale. Led the migration from Hadoop to a streaming-first architecture at a Series D fintech. Strong opinions about schema evolution, weakly held opinions about everything else.

Skills

Distributed Systems, Apache Kafka, Flink, Rust, Go, Postgres, Data Modeling

Experience

Staff Engineer — Ledger (2023–present), Senior Engineer — Streamline (2020–2023), Backend Engineer — DataCo (2017–2020), Junior Engineer — Initech (2015–2017)

Education

M.S. Computer Science — ETH Zurich, B.Tech Information Technology — IIT Bombay

Digital Resume

Structured resume with sections for experience summary, skills, links, and contact.

by DesignGenerate 0 stars 16 renders 0 forks

Schema

FieldType
full_name string
job_title string
summary text
email email
linkedin link
github link
skills list<string>
experience list<string>
education list<string>

Apply Values

POST JSON to the API endpoint:

POST /api/templates/digital-resume/apply
Content-Type: application/json

{
  "full_name": "Priya Nair",
  "job_title": "Staff Software Engineer",
  "summary": "Ten years building data infrastructure at scale. Led the migration from Hadoop to a streaming-first architecture at a Series D fintech. Strong opinions about schema evolution, weakly held opinions about everything else.",
  "email": "[email protected]",
  "linkedin": "https://linkedin.com/in/example",
  "github": "https://github.com",
  "skills": [
    "Distributed Systems",
    "Apache Kafka",
    "Flink",
    "Rust",
    "Go",
    "Postgres",
    "Data Modeling"
  ],
  "experience": [
    "Staff Engineer — Ledger (2023–present)",
    "Senior Engineer — Streamline (2020–2023)",
    "Backend Engineer — DataCo (2017–2020)",
    "Junior Engineer — Initech (2015–2017)"
  ],
  "education": [
    "M.S. Computer Science — ETH Zurich",
    "B.Tech Information Technology — IIT Bombay"
  ]
}

AI Prompt

Copy this prompt to generate a compatible template with any LLM:

You are an expert frontend designer.
Create a beautiful, modern HTML template for "Digital Resume" that strictly follows the constraints and schema below.

## Constraints
- Style everything using inline style="" attributes only (no external CSS, no <link>, no <style> tags)
- Do NOT use: <script>, <iframe>, <form>, <input>, <textarea>, <button>, <select>, <object>, <embed>, <details>, <dialog>
- Place data placeholders using this syntax: {{full_name:string}}, {{job_title:string}}, {{summary:text}}
- The template must be a single HTML fragment (no <html>, <head>, or <body> tags)
- Use system fonts: font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif (or Georgia, serif for editorial)

## JSON Schema
```json
{
  "full_name": "string",
  "job_title": "string",
  "summary": "text",
  "email": "email",
  "linkedin": "link",
  "github": "link",
  "skills": [
    "string"
  ],
  "experience": [
    "string"
  ],
  "education": [
    "string"
  ]
}
```

## Placeholder Syntax
Each data point uses `{{key:type}}` — for example:
- `{{full_name:string}}` → string
- `{{job_title:string}}` → string
- `{{summary:text}}` → text
- `{{email:email}}` → email
- `{{linkedin:link}}` → link
- `{{github:link}}` → link
- `{{skills:list<string>}}` → list<string>
- `{{experience:list<string>}}` → list<string>
- `{{education:list<string>}}` → list<string>

Output ONLY the HTML code block. No explanation.