## 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-21|2021-05-21]] <== <button class="date_button_today">Today</button> ==> [[DevLog/log/2021-05-24|2021-05-24]]
- [[VS Code]]
- opening the file search with `CTRL+P` and then typing an `@` will search for _"symbols"_ like Classes, methods, and variables useful for navigating a Table of contents like organization of a code file
- Right clicking on Classes, Methods, and anything else and using `peek` will let you see the code's definition, declaration, and references for every instance of it's usage
- Right click and `rename symbol` refactors every instance of that variables name. It's much more efficient that a search and relpace since it's using a logical approach
- `CTRL+K Z` enters zen mode