## 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-09-28|2021-09-28]] <== <button class="date_button_today">Today</button> ==> [[DevLog/log/2021-10-04|2021-10-04]]
#### Inputs
- [x] [[+ 2021-12-15 Python Typing Type Hints and Annotations]]
- [[python-custom-exceptions]]
#### Notes
Today i worked a decent amount with [[pyyaml]] and moving all authentication variables and values to a single [[Templates/Metadata/yaml]] data file stored in the users local appdata folder
Learned that matches from the [[re]] module can be converted to booleans for if statements by wrapping the whole function in a `bool()`
also started playing a little more with custom exceptions messages