parent
ff0ab5c187
commit
8293136721
File diff suppressed because one or more lines are too long
@ -1,9 +0,0 @@
|
||||
{
|
||||
"id": "3d-graph",
|
||||
"name": "3D Graph",
|
||||
"version": "1.0.3",
|
||||
"description": "A 3D Graph for Obsidian",
|
||||
"author": "Alexander Weichart",
|
||||
"authorUrl": "https://github.com/AlexW00",
|
||||
"isDesktopOnly": false
|
||||
}
|
Binary file not shown.
@ -1,57 +0,0 @@
|
||||
.graph-3d-view .tree-item.is-collapsed > .tree-item-children {
|
||||
display: none;
|
||||
visibility: hidden;
|
||||
}
|
||||
|
||||
.graph-3d-view {
|
||||
padding: 0 !important;
|
||||
position: relative;
|
||||
overflow: hidden !important;
|
||||
}
|
||||
|
||||
.graph-3d-view .graph-controls.is-collapsed > .graph-control-section {
|
||||
display: none;
|
||||
visibility: hidden;
|
||||
}
|
||||
.graph-3d-view .graph-controls:hover > .control-buttons {
|
||||
opacity: 0.5;
|
||||
}
|
||||
|
||||
.graph-3d-view .graph-controls > .control-buttons:hover {
|
||||
opacity: 1;
|
||||
}
|
||||
|
||||
.graph-3d-view .graph-controls > .control-buttons {
|
||||
float: right;
|
||||
margin-right: 0;
|
||||
opacity: 0;
|
||||
}
|
||||
|
||||
.graph-3d-view .hidden {
|
||||
display: none;
|
||||
visibility: hidden;
|
||||
}
|
||||
|
||||
.graph-3d-view .control-buttons {
|
||||
display: block;
|
||||
}
|
||||
|
||||
.graph-3d-view .control-buttons > * {
|
||||
display: inline-block;
|
||||
margin: 0;
|
||||
}
|
||||
|
||||
.graph-3d-view .graph-settings-view > .clickable-icon {
|
||||
position: absolute;
|
||||
top: 8px;
|
||||
right: 8px;
|
||||
}
|
||||
|
||||
.graph-3d-view .node-label {
|
||||
color: var(--text-normal);
|
||||
}
|
||||
|
||||
.graph-3d-view .scene-nav-info {
|
||||
display: none;
|
||||
visibility: hidden;
|
||||
}
|
@ -1 +1,10 @@
|
||||
{"id":"cron","name":"Cron","version":"1.1.0","minAppVersion":"0.15.0","description":"Simple CRON / schedular plugin to regularly run user scripts or Obsidian commands.","author":"Callum Loh","authorUrl":"https://github.com/cdloh","isDesktopOnly":false}
|
||||
{
|
||||
"id": "cron",
|
||||
"name": "Cron",
|
||||
"version": "1.1.1",
|
||||
"minAppVersion": "0.15.0",
|
||||
"description": "Simple CRON / schedular plugin to regularly run user scripts or Obsidian commands.",
|
||||
"author": "Callum Loh",
|
||||
"authorUrl": "https://github.com/cdloh",
|
||||
"isDesktopOnly": false
|
||||
}
|
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
@ -1,10 +1,14 @@
|
||||
{
|
||||
"id": "meld-encrypt",
|
||||
"name": "Meld Encrypt",
|
||||
"version": "2.1.3",
|
||||
"version": "2.2.0",
|
||||
"minAppVersion": "1.0.3",
|
||||
"description": "Hide secrets in your vault",
|
||||
"author": "meld-cp",
|
||||
"authorUrl": "https://github.com/meld-cp/obsidian-encrypt",
|
||||
"isDesktopOnly": false
|
||||
"isDesktopOnly": false,
|
||||
"fundingUrl": {
|
||||
"Buy Me a Coffee": "https://www.buymeacoffee.com/cleon",
|
||||
"GitHub Sponsor": "https://github.com/sponsors/meld-cp"
|
||||
}
|
||||
}
|
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because it is too large
Load Diff
@ -0,0 +1,4 @@
|
||||
{
|
||||
"consoleOn": true,
|
||||
"consoleHeight": 250
|
||||
}
|
File diff suppressed because one or more lines are too long
@ -0,0 +1 @@
|
||||
{"id":"obsidian-dev-tools","name":"Obsidian Dev Tools Plugin","version":"1.0.0","minAppVersion":"0.9.12","description":"This plugin is for developers, to make it easier to develop. It currently allows for a modified console (useful for debugging on mobile), and viewing all Obsidian icons/strings.","author":"Kjell Connelly","authorUrl":"https://github.com/KjellConnelly/obsidian-dev-tools","isDesktopOnly":false}
|
@ -0,0 +1,618 @@
|
||||
|
||||
body {
|
||||
|
||||
}
|
||||
|
||||
#console-panel .dev-tools-icon-container,
|
||||
#console-panel .dev-tools-icon-container *,
|
||||
#console-panel .dev-tools-console,
|
||||
#console-panel .dev-tools-console * {
|
||||
font-family: monospace;
|
||||
}
|
||||
|
||||
#console-panel .dev-tools-header,
|
||||
#console-panel .dev-tools-header * {
|
||||
font-family: sans-serif;
|
||||
}
|
||||
|
||||
#console-panel .dev-tools-icon-container {
|
||||
position: fixed;
|
||||
z-index: 2000000001;
|
||||
}
|
||||
#console-panel .dev-tools-icon-container-left-top,
|
||||
#console-panel .dev-tools-icon-container-top-left {
|
||||
top: 20px;
|
||||
left: 20px;
|
||||
}
|
||||
#console-panel .dev-tools-icon-container-top-right,
|
||||
#console-panel .dev-tools-icon-container-right-top {
|
||||
top: 20px;
|
||||
right: 20px;
|
||||
}
|
||||
#console-panel .dev-tools-icon-container-bottom-left,
|
||||
#console-panel .dev-tools-icon-container-left-bottom {
|
||||
bottom: 20px;
|
||||
left: 20px;
|
||||
}
|
||||
#console-panel .dev-tools-icon-container-bottom-right,
|
||||
#console-panel .dev-tools-icon-container-right-bottom {
|
||||
right: 20px;
|
||||
bottom: 20px;
|
||||
}
|
||||
|
||||
#console-panel .dev-tools-icon {
|
||||
width: 32px;
|
||||
height: 32px;
|
||||
line-height: 35px; /* Keeping height a little more than height, so that it looks better middle-aligned (since we are going to render numbers inside it) */
|
||||
border-radius: 999px;
|
||||
|
||||
cursor: pointer;
|
||||
|
||||
text-align: center;
|
||||
font-size: 14px;
|
||||
|
||||
/* This may help in improving CPU usage for some of the animations */
|
||||
transform: translateZ(0);
|
||||
}
|
||||
|
||||
|
||||
#console-panel .dev-tools-icon.no-unread-messages {
|
||||
/* https://github.com/mozilla/gecko-dev/blob/7aef56cc4e682e5c99fcc282f30abbf8212efd50/devtools/client/definitions.js */
|
||||
/* chrome://devtools/skin/images/tool-webconsole.svg */
|
||||
background-image: url("data:image/svg+xml;base64,PCEtLSBUaGlzIFNvdXJjZSBDb2RlIEZvcm0gaXMgc3ViamVjdCB0byB0aGUgdGVybXMgb2YgdGhlIE1vemlsbGEgUHVibGljCiAgIC0gTGljZW5zZSwgdi4gMi4wLiBJZiBhIGNvcHkgb2YgdGhlIE1QTCB3YXMgbm90IGRpc3RyaWJ1dGVkIHdpdGggdGhpcwogICAtIGZpbGUsIFlvdSBjYW4gb2J0YWluIG9uZSBhdCBodHRwOi8vbW96aWxsYS5vcmcvTVBMLzIuMC8uIC0tPgo8c3ZnIHdpZHRoPSIxNiIgaGVpZ2h0PSIxNiIgdmlld0JveD0iMCAwIDE2IDE2IiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGZpbGw9ImNvbnRleHQtZmlsbCAjMGIwYjBiIiBmaWxsLXJ1bGU9ImV2ZW5vZGQiPgogIDxwYXRoIGQ9Ik0xNCA0VjNIMnYxaDEyem0wIDF2OEgyVjVoMTJ6TTEgMy4wMDJDMSAyLjQ1IDEuNDUgMiAyLjAwNyAyaDExLjk4NkExLjAxIDEuMDEgMCAwIDEgMTUgMy4wMDJ2OS45OTZDMTUgMTMuNTUgMTQuNTUgMTQgMTMuOTkzIDE0SDIuMDA3QTEuMDEgMS4wMSAwIDAgMSAxIDEyLjk5OFYzLjAwMnoiLz4KICA8cGF0aCBkPSJNNC4wOSA3Ljg1OWwyLjA2MiAyLS4wMDYtLjcxMy0yLjA2MSAyLjA2MmEuNS41IDAgMCAwIC43MDcuNzA3bDIuMDYyLTIuMDYxYS41LjUgMCAwIDAtLjAwNi0uNzEzbC0yLjA2MS0yYS41LjUgMCAxIDAtLjY5Ny43MTh6Ii8+Cjwvc3ZnPg==");
|
||||
background-repeat: no-repeat;
|
||||
background-position: center center;
|
||||
|
||||
opacity: 0.5;
|
||||
}
|
||||
#console-panel .dev-tools-icon.no-unread-messages:hover {
|
||||
opacity: 1;
|
||||
}
|
||||
|
||||
#console-panel .dev-tools-icon { background-color: #e7e7e7; box-shadow: inset 0 0 15px 1px #979797; }
|
||||
#console-panel .dev-tools-icon:hover { background-color: #d0d0d0; }
|
||||
#console-panel .dev-tools-icon.found-something,
|
||||
#console-panel .dev-tools-icon.found-log { background-color: #d3d3d3; box-shadow: inset 0 0 15px 1px #777; }
|
||||
#console-panel .dev-tools-icon.found-something:hover,
|
||||
#console-panel .dev-tools-icon.found-log:hover { background-color: #b9b9b9; }
|
||||
#console-panel .dev-tools-icon.found-info { background-color: #dad4dd; box-shadow: inset 0 0 15px 1px #6e61bf; }
|
||||
#console-panel .dev-tools-icon.found-info:hover { background-color: #cbb6d6; }
|
||||
#console-panel .dev-tools-icon.found-warn { background-color: #ffea83; box-shadow: inset 0 0 15px 1px #f8981b; }
|
||||
#console-panel .dev-tools-icon.found-warn:hover { background-color: #f9d626; }
|
||||
#console-panel .dev-tools-icon.found-error { background-color: #ffc5c5; box-shadow: inset 0 0 15px 1px #ff5858; }
|
||||
#console-panel .dev-tools-icon.found-error:hover { background-color: #fc9292; box-shadow: inset 0 0 15px 1px #f00; }
|
||||
|
||||
#console-panel .dev-tools-icon.found-error {
|
||||
/* Limiting the animation to 5 times. Otherwise, the CSS animation may cause high CPU usage. */
|
||||
animation: console-panel-animation-notify-error 3s 5;
|
||||
}
|
||||
@keyframes console-panel-animation-notify-error {
|
||||
50% {
|
||||
background-color: #ffa500;
|
||||
box-shadow: inset 0 0 15px 1px #f00;
|
||||
}
|
||||
}
|
||||
|
||||
#console-panel .dev-tools-icon-container .strong-notification:before,
|
||||
#console-panel .dev-tools-icon-container .strong-notification:after {
|
||||
display: block;
|
||||
content: '';
|
||||
position: absolute;
|
||||
top: 0; right: 0; bottom: 0; left: 0;
|
||||
border-radius: 50%;
|
||||
z-index: -1;
|
||||
}
|
||||
|
||||
#console-panel .dev-tools-icon-container .strong-notification:before { background-color: rgba(255, 0, 0, 0.5); }
|
||||
#console-panel .dev-tools-icon-container .strong-notification:after { background-color: rgba(255,177,0, 0.5); }
|
||||
|
||||
/* To ensure that the CSS animation does not cause high CPU usage, we remove
|
||||
the "strong-notification" class via JavaScript, once it is not required
|
||||
anymore. */
|
||||
#console-panel .dev-tools-icon-container .strong-notification:before { animation: console-panel-animation-ripple 0.75s ease-in infinite; }
|
||||
#console-panel .dev-tools-icon-container .strong-notification:after { animation: console-panel-animation-ripple 0.75s ease-out infinite; }
|
||||
|
||||
/* https://stackoverflow.com/questions/32955459/rings-with-ripple-animation-css-only/32955876#32955876 */
|
||||
@keyframes console-panel-animation-ripple {
|
||||
0% {
|
||||
top: 0px;
|
||||
right: 0px;
|
||||
bottom: 0px;
|
||||
left: 0px;
|
||||
}
|
||||
25% {
|
||||
top: -10vh;
|
||||
top: -10vmin;
|
||||
right: -10vh;
|
||||
right: -10vmin;
|
||||
bottom: -10vh;
|
||||
bottom: -10vmin;
|
||||
left: -10vh;
|
||||
left: -10vmin;
|
||||
opacity: 0.5;
|
||||
}
|
||||
90% {
|
||||
opacity: 0.2;
|
||||
}
|
||||
100% {
|
||||
top: -20vh;
|
||||
top: -20vmin;
|
||||
right: -20vh;
|
||||
right: -20vmin;
|
||||
bottom: -20vh;
|
||||
bottom: -20vmin;
|
||||
left: -20vh;
|
||||
left: -20vmin;
|
||||
opacity: 0;
|
||||
}
|
||||
}
|
||||
|
||||
#console-panel .dev-tools {
|
||||
position: fixed;
|
||||
z-index: 2000000000;
|
||||
|
||||
display: block;
|
||||
bottom: 0;
|
||||
right: 0;
|
||||
box-sizing: border-box;
|
||||
background-color: #fff;
|
||||
border-top: 1px solid #d0d0d0;
|
||||
width: 100%;
|
||||
|
||||
/* Values much higher than this may not work so well in different mobile device orientation since the "vh"/"vmin" might be calculated
|
||||
w.r.t. full-screen size, while the toolbar is also visible (which eats some of that height) */
|
||||
max-height: 80vh;
|
||||
max-height: 80vmin;
|
||||
|
||||
height: 250px;
|
||||
min-height: 90px;
|
||||
padding: 0;
|
||||
|
||||
color: #303942;
|
||||
/* A mix and match of font-family names from Chrome DevTools (ui/inspectorStyle.css) */
|
||||
font-family: 'Segoe UI', '.SFNSDisplay-Regular', 'Helvetica Neue', 'Lucida Grande', Roboto, Ubuntu, Tahoma, Arial, sans-serif;
|
||||
|
||||
font-size: 12px;
|
||||
overflow: scroll;
|
||||
-webkit-overflow-scrolling: touch;
|
||||
}
|
||||
|
||||
#console-panel .dev-tools-header {
|
||||
height: 27px;
|
||||
line-height: 27px;
|
||||
background-color: #f3f3f3;
|
||||
padding: 2px 0px 2px 6px;
|
||||
border-bottom: 1px solid #d0d0d0;
|
||||
font-size: 12px;
|
||||
}
|
||||
|
||||
#console-panel .dev-tools-clear-console-icon {
|
||||
width: 13px;
|
||||
height: 13px;
|
||||
background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABoAAAAaCAYAAACpSkzOAAAABmJLR0QA/wD/AP+gvaeTAAAACXBIWXMAAAsTAAALEwEAmpwYAAAAB3RJTUUH4gsJFi8Kd+JgAwAAAblJREFUSMellj1PQjEUhh8SGU3EuCkjfoVJ/BgciYNxwMmBxN/A4sfgDzAOOgjhRxBNSJwUwYG4sqJxIJEYVsHFqIBLb3Jz0vb2Xpp0OT1vn7anPacxgtsSsA/sAPNAUtm7wAdQA6rAKxHbOlAHxo79GdgOA4gDZWAUAuL1EVBSc1jbLPBkmegb6AH9AGADSNh2ooN8AZfApljptIpdxbD7hmlnZcPqCg7HnQHaGm1ROm5YYvIH5B1gM0BTE7OM36kRcOausDmgI7Q1b3BZE5OCmjwKLKdZ6CLAqTBeKUF+AlhL6I4BHoVxyyeICjsTmgdU6vAMP5orGQWWFf4vAAOfoWcQhoWtCN+BBH1aVnkA/GpghxrftPDry6MbqxfPhDvb0x1dTRhzAYF2gV2I8XuAE2GsOFxfGyyuapV/7MgrbNa0ERJ2q3mwKU8kC1xb5a4osLEpBXnVVCbVpspdk8CGwJoUlDSOHYfLEQduDKBrk8CUxVsqrWTVY1wFdoFz4N2gqdtKesKhZLj0uq2U+3dWjPg5GarjmgrzG0oDdyEgNV3gvRZzAKZ8H8gksOD7QHZVmakCb7ZJ/gEMg1YzMOnqgwAAAABJRU5ErkJggg==");
|
||||
float: left;
|
||||
background-size: contain;
|
||||
opacity: 0.5;
|
||||
margin-right: 5px;
|
||||
margin-top: 7px;
|
||||
cursor: pointer;
|
||||
}
|
||||
#console-panel .dev-tools-clear-console-icon:hover {
|
||||
opacity: 0.85;
|
||||
}
|
||||
|
||||
#console-panel .dev-tools-header-cross-icon,
|
||||
#console-panel .dev-tools-header-disable-icon {
|
||||
float: right;
|
||||
cursor: pointer;
|
||||
width: 13px;
|
||||
height: 13px;
|
||||
opacity: 0.5;
|
||||
background-repeat: no-repeat;
|
||||
height: 24px;
|
||||
}
|
||||
|
||||
#console-panel .dev-tools-header-cross-icon {
|
||||
width: 30px;
|
||||
|
||||
/* Source: chrome-devtools://devtools/bundled/Images/largeIcons_2x.png (in Google Chrome browser) */
|
||||
background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABQAAAAUCAYAAACNiR0NAAAABmJLR0QA/wD/AP+gvaeTAAAACXBIWXMAAAsTAAALEwEAmpwYAAAAB3RJTUUH4gsGFTI1ZM2PLQAAAKdJREFUOMutlUsOwjAMRB8cgIqzdGGuHnEANpwFuScoC1LJQq1rW4mUTZR5+c048GsT0IAH+TYDT+COgb2AFViS0Bn4dO17g7Y+sHUFJACTPtdq2/8qa3Cnexq1mgz0FJaBhmERaBrmXbYejEnFDntdK549grqwayEZF4px8o6cStTQR/GskU5UxGdhaMa0p9BKAlzo8PJ1MwVWRxRY+wVIwbPStRPAF611ou20opYrAAAAAElFTkSuQmCC");
|
||||
background-position: 9px 8px;
|
||||
background-size: 10px 10px;
|
||||
}
|
||||
|
||||
#console-panel .dev-tools-header-disable-icon {
|
||||
width: 20px;
|
||||
|
||||
/* Source: https://www.iconfinder.com/icons/1608429/off_power_icon */
|
||||
background-image: url("data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiA/PjxzdmcgaGVpZ2h0PSIxNzkyIiB2aWV3Qm94PSIwIDAgMTc5MiAxNzkyIiB3aWR0aD0iMTc5MiIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj48cGF0aCBkPSJNMTY2NCA4OTZxMCAxNTYtNjEgMjk4dC0xNjQgMjQ1LTI0NSAxNjQtMjk4IDYxLTI5OC02MS0yNDUtMTY0LTE2NC0yNDUtNjEtMjk4cTAtMTgyIDgwLjUtMzQzdDIyNi41LTI3MHE0My0zMiA5NS41LTI1dDgzLjUgNTBxMzIgNDIgMjQuNSA5NC41dC00OS41IDg0LjVxLTk4IDc0LTE1MS41IDE4MXQtNTMuNSAyMjhxMCAxMDQgNDAuNSAxOTguNXQxMDkuNSAxNjMuNSAxNjMuNSAxMDkuNSAxOTguNSA0MC41IDE5OC41LTQwLjUgMTYzLjUtMTA5LjUgMTA5LjUtMTYzLjUgNDAuNS0xOTguNXEwLTEyMS01My41LTIyOHQtMTUxLjUtMTgxcS00Mi0zMi00OS41LTg0LjV0MjQuNS05NC41cTMxLTQzIDg0LTUwdDk1IDI1cTE0NiAxMDkgMjI2LjUgMjcwdDgwLjUgMzQzem0tNjQwLTc2OHY2NDBxMCA1Mi0zOCA5MHQtOTAgMzgtOTAtMzgtMzgtOTB2LTY0MHEwLTUyIDM4LTkwdDkwLTM4IDkwIDM4IDM4IDkweiIvPjwvc3ZnPg==");
|
||||
background-size: 14px 14px;
|
||||
background-position: 3px 6px;
|
||||
}
|
||||
|
||||
#console-panel .dev-tools-header-cross-icon:hover,
|
||||
#console-panel .dev-tools-header-disable-icon:hover {
|
||||
opacity: 0.75;
|
||||
}
|
||||
|
||||
#console-panel .dev-tools-console {
|
||||
clear: both;
|
||||
overflow: auto;
|
||||
height: calc(100% - 31px);
|
||||
}
|
||||
|
||||
#console-panel .dev-tools-console-body {
|
||||
overflow: auto;
|
||||
}
|
||||
|
||||
#console-panel .dev-tools-console-message-wrapper {
|
||||
line-height: 13px;
|
||||
border-top: 1px solid transparent;
|
||||
border-bottom: 1px solid #f0f0f0;
|
||||
line-height: 17px;
|
||||
padding: 3px 22px 1px 0;
|
||||
}
|
||||
|
||||
/* This helps in ensuring that the texts show proper whitespace (also useful in showing function definitions) */
|
||||
#console-panel .dev-tools-console-message > span {
|
||||
white-space: pre-wrap;
|
||||
}
|
||||
|
||||
#console-panel .log-mode-info,
|
||||
#console-panel .log-mode-warn,
|
||||
#console-panel .log-mode-error,
|
||||
#console-panel .log-mode-window-onerror {
|
||||
background-repeat: no-repeat;
|
||||
}
|
||||
|
||||
#console-panel .log-mode-info {
|
||||
/* chrome-devtools://devtools/bundled/Images/smallIcons_2x.png */
|
||||
background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABQAAAAUCAYAAACNiR0NAAAABmJLR0QA/wD/AP+gvaeTAAAACXBIWXMAAAsTAAALEwEAmpwYAAAAB3RJTUUH4gsKDw81VUJejQAAAsxJREFUOMutVFtLVFEU/vbex5lxjjIqlWVXsKQL4UORRb0WJZSKmQVRD0UE9hLRjSDqqRtdXnqpH1BvXpDeoiBIgyYyGcuCUuli6ejczzmzL6uHypzRJNDvae+1v/Wtb7FZi2EaNDVFfCNwG7Q0dZ4yNcqYCqUIWpmvWZdeKCPbgsnRtkhkXzY/l+UHag/2NHpS34prWuYSYPIJ2kA5CpmYO5h15ckfPTtaJz+Lv65IVNXsvTGe1XdGFYUkAAJQFrJQu60UyYxBIq0BzsB9Ar5iXwmImkXRftsZWfkYeEoAYP0RpFDftR9pdSom/3oSguHBldVYssCHeEphZ0vklygAxhjseTaY4Ke12kTxfpwFAA4AB46/bYy66lQsm9ugHeBYPN8HAAgVWaj4fZ6MYGkh7DL7TLDyUT0AiKZLEZ+KU+dgKluST/YkQWrCsoV+dD4bQ+uT6HR/CL9dgPS4s9Ur33OXHTrR3zwQcx+OOiqHJDiDXchzYmnXQGuaVjQxksG3gfg+iwH1cU9PIVQuDaD15pqc2JHLH9Ddm5xW0C7xgzPUcUeZzdJMrfp+0MG6va8wNOzhfyAKBCy/2MIVUTnmCJaPL+IgzBkYMcMtwYbnSlBKPcwDgnUVcDZrMS01lGeec0ZoD/mtWQumYy4MmQ7ul6nWeYXWAJuFSTKExIgzpIudDhEO3zPVm1qGGKE5NWmOly/y4/7FVVi+MAAhflWrripCcVAg/DaVIxgfTlMm6RyW/Q19E74aj0auf0tnT/+Z52CAo7rKnuLm+5jEx8/uxD0z7iL6NXE1+W7X+Zxts37J2nN6sJcEsTNjUiPjGnS9Sc7YZibqUCrqXE++e3Hhnwt298E39Wmpbye0WeESweRRyBB0RsKNuZ88T538/np7+4wbGwA2HHtZEBpDvZSoc43ZrI2p0NJASvqisrpbKt1eporbw+GNMj/3Jz2CZsrrkClGAAAAAElFTkSuQmCC");
|
||||
background-size: 11px 11px;
|
||||
background-position: 7px 4px;
|
||||
|
||||
background-color: #edebfb;
|
||||
border-bottom-color: #e5e1ff;
|
||||
}
|
||||
|
||||
#console-panel .log-mode-warn {
|
||||
/* chrome-devtools://devtools/bundled/Images/smallIcons_2x.png */
|
||||
background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABQAAAAUCAYAAACNiR0NAAAABmJLR0QA/wD/AP+gvaeTAAAACXBIWXMAAAsTAAALEwEAmpwYAAAAB3RJTUUH4gsKDwIt84C4lgAAAbFJREFUOMudlLtOG0EUhr9dr9esL7uz4MvKSkIRiZKaDvECeYRADSjCBmoeIZKL1IZHSIMrEzp3kVKCEJcgCHgxdizLyNg4RbhkYXfWZLqZc+afb/45ZxRCxu4XPqQtygBui4XZRb7K8hVZsFbCFBnO3mZJAPy8pNOsk5/5xO+gPapMcBCjmBv/KwaQGycxiFH8L8JaCdPKcv4uQ/zf9dM63bNz8nMFmq8i7OusOsIrBpCzMWIGhVcRPtClDOLNtjcmUtDpBlNqfoK3UYqOIH5yAdMfh57Yjy2FSQfjqkkB2Ai9cq2EmbZZ16PBxkc1mBCs73xGhAoGeTeql+pzugnBmowujFKV0UUiMOh3n+qy3yUSkVOqMjqRAvdk93HuHn/DTskpVZl3VhLcw8rjvH5UwUzKvVSD6Ib3Rdpzt5/Kqb6Nch8LolTDXnYqs0enqtCpKkxl90NfXPHr2SGjDcWnx7W7MVYd21/s4NS/U96/8doCkLUx3BYrmpVgSddG/CAlOboGIsmyJvtxbBO+l73htJCepWqNNvPA5piO7ZdhJb1Xvu3Dr8bLvJse1402838AjWeMl7yfz78AAAAASUVORK5CYII=");
|
||||
background-size: 10px 10px;
|
||||
background-position: 7px 5px;
|
||||
|
||||
background-color: #fffbe5;
|
||||
border-bottom-color: #fff5c2;
|
||||
}
|
||||
|
||||
#console-panel .log-mode-error,
|
||||
#console-panel .log-mode-window-onerror {
|
||||
background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABQAAAAUCAYAAACNiR0NAAAABmJLR0QA/wD/AP+gvaeTAAAACXBIWXMAAAsTAAALEwEAmpwYAAAAB3RJTUUH4gsKDxgoM8e2wgAAAxlJREFUOMudlMtPE1EUxr97Z+ZOh0I7pTxKwbZAjCaNxhijkBiNbowx8hD1D1DDgvhCMJq4cYuCGjUuXOAejAKJKxMJmCgmLkyMGjGA5WGRVx9IKcPMHRdg40B56Fmec88v557vu5cgTbQFwZQpVk1Ns1Jmyj6BMi8AGFz7saDNvzNM0pHM0zpOf4K2spesTLwoyKyRRXbH4/T4XBkuMIFZ6pqhITIXQXg2HEouJuuPh+efpwW2AUKmX23y2PMbCh0FoIRgveAmx+hsGBO/Jm+/C0Wu3wQ4AIh/DjhKPU1bsvIb8pRsbCYoofA5CqFIylUiyiYGxq+lJny53V+TIzufFmW48T8xMjeFyWS0+kj/SAdtCwaZLCot3gyX5ZDtRAWoS109mUuF7USFJVdkd0Nhyv22YJAJdd6ckx6b85ydsr9glchsvAxWvhdady/MZDIFcz5oge3YUfBIFPqXr8tCEFAqOnWy8JEKEqtyiDarkq96oA8MQigphvPRPVC3G1RV4bjfDKGkGEZoGFrPa0uPQ7JBFFgl6SsvGyqFElh1NVWF40EzxNISGKOjgM4hBHwwQsOInb8CPj2zah3feGKQSlTKT2uLaBTxC43Qv4cgFBUtwUbH1oQBgCyyAgpBWldBsolMqiIwTrnExtP6bPnKQsAPY2RsedJCOB+2gLrT24uL0jjlTH6rU7r2/kLDiNVdQryufkkovy8tVKcEBpPfUCLKnfNMthTZ4YNLsMEhxOoug0/PLO30YiOMwSEIfh/Ywf2WnoQsg4qsi7yvrZXEn/F+7+REgJimxdhady94JLrK2OzQASSfdaVyJiEIu3OHRRvfSgDgw6kz1fZfsWdqdOa/nl5MzTbjmc6q3e2tXRQAdrW3Pk+oObfnHOo/w+ayVCTU3Kbd7a1dAJBSY+e2guvxvC23YjlemJRsCDIpRTzXa8Y9vqYd2zw31jTV57MNVdD0u/aZ8YA8G4WwaP2UDYlhIUtFIjt/iIusPvikuXNDl76vrZUU5FZRwitJcqFM0DXvss/GDFnpM4nZOW9Od+55/HhxZe9vO6ohHl8Nk3cAAAAASUVORK5CYII=");
|
||||
background-size: 11px 11px;
|
||||
background-position: 7px 5px;
|
||||
|
||||
background-color: #fff0f0;
|
||||
border-bottom-color: #ffd6d6;
|
||||
}
|
||||
|
||||
#console-panel .log-mode-unhandled {
|
||||
background-color: #eff;
|
||||
}
|
||||
|
||||
#console-panel .dev-tools-console-message {
|
||||
margin-left: 24px;
|
||||
word-wrap: break-word;
|
||||
font-family: monospace;
|
||||
}
|
||||
|
||||
|
||||
#console-panel .dev-tools-console-message-code-line {
|
||||
float: right;
|
||||
}
|
||||
|
||||
#console-panel .log-call-stack {
|
||||
white-space: pre-wrap;
|
||||
}
|
||||
|
||||
#console-panel .log-value-window-onerror {
|
||||
color: #f00;
|
||||
}
|
||||
|
||||
#console-panel .log-value-unknown {
|
||||
color: #000;
|
||||
}
|
||||
|
||||
#console-panel .log-value-boolean,
|
||||
#console-panel .log-value-number {
|
||||
color: #1c00cf;
|
||||
}
|
||||
|
||||
#console-panel .log-value-null,
|
||||
#console-panel .log-value-undefined,
|
||||
#console-panel .log-value-console-clear {
|
||||
color: #808080;
|
||||
}
|
||||
|
||||
#console-panel .log-value-console-clear {
|
||||
font-style: italic;
|
||||
}
|
||||
|
||||
#console-panel .log-value-string:before,
|
||||
#console-panel .log-value-string:after {
|
||||
content: '"';
|
||||
color: #222;
|
||||
}
|
||||
#console-panel .log-value-string {
|
||||
color: #c41a16;
|
||||
}
|
||||
|
||||
#console-panel .log-value-dom-text:before,
|
||||
#console-panel .log-value-dom-text:after {
|
||||
color: #888;
|
||||
font-style: italic;
|
||||
}
|
||||
#console-panel .log-value-dom-text:before {
|
||||
content: '#text "';
|
||||
}
|
||||
#console-panel .log-value-dom-text:after {
|
||||
content: '"';
|
||||
}
|
||||
|
||||
#console-panel .log-value-dom {
|
||||
color: #881280;
|
||||
}
|
||||
|
||||
/* This helps in keeping the console-panel-expand-collapse icon together with the highlighted
|
||||
code (for example when multiple items are logged via single console.log()) */
|
||||
#console-panel .log-value-dom {
|
||||
display: inline-block;
|
||||
}
|
||||
/* But, the above rule may cause the console-panel-expand-collapse icon to move to the next
|
||||
line even when it is the first child, but that case may be better to ignore (to avoid
|
||||
that extra line). For example: when we log an element which contains huge HTML code, which
|
||||
would need to get wrapped */
|
||||
#console-panel .dev-tools-console-message .log-value-dom:first-child {
|
||||
display: inline;
|
||||
}
|
||||
|
||||
#console-panel .jsoneditor-not-available.log-value-array,
|
||||
#console-panel .jsoneditor-not-available.log-value-object {
|
||||
color: #808080;
|
||||
}
|
||||
#console-panel .jsoneditor-not-available.log-value-array:before,
|
||||
#console-panel .jsoneditor-not-available.log-value-object:before {
|
||||
color: rgb(33, 33, 33);
|
||||
}
|
||||
#console-panel .jsoneditor-not-available.log-value-array:before {
|
||||
content: 'Array ';
|
||||
}
|
||||
#console-panel .jsoneditor-not-available.log-value-object:before {
|
||||
content: 'Object ';
|
||||
}
|
||||
|
||||
/* CSS fixes for JSON Editor */
|
||||
#console-panel div.jsoneditor-menu {
|
||||
display: none;
|
||||
}
|
||||
#console-panel div.jsoneditor-outer {
|
||||
margin-top: 0;
|
||||
padding-top: 0;
|
||||
}
|
||||
#console-panel div.jsoneditor {
|
||||
border-width: 0;
|
||||
}
|
||||
#console-panel div.jsoneditor-tree div.jsoneditor-tree-inner {
|
||||
padding-bottom: 0;
|
||||
}
|
||||
|
||||
/* Without this, a scroll seems to come up */
|
||||
#console-panel div.jsoneditor-tree {
|
||||
display: inline;
|
||||
}
|
||||
|
||||
#console-panel .jsoneditor,
|
||||
#console-panel .jsoneditor-outer,
|
||||
#console-panel .jsoneditor-tree-inner,
|
||||
#console-panel .jsoneditor-outer > .jsoneditor-tree,
|
||||
#console-panel .jsoneditor-outer > .jsoneditor-tree > .jsoneditor-tree-inner > .jsoneditor-tree {
|
||||
display: inline;
|
||||
}
|
||||
|
||||
/* This style may be useful in older browsers */
|
||||
#console-panel div.jsoneditor-value.jsoneditor-array,
|
||||
#console-panel div.jsoneditor-value.jsoneditor-object {
|
||||
min-width: unset;
|
||||
}
|
||||
|
||||
|
||||
#console-panel div.jsoneditor-value {
|
||||
width: max-content;
|
||||
}
|
||||
|
||||
#console-panel div.jsoneditor-tree button.jsoneditor-button,
|
||||
#console-panel div.jsoneditor-tree button.jsoneditor-button.jsoneditor-expanded {
|
||||
background-position: 0px 2px;
|
||||
}
|
||||
|
||||
#console-panel div.jsoneditor-tree button.jsoneditor-button {
|
||||
width: 10px;
|
||||
height: 10px;
|
||||
background-repeat: no-repeat;
|
||||
|
||||
/* chrome-devtools://devtools/bundled/Images/treeoutlineTriangles.png */
|
||||
background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAYAAAAICAQAAABwz0azAAAAAmJLR0QA/4ePzL8AAAAJcEhZcwAACxMAAAsTAQCanBgAAAAHdElNRQfiCxITJRj/Z+u0AAAAL0lEQVQI12NgyGBgZICD/wy7GGQRnP8MHxjSEJz/DP8ZtjJIMTEga0BXhmQAktEApfUQ8zThbVYAAAAASUVORK5CYII=");
|
||||
}
|
||||
|
||||
#console-panel div.jsoneditor-tree button.jsoneditor-button.jsoneditor-expanded {
|
||||
/* chrome-devtools://devtools/bundled/Images/treeoutlineTriangles.png */
|
||||
background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAkAAAAGCAQAAAC7znxOAAAAAmJLR0QA/4ePzL8AAAAJcEhZcwAACxMAAAsTAQCanBgAAAAHdElNRQfiCxITJDGkzkKZAAAAP0lEQVQI12Ng4Ga4xfAfDu8x8DIwMDBYMfyBCvxlsGOAgm6oUBcDHLAzXGL4z3CNgYMBCRgyfGUwZUAD2jAGAEP7FIhkSA3EAAAAAElFTkSuQmCC");
|
||||
}
|
||||
|
||||
|
||||
#console-panel div.jsoneditor-readonly,
|
||||
#console-panel div.jsoneditor-value {
|
||||
padding: 0;
|
||||
margin: 0;
|
||||
}
|
||||
|
||||
#console-panel div.jsoneditor-field,
|
||||
#console-panel div.jsoneditor-readonly,
|
||||
#console-panel div.jsoneditor-value {
|
||||
min-height: 0px;
|
||||
min-width: 0px; /* Useful for keeping widths for property names as small as possible */
|
||||
}
|
||||
|
||||
#console-panel .jsoneditor-schema-error,
|
||||
#console-panel div.jsoneditor td,
|
||||
#console-panel div.jsoneditor textarea,
|
||||
#console-panel div.jsoneditor th,
|
||||
#console-panel div.jsoneditor-field,
|
||||
#console-panel div.jsoneditor-value {
|
||||
font-size: 11px;
|
||||
font-family: monospace;
|
||||
}
|
||||
|
||||
|
||||
#console-panel div.jsoneditor td.jsoneditor-tree {
|
||||
vertical-align: middle;
|
||||
}
|
||||
|
||||
|
||||
/* Begin: Styles to make JSON Editor match Chrome DevTools UI */
|
||||
#console-panel div.jsoneditor-field {
|
||||
color: #881391;
|
||||
}
|
||||
|
||||
#console-panel div.jsoneditor-value.jsoneditor-string {
|
||||
color: #c41a16;
|
||||
}
|
||||
|
||||
#console-panel div.jsoneditor-value.jsoneditor-string:before,
|
||||
#console-panel div.jsoneditor-value.jsoneditor-string:after {
|
||||
content: '"';
|
||||
color: #222;
|
||||
}
|
||||
|
||||
#console-panel div.jsoneditor-empty {
|
||||
border-width: 0;
|
||||
}
|
||||
|
||||
#console-panel .jsoneditor-expandable .jsoneditor-readonly {
|
||||
text-transform: capitalize;
|
||||
color: rgb(33, 33, 33);
|
||||
}
|
||||
|
||||
#console-panel div.jsoneditor-tree button.jsoneditor-button:focus {
|
||||
background-color: transparent;
|
||||
outline: none;
|
||||
}
|
||||
|
||||
/* End */
|
||||
|
||||
|
||||
/* Begin: Styles to make Prism JS match Chrome DevTools */
|
||||
#console-panel .only-first-line-of-code code.language-markup:after {
|
||||
content: '…';
|
||||
}
|
||||
|
||||
#console-panel pre.language-markup {
|
||||
background-color: transparent;
|
||||
padding: 0;
|
||||
margin: 0;
|
||||
|
||||
display: inline-block;
|
||||
}
|
||||
/* End */
|
||||
|
||||
|
||||
#console-panel .all-lines-of-code {
|
||||
display: inline-block;
|
||||
}
|
||||
|
||||
#console-panel .console-panel-expand-collapse {
|
||||
display: inline-block;
|
||||
width: 10px;
|
||||
height: 10px;
|
||||
}
|
||||
|
||||
#console-panel .console-panel-expand-collapse.console-panel-collapsed,
|
||||
#console-panel .console-panel-expand-collapse.console-panel-expanded {
|
||||
cursor: pointer;
|
||||
background-repeat: no-repeat;
|
||||
}
|
||||
#console-panel .console-panel-expand-collapse.console-panel-expanded {
|
||||
background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAkAAAAGCAQAAAC7znxOAAAAAmJLR0QA/4ePzL8AAAAJcEhZcwAACxMAAAsTAQCanBgAAAAHdElNRQfiCxITJDGkzkKZAAAAP0lEQVQI12Ng4Ga4xfAfDu8x8DIwMDBYMfyBCvxlsGOAgm6oUBcDHLAzXGL4z3CNgYMBCRgyfGUwZUAD2jAGAEP7FIhkSA3EAAAAAElFTkSuQmCC");
|
||||
background-position: 0px 2px;
|
||||
}
|
||||
|
||||
#console-panel .console-panel-expand-collapse.console-panel-collapsed {
|
||||
background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAYAAAAICAQAAABwz0azAAAAAmJLR0QA/4ePzL8AAAAJcEhZcwAACxMAAAsTAQCanBgAAAAHdElNRQfiCxITJRj/Z+u0AAAAL0lEQVQI12NgyGBgZICD/wy7GGQRnP8MHxjSEJz/DP8ZtjJIMTEga0BXhmQAktEApfUQ8zThbVYAAAAASUVORK5CYII=");
|
||||
}
|
||||
|
||||
#console-panel .only-first-line-of-code {
|
||||
vertical-align: top;
|
||||
vertical-align: text-top;
|
||||
}
|
||||
#console-panel .all-lines-of-code {
|
||||
vertical-align: top;
|
||||
}
|
||||
#console-panel code[class*="language-"],
|
||||
#console-panel pre[class*="language-"] {
|
||||
white-space: pre-wrap;
|
||||
word-break: break-word;
|
||||
}
|
||||
|
||||
/* Begin: Useful styles when Prism JS is not available */
|
||||
#console-panel .log-value-dom .all-lines-of-code pre,
|
||||
#console-panel .log-value-dom .only-first-line-of-code pre {
|
||||
display: inline;
|
||||
}
|
||||
/* End */
|
||||
|
||||
/* Begin: Match Prism JS with DevTools style */
|
||||
#console-panel code[class*="language-"],
|
||||
#console-panel pre[class*="language-"] {
|
||||
font-family: monospace;
|
||||
}
|
||||
|
||||
#console-panel .token.tag {
|
||||
color: #881280;
|
||||
}
|
||||
#console-panel .token.attr-name {
|
||||
color: #994500;
|
||||
}
|
||||
|
||||
#console-panel .token.attr-value {
|
||||
color: #1a1aa6;
|
||||
}
|
||||
|
||||
#console-panel .token.comment {
|
||||
color: #236e25;
|
||||
}
|
||||
/* */
|
||||
|
||||
|
||||
/* Begin: Resize related CSS */
|
||||
html #console-panel .dev-tools-resize-handle {
|
||||
top: 0;
|
||||
height: inherit;
|
||||
padding-top: inherit;
|
||||
padding-bottom: inherit;
|
||||
position: absolute;
|
||||
width: 100%;
|
||||
left: 0;
|
||||
margin-left: 10px;
|
||||
margin-right: 10px;
|
||||
display: block;
|
||||
}
|
||||
|
||||
#console-panel .dev-tools {
|
||||
top: unset !important;
|
||||
bottom: 0 !important;
|
||||
}
|
||||
/* End */
|
||||
|
||||
/* Begin: jQuery UI related fix */
|
||||
#console-panel .dev-tools {
|
||||
position: fixed;
|
||||
}
|
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
@ -1,10 +1,10 @@
|
||||
{
|
||||
"id": "obsidian-footnotes",
|
||||
"name": "Footnote Shortcut",
|
||||
"version": "0.0.9",
|
||||
"version": "0.1.2",
|
||||
"minAppVersion": "0.12.0",
|
||||
"description": "Insert and write footnotes faster",
|
||||
"author": "Alexis Rondeau, Micha Brugger",
|
||||
"author": "Alexis Rondeau, Micha Brugger, Jason Qin",
|
||||
"authorUrl": "https://publish.obsidian.md/alexisrondeau",
|
||||
"isDesktopOnly": false
|
||||
}
|
||||
|
@ -1 +1 @@
|
||||
/* Sets all the text color to red! */
|
||||
/* Empty */
|
||||
|
File diff suppressed because one or more lines are too long
@ -1,10 +0,0 @@
|
||||
{
|
||||
"id": "obsidian-itinerary",
|
||||
"name": "Itinerary",
|
||||
"version": "1.3.0",
|
||||
"minAppVersion": "0.11.10",
|
||||
"description": "Make planning your trip or event easier by rendering a calendar from event information found in your notes.",
|
||||
"author": "Adam Coddington <me@adamcoddington.net>",
|
||||
"authorUrl": "https://coddingtonbear.net/",
|
||||
"isDesktopOnly": false
|
||||
}
|
File diff suppressed because it is too large
Load Diff
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because it is too large
Load Diff
@ -0,0 +1,136 @@
|
||||
---
|
||||
|
||||
title: "🗒 Daily Note"
|
||||
allDay: true
|
||||
date: 2023-04-27
|
||||
Date: 2023-04-27
|
||||
DocType: Note
|
||||
Hierarchy:
|
||||
TimeStamp:
|
||||
location:
|
||||
CollapseMetaTable: true
|
||||
Sleep: 7.5
|
||||
Happiness: 80
|
||||
Gratefulness: 90
|
||||
Stress: 27.5
|
||||
FrontHeadBar: 5
|
||||
EarHeadBar: 35
|
||||
BackHeadBar: 20
|
||||
Water: 3.5
|
||||
Coffee: 1
|
||||
Steps: 10552
|
||||
Weight:
|
||||
Ski:
|
||||
IceSkating:
|
||||
Riding: 1
|
||||
Racket:
|
||||
Football:
|
||||
Swim:
|
||||
|
||||
---
|
||||
|
||||
%% Parent:: [[@Life Admin]] %%
|
||||
|
||||
---
|
||||
|
||||
[[2023-04-26|<< 🗓 Previous ]]       [[@Main Dashboard|Back]]       [[2023-04-28|🗓 Next >>]]
|
||||
|
||||
---
|
||||
|
||||
 
