bookmarks init

main
iOS 2 years ago
parent 8ec482f2c0
commit 5d4e00bc3d

@ -62,5 +62,7 @@
"templater-obsidian", "templater-obsidian",
"obsidian-kanban", "obsidian-kanban",
"plugins-galore", "plugins-galore",
"obsidian-3d-graph" "obsidian-3d-graph",
"obsidian-rich-links",
"auto-card-link"
] ]

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

@ -0,0 +1,563 @@
/*
THIS IS A GENERATED/BUNDLED FILE BY ESBUILD
if you want to view the source, please visit the github repository of this plugin
*/
var __defProp = Object.defineProperty;
var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
var __getOwnPropNames = Object.getOwnPropertyNames;
var __hasOwnProp = Object.prototype.hasOwnProperty;
var __export = (target, all) => {
for (var name in all)
__defProp(target, name, { get: all[name], enumerable: true });
};
var __copyProps = (to, from, except, desc) => {
if (from && typeof from === "object" || typeof from === "function") {
for (let key of __getOwnPropNames(from))
if (!__hasOwnProp.call(to, key) && key !== except)
__defProp(to, key, { get: () => from[key], enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable });
}
return to;
};
var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: true }), mod);
var __async = (__this, __arguments, generator) => {
return new Promise((resolve, reject) => {
var fulfilled = (value) => {
try {
step(generator.next(value));
} catch (e) {
reject(e);
}
};
var rejected = (value) => {
try {
step(generator.throw(value));
} catch (e) {
reject(e);
}
};
var step = (x) => x.done ? resolve(x.value) : Promise.resolve(x.value).then(fulfilled, rejected);
step((generator = generator.apply(__this, __arguments)).next());
});
};
// src/main.ts
var main_exports = {};
__export(main_exports, {
default: () => ObsidianAutoCardLink
});
module.exports = __toCommonJS(main_exports);
var import_obsidian4 = require("obsidian");
// src/settings.ts
var import_obsidian = require("obsidian");
var DEFAULT_SETTINGS = {
showInMenuItem: true,
enhanceDefaultPaste: false
};
var ObsidianAutoCardLinkSettingTab = class extends import_obsidian.PluginSettingTab {
constructor(app, plugin) {
super(app, plugin);
this.plugin = plugin;
}
display() {
const { containerEl } = this;
containerEl.empty();
new import_obsidian.Setting(containerEl).setName("Enhance Default Paste").setDesc("Fetch the link metadata when pasting a url in the editor with the default paste command").addToggle((val) => {
if (!this.plugin.settings)
return;
return val.setValue(this.plugin.settings.enhanceDefaultPaste).onChange((value) => __async(this, null, function* () {
if (!this.plugin.settings)
return;
this.plugin.settings.enhanceDefaultPaste = value;
yield this.plugin.saveSettings();
}));
});
new import_obsidian.Setting(containerEl).setName("Add commands in menu item").setDesc("Whether to add commands in right click menu items").addToggle((val) => {
if (!this.plugin.settings)
return;
return val.setValue(this.plugin.settings.showInMenuItem).onChange((value) => __async(this, null, function* () {
if (!this.plugin.settings)
return;
this.plugin.settings.showInMenuItem = value;
yield this.plugin.saveSettings();
}));
});
}
};
// src/regex.ts
var urlRegex = /^(https?:\/\/(?:www\.|(?!www))[a-zA-Z0-9][a-zA-Z0-9-]+[a-zA-Z0-9]\.[^\s]{2,}|www\.[a-zA-Z0-9][a-zA-Z0-9-]+[a-zA-Z0-9]\.[^\s]{2,}|https?:\/\/(?:www\.|(?!www))[a-zA-Z0-9]+\.[^\s]{2,}|www\.[a-zA-Z0-9]+\.[^\s]{2,})$/i;
var lineRegex = /(https?:\/\/(?:www\.|(?!www))[a-zA-Z0-9][a-zA-Z0-9-]+[a-zA-Z0-9]\.[^\s]{2,}|www\.[a-zA-Z0-9][a-zA-Z0-9-]+[a-zA-Z0-9]\.[^\s]{2,}|https?:\/\/(?:www\.|(?!www))[a-zA-Z0-9]+\.[^\s]{2,}|www\.[a-zA-Z0-9]+\.[^\s]{2,})/gi;
var linkRegex = /^\[([^[\]]*)\]\((https?:\/\/(?:www\.|(?!www))[a-zA-Z0-9][a-zA-Z0-9-]+[a-zA-Z0-9]\.[^\s]{2,}|www\.[a-zA-Z0-9][a-zA-Z0-9-]+[a-zA-Z0-9]\.[^\s]{2,}|https?:\/\/(?:www\.|(?!www))[a-zA-Z0-9]+\.[^\s]{2,}|www\.[a-zA-Z0-9]+\.[^\s]{2,})\)$/i;
var linkLineRegex = /\[([^[\]]*)\]\((https?:\/\/(?:www\.|(?!www))[a-zA-Z0-9][a-zA-Z0-9-]+[a-zA-Z0-9]\.[^\s]{2,}|www\.[a-zA-Z0-9][a-zA-Z0-9-]+[a-zA-Z0-9]\.[^\s]{2,}|https?:\/\/(?:www\.|(?!www))[a-zA-Z0-9]+\.[^\s]{2,}|www\.[a-zA-Z0-9]+\.[^\s]{2,})\)/gi;
var imageRegex = /\.(gif|jpe?g|tiff?|png|webp|bmp|tga|psd|ai)$/i;
// src/editor_enhancements.ts
var EditorExtensions = class {
static getSelectedText(editor) {
if (!editor.somethingSelected()) {
const wordBoundaries = this.getWordBoundaries(editor);
editor.setSelection(wordBoundaries.start, wordBoundaries.end);
}
return editor.getSelection();
}
static isCursorWithinBoundaries(cursor, match) {
var _a;
const startIndex = (_a = match.index) != null ? _a : 0;
const endIndex = startIndex + match[0].length;
return startIndex <= cursor.ch && cursor.ch <= endIndex;
}
static getWordBoundaries(editor) {
var _a, _b;
const cursor = editor.getCursor();
const lineText = editor.getLine(cursor.line);
const linksInLine = lineText.matchAll(linkLineRegex);
for (const match of linksInLine) {
if (this.isCursorWithinBoundaries(cursor, match)) {
const startCh = (_a = match.index) != null ? _a : 0;
return {
start: {
line: cursor.line,
ch: startCh
},
end: { line: cursor.line, ch: startCh + match[0].length }
};
}
}
const urlsInLine = lineText.matchAll(lineRegex);
for (const match of urlsInLine) {
if (this.isCursorWithinBoundaries(cursor, match)) {
const startCh = (_b = match.index) != null ? _b : 0;
return {
start: { line: cursor.line, ch: startCh },
end: { line: cursor.line, ch: startCh + match[0].length }
};
}
}
return {
start: cursor,
end: cursor
};
}
static getEditorPositionFromIndex(content, index) {
const substr = content.substr(0, index);
let l = 0;
let offset = -1;
let r = -1;
for (; (r = substr.indexOf("\n", r + 1)) !== -1; l++, offset = r)
;
offset += 1;
const ch = content.substr(offset, index - offset).length;
return { line: l, ch };
}
};
// src/checkif.ts
var CheckIf = class {
static isUrl(text) {
const regex = new RegExp(urlRegex);
return regex.test(text);
}
static isImage(text) {
const regex = new RegExp(imageRegex);
return regex.test(text);
}
static isLinkedUrl(text) {
const regex = new RegExp(linkRegex);
return regex.test(text);
}
};
// src/code_block_generator.ts
var import_obsidian2 = require("obsidian");
// src/link_metadata_parser.ts
var LinkMetadataParser = class {
constructor(url, htmlText) {
this.url = url;
const parser = new DOMParser();
const htmlDoc = parser.parseFromString(htmlText, "text/html");
this.htmlDoc = htmlDoc;
}
parse() {
var _a, _b;
const title = (_a = this.getTitle()) == null ? void 0 : _a.replace(/\r\n|\n|\r/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 { hostname } = new URL(this.url);
const favicon = this.getFavicon();
const image = this.getImage();
return {
url: this.url,
title,
description,
host: hostname,
favicon,
image
};
}
getTitle() {
var _a, _b;
const ogTitle = (_a = this.htmlDoc.querySelector("meta[property='og:title']")) == null ? void 0 : _a.getAttr("content");
if (ogTitle)
return ogTitle;
const title = (_b = this.htmlDoc.querySelector("title")) == null ? void 0 : _b.textContent;
if (title)
return title;
}
getDescription() {
var _a, _b;
const ogDescription = (_a = this.htmlDoc.querySelector("meta[property='og:description']")) == null ? void 0 : _a.getAttr("content");
if (ogDescription)
return ogDescription;
const metaDescription = (_b = this.htmlDoc.querySelector("meta[name='description']")) == null ? void 0 : _b.getAttr("content");
if (metaDescription)
return metaDescription;
}
getFavicon() {
var _a;
const favicon = (_a = this.htmlDoc.querySelector("link[rel='icon']")) == null ? void 0 : _a.getAttr("href");
if (favicon)
return favicon;
}
getImage() {
var _a;
const ogImage = (_a = this.htmlDoc.querySelector("meta[property='og:image']")) == null ? void 0 : _a.getAttr("content");
if (ogImage)
return ogImage;
}
};
// src/code_block_generator.ts
var CodeBlockGenerator = class {
constructor(editor) {
this.editor = editor;
}
convertUrlToCodeBlock(url) {
return __async(this, null, function* () {
const selectedText = this.editor.getSelection();
const pasteId = this.createBlockHash();
const fetchingText = `[Fetching Data#${pasteId}](${url})`;
this.editor.replaceSelection(fetchingText);
const linkMetadata = yield this.fetchLinkMetadata(url);
const text = this.editor.getValue();
const start = text.indexOf(fetchingText);
if (start < 0) {
console.log(`Unable to find text "${fetchingText}" in current editor, bailing out; link ${url}`);
return;
}
const end = start + fetchingText.length;
const startPos = EditorExtensions.getEditorPositionFromIndex(text, start);
const endPos = EditorExtensions.getEditorPositionFromIndex(text, end);
if (!linkMetadata) {
new import_obsidian2.Notice("Couldn't fetch link metadata");
this.editor.replaceRange(selectedText || url, startPos, endPos);
return;
}
this.editor.replaceRange(this.genCodeBlock(linkMetadata), startPos, endPos);
});
}
genCodeBlock(linkMetadata) {
const codeBlockTexts = ["\n```cardlink"];
codeBlockTexts.push(`url: ${linkMetadata.url}`);
codeBlockTexts.push(`title: "${linkMetadata.title}"`);
if (linkMetadata.description)
codeBlockTexts.push(`description: "${linkMetadata.description}"`);
if (linkMetadata.host)
codeBlockTexts.push(`host: ${linkMetadata.host}`);
if (linkMetadata.favicon)
codeBlockTexts.push(`favicon: ${linkMetadata.favicon}`);
if (linkMetadata.image)
codeBlockTexts.push(`image: ${linkMetadata.image}`);
codeBlockTexts.push("```\n");
return codeBlockTexts.join("\n");
}
fetchLinkMetadata(url) {
return __async(this, null, function* () {
const res = yield (() => __async(this, null, function* () {
try {
return (0, import_obsidian2.requestUrl)({ url });
} catch (e) {
console.log(e);
return;
}
}))();
if (!res || res.status != 200) {
console.log(`bad response. response status code was ${res == null ? void 0 : res.status}`);
return;
}
const parser = new LinkMetadataParser(url, res.text);
return parser.parse();
});
}
createBlockHash() {
let result = "";
const characters = "abcdefghijklmnopqrstuvwxyz0123456789";
const charactersLength = characters.length;
for (let i = 0; i < 4; i++) {
result += characters.charAt(Math.floor(Math.random() * charactersLength));
}
return result;
}
};
// src/code_block_processor.ts
var import_obsidian3 = require("obsidian");
// src/errors.ts
var YamlParseError = class extends Error {
};
var NoRequiredParamsError = class extends Error {
};
// src/code_block_processor.ts
var CodeBlockProcessor = class {
constructor(app) {
this.app = app;
}
run(source, el) {
return __async(this, null, function* () {
try {
const data = this.parseLinkMetadataFromYaml(source);
el.appendChild(this.genLinkEl(data));
} catch (error) {
if (error instanceof NoRequiredParamsError) {
el.appendChild(this.genErrorEl(error.message));
} else if (error instanceof YamlParseError) {
el.appendChild(this.genErrorEl(error.message));
} else {
console.log("Code Block: cardlink unknown error", error);
}
}
});
}
parseLinkMetadataFromYaml(source) {
let yaml;
try {
yaml = (0, import_obsidian3.parseYaml)(source);
} catch (error) {
console.log(error);
throw new YamlParseError("failed to parse yaml. Check debug console for more detail.");
}
if (!yaml || !yaml.url || !yaml.title) {
throw new NoRequiredParamsError("required params[url, title] are not found.");
}
return {
url: yaml.url,
title: yaml.title,
description: yaml.description,
host: yaml.host,
favicon: yaml.favicon,
image: yaml.image
};
}
genErrorEl(errorMsg) {
const containerEl = document.createElement("div");
containerEl.addClass("auto-card-link-error-container");
const spanEl = document.createElement("span");
spanEl.textContent = `cardlink error: ${errorMsg}`;
containerEl.appendChild(spanEl);
return containerEl;
}
genLinkEl(data) {
const containerEl = document.createElement("div");
containerEl.addClass("auto-card-link-container");
const cardEl = document.createElement("a");
cardEl.addClass("auto-card-link-card");
cardEl.setAttr("href", data.url);
containerEl.appendChild(cardEl);
const mainEl = document.createElement("div");
mainEl.addClass("auto-card-link-main");
cardEl.appendChild(mainEl);
const titleEl = document.createElement("div");
titleEl.addClass("auto-card-link-title");
titleEl.textContent = data.title;
mainEl.appendChild(titleEl);
const descriptionEl = document.createElement("div");
descriptionEl.addClass("auto-card-link-description");
if (data.description) {
descriptionEl.textContent = data.description;
}
mainEl.appendChild(descriptionEl);
const hostEl = document.createElement("div");
hostEl.addClass("auto-card-link-host");
mainEl.appendChild(hostEl);
if (data.favicon) {
const faviconEl = document.createElement("img");
faviconEl.addClass("auto-card-link-favicon");
if (data.favicon) {
faviconEl.setAttr("src", data.favicon);
}
faviconEl.setAttr("width", 14);
faviconEl.setAttr("height", 14);
faviconEl.setAttr("alt", "");
hostEl.appendChild(faviconEl);
}
const hostNameEl = document.createElement("span");
if (data.host) {
hostNameEl.textContent = data.host;
}
hostEl.appendChild(hostNameEl);
const thumbnailEl = document.createElement("div");
thumbnailEl.addClass("auto-card-link-thumbnail");
cardEl.appendChild(thumbnailEl);
const thumbnailImgEl = document.createElement("img");
thumbnailImgEl.addClass("auto-card-link-thumbnail-img");
if (data.image) {
thumbnailImgEl.setAttr("src", data.image);
}
thumbnailImgEl.setAttr("alt", "");
thumbnailEl.appendChild(thumbnailImgEl);
return containerEl;
}
};
// src/main.ts
var ObsidianAutoCardLink = class extends import_obsidian4.Plugin {
constructor() {
super(...arguments);
this.onPaste = (evt, editor) => __async(this, null, function* () {
var _a;
if (!((_a = this.settings) == null ? void 0 : _a.enhanceDefaultPaste))
return;
if (!navigator.onLine)
return;
if (evt.clipboardData == null)
return;
if (evt.clipboardData.files.length > 0)
return;
const clipboardText = evt.clipboardData.getData("text/plain");
if (clipboardText == null || clipboardText == "")
return;
if (!CheckIf.isUrl(clipboardText) || CheckIf.isImage(clipboardText)) {
return;
}
evt.stopPropagation();
evt.preventDefault();
const codeBlockGenerator = new CodeBlockGenerator(editor);
yield codeBlockGenerator.convertUrlToCodeBlock(clipboardText);
return;
});
this.onEditorMenu = (menu) => {
var _a;
if (!((_a = this.settings) == null ? void 0 : _a.showInMenuItem))
return;
menu.addItem((item) => {
item.setTitle("Paste URL and enhance to card link").setIcon("paste").onClick(() => __async(this, null, function* () {
const editor = this.getEditor();
if (!editor)
return;
this.manualPasteAndEnhanceURL(editor);
}));
});
if (!navigator.onLine)
return;
menu.addItem((item) => {
item.setTitle("Enhance selected URL to card link").setIcon("link").onClick(() => {
const editor = this.getEditor();
if (!editor)
return;
this.enhanceSelectedURL(editor);
});
});
return;
};
}
onload() {
return __async(this, null, function* () {
yield this.loadSettings();
this.registerMarkdownCodeBlockProcessor("cardlink", (source, el) => __async(this, null, function* () {
const processor = new CodeBlockProcessor(this.app);
yield processor.run(source, el);
}));
this.addCommand({
id: "auto-card-link-paste-and-enhance",
name: "Paste URL and enhance to card link",
editorCallback: (editor) => __async(this, null, function* () {
yield this.manualPasteAndEnhanceURL(editor);
}),
hotkeys: []
});
this.addCommand({
id: "auto-card-link-enhance-selected-url",
name: "Enhance selected URL to card link",
editorCheckCallback: (checking, editor) => {
if (!navigator.onLine)
return false;
if (checking)
return true;
this.enhanceSelectedURL(editor);
},
hotkeys: [
{
modifiers: ["Mod", "Shift"],
key: "e"
}
]
});
this.registerEvent(this.app.workspace.on("editor-paste", this.onPaste));
this.registerEvent(this.app.workspace.on("editor-menu", this.onEditorMenu));
this.addSettingTab(new ObsidianAutoCardLinkSettingTab(this.app, this));
});
}
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);
}
}
manualPasteAndEnhanceURL(editor) {
return __async(this, null, function* () {
const clipboardText = yield navigator.clipboard.readText();
if (clipboardText == null || clipboardText == "") {
return;
}
if (!navigator.onLine) {
editor.replaceSelection(clipboardText);
return;
}
console.log(clipboardText);
console.log(CheckIf.isUrl(clipboardText));
if (!CheckIf.isUrl(clipboardText) || CheckIf.isImage(clipboardText)) {
editor.replaceSelection(clipboardText);
return;
}
const codeBlockGenerator = new CodeBlockGenerator(editor);
yield codeBlockGenerator.convertUrlToCodeBlock(clipboardText);
return;
});
}
getEditor() {
const view = this.app.workspace.getActiveViewOfType(import_obsidian4.MarkdownView);
if (!view)
return;
return view.editor;
}
getUrlFromLink(link) {
const urlRegex2 = new RegExp(linkRegex);
const regExpExecArray = urlRegex2.exec(link);
if (regExpExecArray === null || regExpExecArray.length < 2) {
return "";
}
return regExpExecArray[2];
}
onunload() {
console.log("unloading auto-card-link");
}
loadSettings() {
return __async(this, null, function* () {
this.settings = Object.assign({}, DEFAULT_SETTINGS, yield this.loadData());
});
}
saveSettings() {
return __async(this, null, function* () {
yield this.saveData(this.settings);
});
}
};

