---
type: dashboard
area: career
title: "Career & Interview Base Dashboard"
tags:
  - base
  - career
  - dashboard
date: 2026-07-22
---

# 💼 Career & Interview Hub

> 🗃️ **[Open Native Obsidian Career Base View](file:///C:/Users/Hamza/Documents/Notes-Vault/05%20Career/Career.base)** (`[[05 Career/Career.base|Career.base]]`)

---

## 📊 Native Obsidian Base View

```base
filters:
  and:
    - 'type == "career"'

properties:
  interview_role:
    displayName: "Role"
  company:
    displayName: "Company"
  role:
    displayName: "Role Title"
  stage:
    displayName: "Stage"

views:
  - type: table
    name: "🚀 My Applications (Job Hunt)"
    filters:
      and:
        - 'interview_role == "Candidate (Me)"'
    order:
      - file.name
      - company
      - role
      - stage

  - type: table
    name: "👥 Conducting Candidate Interviews"
    filters:
      and:
        - 'interview_role == "Interviewer (Me)"'
    order:
      - file.name
      - target_candidate
      - role
      - stage
```

---

## 🔍 Dataview Views

### 🚀 1. My Job Applications & Interview Prep (Candidate / Job Hunt)
*Interviews and job specs where I am applying to other companies.*

```dataview
TABLE WITHOUT ID
  file.link AS "Document Title",
  company AS "Company / Target",
  role AS "Role",
  stage AS "Stage / Phase"
FROM "05 Career/01 My Applications"
WHERE type = "career"
SORT date DESC
```

---

### 👥 2. Interviews I Conduct (Interviewer / Evaluating Candidates)
*Evaluation guides, scoring frameworks, and candidate assessment notes for internal hiring.*

```dataview
TABLE WITHOUT ID
  file.link AS "Guide / Assessment Title",
  target_candidate AS "Target Candidate / Group",
  role AS "Evaluated Role",
  stage AS "Assessment Stage"
FROM "05 Career/02 Conducting Interviews"
WHERE type = "career"
SORT date DESC
```

---

### 📄 3. Resume & Profile
```dataview
TABLE WITHOUT ID
  file.link AS "Resume File",
  role AS "Headline Role",
  updated AS "Last Updated"
FROM "05 Career/03 Resume"
WHERE type = "career"
```