|
||||
|
||||
```button
|
||||
name Record today's health
|
||||
type command
|
||||
action MetaEdit: Run MetaEdit
|
||||
id EditMetaData
|
||||
```
|
||||
^button-2023-04-27Edit
|
||||
|
||||
```button
|
||||
name Save
|
||||
type command
|
||||
action Save current file
|
||||
id Save
|
||||
```
|
||||
^button-2023-04-27NSave
|
||||
|
||||
 
|
||||
|
||||
# 2023-04-27
|
||||
|
||||
 
|
||||
|
||||
> [!summary]+
|
||||
> Daily note for 2023-04-27
|
||||
|
||||
 
|
||||
|
||||
```toc
|
||||
style: number
|
||||
```
|
||||
|
||||
 
|
||||
|
||||
---
|
||||
|
||||
 
|
||||
|
||||
### ✅ Tasks of the day
|
||||
|
||||
 
|
||||
|
||||
```tasks
|
||||
not done
|
||||
due on 2023-04-27
|
||||
path does not include Templates
|
||||
hide backlinks
|
||||
hide task count
|
||||
```
|
||||
|
||||
 
|
||||
|
||||
---
|
||||
|
||||
 
|
||||
|
||||
### 📝 Memos
|
||||
|
||||
 
|
||||
|
||||
This section does serve for quick memos.
|
||||
|
||||
 
