- **First Light**: What is on your mind? What is your focus today?
- **Last Light**: What were wins today? What's on tap for tomorrow?
# Freewrite
Stocks making a small recovery this week as I gear up for the [[Windhorse Mens Retreat]]
Trying to get my social media reels going but something isnt right, just can't break the hump. WOrkflow is too convoluted and disjointed but my focus today is to finalize 2-3 clips and post. This is part of [[Brand Reflections]]
Also playing around in Obsidian Publish and Ghost for my personal website but still can't get through the weeds here. Everytime I step foward theres like 5 new things to learn and then my time needs to go towards learning those things to get back to the progress I'm making on my actual goal - like the website
> [!calendar] Past years
> ```base
> filters:
> and:
> - formula["On this day"]
> - file != this.file
> formulas:
> date: date(file.basename.slice(0, 10))
> created_date: if(created.isType("date"), created, if(created.isType("string"), date(created), null))
> active_note_created: if(this.created.isType("date"), this.created, if(this.created.isType("string"), date(this.created), null))
> today_mmdd: formula.active_note_created.format("MMDD")
> On this day: formula.date.format("MMDD") == formula.today_mmdd || formula.created_date.format("MMDD") == formula.today_mmdd
> Year Modified: created.year
> "Outlink #": file.links.length
> Links: file.backlinks.length
> Shared Links: list(this.file.links).filter(list(file.links).containsAny(value)).unique()
> Years: created.toString()
> views:
> - type: table
> name: On this day
> order:
> - formula.Years
> - file.name
> sort:
> - property: formula.Years
> direction: DESC
> limit: 33
> columnSize:
> formula.Years: 93
>
> ```