health init

main
iOS 2 years ago
parent c3220876ee
commit d0d9c35ae8

@ -67,5 +67,7 @@
"obsidian-open-weather", "obsidian-open-weather",
"obsidian-bulk-rename-plugin", "obsidian-bulk-rename-plugin",
"recent-files-obsidian", "recent-files-obsidian",
"msg-handler" "msg-handler",
"pdf-to-markdown-plugin",
"obsidian-timelines"
] ]

@ -95,6 +95,6 @@
"repelStrength": 10, "repelStrength": 10,
"linkStrength": 1, "linkStrength": 1,
"linkDistance": 250, "linkDistance": 250,
"scale": 0.16320109676838637, "scale": 0.28688258799735933,
"close": true "close": true
} }

@ -4,13 +4,14 @@
"historyPriority": true, "historyPriority": true,
"historyLimit": 100, "historyLimit": 100,
"history": [ "history": [
":plate_with_cutlery:",
":warning:",
":book:",
":musical_score:", ":musical_score:",
":tv:", ":tv:",
":clapper:", ":clapper:",
":soccer:", ":soccer:",
":plate_with_cutlery:",
":car:", ":car:",
":book:",
":crocodile:", ":crocodile:",
":ferris_wheel:", ":ferris_wheel:",
":cake:", ":cake:",

@ -1,72 +0,0 @@
/*
THIS IS A GENERATED/BUNDLED FILE BY ESBUILD
if you want to view the source, please visit the github repository of this plugin
*/
var __defProp = Object.defineProperty;
var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
var __getOwnPropNames = Object.getOwnPropertyNames;
var __hasOwnProp = Object.prototype.hasOwnProperty;
var __export = (target, all) => {
for (var name in all)
__defProp(target, name, { get: all[name], enumerable: true });
};
var __copyProps = (to, from, except, desc) => {
if (from && typeof from === "object" || typeof from === "function") {
for (let key of __getOwnPropNames(from))
if (!__hasOwnProp.call(to, key) && key !== except)
__defProp(to, key, { get: () => from[key], enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable });
}
return to;
};
var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: true }), mod);
// main.ts
var main_exports = {};
__export(main_exports, {
default: () => ListStylePlugin
});
module.exports = __toCommonJS(main_exports);
var import_obsidian = require("obsidian");
var shorthand = {
I: "upper-roman",
i: "lower-roman",
A: "upper-alpha",
a: "lower-alpha",
"01": "decimal-leading-zero",
"1": "decimal"
};
var STYLE_MATCHER = /^\s*\{([A-Za-z-0-9]+)\}\s*/;
var ListStylePlugin = class extends import_obsidian.Plugin {
async onload() {
this.registerMarkdownPostProcessor((el) => {
el.querySelectorAll("ol").forEach((list) => {
const firstText = getFirstTextNode(list.querySelector("li"));
let match;
if (firstText && firstText.textContent && (match = firstText.textContent.match(STYLE_MATCHER))) {
if (shorthand[match[1]]) {
list.style.listStyleType = shorthand[match[1]];
} else {
list.style.listStyleType = match[1];
}
firstText.textContent = firstText.textContent.slice(match[0].length);
}
});
});
}
};
function getFirstTextNode(node) {
if (node == null)
return null;
for (let i = 0; i < node.childNodes.length; i++) {
if (node.childNodes[i].nodeType == Node.TEXT_NODE) {
return node.childNodes[i];
} else if (node.childNodes[i].hasChildNodes()) {
const childText = getFirstTextNode(node.childNodes[i]);
if (childText) {
return childText;
}
}
}
return null;
}

@ -1,10 +0,0 @@
{
"id": "list-style",
"name": "Ordered List Style",
"version": "0.1.0",
"minAppVersion": "1.0.0",
"description": "Set ordered list style inline in Obsidian.md. Alphabetic lists, roman numeral lists, etc.",
"author": "Eric Rykwalder",
"authorUrl": "https://github.com/erykwalder/obsidian-list-style",
"isDesktopOnly": false
}

File diff suppressed because it is too large Load Diff

@ -1,10 +0,0 @@
{
"id": "markdown-table-editor",
"name": "Markdown Table Editor",
"version": "0.3.1",
"minAppVersion": "0.12.0",
"description": "An Obsidian plugin to provide an editor for Markdown tables. It can open CSV, Microsoft Excel/Google Sheets data as Markdown tables from Obsidian Markdown editor.",
"author": "Ganessh Kumar R P <rpganesshkumar@gmail.com>",
"authorUrl": "https://ganesshkumar.com",
"isDesktopOnly": false
}

@ -1,65 +0,0 @@
/* Disabling the color as it makes the text non-readable in dark theme */
/* .mte > button {
background-color: lightgray;
} */
.button-container.mte {
margin: 10pt 0;
}
.button-container.mte > input {
max-width: 100pt;
margin: 5pt 10pt;
}
.grid.mte {
display: grid;
width: fit-content;
margin-top: 5px;
border-right: 1px solid;
border-top: 1px solid;
}
.grid.mte > .cell-container.mte > .cell.mte {
padding: 8px 4px;
}
.grid.mte > .cell-container.mte {
display: flex;
border-left: 1px solid;
border-bottom: 1px solid;
}
/* Disabling the color as it makes the text non-readable in dark theme */
/*
.grid.mte > .cell-container.mte.header {
background-color: lightgray;
} */
.grid.mte > .cell-container.mte > .cell.mte {
min-width: 100pt;
max-width: 250pt;
padding-left: 10pt;
padding-right: 20pt;
width: 100%;
}
.relative.mte {
position: relative;
}
.mte > .absolute {
cursor: pointer;
position: absolute;
right: 0;
top: 25%;
}
.mte > .display-block {
display: block;
}
.mte > .display-none {
display: none;
}

File diff suppressed because one or more lines are too long

@ -1,9 +0,0 @@
{
"id": "mrj-text-expand",
"name": "Text expand",
"version": "0.11.2",
"description": "Search and paste/transclude links to located files.",
"isDesktopOnly": false,
"author": "MrJackphil",
"authorUrl": "https://mrjackphil.com"
}

File diff suppressed because one or more lines are too long

@ -1,11 +0,0 @@
{
"id": "multi-column-markdown",
"name": "Multi-Column Markdown",
"version": "0.7.7",
"minAppVersion": "1.0.3",
"description": "This plugin adds functionality to create markdown documents with multiple columns of content viewable within Obsidian's preview mode",
"author": "Cameron Robinson",
"fundingUrl": "https://www.buymeacoffee.com/ckrobinson",
"authorUrl": "https://portfolio.ckrobinson.net",
"isDesktopOnly": false
}

@ -1,175 +0,0 @@
.mcm-single-column-layout-left {
left: 10px;
}
.mcm-single-column-layout-right {
right: 10px;
}
.mcm-single-column-small {
width: 25%;
}
.mcm-single-column-medium {
width: 50%;
}
.mcm-single-column-large {
width: 75%;
}
.mcm-single-column-full {
width: 100%;
}
/* ----------------------------------- */
.mcm-singlecol-layout-right {
justify-content: right;
}
.mcm-singlecol-layout-left {
justify-content: left;
}
.mcm-singlecol-layout-center {
justify-content: center;
}
/* ----------------------------------- */
.mcm-column-spacer {
margin-inline: 0.25%;
}
/* ----------------------------------- */
.mcm-two-equal-columns {
width: 49.75%;
}
.mcm-two-column-large {
width: 66.75%;
}
.mcm-two-column-small {
width: 32.75%;
}
/* ----------------------------------- */
.mcm-three-equal-columns {
width: 32.75%;
}
/* ----------------------------------- */
.mcm-three-column-large {
width: 49.75%;
}
.mcm-three-column-small {
width: 24.5%;
}
/* ----------------------------------- */
.mcm-column-div {
padding-inline: 10px;
}
.mcm-column-border {
border: grey;
border-style: solid;
border-width: 0.5px;
}
.mcm-column-shadow {
box-shadow: 0 0.2rem 0.5rem var(--background-modifier-box-shadow);
}
.mcm-column-error-message {
margin-bottom: 10px;
color: var(--text-error);
text-align: center;
}
.mcm-error-message-color {
color: var(--text-error);
}
.mcm-column-root-container {
margin: 1.5625em 0;
}
.mcm-column-parent-container {
padding: 0;
overflow: hidden;
color: var(--text-normal);
page-break-inside: avoid;
border-radius: 0.1rem;
display:flex;
flex-direction:row;
}
.mcm-region-shadow {
box-shadow: 0 0.2rem 0.5rem var(--background-modifier-box-shadow);
}
.mcm-column-end-tag-wrapper,
.mcm-column-break-tag-wrapper,
.mcm-column-settings-wrapper,
.mcm-column-content-wrapper {
opacity: 0;
}
.mcm-column-div .mcm-column-content-wrapper {
opacity: 100;
}
.markdown-preview-section > .mcm-column-content-wrapper,
.mcm-column-break-tag-wrapper,
.mcm-column-end-tag-wrapper,
.mcm-column-settings-wrapper {
height: 0px !important;
overflow: hidden;
}
.mcm-original-column-element + .mcm-cloned-column-element {
display: none;
}
.mcm-cm-preview {
line-height: var(--lh);
white-space: normal;
word-break: keep-all;
word-wrap: normal;
}
.mcm-col-settings-preview {
color: var(--text-normal);
}
.cm-preview-code-block.preivew-mcm-start-block {
height: 0pt !important;
padding: 0pt !important;
}
.mcm-content-overflow-hidden {
overflow-x: hidden;
}
.mcm-content-overflow-auto-scroll {
overflow-x: auto;
}
.mcm-content-alignment-left {
text-align: left;
}
.mcm-content-alignment-center {
text-align: center;
}
.mcm-content-alignment-right {
text-align: right;
}
.mcm-span-content-alignment-center {
display: block;
text-align: center;
}

@ -12,8 +12,8 @@
"checkpointList": [ "checkpointList": [
{ {
"path": "/", "path": "/",
"date": "2023-03-05", "date": "2023-03-06",
"size": 13590463 "size": 13597463
} }
], ],
"activityHistory": [ "activityHistory": [
@ -1699,6 +1699,10 @@
{ {
"date": "2023-03-05", "date": "2023-03-05",
"value": 236961 "value": 236961
},
{
"date": "2023-03-06",
"value": 9236
} }
] ]
} }