|
||||
|
||||
|
||||
%% --- %%
|
||||
 
|
||||
|
||||
---
|
||||
|
||||
 
|
||||
|
||||
### 🗒 Notes
|
||||
|
||||
 
|
||||
|
||||
🍴: [[Big Shells With Spicy Lamb Sausage and Pistachios]]
|
||||
|
||||
🐎: [[Polo Park Zürich]] with [[@Sally|Sally]]
|
||||
|
||||
 
|
||||
|
||||
---
|
||||
|
||||
 
|
||||
|
||||
### :link: Linked activity
|
||||
|
||||
 
|
||||
|
||||
```dataview
|
||||
Table from [[2023-04-27]]
|
||||
```
|
||||
|
||||
 
|
||||
 
|
@ -0,0 +1,134 @@
|
||||
---
|
||||
|
||||
title: "🗒 Daily Note"
|
||||
allDay: true
|
||||
date: 2023-04-28
|
||||
Date: 2023-04-28
|
||||
DocType: Note
|
||||
Hierarchy:
|
||||
TimeStamp:
|
||||
location:
|
||||
CollapseMetaTable: true
|
||||
Sleep: 7.5
|
||||
Happiness: 80
|
||||
Gratefulness: 90
|
||||
Stress: 27.5
|
||||
FrontHeadBar: 5
|
||||
EarHeadBar: 35
|
||||
BackHeadBar: 20
|
||||
Water: 2.58
|
||||
Coffee: 2
|
||||
Steps: 12226
|
||||
Weight:
|
||||
Ski:
|
||||
IceSkating:
|
||||
Riding:
|
||||
Racket:
|
||||
Football:
|
||||
Swim:
|
||||
|
||||
---
|
||||
|
||||
%% Parent:: [[@Life Admin]] %%
|
||||
|
||||
---
|
||||
|
||||
[[2023-04-27|<< 🗓 Previous ]]       [[@Main Dashboard|Back]]       [[2023-04-29|🗓 Next >>]]
|
||||
|
||||
---
|
||||
|
||||
 
