## On This Day...
```dataview
LIST
FROM "DevLog/log"
WHERE dateformat(file.day, "MM-dd") = dateformat(this.file.day, "MM-dd")
```
---
## Notes Created Today
```dataview
TABLE created, updated as modified, tags, type, status
FROM "DevLog" AND !"DevLog/log"
WHERE contains(dateformat(file.ctime, "YYYY-MM-dd"), dateformat(this.file.day, "YYYY-MM-dd"))
```
---
[[DevLog/log/2021-05-20|2021-05-20]] <== <button class="date_button_today">Today</button> ==> [[DevLog/log/2021-05-23|2021-05-23]]
- [[vim]]
- command `<number>i<text>`
- number of times to insert
- insert key
- text to insert
- [[VS Code]] [Guided walkthroughs](https://github.com/microsoft/codetour) for a code base! 🤯
- [[Bash]] [[VS Code]] Extension `rogalmic.bash-debug` to debug bash scripts
- [[Bash]] [[VS Code]] Extension `mads-hartmann.bash-ide-vscode` to develop Bash scripts in an IDE link environment
- [[git]] [[VS Code]] Extension `fabiospampinato.vscode-diff` makes doing `git diff` easy
- [[Python]] [[VS Code]] Extension `ms-pyright.pyright` for static type checking
- [[VS Code]]
- Manually add code folding markers
- with comments:
```
//#region
fold me
//#endregion
```