@ -1424,11 +1424,6 @@
"tags": 2, "tags": 2,
"links": 0 "links": 0
}, },
"00.02 Inbox/Under the Volcano.md": {
"size": 1070,
"tags": 4,
"links": 1
},
"00.02 Inbox/Torto Arado.md": { "00.02 Inbox/Torto Arado.md": {
"size": 1465, "size": 1465,
"tags": 3, "tags": 3,
@ -1585,7 +1580,7 @@
"links": 1 "links": 1
}, },
"01.02 Home/Household.md": { "01.02 Home/Household.md": {
"size": 3335, "size": 3715,
"tags": 2, "tags": 2,
"links": 2 "links": 2
}, },
@ -8449,11 +8444,6 @@
"tags": 3, "tags": 3,
"links": 2 "links": 2
}, },
"00.01 Admin/Calendars/Events/2023-03-09 🩺 Médecin.md": {
"size": 103,
"tags": 0,
"links": 0
},
"00.01 Admin/Calendars/Events/2023-03-11 Marg & Arnold à Zürich.md": { "00.01 Admin/Calendars/Events/2023-03-11 Marg & Arnold à Zürich.md": {
"size": 297, "size": 297,
"tags": 0, "tags": 0,
@ -8464,11 +8454,6 @@
"tags": 0, "tags": 0,
"links": 6 "links": 6
}, },
"02.03 Zürich/Dr A Abuawad.md": {
"size": 1411,
"tags": 3,
"links": 1
},
"03.04 Cinematheque/Citizen Kane (1941).md": { "03.04 Cinematheque/Citizen Kane (1941).md": {
"size": 2054, "size": 2054,
"tags": 0, "tags": 0,
@ -8550,9 +8535,9 @@
"links": 4 "links": 4
}, },
"00.01 Admin/Calendars/Events/2023-03-06 Médecin.md": { "00.01 Admin/Calendars/Events/2023-03-06 Médecin.md": {
"size": 134, "size": 184,
"tags": 0, "tags": 0,
"links": 0 "links": 2
}, },
"00.01 Admin/Calendars/2023-03-01.md": { "00.01 Admin/Calendars/2023-03-01.md": {
"size": 1412, "size": 1412,
@ -8644,11 +8629,6 @@
"tags": 0, "tags": 0,
"links": 2 "links": 2
}, },
"00.02 Inbox/Say Nothing.md": {
"size": 1129,
"tags": 3,
"links": 2
},
"02.02 Paris/Andy Wahlou.md": { "02.02 Paris/Andy Wahlou.md": {
"size": 1005, "size": 1005,
"tags": 1, "tags": 1,
@ -8692,7 +8672,7 @@
"00.03 News/US-China 1MDB Scandal Pits FBI Against Former Fugee Pras Michel.md": { "00.03 News/US-China 1MDB Scandal Pits FBI Against Former Fugee Pras Michel.md": {
"size": 45813, "size": 45813,
"tags": 5, "tags": 5,
"links": 1 "links": 2
}, },
"05.01 Computer setup/Metamask.md": { "05.01 Computer setup/Metamask.md": {
"size": 1472, "size": 1472,
@ -8703,14 +8683,69 @@
"size": 4678, "size": 4678,
"tags": 5, "tags": 5,
"links": 3 "links": 3
},
"00.01 Admin/Calendars/2023-03-06.md": {
"size": 1412,
"tags": 0,
"links": 7
},
"03.01 Reading list/Under the Volcano.md": {
"size": 1070,
"tags": 4,
"links": 2
},
"00.02 Inbox/The Power And The Glory.md": {
"size": 1010,
"tags": 0,
"links": 1
},
"02.03 Zürich/Dr Awad Abuawad.md": {
"size": 1553,
"tags": 3,
"links": 1
},
"00.01 Admin/Templates/Template Timeline.md": {
"size": 671,
"tags": 1,
"links": 1
},
"01.06 Health/@Health.md": {
"size": 538,
"tags": 3,
"links": 1
},
"00.01 Admin/Calendars/Events/2023-03-09 Médecin.md": {
"size": 103,
"tags": 0,
"links": 0
},
"01.06 Health/2023-01-23 Checkup.md": {
"size": 817,
"tags": 2,
"links": 3
},
"01.06 Health/2021-10-10 Checkup.md": {
"size": 621,
"tags": 2,
"links": 1
},
"01.06 Health/2023-02-24 Kidney inflammation.md": {
"size": 887,
"tags": 2,
"links": 4
},
"02.03 Zürich/Portofino am See.md": {
"size": 1557,
"tags": 2,
"links": 2
} }
}, },
"commitTypes": { "commitTypes": {
"/": { "/": {
"Refactor": 2673, "Refactor": 2690,
"Create": 1539, "Create": 1547,
"Link": 3720, "Link": 3743,
"Expand": 1534 "Expand": 1547
} }
}, },
"dailyCommits": { "dailyCommits": {
@ -8722,20 +8757,20 @@
"4": 17, "4": 17,
"5": 13, "5": 13,
"6": 59, "6": 59,
"7": 536, "7": 537,
"8": 762, "8": 763,
"9": 664, "9": 667,
"10": 483, "10": 484,
"11": 385, "11": 385,
"12": 340, "12": 344,
"13": 407, "13": 407,
"14": 392, "14": 394,
"15": 404, "15": 406,
"16": 499, "16": 518,
"17": 537, "17": 558,
"18": 744, "18": 745,
"19": 461, "19": 462,
"20": 435, "20": 440,
"21": 429, "21": 429,
"22": 426, "22": 426,
"23": 1229 "23": 1229
@ -8743,7 +8778,7 @@
}, },
"weeklyCommits": { "weeklyCommits": {
"/": { "/": {
"Mon": 2163, "Mon": 2224,
"Tue": 1223, "Tue": 1223,
"Wed": 1148, "Wed": 1148,
"Thu": 815, "Thu": 815,
@ -8755,6 +8790,19 @@
"recentCommits": { "recentCommits": {
"/": { "/": {
"Expanded": [ "Expanded": [
"<a class=\"internal-link\" href=\"00.02 Inbox/Portofino am See.md\"> Portofino am See </a>",
"<a class=\"internal-link\" href=\"01.02 Home/Household.md\"> Household </a>",
"<a class=\"internal-link\" href=\"00.02 Inbox/2023-02-24 Kidney inflammation.md\"> 2023-02-24 Kidney inflammation </a>",
"<a class=\"internal-link\" href=\"00.02 Inbox/2023-02-24 Kidney inflammation.md\"> 2023-02-24 Kidney inflammation </a>",
"<a class=\"internal-link\" href=\"01.06 Health/2023-01-23 Checkup.md\"> 2023-01-23 Checkup </a>",
"<a class=\"internal-link\" href=\"00.02 Inbox/Checkup.md\"> Checkup </a>",
"<a class=\"internal-link\" href=\"00.02 Inbox/Checkup.md\"> Checkup </a>",
"<a class=\"internal-link\" href=\"00.01 Admin/Templates/Template Timeline.md\"> Template Timeline </a>",
"<a class=\"internal-link\" href=\"00.02 Inbox/Checkup.md\"> Checkup </a>",
"<a class=\"internal-link\" href=\"01.02 Home/Health.md\"> Health </a>",
"<a class=\"internal-link\" href=\"02.03 Zürich/Dr Awad Abuawad.md\"> Dr Awad Abuawad </a>",
"<a class=\"internal-link\" href=\"00.02 Inbox/The Power And The Glory.md\"> The Power And The Glory </a>",
"<a class=\"internal-link\" href=\"00.01 Admin/Calendars/Events/2023-03-06 Médecin.md\"> 2023-03-06 Médecin </a>",
"<a class=\"internal-link\" href=\"00.01 Admin/Calendars/Events/2023-03-04 Diner Baur au Lac.md\"> 2023-03-04 Diner Baur au Lac </a>", "<a class=\"internal-link\" href=\"00.01 Admin/Calendars/Events/2023-03-04 Diner Baur au Lac.md\"> 2023-03-04 Diner Baur au Lac </a>",
"<a class=\"internal-link\" href=\"00.01 Admin/Calendars/2023-03-05.md\"> 2023-03-05 </a>", "<a class=\"internal-link\" href=\"00.01 Admin/Calendars/2023-03-05.md\"> 2023-03-05 </a>",
"<a class=\"internal-link\" href=\"00.01 Admin/Calendars/Events/2023-03-04 Diner Baur au Lac.md\"> 2023-03-04 Diner Baur au Lac </a>", "<a class=\"internal-link\" href=\"00.01 Admin/Calendars/Events/2023-03-04 Diner Baur au Lac.md\"> 2023-03-04 Diner Baur au Lac </a>",
@ -8792,22 +8840,17 @@
"<a class=\"internal-link\" href=\"00.01 Admin/Calendars/Events/2023-02-25 Scan.md\"> 2023-02-25 Scan </a>", "<a class=\"internal-link\" href=\"00.01 Admin/Calendars/Events/2023-02-25 Scan.md\"> 2023-02-25 Scan </a>",
"<a class=\"internal-link\" href=\"00.01 Admin/Calendars/Events/2023-12-27 Miami.md\"> 2023-12-27 Miami </a>", "<a class=\"internal-link\" href=\"00.01 Admin/Calendars/Events/2023-12-27 Miami.md\"> 2023-12-27 Miami </a>",
"<a class=\"internal-link\" href=\"03.02 Travels/Miami.md\"> Miami </a>", "<a class=\"internal-link\" href=\"03.02 Travels/Miami.md\"> Miami </a>",
"<a class=\"internal-link\" href=\"03.02 Travels/Miami.md\"> Miami </a>",
"<a class=\"internal-link\" href=\"00.01 Admin/Calendars/Events/2023-12-27 Miami.md\"> 2023-12-27 Miami </a>",
"<a class=\"internal-link\" href=\"00.01 Admin/Calendars/Events/2023-12-27 Miami.md\"> 2023-12-27 Miami </a>",
"<a class=\"internal-link\" href=\"03.02 Travels/Miami.md\"> Miami </a>",
"<a class=\"internal-link\" href=\"02.03 Zürich/Stamped.md\"> Stamped </a>",
"<a class=\"internal-link\" href=\"01.02 Home/Household.md\"> Household </a>",
"<a class=\"internal-link\" href=\"01.02 Home/Household.md\"> Household </a>",
"<a class=\"internal-link\" href=\"02.03 Zürich/Lily's.md\"> Lily's </a>",
"<a class=\"internal-link\" href=\"00.01 Admin/Calendars/Events/2023-02-19 PSG - Lille.md\"> 2023-02-19 PSG - Lille </a>",
"<a class=\"internal-link\" href=\"00.01 Admin/Calendars/Events/2023-02-19 PSG - Lille.md\"> 2023-02-19 PSG - Lille </a>",
"<a class=\"internal-link\" href=\"00.01 Admin/Calendars/Events/2023-02-19 PSG - Lille.md\"> 2023-02-19 PSG - Lille </a>",
"<a class=\"internal-link\" href=\"00.01 Admin/Calendars/Events/2023-02-19 PSG - Lille.md\"> 2023-02-19 PSG - Lille </a>",
"<a class=\"internal-link\" href=\"00.01 Admin/Calendars/2023-02-18.md\"> 2023-02-18 </a>",
"<a class=\"internal-link\" href=\"03.02 Travels/Miami.md\"> Miami </a>" "<a class=\"internal-link\" href=\"03.02 Travels/Miami.md\"> Miami </a>"
], ],
"Created": [ "Created": [
"<a class=\"internal-link\" href=\"00.02 Inbox/Untitled.md\"> Untitled </a>",
"<a class=\"internal-link\" href=\"00.02 Inbox/Untitled.md\"> Untitled </a>",
"<a class=\"internal-link\" href=\"00.02 Inbox/Untitled.md\"> Untitled </a>",
"<a class=\"internal-link\" href=\"00.02 Inbox/Untitled.md\"> Untitled </a>",
"<a class=\"internal-link\" href=\"00.01 Admin/Templates/Template Note 1.md\"> Template Note 1 </a>",
"<a class=\"internal-link\" href=\"00.02 Inbox/Untitled.md\"> Untitled </a>",
"<a class=\"internal-link\" href=\"00.02 Inbox/The Power And The Glory.md\"> The Power And The Glory </a>",
"<a class=\"internal-link\" href=\"00.01 Admin/Calendars/2023-03-06.md\"> 2023-03-06 </a>",
"<a class=\"internal-link\" href=\"00.02 Inbox/Untitled.md\"> Untitled </a>", "<a class=\"internal-link\" href=\"00.02 Inbox/Untitled.md\"> Untitled </a>",
"<a class=\"internal-link\" href=\"00.02 Inbox/Untitled.md\"> Untitled </a>", "<a class=\"internal-link\" href=\"00.02 Inbox/Untitled.md\"> Untitled </a>",
"<a class=\"internal-link\" href=\"00.02 Inbox/Untitled.md\"> Untitled </a>", "<a class=\"internal-link\" href=\"00.02 Inbox/Untitled.md\"> Untitled </a>",
@ -8850,17 +8893,24 @@
"<a class=\"internal-link\" href=\"00.02 Inbox/The Great Dumpling Drama of Glendale, California.md\"> The Great Dumpling Drama of Glendale, California </a>", "<a class=\"internal-link\" href=\"00.02 Inbox/The Great Dumpling Drama of Glendale, California.md\"> The Great Dumpling Drama of Glendale, California </a>",
"<a class=\"internal-link\" href=\"00.02 Inbox/The Dystopian Underworld of South Africas Illegal Gold Mines.md\"> The Dystopian Underworld of South Africas Illegal Gold Mines </a>", "<a class=\"internal-link\" href=\"00.02 Inbox/The Dystopian Underworld of South Africas Illegal Gold Mines.md\"> The Dystopian Underworld of South Africas Illegal Gold Mines </a>",
"<a class=\"internal-link\" href=\"00.02 Inbox/The Secret Weapons of Ukraine.md\"> The Secret Weapons of Ukraine </a>", "<a class=\"internal-link\" href=\"00.02 Inbox/The Secret Weapons of Ukraine.md\"> The Secret Weapons of Ukraine </a>",
"<a class=\"internal-link\" href=\"00.01 Admin/Calendars/2023-02-26.md\"> 2023-02-26 </a>", "<a class=\"internal-link\" href=\"00.01 Admin/Calendars/2023-02-26.md\"> 2023-02-26 </a>"
"<a class=\"internal-link\" href=\"00.01 Admin/Calendars/Events/2023-06-29 Stefan's birthday weekend.md\"> 2023-06-29 Stefan's birthday weekend </a>",
"<a class=\"internal-link\" href=\"00.02 Inbox/The Tragedy of the Spice King.md\"> The Tragedy of the Spice King </a>",
"<a class=\"internal-link\" href=\"00.01 Admin/Calendars/2023-02-25.md\"> 2023-02-25 </a>",
"<a class=\"internal-link\" href=\"00.02 Inbox/No Country for Old Men (2007).md\"> No Country for Old Men (2007) </a>",
"<a class=\"internal-link\" href=\"00.02 Inbox/Citizen Kane (1941).md\"> Citizen Kane (1941) </a>",
"<a class=\"internal-link\" href=\"00.02 Inbox/Untitled.md\"> Untitled </a>",
"<a class=\"internal-link\" href=\"00.01 Admin/Calendars/Events/2023-03-11 Marg & Arnold à Zürich.md\"> 2023-03-11 Marg & Arnold à Zürich </a>",
"<a class=\"internal-link\" href=\"00.02 Inbox/Call Me a Scammer to My Face.md\"> Call Me a Scammer to My Face </a>"
], ],
"Renamed": [ "Renamed": [
"<a class=\"internal-link\" href=\"02.03 Zürich/Portofino am See.md\"> Portofino am See </a>",
"<a class=\"internal-link\" href=\"01.06 Health/2023-02-24 Kidney inflammation.md\"> 2023-02-24 Kidney inflammation </a>",
"<a class=\"internal-link\" href=\"01.06 Health/2021-10-10 Checkup.md\"> 2021-10-10 Checkup </a>",
"<a class=\"internal-link\" href=\"01.06 Health/2023-01-23 Checkup.md\"> 2023-01-23 Checkup </a>",
"<a class=\"internal-link\" href=\"01.06 Health/2023-01-23 Checkup 1.md\"> 2023-01-23 Checkup 1 </a>",
"<a class=\"internal-link\" href=\"01.06 Health/Checkup 1.md\"> Checkup 1 </a>",
"<a class=\"internal-link\" href=\"00.01 Admin/Calendars/Events/2023-03-09 Médecin.md\"> 2023-03-09 Médecin </a>",
"<a class=\"internal-link\" href=\"01.06 Health/Checkup.md\"> Checkup </a>",
"<a class=\"internal-link\" href=\"01.06 Health/@Health.md\"> @Health </a>",
"<a class=\"internal-link\" href=\"01.06 Health/Health.md\"> Health </a>",
"<a class=\"internal-link\" href=\"00.01 Admin/Templates/Template Timeline.md\"> Template Timeline </a>",
"<a class=\"internal-link\" href=\"00.01 Admin/Templates/Template Timeline1.md\"> Template Timeline1 </a>",
"<a class=\"internal-link\" href=\"01.02 Home/Health.md\"> Health </a>",
"<a class=\"internal-link\" href=\"02.03 Zürich/Dr Awad Abuawad.md\"> Dr Awad Abuawad </a>",
"<a class=\"internal-link\" href=\"03.01 Reading list/Under the Volcano.md\"> Under the Volcano </a>",
"<a class=\"internal-link\" href=\"01.02 Home/Entertainment.md\"> Entertainment </a>", "<a class=\"internal-link\" href=\"01.02 Home/Entertainment.md\"> Entertainment </a>",
"<a class=\"internal-link\" href=\"05.01 Computer setup/Metamask.md\"> Metamask </a>", "<a class=\"internal-link\" href=\"05.01 Computer setup/Metamask.md\"> Metamask </a>",
"<a class=\"internal-link\" href=\"01.02 Home/Sport.md\"> Sport </a>", "<a class=\"internal-link\" href=\"01.02 Home/Sport.md\"> Sport </a>",
@ -8896,24 +8946,16 @@
"<a class=\"internal-link\" href=\"00.01 Admin/Calendars/Events/2023-02-19 PSG - Lille (4-3).md\"> 2023-02-19 PSG - Lille (4-3) </a>", "<a class=\"internal-link\" href=\"00.01 Admin/Calendars/Events/2023-02-19 PSG - Lille (4-3).md\"> 2023-02-19 PSG - Lille (4-3) </a>",
"<a class=\"internal-link\" href=\"00.03 News/Daughter of Malcolm X to sue CIA, FBI and New York City police over his death CBC News.md\"> Daughter of Malcolm X to sue CIA, FBI and New York City police over his death CBC News </a>", "<a class=\"internal-link\" href=\"00.03 News/Daughter of Malcolm X to sue CIA, FBI and New York City police over his death CBC News.md\"> Daughter of Malcolm X to sue CIA, FBI and New York City police over his death CBC News </a>",
"<a class=\"internal-link\" href=\"00.03 News/It Would Have Been Like a Scene From One of My Movies..md\"> It Would Have Been Like a Scene From One of My Movies. </a>", "<a class=\"internal-link\" href=\"00.03 News/It Would Have Been Like a Scene From One of My Movies..md\"> It Would Have Been Like a Scene From One of My Movies. </a>",
"<a class=\"internal-link\" href=\"00.03 News/Who Wants to Be Mayor.md\"> Who Wants to Be Mayor </a>", "<a class=\"internal-link\" href=\"00.03 News/Who Wants to Be Mayor.md\"> Who Wants to Be Mayor </a>"
"<a class=\"internal-link\" href=\"03.04 Cinematheque/Tár (2022).md\"> Tár (2022) </a>",
"<a class=\"internal-link\" href=\"00.03 News/Incredibly intelligent, highly elusive US faces new threat from Canadian super pig.md\"> Incredibly intelligent, highly elusive US faces new threat from Canadian super pig </a>",
"<a class=\"internal-link\" href=\"00.03 News/Discarded Roman artefact may have been more than a good luck charm.md\"> Discarded Roman artefact may have been more than a good luck charm </a>",
"<a class=\"internal-link\" href=\"02.03 Zürich/Stamped.md\"> Stamped </a>",
"<a class=\"internal-link\" href=\"02.03 Zürich/Lily's.md\"> Lily's </a>",
"<a class=\"internal-link\" href=\"00.03 News/Tessa Gourin, Jack Nicholsons Daughter, on Acting and Nepo Baby Discourse.md\"> Tessa Gourin, Jack Nicholsons Daughter, on Acting and Nepo Baby Discourse </a>",
"<a class=\"internal-link\" href=\"03.02 Travels/Miami.md\"> Miami </a>",
"<a class=\"internal-link\" href=\"01.05 Done/2023-12-31 2024 New Year's Eve.md\"> 2023-12-31 2024 New Year's Eve </a>",
"<a class=\"internal-link\" href=\"02.03 Zürich/Lennox.md\"> Lennox </a>",
"<a class=\"internal-link\" href=\"03.03 Food & Wine/Roasted Tomatoes with White Beans.md\"> Roasted Tomatoes with White Beans </a>",
"<a class=\"internal-link\" href=\"00.02 Inbox/Roasted Tomatoes with White Beans.md\"> Roasted Tomatoes with White Beans </a>",
"<a class=\"internal-link\" href=\"03.03 Food & Wine/Lentil Soup with Sausage, Chard and Garlic.md\"> Lentil Soup with Sausage, Chard and Garlic </a>",
"<a class=\"internal-link\" href=\"00.02 Inbox/Lentil Soup with Sausage, Chard and Garlic.md\"> Lentil Soup with Sausage, Chard and Garlic </a>",
"<a class=\"internal-link\" href=\"03.03 Food & Wine/Meatballs with Crispy Turmeric Chickpeas.md\"> Meatballs with Crispy Turmeric Chickpeas </a>",
"<a class=\"internal-link\" href=\"00.02 Inbox/Meatballs with Crispy Turmeric Chickpeas.md\"> Meatballs with Crispy Turmeric Chickpeas </a>"
], ],
"Tagged": [ "Tagged": [
"<a class=\"internal-link\" href=\"00.02 Inbox/Portofino am See.md\"> Portofino am See </a>",
"<a class=\"internal-link\" href=\"00.02 Inbox/2023-02-24 Kidney inflammation.md\"> 2023-02-24 Kidney inflammation </a>",
"<a class=\"internal-link\" href=\"01.06 Health/2023-01-23 Checkup.md\"> 2023-01-23 Checkup </a>",
"<a class=\"internal-link\" href=\"00.02 Inbox/Checkup.md\"> Checkup </a>",
"<a class=\"internal-link\" href=\"00.01 Admin/Templates/Template Timeline.md\"> Template Timeline </a>",
"<a class=\"internal-link\" href=\"01.06 Health/Checkup.md\"> Checkup </a>",
"<a class=\"internal-link\" href=\"01.02 Home/Health.md\"> Health </a>",
"<a class=\"internal-link\" href=\"01.02 Home/Entertainment.md\"> Entertainment </a>", "<a class=\"internal-link\" href=\"01.02 Home/Entertainment.md\"> Entertainment </a>",
"<a class=\"internal-link\" href=\"01.02 Home/Sport.md\"> Sport </a>", "<a class=\"internal-link\" href=\"01.02 Home/Sport.md\"> Sport </a>",
"<a class=\"internal-link\" href=\"00.03 News/US-China 1MDB Scandal Pits FBI Against Former Fugee Pras Michel.md\"> US-China 1MDB Scandal Pits FBI Against Former Fugee Pras Michel </a>", "<a class=\"internal-link\" href=\"00.03 News/US-China 1MDB Scandal Pits FBI Against Former Fugee Pras Michel.md\"> US-China 1MDB Scandal Pits FBI Against Former Fugee Pras Michel </a>",
@ -8957,16 +8999,10 @@
"<a class=\"internal-link\" href=\"00.03 News/Tessa Gourin, Jack Nicholsons Daughter, on Acting and Nepo Baby Discourse.md\"> Tessa Gourin, Jack Nicholsons Daughter, on Acting and Nepo Baby Discourse </a>", "<a class=\"internal-link\" href=\"00.03 News/Tessa Gourin, Jack Nicholsons Daughter, on Acting and Nepo Baby Discourse.md\"> Tessa Gourin, Jack Nicholsons Daughter, on Acting and Nepo Baby Discourse </a>",
"<a class=\"internal-link\" href=\"03.02 Travels/Miami.md\"> Miami </a>", "<a class=\"internal-link\" href=\"03.02 Travels/Miami.md\"> Miami </a>",
"<a class=\"internal-link\" href=\"03.03 Food & Wine/Roasted Tomatoes with White Beans.md\"> Roasted Tomatoes with White Beans </a>", "<a class=\"internal-link\" href=\"03.03 Food & Wine/Roasted Tomatoes with White Beans.md\"> Roasted Tomatoes with White Beans </a>",
"<a class=\"internal-link\" href=\"00.02 Inbox/Roasted Tomatoes with White Beans.md\"> Roasted Tomatoes with White Beans </a>", "<a class=\"internal-link\" href=\"00.02 Inbox/Roasted Tomatoes with White Beans.md\"> Roasted Tomatoes with White Beans </a>"
"<a class=\"internal-link\" href=\"03.03 Food & Wine/Lentil Soup with Sausage, Chard and Garlic.md\"> Lentil Soup with Sausage, Chard and Garlic </a>",
"<a class=\"internal-link\" href=\"03.03 Food & Wine/Meatballs with Crispy Turmeric Chickpeas.md\"> Meatballs with Crispy Turmeric Chickpeas </a>",
"<a class=\"internal-link\" href=\"03.03 Food & Wine/Matar Paneer.md\"> Matar Paneer </a>",
"<a class=\"internal-link\" href=\"03.03 Food & Wine/Cauliflower Salad with Dates and Pistachios.md\"> Cauliflower Salad with Dates and Pistachios </a>",
"<a class=\"internal-link\" href=\"00.02 Inbox/Togetherness.md\"> Togetherness </a>",
"<a class=\"internal-link\" href=\"00.03 News/Crime of the Centuries.md\"> Crime of the Centuries </a>",
"<a class=\"internal-link\" href=\"03.03 Food & Wine/Creamy Mushroom & Rice Soup.md\"> Creamy Mushroom & Rice Soup </a>"
], ],
"Refactored": [ "Refactored": [
"<a class=\"internal-link\" href=\"01.06 Health/@Health.md\"> @Health </a>",
"<a class=\"internal-link\" href=\"03.03 Food & Wine/Japanese Souffle Pancakes.md\"> Japanese Souffle Pancakes </a>", "<a class=\"internal-link\" href=\"03.03 Food & Wine/Japanese Souffle Pancakes.md\"> Japanese Souffle Pancakes </a>",
"<a class=\"internal-link\" href=\"00.02 Inbox/Roasted Tomatoes with White Beans.md\"> Roasted Tomatoes with White Beans </a>", "<a class=\"internal-link\" href=\"00.02 Inbox/Roasted Tomatoes with White Beans.md\"> Roasted Tomatoes with White Beans </a>",
"<a class=\"internal-link\" href=\"00.02 Inbox/Lentil Soup with Sausage, Chard and Garlic.md\"> Lentil Soup with Sausage, Chard and Garlic </a>", "<a class=\"internal-link\" href=\"00.02 Inbox/Lentil Soup with Sausage, Chard and Garlic.md\"> Lentil Soup with Sausage, Chard and Garlic </a>",
@ -9016,10 +9052,10 @@
"<a class=\"internal-link\" href=\"01.02 Home/Zürich - Practical info.md\"> Zürich - Practical info </a>", "<a class=\"internal-link\" href=\"01.02 Home/Zürich - Practical info.md\"> Zürich - Practical info </a>",
"<a class=\"internal-link\" href=\"00.01 Admin/Calendars/2022-09-07.md\"> 2022-09-07 </a>", "<a class=\"internal-link\" href=\"00.01 Admin/Calendars/2022-09-07.md\"> 2022-09-07 </a>",
"<a class=\"internal-link\" href=\"00.01 Admin/Calendars/2022-09-05.md\"> 2022-09-05 </a>", "<a class=\"internal-link\" href=\"00.01 Admin/Calendars/2022-09-05.md\"> 2022-09-05 </a>",
"<a class=\"internal-link\" href=\"00.01 Admin/Test sheet.md\"> Test sheet </a>", "<a class=\"internal-link\" href=\"00.01 Admin/Test sheet.md\"> Test sheet </a>"
"<a class=\"internal-link\" href=\"05.02 Networks/Server Cloud.md\"> Server Cloud </a>"
], ],
"Deleted": [ "Deleted": [
"<a class=\"internal-link\" href=\"00.02 Inbox/Say Nothing.md\"> Say Nothing </a>",
"<a class=\"internal-link\" href=\"01.02 Home/Sport.md\"> Sport </a>", "<a class=\"internal-link\" href=\"01.02 Home/Sport.md\"> Sport </a>",
"<a class=\"internal-link\" href=\"00.02 Inbox/Untitled.md\"> Untitled </a>", "<a class=\"internal-link\" href=\"00.02 Inbox/Untitled.md\"> Untitled </a>",
"<a class=\"internal-link\" href=\"00.01 Admin/Calendars/Events/2023-02-22 A.md\"> 2023-02-22 A </a>", "<a class=\"internal-link\" href=\"00.01 Admin/Calendars/Events/2023-02-22 A.md\"> 2023-02-22 A </a>",
@ -9069,10 +9105,25 @@
"<a class=\"internal-link\" href=\"00.02 Inbox/2022-10-30.md\"> 2022-10-30 </a>", "<a class=\"internal-link\" href=\"00.02 Inbox/2022-10-30.md\"> 2022-10-30 </a>",
"<a class=\"internal-link\" href=\"00.02 Inbox/How a New Anti-Woke Bank Stumbled.md\"> How a New Anti-Woke Bank Stumbled </a>", "<a class=\"internal-link\" href=\"00.02 Inbox/How a New Anti-Woke Bank Stumbled.md\"> How a New Anti-Woke Bank Stumbled </a>",
"<a class=\"internal-link\" href=\"00.02 Inbox/Test note.md\"> Test note </a>", "<a class=\"internal-link\" href=\"00.02 Inbox/Test note.md\"> Test note </a>",
"<a class=\"internal-link\" href=\"Buttons 1.0 is Coming.md\"> Buttons 1.0 is Coming </a>", "<a class=\"internal-link\" href=\"Buttons 1.0 is Coming.md\"> Buttons 1.0 is Coming </a>"
"<a class=\"internal-link\" href=\"00.02 Inbox/Empire of Pain.md\"> Empire of Pain </a>"
], ],
"Linked": [ "Linked": [
"<a class=\"internal-link\" href=\"00.02 Inbox/Portofino am See.md\"> Portofino am See </a>",
"<a class=\"internal-link\" href=\"00.01 Admin/Calendars/2023-03-06.md\"> 2023-03-06 </a>",
"<a class=\"internal-link\" href=\"00.02 Inbox/2023-02-24 Kidney inflammation.md\"> 2023-02-24 Kidney inflammation </a>",
"<a class=\"internal-link\" href=\"00.02 Inbox/2023-02-24 Kidney inflammation.md\"> 2023-02-24 Kidney inflammation </a>",
"<a class=\"internal-link\" href=\"01.06 Health/2023-01-23 Checkup.md\"> 2023-01-23 Checkup </a>",
"<a class=\"internal-link\" href=\"01.06 Health/2023-01-23 Checkup.md\"> 2023-01-23 Checkup </a>",
"<a class=\"internal-link\" href=\"00.02 Inbox/Checkup.md\"> Checkup </a>",
"<a class=\"internal-link\" href=\"00.01 Admin/Templates/Template Timeline.md\"> Template Timeline </a>",
"<a class=\"internal-link\" href=\"00.02 Inbox/Checkup.md\"> Checkup </a>",
"<a class=\"internal-link\" href=\"01.02 Home/Health.md\"> Health </a>",
"<a class=\"internal-link\" href=\"00.02 Inbox/The Power And The Glory.md\"> The Power And The Glory </a>",
"<a class=\"internal-link\" href=\"03.01 Reading list/Under the Volcano.md\"> Under the Volcano </a>",
"<a class=\"internal-link\" href=\"00.03 News/US-China 1MDB Scandal Pits FBI Against Former Fugee Pras Michel.md\"> US-China 1MDB Scandal Pits FBI Against Former Fugee Pras Michel </a>",
"<a class=\"internal-link\" href=\"00.01 Admin/Calendars/2023-03-06.md\"> 2023-03-06 </a>",
"<a class=\"internal-link\" href=\"00.01 Admin/Calendars/Events/2023-03-06 Médecin.md\"> 2023-03-06 Médecin </a>",
"<a class=\"internal-link\" href=\"00.01 Admin/Calendars/2023-03-06.md\"> 2023-03-06 </a>",
"<a class=\"internal-link\" href=\"00.01 Admin/Calendars/Events/2023-03-04 Diner Baur au Lac.md\"> 2023-03-04 Diner Baur au Lac </a>", "<a class=\"internal-link\" href=\"00.01 Admin/Calendars/Events/2023-03-04 Diner Baur au Lac.md\"> 2023-03-04 Diner Baur au Lac </a>",
"<a class=\"internal-link\" href=\"00.01 Admin/Calendars/2023-03-05.md\"> 2023-03-05 </a>", "<a class=\"internal-link\" href=\"00.01 Admin/Calendars/2023-03-05.md\"> 2023-03-05 </a>",
"<a class=\"internal-link\" href=\"01.02 Home/Entertainment.md\"> Entertainment </a>", "<a class=\"internal-link\" href=\"01.02 Home/Entertainment.md\"> Entertainment </a>",
@ -9107,23 +9158,7 @@
"<a class=\"internal-link\" href=\"00.01 Admin/Calendars/2023-03-03.md\"> 2023-03-03 </a>", "<a class=\"internal-link\" href=\"00.01 Admin/Calendars/2023-03-03.md\"> 2023-03-03 </a>",
"<a class=\"internal-link\" href=\"00.02 Inbox/Alluma.md\"> Alluma </a>", "<a class=\"internal-link\" href=\"00.02 Inbox/Alluma.md\"> Alluma </a>",
"<a class=\"internal-link\" href=\"00.03 News/Ian Fishbacks American Nightmare.md\"> Ian Fishbacks American Nightmare </a>", "<a class=\"internal-link\" href=\"00.03 News/Ian Fishbacks American Nightmare.md\"> Ian Fishbacks American Nightmare </a>",
"<a class=\"internal-link\" href=\"00.01 Admin/Calendars/2023-03-02.md\"> 2023-03-02 </a>", "<a class=\"internal-link\" href=\"00.01 Admin/Calendars/2023-03-02.md\"> 2023-03-02 </a>"
"<a class=\"internal-link\" href=\"00.01 Admin/Calendars/2023-03-01.md\"> 2023-03-01 </a>",
"<a class=\"internal-link\" href=\"00.02 Inbox/Tao's.md\"> Tao's </a>",
"<a class=\"internal-link\" href=\"00.03 News/The Secret Weapons of Ukraine.md\"> The Secret Weapons of Ukraine </a>",
"<a class=\"internal-link\" href=\"00.01 Admin/Calendars/2023-03-01.md\"> 2023-03-01 </a>",
"<a class=\"internal-link\" href=\"00.03 News/The Dystopian Underworld of South Africas Illegal Gold Mines.md\"> The Dystopian Underworld of South Africas Illegal Gold Mines </a>",
"<a class=\"internal-link\" href=\"00.01 Admin/Calendars/2023-02-28.md\"> 2023-02-28 </a>",
"<a class=\"internal-link\" href=\"00.01 Admin/Calendars/2023-02-27.md\"> 2023-02-27 </a>",
"<a class=\"internal-link\" href=\"00.03 News/Gary Gensler on Meeting With SBF and His Crypto Crackdown.md\"> Gary Gensler on Meeting With SBF and His Crypto Crackdown </a>",
"<a class=\"internal-link\" href=\"00.03 News/The Tragedy of the Spice King.md\"> The Tragedy of the Spice King </a>",
"<a class=\"internal-link\" href=\"00.01 Admin/Calendars/2023-02-27.md\"> 2023-02-27 </a>",
"<a class=\"internal-link\" href=\"00.03 News/The Great Dumpling Drama of Glendale, California.md\"> The Great Dumpling Drama of Glendale, California </a>",
"<a class=\"internal-link\" href=\"00.01 Admin/Calendars/Events/2023-02-26 OM - PSG.md\"> 2023-02-26 OM - PSG </a>",
"<a class=\"internal-link\" href=\"00.02 Inbox/Pile of Books.md\"> Pile of Books </a>",
"<a class=\"internal-link\" href=\"03.03 Food & Wine/Japanese Souffle Pancakes.md\"> Japanese Souffle Pancakes </a>",
"<a class=\"internal-link\" href=\"00.01 Admin/Calendars/Events/2023-02-26 France - Scotland (32-21).md\"> 2023-02-26 France - Scotland (32-21) </a>",
"<a class=\"internal-link\" href=\"00.01 Admin/Calendars/Events/2023-02-26 France - Scotland.md\"> 2023-02-26 France - Scotland </a>"
], ],
"Removed Tags from": [ "Removed Tags from": [
"<a class=\"internal-link\" href=\"00.03 News/Incredibly intelligent, highly elusive US faces new threat from Canadian super pig.md\"> Incredibly intelligent, highly elusive US faces new threat from Canadian super pig </a>", "<a class=\"internal-link\" href=\"00.03 News/Incredibly intelligent, highly elusive US faces new threat from Canadian super pig.md\"> Incredibly intelligent, highly elusive US faces new threat from Canadian super pig </a>",

@ -356,15 +356,10 @@
} }
], ],
"01.02 Home/Household.md": [ "01.02 Home/Household.md": [
{
"title": "♻ [[Household]]: *Cardboard* recycling collection %%done_del%%",
"time": "2023-03-07",
"rowNumber": 79
},
{ {
"title": "🛎 🧻 REMINDER [[Household]]: check need for toilet paper %%done_del%%", "title": "🛎 🧻 REMINDER [[Household]]: check need for toilet paper %%done_del%%",
"time": "2023-03-13", "time": "2023-03-13",
"rowNumber": 91 "rowNumber": 92
}, },
{ {
"title": "♻ [[Household]]: *Paper* recycling collection %%done_del%%", "title": "♻ [[Household]]: *Paper* recycling collection %%done_del%%",
@ -374,12 +369,17 @@
{ {
"title": ":bed: [[Household]] Change bedsheets %%done_del%%", "title": ":bed: [[Household]] Change bedsheets %%done_del%%",
"time": "2023-03-18", "time": "2023-03-18",
"rowNumber": 97 "rowNumber": 98
},
{
"title": "♻ [[Household]]: *Cardboard* recycling collection %%done_del%%",
"time": "2023-03-21",
"rowNumber": 79
}, },
{ {
"title": "🛎 🛍 REMINDER [[Household]]: Monthly shop in France %%done_del%%", "title": "🛎 🛍 REMINDER [[Household]]: Monthly shop in France %%done_del%%",
"time": "2023-03-25", "time": "2023-03-25",
"rowNumber": 89 "rowNumber": 90
}, },
{ {
"title": ":coffee: [[Household]]: Buy a Cappuccino machine", "title": ":coffee: [[Household]]: Buy a Cappuccino machine",
@ -394,7 +394,7 @@
{ {
"title": "🛎️ :house: [[Household]]: Pay rent %%done_del%%", "title": "🛎️ :house: [[Household]]: Pay rent %%done_del%%",
"time": "2023-03-31", "time": "2023-03-31",
"rowNumber": 87 "rowNumber": 88
}, },
{ {
"title": ":couch_and_lamp: [[Household]]: Replace the sofa", "title": ":couch_and_lamp: [[Household]]: Replace the sofa",
@ -833,6 +833,13 @@
"time": "2023-04-05", "time": "2023-04-05",
"rowNumber": 108 "rowNumber": 108
} }
],
"01.06 Health/2023-02-24 Kidney inflammation.md": [
{
"title": "🩺 [[2023-02-24 Kidney inflammation]]: organise a follow up to check **polype** in the gallbladder",
"time": "2023-11-20",
"rowNumber": 55
}
] ]
}, },
"debug": false, "debug": false,

File diff suppressed because one or more lines are too long

@ -0,0 +1,10 @@
{
"id": "obsidian-timelines",
"name": "Timelines",
"version": "0.3.2",
"minAppVersion": "0.10.11",
"description": "Create a timeline view of all notes with the specified combination of tags",
"author": "darakah",
"authorUrl": "https://github.com/Darakah/",
"isDesktopOnly": false
}

@ -0,0 +1,261 @@
.ob-timelines {
display: none;
}
/* The actual timeline (the vertical ruler) */
.timeline {
position: relative;
max-width: 1200px;
margin: 0 auto;
}
/* The actual timeline (the vertical ruler) */
.timeline::after {
content: '';
position: absolute;
width: 10px;
background-color: var(--background-secondary);
top: 0;
bottom: 0;
left: 50%;
margin-left: -3px;
}
/* Container around content */
.timeline-container {
padding: 10px 40px;
position: relative;
background-color: inherit;
width: 50%;
}
/* The circles on the timeline */
.timeline-container::after {
content: '';
position: absolute;
width: 25px;
height: 25px;
right: -17px;
background-color: var(--background-secondary);
border: 4px solid #FF9F55;
top: 15px;
border-radius: 50%;
z-index: 1;
}
/* Place the container to the left */
.timeline-left {
left: 0;
}
/* Place the container to the right */
.timeline-right {
left: 50%;
}
/* Add arrows to the left container (pointing right) */
.timeline-left::before {
content: " ";
height: 0;
position: absolute;
top: 22px;
width: 0;
z-index: 1;
right: 30px;
border: medium solid var(--background-secondary);
border-width: 10px 0 10px 10px;
border-color: transparent transparent transparent var(--background-secondary);
}
/* Add arrows to the right container (pointing left) */
.timeline-right::before {
content: " ";
height: 0;
position: absolute;
top: 22px;
width: 0;
z-index: 1;
left: 30px;
border: medium solid var(--background-secondary);
border-width: 10px 10px 10px 0;
border-color: transparent var(--background-secondary) transparent transparent;
}
/* Fix the circle for containers on the right side */
.timeline-right::after {
left: -16px;
}
/* The actual content */
.timeline-content {
padding: 10px 15px;
background-color: var(--background-accent);
position: relative;
border-radius: 6px;
}
.timeline-card {
grid-auto-rows: min-content;
color: #d1c077;
padding: 1px;
}
.timeline-card .thumb {
padding-bottom: 60%;
background-size: cover;
background-position: center center;
border-radius: 10px 10px 0px 0px;
}
.timeline-card {
background: var(--background-secondary);
text-decoration: none !important;
color: var(--text-normal);
box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
display: flex;
flex-direction: column;
min-height: 100%;
position: relative;
top: 0;
transition: all 0.1s ease-in;
margin-block-end: 20px;
border-radius: 10px;
}
.timeline-card:hover {
top: -2px;
box-shadow: 0 4px 5px rgba(0, 0, 0, 0.2);
}
.timeline-card article {
padding-left: 15px;
flex: 1;
display: flex;
flex-direction: column;
justify-content: space-between;
}
.timeline-card p {
padding-left: 15px;
padding-right: 15px;
flex: 1;
margin-block-start: 0em;
margin-block-end: 1em;
margin-inline-start: 0px;
margin-inline-end: 0px;
display: flex;
flex-direction: column;
justify-content: space-between;
word-break: break-word;
white-space: normal;
}
.timeline-rendered {
color: var(--text-faint);
font-size: smaller;
}
.timeline-rendered::before {
content: "Updated: ";
}
/* Vis Timeline */
.vis-timeline {
border: 1px solid transparent;
}
.vis-item-content .timeline-card {
display: none;
width: 300px;
height: max-content;
position: fixed !important;
}
.vis-item-overflow .timeline-card {
display: none;
width: 300px;
height: max-content;
position: fixed !important;
}
.vis-item .vis-item-overflow {
overflow: visible;
}
.vis-item.orange {
background-color: rgba(255, 0, 0, 0.295);
filter: none;
border-color: orange;
}
.vis-item.vis-selected.orange {
/* custom colors for selected orange items */
background-color: orange;
border-color: orangered;
}
.vis-panel.vis-center,
.vis-panel.vis-left,
.vis-panel.vis-right {
border-color: var(--background-secondary);
}
.vis-grid.vis-minor {
display: none;
}
.vis-grid.vis-major {
display: none;
}
/* Vis Timeline Navigation */
.vis-navigation-input {
margin-left: 10px;
margin-right: 10px;
margin-top: 10px;
padding-left: 10px;
padding-bottom: 5px;
width: 65% !important;
background-color: var(--background-secondary-alt);
border: none;
border-radius: 7px;
height: auto;
width: max-content;
text-rendering: auto;
color: -internal-light-dark(black, white);
letter-spacing: normal;
word-spacing: normal;
text-transform: none;
text-indent: 0px;
text-shadow: none;
overflow-wrap: break-word;
color: var(--text-normal);
appearance: textfield;
cursor: text;
font-family: "Comic Sans MS" !important;
font-size: 15px !important;
}

@ -5,13 +5,85 @@
"path": "01.02 Home/@Main Dashboard.md" "path": "01.02 Home/@Main Dashboard.md"
}, },
{ {
"basename": "2023-03-05", "basename": "2023-03-06",
"path": "00.01 Admin/Calendars/2023-03-05.md" "path": "00.01 Admin/Calendars/2023-03-06.md"
},
{
"basename": "@Shopping list",
"path": "01.02 Home/@Shopping list.md"
},
{
"basename": "@Restaurants Zürich",
"path": "02.03 Zürich/@Restaurants Zürich.md"
},
{
"basename": "Portofino am See",
"path": "02.03 Zürich/Portofino am See.md"
},
{
"basename": "Big Shells With Spicy Lamb Sausage and Pistachios",
"path": "03.03 Food & Wine/Big Shells With Spicy Lamb Sausage and Pistachios.md"
},
{
"basename": "@Health",
"path": "01.06 Health/@Health.md"
},
{
"basename": "2023-02-24 Kidney inflammation",
"path": "01.06 Health/2023-02-24 Kidney inflammation.md"
},
{
"basename": "2023-01-23 Checkup",
"path": "01.06 Health/2023-01-23 Checkup.md"
},
{
"basename": "Template Timeline",
"path": "00.01 Admin/Templates/Template Timeline.md"
},
{
"basename": "Dr Awad Abuawad",
"path": "02.03 Zürich/Dr Awad Abuawad.md"
},
{
"basename": "2021-10-10 Checkup",
"path": "01.06 Health/2021-10-10 Checkup.md"
},
{
"basename": "2023-03-09 Médecin",
"path": "00.01 Admin/Calendars/Events/2023-03-09 Médecin.md"
}, },
{ {
"basename": "Working note - Project 1", "basename": "Working note - Project 1",
"path": "04.03 Creative snippets/Working note - Project 1.md" "path": "04.03 Creative snippets/Working note - Project 1.md"
}, },
{
"basename": "2023-03-06 Médecin",
"path": "00.01 Admin/Calendars/Events/2023-03-06 Médecin.md"
},
{
"basename": "The Power And The Glory",
"path": "00.02 Inbox/The Power And The Glory.md"
},
{
"basename": "Say Nothing",
"path": "03.01 Reading list/Say Nothing.md"
},
{
"basename": "Under the Volcano",
"path": "03.01 Reading list/Under the Volcano.md"
},
{
"basename": "How the Biggest Fraud in German History Unravelled",
"path": "00.03 News/How the Biggest Fraud in German History Unravelled.md"
},
{
"basename": "US-China 1MDB Scandal Pits FBI Against Former Fugee Pras Michel",
"path": "00.03 News/US-China 1MDB Scandal Pits FBI Against Former Fugee Pras Michel.md"
},
{
"basename": "2023-03-05",
"path": "00.01 Admin/Calendars/2023-03-05.md"
},
{ {
"basename": "Applications", "basename": "Applications",
"path": "05.01 Computer setup/Applications.md" "path": "05.01 Computer setup/Applications.md"
@ -56,14 +128,6 @@
"basename": "hLedger", "basename": "hLedger",
"path": "06.01 Finances/hLedger.md" "path": "06.01 Finances/hLedger.md"
}, },
{
"basename": "2023-03-06 Médecin",
"path": "00.01 Admin/Calendars/Events/2023-03-06 Médecin.md"
},
{
"basename": "US-China 1MDB Scandal Pits FBI Against Former Fugee Pras Michel",
"path": "00.03 News/US-China 1MDB Scandal Pits FBI Against Former Fugee Pras Michel.md"
},
{ {
"basename": "Sanctuary", "basename": "Sanctuary",
"path": "00.03 News/Sanctuary.md" "path": "00.03 News/Sanctuary.md"
@ -72,10 +136,6 @@
"basename": "EVT Will Save Millions of Lives From Stroke. Eventually.", "basename": "EVT Will Save Millions of Lives From Stroke. Eventually.",
"path": "00.03 News/EVT Will Save Millions of Lives From Stroke. Eventually..md" "path": "00.03 News/EVT Will Save Millions of Lives From Stroke. Eventually..md"
}, },
{
"basename": "How the Biggest Fraud in German History Unravelled",
"path": "00.03 News/How the Biggest Fraud in German History Unravelled.md"
},
{ {
"basename": "Server Tools", "basename": "Server Tools",
"path": "05.02 Networks/Server Tools.md" "path": "05.02 Networks/Server Tools.md"
@ -95,10 +155,6 @@
{ {
"basename": "2023-03-03", "basename": "2023-03-03",
"path": "00.01 Admin/Calendars/2023-03-03.md" "path": "00.01 Admin/Calendars/2023-03-03.md"
},
{
"basename": "@Shopping list",
"path": "01.02 Home/@Shopping list.md"
} }
], ],
"omittedPaths": [], "omittedPaths": [],

@ -63,6 +63,11 @@ div[data-path="01.05 Done"] .nav-folder-title-content::before
content: "✅ "; content: "✅ ";
} }
div[data-path="01.06 Health"] .nav-folder-title-content::before
{
content: "🩺 ";
}
div[data-path="02.01 London"] .nav-folder-title-content::before div[data-path="02.01 London"] .nav-folder-title-content::before
{ {
content: "🎡 "; content: "🎡 ";

@ -13,7 +13,7 @@
"state": { "state": {
"type": "markdown", "type": "markdown",
"state": { "state": {
"file": "01.02 Home/@Shopping list.md", "file": "01.02 Home/@Main Dashboard.md",
"mode": "preview", "mode": "preview",
"source": false "source": false
} }
@ -31,18 +31,6 @@
} }
} }
}, },
{
"id": "6f5b30ba110a98d4",
"type": "leaf",
"state": {
"type": "markdown",
"state": {
"file": "01.02 Home/@Main Dashboard.md",
"mode": "preview",
"source": false
}
}
},
{ {
"id": "8cb411e82f0a10bf", "id": "8cb411e82f0a10bf",
"type": "leaf", "type": "leaf",
@ -82,9 +70,20 @@
"source": false "source": false
} }
} }
},
{
"id": "95469ff09620b4d5",
"type": "leaf",
"state": {
"type": "markdown",
"state": {
"file": "01.02 Home/@Shopping list.md",
"mode": "preview",
"source": false
}
}
} }
], ]
"currentTab": 2
} }
], ],
"direction": "vertical" "direction": "vertical"
@ -230,12 +229,12 @@
"meld-encrypt:Create new encrypted note": false, "meld-encrypt:Create new encrypted note": false,
"obsidian-metatable:Metatable": false, "obsidian-metatable:Metatable": false,
"obsidian42-brat:BRAT": false, "obsidian42-brat:BRAT": false,
"table-editor-obsidian:Advanced Tables Toolbar": false,
"templater-obsidian:Templater": false,
"obsidian-read-it-later:ReadItLater: Save clipboard": false, "obsidian-read-it-later:ReadItLater: Save clipboard": false,
"obsidian-book-search-plugin:Create new book note": false, "obsidian-book-search-plugin:Create new book note": false,
"obsidian-tts:Text to Speech": false, "obsidian-tts:Text to Speech": false,
"obsidian-camera:Obsidian Camera": false, "obsidian-camera:Obsidian Camera": false,
"table-editor-obsidian:Advanced Tables Toolbar": false,
"templater-obsidian:Templater": false,
"obsidian-rich-links:Rich Links": false, "obsidian-rich-links:Rich Links": false,
"obsidian-full-calendar:Open Full Calendar": false, "obsidian-full-calendar:Open Full Calendar": false,
"obsidian-open-weather:OpenWeather": false, "obsidian-open-weather:OpenWeather": false,
@ -249,39 +248,41 @@
"audio-recorder:Start/stop recording": false, "audio-recorder:Start/stop recording": false,
"obsidian-media-db-plugin:Add new Media DB entry": false, "obsidian-media-db-plugin:Add new Media DB entry": false,
"msg-handler:MSG Handler": false, "msg-handler:MSG Handler": false,
"pdf-to-markdown-plugin:PDF to Markdown": false,
"obsidian-memos:Memos": false "obsidian-memos:Memos": false
} }
}, },
"active": "6f5b30ba110a98d4", "active": "f63167c25b2d96b9",
"lastOpenFiles": [ "lastOpenFiles": [
"00.01 Admin/Calendars/2023-03-05.md", "00.01 Admin/Calendars/2023-03-06.md",
"01.02 Home/@Main Dashboard.md", "01.02 Home/@Main Dashboard.md",
"01.02 Home/@Shopping list.md",
"02.03 Zürich/@Restaurants Zürich.md",
"02.03 Zürich/Portofino am See.md",
"03.03 Food & Wine/Big Shells With Spicy Lamb Sausage and Pistachios.md",
"01.06 Health/@Health.md",
"01.06 Health/2023-02-24 Kidney inflammation.md",
"01.06 Health/2023-01-23 Checkup.md",
"00.01 Admin/Templates/Template Timeline.md",
"02.03 Zürich/Dr Awad Abuawad.md",
"01.06 Health/2021-10-10 Checkup.md",
"00.01 Admin/Calendars/Events/2023-03-09 Médecin.md",
"01.06 Health",
"04.03 Creative snippets/Working note - Project 1.md", "04.03 Creative snippets/Working note - Project 1.md",
"00.01 Admin/Calendars/Events/2023-03-06 Médecin.md",
"00.02 Inbox/The Power And The Glory.md",
"03.01 Reading list/Say Nothing.md",
"00.02 Inbox/Say Nothing.md",
"03.01 Reading list/Under the Volcano.md",
"00.03 News/How the Biggest Fraud in German History Unravelled.md",
"00.03 News/US-China 1MDB Scandal Pits FBI Against Former Fugee Pras Michel.md",
"00.01 Admin/Calendars/2023-03-05.md",
"00.01 Admin/Emails/Print.pdf", "00.01 Admin/Emails/Print.pdf",
"00.01 Admin/Emails/2023-03-05 PPZ.txt", "00.01 Admin/Emails/2023-03-05 PPZ.txt",
"00.01 Admin/Emails", "00.01 Admin/Emails",
"05.01 Computer setup/Applications.md", "05.01 Computer setup/Applications.md",
"00.01 Admin/Calendars/2023-03-04.md", "00.01 Admin/Calendars/2023-03-04.md",
"00.01 Admin/Calendars/Events/2023-03-04 Diner Baur au Lac.md", "00.01 Admin/Calendars/Events/2023-03-04 Diner Baur au Lac.md",
"00.01 Admin/Calendars/Events/2023-03-04 PSG - FC Nantes (4-2).md", "00.01 Admin/Calendars/Events/2023-03-04 PSG - FC Nantes (4-2).md"
"00.01 Admin/Calendars/Events/2023-12-27 Miami.md",
"05.02 Networks/VPS Console Dialogue.md",
"01.02 Home/Entertainment.md",
"05.01 Computer setup/Metamask.md",
"00.08 Bookmarks/Bookmarks - Travels & Sport.md",
"01.02 Home/Sport.md",
"00.08 Bookmarks/Bookmarks - Selfhosted Apps.md",
"06.01 Finances/hLedger.md",
"00.01 Admin/Calendars/Events/2023-03-06 Médecin.md",
"00.03 News/US-China 1MDB Scandal Pits FBI Against Former Fugee Pras Michel.md",
"00.03 News/Sanctuary.md",
"00.03 News/EVT Will Save Millions of Lives From Stroke. Eventually..md",
"00.03 News/How the Biggest Fraud in German History Unravelled.md",
"05.02 Networks/Server Tools.md",
"02.02 Paris/Paris SG.md",
"01.02 Home/Bandes Dessinées.md",
"00.03 News/Life After Food.md",
"00.01 Admin/Calendars/2023-03-03.md",
"01.02 Home/@Shopping list.md"
] ]
} }