|
||||
|
||||
```button
|
||||
name Record today's health
|
||||
type command
|
||||
action MetaEdit: Run MetaEdit
|
||||
id EditMetaData
|
||||
```
|
||||
^button-2023-04-28Edit
|
||||
|
||||
```button
|
||||
name Save
|
||||
type command
|
||||
action Save current file
|
||||
id Save
|
||||
```
|
||||
^button-2023-04-28NSave
|
||||
|
||||
 
|
||||
|
||||
# 2023-04-28
|
||||
|
||||
 
|
||||
|
||||
> [!summary]+
|
||||
> Daily note for 2023-04-28
|
||||
|
||||
 
|
||||
|
||||
```toc
|
||||
style: number
|
||||
```
|
||||
|
||||
 
|
||||
|
||||
---
|
||||
|
||||
 
|
||||
|
||||
### ✅ Tasks of the day
|
||||
|
||||
 
|
||||
|
||||
```tasks
|
||||
not done
|
||||
due on 2023-04-28
|
||||
path does not include Templates
|
||||
hide backlinks
|
||||
hide task count
|
||||
```
|
||||
|
||||
 
|
||||
|
||||
---
|
||||
|
||||
 
|
||||
|
||||
### 📝 Memos
|
||||
|
||||
 
|
||||
|
||||
This section does serve for quick memos.
|
||||
|
||||
 
|
||||
|
||||
|
||||
%% --- %%
|
||||
 
|
||||
|
||||
---
|
||||
|
||||
 
|
||||
|
||||
### 🗒 Notes
|
||||
|
||||
 
|
||||
|
||||
🚆: [[@@Zürich|Zürich]] a [[Geneva]] pour le mariage de [[Marguerite de Villeneuve]] avec [[Arnold Moulin|Arnold]]
|
||||
|
||||
 
|
||||
|
||||
---
|
||||
|
||||
 
|
||||
|
||||
### :link: Linked activity
|
||||
|
||||
 
|
||||
|
||||
```dataview
|
||||
Table from [[2023-04-28]]
|
||||
```
|
||||
|
||||
 
|
||||
 
|
@ -0,0 +1,134 @@
|
||||
---
|
||||
|
||||
title: "🗒 Daily Note"
|
||||
allDay: true
|
||||
date: 2023-04-29
|
||||
Date: 2023-04-29
|
||||
DocType: Note
|
||||
Hierarchy:
|
||||
TimeStamp:
|
||||
location:
|
||||
CollapseMetaTable: true
|
||||
Sleep: 8
|
||||
Happiness: 80
|
||||
Gratefulness: 90
|
||||
Stress: 27.5
|
||||
FrontHeadBar: 5
|
||||
EarHeadBar: 35
|
||||
BackHeadBar: 20
|
||||
Water: 1.83
|
||||
Coffee: 4
|
||||
Steps: 6234
|
||||
Weight:
|
||||
Ski:
|
||||
IceSkating:
|
||||
Riding:
|
||||
Racket:
|
||||
Football:
|
||||
Swim:
|
||||
|
||||
---
|
||||
|
||||
%% Parent:: [[@Life Admin]] %%
|
||||
|
||||
---
|
||||
|
||||
[[2023-04-28|<< 🗓 Previous ]]       [[@Main Dashboard|Back]]       [[2023-04-30|🗓 Next >>]]
|
||||
|
||||
---
|
||||
|
||||
 
|
||||
|
||||
```button
|
||||
name Record today's health
|
||||
type command
|
||||
action MetaEdit: Run MetaEdit
|
||||
id EditMetaData
|
||||
```
|
||||
^button-2023-04-29Edit
|
||||
|
||||
```button
|
||||
name Save
|
||||
type command
|
||||
action Save current file
|
||||
id Save
|
||||
```
|
||||
^button-2023-04-29NSave
|
||||
|
||||
 
|
||||
|
||||
# 2023-04-29
|
||||
|
||||
 
|
||||
|
||||
> [!summary]+
|
||||
> Daily note for 2023-04-29
|
||||
|
||||
 
|
||||
|
||||
```toc
|
||||
style: number
|
||||
```
|
||||
|
||||
 
|
||||
|
||||
---
|
||||
|
||||
 
|
||||
|
||||
### ✅ Tasks of the day
|
||||
|
||||
 
|
||||
|
||||
```tasks
|
||||
not done
|
||||
due on 2023-04-29
|
||||
path does not include Templates
|
||||
hide backlinks
|
||||
hide task count
|
||||
```
|
||||
|
||||
 
|
||||
|
||||
---
|
||||
|
||||
 
|
||||
|
||||
### 📝 Memos
|
||||
|
||||
 
|
||||
|
||||
This section does serve for quick memos.
|
||||
|
||||
 
|
||||
|
||||
|
||||
%% --- %%
|
||||
 
|
||||
|
||||
---
|
||||
|
||||
 
|
||||
|
||||
### 🗒 Notes
|
||||
|
||||
 
|
||||
|
||||
- Mariage de [[Marguerite de Villeneuve]] avec [[Arnold Moulin|Arnold]] à [[Geneva|Genève]]
|
||||
|
||||
 
|
||||
|
||||
---
|
||||
|
||||
 
|
||||
|
||||
### :link: Linked activity
|
||||
|
||||
 
|
||||
|
||||
```dataview
|
||||
Table from [[2023-04-29]]
|
||||
```
|
||||
|
||||
 
|
||||
 
|
@ -0,0 +1,136 @@
|
||||
---
|
||||
|
||||
title: "🗒 Daily Note"
|
||||
allDay: true
|
||||
date: 2023-04-30
|
||||
Date: 2023-04-30
|
||||
DocType: Note
|
||||
Hierarchy:
|
||||
TimeStamp:
|
||||
location:
|
||||
CollapseMetaTable: true
|
||||
Sleep: 8.5
|
||||
Happiness: 80
|
||||
Gratefulness: 90
|
||||
Stress: 27.5
|
||||
FrontHeadBar: 5
|
||||
EarHeadBar: 35
|
||||
BackHeadBar: 20
|
||||
Water: 2.58
|
||||
Coffee: 4
|
||||
Steps: 12922
|
||||
Weight:
|
||||
Ski:
|
||||
IceSkating:
|
||||
Riding:
|
||||
Racket:
|
||||
Football:
|
||||
Swim:
|
||||
|
||||
---
|
||||
|
||||
%% Parent:: [[@Life Admin]] %%
|
||||
|
||||
---
|
||||
|
||||
[[2023-04-29|<< 🗓 Previous ]]       [[@Main Dashboard|Back]]       [[2023-05-01|🗓 Next >>]]
|
||||
|
||||
---
|
||||
|
||||
 
|
||||
|
||||
```button
|
||||
name Record today's health
|
||||
type command
|
||||
action MetaEdit: Run MetaEdit
|
||||
id EditMetaData
|
||||
```
|
||||
^button-2023-04-30Edit
|
||||
|
||||
```button
|
||||
name Save
|
||||
type command
|
||||
action Save current file
|
||||
id Save
|
||||
```
|
||||
^button-2023-04-30NSave
|
||||
|
||||
 
|
||||
|
||||
# 2023-04-30
|
||||
|
||||
 
|
||||
|
||||
> [!summary]+
|
||||
> Daily note for 2023-04-30
|
||||
|
||||
 
|
||||
|
||||
```toc
|
||||
style: number
|
||||
```
|
||||
|
||||
 
|
||||
|
||||
---
|
||||
|
||||
 
|
||||
|
||||
### ✅ Tasks of the day
|
||||
|
||||
 
|
||||
|
||||
```tasks
|
||||
not done
|
||||
due on 2023-04-30
|
||||
path does not include Templates
|
||||
hide backlinks
|
||||
hide task count
|
||||
```
|
||||
|
||||
 
|
||||
|
||||
---
|
||||
|
||||
 
|
||||
|
||||
### 📝 Memos
|
||||
|
||||
 
|
||||
|
||||
This section does serve for quick memos.
|
||||
|
||||
 
|
||||
|
||||
|
||||
%% --- %%
|
||||
 
|
||||
|
||||
---
|
||||
|
||||
 
|
||||
|
||||
### 🗒 Notes
|
||||
|
||||
 
|
||||
|
||||
Peregrinations à [[Geneva|Genève]] avec [[Amaury de Villeneuve]] et [[Arnaud Chapal]]
|
||||
|
||||
🚆: [[Geneva]] to [[@@Zürich|Zürich]]
|
||||
|
||||
 
|
||||
|
||||
---
|
||||
|
||||
 
|
||||
|
||||
### :link: Linked activity
|
||||
|
||||
 
|
||||
|
||||
```dataview
|
||||
Table from [[2023-04-30]]
|
||||
```
|
||||
|
||||
 
|
||||
 
