## Tasks
- Learn Obsidian
## Notes
Purpose
- Draw in right people without much effort
- Build up relationship and trust with audience
- [[Superfan]]
### Video Course
- Warm welcome
- Introduction
- "Why" of the course
- Also gives live example of principles taught
- How you can make the most of this course
- Ending
- "more examples"
- "want to get your help" consultation
- upsell to live cohort
- "your course sucks/rocks"
### Interesting Lessons
#### Designing a learning experience
- Structure your course to drive results
- Email lessons that wow students
- Encourage student replies
- 5 formatting choices
- Subject lines that increase open rates
#### Switching on autopilot mode
- Customize email lessons
- Email footer
- Sequence schedule so you can be hands-off
- What you should expect from open, click, and completion rates
#### Fueling raving fans growth
- Create momentum for launch by building in public
- 7 ways to encourage students to share your course
- How to track course mentions
- Stay in touch with students through your newsletter
### Kevon
- Emphasis on building in public
- Email marketing takes in people who want to take the course, and by building trust, you let them share the course with their friends
#### Tools
- Loom embed to manage course
- Carrd for websites
- ThriveCart is one-time fee
- Need 120k in sales to break even in comparison to just using convertkit
- 900 USD, 10k a year
- Capable of scaling to 150k/year, so with expenses of 10800, it's a 92.8% profit margin
### Email engine
- Making Twitter Friends
- In third lesson, you can start
## All Inputs
```dataview
table Status, Created
from [[]] and #inputCollection
where contains(Collection, [[]])
Sort Created desc
```
## By Status
### No Status
```dataview
table Created, rating, source
FROM [[]] and #input AND !"Hidden"
where !Status AND contains(Collection, [[]])
SORT Created desc
```
### Not Started `#🟥`
```dataview
table Created, rating, source
FROM [[]] and #input AND #🟥 AND !"Hidden"
where contains(Collection, [[]])
SORT Created desc
```
### Consuming Media `#🟧`
```dataview
table Created, rating, source
FROM [[]] and #input AND #🟧 AND !"Hidden"
where contains(Collection, [[]])
SORT Created desc
```
### Implementation `#🟨`
```dataview
table Created, rating, source
FROM [[]] and #input AND #🟨 AND !"Hidden"
where contains(Collection, [[]])
SORT Created desc
```
### Finished `#🟩`
```dataview
table finished, rating, source
FROM [[]] and #input AND #🟩 AND !"Hidden"
where contains(Collection, [[]])
SORT Created desc
```
### Archived `#⬛`
```dataview
table finished, rating, source
FROM [[]] and #input AND #⬛ AND !"Hidden"
where contains(Collection, [[]])
SORT Created desc
```