#Note/Permanent #Habit/Metric >[!info] **Success Criteria**: The habit is considered successful for the week when I have at least **one** high quality socialization activity. **Why [[The Benefits of Socializing|Social]]?** ```dataviewjs dv.span("**🍻Social🍻**") const calendarData = { year: 2025, // (optional) defaults to current year colors: { white: ["#fff","#fff","#fff","#fff333","#fff"], }, entries: [] } //DataviewJS loop for (let page of dv.pages('"Diary"').where(p=>p["social"])) { //dv.span("<br>" + page.file.name) // uncomment for troubleshooting calendarData.entries.push({ date: page.file.name, intensity: 4, content: await dv.span(`[🍻](${page.file.name})`), //for hover preview", }) } renderHeatmapCalendar(this.container, calendarData) ```