|
@ -0,0 +1,134 @@
|
||||
---
|
||||
|
||||
title: "🗒 Daily Note"
|
||||
allDay: true
|
||||
date: 2023-05-01
|
||||
Date: 2023-05-01
|
||||
DocType: Note
|
||||
Hierarchy:
|
||||
TimeStamp:
|
||||
location:
|
||||
CollapseMetaTable: true
|
||||
Sleep: 9
|
||||
Happiness: 80
|
||||
Gratefulness: 90
|
||||
Stress: 27.5
|
||||
FrontHeadBar: 5
|
||||
EarHeadBar: 35
|
||||
BackHeadBar: 20
|
||||
Water: 3.5
|
||||
Coffee: 3
|
||||
Steps: 13813
|
||||
Weight:
|
||||
Ski:
|
||||
IceSkating:
|
||||
Riding:
|
||||
Racket:
|
||||
Football:
|
||||
Swim:
|
||||
|
||||
---
|
||||
|
||||
%% Parent:: [[@Life Admin]] %%
|
||||
|
||||
---
|
||||
|
||||
[[2023-04-30|<< 🗓 Previous ]]       [[@Main Dashboard|Back]]       [[2023-05-02|🗓 Next >>]]
|
||||
|
||||
---
|
||||
|
||||
 
|
||||
|
||||
```button
|
||||
name Record today's health
|
||||
type command
|
||||
action MetaEdit: Run MetaEdit
|
||||
id EditMetaData
|
||||
```
|
||||
^button-2023-05-01Edit
|
||||
|
||||
```button
|
||||
name Save
|
||||
type command
|
||||
action Save current file
|
||||
id Save
|
||||
```
|
||||
^button-2023-05-01NSave
|
||||
|
||||
 
|
||||
|
||||
# 2023-05-01
|
||||
|
||||
 
|
||||
|
||||
> [!summary]+
|
||||
> Daily note for 2023-05-01
|
||||
|
||||
 
|
||||
|
||||
```toc
|
||||
style: number
|
||||
```
|
||||
|
||||
 
|
||||
|
||||
---
|
||||
|
||||
 
|
||||
|
||||
### ✅ Tasks of the day
|
||||
|
||||
 
|
||||
|
||||
```tasks
|
||||
not done
|
||||
due on 2023-05-01
|
||||
path does not include Templates
|
||||
hide backlinks
|
||||
hide task count
|
||||
```
|
||||
|
||||
 
|
||||
|
||||
---
|
||||
|
||||
 
|
||||
|
||||
### 📝 Memos
|
||||
|
||||
 
|
||||
|
||||
This section does serve for quick memos.
|
||||
|
||||
 
|
||||
|
||||
|
||||
%% --- %%
|
||||
 
|
||||
|
||||
---
|
||||
|
||||
 
|
||||
|
||||
### 🗒 Notes
|
||||
|
||||
 
|
||||
|
||||
🍽: [[Spicy Szechuan Noodles with Garlic Chilli Oil]]
|
||||
|
||||
 
|
||||
|
||||
---
|
||||
|
||||
 
|
||||
|
||||
### :link: Linked activity
|
||||
|
||||
 
|
||||
|
||||
```dataview
|
||||
Table from [[2023-05-01]]
|
||||
```
|
||||
|
||||
 
|
||||
 
|
@ -0,0 +1,139 @@
|
||||
---
|
||||
|
||||
title: "🗒 Daily Note"
|
||||
allDay: true
|
||||
date: 2023-05-02
|
||||
Date: 2023-05-02
|
||||
DocType: Note
|
||||
Hierarchy:
|
||||
TimeStamp:
|
||||
location:
|
||||
CollapseMetaTable: true
|
||||
Sleep: 8.5
|
||||
Happiness: 80
|
||||
Gratefulness: 90
|
||||
Stress: 27.5
|
||||
FrontHeadBar: 5
|
||||
EarHeadBar: 35
|
||||
BackHeadBar: 20
|
||||
Water: 4.51
|
||||
Coffee: 3
|
||||
Steps: 11371
|
||||
Weight: 94.7
|
||||
Ski:
|
||||
IceSkating:
|
||||
Riding: 1
|
||||
Racket:
|
||||
Football:
|
||||
Swim:
|
||||
|
||||
---
|
||||
|
||||
%% Parent:: [[@Life Admin]] %%
|
||||
|
||||
---
|
||||
|
||||
[[2023-05-01|<< 🗓 Previous ]]       [[@Main Dashboard|Back]]       [[2023-05-03|🗓 Next >>]]
|
||||
|
||||
---
|
||||
|
||||
 
|
||||
|
||||
```button
|
||||
name Record today's health
|
||||
type command
|
||||
action MetaEdit: Run MetaEdit
|
||||
id EditMetaData
|
||||
```
|
||||
^button-2023-05-02Edit
|
||||
|
||||
```button
|
||||
name Save
|
||||
type command
|
||||
action Save current file
|
||||
id Save
|
||||
```
|
||||
^button-2023-05-02NSave
|
||||
|
||||
 
|
||||
|
||||
# 2023-05-02
|
||||
|
||||
 
|
||||
|
||||
> [!summary]+
|
||||
> Daily note for 2023-05-02
|
||||
|
||||
 
|
||||
|
||||
```toc
|
||||
style: number
|
||||
```
|
||||
|
||||
 
|
||||
|
||||
---
|
||||
|
||||
 
|
||||
|
||||
### ✅ Tasks of the day
|
||||
|
||||
 
|
||||
|
||||
```tasks
|
||||
not done
|
||||
due on 2023-05-02
|
||||
path does not include Templates
|
||||
hide backlinks
|
||||
hide task count
|
||||
```
|
||||
|
||||
 
|
||||
|
||||
---
|
||||
|
||||
 
|
||||
|
||||
### 📝 Memos
|
||||
|
||||
 
|
||||
|
||||
This section does serve for quick memos.
|
||||
|
||||
 
|
||||
|
||||
|
||||
%% --- %%
|
||||
 
|
||||
|
||||
---
|
||||
|
||||
 
|
||||
|
||||
### 🗒 Notes
|
||||
|
||||
 
|
||||
|
||||
📱
|
||||
Dear Maryrose - i hope that this text will find you well. Sorry to text you directly but Megan Rose advised me that she would like to receive you in 2 weekends in the flat. As you know, Megan Rose unilaterally decided to part ways with me a month or so ago and has since not been particularly
|
||||
|
||||
🐎: Session au [[Polo Park Zürich]] avec [[@Sally|Sally]]
|
||||
|
||||
🍽: [[Spicy Szechuan Noodles with Garlic Chilli Oil]]
|
||||
|
||||
 
|
||||
|
||||
---
|
||||
|
||||
 
|
||||
|
||||
### :link: Linked activity
|
||||
|
||||
 
|
||||
|
||||
```dataview
|
||||
Table from [[2023-05-02]]
|
||||
```
|
||||
|
||||
 
|
||||
 
|
@ -0,0 +1,136 @@
|
||||
---
|
||||
|
||||
title: "🗒 Daily Note"
|
||||
allDay: true
|
||||
date: 2023-05-03
|
||||
Date: 2023-05-03
|
||||
DocType: Note
|
||||
Hierarchy:
|
||||
TimeStamp:
|
||||
location:
|
||||
CollapseMetaTable: true
|
||||
Sleep: 8
|
||||
Happiness: 80
|
||||
Gratefulness: 90
|
||||
Stress: 27.5
|
||||
FrontHeadBar: 5
|
||||
EarHeadBar: 35
|
||||
BackHeadBar: 20
|
||||
Water: 4.78
|
||||
Coffee: 3
|
||||
Steps: 13556
|
||||
Weight:
|
||||
Ski:
|
||||
IceSkating:
|
||||
Riding: 1
|
||||
Racket:
|
||||
Football:
|
||||
Swim:
|
||||
|
||||
---
|
||||
|
||||
%% Parent:: [[@Life Admin]] %%
|
||||
|
||||
---
|
||||
|
||||
[[2023-05-02|<< 🗓 Previous ]]       [[@Main Dashboard|Back]]       [[2023-05-04|🗓 Next >>]]
|
||||
|
||||
---
|
||||
|
||||
 
|
||||
|
||||
```button
|
||||
name Record today's health
|
||||
type command
|
||||
action MetaEdit: Run MetaEdit
|
||||
id EditMetaData
|
||||
```
|
||||
^button-2023-05-03Edit
|
||||
|
||||
```button
|
||||
name Save
|
||||
type command
|
||||
action Save current file
|
||||
id Save
|
||||
```
|
||||
^button-2023-05-03NSave
|
||||
|
||||
 
|
||||
|
||||
# 2023-05-03
|
||||
|
||||
 
|
||||
|
||||
> [!summary]+
|
||||
> Daily note for 2023-05-03
|
||||
|
||||
 
|
||||
|
||||
```toc
|
||||
style: number
|
||||
```
|
||||
|
||||
 
|
||||
|
||||
---
|
||||
|
||||
 
|
||||
|
||||
### ✅ Tasks of the day
|
||||
|
||||
 
|
||||
|
||||
```tasks
|
||||
not done
|
||||
due on 2023-05-03
|
||||
path does not include Templates
|
||||
hide backlinks
|
||||
hide task count
|
||||
```
|
||||
|
||||
 
|
||||
|
||||
---
|
||||
|
||||
 
|
||||
|
||||
### 📝 Memos
|
||||
|
||||
 
|
||||
|
||||
This section does serve for quick memos.
|
||||
|
||||
 
|
||||
|
||||
|
||||
%% --- %%
|
||||
 
|
||||
|
||||
---
|
||||
|
||||
 
|
||||
|
||||
### 🗒 Notes
|
||||
|
||||
 
|
||||
|
||||
🐎: [[Polo Park Zürich|PPZ]] avec [[@Sally|Sally]]
|
||||
|
||||
🍽: [[Korean Barbecue-Style Meatballs]]
|
||||
|
||||
 
|
||||
|
||||
---
|
||||
|
||||
 
|
||||
|
||||
### :link: Linked activity
|
||||
|
||||
 
|
||||
|
||||
```dataview
|
||||
Table from [[2023-05-03]]
|
||||
```
|
||||
|
||||
 
|
||||
 
|
@ -0,0 +1,134 @@
|
||||
---
|
||||
|
||||
title: "🗒 Daily Note"
|
||||
allDay: true
|
||||
date: 2023-05-04
|
||||
Date: 2023-05-04
|
||||
DocType: Note
|
||||
Hierarchy:
|
||||
TimeStamp:
|
||||
location:
|
||||
CollapseMetaTable: true
|
||||
Sleep: 8.5
|
||||
Happiness: 80
|
||||
Gratefulness: 90
|
||||
Stress: 27.5
|
||||
FrontHeadBar: 5
|
||||
EarHeadBar: 35
|
||||
BackHeadBar: 20
|
||||
Water: 3.83
|
||||
Coffee: 3
|
||||
Steps: 19219
|
||||
Weight:
|
||||
Ski:
|
||||
IceSkating:
|
||||
Riding:
|
||||
Racket:
|
||||
Football:
|
||||
Swim:
|
||||
|
||||
---
|
||||
|
||||
%% Parent:: [[@Life Admin]] %%
|
||||
|
||||
---
|
||||
|
||||
[[2023-05-03|<< 🗓 Previous ]]       [[@Main Dashboard|Back]]       [[2023-05-05|🗓 Next >>]]
|
||||
|
||||
---
|
||||
|
||||
 
|
||||
|
||||
```button
|
||||
name Record today's health
|
||||
type command
|
||||
action MetaEdit: Run MetaEdit
|
||||
id EditMetaData
|
||||
```
|
||||
^button-2023-05-04Edit
|
||||
|
||||
```button
|
||||
name Save
|
||||
type command
|
||||
action Save current file
|
||||
id Save
|
||||
```
|
||||
^button-2023-05-04NSave
|
||||
|
||||
 
|
||||
|
||||
# 2023-05-04
|
||||
|
||||
 
|
||||
|
||||
> [!summary]+
|
||||
> Daily note for 2023-05-04
|
||||
|
||||
 
|
||||
|
||||
```toc
|
||||
style: number
|
||||
```
|
||||
|
||||
 
|
||||
|
||||
---
|
||||
|
||||
 
|
||||
|
||||
### ✅ Tasks of the day
|
||||
|
||||
 
|
||||
|
||||
```tasks
|
||||
not done
|
||||
due on 2023-05-04
|
||||
path does not include Templates
|
||||
hide backlinks
|
||||
hide task count
|
||||
```
|
||||
|
||||
 
|
||||
|
||||
---
|
||||
|
||||
 
|
||||
|
||||
### 📝 Memos
|
||||
|
||||
 
|
||||
|
||||
This section does serve for quick memos.
|
||||
|
||||
 
|
||||
|
||||
|
||||
%% --- %%
|
||||
 
|
||||
|
||||
---
|
||||
|
||||
 
|
||||
|
||||
### 🗒 Notes
|
||||
|
||||
 
|
||||
|
||||
Loret ipsum
|
||||
|
||||
 
|
||||
|
||||
---
|
||||
|
||||
 
|
||||
|
||||
### :link: Linked activity
|
||||
|
||||
 
|
||||
|
||||
```dataview
|
||||
Table from [[2023-05-04]]
|
||||
```
|
||||
|
||||
 
|
||||
 
|
@ -0,0 +1,134 @@
|
||||
---
|
||||
|
||||
title: "🗒 Daily Note"
|
||||
allDay: true
|
||||
date: 2023-05-05
|
||||
Date: 2023-05-05
|
||||
DocType: Note
|
||||
Hierarchy:
|
||||
TimeStamp:
|
||||
location:
|
||||
CollapseMetaTable: true
|
||||
Sleep: 7.5
|
||||
Happiness: 80
|
||||
Gratefulness: 90
|
||||
Stress: 27.5
|
||||
FrontHeadBar: 5
|
||||
EarHeadBar: 35
|
||||
BackHeadBar: 20
|
||||
Water: 4.33
|
||||
Coffee: 1
|
||||
Steps: 10373
|
||||
Weight:
|
||||
Ski:
|
||||
IceSkating:
|
||||
Riding:
|
||||
Racket:
|
||||
Football:
|
||||
Swim:
|
||||
|
||||
---
|
||||
|
||||
%% Parent:: [[@Life Admin]] %%
|
||||
|
||||
---
|
||||
|
||||
[[2023-05-04|<< 🗓 Previous ]]       [[@Main Dashboard|Back]]       [[2023-05-06|🗓 Next >>]]
|
||||
|
||||
---
|
||||
|
||||
 
|
||||
|
||||
```button
|
||||
name Record today's health
|
||||
type command
|
||||
action MetaEdit: Run MetaEdit
|
||||
id EditMetaData
|
||||
```
|
||||
^button-2023-05-05Edit
|
||||
|
||||
```button
|
||||
name Save
|
||||
type command
|
||||
action Save current file
|
||||
id Save
|
||||
```
|
||||
^button-2023-05-05NSave
|
||||
|
||||
 