@ -16,7 +16,7 @@ Stress: 27.5
FrontHeadBar: 5 FrontHeadBar: 5
EarHeadBar: 35 EarHeadBar: 35
BackHeadBar: 20 BackHeadBar: 20
Water: 1.95 Water: 3.45
Coffee: 1 Coffee: 1
Steps: Steps:
Weight: Weight:

@ -0,0 +1,140 @@
---
title: "🗒 Daily Note"
allDay: true
date: 2023-03-06
Date: 2023-03-06
DocType: Note
Hierarchy:
TimeStamp:
location:
CollapseMetaTable: true
Sleep: 7
Happiness: 90
Gratefulness: 90
Stress: 27.5
FrontHeadBar: 5
EarHeadBar: 35
BackHeadBar: 20
Water: 2.1
Coffee: 0
Steps:
Weight:
Ski:
IceSkating:
Riding:
Racket:
Football:
Swim:
---
%% Parent:: [[@Life Admin]] %%
---
[[2023-03-05|<< 🗓 Previous ]] &emsp; &emsp; &emsp; [[@Main Dashboard|Back]] &emsp; &emsp; &emsp; [[2023-03-07|🗓 Next >>]]
---
&emsp;
```button
name Record today's health
type command
action MetaEdit: Run MetaEdit
id EditMetaData
```
^button-2023-03-06Edit
```button
name Save
type command
action Save current file
id Save
```
^button-2023-03-06NSave
&emsp;
# 2023-03-06
&emsp;
> [!summary]+
> Zurich: March 06 - 7:57 AM
Current Temp: 1°C • Feels Like: -2°C
Wind: 10 Km/h from the Southwest with gusts up to 14 Km/h
Sunrise: 06:57:40 • Sunset: 18:16:58
&emsp;
```toc
style: number
```
&emsp;
---
&emsp;
### ✅ Tasks of the day
&emsp;
```tasks
not done
due on 2023-03-06
path does not include Templates
hide backlinks
hide task count
```
&emsp;
---
&emsp;
### 📝 Memos
&emsp;
This section does serve for quick memos.
&emsp;
%% --- %%
&emsp;
---
&emsp;
### 🗒 Notes
&emsp;
📖: [[Under the Volcano]], [[The Power And The Glory]]
🍽: [[Big Shells With Spicy Lamb Sausage and Pistachios]]
&emsp;
---
&emsp;
### :link: Linked activity
&emsp;
```dataview
Table from [[2023-03-06]]
```
&emsp;
&emsp;