@ -0,0 +1,10 @@
{
"id": "auto-card-link",
"name": "Auto Card Link",
"version": "1.1.1",
"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
}

@ -0,0 +1,87 @@
.auto-card-link-container {
margin: 0 auto;
border: solid 1px rgba(92, 147, 187, 0.2);
border-radius: 8px;
overflow: hidden;
font-family: -apple-system, system-ui, BlinkMacSystemFont, "Segoe UI", "Helvetica Neue", Arial, sans-serif;
}
.auto-card-link-error-container {
max-width: 780px;
margin: 0 auto;
border-radius: 8px;
overflow: hidden;
font-family: -apple-system, system-ui, BlinkMacSystemFont, "Segoe UI", "Helvetica Neue", Arial, sans-serif;
background-color: rgb(255, 246, 228);
padding: 10px;
}
.auto-card-link-card {
display: flex;
align-items: center;
height: 120px;
line-height: 1.5;
transition: 0.2s;
color: rgba(0, 0, 0, 0.82);
text-decoration: none;
background: #fff;
cursor: pointer;
}
.auto-card-link-main {
flex: 1;
padding: 0.8em 1.2em;
min-width: 0;
}
.auto-card-link-title {
display: -webkit-box;
-webkit-box-orient: vertical;
-webkit-line-clamp: 2;
overflow-x: hidden;
overflow-y: hidden;
word-break: break-word;
margin: 0;
font-size: 1em !important;
max-height: 3.05em;
user-select: none;
}
.auto-card-link-description {
display: -webkit-box;
-webkit-box-orient: vertical;
-webkit-line-clamp: 3;
max-height: 4.65em;
overflow-x: hidden;
overflow-y: hidden;
margin-top: 0.5em;
color: #77838c;
font-size: 0.8em !important;
}
.auto-card-link-host {
margin-top: 0.5em;
font-size: 0.78em !important;
display: flex;
align-items: center;
text-overflow: ellipsis;
overflow: hidden;
white-space: nowrap;
}
.auto-card-link-favicon {
margin-right: 8px;
flex-shrink: 0;
}
.auto-card-link-thumbnail {
height: 120px;
max-width: 230px;
}
.auto-card-link-thumbnail-img {
object-fit: cover;
height: 100%;
flex-shrink: 0;
}

@ -1,11 +1,5 @@
{ {
"enabledButtons": [ "enabledButtons": [
{
"id": "templater-obsidian:insert-templater",
"icon": "feather-feather",
"name": "Templater: Open Insert Template modal",
"showButtons": "both"
},
{ {
"id": "obsidian-tasks-plugin:edit-task", "id": "obsidian-tasks-plugin:edit-task",
"icon": "number-list-glyph", "icon": "number-list-glyph",
@ -41,6 +35,12 @@
"icon": "audio-file", "icon": "audio-file",
"name": "PodNotes: Create Podcast Note", "name": "PodNotes: Create Podcast Note",
"showButtons": "both" "showButtons": "both"
},
{
"id": "auto-card-link:auto-card-link-paste-and-enhance",
"icon": "lucide-bookmark",
"name": "Auto Card Link: Paste URL and enhance to card link",
"showButtons": "both"
} }
], ],
"desktop": false, "desktop": false,

File diff suppressed because one or more lines are too long

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

@ -13,7 +13,7 @@
{ {
"path": "/", "path": "/",
"date": "2022-09-27", "date": "2022-09-27",
"size": 7419009 "size": 7446731
} }
], ],
"activityHistory": [ "activityHistory": [
@ -1062,7 +1062,7 @@
}, },
{ {
"date": "2022-09-27", "date": "2022-09-27",
"value": 15971 "value": 44077
} }
] ]
} }

File diff suppressed because one or more lines are too long

@ -4,7 +4,7 @@
"description": "Advanced modes for Obsidian URI", "description": "Advanced modes for Obsidian URI",
"isDesktopOnly": false, "isDesktopOnly": false,
"js": "main.js", "js": "main.js",
"version": "1.27.0", "version": "1.27.1",
"author": "Vinzent", "author": "Vinzent",
"authorUrl": "https://github.com/Vinzent03" "authorUrl": "https://github.com/Vinzent03"
} }