|
||||
|
||||
# 2023-05-05
|
||||
|
||||
 
|
||||
|
||||
> [!summary]+
|
||||
> Daily note for 2023-05-05
|
||||
|
||||
 
|
||||
|
||||
```toc
|
||||
style: number
|
||||
```
|
||||
|
||||
 
|
||||
|
||||
---
|
||||
|
||||
 
|
||||
|
||||
### ✅ Tasks of the day
|
||||
|
||||
 
|
||||
|
||||
```tasks
|
||||
not done
|
||||
due on 2023-05-05
|
||||
path does not include Templates
|
||||
hide backlinks
|
||||
hide task count
|
||||
```
|
||||
|
||||
 
|
||||
|
||||
---
|
||||
|
||||
 
|
||||
|
||||
### 📝 Memos
|
||||
|
||||
 
|
||||
|
||||
This section does serve for quick memos.
|
||||
|
||||
 
|
||||
|
||||
|
||||
%% --- %%
|
||||
 
|
||||
|
||||
---
|
||||
|
||||
 
|
||||
|
||||
### 🗒 Notes
|
||||
|
||||
 
|
||||
|
||||
Loret ipsum
|
||||
|
||||
 
|
||||
|
||||
---
|
||||
|
||||
 
|
||||
|
||||
### :link: Linked activity
|
||||
|
||||
 
|
||||
|
||||
```dataview
|
||||
Table from [[2023-05-05]]
|
||||
```
|
||||
|
||||
 
|
||||
 
|
@ -0,0 +1,136 @@
|
||||
---
|
||||
|
||||
title: "🗒 Daily Note"
|
||||
allDay: true
|
||||
date: 2023-05-06
|
||||
Date: 2023-05-06
|
||||
DocType: Note
|
||||
Hierarchy:
|
||||
TimeStamp:
|
||||
location:
|
||||
CollapseMetaTable: true
|
||||
Sleep: 8
|
||||
Happiness: 80
|
||||
Gratefulness: 90
|
||||
Stress: 27.5
|
||||
FrontHeadBar: 5
|
||||
EarHeadBar: 35
|
||||
BackHeadBar: 20
|
||||
Water: 4.73
|
||||
Coffee: 1
|
||||
Steps: 9813
|
||||
Weight:
|
||||
Ski:
|
||||
IceSkating:
|
||||
Riding: 1
|
||||
Racket:
|
||||
Football:
|
||||
Swim:
|
||||
|
||||
---
|
||||
|
||||
%% Parent:: [[@Life Admin]] %%
|
||||
|
||||
---
|
||||
|
||||
[[2023-05-05|<< 🗓 Previous ]]       [[@Main Dashboard|Back]]       [[2023-05-07|🗓 Next >>]]
|
||||
|
||||
---
|
||||
|
||||
 
|
||||
|
||||
```button
|
||||
name Record today's health
|
||||
type command
|
||||
action MetaEdit: Run MetaEdit
|
||||
id EditMetaData
|
||||
```
|
||||
^button-2023-05-06Edit
|
||||
|
||||
```button
|
||||
name Save
|
||||
type command
|
||||
action Save current file
|
||||
id Save
|
||||
```
|
||||
^button-2023-05-06NSave
|
||||
|
||||
 
|
||||
|
||||
# 2023-05-06
|
||||
|
||||
 
|
||||
|
||||
> [!summary]+
|
||||
> Daily note for 2023-05-06
|
||||
|
||||
 
|
||||
|
||||
```toc
|
||||
style: number
|
||||
```
|
||||
|
||||
 
|
||||
|
||||
---
|
||||
|
||||
 
|
||||
|
||||
### ✅ Tasks of the day
|
||||
|
||||
 
|
||||
|
||||
```tasks
|
||||
not done
|
||||
due on 2023-05-06
|
||||
path does not include Templates
|
||||
hide backlinks
|
||||
hide task count
|
||||
```
|
||||
|
||||
 
|
||||
|
||||
---
|
||||
|
||||
 
|
||||
|
||||
### 📝 Memos
|
||||
|
||||
 
|
||||
|
||||
This section does serve for quick memos.
|
||||
|
||||
 
|
||||
|
||||
|
||||
%% --- %%
|
||||
 
|
||||
|
||||
---
|
||||
|
||||
 
|
||||
|
||||
### 🗒 Notes
|
||||
|
||||
 
|
||||
|
||||
🐎: S&B in [[Polo Park Zürich|PPZ]] with [[@Sally|Sally]]
|
||||
|
||||
🍽: [[Big Shells With Spicy Lamb Sausage and Pistachios]]
|
||||
|
||||
 
|
||||
|
||||
---
|
||||
|
||||
 
|
||||
|
||||
### :link: Linked activity
|
||||
|
||||
 
|
||||
|
||||
```dataview
|
||||
Table from [[2023-05-06]]
|
||||
```
|
||||
|
||||
 
|
||||
 
|
@ -0,0 +1,136 @@
|
||||
---
|
||||
|
||||
title: "🗒 Daily Note"
|
||||
allDay: true
|
||||
date: 2023-05-07
|
||||
Date: 2023-05-07
|
||||
DocType: Note
|
||||
Hierarchy:
|
||||
TimeStamp:
|
||||
location:
|
||||
CollapseMetaTable: true
|
||||
Sleep: 8
|
||||
Happiness: 80
|
||||
Gratefulness: 90
|
||||
Stress: 27.5
|
||||
FrontHeadBar: 5
|
||||
EarHeadBar: 35
|
||||
BackHeadBar: 20
|
||||
Water: 3.4
|
||||
Coffee: 1
|
||||
Steps: 8751
|
||||
Weight:
|
||||
Ski:
|
||||
IceSkating:
|
||||
Riding: 1
|
||||
Racket:
|
||||
Football:
|
||||
Swim:
|
||||
|
||||
---
|
||||
|
||||
%% Parent:: [[@Life Admin]] %%
|
||||
|
||||
---
|
||||
|
||||
[[2023-05-06|<< 🗓 Previous ]]       [[@Main Dashboard|Back]]       [[2023-05-08|🗓 Next >>]]
|
||||
|
||||
---
|
||||
|
||||
 
|
||||
|
||||
```button
|
||||
name Record today's health
|
||||
type command
|
||||
action MetaEdit: Run MetaEdit
|
||||
id EditMetaData
|
||||
```
|
||||
^button-2023-05-07Edit
|
||||
|
||||
```button
|
||||
name Save
|
||||
type command
|
||||
action Save current file
|
||||
id Save
|
||||
```
|
||||
^button-2023-05-07NSave
|
||||
|
||||
 
|
||||
|
||||
# 2023-05-07
|
||||
|
||||
 
|
||||
|
||||
> [!summary]+
|
||||
> Daily note for 2023-05-07
|
||||
|
||||
 
|
||||
|
||||
```toc
|
||||
style: number
|
||||
```
|
||||
|
||||
 
|
||||
|
||||
---
|
||||
|
||||
 
|
||||
|
||||
### ✅ Tasks of the day
|
||||
|
||||
 
|
||||
|
||||
```tasks
|
||||
not done
|
||||
due on 2023-05-07
|
||||
path does not include Templates
|
||||
hide backlinks
|
||||
hide task count
|
||||
```
|
||||
|
||||
 
|
||||
|
||||
---
|
||||
|
||||
 
|
||||
|
||||
### 📝 Memos
|
||||
|
||||
 
|
||||
|
||||
This section does serve for quick memos.
|
||||
|
||||
 
|
||||
|
||||
|
||||
%% --- %%
|
||||
 
|
||||
|
||||
---
|
||||
|
||||
 
|
||||
|
||||
### 🗒 Notes
|
||||
|
||||
 
|
||||
|
||||
🐎: S&B avec [[@Sally|Sally]] à [[Polo Park Zürich|PPZ]]
|
||||
|
||||
🍽: [[Big Shells With Spicy Lamb Sausage and Pistachios]]
|
||||
|
||||
 
|
||||
|
||||
---
|
||||
|
||||
 
|
||||
|
||||
### :link: Linked activity
|
||||
|
||||
 
|
||||
|
||||
```dataview
|
||||
Table from [[2023-05-07]]
|
||||
```
|
||||
|
||||
 
|
||||
 
|
@ -0,0 +1,136 @@
|
||||
---
|
||||
|
||||
title: "🗒 Daily Note"
|
||||
allDay: true
|
||||
date: 2023-05-08
|
||||
Date: 2023-05-08
|
||||
DocType: Note
|
||||
Hierarchy:
|
||||
TimeStamp:
|
||||
location:
|
||||
CollapseMetaTable: true
|
||||
Sleep: 8
|
||||
Happiness: 80
|
||||
Gratefulness: 90
|
||||
Stress: 27.5
|
||||
FrontHeadBar: 5
|
||||
EarHeadBar: 35
|
||||
BackHeadBar: 20
|
||||
Water: 4.7
|
||||
Coffee: 3
|
||||
Steps: 17172
|
||||
Weight:
|
||||
Ski:
|
||||
IceSkating:
|
||||
Riding:
|
||||
Racket:
|
||||
Football:
|
||||
Swim:
|
||||
|
||||
---
|
||||
|
||||
%% Parent:: [[@Life Admin]] %%
|
||||
|
||||
---
|
||||
|
||||
[[2023-05-07|<< 🗓 Previous ]]       [[@Main Dashboard|Back]]       [[2023-05-09|🗓 Next >>]]
|
||||
|
||||
---
|
||||
|
||||
 
|
||||
|
||||
```button
|
||||
name Record today's health
|
||||
type command
|
||||
action MetaEdit: Run MetaEdit
|
||||
id EditMetaData
|
||||
```
|
||||
^button-2023-05-08Edit
|
||||
|
||||
```button
|
||||
name Save
|
||||
type command
|
||||
action Save current file
|
||||
id Save
|
||||
```
|
||||
^button-2023-05-08NSave
|
||||
|
||||
 
|
||||
|
||||
# 2023-05-08
|
||||
|
||||
 
|
||||
|
||||
> [!summary]+
|
||||
> Daily note for 2023-05-08
|
||||
|
||||
 
|
||||
|
||||
```toc
|
||||
style: number
|
||||
```
|
||||
|
||||
 
|
||||
|
||||
---
|
||||
|
||||
 
|
||||
|
||||
### ✅ Tasks of the day
|
||||
|
||||
 
|
||||
|
||||
```tasks
|
||||
not done
|
||||
due on 2023-05-08
|
||||
path does not include Templates
|
||||
hide backlinks
|
||||
hide task count
|
||||
```
|
||||
|
||||
 
|
||||
|
||||
---
|
||||
|
||||
 
|
||||
|
||||
### 📝 Memos
|
||||
|
||||
 
|
||||
|
||||
This section does serve for quick memos.
|
||||
|
||||
 
|
||||
- [x] 11:11 :blue_car: [[@Life Admin|Admin]], [[2023-05-08|Memo]]: Contact [[Rex Automobile CH]] re brakes and other parts to change 📅 2023-05-12 ✅ 2023-05-08
|
||||
- [ ] 11:14 :stopwatch: [[@Life Admin|Admin]], [[2023-05-08|Memo]]: Get Lip watch back 📅 2023-05-30
|
||||
|
||||
|
||||
%% --- %%
|
||||
 
|
||||
|
||||
---
|
||||
|
||||
 
|
||||
|
||||
### 🗒 Notes
|
||||
|
||||
 
|
||||
|
||||
🍽: [[Beef Noodles with Beans]]
|
||||
|
||||
 
|
||||
|
||||
---
|
||||
|
||||
 
|
||||
|
||||
### :link: Linked activity
|
||||
|
||||
 
|
||||
|
||||
```dataview
|
||||
Table from [[2023-05-08]]
|
||||
```
|
||||
|
||||
 
|
||||
 
|
@ -0,0 +1,134 @@
|
||||
---
|
||||
|
||||
title: "🗒 Daily Note"
|
||||
allDay: true
|
||||
date: 2023-05-09
|
||||
Date: 2023-05-09
|
||||
DocType: Note
|
||||
Hierarchy:
|
||||
TimeStamp:
|
||||
location:
|
||||
CollapseMetaTable: true
|
||||
Sleep: 8
|
||||
Happiness: 80
|
||||
Gratefulness: 90
|
||||
Stress: 27.5
|
||||
FrontHeadBar: 5
|
||||
EarHeadBar: 35
|
||||
BackHeadBar: 20
|
||||
Water: 2.9
|
||||
Coffee: 3
|
||||
Steps: 13602
|
||||
Weight: 93.9
|
||||
Ski:
|
||||
IceSkating:
|
||||
Riding:
|
||||
Racket:
|
||||
Football:
|
||||
Swim:
|
||||
|
||||
---
|
||||
|
||||
%% Parent:: [[@Life Admin]] %%
|
||||
|
||||
---
|
||||
|
||||
[[2023-05-08|<< 🗓 Previous ]]       [[@Main Dashboard|Back]]       [[2023-05-10|🗓 Next >>]]
|
||||
|
||||
---
|
||||
|
||||
 
|
||||
|
||||
```button
|
||||
name Record today's health
|
||||
type command
|
||||
action MetaEdit: Run MetaEdit
|
||||
id EditMetaData
|
||||
```
|
||||
^button-2023-05-09Edit
|
||||
|
||||
```button
|
||||
name Save
|
||||
type command
|
||||
action Save current file
|
||||
id Save
|
||||
```
|
||||
^button-2023-05-09NSave
|
||||
|
||||
 
|
||||
|
||||
# 2023-05-09
|
||||
|
||||
 
|
||||
|
||||
> [!summary]+
|
||||
> Daily note for 2023-05-09
|
||||
|
||||
 
|
||||
|
||||
```toc
|
||||
style: number
|
||||
```
|
||||
|
||||
 
|
||||
|
||||
---
|
||||
|
||||
 
|
||||
|
||||
### ✅ Tasks of the day
|
||||
|
||||
 
|
||||
|
||||
```tasks
|
||||
not done
|
||||
due on 2023-05-09
|
||||
path does not include Templates
|
||||
hide backlinks
|
||||
hide task count
|
||||
```
|
||||
|
||||
 
|
||||
|
||||
---
|
||||
|
||||
 
|
||||
|
||||
### 📝 Memos
|
||||
|
||||
 
|
||||
|
||||
This section does serve for quick memos.
|
||||
|
||||
 
|
||||
|
||||
|
||||
%% --- %%
|
||||
 
|
||||
|
||||
---
|
||||
|
||||
 
|
||||
|
||||
### 🗒 Notes
|
||||
|
||||
 
|
||||
|
||||
🍽: [[Beef Noodles with Beans]]
|
||||
|
||||
 
|
||||
|
||||
---
|
||||
|
||||
 