@ -6,4 +6,7 @@ endTime: 15:30
date: 2023-03-06 date: 2023-03-06
completed: null completed: null
CollapseMetaTable: true CollapseMetaTable: true
--- ---
[[2023-03-06|Ce jour]], rdv avec [[Dr Awad Abuawad]]

@ -0,0 +1,8 @@
---
title: 🩺 Médecin
allDay: false
startTime: 12:15
endTime: 12:45
date: 2023-03-09
completed: null
---

@ -0,0 +1,53 @@
---
Alias: [""]
Tag: ["timeline", ""]
Date: <% tp.date.now("YYYY-MM-DD") %>
DocType: Confidential
Hierarchy: NonRoot
TimeStamp:
location:
CollapseMetaTable: true
---
Parent:: [[@Health|Health]]
---
&emsp;
```button
name Save
type command
action Save current file
id Save
```
^button-<% tp.file.title %>NSave
&emsp;
# <% tp.file.title %>
&emsp;
> [!summary]+
> Note Description
&emsp;
<span class='ob-timelines' data-date='2000-10-10-00' data-title='Another Event' data-class='orange' data-img = 'Timeline Example/Timeline_2.jpg' data-type='range' data-end='2000-10-20-00'> A second event!
</span>
```toc
style: number
```
&emsp;
---
&emsp;
&emsp;
&emsp;

