1. πŸ§˜β€β™‚οΈ Personal Well-being & Routine

  • Health goals: physical, mental, emotional
  • Daily habits: meditation, exercise, nutrition
  • Sleep schedule, mindfulness practices

2. πŸ’­ Core Values & Beliefs

  • Key principles guiding your decisions
  • Personal philosophies (e.g., minimalism, growth mindset)
  • How you define success and fulfillment

3. 🎯 Short-Term Goals

File (4)DescriptionCompleted OnTeamCompleted
A1.0 About Silvythe legendary person who runs this websiteβŒβœ…
A1.01 Schedulehow my days are scheduledMay 04, 2025βŒβœ…
W7.0 Browser Bookmarksorganization methodApril 29, 2025βŒβœ…
W6.0 Testimonypolicy I care aboutMarch 09, 2025βŒβœ…

4. 🌱 Personal Growth & Development

  • Learning areas: new skills, experiences, books, hobbies
  • Self-improvement projects (e.g., public speaking, time management)
  • Feedback loops: self-reflection, journaling, mentoring

5. πŸ‘« Relationships & Community

  • Key personal relationships: family, friends, mentors
  • Social network: building meaningful connections
  • Communities you contribute to (offline/online)

6. 🏠 Home & Environment

  • Physical space: organization, design, comfort
  • Minimalism or intentional living practices
  • Creating a sanctuary for creativity and relaxation

7. πŸ’Ό Life Work & Career Integration

  • Aligning professional life with personal values
  • Integrating career goals with personal aspirations
  • Avoiding burnout and fostering sustainable productivity

8. πŸŽ‰ Hobbies & Passions

  • Creative outlets: art, music, writing, sports, etc.
  • Exploration and travel plans
  • Side projects or β€œpersonal experiments” you’re pursuing

9. πŸ—ΊοΈ Long-Term Vision & Legacy

File (1)Time (Actual / Estimated)DescriptionCompleted OnTeamCompleted
A1.02 Trying Food0h / 0harchive of foods I’ve tried❌❌

Legacy & Impact

  • What you want to contribute to the world or leave behind

10. 🌐 Cross-Disciplinary Influence

  • How your career, creativity, and personal life intertwine
  • Skills and knowledge flowing between your MOCs (Tech, Art, Writing, etc.)

πŸ“‹ Focus Overview Table (DataviewJS)

const pages = dv.pages('"content"').filter(p => (p.area ?? []).includes("Life"));const rows = pages.map(p => {  const timeLog = p.time_log || [];  const est = Number(p.estimated_time ?? 0);  const act = Number(p.actual_time ?? 0);  const rate = Number(p.hourly_rate ?? 0);  const tasks = p.file.tasks || [];  const completedTasks = tasks.filter(t => t.completed).length;  const totalTasks = tasks.length;  const percent = totalTasks === 0 ? "0%" : `${Math.round((completedTasks / totalTasks) * 100)}%`;  const variance = est === 0 ? "–" : `${Math.round(((act - est) / est) * 100)}%`;  const status = act > est ? "Overrun" : act < est ? "Underrun" : "On Target";  const cost = rate * act;  const lastUpdated = p.last_update ?? "-";    return [    dv.fileLink(p.file.name),    lastUpdated,    `${act}h / ${est}h`,    variance,    status,    `$${cost.toLocaleString()}`,    p.priority ?? "-",    p.description ?? "-",    p.completed_on ?? "-",    (p.skills ?? []).filter(s => s).map(s => dv.fileLink(s)).join(", "),    percent,    p.team ? "βœ…" : "❌",    p.completed ? "βœ…" : "❌"  ];});dv.table(  [    "File",    "Last Updated",    "Time (Actual / Estimated)",    "% Variance",    "Status",    "Cost",    "Priority",    "Description",    "Completed On",    "Skills",    "Task Completion",    "Team",    "Completed"  ],  rows);