## Notes
### Theory
[[Teach then experiment]]
### Strategies
- autonomous objectives where you have to figure out the solution through experimenting with constraints
- Give less information, just enough to start. Only give feedback as they need it.
- Speak less so more time is spent on practicing
### Types
[[Knowledge transfer through cognitive apprenticeship]]
## Queries
### To Develop 🌱
```dataview
list from #note/🌱 AND !"Hidden"
where contains(Links, this.file.link)
sort file.mtime desc
```
### Notes 📝
```dataview
list from [[]] AND !outgoing([[]]) AND !#input AND !#thought AND !"Hidden"
sort file.mtime desc
```
### Inputs 📥
```dataview
table Tags as Type, Links, Created
from [[]] AND #input AND !"Hidden" AND !outgoing([[]])
sort file.mtime desc
```
### Thoughts 💭
```dataview
table Created
from [[]] AND #thought AND !"Hidden" AND !outgoing([[]])
sort file.mtime desc
```