|
||||
|
||||
### :link: Linked activity
|
||||
|
||||
 
|
||||
|
||||
```dataview
|
||||
Table from [[2023-05-09]]
|
||||
```
|
||||
|
||||
 
|
||||
 
|
@ -0,0 +1,135 @@
|
||||
---
|
||||
|
||||
title: "🗒 Daily Note"
|
||||
allDay: true
|
||||
date: 2023-05-10
|
||||
Date: 2023-05-10
|
||||
DocType: Note
|
||||
Hierarchy:
|
||||
TimeStamp:
|
||||
location:
|
||||
CollapseMetaTable: true
|
||||
Sleep: 8
|
||||
Happiness: 80
|
||||
Gratefulness: 90
|
||||
Stress: 27.5
|
||||
FrontHeadBar: 5
|
||||
EarHeadBar: 35
|
||||
BackHeadBar: 20
|
||||
Water: 2.9
|
||||
Coffee: 4
|
||||
Steps: 9027
|
||||
Weight:
|
||||
Ski:
|
||||
IceSkating:
|
||||
Riding:
|
||||
Racket:
|
||||
Football:
|
||||
Swim:
|
||||
|
||||
---
|
||||
|
||||
%% Parent:: [[@Life Admin]] %%
|
||||
|
||||
---
|
||||
|
||||
[[2023-05-09|<< 🗓 Previous ]]       [[@Main Dashboard|Back]]       [[2023-05-11|🗓 Next >>]]
|
||||
|
||||
---
|
||||
|
||||
 
|
||||
|
||||
```button
|
||||
name Record today's health
|
||||
type command
|
||||
action MetaEdit: Run MetaEdit
|
||||
id EditMetaData
|
||||
```
|
||||
^button-2023-05-10Edit
|
||||
|
||||
```button
|
||||
name Save
|
||||
type command
|
||||
action Save current file
|
||||
id Save
|
||||
```
|
||||
^button-2023-05-10NSave
|
||||
|
||||
 
|
||||
|
||||
# 2023-05-10
|
||||
|
||||
 
|
||||
|
||||
> [!summary]+
|
||||
> Daily note for 2023-05-10
|
||||
|
||||
 
|
||||
|
||||
```toc
|
||||
style: number
|
||||
```
|
||||
|
||||
 
|
||||
|
||||
---
|
||||
|
||||
 
|
||||
|
||||
### ✅ Tasks of the day
|
||||
|
||||
 
|
||||
|
||||
```tasks
|
||||
not done
|
||||
due on 2023-05-10
|
||||
path does not include Templates
|
||||
hide backlinks
|
||||
hide task count
|
||||
```
|
||||
|
||||
 
|
||||
|
||||
---
|
||||
|
||||
 
|
||||
|
||||
### 📝 Memos
|
||||
|
||||
 
|
||||
|
||||
This section does serve for quick memos.
|
||||
|
||||
 
|
||||
- [ ] 13:38 :blue_car: [[@Life Admin|Admin]], [[2023-05-10|Memo]]: Change driving licence at Verkehrsamt 📅 2023-05-30
|
||||
|
||||
|
||||
%% --- %%
|
||||
 
|
||||
|
||||
---
|
||||
|
||||
 
|
||||
|
||||
### 🗒 Notes
|
||||
|
||||
 
|
||||
|
||||
🚆: day of work in [[Geneva]]
|
||||
|
||||
 
|
||||
|
||||
---
|
||||
|
||||
 
|
||||
|
||||
### :link: Linked activity
|
||||
|
||||
 
|
||||
|
||||
```dataview
|
||||
Table from [[2023-05-10]]
|
||||
```
|
||||
|
||||
 
|
||||
 
|
@ -0,0 +1,134 @@
|
||||
---
|
||||
|
||||
title: "🗒 Daily Note"
|
||||
allDay: true
|
||||
date: 2023-05-11
|
||||
Date: 2023-05-11
|
||||
DocType: Note
|
||||
Hierarchy:
|
||||
TimeStamp:
|
||||
location:
|
||||
CollapseMetaTable: true
|
||||
Sleep: 8
|
||||
Happiness: 80
|
||||
Gratefulness: 90
|
||||
Stress: 27.5
|
||||
FrontHeadBar: 5
|
||||
EarHeadBar: 35
|
||||
BackHeadBar: 20
|
||||
Water: 3.5
|
||||
Coffee: 0
|
||||
Steps: 12017
|
||||
Weight:
|
||||
Ski:
|
||||
IceSkating:
|
||||
Riding:
|
||||
Racket:
|
||||
Football:
|
||||
Swim:
|
||||
|
||||
---
|
||||
|
||||
%% Parent:: [[@Life Admin]] %%
|
||||
|
||||
---
|
||||
|
||||
[[2023-05-10|<< 🗓 Previous ]]       [[@Main Dashboard|Back]]       [[2023-05-12|🗓 Next >>]]
|
||||
|
||||
---
|
||||
|
||||
 
|
||||
|
||||
```button
|
||||
name Record today's health
|
||||
type command
|
||||
action MetaEdit: Run MetaEdit
|
||||
id EditMetaData
|
||||
```
|
||||
^button-2023-05-11Edit
|
||||
|
||||
```button
|
||||
name Save
|
||||
type command
|
||||
action Save current file
|
||||
id Save
|
||||
```
|
||||
^button-2023-05-11NSave
|
||||
|
||||
 
|
||||
|
||||
# 2023-05-11
|
||||
|
||||
 
|
||||
|
||||
> [!summary]+
|
||||
> Daily note for 2023-05-11
|
||||
|
||||
 
|
||||
|
||||
```toc
|
||||
style: number
|
||||
```
|
||||
|
||||
 
|
||||
|
||||
---
|
||||
|
||||
 
|
||||
|
||||
### ✅ Tasks of the day
|
||||
|
||||
 
|
||||
|
||||
```tasks
|
||||
not done
|
||||
due on 2023-05-11
|
||||
path does not include Templates
|
||||
hide backlinks
|
||||
hide task count
|
||||
```
|
||||
|
||||
 
|
||||
|
||||
---
|
||||
|
||||
 
|
||||
|
||||
### 📝 Memos
|
||||
|
||||
 
|
||||
|
||||
This section does serve for quick memos.
|
||||
|
||||
 
|
||||
|
||||
|
||||
%% --- %%
|
||||
 
|
||||
|
||||
---
|
||||
|
||||
 
|
||||
|
||||
### 🗒 Notes
|
||||
|
||||
 
|
||||
|
||||
Loret ipsum
|
||||
|
||||
 
|
||||
|
||||
---
|
||||
|
||||
 
|
||||
|
||||
### :link: Linked activity
|
||||
|
||||
 
|
||||
|
||||
```dataview
|
||||
Table from [[2023-05-11]]
|
||||
```
|
||||
|
||||
 
|
||||
 
|
@ -0,0 +1,136 @@
|
||||
---
|
||||
|
||||
title: "🗒 Daily Note"
|
||||
allDay: true
|
||||
date: 2023-05-12
|
||||
Date: 2023-05-12
|
||||
DocType: Note
|
||||
Hierarchy:
|
||||
TimeStamp:
|
||||
location:
|
||||
CollapseMetaTable: true
|
||||
Sleep: 8.5
|
||||
Happiness: 80
|
||||
Gratefulness: 90
|
||||
Stress: 27.5
|
||||
FrontHeadBar: 5
|
||||
EarHeadBar: 35
|
||||
BackHeadBar: 20
|
||||
Water: 4.2
|
||||
Coffee: 4
|
||||
Steps: 6988
|
||||
Weight:
|
||||
Ski:
|
||||
IceSkating:
|
||||
Riding: 1
|
||||
Racket:
|
||||
Football:
|
||||
Swim:
|
||||
|
||||
---
|
||||
|
||||
%% Parent:: [[@Life Admin]] %%
|
||||
|
||||
---
|
||||
|
||||
[[2023-05-11|<< 🗓 Previous ]]       [[@Main Dashboard|Back]]       [[2023-05-13|🗓 Next >>]]
|
||||
|
||||
---
|
||||
|
||||
 
|
||||
|
||||
```button
|
||||
name Record today's health
|
||||
type command
|
||||
action MetaEdit: Run MetaEdit
|
||||
id EditMetaData
|
||||
```
|
||||
^button-2023-05-12Edit
|
||||
|
||||
```button
|
||||
name Save
|
||||
type command
|
||||
action Save current file
|
||||
id Save
|
||||
```
|
||||
^button-2023-05-12NSave
|
||||
|
||||
 
|
||||
|
||||
# 2023-05-12
|
||||
|
||||
 
|
||||
|
||||
> [!summary]+
|
||||
> Daily note for 2023-05-12
|
||||
|
||||
 
|
||||
|
||||
```toc
|
||||
style: number
|
||||
```
|
||||
|
||||
 
|
||||
|
||||
---
|
||||
|
||||
 
|
||||
|
||||
### ✅ Tasks of the day
|
||||
|
||||
 
|
||||
|
||||
```tasks
|
||||
not done
|
||||
due on 2023-05-12
|
||||
path does not include Templates
|
||||
hide backlinks
|
||||
hide task count
|
||||
```
|
||||
|
||||
 
|
||||
|
||||
---
|
||||
|
||||
 
|
||||
|
||||
### 📝 Memos
|
||||
|
||||
 
|
||||
|
||||
This section does serve for quick memos.
|
||||
|
||||
 
|
||||
|
||||
|
||||
%% --- %%
|
||||
 
|
||||
|
||||
---
|
||||
|
||||
 
|
||||
|
||||
### 🗒 Notes
|
||||
|
||||
 
|
||||
|
||||
🐎: S&B @ [[Polo Park Zürich|PPZ]] with [[@Sally|Sally]]
|
||||
|
||||
📺: [[Villeneuve Pironi (2022)]]
|
||||
|
||||
 
|
||||
|
||||
---
|
||||
|
||||
 
|
||||
|
||||
### :link: Linked activity
|
||||
|
||||
 
|
||||
|
||||
```dataview
|
||||
Table from [[2023-05-12]]
|
||||
```
|
||||
|
||||
 
|
||||
 
|
@ -0,0 +1,134 @@
|
||||
---
|
||||
|
||||
title: "🗒 Daily Note"
|
||||
allDay: true
|
||||
date: 2023-05-14
|
||||
Date: 2023-05-14
|
||||
DocType: Note
|
||||
Hierarchy:
|
||||
TimeStamp:
|
||||
location:
|
||||
CollapseMetaTable: true
|
||||
Sleep: 6.5
|
||||
Happiness: 80
|
||||
Gratefulness: 90
|
||||
Stress: 27.5
|
||||
FrontHeadBar: 5
|
||||
EarHeadBar: 35
|
||||
BackHeadBar: 20
|
||||
Water: 2.75
|
||||
Coffee: 0
|
||||
Steps: 11278
|
||||
Weight:
|
||||
Ski:
|
||||
IceSkating:
|
||||
Riding:
|
||||
Racket:
|
||||
Football:
|
||||
Swim:
|
||||
|
||||
---
|
||||
|
||||
%% Parent:: [[@Life Admin]] %%
|
||||
|
||||
---
|
||||
|
||||
[[2023-05-13|<< 🗓 Previous ]]       [[@Main Dashboard|Back]]       [[2023-05-15|🗓 Next >>]]
|
||||
|
||||
---
|
||||
|
||||
 
|
||||
|
||||
```button
|
||||
name Record today's health
|
||||
type command
|
||||
action MetaEdit: Run MetaEdit
|
||||
id EditMetaData
|
||||
```
|
||||
^button-2023-05-14Edit
|
||||
|
||||
```button
|
||||
name Save
|
||||
type command
|
||||
action Save current file
|
||||
id Save
|
||||
```
|
||||
^button-2023-05-14NSave
|
||||
|
||||
 
|
||||
|
||||
# 2023-05-14
|
||||
|
||||
 
|
||||
|
||||
> [!summary]+
|
||||
> Daily note for 2023-05-14
|
||||
|
||||
 
|
||||
|
||||
```toc
|
||||
style: number
|
||||
```
|
||||
|
||||
 
|
||||
|
||||
---
|
||||
|
||||
 
|
||||
|
||||
### ✅ Tasks of the day
|
||||
|
||||
 
|
||||
|
||||
```tasks
|
||||
not done
|
||||
due on 2023-05-14
|
||||
path does not include Templates
|
||||
hide backlinks
|
||||
hide task count
|
||||
```
|
||||
|
||||
 
|
||||
|
||||
---
|
||||
|
||||
 
|
||||
|
||||
### 📝 Memos
|
||||
|
||||
 
|
||||
|
||||
This section does serve for quick memos.
|
||||
|
||||
 
|
||||
|
||||
|
||||
%% --- %%
|
||||
 
|
||||
|
||||
---
|
||||
|
||||
 
|
||||
|
||||
### 🗒 Notes
|
||||
|
||||
 
|
||||
|
||||
🍽: [[Beef Noodles with Beans]]
|
||||
|
||||
 
|
||||
|
||||
---
|
||||
|
||||
 
|
||||
|
||||
### :link: Linked activity
|
||||
|
||||
 
|
||||
|
||||
```dataview
|
||||
Table from [[2023-05-14]]
|
||||
```
|
||||
|
||||
 
|
||||
 
|
@ -0,0 +1,134 @@
|
||||
---
|
||||
|
||||
title: "🗒 Daily Note"
|
||||
allDay: true
|
||||
date: 2023-05-15
|
||||
Date: 2023-05-15
|
||||
DocType: Note
|
||||
Hierarchy:
|
||||
TimeStamp:
|
||||
location:
|
||||
CollapseMetaTable: true
|
||||
Sleep: 7
|
||||
Happiness: 75
|
||||
Gratefulness: 90
|
||||
Stress: 27.5
|
||||
FrontHeadBar: 5
|
||||
EarHeadBar: 35
|
||||
BackHeadBar: 20
|
||||
Water: 2.91
|
||||
Coffee: 0
|
||||
Steps: 14546
|
||||
Weight:
|
||||
Ski:
|
||||
IceSkating:
|
||||
Riding:
|
||||
Racket:
|
||||
Football:
|
||||
Swim:
|
||||
|
||||
---
|
||||
|
||||
%% Parent:: [[@Life Admin]] %%
|
||||
|
||||
---
|
||||
|
||||
[[2023-05-14|<< 🗓 Previous ]]       [[@Main Dashboard|Back]]       [[2023-05-16|🗓 Next >>]]
|
||||
|
||||
---
|
||||
|
||||
 
