3 Lent flush

main
iOS 9 months ago
parent 7e63a94be4
commit 90a49c43be

@ -34,7 +34,6 @@
"txt-as-md-obsidian",
"obsidian-read-it-later",
"obsidian-book-search-plugin",
"obsidian-media-db-plugin",
"tasks-packrat-plugin",
"obsidian-tts",
"obsidian-style-settings",
@ -61,5 +60,6 @@
"obsidian-full-calendar",
"cm-editor-syntax-highlight-obsidian",
"obsidian-icon-folder",
"obsidian-icon-shortcodes"
"obsidian-icon-shortcodes",
"obsidian-media-db-plugin"
]

@ -183,10 +183,10 @@ var LinkMetadataParser = class {
parse() {
return __async(this, null, function* () {
var _a, _b;
const title = (_a = this.getTitle()) == null ? void 0 : _a.replace(/\r\n|\n|\r/g, "").replace(/"/g, '\\"').trim();
const title = (_a = this.getTitle()) == null ? void 0 : _a.replace(/\r\n|\n|\r/g, "").replace(/\\/g, "\\\\").replace(/"/g, '\\"').trim();
if (!title)
return;
const description = (_b = this.getDescription()) == null ? void 0 : _b.replace(/\r\n|\n|\r/g, "").replace(/"/g, '\\"').trim();
const description = (_b = this.getDescription()) == null ? void 0 : _b.replace(/\r\n|\n|\r/g, "").replace(/\\/g, "\\\\").replace(/"/g, '\\"').trim();
const { hostname } = new URL(this.url);
const favicon = yield this.getFavicon();
const image = yield this.getImage();
@ -572,11 +572,13 @@ var ObsidianAutoCardLink = class extends import_obsidian4.Plugin {
enhanceSelectedURL(editor) {
const selectedText = (EditorExtensions.getSelectedText(editor) || "").trim();
const codeBlockGenerator = new CodeBlockGenerator(editor);
if (CheckIf.isUrl(selectedText)) {
codeBlockGenerator.convertUrlToCodeBlock(selectedText);
} else if (CheckIf.isLinkedUrl(selectedText)) {
const url = this.getUrlFromLink(selectedText);
codeBlockGenerator.convertUrlToCodeBlock(url);
for (const line of selectedText.split(/[\n ]/)) {
if (CheckIf.isUrl(line)) {
codeBlockGenerator.convertUrlToCodeBlock(line);
} else if (CheckIf.isLinkedUrl(line)) {
const url = this.getUrlFromLink(line);
codeBlockGenerator.convertUrlToCodeBlock(url);
}
}
}
manualPasteAndEnhanceURL(editor) {

@ -1,10 +1,10 @@
{
"id": "auto-card-link",
"name": "Auto Card Link",
"version": "1.2.2",
"version": "1.2.3",
"minAppVersion": "0.12.0",
"description": "Automatically fetches metadata from a url and makes it as a card-styled link",
"author": "Nekoshita Yuki",
"authorUrl": "https://github.com/nekoshita",
"isDesktopOnly": false
}
}

@ -1,5 +1,5 @@
.markdown-reading-view .block-language-cardlink {
margin: 1em 0;
margin: var(--p-spacing) 0;
}
.auto-card-link-container {
@ -8,6 +8,8 @@
overflow: hidden;
user-select: none;
--auto-card-link-button-width: calc(var(--icon-size) + var(--size-2-3));
--auto-card-link-indent-size: 2.5em;
&[data-auto-card-link-depth="0"] {
@ -109,6 +111,12 @@
&:hover {
color: var(--link-external-color-hover)
}
/* Prevent clash with edit block button */
.is-live-preview .auto-card-link-container:hover &,
.is-live-preview .block-language-cardlink:has(+ .edit-block-button:hover) & {
margin-right: var(--auto-card-link-button-width);
}
}
.auto-card-link-description {
@ -125,18 +133,28 @@
display: flex;
flex-direction: row;
align-items: center;
text-overflow: ellipsis;
overflow: hidden;
white-space: nowrap;
& span {
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
}
/* Prevent clash with copy url button */
.auto-card-link-container:hover &,
.is-mobile .auto-card-link-container & {
margin-right: var(--auto-card-link-button-width);
}
&:hover {
color: var(--link-external-color-hover)
}
}
.auto-card-link-favicon {
width: 16px !important;
height: 16px;
height: auto !important;
margin: 0 0.5em 0 0 !important;
}
@ -150,13 +168,13 @@
}
.auto-card-link-copy-url {
background: var(--background-primary-alt);
position: absolute;
right: 4px;
bottom: 4px;
right: var(--size-2-2);
bottom: var(--size-2-2);
z-index: 1;
.is-phone & {
width: var(--input-height);
/* Show copy button only on hover on desktop */
.obsidian-app:not(.is-mobile) .auto-card-link-container:not(:hover) & {
display: none;
}
}

@ -19,7 +19,7 @@
"601d1cc7-a4f3-4f19-aa9f-3bddd7ab6b1d": {
"locked": false,
"lockedDeviceName": "iPhone",
"lastRun": "2024-02-24T07:01:59+01:00"
"lastRun": "2024-03-03T09:00:01+01:00"
}
}
}

@ -12,8 +12,8 @@
"checkpointList": [
{
"path": "/",
"date": "2024-02-24",
"size": 13754882
"date": "2024-03-03",
"size": 13839244
}
],
"activityHistory": [
@ -3114,7 +3114,39 @@
},
{
"date": "2024-02-24",
"value": 1281
"value": 1590
},
{
"date": "2024-02-25",
"value": 76811
},
{
"date": "2024-02-26",
"value": 1820
},
{
"date": "2024-02-27",
"value": 2487
},
{
"date": "2024-02-28",
"value": 1733
},
{
"date": "2024-02-29",
"value": 4077
},
{
"date": "2024-03-01",
"value": 2511
},
{
"date": "2024-03-02",
"value": 1300
},
{
"date": "2024-03-03",
"value": 1362
}
]
}

File diff suppressed because one or more lines are too long

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

@ -27,3 +27,21 @@
.book-search-plugin__search-modal--input input {
width: 100%;
}
.book-suggestion-item {
display: flex;
align-items: center;
margin-bottom: 10px;
}
.book-cover-image {
max-width: 100px;
max-height: 100px;
margin-right: 10px;
object-fit: cover;
border-radius: 3px;
}
.book-text-info {
flex-grow: 1;
}

@ -1230,12 +1230,12 @@
"links": 5
},
"01.03 Family/Elise Bédier.md": {
"size": 1833,
"size": 2058,
"tags": 3,
"links": 6
},
"01.03 Family/Hortense de Villeneuve.md": {
"size": 1980,
"size": 2233,
"tags": 3,
"links": 6
},
@ -1570,7 +1570,7 @@
"links": 1
},
"01.02 Home/Household.md": {
"size": 5032,
"size": 5541,
"tags": 2,
"links": 4
},
@ -7694,11 +7694,6 @@
"tags": 0,
"links": 6
},
"00.02 Inbox/Zoo Station.md": {
"size": 1023,
"tags": 3,
"links": 1
},
"00.01 Admin/Calendars/2023-05-29.md": {
"size": 1412,
"tags": 0,
@ -10555,9 +10550,9 @@
"links": 4
},
"01.06 Health/2023-12-15 Eczema.md": {
"size": 1064,
"size": 1367,
"tags": 2,
"links": 6
"links": 8
},
"00.01 Admin/Calendars/2024-01-03.md": {
"size": 1412,
@ -10570,7 +10565,7 @@
"links": 4
},
"03.05 Vinyls/@Vinyls.md": {
"size": 3919,
"size": 4372,
"tags": 4,
"links": 1
},
@ -11357,7 +11352,7 @@
"00.03 News/A Teens Fatal Plunge Into the London Underworld.md": {
"size": 89435,
"tags": 4,
"links": 3
"links": 4
},
"00.03 News/His Best Friend Was a 250-Pound Warthog. One Day, It Decided to Kill Him..md": {
"size": 23841,
@ -11436,8 +11431,8 @@
},
"00.03 News/The surreal life of a professional bridesmaid - The Hustle.md": {
"size": 12131,
"tags": 3,
"links": 1
"tags": 4,
"links": 2
},
"00.01 Admin/Calendars/2024-02-19.md": {
"size": 1255,
@ -11477,59 +11472,138 @@
"00.01 Admin/Calendars/2024-02-24.md": {
"size": 1412,
"tags": 0,
"links": 4
"links": 7
},
"00.01 Admin/Calendars/2024-02-25.md": {
"size": 1269,
"tags": 0,
"links": 6
},
"00.03 News/Recovering the Lost Aviators of World War II.md": {
"size": 41568,
"tags": 3,
"links": 1
},
"00.03 News/How a Con Man Ended Up in Solitary in Colorado Supermax Federal Prison.md": {
"size": 25800,
"tags": 4,
"links": 1
},
"00.01 Admin/Calendars/2024-02-26.md": {
"size": 1276,
"tags": 0,
"links": 5
},
"03.01 Reading list/Zoo Station.md": {
"size": 1023,
"tags": 3,
"links": 2
},
"00.02 Inbox/Invisible Man.md": {
"size": 885,
"tags": 4,
"links": 1
},
"00.01 Admin/Calendars/2024-02-27.md": {
"size": 1412,
"tags": 0,
"links": 6
},
"00.01 Admin/Calendars/2024-02-28.md": {
"size": 1577,
"tags": 0,
"links": 6
},
"00.01 Admin/Calendars/2024-02-29.md": {
"size": 1412,
"tags": 0,
"links": 7
},
"00.02 Inbox/La Louisiane.md": {
"size": 2404,
"tags": 0,
"links": 1
},
"00.01 Admin/Calendars/2024-03-01.md": {
"size": 1412,
"tags": 0,
"links": 10
},
"00.01 Admin/Calendars/Events/2024-03-01 ⚽️ AS Monaco - PSG (0-0).md": {
"size": 366,
"tags": 0,
"links": 2
},
"00.01 Admin/Calendars/2024-03-02.md": {
"size": 1412,
"tags": 0,
"links": 6
},
"00.01 Admin/Calendars/2024-03-03.md": {
"size": 1412,
"tags": 0,
"links": 6
}
},
"commitTypes": {
"/": {
"Refactor": 6966,
"Create": 2475,
"Link": 9029,
"Expand": 2114
"Refactor": 6976,
"Create": 2490,
"Link": 9064,
"Expand": 2123
}
},
"dailyCommits": {
"/": {
"0": 187,
"0": 189,
"1": 46,
"2": 33,
"3": 12,
"4": 46,
"5": 15,
"5": 16,
"6": 69,
"7": 883,
"8": 1135,
"9": 1061,
"10": 749,
"11": 547,
"12": 6736,
"13": 674,
"14": 572,
"15": 639,
"7": 897,
"8": 1139,
"9": 1068,
"10": 751,
"11": 549,
"12": 6740,
"13": 675,
"14": 574,
"15": 640,
"16": 706,
"17": 815,
"18": 1005,
"19": 939,
"20": 855,
"20": 867,
"21": 777,
"22": 732,
"22": 749,
"23": 1351
}
},
"weeklyCommits": {
"/": {
"Mon": 2886,
"Tue": 1702,
"Wed": 7878,
"Thu": 1331,
"Fri": 1440,
"Mon": 2890,
"Tue": 1713,
"Wed": 7884,
"Thu": 1341,
"Fri": 1452,
"Sat": 0,
"Sun": 5347
"Sun": 5373
}
},
"recentCommits": {
"/": {
"Expanded": [
"<a class=\"internal-link\" href=\"00.01 Admin/Calendars/Events/2024-03-01 ⚽️ AS Monaco - PSG.md\"> 2024-03-01 ⚽️ AS Monaco - PSG </a>",
"<a class=\"internal-link\" href=\"00.01 Admin/Calendars/Events/2024-03-01 ⚽️ AS Monaco - PSG.md\"> 2024-03-01 ⚽️ AS Monaco - PSG </a>",
"<a class=\"internal-link\" href=\"01.06 Health/2023-12-15 Eczema.md\"> 2023-12-15 Eczema </a>",
"<a class=\"internal-link\" href=\"00.02 Inbox/La Louisiane 1.md\"> La Louisiane 1 </a>",
"<a class=\"internal-link\" href=\"00.01 Admin/Calendars/2024-02-28.md\"> 2024-02-28 </a>",
"<a class=\"internal-link\" href=\"01.03 Family/Elise Bédier.md\"> Elise Bédier </a>",
"<a class=\"internal-link\" href=\"01.03 Family/Hortense de Villeneuve.md\"> Hortense de Villeneuve </a>",
"<a class=\"internal-link\" href=\"01.02 Home/Household.md\"> Household </a>",
"<a class=\"internal-link\" href=\"03.05 Vinyls/@Vinyls.md\"> @Vinyls </a>",
"<a class=\"internal-link\" href=\"01.02 Home/Household.md\"> Household </a>",
"<a class=\"internal-link\" href=\"00.01 Admin/Calendars/Events/2024-02-14 ⚽️ PSG - Real Sociedad.md\"> 2024-02-14 ⚽️ PSG - Real Sociedad </a>",
"<a class=\"internal-link\" href=\"00.01 Admin/Calendars/Events/2024-02-14 ⚽️ PSG - Real Sociedad.md\"> 2024-02-14 ⚽️ PSG - Real Sociedad </a>",
@ -11571,18 +11645,24 @@
"<a class=\"internal-link\" href=\"00.02 Inbox/Hoch Ybrig.md\"> Hoch Ybrig </a>",
"<a class=\"internal-link\" href=\"05.02 Networks/Configuring UFW.md\"> Configuring UFW </a>",
"<a class=\"internal-link\" href=\"01.02 Home/Bandes Dessinées.md\"> Bandes Dessinées </a>",
"<a class=\"internal-link\" href=\"00.02 Inbox/Sawerdo.md\"> Sawerdo </a>",
"<a class=\"internal-link\" href=\"00.02 Inbox/Les Sales Gosses.md\"> Les Sales Gosses </a>",
"<a class=\"internal-link\" href=\"00.02 Inbox/Le Bologne.md\"> Le Bologne </a>",
"<a class=\"internal-link\" href=\"00.02 Inbox/Chez Philippe.md\"> Chez Philippe </a>",
"<a class=\"internal-link\" href=\"03.02 Travels/Bleu Nuit.md\"> Bleu Nuit </a>",
"<a class=\"internal-link\" href=\"03.02 Travels/Geneva.md\"> Geneva </a>",
"<a class=\"internal-link\" href=\"00.01 Admin/Calendars/2024-01-17.md\"> 2024-01-17 </a>",
"<a class=\"internal-link\" href=\"00.01 Admin/Calendars/2024-01-17.md\"> 2024-01-17 </a>",
"<a class=\"internal-link\" href=\"00.02 Inbox/Sicilian aubergine stew with couscous.md\"> Sicilian aubergine stew with couscous </a>",
"<a class=\"internal-link\" href=\"01.03 Family/Pia Bousquié.md\"> Pia Bousquié </a>"
"<a class=\"internal-link\" href=\"00.02 Inbox/Sawerdo.md\"> Sawerdo </a>"
],
"Created": [
"<a class=\"internal-link\" href=\"00.01 Admin/Calendars/2024-03-03.md\"> 2024-03-03 </a>",
"<a class=\"internal-link\" href=\"00.01 Admin/Calendars/2024-03-02.md\"> 2024-03-02 </a>",
"<a class=\"internal-link\" href=\"00.01 Admin/Calendars/Events/2024-03-01 ⚽️ AS Monaco - PSG.md\"> 2024-03-01 ⚽️ AS Monaco - PSG </a>",
"<a class=\"internal-link\" href=\"00.01 Admin/Calendars/2024-03-01.md\"> 2024-03-01 </a>",
"<a class=\"internal-link\" href=\"00.02 Inbox/Untitled.md\"> Untitled </a>",
"<a class=\"internal-link\" href=\"00.01 Admin/Calendars/2024-02-29.md\"> 2024-02-29 </a>",
"<a class=\"internal-link\" href=\"00.01 Admin/Calendars/2024-02-28.md\"> 2024-02-28 </a>",
"<a class=\"internal-link\" href=\"00.01 Admin/Calendars/2024-02-27.md\"> 2024-02-27 </a>",
"<a class=\"internal-link\" href=\"00.02 Inbox/Invisible Man.md\"> Invisible Man </a>",
"<a class=\"internal-link\" href=\"00.01 Admin/Calendars/2024-02-26.md\"> 2024-02-26 </a>",
"<a class=\"internal-link\" href=\"00.02 Inbox/When the Border Crisis Is in Your Backyard Migrants, Cartels and Cowboys.md\"> When the Border Crisis Is in Your Backyard Migrants, Cartels and Cowboys </a>",
"<a class=\"internal-link\" href=\"00.02 Inbox/How a Con Man Ended Up in Solitary in Colorado Supermax Federal Prison.md\"> How a Con Man Ended Up in Solitary in Colorado Supermax Federal Prison </a>",
"<a class=\"internal-link\" href=\"00.02 Inbox/As a Son Risks His Life to Topple the King, His Father Guards the Throne.md\"> As a Son Risks His Life to Topple the King, His Father Guards the Throne </a>",
"<a class=\"internal-link\" href=\"00.02 Inbox/Recovering the Lost Aviators of World War II.md\"> Recovering the Lost Aviators of World War II </a>",
"<a class=\"internal-link\" href=\"00.01 Admin/Calendars/2024-02-25.md\"> 2024-02-25 </a>",
"<a class=\"internal-link\" href=\"00.01 Admin/Calendars/2024-02-24.md\"> 2024-02-24 </a>",
"<a class=\"internal-link\" href=\"00.01 Admin/Calendars/2024-02-23.md\"> 2024-02-23 </a>",
"<a class=\"internal-link\" href=\"00.02 Inbox/Sesame Seared Tuna Steak Recipe.md\"> Sesame Seared Tuna Steak Recipe </a>",
@ -11618,24 +11698,15 @@
"<a class=\"internal-link\" href=\"00.01 Admin/Calendars/2024-02-07.md\"> 2024-02-07 </a>",
"<a class=\"internal-link\" href=\"00.01 Admin/Calendars/2024-02-06.md\"> 2024-02-06 </a>",
"<a class=\"internal-link\" href=\"00.01 Admin/Calendars/2024-02-05.md\"> 2024-02-05 </a>",
"<a class=\"internal-link\" href=\"00.02 Inbox/Why Tim Cook Is Going All In on the Apple Vision Pro.md\"> Why Tim Cook Is Going All In on the Apple Vision Pro </a>",
"<a class=\"internal-link\" href=\"00.02 Inbox/Precipice of fear the freerider who took skiing to its limits.md\"> Precipice of fear the freerider who took skiing to its limits </a>",
"<a class=\"internal-link\" href=\"00.02 Inbox/How Two Single Moms Escaped an Alleged Sex-Trafficking Ring and Ultimately Saved Each Other.md\"> How Two Single Moms Escaped an Alleged Sex-Trafficking Ring and Ultimately Saved Each Other </a>",
"<a class=\"internal-link\" href=\"00.02 Inbox/The Man in Room 117.md\"> The Man in Room 117 </a>",
"<a class=\"internal-link\" href=\"00.02 Inbox/Super Bowl Strip Tease The NFL and Las Vegas Are Together at Last.md\"> Super Bowl Strip Tease The NFL and Las Vegas Are Together at Last </a>",
"<a class=\"internal-link\" href=\"00.02 Inbox/Untitled.md\"> Untitled </a>",
"<a class=\"internal-link\" href=\"00.02 Inbox/Untitled.md\"> Untitled </a>",
"<a class=\"internal-link\" href=\"00.01 Admin/Calendars/2024-02-04.md\"> 2024-02-04 </a>",
"<a class=\"internal-link\" href=\"00.01 Admin/Calendars/2024-02-03.md\"> 2024-02-03 </a>",
"<a class=\"internal-link\" href=\"00.01 Admin/Calendars/2024-02-02.md\"> 2024-02-02 </a>",
"<a class=\"internal-link\" href=\"00.02 Inbox/Did Drug Traffickers Funnel Millions of Dollars to Mexican President López Obradors First Campaign.md\"> Did Drug Traffickers Funnel Millions of Dollars to Mexican President López Obradors First Campaign </a>",
"<a class=\"internal-link\" href=\"00.01 Admin/Calendars/2024-02-01.md\"> 2024-02-01 </a>",
"<a class=\"internal-link\" href=\"00.02 Inbox/Cuban Picadillo Bowls.md\"> Cuban Picadillo Bowls </a>",
"<a class=\"internal-link\" href=\"00.02 Inbox/Thai Peanut Chicken Bowls.md\"> Thai Peanut Chicken Bowls </a>",
"<a class=\"internal-link\" href=\"00.01 Admin/Calendars/2024-01-31.md\"> 2024-01-31 </a>",
"<a class=\"internal-link\" href=\"00.02 Inbox/Bear Hibernation Uncovering Black Bear Denning Secrets in Arkansas.md\"> Bear Hibernation Uncovering Black Bear Denning Secrets in Arkansas </a>"
"<a class=\"internal-link\" href=\"00.02 Inbox/Why Tim Cook Is Going All In on the Apple Vision Pro.md\"> Why Tim Cook Is Going All In on the Apple Vision Pro </a>"
],
"Renamed": [
"<a class=\"internal-link\" href=\"00.01 Admin/Calendars/Events/2024-03-01 ⚽️ AS Monaco - PSG (0-0).md\"> 2024-03-01 ⚽️ AS Monaco - PSG (0-0) </a>",
"<a class=\"internal-link\" href=\"00.02 Inbox/La Louisiane.md\"> La Louisiane </a>",
"<a class=\"internal-link\" href=\"00.02 Inbox/La Louisiane 1.md\"> La Louisiane 1 </a>",
"<a class=\"internal-link\" href=\"03.01 Reading list/Zoo Station.md\"> Zoo Station </a>",
"<a class=\"internal-link\" href=\"00.03 News/How a Con Man Ended Up in Solitary in Colorado Supermax Federal Prison.md\"> How a Con Man Ended Up in Solitary in Colorado Supermax Federal Prison </a>",
"<a class=\"internal-link\" href=\"00.03 News/Recovering the Lost Aviators of World War II.md\"> Recovering the Lost Aviators of World War II </a>",
"<a class=\"internal-link\" href=\"03.03 Food & Wine/Sesame Seared Tuna Steak.md\"> Sesame Seared Tuna Steak </a>",
"<a class=\"internal-link\" href=\"00.02 Inbox/Sesame Seared Tuna Steak.md\"> Sesame Seared Tuna Steak </a>",
"<a class=\"internal-link\" href=\"03.01 Reading list/Seven Pillars of Wisdom.md\"> Seven Pillars of Wisdom </a>",
@ -11680,15 +11751,14 @@
"<a class=\"internal-link\" href=\"03.04 Cinematheque/Interview with the Vampire - The Vampire Chronicles (1994).md\"> Interview with the Vampire - The Vampire Chronicles (1994) </a>",
"<a class=\"internal-link\" href=\"03.04 Cinematheque/Rain Man (1988).md\"> Rain Man (1988) </a>",
"<a class=\"internal-link\" href=\"00.03 News/Inside the house shows that bolster Bostons lacking nightlife.md\"> Inside the house shows that bolster Bostons lacking nightlife </a>",
"<a class=\"internal-link\" href=\"00.03 News/Hvaldimir, the Whale Who Went AWOL.md\"> Hvaldimir, the Whale Who Went AWOL </a>",
"<a class=\"internal-link\" href=\"00.03 News/My cousin was killed by a car bomb in Milwaukee. A mob boss was the top suspect. Now, Im looking for answers..md\"> My cousin was killed by a car bomb in Milwaukee. A mob boss was the top suspect. Now, Im looking for answers. </a>",
"<a class=\"internal-link\" href=\"03.02 Travels/Klewenalp.md\"> Klewenalp </a>",
"<a class=\"internal-link\" href=\"00.01 Admin/Calendars/Events/2024-01-20 ⚽️ US Orleans - PSG (1-4).md\"> 2024-01-20 ⚽️ US Orleans - PSG (1-4) </a>",
"<a class=\"internal-link\" href=\"03.02 Travels/Hoch Ybrig.md\"> Hoch Ybrig </a>",
"<a class=\"internal-link\" href=\"03.05 Vinyls/I Walk the Line (by Johnny Cash - 1987).md\"> I Walk the Line (by Johnny Cash - 1987) </a>",
"<a class=\"internal-link\" href=\"03.05 Vinyls/Première Consultation (by Doc Gynéco - 1996).md\"> Première Consultation (by Doc Gynéco - 1996) </a>"
"<a class=\"internal-link\" href=\"00.03 News/Hvaldimir, the Whale Who Went AWOL.md\"> Hvaldimir, the Whale Who Went AWOL </a>"
],
"Tagged": [
"<a class=\"internal-link\" href=\"00.02 Inbox/Invisible Man.md\"> Invisible Man </a>",
"<a class=\"internal-link\" href=\"00.03 News/The surreal life of a professional bridesmaid - The Hustle.md\"> The surreal life of a professional bridesmaid - The Hustle </a>",
"<a class=\"internal-link\" href=\"00.03 News/How a Con Man Ended Up in Solitary in Colorado Supermax Federal Prison.md\"> How a Con Man Ended Up in Solitary in Colorado Supermax Federal Prison </a>",
"<a class=\"internal-link\" href=\"00.02 Inbox/As a Son Risks His Life to Topple the King, His Father Guards the Throne.md\"> As a Son Risks His Life to Topple the King, His Father Guards the Throne </a>",
"<a class=\"internal-link\" href=\"00.03 News/Recovering the Lost Aviators of World War II.md\"> Recovering the Lost Aviators of World War II </a>",
"<a class=\"internal-link\" href=\"03.03 Food & Wine/Sesame Seared Tuna Steak.md\"> Sesame Seared Tuna Steak </a>",
"<a class=\"internal-link\" href=\"00.02 Inbox/Sesame Seared Tuna Steak.md\"> Sesame Seared Tuna Steak </a>",
"<a class=\"internal-link\" href=\"00.03 News/The surreal life of a professional bridesmaid - The Hustle.md\"> The surreal life of a professional bridesmaid - The Hustle </a>",
@ -11734,14 +11804,11 @@
"<a class=\"internal-link\" href=\"00.02 Inbox/Klewenalp.md\"> Klewenalp </a>",
"<a class=\"internal-link\" href=\"03.02 Travels/Hoch Ybrig.md\"> Hoch Ybrig </a>",
"<a class=\"internal-link\" href=\"03.02 Travels/Hoch Ybrig.md\"> Hoch Ybrig </a>",
"<a class=\"internal-link\" href=\"03.02 Travels/Hoch Ybrig.md\"> Hoch Ybrig </a>",
"<a class=\"internal-link\" href=\"03.02 Travels/Sawerdo.md\"> Sawerdo </a>",
"<a class=\"internal-link\" href=\"00.02 Inbox/Les Sales Gosses.md\"> Les Sales Gosses </a>",
"<a class=\"internal-link\" href=\"03.02 Travels/Le Bologne.md\"> Le Bologne </a>",
"<a class=\"internal-link\" href=\"00.02 Inbox/Chez Philippe.md\"> Chez Philippe </a>",
"<a class=\"internal-link\" href=\"03.02 Travels/Bleu Nuit.md\"> Bleu Nuit </a>"
"<a class=\"internal-link\" href=\"03.02 Travels/Hoch Ybrig.md\"> Hoch Ybrig </a>"
],
"Refactored": [
"<a class=\"internal-link\" href=\"00.01 Admin/Calendars/Events/2024-03-01 ⚽️ AS Monaco - PSG.md\"> 2024-03-01 ⚽️ AS Monaco - PSG </a>",
"<a class=\"internal-link\" href=\"00.01 Admin/Calendars/2024-02-25.md\"> 2024-02-25 </a>",
"<a class=\"internal-link\" href=\"03.03 Food & Wine/Sesame Seared Tuna Steak.md\"> Sesame Seared Tuna Steak </a>",
"<a class=\"internal-link\" href=\"00.01 Admin/Calendars/2024-02-20.md\"> 2024-02-20 </a>",
"<a class=\"internal-link\" href=\"00.01 Admin/Calendars/2024-02-19.md\"> 2024-02-19 </a>",
@ -11790,11 +11857,11 @@
"<a class=\"internal-link\" href=\"01.02 Home/Real Estate.md\"> Real Estate </a>",
"<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/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-05.md\"> 2023-10-05 </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>"
],
"Deleted": [
"<a class=\"internal-link\" href=\"00.02 Inbox/When the Border Crisis Is in Your Backyard Migrants, Cartels and Cowboys.md\"> When the Border Crisis Is in Your Backyard Migrants, Cartels and Cowboys </a>",
"<a class=\"internal-link\" href=\"00.02 Inbox/As a Son Risks His Life to Topple the King, His Father Guards the Throne.md\"> As a Son Risks His Life to Topple the King, His Father Guards the Throne </a>",
"<a class=\"internal-link\" href=\"00.02 Inbox/The Untold Origin Story of ESPN.md\"> The Untold Origin Story of ESPN </a>",
"<a class=\"internal-link\" href=\"00.03 News/El Niño Is Coming—and the World Isnt Prepared.md\"> El Niño Is Coming—and the World Isnt Prepared </a>",
"<a class=\"internal-link\" href=\"00.03 News/Buried gold, vampire graves and lost cities - the year's best ancient finds.md\"> Buried gold, vampire graves and lost cities - the year's best ancient finds </a>",
@ -11843,11 +11910,39 @@
"<a class=\"internal-link\" href=\"00.03 News/The Most Lawless County in Texas.md\"> The Most Lawless County in Texas </a>",
"<a class=\"internal-link\" href=\"00.03 News/How Ukrainians Are Protecting Their Centuries-Old Culture From Putins Invasion.md\"> How Ukrainians Are Protecting Their Centuries-Old Culture From Putins Invasion </a>",
"<a class=\"internal-link\" href=\"00.03 News/Do We Have the History of Native Americans Backward.md\"> Do We Have the History of Native Americans Backward </a>",
"<a class=\"internal-link\" href=\"00.03 News/The Too-Muchness of Bono.md\"> The Too-Muchness of Bono </a>",
"<a class=\"internal-link\" href=\"00.03 News/Mississippi's Welfare Mess—And America's.md\"> Mississippi's Welfare Mess—And America's </a>",
"<a class=\"internal-link\" href=\"00.03 News/Texas Goes Permitless on Guns, and Police Face an Armed Public.md\"> Texas Goes Permitless on Guns, and Police Face an Armed Public </a>"
"<a class=\"internal-link\" href=\"00.03 News/The Too-Muchness of Bono.md\"> The Too-Muchness of Bono </a>"
],
"Linked": [
"<a class=\"internal-link\" href=\"00.01 Admin/Calendars/2024-03-02.md\"> 2024-03-02 </a>",
"<a class=\"internal-link\" href=\"00.01 Admin/Calendars/2024-03-03.md\"> 2024-03-03 </a>",
"<a class=\"internal-link\" href=\"00.01 Admin/Calendars/2024-03-02.md\"> 2024-03-02 </a>",
"<a class=\"internal-link\" href=\"00.01 Admin/Calendars/Events/2024-03-01 ⚽️ AS Monaco - PSG.md\"> 2024-03-01 ⚽️ AS Monaco - PSG </a>",
"<a class=\"internal-link\" href=\"00.01 Admin/Calendars/2024-03-01.md\"> 2024-03-01 </a>",
"<a class=\"internal-link\" href=\"01.06 Health/2023-12-15 Eczema.md\"> 2023-12-15 Eczema </a>",
"<a class=\"internal-link\" href=\"00.01 Admin/Calendars/2024-03-01.md\"> 2024-03-01 </a>",
"<a class=\"internal-link\" href=\"00.01 Admin/Calendars/2024-03-01.md\"> 2024-03-01 </a>",
"<a class=\"internal-link\" href=\"00.02 Inbox/La Louisiane 1.md\"> La Louisiane 1 </a>",
"<a class=\"internal-link\" href=\"00.01 Admin/Calendars/2024-02-28.md\"> 2024-02-28 </a>",
"<a class=\"internal-link\" href=\"00.01 Admin/Calendars/2024-02-29.md\"> 2024-02-29 </a>",
"<a class=\"internal-link\" href=\"00.01 Admin/Calendars/2024-02-29.md\"> 2024-02-29 </a>",
"<a class=\"internal-link\" href=\"00.01 Admin/Calendars/2024-02-28.md\"> 2024-02-28 </a>",
"<a class=\"internal-link\" href=\"00.01 Admin/Calendars/2024-02-28.md\"> 2024-02-28 </a>",
"<a class=\"internal-link\" href=\"00.03 News/A Teens Fatal Plunge Into the London Underworld.md\"> A Teens Fatal Plunge Into the London Underworld </a>",
"<a class=\"internal-link\" href=\"00.01 Admin/Calendars/2024-02-27.md\"> 2024-02-27 </a>",
"<a class=\"internal-link\" href=\"00.01 Admin/Calendars/2024-02-27.md\"> 2024-02-27 </a>",
"<a class=\"internal-link\" href=\"00.03 News/The surreal life of a professional bridesmaid - The Hustle.md\"> The surreal life of a professional bridesmaid - The Hustle </a>",
"<a class=\"internal-link\" href=\"00.01 Admin/Calendars/2024-02-27.md\"> 2024-02-27 </a>",
"<a class=\"internal-link\" href=\"03.01 Reading list/Zoo Station.md\"> Zoo Station </a>",
"<a class=\"internal-link\" href=\"00.02 Inbox/Invisible Man.md\"> Invisible Man </a>",
"<a class=\"internal-link\" href=\"00.01 Admin/Calendars/2024-02-26.md\"> 2024-02-26 </a>",
"<a class=\"internal-link\" href=\"00.01 Admin/Calendars/2024-02-26.md\"> 2024-02-26 </a>",
"<a class=\"internal-link\" href=\"00.02 Inbox/As a Son Risks His Life to Topple the King, His Father Guards the Throne.md\"> As a Son Risks His Life to Topple the King, His Father Guards the Throne </a>",
"<a class=\"internal-link\" href=\"00.02 Inbox/How a Con Man Ended Up in Solitary in Colorado Supermax Federal Prison.md\"> How a Con Man Ended Up in Solitary in Colorado Supermax Federal Prison </a>",
"<a class=\"internal-link\" href=\"00.03 News/Recovering the Lost Aviators of World War II.md\"> Recovering the Lost Aviators of World War II </a>",
"<a class=\"internal-link\" href=\"00.01 Admin/Calendars/2024-02-25.md\"> 2024-02-25 </a>",
"<a class=\"internal-link\" href=\"00.01 Admin/Calendars/2024-02-25.md\"> 2024-02-25 </a>",
"<a class=\"internal-link\" href=\"00.01 Admin/Calendars/2024-02-25.md\"> 2024-02-25 </a>",
"<a class=\"internal-link\" href=\"00.01 Admin/Calendars/2024-02-24.md\"> 2024-02-24 </a>",
"<a class=\"internal-link\" href=\"00.01 Admin/Calendars/2024-02-24.md\"> 2024-02-24 </a>",
"<a class=\"internal-link\" href=\"00.01 Admin/Calendars/2024-02-23.md\"> 2024-02-23 </a>",
"<a class=\"internal-link\" href=\"00.01 Admin/Calendars/2024-02-23.md\"> 2024-02-23 </a>",
@ -11868,37 +11963,7 @@
"<a class=\"internal-link\" href=\"00.03 News/The rise and fall of robots.txt.md\"> The rise and fall of robots.txt </a>",
"<a class=\"internal-link\" href=\"00.01 Admin/Calendars/2024-02-19.md\"> 2024-02-19 </a>",
"<a class=\"internal-link\" href=\"00.03 News/In the Land of the Very Old.md\"> In the Land of the Very Old </a>",
"<a class=\"internal-link\" href=\"00.02 Inbox/The surreal life of a professional bridesmaid - The Hustle.md\"> The surreal life of a professional bridesmaid - The Hustle </a>",
"<a class=\"internal-link\" href=\"00.03 News/Cillian Murphy Is the Man of the Moment.md\"> Cillian Murphy Is the Man of the Moment </a>",
"<a class=\"internal-link\" href=\"00.03 News/The rise and fall of robots.txt.md\"> The rise and fall of robots.txt </a>",
"<a class=\"internal-link\" href=\"00.03 News/The art of doing nothing have the Dutch found the answer to burnout culture.md\"> The art of doing nothing have the Dutch found the answer to burnout culture </a>",
"<a class=\"internal-link\" href=\"00.03 News/Exclusive Life Aboard a Nuclear Submarine as the US Responds to Threats Around the Globe.md\"> Exclusive Life Aboard a Nuclear Submarine as the US Responds to Threats Around the Globe </a>",
"<a class=\"internal-link\" href=\"00.02 Inbox/The Israeli-Palestinian Conflict and the Long Shadow of 1948.md\"> The Israeli-Palestinian Conflict and the Long Shadow of 1948 </a>",
"<a class=\"internal-link\" href=\"00.02 Inbox/Helvetia ein Schweizer Dorf in den USA mit Fasnacht und Urdemokratie.md\"> Helvetia ein Schweizer Dorf in den USA mit Fasnacht und Urdemokratie </a>",
"<a class=\"internal-link\" href=\"00.02 Inbox/Helvetia ein Schweizer Dorf in den USA mit Fasnacht und Urdemokratie.md\"> Helvetia ein Schweizer Dorf in den USA mit Fasnacht und Urdemokratie </a>",
"<a class=\"internal-link\" href=\"00.03 News/Nat Friedman Embraces AI to Translate the Herculaneum Papyri.md\"> Nat Friedman Embraces AI to Translate the Herculaneum Papyri </a>",
"<a class=\"internal-link\" href=\"00.01 Admin/Calendars/2024-02-18.md\"> 2024-02-18 </a>",
"<a class=\"internal-link\" href=\"00.01 Admin/Calendars/2024-02-17.md\"> 2024-02-17 </a>",
"<a class=\"internal-link\" href=\"00.01 Admin/Calendars/2024-02-17.md\"> 2024-02-17 </a>",
"<a class=\"internal-link\" href=\"00.03 News/The Juror Who Found Herself Guilty.md\"> The Juror Who Found Herself Guilty </a>",
"<a class=\"internal-link\" href=\"00.03 News/How Nikola Jokić Became the Worlds Best Basketball Player.md\"> How Nikola Jokić Became the Worlds Best Basketball Player </a>",
"<a class=\"internal-link\" href=\"00.01 Admin/Calendars/2024-02-16.md\"> 2024-02-16 </a>",
"<a class=\"internal-link\" href=\"00.01 Admin/Calendars/2024-02-16.md\"> 2024-02-16 </a>",
"<a class=\"internal-link\" href=\"00.01 Admin/Calendars/2024-02-15.md\"> 2024-02-15 </a>",
"<a class=\"internal-link\" href=\"00.01 Admin/Calendars/2024-02-14.md\"> 2024-02-14 </a>",
"<a class=\"internal-link\" href=\"00.01 Admin/Calendars/2024-02-14.md\"> 2024-02-14 </a>",
"<a class=\"internal-link\" href=\"00.03 News/Precipice of fear the freerider who took skiing to its limits.md\"> Precipice of fear the freerider who took skiing to its limits </a>",
"<a class=\"internal-link\" href=\"00.03 News/His Best Friend Was a 250-Pound Warthog. One Day, It Decided to Kill Him..md\"> His Best Friend Was a 250-Pound Warthog. One Day, It Decided to Kill Him. </a>",
"<a class=\"internal-link\" href=\"00.03 News/Paper mills are bribing editors at scholarly journals, Science investigation finds.md\"> Paper mills are bribing editors at scholarly journals, Science investigation finds </a>",
"<a class=\"internal-link\" href=\"00.01 Admin/Calendars/2024-02-14.md\"> 2024-02-14 </a>",
"<a class=\"internal-link\" href=\"00.01 Admin/Calendars/2024-02-14.md\"> 2024-02-14 </a>",
"<a class=\"internal-link\" href=\"00.01 Admin/Calendars/2024-02-13.md\"> 2024-02-13 </a>",
"<a class=\"internal-link\" href=\"00.01 Admin/Calendars/2024-02-12.md\"> 2024-02-12 </a>",
"<a class=\"internal-link\" href=\"00.01 Admin/Calendars/2024-02-12.md\"> 2024-02-12 </a>",
"<a class=\"internal-link\" href=\"00.03 News/Why Tim Cook Is Going All In on the Apple Vision Pro.md\"> Why Tim Cook Is Going All In on the Apple Vision Pro </a>",
"<a class=\"internal-link\" href=\"00.03 News/A Teens Fatal Plunge Into the London Underworld.md\"> A Teens Fatal Plunge Into the London Underworld </a>",
"<a class=\"internal-link\" href=\"00.03 News/His Best Friend Was a 250-Pound Warthog. One Day, It Decided to Kill Him..md\"> His Best Friend Was a 250-Pound Warthog. One Day, It Decided to Kill Him. </a>",
"<a class=\"internal-link\" href=\"00.02 Inbox/A Teens Fatal Plunge Into the London Underworld.md\"> A Teens Fatal Plunge Into the London Underworld </a>"
"<a class=\"internal-link\" href=\"00.02 Inbox/The surreal life of a professional bridesmaid - The Hustle.md\"> The surreal life of a professional bridesmaid - The Hustle </a>"
],
"Removed Tags from": [
"<a class=\"internal-link\" href=\"03.04 Cinematheque/@Cinematheque.md\"> @Cinematheque </a>",

File diff suppressed because one or more lines are too long

@ -1,7 +1,7 @@
{
"id": "obsidian-icon-folder",
"name": "Iconize",
"version": "2.10.0",
"version": "2.10.1",
"minAppVersion": "0.9.12",
"description": "Add icons to anything you desire in Obsidian, including files, folders, and text.",
"author": "Florian Woelki",

@ -3,30 +3,39 @@
"sfwFilter": true,
"useCustomYamlStringifier": true,
"templates": true,
"customDateFormat": "L",
"movieTemplate": "Template Movie.md",
"seriesTemplate": "Template TVShow.md",
"mangaTemplate": "",
"gameTemplate": "Template Game.md",
"wikiTemplate": "Template Wiki.md",
"musicReleaseTemplate": "Template Music.md",
"boardgameTemplate": "",
"bookTemplate": "",
"movieFileNameTemplate": "{{ title }} ({{ year }})",
"seriesFileNameTemplate": "{{ title }} ({{ year }})",
"mangaFileNameTemplate": "{{ title }} ({{ year }})",
"gameFileNameTemplate": "{{ title }} ({{ year }})",
"wikiFileNameTemplate": "{{ title }}",
"musicReleaseFileNameTemplate": "{{ title }} (by {{ ENUM:artists }} - {{ year }})",
"boardgameFileNameTemplate": "{{ title }} ({{ year }})",
"bookFileNameTemplate": "{{ title }} ({{ year }})",
"moviePropertyConversionRules": "",
"seriesPropertyConversionRules": "",
"mangaPropertyConversionRules": "",
"gamePropertyConversionRules": "",
"wikiPropertyConversionRules": "",
"musicReleasePropertyConversionRules": "",
"boardgamePropertyConversionRules": "",
"movieFolder": "00.02 Inbox",
"seriesFolder": "00.02 Inbox",
"bookPropertyConversionRules": "",
"movieFolder": "03.04 Cinematheque",
"seriesFolder": "03.04 Cinematheque",
"mangaFolder": "00.02 Inbox",
"gameFolder": "00.02 Inbox",
"wikiFolder": "00.02 Inbox",
"wikiFolder": "00.07 Wiki",
"musicReleaseFolder": "00.02 Inbox",
"boardgameFolder": "",
"bookFolder": "00.02 Inbox",
"propertyMappingModels": [
{
"type": "movie",
@ -79,6 +88,12 @@
"mapping": "default",
"locked": true
},
{
"property": "plot",
"newProperty": "",
"mapping": "default",
"locked": false
},
{
"property": "genres",
"newProperty": "",
@ -86,7 +101,19 @@
"locked": false
},
{
"property": "producer",
"property": "director",
"newProperty": "",
"mapping": "default",
"locked": false
},
{
"property": "writer",
"newProperty": "",
"mapping": "default",
"locked": false
},
{
"property": "studio",
"newProperty": "",
"mapping": "default",
"locked": false
@ -210,6 +237,12 @@
"mapping": "default",
"locked": true
},
{
"property": "plot",
"newProperty": "",
"mapping": "default",
"locked": false
},
{
"property": "genres",
"newProperty": "",
@ -217,7 +250,13 @@
"locked": false
},
{
"property": "studios",
"property": "writer",
"newProperty": "",
"mapping": "default",
"locked": false
},
{
"property": "studio",
"newProperty": "",
"mapping": "default",
"locked": false
@ -308,6 +347,155 @@
}
]
},
{
"type": "manga",
"properties": [
{
"property": "type",
"newProperty": "",
"mapping": "default",
"locked": true
},
{
"property": "subType",
"newProperty": "",
"mapping": "default",
"locked": false
},
{
"property": "title",
"newProperty": "",
"mapping": "default",
"locked": false
},
{
"property": "englishTitle",
"newProperty": "",
"mapping": "default",
"locked": false
},
{
"property": "year",
"newProperty": "",
"mapping": "default",
"locked": false
},
{
"property": "dataSource",
"newProperty": "",
"mapping": "default",
"locked": true
},
{
"property": "url",
"newProperty": "",
"mapping": "default",
"locked": false
},
{
"property": "id",
"newProperty": "",
"mapping": "default",
"locked": true
},
{
"property": "plot",
"newProperty": "",
"mapping": "default",
"locked": false
},
{
"property": "genres",
"newProperty": "",
"mapping": "default",
"locked": false
},
{
"property": "authors",
"newProperty": "",
"mapping": "default",
"locked": false
},
{
"property": "alternateTitles",
"newProperty": "",
"mapping": "default",
"locked": false
},
{
"property": "chapters",
"newProperty": "",
"mapping": "default",
"locked": false
},
{
"property": "volumes",
"newProperty": "",
"mapping": "default",
"locked": false
},
{
"property": "onlineRating",
"newProperty": "",
"mapping": "default",
"locked": false
},
{
"property": "image",
"newProperty": "",
"mapping": "default",
"locked": false
},
{
"property": "released",
"newProperty": "",
"mapping": "default",
"locked": false
},
{
"property": "status",
"newProperty": "",
"mapping": "default",
"locked": false
},
{
"property": "publishedFrom",
"newProperty": "",
"mapping": "default",
"locked": false
},
{
"property": "publishedTo",
"newProperty": "",
"mapping": "default",
"locked": false
},
{
"property": "watched",
"newProperty": "",
"mapping": "default",
"locked": false
},
{
"property": "lastWatched",
"newProperty": "",
"mapping": "default",
"locked": false
},
{
"property": "personalRating",
"newProperty": "",
"mapping": "default",
"locked": false
},
{
"property": "tags",
"newProperty": "",
"mapping": "default",
"locked": false
}
]
},
{
"type": "game",
"properties": [
@ -549,6 +737,12 @@
"mapping": "default",
"locked": false
},
{
"property": "image",
"newProperty": "",
"mapping": "default",
"locked": false
},
{
"property": "rating",
"newProperty": "",
@ -693,6 +887,113 @@
"locked": false
}
]
},
{
"type": "book",
"properties": [
{
"property": "type",
"newProperty": "",
"mapping": "default",
"locked": true
},
{
"property": "subType",
"newProperty": "",
"mapping": "default",
"locked": false
},
{
"property": "title",
"newProperty": "",
"mapping": "default",
"locked": false
},
{
"property": "englishTitle",
"newProperty": "",
"mapping": "default",
"locked": false
},
{
"property": "year",
"newProperty": "",
"mapping": "default",
"locked": false
},
{
"property": "dataSource",
"newProperty": "",
"mapping": "default",
"locked": true
},
{
"property": "url",
"newProperty": "",
"mapping": "default",
"locked": false
},
{
"property": "id",
"newProperty": "",
"mapping": "default",
"locked": true
},
{
"property": "author",
"newProperty": "",
"mapping": "default",
"locked": false
},
{
"property": "pages",
"newProperty": "",
"mapping": "default",
"locked": false
},
{
"property": "image",
"newProperty": "",
"mapping": "default",
"locked": false
},
{
"property": "onlineRating",
"newProperty": "",
"mapping": "default",
"locked": false
},
{
"property": "released",
"newProperty": "",
"mapping": "default",
"locked": false
},
{
"property": "read",
"newProperty": "",
"mapping": "default",
"locked": false
},
{
"property": "lastRead",
"newProperty": "",
"mapping": "default",
"locked": false
},
{
"property": "personalRating",
"newProperty": "",
"mapping": "default",
"locked": false
},
{
"property": "tags",
"newProperty": "",
"mapping": "default",
"locked": false
}
]
}
],
"folder": "00.02 Inbox"

@ -215,7 +215,7 @@
"01.03 Family/Hortense de Villeneuve.md": [
{
"title": ":birthday: **[[Hortense de Villeneuve|Hortense BV]]** %%done_del%%",
"time": "2024-02-27",
"time": "2025-02-27",
"rowNumber": 105
}
],
@ -332,50 +332,50 @@
}
],
"01.02 Home/Household.md": [
{
"title": "♻ [[Household]]: *Cardboard* recycling collection %%done_del%%",
"time": "2024-03-05",
"rowNumber": 81
},
{
"title": "🛎 🧻 REMINDER [[Household]]: check need for toilet paper %%done_del%%",
"time": "2024-02-26",
"rowNumber": 94
"time": "2024-03-11",
"rowNumber": 96
},
{
"title": "♻ [[Household]]: *Paper* recycling collection %%done_del%%",
"time": "2024-02-27",
"time": "2024-03-12",
"rowNumber": 75
},
{
"title": "🛎️ :house: [[Household]]: Pay rent %%done_del%%",
"time": "2024-02-29",
"rowNumber": 91
},
{
"title": ":bed: [[Household]] Change bedsheets %%done_del%%",
"time": "2024-03-02",
"rowNumber": 104
"time": "2024-03-16",
"rowNumber": 108
},
{
"title": "♻ [[Household]]: *Cardboard* recycling collection %%done_del%%",
"time": "2024-03-05",
"rowNumber": 80
"title": "🛎️ :house: [[Household]]: Pay rent %%done_del%%",
"time": "2024-03-31",
"rowNumber": 92
},
{
"title": ":blue_car: [[Household]]: Change to Summer tyres @ [[Rex Automobile CH]] %%done_del%%",
"time": "2024-04-15",
"rowNumber": 114
"rowNumber": 119
},
{
"title": ":blue_car: [[Household]]: Change to Winter tyres @ [[Rex Automobile CH]] %%done_del%%",
"time": "2024-10-15",
"rowNumber": 115
"rowNumber": 120
},
{
"title": ":ski: [[Household]]: Organise yearly ski servicing ([[Ski Rental Zürich]]) %%done_del%%",
"time": "2024-10-31",
"rowNumber": 122
"rowNumber": 127
},
{
"title": ":blue_car: [[Household]]: Renew [road vignette](https://www.e-vignette.ch/) %%done_del%%",
"time": "2024-12-20",
"rowNumber": 116
"rowNumber": 121
}
],
"01.03 Family/Pia Bousquié.md": [
@ -449,7 +449,7 @@
"01.03 Family/Elise Bédier.md": [
{
"title": ":birthday: **[[Elise Bédier|Élise]]** %%done_del%%",
"time": "2024-02-28",
"time": "2025-02-28",
"rowNumber": 105
}
],
@ -468,13 +468,13 @@
"05.02 Networks/Configuring UFW.md": [
{
"title": "🖥 [[Selfhosting]], [[Configuring UFW|Firewall]] Get IP addresses caught by Postfix %%done_del%%",
"time": "2024-03-02",
"time": "2024-03-09",
"rowNumber": 239
},
{
"title": "🖥 [[Selfhosting]], [[Configuring UFW|Firewall]]: Update the Blocked IP list %%done_del%%",
"time": "2024-03-02",
"rowNumber": 298
"time": "2024-03-09",
"rowNumber": 299
}
],
"01.03 Family/Amélie Solanet.md": [
@ -522,7 +522,7 @@
"00.08 Bookmarks/Bookmarks - Utilities.md": [
{
"title": ":label: [[Bookmarks - Utilities]]: review bookmarks %%done_del%%",
"time": "2024-03-02",
"time": "2024-06-02",
"rowNumber": 172
}
],
@ -666,7 +666,7 @@
"01.03 Family/Aglaé de Villeneuve.md": [
{
"title": ":birthday: **[[Aglaé de Villeneuve|Aglaé]]** %%done_del%%",
"time": "2024-02-25",
"time": "2025-02-25",
"rowNumber": 100
}
],
@ -735,7 +735,7 @@
"01.07 Animals/2023-07-13 Health check.md": [
{
"title": ":racehorse: [[@Sally|Sally]], [[2023-07-13 Health check|Note]]: Check front hoofs healing",
"time": "2024-02-27",
"time": "2024-03-12",
"rowNumber": 53
}
],
@ -746,13 +746,6 @@
"rowNumber": 105
}
],
"00.01 Admin/Calendars/2023-10-02.md": [
{
"title": "22:25 :potted_plant: [[Household]]: Start organising the aromatic garden rack",
"time": "2024-02-28",
"rowNumber": 105
}
],
"00.01 Admin/Calendars/2023-10-14.md": [
{
"title": "11:17 :stopwatch: [[$Basville]]: trouver un réparteur pour l'oignon Lipp",
@ -763,14 +756,14 @@
"00.01 Admin/Calendars/2023-10-19.md": [
{
"title": "10:15 :tooth: [[@Health|Health]]: Organise a dentist appointment",
"time": "2024-02-25",
"time": "2024-03-25",
"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": "2024-02-28",
"time": "2024-07-07",
"rowNumber": 103
}
],
@ -834,7 +827,7 @@
"00.01 Admin/Calendars/2024-01-06.md": [
{
"title": "19:20 :notebook: [[@Life Admin|Admin]]: Register will with [local authorities](https://www.notariate-zh.ch/deu/home?not=Riesbach-Zuerich)",
"time": "2024-02-25",
"time": "2024-03-15",
"rowNumber": 104
}
],
@ -1005,6 +998,18 @@
"time": "2026-02-01",
"rowNumber": 83
}
],
"00.01 Admin/Calendars/2024-02-28.md": [
{
"title": "14:25 :potted_plant: [[Household]]: Buy a garden rack for the aromatic garden",
"time": "2024-03-15",
"rowNumber": 103
},
{
"title": "14:25 :potted_plant: [[Household]]: Buy soil for the aromatic garden",
"time": "2024-03-20",
"rowNumber": 104
}
]
},
"debug": false,

@ -69,7 +69,7 @@
"state": {
"type": "markdown",
"state": {
"file": "01.02 Home/@Main Dashboard.md",
"file": "00.01 Admin/Calendars/2024-03-03.md",
"mode": "preview",
"source": true
}
@ -158,7 +158,7 @@
"state": {
"type": "backlink",
"state": {
"file": "01.02 Home/@Main Dashboard.md",
"file": "00.01 Admin/Calendars/2024-03-03.md",
"collapseAll": false,
"extraContext": false,
"sortOrder": "alphabetical",
@ -175,7 +175,7 @@
"state": {
"type": "outgoing-link",
"state": {
"file": "01.02 Home/@Main Dashboard.md",
"file": "00.01 Admin/Calendars/2024-03-03.md",
"linksCollapsed": false,
"unlinkedCollapsed": false
}
@ -217,6 +217,7 @@
},
"left-ribbon": {
"hiddenItems": {
"obsidian-media-db-plugin:Add new Media DB entry": false,
"switcher:Open quick switcher": false,
"graph:Open graph view": false,
"canvas:Create new canvas": false,
@ -232,9 +233,7 @@
"obsidian-gallery:Gallery": false,
"obsidian-metatable:Metatable": false,
"obsidian-full-calendar:Open Full Calendar": false,
"obsidian-book-search-plugin:Create new book note": false,
"obsidian-read-it-later:ReadItLater: Save clipboard": false,
"obsidian-media-db-plugin:Add new Media DB entry": false,
"meld-encrypt:New encrypted note": false,
"meld-encrypt:Convert to or from an Encrypted note": false,
"obsidian-camera:Obsidian Camera": false,
@ -242,37 +241,38 @@
"obsidian42-brat:BRAT": false,
"templater-obsidian:Templater": false,
"obsidian-tts:Text to Speech": false,
"obsidian-book-search-plugin:Create new book note": false,
"obsidian-memos:Memos": false
}
},
"active": "7f7ef82aa074f90a",
"lastOpenFiles": [
"00.08 Bookmarks/Bookmarks - Art.md",
"00.01 Admin/Calendars/2024-03-02.md",
"00.01 Admin/Calendars/2024-03-03.md",
"00.02 Inbox/La Louisiane.md",
"00.01 Admin/Calendars/2024-03-01.md",
"00.01 Admin/Calendars/Events/2024-03-01 ⚽️ AS Monaco - PSG (0-0).md",
"02.02 Paris/Paris SG.md",
"00.01 Admin/Calendars/Events/2024-02-14 ⚽️ PSG - Real Sociedad (2-0).md",
"01.06 Health/2023-12-15 Eczema.md",
"01.02 Home/@Main Dashboard.md",
"00.01 Admin/Calendars/2024-02-24.md",
"00.01 Admin/Calendars/2024-02-23.md",
"00.01 Admin/Calendars/2024-02-22.md",
"00.03 News/The art of doing nothing have the Dutch found the answer to burnout culture.md",
"03.03 Food & Wine/@Main dishes.md",
"03.03 Food & Wine/Sesame Seared Tuna Steak.md",
"00.01 Admin/Calendars/2024-02-21.md",
"00.02 Inbox/Zoo Station.md",
"03.01 Reading list/Seven Pillars of Wisdom.md",
"01.02 Home/@Shopping list.md",
"00.08 Bookmarks/Bookmarks - Selfhosted Apps.md",
"00.01 Admin/Calendars/2024-02-20.md",
"03.03 Food & Wine/Spicy Szechuan Noodles with Garlic Chilli Oil.md",
"00.01 Admin/Calendars/2024-02-19.md",
"03.03 Food & Wine/Chilli con Carne.md",
"00.03 News/The rise and fall of robots.txt.md",
"03.04 Cinematheque/@Cinematheque.md",
"00.01 Admin/Calendars/2024-02-18.md",
"00.03 News/In the Land of the Very Old.md",
"00.08 Bookmarks/Bookmarks - Utilities.md",
"00.01 Admin/Calendars/2024-02-29.md",
"00.02 Inbox/Bad Kids.md",
"00.02 Inbox/Project Hail Mary.md",
"03.01 Reading list/@Reading master.md",
"00.02 Inbox/Fifth Sun.md",
"00.02 Inbox/Lolita.md",
"03.01 Reading list/Soumission.md",
"00.02 Inbox/Invisible Man.md",
"00.01 Admin/Calendars/2024-02-28.md",
"00.01 Admin/Calendars/2024-02-27.md",
"00.03 News/A Teens Fatal Plunge Into the London Underworld.md",
"03.03 Food & Wine/Big Shells With Spicy Lamb Sausage and Pistachios.md",
"00.01 Admin/Calendars/2024-02-26.md",
"00.03 News/The surreal life of a professional bridesmaid - The Hustle.md",
"00.03 News/Cillian Murphy Is the Man of the Moment.md",
"00.03 News/Exclusive Life Aboard a Nuclear Submarine as the US Responds to Threats Around the Globe.md",
"00.03 News/The Israeli-Palestinian Conflict and the Long Shadow of 1948.md",
"00.02 Inbox/The Untold Origin Story of ESPN.md",
"03.01 Reading list/Zoo Station.md",
"02.03 Zürich/Dr Cleopatra Morales.md",
"06.01 Finances/2024.ledger",
"00.01 Admin/dv-views/query_vinyl.js",
"03.05 Vinyls",

@ -103,7 +103,7 @@ This section does serve for quick memos.
&emsp;
- [x] 07:40 :racehorse: [[@Lifestyle|Polo]]: Ask [[Juan Bautista Bossio|Juan]] to buy tacos (2 52; 1 53) 📅 2024-02-01 ✅ 2024-02-01
- [x] 22:17 :racehorse: [[@Sally|Sally]]: Organise a visit to the fields 📅 2023-11-01 ✅ 2023-11-01
- [ ] 22:25 :potted_plant: [[Household]]: Start organising the aromatic garden rack 📅2024-02-28
- [x] 22:25 :potted_plant: [[Household]]: Start organising the aromatic garden rack 📅 2024-02-28 ✅ 2024-02-28
%% --- %%

@ -101,7 +101,7 @@ hide task count
This section does serve for quick memos.
&emsp;
- [ ] 10:15 :tooth: [[@Health|Health]]: Organise a dentist appointment 📅2024-02-25 ^dwy9ol
- [ ] 10:15 :tooth: [[@Health|Health]]: Organise a dentist appointment 📅 2024-03-25 ^dwy9ol
%% --- %%

@ -101,7 +101,7 @@ hide task count
This section does serve for quick memos.
&emsp;
- [ ] 11:48 :musical_keyboard: [[@Lifestyle|Lifestyle]]: Buy an ampli (Verstaerker): Yamaha A-S301 or Marantz PM6007 📅 2024-02-28
- [ ] 11:48 :musical_keyboard: [[@Lifestyle|Lifestyle]]: Buy an ampli (Verstaerker): Yamaha A-S301 or Marantz PM6007 📅 2024-07-07
%% --- %%

@ -102,7 +102,7 @@ This section does serve for quick memos.
&emsp;
- [x] 19:18 :notebook: [[@Life Admin|Admin]]: Find help online to redact a will 📅 2024-01-31 ✅ 2024-01-31
- [ ] 19:20 :notebook: [[@Life Admin|Admin]]: Register will with [local authorities](https://www.notariate-zh.ch/deu/home?not=Riesbach-Zuerich) 📅2024-02-25
- [ ] 19:20 :notebook: [[@Life Admin|Admin]]: Register will with [local authorities](https://www.notariate-zh.ch/deu/home?not=Riesbach-Zuerich) 📅 2024-03-15
%% --- %%

@ -16,9 +16,9 @@ Stress: 25
FrontHeadBar: 5
EarHeadBar: 30
BackHeadBar: 20
Water:
Coffee:
Steps:
Water: 3.7
Coffee: 2
Steps: 16357
Weight:
Ski:
IceSkating:
@ -114,7 +114,9 @@ This section does serve for quick memos.
&emsp;
Loret ipsum
🚗: [[@France|Lyon]] à [[@@Zürich|Zürich]]
📖: [[Zoo Station]]
&emsp;

@ -0,0 +1,136 @@
---
title: "🗒 Daily Note"
allDay: true
date: 2024-02-25
Date: 2024-02-25
DocType: Note
Hierarchy:
TimeStamp:
location:
CollapseMetaTable: true
Sleep: 8
Happiness: 85
Gratefulness: 90
Stress: 25
FrontHeadBar: 5
EarHeadBar: 30
BackHeadBar: 20
Water: 3
Coffee: 4
Steps: 14724
Weight:
Ski:
IceSkating:
Riding:
Racket:
Football:
Swim:
---
%% Parent:: [[@Life Admin]] %%
---
[[2024-02-24|<< 🗓 Previous ]] &emsp; &emsp; &emsp; [[@Main Dashboard|Back]] &emsp; &emsp; &emsp; [[2024-02-26|🗓 Next >>]]
---
&emsp;
```button
name Record today's health
type command
action MetaEdit: Run MetaEdit
id EditMetaData
```
^button-2024-02-25Edit
```button
name Save
type command
action Save current file
id Save
```
^button-2024-02-25NSave
&emsp;
# 2024-02-25
&emsp;
> [!summary]+
> Daily note for 2024-02-25
&emsp;
```toc
style: number
```
&emsp;
---
&emsp;
### ✅ Tasks of the day
&emsp;
```tasks
not done
due on 2024-02-25
path does not include Templates
hide backlinks
hide task count
```
&emsp;
---
&emsp;
### 📝 Memos
&emsp;
📺: [[all of us strangers]]
📖: [[Zoo Station]]
&emsp;
%% --- %%
&emsp;
---
&emsp;
### 🗒 Notes
&emsp;
Loret ipsum
&emsp;
---
&emsp;
### :link: Linked activity
&emsp;
```dataview
Table from [[2024-02-25]]
```
&emsp;
&emsp;

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

@ -0,0 +1,136 @@
---
title: "🗒 Daily Note"
allDay: true
date: 2024-02-27
Date: 2024-02-27
DocType: Note
Hierarchy:
TimeStamp:
location:
CollapseMetaTable: true
Sleep: 6
Happiness: 85
Gratefulness: 90
Stress: 25
FrontHeadBar: 5
EarHeadBar: 30
BackHeadBar: 20
Water: 2.5
Coffee: 4
Steps: 11524
Weight: 93.1
Ski:
IceSkating:
Riding:
Racket:
Football:
Swim:
---
%% Parent:: [[@Life Admin]] %%
---
[[2024-02-26|<< 🗓 Previous ]] &emsp; &emsp; &emsp; [[@Main Dashboard|Back]] &emsp; &emsp; &emsp; [[2024-02-28|🗓 Next >>]]
---
&emsp;
```button
name Record today's health
type command
action MetaEdit: Run MetaEdit
id EditMetaData
```
^button-2024-02-27Edit
```button
name Save
type command
action Save current file
id Save
```
^button-2024-02-27NSave
&emsp;
# 2024-02-27
&emsp;
> [!summary]+
> Daily note for 2024-02-27
&emsp;
```toc
style: number
```
&emsp;
---
&emsp;
### ✅ Tasks of the day
&emsp;
```tasks
not done
due on 2024-02-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;
📖: [[Invisible Man]]
🍴: [[Big Shells With Spicy Lamb Sausage and Pistachios]]
&emsp;
---
&emsp;
### :link: Linked activity
&emsp;
```dataview
Table from [[2024-02-27]]
```
&emsp;
&emsp;

@ -0,0 +1,137 @@
---
title: "🗒 Daily Note"
allDay: true
date: 2024-02-28
Date: 2024-02-28
DocType: Note
Hierarchy:
TimeStamp:
location:
CollapseMetaTable: true
Sleep: 7
Happiness: 85
Gratefulness: 90
Stress: 25
FrontHeadBar: 5
EarHeadBar: 30
BackHeadBar: 20
Water: 3.5
Coffee: 4
Steps: 15447
Weight:
Ski:
IceSkating:
Riding:
Racket:
Football:
Swim:
---
%% Parent:: [[@Life Admin]] %%
---
[[2024-02-27|<< 🗓 Previous ]] &emsp; &emsp; &emsp; [[@Main Dashboard|Back]] &emsp; &emsp; &emsp; [[2024-02-29|🗓 Next >>]]
---
&emsp;
```button
name Record today's health
type command
action MetaEdit: Run MetaEdit
id EditMetaData
```
^button-2024-02-28Edit
```button
name Save
type command
action Save current file
id Save
```
^button-2024-02-28NSave
&emsp;
# 2024-02-28
&emsp;
> [!summary]+
> Daily note for 2024-02-28
&emsp;
```toc
style: number
```
&emsp;
---
&emsp;
### ✅ Tasks of the day
&emsp;
```tasks
not done
due on 2024-02-28
path does not include Templates
hide backlinks
hide task count
```
&emsp;
---
&emsp;
### 📝 Memos
&emsp;
This section does serve for quick memos.
&emsp;
- [ ] 14:25 :potted_plant: [[Household]]: Buy a garden rack for the aromatic garden 📅2024-03-15
- [ ] 14:25 :potted_plant: [[Household]]: Buy soil for the aromatic garden 📅2024-03-20
- [x] 14:25 :potted_plant: [[Household]]: Buy seeds and young plants for the aromatic garden 📅 2024-03-25 ✅ 2024-02-28
%% --- %%
&emsp;
---
&emsp;
### 🗒 Notes
&emsp;
📖: [[Invisible Man]]
&emsp;
---
&emsp;
### :link: Linked activity
&emsp;
```dataview
Table from [[2024-02-28]]
```
&emsp;
&emsp;

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

@ -0,0 +1,140 @@
---
title: "🗒 Daily Note"
allDay: true
date: 2024-03-01
Date: 2024-03-01
DocType: Note
Hierarchy:
TimeStamp:
location:
CollapseMetaTable: true
Sleep: 7
Happiness: 85
Gratefulness: 90
Stress: 25
FrontHeadBar: 5
EarHeadBar: 30
BackHeadBar: 20
Water: 3.5
Coffee: 4
Steps: 11188
Weight:
Ski:
IceSkating:
Riding:
Racket:
Football:
Swim:
---
%% Parent:: [[@Life Admin]] %%
---
[[2024-02-29|<< 🗓 Previous ]] &emsp; &emsp; &emsp; [[@Main Dashboard|Back]] &emsp; &emsp; &emsp; [[2024-03-02|🗓 Next >>]]
---
&emsp;
```button
name Record today's health
type command
action MetaEdit: Run MetaEdit
id EditMetaData
```
^button-2024-03-01Edit
```button
name Save
type command
action Save current file
id Save
```
^button-2024-03-01NSave
&emsp;
# 2024-03-01
&emsp;
> [!summary]+
> Daily note for 2024-03-01
&emsp;
```toc
style: number
```
&emsp;
---
&emsp;
### ✅ Tasks of the day
&emsp;
```tasks
not done
due on 2024-03-01
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;
🚆: [[Geneva]] to [[@@Zürich|Zürich]]
📖: [[Invisible Man]]
👩‍⚕️: [[Dr Cleopatra Morales]] for [[2023-12-15 Eczema|eczema]]
📺: [[2024-03-01 ⚽️ AS Monaco - PSG (0-0)]]
&emsp;
---
&emsp;
### :link: Linked activity
&emsp;
```dataview
Table from [[2024-03-01]]
```
&emsp;
&emsp;

@ -0,0 +1,134 @@
---
title: "🗒 Daily Note"
allDay: true
date: 2024-03-02
Date: 2024-03-02
DocType: Note
Hierarchy:
TimeStamp:
location:
CollapseMetaTable: true
Sleep: 6
Happiness: 85
Gratefulness: 90
Stress: 25
FrontHeadBar: 5
EarHeadBar: 30
BackHeadBar: 20
Water: 2.5
Coffee: 4
Steps: 12833
Weight:
Ski:
IceSkating:
Riding:
Racket:
Football:
Swim:
---
%% Parent:: [[@Life Admin]] %%
---
[[2024-03-01|<< 🗓 Previous ]] &emsp; &emsp; &emsp; [[@Main Dashboard|Back]] &emsp; &emsp; &emsp; [[2024-03-03|🗓 Next >>]]
---
&emsp;
```button
name Record today's health
type command
action MetaEdit: Run MetaEdit
id EditMetaData
```
^button-2024-03-02Edit
```button
name Save
type command
action Save current file
id Save
```
^button-2024-03-02NSave
&emsp;
# 2024-03-02
&emsp;
> [!summary]+
> Daily note for 2024-03-02
&emsp;
```toc
style: number
```
&emsp;
---
&emsp;
### ✅ Tasks of the day
&emsp;
```tasks
not done
due on 2024-03-02
path does not include Templates
hide backlinks
hide task count
```
&emsp;
---
&emsp;
### 📝 Memos
&emsp;
This section does serve for quick memos.
&emsp;
%% --- %%
&emsp;
---
&emsp;
### 🗒 Notes
&emsp;
🚗: [[@@Zürich|Zürich]] to [[@France|Nancy]]
&emsp;
---
&emsp;
### :link: Linked activity
&emsp;
```dataview
Table from [[2024-03-02]]
```
&emsp;
&emsp;

@ -0,0 +1,134 @@
---
title: "🗒 Daily Note"
allDay: true
date: 2024-03-03
Date: 2024-03-03
DocType: Note
Hierarchy:
TimeStamp:
location:
CollapseMetaTable: true
Sleep: 8
Happiness: 85
Gratefulness: 90
Stress: 25
FrontHeadBar: 5
EarHeadBar: 30
BackHeadBar: 20
Water: 0.5
Coffee: 1
Steps:
Weight:
Ski:
IceSkating:
Riding:
Racket:
Football:
Swim:
---
%% Parent:: [[@Life Admin]] %%
---
[[2024-03-02|<< 🗓 Previous ]] &emsp; &emsp; &emsp; [[@Main Dashboard|Back]] &emsp; &emsp; &emsp; [[2024-03-04|🗓 Next >>]]
---
&emsp;
```button
name Record today's health
type command
action MetaEdit: Run MetaEdit
id EditMetaData
```
^button-2024-03-03Edit
```button
name Save
type command
action Save current file
id Save
```
^button-2024-03-03NSave
&emsp;
# 2024-03-03
&emsp;
> [!summary]+
> Daily note for 2024-03-03
&emsp;
```toc
style: number
```
&emsp;
---
&emsp;
### ✅ Tasks of the day
&emsp;
```tasks
not done
due on 2024-03-03
path does not include Templates
hide backlinks
hide task count
```
&emsp;
---
&emsp;
### 📝 Memos
&emsp;
This section does serve for quick memos.
&emsp;
%% --- %%
&emsp;
---
&emsp;
### 🗒 Notes
&emsp;
🚗: [[@France|Nancy]] to [[@@Zürich|Zürich]]
&emsp;
---
&emsp;
### :link: Linked activity
&emsp;
```dataview
Table from [[2024-03-03]]
```
&emsp;
&emsp;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

@ -0,0 +1,18 @@
---
title: ⚽️ AS Monaco - PSG (0-0)
allDay: false
startTime: 21:00
endTime: 23:00
date: 2024-03-01
completed: null
---
[[2024-03-01|Ce jour]], AS Monaco - [[Paris SG|PSG]]: 0-0
Buteurs::
&emsp;
```lineup
formation: 433
players: Donnaruma,Hernandez (Nuno Mendes),Beraldo,Mukiele,Hakimi,Vitinha,Ugarte,Soler (Lee),M'Bappé (Kolo Muani),G.Ramos (Dembélé),Asensio (Barcola)
```

@ -9,7 +9,7 @@ location:
Source:
Type: "Book"
Author: Camilla Townsend
Language:
Language: EN
Published: 2019
Link:
Read:

@ -0,0 +1,86 @@
---
Tag: ["Novel", "🇺🇸", "👨🏾‍🦱", "📖"]
Date: 2024-02-27
DocType: "Source"
Hierarchy: "NonRoot"
TimeStamp:
location:
Source:
Type: "Book"
Author: Ralph Ellison
Language: EN
Published: 2010-09-29
Link:
Read:
Cover: http://books.google.com/books/content?id=iSrI-BQqFf0C&printsec=frontcover&img=1&zoom=1&edge=curl&source=gbs_api
CollapseMetaTable: true
---
Parent:: [[@Reading master|Reading list]]
ReadingState:: 🟧
---
&emsp;
```button
name Edit Source parameters
type command
action MetaEdit: Run MetaEdit
id EditMetaData
```
^button-SourceEdit
```button
name Save
type command
action Save current file
id Save
```
^button-TNSave
&emsp;
# Invisible Man
&emsp;
> [!summary]+
>
&emsp;
```toc
style: number
```
&emsp;
---
&emsp;
### Cover
&emsp;
```dataviewjs
dv.el("span", "![](" + dv.current().Source.Cover + ")")
```
&emsp;
---
&emsp;
### Notes
&emsp;
Loret ipsum
&emsp;
&emsp;

@ -0,0 +1,94 @@
---
Tag: [""]
Date: 2024-02-29
DocType: "Source"
Hierarchy: "NonRoot"
TimeStamp:
location:
Source:
Type: "Book"
Author: "Julia Malye"
Language: FR
Published: 2024-01-24
Link: "https://www.editions-stock.fr/livre/la-louisiane-9782234094116/"
Read:
Cover: "https://www.bruna.nl/images/active/carrousel/fullsize/9789463812504_front.jpg"
CollapseMetaTable: true
---
Parent:: [[@Reading master|Reading list]]
ReadingState:: 🟥
---
&emsp;
```button
name Edit Source parameters
type command
action MetaEdit: Run MetaEdit
id EditMetaData
```
^button-SourceEdit
```button
name Save
type command
action Save current file
id Save
```
^button-TNSave
&emsp;
# La Louisiane
&emsp;
> [!summary]+
> _Pour la première fois depuis trois mois, elles discernent enfin le sable que leur cachait leau lors de la traversée de lAtlantique, ce fond de locéan quelles ont brièvement aperçu ce matin en débarquant de_  La Baleine_. Personne ne leur a expliqué où elles seraient logées ce soir, dans combien de temps elles seraient fiancées. On ne dit pas tout aux femmes._
>
> Paris, 1720. Marguerite Pancatelin, la Supérieure de la Salpêtrière, est mandatée pour sélectionner une centaine de femmes « volontaires » qui seront envoyées en Louisiane afin dy épouser les colons français.
>
> Parmi elles, trois amies improbables : une orpheline de douze ans à la langue bien pendue, une jeune aristocrate désargentée et rejetée par sa famille ainsi quune femme condamnée pour avortement. Comme leurs compagnes à bord de  _La Baleine_, Charlotte, Pétronille et Geneviève ignorent tout de ce qui les attend au-delà des mers. Et nont pas leur mot à dire sur leur avenir.
>
> Ces étrangères réunies par le destin devront braver ladversité maladie, guerre, patriarcat , traverser une vie faite de chagrins d'amour, de naissances et de deuils, de cruauté et de plaisirs inattendus. Et dune amitié forgée dans le feu.
>
> Un roman dune profondeur et dune émotion saisissantes, qui nous transporte au cœur dune terre impitoyable, aux côtés dhéroïnes animées dune extraordinaire soif damour et de vie.
&emsp;
```toc
style: number
```
&emsp;
---
&emsp;
### Cover
&emsp;
```dataviewjs
dv.el("span", "![](" + dv.current().Source.Cover + ")")
```
&emsp;
---
&emsp;
### Notes
&emsp;
Loret ipsum
&emsp;
&emsp;

@ -9,7 +9,7 @@ location:
Source:
Type: "Book"
Author: Vladimir Nabokov
Language:
Language: EN
Published: 2010-08-24
Link:
Read:

@ -13,7 +13,7 @@ CollapseMetaTable: true
---
Parent:: [[@News|News]], [[Empire of Pain]], [[Say Nothing]]
Read:: 🟥
Read:: [[2024-02-27]]
---

@ -0,0 +1,166 @@
---
Alias: [""]
Tag: ["🚔", "🇺🇸", "⛓️", "🧑🏻‍⚖️"]
Date: 2024-02-25
DocType: "WebClipping"
Hierarchy:
TimeStamp: 2024-02-25
Link: https://www.westword.com/news/conman-with-el-chapo-solitary-in-colorado-federal-supermax-18810429
location:
CollapseMetaTable: true
---
Parent:: [[@News|News]]
Read:: 🟥
---
&emsp;
```button
name Save
type command
action Save current file
id Save
```
^button-HowaConManEndedUpinSolitaryinColoradoSupermaxFederalPrisonNSave
&emsp;
# How a Con Man Ended Up in Solitary in Colorado Supermax Federal Prison
They call it The Suites. A little joke, the kind of gallows humor you cant avoid in a place you cant leave.
The accommodations in The Suites arent any more spacious than those found elsewhere in the U.S. Penitentiary Administrative Maximum — ADX for short. But they are more exclusive. The Suites consist of a special wing at the far end of everything, tucked behind [H Unit](https://www.westword.com/news/h-unit-at-colorados-federal-supermax-is-a-special-sort-of-hell-10496356), the most secure area of the highest-security prison in the country, a prison within a prison. Only two of the four cells in The Suites are occupied, and those two men are not allowed to interact with any other inmate, including each other.
Located a hundred miles southwest of Denver, just outside the high-desert town of Florence, ADX houses more than 300 terrorists, gang leaders, drug lords and other high-risk prisoners in profound isolation; most of its residents are locked in their cells 23 hours a day. Its guest list includes Oklahoma City bombing conspirator Terry Nichols, shoe bomber Richard Reid, Colombian guerrilla leader [Simón Trinidad](https://www.westword.com/news/sim-n-trinidad-could-bring-peace-to-colombia-if-he-can-get-out-of-america-s-toughest-prison-6907210) and Mafia hitman [Fotios Geas](https://en.wikipedia.org/wiki/Fotios_Geas), currently awaiting trial for the 2018 prison murder of mobster Whitey Bulger. FBI agent turned Soviet spy Robert Hanssen [died in his ADX cell last June](https://www.westword.com/news/spy-richard-hanssen-dead-colorado-supermax-17030444), just a few days before Unabomber Ted Kaczynski, who'd been housed at ADX for decades, committed suicide while undergoing cancer treatment at a U.S. Bureau of Prisons medical center.
Yet even among a rogues gallery as infamous as the collection assembled at the federal supermax, there is a well-defined pecking order. Inmates who pose little threat of violence or escape may, over a period of years, move through a “step-down” program that eventually allows them more time out of their cells, communal dining and a shot at transfer to a less harsh prison. At the other end of the scale are the inmates subject to “special administrative measures,” or SAMs — conditions imposed by the U.S. Attorney General that restrict not only their movement, but their ability to communicate with each other and the outside world. H Unit is home to several dozen SAMs cases, jihadists and crime bosses who are considered capable of causing “death or serious bodily injury to persons, or substantial damage to property,” if their contacts arent severely restricted and monitored.
And then there are the two guys in The Suites, the most solitary of men. They are each entombed behind double doors in a seven-by-twelve-foot cell in the most silent corner of the supermax. The bed is a concrete slab covered by a thin foam mattress, the view a patch of sky visible from a high, narrow window. Meals are delivered through a slot in the door. Theres a stainless-steel toilet-and-sink combo, a concrete desk and stool, a shower on a timer to prevent flooding.
Theres no one to talk to, but no privacy, either. The men are under scrutiny 24 hours a day, by cameras and listening devices in the cells, by other monitoring equipment during the hour a day they are allowed to exercise alone in a small outdoor cage. FBI agents read their mail and listen in on their phone calls.
One of the men is [Joaquín “El Chapo” Guzmán](https://www.cbsnews.com/news/el-chapo-guzman-writes-letter-judge-wife-daughters-visitation-supermax-prison-colorado/), the former head of the Sinaloa cartel. Known for forging one of the most powerful and ruthless drug-trafficking networks in the world, as well as for escaping maximum-security custody twice in Mexico, Guzmán is serving a life sentence in the most spartan conditions the federal prison system can provide. But even the restrictions hes facing are arguably not as severe as those imposed on the other occupant of The Suites.
James Sabatino is 47 years old. He has a rap sheet of financial crimes stretching back to his adolescence. He is currently serving a twenty-year sentence for running a criminal enterprise that engaged in mail fraud, wire fraud, and the receiving and selling of stolen goods. Despite his alleged ties to the Gambino crime family, a few assault charges in his youth and some admitted loose talk about wanting to blow up a courthouse and “clip” certain people who might be inclined to testify against him, he is not serving time for any violent crimes. Hes a con man, not a mad bomber or a drug kingpin. Outside of Florida, hardly anyone has ever heard of him.
[click to enlarge ![](https://media2.westword.com/den/imager/u/blog/18851998/feature_jimmy_sabatino.jpg?cb=1705418176)](https://media2.westword.com/den/imager/u/original/18851998/feature_jimmy_sabatino.jpg "James Sabatino says the severe isolation he demanded "has saved lives." - Department of Justice")
James Sabatino says the severe isolation he demanded "has saved lives."
Department of Justice
Yet Sabatino may be the most locked-down, buried-in-oblivion prisoner in the entire federal system. The “special measures” in his case are special indeed. He is prohibited from communicating with anyone on the entire planet, inside or outside of prison, except for two people: his 75-year-old stepmother, with whom he can have fifteen-minute monitored phone conversations twice a month, and his attorney. Thats an even more limited circle of approved contacts than El Chapo is allowed.
Such measures are deemed necessary because Sabatino has demonstrated an amazing talent for engineering multi-million-dollar scams even from the confines of prison. At an [appeals court hearing](https://www.ca11.uscourts.gov/oral-argument-recordings?title=&field_oar_case_name_value=sabatino&field_oral_argument_date_value%5Bvalue%5D%5Byear%5D=&field_oral_argument_date_value%5Bvalue%5D%5Bmonth%5D=) in Atlanta last year, a federal prosecutor maintained that Sabatinos flimflam skills provide more than enough justification for keeping him in the cone of silence hes inhabited for the past six years.
“The problem in this case is that the defendants criminal history is so severe,” Assistant U.S. Attorney Scott Dion told an 11th Circuit Court of Appeals panel, “and he shows such ability to corrupt anybody he came into contact with.”
The appeals panel puzzled over a motion by Sabatinos attorney to modify the restrictions on his client. It was a simple request, but one that raised uncomfortable questions about the process by which the government imposes an almost-total ban on an inmates access to the outside world, and how SAMs prisoners can ever “prove” they are no longer a security threat. Sabatinos situation is more complex than that of other SAMs cases because the communications restrictions he faces are imposed not simply by prison authorities, but also by the terms of his sentence. In 2017, as part of his guilty plea in his most recent scam, Sabatino agreed to the court-ordered restrictions. In fact, he demanded them, stating repeatedly that he would commit more crimes if the restrictions werent in place.
“These restrictions benefit the public, NOT ME!!” Sabatino wrote in a letter to his trial judge in 2022. “I hate these restrictions. They are terrible, but it is the ONLY thing that stops me. I wonder if you people have any idea of how many crimes \[the restrictions\] have prevented. Literally it has saved lives!! I dont get NOTHING from this!”
Because hes represented by an attorney, Sabatino isnt supposed to send letters directly to the judge. But his angry, frustrated venting to the court is the only form of communication his keepers cant muzzle, and the swaggering tone underscores the central paradox of his plight: The more isolated he becomes, the more notoriety he achieves — at least in his own mind.
Jimmy Sabatino may be stuck in The Suites, but hes finally hit the big time.
[click to enlarge ![](https://media2.westword.com/den/imager/u/blog/18851993/feature_supermax.jpg?cb=1705418176)](https://media2.westword.com/den/imager/u/original/18851993/feature_supermax.jpg "The U.S. Penitentiary Administrative Maximum, or ADX, outside of Florence. - BOP.gov")
The U.S. Penitentiary Administrative Maximum, or ADX, outside of Florence.
BOP.gov
**January 29, 1995, was a black day** for San Diego Chargers fans, who watched their team get blown out by the San Francisco 49ers in Super Bowl XXIX. It was an even bigger bummer for hundreds of would-be attendees who showed up at Joe Robbie Stadium in Miami, clutching tickets for which theyd paid a small fortune, only to be denied entrance.
The tickets were hot. They had been boosted by an eighteen-year-old high school dropout named James Sabatino, whod obtained inside information about when a shipment of 262 tickets would arrive at a Federal Express distribution center in Florida. [Posing as the president of the Miami Dolphins](https://www.washingtonpost.com/archive/sports/1995/12/07/super-bowl-ticket-scam-lands-teenager-in-prison/ea5f972e-a1c5-4315-a905-326bc844e96c/), Sabatino had called FedEx and insisted that the tickets be held for pickup. An associate collected the precious ducats, which were then parceled out to online ticket brokers for up to a thousand dollars each.
The brazen scheme landed Sabatino in prison for two years. It was hardly his first brush with trouble. Born in 1976, hed been raised in Brooklyn, primarily by his father, who reputedly had connections to the Gambino and Colombo crime families. According to [articles about him](https://www.miaminewtimes.com/news/hip-hop-poseur-jimmy-sabatino-cant-stop-scamming-even-from-prison-6393917) published in *Miami New Times*, young Jimmy spent time in a psychiatric hospital for anger issues, then in juvenile detention facilities on weapons charges and other violations, before moving to Florida in his teens.
> [
>
> “The problem in this case is that the defendants criminal history is so severe, and he shows such ability to corrupt anybody he came into contact with.”
>
> tweet this](https://twitter.com/intent/tweet?url=https%3A//www.westword.com/news/conman-with-el-chapo-solitary-in-colorado-federal-supermax-18810429&text=%E2%80%9CThe+problem+in+this+case+is+that+the+defendant%E2%80%99s+criminal+history+is+so+severe%2C+and+he+shows+such+ability+to+corrupt+anybody+he+came+into+contact+with.%E2%80%9D)
After the great Super Bowl ticket heist, Sabatino moved on to more elaborate capers. They were not just about money; sometimes they were a way of advancing Sabatinos dreams of becoming a major player in the music industry. He represented himself as a hip-hop promoter. He claimed to be the nephew of Sony Music president Tommy Mottola and scored backstage face time with Julio Iglesias. Using fraudulently obtained corporate letterhead and billing codes, he impersonated record company or movie studio executives and checked into luxury hotels, entourage in tow, running up huge tabs: $16,000 at New Yorks Waldorf Astoria, $16,000 at the Los Angeles Ritz-Carlton, thousands more at the Four Seasons in London, a whopping $174,000 in charges at a Hilton in Miami.
He scammed airline tickets, jewelry from Tiffanys and other luxury goods, insisting “the company” would handle the bill. By claiming to be working on big-budget movie or music projects involving various film stars and celebrated rappers, he persuaded wide-eyed vendors to supply him with vast quantities of computers, pagers and cell phones, no money down.
[click to enlarge ![](https://media1.westword.com/den/imager/u/blog/18851991/feature_el_chapo.jpg?cb=1705418176)](https://media1.westword.com/den/imager/u/original/18851991/feature_el_chapo.jpg "Joaquin "El Chapo" Guzmán is the only other resident of The Suites at ADX. - Department of Justice")
Joaquin "El Chapo" Guzmán is the only other resident of The Suites at ADX.
Department of Justice
Sabatino had a singular gift for connecting with marks and charming the pants off them. He dangled a world of possibilities, including the possibility that a short, doughy, tough-talking hustler like himself could be a legitimate dealmaker in the glittery groves of showbiz. “The easiest scam to pull off,” he explained to one reporter, “is to tell someone something they already wanted to believe.” Yet he also had a gift for conning himself. Several of his splashier impersonations seemed to be more about craving the spotlight than getting away with a score.
In many cases, the law quickly caught up with Sabatino. But landing back behind bars did little to deter him. In 1998, unhappy with prison conditions in Great Britain, where he had been arrested for multiple unpaid hotel bills, he made a series of phone calls to the FBI and the Secret Service, threatening to kill President Bill Clinton and blow up a courthouse.
As he hoped, the threats got him extradited. They also got him more charges, sending him to federal prison for four years.
In 2002, operating out of a jail cell in New York, Sabatino made several phone calls to Nextel Communications (a wireless company later absorbed by Sprint), claiming to be a Sony Pictures mogul in need of cell phones for a humongous flick. He managed to persuade Nextel to ship more than a thousand phones to his “office,” a FedEx outlet, ready for pickup by Jimmys friends, who resold them on the street. Prosecutors estimated that the scam bilked Nextel out of $3 million in equipment and service charges.
> [
>
> “I dont apologize to nobody. As far as the government is concerned, they allowed this case to happen…they should be embarrassed.”
>
> tweet this](https://twitter.com/intent/tweet?url=https%3A//www.westword.com/news/conman-with-el-chapo-solitary-in-colorado-federal-supermax-18810429&text=%E2%80%9CI+don%E2%80%99t+apologize+to+nobody.+As+far+as+the+government+is+concerned%2C+they+allowed+this+case+to+happen%E2%80%A6they+should+be+embarrassed.%E2%80%9D)
Sabatino reportedly saw little of the gravy from that grift, but that didnt deter the judge from handing him another eleven years. While serving that sentence, he filed a lawsuit against rapper Sean Combs (stage names Puff Daddy, Diddy, etc.), asserting that hed been cheated out of millions owed him for recording tracks of Combss protégé, the Notorious B.I.G., way back in 1994. To shore up his claims, Sabatino produced what appeared to be pages from hush-hush FBI files. The documents mention various intrigues surrounding Tupac Shakur prior to his 1996 murder and refer to Sabatino as a mobbed-up shakedown artist, prominent in “the Hip Hop world.”
The documents caused a sensation. The *Los Angeles Times* made extensive use of the materials in its own investigative reporting on Shakurs murder. But in 2008 the documents were [exposed on the Smoking Gun website](https://www.thesmokinggun.com/documents/crime/big-phat-liar) as a complete fraud. They were written on a typewriter, a tool the FBI had abandoned years earlier, and contained spelling errors consistent with those found in Sabatinos typewritten jailhouse pleadings. The website slammed Sabatino as “a wildly impulsive, overweight white kid from Florida whose own father once described him in a letter to a federal judge as a disturbed young man who needed attention like a drug.’”
Sabatino denied he was the author of the hoax, but his lawsuit and his claims of being a hip-hop impresario soon went up in puffs of smoke. Still, he had managed to punk one of the nations most powerful newspapers. And his most audacious swindle was still to come.
Shortly after his arrival at a federal prison in Miami in 2014, Sabatino wheedled a burner cell phone from a pliable corrections officer. He created fake e-mail addresses and began reaching out to jewelry and luxury goods stores in South Florida. He introduced himself as a Sony or Roc Nation executive, or a top honcho at Creative Artists Agency or Universal Music, and his emails had the right logos to prove it. He was looking for certain goods — designer handbags, high-end apparel, shoes and bling — that could be “loaned” and featured in music videos starring performers he supposedly represented, including Beyoncé, Jennifer Lopez, Justin Timberlake and Jessica Biel. Eager luxury store owners and brand reps delivered the items to Sabatino confederates on the outside, who took the goods to pawn shops and funneled some of the proceeds back to Sabatinos prison commissary account.
Although a mid-2015 search turned up the contraband phone in Sabatinos cell, the operation continued for another two years, during which Sabatino corrupted more guards, obtained more burner phones and plotted with co-conspirators about how to intimidate or permanently silence associates who might testify against them. On April 5, 2017, officers entered Sabatinos cell for a surprise search and found him on the phone with one of his minions, in the process of negotiating an $800,000 sale of stolen jewelry. They seized the phone and three others.
The fraudulently obtained goods and services were [valued at more than $10 million](https://www.justice.gov/usao-sdfl/pr/inmate-sentenced-twenty-years-imprisonment-connection-racketeering-offenses-committed). Sabatino pleaded guilty to a single racketeering count and got twenty years. At his sentencing hearing, he readily agreed to the severe communications restrictions that were being imposed as part of his deal, conditions he requested. But that didnt mean he was feeling remorseful.
“I dont apologize to nobody,” Sabatino told U.S. Senior District Judge Joan Lenard. “As far as the government is concerned, they allowed this case to happen…they should be embarrassed.”
[click to enlarge ![](https://media1.westword.com/den/imager/u/blog/18851995/feature_unibomber.jpg?cb=1705418176)](https://media1.westword.com/den/imager/u/original/18851995/feature_unibomber.jpg "Notorious residents of the federal supermax include Ted Kaczynski, aka the Unabomber, who died last year. - FBI")
Notorious residents of the federal supermax include Ted Kaczynski, aka the Unabomber, who died last year.
FBI
**A case could be made that there are** many prisoners in solitary housing at ADX whose conditions of confinement are tougher, on a daily basis, than those facing Jimmy Sabatino. Muslim prisoners, who make up the majority of the SAMs cases in H Unit, have complained repeatedly of being unable to conduct group prayer, of other interference with religious rituals, of forced feedings to break hunger strikes, and lack of mental health resources. According to court documents, the position of contract imam, a non-BOP employee who is supposed to minister to the Muslim population, has been vacant at ADX for at least seven years.
One of the longest-running and most revealing lawsuits filed by an ADX prisoner was brought in 2020 by [Mostafa Kamel Mostafa](https://www.fbi.gov/contact-us/field-offices/newyork/news/press-releases/mustafa-kamel-mustafa-a-k-a-abu-hamza-sentenced-in-manhattan-federal-court-to-life-in-prison), the former imam of Londons Finsbury Park mosque, which was shut down by U.K. authorities in 2003 because of its ties to jihadists. Charged with aiding in terrorist plots, Mostafa fought extradition to the United States for more than eight years. Extradition was finally granted after U.S. officials assured the European Court of Human Rights that he would not be sent to ADX. In fact, his medical conditions and physical disabilities were so severe — Mostafa is missing both of his forearms and is nearly blind, the result of a chemical explosion in 1993 — that the European court concluded “there was no real risk of his spending anything more than a short period of time at ADX.”
But after he was convicted in New York in 2014 and sentenced to life in prison, Mostafa was sent to H Unit in ADX, where hes been housed ever since, in a cell that offers few concessions to his disabilities. His claims touch on a wide range of constitutional issues, from religious freedom and disability rights to access to medical care and basic hygiene materials, and whether he can have phone conversations with his grandchildren.
Two weeks ago, a federal judge ruled that [several of the lawsuits claims can proceed](https://www.coloradopolitics.com/courts/federal-judge-allows-supermax-prisoners-limited-religious-freedom-claims-to-proceed/article_712ec544-af48-11ee-a1e3-876f3d51de11.html) while dismissing others.
Compared to Mostafas raft of grievances, Sabatinos return to court last year, seeking a change in his communication restrictions, seems like a modest request. All he was asking was that one name be added to his list of approved contacts, that of his stepmothers fiancé, so he would have someone to contact about his stepmothers condition while she was hospitalized. But the request had confounding implications for SAMs protocol. Does the burden of proof fall on the government, to establish that a prisoners requested social contact poses a security threat, or can it ban the prisoner from talking to anybody in the world until the prisoner somehow proves there is no threat?
“The way the statute reads, they have to prove probable cause,” says Israel Encinosa, Sabatinos attorney. “That is the argument we were making. All we were asking is that they be reasonable.”
> [
>
> Sabatino's father once described him as "a disturbed young man who needed attention like a drug."
>
> tweet this](https://twitter.com/intent/tweet?url=https%3A//www.westword.com/news/conman-with-el-chapo-solitary-in-colorado-federal-supermax-18810429&text=Sabatino%27s+father+once+described+him+as+%22a+disturbed+young+man+who+needed+attention+like+a+drug.%22)
Ultimately, Encinosa says, his client decided to drop the issue for now, without precluding other court actions in the future. Although he cant share any details of his own communications with Sabatino because of the SAMs restrictions, Encinosa says he has had “good conversations” with him.
“I dont think too many people could do well under these conditions,” he says. “I dont know which is worse — to be alone or to be with other inmates. I dont know which I would choose in Jimmys situation.”
If he had his druthers, Sabatino knows what he would choose. A prosecutors suggestion that Sabatino actually preferred “having a cell all to myself” prompted an outraged response in one of the inmates long-winded letters to Judge Lenard.
“Think about it a minute,” Sabatino wrote. “I am in the harshest prison in the country. I have no contact (physical contact) with anyone. I hardly ever leave my cell, and when I do, I am in chains, black box over my cuffs, shackles and surrounded by three officers with black clubs. He thinks that is a luxury? Tell him to try it. He wouldnt last a week.”
He went on to boast that, before his move to The Suites, he lived “like a king” in prison, surrounded by admiring inmates who were happy to clean his cell, do his laundry and cook for him: “I am actually quite well known throughout the BOP. You can put me in any penitentiary in the country and there will be people I know personally, and even more who know of me.... All of them know that I can change their lives. That I can make them more money than they ever dreamed of.”
Being the most isolated prisoner in the federal system may add an aura of menace to the legend of Jimmy Sabatino; at the same time, it makes it more difficult for him to promote his brand. A docuseries about his exploits is said to be in development by Billy Corben, director of *Cocaine Cowboys* and several subsequent spinoffs. Corbens production company did not respond to a request for comment, but gaining access to Sabatino in his current digs would be no mean feat. Not only is he prohibited from speaking to the media because of his SAMs status, but it appears that prison officials [havent granted any journalist a face-to-face interview](https://www.westword.com/news/inside-adx-the-federal-supermax-locks-inmates-down-and-shuts-reporters-out-6908944) with *any* inmate at ADX since 9/11, except for a well-orchestrated tour or two. (An ADX spokesperson could not provide any specific instance of media access to individual inmates over the past twenty years, but insisted that “all interview requests are reviewed for consideration on a case-by-case basis.”)
For a man with Sabatinos can-do attitude, such challenges are meant to be overcome. Or, as he put it in a letter to the judge: “The only reason I am ok is because 1) my father raised a man! I am strong and will \[not\] be broken, 2) I have Allah in my heart, and 3) I live for the day that I can really achieve my goals.”
&emsp;
&emsp;
---
`$= dv.el('center', 'Source: ' + dv.current().Link + ', ' + dv.current().Date.toLocaleString("fr-FR"))`

@ -0,0 +1,237 @@
---
Alias: [""]
Tag: ["🤵🏻", "🪖", "🛩️"]
Date: 2024-02-25
DocType: "WebClipping"
Hierarchy:
TimeStamp: 2024-02-25
Link: https://www.smithsonianmag.com/history/recovering-lost-aviators-world-war-ii-180983690/
location:
CollapseMetaTable: true
---
Parent:: [[@News|News]]
Read:: 🟥
---
&emsp;
```button
name Save
type command
action Save current file
id Save
```
^button-RecoveringtheLostAviatorsofWorldWarIINSave
&emsp;
# Recovering the Lost Aviators of World War II
Just before dawn on September 10, 1944, the flight deck of the aircraft carrier USS *Enterprise* came to life, as ground crews readied a line of airplanes for battle. The days mission was critical: to hit Japanese positions and ships in advance of an amphibious invasion of Peleliu, an island in the archipelago of Palau some 50 miles to the west. At approximately 5:30 a.m., the first contingent of planes taxied and took flight. Then crews moved the next group into position on deck: 12 fighter planes known as Hellcats, five heavy bombers called Helldivers and seven even larger bombers known as [Avengers](https://airandspace.si.edu/air-and-space-quarterly/spring-2022/avenger).
The Avenger, nicknamed the Pregnant Beast, was the heaviest single-engine aircraft produced by any nation during World War II. Its crew members grimly joked that it weighed so much that it could fall faster than it flew. But what it lacked in speed it made up for in destructive power: Its bomb bay held a one-ton torpedo or four 500-pound bombs, enough ordnance to sink a Japanese aircraft carrier.
Avenger No. 17018 was among the second wave. Its pilot, Lieutenant Jay Ross Manown Jr., was later described in a postwar account as a “bold and intrepid” aviator. Born and raised in West Virginia, Manown had worked as a flight instructor for the Navy Air Reserve before entering combat service after the attack on Pearl Harbor. A decorated pilot, hed already flown combat missions throughout the Pacific for more than two years. Now, at age 26, he served as his squadrons second-in-command.
As Manown clambered onto the wing and wedged his thin frame into the cockpit, his two crew members entered a door on the side of the plane. Anthony Di Petta, the gunner, went first, squeezing into a tiny glass turret toward the rear that housed a .50-caliber machine gun. Wilbur Mitts, the radioman and navigator, went last, closing the door behind him and taking up his perch in the dark belly of the beast. Though they could not see each other, the three men probably chattered on the intercom system while running through their final pre-flight checks.
The planes took off at approximately 7:30 a.m. local time. Once airborne, they fell into formation and headed west. Visibility was reasonably good, a mix of sun and clouds. As the planes approached their targets—ground installations on Malakal Island and ships in the nearby harbor—a Japanese freighter came clearly into view.
![Battlefield; airplane; telegram](https://th-thumbnailer.cdn-si-edu.com/yFe_wa5A1HXxDFjjBPmCHWQ3moY=/fit-in/1072x0/filters:focal(806x798:807x799)/https://tf-cmsv2-smithsonianmag-media.s3.amazonaws.com/filer_public/82/4f/824f34a4-29e8-497c-9e52-aa60fdf5532b/triptych.jpg)
Clockwise from above: Manowns mission was to attack Japanese positions on the island of Malakal in advance of an amphibious assault to take a critical airfield on nearby Peleliu Island. The crew of the bomber, known as an Avenger, from left to right: turret gunner Anthony Di Petta; Manown; radioman and navigator Wilbur Mitts; when the plane was shot down, the crewmen were deemed missing and soon presumed dead. A telegram informing Wilbur Mitts family of his disappearance. LOC; Courtesy of the Mitts and Di Petta Families; Brian Frank
Manown and three other Avengers began to descend, intending to hit the ship. Suddenly, antiaircraft fire erupted from multiple emplacements in the hills around the harbor. Moments later, a fiery blast tore through the underside of Manowns plane. A wing and rudder snapped off, sending the plane into what a pilot aboard a nearby aircraft later described as a violent spin. Within perhaps 10 or 12 seconds, Manowns plane—now a meteor trailing fire, smoke and metal—hit the water.
And then it disappeared, swallowed by the sea.
---
When Manowns plane went down that morning, it was traveling at least 300 miles an hour. If anybody inside had survived the initial hit, they would have had little time to react, much less to escape. Moreover, nobody aboard the other planes nearby had seen parachutes. Without evidence that the crew might have survived, the Navy declared Manown and his crew “missing” and “presumed dead”—three men among upward of 80,000 American service members listed as missing in action after the war was over. Like others consigned to this category, Manown and his crew were understood not to be alive, but they were not declared dead, either. And unless their remains were somehow found, there would be no formal recognition of their demise—no bodies to prepare for burial, no funerals to attend, no graves to visit.
But the United States has long been exceptional in the resources it devotes to locating the remains of fallen soldiers. The practice dates to the Civil War, when the War Department instructed the office of the quartermaster general of the Union Army to mark temporary resting places of the fallen in anticipation of a formal burial. By the time the United States entered World War I, in 1917, forensic investigative methods had advanced, and dog tags had been introduced to help with identification. The same year, the federal government created the Graves Registration Service, dedicated to finding, identifying and, in some cases, repatriating those who had died far from home.
![A U.S. military map included in a declassified after-action report describing the Battle of Peleliu.](https://th-thumbnailer.cdn-si-edu.com/4fAVjiULlduAZ6BqgKLJuu33yV4=/fit-in/1072x0/filters:focal(1189x1563:1190x1564)/https://tf-cmsv2-smithsonianmag-media.s3.amazonaws.com/filer_public/16/56/16563e90-c7dc-424d-ab6a-e517126caf3b/mar2024_d18_projectrecover.jpg)
A U.S. military map included in a declassified after-action report describing the Battle of Peleliu. Ike Skelton Combined Arms Research Library
![A ceremony in Palau honoring the Avengers crew. A flyover of F-35s followed the route of Manowns final flight, symbolically completing the mission.](https://th-thumbnailer.cdn-si-edu.com/NPLXbA3EJd4SeN53QO6tckJxvfs=/fit-in/1072x0/filters:focal(1301x941:1302x942)/https://tf-cmsv2-smithsonianmag-media.s3.amazonaws.com/filer_public/d2/91/d29139b8-2d41-40f9-ab7c-9a9e6a7be05f/mar2024_d16_projectrecover.jpg)
A ceremony in Palau honoring the Avengers crew. A flyover of F-35s followed the route of Manowns final flight, symbolically completing the mission. Christopher Perez
![The aircraft carrier USS Enterprise. The ship and its planes, including Manowns, downed 911 enemy planes, sank 71 ships and damaged 192 more.](https://th-thumbnailer.cdn-si-edu.com/ShgN4RTKNL4qCSKr275gOQlbtPM=/fit-in/1072x0/filters:focal(333x406:334x407)/https://tf-cmsv2-smithsonianmag-media.s3.amazonaws.com/filer_public/e8/0a/e80a0eca-ce69-4c66-87bd-02b2ba628c6c/mar2024_d17_projectrecover.jpg)
The aircraft carrier USS *Enterprise*. The ship and its planes, including Manowns, downed 911 enemy planes, sank 71 ships and damaged 192 more. Niday Pictures Library / Alamy
The service accompanied soldiers on the front lines during World War II, burying the dead and marking their graves so they might be identified and reburied at a later date. It continued its work after the war, sending platoons of mortuary specialists to battlefields around the world, including Palau. For months, teams canvassed the islands. Though most of their efforts focused on exhuming documented graves for reburial at home or abroad, they also searched for service members who went missing, including crews from dozens of downed planes. Most remained at large, however, and the military ultimately concluded that many of the missing—including Manown, Di Petta and Mitts—were “non-recoverable.”
Patrick Scannon was born in 1947, the same year the military abandoned its search for Manowns plane. A soft-spoken, bespectacled, bearded man who could easily pass for a minister or professor, Scannon is the founder of [Project Recover](https://www.projectrecover.org/), a California-based nonprofit devoted to locating and recovering the remains of Americas MIAs.
![Patrick Scannon](https://th-thumbnailer.cdn-si-edu.com/-Zs_6sBuCUZJ00A-ye7b4fVROGo=/fit-in/1072x0/filters:focal(529x353:530x354)/https://tf-cmsv2-smithsonianmag-media.s3.amazonaws.com/filer_public/cf/d4/cfd43deb-1c0b-4b17-ae33-dd0f4364f82e/mar2024_d20_projectrecover.jpg)
Patrick Scannon, founder of Project Recover. Christopher Perez
Scannons quest for missing pilots has its roots in his childhood as an Army brat, when he would spend afternoons and weekends in military base libraries, devouring books about aviation. “I would sit there for hours studying the planes,” he recalls.
Adrift after high school, he enrolled at the University of Georgia to study chemistry. He quickly distinguished himself, and he went on to earn a doctorate in organic chemistry at the University of California, Berkeley, and a doctor of medicine from the Medical College of Georgia. Then he returned to California, where in 1981 he founded Xoma, an early biotech firm.
As the company prospered, Scannon took up adventurous hobbies, including scuba diving and later skydiving. In 1993, he and his wife tagged along on a dive trip to Palau organized by a co-worker. Near the end of the trip, a local diving guide brought the couple to see the wing of an airplane in shallow water. “I saw the rounded tip and realized the only thing it could be was a B-24,” he said, referring to the famed American bomber. “From the time I saw the wing and jumped into the water, my life was different. I knew I had to do something about this. Wheres the rest of the plane? Wheres the crew?”
Though he dutifully returned to work—he retired as Xomas chief scientific officer in 2016—he became obsessed with finding planes and missing airmen, dedicating his spare time to the effort. He decided to focus his efforts where he had that life-changing experience: Palau. “There was something about the place that went beyond the natural beauty,” he says. “I couldnt believe a place so beautiful had been the subject of such violence.”
Scannon began visiting government archives, pulling military action reports and other documents about lost aircraft. Then he returned to Palau, only to get lost in a mangrove swamp looking for a missing plane. Chastened, he sought out local guides, eventually hiring Joe Maldangesang. The pair became close friends, with Maldangesang playing the role of translator and ambassador, setting up interviews with eyewitnesses who had seen planes go down decades earlier.
As Scannons trips to Palau continued, he began to attract a group of like-minded volunteers, many of them fellow skydivers who came to share his passion for finding MIAs. One was Dan OBrien, a hard-driving champion skydiver and former stuntman who now serves as Project Recovers chief financial officer and logistics guru. “The people who are drawn to this kind of work tend to be a bit obsessive,” OBrien told me.
Scannon, OBrien and a small circle of friends soon formed a nonprofit called the BentProp Project, the precursor to Project Recover, and began sending detailed reports of their field expeditions to the Graves Registration Services successor agency, now known as the Defense POW/MIA Accounting Agency, or DPAA. BentProp teams found upward of 50 foreign and American planes on land and underwater, accounting for 26 American service members missing in action, but Scannons archival research revealed many more planes at large. He was coming to understand that tracking down MIAs takes time. “Its a long game,” he says. “Its a game of perseverance more than anything else.”
In 2003, an American expat who spent his days diving in Palau offhandedly mentioned to Scannon that hed seen an aircraft wing in a small lagoon north of Malakal Harbor. Excited, Scannon and other team members dove to the site, where they found the largely intact wing of an Avenger. But which Avenger? Four such planes were known to have gone down in that general area, including Manowns.
During the next few years, BentProp teams surveyed the jungle-covered islands surrounding the lagoon. As they expanded their search, they began finding other airplane parts: a tail section, a rudder and swatches of the planes aluminum skin. None of the pieces pointed to a specific plane, but as the team plotted the parts on a topographical map, they began to form a distinctive debris field just east of Malakal Harbor that increasingly pointed to only one plane: Manowns. Still, the plane proved extraordinarily elusive, even after BentProp divers scoured the harbor. Stymied by low visibility, they turned up nothing. “It was like diving in milk,” Scannon recalls.
One day, in 2012, while visiting Palaus Coral Reef Research Foundation, a frequent Scannon hangout, he and other team members struck up a conversation with two other visitors, marine scientists named Mark Moline, now at the University of Delaware, and Eric Terrill, of the Scripps Institution of Oceanography. The group quickly agreed to collaborate. “They fell in love with our mission,” Scannon says. “We fell in love with their tools”—namely, autonomous underwater vehicles.
On the morning of March 17, 2015, the BentProp team and the two scientists eased a yellow-and-black torpedo-shaped drone into the water. Programmed to cross back and forth across the harbor, as if mowing an underwater lawn, it soon vanished into the depths. A single light pulsed at regular intervals as a sonar system scanned the seafloor.
Nearly half a mile from the lagoon that held the planes missing wing, at a depth of 116 feet, the sonar captured the shadowy but unmistakable image of a bent propeller. Then it found tangled piles of metal: landing gear, a crumpled fuselage, an engine block.
After 70 years, Manowns plane had finally been found.
---
It took four more years, but the first shot at recovering Manown and his crew went to a contractor called Ships of Discovery, which dove to the site in 2019—a qualified success, as the expedition turned up some human remains and personal effects. Two years later, DPAA hired Scannon and his organization—now renamed Project Recover, reflecting its growing ambitions and new scientific partnerships—to return to the wreck site. That mission also yielded human remains. Remarkably, DNA testing of bones and teeth gathered to that point conclusively identified two of the planes crew members: Anthony Di Petta and Wilbur Mitts, whose families were notified of their discovery in early 2023. But still there was no trace of Manown. Some areas of the underwater debris field remained untouched, however, so this past summer Project Recover returned to the site for a three-week operation in the hopes of finding the pilot and bringing him home.
The weather on the morning of July 9, 2023, is hot, sticky and sunny, the sky speckled with scattered clouds. The sheltered expanse of Malakal Harbor is ringed by the Chelbacheb, or Rock Islands, dozens of small limestone and coral mounds topped with dense jungle foliage. Small lagoons, some quite deep, are scattered in the interstices of these formations. There is little evidence of human habitation, though the ruins of Japanese defenses and fortifications are still visible on some of the larger islands, a common sight in Palau.
![The barge](https://th-thumbnailer.cdn-si-edu.com/_-Ba8eFHuwgNP0NlPCioHTnmMQ8=/fit-in/1072x0/filters:focal(1500x850:1501x851)/https://tf-cmsv2-smithsonianmag-media.s3.amazonaws.com/filer_public/75/41/7541f29e-81d4-4f13-8a64-fdf18e36764f/mar2024_d06_projectrecover.jpg)
The barge used by Project Recover and its affiliated team members, anchored precisely above the wreckage. Christopher Perez
More than a dozen expedition team members board a giant rusty steel barge, which is then towed along the coast, eventually stopping precisely above the wreckage of Manowns Avenger out in the harbor. As the tug crews lay cables anchoring the barge in place, Project Recover members get to work in the morning sun. The hulking vessel, the width of a basketball court and one-and-a-half times as long, has an enormous metal ramp at one end where a stream of motorboats come and go, loaded with members of the recovery team, equipment and food.
The missions divers work for Legion Undersea Services, a commercial outfit that often collaborates with Project Recover; indeed, many of Legions divers are longtime members of Project Recover, including its founders, Nick Zaborski and John Marsack. Both are former chief Navy divers who worked in Special Operations. Their team of six younger men, mostly ex-Navy as well, bring particular skills. One has extensive experience disarming unexploded ordnance; another, a competitive free diver, can hold his breath for over seven minutes, a handy talent if something goes wrong.
Each of the ex-Navy divers confirms the stereotype about swearing sailors, but Marsack shines in this department, knitting expletives into a kind of profane poetry as he merrily directs the divers handling the electrical cables, air hoses, oxygen cylinders and video monitors that make up the teams version of mission control. A decompression chamber, peeking out of a nearby shipping container, serves as a reminder that putting in long days at depths of more than 100 feet is not without risks.
[![Cover image of the Smithsonian Magazine March 2024 issue](https://th-thumbnailer.cdn-si-edu.com/_FTZvN_OGrg6BxcwXO4vppQfeT8=/fit-in/300x0/https://tf-cmsv2-smithsonianmag-media.s3.amazonaws.com/filer_public/21/ea/21eae546-5001-4fe9-b30b-d5edc709dd32/mar24_web_cover.jpg)](https://subscribe.smithsonianmag.com/?idx=582&inetz=article-banner-ad&promo_name=current-issue&promo_position=in_article&promo_creative=button&promo_id=subscribe)
![John Marsack, of Legion Undersea Services, holding newly recovered plane parts, including Manowns control stick— a significant discovery.](https://th-thumbnailer.cdn-si-edu.com/pneVjzr3ysk5BrlPdxQ3dS053yI=/fit-in/1072x0/filters:focal(485x323:486x324)/https://tf-cmsv2-smithsonianmag-media.s3.amazonaws.com/filer_public/41/5c/415c1f4e-910c-401c-ba5d-73098479fb54/mar2024_d12_projectrecover.jpg)
John Marsack, of Legion Undersea Services, holding newly recovered plane parts, including Manowns control stick—a significant discovery. Christopher Perez
Divers bound for the bottom don heavy work pants, thick shirts or coats, plus boots and gloves to protect them from the jagged tangles of metal below. They look as though theyre ready for serious yardwork—until theyre fitted with the helmet. The contraption, which weighs more than 30 pounds, requires two men to lower it carefully onto the divers head. When the fitting is complete, only a divers eyes, cheeks and a bit of forehead are visible. A pair of antennae-like protuberances—a light and a video camera—create a bug-like effect, as do the air supply lines and communication cables that sprout from the helmet.
The divers go through their final safety checks under the direction of Zaborski, a laconic man whose self-effacing demeanor belies years spent as a Navy diver. When the divers are ready, Zaborski walks to the top of the ramp and signals to a man stationed on a dock floating in the water below. This is Mike Raible, who runs the pump system used to vacuum debris off the seafloor in the hopes of collecting pertinent artifacts—parts of the plane, personal effects, human remains. Raible, nodding, fires up two generators, and the pumps come online, filling what look like fire hoses that run to the seafloor below.
Though Raible is pushing 70, has four missing fingers and appears to subsist on cigarettes and coffee, he nimbly navigates the piles of equipment with the grace of a much younger man. He has lived an active life, working as a gold dredger, skydiving instructor and parachute tester; hes jumped out of so many planes that hes spent the cumulative equivalent of nine full days in free-fall. He is used to things going wrong, but the opening days of the mission left him scrambling after he discovered that saltwater corrosion had taken a toll on the pumps. This morning, though, hes kludged together a workaround after temporarily plugging up the pumps discharge port. As the machines roar to life, he holds up a clenched fist in victory, revealing a tattoo that reads “Death Before Dishonor.” He gives the thumbs up, shouting, “Were live!” Then, sotto voce: “I need a cigarette.”
![Manowns plane was finally located in 2015. Two subsequent expeditions failed to recover the pilots remains. In July 2023, the nonprofit Project Recover returned for a third attempt. Clockwise from top: the wreckage of the plane on the seafloor, at a dep](https://th-thumbnailer.cdn-si-edu.com/cQYU1YNwveJAawt93hE9CDJGw44=/fit-in/1072x0/filters:focal(846x797:847x798)/https://tf-cmsv2-smithsonianmag-media.s3.amazonaws.com/filer_public/9a/e8/9ae83cfa-b54d-4c7c-bcdd-2f9a15e4b4b5/triptych2.jpg)
Manowns plane was finally located in 2015. Two subsequent expeditions failed to recover the pilots remains. In July 2023, the nonprofit Project Recover returned for a third attempt. Clockwise from top: the wreckage of the plane on the seafloor, at a depth of 116 feet; a diver with contractor Legion Undersea Services after recovery operations at the bottom; at the end of a dive, a participant ascends to a decompression stop 30 feet from the surface. Christopher Perez
Back on deck, Zaborski gives the go-ahead, and two divers jump into the water and begin rappelling down a cable to the wreck below. They proceed under the supervision of Mickaila “M.J.” Johnston, an active-duty Navy doctor who specializes in dive medicine. Johnston, who describes himself as “the second-best doctor on this mission”—a winking nod to Scannons elder-statesman status—remains at his station, sentinel-like, for the duration of the dive, periodically inspecting the air hoses and other equipment.
The divers soon vanish from sight, but Zaborski tracks their movements on video feeds that play on a pair of monitors. One is set up in the dive station, where Zaborski, seated at two folding tables covered with equipment that looks like a music studio mix deck, monitors the air supply and power, periodically issuing updates over the intercom system. Thanks to a microphone and headset inside each helmet, the divers can communicate with everyone up on the surface. They can even listen to music.
The other video monitor is located in a shipping container set amidships. This is the makeshift office of Svenja Weise and Anthony Burgess, Project Recover team members who run the actual excavation. Weise, a German-born forensics specialist, began her career as an archaeologist, but early work on an Iron Age site containing cremated skeletal remains changed her life. “After that,” she tells me, “I was hooked on bones.” That even small skeletal fragments could be used to reconstruct an individuals life and death awed her. After researching medieval-era skeletons, Weise went to work for the Danish government, serving as a kind of forensics first responder any time archaeological excavations turned up human remains. She met Scannon in 2022, when Project Recover excavated a World War II crash site off the Danish coast. When Scannon asked her to join the Manown mission, she couldnt resist.
Burgess, also from Europe, speaks with a charming if unplaceable accent, having grown up in both England and Malta. He met Scannon when Project Recover came to excavate another World War II crash site in the Mediterranean. At the time, Burgess was working on his doctorate in archaeology—fittingly specializing in the underwater excavation of plane crashes. Much as Weise can see a bone fragment and immediately identify it, Burgess can look at a twisted bit of metal brought up from the bottom and give a good guess as to its original placement and function.
![Archaeologist Anthony Burgess examines parts of the wreck.](https://th-thumbnailer.cdn-si-edu.com/_G9D8qebHGmfcI0ajZK6qa_St_U=/fit-in/1072x0/filters:focal(561x801:562x802)/https://tf-cmsv2-smithsonianmag-media.s3.amazonaws.com/filer_public/43/3f/433f5473-46ab-4177-b912-cab1ef8ddb7a/13jul23-cpme-003.jpg)
Archaeologist Anthony Burgess examines parts of the wreck. Christopher Perez
![Archaeologist and forensic anthropologist Svenja Weise, an expert in identifying skeletal remains.](https://th-thumbnailer.cdn-si-edu.com/TffLEXEJ1ItCD-4_TEb0L3XjiZs=/fit-in/1072x0/filters:focal(492x702:493x703)/https://tf-cmsv2-smithsonianmag-media.s3.amazonaws.com/filer_public/1b/bc/1bbc3a26-6844-4f2f-839c-500708373ec4/mar2024_d19_projectrecover.jpg)
Archaeologist and forensic anthropologist Svenja Weise, an expert in identifying skeletal remains. Christopher Perez
![A diver with the expedition prepares to descend to the seafloor for excavations. Although the water at bottom is a balmy 83 degrees, divers must wear heavy suits to protect themselves from the jagged metal of the wreckage. Their helmets alone weigh more t](https://th-thumbnailer.cdn-si-edu.com/en_1OHKCGKSV2fhmdukRUekYpiA=/fit-in/1072x0/filters:focal(1050x700:1051x701)/https://tf-cmsv2-smithsonianmag-media.s3.amazonaws.com/filer_public/c5/fb/c5fbf53c-d131-4dda-9fea-eb33e08c4518/mar2024_d22_projectrecover.jpg)
A diver with the expedition prepares to descend to the seafloor for excavations. Although the water at bottom is a balmy 83 degrees, divers must wear heavy suits to protect themselves from the jagged metal of the wreckage. Their helmets alone weigh more than 30 pounds.
  Christopher Perez
Now the pair sits at a folding table covered in diagrams of the debris field, alongside an Avenger operating manual and a hot plate for making coffee. A large photograph of Manown and his crew, mounted on posterboard, leans against the wall. Weise and Burgess, joined by Scannon, sit quietly watching the video monitor as the divers reach bottom. The sound of heavy breathing, captured by the microphones in each helmet, fills the office, occasionally punctuated by complaints about the visibility. The divers pick up the nozzles of large hoses powered by the pump and begin vacuuming the sand, shells and other small items, which are sucked up and deposited into an enormous metal mesh basket sitting nearby on the ocean floor. Anything that wont fit into the hose gets put into another basket. Occasionally, Weise instructs the divers to examine something she sees on the display.
On the seafloor, the water is a comfortable 83 degrees. Up above, the barge bakes in the sun, radiating heat and raising temperatures to dangerous levels. Dehydration is a constant threat, and Scannon, dressed in lightweight pants, a long-sleeved shirt and a baseball cap, with a red bandana tied around his neck, walks around the barge, gently reminding people to drink plenty from coolers filled with water and Gatorade.
Long periods of tedium are interrupted by fleeting moments of excitement. This is true for the divers no less than for anyone else. After spending time on the bottom, they ascend in stages to minimize the risk of getting the bends. At 30 feet below the surface, they stop and hang on to the cable for a five-minute decompression stop. Then they ascend to 20 feet and take a seat on a yellow metal platform that hangs off the barge. Theyll sit there for more than half an hour. They pass the time chatting with each other and listening to hard rock. As the divers sit on the platform, their legs dangling over the edge, the unmistakable opening guitar riff of AC/DCs “Back in Black” blasts from the monitor speakers. The video feed confirms that the divers are rocking out at the second decompression stop, nodding in time with the music.
---
One afternoon a week later, toward days end, a large crane reels up the first recovery basket of the mission, steering it to a soft landing on the back of the barge. The team members swarm around it, peering intently at the contents: large, twisted pieces of metal, some scorched and warped by fire, and several mysterious sections of black rubber.
One by one, the artifacts come out, gently cradled and placed on a tarp. The black rubber turns out to be swaths of the fuel bladder, its white stenciled serial numbers still bright and legible. Then comes a piece of the bomb bay door, its hydraulics still attached; skeins of electrical wires; and a handful of indignant crabs, which are promptly returned to the sea.
The most evocative items are the smallest: a piece of Bakelite, likely from a radio; a strand of silk parachute cord, still intact; and, most haunting of all, spent rounds from a .50-caliber machine gun that turret gunner Di Petta fired as the plane came under attack. “They went down fighting,” a younger diver murmurs, turning the relic over in his hand.
![The crew unloads a component of the airplanes internal structure from a basket recently brought up from the ocean floor.](https://th-thumbnailer.cdn-si-edu.com/nWi_BfMw_8WQSMdhi3nNM3JENS0=/fit-in/1072x0/filters:focal(1485x990:1486x991)/https://tf-cmsv2-smithsonianmag-media.s3.amazonaws.com/filer_public/98/2c/982c540d-3fc5-4a1f-8f05-04341773f32f/mar2024_d07_projectrecover.jpg)
The crew unloads a component of the airplanes internal structure from a basket recently brought up from the ocean floor. Christopher Perez
![Pieces of the planes rubber fuel bladder, with white stenciled markings indicating serial numbers still clear and legible, recently brought up from the ocean floor.](https://th-thumbnailer.cdn-si-edu.com/FUOU4sWAf6YtMV7yKzBjBECv8NQ=/fit-in/1072x0/filters:focal(875x588:876x589)/https://tf-cmsv2-smithsonianmag-media.s3.amazonaws.com/filer_public/30/44/30446896-c286-4909-9df1-a9b120ca7fb6/mar2024_d11_projectrecover.jpg)
Pieces of the planes rubber fuel bladder, with white stenciled markings indicating serial numbers still clear and legible, recently brought up from the ocean floor. Christopher Perez
![A piece of the cockpit identified as part of a rudder pedal assembly.](https://th-thumbnailer.cdn-si-edu.com/UhbEwqVrHQyfjLP1CLIUBQ6r9Zw=/fit-in/1072x0/filters:focal(630x420:631x421)/https://tf-cmsv2-smithsonianmag-media.s3.amazonaws.com/filer_public/ed/b7/edb7dbd3-26e3-4251-8404-228632cf991f/mar2024_d13_projectrecover.jpg)
A piece of the cockpit identified as part of a rudder pedal assembly, recently brought up from the ocean floor.  Christopher Perez
The next day, another basket comes up. This one contains pieces of the cockpit, including Manowns rudder pedals and his control stick. The most revealing artifact, though, is a half-inch-thick armor plate the size and shape of a large baking sheet. It was meant to protect Manowns upper torso from stray flak. The upper-left quadrant, though, is missing, leaving behind a jagged, warped edge. Scannon points at the torn steel. “He probably took a direct hit from an antiaircraft round. It would have killed him instantly.”
That evening, everyone returns to their hotel rooms back on shore feeling especially hopeful. With artifacts from the cockpit laid out on deck, there is a sense among the team that they are getting close. But the next morning a tropical storm grazes the islands. The wind and waves snap one of the cables anchoring the barge, putting the operation on hold. For two days everyone hunkers in their hotel rooms as sheets of rain inundate the islands.
When the weather finally clears, the team eagerly returns to the barge. A large metal basket filled with many cubic feet of sediment earlier in the week is hauled from the depths. Once it touches down on deck, team members remove the heavy cover, revealing a visually confusing mix of shells, scraps of metal, chunks of coral and pebbles.
Blake Boteler, a team member and former agent with the U.S. Bureau of Alcohol, Tobacco, Firearms and Explosives, sees it first: a small piece of what looks like gray coral. It is splintered on one end. He picks it up wordlessly and hands it to Weise, who turns it over in her hand and nods. “A piece of a tibia,” she says. (Later, she explains that this was a provisional identification. Only DPAA has the authority to make an official determination about what it calls “osseous remains.”) Team members now begin transferring the contents of the basket to five-gallon plastic pails and bringing them to the screening station, which hangs off the back of the barge.
Screening sediment is a simple process but takes time. You take a pail and dump the contents into a shallow wooden tray lined with wire mesh. Then you use a hose to wash away the sand and silt, leaving behind anything larger than a quarter of an inch. Scannon and Boteler begin work, joined by Derek Abbey, a longtime team member who was among the group that found pieces of Manowns Avenger on a nearby island. A former Marine who piloted F-18 Hornets, Abbey took over as Project Recovers chief executive officer in 2019, though Scannon remains heavily involved in day-to-day operations.
![Team members clean and inspect recovered wreckage identified as part of the planes fuselage. Any human remains and personal belongings discovered will be repatriated to the United States. The planes wreckage, however, will ultimately be returned to the](https://th-thumbnailer.cdn-si-edu.com/28EHrApdM98hwi0W6WaU1XW7lMs=/fit-in/1072x0/filters:focal(1050x700:1051x701)/https://tf-cmsv2-smithsonianmag-media.s3.amazonaws.com/filer_public/6d/f6/6df69a49-80aa-4b53-a8fe-9ae58769be08/mar2024_d23_projectrecover.jpg)
Team members clean and inspect recovered wreckage identified as part of the planes fuselage. Any human remains and personal belongings discovered will be repatriated to the United States. The planes wreckage, however, will ultimately be returned to the sea. Christopher Perez
No one at the screening station says much. The sound of running water dominates. As the sand washes away, the screens reveal the usual mix of shells and coral fragments but also much more: shards of clear, red and green glass, which evidently came from an instrument panel; knobs and dials; and additional items that look likely to have come from the cockpit.
Then someone finds a piece of curved gray material. It resembles a shell, but when shown the object Weise says: “Its a piece of a cranium.” Soon what appear to be more bones surface in the screens: another possible skull fragment, a likely bone from a foot and other pieces, each recorded in a log by Weise.
As the operation winds down, many other artifacts come to light. A piece of the planes communication system; a button from a flight uniform; and, finally, a small circle of metal that some cleaning and polishing reveals to be a nickel, quite possibly from the pilots pocket—perhaps a talisman or charm. The coin is dated 1941, the year the Japanese attacked Pearl Harbor, setting in motion the sequence of events that would lead to the deaths of Manown and his crew—and, in the fullness of time, the presence of everyone on deck that day.
---
The likely bone fragments were sent directly to Oahu, Hawaii, for intake at DPAAs state-of-the-art forensics facility, the largest skeletal identification laboratory in the world. The structure is a gleaming, light-filled building with two wings—from a distance it looks a bit like a plane. The lab houses dozens of active-duty forensic scientists who specialize in handling and analyzing human remains. Typically working with photographs of missing service members in plain view—a constant reminder of the gravity of their charge—these scientists carefully collate, record and analyze the bones and teeth along with any personal effects recovered. To make a positive identification, they make use of evidence such as the location of the remains relative to the wreckage; the presence of items belonging to the deceased; comparisons with dental records, typically those recorded in military personnel files; and dog tags.
But these methods are suggestive, not dispositive. DNA evidence, on the other hand, when compared with DNA taken from cheek swabs of the deceaseds relatives, can provide conclusive identification—a process that can take months and sometimes years. Until that time, the military wont comment on the status of any investigation, not even to family members—including, for now, Manowns.
Once a case is closed, however, the remains are sent to the closest surviving family members and given a full military funeral. Project Recover members frequently attend these funerals, as many did in September when Wilbur Mitts was [laid to rest](https://www.mercurynews.com/2023/09/12/after-nearly-80-years-a-family-is-able-to-lay-their-missing-veteran-to-rest/) in Seaside, California.
![Diana Ward, niece of Wilbur Mitts](https://th-thumbnailer.cdn-si-edu.com/EVOq8hiW6A8iuvGZj-we-JZI0fg=/fit-in/1072x0/filters:focal(1260x876:1261x877)/https://tf-cmsv2-smithsonianmag-media.s3.amazonaws.com/filer_public/4f/e6/4fe650d0-cb6f-4a75-9271-4e0d93ebe204/mar2024_d01_projectrecover.jpg)
Wilbur Mitts was laid to rest in California in September 2023. Diana Ward, his niece and oldest living relative, was among dozens of family members who attended the ceremony. Brian Frank
![Wilbur Mitts](https://th-thumbnailer.cdn-si-edu.com/06ZuJ-23DHIPYU0sRXKr46NfjhE=/fit-in/1072x0/filters:focal(706x477:707x478)/https://tf-cmsv2-smithsonianmag-media.s3.amazonaws.com/filer_public/dd/0f/dd0f889b-9c13-4270-98fd-b30b5d2bbf31/mar2024_d04_projectrecover.jpg)
It took two years to identify the remains of Wilbur Mitts, recovered in 2021.  Brian Frank
Diana Ward, Mitts niece and oldest living relative, sat beneath a canopy at the gravesite, surrounded by dozens of family members. She never met her uncle, she said during her eulogy, having been born three days after his plane was shot down in Palau. But she described how he remained a palpable presence during her childhood: The family sang his favorite songs and nurtured his memory as if he might one day return.
Her account is typical of many surviving relatives of MIAs. With no body to mourn, survivors experience what psychologists call “ambiguous loss.” Deprived of the closure of a conclusive death, family members dwell in a peculiar purgatory that can carry over from one generation to the next. Perhaps this helps explain why Mitts funeral felt more like a celebration than anything else. The dead cannot come back to life, but they can come home.
As the coffin was lowered into the ground, Zaborski quietly approached Ward. He knelt beside her, and the two spoke privately for several minutes before he hugged her and returned to the Project Recover team members who were standing in a circle nearby.
At a reception afterward, Scannon mused on the meaning of it all. If the remains he and his team found over the summer are ultimately proved to belong to Manown, Scannon said, hed find it eerie, if a little fitting, that the planes junior crew members had been found first. “When a plane is headed for a crash, theres an important rule that the pilot or commander is the last one to bail out,” he explained. “In a way, then, its appropriate that Di Petta and Mitts came home first.”
Time will tell whether Manown will come home, too. His Avenger will not. The government of Palau considers the plane, like other wrecks and relics from World War II, a part of the nations historical heritage. Which is why, a few months earlier, on the expeditions final day, the team collected all the pieces of the bomber the divers had recovered during the excavation. Under a dark gray sky, they wrapped the plane parts in a burial shroud made of wire mesh and secured it with a rope. As everyone gathered to watch, the crane lifted the giant bundle and brought it out over the water before gently lowering it until it rested just below the surface. A single diver jumped overboard and, dodging whitecaps, swam out to the rope. Then he pulled a knife from a sheath strapped to his leg and cut the line. The shattered pieces of Manowns plane vanished from view, reunited with the rest of the wreckage in the darkness below.
Get the latest **History** stories in your inbox?
Filed Under: [Airplanes](https://www.smithsonianmag.com/tag/airplanes/), [Asian History](https://www.smithsonianmag.com/tag/asian-history/), [Military](https://www.smithsonianmag.com/tag/military/), [Oceans](https://www.smithsonianmag.com/tag/oceans/), [Planes](https://www.smithsonianmag.com/tag/planes/), [US Military](https://www.smithsonianmag.com/tag/us-military/), [World War II](https://www.smithsonianmag.com/tag/world-war-ii/)
&emsp;
&emsp;
---
`$= dv.el('center', 'Source: ' + dv.current().Link + ', ' + dv.current().Date.toLocaleString("fr-FR"))`

@ -1,7 +1,7 @@
---
Alias: [""]
Tag: ["📈", "🇺🇸", "👰"]
Tag: ["📈", "🇺🇸", "👰", "👤"]
Date: 2024-02-18
DocType: "WebClipping"
Hierarchy:
@ -13,7 +13,7 @@ CollapseMetaTable: true
---
Parent:: [[@News|News]]
Read:: 🟥
Read:: [[2024-02-27]]
---

@ -170,7 +170,8 @@ image: https://cdn.osxdaily.com/wp-content/uploads/2012/05/mac-security-cam-face
&emsp;
- [ ] :label: [[Bookmarks - Utilities]]: review bookmarks %%done_del%% 🔁 every 3 months 📅 2024-03-02
- [ ] :label: [[Bookmarks - Utilities]]: review bookmarks %%done_del%% 🔁 every 3 months 📅 2024-06-02
- [x] :label: [[Bookmarks - Utilities]]: review bookmarks %%done_del%% 🔁 every 3 months 📅 2024-03-02 ✅ 2024-03-01
&emsp;
&emsp;

@ -73,7 +73,8 @@ style: number
#### 🚮 Garbage collection
- [ ] ♻ [[Household]]: *Paper* recycling collection %%done_del%% 🔁 every 2 weeks on Tuesday 📅 2024-02-27
- [ ] ♻ [[Household]]: *Paper* recycling collection %%done_del%% 🔁 every 2 weeks on Tuesday 📅 2024-03-12
- [x] ♻ [[Household]]: *Paper* recycling collection %%done_del%% 🔁 every 2 weeks on Tuesday 📅 2024-02-27 ✅ 2024-02-26
- [x] ♻ [[Household]]: *Paper* recycling collection %%done_del%% 🔁 every 2 weeks on Tuesday 📅 2024-02-13 ✅ 2024-02-12
- [x] ♻ [[Household]]: *Paper* recycling collection %%done_del%% 🔁 every 2 weeks on Tuesday 📅 2024-01-30 ✅ 2024-01-29
- [x] ♻ [[Household]]: *Paper* recycling collection %%done_del%% 🔁 every 2 weeks on Tuesday 📅 2024-01-16 ✅ 2024-01-15
@ -89,10 +90,13 @@ style: number
#### 🏠 House chores
- [ ] 🛎️ :house: [[Household]]: Pay rent %%done_del%% 🔁 every month on the last 📅 2024-02-29
- [ ] 🛎️ :house: [[Household]]: Pay rent %%done_del%% 🔁 every month on the last 📅 2024-03-31
- [x] 🛎️ :house: [[Household]]: Pay rent %%done_del%% 🔁 every month on the last 📅 2024-02-29 ✅ 2024-02-26
- [x] 🛎️ :house: [[Household]]: Pay rent %%done_del%% 🔁 every month on the last 📅 2024-01-31 ✅ 2024-01-28
- [x] 🛎️ :house: [[Household]]: Pay rent %%done_del%% 🔁 every month on the last 📅 2023-12-31 ✅ 2023-12-25
- [ ] 🛎 🧻 REMINDER [[Household]]: check need for toilet paper %%done_del%% 🔁 every week 📅 2024-02-26
- [ ] 🛎 🧻 REMINDER [[Household]]: check need for toilet paper %%done_del%% 🔁 every week 📅 2024-03-11
- [x] 🛎 🧻 REMINDER [[Household]]: check need for toilet paper %%done_del%% 🔁 every week 📅 2024-03-04 ✅ 2024-02-29
- [x] 🛎 🧻 REMINDER [[Household]]: check need for toilet paper %%done_del%% 🔁 every week 📅 2024-02-26 ✅ 2024-02-26
- [x] 🛎 🧻 REMINDER [[Household]]: check need for toilet paper %%done_del%% 🔁 every week 📅 2024-02-19 ✅ 2024-02-19
- [x] 🛎 🧻 REMINDER [[Household]]: check need for toilet paper %%done_del%% 🔁 every week 📅 2024-02-12 ✅ 2024-02-12
- [x] 🛎 🧻 REMINDER [[Household]]: check need for toilet paper %%done_del%% 🔁 every week 📅 2024-02-05 ✅ 2024-02-05
@ -102,7 +106,8 @@ style: number
- [x] 🛎 🧻 REMINDER [[Household]]: check need for toilet paper %%done_del%% 🔁 every week 📅 2024-01-08 ✅ 2024-01-06
- [x] 🛎 🧻 REMINDER [[Household]]: check need for toilet paper %%done_del%% 🔁 every week 📅 2024-01-01 ✅ 2023-12-25
- [x] 🛎 🧻 REMINDER [[Household]]: check need for toilet paper %%done_del%% 🔁 every week 📅 2023-12-25 ✅ 2023-12-23
- [ ] :bed: [[Household]] Change bedsheets %%done_del%% 🔁 every 2 weeks on Saturday 📅 2024-03-02
- [ ] :bed: [[Household]] Change bedsheets %%done_del%% 🔁 every 2 weeks on Saturday 📅 2024-03-16
- [x] :bed: [[Household]] Change bedsheets %%done_del%% 🔁 every 2 weeks on Saturday 📅 2024-03-02 ✅ 2024-02-29
- [x] :bed: [[Household]] Change bedsheets %%done_del%% 🔁 every 2 weeks on Saturday 📅 2024-02-17 ✅ 2024-02-17
- [x] :bed: [[Household]] Change bedsheets %%done_del%% 🔁 every 2 weeks on Saturday 📅 2024-02-03 ✅ 2024-01-29
- [x] :bed: [[Household]] Change bedsheets %%done_del%% 🔁 every 2 weeks on Saturday 📅 2024-01-20 ✅ 2024-01-14

@ -98,7 +98,8 @@ style: number
&emsp;
- [ ] :birthday: **[[Aglaé de Villeneuve|Aglaé]]** %%done_del%% 🔁 every year 📅 2024-02-25
- [ ] :birthday: **[[Aglaé de Villeneuve|Aglaé]]** %%done_del%% 🔁 every year 📅 2025-02-25
- [x] :birthday: **[[Aglaé de Villeneuve|Aglaé]]** %%done_del%% 🔁 every year 📅 2024-02-25 ✅ 2024-02-25
&emsp;

@ -103,7 +103,8 @@ style: number
&emsp;
- [ ] :birthday: **[[Elise Bédier|Élise]]** %%done_del%% 🔁 every year 📅 2024-02-28
- [ ] :birthday: **[[Elise Bédier|Élise]]** %%done_del%% 🔁 every year 📅 2025-02-28
- [x] :birthday: **[[Elise Bédier|Élise]]** %%done_del%% 🔁 every year 📅 2024-02-28 ✅ 2024-02-28
- [x] :birthday: **[[Elise Bédier|Élise]]** %%done_del%% 🔁 every year 📅 2023-02-28 ✅ 2023-02-28
- [x] :birthday: **[[Elise Bédier|Élise]]** 🔁 every year 📅 2022-02-28 ✅ 2022-02-28

@ -103,7 +103,8 @@ style: number
&emsp;
- [ ] :birthday: **[[Hortense de Villeneuve|Hortense BV]]** %%done_del%% 🔁 every year 📅 2024-02-27
- [ ] :birthday: **[[Hortense de Villeneuve|Hortense BV]]** %%done_del%% 🔁 every year 📅 2025-02-27
- [x] :birthday: **[[Hortense de Villeneuve|Hortense BV]]** %%done_del%% 🔁 every year 📅 2024-02-27 ✅ 2024-02-27
- [x] :birthday: **[[Hortense de Villeneuve|Hortense BV]]** %%done_del%% 🔁 every year 📅 2023-02-27 ✅ 2023-02-27
- [x] :birthday: **[[Hortense de Villeneuve|Hortense BV]]** 🔁 every year 📅 2022-02-27 ✅ 2022-02-27

@ -36,7 +36,7 @@ id Save
&emsp;
<span class='ob-timelines' data-date='2023-12-15-00' data-title='Eczema' data-class='orange' data-type='range' data-end='2024-01-15-00'> A Eczema starts around the 15th December.
<span class='ob-timelines' data-date='2023-12-15-00' data-title='Eczema' data-class='orange' data-type='range' data-end='2024-03-01-00'> A Eczema starts around the 15th December.
Medication from Paris on 29th December: anti-histaminique and local cream
</span>
@ -60,5 +60,10 @@ On [[2023-01-01|1st January]], a few spots start to form around the wounds.
On [[2024-01-12|12th January]] , end of anti-histaminic supply.
On [[2024-03-01|1st March]], still no fundamental amelioration. Went to [[Dr Cleopatra Morales]] and received:
1. Anti-histaminic: Cetirizin-Mepha, 10mg
2. Cortisone Creme: Betnovate, 1mg/g
3. Shower lotion: Antidry
&emsp;
&emsp;

@ -51,7 +51,8 @@ style: number
[[2023-07-13|This day]], ripped hoof (front right) is healing well
> On track to heal fully by the end of the Summer season
- [ ] :racehorse: [[@Sally|Sally]], [[2023-07-13 Health check|Note]]: Check front hoofs healing 🔁 every 2 weeks 📅 2024-02-27
- [ ] :racehorse: [[@Sally|Sally]], [[2023-07-13 Health check|Note]]: Check front hoofs healing 🔁 every 2 weeks 📅 2024-03-12
- [x] :racehorse: [[@Sally|Sally]], [[2023-07-13 Health check|Note]]: Check front hoofs healing 🔁 every 2 weeks 📅 2024-02-27 ✅ 2024-02-26
- [x] :racehorse: [[@Sally|Sally]], [[2023-07-13 Health check|Note]]: Check front hoofs healing 🔁 every 2 weeks 📅 2024-02-13 ✅ 2024-02-12
- [x] :racehorse: [[@Sally|Sally]], [[2023-07-13 Health check|Note]]: Check front hoofs healing 🔁 every 2 weeks 📅 2024-01-30 ✅ 2024-01-28
- [x] :racehorse: [[@Sally|Sally]], [[2023-07-13 Health check|Note]]: Check front hoofs healing 🔁 every 2 weeks 📅 2024-01-16 ✅ 2024-01-12

@ -11,7 +11,7 @@ Source:
Author: Michel Houellebecq
Published: 2015
Link: https://fr.wikipedia.org/wiki/Soumission_(roman)
Read:
Read: 2022-11-27
Cover: https://ec56229aec51f1baff1d-185c3068e22352c56024573e929788ff.ssl.cf1.rackcdn.com/attachments/large/0/0/8/004644008.jpg
CollapseMetaTable: true

@ -12,14 +12,14 @@ Source:
Language: "DE"
Published: 2019-08-01
Link: "[Wir Kinder vom Bahnhof Zoo Wikipedia](https://de.m.wikipedia.org/wiki/Wir_Kinder_vom_Bahnhof_Zoo)"
Read:
Read: 2024-02-26
Cover: http://books.google.com/books/content?id=l6eeDwAAQBAJ&printsec=frontcover&img=1&zoom=1&edge=curl&source=gbs_api
CollapseMetaTable: true
---
Parent:: [[@Reading master|Reading list]]
ReadingState:: 🟧
ReadingState:: [[2024-02-26]]
---

@ -76,6 +76,13 @@ style: number
> - Fluance RT82
> - Pro-ject T1
&emsp;
> [!note] Lyon
> [Où acheter des vinyles à Lyon : nos 5 adresses préférées](https://lyon.citycrunch.fr/ou-acheter-des-vinyles-a-lyon-nos-5-adresses-preferees/2021/04/07/)
&emsp;
---

@ -237,7 +237,8 @@ sudo bash /etc/addip4ban/addip4ban.sh
#### Ban List Tasks
- [ ] 🖥 [[Selfhosting]], [[Configuring UFW|Firewall]] Get IP addresses caught by Postfix %%done_del%% 🔁 every week on Saturday 📅 2024-03-02
- [ ] 🖥 [[Selfhosting]], [[Configuring UFW|Firewall]] Get IP addresses caught by Postfix %%done_del%% 🔁 every week on Saturday 📅 2024-03-09
- [x] 🖥 [[Selfhosting]], [[Configuring UFW|Firewall]] Get IP addresses caught by Postfix %%done_del%% 🔁 every week on Saturday 📅 2024-03-02 ✅ 2024-03-01
- [x] 🖥 [[Selfhosting]], [[Configuring UFW|Firewall]] Get IP addresses caught by Postfix %%done_del%% 🔁 every week on Saturday 📅 2024-02-24 ✅ 2024-02-23
- [x] 🖥 [[Selfhosting]], [[Configuring UFW|Firewall]] Get IP addresses caught by Postfix %%done_del%% 🔁 every week on Saturday 📅 2024-02-17 ✅ 2024-02-17
- [x] 🖥 [[Selfhosting]], [[Configuring UFW|Firewall]] Get IP addresses caught by Postfix %%done_del%% 🔁 every week on Saturday 📅 2024-02-10 ✅ 2024-02-09
@ -296,7 +297,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-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
- [ ] 🖥 [[Selfhosting]], [[Configuring UFW|Firewall]]: Update the Blocked IP list %%done_del%% 🔁 every month on Saturday 📅 2024-03-02
- [ ] 🖥 [[Selfhosting]], [[Configuring UFW|Firewall]]: Update the Blocked IP list %%done_del%% 🔁 every month on Saturday 📅 2024-03-09
- [x] 🖥 [[Selfhosting]], [[Configuring UFW|Firewall]]: Update the Blocked IP list %%done_del%% 🔁 every month on Saturday 📅 2024-03-02 ✅ 2024-03-01
- [x] 🖥 [[Selfhosting]], [[Configuring UFW|Firewall]]: Update the Blocked IP list %%done_del%% 🔁 every month on Saturday 📅 2024-02-24 ✅ 2024-02-23
- [x] 🖥 [[Selfhosting]], [[Configuring UFW|Firewall]]: Update the Blocked IP list %%done_del%% 🔁 every month on Saturday 📅 2024-02-17 ✅ 2024-02-17
- [x] 🖥 [[Selfhosting]], [[Configuring UFW|Firewall]]: Update the Blocked IP list %%done_del%% 🔁 every month on Saturday 📅 2024-02-10 ✅ 2024-02-09

@ -650,13 +650,161 @@ alias i=income
liability:CreditCard:CHF
2024/02/23 Peage
expenses:Travel:EUR CHF18.60
expenses:Travel:EUR 18.60
liability:CreditCard:CHF
2024/02/23 Crit'air
expenses:Travel:EUR CHF4.76
expenses:Travel:EUR 4.76
liability:CreditCard:CHF
2024/02/23 Hotel
expenses:Travel:EUR CHF15.65
expenses:Travel:EUR €15.65
liability:CreditCard:CHF
2024/02/24 Petit dej
expenses:Food:EUR €9.30
liability:CreditCard:CHF
2024/02/24 Pralus
expenses:Food:EUR €23.80
liability:CreditCard:CHF
2024/02/24 Biscuits
expenses:Food:EUR €6.05
liability:CreditCard:CHF
2024/02/24 Sibilia
expenses:Food:EUR €17.05
liability:CreditCard:CHF
2024/02/24 Petrol
expenses:Travel:EUR €95.34
liability:CreditCard:CHF
2024/02/24 Coffee
expenses:Food:EUR €2.30
liability:CreditCard:CHF
2024/02/24 Hotel
expenses:Travel:EUR €84.00
liability:CreditCard:CHF
2024/02/24 Peage
expenses:Travel:EUR €32.00
liability:CreditCard:CHF
2024/02/24 Nails
expenses:Furniture:CHF CHF5.80
liability:CreditCard:CHF
2024/02/25 Bakery
expenses:Food:CHF CHF7.20
liability:CreditCard:CHF
2024/02/25 Coop
expenses:Food:CHF CHF9.25
liability:CreditCard:CHF
2024/02/25 SBB
expenses:Travel:CHF CHF4.60
liability:CreditCard:CHF
2024/02/25 Coffee
expenses:Food:CHF CHF5.90
liability:CreditCard:CHF
2024/02/26 Crucifix
expenses:Furniture:EUR €102.88
liability:CreditCard:CHF
2024/02/26 Coffee
expenses:Food:CHF CHF9.10
liability:CreditCard:CHF
2024/02/26 Migros
expenses:Food:CHF CHF18.50
liability:CreditCard:CHF
2024/02/27 Coffee
expenses:Food:CHF CHF5.90
liability:CreditCard:CHF
2024/02/27 Coop
expenses:Food:CHF CHF10.60
liability:CreditCard:CHF
2024/02/28 Coffee
expenses:Food:CHF CHF5.90
liability:CreditCard:CHF
2024/02/28 Migros
expenses:Food:CHF CHF5.50
liability:CreditCard:CHF
2024/02/28 Seeds
expenses:Garden:CHF CHF13.35
liability:CreditCard:CHF
2024/02/29 Migros
expenses:Food:CHF CHF0.75
liability:CreditCard:CHF
2024/02/29 Coffee
expenses:Food:CHF CHF6.50
liability:CreditCard:CHF
2024/02/29 SBB
expenses:Travel:CHF CHF5.60
liability:CreditCard:CHF
2024/02/29 Lunch
expenses:Food:CHF CHF20.85
liability:CreditCard:CHF
2024/02/29 Manor
expenses:Food:CHF CHF3.45
liability:CreditCard:CHF
2024/03/01 Breakfast
expenses:Food:CHF CHF11.00
liability:CreditCard:CHF
2024/02/29 Kebab
expenses:Food:CHF CHF19.00
liability:CreditCard:CHF
2024/02/29 Migros
expenses:Food:CHF CHF3.45
liability:CreditCard:CHF
2024/03/01 Pret
expenses:Food:CHF CHF9.70
liability:CreditCard:CHF
2024/03/01 Uber Eats
expenses:Food:CHF CHF19.91
liability:CreditCard:CHF
2024/03/02 Petrol
expenses:Travel:CHF CHF69.85
liability:CreditCard:CHF
2024/03/02 Dej - La gentilhommiere, Nancy
expenses:Food:EUR €78.60
liability:CreditCard:CHF
2024/03/02 Peage
expenses:Travel:EUR €6.70
liability:CreditCard:CHF
2024/03/02 Coffee
expenses:Food:EUR €4.70
liability:CreditCard:CHF
2024/03/02 Fnac
expenses:Entertainment:EUR €23.90
liability:CreditCard:CHF
2024/03/03 Peage
expenses:Travel:EUR €6.70
liability:CreditCard:CHF
Loading…
Cancel
Save