mid august flush

main
iOS 3 months ago
parent b1ccc4659c
commit a055b73ba7

@ -1,4 +1,4 @@
{
"folder": "00.01 Admin/Calendars",
"template": "00.01 Admin/Templates/Template Daily"
"template": "00.01 Admin/Templates/🗓️ Template Daily"
}

@ -19,7 +19,7 @@
"601d1cc7-a4f3-4f19-aa9f-3bddd7ab6b1d": {
"locked": false,
"lockedDeviceName": "iPhone",
"lastRun": "2024-07-25T07:26:07+02:00"
"lastRun": "2024-08-16T08:03:40+02:00"
}
}
}

@ -631,18 +631,19 @@ var FindOrphanedFilesPlugin = class extends import_obsidian4.Plugin {
const findLinkInTextRegex = /\[\[(.*?)\]\]|\[.*?\]\((.*?)\)/g;
const canvasParsingPromises = canvasFiles.map(
async (canvasFile) => {
var _a;
const canvasFileContent = JSON.parse(
await this.app.vault.cachedRead(canvasFile)
await this.app.vault.cachedRead(canvasFile) || "{}"
);
canvasFileContent.nodes.forEach((node) => {
var _a;
(_a = canvasFileContent.nodes) == null ? void 0 : _a.forEach((node) => {
var _a2;
let linkTexts = [];
if (node.type === "file") {
linkTexts.push(node.file);
} else if (node.type === "text") {
let match;
while ((match = findLinkInTextRegex.exec(node.text)) !== null) {
linkTexts.push((_a = match[1]) != null ? _a : match[2]);
linkTexts.push((_a2 = match[1]) != null ? _a2 : match[2]);
}
} else {
return;

@ -1,7 +1,7 @@
{
"id": "find-unlinked-files",
"name": "Find orphaned files and broken links",
"version": "1.10.0",
"version": "1.10.1",
"description": "Find files that are not linked anywhere and would otherwise be lost in your vault. In other words: files with no backlinks.",
"author": "Vinzent",
"fundingUrl": "https://ko-fi.com/vinzent",

@ -12,8 +12,8 @@
"checkpointList": [
{
"path": "/",
"date": "2024-07-25",
"size": 8858544
"date": "2024-08-16",
"size": 9208587
}
],
"activityHistory": [
@ -3722,7 +3722,95 @@
},
{
"date": "2024-07-25",
"value": 1540
"value": 1564
},
{
"date": "2024-07-26",
"value": 1459
},
{
"date": "2024-07-27",
"value": 2138
},
{
"date": "2024-07-28",
"value": 2621
},
{
"date": "2024-07-29",
"value": 73855
},
{
"date": "2024-07-30",
"value": 2258
},
{
"date": "2024-07-31",
"value": 1018
},
{
"date": "2024-08-01",
"value": 2190
},
{
"date": "2024-08-02",
"value": 6291
},
{
"date": "2024-08-03",
"value": 1918
},
{
"date": "2024-08-04",
"value": 7592
},
{
"date": "2024-08-05",
"value": 1880
},
{
"date": "2024-08-06",
"value": 106442
},
{
"date": "2024-08-07",
"value": 1698
},
{
"date": "2024-08-08",
"value": 1606
},
{
"date": "2024-08-09",
"value": 3905
},
{
"date": "2024-08-10",
"value": 2357
},
{
"date": "2024-08-11",
"value": 125130
},
{
"date": "2024-08-12",
"value": 4122
},
{
"date": "2024-08-13",
"value": 18400885
},
{
"date": "2024-08-14",
"value": 4042
},
{
"date": "2024-08-15",
"value": 1842
},
{
"date": "2024-08-16",
"value": 3776
}
]
}

@ -3726,7 +3726,7 @@ var Handlers = class {
editor.setValue("");
}
}
} else if (parameters.line) {
} else if (parameters.line != void 0 || parameters.column != void 0) {
await this.plugin.open({
file: parameters.filepath,
mode: "source",
@ -3793,7 +3793,7 @@ var Handlers = class {
editor.setValue("");
}
}
} else if (parameters.line) {
} else if (parameters.line != void 0 || parameters.column != void 0) {
await this.plugin.open({
file: parameters.filepath,
mode: "source",
@ -3979,7 +3979,7 @@ var Handlers = class {
setting: this.plugin.settings.openFileWithoutWriteInNewPane,
parameters
});
if (parameters.line != void 0) {
if (parameters.line != void 0 || parameters.column != void 0) {
await this.plugin.setCursorInLine(parameters);
}
}
@ -4083,7 +4083,7 @@ var Handlers = class {
}
async handleUpdatePlugins(parameters) {
new import_obsidian7.Notice("Checking for updates\u2026");
await app.plugins.checkForUpdates();
await this.app.plugins.checkForUpdates();
const updateCount = Object.keys(this.app.plugins.updates).length;
if (updateCount > 0) {
parameters.settingid = "community-plugins";
@ -4104,6 +4104,61 @@ var Handlers = class {
}
bookmarksPlugin.openBookmark(bookmark, openMode);
}
async handleCanvas(parameters) {
if (parameters.filepath) {
await this.plugin.open({
file: parameters.filepath,
setting: this.plugin.settings.openFileWithoutWriteInNewPane,
parameters
});
}
const activeView = this.app.workspace.activeLeaf.view;
if (activeView.getViewType() != "canvas") {
new import_obsidian7.Notice("Active view is not a canvas");
return;
}
const canvasView = activeView;
if (parameters.canvasnodes) {
const ids = parameters.canvasnodes.split(",");
const nodes = canvasView.canvas.nodes;
const selectedNodes = ids.map((id) => nodes.get(id));
const selection = canvasView.canvas.selection;
canvasView.canvas.updateSelection(() => {
for (const node of selectedNodes) {
selection.add(node);
}
});
canvasView.canvas.zoomToSelection();
}
if (parameters.canvasviewport) {
const [x, y, zoom] = parameters.canvasviewport.split(",");
if (x != "-") {
if (x.startsWith("--") || x.startsWith("++")) {
const tx = canvasView.canvas.tx + Number(x.substring(1));
canvasView.canvas.tx = tx;
} else {
canvasView.canvas.tx = Number(x);
}
}
if (y != "-") {
if (y.startsWith("--") || y.startsWith("++")) {
const ty = canvasView.canvas.ty + Number(y.substring(1));
canvasView.canvas.ty = ty;
} else {
canvasView.canvas.ty = Number(y);
}
}
if (zoom != "-") {
if (zoom.startsWith("--") || zoom.startsWith("++")) {
const tZoom = canvasView.canvas.tZoom + Number(zoom.substring(1));
canvasView.canvas.tZoom = tZoom;
} else {
canvasView.canvas.tZoom = Number(zoom);
}
}
canvasView.canvas.markViewportChanged();
}
}
};
// src/modals/command_modal.ts
@ -4598,6 +4653,46 @@ var AdvancedURI = class extends import_obsidian14.Plugin {
modal.open();
}
});
this.addCommand({
id: "copy-uri-canvas-node",
name: "Copy URI for selected canvas nodes",
checkCallback: (checking) => {
const activeView = this.app.workspace.activeLeaf.view;
if (checking) {
return activeView.getViewType() === "canvas" && activeView.canvas.selection.size > 0;
}
if (activeView.getViewType() !== "canvas")
return false;
const canvasView = activeView;
let ids = [];
canvasView.canvas.selection.forEach((node) => {
ids.push(node.id);
});
this.tools.copyURI({
canvasnodes: ids.join(","),
filepath: activeView.file.path
});
}
});
this.addCommand({
id: "copy-uri-canvas-viewport",
name: "Copy URI for current canvas viewport",
checkCallback: (checking) => {
const activeView = this.app.workspace.activeLeaf.view;
if (checking) {
return activeView.getViewType() === "canvas";
}
if (activeView.getViewType() !== "canvas")
return false;
const canvasView = activeView;
const canvas = canvasView.canvas;
const tx = canvas.tx.toFixed(0), ty = canvas.ty.toFixed(0), tZoom = canvas.tZoom.toFixed(3);
this.tools.copyURI({
filepath: activeView.file.path,
canvasviewport: `${tx},${ty},${tZoom}`
});
}
});
this.registerObsidianProtocolHandler("advanced-uri", async (e) => {
var _a, _b, _c;
const parameters = e;
@ -4691,7 +4786,6 @@ var AdvancedURI = class extends import_obsidian14.Plugin {
);
this.registerEvent(
this.app.workspace.on("file-menu", (menu, file, source) => {
console.log(source);
if (!(source === "more-options" || source === "tab-header" || source == "file-explorer-context-menu")) {
return;
}
@ -4721,6 +4815,8 @@ var AdvancedURI = class extends import_obsidian14.Plugin {
this.handlers.handleEval(parameters);
} else if (parameters.filepath && parameters.exists === "true") {
this.handlers.handleDoesFileExist(parameters);
} else if (parameters.canvasnodes || parameters.canvasviewport) {
this.handlers.handleCanvas(parameters);
} else if (parameters.data) {
this.handlers.handleWrite(parameters, createdDailyNote);
} else if (parameters.filepath && parameters.heading) {
@ -4889,7 +4985,7 @@ var AdvancedURI = class extends import_obsidian14.Plugin {
setting: this.settings.openFileOnWriteInNewPane,
parameters
});
if (parameters.line != void 0) {
if (parameters.line != void 0 || parameters.column != void 0) {
await this.setCursorInLine(parameters);
}
}
@ -4931,6 +5027,7 @@ var AdvancedURI = class extends import_obsidian14.Plugin {
openMode = parameters.openmode == "true";
} else if (parameters.openmode == "popover") {
openMode = false;
} else if (import_obsidian14.Platform.isMobile && parameters.openmode == "window") {
} else {
openMode = parameters.openmode;
}
@ -4985,18 +5082,21 @@ var AdvancedURI = class extends import_obsidian14.Plugin {
}
}
async setCursorInLine(parameters) {
const rawLine = Number(parameters.line);
const view = this.app.workspace.getActiveViewOfType(import_obsidian14.MarkdownView);
if (!view)
return;
const viewState = view.leaf.getViewState();
const rawLine = parameters.line != void 0 ? Number(parameters.line) : void 0;
const rawColumn = parameters.column ? Number(parameters.column) : void 0;
viewState.state.mode = "source";
await view.leaf.setViewState(viewState);
const line = Math.min(rawLine - 1, view.editor.lineCount() - 1);
const line = rawLine != void 0 ? Math.min(rawLine - 1, view.editor.lineCount() - 1) : view.editor.getCursor().line;
const maxColumn = view.editor.getLine(line).length - 1;
const column = Math.min(rawColumn - 1, maxColumn);
view.editor.focus();
view.editor.setCursor({
line,
ch: view.editor.getLine(line).length
ch: column != null ? column : maxColumn
});
await new Promise((resolve) => setTimeout(resolve, 10));
if (parameters.viewmode == "preview") {

@ -5,7 +5,7 @@
"isDesktopOnly": false,
"js": "main.js",
"fundingUrl": "https://ko-fi.com/vinzent",
"version": "1.41.0",
"version": "1.42.0",
"author": "Vinzent",
"authorUrl": "https://github.com/Vinzent03"
}

@ -5,9 +5,15 @@
"content": "",
"useDefaultFrontmatter": true,
"defaultFrontmatterKeyType": "Camel Case",
"templateFile": "00.01 Admin/Templates/Template Pocket Source.md",
"templateFile": "00.01 Admin/Templates/📖 Template Pocket Source.md",
"serviceProvider": "google",
"naverClientId": "",
"naverClientSecret": "",
"localePreference": "default"
"localePreference": "default",
"apiKey": "",
"openPageOnCompletion": true,
"showCoverImageInSearch": false,
"enableCoverImageSave": false,
"coverImagePath": "",
"askForLocale": true
}

File diff suppressed because it is too large Load Diff

File diff suppressed because one or more lines are too long

@ -1,7 +1,7 @@
{
"id": "obsidian-map-view",
"name": "Map View",
"version": "5.0.2",
"version": "5.0.3",
"minAppVersion": "1.5.6",
"description": "An interactive map view.",
"isDesktopOnly": false

@ -1,17 +1,20 @@
{
"OMDbKey": "7e796828",
"MobyGamesKey": "",
"sfwFilter": true,
"useCustomYamlStringifier": true,
"templates": true,
"customDateFormat": "L",
"movieTemplate": "Template Movie.md",
"seriesTemplate": "Template TVShow.md",
"mangaTemplate": "Template Pocket Source.md",
"gameTemplate": "Template Game.md",
"wikiTemplate": "Template Wiki.md",
"musicReleaseTemplate": "Template Music.md",
"boardgameTemplate": "Template Game.md",
"bookTemplate": "Template Pocket Source.md",
"openNoteInNewTab": true,
"useDefaultFrontMatter": true,
"enableTemplaterIntegration": false,
"movieTemplate": "00.01 Admin/Templates/🎬 Template Movie.md",
"seriesTemplate": "00.01 Admin/Templates/📺 Template TVShow.md",
"mangaTemplate": "00.01 Admin/Templates/📖 Template Pocket Source.md",
"gameTemplate": "00.01 Admin/Templates/🎮 Template Game.md",
"wikiTemplate": "00.01 Admin/Templates/📔 Template Wiki.md",
"musicReleaseTemplate": "00.01 Admin/Templates/🎶 Template Music.md",
"boardgameTemplate": "00.01 Admin/Templates/🎮 Template Game.md",
"bookTemplate": "00.01 Admin/Templates/📖 Template Pocket Source.md",
"movieFileNameTemplate": "{{ title }} ({{ year }})",
"seriesFileNameTemplate": "{{ title }} ({{ year }})",
"mangaFileNameTemplate": "{{ title }} ({{ year }})",
@ -547,6 +550,18 @@
"mapping": "default",
"locked": true
},
{
"property": "developers",
"newProperty": "",
"mapping": "default",
"locked": false
},
{
"property": "publishers",
"newProperty": "",
"mapping": "default",
"locked": false
},
{
"property": "genres",
"newProperty": "",
@ -963,6 +978,18 @@
"mapping": "default",
"locked": false
},
{
"property": "isbn",
"newProperty": "",
"mapping": "default",
"locked": false
},
{
"property": "isbn13",
"newProperty": "",
"mapping": "default",
"locked": false
},
{
"property": "released",
"newProperty": "",
@ -995,5 +1022,6 @@
}
]
}
]
],
"useCustomYamlStringifier": true
}

@ -22,6 +22,7 @@
"AppendDateWhenTaskDone": false,
"MobileAndDesktop": "All",
"OpenMemosAutomatically": false,
"ShowScrollbar": false,
"ShowTime": true,
"ShowDate": true,
"AddBlankLineWhenDate": false,
@ -85,7 +86,7 @@
"MomentsIcon": "https://images.pexels.com/photos/256514/pexels-photo-256514.jpeg",
"MomentsQuote": "Share your thino with the world",
"DefaultThemeForThino": "classic",
"LastUpdatedVersion": "2.4.49",
"LastUpdatedVersion": "2.4.51",
"ShareToThinoWithText": false,
"ShareToThinoWithTextAppend": "",
"ShareToThinoWithTextPrepend": "",
@ -114,5 +115,6 @@
"AlwaysShowStatusText": false,
"FilterByMetadata": false,
"ShowSourcePath": false,
"ShowUpdateMessage": true
"ShowUpdateMessage": true,
"SyncManually": false
}

File diff suppressed because one or more lines are too long

@ -2,7 +2,7 @@
"id": "obsidian-memos",
"name": "Thino",
"description": "Capturing ideas and save them into daily notes. (Closed source)",
"version": "2.4.49",
"version": "2.4.51",
"author": "Boninall",
"authorUrl": "https://github.com/Quorafind/",
"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,8 +1,8 @@
{
"id": "obsidian-read-it-later",
"name": "ReadItLater",
"version": "0.4.0",
"minAppVersion": "0.15.9",
"version": "0.5.0",
"minAppVersion": "1.6.2",
"description": "Saves the clipboard to a new note.",
"author": "Dominik Pieper",
"authorUrl": "https://github.com/DominikPieper",

@ -58,15 +58,15 @@
}
],
"05.02 Networks/Server Alias.md": [
{
"title": ":email: [[Selfhosting]], [[Server Alias|Email Alias]]: Upgrader & Health checks %%done_del%%",
"time": "2024-07-30",
"rowNumber": 338
},
{
"title": ":email: [[Server Alias]]: Backup server %%done_del%%",
"time": "2024-09-03",
"rowNumber": 346
"rowNumber": 347
},
{
"title": ":email: [[Selfhosting]], [[Server Alias|Email Alias]]: Upgrader & Health checks %%done_del%%",
"time": "2024-11-30",
"rowNumber": 338
}
],
"05.02 Networks/Server Tools.md": [
@ -332,50 +332,50 @@
}
],
"01.02 Home/Household.md": [
{
"title": "♻ [[Household]]: *Cardboard* recycling collection %%done_del%%",
"time": "2024-08-20",
"rowNumber": 78
},
{
"title": "🛎 🧻 REMINDER [[Household]]: check need for toilet paper %%done_del%%",
"time": "2024-07-29",
"rowNumber": 83
"time": "2024-08-26",
"rowNumber": 87
},
{
"title": "♻ [[Household]]: *Paper* recycling collection %%done_del%%",
"time": "2024-07-30",
"time": "2024-08-27",
"rowNumber": 75
},
{
"title": "🛎️ :house: [[Household]]: Pay rent %%done_del%%",
"time": "2024-07-31",
"rowNumber": 82
},
{
"title": "♻ [[Household]]: *Cardboard* recycling collection %%done_del%%",
"time": "2024-08-06",
"rowNumber": 76
"time": "2024-08-31",
"rowNumber": 85
},
{
"title": ":blue_car: [[Household]]: Change to Winter tyres @ [[Rex Automobile CH]] %%done_del%%",
"time": "2024-10-15",
"rowNumber": 90
"rowNumber": 96
},
{
"title": ":ski: [[Household]]: Organise yearly ski servicing ([[Ski Rental Zürich]]) %%done_del%%",
"time": "2024-10-31",
"rowNumber": 98
"rowNumber": 104
},
{
"title": ":blue_car: [[Household]]: Clean car %%done_del%%",
"time": "2024-11-30",
"rowNumber": 92
"rowNumber": 98
},
{
"title": ":blue_car: [[Household]]: Renew [road vignette](https://www.e-vignette.ch/) %%done_del%%",
"time": "2024-12-20",
"rowNumber": 91
"rowNumber": 97
},
{
"title": ":blue_car: [[Household]]: Change to Summer tyres @ [[Rex Automobile CH]] %%done_del%%",
"time": "2025-04-15",
"rowNumber": 89
"rowNumber": 95
}
],
"01.03 Family/Pia Bousquié.md": [
@ -395,12 +395,12 @@
"01.01 Life Orga/@Finances.md": [
{
"title": ":heavy_dollar_sign: [[@Finances|Finances]]: Swiss tax self declaration %%done_del%%",
"time": "2024-07-31",
"rowNumber": 126
"time": "2024-08-31",
"rowNumber": 127
},
{
"title": ":heavy_dollar_sign: [[@Finances|Finances]]: update crypto prices within Obsidian %%done_del%%",
"time": "2024-08-13",
"time": "2024-09-10",
"rowNumber": 116
},
{
@ -411,7 +411,7 @@
{
"title": ":heavy_dollar_sign: [[@Finances|Finances]]: Close yearly accounts %%done_del%%",
"time": "2025-01-07",
"rowNumber": 124
"rowNumber": 125
}
],
"01.01 Life Orga/@Personal projects.md": [
@ -451,30 +451,30 @@
"06.02 Investments/Crypto Tasks.md": [
{
"title": ":ballot_box_with_ballot: [[Crypto Tasks]]: Vote for [[EOS]] block producers %%done_del%%",
"time": "2024-08-06",
"time": "2024-09-03",
"rowNumber": 72
},
{
"title": ":chart: Check [[Nimbus]] earnings %%done_del%%",
"time": "2024-08-12",
"rowNumber": 92
"time": "2024-09-09",
"rowNumber": 93
}
],
"05.02 Networks/Configuring UFW.md": [
{
"title": "🖥 [[Selfhosting]], [[Configuring UFW|Firewall]] Get IP addresses caught by Postfix %%done_del%%",
"time": "2024-07-27",
"time": "2024-08-17",
"rowNumber": 239
},
{
"title": "🖥 [[Selfhosting]], [[Configuring UFW|Firewall]] Get IP addresses caught by Postfix %%done_del%%",
"time": "2024-07-27",
"rowNumber": 318
"time": "2024-08-17",
"rowNumber": 321
},
{
"title": "🖥 [[Selfhosting]], [[Configuring UFW|Firewall]]: Update the Blocked IP list %%done_del%%",
"time": "2024-07-27",
"rowNumber": 322
"time": "2024-08-17",
"rowNumber": 328
}
],
"01.03 Family/Amélie Solanet.md": [
@ -494,21 +494,21 @@
"00.08 Bookmarks/Bookmarks - Media.md": [
{
"title": ":label: [[Bookmarks - Media]]: review bookmarks %%done_del%%",
"time": "2024-08-07",
"time": "2024-11-07",
"rowNumber": 92
}
],
"00.08 Bookmarks/Bookmarks - Admin & services.md": [
{
"title": ":label: [[Bookmarks - Admin & services]]: Review bookmarks %%done_del%%",
"time": "2024-07-30",
"time": "2024-10-30",
"rowNumber": 113
}
],
"00.08 Bookmarks/Bookmarks - Obsidian.md": [
{
"title": ":label: [[Bookmarks - Obsidian]]: Review bookmarks %%done_del%%",
"time": "2024-08-15",
"time": "2024-11-15",
"rowNumber": 319
}
],
@ -555,35 +555,35 @@
}
],
"02.02 Paris/@@Paris.md": [
{
"title": "🎭:frame_with_picture: [[@@Paris|:test_grandes_armes_de_paris:]]: Check out [exhibitions](https://www.offi.fr/expositions-musees/programme.html) %%done_del%%",
"time": "2024-07-31",
"rowNumber": 90
},
{
"title": ":sunny: :racehorse: [[@@Paris|:test_grandes_armes_de_paris:]]: Check out the [Open de France](https://www.poloclubchantilly.com/)",
"time": "2024-08-25",
"rowNumber": 108
"rowNumber": 109
},
{
"title": ":maple_leaf: :partying_face: [[@@Paris|:test_grandes_armes_de_paris:]]: Fête des Puces %%done_del%%",
"time": "2024-09-21",
"rowNumber": 98
"rowNumber": 99
},
{
"title": "🎭:frame_with_picture: [[@@Paris|:test_grandes_armes_de_paris:]]: Check out [exhibitions](https://www.offi.fr/expositions-musees/programme.html) %%done_del%%",
"time": "2024-10-31",
"rowNumber": 90
},
{
"title": ":birthday: **Virginie Parent**, [[@@Paris|Paris]] %%done_del%%",
"time": "2024-12-12",
"rowNumber": 149
"rowNumber": 150
},
{
"title": ":snowflake: :sports_medal:[[@@Paris|:test_grandes_armes_de_paris:]]: Check out the [6 Nations](https://billetterie.ffr.fr/fr)",
"time": "2025-01-30",
"rowNumber": 104
"rowNumber": 105
},
{
"title": ":sunny: :sports_medal:[[@@Paris|:test_grandes_armes_de_paris:]]: Check out [RG](https://www.rolandgarros.com/fr-fr/page/billetterie-roland-garros)",
"time": "2025-03-10",
"rowNumber": 106
"rowNumber": 107
}
],
"00.01 Admin/Calendars/2022-08-26.md": [
@ -675,7 +675,7 @@
"01.07 Animals/@Sally.md": [
{
"title": ":racehorse: [[@Sally|Sally]]: Pay for horseshoes (150 CHF) %%done_del%%",
"time": "2024-08-10",
"time": "2024-09-10",
"rowNumber": 142
},
{
@ -704,21 +704,21 @@
"00.08 Bookmarks/Bookmarks - Investments.md": [
{
"title": ":label: [[Bookmarks - Investments]]: Review bookmarks %%done_del%%",
"time": "2024-08-07",
"time": "2024-11-07",
"rowNumber": 76
}
],
"00.08 Bookmarks/Bookmarks - Social Media.md": [
{
"title": ":label: [[Bookmarks - Social Media]]: Review bookmarks %%done_del%%",
"time": "2024-08-14",
"time": "2024-11-14",
"rowNumber": 79
}
],
"01.07 Animals/2023-07-13 Health check.md": [
{
"title": ":racehorse: [[@Sally|Sally]], [[2023-07-13 Health check|Note]]: Check front hoofs healing",
"time": "2024-07-30",
"time": "2024-08-27",
"rowNumber": 53
}
],
@ -779,45 +779,25 @@
}
],
"02.03 Zürich/@@Zürich.md": [
{
"title": ":sunny: :partying_face: [[@@Zürich|:test_zurich_coat_of_arms:]]: Check out Seenachtfest Rapperswil-Jona %%done_del%%",
"time": "2024-08-01",
"rowNumber": 119
},
{
"title": ":sunny: :runner: [[@@Zürich|:test_zurich_coat_of_arms:]]: Check out tickets to Weltklasse Zürich %%done_del%%",
"time": "2024-08-01",
"rowNumber": 126
},
{
"title": ":sunny: :partying_face: [[@@Zürich|:test_zurich_coat_of_arms:]]: Street Parade %%done_del%%",
"time": "2024-08-10",
"rowNumber": 117
},
{
"title": "🎭:frame_with_picture: [[@@Zürich|:test_zurich_coat_of_arms:]]: Check out exhibitions at the [Kunsthaus](https://www.kunsthaus.ch/en/) %%done_del%%",
"time": "2024-08-15",
"rowNumber": 93
},
{
"title": ":sunny: :partying_face: [[@@Zürich|:test_zurich_coat_of_arms:]]: Zürich Openair %%done_del%%",
"time": "2024-08-23",
"rowNumber": 118
"rowNumber": 121
},
{
"title": "🎭:frame_with_picture: [[@@Zürich|:test_zurich_coat_of_arms:]]: Check out exhibitions at the [Rietberg](https://rietberg.ch/en/) %%done_del%%",
"time": "2024-09-15",
"rowNumber": 94
"rowNumber": 95
},
{
"title": ":maple_leaf: :movie_camera: [[@@Zürich|:test_zurich_coat_of_arms:]]: Check out Zürich Film Festival %%done_del%%",
"time": "2024-09-15",
"rowNumber": 105
"rowNumber": 106
},
{
"title": ":maple_leaf: :wine_glass: [[@@Zürich|:test_zurich_coat_of_arms:]]: Check out Zürichs Wine festival ([ZWF - Zurich Wine Festival](https://zurichwinefestival.ch/)) %%done_del%%",
"time": "2024-09-25",
"rowNumber": 106
"rowNumber": 107
},
{
"title": ":snowflake:🎭 [[@@Zürich|:test_zurich_coat_of_arms:]]: Check out floating theatre ([Herzlich willkommen!](http://herzbaracke.ch/)) %%done_del%%",
@ -827,57 +807,82 @@
{
"title": ":maple_leaf: :wine_glass: [[@@Zürich|:test_zurich_coat_of_arms:]]: Check out [Discover the Excitement of EXPOVINA Wine Events | Join Us at Weinschiffe, Primavera, and Wine Trophy | EXPOVINA](https://expovina.ch/en-ch/) %%done_del%%",
"time": "2024-10-15",
"rowNumber": 107
"rowNumber": 108
},
{
"title": "🎭:frame_with_picture: [[@@Zürich|:test_zurich_coat_of_arms:]]: Check out exhibitions at the [Kunsthaus](https://www.kunsthaus.ch/en/) %%done_del%%",
"time": "2024-11-15",
"rowNumber": 93
},
{
"title": ":snowflake: :person_in_steamy_room: [[@@Zürich|:test_zurich_coat_of_arms:]]: Check out [Sauna Cubes at Strandbad Küsnacht — Strandbadsauna](https://www.strandbadsauna.ch/home-eng) %%done_del%%",
"time": "2024-11-15",
"rowNumber": 100
"rowNumber": 101
},
{
"title": ":christmas_tree: :cocktail: [[@@Zürich|:test_zurich_coat_of_arms:]]: Check out pop-up bars ([Pop-ups at Christmas | zuerich.com](https://www.zuerich.com/en/visit/christmas-in-zurich/pop-ups)) %%done_del%%",
"time": "2024-12-01",
"rowNumber": 101
"rowNumber": 102
},
{
"title": ":snowflake: :swimmer: [[@@Zürich|:test_zurich_coat_of_arms:]]: Samichlausschwimmen %%done_del%%",
"time": "2024-12-08",
"rowNumber": 113
"rowNumber": 114
},
{
"title": ":snowflake: :partying_face: [[@@Zürich|:test_zurich_coat_of_arms:]]: ZüriCarneval weekend %%done_del%%",
"time": "2025-02-15",
"rowNumber": 114
"rowNumber": 115
},
{
"title": ":hibiscus: :partying_face: [[@@Zürich|:test_zurich_coat_of_arms:]]: Sechseläuten %%done_del%%",
"time": "2025-04-15",
"rowNumber": 115
"rowNumber": 116
},
{
"title": ":hibiscus: :runner: [[@@Zürich|Zürich]]: Zürich Marathon %%done_del%%",
"time": "2025-04-21",
"rowNumber": 125
"rowNumber": 129
},
{
"title": ":hibiscus: :fork_and_knife: [[@@Zürich|:test_zurich_coat_of_arms:]]: Book a restaurant with terrace for the season: [[Albishaus]], [[Restaurant Boldern]], [[Zur Buech]], [[Jardin Zürichberg]], [[Bistro Rigiblick]], [[Portofino am See]], [[La Réserve|La Muña]] %%done_del%%",
"time": "2025-05-01",
"rowNumber": 102
"rowNumber": 103
},
{
"title": ":hibiscus: :canned_food: [[@@Zürich|:test_zurich_coat_of_arms:]]: Check out [FOOD ZURICH - MEHR ALS EIN FESTIVAL](https://www.foodzurich.com/de/) %%done_del%%",
"time": "2025-06-01",
"rowNumber": 103
"rowNumber": 104
},
{
"title": ":hibiscus: :partying_face: [[@@Zürich|:test_zurich_coat_of_arms:]]: Zürich Pride Festival %%done_del%%",
"time": "2025-06-15",
"rowNumber": 116
"rowNumber": 117
},
{
"title": ":sunny: :movie_camera: [[@@Zürich|:test_zurich_coat_of_arms:]]: Check out programmation of the [Zurich's finest open-air cinema | Allianz Cinema -](https://zuerich.allianzcinema.ch/en) %%done_del%%",
"time": "2025-07-01",
"rowNumber": 104
"rowNumber": 105
},
{
"title": ":sunny: :partying_face: [[@@Zürich|:test_zurich_coat_of_arms:]]: Check Brunch at Bauernhof for National Day (1st August) %%done_del%%",
"time": "2025-07-20",
"rowNumber": 120
},
{
"title": ":sunny: :runner: [[@@Zürich|:test_zurich_coat_of_arms:]]: Check out tickets to Weltklasse Zürich %%done_del%%",
"time": "2025-08-01",
"rowNumber": 130
},
{
"title": ":sunny: :partying_face: [[@@Zürich|:test_zurich_coat_of_arms:]]: Street Parade %%done_del%%",
"time": "2025-08-10",
"rowNumber": 118
},
{
"title": ":sunny: :partying_face: [[@@Zürich|:test_zurich_coat_of_arms:]]: Check out Seenachtfest Rapperswil-Jona %%done_del%%",
"time": "2027-08-01",
"rowNumber": 122
}
],
"03.02 Travels/Geneva.md": [
@ -921,7 +926,7 @@
"01.08 Garden/@Plants.md": [
{
"title": ":potted_plant: [[@Plants|Plants]]: Buy fertilizer for the season %%done_del%%",
"time": "2024-07-31",
"time": "2025-03-31",
"rowNumber": 111
}
],
@ -995,13 +1000,13 @@
"01.06 Health/2024-06-29 Fungal treatment.md": [
{
"title": ":test_pharmacie_logo_svg_vector: [[2024-06-29 Fungal treatment|Fungus]]: Take the pill %%done_del%%",
"time": "2024-07-26",
"time": "2024-08-17",
"rowNumber": 58
},
{
"title": ":test_pharmacie_logo_svg_vector: [[2024-06-29 Fungal treatment|Fungus]]: Nail lack %%done_del%%",
"time": "2024-07-26",
"rowNumber": 68
"time": "2024-08-17",
"rowNumber": 90
}
],
"01.06 Health/2023-02-25 Polyp in Galbladder.md": [
@ -1010,6 +1015,18 @@
"time": "2025-07-12",
"rowNumber": 68
}
],
"00.01 Admin/Calendars/2024-07-29.md": [
{
"title": "08:18 ⚽ [[@Lifestyle|Lifestyle]]: Check the Como 07 [schedule](https://comofootball.com/en/matches-and-tickets/)",
"time": "2024-08-20",
"rowNumber": 103
},
{
"title": "09:20 📨 [[@Family|Family]]: Repondre a Papa",
"time": "2024-08-30",
"rowNumber": 104
}
]
},
"debug": false,

File diff suppressed because one or more lines are too long

@ -1,11 +1,11 @@
{
"id": "obsidian-tasks-plugin",
"name": "Tasks",
"version": "7.6.1",
"version": "7.8.0",
"minAppVersion": "1.1.1",
"description": "Track tasks across your vault. Supports due dates, recurring tasks, done dates, sub-set of checklist items, and filtering.",
"helpUrl": "https://publish.obsidian.md/tasks/",
"author": "Martin Schenck and Clare Macrae",
"author": "Clare Macrae and Ilyas Landikov (created by Martin Schenck)",
"authorUrl": "https://github.com/obsidian-tasks-group",
"fundingUrl": "https://github.com/sponsors/claremacrae",
"isDesktopOnly": false

@ -1,6 +1,6 @@
{
"name": "Minimal",
"version": "7.7.10",
"version": "7.7.14",
"minAppVersion": "1.6.1",
"author": "@kepano",
"authorUrl": "https://twitter.com/kepano",

File diff suppressed because one or more lines are too long

@ -1,6 +1,6 @@
{
"name": "Primary",
"version": "2.7.0",
"version": "2.8.0",
"minAppVersion": "1.4.0",
"author": "Cecilia May",
"fundingUrl": {

File diff suppressed because one or more lines are too long

@ -61,7 +61,7 @@
"state": {
"type": "markdown",
"state": {
"file": "00.01 Admin/Calendars/2024-07-25.md",
"file": "00.01 Admin/Calendars/2024-08-16.md",
"mode": "preview",
"source": true
}
@ -82,7 +82,7 @@
}
},
{
"id": "16b24a0a8bd5053a",
"id": "8196d9b0b70c129b",
"type": "leaf",
"state": {
"type": "thino_view",
@ -172,7 +172,7 @@
"state": {
"type": "backlink",
"state": {
"file": "00.01 Admin/Calendars/2024-07-25.md",
"file": "00.01 Admin/Calendars/2024-08-16.md",
"collapseAll": false,
"extraContext": false,
"sortOrder": "alphabetical",
@ -189,7 +189,7 @@
"state": {
"type": "outgoing-link",
"state": {
"file": "00.01 Admin/Calendars/2024-07-25.md",
"file": "00.01 Admin/Calendars/2024-08-16.md",
"linksCollapsed": false,
"unlinkedCollapsed": false
}
@ -220,7 +220,7 @@
}
}
],
"currentTab": 3
"currentTab": 5
},
"left-ribbon": {
"hiddenItems": {
@ -255,32 +255,34 @@
},
"active": "6266e3653a250845",
"lastOpenFiles": [
"02.03 Zürich/Sonne.md",
"00.01 Admin/Calendars/2024-07-25.md",
"00.03 News/We wanted to invade media the hippies, nerds and Hollywood pros who brought The Simpsons to life.md",
"05.02 Networks/Configuring Docker.md",
"00.01 Admin/Calendars/2024-08-16.md",
"00.01 Admin/Calendars/2024-08-15.md",
"03.04 Cinematheque/Sleepy Hollow (1999).md",
"00.01 Admin/Calendars/2024-08-14.md",
"00.01 Admin/Calendars/2024-08-13.md",
"00.08 Bookmarks/Bookmarks - Obsidian.md",
"03.04 Cinematheque/The Social Dilemma (2020).md",
"01.02 Home/@Shopping list.md",
"00.08 Bookmarks/Bookmarks - Social Media.md",
"03.03 Food & Wine/Big Shells With Spicy Lamb Sausage and Pistachios.md",
"01.02 Home/@Main Dashboard.md",
"02.03 Zürich/Jardin Zürichberg.md",
"00.01 Admin/Calendars/2024-07-24.md",
"00.01 Admin/Calendars/2024-07-23.md",
"03.04 Cinematheque/Bob Marley - One Love (2024).md",
"01.02 Home/Household.md",
"00.01 Admin/Calendars/2024-07-22.md",
"03.04 Cinematheque/Goodbye Christopher Robin (2017).md",
"00.03 News/Doctors Are Increasingly Worried About Biden.md",
"00.03 News/The Great Serengeti Land Grab.md",
"00.03 News/52,529 guns once owned by police departments have been later used in crimes, new data finds.md",
"05.02 Networks/Configuring UFW.md",
"00.03 News/Tom Scoccas Medical Mystery The Year My Body Fell Apart.md",
"00.03 News/How the Naughty 90s Set the Stage for Todays Tragicomedy.md",
"00.03 News/Whistleblower Says Microsoft Dismissed Warnings About a Security Flaw That Russians Later Used to Hack U.S. Government.md",
"00.03 News/Pablo Escobars Abandoned Hippos Are Wreaking Havoc in the Colombian Jungle.md",
"00.03 News/A double life The cocaine kingpin who hid as a professional soccer player.md",
"00.03 News/Adam Nayman It was one of the most sexually explicit movies of the 90s. Heres why this Tom Cruise and Nicole Kidman thriller still shocks today.md",
"00.01 Admin/Calendars/2024-07-21.md",
"02.03 Zürich/Strozzi.md",
"00.07 Wiki/Romain Gary.md",
"00.01 Admin/Calendars/2024-07-20.md",
"02.03 Zürich/@Restaurants Zürich.md",
"00.03 News/I Cant Overstate How Bananas This Arizona Primary Is. The QAnon Shaman Isnt Even the Weirdest Part..md",
"00.03 News/The Chipotle Bowl Thrower Who Was Forced to Work Fast Food.md",
"00.01 Admin/Calendars/2024-08-12.md",
"00.03 News/What Happens to Harlem When Its White.md",
"03.04 Cinematheque/The Pink Panther (1963).md",
"03.03 Food & Wine/Beef Noodles with Beans.md",
"00.03 News/I Accidentally Uncovered a Nationwide Scam Run by Fake Hosts on Airbnb.md",
"00.01 Admin/Calendars/2024-08-11.md",
"03.03 Food & Wine/Chilli con Carne.md",
"00.03 News/Inside Snapchats Teen Opioid Crisis.md",
"00.03 News/Why CVS and Target Locking Up Products Is Backfiring.md",
"00.03 News/What I Saw in the Darién Gap.md",
"00.03 News/Moscows Spies Were Stealing US Tech — Until the FBI Started a Sabotage Campaign.md",
"00.03 News/Ozempic Boom Inside USAs Weight-Loss Drug Capital.md",
"00.01 Admin/Pictures/Sally/IMG_5006.jpg",
"00.01 Admin/Pictures/Sally/IMG_5009.jpg",
"00.02 Inbox/Pasted image 20240521223309.png",
"00.01 Admin/Pictures/Sally/ima10032556959173512188.jpeg",
"00.01 Admin/Pictures/Sally/IMG_4552.jpg",
@ -289,8 +291,6 @@
"00.01 Admin/Pictures/Sally/IMG_4548.jpg",
"00.01 Admin/Pictures/Sally/IMG_4546.jpg",
"00.01 Admin/Pictures/Sally/ima10795028172409434080.jpeg",
"00.01 Admin/Pictures/Sally/ima1046640698913285522.jpeg",
"00.01 Admin/Pictures/Sally/ima1232190353310690185.jpeg",
"04.03 Creative snippets/Project 2",
"04.03 Creative snippets/Project 1",
"06.01 Finances/2024.ledger",

@ -16,9 +16,9 @@ Stress: 25
FrontHeadBar: 5
EarHeadBar: 20
BackHeadBar: 30
Water: 0.4
Coffee: 3
Steps:
Water: 1.9
Coffee: 4
Steps: 7857
Weight:
Ski:
IceSkating:
@ -116,6 +116,8 @@ This section does serve for quick memos.
🚆: [[@@Zürich|Zürich]] to [[Geneva]]
📖: [[Underworld]]
 
---

@ -0,0 +1,134 @@
---
title: "🗒 Daily Note"
allDay: true
date: 2024-07-26
Date: 2024-07-26
DocType: Note
Hierarchy:
TimeStamp:
location:
CollapseMetaTable: true
Sleep: 6.5
Happiness: 80
Gratefulness: 90
Stress: 25
FrontHeadBar: 5
EarHeadBar: 20
BackHeadBar: 30
Water: 3
Coffee: 6
Steps: 6928
Weight:
Ski:
IceSkating:
Riding:
Racket:
Football:
Swim:
---
%% Parent:: [[@Life Admin]] %%
---
[[2024-07-25|<< 🗓 Previous ]] &emsp; &emsp; &emsp; [[@Main Dashboard|Back]] &emsp; &emsp; &emsp; [[2024-07-27|🗓 Next >>]]
---
&emsp;
```button
name Record today's health
type command
action MetaEdit: Run MetaEdit
id EditMetaData
```
^button-2024-07-26Edit
```button
name Save
type command
action Save current file
id Save
```
^button-2024-07-26NSave
&emsp;
# 2024-07-26
&emsp;
> [!summary]+
> Daily note for 2024-07-26
&emsp;
```toc
style: number
```
&emsp;
---
&emsp;
### ✅ Tasks of the day
&emsp;
```tasks
not done
due on 2024-07-26
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;
🍽️: [[Jardin Zürichberg]]
&emsp;
---
&emsp;
### :link: Linked activity
&emsp;
```dataview
Table from [[2024-07-26]]
```
&emsp;
&emsp;

@ -0,0 +1,136 @@
---
title: "🗒 Daily Note"
allDay: true
date: 2024-07-27
Date: 2024-07-27
DocType: Note
Hierarchy:
TimeStamp:
location:
CollapseMetaTable: true
Sleep: 7
Happiness: 80
Gratefulness: 90
Stress: 25
FrontHeadBar: 5
EarHeadBar: 20
BackHeadBar: 30
Water: 3.25
Coffee: 2
Steps: 5053
Weight:
Ski:
IceSkating:
Riding: 1
Racket:
Football:
Swim:
---
%% Parent:: [[@Life Admin]] %%
---
[[2024-07-26|<< 🗓 Previous ]] &emsp; &emsp; &emsp; [[@Main Dashboard|Back]] &emsp; &emsp; &emsp; [[2024-07-28|🗓 Next >>]]
---
&emsp;
```button
name Record today's health
type command
action MetaEdit: Run MetaEdit
id EditMetaData
```
^button-2024-07-27Edit
```button
name Save
type command
action Save current file
id Save
```
^button-2024-07-27NSave
&emsp;
# 2024-07-27
&emsp;
> [!summary]+
> Daily note for 2024-07-27
&emsp;
```toc
style: number
```
&emsp;
---
&emsp;
### ✅ Tasks of the day
&emsp;
```tasks
not done
due on 2024-07-27
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;
🐎: S&B with [[@Sally|Sally]] at [[Polo Park Zürich|PPZ]]
🍽️: [[Sonne]]
&emsp;
---
&emsp;
### :link: Linked activity
&emsp;
```dataview
Table from [[2024-07-27]]
```
&emsp;
&emsp;

@ -0,0 +1,138 @@
---
title: "🗒 Daily Note"
allDay: true
date: 2024-07-28
Date: 2024-07-28
DocType: Note
Hierarchy:
TimeStamp:
location:
CollapseMetaTable: true
Sleep: 7
Happiness: 80
Gratefulness: 90
Stress: 25
FrontHeadBar: 5
EarHeadBar: 20
BackHeadBar: 30
Water: 4.75
Coffee: 2
Steps: 11823
Weight:
Ski:
IceSkating:
Riding: 2
Racket:
Football:
Swim:
---
%% Parent:: [[@Life Admin]] %%
---
[[2024-07-27|<< 🗓 Previous ]] &emsp; &emsp; &emsp; [[@Main Dashboard|Back]] &emsp; &emsp; &emsp; [[2024-07-29|🗓 Next >>]]
---
&emsp;
```button
name Record today's health
type command
action MetaEdit: Run MetaEdit
id EditMetaData
```
^button-2024-07-28Edit
```button
name Save
type command
action Save current file
id Save
```
^button-2024-07-28NSave
&emsp;
# 2024-07-28
&emsp;
> [!summary]+
> Daily note for 2024-07-28
&emsp;
```toc
style: number
```
&emsp;
---
&emsp;
### ✅ Tasks of the day
&emsp;
```tasks
not done
due on 2024-07-28
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;
🐎: 2 chukkers with [[@Sally|Sally]] at [[Polo Park Zürich|PPZ]]
🍽️: [[Spicy Szechuan Noodles with Garlic Chilli Oil]]
📺: [[A Time to Kill (1996)]]
&emsp;
---
&emsp;
### :link: Linked activity
&emsp;
```dataview
Table from [[2024-07-28]]
```
&emsp;
&emsp;

@ -0,0 +1,140 @@
---
title: "🗒 Daily Note"
allDay: true
date: 2024-07-29
Date: 2024-07-29
DocType: Note
Hierarchy:
TimeStamp:
location:
CollapseMetaTable: true
Sleep: 7
Happiness: 80
Gratefulness: 90
Stress: 25
FrontHeadBar: 5
EarHeadBar: 20
BackHeadBar: 30
Water: 2.5
Coffee: 4
Steps: 12105
Weight:
Ski:
IceSkating:
Riding:
Racket:
Football:
Swim:
---
%% Parent:: [[@Life Admin]] %%
---
[[2024-07-28|<< 🗓 Previous ]] &emsp; &emsp; &emsp; [[@Main Dashboard|Back]] &emsp; &emsp; &emsp; [[2024-07-30|🗓 Next >>]]
---
&emsp;
```button
name Record today's health
type command
action MetaEdit: Run MetaEdit
id EditMetaData
```
^button-2024-07-29Edit
```button
name Save
type command
action Save current file
id Save
```
^button-2024-07-29NSave
&emsp;
# 2024-07-29
&emsp;
> [!summary]+
> Daily note for 2024-07-29
&emsp;
```toc
style: number
```
&emsp;
---
&emsp;
### ✅ Tasks of the day
&emsp;
```tasks
not done
due on 2024-07-29
path does not include Templates
hide backlinks
hide task count
```
&emsp;
---
&emsp;
### 📝 Memos
&emsp;
This section does serve for quick memos.
&emsp;
- [ ] 08:18 ⚽ [[@Lifestyle|Lifestyle]]: Check the Como 07 [schedule](https://comofootball.com/en/matches-and-tickets/) 📅 2024-08-20
- [ ] 09:20 📨 [[@Family|Family]]: Repondre a Papa 📅2024-08-30
- [x] 09:34 :racehorse: [[@Sport Paris|Sport in Paris]]: France - USA in Polo 📅 2024-08-07 ✅ 2024-08-07
%% --- %%
&emsp;
---
&emsp;
### 🗒 Notes
&emsp;
📺: [[Braveheart (1995)]]
🍽️: [[Chilli con Carne]]
&emsp;
---
&emsp;
### :link: Linked activity
&emsp;
```dataview
Table from [[2024-07-29]]
```
&emsp;
&emsp;

@ -0,0 +1,136 @@
---
title: "🗒 Daily Note"
allDay: true
date: 2024-07-30
Date: 2024-07-30
DocType: Note
Hierarchy:
TimeStamp:
location:
CollapseMetaTable: true
Sleep: 7
Happiness: 80
Gratefulness: 90
Stress: 25
FrontHeadBar: 5
EarHeadBar: 20
BackHeadBar: 30
Water: 5.25
Coffee: 3
Steps: 8798
Weight: 92
Ski:
IceSkating:
Riding: 2
Racket:
Football:
Swim:
---
%% Parent:: [[@Life Admin]] %%
---
[[2024-07-29|<< 🗓 Previous ]] &emsp; &emsp; &emsp; [[@Main Dashboard|Back]] &emsp; &emsp; &emsp; [[2024-07-31|🗓 Next >>]]
---
&emsp;
```button
name Record today's health
type command
action MetaEdit: Run MetaEdit
id EditMetaData
```
^button-2024-07-30Edit
```button
name Save
type command
action Save current file
id Save
```
^button-2024-07-30NSave
&emsp;
# 2024-07-30
&emsp;
> [!summary]+
> Daily note for 2024-07-30
&emsp;
```toc
style: number
```
&emsp;
---
&emsp;
### ✅ Tasks of the day
&emsp;
```tasks
not done
due on 2024-07-30
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;
🐎: 2 chukkers with [[@Sally|Sally]] at [[Polo Park Zürich|PPZ]]
🍽️: [[Korean Barbecue-Style Meatballs]]
&emsp;
---
&emsp;
### :link: Linked activity
&emsp;
```dataview
Table from [[2024-07-30]]
```
&emsp;
&emsp;

@ -0,0 +1,135 @@
---
title: "🗒 Daily Note"
allDay: true
date: 2024-07-31
Date: 2024-07-31
DocType: Note
Hierarchy:
TimeStamp:
location:
CollapseMetaTable: true
Sleep: 7.5
Happiness: 80
Gratefulness: 90
Stress: 25
FrontHeadBar: 5
EarHeadBar: 20
BackHeadBar: 30
Water: 3
Coffee: 4
Steps: 11519
Weight:
Ski:
IceSkating:
Riding:
Racket:
Football:
Swim:
---
%% Parent:: [[@Life Admin]] %%
---
[[2024-07-30|<< 🗓 Previous ]] &emsp; &emsp; &emsp; [[@Main Dashboard|Back]] &emsp; &emsp; &emsp; [[2024-08-01|🗓 Next >>]]
---
&emsp;
```button
name Record today's health
type command
action MetaEdit: Run MetaEdit
id EditMetaData
```
^button-2024-07-31Edit
```button
name Save
type command
action Save current file
id Save
```
^button-2024-07-31NSave
&emsp;
# 2024-07-31
&emsp;
> [!summary]+
> Daily note for 2024-07-31
&emsp;
```toc
style: number
```
&emsp;
---
&emsp;
### ✅ Tasks of the day
&emsp;
```tasks
not done
due on 2024-07-31
path does not include Templates
hide backlinks
hide task count
```
&emsp;
---
&emsp;
### 📝 Memos
&emsp;
This section does serve for quick memos.
&emsp;
- [x] 19:25 :test_pharmacie_logo_svg_vector: [[@Health|Health]]: Pick up lack at the pharmacy 📅 2024-08-02 ✅ 2024-08-02
%% --- %%
&emsp;
---
&emsp;
### 🗒 Notes
&emsp;
Loret ipsum
&emsp;
---
&emsp;
### :link: Linked activity
&emsp;
```dataview
Table from [[2024-07-31]]
```
&emsp;
&emsp;

@ -0,0 +1,139 @@
---
title: "🗒 Daily Note"
allDay: true
date: 2024-08-01
Date: 2024-08-01
DocType: Note
Hierarchy:
TimeStamp:
location:
CollapseMetaTable: true
Sleep: 7
Happiness: 80
Gratefulness: 90
Stress: 25
FrontHeadBar: 5
EarHeadBar: 20
BackHeadBar: 30
Water: 3.3
Coffee: 3
Steps: 4108
Weight:
Ski:
IceSkating:
Riding: 2
Racket:
Football:
Swim:
---
%% Parent:: [[@Life Admin]] %%
---
[[2024-07-31|<< 🗓 Previous ]] &emsp; &emsp; &emsp; [[@Main Dashboard|Back]] &emsp; &emsp; &emsp; [[2024-08-02|🗓 Next >>]]
---
&emsp;
```button
name Record today's health
type command
action MetaEdit: Run MetaEdit
id EditMetaData
```
^button-2024-08-01Edit
```button
name Save
type command
action Save current file
id Save
```
^button-2024-08-01NSave
&emsp;
# 2024-08-01
&emsp;
> [!summary]+
> Daily note for 2024-08-01
&emsp;
```toc
style: number
```
&emsp;
---
&emsp;
### ✅ Tasks of the day
&emsp;
```tasks
not done
due on 2024-08-01
path does not include Templates
hide backlinks
hide task count
```
&emsp;
---
&emsp;
### 📝 Memos
&emsp;
This section does serve for quick memos.
&emsp;
- [x] 08:54 ☀️ [[@@Zürich|Zürich]]: Go to the Rapperswil [Seenachtfest](https://www.seenachtfest.ch/programm/) 📅 2024-08-10 ✅ 2024-08-11
%% --- %%
&emsp;
---
&emsp;
### 🗒 Notes
&emsp;
🐎: 2 chukkers con [[@Sally|Sally]] at [[Polo Park Zürich|PPZ]] > 1 goal
🍴: [[Spicy Coconut Butter Chicken]]
📺: [[Amistad (1997)]]
&emsp;
---
&emsp;
### :link: Linked activity
&emsp;
```dataview
Table from [[2024-08-01]]
```
&emsp;
&emsp;

@ -0,0 +1,134 @@
---
title: "🗒 Daily Note"
allDay: true
date: 2024-08-02
Date: 2024-08-02
DocType: Note
Hierarchy:
TimeStamp:
location:
CollapseMetaTable: true
Sleep: 8
Happiness: 80
Gratefulness: 90
Stress: 25
FrontHeadBar: 5
EarHeadBar: 20
BackHeadBar: 30
Water: 2.45
Coffee: 0
Steps: 1154
Weight:
Ski:
IceSkating:
Riding:
Racket:
Football:
Swim:
---
%% Parent:: [[@Life Admin]] %%
---
[[2024-08-01|<< 🗓 Previous ]] &emsp; &emsp; &emsp; [[@Main Dashboard|Back]] &emsp; &emsp; &emsp; [[2024-08-03|🗓 Next >>]]
---
&emsp;
```button
name Record today's health
type command
action MetaEdit: Run MetaEdit
id EditMetaData
```
^button-2024-08-02Edit
```button
name Save
type command
action Save current file
id Save
```
^button-2024-08-02NSave
&emsp;
# 2024-08-02
&emsp;
> [!summary]+
> Daily note for 2024-08-02
&emsp;
```toc
style: number
```
&emsp;
---
&emsp;
### ✅ Tasks of the day
&emsp;
```tasks
not done
due on 2024-08-02
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;
📺: [[The People vs Larry Flynt (1996)]]
&emsp;
---
&emsp;
### :link: Linked activity
&emsp;
```dataview
Table from [[2024-08-02]]
```
&emsp;
&emsp;

@ -0,0 +1,134 @@
---
title: "🗒 Daily Note"
allDay: true
date: 2024-08-03
Date: 2024-08-03
DocType: Note
Hierarchy:
TimeStamp:
location:
CollapseMetaTable: true
Sleep: 7
Happiness: 80
Gratefulness: 90
Stress: 25
FrontHeadBar: 5
EarHeadBar: 20
BackHeadBar: 30
Water: 1.3
Coffee:
Steps:
Weight:
Ski:
IceSkating:
Riding:
Racket:
Football:
Swim:
---
%% Parent:: [[@Life Admin]] %%
---
[[2024-08-02|<< 🗓 Previous ]] &emsp; &emsp; &emsp; [[@Main Dashboard|Back]] &emsp; &emsp; &emsp; [[2024-08-04|🗓 Next >>]]
---
&emsp;
```button
name Record today's health
type command
action MetaEdit: Run MetaEdit
id EditMetaData
```
^button-2024-08-03Edit
```button
name Save
type command
action Save current file
id Save
```
^button-2024-08-03NSave
&emsp;
# 2024-08-03
&emsp;
> [!summary]+
> Daily note for 2024-08-03
&emsp;
```toc
style: number
```
&emsp;
---
&emsp;
### ✅ Tasks of the day
&emsp;
```tasks
not done
due on 2024-08-03
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;
Loret ipsum
&emsp;
---
&emsp;
### :link: Linked activity
&emsp;
```dataview
Table from [[2024-08-03]]
```
&emsp;
&emsp;

@ -0,0 +1,134 @@
---
title: "🗒 Daily Note"
allDay: true
date: 2024-08-04
Date: 2024-08-04
DocType: Note
Hierarchy:
TimeStamp:
location:
CollapseMetaTable: true
Sleep: 7.5
Happiness: 80
Gratefulness: 90
Stress: 25
FrontHeadBar: 5
EarHeadBar: 20
BackHeadBar: 30
Water:
Coffee:
Steps: 2347
Weight:
Ski:
IceSkating:
Riding:
Racket:
Football:
Swim:
---
%% Parent:: [[@Life Admin]] %%
---
[[2024-08-03|<< 🗓 Previous ]] &emsp; &emsp; &emsp; [[@Main Dashboard|Back]] &emsp; &emsp; &emsp; [[2024-08-05|🗓 Next >>]]
---
&emsp;
```button
name Record today's health
type command
action MetaEdit: Run MetaEdit
id EditMetaData
```
^button-2024-08-04Edit
```button
name Save
type command
action Save current file
id Save
```
^button-2024-08-04NSave
&emsp;
# 2024-08-04
&emsp;
> [!summary]+
> Daily note for 2024-08-04
&emsp;
```toc
style: number
```
&emsp;
---
&emsp;
### ✅ Tasks of the day
&emsp;
```tasks
not done
due on 2024-08-04
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;
📺: [[Killer Joe (2011)]], [[Magic Mike (2012)]]
&emsp;
---
&emsp;
### :link: Linked activity
&emsp;
```dataview
Table from [[2024-08-04]]
```
&emsp;
&emsp;

@ -0,0 +1,134 @@
---
title: "🗒 Daily Note"
allDay: true
date: 2024-08-05
Date: 2024-08-05
DocType: Note
Hierarchy:
TimeStamp:
location:
CollapseMetaTable: true
Sleep: 7
Happiness: 80
Gratefulness: 90
Stress: 25
FrontHeadBar: 5
EarHeadBar: 20
BackHeadBar: 30
Water: 2.15
Coffee: 0
Steps: 7531
Weight:
Ski:
IceSkating:
Riding:
Racket:
Football:
Swim:
---
%% Parent:: [[@Life Admin]] %%
---
[[2024-08-04|<< 🗓 Previous ]] &emsp; &emsp; &emsp; [[@Main Dashboard|Back]] &emsp; &emsp; &emsp; [[2024-08-06|🗓 Next >>]]
---
&emsp;
```button
name Record today's health
type command
action MetaEdit: Run MetaEdit
id EditMetaData
```
^button-2024-08-05Edit
```button
name Save
type command
action Save current file
id Save
```
^button-2024-08-05NSave
&emsp;
# 2024-08-05
&emsp;
> [!summary]+
> Daily note for 2024-08-05
&emsp;
```toc
style: number
```
&emsp;
---
&emsp;
### ✅ Tasks of the day
&emsp;
```tasks
not done
due on 2024-08-05
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;
Loret ipsum
&emsp;
---
&emsp;
### :link: Linked activity
&emsp;
```dataview
Table from [[2024-08-05]]
```
&emsp;
&emsp;

@ -0,0 +1,134 @@
---
title: "🗒 Daily Note"
allDay: true
date: 2024-08-06
Date: 2024-08-06
DocType: Note
Hierarchy:
TimeStamp:
location:
CollapseMetaTable: true
Sleep: 7
Happiness: 80
Gratefulness: 90
Stress: 25
FrontHeadBar: 5
EarHeadBar: 20
BackHeadBar: 30
Water: 3
Coffee: 1
Steps: 10353
Weight: 90.8
Ski:
IceSkating:
Riding:
Racket:
Football:
Swim:
---
%% Parent:: [[@Life Admin]] %%
---
[[2024-08-05|<< 🗓 Previous ]] &emsp; &emsp; &emsp; [[@Main Dashboard|Back]] &emsp; &emsp; &emsp; [[2024-08-07|🗓 Next >>]]
---
&emsp;
```button
name Record today's health
type command
action MetaEdit: Run MetaEdit
id EditMetaData
```
^button-2024-08-06Edit
```button
name Save
type command
action Save current file
id Save
```
^button-2024-08-06NSave
&emsp;
# 2024-08-06
&emsp;
> [!summary]+
> Daily note for 2024-08-06
&emsp;
```toc
style: number
```
&emsp;
---
&emsp;
### ✅ Tasks of the day
&emsp;
```tasks
not done
due on 2024-08-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;
Loret ipsum
&emsp;
---
&emsp;
### :link: Linked activity
&emsp;
```dataview
Table from [[2024-08-06]]
```
&emsp;
&emsp;

@ -0,0 +1,134 @@
---
title: "🗒 Daily Note"
allDay: true
date: 2024-08-07
Date: 2024-08-07
DocType: Note
Hierarchy:
TimeStamp:
location:
CollapseMetaTable: true
Sleep: 7
Happiness: 80
Gratefulness: 90
Stress: 25
FrontHeadBar: 5
EarHeadBar: 20
BackHeadBar: 30
Water: 3
Coffee: 0
Steps: 10807
Weight:
Ski:
IceSkating:
Riding:
Racket:
Football:
Swim:
---
%% Parent:: [[@Life Admin]] %%
---
[[2024-08-06|<< 🗓 Previous ]] &emsp; &emsp; &emsp; [[@Main Dashboard|Back]] &emsp; &emsp; &emsp; [[2024-08-08|🗓 Next >>]]
---
&emsp;
```button
name Record today's health
type command
action MetaEdit: Run MetaEdit
id EditMetaData
```
^button-2024-08-07Edit
```button
name Save
type command
action Save current file
id Save
```
^button-2024-08-07NSave
&emsp;
# 2024-08-07
&emsp;
> [!summary]+
> Daily note for 2024-08-07
&emsp;
```toc
style: number
```
&emsp;
---
&emsp;
### ✅ Tasks of the day
&emsp;
```tasks
not done
due on 2024-08-07
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;
Loret ipsum
&emsp;
---
&emsp;
### :link: Linked activity
&emsp;
```dataview
Table from [[2024-08-07]]
```
&emsp;
&emsp;

@ -0,0 +1,134 @@
---
title: "🗒 Daily Note"
allDay: true
date: 2024-08-08
Date: 2024-08-08
DocType: Note
Hierarchy:
TimeStamp:
location:
CollapseMetaTable: true
Sleep: 7.5
Happiness: 80
Gratefulness: 90
Stress: 25
FrontHeadBar: 5
EarHeadBar: 20
BackHeadBar: 30
Water: 3.5
Coffee: 0
Steps: 10323
Weight:
Ski:
IceSkating:
Riding:
Racket:
Football:
Swim:
---
%% Parent:: [[@Life Admin]] %%
---
[[2024-08-07|<< 🗓 Previous ]] &emsp; &emsp; &emsp; [[@Main Dashboard|Back]] &emsp; &emsp; &emsp; [[2024-08-09|🗓 Next >>]]
---
&emsp;
```button
name Record today's health
type command
action MetaEdit: Run MetaEdit
id EditMetaData
```
^button-2024-08-08Edit
```button
name Save
type command
action Save current file
id Save
```
^button-2024-08-08NSave
&emsp;
# 2024-08-08
&emsp;
> [!summary]+
> Daily note for 2024-08-08
&emsp;
```toc
style: number
```
&emsp;
---
&emsp;
### ✅ Tasks of the day
&emsp;
```tasks
not done
due on 2024-08-08
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;
📖: [[Underworld]]
&emsp;
---
&emsp;
### :link: Linked activity
&emsp;
```dataview
Table from [[2024-08-08]]
```
&emsp;
&emsp;

@ -0,0 +1,140 @@
---
title: "🗒 Daily Note"
allDay: true
date: 2024-08-09
Date: 2024-08-09
DocType: Note
Hierarchy:
TimeStamp:
location:
CollapseMetaTable: true
Sleep: 6.5
Happiness: 80
Gratefulness: 90
Stress: 25
FrontHeadBar: 5
EarHeadBar: 20
BackHeadBar: 30
Water: 4.25
Coffee: 2
Steps:
Weight:
Ski:
IceSkating:
Riding: 2
Racket:
Football:
Swim:
---
%% Parent:: [[@Life Admin]] %%
---
[[2024-08-08|<< 🗓 Previous ]] &emsp; &emsp; &emsp; [[@Main Dashboard|Back]] &emsp; &emsp; &emsp; [[2024-08-10|🗓 Next >>]]
---
&emsp;
```button
name Record today's health
type command
action MetaEdit: Run MetaEdit
id EditMetaData
```
^button-2024-08-09Edit
```button
name Save
type command
action Save current file
id Save
```
^button-2024-08-09NSave
&emsp;
# 2024-08-09
&emsp;
> [!summary]+
> Daily note for 2024-08-09
&emsp;
```toc
style: number
```
&emsp;
---
&emsp;
### ✅ Tasks of the day
&emsp;
```tasks
not done
due on 2024-08-09
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;
📖: [[Underworld]]
🐎: 2 chukkers with [[@Sally|Sally]] at [[Polo Park Zürich|PPZ]]
🍽️: [[Spicy Szechuan Noodles with Garlic Chilli Oil]]
📺: [[Dallas Buyers Club (2013)]]
&emsp;
---
&emsp;
### :link: Linked activity
&emsp;
```dataview
Table from [[2024-08-09]]
```
&emsp;
&emsp;

@ -0,0 +1,134 @@
---
title: "🗒 Daily Note"
allDay: true
date: 2024-08-10
Date: 2024-08-10
DocType: Note
Hierarchy:
TimeStamp:
location:
CollapseMetaTable: true
Sleep: 7.5
Happiness: 80
Gratefulness: 90
Stress: 25
FrontHeadBar: 5
EarHeadBar: 20
BackHeadBar: 30
Water: 3.75
Coffee: 2
Steps: 6704
Weight:
Ski:
IceSkating:
Riding: 2
Racket:
Football:
Swim:
---
%% Parent:: [[@Life Admin]] %%
---
[[2024-08-09|<< 🗓 Previous ]] &emsp; &emsp; &emsp; [[@Main Dashboard|Back]] &emsp; &emsp; &emsp; [[2024-08-11|🗓 Next >>]]
---
&emsp;
```button
name Record today's health
type command
action MetaEdit: Run MetaEdit
id EditMetaData
```
^button-2024-08-10Edit
```button
name Save
type command
action Save current file
id Save
```
^button-2024-08-10NSave
&emsp;
# 2024-08-10
&emsp;
> [!summary]+
> Daily note for 2024-08-10
&emsp;
```toc
style: number
```
&emsp;
---
&emsp;
### ✅ Tasks of the day
&emsp;
```tasks
not done
due on 2024-08-10
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;
🐎: 2 chukkers with [[@Sally|Sally]] at [[Polo Park Zürich|PPZ]]
&emsp;
---
&emsp;
### :link: Linked activity
&emsp;
```dataview
Table from [[2024-08-10]]
```
&emsp;
&emsp;

@ -0,0 +1,138 @@
---
title: "🗒 Daily Note"
allDay: true
date: 2024-08-11
Date: 2024-08-11
DocType: Note
Hierarchy:
TimeStamp:
location:
CollapseMetaTable: true
Sleep: 7.5
Happiness: 80
Gratefulness: 90
Stress: 25
FrontHeadBar: 5
EarHeadBar: 20
BackHeadBar: 30
Water: 3.83
Coffee: 0
Steps: 11906
Weight:
Ski:
IceSkating:
Riding: 1
Racket:
Football:
Swim:
---
%% Parent:: [[@Life Admin]] %%
---
[[2024-08-10|<< 🗓 Previous ]] &emsp; &emsp; &emsp; [[@Main Dashboard|Back]] &emsp; &emsp; &emsp; [[2024-08-12|🗓 Next >>]]
---
&emsp;
```button
name Record today's health
type command
action MetaEdit: Run MetaEdit
id EditMetaData
```
^button-2024-08-11Edit
```button
name Save
type command
action Save current file
id Save
```
^button-2024-08-11NSave
&emsp;
# 2024-08-11
&emsp;
> [!summary]+
> Daily note for 2024-08-11
&emsp;
```toc
style: number
```
&emsp;
---
&emsp;
### ✅ Tasks of the day
&emsp;
```tasks
not done
due on 2024-08-11
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;
📺: [[Interstellar (2014)]]
🐎: S&B with [[@Sally|Sally]] at [[Polo Park Zürich|PPZ]]
🍽️: [[Chilli con Carne]]
&emsp;
---
&emsp;
### :link: Linked activity
&emsp;
```dataview
Table from [[2024-08-11]]
```
&emsp;
&emsp;

@ -0,0 +1,136 @@
---
title: "🗒 Daily Note"
allDay: true
date: 2024-08-12
Date: 2024-08-12
DocType: Note
Hierarchy:
TimeStamp:
location:
CollapseMetaTable: true
Sleep: 7
Happiness: 80
Gratefulness: 90
Stress: 25
FrontHeadBar: 5
EarHeadBar: 20
BackHeadBar: 30
Water: 3
Coffee: 2
Steps: 7637
Weight:
Ski:
IceSkating:
Riding:
Racket:
Football:
Swim:
---
%% Parent:: [[@Life Admin]] %%
---
[[2024-08-11|<< 🗓 Previous ]] &emsp; &emsp; &emsp; [[@Main Dashboard|Back]] &emsp; &emsp; &emsp; [[2024-08-13|🗓 Next >>]]
---
&emsp;
```button
name Record today's health
type command
action MetaEdit: Run MetaEdit
id EditMetaData
```
^button-2024-08-12Edit
```button
name Save
type command
action Save current file
id Save
```
^button-2024-08-12NSave
&emsp;
# 2024-08-12
&emsp;
> [!summary]+
> Daily note for 2024-08-12
&emsp;
```toc
style: number
```
&emsp;
---
&emsp;
### ✅ Tasks of the day
&emsp;
```tasks
not done
due on 2024-08-12
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;
🍽️: [[Beef Noodles with Beans]]
📺: [[The Pink Panther (1963)]]
&emsp;
---
&emsp;
### :link: Linked activity
&emsp;
```dataview
Table from [[2024-08-12]]
```
&emsp;
&emsp;

@ -0,0 +1,136 @@
---
title: "🗒 Daily Note"
allDay: true
date: 2024-08-13
Date: 2024-08-13
DocType: Note
Hierarchy:
TimeStamp:
location:
CollapseMetaTable: true
Sleep: 7.5
Happiness: 80
Gratefulness: 90
Stress: 25
FrontHeadBar: 5
EarHeadBar: 20
BackHeadBar: 30
Water: 4.5
Coffee: 2
Steps: 8630
Weight: 91.2
Ski:
IceSkating:
Riding: 1
Racket:
Football:
Swim:
---
%% Parent:: [[@Life Admin]] %%
---
[[2024-08-12|<< 🗓 Previous ]] &emsp; &emsp; &emsp; [[@Main Dashboard|Back]] &emsp; &emsp; &emsp; [[2024-08-14|🗓 Next >>]]
---
&emsp;
```button
name Record today's health
type command
action MetaEdit: Run MetaEdit
id EditMetaData
```
^button-2024-08-13Edit
```button
name Save
type command
action Save current file
id Save
```
^button-2024-08-13NSave
&emsp;
# 2024-08-13
&emsp;
> [!summary]+
> Daily note for 2024-08-13
&emsp;
```toc
style: number
```
&emsp;
---
&emsp;
### ✅ Tasks of the day
&emsp;
```tasks
not done
due on 2024-08-13
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;
🐎: S&B with [[@Sally|Sally]] at [[Polo Park Zürich|PPZ]]
🍽️: [[Big Shells With Spicy Lamb Sausage and Pistachios]]
&emsp;
---
&emsp;
### :link: Linked activity
&emsp;
```dataview
Table from [[2024-08-13]]
```
&emsp;
&emsp;

@ -0,0 +1,134 @@
---
title: "🗒 Daily Note"
allDay: true
date: 2024-08-14
Date: 2024-08-14
DocType: Note
Hierarchy:
TimeStamp:
location:
CollapseMetaTable: true
Sleep: 8
Happiness: 80
Gratefulness: 90
Stress: 25
FrontHeadBar: 5
EarHeadBar: 20
BackHeadBar: 30
Water: 3
Coffee: 2
Steps: 6712
Weight:
Ski:
IceSkating:
Riding:
Racket:
Football:
Swim:
---
%% Parent:: [[@Life Admin]] %%
---
[[2024-08-13|<< 🗓 Previous ]] &emsp; &emsp; &emsp; [[@Main Dashboard|Back]] &emsp; &emsp; &emsp; [[2024-08-15|🗓 Next >>]]
---
&emsp;
```button
name Record today's health
type command
action MetaEdit: Run MetaEdit
id EditMetaData
```
^button-2024-08-14Edit
```button
name Save
type command
action Save current file
id Save
```
^button-2024-08-14NSave
&emsp;
# 2024-08-14
&emsp;
> [!summary]+
> Daily note for 2024-08-14
&emsp;
```toc
style: number
```
&emsp;
---
&emsp;
### ✅ Tasks of the day
&emsp;
```tasks
not done
due on 2024-08-14
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;
📺: [[The Social Dilemma (2020)]]
&emsp;
---
&emsp;
### :link: Linked activity
&emsp;
```dataview
Table from [[2024-08-14]]
```
&emsp;
&emsp;

@ -0,0 +1,138 @@
---
title: "🗒 Daily Note"
allDay: true
date: 2024-08-15
Date: 2024-08-15
DocType: Note
Hierarchy:
TimeStamp:
location:
CollapseMetaTable: true
Sleep: 7.5
Happiness: 80
Gratefulness: 90
Stress: 25
FrontHeadBar: 5
EarHeadBar: 20
BackHeadBar: 30
Water: 4.25
Coffee: 3
Steps: 13747
Weight:
Ski:
IceSkating:
Riding: 1
Racket:
Football:
Swim:
---
%% Parent:: [[@Life Admin]] %%
---
[[2024-08-14|<< 🗓 Previous ]] &emsp; &emsp; &emsp; [[@Main Dashboard|Back]] &emsp; &emsp; &emsp; [[2024-08-16|🗓 Next >>]]
---
&emsp;
```button
name Record today's health
type command
action MetaEdit: Run MetaEdit
id EditMetaData
```
^button-2024-08-15Edit
```button
name Save
type command
action Save current file
id Save
```
^button-2024-08-15NSave
&emsp;
# 2024-08-15
&emsp;
> [!summary]+
> Daily note for 2024-08-15
&emsp;
```toc
style: number
```
&emsp;
---
&emsp;
### ✅ Tasks of the day
&emsp;
```tasks
not done
due on 2024-08-15
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;
📖: [[Underworld]]
🐎: S&B with [[@Sally|Sally]] at [[Polo Park Zürich|PPZ]]
📺: [[Sleepy Hollow (1999)]]
&emsp;
---
&emsp;
### :link: Linked activity
&emsp;
```dataview
Table from [[2024-08-15]]
```
&emsp;
&emsp;

@ -0,0 +1,134 @@
---
title: "🗒 Daily Note"
allDay: true
date: 2024-08-16
Date: 2024-08-16
DocType: Note
Hierarchy:
TimeStamp:
location:
CollapseMetaTable: true
Sleep: 7.5
Happiness: 80
Gratefulness: 90
Stress: 25
FrontHeadBar: 5
EarHeadBar: 20
BackHeadBar: 30
Water:
Coffee:
Steps:
Weight:
Ski:
IceSkating:
Riding:
Racket:
Football:
Swim:
---
%% Parent:: [[@Life Admin]] %%
---
[[2024-08-15|<< 🗓 Previous ]] &emsp; &emsp; &emsp; [[@Main Dashboard|Back]] &emsp; &emsp; &emsp; [[2024-08-17|🗓 Next >>]]
---
&emsp;
```button
name Record today's health
type command
action MetaEdit: Run MetaEdit
id EditMetaData
```
^button-2024-08-16Edit
```button
name Save
type command
action Save current file
id Save
```
^button-2024-08-16NSave
&emsp;
# 2024-08-16
&emsp;
> [!summary]+
> Daily note for 2024-08-16
&emsp;
```toc
style: number
```
&emsp;
---
&emsp;
### ✅ Tasks of the day
&emsp;
```tasks
not done
due on 2024-08-16
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;
Loret ipsum
&emsp;
---
&emsp;
### :link: Linked activity
&emsp;
```dataview
Table from [[2024-08-16]]
```
&emsp;
&emsp;

@ -1,12 +0,0 @@
---
title: "🧚🏼 Arrivée Meggi-mo"
allDay: true
date: 2022-03-19
endDate: 2022-03-20
CollapseMetaTable: true
---
# Arrivée de [[@@MRCK|Meggi-mo]]
- [l] Arrivée à [[@@Zürich|Zürich]] de Meggi-mo, le [[2022-03-19|19/03/2022]].

@ -1,11 +0,0 @@
---
title: "🧚🏼 Départ de Meggi-mo"
allDay: true
date: 2022-03-24
endDate: 2022-03-25
CollapseMetaTable: true
---
# Départ de Meggi-mo
Départ de ma [[@@MRCK|Meggi-mo]] le [[2022-03-24|24/03/2022]].

@ -1,9 +0,0 @@
---
title: "👨‍👩‍👧 Arrivée de Papa"
allDay: false
startTime: 20:25
endTime: 20:30
date: 2022-03-31
---
- [l] [[2022-03-31]], arrivée de [[Amaury de Villeneuve|Papa]] à [[@@Zürich|Zürich]]

@ -1,9 +0,0 @@
---
title: "👨‍👩‍👧 Départ Papa"
allDay: false
startTime: 13:30
endTime: 14:00
date: 2022-04-04
---
[[2022-04-04]], départ de [[Amaury de Villeneuve|Papa]]

@ -1,11 +0,0 @@
---
title: "🗳 1er tour Présidentielle"
allDay: true
date: 2022-04-10
endDate: 2022-04-11
CollapseMetaTable: true
---
1er tour des élections présidentielles à [[@@Paris|Paris]], le [[2022-04-10|10 avril 2022]]; avec [[@@MRCK|Meggi-mo]] dans l'isoloir.

@ -1,8 +0,0 @@
---
title: "🗳 2nd tour élections présidentielles"
allDay: true
date: 2022-04-24
endDate: 2022-04-25
---
2nd tour des élections présidentielles le [[2022-04-24|24 Avril]] à [[@@Paris|Paris]].

@ -1,9 +0,0 @@
---
title: "🛩 Arrivée à Lisbonne"
allDay: false
startTime: 16:00
endTime: 16:30
date: 2022-04-27
---
Arrival on [[2022-04-27|this day]] in [[Lisbon]].

@ -1,9 +0,0 @@
---
title: "🛩 Départ de Lisbonne"
allDay: false
startTime: 15:30
endTime: 16:00
date: 2022-05-01
---
Departure from [[Lisbon]] to [[@@Zürich|Zürich]] [[2022-05-01|this day]].

@ -1,9 +0,0 @@
---
title: "🧚🏼 Definite arrival of Meggi-mo to Züzü"
allDay: true
startTime: 06:30
endTime: 07:00
date: 2022-05-15
---
[[@@MRCK|Meggi-mo]] is arriving to [[@@Zürich|Zürich]] for good on [[2022-05-15|that day]].

@ -1,17 +0,0 @@
---
title: "🚆 Weekend in GVA"
allDay: true
date: 2022-10-14
endDate: 2022-10-17
CollapseMetaTable: true
---
Weekend à [[Geneva]] avec [[@@MRCK|Meggi-mo]].
&emsp;
Départ: [[2022-10-14]] de [[@@Zürich|Zürich]]
Retour: [[2022-10-16]] à [[@@Zürich|Zürich]]

@ -1,16 +0,0 @@
---
title: "🗼 Weekend à Paris"
allDay: true
date: 2022-10-21
endDate: 2022-10-24
CollapseMetaTable: true
---
Weekend à [[@@Paris|Paris]] avec [[@@MRCK|Meggi-mo]].
&emsp;
Départ: [[2022-10-21]] de [[@@Zürich|Zürich]]
Retour: [[2022-10-23]] à [[@@Zürich|Zürich]]

@ -1,10 +0,0 @@
---
title: "💍 Fiançailles Marguerite & Arnold"
allDay: false
startTime: 16:30
endTime: 15:00
date: 2022-11-19
CollapseMetaTable: true
---
Fiançailles de [[Marguerite de Villeneuve|Marguerite]] et [[Arnold Moulin|Arnold]] [[2022-11-19|ce jour]] à [[Geneva|Genève]].

@ -1,12 +0,0 @@
---
title: "👪 Papa à Zürich"
allDay: true
date: 2022-12-26
endDate: 2022-12-31
completed: null
CollapseMetaTable: true
---
[[Amaury de Villeneuve|Papa]] arrive à [[@@Zürich|Zürich]] le [[2022-12-26|26 décembre]] à 13h26.

@ -1,12 +0,0 @@
---
title: "Stef & Kyna in Zürich"
allDay: true
date: 2022-12-30
endDate: 2023-01-05
completed: null
CollapseMetaTable: true
---
Stef & Kyna arrivent à [[@@Zürich|Zürich]] le [[2022-12-30|30 décembre]] avec Swiss le matin.

@ -1,13 +0,0 @@
---
title: Médecin
allDay: false
startTime: 11:15
endTime: 12:15
date: 2023-01-23
completed: null
CollapseMetaTable: true
---
[[2023-01-23|Ce jour]], 1er RDV avec [[Dr Cleopatra Morales]].

@ -1,12 +0,0 @@
---
title: Genève
allDay: true
date: 2023-02-06
endDate: 2023-02-08
completed: null
CollapseMetaTable: true
---
Depart à [[Geneva|Genève]] [[2023-02-06|ce jour]] et retour le [[223-02-07|lendemain]].

@ -1,13 +0,0 @@
---
title: ⚕ Médecin
allDay: false
startTime: 12:15
endTime: 13:15
date: 2023-02-09
completed: null
CollapseMetaTable: true
---
[[2023-02-09|Ce jour]], RDV de suivi avec [[Dr Cleopatra Morales]]

@ -1,91 +0,0 @@
---
title: "👰‍♀ Mariage Eloi & Zélie"
allDay: true
date: 2023-02-10
endDate: 2023-02-12
CollapseMetaTable: true
---
Mariage d[[Eloi de Villeneuve|Éloi]] avec [[Zélie]] en [[@France|Bretagne]] (Rennes) [[2023-02-11|ce jour]].
&emsp;
🚆: 23h11, arrivée à Rennes
&emsp;
🏨: **Hotel Saint Antoine**<br>27 avenue Janvier<br>Rennes
&emsp;
### Vendredi 10 Février
&emsp;
#### 17h: Mariage civil
Mairie de Montfort-sur-Meu (35)
&emsp;
#### 20h30: Veillée de Prière
Chapelle du château de la Châsse
Iffendic (35)
&emsp;
---
&emsp;
### Samedi 11 Février
&emsp;
#### 14h: Messe de Mariage
Saint-Louis-Marie
Montfort-sur-Meu (35)
&emsp;
#### 16h30: Cocktail
Château de la Châsse
Iffendic (35)
&emsp;
#### 19h30: Dîner
Château de la Châsse
Iffendic (35)
&emsp;
---
&emsp;
### Dimanche 12 Février
&emsp;
#### 11h: Messe
Chapelle du château de la Châsse
Iffendic (35)
&emsp;
#### 12h: Déjeuner breton
Château de la Châsse
Iffendic (35)
&emsp;
🚆: 13h35, départ de Rennes

@ -1,13 +0,0 @@
---
title: 🎬 Tár @ Riff Raff
allDay: false
startTime: 20:30
endTime: 22:30
date: 2023-02-19
completed: null
CollapseMetaTable: true
---
[[2023-02-19|Ce jour]], [[Tár (2022)]] @ [[Riff Raff Kino Bar]].

@ -1,12 +0,0 @@
---
title: 🩺 Médecin
allDay: false
startTime: 15:00
endTime: 15:30
date: 2023-03-06
completed: null
CollapseMetaTable: true
---
[[2023-03-06|Ce jour]], rdv avec [[Dr Awad Abuawad]]

@ -1,13 +0,0 @@
---
title: 👨‍👩‍👧‍👦 Marg & Arnold à Zürich
allDay: true
date: 2023-03-11
endDate: 2023-03-13
completed: null
CollapseMetaTable: true
---
Arrivée le [[2023-03-11|11 mars]] de [[Marguerite de Villeneuve|Marg]] et [[Arnold Moulin|Arnold]].
Départ le [[2023-03-12|lendemain]].

@ -1,12 +0,0 @@
---
title: 👨‍👩‍👧‍👦 Molly & boyfriend in Zürich
allDay: true
date: 2023-03-18
endDate: 2023-03-20
completed: null
CollapseMetaTable: true
---
Weekend in [[@@Zürich|Zürich]] for [[@@MRCK|Meggi-mo]]s cousin Molly and boyfriend.
Arrival on [[2023-03-18|18th March]] and departure on Monday [[2023-03-20|20th March]].

@ -1,13 +0,0 @@
---
title: 🩺 Médecin
allDay: false
startTime: 11:45
endTime: 12:15
date: 2023-04-14
completed: null
CollapseMetaTable: true
---
[[2023-04-14|Ce jour]], rdv avec [[Dr Cleopatra Morales]]

@ -1,10 +0,0 @@
---
title: 🏠 Arrivée Papa
allDay: false
startTime: 20:26
endTime: 21:26
date: 2023-12-21
completed: null
---
[[2023-12-21|Ce jour]], arrivée de [[Amaury de Villeneuve|Papa]] à [[@@Zürich|Zürich]]

@ -1,10 +0,0 @@
---
title: 🗼 Départ Papa
allDay: false
startTime: 13:30
endTime: 14:30
date: 2023-12-27
completed: null
---
[[2023-12-27|Ce jour]], départ de [[Amaury de Villeneuve|Papa]] de [[@@Zürich|Zürich]] pour [[@@Paris|Paris]]

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.6 MiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.6 MiB

@ -1,8 +0,0 @@
```itinerary-event
title: <% tp.file.selection() %>
start: 2022-05-20T00:00
end: 2022-05-23T00:00
color: darkmagenta
tag:
-
```

@ -1,8 +0,0 @@
```itinerary-event
title: <% tp.file.selection() %>
start: 2022-05-20T00:00
end: 2022-05-23T00:00
color: blue
tag:
-
```

@ -1,8 +0,0 @@
```itinerary-event
title: <% tp.file.selection() %>
start: 2022-05-20T00:00
startTimeZone:
end: 2022-05-23T00:00
endTimeZone:
color: grey
```

@ -1,8 +0,0 @@
```itinerary-event
title: <% tp.file.selection() %>
start: 2022-05-20T00:00
end: 2022-05-23T00:00
color: orange
tag:
-
```

@ -1,8 +0,0 @@
```itinerary-event
title: <% tp.file.selection() %>
start: 2022-05-20T00:00
end: 2022-05-23T00:00
color: yellow
tag:
-
```

@ -1,8 +0,0 @@
```itinerary-event
title: <% tp.file.selection() %>
start: 2022-05-20T00:00
end: 2022-05-23T00:00
color: brown
tag:
-
```

@ -1,7 +0,0 @@
```itinerary-event
title: <% tp.file.selection() %>
allDay: yes
start: 2022-05-20
end: 2022-05-23
color: green
```

@ -1,4 +0,0 @@
```itinerary
initialDate: 2022-05-15
initialView: listMonth
```

@ -1,8 +0,0 @@
```itinerary-event
title: <% tp.file.selection() %>
start: 2022-05-20T00:00
end: 2022-05-23T00:00
color: red
tag:
-
```

@ -101,7 +101,7 @@ taskFunc.getPriorityTasks({app, dv, luxon, that:this, theme: })
&emsp;
**[[Template Task]]**
**[[☑️ Template Task]]**
```tasks
not done
@ -142,7 +142,7 @@ hide task count
#### Completed tasks
**[[Template Task]]**
**[[☑️ Template Task]]**
```tasks
done

Some files were not shown because too many files have changed in this diff Show More

Loading…
Cancel
Save