@ -1,25 +1,25 @@
--- ---
Tag: ["🇮🇪", "🧚🏼", "🪖"] Tag: [""]
Date: 2022-11-10 Date: 2023-03-06
DocType: "Source" DocType: "Source"
Hierarchy: "NonRoot" Hierarchy: "NonRoot"
TimeStamp: TimeStamp:
location: location:
Source: Source:
Type: "Book" Type: "Book"
Author: Patrick Radden Keefe Author: Graham Greene
Language: EN Language: EN
Published: 2019-02-26 Published: 2001-05-22
Link: "[Say Nothing: A True Story of Murder and Memory in Northern Ireland by Patrick Radden Keefe | Goodreads](https://www.goodreads.com/en/book/show/40163119-say-nothing)" Link: "[The Power and the Glory by Graham Greene | Goodreads](https://www.goodreads.com/book/show/3690.The_Power_and_the_Glory)"
Read: Read:
Cover: http://books.google.com/books/content?id=Qw1aDwAAQBAJ&printsec=frontcover&img=1&zoom=1&edge=curl&source=gbs_api Cover: http://books.google.com/books/content?id=jIunwAjyM6gC&printsec=frontcover&img=1&zoom=1&source=gbs_api
CollapseMetaTable: true CollapseMetaTable: true
--- ---
Parent:: [[@Reading master|Reading list]] Parent:: [[@Reading master|Reading list]]
ReadingState:: In progress ReadingState:: 🟧
--- ---
@ -43,7 +43,7 @@ id Save
&emsp; &emsp;
# Say Nothing # The Power And The Glory
&emsp; &emsp;
@ -80,7 +80,7 @@ dv.el("span", "![](" + dv.current().Source.Cover + ")")
&emsp; &emsp;
recommended to [[Amaury de Villeneuve|Papa]]. Loret ipsum
&emsp; &emsp;
&emsp; &emsp;

