## 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-13|2021-09-13]] <== <button class="date_button_today">Today</button> ==> [[DevLog/log/2021-09-17|2021-09-17]]
- [[pandas]] [[Python]] [[DevLog/Z/csv]] [Why “df.to_csv” could be a Mistake ?][1]
- [[ssis]] [[tsql]] [[SQL Server Management Studio]] [[Python]] [3 Reasons Why I’m Ditching SSIS for Python][2]
- [[bash]] [looping through `ls` results in bash shell script][3]
[1]: https://medium.com/analytics-vidhya/why-df-to-csv-could-be-a-mistake-f361cf6d40bd
[2]: https://towardsdatascience.com/3-reasons-why-im-ditching-ssis-for-python-ee129fa127b5
[3]: https://superuser.com/questions/31464/looping-through-ls-results-in-bash-shell-script#31466