yet another sunday dump

main
iOS 1 year ago
parent 219423d38d
commit 07a652ca1e

File diff suppressed because one or more lines are too long

@ -1,8 +1,8 @@
{ {
"id": "cmdr", "id": "cmdr",
"name": "Commander", "name": "Commander",
"version": "0.5.0", "version": "0.5.1",
"minAppVersion": "1.1.0", "minAppVersion": "1.4.0",
"description": "Customize your workspace by adding commands everywhere, create Macros and supercharge your mobile toolbar.", "description": "Customize your workspace by adding commands everywhere, create Macros and supercharge your mobile toolbar.",
"author": "jsmorabito & phibr0", "author": "jsmorabito & phibr0",
"authorUrl": "https://github.com/phibr0", "authorUrl": "https://github.com/phibr0",

File diff suppressed because one or more lines are too long

@ -19,7 +19,7 @@
"601d1cc7-a4f3-4f19-aa9f-3bddd7ab6b1d": { "601d1cc7-a4f3-4f19-aa9f-3bddd7ab6b1d": {
"locked": false, "locked": false,
"lockedDeviceName": "iPhone", "lockedDeviceName": "iPhone",
"lastRun": "2023-10-24T08:32:49+02:00" "lastRun": "2023-10-29T09:15:46+01:00"
} }
} }
} }

File diff suppressed because one or more lines are too long