@ -12,7 +12,7 @@ CollapseMetaTable: true
--- ---
Parent:: [[@News|News]] Parent:: [[@News|News]]
Read:: 🟥 Read:: [[2023-03-06]]
--- ---

@ -72,7 +72,7 @@ style: number
- [x] ☕ Coffee ✅ 2022-03-01 - [x] ☕ Coffee ✅ 2022-03-01
- [x] 🍶 Coke 0 ✅ 2022-03-14 - [x] 🍶 Coke 0 ✅ 2022-03-14
- [x] 🧃 Apfelschorle ✅ 2022-12-21 - [x] 🧃 Apfelschorle ✅ 2022-12-21
- [x] 🍊 Morning juice ✅ 2023-03-02 - [x] 🍊 Morning juice ✅ 2023-03-06
- [x] 🍺 Beer ✅ 2022-02-06 - [x] 🍺 Beer ✅ 2022-02-06
&emsp; &emsp;
@ -87,8 +87,9 @@ style: number
#### Dairy #### Dairy
- [x] 🧈 Beurre ✅ 2023-03-02 - [x] 🧈 Beurre ✅ 2023-03-02
- [ ] 🧀 Fromage à servir - [x] 🧀 Fromage à servir ✅ 2023-03-06
- [ ] 🧀 Fromage rapé - [x] 🧀 Fromage rapé ✅ 2023-03-06
- [x] 🧀 Parmeggiano ✅ 2023-03-06
- [x] 🫕 Fondue cheese ✅ 2022-12-23 - [x] 🫕 Fondue cheese ✅ 2022-12-23
- [x] 🫕 Raclette cheese ✅ 2022-12-31 - [x] 🫕 Raclette cheese ✅ 2022-12-31
- [x] 🍦 Sour Cream ✅ 2022-10-29 - [x] 🍦 Sour Cream ✅ 2022-10-29
@ -100,7 +101,7 @@ style: number
#### Breakfast #### Breakfast
- [ ] 🥯 Bread - [x] 🥯 Bread ✅ 2023-03-06
- [x] 🍯 Honey/Jam ✅ 2023-03-02 - [x] 🍯 Honey/Jam ✅ 2023-03-02
- [x] 🍫 Nutella ✅ 2022-02-15 - [x] 🍫 Nutella ✅ 2022-02-15
- [x] 🥚 Eggs ✅ 2023-02-26 - [x] 🥚 Eggs ✅ 2023-02-26
@ -115,10 +116,11 @@ style: number
- [x] 🫑 Bell pepper ✅ 2023-01-24 - [x] 🫑 Bell pepper ✅ 2023-01-24
- [x] 🥦 Fennel ✅ 2022-10-29 - [x] 🥦 Fennel ✅ 2022-10-29
- [x] 🥦 Radish ✅ 2022-10-29 - [x] 🥦 Radish ✅ 2022-10-29
- [x] 🥦 Broccoli ✅ 2023-03-06
- [x] 🧅 Onions ✅ 2022-12-26 - [x] 🧅 Onions ✅ 2022-12-26
- [x] 🧅 Spring onion ✅ 2022-11-15 - [x] 🧅 Spring onion ✅ 2022-11-15
- [x] 🧄 Garlic ✅ 2023-01-19 - [x] 🧄 Garlic ✅ 2023-01-19
- [x] 🍋 Lemon ✅ 2023-02-26 - [x] 🍋 Lemon ✅ 2023-03-06
- [x] 🍋 Lime ✅ 2023-01-09 - [x] 🍋 Lime ✅ 2023-01-09
&emsp; &emsp;
@ -127,6 +129,7 @@ style: number
- [x] 🥩 Cured meat ✅ 2022-12-31 - [x] 🥩 Cured meat ✅ 2022-12-31
- [x] 🍖 Fresh meat ✅ 2023-01-24 - [x] 🍖 Fresh meat ✅ 2023-01-24
- [x] 🌭 Spicy sausage ✅ 2023-03-06
- [x] 🐟 Salmon fillet ✅ 2022-10-29 - [x] 🐟 Salmon fillet ✅ 2022-10-29
&emsp; &emsp;
@ -138,7 +141,7 @@ style: number
- [x] 🌾 Bulgur ✅ 2022-10-29 - [x] 🌾 Bulgur ✅ 2022-10-29
- [x] 🍚 Rice ✅ 2022-12-26 - [x] 🍚 Rice ✅ 2022-12-26
- [x] 🥔 Potatoes ✅ 2022-12-31 - [x] 🥔 Potatoes ✅ 2022-12-31
- [x] 🥣 Soup ✅ 2023-03-02 - [x] 🥣 Soup ✅ 2023-03-06
&emsp; &emsp;

