## 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-08-12|2021-08-12]] <== <button class="date_button_today">Today</button> ==> [[DevLog/log/2021-08-17|2021-08-17]]
- [[Python]] [[Docker]] [scaffoldy][1] service to make the generation of docker template files easier
- [[Python]] 3.10 case statements [Structural Pattern Matching - Exciting New Python Feature 3.10][2]
## New case statements
```python
x = "hello"
match x:
case "hello":
print("hello")
case "hi":
print("hi")
case _:
print("default case")
```
[1]: https://scaffoldy.io/
[2]: https://youtu.be/PeJNU339WHc