@ -1,7 +1,7 @@
{ {
"id": "customjs", "id": "customjs",
"name": "CustomJS", "name": "CustomJS",
"version": "1.0.14", "version": "1.0.17",
"minAppVersion": "0.9.12", "minAppVersion": "0.9.12",
"description": "This plugin allows for the loading and reuse of custom javascript files inside your vault.", "description": "This plugin allows for the loading and reuse of custom javascript files inside your vault.",
"author": "Sam Lewis", "author": "Sam Lewis",

File diff suppressed because one or more lines are too long

@ -1,7 +1,7 @@
{ {
"id": "dataview", "id": "dataview",
"name": "Dataview", "name": "Dataview",
"version": "0.5.59", "version": "0.5.61",
"minAppVersion": "0.13.11", "minAppVersion": "0.13.11",
"description": "Complex data views for the data-obsessed.", "description": "Complex data views for the data-obsessed.",
"author": "Michael Brenan <blacksmithgu@gmail.com>", "author": "Michael Brenan <blacksmithgu@gmail.com>",

@ -4,10 +4,14 @@
"historyPriority": true, "historyPriority": true,
"historyLimit": 100, "historyLimit": 100,
"history": [ "history": [
":tv:",
":fork_and_knife:",
":book:", ":book:",
":mega:",
":pregnant_woman:",
":shopping:",
":train2:", ":train2:",
":plate_with_cutlery:", ":plate_with_cutlery:",
":fork_and_knife:",
":potable_water:", ":potable_water:",
":potted_plant:", ":potted_plant:",
":peanuts:", ":peanuts:",
@ -17,7 +21,6 @@
":man_cook:", ":man_cook:",
":email:", ":email:",
":salt:", ":salt:",
":tv:",
":telephone_receiver:", ":telephone_receiver:",
":house:", ":house:",
":rugby_football:", ":rugby_football:",
@ -83,7 +86,6 @@
":artist:", ":artist:",
":cat2:", ":cat2:",
":standing_person:", ":standing_person:",
":shopping:",
":croissant:", ":croissant:",
":lemon:", ":lemon:",
":wind_face:", ":wind_face:",

@ -4402,11 +4402,12 @@ class MetaEditParser {
return mTags; return mTags;
} }
async parseFrontmatter(file) { async parseFrontmatter(file) {
var _a; const fileCache = this.app.metadataCache.getFileCache(file);
const frontmatter = (_a = this.app.metadataCache.getFileCache(file)) === null || _a === void 0 ? void 0 : _a.frontmatter; const frontmatter = fileCache === null || fileCache === void 0 ? void 0 : fileCache.frontmatter;
if (!frontmatter) if (!frontmatter)
return []; return [];
const { position: { start, end } } = frontmatter; //@ts-ignore - this is part of the new Obsidian API as of v1.4.1
const { start, end } = fileCache === null || fileCache === void 0 ? void 0 : fileCache.frontmatterPosition;
const filecontent = await this.app.vault.cachedRead(file); const filecontent = await this.app.vault.cachedRead(file);
const yamlContent = filecontent.split("\n").slice(start.line, end.line).join("\n"); const yamlContent = filecontent.split("\n").slice(start.line, end.line).join("\n");
const parsedYaml = obsidian.parseYaml(yamlContent); const parsedYaml = obsidian.parseYaml(yamlContent);
@ -4917,7 +4918,26 @@ class MetaController {
} }
return null; return null;
} }
updateYamlProperty(property, newValue, file) {
const fileCache = this.app.metadataCache.getFileCache(file);
const frontMatter = fileCache.frontmatter;
frontMatter[property.key] = newValue;
return obsidian.stringifyYaml(frontMatter);
}
async updatePropertyInFile(property, newValue, file) { async updatePropertyInFile(property, newValue, file) {
// I'm aware this is hacky. Didn't want to spend a bunch of time rewriting old logic.
// This uses the new frontmatter API to update the frontmatter. Later TODO: rewrite old logic to just do this & clean.
if (property.type === MetaType.YAML) {
const updatedMetaData = `---\n${this.updateYamlProperty(property, newValue, file)}\n---`;
//@ts-ignore
const frontmatterPosition = this.app.metadataCache.getFileCache(file).frontmatterPosition;
const fileContents = await this.app.vault.read(file);
const deleteFrom = frontmatterPosition.start.offset;
const deleteTo = frontmatterPosition.end.offset;
const newFileContents = fileContents.substring(0, deleteFrom) + updatedMetaData + fileContents.substring(deleteTo);
await this.app.vault.modify(file, newFileContents);
return;
}
const fileContent = await this.app.vault.read(file); const fileContent = await this.app.vault.read(file);
const newFileContent = fileContent.split("\n").map(line => { const newFileContent = fileContent.split("\n").map(line => {
if (this.lineMatch(property, line)) { if (this.lineMatch(property, line)) {
@ -4942,7 +4962,7 @@ class MetaController {
let newLine; let newLine;
switch (property.type) { switch (property.type) {
case MetaType.Dataview: case MetaType.Dataview:
const propertyRegex = new RegExp(`([\\(\\[]?)${this.escapeSpecialCharacters(property.key)}::[ ]*[^\\)\\]\n\r]*([\\]\\)]?)`, 'g'); const propertyRegex = new RegExp(`([\\(\\[]?)${this.escapeSpecialCharacters(property.key)}::[ ]*[^\\)\\]\n\r]*(?:\\]\])?([\\]\\)]?)`, 'g');
newLine = line.replace(propertyRegex, `$1${property.key}:: ${newValue}$2`); newLine = line.replace(propertyRegex, `$1${property.key}:: ${newValue}$2`);
break; break;
case MetaType.YAML: case MetaType.YAML:
@ -5358,7 +5378,7 @@ class KanbanHelper extends OnFileModifyAutomator {
} }
getLinkFile(link) { getLinkFile(link) {
const markdownFiles = this.app.vault.getMarkdownFiles(); const markdownFiles = this.app.vault.getMarkdownFiles();
return markdownFiles.find(f => f.path.includes(`${link.link}.md`)); return markdownFiles.find(f => f.path.endsWith(`/${link.link}.md`) || f.path === `${link.link}.md`);
} }
async updateFilesInBoard(links, board, kanbanBoardFileContent) { async updateFilesInBoard(links, board, kanbanBoardFileContent) {
for (const link of links) { for (const link of links) {
@ -5366,7 +5386,7 @@ class KanbanHelper extends OnFileModifyAutomator {
const linkIsMarkdownFile = !!abstractFileToMarkdownTFile(linkFile); const linkIsMarkdownFile = !!abstractFileToMarkdownTFile(linkFile);
if (!linkFile || !linkIsMarkdownFile) { if (!linkFile || !linkIsMarkdownFile) {
log.logMessage(`${link.link} is not updatable for the KanbanHelper.`); log.logMessage(`${link.link} is not updatable for the KanbanHelper.`);
return; continue;
} }
await this.updateFileInBoard(link, linkFile, board, kanbanBoardFileContent); await this.updateFileInBoard(link, linkFile, board, kanbanBoardFileContent);
} }
@ -5374,7 +5394,7 @@ class KanbanHelper extends OnFileModifyAutomator {
async updateFileInBoard(link, linkFile, board, kanbanBoardFileContent) { async updateFileInBoard(link, linkFile, board, kanbanBoardFileContent) {
const heading = this.getTaskHeading(link.original, kanbanBoardFileContent); const heading = this.getTaskHeading(link.original, kanbanBoardFileContent);
if (!heading) { if (!heading) {
log.logWarning("found linked file but could not get heading for task."); log.logMessage(`found linked file ${link.link} but could not get heading for task.`);
return; return;
} }
const fileProperties = await this.plugin.controller.getPropertiesInFile(linkFile); const fileProperties = await this.plugin.controller.getPropertiesInFile(linkFile);

@ -1,8 +1,8 @@
{ {
"id": "metaedit", "id": "metaedit",
"name": "MetaEdit", "name": "MetaEdit",
"version": "1.8.0", "version": "1.8.2",
"minAppVersion": "0.12.0", "minAppVersion": "1.4.1",
"description": "MetaEdit helps you manage your metadata.", "description": "MetaEdit helps you manage your metadata.",
"author": "Christian B. B. Houmann", "author": "Christian B. B. Houmann",
"authorUrl": "https://bagerbach.com", "authorUrl": "https://bagerbach.com",

@ -12,8 +12,8 @@
"checkpointList": [ "checkpointList": [
{ {
"path": "/", "path": "/",
"date": "2023-10-24", "date": "2023-10-29",
"size": 19083479 "size": 19172347
} }
], ],
"activityHistory": [ "activityHistory": [
@ -2623,6 +2623,26 @@
{ {
"date": "2023-10-24", "date": "2023-10-24",
"value": 21761 "value": 21761
},
{
"date": "2023-10-25",
"value": 1818
},
{
"date": "2023-10-26",
"value": 2711
},
{
"date": "2023-10-27",
"value": 5219
},
{
"date": "2023-10-28",
"value": 2821
},
{
"date": "2023-10-29",
"value": 77917
} }
] ]
} }

File diff suppressed because one or more lines are too long

@ -1,7 +1,7 @@
{ {
"id": "obsidian-book-search-plugin", "id": "obsidian-book-search-plugin",
"name": "Book Search", "name": "Book Search",
"version": "0.5.10", "version": "0.5.11",
"minAppVersion": "0.15.0", "minAppVersion": "0.15.0",
"description": "Helps you find books and create notes.", "description": "Helps you find books and create notes.",
"author": "anpigon", "author": "anpigon",

@ -1520,7 +1520,7 @@
"links": 18 "links": 18
}, },
"05.02 Networks/Configuring UFW.md": { "05.02 Networks/Configuring UFW.md": {
"size": 14531, "size": 16141,
"tags": 2, "tags": 2,
"links": 7 "links": 7
}, },
@ -1570,7 +1570,7 @@
"links": 1 "links": 1
}, },
"01.02 Home/Household.md": { "01.02 Home/Household.md": {
"size": 2917, "size": 3283,
"tags": 2, "tags": 2,
"links": 2 "links": 2
}, },
@ -1775,7 +1775,7 @@
"links": 8 "links": 8
}, },
"01.01 Life Orga/@Lifestyle.md": { "01.01 Life Orga/@Lifestyle.md": {
"size": 2603, "size": 3310,
"tags": 4, "tags": 4,
"links": 8 "links": 8
}, },
@ -3885,9 +3885,9 @@
"links": 3 "links": 3
}, },
"01.02 Home/Life - Practical infos.md": { "01.02 Home/Life - Practical infos.md": {
"size": 2622, "size": 2894,
"tags": 2, "tags": 2,
"links": 13 "links": 14
}, },
"00.06 Professional/@@Professional.md": { "00.06 Professional/@@Professional.md": {
"size": 1231, "size": 1231,
@ -7486,7 +7486,7 @@
}, },
"02.03 Zürich/Baur au Lac.md": { "02.03 Zürich/Baur au Lac.md": {
"size": 1546, "size": 1546,
"tags": 0, "tags": 1,
"links": 2 "links": 2
}, },
"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": {
@ -8799,11 +8799,6 @@
"tags": 0, "tags": 0,
"links": 2 "links": 2
}, },
"00.02 Inbox/Le Camp des Saints.md": {
"size": 885,
"tags": 1,
"links": 1
},
"00.03 News/Is Fox News Really Doomed.md": { "00.03 News/Is Fox News Really Doomed.md": {
"size": 23014, "size": 23014,
"tags": 3, "tags": 3,
@ -11252,7 +11247,7 @@
"00.03 News/Winging It with the New Backcountry Barnstormers.md": { "00.03 News/Winging It with the New Backcountry Barnstormers.md": {
"size": 5466, "size": 5466,
"tags": 3, "tags": 3,
"links": 1 "links": 2
}, },
"00.03 News/A crumbling, long-forgotten statue with an unusual erect phallus might be a Michelangelo. Renaissance scholars want hard evidence..md": { "00.03 News/A crumbling, long-forgotten statue with an unusual erect phallus might be a Michelangelo. Renaissance scholars want hard evidence..md": {
"size": 26003, "size": 26003,
@ -11266,8 +11261,8 @@
}, },
"00.03 News/The Crimes Behind the Seafood You Eat.md": { "00.03 News/The Crimes Behind the Seafood You Eat.md": {
"size": 62034, "size": 62034,
"tags": 4, "tags": 5,
"links": 1 "links": 2
}, },
"00.02 Inbox/Babysitter.md": { "00.02 Inbox/Babysitter.md": {
"size": 886, "size": 886,
@ -11279,11 +11274,6 @@
"tags": 0, "tags": 0,
"links": 4 "links": 4
}, },
"00.02 Inbox/La Prochaine Fois que tu Mordras la Poussière.md": {
"size": 1064,
"tags": 1,
"links": 1
},
"00.03 News/Orcas are learning terrifying new behaviors. Are they getting smarter.md": { "00.03 News/Orcas are learning terrifying new behaviors. Are they getting smarter.md": {
"size": 13851, "size": 13851,
"tags": 4, "tags": 4,
@ -11293,14 +11283,114 @@
"size": 1255, "size": 1255,
"tags": 0, "tags": 0,
"links": 7 "links": 7
},
"00.01 Admin/Calendars/2023-10-25.md": {
"size": 1412,
"tags": 0,
"links": 7
},
"00.01 Admin/Calendars/Events/2023-10-25 ⚽️ PSG AC Milan (3-0).md": {
"size": 247,
"tags": 0,
"links": 3
},
"00.01 Admin/Calendars/2023-10-26.md": {
"size": 1856,
"tags": 0,
"links": 9
},
"03.01 Reading list/Le Camp des Saints.md": {
"size": 978,
"tags": 1,
"links": 2
},
"03.01 Reading list/La Prochaine Fois que tu Mordras la Poussière.md": {
"size": 1064,
"tags": 1,
"links": 2
},
"03.04 Cinematheque/Gangs of London (2020).md": {
"size": 2705,
"tags": 0,
"links": 1
},
"00.01 Admin/Calendars/2023-10-27.md": {
"size": 1412,
"tags": 0,
"links": 5
},
"00.01 Admin/Calendars/2023-10-28.md": {
"size": 1412,
"tags": 0,
"links": 6
},
"01.02 Home/Vinyls.md": {
"size": 1257,
"tags": 4,
"links": 1
},
"00.01 Admin/Calendars/2023-10-29.md": {
"size": 1412,
"tags": 0,
"links": 8
},
"00.03 News/How workers remove toxic debris and ash after Hawaii wildfires.md": {
"size": 14963,
"tags": 5,
"links": 1
},
"00.03 News/The Evolutionary Reasons We Are Drawn to Horror Movies and Haunted Houses.md": {
"size": 23338,
"tags": 3,
"links": 1
},
"00.03 News/Bill Wattersons Life After “Calvin and Hobbes”.md": {
"size": 17592,
"tags": 4,
"links": 1
},
"00.03 News/They Cracked the Code to a Locked USB Drive Worth $235 Million in Bitcoin. Then It Got Weird.md": {
"size": 16293,
"tags": 3,
"links": 1
},
"00.01 Admin/Calendars/Events/2023-11-07 ⚽️ AC Milan - PSG.md": {
"size": 200,
"tags": 0,
"links": 3
},
"00.01 Admin/Calendars/Events/2023-11-28 ⚽️ PSG - Newcastle Utd.md": {
"size": 185,
"tags": 0,
"links": 2
},
"00.01 Admin/Calendars/Events/2023-12-13 ⚽️ Borussia - PSG.md": {
"size": 171,
"tags": 0,
"links": 2
},
"00.01 Admin/Calendars/Events/2023-10-29 ⚽️ Brest 29 - PSG (2-3).md": {
"size": 274,
"tags": 0,
"links": 2
},
"02.02 Paris/Les Disques du Yeti.md": {
"size": 1579,
"tags": 3,
"links": 2
},
"02.03 Zürich/Ski Rental Zürich.md": {
"size": 1523,
"tags": 2,
"links": 1
} }
}, },
"commitTypes": { "commitTypes": {
"/": { "/": {
"Refactor": 6183, "Refactor": 6198,
"Create": 2088, "Create": 2108,
"Link": 8133, "Link": 8180,
"Expand": 1832 "Expand": 1857
} }
}, },
"dailyCommits": { "dailyCommits": {
@ -11313,38 +11403,63 @@
"5": 14, "5": 14,
"6": 69, "6": 69,
"7": 769, "7": 769,
"8": 1020, "8": 1030,
"9": 960, "9": 965,
"10": 643, "10": 644,
"11": 498, "11": 501,
"12": 6631, "12": 6650,
"13": 525, "13": 540,
"14": 469, "14": 477,
"15": 540, "15": 542,
"16": 638, "16": 638,
"17": 685, "17": 700,
"18": 863, "18": 873,
"19": 612, "19": 612,
"20": 588, "20": 592,
"21": 608, "21": 615,
"22": 576, "22": 580,
"23": 1259 "23": 1263
} }
}, },
"weeklyCommits": { "weeklyCommits": {
"/": { "/": {
"Mon": 2641, "Mon": 2641,
"Tue": 1545, "Tue": 1545,
"Wed": 7656, "Wed": 7671,
"Thu": 1068, "Thu": 1086,
"Fri": 1128, "Fri": 1137,
"Sat": 0, "Sat": 0,
"Sun": 4198 "Sun": 4263
} }
}, },
"recentCommits": { "recentCommits": {
"/": { "/": {
"Expanded": [ "Expanded": [
"<a class=\"internal-link\" href=\"01.02 Home/Life - Practical infos.md\"> Life - Practical infos </a>",
"<a class=\"internal-link\" href=\"00.02 Inbox/Ski Rental Zürich.md\"> Ski Rental Zürich </a>",
"<a class=\"internal-link\" href=\"02.02 Paris/Les Disques du Yeti.md\"> Les Disques du Yeti </a>",
"<a class=\"internal-link\" href=\"00.01 Admin/Calendars/Events/2023-10-29 ⚽️ Brest 29 - PSG.md\"> 2023-10-29 ⚽️ Brest 29 - PSG </a>",
"<a class=\"internal-link\" href=\"01.02 Home/Vinyls.md\"> Vinyls </a>",
"<a class=\"internal-link\" href=\"00.01 Admin/Calendars/Events/2023-10-29 ⚽️ Brest 29 - PSG.md\"> 2023-10-29 ⚽️ Brest 29 - PSG </a>",
"<a class=\"internal-link\" href=\"00.01 Admin/Calendars/Events/2023-11-07 ⚽️ AC Milan - PSG.md\"> 2023-11-07 ⚽️ AC Milan - PSG </a>",
"<a class=\"internal-link\" href=\"00.01 Admin/Calendars/Events/2023-11-28 ⚽️ PSG - Newcastle Utd.md\"> 2023-11-28 ⚽️ PSG - Newcastle Utd </a>",
"<a class=\"internal-link\" href=\"00.01 Admin/Calendars/Events/2023-12-13 ⚽️ Borussia - PSG.md\"> 2023-12-13 ⚽️ Borussia - PSG </a>",
"<a class=\"internal-link\" href=\"00.01 Admin/Calendars/Events/2023-10-29 ⚽️ Brest 29 - PSG.md\"> 2023-10-29 ⚽️ Brest 29 - PSG </a>",
"<a class=\"internal-link\" href=\"00.01 Admin/Calendars/Events/2023-10-29 ⚽️ Brest 29 - PSG.md\"> 2023-10-29 ⚽️ Brest 29 - PSG </a>",
"<a class=\"internal-link\" href=\"00.01 Admin/Calendars/Events/2023-10-29 ⚽️ Brest 29 - PSG.md\"> 2023-10-29 ⚽️ Brest 29 - PSG </a>",
"<a class=\"internal-link\" href=\"01.02 Home/Household.md\"> Household </a>",
"<a class=\"internal-link\" href=\"01.02 Home/Vinyls.md\"> Vinyls </a>",
"<a class=\"internal-link\" href=\"01.02 Home/Vinyls.md\"> Vinyls </a>",
"<a class=\"internal-link\" href=\"05.02 Networks/Configuring UFW.md\"> Configuring UFW </a>",
"<a class=\"internal-link\" href=\"00.01 Admin/Calendars/2023-10-26.md\"> 2023-10-26 </a>",
"<a class=\"internal-link\" href=\"00.01 Admin/Calendars/2023-10-26.md\"> 2023-10-26 </a>",
"<a class=\"internal-link\" href=\"01.01 Life Orga/@Lifestyle.md\"> @Lifestyle </a>",
"<a class=\"internal-link\" href=\"00.01 Admin/Calendars/2023-10-26.md\"> 2023-10-26 </a>",
"<a class=\"internal-link\" href=\"03.01 Reading list/Le Camp des Saints.md\"> Le Camp des Saints </a>",
"<a class=\"internal-link\" href=\"00.01 Admin/Calendars/Events/2023-10-25 ⚽️ PSG AC Milan.md\"> 2023-10-25 ⚽️ PSG AC Milan </a>",
"<a class=\"internal-link\" href=\"00.01 Admin/Calendars/Events/2023-10-25 ⚽️ PSG AC Milan.md\"> 2023-10-25 ⚽️ PSG AC Milan </a>",
"<a class=\"internal-link\" href=\"00.01 Admin/Calendars/Events/2023-10-25 ⚽️ PSG AC Milan.md\"> 2023-10-25 ⚽️ PSG AC Milan </a>",
"<a class=\"internal-link\" href=\"00.01 Admin/Calendars/Events/2023-10-25 ⚽️ PSG AC Milan.md\"> 2023-10-25 ⚽️ PSG AC Milan </a>",
"<a class=\"internal-link\" href=\"00.02 Inbox/La Prochaine Fois que tu Mordras la Poussière.md\"> La Prochaine Fois que tu Mordras la Poussière </a>", "<a class=\"internal-link\" href=\"00.02 Inbox/La Prochaine Fois que tu Mordras la Poussière.md\"> La Prochaine Fois que tu Mordras la Poussière </a>",
"<a class=\"internal-link\" href=\"00.02 Inbox/La Prochaine Fois que tu Mordras la Poussière.md\"> La Prochaine Fois que tu Mordras la Poussière </a>", "<a class=\"internal-link\" href=\"00.02 Inbox/La Prochaine Fois que tu Mordras la Poussière.md\"> La Prochaine Fois que tu Mordras la Poussière </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>",
@ -11370,34 +11485,29 @@
"<a class=\"internal-link\" href=\"00.01 Admin/Calendars/2023-10-03.md\"> 2023-10-03 </a>", "<a class=\"internal-link\" href=\"00.01 Admin/Calendars/2023-10-03.md\"> 2023-10-03 </a>",
"<a class=\"internal-link\" href=\"00.02 Inbox/Template.md\"> Template </a>", "<a class=\"internal-link\" href=\"00.02 Inbox/Template.md\"> Template </a>",
"<a class=\"internal-link\" href=\"00.02 Inbox/Template.md\"> Template </a>", "<a class=\"internal-link\" href=\"00.02 Inbox/Template.md\"> Template </a>",
"<a class=\"internal-link\" href=\"00.02 Inbox/Template.md\"> Template </a>", "<a class=\"internal-link\" href=\"00.02 Inbox/Template.md\"> Template </a>"
"<a class=\"internal-link\" href=\"00.02 Inbox/Template.md\"> Template </a>",
"<a class=\"internal-link\" href=\"00.02 Inbox/Template.md\"> Template </a>",
"<a class=\"internal-link\" href=\"00.02 Inbox/Template.md\"> Template </a>",
"<a class=\"internal-link\" href=\"00.02 Inbox/Template.md\"> Template </a>",
"<a class=\"internal-link\" href=\"00.02 Inbox/Template.md\"> Template </a>",
"<a class=\"internal-link\" href=\"00.02 Inbox/Template.md\"> Template </a>",
"<a class=\"internal-link\" href=\"00.02 Inbox/Template.md\"> Template </a>",
"<a class=\"internal-link\" href=\"00.02 Inbox/Template.md\"> Template </a>",
"<a class=\"internal-link\" href=\"00.02 Inbox/Template.md\"> Template </a>",
"<a class=\"internal-link\" href=\"01.08 Garden/@Plants.md\"> @Plants </a>",
"<a class=\"internal-link\" href=\"00.02 Inbox/Plants.md\"> Plants </a>",
"<a class=\"internal-link\" href=\"01.08 Garden/Viorne Tin.md\"> Viorne Tin </a>",
"<a class=\"internal-link\" href=\"01.08 Garden/Viorne Tin.md\"> Viorne Tin </a>",
"<a class=\"internal-link\" href=\"00.01 Admin/Templates/Template Plant.md\"> Template Plant </a>",
"<a class=\"internal-link\" href=\"00.02 Inbox/Viorne Tin.md\"> Viorne Tin </a>",
"<a class=\"internal-link\" href=\"00.02 Inbox/Viorne Tin.md\"> Viorne Tin </a>",
"<a class=\"internal-link\" href=\"00.02 Inbox/Viorne Tin.md\"> Viorne Tin </a>",
"<a class=\"internal-link\" href=\"00.02 Inbox/Viorne Tin.md\"> Viorne Tin </a>",
"<a class=\"internal-link\" href=\"04.01 lebv.org/Hosting Tasks.md\"> Hosting Tasks </a>",
"<a class=\"internal-link\" href=\"00.01 Admin/Calendars/2023-10-02.md\"> 2023-10-02 </a>",
"<a class=\"internal-link\" href=\"01.07 Animals/2023-09-29 Transport to Field.md\"> 2023-09-29 Transport to Field </a>",
"<a class=\"internal-link\" href=\"00.02 Inbox/20230929 Transport to Field.md\"> 20230929 Transport to Field </a>",
"<a class=\"internal-link\" href=\"00.01 Admin/Calendars/2023-10-02.md\"> 2023-10-02 </a>",
"<a class=\"internal-link\" href=\"00.01 Admin/Calendars/2023-10-01.md\"> 2023-10-01 </a>",
"<a class=\"internal-link\" href=\"00.02 Inbox/William's ButchersTable.md\"> William's ButchersTable </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.01 Admin/Calendars/Events/2023-12-13 ⚽️ Borussia - PSG.md\"> 2023-12-13 ⚽️ Borussia - PSG </a>",
"<a class=\"internal-link\" href=\"00.01 Admin/Calendars/Events/2023-11-28 ⚽️ PSG - Newcastle Utd.md\"> 2023-11-28 ⚽️ PSG - Newcastle Utd </a>",
"<a class=\"internal-link\" href=\"00.01 Admin/Calendars/Events/2023-11-07 ⚽️ AC Milan - PSG.md\"> 2023-11-07 ⚽️ AC Milan - PSG </a>",
"<a class=\"internal-link\" href=\"00.01 Admin/Calendars/Events/2023-10-29 ⚽️ Brest 29 - PSG.md\"> 2023-10-29 ⚽️ Brest 29 - PSG </a>",
"<a class=\"internal-link\" href=\"00.02 Inbox/They Cracked the Code to a Locked USB Drive Worth $235 Million in Bitcoin. Then It Got Weird.md\"> They Cracked the Code to a Locked USB Drive Worth $235 Million in Bitcoin. Then It Got Weird </a>",
"<a class=\"internal-link\" href=\"00.02 Inbox/Bill Wattersons Life After “Calvin and Hobbes”.md\"> Bill Wattersons Life After “Calvin and Hobbes” </a>",
"<a class=\"internal-link\" href=\"00.02 Inbox/The Evolutionary Reasons We Are Drawn to Horror Movies and Haunted Houses.md\"> The Evolutionary Reasons We Are Drawn to Horror Movies and Haunted Houses </a>",
"<a class=\"internal-link\" href=\"00.02 Inbox/How workers remove toxic debris and ash after Hawaii wildfires.md\"> How workers remove toxic debris and ash after Hawaii wildfires </a>",
"<a class=\"internal-link\" href=\"00.01 Admin/Calendars/2023-10-29.md\"> 2023-10-29 </a>",
"<a class=\"internal-link\" href=\"00.02 Inbox/Actual Life 2 Piano (February 2 - October 15 2021) (by Fred again - 2022).md\"> Actual Life 2 Piano (February 2 - October 15 2021) (by Fred again - 2022) </a>",
"<a class=\"internal-link\" href=\"00.02 Inbox/Untitled.md\"> Untitled </a>",
"<a class=\"internal-link\" href=\"00.01 Admin/Calendars/2023-10-28.md\"> 2023-10-28 </a>",
"<a class=\"internal-link\" href=\"00.01 Admin/Calendars/2023-10-27.md\"> 2023-10-27 </a>",
"<a class=\"internal-link\" href=\"00.02 Inbox/Gangs of London (2020).md\"> Gangs of London (2020) </a>",
"<a class=\"internal-link\" href=\"00.01 Admin/Calendars/2023-10-26.md\"> 2023-10-26 </a>",
"<a class=\"internal-link\" href=\"00.01 Admin/Calendars/Events/2023-10-25 ⚽️ PSG AC Milan.md\"> 2023-10-25 ⚽️ PSG AC Milan </a>",
"<a class=\"internal-link\" href=\"00.02 Inbox/Untitled.md\"> Untitled </a>",
"<a class=\"internal-link\" href=\"00.01 Admin/Calendars/2023-10-25.md\"> 2023-10-25 </a>",
"<a class=\"internal-link\" href=\"00.01 Admin/Calendars/2023-10-24.md\"> 2023-10-24 </a>", "<a class=\"internal-link\" href=\"00.01 Admin/Calendars/2023-10-24.md\"> 2023-10-24 </a>",
"<a class=\"internal-link\" href=\"00.02 Inbox/Orcas are learning terrifying new behaviors. Are they getting smarter.md\"> Orcas are learning terrifying new behaviors. Are they getting smarter </a>", "<a class=\"internal-link\" href=\"00.02 Inbox/Orcas are learning terrifying new behaviors. Are they getting smarter.md\"> Orcas are learning terrifying new behaviors. Are they getting smarter </a>",
"<a class=\"internal-link\" href=\"00.02 Inbox/La Prochaine Fois que tu Mordras la Poussière.md\"> La Prochaine Fois que tu Mordras la Poussière </a>", "<a class=\"internal-link\" href=\"00.02 Inbox/La Prochaine Fois que tu Mordras la Poussière.md\"> La Prochaine Fois que tu Mordras la Poussière </a>",
@ -11428,29 +11538,21 @@
"<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/2023-10-12.md\"> 2023-10-12 </a>", "<a class=\"internal-link\" href=\"00.01 Admin/Calendars/2023-10-12.md\"> 2023-10-12 </a>",
"<a class=\"internal-link\" href=\"00.01 Admin/Calendars/2023-10-11.md\"> 2023-10-11 </a>", "<a class=\"internal-link\" href=\"00.01 Admin/Calendars/2023-10-11.md\"> 2023-10-11 </a>",
"<a class=\"internal-link\" href=\"00.01 Admin/Calendars/2023-10-10.md\"> 2023-10-10 </a>", "<a class=\"internal-link\" href=\"00.01 Admin/Calendars/2023-10-10.md\"> 2023-10-10 </a>"
"<a class=\"internal-link\" href=\"00.01 Admin/Calendars/2023-10-09.md\"> 2023-10-09 </a>",
"<a class=\"internal-link\" href=\"00.02 Inbox/Americas epidemic of chronic illness is killing us too soon.md\"> Americas epidemic of chronic illness is killing us too soon </a>",
"<a class=\"internal-link\" href=\"00.02 Inbox/The Inside Job A crooked cop, a dead man and an $800,000 estate fraud.md\"> The Inside Job A crooked cop, a dead man and an $800,000 estate fraud </a>",
"<a class=\"internal-link\" href=\"00.02 Inbox/In Defense of the Rat Hakai Magazine.md\"> In Defense of the Rat Hakai Magazine </a>",
"<a class=\"internal-link\" href=\"00.02 Inbox/A Young Man's Path Through the Mental Health Care System Led to Prison — and a Fatal Encounter Crime Seven Days.md\"> A Young Man's Path Through the Mental Health Care System Led to Prison — and a Fatal Encounter Crime Seven Days </a>",
"<a class=\"internal-link\" href=\"00.01 Admin/Calendars/2023-10-08.md\"> 2023-10-08 </a>",
"<a class=\"internal-link\" href=\"00.02 Inbox/Untitled.md\"> Untitled </a>",
"<a class=\"internal-link\" href=\"00.02 Inbox/Consent.md\"> Consent </a>",
"<a class=\"internal-link\" href=\"00.01 Admin/Calendars/2023-10-07.md\"> 2023-10-07 </a>",
"<a class=\"internal-link\" href=\"00.01 Admin/Calendars/2023-10-06.md\"> 2023-10-06 </a>",
"<a class=\"internal-link\" href=\"00.01 Admin/Calendars/2023-10-05.md\"> 2023-10-05 </a>",
"<a class=\"internal-link\" href=\"00.02 Inbox/Untitled.md\"> Untitled </a>",
"<a class=\"internal-link\" href=\"00.01 Admin/Calendars/2023-10-04.md\"> 2023-10-04 </a>",
"<a class=\"internal-link\" href=\"00.02 Inbox/Untitled.md\"> Untitled </a>",
"<a class=\"internal-link\" href=\"00.02 Inbox/Template Plant.md\"> Template Plant </a>",
"<a class=\"internal-link\" href=\"00.02 Inbox/Untitled.md\"> Untitled </a>",
"<a class=\"internal-link\" href=\"00.01 Admin/Calendars/2023-10-03.md\"> 2023-10-03 </a>",
"<a class=\"internal-link\" href=\"00.02 Inbox/Untitled.md\"> Untitled </a>",
"<a class=\"internal-link\" href=\"00.01 Admin/Calendars/2023-10-02.md\"> 2023-10-02 </a>",
"<a class=\"internal-link\" href=\"00.02 Inbox/The inequality of heat.md\"> The inequality of heat </a>"
], ],
"Renamed": [ "Renamed": [
"<a class=\"internal-link\" href=\"02.03 Zürich/Ski Rental Zürich.md\"> Ski Rental Zürich </a>",
"<a class=\"internal-link\" href=\"02.02 Paris/Les Disques du Yeti.md\"> Les Disques du Yeti </a>",
"<a class=\"internal-link\" href=\"00.01 Admin/Calendars/Events/2023-10-29 ⚽️ Brest 29 - PSG (2-3).md\"> 2023-10-29 ⚽️ Brest 29 - PSG (2-3) </a>",
"<a class=\"internal-link\" href=\"00.03 News/They Cracked the Code to a Locked USB Drive Worth $235 Million in Bitcoin. Then It Got Weird.md\"> They Cracked the Code to a Locked USB Drive Worth $235 Million in Bitcoin. Then It Got Weird </a>",
"<a class=\"internal-link\" href=\"00.03 News/Bill Wattersons Life After “Calvin and Hobbes”.md\"> Bill Wattersons Life After “Calvin and Hobbes” </a>",
"<a class=\"internal-link\" href=\"00.03 News/The Evolutionary Reasons We Are Drawn to Horror Movies and Haunted Houses.md\"> The Evolutionary Reasons We Are Drawn to Horror Movies and Haunted Houses </a>",
"<a class=\"internal-link\" href=\"00.03 News/How workers remove toxic debris and ash after Hawaii wildfires.md\"> How workers remove toxic debris and ash after Hawaii wildfires </a>",
"<a class=\"internal-link\" href=\"01.02 Home/Vinyls.md\"> Vinyls </a>",
"<a class=\"internal-link\" href=\"03.04 Cinematheque/Gangs of London (2020).md\"> Gangs of London (2020) </a>",
"<a class=\"internal-link\" href=\"03.01 Reading list/La Prochaine Fois que tu Mordras la Poussière.md\"> La Prochaine Fois que tu Mordras la Poussière </a>",
"<a class=\"internal-link\" href=\"03.01 Reading list/Le Camp des Saints.md\"> Le Camp des Saints </a>",
"<a class=\"internal-link\" href=\"00.01 Admin/Calendars/Events/2023-10-25 ⚽️ PSG AC Milan (3-0).md\"> 2023-10-25 ⚽️ PSG AC Milan (3-0) </a>",
"<a class=\"internal-link\" href=\"00.03 News/Orcas are learning terrifying new behaviors. Are they getting smarter.md\"> Orcas are learning terrifying new behaviors. Are they getting smarter </a>", "<a class=\"internal-link\" href=\"00.03 News/Orcas are learning terrifying new behaviors. Are they getting smarter.md\"> Orcas are learning terrifying new behaviors. Are they getting smarter </a>",
"<a class=\"internal-link\" href=\"00.03 News/The Crimes Behind the Seafood You Eat.md\"> The Crimes Behind the Seafood You Eat </a>", "<a class=\"internal-link\" href=\"00.03 News/The Crimes Behind the Seafood You Eat.md\"> The Crimes Behind the Seafood You Eat </a>",
"<a class=\"internal-link\" href=\"00.03 News/How a Sexual Assault Case in St. Johns Exposed a Police Forces Predatory Culture.md\"> How a Sexual Assault Case in St. Johns Exposed a Police Forces Predatory Culture </a>", "<a class=\"internal-link\" href=\"00.03 News/How a Sexual Assault Case in St. Johns Exposed a Police Forces Predatory Culture.md\"> How a Sexual Assault Case in St. Johns Exposed a Police Forces Predatory Culture </a>",
@ -11489,21 +11591,18 @@
"<a class=\"internal-link\" href=\"00.03 News/The radical earnestness of Tony P.md\"> The radical earnestness of Tony P </a>", "<a class=\"internal-link\" href=\"00.03 News/The radical earnestness of Tony P.md\"> The radical earnestness of Tony P </a>",
"<a class=\"internal-link\" href=\"00.03 News/Florida has become a zoo. A literal zoo..md\"> Florida has become a zoo. A literal zoo. </a>", "<a class=\"internal-link\" href=\"00.03 News/Florida has become a zoo. A literal zoo..md\"> Florida has become a zoo. A literal zoo. </a>",
"<a class=\"internal-link\" href=\"00.01 Admin/Calendars/Events/2023-09-24 ⚽️ PSG - O Marseille (4-0).md\"> 2023-09-24 ⚽️ PSG - O Marseille (4-0) </a>", "<a class=\"internal-link\" href=\"00.01 Admin/Calendars/Events/2023-09-24 ⚽️ PSG - O Marseille (4-0).md\"> 2023-09-24 ⚽️ PSG - O Marseille (4-0) </a>",
"<a class=\"internal-link\" href=\"01.07 Animals/2023-09-23 Patron's Cup.md\"> 2023-09-23 Patron's Cup </a>", "<a class=\"internal-link\" href=\"01.07 Animals/2023-09-23 Patron's Cup.md\"> 2023-09-23 Patron's Cup </a>"
"<a class=\"internal-link\" href=\"01.07 Animals/2023-09-22 Vet Clearance.md\"> 2023-09-22 Vet Clearance </a>",
"<a class=\"internal-link\" href=\"01.07 Animals/@@Animals Master.md\"> @@Animals Master </a>",
"<a class=\"internal-link\" href=\"01.07 Animals/Animals Master.md\"> Animals Master </a>",
"<a class=\"internal-link\" href=\"01.07 Animals/2023-09-21 Last ironing.md\"> 2023-09-21 Last ironing </a>",
"<a class=\"internal-link\" href=\"00.01 Admin/Calendars/Events/2023-09-19 ⚽️ PSG - Borussia Dortmund (2-0).md\"> 2023-09-19 ⚽️ PSG - Borussia Dortmund (2-0) </a>",
"<a class=\"internal-link\" href=\"00.01 Admin/Calendars/Events/2023-09-15 ⚽️ PSG - OGC Nice (2-3).md\"> 2023-09-15 ⚽️ PSG - OGC Nice (2-3) </a>",
"<a class=\"internal-link\" href=\"01.07 Animals/2023-09-19 Influenza vaccine.md\"> 2023-09-19 Influenza vaccine </a>",
"<a class=\"internal-link\" href=\"00.03 News/Can We Talk to Whales.md\"> Can We Talk to Whales </a>",
"<a class=\"internal-link\" href=\"00.03 News/The Source Years.md\"> The Source Years </a>",
"<a class=\"internal-link\" href=\"00.03 News/The maestro The man who built the biggest match-fixing ring in tennis.md\"> The maestro The man who built the biggest match-fixing ring in tennis </a>",
"<a class=\"internal-link\" href=\"00.03 News/The Serial Killer Hiding in Plain Sight.md\"> The Serial Killer Hiding in Plain Sight </a>",
"<a class=\"internal-link\" href=\"00.03 News/Gisele Fettermans Had a Hell of a Year.md\"> Gisele Fettermans Had a Hell of a Year </a>"
], ],
"Tagged": [ "Tagged": [
"<a class=\"internal-link\" href=\"02.03 Zürich/Ski Rental Zürich.md\"> Ski Rental Zürich </a>",
"<a class=\"internal-link\" href=\"02.02 Paris/Les Disques du Yeti.md\"> Les Disques du Yeti </a>",
"<a class=\"internal-link\" href=\"00.03 News/They Cracked the Code to a Locked USB Drive Worth $235 Million in Bitcoin. Then It Got Weird.md\"> They Cracked the Code to a Locked USB Drive Worth $235 Million in Bitcoin. Then It Got Weird </a>",
"<a class=\"internal-link\" href=\"00.03 News/Bill Wattersons Life After “Calvin and Hobbes”.md\"> Bill Wattersons Life After “Calvin and Hobbes” </a>",
"<a class=\"internal-link\" href=\"00.03 News/How workers remove toxic debris and ash after Hawaii wildfires.md\"> How workers remove toxic debris and ash after Hawaii wildfires </a>",
"<a class=\"internal-link\" href=\"00.03 News/The Evolutionary Reasons We Are Drawn to Horror Movies and Haunted Houses.md\"> The Evolutionary Reasons We Are Drawn to Horror Movies and Haunted Houses </a>",
"<a class=\"internal-link\" href=\"01.02 Home/Vinyls.md\"> Vinyls </a>",
"<a class=\"internal-link\" href=\"00.03 News/The Crimes Behind the Seafood You Eat.md\"> The Crimes Behind the Seafood You Eat </a>",
"<a class=\"internal-link\" href=\"02.03 Zürich/Baur au Lac.md\"> Baur au Lac </a>",
"<a class=\"internal-link\" href=\"00.03 News/Orcas are learning terrifying new behaviors. Are they getting smarter.md\"> Orcas are learning terrifying new behaviors. Are they getting smarter </a>", "<a class=\"internal-link\" href=\"00.03 News/Orcas are learning terrifying new behaviors. Are they getting smarter.md\"> Orcas are learning terrifying new behaviors. Are they getting smarter </a>",
"<a class=\"internal-link\" href=\"00.02 Inbox/La Prochaine Fois que tu Mordras la Poussière.md\"> La Prochaine Fois que tu Mordras la Poussière </a>", "<a class=\"internal-link\" href=\"00.02 Inbox/La Prochaine Fois que tu Mordras la Poussière.md\"> La Prochaine Fois que tu Mordras la Poussière </a>",
"<a class=\"internal-link\" href=\"00.03 News/The Crimes Behind the Seafood You Eat.md\"> The Crimes Behind the Seafood You Eat </a>", "<a class=\"internal-link\" href=\"00.03 News/The Crimes Behind the Seafood You Eat.md\"> The Crimes Behind the Seafood You Eat </a>",
@ -11545,18 +11644,10 @@
"<a class=\"internal-link\" href=\"00.03 News/Florida has become a zoo. A literal zoo..md\"> Florida has become a zoo. A literal zoo. </a>", "<a class=\"internal-link\" href=\"00.03 News/Florida has become a zoo. A literal zoo..md\"> Florida has become a zoo. A literal zoo. </a>",
"<a class=\"internal-link\" href=\"00.03 News/The radical earnestness of Tony P.md\"> The radical earnestness of Tony P </a>", "<a class=\"internal-link\" href=\"00.03 News/The radical earnestness of Tony P.md\"> The radical earnestness of Tony P </a>",
"<a class=\"internal-link\" href=\"00.02 Inbox/2023-09-23 Patron's Cup.md\"> 2023-09-23 Patron's Cup </a>", "<a class=\"internal-link\" href=\"00.02 Inbox/2023-09-23 Patron's Cup.md\"> 2023-09-23 Patron's Cup </a>",
"<a class=\"internal-link\" href=\"01.07 Animals/2023-09-22 Vet Clearance.md\"> 2023-09-22 Vet Clearance </a>", "<a class=\"internal-link\" href=\"01.07 Animals/2023-09-22 Vet Clearance.md\"> 2023-09-22 Vet Clearance </a>"
"<a class=\"internal-link\" href=\"00.03 News/Americas Surprising Partisan Divide on Life Expectancy.md\"> Americas Surprising Partisan Divide on Life Expectancy </a>",
"<a class=\"internal-link\" href=\"00.02 Inbox/2023-09-21 Last ironing.md\"> 2023-09-21 Last ironing </a>",
"<a class=\"internal-link\" href=\"01.07 Animals/2023-09-19 Influenza vaccine.md\"> 2023-09-19 Influenza vaccine </a>",
"<a class=\"internal-link\" href=\"00.03 News/Can We Talk to Whales.md\"> Can We Talk to Whales </a>",
"<a class=\"internal-link\" href=\"00.03 News/The maestro The man who built the biggest match-fixing ring in tennis.md\"> The maestro The man who built the biggest match-fixing ring in tennis </a>",
"<a class=\"internal-link\" href=\"00.03 News/The Source Years.md\"> The Source Years </a>",
"<a class=\"internal-link\" href=\"00.03 News/Gisele Fettermans Had a Hell of a Year.md\"> Gisele Fettermans Had a Hell of a Year </a>",
"<a class=\"internal-link\" href=\"00.03 News/The Serial Killer Hiding in Plain Sight.md\"> The Serial Killer Hiding in Plain Sight </a>",
"<a class=\"internal-link\" href=\"00.03 News/Confessions of a McKinsey Whistleblower.md\"> Confessions of a McKinsey Whistleblower </a>"
], ],
"Refactored": [ "Refactored": [
"<a class=\"internal-link\" href=\"00.01 Admin/Calendars/2023-10-26.md\"> 2023-10-26 </a>",
"<a class=\"internal-link\" href=\"00.03 News/Rape, Race and a Decades-Old Lie That Still Wounds.md\"> Rape, Race and a Decades-Old Lie That Still Wounds </a>", "<a class=\"internal-link\" href=\"00.03 News/Rape, Race and a Decades-Old Lie That Still Wounds.md\"> Rape, Race and a Decades-Old Lie That Still Wounds </a>",
"<a class=\"internal-link\" href=\"00.03 News/A crumbling, long-forgotten statue with an unusual erect phallus might be a Michelangelo. Renaissance scholars want hard evidence..md\"> A crumbling, long-forgotten statue with an unusual erect phallus might be a Michelangelo. Renaissance scholars want hard evidence. </a>", "<a class=\"internal-link\" href=\"00.03 News/A crumbling, long-forgotten statue with an unusual erect phallus might be a Michelangelo. Renaissance scholars want hard evidence..md\"> A crumbling, long-forgotten statue with an unusual erect phallus might be a Michelangelo. Renaissance scholars want hard evidence. </a>",
"<a class=\"internal-link\" href=\"00.01 Admin/Calendars/2023-10-24.md\"> 2023-10-24 </a>", "<a class=\"internal-link\" href=\"00.01 Admin/Calendars/2023-10-24.md\"> 2023-10-24 </a>",
@ -11606,10 +11697,11 @@
"<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>",
"<a class=\"internal-link\" href=\"00.02 Inbox/sheet pan meatballs with crispy turmeric chickpeas.md\"> sheet pan meatballs with crispy turmeric chickpeas </a>", "<a class=\"internal-link\" href=\"00.02 Inbox/sheet pan meatballs with crispy turmeric chickpeas.md\"> sheet pan meatballs with crispy turmeric chickpeas </a>",
"<a class=\"internal-link\" href=\"00.02 Inbox/Japanese Curry With Winter Squash and Mushrooms.md\"> Japanese Curry With Winter Squash and Mushrooms </a>", "<a class=\"internal-link\" href=\"00.02 Inbox/Japanese Curry With Winter Squash and Mushrooms.md\"> Japanese Curry With Winter Squash and Mushrooms </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/Matar Paneer.md\"> Matar Paneer </a>"
"<a class=\"internal-link\" href=\"00.02 Inbox/cauliflower salad with dates and pistachios.md\"> cauliflower salad with dates and pistachios </a>"
], ],
"Deleted": [ "Deleted": [
"<a class=\"internal-link\" href=\"00.02 Inbox/Actual Life 2 Piano (February 2 - October 15 2021) (by Fred again - 2022).md\"> Actual Life 2 Piano (February 2 - October 15 2021) (by Fred again - 2022) </a>",
"<a class=\"internal-link\" href=\"00.02 Inbox/PSG. AC Milan.md\"> PSG. AC Milan </a>",
"<a class=\"internal-link\" href=\"00.02 Inbox/Template.md\"> Template </a>", "<a class=\"internal-link\" href=\"00.02 Inbox/Template.md\"> Template </a>",
"<a class=\"internal-link\" href=\"02.03 Zürich/William's Butcherstable.md\"> William's Butcherstable </a>", "<a class=\"internal-link\" href=\"02.03 Zürich/William's Butcherstable.md\"> William's Butcherstable </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>",
@ -11658,11 +11750,47 @@
"<a class=\"internal-link\" href=\"02.01 London/Casita Andina.md\"> Casita Andina </a>", "<a class=\"internal-link\" href=\"02.01 London/Casita Andina.md\"> Casita Andina </a>",
"<a class=\"internal-link\" href=\"02.02 Paris/Le Ballroom du Beef Club.md\"> Le Ballroom du Beef Club </a>", "<a class=\"internal-link\" href=\"02.02 Paris/Le Ballroom du Beef Club.md\"> Le Ballroom du Beef Club </a>",
"<a class=\"internal-link\" href=\"00.01 Admin/Calendars/Events/2023-01-15 Rennes - PSG.md\"> 2023-01-15 Rennes - PSG </a>", "<a class=\"internal-link\" href=\"00.01 Admin/Calendars/Events/2023-01-15 Rennes - PSG.md\"> 2023-01-15 Rennes - PSG </a>",
"<a class=\"internal-link\" href=\"00.02 Inbox/The Times & The Sunday Times.md\"> The Times & The Sunday Times </a>", "<a class=\"internal-link\" href=\"00.02 Inbox/The Times & The Sunday Times.md\"> The Times & The Sunday Times </a>"
"<a class=\"internal-link\" href=\"00.02 Inbox/Broccoli and Cheese Quiche.md\"> Broccoli and Cheese Quiche </a>",
"<a class=\"internal-link\" href=\"00.01 Admin/Calendars/Events/2023-09-08 Trip to NYC.md\"> 2023-09-08 Trip to NYC </a>"
], ],
"Linked": [ "Linked": [
"<a class=\"internal-link\" href=\"01.02 Home/Life - Practical infos.md\"> Life - Practical infos </a>",
"<a class=\"internal-link\" href=\"00.01 Admin/Calendars/2023-10-29.md\"> 2023-10-29 </a>",
"<a class=\"internal-link\" href=\"00.01 Admin/Calendars/2023-10-29.md\"> 2023-10-29 </a>",
"<a class=\"internal-link\" href=\"00.02 Inbox/Ski Rental Zürich.md\"> Ski Rental Zürich </a>",
"<a class=\"internal-link\" href=\"02.02 Paris/Les Disques du Yeti.md\"> Les Disques du Yeti </a>",
"<a class=\"internal-link\" href=\"00.01 Admin/Calendars/2023-10-29.md\"> 2023-10-29 </a>",
"<a class=\"internal-link\" href=\"00.01 Admin/Calendars/Events/2023-11-07 ⚽️ AC Milan - PSG.md\"> 2023-11-07 ⚽️ AC Milan - PSG </a>",
"<a class=\"internal-link\" href=\"00.01 Admin/Calendars/Events/2023-11-28 ⚽️ PSG - Newcastle Utd.md\"> 2023-11-28 ⚽️ PSG - Newcastle Utd </a>",
"<a class=\"internal-link\" href=\"00.01 Admin/Calendars/Events/2023-12-13 ⚽️ Borussia - PSG.md\"> 2023-12-13 ⚽️ Borussia - PSG </a>",
"<a class=\"internal-link\" href=\"00.01 Admin/Calendars/Events/2023-10-29 ⚽️ Brest 29 - PSG.md\"> 2023-10-29 ⚽️ Brest 29 - PSG </a>",
"<a class=\"internal-link\" href=\"00.02 Inbox/They Cracked the Code to a Locked USB Drive Worth $235 Million in Bitcoin. Then It Got Weird.md\"> They Cracked the Code to a Locked USB Drive Worth $235 Million in Bitcoin. Then It Got Weird </a>",
"<a class=\"internal-link\" href=\"00.03 News/Bill Wattersons Life After “Calvin and Hobbes”.md\"> Bill Wattersons Life After “Calvin and Hobbes” </a>",
"<a class=\"internal-link\" href=\"00.03 News/How workers remove toxic debris and ash after Hawaii wildfires.md\"> How workers remove toxic debris and ash after Hawaii wildfires </a>",
"<a class=\"internal-link\" href=\"00.03 News/The Evolutionary Reasons We Are Drawn to Horror Movies and Haunted Houses.md\"> The Evolutionary Reasons We Are Drawn to Horror Movies and Haunted Houses </a>",
"<a class=\"internal-link\" href=\"00.01 Admin/Calendars/2023-10-29.md\"> 2023-10-29 </a>",
"<a class=\"internal-link\" href=\"00.01 Admin/Calendars/2023-10-29.md\"> 2023-10-29 </a>",
"<a class=\"internal-link\" href=\"00.01 Admin/Calendars/2023-10-28.md\"> 2023-10-28 </a>",
"<a class=\"internal-link\" href=\"01.02 Home/Vinyls.md\"> Vinyls </a>",
"<a class=\"internal-link\" href=\"00.01 Admin/Calendars/2023-10-28.md\"> 2023-10-28 </a>",
"<a class=\"internal-link\" href=\"00.01 Admin/Calendars/2023-10-28.md\"> 2023-10-28 </a>",
"<a class=\"internal-link\" href=\"00.01 Admin/Calendars/2023-10-27.md\"> 2023-10-27 </a>",
"<a class=\"internal-link\" href=\"00.03 News/Winging It with the New Backcountry Barnstormers.md\"> Winging It with the New Backcountry Barnstormers </a>",
"<a class=\"internal-link\" href=\"00.03 News/The Crimes Behind the Seafood You Eat.md\"> The Crimes Behind the Seafood You Eat </a>",
"<a class=\"internal-link\" href=\"00.01 Admin/Calendars/2023-10-26.md\"> 2023-10-26 </a>",
"<a class=\"internal-link\" href=\"00.01 Admin/Calendars/2023-10-27.md\"> 2023-10-27 </a>",
"<a class=\"internal-link\" href=\"03.04 Cinematheque/Gangs of London (2020).md\"> Gangs of London (2020) </a>",
"<a class=\"internal-link\" href=\"00.01 Admin/Calendars/2023-10-26.md\"> 2023-10-26 </a>",
"<a class=\"internal-link\" href=\"03.01 Reading list/La Prochaine Fois que tu Mordras la Poussière.md\"> La Prochaine Fois que tu Mordras la Poussière </a>",
"<a class=\"internal-link\" href=\"00.01 Admin/Calendars/2023-10-26.md\"> 2023-10-26 </a>",
"<a class=\"internal-link\" href=\"03.01 Reading list/Le Camp des Saints.md\"> Le Camp des Saints </a>",
"<a class=\"internal-link\" href=\"00.01 Admin/Calendars/2023-10-26.md\"> 2023-10-26 </a>",
"<a class=\"internal-link\" href=\"00.01 Admin/Calendars/2023-10-26.md\"> 2023-10-26 </a>",
"<a class=\"internal-link\" href=\"00.01 Admin/Calendars/2023-10-26.md\"> 2023-10-26 </a>",
"<a class=\"internal-link\" href=\"00.01 Admin/Calendars/Events/2023-10-25 ⚽️ PSG AC Milan.md\"> 2023-10-25 ⚽️ PSG AC Milan </a>",
"<a class=\"internal-link\" href=\"00.01 Admin/Calendars/2023-10-25.md\"> 2023-10-25 </a>",
"<a class=\"internal-link\" href=\"00.01 Admin/Calendars/Events/2023-10-25 ⚽️ PSG AC Milan.md\"> 2023-10-25 ⚽️ PSG AC Milan </a>",
"<a class=\"internal-link\" href=\"00.01 Admin/Calendars/2023-10-25.md\"> 2023-10-25 </a>",
"<a class=\"internal-link\" href=\"00.01 Admin/Calendars/2023-10-25.md\"> 2023-10-25 </a>",
"<a class=\"internal-link\" href=\"00.03 News/Rape, Race and a Decades-Old Lie That Still Wounds.md\"> Rape, Race and a Decades-Old Lie That Still Wounds </a>", "<a class=\"internal-link\" href=\"00.03 News/Rape, Race and a Decades-Old Lie That Still Wounds.md\"> Rape, Race and a Decades-Old Lie That Still Wounds </a>",
"<a class=\"internal-link\" href=\"00.01 Admin/Calendars/2023-10-24.md\"> 2023-10-24 </a>", "<a class=\"internal-link\" href=\"00.01 Admin/Calendars/2023-10-24.md\"> 2023-10-24 </a>",
"<a class=\"internal-link\" href=\"00.03 News/Bodegas The small corner shops that run NYC.md\"> Bodegas The small corner shops that run NYC </a>", "<a class=\"internal-link\" href=\"00.03 News/Bodegas The small corner shops that run NYC.md\"> Bodegas The small corner shops that run NYC </a>",
@ -11675,45 +11803,7 @@
"<a class=\"internal-link\" href=\"00.03 News/Orcas are learning terrifying new behaviors. Are they getting smarter.md\"> Orcas are learning terrifying new behaviors. Are they getting smarter </a>", "<a class=\"internal-link\" href=\"00.03 News/Orcas are learning terrifying new behaviors. Are they getting smarter.md\"> Orcas are learning terrifying new behaviors. Are they getting smarter </a>",
"<a class=\"internal-link\" href=\"00.02 Inbox/La Prochaine Fois que tu Mordras la Poussière.md\"> La Prochaine Fois que tu Mordras la Poussière </a>", "<a class=\"internal-link\" href=\"00.02 Inbox/La Prochaine Fois que tu Mordras la Poussière.md\"> La Prochaine Fois que tu Mordras la Poussière </a>",
"<a class=\"internal-link\" href=\"00.01 Admin/Calendars/2023-10-22.md\"> 2023-10-22 </a>", "<a class=\"internal-link\" href=\"00.01 Admin/Calendars/2023-10-22.md\"> 2023-10-22 </a>",
"<a class=\"internal-link\" href=\"00.01 Admin/Calendars/2023-10-23.md\"> 2023-10-23 </a>", "<a class=\"internal-link\" href=\"00.01 Admin/Calendars/2023-10-23.md\"> 2023-10-23 </a>"
"<a class=\"internal-link\" href=\"00.02 Inbox/Babysitter.md\"> Babysitter </a>",
"<a class=\"internal-link\" href=\"00.03 News/The Crimes Behind the Seafood You Eat.md\"> The Crimes Behind the Seafood You Eat </a>",
"<a class=\"internal-link\" href=\"00.02 Inbox/How a Sexual Assault Case in St. Johns Exposed a Police Forces Predatory Culture.md\"> How a Sexual Assault Case in St. Johns Exposed a Police Forces Predatory Culture </a>",
"<a class=\"internal-link\" href=\"00.03 News/A crumbling, long-forgotten statue with an unusual erect phallus might be a Michelangelo. Renaissance scholars want hard evidence..md\"> A crumbling, long-forgotten statue with an unusual erect phallus might be a Michelangelo. Renaissance scholars want hard evidence. </a>",
"<a class=\"internal-link\" href=\"00.03 News/The wild business of desert island tourism - The Hustle.md\"> The wild business of desert island tourism - The Hustle </a>",
"<a class=\"internal-link\" href=\"00.03 News/Martin Scorsese on Making “Killers of the Flower Moon”.md\"> Martin Scorsese on Making “Killers of the Flower Moon” </a>",
"<a class=\"internal-link\" href=\"00.03 News/Winging It with the New Backcountry Barnstormers.md\"> Winging It with the New Backcountry Barnstormers </a>",
"<a class=\"internal-link\" href=\"00.01 Admin/Calendars/2023-10-22.md\"> 2023-10-22 </a>",
"<a class=\"internal-link\" href=\"00.01 Admin/Calendars/2023-10-21.md\"> 2023-10-21 </a>",
"<a class=\"internal-link\" href=\"00.01 Admin/Calendars/2023-10-21.md\"> 2023-10-21 </a>",
"<a class=\"internal-link\" href=\"00.03 News/The First Guy to Break the Internet.md\"> The First Guy to Break the Internet </a>",
"<a class=\"internal-link\" href=\"03.02 Travels/Tatiana.md\"> Tatiana </a>",
"<a class=\"internal-link\" href=\"03.02 Travels/Tatiana.md\"> Tatiana </a>",
"<a class=\"internal-link\" href=\"00.03 News/Kwame Onwuachis Cuisine of the Self.md\"> Kwame Onwuachis Cuisine of the Self </a>",
"<a class=\"internal-link\" href=\"00.01 Admin/Calendars/2023-10-21.md\"> 2023-10-21 </a>",
"<a class=\"internal-link\" href=\"00.03 News/SPIEGEL Reconstruction How Merkel Prevented Ukraine's NATO Membership.md\"> SPIEGEL Reconstruction How Merkel Prevented Ukraine's NATO Membership </a>",
"<a class=\"internal-link\" href=\"00.01 Admin/Calendars/2023-10-20.md\"> 2023-10-20 </a>",
"<a class=\"internal-link\" href=\"00.03 News/A Climate Warning from the Cradle of Civilization.md\"> A Climate Warning from the Cradle of Civilization </a>",
"<a class=\"internal-link\" href=\"00.01 Admin/Calendars/2023-10-19.md\"> 2023-10-19 </a>",
"<a class=\"internal-link\" href=\"00.02 Inbox/Mit & Ohne.md\"> Mit & Ohne </a>",
"<a class=\"internal-link\" href=\"00.01 Admin/Calendars/2023-10-18.md\"> 2023-10-18 </a>",
"<a class=\"internal-link\" href=\"00.01 Admin/Calendars/2023-10-19.md\"> 2023-10-19 </a>",
"<a class=\"internal-link\" href=\"00.01 Admin/Calendars/2023-10-19.md\"> 2023-10-19 </a>",
"<a class=\"internal-link\" href=\"00.03 News/Isiah Thomas Had to Be a NBA Villain for Michael Jordan to Be the Hero.md\"> Isiah Thomas Had to Be a NBA Villain for Michael Jordan to Be the Hero </a>",
"<a class=\"internal-link\" href=\"00.01 Admin/Calendars/2023-10-18.md\"> 2023-10-18 </a>",
"<a class=\"internal-link\" href=\"00.03 News/A Young Man's Path Through the Mental Health Care System Led to Prison — and a Fatal Encounter Crime Seven Days.md\"> A Young Man's Path Through the Mental Health Care System Led to Prison — and a Fatal Encounter Crime Seven Days </a>",
"<a class=\"internal-link\" href=\"00.03 News/Come to Branson, Missouri for the Dinner Theater, Stay for the Real Show.md\"> Come to Branson, Missouri for the Dinner Theater, Stay for the Real Show </a>",
"<a class=\"internal-link\" href=\"00.01 Admin/Calendars/2023-10-17.md\"> 2023-10-17 </a>",
"<a class=\"internal-link\" href=\"00.01 Admin/Calendars/2023-10-17.md\"> 2023-10-17 </a>",
"<a class=\"internal-link\" href=\"00.03 News/Bitter rivals. Beloved friends. Survivors..md\"> Bitter rivals. Beloved friends. Survivors. </a>",
"<a class=\"internal-link\" href=\"00.01 Admin/Calendars/2023-10-16.md\"> 2023-10-16 </a>",
"<a class=\"internal-link\" href=\"00.01 Admin/Calendars/2023-10-15.md\"> 2023-10-15 </a>",
"<a class=\"internal-link\" href=\"00.03 News/The First Guy to Break the Internet.md\"> The First Guy to Break the Internet </a>",
"<a class=\"internal-link\" href=\"00.02 Inbox/Rape, Race and a Decades-Old Lie That Still Wounds.md\"> Rape, Race and a Decades-Old Lie That Still Wounds </a>",
"<a class=\"internal-link\" href=\"00.03 News/Bodegas The small corner shops that run NYC.md\"> Bodegas The small corner shops that run NYC </a>",
"<a class=\"internal-link\" href=\"00.03 News/Kwame Onwuachis Cuisine of the Self.md\"> Kwame Onwuachis Cuisine of the Self </a>",
"<a class=\"internal-link\" href=\"00.03 News/Held Together.md\"> Held Together </a>",
"<a class=\"internal-link\" href=\"00.01 Admin/Calendars/2023-10-15.md\"> 2023-10-15 </a>"
], ],
"Removed Tags from": [ "Removed Tags from": [
"<a class=\"internal-link\" href=\"00.03 News/Rape, Race and a Decades-Old Lie That Still Wounds.md\"> Rape, Race and a Decades-Old Lie That Still Wounds </a>", "<a class=\"internal-link\" href=\"00.03 News/Rape, Race and a Decades-Old Lie That Still Wounds.md\"> Rape, Race and a Decades-Old Lie That Still Wounds </a>",

File diff suppressed because one or more lines are too long

@ -1,7 +1,7 @@
{ {
"id": "obsidian-dice-roller", "id": "obsidian-dice-roller",
"name": "Dice Roller", "name": "Dice Roller",
"version": "9.4.1", "version": "10.1.2",
"minAppVersion": "0.12.15", "minAppVersion": "0.12.15",
"description": "Inline dice rolling for Obsidian.md", "description": "Inline dice rolling for Obsidian.md",
"author": "Jeremy Valentine", "author": "Jeremy Valentine",

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

@ -1,7 +1,7 @@
{ {
"id": "obsidian-minimal-settings", "id": "obsidian-minimal-settings",
"name": "Minimal Theme Settings", "name": "Minimal Theme Settings",
"version": "7.2.2", "version": "7.3.0",
"minAppVersion": "1.1.9", "minAppVersion": "1.1.9",
"description": "Change the colors, fonts and features of Minimal Theme.", "description": "Change the colors, fonts and features of Minimal Theme.",
"author": "@kepano", "author": "@kepano",

@ -339,40 +339,40 @@
} }
], ],
"01.02 Home/Household.md": [ "01.02 Home/Household.md": [
{
"title": ":bed: [[Household]] Change bedsheets %%done_del%%",
"time": "2023-10-28",
"rowNumber": 91
},
{
"title": "🛎 🧻 REMINDER [[Household]]: check need for toilet paper %%done_del%%",
"time": "2023-10-30",
"rowNumber": 87
},
{ {
"title": "♻ [[Household]]: *Cardboard* recycling collection %%done_del%%", "title": "♻ [[Household]]: *Cardboard* recycling collection %%done_del%%",
"time": "2023-10-31", "time": "2023-10-31",
"rowNumber": 78 "rowNumber": 78
}, },
{ {
"title": "🛎 :house: [[Household]]: Pay rent %%done_del%%", "title": "🛎 🧻 REMINDER [[Household]]: check need for toilet paper %%done_del%%",
"time": "2023-10-31", "time": "2023-11-06",
"rowNumber": 86 "rowNumber": 88
}, },
{ {
"title": "♻ [[Household]]: *Paper* recycling collection %%done_del%%", "title": "♻ [[Household]]: *Paper* recycling collection %%done_del%%",
"time": "2023-11-07", "time": "2023-11-07",
"rowNumber": 75 "rowNumber": 75
}, },
{
"title": ":bed: [[Household]] Change bedsheets %%done_del%%",
"time": "2023-11-11",
"rowNumber": 93
},
{
"title": "🛎️ :house: [[Household]]: Pay rent %%done_del%%",
"time": "2023-11-30",
"rowNumber": 86
},
{ {
"title": ":blue_car: [[Household]]: Change to Summer tyres %%done_del%%", "title": ":blue_car: [[Household]]: Change to Summer tyres %%done_del%%",
"time": "2024-04-15", "time": "2024-04-15",
"rowNumber": 98 "rowNumber": 101
}, },
{ {
"title": ":blue_car: [[Household]]: Change to Winter tyres %%done_del%%", "title": ":blue_car: [[Household]]: Change to Winter tyres %%done_del%%",
"time": "2024-10-15", "time": "2024-10-15",
"rowNumber": 99 "rowNumber": 102
} }
], ],
"01.03 Family/Pia Bousquié.md": [ "01.03 Family/Pia Bousquié.md": [
@ -390,25 +390,25 @@
} }
], ],
"01.01 Life Orga/@Finances.md": [ "01.01 Life Orga/@Finances.md": [
{
"title": ":moneybag: [[@Finances]]: Transfer UK pension to CH %%done_del%%",
"time": "2023-10-31",
"rowNumber": 112
},
{ {
"title": ":heavy_dollar_sign: [[@Finances|Finances]]: update crypto prices within Obsidian %%done_del%%", "title": ":heavy_dollar_sign: [[@Finances|Finances]]: update crypto prices within Obsidian %%done_del%%",
"time": "2023-11-14", "time": "2023-11-14",
"rowNumber": 113 "rowNumber": 114
}, },
{ {
"title": ":heavy_dollar_sign: [[@Finances|Finances]]: Close yearly accounts %%done_del%%", "title": ":heavy_dollar_sign: [[@Finances|Finances]]: Close yearly accounts %%done_del%%",
"time": "2024-01-07", "time": "2024-01-07",
"rowNumber": 123 "rowNumber": 124
}, },
{ {
"title": ":heavy_dollar_sign: [[@Finances|Finances]]: Swiss tax self declaration %%done_del%%", "title": ":heavy_dollar_sign: [[@Finances|Finances]]: Swiss tax self declaration %%done_del%%",
"time": "2024-01-07", "time": "2024-01-07",
"rowNumber": 124 "rowNumber": 125
},
{
"title": ":moneybag: [[@Finances]]: Transfer UK pension to CH %%done_del%%",
"time": "2024-10-31",
"rowNumber": 112
} }
], ],
"01.01 Life Orga/@Personal projects.md": [ "01.01 Life Orga/@Personal projects.md": [
@ -455,13 +455,13 @@
"05.02 Networks/Configuring UFW.md": [ "05.02 Networks/Configuring UFW.md": [
{ {
"title": "🖥 [[Selfhosting]], [[Configuring UFW|Firewall]] Get IP addresses caught by Postfix %%done_del%%", "title": "🖥 [[Selfhosting]], [[Configuring UFW|Firewall]] Get IP addresses caught by Postfix %%done_del%%",
"time": "2023-10-28", "time": "2023-11-04",
"rowNumber": 239 "rowNumber": 239
}, },
{ {
"title": "🖥 [[Selfhosting]], [[Configuring UFW|Firewall]]: Update the Blocked IP list %%done_del%%", "title": "🖥 [[Selfhosting]], [[Configuring UFW|Firewall]]: Update the Blocked IP list %%done_del%%",
"time": "2023-10-28", "time": "2023-11-04",
"rowNumber": 280 "rowNumber": 281
} }
], ],
"01.03 Family/Amélie Solanet.md": [ "01.03 Family/Amélie Solanet.md": [
@ -488,7 +488,7 @@
"00.08 Bookmarks/Bookmarks - Admin & services.md": [ "00.08 Bookmarks/Bookmarks - Admin & services.md": [
{ {
"title": ":label: [[Bookmarks - Admin & services]]: Review bookmarks %%done_del%%", "title": ":label: [[Bookmarks - Admin & services]]: Review bookmarks %%done_del%%",
"time": "2023-10-30", "time": "2024-01-30",
"rowNumber": 113 "rowNumber": 113
} }
], ],
@ -592,7 +592,22 @@
{ {
"title": "🤵🏻 [[@Lifestyle|Lifestyle]]: Etre plus social", "title": "🤵🏻 [[@Lifestyle|Lifestyle]]: Etre plus social",
"time": "2023-12-31", "time": "2023-12-31",
"rowNumber": 87
},
{
"title": "🏊🏼‍♂️ [[@Lifestyle|Lifestyle]]: Swim more regularly in Summer",
"time": "2024-09-30",
"rowNumber": 80
},
{
"title": "🍎 [[@Lifestyle|Lifestyle]]: Transitioner sucres synthétiques vers sucres naturels",
"time": "2024-12-31",
"rowNumber": 79 "rowNumber": 79
},
{
"title": "🎹 [[@Lifestyle|Lifestyle]]: Start a vinyl collection",
"time": "2024-12-31",
"rowNumber": 81
} }
], ],
"06.02 Investments/Equity Tasks.md": [ "06.02 Investments/Equity Tasks.md": [
@ -809,6 +824,20 @@
"time": "2023-11-30", "time": "2023-11-30",
"rowNumber": 103 "rowNumber": 103
} }
],
"00.01 Admin/Calendars/2023-10-28.md": [
{
"title": "11:48 :musical_keyboard: [[@Lifestyle|Lifestyle]]: Buy an ampli (Verstaerker): Yamaha A-S301 or Marantz PM6007",
"time": "2023-12-31",
"rowNumber": 103
}
],
"00.01 Admin/Calendars/2023-10-29.md": [
{
"title": "10:56 :ski: [[@Lifestyle|Lifestyle]]: Préparer skis pour cet hiver @ [[Ski Rental Zürich]]",
"time": "2023-11-04",
"rowNumber": 103
}
] ]
}, },
"debug": false, "debug": false,

File diff suppressed because one or more lines are too long

@ -1,7 +1,7 @@
{ {
"id": "obsidian-tasks-plugin", "id": "obsidian-tasks-plugin",
"name": "Tasks", "name": "Tasks",
"version": "4.8.1", "version": "5.0.0",
"minAppVersion": "1.1.1", "minAppVersion": "1.1.1",
"description": "Task management for Obsidian", "description": "Task management for Obsidian",
"author": "Martin Schenck and Clare Macrae", "author": "Martin Schenck and Clare Macrae",

@ -48,7 +48,7 @@
"devMode": false, "devMode": false,
"templateFolderPath": "00.01 Admin/Templates", "templateFolderPath": "00.01 Admin/Templates",
"announceUpdates": true, "announceUpdates": true,
"version": "1.3.0", "version": "1.4.0",
"disableOnlineFeatures": true, "disableOnlineFeatures": true,
"ai": { "ai": {
"OpenAIApiKey": "", "OpenAIApiKey": "",

@ -11663,7 +11663,7 @@ var QuickAddApi = class {
} }
return assistantRes; return assistantRes;
}, },
chunkedPrompt: async (text2, promptTemplate, model, settings) => { chunkedPrompt: async (text2, promptTemplate, model, settings, existingVariables) => {
const pluginSettings = settingsStore.getState(); const pluginSettings = settingsStore.getState();
const AISettings = pluginSettings.ai; const AISettings = pluginSettings.ai;
if (pluginSettings.disableOnlineFeatures) { if (pluginSettings.disableOnlineFeatures) {
@ -11691,7 +11691,11 @@ var QuickAddApi = class {
shouldMerge: settings?.shouldMerge ?? true shouldMerge: settings?.shouldMerge ?? true
}, },
(txt, variables) => { (txt, variables) => {
return formatter(txt, variables, false); const mergedVariables = {
...existingVariables,
...variables
};
return formatter(txt, mergedVariables, false);
} }
); );
if (!assistantRes) { if (!assistantRes) {

@ -1,7 +1,7 @@
{ {
"id": "quickadd", "id": "quickadd",
"name": "QuickAdd", "name": "QuickAdd",
"version": "1.3.0", "version": "1.4.0",
"minAppVersion": "0.13.19", "minAppVersion": "0.13.19",
"description": "Quickly add new pages or content to your vault.", "description": "Quickly add new pages or content to your vault.",
"author": "Christian B. B. Houmann", "author": "Christian B. B. Houmann",

File diff suppressed because one or more lines are too long

@ -1,7 +1,7 @@
{ {
"id": "templater-obsidian", "id": "templater-obsidian",
"name": "Templater", "name": "Templater",
"version": "1.16.2", "version": "1.16.4",
"description": "Create and use templates", "description": "Create and use templates",
"minAppVersion": "0.11.13", "minAppVersion": "0.11.13",
"author": "SilentVoid", "author": "SilentVoid",

@ -1,6 +1,6 @@
{ {
"name": "Minimal", "name": "Minimal",
"version": "7.1.2", "version": "7.3.3",
"minAppVersion": "1.1.9", "minAppVersion": "1.1.9",
"author": "@kepano", "author": "@kepano",
"authorUrl": "https://twitter.com/kepano", "authorUrl": "https://twitter.com/kepano",

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

@ -1,6 +1,7 @@
{ {
"name": "Primary", "name": "Primary",
"version": "0.0.0", "version": "2.0.0-alpha",
"minAppVersion": "0.16.0", "minAppVersion": "1.0.0",
"author": "Cecilia May" "author": "Cecilia May",
} "authorUrl": "https://github.com/ceciliamay/obsidianmd-theme-primary/"
}

File diff suppressed because it is too large Load Diff

@ -1,6 +1,6 @@
{ {
"name": "Things", "name": "Things",
"version": "2.1.13", "version": "2.1.19",
"minAppVersion": "1.0.0", "minAppVersion": "1.0.0",
"author": "@colineckert", "author": "@colineckert",
"authorUrl": "https://twitter.com/colineckert" "authorUrl": "https://twitter.com/colineckert"

@ -1,6 +1,6 @@
/* /*
THINGS THINGS
Version 2.1.13 Version 2.1.19
Created by @colineckert Created by @colineckert
Readme: Readme:
@ -341,6 +341,12 @@ span.search-result-file-matched-text {
padding: 0.05em 0; padding: 0.05em 0;
-webkit-box-decoration-break: clone; -webkit-box-decoration-break: clone;
box-decoration-break: clone; box-decoration-break: clone;
}
/* Fancy highlight */
body.fancy-highlight span.cm-highlight,
body.fancy-highlight .markdown-preview-view mark,
body.fancy-highlight span.search-result-file-matched-text {
background-image: linear-gradient( background-image: linear-gradient(
0deg, 0deg,
var(--highlight-background-color-underline) 0%, var(--highlight-background-color-underline) 0%,
@ -396,14 +402,126 @@ body.active-line .cm-active.HyperMD-quote::before {
white-space: pre; white-space: pre;
} }
/* Fancy code blocks */
.cm-inline-code,
.cm-s-obsidian .HyperMD-codeblock,
.markdown-preview-view.markdown-preview-view :is(pre, code) {
--codeblock-border: var(--color-base-30);
--codeblock-roundness: var(--radius-s);
--code-block-alt-bg: var(--color-base-30);
--slight-code-roundish: var(--radius-xs);
}
body.fancy-code .cm-s-obsidian .HyperMD-codeblock {
line-height: 1.4em;
}
body.fancy-code .HyperMD-codeblock-begin {
counter-reset: codeblock-line-numbers;
}
body.fancy-code
.HyperMD-codeblock:not(
.HyperMD-codeblock-begin,
.HyperMD-codeblock-end
)::before {
counter-increment: codeblock-line-numbers;
content: counter(codeblock-line-numbers);
font-size: 0.75em;
line-height: 2;
text-align: right;
height: 100%;
width: 1.7em;
color: var(--text-muted);
/* background-color: #1e2029; */
background-color: var(--code-background);
position: absolute;
left: 0;
padding-right: 1.4em;
}
body.fancy-code
.HyperMD-codeblock.cm-line:not(
.HyperMD-codeblock-begin,
.HyperMD-codeblock-end
) {
padding-left: 2.8em;
}
body.fancy-code .cm-s-obsidian div.HyperMD-codeblock-begin-bg {
background-color: var(--code-block-alt-bg);
border: var(--codeblock-border);
border-bottom: none;
border-top-right-radius: var(--codeblock-roundness);
border-top-left-radius: var(--codeblock-roundness);
}
body.fancy-code div.HyperMD-codeblock-bg:not(.HyperMD-codeblock-begin-bg) {
border-right: var(--codeblock-border);
border-left: var(--codeblock-border);
}
body.fancy-code .cm-line.HyperMD-codeblock .code-block-flair {
font-size: calc(var(--code-size) * 0.9);
color: var(--text-muted);
padding: 0 1px;
top: 0;
}
body.fancy-code .markdown-reading-view pre[class*='language-']::before {
display: block;
content: ' ';
line-height: 1.5em;
background-color: var(--code-block-alt-bg);
border-top-right-radius: calc(var(--codeblock-roundness) * 0.8);
border-top-left-radius: calc(var(--codeblock-roundness) * 0.8);
}
body.fancy-code pre[class*='language-']::after {
content: attr(class);
font-size: 0.9rem;
text-shadow: none;
color: var(--text-muted);
position: absolute;
top: 2px;
right: 5px;
}
body.fancy-code .markdown-preview-view pre code {
padding: var(--size-4-1) var(--size-4-2);
}
body.fancy-code .copy-code-button.copy-code-button.copy-code-button {
background-color: var(--interactive-normal);
top: unset;
bottom: 0;
padding: 0 var(--size-2-2);
}
body.fancy-code .markdown-preview-view.markdown-preview-view pre {
padding: 0;
margin-top: var(--size-4-2);
border: var(--codeblock-border);
border-radius: var(--codeblock-roundness);
}
body.fancy-code .markdown-reading-view .markdown-preview-view pre code {
display: block;
}
body.fancy-code .markdown-preview-view pre code {
padding: var(--size-4-1) var(--size-4-5);
}
/* ------------------- */ /* ------------------- */
/* One Dark Syntax Coloring */ /* One Dark Syntax Coloring */
/* Source: https://github.com/AGMStudio/prism-theme-one-dark */ /* Source: https://github.com/AGMStudio/prism-theme-one-dark */
/* ------------------- */ /* ------------------- */
.theme-light .token.comment { .theme-light .token.comment .theme-light .cm-comment {
color: #ababab; color: #ababab;
} }
.theme-dark .token.comment, .theme-dark .token.comment,
.theme-dark .cm-comment,
.token.prolog, .token.prolog,
.token.doctype, .token.doctype,
.token.cdata { .token.cdata {
@ -411,33 +529,42 @@ body.active-line .cm-active.HyperMD-quote::before {
} }
.token.punctuation, .token.punctuation,
.token.plain-text, .token.plain-text,
.token.parameter,
.token.dom.variable, .token.dom.variable,
.cm-hmd-codeblock.cm-bracket { .cm-hmd-codeblock.cm-bracket {
color: var(--atom-gray-2) !important; color: var(--atom-gray-2);
} }
code[class*='language-'],
.token.selector, .token.selector,
.token.tag, .cm-tag,
.token.property,
.token.property-access,
.token.dom.variable, .token.dom.variable,
span.token.variable, .token.tag,
.cm-hmd-codeblock.cm-tag, .cm-def,
.cm-variable, .token.parameter,
.cm-property, .cm-property,
.cm-qualifier { .cm-qualifier {
color: var(--atom-red); color: var(--atom-red);
} }
.token.class-name,
.token.maybe-class-name,
.token.property-access,
.token.constant,
.token.builtin,
.cm-variable-2,
.cm-type,
.cm-atom,
code .cm-tag {
color: var(--atom-yellow);
}
.token.property,
.token.boolean, .token.boolean,
.token.number, .token.number,
.token.symbol, .token.symbol,
.token.builtin,
.token.attr-name, .token.attr-name,
.token.deleted, .token.deleted,
.cm-attribute, .cm-attribute,
.cm-number, .cm-number,
.cm-property.cm-string { .cm-property.cm-string {
color: var(--atom-orange) !important; color: var(--atom-orange);
} }
.token.string, .token.string,
.token.char, .token.char,
@ -460,20 +587,12 @@ span.token.variable,
.cm-keyword { .cm-keyword {
color: var(--atom-purple); color: var(--atom-purple);
} }
.cm-builtin, .cm-variable,
.token.function, .token.function,
.token.method, .token.method,
.token.macro.property { .token.macro.property {
color: var(--atom-blue); color: var(--atom-blue);
} }
.token.class-name,
.token.constant,
.cm-atom,
code .cm-tag,
.cm-variable-2,
.cm-type {
color: var(--atom-yellow);
}
.token.regex, .token.regex,
.token.important, .token.important,
.token.variable { .token.variable {
@ -1075,6 +1194,18 @@ settings:
id: active-line id: active-line
type: class-toggle type: class-toggle
default: false default: false
-
title: Fancy code blocks
description: Enable fancy numbered code blocks
id: fancy-code
type: class-toggle
default: false
-
title: Fancy highlighting
description: Enable fancy highlight styles with highlight underlines
id: fancy-highlight
type: class-toggle
default: false
- -
title: Disable Kanban board styles title: Disable Kanban board styles
description: Remove minimalist styling to the Kanban plugin description: Remove minimalist styling to the Kanban plugin

@ -69,7 +69,7 @@
"state": { "state": {
"type": "markdown", "type": "markdown",
"state": { "state": {
"file": "01.02 Home/@Main Dashboard.md", "file": "00.01 Admin/Calendars/2023-10-29.md",
"mode": "preview", "mode": "preview",
"source": true "source": true
} }
@ -158,7 +158,7 @@
"state": { "state": {
"type": "backlink", "type": "backlink",
"state": { "state": {
"file": "01.02 Home/@Main Dashboard.md", "file": "00.01 Admin/Calendars/2023-10-29.md",
"collapseAll": false, "collapseAll": false,
"extraContext": false, "extraContext": false,
"sortOrder": "alphabetical", "sortOrder": "alphabetical",
@ -175,7 +175,7 @@
"state": { "state": {
"type": "outgoing-link", "type": "outgoing-link",
"state": { "state": {
"file": "01.02 Home/@Main Dashboard.md", "file": "00.01 Admin/Calendars/2023-10-29.md",
"linksCollapsed": false, "linksCollapsed": false,
"unlinkedCollapsed": false "unlinkedCollapsed": false
} }
@ -206,7 +206,7 @@
} }
}, },
{ {
"id": "59809fda1c12dabb", "id": "5801369ceea1adbb",
"type": "leaf", "type": "leaf",
"state": { "state": {
"type": "DICE_ROLLER_VIEW", "type": "DICE_ROLLER_VIEW",
@ -229,7 +229,6 @@
"msg-handler:MSG Handler": false, "msg-handler:MSG Handler": false,
"obsidian42-brat:BRAT": false, "obsidian42-brat:BRAT": false,
"ledger-obsidian:Add to Ledger": false, "ledger-obsidian:Add to Ledger": false,
"obsidian-book-search-plugin:Create new book note": false,
"obsidian-rich-links:Rich Links": false, "obsidian-rich-links:Rich Links": false,
"obsidian-media-db-plugin:Add new Media DB entry": false, "obsidian-media-db-plugin:Add new Media DB entry": false,
"table-editor-obsidian:Advanced Tables Toolbar": false, "table-editor-obsidian:Advanced Tables Toolbar": false,
@ -242,37 +241,38 @@
"meld-encrypt:New encrypted note": false, "meld-encrypt:New encrypted note": false,
"meld-encrypt:Convert to or from an Encrypted note": false, "meld-encrypt:Convert to or from an Encrypted note": false,
"templater-obsidian:Templater": false, "templater-obsidian:Templater": false,
"obsidian-book-search-plugin:Create new book note": false,
"obsidian-memos:Memos": false "obsidian-memos:Memos": false
} }
}, },
"active": "2d9db1814950ef3b", "active": "2d9db1814950ef3b",
"lastOpenFiles": [ "lastOpenFiles": [
"00.01 Admin/Calendars/2023-10-24.md", "01.02 Home/Life - Practical infos.md",
"00.03 News/Rape, Race and a Decades-Old Lie That Still Wounds.md", "02.03 Zürich/Ski Rental Zürich.md",
"00.01 Admin/Calendars/2023-10-29.md",
"02.03 Zürich/@@Zürich.md",
"03.04 Cinematheque/Gangs of London (2020).md",
"03.04 Cinematheque/@Cinematheque.md",
"01.03 Family/Philomène de Villeneuve.md",
"02.02 Paris/Les Disques du Yeti.md",
"02.02 Paris/@Commerces Paris.md",
"02.02 Paris/Épicerie Rap.md",
"00.01 Admin/Calendars/Events/2023-10-29 ⚽️ Brest 29 - PSG (2-3).md",
"02.02 Paris/Paris SG.md",
"01.02 Home/Vinyls.md",
"00.01 Admin/Calendars/Events/2023-12-13 ⚽️ Borussia - PSG.md",
"00.01 Admin/Calendars/Events/2023-11-28 ⚽️ PSG - Newcastle Utd.md",
"00.01 Admin/Calendars/Events/2023-11-07 ⚽️ AC Milan - PSG.md",
"01.02 Home/@Main Dashboard.md", "01.02 Home/@Main Dashboard.md",
"00.02 Inbox/Seven Pillars of Wisdom.md", "00.03 News/They Cracked the Code to a Locked USB Drive Worth $235 Million in Bitcoin. Then It Got Weird.md",
"00.02 Inbox/By the Sea.md", "00.03 News/Bill Wattersons Life After “Calvin and Hobbes”.md",
"00.02 Inbox/Project Hail Mary.md", "01.02 Home/Bandes Dessinées.md",
"00.03 News/How a Sexual Assault Case in St. Johns Exposed a Police Forces Predatory Culture.md", "00.03 News/Why Bill Watterson Vanished - The American Conservative.md",
"00.03 News/Bodegas The small corner shops that run NYC.md", "00.03 News/The Evolutionary Reasons We Are Drawn to Horror Movies and Haunted Houses.md",
"00.03 News/Orcas are learning terrifying new behaviors. Are they getting smarter.md", "00.03 News/How workers remove toxic debris and ash after Hawaii wildfires.md",
"00.03 News/The wild business of desert island tourism - The Hustle.md", "00.01 Admin/Calendars/2023-10-28.md",
"00.03 News/A crumbling, long-forgotten statue with an unusual erect phallus might be a Michelangelo. Renaissance scholars want hard evidence..md", "01.02 Home/@Shopping list.md",
"00.02 Inbox/Consent.md", "00.08 Bookmarks/Bookmarks - Admin & services.md",
"00.01 Admin/Calendars/2023-10-23.md",
"00.02 Inbox/La Prochaine Fois que tu Mordras la Poussière.md",
"00.02 Inbox/Zoo Station.md",
"00.02 Inbox/Torto Arado.md",
"00.02 Inbox/The Good Men.md",
"00.02 Inbox/Le Camp des Saints.md",
"00.02 Inbox/Babysitter.md",
"00.01 Admin/Templates/Template Pocket Source.md",
"03.03 Food & Wine/Msakhan Fatteh.md",
"00.01 Admin/Calendars/2023-10-22.md",
"01.03 Family/Jérôme Bédier.md",
"00.02 Inbox/Martin Eden.md",
"00.03 News/The Crimes Behind the Seafood You Eat.md",
"00.03 News/@News.md",
"00.01 Admin/Pictures/Kolkowitzia/IMG_3910.jpg", "00.01 Admin/Pictures/Kolkowitzia/IMG_3910.jpg",
"00.01 Admin/Pictures/Kolkowitzia/IMG_3911.jpg", "00.01 Admin/Pictures/Kolkowitzia/IMG_3911.jpg",
"00.01 Admin/Pictures/Kolkowitzia", "00.01 Admin/Pictures/Kolkowitzia",

@ -18,8 +18,8 @@ EarHeadBar: 20
BackHeadBar: 35 BackHeadBar: 35
Water: 3.33 Water: 3.33
Coffee: 5 Coffee: 5
Steps: Steps: 10267
Weight: Weight: 90.6
Ski: Ski:
IceSkating: IceSkating:
Riding: Riding:

@ -0,0 +1,138 @@
---
title: "🗒 Daily Note"
allDay: true
date: 2023-10-25
Date: 2023-10-25
DocType: Note
Hierarchy:
TimeStamp:
location:
CollapseMetaTable: true
Sleep: 8
Happiness: 85
Gratefulness: 90
Stress: 30
FrontHeadBar: 5
EarHeadBar: 20
BackHeadBar: 35
Water: 3.5
Coffee: 3
Steps: 11015
Weight:
Ski:
IceSkating:
Riding:
Racket:
Football:
Swim:
---
%% Parent:: [[@Life Admin]] %%
---
[[2023-10-24|<< 🗓 Previous ]] &emsp; &emsp; &emsp; [[@Main Dashboard|Back]] &emsp; &emsp; &emsp; [[2023-10-26|🗓 Next >>]]
---
&emsp;
```button
name Record today's health
type command
action MetaEdit: Run MetaEdit
id EditMetaData
```
^button-2023-10-25Edit
```button
name Save
type command
action Save current file
id Save
```
^button-2023-10-25NSave
&emsp;
# 2023-10-25
&emsp;
> [!summary]+
> Daily note for 2023-10-25
&emsp;
```toc
style: number
```
&emsp;
---
&emsp;
### ✅ Tasks of the day
&emsp;
```tasks
not done
due on 2023-10-25
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;
🛍: [[Pile of Books]]
📖: [[Le Camp des Saints]]
📺: [[2023-10-25 ⚽️ PSG AC Milan (3-0)|PSG - AC Milan]]
&emsp;
---
&emsp;
### :link: Linked activity
&emsp;
```dataview
Table from [[2023-10-25]]
```
&emsp;
&emsp;

@ -0,0 +1,139 @@
---
title: "🗒 Daily Note"
allDay: true
date: 2023-10-26
Date: 2023-10-26
DocType: Note
Hierarchy:
TimeStamp:
location:
CollapseMetaTable: true
Sleep: 8
Happiness: 85
Gratefulness: 90
Stress: 30
FrontHeadBar: 5
EarHeadBar: 20
BackHeadBar: 35
Water: 3.75
Coffee: 4
Steps: 11322
Weight:
Ski:
IceSkating:
Riding:
Racket:
Football:
Swim:
---
%% Parent:: [[@Life Admin]] %%
---
[[2023-10-25|<< 🗓 Previous ]] &emsp; &emsp; &emsp; [[@Main Dashboard|Back]] &emsp; &emsp; &emsp; [[2023-10-27|🗓 Next >>]]
---
&emsp;
```button
name Record today's health
type command
action MetaEdit: Run MetaEdit
id EditMetaData
```
^button-2023-10-26Edit
```button
name Save
type command
action Save current file
id Save
```
^button-2023-10-26NSave
&emsp;
# 2023-10-26
&emsp;
> [!summary]+
> Daily note for 2023-10-26
&emsp;
```toc
style: number
```
&emsp;
---
&emsp;
### ✅ Tasks of the day
&emsp;
```tasks
not done
due on 2023-10-26
path does not include Templates
hide backlinks
hide task count
```
&emsp;
---
&emsp;
### 📝 Memos
&emsp;
This section does serve for quick memos.
&emsp;
- [x] 22:18 :musical_keyboard: [[@Lifestyle|Lifestyle]]: Look for a good turntable (Fluance RT81 Elite, [Audio-Technica AT-LP60XBK (Vollautomatisch)](https://www.digitec.ch/de/s1/product/audio-technica-at-lp60xbk-vollautomatisch-plattenspieler-18897231) or [Audio-Technica AT-LP60XBT (Einstiegsklasse, Vollautomatisch)](https://www.digitec.ch/de/s1/product/audio-technica-at-lp60xbt-einstiegsklasse-vollautomatisch-plattenspieler-10942880)) 📅 2023-12-31 ✅ 2023-10-28
%% --- %%
&emsp;
---
&emsp;
### 🗒 Notes
&emsp;
📣: [[Marguerite de Villeneuve|Marg]] enceinte
📖: [[Le Camp des Saints]], [[La Prochaine Fois que tu Mordras la Poussière]]
📺: [[Gangs of London (2020)]]
&emsp;
---
&emsp;
### :link: Linked activity
&emsp;
```dataview
Table from [[2023-10-26]]
```
&emsp;
&emsp;

@ -0,0 +1,136 @@
---
title: "🗒 Daily Note"
allDay: true
date: 2023-10-27
Date: 2023-10-27
DocType: Note
Hierarchy:
TimeStamp:
location:
CollapseMetaTable: true
Sleep: 8
Happiness: 85
Gratefulness: 90
Stress: 30
FrontHeadBar: 5
EarHeadBar: 20
BackHeadBar: 35
Water: 3.63
Coffee: 3
Steps: 12968
Weight:
Ski:
IceSkating:
Riding:
Racket:
Football:
Swim:
---
%% Parent:: [[@Life Admin]] %%
---
[[2023-10-26|<< 🗓 Previous ]] &emsp; &emsp; &emsp; [[@Main Dashboard|Back]] &emsp; &emsp; &emsp; [[2023-10-28|🗓 Next >>]]
---
&emsp;
```button
name Record today's health
type command
action MetaEdit: Run MetaEdit
id EditMetaData
```
^button-2023-10-27Edit
```button
name Save
type command
action Save current file
id Save
```
^button-2023-10-27NSave
&emsp;
# 2023-10-27
&emsp;
> [!summary]+
> Daily note for 2023-10-27
&emsp;
```toc
style: number
```
&emsp;
---
&emsp;
### ✅ Tasks of the day
&emsp;
```tasks
not done
due on 2023-10-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;
Speakers: 8-16 Ohms
🍴: [[Beef Noodles with Beans]]
&emsp;
---
&emsp;
### :link: Linked activity
&emsp;
```dataview
Table from [[2023-10-27]]
```
&emsp;
&emsp;

@ -0,0 +1,135 @@
---
title: "🗒 Daily Note"
allDay: true
date: 2023-10-28
Date: 2023-10-28
DocType: Note
Hierarchy:
TimeStamp:
location:
CollapseMetaTable: true
Sleep: 7.5
Happiness: 90
Gratefulness: 85
Stress: 30
FrontHeadBar: 5
EarHeadBar: 20
BackHeadBar: 35
Water: 3.75
Coffee: 2
Steps: 12839
Weight:
Ski:
IceSkating:
Riding:
Racket:
Football:
Swim:
---
%% Parent:: [[@Life Admin]] %%
---
[[2023-10-27|<< 🗓 Previous ]] &emsp; &emsp; &emsp; [[@Main Dashboard|Back]] &emsp; &emsp; &emsp; [[2023-10-29|🗓 Next >>]]
---
&emsp;
```button
name Record today's health
type command
action MetaEdit: Run MetaEdit
id EditMetaData
```
^button-2023-10-28Edit
```button
name Save
type command
action Save current file
id Save
```
^button-2023-10-28NSave
&emsp;
# 2023-10-28
&emsp;
> [!summary]+
> Daily note for 2023-10-28
&emsp;
```toc
style: number
```
&emsp;
---
&emsp;
### ✅ Tasks of the day
&emsp;
```tasks
not done
due on 2023-10-28
path does not include Templates
hide backlinks
hide task count
```
&emsp;
---
&emsp;
### 📝 Memos
&emsp;
This section does serve for quick memos.
&emsp;
- [ ] 11:48 :musical_keyboard: [[@Lifestyle|Lifestyle]]: Buy an ampli (Verstaerker): Yamaha A-S301 or Marantz PM6007 📅2023-12-31
%% --- %%
&emsp;
---
&emsp;
### 🗒 Notes
&emsp;
📺: [[Gangs of London (2020)]]
&emsp;
---
&emsp;
### :link: Linked activity
&emsp;
```dataview
Table from [[2023-10-28]]
```
&emsp;
&emsp;

@ -0,0 +1,137 @@
---
title: "🗒 Daily Note"
allDay: true
date: 2023-10-29
Date: 2023-10-29
DocType: Note
Hierarchy:
TimeStamp:
location:
CollapseMetaTable: true
Sleep: 8.5
Happiness: 85
Gratefulness: 90
Stress: 30
FrontHeadBar: 5
EarHeadBar: 20
BackHeadBar: 35
Water: 1.3
Coffee: 2
Steps:
Weight:
Ski:
IceSkating:
Riding:
Racket:
Football:
Swim:
---
%% Parent:: [[@Life Admin]] %%
---
[[2023-10-28|<< 🗓 Previous ]] &emsp; &emsp; &emsp; [[@Main Dashboard|Back]] &emsp; &emsp; &emsp; [[2023-10-30|🗓 Next >>]]
---
&emsp;
```button
name Record today's health
type command
action MetaEdit: Run MetaEdit
id EditMetaData
```
^button-2023-10-29Edit
```button
name Save
type command
action Save current file
id Save
```
^button-2023-10-29NSave
&emsp;
# 2023-10-29
&emsp;
> [!summary]+
> Daily note for 2023-10-29
&emsp;
```toc
style: number
```
&emsp;
---
&emsp;
### ✅ Tasks of the day
&emsp;
```tasks
not done
due on 2023-10-29
path does not include Templates
hide backlinks
hide task count
```
&emsp;
---
&emsp;
### 📝 Memos
&emsp;
This section does serve for quick memos.
&emsp;
- [ ] 10:56 :ski: [[@Lifestyle|Lifestyle]]: Préparer skis pour cet hiver @ [[Ski Rental Zürich]] 📅2023-11-04
%% --- %%
&emsp;
---
&emsp;
### 🗒 Notes
&emsp;
📺: [[2023-10-29 ⚽️ Brest 29 - PSG (2-3)]]
📺: [[Gangs of London (2020)]]
&emsp;
---
&emsp;
### :link: Linked activity
&emsp;
```dataview
Table from [[2023-10-29]]
```
&emsp;
&emsp;

@ -0,0 +1,11 @@
---
title: ⚽️ PSG AC Milan (3-0)
allDay: false
startTime: 21:00
endTime: 23:00
date: 2023-10-25
completed: null
---
[[2023-10-25|Ce jour]], [[Paris SG]] AC [[Milan]]: 3-0
Buteurs:: ⚽️ MBappé<br>⚽️ Kolo Muani<br>⚽️ Lee

@ -0,0 +1,11 @@
---
title: ⚽️ Brest 29 - PSG (2-3)
allDay: false
startTime: 13:00
endTime: 15:00
date: 2023-10-29
completed: null
---
[[2023-10-29|Ce jour]], Brest 29 - [[Paris SG]]: 2-3
Buteurs:: ⚽️ Mounié (SB29)<br>⚽️ Le Douaron (SB29)<br>⚽️ Zaïre-Emery<br>⚽️⚽️ MBappé

@ -0,0 +1,11 @@
---
title: ⚽️ AC Milan - PSG
allDay: false
startTime: 21:00
endTime: 23:00
date: 2023-11-07
completed: null
---
[[2023-11-07|Ce jour]], AC [[Milan]] - [[Paris SG|Paris Saint Germain]]:
Buteurs::

@ -0,0 +1,11 @@
---
title: ⚽️ PSG - Newcastle Utd
allDay: false
startTime: 21:00
endTime: 23:00
date: 2023-11-28
completed: null
---
[[2023-11-28|Ce jour]], [[Paris SG]] - Newcastle Utd:
Buteurs::

@ -0,0 +1,11 @@
---
title: ⚽️ Borussia - PSG
allDay: false
startTime: 21:00
endTime: 23:00
date: 2023-12-13
completed: null
---
[[2023-12-13|Ce jour]], Borussia Dortmund - [[Paris SG]]:
Buteurs::

@ -0,0 +1,22 @@
---
title: 💍 Mariage Rémi & Séverine
allDay: true
date: 2024-06-08
completed: null
CollapseMetaTable: true
---
[[2024-06-08|Ce jour]], mariage de Rémi & Séverine
Contacts:
🏠
1C Carmalt Gardens
Londres SW15 6NE
📞
06 98 11 94 17
📧
severine.remi.2024@gmail.com

@ -19,7 +19,7 @@ CollapseMetaTable: true
--- ---
Parent:: [[@Reading master|Reading list]] Parent:: [[@Reading master|Reading list]]
ReadingState:: 🟥 ReadingState:: 🟧
--- ---

@ -0,0 +1,79 @@
---
Tag: ["🎭", "📖", "🦸🏻", "👤"]
Date: 2023-10-29
DocType: "WebClipping"
Hierarchy:
TimeStamp: 2023-10-29
Link: https://www.newyorker.com/magazine/2023/10/30/the-mysteries-bill-watterson-book-review
location:
CollapseMetaTable: true
---
Parent:: [[@News|News]]
Read:: 🟥
---
&emsp;
```button
name Save
type command
action Save current file
id Save
```
^button-BillWattersonsLifeAfterCalvinandHobbesNSave
&emsp;
# Bill Wattersons Life After “Calvin and Hobbes”
“Nothing is permanent. Everything changes. Thats the one thing we know for sure in this world,” Calvin says to Hobbes in the first panel of a two-panel strip that ran in more than two thousand newspapers on Monday, July 17, 1995. The two friends are in a wagon, plummeting perilously forward into the unseen—a common pastime for them. Outside the world of the cartoon, its less than half a year before Bill Watterson, thirty-seven at the time, will retire from producing his wildly beloved work. “Calvin and Hobbes,” which débuted in 1985, centered on six-year-old Calvin and his best friend, Hobbes, a tiger who to everyone other than Calvin appears to be a stuffed animal. Six days a week, the strip appeared in short form, in black-and-white, and each Sunday it was longer and in color. The second panel of the July 17th strip is wide, with detailed trees in the foreground, the wagon airborne, and Calvin concluding his thought: “But Im still going to gripe about it.”
After retiring, Watterson assiduously avoided becoming a public figure. He turned his attention to painting, music, and family life. He kept the work he made to himself; he gave few, but not zero, interviews. (When asked in an e-mail interview that ran in 2013 in *Mental Floss* why he didnt share his paintings, he replied, “Its all catch and release—just tiny fish that arent really worth the trouble to clean and cook.”) Still, now and again his handiwork appeared. He wrote twice about Charles M. Schulz, the creator of “Peanuts,” whom he never met. For the charity of the cartoonist Richard Thompson, who had been given a diagnosis of Parkinsons, Watterson illustrated three strips for “Pearls Before Swine,” by Stephan Pastis, and also donated a painting for auction. In other words, he came out for the team.
In 2014, he gave an extensive and chatty interview to Jenny Robb, the curator of the Billy Ireland Cartoon Library and Museum, on the occasion of his second show there. Robb asked if he was surprised that his strip was still so popular. “It seems the less I have to do with it, the higher the strips reputation gets!” he said. In the interview, he comes across as levelheaded, not egotistical, not very pleased with electronic devices, the Internet, the diminished size of cartoons—and also quietly intense, like the dad figure in the strip, who enthusiastically sets out on a bike ride through heavy snow. As a college student at Kenyon, Watterson spent much of a school year painting his dorm-room ceiling like that of the Sistine Chapel, and then, at the end of the year, painted it back dorm-room drab.
My ten-year-old daughter makes a detailed argument (it involves bicycles, ropes, and scratch marks) that Hobbes is indisputably real; millions of us have the more decisively illusory experience of having grown up with Watterson. But we havent! Will we be disturbed if, now that time has passed, he has changed? When word came out that Watterson was releasing a new book this year—“The Mysteries,” a “fable for grown-ups,” written by Watterson and illustrated in collaboration with the renowned caricaturist John Kascht—there was more than passing interest. There were also very few clues about the content, save that theres a kingdom in trouble, living in fear of mysteries. With a different artist, I might interpret this as an enticement, but it seems more likely that Watterson is merely averse to marketing—he did no publicity for his first “Calvin and Hobbes” collection, and fought for years to prevent Hobbes and Calvin from appearing in snow globes, on pajamas, on chip-bag clips, on trading cards. (“If Id wanted to sell plush garbage, Id have gone to work as a carny,” he once said.) Yet Calvin and Hobbes are still everywhere, and forever young. Somewhere on the outskirts of Cleveland, their creator is probably irked that his old characters are pouncing into all these reviews of this other endeavor. As Calvin put it, the universe should have a toll-free hotline for complaints.
“The Mysteries” is clothbound and black, about eight inches square, with gray endpapers. The title font looks medieval; the text font looks contemporary. Words appear on the left page of each spread: one or two sentences in black, surrounded by a field of white. The images appear on the right, taking up most of the page, framed by a thick black line. Some of the illustrations appear to be photographs of small clay sculptures alongside elements composed in graphite and maybe paint—but the materials arent specified. Think Chris Van Allsburgs “Jumanji” gone darker, crossed with Fritz Langs “Metropolis.” The characters, unnamed, are drawn from that strange eternal medieval world of fantasy: knights, wizards, a king; peasants with faces like Leonardo grotesques, wearing kerchiefs or hoods. There are forty-three sentences in total, and one exclamation point. The magic of condensation that is characteristic of cartoons is also here, in a story with a quick, fairy-tale beginning: “Long ago, the forest was dark and deep.”
It all sounds rather sombre, but also it doesnt take long to read it nine or ten times. (The illustrations, slower to process, do much of the storytelling work.) The story is: Unseen mysteries have kept the populace in a state of fear. In response, a king bids his knights to capture a mystery, so that perhaps its “secrets could be learned” and its “powers could be thwarted.” When mysteries are caught, the public finds them disappointing, ordinary. One illustration is of a vender at a newspaper stand, looking askance. Below him are newspapers with headlines such as “So what?,” “Yawn,” and “Boring.” But modern technologies begin to appear: cars, skyscrapers, televisions. Mastering the secrets of the mysteries brought about a lot of technological marvels, and made the people less fearful. Or you might say insufficiently fearful: the woods are cut down, the air becomes acrid, and eventually the land looks prehistoric, desiccated, hostile to life. In one read, “The Mysteries” is a nephew of Dr. Seusss “The Lorax.”
Its also kin to the ancient story of Prometheus, a myth we now associate with technological advancements. Prometheus took pity on the struggling humans, and stole fire from the gods to share it with them. And how has that magnificently useful fire gone for the humans? Pretty well by some measures, pretty catastrophically by others. If only humans heeded the warnings within mysteries as well as they followed the blueprints for making Teflon pans and missiles. I dont think Ill spoil the plot of “The Mysteries” if I say that the story finds a distinctive and unsettling path to its final three words, which are “happily ever after.”
“Its a funny world, Hobbes,” Calvin says, plummeting again down a hill in a wagon with his friend. “But its not a hilarious world,” he says, as they fall out of their wagon. “Unless you like sick humor,” Hobbes says after he and Calvin have both crashed to the ground.
Watterson has said, of the illustrations in “Calvin and Hobbes,” “One of the jokes I really like is that the fantasies are drawn more realistically than reality, since that says a lot about whats going on in Calvins head.” Only one reality in “Calvin and Hobbes” is drawn with a level of detail comparable to the scenes of Calvins imagination: the natural world. The woods, the streams, the snowy hills the friends career off—the natural world is a space as enchanted and real as Hobbes himself.
Enchantment! If disenchantment is the loss of myth and illusion in our lives, then what is the chant that calls those essentials back? An ongoing enchantment is at the heart of “Calvin and Hobbes.” Its at the heart of “Don Quixote” and “Peter Pan,” too. These are stories about difficult and not infrequently destructive characters who are lost in their own worlds. At the same time, these characters embody most of what is good: the gifts of play, of the inner life, of imagining something other than what is there. If “The Mysteries” is a fable, then its moral might be that, when we believe weve understood the mysteries, we are misunderstanding; when we think weve solved them and have moved on, that error can be our dissolution.
Calvin offers the means of enchantment for seeing reality properly. This is well illustrated in the June 3, 1995, daily. (The brief black-and-white weekday strips of “Calvin and Hobbes” often feel as whole as the epic Sunday ones.) Calvin is digging a deep hole and Hobbes asks why. Calvin answers that hes looking for buried treasure. Has he found any? Calvin replies, “A few dirty rocks, a weird root, and some disgusting grubs.” In the final panel, Hobbes: “On your first try??” Calvin: “Theres treasure everywhere!”
While rereading “Calvin and Hobbes” comics for this piece, I was surprised that almost all of them were not entirely forgotten. If I saw them on a crowded subway platform, I would recognize them, even after years of separation. Some of the silliest and most untethered of the strips have stayed with me the most: one in which Hobbes repeats the word “smock” again and again, just happy to say it; another in which Calvin writes down, “How many boards would the Mongol hoard, if the Mongol hordes got bored?”—then crumples up the paper.
Watterson has written, “Whenever the strip got ponderous, I put Calvin and Hobbes in their wagon and send them over a cliff. It had a nice way of undercutting the serious subjects.” “The Mysteries” doesnt entirely lack that lightness—the contrast of modern and medieval in the illustrations is often funny—but humor is not its main tool. Reading “The Mysteries” after rereading “Calvin and Hobbes” reminded me of the Brothers Grimm story “The Goblins.” Goblins steal a mothers child and replace it with a ravenous changeling. When the woman asks a neighbor for advice on how to get her child back, she is told to make the changeling laugh, because “when a changeling laughs, thats the end of him.” She makes him laugh (by boiling water in eggshells? A trick perhaps lost across the centuries), and the goblins take the changeling away and return her child. She counters tragedy with a deliberate silliness—and it succeeds, even as the dark persists. In that sense, the old strip and the new fable work best, maybe, together. Im also reminded of the strip in which Hobbes says, “I suppose if we couldnt laugh at things that dont make sense, we couldnt react to a lot of life.”
One of the cozy pleasures of “Calvin and Hobbes” is the prominence of the seasons. This was felt even more acutely when the comics appeared daily in the paper, as they did throughout my childhood, when my brother used to call the Sunday comics insert “the intellectual pages.” (Now we both read the nearly comic-free online news instead of the material papers, into which, Watterson has said, “little jokes” were placed as a respite from “atrocities described in the rest of the newspaper.”) In the fall, a leaf pile transforms into a Calvin-eating monster; in winter, Calvin sculpts a snowman swimming away from snow-shark fins; spring is rainy, and in summer the days are just packed. Time hurries along through the year, but the years never pass—a great comfort. In “The Mysteries,” times arrow cant be missed for a moment. Though the story starts in the misty forever-medieval, it quickly javelins forward. By its close, aeons have passed, and the perspective is no longer even earthbound. The book reads like someone saying goodbye. The outcome feels inevitable.
Calvin isnt the only comic-strip character who doesnt age. The characters in “Peanuts” never grow up, either. Schulz drew the strip for fifty years, and the final strip was published the day after he died. George Herriman drew “Krazy Kat” for more than thirty years, through to the year of his death, 1944. The characters in “Krazy Kat” also didnt age or really change much: Krazy Kat is a black cat forever in love with Ignatz, a white mouse who serially hits Krazy with bricks, an action that Krazy misinterprets as a sign of love. Watterson has expressed admiration for both Schulz and Herriman. Yet Watterson, after ten years, moved on to other interests.
“Schulz and Peanuts: A Biography,” by David Michaelis, makes vivid that no amount of success ever separated Schulz from his sense of himself, carried over from childhood, as a lonely and overlooked “nothing.” In 2007, Watterson reviewed the biography for the *Wall Street Journal*, and reminded readers that “Peanuts” had as much darkness—fear, sadness, bullying—as it had charm. “Schulz illustrates the conflict in his life, not in a self-justifying or vengeful manner but with a larger human understanding that implicates himself in the sad comedy,” Watterson wrote. “I think thats a wonderfully sane way to process a hurtful world.” Herriman, born in the nineteenth century in New Orleans to a mixed-race family, often presented himself, in his adult life, as Greek. It would be oversimplifying to say that Herrimans background fuelled “Krazy Kat,” just as it would be oversimplifying to say that Schulz was forever a Charlie Brown—but it would be delusional to think that the persistent situations and sentiments of those comics werent inflected by their makers lives. As Krazy Kat put it, in that magic mixed-up Kat language, “An who but me can moddil for me, but I!”
Watterson must have been working out something in his strip, too. By his own account, he had a pretty nice childhood, with supportive parents and a house that bordered a mysterious wood. Its possible that Watterson quit because he tired of the demanding work, or because hed said all he had to say, or because he was worn out by the legal battles over his characters. But maybe he just changed. Growing up is always a loss—a loss of an enchanted way of seeing, at the very least—and for some people growing up is more of a loss than for others. Perhaps part of what drove Watterson, “Ahab-like” by his own telling, back to the drawing board with his boy and his tiger day after day was a subconscious commitment to staying a child. Maybe he chose to stop publishing because, in some way, for whatever reasons, he became O.K. with growing up.
In a Sunday strip on April 22, 1990, Calvins dad tells Calvin and Hobbes a bedtime story, by request, that is about Calvin and Hobbes. All he does, pretty much, is describe, to his rapt audience, the first part of their actual day. Calvin complains that his dad ends the story too early, that he hasnt even gotten to lunchtime. His dad says the story has no end, because Calvin and Hobbes will go on writing it “tomorrow and every day after.” The friends are pleased to learn theyre in a story that doesnt end.
Heres another story, kindred to “The Mysteries,” about a knight who journeys into a dark and unknown wood. The first scene of “Sir Gawain and the Green Knight,” which is thought to have been written in the late fourteenth century, takes place in Camelot during New Years festivities. A good time, with feasting and friends, is interrupted by the arrival of a stranger: a massive knight, whose skin and hair are all green, who is dressed all in green, who is riding an all-green horse. The knight carries a huge axe and makes a strange proposal, in such a way that the honor of the whole court feels at stake. He invites someone to swing at his neck with his axe; in return, he will have a chance, a year and a day later, to swing the same axe at the neck of the volunteer, who ends up being Sir Gawain. The resonance of the story with facing the perils of a dark and unknown wood, of nature itself, is pretty clear.
Gawain chops off the head of the Green Knight, who then picks up his head; says, See you in a year; and rides away. Pretty quickly, the feasting and the merry mood return. How, I remember thinking the first time I read the tale, could this possibly end? Its not satisfying if the Green Knight is killed, or if Gawain is. Maybe both of them die, I supposed.
But no. Gawain keeps his word, despite the perilous terms. En route to his meeting with the Green Knight, in the Green Chapel, he tries to behave well with the seductive wife of the lord who graciously hosts him. Then he bravely bares his neck for the terrifying Green Knight—but he learns it was an enchantment! To me, the ending follows from both good behavior and enchantment—good behavior being something Calvin despises, and enchantment being the realm in which he is king. ♦
&emsp;
&emsp;
---
`$= dv.el('center', 'Source: ' + dv.current().Link + ', ' + dv.current().Date.toLocaleString("fr-FR"))`

@ -0,0 +1,155 @@
---
Tag: ["🏕️", "🌺", "🇺🇸", "🔥", "🧯"]
Date: 2023-10-29
DocType: "WebClipping"
Hierarchy:
TimeStamp: 2023-10-29
Link: https://www.reuters.com/graphics/HAWAII-WILDFIRE/CLEANUP/egpbmemanvq/
location:
CollapseMetaTable: true
---
Parent:: [[@News|News]]
Read:: 🟥
---
&emsp;
```button
name Save
type command
action Save current file
id Save
```
^button-HowworkersremovetoxicdebrisafterwildfiresNSave
&emsp;
# How workers remove toxic debris and ash after Hawaii wildfires
![fading at the bottom](https://www.reuters.com/graphics/HAWAII-WILDFIRE/CLEANUP/egpbmemanvq/cdn/images/graphics/bottomFade.png)
The teams of workers wrapped in white plastic suits stand out against a charred landscape as they pick through the toxic ash and debris that remain after Hawaiis worst wildfire ripped through the historic town of Lahaina. When it was over, more than 1,700 buildings had been ruined walls collapsed, pipes twisted, insulation materials broken and scattered across the breezy coastline in northwest Maui creating a toxic mess that will haunt the Pacific island for months to come.
As Hawaii mourns the 99 people killed in the Aug. 8 fire, and with 6 people still missing, it also must go through the painstaking process of clearing away Lahainas now-toxic remnants. In the harbor, dozens of sunken vessels appear as dark shadows on the seafloor, resting in sludge from ash and debris.
“It may take up to a year, and cost up to $1 billion,” said Hawaii Senator Brian Schatz (D) during a September 5 briefing on the floor of the Senate.
When heat and fire move through a town, they destroy treated timber, metal pipes and girdings, insulation and other materials unleashing hazardous elements and chemicals into the air, water and ground. These toxins, if not properly cleared, can pose health threats for years to come.
A map showing the locations of buildings that were destroyed in the fire and the approximate ages of the neighborhoods.
In the case of Lahaina, the age of the building helps cleanup crews determine which ruined plots might be more dangerous than others. Older structures were more likely to have used asbestos, for example - a cancer-causing insulation material now banned in construction. The plantation-era wooden structures from the early to mid 1900s, which fueled the fires rapid spread through the town, might have used timber coated in poisonous arsenic to ward away insects and rot.
The everyday objects and materials that populate an average U.S. household generally pose no threat. But when plastic materials, lead pipes, outdated insulation, treated wood or batteries are engulfed by fire, they can change dramatically for the worse.
“It's basically a college chemistry course happening in real time, with chemicals being converted, one to another, with the heat of the flames,” said Gina Solomon, a clinical professor of medicine at the University of California, San Francisco.
Chemicals released immediately in a fire can include chlorine, benzene and cyanide all extremely toxic to humans. But as theyre released with the smoke from the fire, they also dissipate relatively quickly, limiting longer-term danger.
Dioxins, a group of highly toxic chemicals that persist for a long time in the environment, can form through urban fire combustion, particularly with burning plastics. They are also initially released in the billowing smoke but will stick around, in the ash, soot and soils left behind. When ingested, dioxins accumulate in animal fatty tissues, which can lead to liver damage, reproductive problems, immune system suppression or illnesses like cancer.
## A methodical process
The arduous cleanup, led by the Environmental Protection Agency (EPA), begins once the canine teams from the Federal Emergency Management Agency have conducted their searches for victims and human remains. Before anything is cleared away, the cleanup crews must inspect and catalog the damage.
Moving plot by plot, they map out the area with spray paint to mark dangerous sites. Pink paint is used for suspected asbestos, red marks lithium battery banks, orange shows highly hazardous areas and items, and white means safe or inert objects. Blue flags are used to mark areas or items of cultural sensitivity. Then the careful task of decontamination begins.
To prevent further pollution, the EPA will also remove toxic hazards like propane tanks, oils, paints and pesticides that might still be found under a kitchen sink or in a garage. When firearms are found, theyre handed to the Maui police.
The toxic materials are taken outside of the town to Ukumehame Firing Range, where the EPA has set up a staging area to sort through the mess. The area has been lined with special, liquid-tight material made from layers of woven polypropylene. Straw wattles surround the area to contain anything that might spill. Here, the various hazards are separated from one another, so they can be packaged and shipped to the U.S. mainland for safe disposal.
Local officials are also working alongside both the EPA and Army Corps of Engineers to identify and preserve any culturally important artifacts or locations.
Lahaina has long been a Hawaiian center of indigenous heritage. In 1802, King Kamehameha I made it the capital of the Hawaiian Kingdom, and it remained the seat of power until the 1940s, when King Kamehameha III moved the capital to Honolulu.
“Lahaina holds some of the most historically significant cultural properties and highest-ranking sacred remains of our ancestors,” said Carmen “Hulu” Lindsey in a statement the day after the fire. She is chairwoman of the Office of Hawaiian Affairs, an organization that provides resources for Native Hawaiians.
## Hazardous building legacy
The fire and the damage has not been limited to Lahaina. Preliminary testing of ash found at eight burned homes in the neighboring town Kula revealed very high levels of toxins, with 138 times the acceptable level of arsenic, 18 times the acceptable cobalt levels and about 3.5 times normal lead levels. Because the homes in Kula were constructed during the same time period as homes in Lahaina, the Hawaii Department of Health expects both locations to contain similar contaminant levels.
There are no clear records of what materials were used in building Lahaina. But the age of each structure gives surveyors clues, based on which construction materials were available and commonly used during that period. Buildings constructed in the 1940s-1960s were built when most hazardous materials were available for use.
“The major concerns are arsenic for the building materials, and you know there's lead-based paint and lead pipes,” said Cory Koger, a chemist and toxicologist for the U.S. Army Corps of Engineers.
“The arsenic would be from the Canec, and the lead coming from all the various sources of lead, including historic burning of lead-based fuels,” he said, noting that they wont aim to reduce lead in the environment to zero, but to the pre-fire levels based on recent Maui environmental data.
### The age of Lahainas buildings
The chart below shows an approximate timeline of when some hazardous building materials were in use compared to the age of each building in Lahaina.
Two rows of dots representing all residential and commercial buildings in Lahaina, with their position indicating when they were built from 1900 to the present, and shaded brackets above the lines indicating the potential building materials used in those years that can release toxic chemicals when burnt.
## Sunken boats
The cleanup effort is not limited to Lahainas land, but extends into the harbor where the remains of sunken boats now clutter the coastline in heaps of twisted metal and warped fiberglass. For this effort, U.S. Navy salvage divers coordinating with the Lahaina Fire Department and the U.S. Coast Guard have already catalogued dozens of submerged vessels, and expect to find more.
Some of these vessels pose swimming or boating hazards. Some could be leeching dangerous materials into the surrounding water. Aerial surveys by the Coast Guard along with an underwater remote vehicle from the Navy are being used to map out hazards on the harbor floor.
One month after the fire, Kelli Lundgren was able to check on her sailboat Lazy Daze moored at the south end of the harbor - and was shocked to find it was one of only 13 still afloat. She calls them “the Lucky 13.”
“Were still trying to analyze how that firestorm missed these boats,” Lundgren said. “Its just incredible.”
### Aerial assessment
Composite image made from frames of a drone video provided by the United States Coast Guard.
Images from drone video are stitched together to show an overview of Lahaina harbor, with dozens of sunken boats showing as shadows through the blue water, and a few white vessels floating at the far southern end of the harbor.
There were 99 boats moored in the harbor before the fire. Winds carried the wildfires heat and smoke, along with fire embers, out over the water, warping plastic fiberglass hulls and setting wooden docks and boats aflame. Some people jumped into the ocean and were later rescued.
"I was the last one off the dock when the firestorm came through the banyan trees and took everything with it. And I just ran out and helped everyone I could along the way," Dustin Johnson told reporters at Lahainas airport just after the fire. He had been working in the harbor for a company offering two-hour charter tours.
A photograph of smoke billowing out into the water in Lahaina, Hawaii, U.S. on August 9, 2023.
“The water quality inside the harbor is horrible,” said aquatic biologist Russell Sparks with Hawaiis Department of Land and Natural Resources (DLNR). “You can see it from the surface. Theres a constant sheen of diesel and other pollutants.”
Already more than 2,000 gallons of polluting substances and potentially hazardous material have been removed from the harbor floor. The removal of damaged boats and larger debris will come next.
![Photograph of a destroyed boat floating off Lahaina Small Boat Harbor after the wildfire.](https://www.reuters.com/graphics/HAWAII-WILDFIRE/CLEANUP/egpbmemanvq/cdn/images/melted_boat.jpg)
A destroyed boat floats off Lahaina Small Boat Harbor after the wildfires. August 10, 2023. Hawaii Department of Land and Natural Resources/Handout via REUTERS
But Sparks and the DLNRs Division of Aquatic Resources are also concerned about the micro-debris - the broken bits of fiberglass that can degrade marine habitat if not removed. Additionally, water quality devices have been placed along the coral reefs that skirt Lahainas coast, with scientists studying the results to understand what may be drifting out of the harbor.
The devices, nicknamed “Fatbags”, contain a high-purity fat in which waterborne toxins, floating metals, dioxins, flame retardants and other hazardous chemicals will accumulate over time. “This mimics what a living creature like coral or fish would absorb. When the samples are analyzed, well have a much better idea of what the reefs are being exposed to as a result of this fire,” Sparks said.
Authorities will continue to monitor the air, soil and drinking water supply, as well as tracking contaminants in the ocean, as the cleanup continues.
Water supply testing after the fire revealed that multiple locations contained benzene and other volatile organic compounds as a result of the wildfire, and drinking water in Lahaina was deemed unsafe to drink by the Maui Department of Water Supply. This decree remains largely in place today. Testing as of October 4 shows no benzene, but detectable levels of metals like lead and copper were found.
Water systems may become contaminated if they lose pressure, sucking in smoke, chemicals or hot gases. This is what happened in parts of the Upper Kula and Lahaina system, according to a Maui County press release. Plastic pieces of the water system less than 1.5 feet underground can also cause contamination when exposed to high heat from a wildfire.
As the cleanup goes on, officials have worried about the mass of toxic ash coating the entire area.
Preliminary air sampling conducted in Lahaina and Upcountry Maui suggested the levels of contaminants were not hazardous. But there is worry that high winds could stir things up. Officials have approved the use of a thickening agent, to be sprayed on the ash to keep it in place until it can be cleaned.
The area around Lahaina has also been grappling with a persistent drought, and the dry vegetation likely fueled the speed and severity with which the fire spread. That drought has also helped to keep pollution from water runoff in check. In the two months following the fire, less than a quarter inch of rain has fallen on the area.
But as November heralds the start of a wetter season that tends to peak in January, that relief may be short-lived. Heavy rainfall would raise the threat of toxic ash and soot washing into the sea where coral reefs and other marine life could suffer.
With about 75% of Lahaina destroyed, much will need to be rebuilt. The estimated cost of rebuilding is around $5.5 billion, according to the Pacific Disaster Center. While residents of small sections in the north, east and southern parts of the town have been able to visit their homes to see what remains, the majority of residents are being kept away while the cleanup continues. In a press conference only days after the fire on Aug. 10, Hawaiis Lieutenant Governor Sylvia Luke saw recovery taking place over the span of not months but years. “Its not just homes, its schools, businesses, theres infrastructure, broadband needs. Its going to be significant.”
Notes
The graphic showing a timeline of toxic building materials uses 1980 as an approximate phase-out point for asbestos, following a series of bans in the 1970s. Asbestos regulation in the U.S. has evolved over the years and some regulations have been overturned. Regulations surrounding asbestos may vary depending on specific products and applications.
The chart also visualizes all buildings in Lahaina. Each dot represents a structure in Tax Map Key (TMK) land parcels beginning with 245 and 246, totalling 4,976 buildings.
Sources
Maui County; U.S. Coast Guard District 14; EPA; U.S. Army Corps of Engineers; Hawaii Department of Land and Natural Resources; Pacific Disaster Center (PDC); Office of Planning, State of Hawaii; USGS; Federal Emergency Management Agency (FEMA); U.S. Consumer Product Safety Commission; Hawaii Department of Health (HDOH); Maps4news; HERE; OSM.
Edited by
Katy Daigle and Claudia Parsons
&emsp;
&emsp;
---
`$= dv.el('center', 'Source: ' + dv.current().Link + ', ' + dv.current().Date.toLocaleString("fr-FR"))`

@ -1,6 +1,6 @@
--- ---
Tag: ["🫀", "🥣", "🦐", "🇨🇳"] Tag: ["🫀", "🥣", "🦑", "🇨🇳", "🚫"]
Date: 2023-10-22 Date: 2023-10-22
DocType: "WebClipping" DocType: "WebClipping"
Hierarchy: Hierarchy:
@ -12,7 +12,7 @@ CollapseMetaTable: true
--- ---
Parent:: [[@News|News]] Parent:: [[@News|News]]
Read:: 🟥 Read:: [[2023-10-27]]
--- ---
@ -30,17 +30,6 @@ id Save
# The Crimes Behind the Seafood You Eat # The Crimes Behind the Seafood You Eat
- [News](https://www.newyorker.com/news)
- [Books & Culture](https://www.newyorker.com/culture)
- [Fiction & Poetry](https://www.newyorker.com/fiction-and-poetry)
- [Humor & Cartoons](https://www.newyorker.com/humor)
- [Magazine](https://www.newyorker.com/magazine)
- [Puzzles & Games](https://www.newyorker.com/crossword-puzzles-and-games)
- [Video](https://video.newyorker.com/)
- [Podcasts](https://www.newyorker.com/podcast)
- [Archive](https://www.newyorker.com/archive)
- [Shop](https://store.newyorker.com/archive)
Americans know little about how their seafood is sourced. Americans know little about how their seafood is sourced.
Much of it comes from a vast fleet of Chinese ships. Much of it comes from a vast fleet of Chinese ships.

@ -0,0 +1,132 @@
---
Tag: ["🎭", "🎥", "🧟‍♂️"]
Date: 2023-10-29
DocType: "WebClipping"
Hierarchy:
TimeStamp: 2023-10-29
Link: https://www.scientificamerican.com/article/the-evolutionary-reasons-we-are-drawn-to-horror-movies-and-haunted-houses/?src=longreads&utm_medium=email
location:
CollapseMetaTable: true
---
Parent:: [[@News|News]]
Read:: 🟥
---
&emsp;
```button
name Save
type command
action Save current file
id Save
```
^button-TheReasonsWhyAreDrawntoHorrorMoviesNSave
&emsp;
# The Evolutionary Reasons We Are Drawn to Horror Movies and Haunted Houses
Chain saws roar, and [spine-chilling screams](https://www.tiktok.com/@only_joya/video/7158124264971832619) echo from behind a dense wall of trees. You know you're at a scary attraction in the woods of Denmark called Dystopia Haunted House, yet everything sounds so real. As you walk into the house, you become disoriented in a dark maze filled with strange objects and broken furniture; when you turn a corner, you're confronted by bizarre scenes with evil clowns and terrifying monsters reaching out for you. Then you hear the chain saw revving up, and a masked man bursts through the wall. You scream and start running.
This might sound like the kind of place nobody would ever want to be in, but every year millions of people pay to visit haunts just like Dystopia. They crowd in during Halloween, to be sure, but show up in every other season, too. This paradox of horror's appeal—that people want to have disturbing and upsetting experiences—has long perplexed scholars. We devour tales of psychopathic killers on true crime podcasts, watch movies about horrible monsters, play games filled with ghosts and zombies, and read books that describe apocalyptic worlds packed with our worst fears.
This paradox is now being resolved by research on the science of scary play and morbid curiosity. Our desire to experience fear, it seems, is [rooted deep in our evolutionary past](https://www.scientificamerican.com/article/on-the-nature-of-fear/) and can still benefit us today. Scary play, it turns out, can help us overcome fears and face new challenges—those that surface in our own lives and others that arise in the increasingly disturbing world we all live in.
The phenomenon of scary play surprised Charles Darwin. In [*The Descent of Man,*](https://www.google.com/books/edition/The_Descent_of_Man/NaPu24dY4iAC?hl=en&gbpv=0) he wrote that he had heard about captive monkeys that, despite their fear of snakes, kept lifting the lid of a box containing the reptiles to peek inside. Intrigued, Darwin turned the story into an experiment: He put a bag with a snake inside it in a cage full of monkeys at the London Zoological Gardens. A monkey would cautiously walk up to the bag, slowly open it, and peer down inside before shrieking and racing away. After seeing one monkey do this, another monkey would carefully walk over to the bag to take a peek, then scream and run. Then another would do the same thing, then another.
The monkeys were “satiating their horror,” as Darwin put it. Morbid fascination with danger is widespread in the animal kingdom—it's called predator inspection. The inspection occurs when an animal looks at or even approaches a predator rather than simply fleeing. This [behavior occurs across a range of animals](https://www.jstor.org/stable/23735625), from guppies to gazelles.
At first blush, getting close to danger seems like a bad idea. Why would natural selection have instilled in animals a curiosity about the very things they should be avoiding? But there is an evolutionary logic to these actions. Morbid curiosity is a powerful way for animals to gain information about the most dangerous things in their environment. It also gives them an opportunity to practice dealing with scary experiences.
![Three people dressed as horror creature with white painted faces and darkened eyes, shown behind a wire fence.](https://static.scientificamerican.com/sciam/cache/file/BB021FAD-0F2A-4B4D-AC5567C5C8CEF095_medium.jpg?cacheID=D4D53EC9-3B72-4BB4-A223BE81840C7860)
Customers at Dystopia are threatened by ghouls that could break past a thin wire barrier at any moment. Credit: Henriette Klausen
When you consider that many prey animals live close to their predators, the benefits of morbidly curious behavior such as predator inspection become clear. For example, it's not uncommon for a gazelle to cross paths with a cheetah on the savanna. It might seem like a gazelle should always run when it sees a cheetah. Fleeing, however, is physiologically expensive; if a gazelle ran every time it saw a cheetah, it would exhaust precious calories and lose out on opportunities for other activities that are important to its survival and reproduction.
Consider the perspective of the predator, too. It may seem like a cheetah should chase after a gazelle anytime it sees one. But for a cheetah, it's not easy to just grab a bite; hunting is an energetically costly exercise that doesn't always end in success. As long as the cheetah isn't starving, it should chase a prey animal only when the chances of capturing it are reasonably high.
If it's best for gazelles to run only when the cheetah is hunting, then they benefit if they can identify when a cheetah is hungry. And the only way for a gazelle to learn about cheetahs is by closely observing them when it's relatively safe to do so. For example, if the surrounding grass is short and a cheetah is easily visible, a gazelle feels safer and is more likely to linger a while and watch the cheetah, especially if the gazelle is among a larger group. The age of the gazelle matters, too; adolescents and young adults—those fast enough to escape and without much previous exposure to predators—[are the most likely to inspect cheetahs](https://link.springer.com/article/10.1007/bf00164184). The trade-off makes sense: these gazelles don't know much about dangerous cats yet, so they have a lot to gain from investigating them. Relative safety and inexperience are two of the most powerful moderators of predator inspection in animals—and of morbid curiosity in humans.
Today people inspect predators through stories and movies. Depictions of predators are found in stories passed along through [oral traditions around the world](https://www.researchgate.net/profile/Michelle-Sugiyama/publication/261705774_Lions_and_Tigers_and_Bears_Predators_as_a_Folklore_Universal/links/004635351513dd4e8a000000/Lions-and-Tigers-and-Bears-Predators-as-a-Folklore-Universal.pdf). Leopards, tigers and wolves are frequent antagonists in regional folklore. We also tell stories and see films about monstrous fictional predators such as ferocious werewolves, mighty dragons, clever vampires and bloodthirsty ogres.
Indulging in stories about threats is a frighteningly effective and valuable strategy. Such tales let us learn about potential predators or menacing situations that other people have encountered without having to face them ourselves. The exaggerated perils of fictional monsters create strong emotional and behavioral responses, familiarizing us with these reactions for when we have to deal with more down-to-earth dangers.
Children are often the intended audience for scary oral stories because these stories can help them learn about risks early in their lives. Think about the key lines of *Little Red Riding Hood:*
“Grandmother, what big eyes you have!”
“All the better to see with, my child.”
“Grandmother, what big teeth you have got!”
“All the better to eat you up with.”
The tale teaches a young audience, in a safe and entertaining way, what wolves look like and what certain parts of a wolf do. The story takes place in the woods, where wolves are typically found. It's scary, but told in a secure space, it delivers a valuable lesson.
![A person dressed in an intimidating outfit wearing a gas mask and holding a gun.](https://static.scientificamerican.com/sciam/cache/file/32E81583-9BF6-4813-8FD29A8D151A7F0A_medium.jpg?cacheID=241883D7-9DDD-4D5A-8CC8A84FB0A5DEAA)
A menacing figure looms out of the darkness at Dystopia. Credit: Jacob Papsø
Our fascination with things that can harm or kill us is not limited to predators. We also can be morbidly drawn to tales of large-scale frightening situations such as volcanic eruptions, pandemics, dangerous storms and a large variety of apocalyptic events. This is where the magic of a scary story really shines: it's the only way to learn about and rehearse responses to dangers we have yet to face.
Most people were feeling pretty uncertain about the future in 2020. COVID had thrust the world into a global pandemic. Governments were restricting movement, businesses were closing, and the way of living that many were used to was screeching to a halt.
But some of us had seen something like it before. Less than a decade earlier meningoencephalitic virus 1, or MEV-1, was wreaking havoc. It spread with terrifying speed and without requiring close contact in subways, elevators and outdoor public spaces. Society's response to MEV-1 foreshadowed what would happen in 2020 with COVID: travel stopped, businesses closed, and people started stockpiling supplies. Some of them began touting dubious miracle cures.
If you don't remember the worldwide devastation of MEV-1, you must not have seen the movie *Contagion*, a 2011 thriller starring Matt Damon, Kate Winslet and Laurence Fishburne. Watching it might have benefited you when COVID spread across the planet. In a study that one of us (Scrivner) conducted in the early months of the pandemic, those who had seen at least one pandemic-themed movie [reported feeling much more prepared](https://www.ncbi.nlm.nih.gov/pmc/articles/PMC7492010/) for the societal surprises that COVID had in store. The stockpiling of supplies, business closures, travel bans and miracle cures were all things fans of *Contagion* had seen before; they had already played with the idea of a global pandemic before the real thing happened.
Learning to [regain composure and adapt in the face of surprise](https://www.journals.uchicago.edu/doi/10.1086/393866) and uncertainty seems to be a key evolutionary function of play. Engaging in play that simulates threatening situations helps juvenile mammals such as tiger cubs and wolf pups practice quickly regaining stable movement and emotional composure. Humans do this as well. Call to mind a backyard party where young children squeal with fear and delight as they are chased by a fun-loving parent who threatens, with arms outstretched in monster pose, “I'm gonna get you!” It's all just fun and games, but it's also a chance for the kids to try to maintain their motor control under stress so they don't tumble to the ground, making themselves vulnerable to a predator—or a tickle attack from the parent.
Researchers who study human fun and games have argued that [the decline of thrilling, unstructured play](https://files.eric.ed.gov/fulltext/EJ985541.pdf) over the past few decades has contributed to a rise in childhood anxiety over that same time period. School and park playgrounds used to be arenas for this kind of play, but an increased emphasis on playground safety has removed opportunities for it. Don't get us wrong: safety is a good thing. Many playgrounds of the past were dangerous, with ladders climbing upward of 20 feet to rusty slides with no rails. But making playgrounds *too* safe and sterile can have unintended consequences, including depriving children of opportunities to learn about themselves and their abilities to manage challenging and scary situations. Kids need to be able to exercise some independence, which often involves a bit of risky play.
Many scientists who study play have proposed that adventurous play can help [build resilience](https://link.springer.com/article/10.1007/s10567-020-00338-w) and [reduce fear](https://journals.sagepub.com/doi/full/10.1177/147470491100900212) in children. In line with this research, organizations such as [LetGrow](https://letgrow.org/about-us/) have created programs for schools and parents to foster independence, curiosity and exploration in children. Their solution is simple: let kids engage in more challenging, unstructured play so they can learn how to handle fear, anxiety and danger without it being too overwhelming.
Even virtual scary experiences provide many of these same benefits. The Games for Emotional and Mental Health Lab created a horror biofeedback game called *MindLight* that has been shown to reduce anxiety in children. The game centers on a child named Arty who finds himself at his grandmother's house. When he goes inside, he sees that it has been enveloped in darkness and taken over by evil, shadowy creatures that can resemble everything from blobs to catlike predators. Arty must save his grandmother from the darkness and bring light back to her house. He has nothing to defend himself with except a light attached to his hat—his “mindlight.” Players controlling Arty must use the mindlight to expose and defeat the creatures.
But there's a catch: as a player becomes more stressed (as measured by an electroencephalogram), their mindlight dims. The player must stay calm in the face of fear by practicing techniques such as replacement of stress-producing thoughts or muscle relaxation, borrowed from cognitive-behavioral therapy. As they regain their composure, their mindlight grows in power, and they are able to defeat the monsters with it. This combination of therapeutic techniques and positive reinforcement (kids defeat the monsters and conquer their fear) makes *MindLight* [a potent antianxiety tool](https://www.sciencedirect.com/science/article/abs/pii/S0747563216303296). Randomized clinical trials with children have shown the game to be [as effective at reducing several anxiety symptoms as traditional cognitive-behavioral therapy](https://link.springer.com/content/pdf/10.1007/s10826-020-01728-y.pdf), a widely used anxiety treatment.
Scary play can help adults navigate fear and anxiety, too. Scrivner [tested this idea](https://psycnet.apa.org/record/2022-90782-001) with visitors to Dystopia Haunted House. Haunted house goers could take personality surveys before they entered and answer questions about their experience when they exited. After about 45 minutes of being chased by zombies, monsters and a pig-man with a chain saw, the visitors ran out of the haunted house and into some members of the research team, who then asked them how they felt. A huge portion said they had learned something about themselves and believed they had some personal growth during the haunt. In particular, they reported learning the boundaries of what they can handle and how to manage their fear.
Other research from the Recreational Fear Lab in Aarhus, Denmark, has shown that [people actively regulate their fear](https://www.sciencedirect.com/science/article/pii/S0304422X18301517) and arousal levels when engaging in scary play. This means that engaging with a frightening simulation can serve as [practice for controlling arousal](https://psyarxiv.com/7uh6f/) and may be generalizable to other, real-world stressful situations, helping people bolster their overall resilience.
In one study that supports this idea, real soldiers played a modified version of the zombie-apocalypse horror game *Left 4 Dead* that incorporated player arousal levels. In the game, zombies pop out of nowhere, chasing players and clawing them to the ground, generating visceral fear even in experienced video game players. In the study, some players were given visual and auditory signals when their arousal increased: a red texture partially obscured the player's view, and they heard a heartbeat that got louder and faster as their stress increased. Later, during a live simulation of an ambush, soldiers who played the video game and received biofeedback had lower levels of cortisol (a stress biomarker) than those who did not play. Strikingly, these people also [were better at giving first aid to a wounded soldier](https://journals.plos.org/plosone/article/file?id=10.1371/journal.pone.0036169&type=printable) during that simulation.
![A person dressed up as a horror creature with a disturbing smile shown peering between the planks of a wood fence.](https://static.scientificamerican.com/sciam/cache/file/641D2677-3D78-48EC-92CF414421A3EFBA_medium.jpg?cacheID=09F82101-1670-4D39-9AF45EAE87103282)
People who confront monstrous predators in a relatively safe space, such as a haunted house, can learn to manage anxiety felt during distressing real-life situations. Credit: Andrés Rein Baldursson
These rehearsals for stress may be especially effective when people do them in groups. Collectively experiencing a dangerous situation ties people together. There are many anecdotal examples of this in history, from post-9/11 America, to military platoons, to the high levels of cooperation and assistance that often occur in the aftermath of natural disasters. There are also experimental studies showing that danger and fear can be powerful positive social forces. For example, engaging in rituals such as [fire walking can physiologically synchronize people with one another](https://www.pnas.org/doi/full/10.1073/pnas.1016955108) and [promote](https://journals.sagepub.com/doi/10.1177/0956797612472910) mutually beneficial behavior.
We don't need exposure to real danger to reap these cooperative benefits, however. Collectively simulating upsetting or dangerous situations through scary play could confer similar benefits without the physical risk. In the health-care industry, [simulations are often used to teach medical skills](https://pubmed.ncbi.nlm.nih.gov/33273877/) by creating situations that are intense. [In public health](https://centerforhealthsecurity.org/our-work/tabletop-exercises/event-201-pandemic-tabletop-exercise), simulations have been used to teach people ways to cooperate and coordinate in pandemic preparedness and response.
In other species, [learning about risks is often a social endeavor](https://www.sciencedirect.com/science/article/pii/S0003347284710554). Stickleback fish investigating predators often do so with others. One stickleback will begin approaching, then wait to see whether another will approach a little closer. Then the first stickleback will go a little further, taking its turn being the one nearest the predator. The results of studies into this behavior even suggest that sticklebacks from regions with higher predation risk are more cooperative than those from places with lower risk.
In humans, morbid curiosity seems to be associated with cooperation and risk management. For example, in many societies people tell stories about dangers in their environments, whether those are natural disasters such as fires, earthquakes and floods or threats of war, theft or exploitation from nearby groups. The Ik people of Uganda, whom one of us (Aktipis) has studied as part of the Human Generosity Project, have a collective and emotionally compelling way of engaging with concerns about raids from other groups. They enact entire plays with music, dancing and drama where they reexperience both the tragedy and the triumph of helping one another during such difficult times. Such stories and dramatic enactments can bring shared attention to these kinds of challenges, and we know that [shared attention is one mechanism that can help people cooperate and solve coordination dilemmas](https://psycnet.apa.org/record/2009-07532-000).
A failure of group imagination, in contrast, can lead to vulnerability. Some researchers have suggested that [zombie-apocalypse fiction can lead to more creative solutions during unexpected and risky events by](https://www.researchgate.net/profile/David-Buchanan-7/publication/340390898_The_Dark_Side_of_Group_Behavior_Zombie_Apocalypse_Lessons/links/5fafb251a6fdcc9ae050e888/The-Dark-Side-of-Group-Behavior-Zombie-Apocalypse-Lessons.pdf) helping people become more imaginative. With [CONPLAN 8888](https://www.stratcom.mil/portals/8/Documents/FOIA/CONPLAN_8888-11.pdf), a fictional training scenario, the U.S. military used a hypothetical zombie apocalypse to make learning about disaster management more fun for officers. The Centers for Disease Control and Prevention did something similar with a comic they produced called [*Preparedness 101: Zombie Pandemic*](https://stacks.cdc.gov/view/cdc/6023). Organizations have recognized that couching fears in imaginative play is productive. Right now our research team is developing a set of scary group games to help people manage shared risks and fears.
What can we learn from the human propensity for scary play? First, don't be afraid to get out there and explore your world, even if it sometimes provokes a little fear. Second, make sure that your morbid curiosity is educating you about risks in a way that is beneficial to you. In other words, don't get stuck doomscrolling upsetting news on the Internet; it's a morbid-curiosity trap that, like candy, keeps you consuming but does nothing to satisfy your need for nourishment.
Instead of doomscrolling, take on one or two topics you want to know more about and do a deeper dive that leaves you feeling satisfied that you've assessed the risk and empowered yourself to do something about it. Be intentional about gathering more information through your own experience or by talking with others who are knowledgeable on the subject.
You can also tell or listen to scary stories with others and use them as a jumping-off point for thinking about real risks we face. Watch a movie about an apocalypse, go to a haunted house, get in costume to go on a “zombie crawl,” or have a fun night at home chatting with your friends about how you'd survive the end of the world. And finally, invite creativity and play into spaces where the gravity of a situation might otherwise be overwhelming. Make up horror stories or dress up as something frightening and have a laugh about how silly it all is. In other words, embrace the Halloween season with abandon—and then bring that same energy to the challenges of the times we're living in now.
This article was originally published with the title "Why We Need Scary Play" in Scientific American: Science News, Expert Analysis, Health Research , , 72-79 ()
doi:10.1038/scientificamerican1123-72
### ABOUT THE AUTHOR(S)
![author-avatar](https://static.scientificamerican.com/sciam/cache/file/28AA75CD-A3EF-4809-8F014A54BB5BE561_small.jpg?h=65&w=65)
**Athena Aktipis** is an associate professor of psychology and a cooperation scientist at Arizona State University. Her forthcoming book is *A Field Guide to the Apocalypse: A Mostly Serious Guide to Surviving Our Wild Times* (Workman, 2024). Credit: Nick Higgins
**Coltan Scrivner** is a behavioral scientist at the Recreational Fear Lab at Aarhus University in Denmark and in the psychology department at Arizona State University. His forthcoming book is *Dark Minds, Soft Hearts: The Science Behind Our Fascination with the Dark Side of Life* (Penguin, 2024).
&emsp;
&emsp;
---
`$= dv.el('center', 'Source: ' + dv.current().Link + ', ' + dv.current().Date.toLocaleString("fr-FR"))`

@ -0,0 +1,121 @@
---
Tag: ["📟", "🪙", "🔐"]
Date: 2023-10-29
DocType: "WebClipping"
Hierarchy:
TimeStamp: 2023-10-29
Link: https://www.wired.com/story/unciphered-ironkey-password-cracking-bitcoin/
location:
CollapseMetaTable: true
---
Parent:: [[@News|News]]
Read:: 🟥
---
&emsp;
```button
name Save
type command
action Save current file
id Save
```
^button-TheyCrackedtheCodetoaLockedUSBDriveNSave
&emsp;
# They Cracked the Code to a Locked USB Drive Worth $235 Million in Bitcoin. Then It Got Weird
At 9:30 am on a Wednesday in late September, a hacker who asked to be called Tom Smith sent me a nonsensical text message: “query voltage recurrence.”
Those three words were proof of a remarkable feat—and potentially an extremely valuable one. A few days earlier, I had randomly generated those terms, set them as the passphrase on a certain model of [encrypted](https://www.wired.com/tag/encryption/) [USB thumb drive](https://www.wired.com/gallery/best-usb-flash-drives/) known as an IronKey S200, and shipped the drive across the country to Smith and his teammates in the Seattle lab of a startup called Unciphered.
Unciphereds staff in the companys Seattle lab.
Photograph: Meron Menghistab
Smith had told me that guessing my passphrase might take several days. Guessing it at all, in fact, should have been impossible: IronKeys are designed to permanently erase their contents if someone tries just 10 incorrect password guesses. But Unciphered's hackers had developed a secret IronKey password-cracking technique—one that they've still declined to fully describe to me or anyone else outside their company—that gave them essentially infinite tries. My USB stick had reached Unciphereds lab on Tuesday, and I was somewhat surprised to see my three-word passphrase texted back to me the very next morning. With the help of a high-performance computer, Smith told me, the process had taken only 200 trillion tries.
Smiths demonstration was not merely a hacker party trick. He and Unciphereds team have spent close to eight months developing a capability to crack this specific, decade-old model of IronKey for a very particular reason: They believe that in a vault in a Swiss bank 5,000 miles to the east of their Seattle lab, an IronKey that's just as vulnerable to this cracking technique holds the keys to 7,002 bitcoins, worth close to $235 million at current exchange rates.
For years, Unciphered's hackers and many others in the crypto community have followed the story of a Swiss crypto entrepreneur living in San Francisco named Stefan Thomas, who owns this 2011-era IronKey, and who has lost the password to unlock it and access the nine-figure fortune it contains. Thomas has said in interviews that he's already tried eight incorrect guesses, leaving only two more tries before the IronKey erases the keys stored on it and he loses access to his bitcoins forever.
Screens in Unciphereds lab show a microscopic image of the layout of the IronKeys controller chip (left) and a CT scan of the drive.
Photograph: Meron Menghistab
Now, after months of work, Unciphered's hackers believe they can open Thomas' locked treasure chest, and they're ready to use their secret cracking technique to do it. “We were hesitant to reach out to him until we had a full, provable, reliable attack,” says Smith, who asked WIRED not to reveal his real name due to the sensitivities of working with secret hacking techniques and very large sums of cryptocurrency. “Now were in that place.”
The only problem: Thomas doesn't seem to want their help.
Earlier this month, not long after performing their USB-decrypting demonstration for me, Unciphered reached out to Thomas through a mutual associate who could vouch for the companys new IronKey-unlocking abilities and offer assistance. The call didn't even get as far as discussing Unciphered's commission or fee before Thomas politely declined.
Thomas had already made a “handshake deal” with two other cracking teams a year earlier, he explained. In an effort to prevent the two teams from competing, he had offered each a portion of the proceeds if either one could unlock the drive. And he remains committed, even a year later, to giving those teams more time to work on the problem before he brings in anyone else—even though neither of the teams has shown any sign of pulling off the decryption trick that Unciphered has already accomplished.
That has left Unciphered in a strange situation: It holds what is potentially one of the most valuable lockpicking tools in the cryptocurrency world, but with no lock to pick. “We cracked the IronKey,” says Nick Fedoroff, Unciphered's director of operations. “Now we have to crack Stefan. This is turning out to be the hardest part.”
In an email to WIRED, Thomas confirmed that he had turned down Unciphered's offer to unlock his encrypted fortune. “I have already been working with a different set of experts on the recovery so I'm no longer free to negotiate with someone new,” Thomas wrote. “It's possible that the current team could decide to subcontract Unciphered if they feel that's the best option. We'll have to wait and see.” Thomas declined to be interviewed or to comment further.
A Very Valuable, Worthless USB Stick
In past interviews, Thomas has said that his 7,002 bitcoins were left over from a payment he received for making a video titled “What is Bitcoin?” that published on YouTube in early 2011, when a bitcoin was worth less than a dollar. Later that year, he told [WIRED](https://www.wired.com/2011/11/mf-bitcoin/) that he'd inadvertently erased two backup copies of the wallet that held those thousands of coins, and then lost the piece of paper with the password to decrypt the third copy, stored on the IronKey. By then, his lost coins were worth close to $140,000. “I spent a week trying to recover it,” he said at the time. “It was pretty painful.”
In the 12 years since, the value of the inaccessible coins on Thomas' IronKey has at times swelled to be worth nearly half a billion dollars, before settling to its current, still-staggering price. In January 2021, as Bitcoin began to approach its peak exchange rate, Thomas [described to *The New York Times*](https://www.nytimes.com/2021/01/12/technology/bitcoin-passwords-wallets-fortunes.html) the angst that his long-lost hoard had caused him over the years. “I would just lay in bed and think about it,” he said. “Then I would go to the computer with some new strategy, and it wouldnt work, and I would be desperate again.”
Around that same time in 2021, a team of cryptographers and white-hat hackers founded Unciphered with the goal of unlocking exactly the sort of vast, frozen funds that many unlucky crypto holders like Thomas have long since given up on. At the time of Unciphereds official launch, the cryptocurrency tracing firm Chainalysis estimated the total sum of those forgotten wallets across blockchains to be worth $140 billion. Unciphered says it has since successfully helped clients open locked wallets worth “many millions” of dollars—often through [novel cryptographic vulnerabilities or software flaws](https://www.keybleed.com/) it has discovered in cryptocurrency wallets—though nothing close to the size of Thomas' IronKey stash.
A deconstructed IronKey inside of Unciphereds laser cutting tool.
Photograph: Meron Menghistab
Only around the beginning of 2023 did Unciphered begin to hunt for potential avenues to unlock Thomas' IronKey prize. Smith says that they quickly started to see hints that the IronKey's manufacturer, which was sold to storage hardware firm iMation in 2011, had left them some potential openings. “We were seeing little bits and pieces,” Smith says. “Like, this looks a little sloppy, or this looks not quite like how someone should be doing things.” (Kingston Storage, which now owns IronKey, didnt respond to WIREDs request for comment.)
Even a decade-old IronKey is a daunting target for hackers. The USB stick, whose development was funded in part by the United States Department of Homeland Security, is FIPS-140-2 Level 3 certified, meaning it's tamper-resistant and its encryption is secure enough for use by military and intelligence agencies for classified information. But emboldened by the few hints of security flaws they'd found—and still with no participation from Thomas—Unciphered's founders decided to take on the project of cracking it. “If there is an Everest to attempt, this is it,” Fedoroff remembers telling the team. The company's founders would eventually pull together a group of around 10 staffers and outside consultants, several of whom had backgrounds at the National Security Agency or other three-letter government agencies. They called it Project Everest.
A $235 Million Treasure Hunt
One of their first moves was to determine the exact model of IronKey that Thomas must have used, based on timing and a process of elimination. Then they bought the entire supply of that decade-plus-old model that they could find available for sale online, eventually amassing hundreds of them in their lab.
To fully reverse engineer the device, Unciphered scanned an IronKey with a CT scanner, then began the elaborate surgery necessary to deconstruct it. Using a precise laser cutting tool, they carved out the Atmel chip that serves as the USB stick's “secure enclave” holding its cryptographic secrets. They bathed that chip in nitric acid to “decap” it, removing the layers of epoxy designed to prevent tampering. They then began to polish down the chip, layer by layer, with an abrasive silica solution and a tiny spinning felt pad, removing a fraction of a micron of material from its surface at a time, taking photos of each layer with either optical microscopes or scanning electron microscopes, and repeating the process until they could build a full 3D model of the processor.
Because the chip's read-only memory, or ROM, is built into the layout of its physical wiring for better efficiency, Unciphered's visual model gave it a head start toward deciphering much of the logic of the IronKey's cryptographic algorithm. But the team went much further, attaching tenth-of-a-millimeter gauge wires to the secure elements connections to “wiretap” the communications going into and out of it. They even tracked down engineers who had worked on the Atmel chip and another microcontroller in the IronKey that dated back to the 1990s to quiz them for details about the hardware. “It felt very much like a treasure hunt," says Fedoroff. “Youre following a map thats faded and coffee-stained, and you know theres a pot of gold at the end of a rainbow, but you have no idea where that rainbows leading.”
That cracking process culminated in July, when Unciphered's team gathered at an Airbnb in San Francisco. They describe standing around a table covered with millions of dollars worth of lab equipment when a member of the team read out the contents of a decrypted IronKey for the first time. “What just happened?” Fedoroff asked the room. “We just summited Everest,” said Unciphered's CEO, Eric Michaud.
Unciphered still won't reveal its full research process, or any details of the technique it ultimately found for cracking the IronKey and defeating its “counter” that limits password guesses. The company argues that the vulnerabilities they discovered are still potentially too dangerous to be made public, given that the model of IronKeys it cracked are too old to be patched with a software update, and some may still store classified information. “If this were to leak somehow, there would be much bigger national security implications than a cryptocurrency wallet,” Fedoroff says.
The team notes that the final method they developed doesn't require any of the invasive or destructive tactics that they used in their initial research. They've now unlocked 2011-era IronKeys—without destroying them—more than a thousand times, they say, and unlocked three IronKeys in demonstrations for WIRED.
Cryptic Contracts
None of that, however, has gotten them any closer to persuading Stefan Thomas to let them crack *his* IronKey. Unciphereds hackers say they learned from the intermediary who contacted Thomas on their behalf that Thomas has already been in touch with two other potential players in the crypto- and hardware-hacking world to help unlock his USB stick: the cybersecurity forensics and investigations firm Naxo, and the independent security researcher Chris Tarnovsky.
Naxo declined WIREDs request to comment. But Chris Tarnovsky, a renowned chip reverse engineer, confirmed to WIRED that he had a “meet-and-greet” call with Thomas in May of last year. Tarnovsky says that, in the meeting, Thomas had told him that if he could successfully unlock the IronKey, he would be "generous," but didn't specify a fee or commission. Since then, Tarnovsky says that he has done very little work on the project, and that he has essentially been waiting for Thomas to start paying him on a monthly basis for initial research. "I want Stefan to cough up some money up front," says Tarnovsky. “It's a lot of work, and I need to worry about my mortgage and my bills.”
But Tarnovsky says he hasn't heard from Thomas since that first call. “Nothing came out of it,” he says. “It's weird.”
Unciphereds director of operations Nick Fedoroff.
Photograph: Meron Menghistab
Unciphered's team remains skeptical about Naxos progress and whether its any further along than Tarnovsky. There are only a small number of hardware hackers capable of the reverse engineering necessary to crack the IronKey, they argue, and none appear to be working with Naxo. As for Thomas' suggestion that they could subcontract to Naxo or another team working on the project, Unciphered's Fedoroff says he won't rule it out, but argues it doesn't make sense when Unciphered alone can crack the IronKey. “Based on what we know, we don't see any benefit to anyone in going that route,” Fedoroff says.
Thomas, meanwhile, seems to display an unusual lack of urgency in unlocking his $235 million, and has offered only vague hints about why he has yet to reveal any progress toward that goal. “When you're dealing with so much money, everything takes forever,” he told the *Thinking Crypto* podcast in an [interview](https://www.youtube.com/watch?v=RwN_rsu8xJc) over the summer. “The person you're working with, you need some contract with them, and that contract needs to be rock solid, because if there's some issue with the contract, there's suddenly hundreds of millions of dollars at stake.”
To potentially accelerate that cryptic contract process, Unciphered plans to publish an open letter to Thomas and a video in the coming days designed to persuade—or pressure—Thomas into working with them. But Fedoroff concedes that it's possible Thomas doesn't actually care about the money: In its piece about his locked coins in 2021, *The New York Times* wrote that Thomas already had “more riches than he knows what to do with,” thanks to other crypto ventures.
Fedoroff notes that it's impossible to know for certain what Thomas' IronKey holds. Maybe the keys to the 7,002 bitcoins are held elsewhere, or gone altogether.
He says Unciphered is still hopeful. But the team is also ready to move on if Thomas won't work with them. There are, after all, other locked wallets out there for the company to crack. And the decision of whether and how to unlock this particular USB drive's riches will ultimately fall to its owner alone. “It's incredibly frustrating,” says Fedoroff. “But when you're dealing with people, that's always the most complex part. Code doesn't change unless you tell it to. Circuitry doesn't either. But humans are incredibly unpredictable creatures.”
*Updated 10:55 am ET, October 24, 2023, to correct a misspelling of Nick Fedoroff's surname.*
&emsp;
&emsp;
---
`$= dv.el('center', 'Source: ' + dv.current().Link + ', ' + dv.current().Date.toLocaleString("fr-FR"))`

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

@ -111,7 +111,8 @@ favicon: https://www.billigbuch.ch/img/favicon.png
&emsp; &emsp;
- [ ] :label: [[Bookmarks - Admin & services]]: Review bookmarks %%done_del%% 🔁 every 3 months 📅 2023-10-30 - [ ] :label: [[Bookmarks - Admin & services]]: Review bookmarks %%done_del%% 🔁 every 3 months 📅 2024-01-30
- [x] :label: [[Bookmarks - Admin & services]]: Review bookmarks %%done_del%% 🔁 every 3 months 📅 2023-10-30 ✅ 2023-10-28
&emsp; &emsp;
&emsp; &emsp;

@ -110,7 +110,8 @@ hide task count
&emsp; &emsp;
- [ ] :moneybag: [[@Finances]]: Transfer UK pension to CH %%done_del%% 🔁 every year 📅 2023-10-31 - [ ] :moneybag: [[@Finances]]: Transfer UK pension to CH %%done_del%% 🔁 every year 📅 2024-10-31
- [x] :moneybag: [[@Finances]]: Transfer UK pension to CH %%done_del%% 🔁 every year 📅 2023-10-31 ✅ 2023-10-28
- [ ] :heavy_dollar_sign: [[@Finances|Finances]]: update crypto prices within Obsidian %%done_del%% 🔁 every month on the 2nd Tuesday 📅 2023-11-14 - [ ] :heavy_dollar_sign: [[@Finances|Finances]]: update crypto prices within Obsidian %%done_del%% 🔁 every month on the 2nd Tuesday 📅 2023-11-14
- [x] :heavy_dollar_sign: [[@Finances|Finances]]: update crypto prices within Obsidian %%done_del%% 🔁 every month on the 2nd Tuesday 📅 2023-10-10 ✅ 2023-10-10 - [x] :heavy_dollar_sign: [[@Finances|Finances]]: update crypto prices within Obsidian %%done_del%% 🔁 every month on the 2nd Tuesday 📅 2023-10-10 ✅ 2023-10-10
- [x] :heavy_dollar_sign: [[@Finances|Finances]]: update crypto prices within Obsidian %%done_del%% 🔁 every month on the 2nd Tuesday 📅 2023-09-12 ✅ 2023-09-11 - [x] :heavy_dollar_sign: [[@Finances|Finances]]: update crypto prices within Obsidian %%done_del%% 🔁 every month on the 2nd Tuesday 📅 2023-09-12 ✅ 2023-09-11

@ -75,6 +75,14 @@ style: numbe
&emsp; &emsp;
#### Résolutions 2024
- [ ] 🍎 [[@Lifestyle|Lifestyle]]: Transitioner sucres synthétiques vers sucres naturels 📅2024-12-31
- [ ] 🏊🏼‍♂️ [[@Lifestyle|Lifestyle]]: Swim more regularly in Summer 📅2024-09-30
- [ ] 🎹 [[@Lifestyle|Lifestyle]]: Start a vinyl collection 📅2024-12-31
&emsp;
#### Résolutions 2023 #### Résolutions 2023
- [f] 🤵🏻 [[@Lifestyle|Lifestyle]]: Etre plus social 📅 2023-12-31 - [f] 🤵🏻 [[@Lifestyle|Lifestyle]]: Etre plus social 📅 2023-12-31
@ -162,6 +170,17 @@ where contains(DocType, "WebClipping")
#### Music Library #### Music Library
```cardlink
url: https://45rpm.ch/zurich-vinyl-guide-this-is-where-you-find-your-records/
title: "Zurich Vinyl Guide: This is where you find your records"
description: "If you come to Zurich and are looking for record stores, this is your guide."
host: 45rpm.ch
image: https://img.45rpm.ch/1800x,q85/2022/01/Sekan-at-ZeroZero-3.png
```
&emsp;
See [[Internet services|Internet]] section See [[Internet services|Internet]] section
&emsp; &emsp;

@ -69,10 +69,10 @@ style: number
#### Beverages #### Beverages
- [x] ☕ Coffee ✅ 2023-07-24 - [ ] ☕ Coffee
- [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-10-07 - [x] 🍊 Morning juice ✅ 2023-10-28
- [x] 🍺 Beer ✅ 2022-02-06 - [x] 🍺 Beer ✅ 2022-02-06
- [x] 🍷 Red Wine ✅ 2023-06-29 - [x] 🍷 Red Wine ✅ 2023-06-29
- [x] 🍷 Rosé Wine ✅ 2023-06-29 - [x] 🍷 Rosé Wine ✅ 2023-06-29
@ -84,7 +84,7 @@ style: number
#### Snacks & Sweets #### Snacks & Sweets
- [x] 🍿 Snacks ✅ 2023-10-07 - [x] 🍿 Snacks ✅ 2023-10-07
- [x] 🍦 Dessert ✅ 2023-10-07 - [x] 🍦 Dessert ✅ 2023-10-26
- [x] 🥠 Crackers (Tuc) ✅ 2023-05-29 - [x] 🥠 Crackers (Tuc) ✅ 2023-05-29
&emsp; &emsp;
@ -93,8 +93,8 @@ style: number
- [x] 🧈 Beurre ✅ 2023-10-20 - [x] 🧈 Beurre ✅ 2023-10-20
- [x] 🧀 Fromage à servir ✅ 2023-06-12 - [x] 🧀 Fromage à servir ✅ 2023-06-12
- [x] 🧀 Fromage rapé ✅ 2023-03-06 - [x] 🧀 Fromage rapé ✅ 2023-10-26
- [x] 🧀 Parmeggiano ✅ 2023-06-17 - [x] 🧀 Parmeggiano ✅ 2023-10-26
- [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
@ -116,14 +116,14 @@ style: number
#### Fresh #### Fresh
- [x] 🍎 Fruit ✅ 2023-10-07 - [x] 🍎 Fruit ✅ 2023-10-25
- [x] 🍌 Bananas ✅ 2023-09-23 - [x] 🍌 Bananas ✅ 2023-09-23
- [x] 🍅 Tomatoes ✅ 2022-10-29 - [x] 🍅 Tomatoes ✅ 2022-10-29
- [x] 🫑 Bell pepper ✅ 2023-01-24 - [x] 🫑 Bell pepper ✅ 2023-10-25
- [x] 🥦 Fennel ✅ 2022-10-29 - [x] 🥦 Fennel ✅ 2022-10-29
- [x] 🥦 Radish ✅ 2022-10-29 - [x] 🥦 Radish ✅ 2022-10-29
- [x] 🥦 Broccoli ✅ 2023-10-07 - [x] 🥦 Broccoli ✅ 2023-10-28
- [x] 🫛 Green beans ✅ 2023-06-29 - [x] 🫛 Green beans ✅ 2023-10-25
- [x] 🫘 Red beans ✅ 2023-06-29 - [x] 🫘 Red beans ✅ 2023-06-29
- [x] 🧅 Onions ✅ 2023-09-06 - [x] 🧅 Onions ✅ 2023-09-06
- [x] 🧅 Spring onion ✅ 2023-09-06 - [x] 🧅 Spring onion ✅ 2023-09-06
@ -138,18 +138,18 @@ style: number
- [x] 🥩 Cured meat ✅ 2022-12-31 - [x] 🥩 Cured meat ✅ 2022-12-31
- [x] 🍖 Fresh meat ✅ 2023-04-07 - [x] 🍖 Fresh meat ✅ 2023-04-07
- [x] 🍖 Minced meat ✅ 2023-10-07 - [x] 🍖 Minced meat ✅ 2023-10-28
- [x] 🥓 Bacon ✅ 2023-04-07 - [x] 🥓 Bacon ✅ 2023-04-07
- [x] 🐔 Chicken thighs ✅ 2023-10-07 - [x] 🐔 Chicken thighs ✅ 2023-10-07
- [x] 🐔 Chicken breasts ✅ 2023-10-07 - [x] 🐔 Chicken breasts ✅ 2023-10-07
- [x] 🌭 Spicy sausage ✅ 2023-10-07 - [x] 🌭 Spicy sausage ✅ 2023-10-25
- [x] 🐟 Salmon fillet ✅ 2022-10-29 - [x] 🐟 Salmon fillet ✅ 2022-10-29
&emsp; &emsp;
#### Bases #### Bases
- [x] 🍝 Pasta ✅ 2023-01-24 - [x] 🍝 Pasta ✅ 2023-10-26
- [x] 🍜 Noodles ✅ 2023-10-20 - [x] 🍜 Noodles ✅ 2023-10-20
- [x] 🌾 Bulgur ✅ 2022-10-29 - [x] 🌾 Bulgur ✅ 2022-10-29
- [x] 🍚 Rice ✅ 2023-05-29 - [x] 🍚 Rice ✅ 2023-05-29

@ -84,12 +84,15 @@ style: number
#### 🏠 House chores #### 🏠 House chores
- [ ] 🛎️ :house: [[Household]]: Pay rent %%done_del%% 🔁 every month on the last 📅 2023-10-31 - [ ] 🛎️ :house: [[Household]]: Pay rent %%done_del%% 🔁 every month on the last 📅 2023-11-30
- [ ] 🛎 🧻 REMINDER [[Household]]: check need for toilet paper %%done_del%% 🔁 every week 📅 2023-10-30 - [x] 🛎️ :house: [[Household]]: Pay rent %%done_del%% 🔁 every month on the last 📅 2023-10-31 ✅ 2023-10-27
- [ ] 🛎 🧻 REMINDER [[Household]]: check need for toilet paper %%done_del%% 🔁 every week 📅 2023-11-06
- [x] 🛎 🧻 REMINDER [[Household]]: check need for toilet paper %%done_del%% 🔁 every week 📅 2023-10-30 ✅ 2023-10-28
- [x] 🛎 🧻 REMINDER [[Household]]: check need for toilet paper %%done_del%% 🔁 every week 📅 2023-10-23 ✅ 2023-10-21 - [x] 🛎 🧻 REMINDER [[Household]]: check need for toilet paper %%done_del%% 🔁 every week 📅 2023-10-23 ✅ 2023-10-21
- [x] 🛎 🧻 REMINDER [[Household]]: check need for toilet paper %%done_del%% 🔁 every week 📅 2023-10-16 ✅ 2023-10-16 - [x] 🛎 🧻 REMINDER [[Household]]: check need for toilet paper %%done_del%% 🔁 every week 📅 2023-10-16 ✅ 2023-10-16
- [x] 🛎 🧻 REMINDER [[Household]]: check need for toilet paper %%done_del%% 🔁 every week 📅 2023-10-09 ✅ 2023-10-09 - [x] 🛎 🧻 REMINDER [[Household]]: check need for toilet paper %%done_del%% 🔁 every week 📅 2023-10-09 ✅ 2023-10-09
- [ ] :bed: [[Household]] Change bedsheets %%done_del%% 🔁 every 2 weeks on Saturday 📅 2023-10-28 - [ ] :bed: [[Household]] Change bedsheets %%done_del%% 🔁 every 2 weeks on Saturday 📅 2023-11-11
- [x] :bed: [[Household]] Change bedsheets %%done_del%% 🔁 every 2 weeks on Saturday 📅 2023-10-28 ✅ 2023-10-27
- [x] :bed: [[Household]] Change bedsheets %%done_del%% 🔁 every 2 weeks on Saturday 📅 2023-10-14 ✅ 2023-10-13 - [x] :bed: [[Household]] Change bedsheets %%done_del%% 🔁 every 2 weeks on Saturday 📅 2023-10-14 ✅ 2023-10-13
&emsp; &emsp;

@ -46,6 +46,7 @@ kanban-plugin: basic
- [ ] # Polo: [[Son Ginard Polo Club]]<br><br>---<br><br>[[Francisco Podesta]] - [ ] # Polo: [[Son Ginard Polo Club]]<br><br>---<br><br>[[Francisco Podesta]]
- [ ] # Polo: [[Iridike Polo Club]]<br><br>---<br><br>[[Lucho Irazabal]]<br>[[Nano Iturroz|Nano]] - [ ] # Polo: [[Iridike Polo Club]]<br><br>---<br><br>[[Lucho Irazabal]]<br>[[Nano Iturroz|Nano]]
- [ ] # Polo: [[Epsom Polo Club]]<br><br>---<br><br>[[Callum Anderson]]<br>[[Ryan Anderson]] - [ ] # Polo: [[Epsom Polo Club]]<br><br>---<br><br>[[Callum Anderson]]<br>[[Ryan Anderson]]
- [ ] # Ski Maintenance<br><br>---<br><br>>[!info]<br>> Simple service: 45 CHF<br>> Full service: 65 CHF<br><br>---<br><br>[[Ski Rental Zürich]]

@ -0,0 +1,102 @@
---
Tag: ["🎭", "💿", "🎹", "🎶"]
Date: 2023-10-28
DocType:
Hierarchy: NonRoot
TimeStamp:
location:
CollapseMetaTable: true
---
Parent:: [[@Lifestyle|Lifestyle]]
---
&emsp;
```button
name Save
type command
action Save current file
id Save
```
^button-VinylsNSave
&emsp;
# Vinyls
&emsp;
> [!summary]+
> Note Description
&emsp;
```toc
style: number
```
&emsp;
---
&emsp;
### Shopping list
&emsp;
> [!todo] Shopping list
>```tasks
>not done
>filename includes Vinyls.md
>hide backlinks
>hide task count
>```
&emsp;
---
&emsp;
### Genres
&emsp;
#### Hip-Hop
- [ ] IAM - LEmpire du Coté Obscur
- [ ] Suprême NTM
- [ ] Fugees - The Score
- [ ] Lauryn Hill - The Miseducation of Lauryn Hill
&emsp;
#### RocknRoll
- [ ] Queen - Greatest Hits
- [ ] Prince
- [ ] David Bowie
- [ ] The Rolling Stones
&emsp;
#### House Music
- [ ] Paul Kalbrenner - Berlin Calling Soundtrack
- [ ] Fred Again.. - Actual Life
- [ ] Fred Again.. - Actual Life 2
- [ ] Fred Again.. - Actual Life 3
&emsp;
#### Autres
- [ ] Mulatu Astakte (Paris Abeba; Ethiopiques) [Paris Jazz Corner : Be Bop, West coast, Free Jazz, Fusion, Swing, Blues, Brazil, Latin et plus en LP, EP et CD](https://www.parisjazzcorner.com/index.php)
&emsp;
&emsp;

@ -5,13 +5,13 @@ Date: 2021-12-04
DocType: "Person" DocType: "Person"
Hierarchy: "NonRoot" Hierarchy: "NonRoot"
TimeStamp: TimeStamp:
location: [48.1197249,-1.6126206] location: [48.7626204,9.1626417]
CollapseMetaTable: true CollapseMetaTable: true
Person: Person:
LastName: "Le Bastart de Villeneuve" LastName: "Le Bastart de Villeneuve"
FirstName: Philomène FirstName: Philomène
DoB: 1994-04-18 DoB: 1994-04-18
Address: "c/o Mr Fortin, 8 rue du Joual, 35510 Cesson Sévigné, France" Address: "Möhringer Strasse, Stuttgart, Germany"
Phone: "+33 6 59 43 84 62" Phone: "+33 6 59 43 84 62"
Email: "p.devilleneuve@yahoo.fr" Email: "p.devilleneuve@yahoo.fr"
Relation: Sibling Relation: Sibling

@ -0,0 +1,113 @@
---
Tag: ["🛍️", "💿", "🎸"]
Date: 2023-10-29
DocType: "Place"
Hierarchy: "NonRoot"
TimeStamp:
location: [48.9015068,2.3392267]
Place:
Type: Commerce
SubType: Disquaire
Style: Vinyl
Location: "Saint-Ouen"
Country: France
Status: Recommended
CollapseMetaTable: true
Phone: "+33 6 82 02 86 92"
Email: ""
Website: "[Les Disques du Yeti - Magasin De Disques à Saint-Ouen](http://lesdisquesduyeti.fr/)"
---
Parent:: [[@@Paris|Paris]], [[@Commerces Paris|Shops in Paris]]
&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-LesDisquesduYetiSave
&emsp;
# Les Disques du Yeti
&emsp;
> [!summary]+
> Note Description
&emsp;
```toc
style: number
```
&emsp;
---
&emsp;
### 📇 Contact
&emsp;
> [!address] 🗺
> 54 Rue Jules Vallès
> 93400 Saint-Ouen
> France
&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 [[Les Disques du Yeti]]
where !contains(file.name, "@@Travel")
sort DocType asc
```
&emsp;
&emsp;

@ -140,7 +140,7 @@ style: number
```lineup ```lineup
formation: 343 formation: 343
players: Donnaruma,Hernandez,Marquinhos,Skriniar,Nuno Mendes,Verratti,Vitinha,Hakimi,M'Bappé,Asensio,Dembélé players: Donnaruma,Hernandez,Marquinhos,Skriniar,Nuno Mendes,Zaïre-Emery,Vitinha,Hakimi,M'Bappé,G. Ramos,Dembélé
``` ```
> Luis Enrique > Luis Enrique

@ -1,7 +1,7 @@
--- ---
Alias: [""] Alias: [""]
Tag: [""] Tag: ["🏨"]
Date: 2023-01-13 Date: 2023-01-13
DocType: "Place" DocType: "Place"
Hierarchy: "NonRoot" Hierarchy: "NonRoot"

@ -0,0 +1,113 @@
---
Tag: ["🛍️", "🎿"]
Date: 2023-10-29
DocType: "Place"
Hierarchy: "NonRoot"
TimeStamp:
location: [47.3793343,8.4907019]
Place:
Type: Commerce
SubType: Ski
Style: Swiss
Location: Albisrieden
Country: CH
Status: Recommended
CollapseMetaTable: true
Phone: "+41 43 817 44 55"
Email: "info@skirental-zueri.ch"
Website: "[Ski und Snowboards in Zürich mieten Skirental Zueri Home](https://skirental-zueri.ch/de)"
---
Parent:: [[@@Zürich|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-SkiRentalZurichSave
&emsp;
# Ski Rental Zürich
&emsp;
> [!summary]+
> Note Description
&emsp;
```toc
style: number
```
&emsp;
---
&emsp;
### 📇 Contact
&emsp;
> [!address] 🗺
> Freilagerstrasse 39
> 8047 Zürich
> 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 [[Ski Rental Zürich]]
where !contains(file.name, "@@Travel")
sort DocType asc
```
&emsp;
&emsp;

@ -13,14 +13,14 @@ Source:
Author: "Panayotis Pascot" Author: "Panayotis Pascot"
Published: 2023-08-23 Published: 2023-08-23
Link: Link:
Read: Read: 2023-10-26
Cover: "https://products-images.di-static.com/image/panayotis-pascot-la-prochaine-fois-que-tu-mordras-la-poussiere/9782234092525-475x500-1.jpg" Cover: "https://products-images.di-static.com/image/panayotis-pascot-la-prochaine-fois-que-tu-mordras-la-poussiere/9782234092525-475x500-1.jpg"
CollapseMetaTable: true CollapseMetaTable: true
--- ---
Parent:: [[@Reading master|Reading list]] Parent:: [[@Reading master|Reading list]]
ReadingState:: 🟥 ReadingState:: [[2023-10-26]]
--- ---

@ -12,14 +12,14 @@ Source:
Language: FR Language: FR
Published: 2017-05-30 Published: 2017-05-30
Link: "[Le Camp des saints — Wikipédia](https://fr.m.wikipedia.org/wiki/Le_Camp_des_saints)" Link: "[Le Camp des saints — Wikipédia](https://fr.m.wikipedia.org/wiki/Le_Camp_des_saints)"
Read: Read: 2023-10-26
Cover: https://media.senscritique.com/media/000011509517/source_big/Le_Camp_des_saints.jpg Cover: https://media.senscritique.com/media/000011509517/source_big/Le_Camp_des_saints.jpg
CollapseMetaTable: true CollapseMetaTable: true
--- ---
Parent:: [[@Reading master|Reading list]] Parent:: [[@Reading master|Reading list]]
ReadingState:: 🟧 ReadingState:: [[2023-10-26]]
--- ---

@ -10,9 +10,9 @@ TimeStamp: 2022-08-15
location: location:
CollapseMetaTable: true CollapseMetaTable: true
TVShow: TVShow:
Name: "House of the Dragon" Name: "Gangs of London"
Season: 1 Season: 1
Episode: 10 Episode: 3
Source: Internal Source: Internal
banner: "![[img_1924.jpg]]" banner: "![[img_1924.jpg]]"
banner_icon: 🍿 banner_icon: 🍿

@ -0,0 +1,128 @@
---
type: "series"
subType: null
title: "Gangs of London"
englishTitle: "Gangs of London"
year: "2020"
dataSource: "OMDbAPI"
url: "https://www.imdb.com/title/tt7661390/"
id: "tt7661390"
genres:
- "Action"
- "Crime"
- "Drama"
studios:
- "N/A"
episodes: 0
duration: "N/A"
onlineRating: 8.1
actors:
- "Joe Cole"
- "Sope Dirisu"
- "Michelle Fairley"
image: "https://m.media-amazon.com/images/M/MV5BOGJlZTE0MTQtZDdmMS00YWViLThlMDktYzk1N2RhMjY0NGEyXkEyXkFqcGdeQXVyMDA4NzMyOA@@._V1_SX300.jpg"
released: true
streamingServices:
airing: false
airedFrom: "23/04/2020"
airedTo: "unknown"
watched: true
lastWatched: "[[2023-10-29]]"
personalRating: 0
---
Parent:: [[@Cinematheque]]
---
```dataviewjs
dv.paragraph(`> [!${dv.current().watched ? 'SUCCESS' : 'WARNING'}] ${dv.current().watched ? 'last watched on ' + dv.current().lastWatched : 'not yet watched'}`)
```
&emsp;
# `$= dv.current().title`
&emsp;
`$= dv.current().watched ? '**Rating**: ' + dv.current().personalRating + ' out of 10' : ''`
&emsp;
```toc
```
&emsp;
### Detail
&emsp;
**Genres**:
`$= dv.current().genres.length === 0 ? ' - none' : dv.list(dv.current().genres)`
```dataviewjs
let text = '';
if (!dv.current().released) {
text += '**Not released**\n';
if (dv.current().airedFrom) {
text += 'The series will release on ' + dv.current().release_date + '.';
} else {
text += 'The series is not released yet.';
}
} else if (dv.current().airing) {
text += '**Not finished**\n';
text += 'The series is not fully released yet.';
}
if (text) {
dv.paragraph(text);
}
```
```dataview
list without id
"<table><tbody><tr><td><a class=heading>Type</a></td>"
+
"<td><span style='color: var(--footnote);'>" + this.type + "</span></td></tr>"
+
"<tr><td><a class=heading>Online Rating</a></td>"
+
"<td><span style='color: var(--footnote);'>" + this.onlineRating + "</span></td></tr>"
+
"<tr><td><a class=heading>Episodes</a></td>"
+
"<td><span style='color: var(--footnote);'>" + this.episodes + "</span></td></tr>"
+
"<tr><td><a class=heading>Duration</a></td>"
+
"<td><span style='color: var(--footnote);'>" + this.duration + "</span></td></tr>"
+
"<tr><td><a class=heading>Aired from</a></td>"
+
"<td><span style='color: var(--footnote);'>" + this.airedFrom + "</span></td></tr>"
+
"<tr><td><a class=heading>Aired to</a></td>"
+
"<td><span style='color: var(--footnote);'>" + this.airedTo + "</span></td></tr>"
+
"<tr><td><a class=heading>Studios</a></td>"
+
"<td><span style='color: var(--footnote);'>" + this.studios + "</span></td></tr></tbody></table>"
FROM "03.04 Cinematheque/Gangs of London (2020)"
```
&emsp;
---
&emsp;
### Poster
&emsp;
`$= '![Image|360](' + dv.current().image + ')'`

@ -237,7 +237,8 @@ sudo bash /etc/addip4ban/addip4ban.sh
#### Ban List Tasks #### Ban List Tasks
- [ ] 🖥 [[Selfhosting]], [[Configuring UFW|Firewall]] Get IP addresses caught by Postfix %%done_del%% 🔁 every week on Saturday 📅 2023-10-28 - [ ] 🖥 [[Selfhosting]], [[Configuring UFW|Firewall]] Get IP addresses caught by Postfix %%done_del%% 🔁 every week on Saturday 📅 2023-11-04
- [x] 🖥 [[Selfhosting]], [[Configuring UFW|Firewall]] Get IP addresses caught by Postfix %%done_del%% 🔁 every week on Saturday 📅 2023-10-28 ✅ 2023-10-27
- [x] 🖥 [[Selfhosting]], [[Configuring UFW|Firewall]] Get IP addresses caught by Postfix %%done_del%% 🔁 every week on Saturday 📅 2023-10-21 ✅ 2023-10-20 - [x] 🖥 [[Selfhosting]], [[Configuring UFW|Firewall]] Get IP addresses caught by Postfix %%done_del%% 🔁 every week on Saturday 📅 2023-10-21 ✅ 2023-10-20
- [x] 🖥 [[Selfhosting]], [[Configuring UFW|Firewall]] Get IP addresses caught by Postfix %%done_del%% 🔁 every week on Saturday 📅 2023-10-14 ✅ 2023-10-13 - [x] 🖥 [[Selfhosting]], [[Configuring UFW|Firewall]] Get IP addresses caught by Postfix %%done_del%% 🔁 every week on Saturday 📅 2023-10-14 ✅ 2023-10-13
- [x] 🖥 [[Selfhosting]], [[Configuring UFW|Firewall]] Get IP addresses caught by Postfix %%done_del%% 🔁 every week on Saturday 📅 2023-10-07 ✅ 2023-10-06 - [x] 🖥 [[Selfhosting]], [[Configuring UFW|Firewall]] Get IP addresses caught by Postfix %%done_del%% 🔁 every week on Saturday 📅 2023-10-07 ✅ 2023-10-06
@ -278,7 +279,8 @@ sudo bash /etc/addip4ban/addip4ban.sh
- [x] 🖥 [[Selfhosting]], [[Configuring UFW|Firewall]] Get IP addresses caught by Postfix %%done_del%% 🔁 every week on Saturday 📅 2023-08-12 ✅ 2023-08-07 - [x] 🖥 [[Selfhosting]], [[Configuring UFW|Firewall]] Get IP addresses caught by Postfix %%done_del%% 🔁 every week on Saturday 📅 2023-08-12 ✅ 2023-08-07
- [x] 🖥 [[Selfhosting]], [[Configuring UFW|Firewall]] Get IP addresses caught by Postfix %%done_del%% 🔁 every week on Saturday 📅 2023-08-05 ✅ 2023-08-05 - [x] 🖥 [[Selfhosting]], [[Configuring UFW|Firewall]] Get IP addresses caught by Postfix %%done_del%% 🔁 every week on Saturday 📅 2023-08-05 ✅ 2023-08-05
- [x] 🖥 [[Selfhosting]], [[Configuring UFW|Firewall]] Get IP addresses caught by Postfix %%done_del%% 🔁 every week on Saturday 📅 2023-07-29 ✅ 2023-08-04 - [x] 🖥 [[Selfhosting]], [[Configuring UFW|Firewall]] Get IP addresses caught by Postfix %%done_del%% 🔁 every week on Saturday 📅 2023-07-29 ✅ 2023-08-04
- [ ] 🖥 [[Selfhosting]], [[Configuring UFW|Firewall]]: Update the Blocked IP list %%done_del%% 🔁 every month on Saturday 📅 2023-10-28 - [ ] 🖥 [[Selfhosting]], [[Configuring UFW|Firewall]]: Update the Blocked IP list %%done_del%% 🔁 every month on Saturday 📅 2023-11-04
- [x] 🖥 [[Selfhosting]], [[Configuring UFW|Firewall]]: Update the Blocked IP list %%done_del%% 🔁 every month on Saturday 📅 2023-10-28 ✅ 2023-10-27
- [x] 🖥 [[Selfhosting]], [[Configuring UFW|Firewall]]: Update the Blocked IP list %%done_del%% 🔁 every month on Saturday 📅 2023-10-21 ✅ 2023-10-20 - [x] 🖥 [[Selfhosting]], [[Configuring UFW|Firewall]]: Update the Blocked IP list %%done_del%% 🔁 every month on Saturday 📅 2023-10-21 ✅ 2023-10-20
- [x] 🖥 [[Selfhosting]], [[Configuring UFW|Firewall]]: Update the Blocked IP list %%done_del%% 🔁 every month on Saturday 📅 2023-10-14 ✅ 2023-10-13 - [x] 🖥 [[Selfhosting]], [[Configuring UFW|Firewall]]: Update the Blocked IP list %%done_del%% 🔁 every month on Saturday 📅 2023-10-14 ✅ 2023-10-13
- [x] 🖥 [[Selfhosting]], [[Configuring UFW|Firewall]]: Update the Blocked IP list %%done_del%% 🔁 every month on Saturday 📅 2023-10-07 ✅ 2023-10-06 - [x] 🖥 [[Selfhosting]], [[Configuring UFW|Firewall]]: Update the Blocked IP list %%done_del%% 🔁 every month on Saturday 📅 2023-10-07 ✅ 2023-10-06

Loading…
Cancel
Save