## 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-06-03|2021-06-03]] <== <button class="date_button_today">Today</button> ==> [[DevLog/log/2021-06-06|2021-06-06]]
- [[bash]] `case` statements can have actions split legibly across lines for legibility
```bash
case "$RESPONSE" in
[QqNn])
Clean_Exit
;;
[Yy])
git config --global user.name "$USER_NAME"
git config --global user.email "
[email protected]"
echo -e "\n${GREEN}Great!${NC} That's all configured now...$successful_execution_msg"
;;
*)
>&2 echo -e "Invalid choice, please select either ${LGREEN}y${NC} or ${LRED}n${NC}\n\n"
sleep 1
Dirty_Exit
;;
esac
```
- [[bash]] using git bash you can open a windows explorer window in the current directory by running the command `explorer`
- [[rust]] [[Python]] [Google's Dependency Management service](https://deps.dev/)