@ -77,7 +77,8 @@ style: number
- [x] ♻ [[Household]]: *Paper* recycling collection %%done_del%% 🔁 every 2 weeks on Tuesday 📅 2023-02-28 ✅ 2023-02-27 - [x] ♻ [[Household]]: *Paper* recycling collection %%done_del%% 🔁 every 2 weeks on Tuesday 📅 2023-02-28 ✅ 2023-02-27
- [x] ♻ [[Household]]: *Paper* recycling collection %%done_del%% 🔁 every 2 weeks on Tuesday 📅 2023-02-14 ✅ 2023-02-13 - [x] ♻ [[Household]]: *Paper* recycling collection %%done_del%% 🔁 every 2 weeks on Tuesday 📅 2023-02-14 ✅ 2023-02-13
- [x] ♻ [[Household]]: *Paper* recycling collection %%done_del%% 🔁 every 2 weeks on Tuesday 📅 2023-01-31 ✅ 2023-01-30 - [x] ♻ [[Household]]: *Paper* recycling collection %%done_del%% 🔁 every 2 weeks on Tuesday 📅 2023-01-31 ✅ 2023-01-30
- [ ] ♻ [[Household]]: *Cardboard* recycling collection %%done_del%% 🔁 every 2 weeks on Tuesday 📅 2023-03-07 - [ ] ♻ [[Household]]: *Cardboard* recycling collection %%done_del%% 🔁 every 2 weeks on Tuesday 📅 2023-03-21
- [x] ♻ [[Household]]: *Cardboard* recycling collection %%done_del%% 🔁 every 2 weeks on Tuesday 📅 2023-03-07 ✅ 2023-03-06
- [x] ♻ [[Household]]: *Cardboard* recycling collection %%done_del%% 🔁 every 2 weeks on Tuesday 📅 2023-02-21 ✅ 2023-02-20 - [x] ♻ [[Household]]: *Cardboard* recycling collection %%done_del%% 🔁 every 2 weeks on Tuesday 📅 2023-02-21 ✅ 2023-02-20
- [x] ♻ [[Household]]: *Cardboard* recycling collection %%done_del%% 🔁 every 2 weeks on Tuesday 📅 2023-02-07 ✅ 2023-02-06 - [x] ♻ [[Household]]: *Cardboard* recycling collection %%done_del%% 🔁 every 2 weeks on Tuesday 📅 2023-02-07 ✅ 2023-02-06

