vault backup: 2026-03-11 17:25:16

This commit is contained in:
2026-03-11 17:25:16 -04:00
parent 6b559691de
commit 96a59fe03a
179 changed files with 345 additions and 546 deletions
+1 -1
View File
@@ -2,5 +2,5 @@
/.obsidian/workspace-mobile.json /.obsidian/workspace-mobile.json
/.obsidian/plugins/recent-files-obsidian/data.json /.obsidian/plugins/recent-files-obsidian/data.json
/.obsidian/plugins/novel-word-count/data.json /.obsidian/plugins/novel-word-count/data.json
/out/ /.out/
/ref/ /ref/
+1 -1
View File
@@ -4,7 +4,7 @@
"interfaceFontFamily": "", "interfaceFontFamily": "",
"cssTheme": "Typewriter", "cssTheme": "Typewriter",
"theme": "moonstone", "theme": "moonstone",
"baseFontSize": 16, "baseFontSize": 15,
"enabledCssSnippets": [ "enabledCssSnippets": [
"tables" "tables"
] ]
-1
View File
@@ -16,7 +16,6 @@
"lilypond", "lilypond",
"novel-word-count", "novel-word-count",
"easy-copy", "easy-copy",
"anchor-display-text",
"calendar", "calendar",
"periodic-notes", "periodic-notes",
"spellcheck-toggler", "spellcheck-toggler",
+3 -3
View File
@@ -1,9 +1,9 @@
{ {
"collapse-filter": false, "collapse-filter": false,
"search": "", "search": "tag:#type/periodic ",
"showTags": false, "showTags": false,
"showAttachments": false, "showAttachments": false,
"hideUnresolved": true, "hideUnresolved": false,
"showOrphans": true, "showOrphans": true,
"collapse-color-groups": false, "collapse-color-groups": false,
"colorGroups": [ "colorGroups": [
@@ -25,6 +25,6 @@
"repelStrength": 10, "repelStrength": 10,
"linkStrength": 1, "linkStrength": 1,
"linkDistance": 250, "linkDistance": 250,
"scale": 0.18454855383603416, "scale": 0.18454855383603405,
"close": false "close": false
} }
-9
View File
@@ -1,9 +0,0 @@
{
"includeNoteName": "headersOnly",
"titleProperty": "title",
"whichHeadings": "allHeaders",
"includeNotice": false,
"sep": " ",
"suggest": true,
"ignoreEmbedded": true
}
-306
View File
@@ -1,306 +0,0 @@
/*
THIS IS A GENERATED/BUNDLED FILE BY ESBUILD
if you want to view the source, please visit the github repository of this plugin
*/
var __defProp = Object.defineProperty;
var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
var __getOwnPropNames = Object.getOwnPropertyNames;
var __hasOwnProp = Object.prototype.hasOwnProperty;
var __export = (target, all) => {
for (var name in all)
__defProp(target, name, { get: all[name], enumerable: true });
};
var __copyProps = (to, from, except, desc) => {
if (from && typeof from === "object" || typeof from === "function") {
for (let key of __getOwnPropNames(from))
if (!__hasOwnProp.call(to, key) && key !== except)
__defProp(to, key, { get: () => from[key], enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable });
}
return to;
};
var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: true }), mod);
// main.ts
var main_exports = {};
__export(main_exports, {
default: () => AnchorDisplayText
});
module.exports = __toCommonJS(main_exports);
var import_obsidian = require("obsidian");
var RE_ANCHOR_NO_DISPLAY = /!?\[\[([^\]]+#[^|\n\r\]]+)\]\]$/;
var RE_ANCHOR_DISPLAY = /(\[\[([^\]]+#[^\n\r\]]+)\]\])$/;
var RE_DISPLAY = /\|([^\]]+)/;
var DEFAULT_SETTINGS = {
includeNoteName: "headersOnly",
titleProperty: "",
whichHeadings: "allHeaders",
includeNotice: false,
sep: " ",
suggest: true,
ignoreEmbedded: true
};
var AnchorDisplayText = class extends import_obsidian.Plugin {
constructor() {
super(...arguments);
this.suggestionsRegistered = false;
}
async onload() {
await this.loadSettings();
this.addSettingTab(new AnchorDisplayTextSettingTab(this.app, this));
if (this.settings.suggest) {
this.registerEditorSuggest(new AnchorDisplaySuggest(this));
this.suggestionsRegistered = true;
}
this.registerEvent(
this.app.workspace.on("editor-change", (editor) => {
var _a;
const cursor = editor.getCursor();
const currentLine = editor.getLine(cursor.line);
const lastChars = currentLine.slice(cursor.ch - 2, cursor.ch);
if (lastChars !== "]]")
return;
const match = currentLine.slice(0, cursor.ch).match(RE_ANCHOR_NO_DISPLAY);
if (match) {
if (this.settings.ignoreEmbedded && match[0].charAt(0) === "!")
return;
const headings = match[1].split("#");
let notename = headings[0];
if (this.settings.titleProperty) {
notename = this.getTitleFromFile(notename);
}
let displayText = "";
if (this.settings.whichHeadings === "lastHeader") {
displayText = headings[headings.length - 1];
} else {
displayText = headings[1];
if (this.settings.whichHeadings === "allHeaders") {
for (let i = 2; i < headings.length; i++) {
displayText += this.settings.sep + headings[i];
}
}
}
const startIndex = ((_a = match.index) != null ? _a : 0) + match[0].length - 2;
if (this.settings.includeNoteName === "noteNameFirst") {
displayText = `${notename}${this.settings.sep}${displayText}`;
} else if (this.settings.includeNoteName === "noteNameLast") {
displayText = `${displayText}${this.settings.sep}${notename}`;
}
if (displayText.startsWith("^")) {
displayText = displayText.slice(1);
}
editor.replaceRange(`|${displayText}`, { line: cursor.line, ch: startIndex }, void 0, "headerDisplayText");
if (this.settings.includeNotice) {
new import_obsidian.Notice(`Updated anchor link display text.`);
}
}
})
);
}
onunload() {
}
/**
* Get title property value from file's frontmatter
* @param filename - The filename to look up
* @returns The title property value if found, otherwise returns the original filename
*/
getTitleFromFile(filename) {
if (this.settings.titleProperty) {
const file = this.app.metadataCache.getFirstLinkpathDest(filename, "");
if (file) {
const cache = this.app.metadataCache.getFileCache(file);
if (cache && cache.frontmatter && cache.frontmatter[this.settings.titleProperty]) {
return String(cache.frontmatter[this.settings.titleProperty]);
}
}
}
return filename;
}
async loadSettings() {
this.settings = Object.assign({}, DEFAULT_SETTINGS, await this.loadData());
}
async saveSettings() {
await this.saveData(this.settings);
}
};
var AnchorDisplaySuggest = class extends import_obsidian.EditorSuggest {
constructor(plugin) {
super(plugin.app);
this.suggestionSelected = null;
this.plugin = plugin;
}
onTrigger(cursor, editor) {
if (!this.plugin.settings.suggest)
return null;
if (this.suggestionSelected) {
if (this.suggestionSelected.ch === cursor.ch && this.suggestionSelected.line === cursor.line)
return null;
this.suggestionSelected = null;
return null;
}
const currentLine = editor.getLine(cursor.line);
const lastChars = currentLine.slice(cursor.ch - 2, cursor.ch);
if (lastChars !== "]]")
return null;
const slice = currentLine.slice(0, cursor.ch);
const match = slice.match(RE_ANCHOR_DISPLAY);
if (!match)
return null;
if (this.plugin.settings.ignoreEmbedded && slice.charAt(match.index - 1) === "!")
return null;
return {
start: {
line: cursor.line,
ch: match.index + match[1].length - 2
// 2 less to keep closing brackets
},
end: {
line: cursor.line,
ch: match.index + match[1].length - 2
},
query: match[2]
};
}
getSuggestions(context) {
const headings = context.query.split("|")[0].split("#");
let notename = headings[0];
if (this.plugin.settings.titleProperty) {
notename = this.plugin.getTitleFromFile(notename);
}
let displayText = headings[1];
if (displayText.startsWith("^")) {
displayText = displayText.slice(1);
}
for (let i = 2; i < headings.length; i++) {
displayText += this.plugin.settings.sep + headings[i];
}
const suggestion1 = {
displayText,
source: "Don't include note name"
};
const suggestion2 = {
displayText: `${notename}${this.plugin.settings.sep}${displayText}`,
source: "Note name and than heading(s)"
};
const suggestion3 = {
displayText: `${displayText}${this.plugin.settings.sep}${notename}`,
source: "Heading(s) and than note name"
};
return [suggestion1, suggestion2, suggestion3];
}
renderSuggestion(value, el) {
const suggestionEl = el.parentElement;
const suggestionContainerEl = suggestionEl.parentElement;
if (suggestionContainerEl.childElementCount < 2) {
const promptInstructionsEl = suggestionContainerEl.createDiv({ cls: "prompt-instructions" });
const instructionEl = promptInstructionsEl.createDiv({ cls: "prompt-instruction" });
instructionEl.createEl("span", { cls: "prompt-instruction-command", text: "\u21B5" });
instructionEl.createEl("span", { text: "to accept" });
}
el.setAttribute("class", "suggestion-item mod-complex");
const suggestionContentEl = el.createDiv({ cls: "suggestion-content" });
suggestionContentEl.createDiv({ cls: "suggestion-title", text: value.displayText });
suggestionContentEl.createDiv({ cls: "suggestion-note", text: value.source });
}
selectSuggestion(value, evt) {
const editor = this.context.editor;
const match = this.context.query.match(RE_DISPLAY);
if (match) {
this.context.start.ch = this.context.start.ch - match[0].length;
}
editor.replaceRange(`|${value.displayText}`, this.context.start, this.context.end, "headerDisplayText");
this.suggestionSelected = this.context.end;
}
};
var AnchorDisplayTextSettingTab = class extends import_obsidian.PluginSettingTab {
constructor(app, plugin) {
super(app, plugin);
this.sepWarning = null;
this.plugin = plugin;
}
validateSep(value) {
let validValue = value;
for (const c of value) {
if ("[]#^|".includes(c)) {
validValue = validValue.replace(c, "");
}
}
if (validValue != value) {
if (!this.sepWarning) {
this.sepWarning = new import_obsidian.Notice(`Separators cannot contain any of the following characters: []#^|`, 0);
}
} else {
if (this.sepWarning) {
this.sepWarning.hide();
this.sepWarning = null;
}
}
return validValue;
}
display() {
const { containerEl } = this;
containerEl.empty();
new import_obsidian.Setting(containerEl).setName("Include note name").setDesc("Include the title of the note in the display text.").addDropdown((dropdown) => {
dropdown.addOption("headersOnly", "Don't include note name");
dropdown.addOption("noteNameFirst", "Note name and then heading(s)");
dropdown.addOption("noteNameLast", "Heading(s) and then note name");
dropdown.setValue(this.plugin.settings.includeNoteName);
dropdown.onChange((value) => {
this.plugin.settings.includeNoteName = value;
this.plugin.saveSettings();
});
});
new import_obsidian.Setting(containerEl).setName("Title property").setDesc("If set, use the value of this property as the note name. (Leave blank to use file name)").addText((text) => {
text.setValue(this.plugin.settings.titleProperty);
text.onChange((value) => {
this.plugin.settings.titleProperty = value;
this.plugin.saveSettings();
});
});
new import_obsidian.Setting(containerEl).setName("Include subheadings").setDesc("Change which headings and subheadings are in the display text.").addDropdown((dropdown) => {
dropdown.addOption("allHeaders", "All linked headings");
dropdown.addOption("lastHeader", "Last heading only");
dropdown.addOption("firstHeader", "First heading only");
dropdown.setValue(this.plugin.settings.whichHeadings);
dropdown.onChange((value) => {
this.plugin.settings.whichHeadings = value;
this.plugin.saveSettings();
});
});
new import_obsidian.Setting(containerEl).setName("Separator").setDesc("Choose what to insert between headings instead of #.").addText((text) => {
text.setValue(this.plugin.settings.sep);
text.onChange((value) => {
this.plugin.settings.sep = this.validateSep(value);
this.plugin.saveSettings();
});
});
new import_obsidian.Setting(containerEl).setName("Enable notifications").setDesc("Have a notice pop up whenever an anchor link is automatically changed.").addToggle((toggle) => {
toggle.setValue(this.plugin.settings.includeNotice);
toggle.onChange((value) => {
this.plugin.settings.includeNotice = value;
this.plugin.saveSettings();
});
});
new import_obsidian.Setting(containerEl).setName("Suggest alternatives").setDesc("Have a suggestion window to present alternative display text options when the cursor is directly after an anchor link.").addToggle((toggle) => {
toggle.setValue(this.plugin.settings.suggest);
toggle.onChange((value) => {
this.plugin.settings.suggest = value;
this.plugin.saveSettings();
if (!this.plugin.suggestionsRegistered) {
this.plugin.registerEditorSuggest(new AnchorDisplaySuggest(this.plugin));
this.plugin.suggestionsRegistered = true;
}
});
});
new import_obsidian.Setting(containerEl).setName("Ignore embedded files").setDesc("Don't add or change display text for embedded files.").addToggle((toggle) => {
toggle.setValue(this.plugin.settings.ignoreEmbedded);
toggle.onChange((value) => {
this.plugin.settings.ignoreEmbedded = value;
this.plugin.saveSettings();
});
});
}
};
/* nosourcemap */
-10
View File
@@ -1,10 +0,0 @@
{
"id": "anchor-display-text",
"name": "Anchor Link Display Text",
"version": "1.4.0",
"minAppVersion": "0.15.0",
"description": "Automatically uses the linked heading as the display text for anchor links.",
"author": "Robert C Arsenault",
"authorUrl": "https://github.com/rca-umb",
"isDesktopOnly": false
}
+2 -2
View File
@@ -14,7 +14,7 @@
"targetFolders": "", "targetFolders": "",
"scanDelay": 250, "scanDelay": 250,
"useTitle": true, "useTitle": true,
"reduceNestedParent": true, "reduceNestedParent": false,
"frontmatterKey": "title", "frontmatterKey": "title",
"useTagInfo": false, "useTagInfo": false,
"tagInfo": "pininfo.md", "tagInfo": "pininfo.md",
@@ -26,7 +26,7 @@
"useMultiPaneList": false, "useMultiPaneList": false,
"archiveTags": "", "archiveTags": "",
"disableNarrowingDown": true, "disableNarrowingDown": true,
"expandUntaggedToRoot": false, "expandUntaggedToRoot": true,
"disableDragging": false, "disableDragging": false,
"linkConfig": { "linkConfig": {
"incoming": { "incoming": {
+1 -1
View File
@@ -11,4 +11,4 @@ dg-publish: true
--- ---
# 2026-01-01 # 2026-01-01
#made-recipe/granola Made recipe: [[granola]]
+1 -1
View File
@@ -12,4 +12,4 @@ dg-publish: true
--- ---
# 2026-02-05 # 2026-02-05
#made-recipe/granola Made recipe: [[granola]]
+1 -1
View File
@@ -16,4 +16,4 @@ yearly: "[[2026]]"
--- ---
# 2026-02-09 # 2026-02-09
#made-recipe/granola Made recipe: [[granola ]]
+1 -1
View File
@@ -16,4 +16,4 @@ yearly: "[[2026]]"
--- ---
# 2026-02-12 # 2026-02-12
#made-recipe/granola Made recipe: [[granola]]
+1 -1
View File
@@ -16,4 +16,4 @@ yearly: "[[2026]]"
--- ---
# 2026-02-15 # 2026-02-15
#made-recipe/granola Made recipe: [[granola]]
+1 -1
View File
@@ -16,4 +16,4 @@ yearly: "[[2026]]"
--- ---
# 2026-02-18 # 2026-02-18
#made-recipe/granola Made recipe: [[granola]]
+1 -1
View File
@@ -16,4 +16,4 @@ yearly: "[[2026]]"
--- ---
# 2026-02-19 # 2026-02-19
#made-recipe/red-beans-and-rice Made recipe: [[red-beans-and-rice]]
+1 -1
View File
@@ -16,4 +16,4 @@ yearly: "[[2026]]"
--- ---
# 2026-02-22 # 2026-02-22
#made-recipe/french-toast Made recipe: [[french-toast]]
+1 -1
View File
@@ -16,4 +16,4 @@ yearly: "[[2026]]"
--- ---
# 2026-02-24 # 2026-02-24
#made-recipe/granola Made recipe: [[granola]]
+1 -1
View File
@@ -16,4 +16,4 @@ yearly: "[[2026]]"
--- ---
# 2026-02-28 # 2026-02-28
#made-recipe/granola Made recipe: [[granola]]
+1 -1
View File
@@ -16,4 +16,4 @@ yearly: "[[2026]]"
--- ---
# 2026-03-02 # 2026-03-02
#made-recipe/granola Made recipe: [[granola]]
+1 -1
View File
@@ -16,4 +16,4 @@ yearly: "[[2026]]"
--- ---
# 2026-03-06 # 2026-03-06
#made-recipe/granola Made recipe: [[granola ]]
+19
View File
@@ -0,0 +1,19 @@
---
id: 2026-03-08
aliases: []
title: 2026-03-08
tags:
- authorship/original
- destiny/permanent
- status/draft
- type/periodic/daily
dg-publish: true
date-created: 2026-03-08T08:12:41-04:00
weekly: "[[2026-W10]]"
monthly: "[[2026-03]]"
quarterly: "[[2026-Q1]]"
yearly: "[[2026]]"
---
# 2026-03-08
Made recipe: [[granola]]
+1
View File
@@ -15,6 +15,7 @@ dg-publish: true
Cross-topic of [[music-theory]] and [[banjo]]. Cross-topic of [[music-theory]] and [[banjo]].
%% %%
## TALK ## TALK
practical application of music theory concepts for playing banjo practical application of music theory concepts for playing banjo
+1 -1
View File
@@ -6,7 +6,7 @@ tags:
- authorship/original - authorship/original
- destiny/permanent - destiny/permanent
- status/draft - status/draft
- type/timestamped - type/periodic/timestamped
dg-publish: true dg-publish: true
date-created: {{date:YYYY-MM-DDTHH:mm:ssZ}} date-created: {{date:YYYY-MM-DDTHH:mm:ssZ}}
daily: "[[{{date:YYYY-MM-DD}}]]" daily: "[[{{date:YYYY-MM-DD}}]]"
+1 -1
View File
@@ -6,7 +6,7 @@ tags:
- authorship/original - authorship/original
- destiny/permanent - destiny/permanent
- status/draft - status/draft
- type/timestamped - type/periodic/timestamped
dg-publish: true dg-publish: true
--- ---
# 2025-06-13 ??:??:?? # 2025-06-13 ??:??:??
+1 -1
View File
@@ -9,7 +9,7 @@ tags:
- topic/construction - topic/construction
- topic/estimating - topic/estimating
- type/anecdote - type/anecdote
- type/timestamped - type/periodic/timestamped
dg-publish: true dg-publish: true
--- ---
# 2025-07-18 ??:??:?? # 2025-07-18 ??:??:??
+1 -1
View File
@@ -6,7 +6,7 @@ tags:
- authorship/original - authorship/original
- destiny/permanent - destiny/permanent
- status/draft - status/draft
- type/timestamped - type/periodic/timestamped
dg-publish: true dg-publish: true
--- ---
# 2025-08-22 ??:??:?? # 2025-08-22 ??:??:??
+1 -1
View File
@@ -6,7 +6,7 @@ tags:
- authorship/original - authorship/original
- destiny/permanent - destiny/permanent
- status/draft - status/draft
- type/timestamped - type/periodic/timestamped
dg-publish: true dg-publish: true
--- ---
# 2025-08-26 ??:??:?? # 2025-08-26 ??:??:??
+1 -1
View File
@@ -7,7 +7,7 @@ tags:
- destiny/permanent - destiny/permanent
- occupational/takeoff - occupational/takeoff
- status/draft - status/draft
- type/timestamped - type/periodic/timestamped
date-created: 2026-03-10T14:04:51-04:00 date-created: 2026-03-10T14:04:51-04:00
dg-publish: true dg-publish: true
--- ---
+1 -1
View File
@@ -6,7 +6,7 @@ tags:
- authorship/original - authorship/original
- destiny/permanent - destiny/permanent
- status/draft - status/draft
- type/timestamped - type/periodic/timestamped
dg-publish: true dg-publish: true
--- ---
# 2025-10-20 ??:??:?? # 2025-10-20 ??:??:??
+1 -1
View File
@@ -8,7 +8,7 @@ tags:
- original-format/typewritten-print - original-format/typewritten-print
- status/complete - status/complete
- topic/hobbies/reading - topic/hobbies/reading
- type/timestamped - type/periodic/timestamped
dg-publish: true dg-publish: true
--- ---
# 2025-10-26 18:36:?? # 2025-10-26 18:36:??
+1 -1
View File
@@ -8,7 +8,7 @@ tags:
- original-format/typewritten-print - original-format/typewritten-print
- status/complete - status/complete
- topic/hobbies/birding - topic/hobbies/birding
- type/timestamped - type/periodic/timestamped
dg-publish: true dg-publish: true
--- ---
# 2025-10-31 18:26:?? # 2025-10-31 18:26:??
+1 -1
View File
@@ -7,7 +7,7 @@ tags:
- destiny/permanent - destiny/permanent
- original-format/typewritten-print - original-format/typewritten-print
- status/draft - status/draft
- type/timestamped - type/periodic/timestamped
dg-publish: true dg-publish: true
--- ---
# 2025-11-01 05:41:?? # 2025-11-01 05:41:??
+1 -1
View File
@@ -7,7 +7,7 @@ tags:
- destiny/permanent - destiny/permanent
- original-format/typewritten-print - original-format/typewritten-print
- status/draft - status/draft
- type/timestamped - type/periodic/timestamped
dg-publish: true dg-publish: true
--- ---
# 2025-11-01 07:06:?? # 2025-11-01 07:06:??
+1 -1
View File
@@ -8,7 +8,7 @@ tags:
- original-format/typewritten-print - original-format/typewritten-print
- status/draft - status/draft
- topic/hobbies/birding - topic/hobbies/birding
- type/timestamped - type/periodic/timestamped
dg-publish: true dg-publish: true
--- ---
# 2025-11-01 08:25:?? # 2025-11-01 08:25:??
+1 -1
View File
@@ -8,7 +8,7 @@ tags:
- original-format/typewritten-print - original-format/typewritten-print
- status/complete - status/complete
- topic/morality - topic/morality
- type/timestamped - type/periodic/timestamped
dg-publish: true dg-publish: true
--- ---
# 2025-11-05 ??:??:?? # 2025-11-05 ??:??:??
+1 -1
View File
@@ -9,7 +9,7 @@ tags:
- status/complete - status/complete
- topic/estimating - topic/estimating
- topic/transparency - topic/transparency
- type/timestamped - type/periodic/timestamped
dg-publish: true dg-publish: true
--- ---
# 2025-11-06 18:12:?? # 2025-11-06 18:12:??
+1 -1
View File
@@ -5,7 +5,7 @@ title: 2025-11-10 06:53:??
tags: tags:
- original-format/typewritten-print - original-format/typewritten-print
- topic/mindfulness - topic/mindfulness
- type/timestamped - type/periodic/timestamped
dg-publish: true dg-publish: true
--- ---
# 2025-11-10 06:53:?? # 2025-11-10 06:53:??
+1 -1
View File
@@ -6,7 +6,7 @@ tags:
- occupational - occupational
- original-format/digital-text - original-format/digital-text
- topic/estimating - topic/estimating
- type/timestamped - type/periodic/timestamped
dg-publish: true dg-publish: true
--- ---
# 2025-11-10 10:40:?? # 2025-11-10 10:40:??
+1 -1
View File
@@ -5,7 +5,7 @@ title: 2025-11-10 11:14:??
tags: tags:
- occupational/takeoff - occupational/takeoff
- original-format/digital-text - original-format/digital-text
- type/timestamped - type/periodic/timestamped
dg-publish: true dg-publish: true
--- ---
# 2025-11-10 11:14:?? # 2025-11-10 11:14:??
+1 -1
View File
@@ -5,7 +5,7 @@ title: 2025-11-10 15:15:??
tags: tags:
- original-format/digital-text - original-format/digital-text
- topic/construction/electrical - topic/construction/electrical
- type/timestamped - type/periodic/timestamped
dg-publish: true dg-publish: true
--- ---
# 2025-11-10 15:15:?? # 2025-11-10 15:15:??
+1 -1
View File
@@ -6,7 +6,7 @@ tags:
- occupational - occupational
- original-format/typewritten-print - original-format/typewritten-print
- topic/estimating - topic/estimating
- type/timestamped - type/periodic/timestamped
dg-publish: true dg-publish: true
--- ---
# 2025-11-10 20:00:?? # 2025-11-10 20:00:??
+1 -1
View File
@@ -5,7 +5,7 @@ title: 2025-11-11 06:06:??
tags: tags:
- original-format/typewritten-print - original-format/typewritten-print
- topic/estimating - topic/estimating
- type/timestamped - type/periodic/timestamped
dg-publish: true dg-publish: true
--- ---
# 2025-11-11 06:06:?? # 2025-11-11 06:06:??
+1 -1
View File
@@ -6,7 +6,7 @@ tags:
- original-format/digital-text - original-format/digital-text
- topic/estimating - topic/estimating
- topic/transparency - topic/transparency
- type/timestamped - type/periodic/timestamped
dg-publish: true dg-publish: true
--- ---
# 2025-11-11 14:41:?? # 2025-11-11 14:41:??
+1 -1
View File
@@ -4,7 +4,7 @@ aliases: []
title: 2025-11-13 08:03:?? title: 2025-11-13 08:03:??
tags: tags:
- topic/hobbies/writing - topic/hobbies/writing
- type/timestamped - type/periodic/timestamped
dg-publish: true dg-publish: true
--- ---
# 2025-11-13 08:03:?? # 2025-11-13 08:03:??
+1 -1
View File
@@ -7,7 +7,7 @@ tags:
- destiny/permanent - destiny/permanent
- occupational - occupational
- topic/estimating - topic/estimating
- type/timestamped - type/periodic/timestamped
dg-publish: true dg-publish: true
--- ---
# 2025-11-13 08:19:?? # 2025-11-13 08:19:??
+1 -1
View File
@@ -6,7 +6,7 @@ tags:
- authorship/original - authorship/original
- destiny/permanent - destiny/permanent
- occupational - occupational
- type/timestamped - type/periodic/timestamped
dg-publish: true dg-publish: true
--- ---
# 2025-11-13 ??:??:?? # 2025-11-13 ??:??:??
+1 -1
View File
@@ -6,7 +6,7 @@ tags:
- authorship/original - authorship/original
- destiny/permanent - destiny/permanent
- topic/hobbies/shorthand - topic/hobbies/shorthand
- type/timestamped - type/periodic/timestamped
dg-publish: true dg-publish: true
--- ---
# 2025-11-13 20:41:?? # 2025-11-13 20:41:??
+1 -1
View File
@@ -9,7 +9,7 @@ tags:
- topic/hobbies/music/banjo - topic/hobbies/music/banjo
- topic/hobbies/shorthand - topic/hobbies/shorthand
- topic/meta - topic/meta
- type/timestamped - type/periodic/timestamped
dg-publish: true dg-publish: true
--- ---
# 2025-11-14 13:41:?? # 2025-11-14 13:41:??
+1 -1
View File
@@ -8,7 +8,7 @@ tags:
- status/draft - status/draft
- topic/hobbies/shorthand - topic/hobbies/shorthand
- topic/hobbies/writing - topic/hobbies/writing
- type/timestamped - type/periodic/timestamped
dg-publish: true dg-publish: true
--- ---
# 2025-11-16 08:09:?? # 2025-11-16 08:09:??
+1 -1
View File
@@ -6,7 +6,7 @@ tags:
- authorship/original - authorship/original
- destiny/permanent - destiny/permanent
- status/draft - status/draft
- type/timestamped - type/periodic/timestamped
- occupational/closeout - occupational/closeout
dg-publish: true dg-publish: true
--- ---
+1 -1
View File
@@ -7,7 +7,7 @@ tags:
- destiny/permanent - destiny/permanent
- status/complete - status/complete
- topic/estimating - topic/estimating
- type/timestamped - type/periodic/timestamped
- topic/organization - topic/organization
dg-publish: true dg-publish: true
--- ---
+1 -1
View File
@@ -6,7 +6,7 @@ tags:
- authorship/original - authorship/original
- destiny/permanent - destiny/permanent
- status/draft - status/draft
- type/timestamped - type/periodic/timestamped
dg-publish: true dg-publish: true
--- ---
# 2025-11-24 ??:??:?? # 2025-11-24 ??:??:??
+1 -1
View File
@@ -4,7 +4,7 @@ aliases: []
title: 2025-12-02 10:40:?? title: 2025-12-02 10:40:??
tags: tags:
- topic/construction/electrical - topic/construction/electrical
- type/timestamped - type/periodic/timestamped
dg-publish: true dg-publish: true
--- ---
# 2025-12-02 10:40:?? # 2025-12-02 10:40:??
+1 -1
View File
@@ -3,7 +3,7 @@ id: 2025-12-02T10:57:00
aliases: [] aliases: []
title: 2025-12-02 10:57:?? title: 2025-12-02 10:57:??
tags: tags:
- type/timestamped - type/periodic/timestamped
dg-publish: true dg-publish: true
--- ---
# 2025-12-02 10:57:?? # 2025-12-02 10:57:??
+1 -1
View File
@@ -3,7 +3,7 @@ id: 2025-12-02T13:20:00
aliases: [] aliases: []
title: 2025-12-02 13:20:?? title: 2025-12-02 13:20:??
tags: tags:
- type/timestamped - type/periodic/timestamped
dg-publish: true dg-publish: true
--- ---
# 2025-12-02 13:20:?? # 2025-12-02 13:20:??
+1 -1
View File
@@ -8,7 +8,7 @@ tags:
- status/draft - status/draft
- topic/estimating - topic/estimating
- topic/transparency - topic/transparency
- type/timestamped - type/periodic/timestamped
dg-publish: true dg-publish: true
--- ---
# 2025-12-03 15:54:22 # 2025-12-03 15:54:22
+1 -1
View File
@@ -7,7 +7,7 @@ tags:
- destiny/permanent - destiny/permanent
- status/draft - status/draft
- topic/automation - topic/automation
- type/timestamped - type/periodic/timestamped
dg-publish: true dg-publish: true
--- ---
# 2025-12-04 09:51:17 # 2025-12-04 09:51:17
+1 -1
View File
@@ -6,7 +6,7 @@ tags:
- authorship/original - authorship/original
- destiny/permanent - destiny/permanent
- status/draft - status/draft
- type/timestamped - type/periodic/timestamped
dg-publish: true dg-publish: true
--- ---
# 2025-12-09 10:52:?? # 2025-12-09 10:52:??
+1 -1
View File
@@ -9,7 +9,7 @@ tags:
- status/draft - status/draft
- topic/ambiguity - topic/ambiguity
- topic/transparency - topic/transparency
- type/timestamped - type/periodic/timestamped
dg-publish: true dg-publish: true
--- ---
# 2025-12-10 10:45:19 # 2025-12-10 10:45:19
+1 -1
View File
@@ -6,7 +6,7 @@ tags:
- authorship/original - authorship/original
- destiny/permanent - destiny/permanent
- status/draft - status/draft
- type/timestamped - type/periodic/timestamped
dg-publish: true dg-publish: true
--- ---
# 2025-12-12 09:38:52 # 2025-12-12 09:38:52
+1 -1
View File
@@ -6,7 +6,7 @@ tags:
- authorship/original - authorship/original
- destiny/permanent - destiny/permanent
- status/draft - status/draft
- type/timestamped - type/periodic/timestamped
dg-publish: true dg-publish: true
--- ---
# 2025-12-13 08:45:?? # 2025-12-13 08:45:??
+1 -1
View File
@@ -6,7 +6,7 @@ tags:
- authorship/original - authorship/original
- destiny/permanent - destiny/permanent
- status/draft - status/draft
- type/timestamped - type/periodic/timestamped
dg-publish: true dg-publish: true
--- ---
# 2025-12-14 09:52:?? # 2025-12-14 09:52:??
+1 -1
View File
@@ -3,7 +3,7 @@ id: 2025-12-16T09:20:52
aliases: [] aliases: []
title: 2025-12-16 09:20:52 title: 2025-12-16 09:20:52
tags: tags:
- type/timestamped - type/periodic/timestamped
dg-publish: true dg-publish: true
--- ---
# 2025-12-16 09:20:52 # 2025-12-16 09:20:52
+1 -1
View File
@@ -3,7 +3,7 @@ id: 2025-12-16T20:04:00
aliases: [] aliases: []
title: 2025-12-16 20:04:?? title: 2025-12-16 20:04:??
tags: tags:
- type/timestamped - type/periodic/timestamped
dg-publish: true dg-publish: true
--- ---
# 2025-12-16 20:04:?? # 2025-12-16 20:04:??
+1 -1
View File
@@ -3,7 +3,7 @@ id: 2025-12-17T05:39:00
aliases: [] aliases: []
title: 2025-12-17 05:39:?? title: 2025-12-17 05:39:??
tags: tags:
- type/timestamped - type/periodic/timestamped
dg-publish: true dg-publish: true
--- ---
# 2025-12-17 05:39:?? # 2025-12-17 05:39:??
+1 -1
View File
@@ -4,7 +4,7 @@ aliases: []
title: 2025-12-17 12:32:?? title: 2025-12-17 12:32:??
tags: tags:
- topic/ambiguity - topic/ambiguity
- type/timestamped - type/periodic/timestamped
dg-publish: true dg-publish: true
--- ---
# 2025-12-17 12:32:?? # 2025-12-17 12:32:??
+1 -1
View File
@@ -3,7 +3,7 @@ id: 2025-12-18T08:32:18
aliases: [] aliases: []
title: 2025-12-18 08:32:18 title: 2025-12-18 08:32:18
tags: tags:
- type/timestamped - type/periodic/timestamped
dg-publish: true dg-publish: true
--- ---
# 2025-12-18 08:32:18 # 2025-12-18 08:32:18
+1 -1
View File
@@ -4,7 +4,7 @@ aliases: []
title: 2025-12-18 10:38:?? title: 2025-12-18 10:38:??
tags: tags:
- topic/meta - topic/meta
- type/timestamped - type/periodic/timestamped
dg-publish: true dg-publish: true
--- ---
# 2025-12-18 10:38:?? # 2025-12-18 10:38:??
+1 -1
View File
@@ -3,7 +3,7 @@ id: 2025-12-18T14:18:00
aliases: [] aliases: []
title: 2025-12-18 14:18:?? title: 2025-12-18 14:18:??
tags: tags:
- type/timestamped - type/periodic/timestamped
dg-publish: true dg-publish: true
--- ---
# 2025-12-18 14:18:?? # 2025-12-18 14:18:??
+1 -1
View File
@@ -3,7 +3,7 @@ id: 2025-12-18T15:22:00
aliases: [] aliases: []
title: 2025-12-18 15:22:?? title: 2025-12-18 15:22:??
tags: tags:
- type/timestamped - type/periodic/timestamped
dg-publish: true dg-publish: true
--- ---
# 2025-12-18 15:22:?? # 2025-12-18 15:22:??
+1 -1
View File
@@ -3,7 +3,7 @@ id: 2025-12-18T15:30:00
aliases: [] aliases: []
title: 2025-12-18 15:30:?? title: 2025-12-18 15:30:??
tags: tags:
- type/timestamped - type/periodic/timestamped
dg-publish: true dg-publish: true
--- ---
# 2025-12-18 15:30:?? # 2025-12-18 15:30:??
+1 -1
View File
@@ -4,7 +4,7 @@ aliases: []
title: 2025-12-19 10:44:?? title: 2025-12-19 10:44:??
tags: tags:
- occupational/takeoff - occupational/takeoff
- type/timestamped - type/periodic/timestamped
dg-publish: true dg-publish: true
--- ---
# 2025-12-19 10:44:?? # 2025-12-19 10:44:??
+1 -1
View File
@@ -4,7 +4,7 @@ aliases: []
title: 2025-12-19 10:44:?? title: 2025-12-19 10:44:??
tags: tags:
- occupational/takeoff - occupational/takeoff
- type/timestamped - type/periodic/timestamped
dg-publish: true dg-publish: true
--- ---
# 2025-12-19 10:44:?? # 2025-12-19 10:44:??
+1 -1
View File
@@ -6,7 +6,7 @@ tags:
- authorship/original - authorship/original
- destiny/permanent - destiny/permanent
- status/draft - status/draft
- type/timestamped - type/periodic/timestamped
dg-publish: true dg-publish: true
--- ---
# 2025-12-20 19:28:?? # 2025-12-20 19:28:??
+1 -1
View File
@@ -6,7 +6,7 @@ tags:
- authorship/original - authorship/original
- destiny/permanent - destiny/permanent
- status/draft - status/draft
- type/timestamped - type/periodic/timestamped
dg-publish: true dg-publish: true
--- ---
# 2025-12-30 10:08:30 # 2025-12-30 10:08:30
+1 -1
View File
@@ -3,7 +3,7 @@ id: 2026-01-02T10:10:18
aliases: [] aliases: []
title: 2026-01-02 10:10:18 title: 2026-01-02 10:10:18
tags: tags:
- type/timestamped - type/periodic/timestamped
dg-publish: true dg-publish: true
--- ---
# 2026-01-02 10:10:18 # 2026-01-02 10:10:18
+1 -1
View File
@@ -3,7 +3,7 @@ id: 2026-01-02T19:21:00
aliases: [] aliases: []
title: 2026-01-02 19:21:?? title: 2026-01-02 19:21:??
tags: tags:
- type/timestamped - type/periodic/timestamped
dg-publish: true dg-publish: true
--- ---
# 2026-01-02 19:21:?? # 2026-01-02 19:21:??
+1 -1
View File
@@ -6,7 +6,7 @@ tags:
- authorship/original - authorship/original
- destiny/permanent - destiny/permanent
- status/draft - status/draft
- type/timestamped - type/periodic/timestamped
dg-publish: true dg-publish: true
--- ---
# 2026-01-04 ??:??:?? # 2026-01-04 ??:??:??
+1 -1
View File
@@ -6,7 +6,7 @@ tags:
- authorship/original - authorship/original
- destiny/permanent - destiny/permanent
- status/draft - status/draft
- type/timestamped - type/periodic/timestamped
dg-publish: true dg-publish: true
--- ---
# 2026-01-05 15:44:50 # 2026-01-05 15:44:50
+1 -1
View File
@@ -3,7 +3,7 @@ id: 2026-01-06T07:47:00
aliases: [] aliases: []
title: 2026-01-06 07:47:?? title: 2026-01-06 07:47:??
tags: tags:
- type/timestamped - type/periodic/timestamped
dg-publish: true dg-publish: true
--- ---
# 2026-01-06 07:47:?? # 2026-01-06 07:47:??
+1 -1
View File
@@ -3,7 +3,7 @@ id: 2026-01-06T10:00:00
aliases: [] aliases: []
title: 2026-01-06 10:00:?? title: 2026-01-06 10:00:??
tags: tags:
- type/timestamped - type/periodic/timestamped
dg-publish: true dg-publish: true
--- ---
# 2026-01-06 10:00:?? # 2026-01-06 10:00:??
+1 -1
View File
@@ -3,7 +3,7 @@ id: 2026-01-06T10:57:00
aliases: [] aliases: []
title: 2026-01-06 10:57:?? title: 2026-01-06 10:57:??
tags: tags:
- type/timestamped - type/periodic/timestamped
dg-publish: true dg-publish: true
--- ---
# 2026-01-06 10:57:?? # 2026-01-06 10:57:??
+1 -1
View File
@@ -3,7 +3,7 @@ id: 2026-01-07T06:41:00
aliases: [] aliases: []
title: 2026-01-07 06:41:?? title: 2026-01-07 06:41:??
tags: tags:
- type/timestamped - type/periodic/timestamped
dg-publish: true dg-publish: true
--- ---
# 2026-01-07 06:41:?? # 2026-01-07 06:41:??
+1 -1
View File
@@ -3,7 +3,7 @@ id: 2026-01-07T10:03:00
aliases: [] aliases: []
title: 2026-01-07 10:03:?? title: 2026-01-07 10:03:??
tags: tags:
- type/timestamped - type/periodic/timestamped
dg-publish: true dg-publish: true
--- ---
# 2026-01-07 10:03:?? # 2026-01-07 10:03:??
+1 -1
View File
@@ -3,7 +3,7 @@ id: 2026-01-07T10:05:00
aliases: [] aliases: []
title: 2026-01-07 10:05:?? title: 2026-01-07 10:05:??
tags: tags:
- type/timestamped - type/periodic/timestamped
dg-publish: true dg-publish: true
--- ---
# 2026-01-07 10:05:?? # 2026-01-07 10:05:??
+1 -1
View File
@@ -6,7 +6,7 @@ tags:
- authorship/original - authorship/original
- occupational - occupational
- topic/estimating - topic/estimating
- type/timestamped - type/periodic/timestamped
dg-publish: true dg-publish: true
--- ---
# 2026-01-07 10:42:?? # 2026-01-07 10:42:??
+1 -1
View File
@@ -6,7 +6,7 @@ tags:
- occupational - occupational
- topic/estimating - topic/estimating
- topic/organization - topic/organization
- type/timestamped - type/periodic/timestamped
dg-publish: true dg-publish: true
--- ---
# 2026-01-07 12:13:?? # 2026-01-07 12:13:??
+1 -1
View File
@@ -6,7 +6,7 @@ tags:
- occupational - occupational
- topic/estimating - topic/estimating
- topic/organization - topic/organization
- type/timestamped - type/periodic/timestamped
dg-publish: true dg-publish: true
--- ---
# 2026-01-07 16:03:?? # 2026-01-07 16:03:??
+1 -1
View File
@@ -6,7 +6,7 @@ tags:
- authorship/original - authorship/original
- destiny/permanent - destiny/permanent
- occupational/closeout - occupational/closeout
- type/timestamped - type/periodic/timestamped
dg-publish: true dg-publish: true
--- ---
# 2026-01-08 13:33:34 # 2026-01-08 13:33:34
+1 -1
View File
@@ -3,7 +3,7 @@ id: 2026-01-09T10:00:03
aliases: [] aliases: []
title: 2026-01-09 10:00:03 title: 2026-01-09 10:00:03
tags: tags:
- type/timestamped - type/periodic/timestamped
dg-publish: true dg-publish: true
--- ---
# 2026-01-09 10:00:03 # 2026-01-09 10:00:03
+1 -1
View File
@@ -3,7 +3,7 @@ id: 2026-01-09T12:00:00
aliases: [] aliases: []
title: 2026-01-09 12:00:?? title: 2026-01-09 12:00:??
tags: tags:
- type/timestamped - type/periodic/timestamped
dg-publish: true dg-publish: true
--- ---
# 2026-01-09 12:00:?? # 2026-01-09 12:00:??
+1 -1
View File
@@ -3,7 +3,7 @@ id: 2026-01-09T14:45:00
aliases: [] aliases: []
title: 2026-01-09 14:45:?? title: 2026-01-09 14:45:??
tags: tags:
- type/timestamped - type/periodic/timestamped
dg-publish: true dg-publish: true
--- ---
# 2026-01-09 14:45:?? # 2026-01-09 14:45:??
+1 -1
View File
@@ -3,7 +3,7 @@ id: 2026-01-09T16:28:00
aliases: [] aliases: []
title: 2026-01-09 16:28:?? title: 2026-01-09 16:28:??
tags: tags:
- type/timestamped - type/periodic/timestamped
dg-publish: true dg-publish: true
--- ---
# 2026-01-09 16:28:?? # 2026-01-09 16:28:??
+1 -1
View File
@@ -6,7 +6,7 @@ tags:
- authorship/original - authorship/original
- destiny/permanent - destiny/permanent
- status/draft - status/draft
- type/timestamped - type/periodic/timestamped
dg-publish: true dg-publish: true
--- ---
# 2026-01-10 08:42:?? # 2026-01-10 08:42:??
+1 -1
View File
@@ -3,7 +3,7 @@ id: 2026-01-11T09:00:00
aliases: [] aliases: []
title: 2026-01-11 09:00:?? title: 2026-01-11 09:00:??
tags: tags:
- type/timestamped - type/periodic/timestamped
dg-publish: true dg-publish: true
--- ---
# 2026-01-11 09:00:?? # 2026-01-11 09:00:??
+1 -1
View File
@@ -3,7 +3,7 @@ id: 2026-01-11T11:00:00
aliases: [] aliases: []
title: 2026-01-11 11:00:?? title: 2026-01-11 11:00:??
tags: tags:
- type/timestamped - type/periodic/timestamped
dg-publish: true dg-publish: true
--- ---
# 2026-01-11 11:00:?? # 2026-01-11 11:00:??
+1 -1
View File
@@ -4,7 +4,7 @@ aliases: []
title: 2026-01-12 10:00:?? title: 2026-01-12 10:00:??
tags: tags:
- occupational - occupational
- type/timestamped - type/periodic/timestamped
dg-publish: true dg-publish: true
--- ---
# 2026-01-12 10:00:?? # 2026-01-12 10:00:??
+1 -1
View File
@@ -4,7 +4,7 @@ aliases: []
title: 2026-01-12 10:42:30 title: 2026-01-12 10:42:30
tags: tags:
- occupational - occupational
- type/timestamped - type/periodic/timestamped
dg-publish: true dg-publish: true
--- ---
# 2026-01-12 10:42:30 # 2026-01-12 10:42:30
+1 -1
View File
@@ -4,7 +4,7 @@ aliases: []
title: 2026-01-12 12:23:?? title: 2026-01-12 12:23:??
tags: tags:
- occupational - occupational
- type/timestamped - type/periodic/timestamped
dg-publish: true dg-publish: true
--- ---
# 2026-01-12 12:23:?? # 2026-01-12 12:23:??
+1 -1
View File
@@ -4,7 +4,7 @@ aliases: []
title: 2026-01-12 13:02:?? title: 2026-01-12 13:02:??
tags: tags:
- topic/construction - topic/construction
- type/timestamped - type/periodic/timestamped
dg-publish: true dg-publish: true
--- ---
# 2026-01-12 13:02:?? # 2026-01-12 13:02:??

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