## 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-05-19|2021-05-19]] <== <button class="date_button_today">Today</button> ==> [[DevLog/log/2021-05-21|2021-05-21]]
- [[tsql]] [[ssis]]
- Can use variables within visual elements
- Can call scripts and other files like [[Clang]]
- Can run processes in loops and have automation steps that send email reports
- [[HTML]]
- Using [[@Andy Matuschak|@andy-matuschak]]'s Mnemonic Medium we can make web pages that add items to your "[Orbit](https://withorbit.com/)" | [Orbit Code](https://github.com/andymatuschak/orbit) \| [Orbit Docs](https://docs.withorbit.com/)
- These components are driven by [[javascript]] embedded into [[HTML]] web pages with this code:
```html
<!DOCTYPE HTML>
<html>
<head>
<script type="module" src="https://js.withorbit.com/orbit-web-component.js"></script>
</head>
<body>
<orbit-reviewarea color="brown">
<orbit-prompt question="What's the working name for Andy's experimental mnemonic medium platform?" answer="Orbit"></orbit-prompt>
<orbit-prompt question="What's the new-ish web technology used to embed Orbit prompts into web pages?" answer="Web components"></orbit-prompt>
<orbit-prompt question="Given a right triangle with legs of length $a$ and $b$, what is the length of hypotenuse $c$?" answer="$c = \sqrt{a^2 + b^2}$"></orbit-prompt>
</orbit-reviewarea>
</body>
</html>
```