@ -0,0 +1,53 @@
---
Alias: [""]
Tag: ["timeline", "🩺"]
Date: 2023-03-06
DocType: Timeline
Hierarchy: NonRoot
TimeStamp: 2023-03-06
location:
CollapseMetaTable: true
---
Parent:: [[@Health|Health]]
---
&emsp;
```button
name Save
type command
action Save current file
id Save
```
^button-CheckupNSave
&emsp;
# Checkup
&emsp;
> [!summary]+
> Health checkup
&emsp;
```toc
style: number
```
&emsp;
---
&emsp;
<span class='ob-timelines' data-date='2021-10-10-00' data-title='Health checkup' data-class='orange' data-type='range' data-end='2000-10-20-00'> Moderately high cholesterol diagnosed during a routine checkup at GP in London
</span>
&emsp;
&emsp;

@ -0,0 +1,66 @@
---
Alias: [""]
Tag: ["timeline", "🩺"]
Date: 2023-03-06
DocType: Confidential
Hierarchy: NonRoot
TimeStamp:
location:
CollapseMetaTable: true
---
Parent:: [[@Health|Health]]
---
&emsp;
```button
name Save
type command
action Save current file
id Save
```
^button-CheckupNSave
&emsp;
# Checkup
&emsp;
> [!summary]+
> [[2023-01-23 Médecin]] with [[Dr Cleopatra Morales]]
&emsp;
<span class='ob-timelines' data-date='2023-01-23-00' data-title='Health checkup' data-class='orange' data-type='range' data-end='2023-01-23-00'> Checkup with 3 main outcomes:
- Moderately high cholesterol
- Treat ballooning
- Treat nail fungus
</span>
&emsp;
---
&emsp;
### Belly Ballooning
&emsp;
- Iberogast or Weleda equivalent
&emsp;
### Nail fungus
&emsp;
⚠️ Treatment can affect the kidneys
&emsp;
&emsp;

@ -0,0 +1,59 @@
---
Alias: [""]
Tag: ["timeline", "🩺"]
Date: 2023-03-06
DocType: Confidential
Hierarchy: NonRoot
TimeStamp:
location:
CollapseMetaTable: true
---
Parent:: [[@Health|Health]]
---
&emsp;
```button
name Save
type command
action Save current file
id Save
```
^button-2023-02-24KidneyinflammationNSave
&emsp;
# 2023-02-24 Kidney inflammation
&emsp;
> [!summary]+
> Kidney inflammation that originated in kidney stones. With [[Dr Awad Abuawad]]
&emsp;
<span class='ob-timelines' data-date='2023-02-21-00' data-title='Kidney stone' data-class='orange' data-type='range' data-end='2023-03-06-00'> Kidney inflammation:
- 22/02/2023: diagnosis
- 25/02/2023: scan
- 06/03/2023: clearance
</span>
&emsp;
---
&emsp;
### [[2023-03-06 Médecin]]
- [ ] 🩺 [[2023-02-24 Kidney inflammation]]: organise a follow up to check **polype** in the gallbladder 📅2023-11-20
&emsp;
&emsp;

@ -0,0 +1,70 @@
---
Alias: ["Santé", "Health"]
Tag: ["🕴️", "🩺", "⛑️"]
Date: 2023-03-06
DocType: Confidential
Hierarchy: NonRoot
TimeStamp: 2023-03-06
location:
CollapseMetaTable: true
---
Parent:: [[@@Life Organisation|Life Orga]]
---
&emsp;
```button
name Save
type command
action Save current file
id Save
```
^button-HealthNSave
&emsp;
# Health
&emsp;
> [!summary]+
> Note Description
&emsp;
```toc
style: number
```
&emsp;
---
&emsp;
### General health
&emsp;
```timeline
🩺
```
&emsp;
---
&emsp;
### Dentist
&emsp;
Loret ipsum
&emsp;
&emsp;

@ -46,7 +46,7 @@ id Save
&emsp; &emsp;
# Dr A Abuawad # Dr Awad Abuawad
&emsp; &emsp;

@ -0,0 +1,114 @@
---
Alias: [""]
Tag: ["🍴", "🇮🇹"]
Date: 2023-03-06
DocType: "Place"
Hierarchy: "NonRoot"
TimeStamp:
location: [47.2939497,8.570116228199051]
Place:
Type: Restaurant
SubType: Scenic
Style: Italian
Location: Thalwil
Country: CH
Status: Recommended
CollapseMetaTable: true
Phone: "+41 44 720 32 40"
Email: "info@portofino-am-see.ch"
Website: "[Home | Portofino](https://www.portofino-am-see.ch/)"
---
Parent:: [[@@Zürich|Zürich]], [[@Restaurants Zürich|Restaurants in Zürich]]
&emsp;
```dataviewjs
let tempPhone = dv.current().Phone ? dv.current().Phone.replaceAll(" ", "") : '+000'
let tempMail = dv.current().Email ? dv.current().Email : ""
let tempCoorSet = dv.current().location ? dv.current().location : [0,0]
dv.el('center', '[📲](tel:' + tempPhone + ') &emsp; &emsp; [📧](mailto:' + tempMail + ') &emsp; &emsp; [🗺️](' + "https://waze.com/ul?ll=" + tempCoorSet[0] + "%2C" + tempCoorSet[1] + "&navigate=yes" + ')')
```
---
&emsp;
```button
name Save
type command
action Save current file
id Save
```
^button-PortofinoamSeeSave
&emsp;
# Portofino am See
&emsp;
> [!summary]+
> Note Description
&emsp;
```toc
style: number
```
&emsp;
---
&emsp;
### 📇 Contact
&emsp;
> [!address] 🗺
> Seestrasse 100
> 8800 Thalwil
> Switzerland
&emsp;
☎️ `= this.Phone`
📧 `= this.Email`
🌐 `= this.Website`
&emsp;
---
&emsp;
### 🗒 Notes
&emsp;
Loret ipsum
&emsp;
---
&emsp;
### 🔗 Other activity
&emsp;
```dataview
Table DocType as "Doc type" from [[Portofino am See]]
where !contains(file.name, "@@Travel")
sort DocType asc
```
&emsp;
&emsp;

@ -11,14 +11,14 @@ Source:
Author: Malcolm Lowry Author: Malcolm Lowry
Published: 2000 Published: 2000
Link: https://www.goodreads.com/work/best_book/1321805-under-the-volcano Link: https://www.goodreads.com/work/best_book/1321805-under-the-volcano
Read: Read: 2023-03-06
Cover: https://d.gr-assets.com/books/1270012861l/920269.jpg Cover: https://d.gr-assets.com/books/1270012861l/920269.jpg
CollapseMetaTable: true CollapseMetaTable: true
--- ---
Parent:: [[@Reading master|Reading list]] Parent:: [[@Reading master|Reading list]]
ReadingState:: 🟧 ReadingState:: [[2023-03-06]]
--- ---

@ -512,4 +512,12 @@ alias f=expenses:Food
2023/03/05 Scan 2023/03/05 Scan
expenses:Health:CHF CHF245.95 expenses:Health:CHF CHF245.95
assets:Cash:CHF
2023/03/06 Migros
expenses:Food:CHF CHF36.45
assets:Cash:CHF
2023/03/06 Migros
expenses:Food:CHF CHF15.75
assets:Cash:CHF assets:Cash:CHF
Loading…
Cancel
Save