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/plugins/recent-files-obsidian/data.json
/.obsidian/plugins/novel-word-count/data.json
/out/
/.out/
/ref/
+1 -1
View File
@@ -4,7 +4,7 @@
"interfaceFontFamily": "",
"cssTheme": "Typewriter",
"theme": "moonstone",
"baseFontSize": 16,
"baseFontSize": 15,
"enabledCssSnippets": [
"tables"
]
-1
View File
@@ -16,7 +16,6 @@
"lilypond",
"novel-word-count",
"easy-copy",
"anchor-display-text",
"calendar",
"periodic-notes",
"spellcheck-toggler",
+3 -3
View File
@@ -1,9 +1,9 @@
{
"collapse-filter": false,
"search": "",
"search": "tag:#type/periodic ",
"showTags": false,
"showAttachments": false,
"hideUnresolved": true,
"hideUnresolved": false,
"showOrphans": true,
"collapse-color-groups": false,
"colorGroups": [
@@ -25,6 +25,6 @@
"repelStrength": 10,
"linkStrength": 1,
"linkDistance": 250,
"scale": 0.18454855383603416,
"scale": 0.18454855383603405,
"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": "",
"scanDelay": 250,
"useTitle": true,
"reduceNestedParent": true,
"reduceNestedParent": false,
"frontmatterKey": "title",
"useTagInfo": false,
"tagInfo": "pininfo.md",
@@ -26,7 +26,7 @@
"useMultiPaneList": false,
"archiveTags": "",
"disableNarrowingDown": true,
"expandUntaggedToRoot": false,
"expandUntaggedToRoot": true,
"disableDragging": false,
"linkConfig": {
"incoming": {
+1 -1
View File
@@ -11,4 +11,4 @@ dg-publish: true
---
# 2026-01-01
#made-recipe/granola
Made recipe: [[granola]]
+1 -1
View File
@@ -12,4 +12,4 @@ dg-publish: true
---
# 2026-02-05
#made-recipe/granola
Made recipe: [[granola]]
+1 -1
View File
@@ -16,4 +16,4 @@ yearly: "[[2026]]"
---
# 2026-02-09
#made-recipe/granola
Made recipe: [[granola ]]
+1 -1
View File
@@ -16,4 +16,4 @@ yearly: "[[2026]]"
---
# 2026-02-12
#made-recipe/granola
Made recipe: [[granola]]
+1 -1
View File
@@ -16,4 +16,4 @@ yearly: "[[2026]]"
---
# 2026-02-15
#made-recipe/granola
Made recipe: [[granola]]
+1 -1
View File
@@ -16,4 +16,4 @@ yearly: "[[2026]]"
---
# 2026-02-18
#made-recipe/granola
Made recipe: [[granola]]
+1 -1
View File
@@ -16,4 +16,4 @@ yearly: "[[2026]]"
---
# 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
#made-recipe/french-toast
Made recipe: [[french-toast]]
+1 -1
View File
@@ -16,4 +16,4 @@ yearly: "[[2026]]"
---
# 2026-02-24
#made-recipe/granola
Made recipe: [[granola]]
+1 -1
View File
@@ -16,4 +16,4 @@ yearly: "[[2026]]"
---
# 2026-02-28
#made-recipe/granola
Made recipe: [[granola]]
+1 -1
View File
@@ -16,4 +16,4 @@ yearly: "[[2026]]"
---
# 2026-03-02
#made-recipe/granola
Made recipe: [[granola]]
+1 -1
View File
@@ -16,4 +16,4 @@ yearly: "[[2026]]"
---
# 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]]
+2 -1
View File
@@ -15,6 +15,7 @@ dg-publish: true
Cross-topic of [[music-theory]] and [[banjo]].
%%
## TALK
practical application of music theory concepts for playing banjo
@@ -24,4 +25,4 @@ including vocal accompaniment.
Because the fifth string is not usually fretted
(by convention and for practical reasons),
its open pitch class should be consonant
with the majority of the chords one intends to play.
with the majority of the chords one intends to play.
+1 -1
View File
@@ -6,7 +6,7 @@ tags:
- authorship/original
- destiny/permanent
- status/draft
- type/timestamped
- type/periodic/timestamped
dg-publish: true
date-created: {{date:YYYY-MM-DDTHH:mm:ssZ}}
daily: "[[{{date:YYYY-MM-DD}}]]"
+1 -1
View File
@@ -6,7 +6,7 @@ tags:
- authorship/original
- destiny/permanent
- status/draft
- type/timestamped
- type/periodic/timestamped
dg-publish: true
---
# 2025-06-13 ??:??:??
+1 -1
View File
@@ -9,7 +9,7 @@ tags:
- topic/construction
- topic/estimating
- type/anecdote
- type/timestamped
- type/periodic/timestamped
dg-publish: true
---
# 2025-07-18 ??:??:??
+1 -1
View File
@@ -6,7 +6,7 @@ tags:
- authorship/original
- destiny/permanent
- status/draft
- type/timestamped
- type/periodic/timestamped
dg-publish: true
---
# 2025-08-22 ??:??:??
+1 -1
View File
@@ -6,7 +6,7 @@ tags:
- authorship/original
- destiny/permanent
- status/draft
- type/timestamped
- type/periodic/timestamped
dg-publish: true
---
# 2025-08-26 ??:??:??
+1 -1
View File
@@ -7,7 +7,7 @@ tags:
- destiny/permanent
- occupational/takeoff
- status/draft
- type/timestamped
- type/periodic/timestamped
date-created: 2026-03-10T14:04:51-04:00
dg-publish: true
---
+1 -1
View File
@@ -6,7 +6,7 @@ tags:
- authorship/original
- destiny/permanent
- status/draft
- type/timestamped
- type/periodic/timestamped
dg-publish: true
---
# 2025-10-20 ??:??:??
+1 -1
View File
@@ -8,7 +8,7 @@ tags:
- original-format/typewritten-print
- status/complete
- topic/hobbies/reading
- type/timestamped
- type/periodic/timestamped
dg-publish: true
---
# 2025-10-26 18:36:??
+1 -1
View File
@@ -8,7 +8,7 @@ tags:
- original-format/typewritten-print
- status/complete
- topic/hobbies/birding
- type/timestamped
- type/periodic/timestamped
dg-publish: true
---
# 2025-10-31 18:26:??
+1 -1
View File
@@ -7,7 +7,7 @@ tags:
- destiny/permanent
- original-format/typewritten-print
- status/draft
- type/timestamped
- type/periodic/timestamped
dg-publish: true
---
# 2025-11-01 05:41:??
+1 -1
View File
@@ -7,7 +7,7 @@ tags:
- destiny/permanent
- original-format/typewritten-print
- status/draft
- type/timestamped
- type/periodic/timestamped
dg-publish: true
---
# 2025-11-01 07:06:??
+1 -1
View File
@@ -8,7 +8,7 @@ tags:
- original-format/typewritten-print
- status/draft
- topic/hobbies/birding
- type/timestamped
- type/periodic/timestamped
dg-publish: true
---
# 2025-11-01 08:25:??
+1 -1
View File
@@ -8,7 +8,7 @@ tags:
- original-format/typewritten-print
- status/complete
- topic/morality
- type/timestamped
- type/periodic/timestamped
dg-publish: true
---
# 2025-11-05 ??:??:??
+1 -1
View File
@@ -9,7 +9,7 @@ tags:
- status/complete
- topic/estimating
- topic/transparency
- type/timestamped
- type/periodic/timestamped
dg-publish: true
---
# 2025-11-06 18:12:??
+1 -1
View File
@@ -5,7 +5,7 @@ title: 2025-11-10 06:53:??
tags:
- original-format/typewritten-print
- topic/mindfulness
- type/timestamped
- type/periodic/timestamped
dg-publish: true
---
# 2025-11-10 06:53:??
+1 -1
View File
@@ -6,7 +6,7 @@ tags:
- occupational
- original-format/digital-text
- topic/estimating
- type/timestamped
- type/periodic/timestamped
dg-publish: true
---
# 2025-11-10 10:40:??
+1 -1
View File
@@ -5,7 +5,7 @@ title: 2025-11-10 11:14:??
tags:
- occupational/takeoff
- original-format/digital-text
- type/timestamped
- type/periodic/timestamped
dg-publish: true
---
# 2025-11-10 11:14:??
+1 -1
View File
@@ -5,7 +5,7 @@ title: 2025-11-10 15:15:??
tags:
- original-format/digital-text
- topic/construction/electrical
- type/timestamped
- type/periodic/timestamped
dg-publish: true
---
# 2025-11-10 15:15:??
+1 -1
View File
@@ -6,7 +6,7 @@ tags:
- occupational
- original-format/typewritten-print
- topic/estimating
- type/timestamped
- type/periodic/timestamped
dg-publish: true
---
# 2025-11-10 20:00:??
+1 -1
View File
@@ -5,7 +5,7 @@ title: 2025-11-11 06:06:??
tags:
- original-format/typewritten-print
- topic/estimating
- type/timestamped
- type/periodic/timestamped
dg-publish: true
---
# 2025-11-11 06:06:??
+1 -1
View File
@@ -6,7 +6,7 @@ tags:
- original-format/digital-text
- topic/estimating
- topic/transparency
- type/timestamped
- type/periodic/timestamped
dg-publish: true
---
# 2025-11-11 14:41:??
+1 -1
View File
@@ -4,7 +4,7 @@ aliases: []
title: 2025-11-13 08:03:??
tags:
- topic/hobbies/writing
- type/timestamped
- type/periodic/timestamped
dg-publish: true
---
# 2025-11-13 08:03:??
+1 -1
View File
@@ -7,7 +7,7 @@ tags:
- destiny/permanent
- occupational
- topic/estimating
- type/timestamped
- type/periodic/timestamped
dg-publish: true
---
# 2025-11-13 08:19:??
+1 -1
View File
@@ -6,7 +6,7 @@ tags:
- authorship/original
- destiny/permanent
- occupational
- type/timestamped
- type/periodic/timestamped
dg-publish: true
---
# 2025-11-13 ??:??:??
+1 -1
View File
@@ -6,7 +6,7 @@ tags:
- authorship/original
- destiny/permanent
- topic/hobbies/shorthand
- type/timestamped
- type/periodic/timestamped
dg-publish: true
---
# 2025-11-13 20:41:??
+1 -1
View File
@@ -9,7 +9,7 @@ tags:
- topic/hobbies/music/banjo
- topic/hobbies/shorthand
- topic/meta
- type/timestamped
- type/periodic/timestamped
dg-publish: true
---
# 2025-11-14 13:41:??
+1 -1
View File
@@ -8,7 +8,7 @@ tags:
- status/draft
- topic/hobbies/shorthand
- topic/hobbies/writing
- type/timestamped
- type/periodic/timestamped
dg-publish: true
---
# 2025-11-16 08:09:??
+1 -1
View File
@@ -6,7 +6,7 @@ tags:
- authorship/original
- destiny/permanent
- status/draft
- type/timestamped
- type/periodic/timestamped
- occupational/closeout
dg-publish: true
---
+1 -1
View File
@@ -7,7 +7,7 @@ tags:
- destiny/permanent
- status/complete
- topic/estimating
- type/timestamped
- type/periodic/timestamped
- topic/organization
dg-publish: true
---
+1 -1
View File
@@ -6,7 +6,7 @@ tags:
- authorship/original
- destiny/permanent
- status/draft
- type/timestamped
- type/periodic/timestamped
dg-publish: true
---
# 2025-11-24 ??:??:??
+1 -1
View File
@@ -4,7 +4,7 @@ aliases: []
title: 2025-12-02 10:40:??
tags:
- topic/construction/electrical
- type/timestamped
- type/periodic/timestamped
dg-publish: true
---
# 2025-12-02 10:40:??
+1 -1
View File
@@ -3,7 +3,7 @@ id: 2025-12-02T10:57:00
aliases: []
title: 2025-12-02 10:57:??
tags:
- type/timestamped
- type/periodic/timestamped
dg-publish: true
---
# 2025-12-02 10:57:??
+1 -1
View File
@@ -3,7 +3,7 @@ id: 2025-12-02T13:20:00
aliases: []
title: 2025-12-02 13:20:??
tags:
- type/timestamped
- type/periodic/timestamped
dg-publish: true
---
# 2025-12-02 13:20:??
+1 -1
View File
@@ -8,7 +8,7 @@ tags:
- status/draft
- topic/estimating
- topic/transparency
- type/timestamped
- type/periodic/timestamped
dg-publish: true
---
# 2025-12-03 15:54:22
+1 -1
View File
@@ -7,7 +7,7 @@ tags:
- destiny/permanent
- status/draft
- topic/automation
- type/timestamped
- type/periodic/timestamped
dg-publish: true
---
# 2025-12-04 09:51:17
+1 -1
View File
@@ -6,7 +6,7 @@ tags:
- authorship/original
- destiny/permanent
- status/draft
- type/timestamped
- type/periodic/timestamped
dg-publish: true
---
# 2025-12-09 10:52:??
+1 -1
View File
@@ -9,7 +9,7 @@ tags:
- status/draft
- topic/ambiguity
- topic/transparency
- type/timestamped
- type/periodic/timestamped
dg-publish: true
---
# 2025-12-10 10:45:19
+1 -1
View File
@@ -6,7 +6,7 @@ tags:
- authorship/original
- destiny/permanent
- status/draft
- type/timestamped
- type/periodic/timestamped
dg-publish: true
---
# 2025-12-12 09:38:52
+1 -1
View File
@@ -6,7 +6,7 @@ tags:
- authorship/original
- destiny/permanent
- status/draft
- type/timestamped
- type/periodic/timestamped
dg-publish: true
---
# 2025-12-13 08:45:??
+1 -1
View File
@@ -6,7 +6,7 @@ tags:
- authorship/original
- destiny/permanent
- status/draft
- type/timestamped
- type/periodic/timestamped
dg-publish: true
---
# 2025-12-14 09:52:??
+1 -1
View File
@@ -3,7 +3,7 @@ id: 2025-12-16T09:20:52
aliases: []
title: 2025-12-16 09:20:52
tags:
- type/timestamped
- type/periodic/timestamped
dg-publish: true
---
# 2025-12-16 09:20:52
+1 -1
View File
@@ -3,7 +3,7 @@ id: 2025-12-16T20:04:00
aliases: []
title: 2025-12-16 20:04:??
tags:
- type/timestamped
- type/periodic/timestamped
dg-publish: true
---
# 2025-12-16 20:04:??
+1 -1
View File
@@ -3,7 +3,7 @@ id: 2025-12-17T05:39:00
aliases: []
title: 2025-12-17 05:39:??
tags:
- type/timestamped
- type/periodic/timestamped
dg-publish: true
---
# 2025-12-17 05:39:??
+1 -1
View File
@@ -4,7 +4,7 @@ aliases: []
title: 2025-12-17 12:32:??
tags:
- topic/ambiguity
- type/timestamped
- type/periodic/timestamped
dg-publish: true
---
# 2025-12-17 12:32:??
+1 -1
View File
@@ -3,7 +3,7 @@ id: 2025-12-18T08:32:18
aliases: []
title: 2025-12-18 08:32:18
tags:
- type/timestamped
- type/periodic/timestamped
dg-publish: true
---
# 2025-12-18 08:32:18
+1 -1
View File
@@ -4,7 +4,7 @@ aliases: []
title: 2025-12-18 10:38:??
tags:
- topic/meta
- type/timestamped
- type/periodic/timestamped
dg-publish: true
---
# 2025-12-18 10:38:??
+1 -1
View File
@@ -3,7 +3,7 @@ id: 2025-12-18T14:18:00
aliases: []
title: 2025-12-18 14:18:??
tags:
- type/timestamped
- type/periodic/timestamped
dg-publish: true
---
# 2025-12-18 14:18:??
+1 -1
View File
@@ -3,7 +3,7 @@ id: 2025-12-18T15:22:00
aliases: []
title: 2025-12-18 15:22:??
tags:
- type/timestamped
- type/periodic/timestamped
dg-publish: true
---
# 2025-12-18 15:22:??
+1 -1
View File
@@ -3,7 +3,7 @@ id: 2025-12-18T15:30:00
aliases: []
title: 2025-12-18 15:30:??
tags:
- type/timestamped
- type/periodic/timestamped
dg-publish: true
---
# 2025-12-18 15:30:??
+1 -1
View File
@@ -4,7 +4,7 @@ aliases: []
title: 2025-12-19 10:44:??
tags:
- occupational/takeoff
- type/timestamped
- type/periodic/timestamped
dg-publish: true
---
# 2025-12-19 10:44:??
+1 -1
View File
@@ -4,7 +4,7 @@ aliases: []
title: 2025-12-19 10:44:??
tags:
- occupational/takeoff
- type/timestamped
- type/periodic/timestamped
dg-publish: true
---
# 2025-12-19 10:44:??
+1 -1
View File
@@ -6,7 +6,7 @@ tags:
- authorship/original
- destiny/permanent
- status/draft
- type/timestamped
- type/periodic/timestamped
dg-publish: true
---
# 2025-12-20 19:28:??
+1 -1
View File
@@ -6,7 +6,7 @@ tags:
- authorship/original
- destiny/permanent
- status/draft
- type/timestamped
- type/periodic/timestamped
dg-publish: true
---
# 2025-12-30 10:08:30
+1 -1
View File
@@ -3,7 +3,7 @@ id: 2026-01-02T10:10:18
aliases: []
title: 2026-01-02 10:10:18
tags:
- type/timestamped
- type/periodic/timestamped
dg-publish: true
---
# 2026-01-02 10:10:18
+1 -1
View File
@@ -3,7 +3,7 @@ id: 2026-01-02T19:21:00
aliases: []
title: 2026-01-02 19:21:??
tags:
- type/timestamped
- type/periodic/timestamped
dg-publish: true
---
# 2026-01-02 19:21:??
+1 -1
View File
@@ -6,7 +6,7 @@ tags:
- authorship/original
- destiny/permanent
- status/draft
- type/timestamped
- type/periodic/timestamped
dg-publish: true
---
# 2026-01-04 ??:??:??
+1 -1
View File
@@ -6,7 +6,7 @@ tags:
- authorship/original
- destiny/permanent
- status/draft
- type/timestamped
- type/periodic/timestamped
dg-publish: true
---
# 2026-01-05 15:44:50
+1 -1
View File
@@ -3,7 +3,7 @@ id: 2026-01-06T07:47:00
aliases: []
title: 2026-01-06 07:47:??
tags:
- type/timestamped
- type/periodic/timestamped
dg-publish: true
---
# 2026-01-06 07:47:??
+1 -1
View File
@@ -3,7 +3,7 @@ id: 2026-01-06T10:00:00
aliases: []
title: 2026-01-06 10:00:??
tags:
- type/timestamped
- type/periodic/timestamped
dg-publish: true
---
# 2026-01-06 10:00:??
+1 -1
View File
@@ -3,7 +3,7 @@ id: 2026-01-06T10:57:00
aliases: []
title: 2026-01-06 10:57:??
tags:
- type/timestamped
- type/periodic/timestamped
dg-publish: true
---
# 2026-01-06 10:57:??
+1 -1
View File
@@ -3,7 +3,7 @@ id: 2026-01-07T06:41:00
aliases: []
title: 2026-01-07 06:41:??
tags:
- type/timestamped
- type/periodic/timestamped
dg-publish: true
---
# 2026-01-07 06:41:??
+1 -1
View File
@@ -3,7 +3,7 @@ id: 2026-01-07T10:03:00
aliases: []
title: 2026-01-07 10:03:??
tags:
- type/timestamped
- type/periodic/timestamped
dg-publish: true
---
# 2026-01-07 10:03:??
+1 -1
View File
@@ -3,7 +3,7 @@ id: 2026-01-07T10:05:00
aliases: []
title: 2026-01-07 10:05:??
tags:
- type/timestamped
- type/periodic/timestamped
dg-publish: true
---
# 2026-01-07 10:05:??
+1 -1
View File
@@ -6,7 +6,7 @@ tags:
- authorship/original
- occupational
- topic/estimating
- type/timestamped
- type/periodic/timestamped
dg-publish: true
---
# 2026-01-07 10:42:??
+1 -1
View File
@@ -6,7 +6,7 @@ tags:
- occupational
- topic/estimating
- topic/organization
- type/timestamped
- type/periodic/timestamped
dg-publish: true
---
# 2026-01-07 12:13:??
+1 -1
View File
@@ -6,7 +6,7 @@ tags:
- occupational
- topic/estimating
- topic/organization
- type/timestamped
- type/periodic/timestamped
dg-publish: true
---
# 2026-01-07 16:03:??
+1 -1
View File
@@ -6,7 +6,7 @@ tags:
- authorship/original
- destiny/permanent
- occupational/closeout
- type/timestamped
- type/periodic/timestamped
dg-publish: true
---
# 2026-01-08 13:33:34
+1 -1
View File
@@ -3,7 +3,7 @@ id: 2026-01-09T10:00:03
aliases: []
title: 2026-01-09 10:00:03
tags:
- type/timestamped
- type/periodic/timestamped
dg-publish: true
---
# 2026-01-09 10:00:03
+1 -1
View File
@@ -3,7 +3,7 @@ id: 2026-01-09T12:00:00
aliases: []
title: 2026-01-09 12:00:??
tags:
- type/timestamped
- type/periodic/timestamped
dg-publish: true
---
# 2026-01-09 12:00:??
+1 -1
View File
@@ -3,7 +3,7 @@ id: 2026-01-09T14:45:00
aliases: []
title: 2026-01-09 14:45:??
tags:
- type/timestamped
- type/periodic/timestamped
dg-publish: true
---
# 2026-01-09 14:45:??
+1 -1
View File
@@ -3,7 +3,7 @@ id: 2026-01-09T16:28:00
aliases: []
title: 2026-01-09 16:28:??
tags:
- type/timestamped
- type/periodic/timestamped
dg-publish: true
---
# 2026-01-09 16:28:??
+1 -1
View File
@@ -6,7 +6,7 @@ tags:
- authorship/original
- destiny/permanent
- status/draft
- type/timestamped
- type/periodic/timestamped
dg-publish: true
---
# 2026-01-10 08:42:??
+1 -1
View File
@@ -3,7 +3,7 @@ id: 2026-01-11T09:00:00
aliases: []
title: 2026-01-11 09:00:??
tags:
- type/timestamped
- type/periodic/timestamped
dg-publish: true
---
# 2026-01-11 09:00:??
+1 -1
View File
@@ -3,7 +3,7 @@ id: 2026-01-11T11:00:00
aliases: []
title: 2026-01-11 11:00:??
tags:
- type/timestamped
- type/periodic/timestamped
dg-publish: true
---
# 2026-01-11 11:00:??
+1 -1
View File
@@ -4,7 +4,7 @@ aliases: []
title: 2026-01-12 10:00:??
tags:
- occupational
- type/timestamped
- type/periodic/timestamped
dg-publish: true
---
# 2026-01-12 10:00:??
+1 -1
View File
@@ -4,7 +4,7 @@ aliases: []
title: 2026-01-12 10:42:30
tags:
- occupational
- type/timestamped
- type/periodic/timestamped
dg-publish: true
---
# 2026-01-12 10:42:30
+1 -1
View File
@@ -4,7 +4,7 @@ aliases: []
title: 2026-01-12 12:23:??
tags:
- occupational
- type/timestamped
- type/periodic/timestamped
dg-publish: true
---
# 2026-01-12 12:23:??
+1 -1
View File
@@ -4,7 +4,7 @@ aliases: []
title: 2026-01-12 13:02:??
tags:
- topic/construction
- type/timestamped
- type/periodic/timestamped
dg-publish: true
---
# 2026-01-12 13:02:??

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