|
||||
|
||||
```button
|
||||
name Record today's health
|
||||
type command
|
||||
action MetaEdit: Run MetaEdit
|
||||
id EditMetaData
|
||||
```
|
||||
^button-2023-05-15Edit
|
||||
|
||||
```button
|
||||
name Save
|
||||
type command
|
||||
action Save current file
|
||||
id Save
|
||||
```
|
||||
^button-2023-05-15NSave
|
||||
|
||||
 
|
||||
|
||||
# 2023-05-15
|
||||
|
||||
 
|
||||
|
||||
> [!summary]+
|
||||
> Daily note for 2023-05-15
|
||||
|
||||
 
|
||||
|
||||
```toc
|
||||
style: number
|
||||
```
|
||||
|
||||
 
|
||||
|
||||
---
|
||||
|
||||
 
|
||||
|
||||
### ✅ Tasks of the day
|
||||
|
||||
 
|
||||
|
||||
```tasks
|
||||
not done
|
||||
due on 2023-05-15
|
||||
path does not include Templates
|
||||
hide backlinks
|
||||
hide task count
|
||||
```
|
||||
|
||||
 
|
||||
|
||||
---
|
||||
|
||||
 
|
||||
|
||||
### 📝 Memos
|
||||
|
||||
 
|
||||
|
||||
This section does serve for quick memos.
|
||||
|
||||
 
|
||||
|
||||
|
||||
%% --- %%
|
||||
 
|
||||
|
||||
---
|
||||
|
||||
 
|
||||
|
||||
### 🗒 Notes
|
||||
|
||||
 
|
||||
|
||||
Loret ipsum
|
||||
|
||||
 
|
||||
|
||||
---
|
||||
|
||||
 
|
||||
|
||||
### :link: Linked activity
|
||||
|
||||
 
|
||||
|
||||
```dataview
|
||||
Table from [[2023-05-15]]
|
||||
```
|
||||
|
||||
 
|
||||
 
|
@ -0,0 +1,134 @@
|
||||
---
|
||||
|
||||
title: "🗒 Daily Note"
|
||||
allDay: true
|
||||
date: 2023-05-16
|
||||
Date: 2023-05-16
|
||||
DocType: Note
|
||||
Hierarchy:
|
||||
TimeStamp:
|
||||
location:
|
||||
CollapseMetaTable: true
|
||||
Sleep: 8
|
||||
Happiness: 80
|
||||
Gratefulness: 90
|
||||
Stress: 27.5
|
||||
FrontHeadBar: 5
|
||||
EarHeadBar: 35
|
||||
BackHeadBar: 20
|
||||
Water: 3.75
|
||||
Coffee: 4
|
||||
Steps: 11841
|
||||
Weight: 93.5
|
||||
Ski:
|
||||
IceSkating:
|
||||
Riding:
|
||||
Racket:
|
||||
Football:
|
||||
Swim:
|
||||
|
||||
---
|
||||
|
||||
%% Parent:: [[@Life Admin]] %%
|
||||
|
||||
---
|
||||
|
||||
[[2023-05-15|<< 🗓 Previous ]]       [[@Main Dashboard|Back]]       [[2023-05-17|🗓 Next >>]]
|
||||
|
||||
---
|
||||
|
||||
 
|
||||
|
||||
```button
|
||||
name Record today's health
|
||||
type command
|
||||
action MetaEdit: Run MetaEdit
|
||||
id EditMetaData
|
||||
```
|
||||
^button-2023-05-16Edit
|
||||
|
||||
```button
|
||||
name Save
|
||||
type command
|
||||
action Save current file
|
||||
id Save
|
||||
```
|
||||
^button-2023-05-16NSave
|
||||
|
||||
 
|
||||
|
||||
# 2023-05-16
|
||||
|
||||
 
|
||||
|
||||
> [!summary]+
|
||||
> Daily note for 2023-05-16
|
||||
|
||||
 
|
||||
|
||||
```toc
|
||||
style: number
|
||||
```
|
||||
|
||||
 
|
||||
|
||||
---
|
||||
|
||||
 
|
||||
|
||||
### ✅ Tasks of the day
|
||||
|
||||
 
|
||||
|
||||
```tasks
|
||||
not done
|
||||
due on 2023-05-16
|
||||
path does not include Templates
|
||||
hide backlinks
|
||||
hide task count
|
||||
```
|
||||
|
||||
 
|
||||
|
||||
---
|
||||
|
||||
 
|
||||
|
||||
### 📝 Memos
|
||||
|
||||
 
|
||||
|
||||
This section does serve for quick memos.
|
||||
|
||||
 
|
||||
|
||||
|
||||
%% --- %%
|
||||
 
|
||||
|
||||
---
|
||||
|
||||
 
|
||||
|
||||
### 🗒 Notes
|
||||
|
||||
 
|
||||
|
||||
Loret ipsum
|
||||
|
||||
 
|
||||
|
||||
---
|
||||
|
||||
 
|
||||
|
||||
### :link: Linked activity
|
||||
|
||||
 
|
||||
|
||||
```dataview
|
||||
Table from [[2023-05-16]]
|
||||
```
|
||||
|
||||
 
|
||||
 
|
@ -0,0 +1,136 @@
|
||||
---
|
||||
|
||||
title: "🗒 Daily Note"
|
||||
allDay: true
|
||||
date: 2023-05-17
|
||||
Date: 2023-05-17
|
||||
DocType: Note
|
||||
Hierarchy:
|
||||
TimeStamp:
|
||||
location:
|
||||
CollapseMetaTable: true
|
||||
Sleep: 7.5
|
||||
Happiness: 80
|
||||
Gratefulness: 90
|
||||
Stress: 27.5
|
||||
FrontHeadBar: 5
|
||||
EarHeadBar: 35
|
||||
BackHeadBar: 20
|
||||
Water: 3.66
|
||||
Coffee: 4
|
||||
Steps: 14549
|
||||
Weight:
|
||||
Ski:
|
||||
IceSkating:
|
||||
Riding:
|
||||
Racket:
|
||||
Football:
|
||||
Swim:
|
||||
|
||||
---
|
||||
|
||||
%% Parent:: [[@Life Admin]] %%
|
||||
|
||||
---
|
||||
|
||||
[[2023-05-16|<< 🗓 Previous ]]       [[@Main Dashboard|Back]]       [[2023-05-18|🗓 Next >>]]
|
||||
|
||||
---
|
||||
|
||||
 
|
||||
|
||||
```button
|
||||
name Record today's health
|
||||
type command
|
||||
action MetaEdit: Run MetaEdit
|
||||
id EditMetaData
|
||||
```
|
||||
^button-2023-05-17Edit
|
||||
|
||||
```button
|
||||
name Save
|
||||
type command
|
||||
action Save current file
|
||||
id Save
|
||||
```
|
||||
^button-2023-05-17NSave
|
||||
|
||||
 
|
||||
|
||||
# 2023-05-17
|
||||
|
||||
 
|
||||
|
||||
> [!summary]+
|
||||
> Daily note for 2023-05-17
|
||||
|
||||
 
|
||||
|
||||
```toc
|
||||
style: number
|
||||
```
|
||||
|
||||
 
|
||||
|
||||
---
|
||||
|
||||
 
|
||||
|
||||
### ✅ Tasks of the day
|
||||
|
||||
 
|
||||
|
||||
```tasks
|
||||
not done
|
||||
due on 2023-05-17
|
||||
path does not include Templates
|
||||
hide backlinks
|
||||
hide task count
|
||||
```
|
||||
|
||||
 
|
||||
|
||||
---
|
||||
|
||||
 
|
||||
|
||||
### 📝 Memos
|
||||
|
||||
 
|
||||
|
||||
This section does serve for quick memos.
|
||||
|
||||
 
|
||||
|
||||
|
||||
%% --- %%
|
||||
 
|
||||
|
||||
---
|
||||
|
||||
 
|
||||
|
||||
### 🗒 Notes
|
||||
|
||||
 
|
||||
|
||||
🍴: [[Korean Barbecue-Style Meatballs]]
|
||||
|
||||
🍽: [[Spicy Szechuan Noodles with Garlic Chilli Oil]]
|
||||
|
||||
 
|
||||
|
||||
---
|
||||
|
||||
 
|
||||
|
||||
### :link: Linked activity
|
||||
|
||||
 
|
||||
|
||||
```dataview
|
||||
Table from [[2023-05-17]]
|
||||
```
|
||||
|
||||
 
|
||||
 
|
@ -0,0 +1,134 @@
|
||||
---
|
||||
|
||||
title: "🗒 Daily Note"
|
||||
allDay: true
|
||||
date: 2023-05-18
|
||||
Date: 2023-05-18
|
||||
DocType: Note
|
||||
Hierarchy:
|
||||
TimeStamp:
|
||||
location:
|
||||
CollapseMetaTable: true
|
||||
Sleep: 9
|
||||
Happiness: 80
|
||||
Gratefulness: 90
|
||||
Stress: 27.5
|
||||
FrontHeadBar: 5
|
||||
EarHeadBar: 35
|
||||
BackHeadBar: 20
|
||||
Water: 3.83
|
||||
Coffee: 0
|
||||
Steps: 5004
|
||||
Weight:
|
||||
Ski:
|
||||
IceSkating:
|
||||
Riding: 1
|
||||
Racket:
|
||||
Football:
|
||||
Swim:
|
||||
|
||||
---
|
||||
|
||||
%% Parent:: [[@Life Admin]] %%
|
||||
|
||||
---
|
||||
|
||||
[[2023-05-17|<< 🗓 Previous ]]       [[@Main Dashboard|Back]]       [[2023-05-19|🗓 Next >>]]
|
||||
|
||||
---
|
||||
|
||||
 
|
||||
|
||||
```button
|
||||
name Record today's health
|
||||
type command
|
||||
action MetaEdit: Run MetaEdit
|
||||
id EditMetaData
|
||||
```
|
||||
^button-2023-05-18Edit
|
||||
|
||||
```button
|
||||
name Save
|
||||
type command
|
||||
action Save current file
|
||||
id Save
|
||||
```
|
||||
^button-2023-05-18NSave
|
||||
|
||||
 
|
||||
|
||||
# 2023-05-18
|
||||
|
||||
 
|
||||
|
||||
> [!summary]+
|
||||
> Daily note for 2023-05-18
|
||||
|
||||
 
|
||||
|
||||
```toc
|
||||
style: number
|
||||
```
|
||||
|
||||
 
|
||||
|
||||
---
|
||||
|
||||
 
|
||||
|
||||
### ✅ Tasks of the day
|
||||
|
||||
 
|
||||
|
||||
```tasks
|
||||
not done
|
||||
due on 2023-05-18
|
||||
path does not include Templates
|
||||
hide backlinks
|
||||
hide task count
|
||||
```
|
||||
|
||||
 
|
||||
|
||||
---
|
||||
|
||||
 
|
||||
|
||||
### 📝 Memos
|
||||
|
||||
 
|
||||
|
||||
This section does serve for quick memos.
|
||||
|
||||
 
|
||||
|
||||
|
||||
%% --- %%
|
||||
 
|
||||
|
||||
---
|
||||
|
||||
 
|
||||
|
||||
### 🗒 Notes
|
||||
|
||||
 
|
||||
|
||||
🍴: [[Beef Noodles with Beans]]
|
||||
|
||||
 
|
||||
|
||||
---
|
||||
|
||||
 
|
||||
|
||||
### :link: Linked activity
|
||||
|
||||
 
|
||||
|
||||
```dataview
|
||||
Table from [[2023-05-18]]
|
||||
```
|
||||
|
||||
 
|
||||
 
|
@ -0,0 +1,134 @@
|
||||
---
|
||||
|
||||
title: "🗒 Daily Note"
|
||||
allDay: true
|
||||
date: 2023-05-19
|
||||
Date: 2023-05-19
|
||||
DocType: Note
|
||||
Hierarchy:
|
||||
TimeStamp:
|
||||
location:
|
||||
CollapseMetaTable: true
|
||||
Sleep: 7.5
|
||||
Happiness: 80
|
||||
Gratefulness: 90
|
||||
Stress: 27.5
|
||||
FrontHeadBar: 5
|
||||
EarHeadBar: 35
|
||||
BackHeadBar: 20
|
||||
Water: 2.56
|
||||
Coffee: 4
|
||||
Steps: 12343
|
||||
Weight:
|
||||
Ski:
|
||||
IceSkating:
|
||||
Riding:
|
||||
Racket:
|
||||
Football:
|
||||
Swim:
|
||||
|
||||
---
|
||||
|
||||
%% Parent:: [[@Life Admin]] %%
|
||||
|
||||
---
|
||||
|
||||
[[2023-05-18|<< 🗓 Previous ]]       [[@Main Dashboard|Back]]       [[2023-05-20|🗓 Next >>]]
|
||||
|
||||
---
|
||||
|
||||
 
|
||||
|
||||
```button
|
||||
name Record today's health
|
||||
type command
|
||||
action MetaEdit: Run MetaEdit
|
||||
id EditMetaData
|
||||
```
|
||||
^button-2023-05-19Edit
|
||||
|
||||
```button
|
||||
name Save
|
||||
type command
|
||||
action Save current file
|
||||
id Save
|
||||
```
|
||||
^button-2023-05-19NSave
|
||||
|
||||
 
|
||||
|
||||
# 2023-05-19
|
||||
|
||||
 
|
||||
|
||||
> [!summary]+
|
||||
> Daily note for 2023-05-19
|
||||
|
||||
 
|
||||
|
||||
```toc
|
||||
style: number
|
||||
```
|
||||
|
||||
 
|
||||
|
||||
---
|
||||
|
||||
 
|
||||
|
||||
### ✅ Tasks of the day
|
||||
|
||||
 
|
||||
|
||||
```tasks
|
||||
not done
|
||||
due on 2023-05-19
|
||||
path does not include Templates
|
||||
hide backlinks
|
||||
hide task count
|
||||
```
|
||||
|
||||
 
|
||||
|
||||
---
|
||||
|
||||
 
|
||||
|
||||
### 📝 Memos
|
||||
|
||||
 
|
||||
|
||||
This section does serve for quick memos.
|
||||
|
||||
 
|
||||
|
||||
|
||||
%% --- %%
|
||||
 
|
||||
|
||||
---
|
||||
|
||||
 
|
||||
|
||||
### 🗒 Notes
|
||||
|
||||
 
|
||||
|
||||
🚆: [[@@Zürich|Zürich]] to [[@@Paris|Paris]]
|
||||
|
||||
 
|
||||
|
||||
---
|
||||
|
||||
 
|
||||
|
||||
### :link: Linked activity
|
||||
|
||||
 
|
||||
|
||||
```dataview
|
||||
Table from [[2023-05-19]]
|
||||
```
|
||||
|
||||
 
|
||||
 
|
Some files were not shown because too many files have changed in this diff Show More
Loading…
Reference in new issue