@ -557,7 +557,7 @@
"03.03 Food & Wine/Chocolate Chip Cookie.md": { "03.03 Food & Wine/Chocolate Chip Cookie.md": {
"size": 2109, "size": 2109,
"tags": 3, "tags": 3,
"links": 2 "links": 3
}, },
"03.03 Food & Wine/Aspargus Pasta.md": { "03.03 Food & Wine/Aspargus Pasta.md": {
"size": 4116, "size": 4116,
@ -577,7 +577,7 @@
"03.03 Food & Wine/Honeycomb-candy butter.md": { "03.03 Food & Wine/Honeycomb-candy butter.md": {
"size": 2475, "size": 2475,
"tags": 2, "tags": 2,
"links": 2 "links": 3
}, },
"03.03 Food & Wine/Chicken Fried Rice.md": { "03.03 Food & Wine/Chicken Fried Rice.md": {
"size": 3985, "size": 3985,
@ -597,7 +597,7 @@
"03.03 Food & Wine/Potato Hash with Fixins.md": { "03.03 Food & Wine/Potato Hash with Fixins.md": {
"size": 2683, "size": 2683,
"tags": 1, "tags": 1,
"links": 2 "links": 3
}, },
"03.03 Food & Wine/Indian Buttered Chicken.md": { "03.03 Food & Wine/Indian Buttered Chicken.md": {
"size": 3993, "size": 3993,
@ -637,7 +637,7 @@
"03.03 Food & Wine/Braised Short Ribs with Squash and Chile.md": { "03.03 Food & Wine/Braised Short Ribs with Squash and Chile.md": {
"size": 4092, "size": 4092,
"tags": 1, "tags": 1,
"links": 2 "links": 3
}, },
"03.03 Food & Wine/Thai Pork Rice Bowl.md": { "03.03 Food & Wine/Thai Pork Rice Bowl.md": {
"size": 3347, "size": 3347,
@ -657,7 +657,7 @@
"03.03 Food & Wine/Pancackes.md": { "03.03 Food & Wine/Pancackes.md": {
"size": 2061, "size": 2061,
"tags": 1, "tags": 1,
"links": 2 "links": 4
}, },
"03.03 Food & Wine/Tomato Salad.md": { "03.03 Food & Wine/Tomato Salad.md": {
"size": 2397, "size": 2397,
@ -707,7 +707,7 @@
"03.03 Food & Wine/Vanilla mashed potatoes.md": { "03.03 Food & Wine/Vanilla mashed potatoes.md": {
"size": 2383, "size": 2383,
"tags": 1, "tags": 1,
"links": 2 "links": 4
}, },
"03.03 Food & Wine/Spicy Pork Wontons.md": { "03.03 Food & Wine/Spicy Pork Wontons.md": {
"size": 3656, "size": 3656,
@ -782,7 +782,7 @@
"03.03 Food & Wine/Sheet-pan gnocchi.md": { "03.03 Food & Wine/Sheet-pan gnocchi.md": {
"size": 2710, "size": 2710,
"tags": 1, "tags": 1,
"links": 2 "links": 3
}, },
"03.03 Food & Wine/Loup de Mer Citron.md": { "03.03 Food & Wine/Loup de Mer Citron.md": {
"size": 2701, "size": 2701,
@ -802,7 +802,7 @@
"03.03 Food & Wine/Blueberry cheesecake.md": { "03.03 Food & Wine/Blueberry cheesecake.md": {
"size": 2483, "size": 2483,
"tags": 1, "tags": 1,
"links": 2 "links": 3
}, },
"03.03 Food & Wine/Sticky & Spicy Baked Cauliflower.md": { "03.03 Food & Wine/Sticky & Spicy Baked Cauliflower.md": {
"size": 2967, "size": 2967,
@ -817,7 +817,7 @@
"03.03 Food & Wine/Creamy Mushroom & Rice Soup.md": { "03.03 Food & Wine/Creamy Mushroom & Rice Soup.md": {
"size": 2562, "size": 2562,
"tags": 1, "tags": 1,
"links": 2 "links": 3
}, },
"03.03 Food & Wine/Beef Enchiladas.md": { "03.03 Food & Wine/Beef Enchiladas.md": {
"size": 3817, "size": 3817,
@ -847,12 +847,12 @@
"03.03 Food & Wine/Chicken Schnitzel.md": { "03.03 Food & Wine/Chicken Schnitzel.md": {
"size": 2366, "size": 2366,
"tags": 2, "tags": 2,
"links": 2 "links": 3
}, },
"03.03 Food & Wine/Hoppin' John.md": { "03.03 Food & Wine/Hoppin' John.md": {
"size": 3101, "size": 3101,
"tags": 3, "tags": 3,
"links": 2 "links": 3
}, },
"03.03 Food & Wine/Chilli Lime n Cumin Cod.md": { "03.03 Food & Wine/Chilli Lime n Cumin Cod.md": {
"size": 1954, "size": 1954,
@ -1560,7 +1560,7 @@
"links": 0 "links": 0
}, },
"00.01 Admin/Button gallery.md": { "00.01 Admin/Button gallery.md": {
"size": 423, "size": 557,
"tags": 0, "tags": 0,
"links": 0 "links": 0
}, },
@ -1910,7 +1910,7 @@
"links": 2 "links": 2
}, },
"01.02 Home/MRCK.md": { "01.02 Home/MRCK.md": {
"size": 5794, "size": 6790,
"tags": 1, "tags": 1,
"links": 7 "links": 7
}, },
@ -1932,7 +1932,7 @@
"03.03 Food & Wine/Braised Short Ribs w Curry Leaves.md": { "03.03 Food & Wine/Braised Short Ribs w Curry Leaves.md": {
"size": 4645, "size": 4645,
"tags": 1, "tags": 1,
"links": 2 "links": 3
}, },
"00.01 Admin/Templates/Template Daily.md": { "00.01 Admin/Templates/Template Daily.md": {
"size": 1210, "size": 1210,
@ -2022,12 +2022,12 @@
"03.03 Food & Wine/Torched Banana Cake.md": { "03.03 Food & Wine/Torched Banana Cake.md": {
"size": 3619, "size": 3619,
"tags": 1, "tags": 1,
"links": 2 "links": 3
}, },
"03.03 Food & Wine/Ultimate Sugar Cookies.md": { "03.03 Food & Wine/Ultimate Sugar Cookies.md": {
"size": 2938, "size": 2938,
"tags": 1, "tags": 1,
"links": 2 "links": 3
}, },
"00.04 IT/My First 5 Minutes On A Server; Or, Essential Security for Linux Servers Sol Love.md": { "00.04 IT/My First 5 Minutes On A Server; Or, Essential Security for Linux Servers Sol Love.md": {
"size": 7759, "size": 7759,
@ -2167,12 +2167,12 @@
"03.03 Food & Wine/Pastitsio.md": { "03.03 Food & Wine/Pastitsio.md": {
"size": 5779, "size": 5779,
"tags": 1, "tags": 1,
"links": 2 "links": 3
}, },
"03.03 Food & Wine/Peperoncini Chicken.md": { "03.03 Food & Wine/Peperoncini Chicken.md": {
"size": 3080, "size": 3080,
"tags": 1, "tags": 1,
"links": 2 "links": 3
}, },
"00.04 IT/Emulator files - Emulation General Wiki.md": { "00.04 IT/Emulator files - Emulation General Wiki.md": {
"size": 35085, "size": 35085,
@ -2227,7 +2227,7 @@
"03.03 Food & Wine/Harissa-Honey Popcorn Chicken.md": { "03.03 Food & Wine/Harissa-Honey Popcorn Chicken.md": {
"size": 4347, "size": 4347,
"tags": 1, "tags": 1,
"links": 2 "links": 3
}, },
"00.04 IT/Netflix categories codes - Find all categories codes.md": { "00.04 IT/Netflix categories codes - Find all categories codes.md": {
"size": 4729, "size": 4729,
@ -2257,7 +2257,7 @@
"03.03 Food & Wine/Churros with Bittersweet Chocolate Sauce.md": { "03.03 Food & Wine/Churros with Bittersweet Chocolate Sauce.md": {
"size": 4335, "size": 4335,
"tags": 0, "tags": 0,
"links": 2 "links": 3
}, },
"00.03 News/Lovemaking for longevity a recipe from Tokyos imperial archives Aeon Essays.md": { "00.03 News/Lovemaking for longevity a recipe from Tokyos imperial archives Aeon Essays.md": {
"size": 21130, "size": 21130,
@ -2627,7 +2627,7 @@
"03.03 Food & Wine/Banana Foster.md": { "03.03 Food & Wine/Banana Foster.md": {
"size": 3528, "size": 3528,
"tags": 1, "tags": 1,
"links": 2 "links": 3
}, },
"00.03 News/The improbable endless heroism of Volodymyr Zelensky.md": { "00.03 News/The improbable endless heroism of Volodymyr Zelensky.md": {
"size": 7507, "size": 7507,
@ -5752,7 +5752,7 @@
"01.02 Home/Life - Practical infos.md": { "01.02 Home/Life - Practical infos.md": {
"size": 1256, "size": 1256,
"tags": 0, "tags": 0,
"links": 6 "links": 9
}, },
"00.01 Admin/Calendars/2022-09-18.md": { "00.01 Admin/Calendars/2022-09-18.md": {
"size": 1196, "size": 1196,
@ -5807,7 +5807,7 @@
"00.03 News/Inside the Silent ADHD Epidemic Among Women.md": { "00.03 News/Inside the Silent ADHD Epidemic Among Women.md": {
"size": 21724, "size": 21724,
"tags": 4, "tags": 4,
"links": 1 "links": 2
}, },
"00.01 Admin/Calendars/2022-09-22.md": { "00.01 Admin/Calendars/2022-09-22.md": {
"size": 1136, "size": 1136,
@ -5815,7 +5815,7 @@
"links": 5 "links": 5
}, },
"00.01 Admin/Test Sheet 2.md": { "00.01 Admin/Test Sheet 2.md": {
"size": 539, "size": 703,
"tags": 0, "tags": 0,
"links": 0 "links": 0
}, },
@ -5867,7 +5867,7 @@
"00.03 News/What Makes Brain Fog So Unforgiving.md": { "00.03 News/What Makes Brain Fog So Unforgiving.md": {
"size": 20773, "size": 20773,
"tags": 2, "tags": 2,
"links": 1 "links": 2
}, },
"00.03 News/The Great Bluff How the Ukrainians Outwitted Putin's Army.md": { "00.03 News/The Great Bluff How the Ukrainians Outwitted Putin's Army.md": {
"size": 34174, "size": 34174,
@ -5877,7 +5877,7 @@
"00.03 News/In Hasidic Enclaves, Failing Yeshivas Flush With Public Money.md": { "00.03 News/In Hasidic Enclaves, Failing Yeshivas Flush With Public Money.md": {
"size": 39332, "size": 39332,
"tags": 3, "tags": 3,
"links": 1 "links": 2
}, },
"00.03 News/How Owamni Became the Best New Restaurant in the United States.md": { "00.03 News/How Owamni Became the Best New Restaurant in the United States.md": {
"size": 41473, "size": 41473,
@ -5887,7 +5887,7 @@
"00.03 News/The Sordid Saga of Hunter Bidens Laptop.md": { "00.03 News/The Sordid Saga of Hunter Bidens Laptop.md": {
"size": 74112, "size": 74112,
"tags": 3, "tags": 3,
"links": 1 "links": 2
}, },
"00.01 Admin/Calendars/2022-09-26.md": { "00.01 Admin/Calendars/2022-09-26.md": {
"size": 1212, "size": 1212,
@ -5983,14 +5983,59 @@
"size": 1215, "size": 1215,
"tags": 3, "tags": 3,
"links": 1 "links": 1
},
"00.03 News/The markets are in meltdown but at least Kwasi Kwartengs doomsday cult isnt to blame Marina Hyde.md": {
"size": 7687,
"tags": 3,
"links": 2
},
"00.01 Admin/Templates/NewBookmark.md": {
"size": 133,
"tags": 0,
"links": 0
},
"00.01 Admin/Templates/Template Bookmark.md": {
"size": 741,
"tags": 0,
"links": 1
},
"00.08 Bookmarks/Media.md": {
"size": 915,
"tags": 0,
"links": 3
},
"00.08 Bookmarks/Selfhosted Apps.md": {
"size": 5350,
"tags": 0,
"links": 2
},
"00.08 Bookmarks/Obsidian.md": {
"size": 1034,
"tags": 0,
"links": 2
},
"00.08 Bookmarks/Utilities.md": {
"size": 3987,
"tags": 0,
"links": 2
},
"00.08 Bookmarks/Admin & services.md": {
"size": 3294,
"tags": 0,
"links": 2
},
"00.08 Bookmarks/Webpages.md": {
"size": 1824,
"tags": 0,
"links": 2
} }
}, },
"commitTypes": { "commitTypes": {
"/": { "/": {
"Refactor": 902, "Refactor": 920,
"Create": 935, "Create": 949,
"Link": 1956, "Link": 1992,
"Expand": 857 "Expand": 885
} }
}, },
"dailyCommits": { "dailyCommits": {
@ -6012,19 +6057,19 @@
"14": 237, "14": 237,
"15": 246, "15": 246,
"16": 225, "16": 225,
"17": 210, "17": 215,
"18": 385, "18": 413,
"19": 208, "19": 222,
"20": 184, "20": 185,
"21": 146, "21": 146,
"22": 280, "22": 307,
"23": 115 "23": 136
} }
}, },
"weeklyCommits": { "weeklyCommits": {
"/": { "/": {
"Mon": 729, "Mon": 729,
"Tue": 679, "Tue": 775,
"Wed": 598, "Wed": 598,
"Thu": 416, "Thu": 416,
"Fri": 463, "Fri": 463,
@ -6035,6 +6080,34 @@
"recentCommits": { "recentCommits": {
"/": { "/": {
"Expanded": [ "Expanded": [
"<a class=\"internal-link\" href=\"00.08 Bookmarks/Utilities.md\"> Utilities </a>",
"<a class=\"internal-link\" href=\"00.08 Bookmarks/Selfhosted Apps.md\"> Selfhosted Apps </a>",
"<a class=\"internal-link\" href=\"00.08 Bookmarks/Obsidian.md\"> Obsidian </a>",
"<a class=\"internal-link\" href=\"00.08 Bookmarks/Webpages.md\"> Webpages </a>",
"<a class=\"internal-link\" href=\"00.08 Bookmarks/Utilities.md\"> Utilities </a>",
"<a class=\"internal-link\" href=\"00.08 Bookmarks/Admin & services.md\"> Admin & services </a>",
"<a class=\"internal-link\" href=\"00.08 Bookmarks/Webpages.md\"> Webpages </a>",
"<a class=\"internal-link\" href=\"00.08 Bookmarks/Utilities.md\"> Utilities </a>",
"<a class=\"internal-link\" href=\"00.08 Bookmarks/Selfhosted Apps.md\"> Selfhosted Apps </a>",
"<a class=\"internal-link\" href=\"00.08 Bookmarks/Admin & services.md\"> Admin & services </a>",
"<a class=\"internal-link\" href=\"00.08 Bookmarks/Selfhosted Apps.md\"> Selfhosted Apps </a>",
"<a class=\"internal-link\" href=\"00.08 Bookmarks/Admin & services.md\"> Admin & services </a>",
"<a class=\"internal-link\" href=\"00.08 Bookmarks/Utilities.md\"> Utilities </a>",
"<a class=\"internal-link\" href=\"00.08 Bookmarks/Selfhosted Apps.md\"> Selfhosted Apps </a>",
"<a class=\"internal-link\" href=\"Admin & services.md\"> Admin & services </a>",
"<a class=\"internal-link\" href=\"00.08 Bookmarks/Utilities.md\"> Utilities </a>",
"<a class=\"internal-link\" href=\"01.02 Home/MRCK.md\"> MRCK </a>",
"<a class=\"internal-link\" href=\"00.08 Bookmarks/Selfhosted Apps.md\"> Selfhosted Apps </a>",
"<a class=\"internal-link\" href=\"00.08 Bookmarks/Obsidian.md\"> Obsidian </a>",
"<a class=\"internal-link\" href=\"00.08 Bookmarks/Media.md\"> Media </a>",
"<a class=\"internal-link\" href=\"00.08 Bookmarks/Selfhosted Apps.md\"> Selfhosted Apps </a>",
"<a class=\"internal-link\" href=\"Media.md\"> Media </a>",
"<a class=\"internal-link\" href=\"00.08 Bookmarks/Test.md\"> Test </a>",
"<a class=\"internal-link\" href=\"00.01 Admin/Test Sheet 2.md\"> Test Sheet 2 </a>",
"<a class=\"internal-link\" href=\"00.01 Admin/Templates/NewBookmark.md\"> NewBookmark </a>",
"<a class=\"internal-link\" href=\"Template Bookmark.md\"> Template Bookmark </a>",
"<a class=\"internal-link\" href=\"00.01 Admin/Button gallery.md\"> Button gallery </a>",
"<a class=\"internal-link\" href=\"00.01 Admin/NewBookmark.md\"> NewBookmark </a>",
"<a class=\"internal-link\" href=\"03.02 Travels/Ticino.md\"> Ticino </a>", "<a class=\"internal-link\" href=\"03.02 Travels/Ticino.md\"> Ticino </a>",
"<a class=\"internal-link\" href=\"03.02 Travels/Palermo.md\"> Palermo </a>", "<a class=\"internal-link\" href=\"03.02 Travels/Palermo.md\"> Palermo </a>",
"<a class=\"internal-link\" href=\"03.02 Travels/Milan.md\"> Milan </a>", "<a class=\"internal-link\" href=\"03.02 Travels/Milan.md\"> Milan </a>",
@ -6057,37 +6130,23 @@
"<a class=\"internal-link\" href=\"00.01 Admin/Calendars/2022-08-30.md\"> 2022-08-30 </a>", "<a class=\"internal-link\" href=\"00.01 Admin/Calendars/2022-08-30.md\"> 2022-08-30 </a>",
"<a class=\"internal-link\" href=\"00.01 Admin/Calendars/2022-09-04.md\"> 2022-09-04 </a>", "<a class=\"internal-link\" href=\"00.01 Admin/Calendars/2022-09-04.md\"> 2022-09-04 </a>",
"<a class=\"internal-link\" href=\"00.01 Admin/Calendars/2022-08-22.md\"> 2022-08-22 </a>", "<a class=\"internal-link\" href=\"00.01 Admin/Calendars/2022-08-22.md\"> 2022-08-22 </a>",
"<a class=\"internal-link\" href=\"00.01 Admin/Calendars/2022-08-17.md\"> 2022-08-17 </a>", "<a class=\"internal-link\" href=\"00.01 Admin/Calendars/2022-08-17.md\"> 2022-08-17 </a>"
"<a class=\"internal-link\" href=\"00.01 Admin/Calendars/2022-08-25.md\"> 2022-08-25 </a>",
"<a class=\"internal-link\" href=\"00.01 Admin/Calendars/2022-11-10 Dinner @ Swiss Re.md\"> 2022-11-10 Dinner @ Swiss Re </a>",
"<a class=\"internal-link\" href=\"03.02 Travels/Nano Iturroz.md\"> Nano Iturroz </a>",
"<a class=\"internal-link\" href=\"03.02 Travels/Lucho Irazabal.md\"> Lucho Irazabal </a>",
"<a class=\"internal-link\" href=\"03.02 Travels/Lucho Irazabal.md\"> Lucho Irazabal </a>",
"<a class=\"internal-link\" href=\"03.02 Travels/Iridike Polo Club.md\"> Iridike Polo Club </a>",
"<a class=\"internal-link\" href=\"01.02 Home/Life - Practical infos.md\"> Life - Practical infos </a>",
"<a class=\"internal-link\" href=\"02.03 Zürich/Ace & Tate.md\"> Ace & Tate </a>",
"<a class=\"internal-link\" href=\"01.02 Home/Household.md\"> Household </a>",
"<a class=\"internal-link\" href=\"00.01 Admin/Test Sheet 2.md\"> Test Sheet 2 </a>",
"<a class=\"internal-link\" href=\"00.01 Admin/Calendars/2022-09-21.md\"> 2022-09-21 </a>",
"<a class=\"internal-link\" href=\"02.02 Paris/Paris SG.md\"> Paris SG </a>",
"<a class=\"internal-link\" href=\"02.03 Zürich/Francisco Podesta.md\"> Francisco Podesta </a>",
"<a class=\"internal-link\" href=\"02.03 Zürich/La Baracca.md\"> La Baracca </a>",
"<a class=\"internal-link\" href=\"02.03 Zürich/Bimi.md\"> Bimi </a>",
"<a class=\"internal-link\" href=\"02.03 Zürich/Luigia.md\"> Luigia </a>",
"<a class=\"internal-link\" href=\"00.01 Admin/Calendars/2022-09-18.md\"> 2022-09-18 </a>",
"<a class=\"internal-link\" href=\"@Useful tools.md\"> @Useful tools </a>",
"<a class=\"internal-link\" href=\"@Useful tools.md\"> @Useful tools </a>",
"<a class=\"internal-link\" href=\"00.01 Admin/Calendars/2022-09-18 Lyon - Paris SG.md\"> 2022-09-18 Lyon - Paris SG </a>",
"<a class=\"internal-link\" href=\"00.01 Admin/Calendars/2022-09-18 Lyon - Paris SG.md\"> 2022-09-18 Lyon - Paris SG </a>",
"<a class=\"internal-link\" href=\"05.02 Networks/Server VPN.md\"> Server VPN </a>",
"<a class=\"internal-link\" href=\"00.01 Admin/Calendars/2022-09-17.md\"> 2022-09-17 </a>",
"<a class=\"internal-link\" href=\"00.01 Admin/Calendars/2022-10-14 Weekend à GVA.md\"> 2022-10-14 Weekend à GVA </a>",
"<a class=\"internal-link\" href=\"00.01 Admin/Calendars/2023-02-11 Mariage Eloi & Zélie.md\"> 2023-02-11 Mariage Eloi & Zélie </a>",
"<a class=\"internal-link\" href=\"00.01 Admin/Calendars/2022-10-03 Meggi in Belfast.md\"> 2022-10-03 Meggi in Belfast </a>",
"<a class=\"internal-link\" href=\"00.01 Admin/Calendars/2022-10-07 Weekend in Belfast.md\"> 2022-10-07 Weekend in Belfast </a>",
"<a class=\"internal-link\" href=\"00.01 Admin/Calendars/2022-10-21 Depart pour Paris.md\"> 2022-10-21 Depart pour Paris </a>"
], ],
"Created": [ "Created": [
"<a class=\"internal-link\" href=\"Untitled.md\"> Untitled </a>",
"<a class=\"internal-link\" href=\"Untitled.md\"> Untitled </a>",
"<a class=\"internal-link\" href=\"Untitled.md\"> Untitled </a>",
"<a class=\"internal-link\" href=\"Untitled.md\"> Untitled </a>",
"<a class=\"internal-link\" href=\"Untitled.md\"> Untitled </a>",
"<a class=\"internal-link\" href=\"Untitled.md\"> Untitled </a>",
"<a class=\"internal-link\" href=\"Untitled.md\"> Untitled </a>",
"<a class=\"internal-link\" href=\"00.02 Inbox/GitHub - iptv-orgiptv Collection of publicly available IPTV channels from all over the world.md\"> GitHub - iptv-orgiptv Collection of publicly available IPTV channels from all over the world </a>",
"<a class=\"internal-link\" href=\"Test.md\"> Test </a>",
"<a class=\"internal-link\" href=\"Test.md\"> Test </a>",
"<a class=\"internal-link\" href=\"Untitled.md\"> Untitled </a>",
"<a class=\"internal-link\" href=\"Untitled.md\"> Untitled </a>",
"<a class=\"internal-link\" href=\"00.05 Media/The Daily - Putins Escalation of the War in Ukraine.md\"> The Daily - Putins Escalation of the War in Ukraine </a>",
"<a class=\"internal-link\" href=\"00.02 Inbox/The markets are in meltdown but at least Kwasi Kwartengs doomsday cult isnt to blame Marina Hyde.md\"> The markets are in meltdown but at least Kwasi Kwartengs doomsday cult isnt to blame Marina Hyde </a>",
"<a class=\"internal-link\" href=\"Untitled.md\"> Untitled </a>", "<a class=\"internal-link\" href=\"Untitled.md\"> Untitled </a>",
"<a class=\"internal-link\" href=\"Untitled.md\"> Untitled </a>", "<a class=\"internal-link\" href=\"Untitled.md\"> Untitled </a>",
"<a class=\"internal-link\" href=\"Untitled.md\"> Untitled </a>", "<a class=\"internal-link\" href=\"Untitled.md\"> Untitled </a>",
@ -6124,23 +6183,20 @@
"<a class=\"internal-link\" href=\"Untitled.md\"> Untitled </a>", "<a class=\"internal-link\" href=\"Untitled.md\"> Untitled </a>",
"<a class=\"internal-link\" href=\"Untitled.md\"> Untitled </a>", "<a class=\"internal-link\" href=\"Untitled.md\"> Untitled </a>",
"<a class=\"internal-link\" href=\"Zürich - Practical infos.md\"> Zürich - Practical infos </a>", "<a class=\"internal-link\" href=\"Zürich - Practical infos.md\"> Zürich - Practical infos </a>",
"<a class=\"internal-link\" href=\"Untitled.md\"> Untitled </a>", "<a class=\"internal-link\" href=\"Untitled.md\"> Untitled </a>"
"<a class=\"internal-link\" href=\"00.01 Admin/Calendars/2022-09-23.md\"> 2022-09-23 </a>",
"<a class=\"internal-link\" href=\"Untitled.md\"> Untitled </a>",
"<a class=\"internal-link\" href=\"00.05 Media/The Daily - Can the U.K. Remain United Without the Queen.md\"> The Daily - Can the U.K. Remain United Without the Queen </a>",
"<a class=\"internal-link\" href=\"00.05 Media/The Daily - Can the U.K. Remain United Without the Queen.md\"> The Daily - Can the U.K. Remain United Without the Queen </a>",
"<a class=\"internal-link\" href=\"00.05 Media/The Daily - Can the U.K. Remain United Without the Queen.md\"> The Daily - Can the U.K. Remain United Without the Queen </a>",
"<a class=\"internal-link\" href=\"00.01 Admin/Calendars/2022-09-22.md\"> 2022-09-22 </a>",
"<a class=\"internal-link\" href=\"00.02 Inbox/Inside the Silent ADHD Epidemic Among Women.md\"> Inside the Silent ADHD Epidemic Among Women </a>",
"<a class=\"internal-link\" href=\"00.02 Inbox/Nashville (1975).md\"> Nashville (1975) </a>",
"<a class=\"internal-link\" href=\"00.01 Admin/Calendars/2022-09-21.md\"> 2022-09-21 </a>",
"<a class=\"internal-link\" href=\"Untitled.md\"> Untitled </a>",
"<a class=\"internal-link\" href=\"00.01 Admin/Calendars/2022-09-20.md\"> 2022-09-20 </a>",
"<a class=\"internal-link\" href=\"2022-09-20.md\"> 2022-09-20 </a>",
"<a class=\"internal-link\" href=\"Untitled.md\"> Untitled </a>",
"<a class=\"internal-link\" href=\"00.01 Admin/Calendars/2022-09-19.md\"> 2022-09-19 </a>"
], ],
"Renamed": [ "Renamed": [
"<a class=\"internal-link\" href=\"00.08 Bookmarks/Webpages.md\"> Webpages </a>",
"<a class=\"internal-link\" href=\"00.08 Bookmarks/Admin & services.md\"> Admin & services </a>",
"<a class=\"internal-link\" href=\"00.08 Bookmarks/Utilities.md\"> Utilities </a>",
"<a class=\"internal-link\" href=\"00.08 Bookmarks/Obsidian.md\"> Obsidian </a>",
"<a class=\"internal-link\" href=\"00.08 Bookmarks/Selfhosted Apps.md\"> Selfhosted Apps </a>",
"<a class=\"internal-link\" href=\"00.08 Bookmarks/Media.md\"> Media </a>",
"<a class=\"internal-link\" href=\"00.08 Bookmarks/Test.md\"> Test </a>",
"<a class=\"internal-link\" href=\"00.01 Admin/Templates/Template Bookmark.md\"> Template Bookmark </a>",
"<a class=\"internal-link\" href=\"00.01 Admin/Templates/NewBookmark.md\"> NewBookmark </a>",
"<a class=\"internal-link\" href=\"00.01 Admin/NewBookmark.md\"> NewBookmark </a>",
"<a class=\"internal-link\" href=\"00.03 News/The markets are in meltdown but at least Kwasi Kwartengs doomsday cult isnt to blame Marina Hyde.md\"> The markets are in meltdown but at least Kwasi Kwartengs doomsday cult isnt to blame Marina Hyde </a>",
"<a class=\"internal-link\" href=\"03.02 Travels/Ticino.md\"> Ticino </a>", "<a class=\"internal-link\" href=\"03.02 Travels/Ticino.md\"> Ticino </a>",
"<a class=\"internal-link\" href=\"03.02 Travels/Milan.md\"> Milan </a>", "<a class=\"internal-link\" href=\"03.02 Travels/Milan.md\"> Milan </a>",
"<a class=\"internal-link\" href=\"03.02 Travels/Palermo.md\"> Palermo </a>", "<a class=\"internal-link\" href=\"03.02 Travels/Palermo.md\"> Palermo </a>",
@ -6180,20 +6236,10 @@
"<a class=\"internal-link\" href=\"00.06 Professional/@@Professional.md\"> @@Professional </a>", "<a class=\"internal-link\" href=\"00.06 Professional/@@Professional.md\"> @@Professional </a>",
"<a class=\"internal-link\" href=\"00.01 Admin/Calendars/2022-09-18 Lyon - Paris SG (0-1).md\"> 2022-09-18 Lyon - Paris SG (0-1) </a>", "<a class=\"internal-link\" href=\"00.01 Admin/Calendars/2022-09-18 Lyon - Paris SG (0-1).md\"> 2022-09-18 Lyon - Paris SG (0-1) </a>",
"<a class=\"internal-link\" href=\"00.01 Admin/Calendars/2022-09-18 ⚽ Lyon - Paris SG (0-1).md\"> 2022-09-18 ⚽ Lyon - Paris SG (0-1) </a>", "<a class=\"internal-link\" href=\"00.01 Admin/Calendars/2022-09-18 ⚽ Lyon - Paris SG (0-1).md\"> 2022-09-18 ⚽ Lyon - Paris SG (0-1) </a>",
"<a class=\"internal-link\" href=\"01.02 Home/Life - Practical infos.md\"> Life - Practical infos </a>", "<a class=\"internal-link\" href=\"01.02 Home/Life - Practical infos.md\"> Life - Practical infos </a>"
"<a class=\"internal-link\" href=\"00.01 Admin/Calendars/2023-02-11 Mariage Eloi & Zélie.md\"> 2023-02-11 Mariage Eloi & Zélie </a>",
"<a class=\"internal-link\" href=\"00.01 Admin/Calendars/2022-10-14 Weekend à GVA.md\"> 2022-10-14 Weekend à GVA </a>",
"<a class=\"internal-link\" href=\"00.01 Admin/Calendars/2022-10-16 Weekend à GVA.md\"> 2022-10-16 Weekend à GVA </a>",
"<a class=\"internal-link\" href=\"00.01 Admin/Calendars/2022-10-07 Weekend in Belfast.md\"> 2022-10-07 Weekend in Belfast </a>",
"<a class=\"internal-link\" href=\"00.01 Admin/Calendars/2022-10-03 Meggi in Belfast.md\"> 2022-10-03 Meggi in Belfast </a>",
"<a class=\"internal-link\" href=\"00.01 Admin/Calendars/2022-10-21 Weekend à Paris.md\"> 2022-10-21 Weekend à Paris </a>",
"<a class=\"internal-link\" href=\"00.01 Admin/Calendars/2023-09-08 Trip to NYC.md\"> 2023-09-08 Trip to NYC </a>",
"<a class=\"internal-link\" href=\"02.01 London/Ryan Anderson.md\"> Ryan Anderson </a>",
"<a class=\"internal-link\" href=\"02.01 London/Callum Anderson.md\"> Callum Anderson </a>",
"<a class=\"internal-link\" href=\"01.02 Home/Zürich - Practical infos.md\"> Zürich - Practical infos </a>",
"<a class=\"internal-link\" href=\"02.03 Zürich/Francisco Podesta.md\"> Francisco Podesta </a>"
], ],
"Tagged": [ "Tagged": [
"<a class=\"internal-link\" href=\"00.03 News/The markets are in meltdown but at least Kwasi Kwartengs doomsday cult isnt to blame Marina Hyde.md\"> The markets are in meltdown but at least Kwasi Kwartengs doomsday cult isnt to blame Marina Hyde </a>",
"<a class=\"internal-link\" href=\"03.02 Travels/Ticino.md\"> Ticino </a>", "<a class=\"internal-link\" href=\"03.02 Travels/Ticino.md\"> Ticino </a>",
"<a class=\"internal-link\" href=\"03.02 Travels/Milan.md\"> Milan </a>", "<a class=\"internal-link\" href=\"03.02 Travels/Milan.md\"> Milan </a>",
"<a class=\"internal-link\" href=\"03.02 Travels/Palermo.md\"> Palermo </a>", "<a class=\"internal-link\" href=\"03.02 Travels/Palermo.md\"> Palermo </a>",
@ -6243,10 +6289,11 @@
"<a class=\"internal-link\" href=\"02.03 Zürich/Le Mezzerie.md\"> Le Mezzerie </a>", "<a class=\"internal-link\" href=\"02.03 Zürich/Le Mezzerie.md\"> Le Mezzerie </a>",
"<a class=\"internal-link\" href=\"02.03 Zürich/La Stanza.md\"> La Stanza </a>", "<a class=\"internal-link\" href=\"02.03 Zürich/La Stanza.md\"> La Stanza </a>",
"<a class=\"internal-link\" href=\"02.03 Zürich/Kiosk.md\"> Kiosk </a>", "<a class=\"internal-link\" href=\"02.03 Zürich/Kiosk.md\"> Kiosk </a>",
"<a class=\"internal-link\" href=\"02.03 Zürich/Schluessel.md\"> Schluessel </a>", "<a class=\"internal-link\" href=\"02.03 Zürich/Schluessel.md\"> Schluessel </a>"
"<a class=\"internal-link\" href=\"02.03 Zürich/La Réserve.md\"> La Réserve </a>"
], ],
"Refactored": [ "Refactored": [
"<a class=\"internal-link\" href=\"00.01 Admin/Templates/NewBookmark.md\"> NewBookmark </a>",
"<a class=\"internal-link\" href=\"00.01 Admin/NewBookmark.md\"> NewBookmark </a>",
"<a class=\"internal-link\" href=\"03.02 Travels/@Short breaks.md\"> @Short breaks </a>", "<a class=\"internal-link\" href=\"03.02 Travels/@Short breaks.md\"> @Short breaks </a>",
"<a class=\"internal-link\" href=\"03.02 Travels/Florence.md\"> Florence </a>", "<a class=\"internal-link\" href=\"03.02 Travels/Florence.md\"> Florence </a>",
"<a class=\"internal-link\" href=\"03.02 Travels/@Short breaks.md\"> @Short breaks </a>", "<a class=\"internal-link\" href=\"03.02 Travels/@Short breaks.md\"> @Short breaks </a>",
@ -6295,11 +6342,14 @@
"<a class=\"internal-link\" href=\"05.02 Networks/Configuring Prometheus.md\"> Configuring Prometheus </a>", "<a class=\"internal-link\" href=\"05.02 Networks/Configuring Prometheus.md\"> Configuring Prometheus </a>",
"<a class=\"internal-link\" href=\"05.02 Networks/Configuring Prometheus.md\"> Configuring Prometheus </a>", "<a class=\"internal-link\" href=\"05.02 Networks/Configuring Prometheus.md\"> Configuring Prometheus </a>",
"<a class=\"internal-link\" href=\"05.02 Networks/Configuring Prometheus.md\"> Configuring Prometheus </a>", "<a class=\"internal-link\" href=\"05.02 Networks/Configuring Prometheus.md\"> Configuring Prometheus </a>",
"<a class=\"internal-link\" href=\"05.02 Networks/Installer Node Exporte... Doc SysNetAdmin.md\"> Installer Node Exporte... Doc SysNetAdmin </a>", "<a class=\"internal-link\" href=\"05.02 Networks/Installer Node Exporte... Doc SysNetAdmin.md\"> Installer Node Exporte... Doc SysNetAdmin </a>"
"<a class=\"internal-link\" href=\"00.02 Inbox/Churros with Bittersweet Chocolate Sauce.md\"> Churros with Bittersweet Chocolate Sauce </a>",
"<a class=\"internal-link\" href=\"03.03 Food & Wine/Big Shells With Spicy Lamb Sausage and Pistachios.md\"> Big Shells With Spicy Lamb Sausage and Pistachios </a>"
], ],
"Deleted": [ "Deleted": [
"<a class=\"internal-link\" href=\"00.08 Bookmarks/Test.md\"> Test </a>",
"<a class=\"internal-link\" href=\"00.02 Inbox/GitHub - iptv-orgiptv Collection of publicly available IPTV channels from all over the world.md\"> GitHub - iptv-orgiptv Collection of publicly available IPTV channels from all over the world </a>",
"<a class=\"internal-link\" href=\"Test.md\"> Test </a>",
"<a class=\"internal-link\" href=\"Test.md\"> Test </a>",
"<a class=\"internal-link\" href=\"00.05 Media/The Daily - Putins Escalation of the War in Ukraine.md\"> The Daily - Putins Escalation of the War in Ukraine </a>",
"<a class=\"internal-link\" href=\"00.02 Inbox/You're Not Addicted to Technology. Here's What's Happening Instead..md\"> You're Not Addicted to Technology. Here's What's Happening Instead. </a>", "<a class=\"internal-link\" href=\"00.02 Inbox/You're Not Addicted to Technology. Here's What's Happening Instead..md\"> You're Not Addicted to Technology. Here's What's Happening Instead. </a>",
"<a class=\"internal-link\" href=\"00.02 Inbox/You're Not Addicted to Technology. Here's What's Happening Instead..md\"> You're Not Addicted to Technology. Here's What's Happening Instead. </a>", "<a class=\"internal-link\" href=\"00.02 Inbox/You're Not Addicted to Technology. Here's What's Happening Instead..md\"> You're Not Addicted to Technology. Here's What's Happening Instead. </a>",
"<a class=\"internal-link\" href=\"hashcat - advanced password recovery.md\"> hashcat - advanced password recovery </a>", "<a class=\"internal-link\" href=\"hashcat - advanced password recovery.md\"> hashcat - advanced password recovery </a>",
@ -6345,14 +6395,44 @@
"<a class=\"internal-link\" href=\"00.05 Media/You Must Remember This - 1989 sex lies and videotape Rob Lowe and James Spader (Erotic 80s Part 12).md\"> You Must Remember This - 1989 sex lies and videotape Rob Lowe and James Spader (Erotic 80s Part 12) </a>", "<a class=\"internal-link\" href=\"00.05 Media/You Must Remember This - 1989 sex lies and videotape Rob Lowe and James Spader (Erotic 80s Part 12).md\"> You Must Remember This - 1989 sex lies and videotape Rob Lowe and James Spader (Erotic 80s Part 12) </a>",
"<a class=\"internal-link\" href=\"00.05 Media/You Must Remember This - 1989 sex lies and videotape Rob Lowe and James Spader (Erotic 80s Part 12).md\"> You Must Remember This - 1989 sex lies and videotape Rob Lowe and James Spader (Erotic 80s Part 12) </a>", "<a class=\"internal-link\" href=\"00.05 Media/You Must Remember This - 1989 sex lies and videotape Rob Lowe and James Spader (Erotic 80s Part 12).md\"> You Must Remember This - 1989 sex lies and videotape Rob Lowe and James Spader (Erotic 80s Part 12) </a>",
"<a class=\"internal-link\" href=\"Romain Gary 2.md\"> Romain Gary 2 </a>", "<a class=\"internal-link\" href=\"Romain Gary 2.md\"> Romain Gary 2 </a>",
"<a class=\"internal-link\" href=\"00.05 Media/You Must Remember This - 1989 sex lies and videotape Rob Lowe and James Spader (Erotic 80s Part 12).md\"> You Must Remember This - 1989 sex lies and videotape Rob Lowe and James Spader (Erotic 80s Part 12) </a>", "<a class=\"internal-link\" href=\"00.05 Media/You Must Remember This - 1989 sex lies and videotape Rob Lowe and James Spader (Erotic 80s Part 12).md\"> You Must Remember This - 1989 sex lies and videotape Rob Lowe and James Spader (Erotic 80s Part 12) </a>"
"<a class=\"internal-link\" href=\"00.05 Media/You Must Remember This - 1989 sex lies and videotape Rob Lowe and James Spader (Erotic 80s Part 12).md\"> You Must Remember This - 1989 sex lies and videotape Rob Lowe and James Spader (Erotic 80s Part 12) </a>",
"<a class=\"internal-link\" href=\"00.02 Inbox/Screw This City Theres Never Been a Worse Time to Rent an Apartment in NYC.md\"> Screw This City Theres Never Been a Worse Time to Rent an Apartment in NYC </a>",
"<a class=\"internal-link\" href=\"00.05 Media/Renegades Born in the USA - Our Unlikely Friendship.md\"> Renegades Born in the USA - Our Unlikely Friendship </a>",
"<a class=\"internal-link\" href=\"ReadItLater.md\"> ReadItLater </a>",
"<a class=\"internal-link\" href=\"ReadItLater.md\"> ReadItLater </a>"
], ],
"Linked": [ "Linked": [
"<a class=\"internal-link\" href=\"00.08 Bookmarks/Webpages.md\"> Webpages </a>",
"<a class=\"internal-link\" href=\"00.08 Bookmarks/Admin & services.md\"> Admin & services </a>",
"<a class=\"internal-link\" href=\"00.08 Bookmarks/Media.md\"> Media </a>",
"<a class=\"internal-link\" href=\"00.08 Bookmarks/Utilities.md\"> Utilities </a>",
"<a class=\"internal-link\" href=\"00.08 Bookmarks/Obsidian.md\"> Obsidian </a>",
"<a class=\"internal-link\" href=\"00.08 Bookmarks/Media.md\"> Media </a>",
"<a class=\"internal-link\" href=\"00.08 Bookmarks/Selfhosted Apps.md\"> Selfhosted Apps </a>",
"<a class=\"internal-link\" href=\"00.03 News/The Sordid Saga of Hunter Bidens Laptop.md\"> The Sordid Saga of Hunter Bidens Laptop </a>",
"<a class=\"internal-link\" href=\"01.02 Home/Life - Practical infos.md\"> Life - Practical infos </a>",
"<a class=\"internal-link\" href=\"00.01 Admin/Templates/Template Bookmark.md\"> Template Bookmark </a>",
"<a class=\"internal-link\" href=\"03.03 Food & Wine/Pastitsio.md\"> Pastitsio </a>",
"<a class=\"internal-link\" href=\"03.03 Food & Wine/Creamy Mushroom & Rice Soup.md\"> Creamy Mushroom & Rice Soup </a>",
"<a class=\"internal-link\" href=\"03.03 Food & Wine/Vanilla mashed potatoes.md\"> Vanilla mashed potatoes </a>",
"<a class=\"internal-link\" href=\"03.03 Food & Wine/Pancackes.md\"> Pancackes </a>",
"<a class=\"internal-link\" href=\"03.03 Food & Wine/Chocolate Chip Cookie.md\"> Chocolate Chip Cookie </a>",
"<a class=\"internal-link\" href=\"03.03 Food & Wine/Braised Short Ribs w Curry Leaves.md\"> Braised Short Ribs w Curry Leaves </a>",
"<a class=\"internal-link\" href=\"03.03 Food & Wine/Blueberry cheesecake.md\"> Blueberry cheesecake </a>",
"<a class=\"internal-link\" href=\"03.03 Food & Wine/Sheet-pan gnocchi.md\"> Sheet-pan gnocchi </a>",
"<a class=\"internal-link\" href=\"03.03 Food & Wine/Torched Banana Cake.md\"> Torched Banana Cake </a>",
"<a class=\"internal-link\" href=\"03.03 Food & Wine/Harissa-Honey Popcorn Chicken.md\"> Harissa-Honey Popcorn Chicken </a>",
"<a class=\"internal-link\" href=\"03.03 Food & Wine/Vanilla mashed potatoes.md\"> Vanilla mashed potatoes </a>",
"<a class=\"internal-link\" href=\"03.03 Food & Wine/Pancackes.md\"> Pancackes </a>",
"<a class=\"internal-link\" href=\"03.03 Food & Wine/Braised Short Ribs with Squash and Chile.md\"> Braised Short Ribs with Squash and Chile </a>",
"<a class=\"internal-link\" href=\"03.03 Food & Wine/Potato Hash with Fixins.md\"> Potato Hash with Fixins </a>",
"<a class=\"internal-link\" href=\"03.03 Food & Wine/Banana Foster.md\"> Banana Foster </a>",
"<a class=\"internal-link\" href=\"03.03 Food & Wine/Honeycomb-candy butter.md\"> Honeycomb-candy butter </a>",
"<a class=\"internal-link\" href=\"03.03 Food & Wine/Ultimate Sugar Cookies.md\"> Ultimate Sugar Cookies </a>",
"<a class=\"internal-link\" href=\"03.03 Food & Wine/Hoppin' John.md\"> Hoppin' John </a>",
"<a class=\"internal-link\" href=\"03.03 Food & Wine/Chicken Schnitzel.md\"> Chicken Schnitzel </a>",
"<a class=\"internal-link\" href=\"03.03 Food & Wine/Peperoncini Chicken.md\"> Peperoncini Chicken </a>",
"<a class=\"internal-link\" href=\"03.03 Food & Wine/Churros with Bittersweet Chocolate Sauce.md\"> Churros with Bittersweet Chocolate Sauce </a>",
"<a class=\"internal-link\" href=\"00.03 News/Inside the Silent ADHD Epidemic Among Women.md\"> Inside the Silent ADHD Epidemic Among Women </a>",
"<a class=\"internal-link\" href=\"00.03 News/In Hasidic Enclaves, Failing Yeshivas Flush With Public Money.md\"> In Hasidic Enclaves, Failing Yeshivas Flush With Public Money </a>",
"<a class=\"internal-link\" href=\"00.03 News/What Makes Brain Fog So Unforgiving.md\"> What Makes Brain Fog So Unforgiving </a>",
"<a class=\"internal-link\" href=\"00.03 News/The markets are in meltdown but at least Kwasi Kwartengs doomsday cult isnt to blame Marina Hyde.md\"> The markets are in meltdown but at least Kwasi Kwartengs doomsday cult isnt to blame Marina Hyde </a>",
"<a class=\"internal-link\" href=\"03.02 Travels/Ticino.md\"> Ticino </a>", "<a class=\"internal-link\" href=\"03.02 Travels/Ticino.md\"> Ticino </a>",
"<a class=\"internal-link\" href=\"03.02 Travels/Palermo.md\"> Palermo </a>", "<a class=\"internal-link\" href=\"03.02 Travels/Palermo.md\"> Palermo </a>",
"<a class=\"internal-link\" href=\"03.02 Travels/Milan.md\"> Milan </a>", "<a class=\"internal-link\" href=\"03.02 Travels/Milan.md\"> Milan </a>",
@ -6368,42 +6448,7 @@
"<a class=\"internal-link\" href=\"03.02 Travels/@Italy.md\"> @Italy </a>", "<a class=\"internal-link\" href=\"03.02 Travels/@Italy.md\"> @Italy </a>",
"<a class=\"internal-link\" href=\"00.01 Admin/Calendars/2022-09-27.md\"> 2022-09-27 </a>", "<a class=\"internal-link\" href=\"00.01 Admin/Calendars/2022-09-27.md\"> 2022-09-27 </a>",
"<a class=\"internal-link\" href=\"Al Hossoun.md\"> Al Hossoun </a>", "<a class=\"internal-link\" href=\"Al Hossoun.md\"> Al Hossoun </a>",
"<a class=\"internal-link\" href=\"03.02 Travels/Ethiopian holiday.md\"> Ethiopian holiday </a>", "<a class=\"internal-link\" href=\"03.02 Travels/Ethiopian holiday.md\"> Ethiopian holiday </a>"
"<a class=\"internal-link\" href=\"03.02 Travels/RSA - Wine region.md\"> RSA - Wine region </a>",
"<a class=\"internal-link\" href=\"03.02 Travels/@Africa.md\"> @Africa </a>",
"<a class=\"internal-link\" href=\"03.02 Travels/Aire de Bardenas.md\"> Aire de Bardenas </a>",
"<a class=\"internal-link\" href=\"00.03 News/The super-rich preppers planning to save themselves from the apocalypse.md\"> The super-rich preppers planning to save themselves from the apocalypse </a>",
"<a class=\"internal-link\" href=\"00.03 News/How Owamni Became the Best New Restaurant in the United States.md\"> How Owamni Became the Best New Restaurant in the United States </a>",
"<a class=\"internal-link\" href=\"03.02 Travels/Jazz Route (US).md\"> Jazz Route (US) </a>",
"<a class=\"internal-link\" href=\"03.02 Travels/@United States.md\"> @United States </a>",
"<a class=\"internal-link\" href=\"03.02 Travels/@Spain.md\"> @Spain </a>",
"<a class=\"internal-link\" href=\"03.02 Travels/Iridike Polo Club.md\"> Iridike Polo Club </a>",
"<a class=\"internal-link\" href=\"03.02 Travels/Lucho Irazabal.md\"> Lucho Irazabal </a>",
"<a class=\"internal-link\" href=\"03.02 Travels/Nano Iturroz.md\"> Nano Iturroz </a>",
"<a class=\"internal-link\" href=\"03.02 Travels/Owamni.md\"> Owamni </a>",
"<a class=\"internal-link\" href=\"00.03 News/How Owamni Became the Best New Restaurant in the United States.md\"> How Owamni Became the Best New Restaurant in the United States </a>",
"<a class=\"internal-link\" href=\"Owamni.md\"> Owamni </a>",
"<a class=\"internal-link\" href=\"00.03 News/The Great Bluff How the Ukrainians Outwitted Putin's Army.md\"> The Great Bluff How the Ukrainians Outwitted Putin's Army </a>",
"<a class=\"internal-link\" href=\"00.01 Admin/Calendars/2022-09-26.md\"> 2022-09-26 </a>",
"<a class=\"internal-link\" href=\"00.01 Admin/Calendars/2022-09-25.md\"> 2022-09-25 </a>",
"<a class=\"internal-link\" href=\"00.03 News/The Sordid Saga of Hunter Bidens Laptop.md\"> The Sordid Saga of Hunter Bidens Laptop </a>",
"<a class=\"internal-link\" href=\"00.02 Inbox/How Owamni Became the Best New Restaurant in the United States.md\"> How Owamni Became the Best New Restaurant in the United States </a>",
"<a class=\"internal-link\" href=\"00.03 News/In Hasidic Enclaves, Failing Yeshivas Flush With Public Money.md\"> In Hasidic Enclaves, Failing Yeshivas Flush With Public Money </a>",
"<a class=\"internal-link\" href=\"00.02 Inbox/The Great Bluff How the Ukrainians Outwitted Putin's Army.md\"> The Great Bluff How the Ukrainians Outwitted Putin's Army </a>",
"<a class=\"internal-link\" href=\"00.03 News/The super-rich preppers planning to save themselves from the apocalypse.md\"> The super-rich preppers planning to save themselves from the apocalypse </a>",
"<a class=\"internal-link\" href=\"00.03 News/What Makes Brain Fog So Unforgiving.md\"> What Makes Brain Fog So Unforgiving </a>",
"<a class=\"internal-link\" href=\"00.01 Admin/Calendars/2022-09-25.md\"> 2022-09-25 </a>",
"<a class=\"internal-link\" href=\"00.01 Admin/Calendars/2022-09-25.md\"> 2022-09-25 </a>",
"<a class=\"internal-link\" href=\"00.01 Admin/Calendars/2022-09-24.md\"> 2022-09-24 </a>",
"<a class=\"internal-link\" href=\"00.01 Admin/Calendars/2022-11-10 Dinner @ Swiss Re.md\"> 2022-11-10 Dinner @ Swiss Re </a>",
"<a class=\"internal-link\" href=\"00.01 Admin/Calendars/2022-09-24.md\"> 2022-09-24 </a>",
"<a class=\"internal-link\" href=\"00.01 Admin/Calendars/2022-07-16.md\"> 2022-07-16 </a>",
"<a class=\"internal-link\" href=\"03.02 Travels/Nano Iturroz.md\"> Nano Iturroz </a>",
"<a class=\"internal-link\" href=\"03.02 Travels/Lucho Irazabal.md\"> Lucho Irazabal </a>",
"<a class=\"internal-link\" href=\"00.01 Admin/Calendars/2022-09-23.md\"> 2022-09-23 </a>",
"<a class=\"internal-link\" href=\"03.02 Travels/Iridike Polo Club.md\"> Iridike Polo Club </a>",
"<a class=\"internal-link\" href=\"01.02 Home/Life - Practical infos.md\"> Life - Practical infos </a>",
"<a class=\"internal-link\" href=\"02.03 Zürich/Ace & Tate.md\"> Ace & Tate </a>"
], ],
"Removed Tags from": [ "Removed Tags from": [
"<a class=\"internal-link\" href=\"06.02 Investments/Le Miel de Paris.md\"> Le Miel de Paris </a>", "<a class=\"internal-link\" href=\"06.02 Investments/Le Miel de Paris.md\"> Le Miel de Paris </a>",

File diff suppressed because one or more lines are too long

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

@ -398,17 +398,17 @@
{ {
"title": ":birthday: **[[MRCK|Meggi-mo]]'s Papa** (1962)", "title": ":birthday: **[[MRCK|Meggi-mo]]'s Papa** (1962)",
"time": "2023-02-02", "time": "2023-02-02",
"rowNumber": 266 "rowNumber": 277
}, },
{ {
"title": ":birthday: **[[MRCK|Meggi-mo]]**", "title": ":birthday: **[[MRCK|Meggi-mo]]**",
"time": "2023-02-28", "time": "2023-02-28",
"rowNumber": 264 "rowNumber": 275
}, },
{ {
"title": "[[MRCK|Meggi-mo]] Saint Patrick's Day", "title": "[[MRCK|Meggi-mo]] Saint Patrick's Day",
"time": "2023-03-17", "time": "2023-03-17",
"rowNumber": 268 "rowNumber": 279
} }
], ],
"01.03 Family/Thaïs Bédier.md": [ "01.03 Family/Thaïs Bédier.md": [

File diff suppressed because one or more lines are too long

@ -0,0 +1,10 @@
{
"id": "obsidian-rich-links",
"name": "Rich Links",
"version": "1.1.0",
"minAppVersion": "0.9.12",
"description": "Rich Links plugin for Obsidian.",
"author": "Asad Dhamani",
"authorUrl": "https://www.asad.pw",
"isDesktopOnly": false
}

@ -0,0 +1,76 @@
.rich-link-card {
border: 1px solid var(--background-modifier-border);
margin: 20px 0;
border-radius: 3px;
width: 100%;
display: flex;
text-decoration: none;
background-color: var(--background-primary);
}
.rich-link-card-container {
position: relative;
}
.rich-link-card-container::after {
position: absolute;
content: " ";
width: 100%;
height: 1px;
background-color: var(--background-modifier-border);
bottom: -10px;
}
.rich-link-card .rich-link-image-container {
height: 100px;
width: 35%;
min-width: 120px;
overflow: hidden;
border-right: 1px solid var(--background-modifier-border);
}
.rich-link-card .rich-link-image {
background-position: center center;
background-size: cover;
background-repeat: no-repeat;
padding-bottom: 100px;
background-color: var(--background-secondary);
}
.rich-link-card .rich-link-card-text {
padding: 4px;
width: 75%;
}
.rich-link-card .rich-link-card-title {
font-family: sans-serif;
font-size: 16px;
margin: 0 0 4px 0;
display: -webkit-box;
-webkit-line-clamp: 1;
-webkit-box-orient: vertical;
overflow: hidden;
color: var(--text-normal);
}
.rich-link-card .rich-link-card-description {
font-family: sans-serif;
font-size: 14px;
margin: 0;
color: var(--text-muted);
display: -webkit-box;
-webkit-line-clamp: 2;
-webkit-box-orient: vertical;
overflow: hidden;
}
.rich-link-card .rich-link-href {
font-family: sans-serif;
font-size: 14px;
margin: 0;
color: var(--text-faint);
display: -webkit-box;
-webkit-line-clamp: 1;
-webkit-box-orient: vertical;
overflow: hidden;
}

@ -33,6 +33,11 @@ div[data-path="00.07 Wiki"] .nav-folder-title-content::before
content: "📚 "; content: "📚 ";
} }
div[data-path="00.08 Bookmarks"] .nav-folder-title-content::before
{
content: "🔖 ";
}
div[data-path="01.02 Home"] .nav-folder-title-content::before div[data-path="01.02 Home"] .nav-folder-title-content::before
{ {
content: "🏡 "; content: "🏡 ";

@ -4,12 +4,12 @@
"type": "split", "type": "split",
"children": [ "children": [
{ {
"id": "0811ffa51c913805", "id": "5b3296942d9c1e2e",
"type": "leaf", "type": "leaf",
"state": { "state": {
"type": "markdown", "type": "markdown",
"state": { "state": {
"file": "01.02 Home/@Main Dashboard.md", "file": "00.01 Admin/Obsidian plugins.md",
"mode": "preview", "mode": "preview",
"source": false "source": false
} }
@ -69,7 +69,7 @@
"state": { "state": {
"type": "backlink", "type": "backlink",
"state": { "state": {
"file": "01.02 Home/@Main Dashboard.md", "file": "00.01 Admin/Obsidian plugins.md",
"collapseAll": false, "collapseAll": false,
"extraContext": false, "extraContext": false,
"sortOrder": "alphabetical", "sortOrder": "alphabetical",
@ -86,7 +86,7 @@
"state": { "state": {
"type": "outgoing-link", "type": "outgoing-link",
"state": { "state": {
"file": "01.02 Home/@Main Dashboard.md", "file": "00.01 Admin/Obsidian plugins.md",
"linksCollapsed": false, "linksCollapsed": false,
"unlinkedCollapsed": false "unlinkedCollapsed": false
} }
@ -133,7 +133,7 @@
} }
}, },
{ {
"id": "a9a5a5427d736b95", "id": "d8072da19bedfcc3",
"type": "leaf", "type": "leaf",
"state": { "state": {
"type": "DICE_ROLLER_VIEW", "type": "DICE_ROLLER_VIEW",
@ -143,17 +143,17 @@
], ],
"currentTab": 2 "currentTab": 2
}, },
"active": "0811ffa51c913805", "active": "5b3296942d9c1e2e",
"lastOpenFiles": [ "lastOpenFiles": [
"03.02 Travels/@Switzerland.md", "00.08 Bookmarks/Admin & services.md",
"03.02 Travels/Ticino.md", "00.08 Bookmarks/Media.md",
"03.02 Travels/Skiing in Switzerland.md", "00.08 Bookmarks/Obsidian.md",
"03.02 Travels/Milan.md", "00.08 Bookmarks/Selfhosted Apps.md",
"03.02 Travels/Marseille.md", "00.08 Bookmarks/Webpages.md",
"01.02 Home/@Main Dashboard.md", "00.08 Bookmarks/Utilities.md",
"03.02 Travels/@@Travels.md", "01.02 Home/@Shopping list.md",
"01.02 Home/Bandes Dessinées.md", "01.02 Home/MRCK.md",
"01.03 Family/$Basville.md", "00.08 Bookmarks/Test.md",
"01.03 Family/Arnaud Chapal.md" "00.01 Admin/Test Sheet 2.md"
] ]
} }

@ -42,3 +42,18 @@ color blue
templater true templater true
``` ```
^button-CreateNote ^button-CreateNote
&emsp;
### Create bookmark
&emsp;
```button
name Create Bookmark
type append template
action NewBookmark
color blue
templater true
```
^button-CreateBkMark

@ -16,8 +16,8 @@ Stress: 25
FrontHeadBar: 5 FrontHeadBar: 5
EarHeadBar: 30 EarHeadBar: 30
BackHeadBar: 20 BackHeadBar: 20
Water: 0.1 Water: 1.1
Coffee: 2 Coffee: 4
Steps: Steps:
Ski: Ski:
Riding: Riding:

@ -63,10 +63,58 @@ style: number
&emsp; &emsp;
[GitHub - remotely-save/remotely-save](https://github.com/remotely-save/remotely-save) ```cardlink
[GitHub - zsviczian/obsidian-codeeditor: Support js and css file editing in Obsidian.](https://github.com/zsviczian/obsidian-codeeditor) url: https://github.com/remotely-save/remotely-save
[GitHub - mdelobelle/metadatamenu: For data quality enthousiasts (and dataview lovers): manage the metadata of your notes.](https://github.com/mdelobelle/metadatamenu) title: "GitHub - remotely-save/remotely-save"
[GitHub - nuthrash/obsidian-html-plugin: This is a plugin for Obsidian (https://obsidian.md). Can open document with .html and .htm file extensions.](https://github.com/nuthrash/obsidian-html-plugin) description: "Contribute to remotely-save/remotely-save development by creating an account on GitHub."
host: github.com
favicon: https://github.githubassets.com/favicons/favicon.svg
image: https://opengraph.githubassets.com/89bff2b2c516c77b09d2dd829c95a6e828db410265e79e9eabd253f27ef43484/remotely-save/remotely-save
```
&emsp;
```cardlink
url: https://github.com/zsviczian/obsidian-codeeditor
title: "GitHub - zsviczian/obsidian-codeeditor: Support js and css file editing in Obsidian."
description: "Support js and css file editing in Obsidian. Contribute to zsviczian/obsidian-codeeditor development by creating an account on GitHub."
host: github.com
favicon: https://github.githubassets.com/favicons/favicon.svg
image: https://opengraph.githubassets.com/5c9d9f1cf083159a01943180013b0c3bea6eb2292c9109eec585ca0f6eb7614f/zsviczian/obsidian-codeeditor
```
&emsp;
```cardlink
url: https://github.com/mdelobelle/metadatamenu
title: "GitHub - mdelobelle/metadatamenu: For data quality enthousiasts (and dataview lovers): manage the metadata of your notes."
description: "For data quality enthousiasts (and dataview lovers): manage the metadata of your notes. - GitHub - mdelobelle/metadatamenu: For data quality enthousiasts (and dataview lovers): manage the metadata ..."
host: github.com
favicon: https://github.githubassets.com/favicons/favicon.svg
image: https://opengraph.githubassets.com/c416d2f4add527790bb2196c7d43767b506df03e9f8a3cbd28ad3b08db977bf6/mdelobelle/metadatamenu
```
&emsp;
```cardlink
url: https://github.com/nuthrash/obsidian-html-plugin
title: "GitHub - nuthrash/obsidian-html-plugin: This is a plugin for Obsidian (https://obsidian.md). Can open document with .html and .htm file extensions."
description: "This is a plugin for Obsidian (https://obsidian.md). Can open document with .html and .htm file extensions. - GitHub - nuthrash/obsidian-html-plugin: This is a plugin for Obsidian (https://obsidian..."
host: github.com
favicon: https://github.githubassets.com/favicons/favicon.svg
image: https://opengraph.githubassets.com/4dfe1cf21098a97784893f8722770d07dd20cff59f8c3ffbc0cb6901f12959cb/nuthrash/obsidian-html-plugin
```
&emsp;
```cardlink
url: https://github.com/platers/obsidian-linter
title: "GitHub - platers/obsidian-linter: An Obsidian plugin that formats and styles your notes with a focus on configurability and extensibility."
description: "An Obsidian plugin that formats and styles your notes with a focus on configurability and extensibility. - GitHub - platers/obsidian-linter: An Obsidian plugin that formats and styles your notes wi..."
host: github.com
favicon: https://github.githubassets.com/favicons/favicon.svg
image: https://opengraph.githubassets.com/a62c67d4342e7065ab1ce76fb73d2d1c77b297eb891efb8adf145d7266a7de8a/platers/obsidian-linter
```
&emsp; &emsp;

@ -0,0 +1,4 @@
<%*
const filename = Bookmark
tp.file.create_new(tp.file.find_tfile("Template Bookmark"), filename, /00.08 Bookmarks/)
%>

@ -0,0 +1,69 @@
---
Tag: [""]
Date: <% tp.date.now("YYYY-MM-DD") %>
DocType: "Source"
Hierarchy: "NonRoot"
TimeStamp:
location:
Source:
Type: "Bookmark"
Language:
Author:
Published:
Link: <% tp.system.clipboard() %>
CollapseMetaTable: true
---
Parent:: [[@Bookmarks]]
---
&emsp;
```button
name Edit Source parameters
type command
action MetaEdit: Run MetaEdit
id EditMetaData
```
^button-<% tp.file.title %>SourceEdit
```button
name Save
type command
action Save current file
id Save
```
^button-<% tp.file.title %>SourceSave
&emsp;
# <% tp.file.title %>
&emsp;
> [!summary]+
> Bookmark Description
&emsp;
```toc
style: number
```
&emsp;
---
&emsp;
### Notes
&emsp;
Loret ipsum
&emsp;
&emsp;

@ -5,6 +5,16 @@ location: [47.3639129,8.55627491017841]
# 2nd Test sheet for snippets # 2nd Test sheet for snippets
### Auto card link
```cardlink
url: https://obsidian.md/
title: "Obsidian"
description: "Obsidian: A knowledge base that works on local Markdown files."
```
---
```dataviewjs ```dataviewjs
const header = '### 🗒 Notes' const header = '### 🗒 Notes'
const pages = dv.pages('"00.01 Admin/Calendars"') const pages = dv.pages('"00.01 Admin/Calendars"')

@ -12,7 +12,7 @@ CollapseMetaTable: true
--- ---
Parent:: [[@News|News]] Parent:: [[@News|News]]
Read:: No Read:: [[2022-09-27]]
--- ---

@ -12,7 +12,7 @@ CollapseMetaTable: true
--- ---
Parent:: [[@News|News]] Parent:: [[@News|News]]
Read:: No Read:: [[2022-09-27]]
--- ---

@ -12,7 +12,7 @@ CollapseMetaTable: true
--- ---
Parent:: [[@News|News]] Parent:: [[@News|News]]
Read:: No Read:: [[2022-09-27]]
--- ---

@ -0,0 +1,55 @@
---
Tag: ["Politics", "UK", "Kwasi"]
Date: 2022-09-27
DocType: "WebClipping"
Hierarchy:
TimeStamp: 2022-09-27
Link: https://www.theguardian.com/commentisfree/2022/sep/27/markets-kwasi-kwarteng-chancellor
location:
CollapseMetaTable: true
---
Parent:: [[@News|News]]
Read:: [[2022-09-27]]
---
&emsp;
```button
name Save
type command
action Save current file
id Save
```
^button-ThemarketsareinmeltdownNSave
&emsp;
# The markets are in meltdown but at least Kwasi Kwartengs doomsday cult isnt to blame | Marina Hyde
Today we consider the plight of chancer chancellor Kwasi Kwarteng with the same sensitivity and grace he brings to his own work: none. It really takes a special class of no-matery to spend [£45bn](https://www.theguardian.com/uk-news/2022/sep/23/half-of-kwarteng-cuts-to-personal-tax-will-go-to-richest-5-percent-say-experts) (in old money) and have even rich people you helped actively deplore or pity you. And not just them, but markets too. Imagine spending your entire career extolling the value of free markets, but the first time the free markets get to seriously value *you* results in a bond market meltdown, the pound hurtling towards dollar and euro parity, and a bleaker prospect for your country than the one opened on Black Wednesday. At time of typing, 10 banks have [pulled their mortgage products](https://www.theguardian.com/money/2022/sep/26/uk-lenders-temporarily-pull-new-mortgage-deals-amid-volatile-market) amid warnings interest rates could hit 6%. The chancellor appears to have bought a pamphlet to a gunfight.
As for how well Kwartengs taking it, Friday saw him rising above the bed hed just shat, declaring: “I dont comment on market movements.” Righto. Amazing that Kwasi has previously issued comments on everything from [statue nonsense](https://www.bbc.co.uk/news/uk-politics-55857650) to Labour failing to condemn a [rail strike](https://twitter.com/KwasiKwarteng/status/1539166639127658496?s=20&t=iDuhoxs68DHt8BxpAdXR-A), but is not moved to open his trap on the full-spectrum credibility-torching that provoked one banks chief economist to observe mildly that [“investors seem to regard the UK Conservative party as a doomsday cult”](https://www.huffingtonpost.co.uk/entry/investors-see-tory-party-as-a-doomsday-cult-top-analyst-says_uk_63317686e4b01804e08fd55a). Oof. Im not saying Kwartengs efforts to retain his grandeur are doomed, but this feels a little like screaming “I dont comment on this stuff because I have DIGNITY, OK?!” while standing naked in the middle of your local high street in a LIV golf cap with a nappy round your ankles.
By the time carnage had resumed [yesterday morning](https://www.theguardian.com/politics/2022/sep/26/truss-kwarteng-casino-gamblers-says-labour-reeves-pound-record-low), Kwarteng proxies began stepping in to comment for him and youll never guess whose fault it all is. Someone elses. As the chancellors bros told the Times: “This is City boys playing fast and loose with the economy.” Its what, sorry?
Shift your thousand-yard stare to the front page of todays Daily Mail, next, to which this line has now graduated. The paper splashes with [“FURY AT THE CITY SLICKERS BETTING AGAINST UK PLC”](https://twitter.com/BBCNews/status/1574517854560362496?s=20&t=Eho2_rZiLK1dDYRlSXQyAQ). Yes! Why do they hate Britain? Is it something to do with avocados? Are they in league with Meghan and the BBC? Are markets woke? Is the Mail on meth? No answers to these questions, frustratingly, but theres certainly more. “Labour and economists critical of the government plans sought to blame chancellor Kwasi Kwartengs mini-budget on Friday for sparking the turbulence,” sniffs the Mail, a way of putting it that suggests that, actually, what Kwarteng said on Friday has precisely nothing to do with the market meltdown that by complete and utter coincidence started right after he said it. I am on absolute tenterhooks to know what massive other thing that happened on Friday was that plunged an entire country into turmoil, though I cant help feeling that whatever it was should have been the splash instead of some snowflaking about how markets work. Perhaps tomorrow.
For those of us who dislike being rushed, meanwhile, its a shame to be getting to know lieutenants at the Treasury while theyre already halfway to the stage to receive their Darwin awards. Even so, a warm welcome to chief secretary to the Treasury Chris Philp, whose premature Friday tweet explaining that it was “great to see sterling strengthening on the back of the new UK growth plan” may yet rival David Camerons iconic “chaos with Ed Miliband” line. Welcome, too, to the Treasury minister Richard Fuller, who looks like hed list his hobbies as “prefer not to say”, and believes that young people should come off their “plodding path” and become [venture capitalists](https://www.lbc.co.uk/radio/presenters/tom-swarbrick/treasury-minister-angry-backlash-plodding-path-mini-budget/). In many ways they already are, Richard. Buying anything less than a 600-multipack of a household essential is a cavalier act of faith in this economy.
As for Kwasis boss, [Liz Truss](https://www.theguardian.com/politics/liz-truss) famously promised to “hit the ground on day one” and she really does seem to be boring right down into the Earths crust. Their negative impact is so great that Nasa want to use her and Kwarteng to fire into asteroids. For now, Im sure none of us can believe all this is happening on the watch of two of the authors of Britannia Unchained, which always sounded like a version of Atlas Shrugged set in a Surrey business park. Lets face it, if someone said “come to my club night its called Britannia Unchained”, there are various possibilities of what could be involved. But none of them are good, are they? The one thing you know youre not going to find behind the door of “Britannia Unchained” is anything good.
Still, a boost to heroin imports was provided by the first sightings of Tory MPs explaining that letters of no confidence were already going in to Graham Brady. As one malcontent put it: “We cant go on like this.” And yet, thats demonstrably untrue. Literally all they do is go on like this. Were about 10 minutes in to the fourth prime minister in just over six years, and theyre already going on, exactly like this, all over again. Actually, hang on, let me give you the full quote from the MP. “There will come a time,” this person predicts, “when people have to say: I know itll make us look chaotic, but we cant go on like this.’” Yup, it might seem unthinkable, it might be invisible to outsiders, and it does require a kind of next-level freeing of the mind. But there might just might come a time when the Conservative party begins to look a shade chaotic.
- Marina Hyde is a Guardian columnist
- Marina Hyde will join Guardian Live for events in Manchester (4 October) and London (11 October) to discuss her new book, What Just Happened?! For details visit [theguardian.com/guardianlive](http://theguardian.com/guardianlive), and order the book from [Guardian Bookshop](https://www.guardianbookshop.com/what-just-happened-9781783352593?utm_source=editoriallink&utm_medium=merch&utm_campaign=article)
&emsp;
&emsp;
---
`$= dv.el('center', 'Source: ' + dv.current().Link + ', ' + dv.current().Date.toLocaleString("fr-FR"))`

@ -12,7 +12,7 @@ CollapseMetaTable: true
--- ---
Parent:: [[@News|News]] Parent:: [[@News|News]]
Read:: No Read:: [[2022-09-27]]
--- ---

@ -0,0 +1,117 @@
---
Alias: [""]
Tag: [""]
Date: 2022-09-27
DocType: Bookmark
Hierarchy: Root2
TimeStamp:
location:
CollapseMetaTable: true
---
Parent:: [[@Bookmarks]], [[@@Life Organisation|Life Orga]]
---
&emsp;
```button
name Save
type command
action Save current file
id Save
```
^button-AdminservicesNSave
&emsp;
# Admin & services
&emsp;
> [!summary]+
> Note Description
&emsp;
```toc
style: number
```
&emsp;
---
&emsp;
```cardlink
url: https://www.independent-fondation.ch/fr/index.php
title: "Independent - Prévoyance, assurance, départ définitif"
host: www.independent-fondation.ch
favicon: /de-wGlobal/wGlobal/layout/images/favicon.ico
```
&emsp;
```cardlink
url: https://specbranch.com/posts/teach-bridge/?utm_source=hackernewsletter&utm_medium=email&utm_term=fav
title: "Teach Your Kids Bridge - Speculative Branches"
host: specbranch.com
```
&emsp;
```cardlink
url: https://www.angloinfo.com/how-to/switzerland/transport/vehicle-ownership/buying-and-selling-a-car
title: "Buying and Selling a Car in Switzerland - Switzerland - Angloinfo"
description: "The new and used car market in Switzerland is generally well developed and most makes and models are available, although rural areas may have few..."
host: www.angloinfo.com
```
&emsp;
```cardlink
url: https://www.helloswitzerland.ch/en/guides/your-car-switzerland-what-you-need-know/
title: "Your car in Switzerland: what you need to know"
description: "Buy a car in Switzerland or import your own from abroad? Lease, rent or share? Find here answers and solutions to all your car related questions."
host: www.helloswitzerland.ch
favicon: /static/img/favicon.28b79f175c18.png
```
&emsp;
```cardlink
url: https://studyinginswitzerland.com/buying-a-car-in-switzerland/
title: "Buying a Car in Switzerland: What You Need To Know - Studying in Switzerland"
description: "Are you considering buying a car in Switzerland? If yes, continue reading to learn everything you need about buying a vehicle and registration in Switzerland."
host: studyinginswitzerland.com
favicon: https://studyinginswitzerland.com/wp-content/uploads/2019/07/cropped-ch-32x32.gif
image: https://studyinginswitzerland.com/wp-content/uploads/2022/03/buying-car-and-registration-in-Switserland.jpg
```
&emsp;
```cardlink
url: https://www.baume-et-mercier.com/gb/en/collections/classima-men/watch-classima-10415-date.html
title: "Classima 10415 Watch for men | Check Prices on Baume & Mercier"
description: "Discover the Classima 10415 dial & Brown Calfskin watch for men with Quartz movement, designed by Baume et Mercier, Manufacturer of Swiss Watches"
host: www.baume-et-mercier.com
favicon: /etc.clientlibs/richemont-bem/ui/clientlibs/libs/resources/static/favicon/android-icon-192x192.png
image: https://www.baume-et-mercier.com/content/dam/rcq/bem/16/19/56/1/1619561.png.transform.bemsocialsharing.jpeg
```
&emsp;
```cardlink
url: https://trippin.world/guide/discover-zuerich-with-pablo-nouvelle
title: "Discover Zürich with Pablo Nouvelle"
description: "Explore the best spots in Zürich with Pablo Nouvelle"
host: trippin.world
favicon: /images/favicon.png
image: https://cdn.sanity.io/images/rizm0do5/production/03de4f90a9b3ff63a729a3e1f59e0bf7d8c98ef1-1080x1350.jpg?rect=0,309,1080,567&w=1200&h=630&q=75&auto=format
```
&emsp;
&emsp;

@ -0,0 +1,58 @@
---
Tag: [""]
Date: 2022-09-27
DocType: Bookmark
Hierarchy: Root2
TimeStamp:
location:
CollapseMetaTable: true
---
Parent:: [[@Bookmarks]], [[Jellyfin]], [[Server Cloud|Cloud Server]]
---
&emsp;
```button
name Save
type command
action Save current file
id Save
```
^button-MediaNSave
&emsp;
# Media
&emsp;
> [!summary]+
> Note Description
&emsp;
```toc
style: number
```
&emsp;
---
&emsp;
```cardlink
url: https://github.com/iptv-org/iptv
title: "GitHub - iptv-org/iptv: Collection of publicly available IPTV channels from all over the world"
description: "Collection of publicly available IPTV channels from all over the world - GitHub - iptv-org/iptv: Collection of publicly available IPTV channels from all over the world"
host: github.com
favicon: https://github.githubassets.com/favicons/favicon.svg
image: https://opengraph.githubassets.com/55888ed4c924334dad78ba089c1d6239deb7b6592069459e1d106949d7e2c8c4/iptv-org/iptv
```
&emsp;
&emsp;

@ -0,0 +1,69 @@
---
Alias: [""]
Tag: [""]
Date: 2022-09-27
DocType: Bookmark
Hierarchy: Root2
TimeStamp:
location:
CollapseMetaTable: true
---
Parent:: [[@Bookmarks]], [[Obsidian plugins]]
---
&emsp;
```button
name Save
type command
action Save current file
id Save
```
^button-ObsidianNSave
&emsp;
# Obsidian
&emsp;
> [!summary]+
> Note Description
&emsp;
```toc
style: number
```
&emsp;
---
&emsp;
```cardlink
url: https://gist.github.com/etd2w/6587a93776222b519da5bd48ce25cbdb
title: "dataview_shows_db.js"
description: "dataview_shows_db.js. GitHub Gist: instantly share code, notes, and snippets."
host: gist.github.com
favicon: https://github.githubassets.com/favicons/favicon.svg
image: https://github.githubassets.com/images/modules/gists/gist-og-image.png
```
&emsp;
```cardlink
url: https://minimal.guide/Home
title: "Home - Minimal Documentation"
description: "Home - Minimal Documentation"
host: minimal.guide
favicon: https://publish-01.obsidian.md/access/342b33803baa5ad0055c9141648edad3/favicon.ico
```
&emsp;
&emsp;

@ -0,0 +1,184 @@
---
Alias: [""]
Tag: [""]
Date: 2022-09-27
DocType: Bookmark
Hierarchy: Root2
TimeStamp:
location:
CollapseMetaTable: true
---
Parent:: [[@Bookmarks]], [[Selfhosting]]
---
&emsp;
```button
name Save
type command
action Save current file
id Save
```
^button-SelfhostedAppsNSave
&emsp;
# Selfhosted Apps
&emsp;
> [!summary]+
> Note Description
&emsp;
```toc
style: number
```
&emsp;
---
&emsp;
```cardlink
url: https://noted.lol/
title: "Noted"
description: "Bringing the latest in Self Hosted applications and Open Source software."
host: noted.lol
favicon: https://noted.lol/content/images/size/w256h256/2022/04/noted-icon.png
image: https://noted.lol/content/images/2022/06/126849-network-computer-switch-wire-data_center.jpg
```
&emsp;
```cardlink
url: https://github.com/thedevs-network/kutt
title: "GitHub - thedevs-network/kutt: Free Modern URL Shortener."
description: "Free Modern URL Shortener. Contribute to thedevs-network/kutt development by creating an account on GitHub."
host: github.com
favicon: https://github.githubassets.com/favicons/favicon.svg
image: https://repository-images.githubusercontent.com/121380371/1cb62100-865d-11ea-8f7d-911fef0cc5d5
```
&emsp;
```cardlink
url: https://toolspace.dev/explore
title: "Toolspace | Explore"
description: "Discover your next favorite open-source developer tool!"
host: toolspace.dev
favicon: /favicon/favicon-32x32.png
image: https://toolspace.dev/eplore-meta-card.png
```
&emsp;
```cardlink
url: https://www.gov.uk/guidance/protect-domains-that-dont-send-email
title: "Protect domains that do not send email"
description: "Make sure that domains that do not send email cannot be used for spoofing."
host: www.gov.uk
image: /assets/static/govuk-opengraph-image-dade2dad5775023b0568381c4c074b86318194edb36d3d68df721eea7deeac4b.png
```
&emsp;
```cardlink
url: https://noted.lol/commento-a-self-hosted-comment-system-for-websites-that-just-works/
title: "Commento - A Self Hosted Comment System for Websites That Just Works"
description: "Commento is a bloat free, self hosted commenting system for your blog or website with a focus on user privacy."
host: noted.lol
favicon: https://noted.lol/content/images/size/w256h256/2022/04/noted-icon.png
image: https://noted.lol/content/images/2022/05/commento-website-comments-self-hosted.png
```
&emsp;
```cardlink
url: https://github.com/amir20/dozzle
title: "GitHub - amir20/dozzle: Realtime log viewer for docker containers."
description: "Realtime log viewer for docker containers. . Contribute to amir20/dozzle development by creating an account on GitHub."
host: github.com
favicon: https://github.githubassets.com/favicons/favicon.svg
image: https://repository-images.githubusercontent.com/155297903/cbdcd180-2571-11ea-9a3f-073207ffc1c5
```
&emsp;
```cardlink
url: https://github.com/MauriceNino/dashdot
title: "GitHub - MauriceNino/dashdot: A simple, modern server dashboard, primarily used by smaller private servers"
description: "A simple, modern server dashboard, primarily used by smaller private servers - GitHub - MauriceNino/dashdot: A simple, modern server dashboard, primarily used by smaller private servers"
host: github.com
favicon: https://github.githubassets.com/favicons/favicon.svg
image: https://opengraph.githubassets.com/8cbbaba96c78d9231515e70cc7c3365f9491e8dfb894ebba5ea3977efbe4e83a/MauriceNino/dashdot
```
&emsp;
```cardlink
url: https://github.com/walkxhub/dashboard-icons
title: "GitHub - walkxhub/dashboard-icons: 🚚 Dashboard Icons has moved to another home!"
description: "🚚 Dashboard Icons has moved to another home! Contribute to walkxhub/dashboard-icons development by creating an account on GitHub."
host: github.com
favicon: https://github.githubassets.com/favicons/favicon.svg
image: https://repository-images.githubusercontent.com/405627037/a9020ecc-ad4e-4eb5-a68a-820d809e0d6e
```
&emsp;
```cardlink
url: https://dashy.to/
title: "Dashy | Dashy"
description: "Description will go into a meta tag in <head />"
host: dashy.to
```
&emsp;
```cardlink
url: https://sabre.io/baikal/
title: "Baïkal - baikal"
host: sabre.io
```
&emsp;
```cardlink
url: https://radicale.org/v2.html
title: "Radicale v2 Documentation"
description: "Free and Open-Source CalDAV and CardDAV Server"
host: radicale.org
favicon: assets/icon.png
```
&emsp;
```cardlink
url: https://github.com/dan-lovelace/giggle
title: "GitHub - dan-lovelace/giggle: A self-hosted, customizable and ad-free Google Search experience"
description: "A self-hosted, customizable and ad-free Google Search experience - GitHub - dan-lovelace/giggle: A self-hosted, customizable and ad-free Google Search experience"
host: github.com
favicon: https://github.githubassets.com/favicons/favicon.svg
image: https://opengraph.githubassets.com/331b0310853a6db93c4687437b1481c166928b4649ad426d1b47f559ec27e487/dan-lovelace/giggle
```
&emsp;
```cardlink
url: https://github.com/bayang/jelu
title: "GitHub - bayang/jelu: Self hosted read and to-read list book tracker"
description: "Self hosted read and to-read list book tracker. Contribute to bayang/jelu development by creating an account on GitHub."
host: github.com
favicon: https://github.githubassets.com/favicons/favicon.svg
image: https://opengraph.githubassets.com/42274c2f66a0f090cfdc36f1679697fa11f1a51b29cb29cf8563b488f908c2e4/bayang/jelu
```
&emsp;
&emsp;

@ -0,0 +1,160 @@
---
Alias: [""]
Tag: [""]
Date: 2022-09-27
DocType: Bookmark
Hierarchy: Root2
TimeStamp:
location:
CollapseMetaTable: true
---
Parent:: [[@Bookmarks]], [[@Computer Set Up|Computer Setup]]
---
&emsp;
```button
name Save
type command
action Save current file
id Save
```
^button-UtilitiesNSave
&emsp;
# Utilities
&emsp;
> [!summary]+
> Note Description
&emsp;
```toc
style: number
```
&emsp;
---
&emsp;
```cardlink
url: https://blog.forcesunseen.com/email-blame
title: random email alias generation
host: https://blog.forceunseen.com
```
&emsp;
```cardlink
url: https://shottr.cc/
title: "Shottr screenshot app for pixel professionals"
description: "Shottr is a free macOS screenshot app with scrolling screenshots, OCR, annotation and measurement instruments."
host: shottr.cc
favicon: assets/favicon.png
image: https://shottr.cc/assets/page-preview.jpg
```
&emsp;
```cardlink
url: https://sixcolors.com/post/2020/11/quick-tip-enable-touch-id-for-sudo/
title: "Quick Tip: Enable Touch ID for sudo"
description: "My new MacBook Air is proving to be all that Id hoped, and its not just because of the fancy new M1 processors. Since Im coming from a 2014 MacBook, Im reaping the benef…"
host: sixcolors.com
favicon: https://149426355.v2.pressablecdn.com/wp-content/themes/sixcolors/images/apple-touch-icon.png
image: https://149426355.v2.pressablecdn.com/wp-content/uploads/2020/11/sudo-touchid.png
```
&emsp;
```cardlink
url: https://www.dns.toys/?utm_source=hackernewsletter&utm_medium=email&utm_term=fav
title: "Useful utilities and toys over DNS"
description: "Free and useful services over DNS accessible on command line"
host: www.dns.toys
image: https://www.dns.toys/static/thumb.png
```
&emsp;
```cardlink
url: https://tylercipriani.com/blog/2022/06/15/choose-boring-desktop-technology/?utm_source=hackernewsletter&utm_medium=email&utm_term=fav
title: "Cool desktops dont change 😎 - Tyler Cipriani"
host: tylercipriani.com
```
&emsp;
```cardlink
url: https://xeiaso.net/blog/yubikey-ssh-key-storage
title: "How to Store an SSH Key on a Yubikey"
description: "How to Store an SSH Key on a Yubikey - Xe's Blog"
host: xeiaso.net
favicon: /static/favicon/android-icon-192x192.png
```
&emsp;
```cardlink
url: https://github.com/denisidoro/navi
title: "GitHub - denisidoro/navi: An interactive cheatsheet tool for the command-line"
description: "An interactive cheatsheet tool for the command-line - GitHub - denisidoro/navi: An interactive cheatsheet tool for the command-line"
host: github.com
favicon: https://github.githubassets.com/favicons/favicon.svg
image: https://opengraph.githubassets.com/de9d2add08ccc267e9faace739ffe6f5070741406d9df4f996aa35bffd454756/denisidoro/navi
```
&emsp;
```cardlink
url: https://openbb-finance.github.io/OpenBBTerminal/
title: "OpenBB Terminal Documentation"
description: "The OpenBB Documentation provides guidance on how to use the OpenBB Terminal, a free, custom built financial terminal that will help you make more informed decisions, faster."
host: openbb-finance.github.io
favicon: /OpenBBTerminal/favicon/favicon-32x32.png
```
&emsp;
```cardlink
url: https://github.com/Lissy93/personal-security-checklist/blob/master/5_Privacy_Respecting_Software.md
title: "personal-security-checklist/5_Privacy_Respecting_Software.md at master · Lissy93/personal-security-checklist"
description: "🔒 A curated checklist of 300+ tips for protecting digital security and privacy in 2022 - personal-security-checklist/5_Privacy_Respecting_Software.md at master · Lissy93/personal-security-checklist"
host: github.com
favicon: https://github.githubassets.com/favicons/favicon.svg
image: https://repository-images.githubusercontent.com/123631418/75bac380-b260-11ea-8cc4-c2272744feab
```
&emsp;
```cardlink
url: https://fig.io/
title: "Fig"
description: "The next-generation command line."
host: fig.io
favicon: /icons/fig.png
image: https://fig.io/images/screenshots/meta-img.jpg
```
&emsp;
```cardlink
url: https://github.com/netbirdio/netbird
title: "GitHub - netbirdio/netbird: Connect your devices into a single secure private WireGuard®-based mesh network with SSO/MFA and simple access controls."
description: "Connect your devices into a single secure private WireGuard®-based mesh network with SSO/MFA and simple access controls. - GitHub - netbirdio/netbird: Connect your devices into a single secure priv..."
host: github.com
favicon: https://github.githubassets.com/favicons/favicon.svg
image: https://opengraph.githubassets.com/24a4af9956c96667bf0c91786dd580cc3d986678066c23b68ae360ea0d456bd2/netbirdio/netbird
```
&emsp;
&emsp;

@ -0,0 +1,100 @@
---
Alias: [""]
Tag: [""]
Date: 2022-09-27
DocType: Bookmark
Hierarchy: Root2
TimeStamp:
location:
CollapseMetaTable: true
---
Parent:: [[@Bookmarks]], [[Internet services]]
---
&emsp;
```button
name Save
type command
action Save current file
id Save
```
^button-WebpagesNSave
&emsp;
# Webpages
&emsp;
> [!summary]+
> Note Description
&emsp;
```toc
style: number
```
&emsp;
---
&emsp;
https://ipinfo.io/
&emsp;
```cardlink
url: https://1337x.to/popular-music
title: "Popular 24 hours Music Torrents | 1337x"
description: "Browse last 24 hours most downloaded music torrents."
host: 1337x.to
```
&emsp;
```cardlink
url: https://ww2.torrentz2.cyou/
title: "Torrentz2 - Best Torrentz Search Engine"
description: "Torrentz2 is a world's best torrent indexer and became most popular torrentz search engine in 2021."
host: ww2.torrentz2.cyou
```
&emsp;
```cardlink
url: https://nitter.net/
title: "nitter"
host: nitter.net
favicon: /favicon-32x32.png
```
&emsp;
```cardlink
url: https://piped.kavin.rocks/
title: "Piped"
description: "An alternative privacy-friendly YouTube frontend which is efficient by design."
host: piped.kavin.rocks
favicon: /favicon.ico
image: /img/icons/favicon-32x32.png
```
&emsp;
```cardlink
url: https://tosdr.org/
title: "Frontpage -- Terms of Service; Didn't Read"
description: "“Terms of Service; Didn't Read” (short: ToS;DR) is a project started in June 2012 to help fix the “biggest lie on the web”: almost no one really reads the terms of service we agree to all the time."
host: tosdr.org
favicon: https://cdn.tosdr.org/themes/crisp/favicon/favicon-32x32.png?ffd13abbadd42b0f7f81fba93d9f960f0ef935a5ab12f196cfd05d4a66a9190a
image: https://cdn.tosdr.org/themes/crisp/img/ogp.png?e5a20081619b3c9ce686523b0aed0bf2646bcbb86174d6c8c8c6a1d33cf6e994
```
&emsp;
&emsp;

@ -5,7 +5,7 @@ cssclass: cards
Alias: ["Dashboard"] Alias: ["Dashboard"]
Date: 2021-11-20 Date: 2021-11-20
DocType: "Note" DocType: "Note"
ChildrenType: ["Task", "Note"] ChildrenType: ["Task", "Note", "Bookmark"]
Hierarchy: "Root" Hierarchy: "Root"
TimeStamp: TimeStamp:
location: [47.3639129,8.55627491017841] location: [47.3639129,8.55627491017841]

@ -22,7 +22,7 @@ kanban-plugin: basic
- [ ] # Polo: [[Polo Park Zürich]]<br><br>---<br><br>[[Francisco Podesta]] - [ ] # Polo: [[Polo Park Zürich]]<br><br>---<br><br>[[Francisco Podesta]]
- [ ] # Polo: [[Epsom Polo Club]]<br><br>---<br><br>[[Callum Anderson]]<br>[[Ryan Anderson]] - [ ] # Polo: [[Epsom Polo Club]]<br><br>---<br><br>[[Callum Anderson]]<br>[[Ryan Anderson]]
- [ ] # Polo: Iridike<br><br>--- - [ ] # Polo: [[Iridike Polo Club]]<br><br>---<br><br>[[Lucho Irazabal]]<br>[[Nano Iturroz|Nano]]

@ -252,6 +252,17 @@ Paris, Zürich, London
1. W. Carter & son 1. W. Carter & son
Victorian 18th century daisy ring Victorian 18th century daisy ring
```cardlink
url: https://www.jessicamccormack.com/daisy-diamond-halo-ring
title: "Daisy Diamond Halo Ring"
description: "Our Daisy Diamond Halo Ring brings a fresh and floral touch to your jewellery, handcrafted in 18k yellow and blackened white gold in our workshop at 7 Carlos Place."
host: www.jessicamccormack.com
favicon: https://www.jessicamccormack.com/media/favicon/stores/1/jmcfavicon.ico
image: https://www.jessicamccormack.com/media/catalog/product/cache/064f105b063e0b973d8c5e04b4358905/j/e/jessica_mccormack_signature_bridal_daisy_halo_ring_1.jpg
```
&emsp; &emsp;
--- ---

@ -34,7 +34,7 @@ Ingredients:
--- ---
Parent:: [[@@Recipes|Recipes]], [[@Desserts|Desserts]] Parent:: [[@@Recipes|Recipes]], [[@Desserts|Desserts]], [[@United States|United States]]
--- ---

@ -33,7 +33,7 @@ Ingredients:
--- ---
Parent:: [[@@Recipes|Recipes]], [[@Desserts|Desserts]] Parent:: [[@@Recipes|Recipes]], [[@Desserts|Desserts]], [[@United States|United States]]
--- ---

@ -40,7 +40,7 @@ Ingredients:
--- ---
Parent:: [[@@Recipes|Recipes]], [[@Main dishes|Main dishes]] Parent:: [[@@Recipes|Recipes]], [[@Main dishes|Main dishes]], [[@United States|United States]]
--- ---

@ -35,7 +35,7 @@ Ingredients:
--- ---
Parent:: [[@@Recipes|Recipes]], [[@Main dishes|Main dishes]] Parent:: [[@@Recipes|Recipes]], [[@Main dishes|Main dishes]], [[@United States|United States]]
--- ---

@ -29,7 +29,7 @@ Ingredients:
--- ---
Parent:: [[@@Recipes|Recipes]], [[@Main dishes|Main dishes]] Parent:: [[@@Recipes|Recipes]], [[@Main dishes|Main dishes]], [[@Switzerland|Switzerland]]
--- ---

@ -32,7 +32,7 @@ Ingredients:
--- ---
Parent:: [[@@Recipes|Recipes]], [[@Desserts|Desserts]] Parent:: [[@@Recipes|Recipes]], [[@Snacks|Snacks]], [[@United States|United States]]
--- ---

@ -36,7 +36,7 @@ Ingredients:
--- ---
Parent:: [[@@Recipes|Recipes]], [[@Desserts|Desserts]] Parent:: [[@@Recipes|Recipes]], [[@Desserts|Desserts]], [[@Spain|Spain]]
--- ---

@ -36,7 +36,7 @@ Ingredients:
--- ---
Parent:: [[@@Recipes|Recipes]], [[@Main dishes|Main dishes]] Parent:: [[@@Recipes|Recipes]], [[@Main dishes|Main dishes]], [[@France|France]]
--- ---

@ -39,7 +39,7 @@ Ingredients:
--- ---
Parent:: [[@@Recipes|Recipes]], [[@Main dishes|Main dishes]] Parent:: [[@@Recipes|Recipes]], [[@Main dishes|Main dishes]], [[@United States|United States]]
--- ---

@ -28,7 +28,7 @@ Ingredients:
--- ---
Parent:: [[@@Recipes|Recipes]], [[@Desserts|Desserts]] Parent:: [[@@Recipes|Recipes]], [[@Desserts|Desserts]], [[@United States|United States]]
--- ---

@ -36,7 +36,7 @@ Ingredients:
--- ---
Parent:: [[@@Recipes|Recipes]], [[@Main dishes|Main dishes]] Parent:: [[@@Recipes|Recipes]], [[@Main dishes|Main dishes]], [[@United States|United States]]
--- ---

@ -32,7 +32,7 @@ Ingredients:
--- ---
Parent:: [[@@Recipes|Recipes]], [[@Desserts|Desserts]] Parent:: [[@@Recipes|Recipes]], [[@Desserts|Desserts]], [[@Snacks|Snacks]], [[@United States|United States]]
--- ---

@ -43,7 +43,7 @@ Ingredients:
--- ---
Parent:: [[@@Recipes|Recipes]], [[@Main dishes|Main dishes]] Parent:: [[@@Recipes|Recipes]], [[@Main dishes|Main dishes]], [[@Italy|Italy]]
--- ---

@ -34,7 +34,7 @@ Ingredients:
--- ---
Parent:: [[@@Recipes|Recipes]], [[@Main dishes|Main dishes]] Parent:: [[@@Recipes|Recipes]], [[@Main dishes|Main dishes]], [[@Italy|Italy]]
--- ---

@ -29,7 +29,7 @@ Ingredients:
--- ---
Parent:: [[@@Recipes|Recipes]], [[@Side dishes|Side dishes]] Parent:: [[@@Recipes|Recipes]], [[@Side dishes|Side dishes]], [[@United States|United States]]
--- ---

@ -34,7 +34,7 @@ Ingredients:
--- ---
Parent:: [[@@Recipes|Recipes]], [[@Main dishes|Main dishes]] Parent:: [[@@Recipes|Recipes]], [[@Main dishes|Main dishes]], [[@Italy|Italy]]
--- ---

@ -37,7 +37,7 @@ Ingredients:
--- ---
Parent:: [[@@Recipes|Recipes]], [[@Desserts|Desserts]] Parent:: [[@@Recipes|Recipes]], [[@Desserts|Desserts]], [[@United States|United States]]
--- ---

@ -31,7 +31,7 @@ Ingredients:
--- ---
Parent:: [[@@Recipes|Recipes]], [[@Desserts|Desserts]] Parent:: [[@@Recipes|Recipes]], [[@Desserts|Desserts]], [[@United States|United States]]
--- ---

@ -28,7 +28,7 @@ Ingredients:
--- ---
Parent:: [[@@Recipes|Recipes]], [[Le Bar des Prés]] Parent:: [[@@Recipes|Recipes]], [[@Side dishes|Side dishes]], [[Le Bar des Prés]], [[@France|France]]
--- ---

@ -68,7 +68,7 @@ _**Productivity**_ | TextEdit, Highland2, OnlyOffice, Preview, Skiff.org
_**Productivity**_ | Note-taking: Bear, Obsidian, [[Server Tools#Personal notes\|Standard Notes]], Panda, Apple Notes; Reminders, Stickies (native Apps) _**Productivity**_ | Note-taking: Bear, Obsidian, [[Server Tools#Personal notes\|Standard Notes]], Panda, Apple Notes; Reminders, Stickies (native Apps)
_**Productivity**_ |Others: Dictionary, yEd, The Unarchiver, Adobe Acrobat Reader DC, VoiceMemos _**Productivity**_ |Others: Dictionary, yEd, The Unarchiver, Adobe Acrobat Reader DC, VoiceMemos
_**Cloud**_ | [[Nextcloud]], [[SecureSafe]], [[Sync]] _**Cloud**_ | [[Nextcloud]], [[SecureSafe]], [[Sync]]
_**Computer & Network Security**_ | VirusTotalUploader, Intego, GPG Key Chain, [[Server Tools#Password manager\|Bitwarden]], [[NextDNS]], [[Server VPN\|Wireguard]], Yubico Authenticator _**Computer & Network Security**_ | VirusTotalUploader, Hashcat, GPG Key Chain, [[Server Tools#Password manager\|Bitwarden]], [[NextDNS]], [[Server VPN\|Wireguard]], Yubico Authenticator
_**Website management**_ | Filezilla, DBeaver _**Website management**_ | Filezilla, DBeaver
_**Media**_ | **Music**: Evermusic, Background Music, MusicBrainz Picard, Podcasts; **Video**: QuickTime Player, [[VLC]], Apple TV _**Media**_ | **Music**: Evermusic, Background Music, MusicBrainz Picard, Podcasts; **Video**: QuickTime Player, [[VLC]], Apple TV
_**Pictures**_ | Management: Picktorial, Pixea, Photos; Editing: GIMP, Image Capture, PhotoBooth _**Pictures**_ | Management: Picktorial, Pixea, Photos; Editing: GIMP, Image Capture, PhotoBooth

Loading…
Cancel
Save