## 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-12-31|2021-12-31]] <== <button class="date_button_today">Today</button> ==> [[DevLog/log/2022-01-02|2022-01-02]]
## Inputs
## Notes
Today i read from a comment on a youtube video of mine from another user that a modern IT practice these days is to forgo installing a dedicated OS like a linux disto and instead to just put a [[Hypervisor]] like [[Proxmox]] on the bare metal and use that to run virtual machine and [[Docker]] containers.
So now i'm going to need to look more into how to set up [[Proxmox]] and more about [[Docker]] containers and virtual machine
To help with monthly reviews in dendron i just made a [[VS Code]] task to get me the files edited that month from the dendron vault!
```json
{
"version": "2.0.0",
"tasks": [
{
"label": "Notes Made This Month",
"type": "shell",
"command": "cd \"${workspaceFolder}\" && lsd -lA *.md | awk '{print $7,$10,$NF}' | grep \"$(date +\"%b %Y\")\" | awk '{print \"[[\"$NF\"]]\"}'"
}
]
}
```