diff --git a/.gitignore b/.gitignore index 3aa8e34..6260e3a 100644 --- a/.gitignore +++ b/.gitignore @@ -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/ \ No newline at end of file diff --git a/.obsidian/appearance.json b/.obsidian/appearance.json index b6d792d..258d620 100644 --- a/.obsidian/appearance.json +++ b/.obsidian/appearance.json @@ -4,7 +4,7 @@ "interfaceFontFamily": "", "cssTheme": "Typewriter", "theme": "moonstone", - "baseFontSize": 16, + "baseFontSize": 15, "enabledCssSnippets": [ "tables" ] diff --git a/.obsidian/community-plugins.json b/.obsidian/community-plugins.json index 71ed2b0..755cd4c 100644 --- a/.obsidian/community-plugins.json +++ b/.obsidian/community-plugins.json @@ -16,7 +16,6 @@ "lilypond", "novel-word-count", "easy-copy", - "anchor-display-text", "calendar", "periodic-notes", "spellcheck-toggler", diff --git a/.obsidian/graph.json b/.obsidian/graph.json index 7dacd7a..139af63 100644 --- a/.obsidian/graph.json +++ b/.obsidian/graph.json @@ -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 } \ No newline at end of file diff --git a/.obsidian/plugins/anchor-display-text/data.json b/.obsidian/plugins/anchor-display-text/data.json deleted file mode 100644 index eed62e4..0000000 --- a/.obsidian/plugins/anchor-display-text/data.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "includeNoteName": "headersOnly", - "titleProperty": "title", - "whichHeadings": "allHeaders", - "includeNotice": false, - "sep": " ", - "suggest": true, - "ignoreEmbedded": true -} \ No newline at end of file diff --git a/.obsidian/plugins/anchor-display-text/main.js b/.obsidian/plugins/anchor-display-text/main.js deleted file mode 100644 index 8182d1f..0000000 --- a/.obsidian/plugins/anchor-display-text/main.js +++ /dev/null @@ -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 */ \ No newline at end of file diff --git a/.obsidian/plugins/anchor-display-text/manifest.json b/.obsidian/plugins/anchor-display-text/manifest.json deleted file mode 100644 index 8d36942..0000000 --- a/.obsidian/plugins/anchor-display-text/manifest.json +++ /dev/null @@ -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 -} \ No newline at end of file diff --git a/.obsidian/plugins/obsidian-tagfolder/data.json b/.obsidian/plugins/obsidian-tagfolder/data.json index 1298d65..49abf17 100644 --- a/.obsidian/plugins/obsidian-tagfolder/data.json +++ b/.obsidian/plugins/obsidian-tagfolder/data.json @@ -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": { diff --git a/daily/2026-01-01.md b/daily/2026-01-01.md index 83691e1..83e7998 100644 --- a/daily/2026-01-01.md +++ b/daily/2026-01-01.md @@ -11,4 +11,4 @@ dg-publish: true --- # 2026-01-01 -#made-recipe/granola +Made recipe: [[granola]] diff --git a/daily/2026-02-05.md b/daily/2026-02-05.md index 2599ab3..b115256 100644 --- a/daily/2026-02-05.md +++ b/daily/2026-02-05.md @@ -12,4 +12,4 @@ dg-publish: true --- # 2026-02-05 -#made-recipe/granola +Made recipe: [[granola]] diff --git a/daily/2026-02-09.md b/daily/2026-02-09.md index af78be5..30184ab 100644 --- a/daily/2026-02-09.md +++ b/daily/2026-02-09.md @@ -16,4 +16,4 @@ yearly: "[[2026]]" --- # 2026-02-09 -#made-recipe/granola +Made recipe: [[granola ]] diff --git a/daily/2026-02-12.md b/daily/2026-02-12.md index cccf341..a103cf1 100644 --- a/daily/2026-02-12.md +++ b/daily/2026-02-12.md @@ -16,4 +16,4 @@ yearly: "[[2026]]" --- # 2026-02-12 -#made-recipe/granola +Made recipe: [[granola]] diff --git a/daily/2026-02-15.md b/daily/2026-02-15.md index 6650360..aca34ba 100644 --- a/daily/2026-02-15.md +++ b/daily/2026-02-15.md @@ -16,4 +16,4 @@ yearly: "[[2026]]" --- # 2026-02-15 -#made-recipe/granola +Made recipe: [[granola]] diff --git a/daily/2026-02-18.md b/daily/2026-02-18.md index 88c1425..ec5bfd2 100644 --- a/daily/2026-02-18.md +++ b/daily/2026-02-18.md @@ -16,4 +16,4 @@ yearly: "[[2026]]" --- # 2026-02-18 -#made-recipe/granola +Made recipe: [[granola]] diff --git a/daily/2026-02-19.md b/daily/2026-02-19.md index bfd1164..ea5b165 100644 --- a/daily/2026-02-19.md +++ b/daily/2026-02-19.md @@ -16,4 +16,4 @@ yearly: "[[2026]]" --- # 2026-02-19 -#made-recipe/red-beans-and-rice +Made recipe: [[red-beans-and-rice]] diff --git a/daily/2026-02-22.md b/daily/2026-02-22.md index 7d00879..9b700d9 100644 --- a/daily/2026-02-22.md +++ b/daily/2026-02-22.md @@ -16,4 +16,4 @@ yearly: "[[2026]]" --- # 2026-02-22 -#made-recipe/french-toast +Made recipe: [[french-toast]] diff --git a/daily/2026-02-24.md b/daily/2026-02-24.md index 6aec1fb..c6d1db9 100644 --- a/daily/2026-02-24.md +++ b/daily/2026-02-24.md @@ -16,4 +16,4 @@ yearly: "[[2026]]" --- # 2026-02-24 -#made-recipe/granola +Made recipe: [[granola]] diff --git a/daily/2026-02-28.md b/daily/2026-02-28.md index 27bf9c6..a8a5f2c 100644 --- a/daily/2026-02-28.md +++ b/daily/2026-02-28.md @@ -16,4 +16,4 @@ yearly: "[[2026]]" --- # 2026-02-28 -#made-recipe/granola +Made recipe: [[granola]] diff --git a/daily/2026-03-02.md b/daily/2026-03-02.md index 7b168f0..a52f4cd 100644 --- a/daily/2026-03-02.md +++ b/daily/2026-03-02.md @@ -16,4 +16,4 @@ yearly: "[[2026]]" --- # 2026-03-02 -#made-recipe/granola +Made recipe: [[granola]] diff --git a/daily/2026-03-06.md b/daily/2026-03-06.md index b34cf73..11af2d6 100644 --- a/daily/2026-03-06.md +++ b/daily/2026-03-06.md @@ -16,4 +16,4 @@ yearly: "[[2026]]" --- # 2026-03-06 -#made-recipe/granola +Made recipe: [[granola ]] diff --git a/daily/2026-03-08.md b/daily/2026-03-08.md new file mode 100644 index 0000000..395c8c6 --- /dev/null +++ b/daily/2026-03-08.md @@ -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]] diff --git a/music-theory-for-banjo.md b/music-theory-for-banjo.md index a9c8805..123ccbd 100644 --- a/music-theory-for-banjo.md +++ b/music-theory-for-banjo.md @@ -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. \ No newline at end of file +with the majority of the chords one intends to play. diff --git a/templates/timestamped.md b/templates/timestamped.md index 408b49d..062b798 100644 --- a/templates/timestamped.md +++ b/templates/timestamped.md @@ -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}}]]" diff --git a/timestamped/2025-06-13_00-00-00.md b/timestamped/2025-06-13_00-00-00.md index fc5bc39..c0998bd 100644 --- a/timestamped/2025-06-13_00-00-00.md +++ b/timestamped/2025-06-13_00-00-00.md @@ -6,7 +6,7 @@ tags: - authorship/original - destiny/permanent - status/draft - - type/timestamped + - type/periodic/timestamped dg-publish: true --- # 2025-06-13 ??:??:?? diff --git a/timestamped/2025-07-18_00-00-00.md b/timestamped/2025-07-18_00-00-00.md index 199d22b..c8c8a7d 100644 --- a/timestamped/2025-07-18_00-00-00.md +++ b/timestamped/2025-07-18_00-00-00.md @@ -9,7 +9,7 @@ tags: - topic/construction - topic/estimating - type/anecdote - - type/timestamped + - type/periodic/timestamped dg-publish: true --- # 2025-07-18 ??:??:?? diff --git a/timestamped/2025-08-22_00-00-00.md b/timestamped/2025-08-22_00-00-00.md index 4766a62..57b0f77 100644 --- a/timestamped/2025-08-22_00-00-00.md +++ b/timestamped/2025-08-22_00-00-00.md @@ -6,7 +6,7 @@ tags: - authorship/original - destiny/permanent - status/draft - - type/timestamped + - type/periodic/timestamped dg-publish: true --- # 2025-08-22 ??:??:?? diff --git a/timestamped/2025-08-26_00-00-00.md b/timestamped/2025-08-26_00-00-00.md index 379d05e..d27e83d 100644 --- a/timestamped/2025-08-26_00-00-00.md +++ b/timestamped/2025-08-26_00-00-00.md @@ -6,7 +6,7 @@ tags: - authorship/original - destiny/permanent - status/draft - - type/timestamped + - type/periodic/timestamped dg-publish: true --- # 2025-08-26 ??:??:?? diff --git a/timestamped/2025-10-15_09-32-00.md b/timestamped/2025-10-15_09-32-00.md index 58907a1..7dd8358 100644 --- a/timestamped/2025-10-15_09-32-00.md +++ b/timestamped/2025-10-15_09-32-00.md @@ -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 --- diff --git a/timestamped/2025-10-20_01-00-00.md b/timestamped/2025-10-20_01-00-00.md index 83f8144..75667d7 100644 --- a/timestamped/2025-10-20_01-00-00.md +++ b/timestamped/2025-10-20_01-00-00.md @@ -6,7 +6,7 @@ tags: - authorship/original - destiny/permanent - status/draft - - type/timestamped + - type/periodic/timestamped dg-publish: true --- # 2025-10-20 ??:??:?? diff --git a/timestamped/2025-10-26_18-36-00.md b/timestamped/2025-10-26_18-36-00.md index e50c6dd..0290be6 100644 --- a/timestamped/2025-10-26_18-36-00.md +++ b/timestamped/2025-10-26_18-36-00.md @@ -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:?? diff --git a/timestamped/2025-10-31_18-26-00.md b/timestamped/2025-10-31_18-26-00.md index 2378b8d..7af98b4 100644 --- a/timestamped/2025-10-31_18-26-00.md +++ b/timestamped/2025-10-31_18-26-00.md @@ -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:?? diff --git a/timestamped/2025-11-01_05-41-00.md b/timestamped/2025-11-01_05-41-00.md index d369ae2..72afadb 100644 --- a/timestamped/2025-11-01_05-41-00.md +++ b/timestamped/2025-11-01_05-41-00.md @@ -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:?? diff --git a/timestamped/2025-11-01_07-06-00.md b/timestamped/2025-11-01_07-06-00.md index febdc6b..0e85a4e 100644 --- a/timestamped/2025-11-01_07-06-00.md +++ b/timestamped/2025-11-01_07-06-00.md @@ -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:?? diff --git a/timestamped/2025-11-01_08-25-00.md b/timestamped/2025-11-01_08-25-00.md index 30270d0..1dea689 100644 --- a/timestamped/2025-11-01_08-25-00.md +++ b/timestamped/2025-11-01_08-25-00.md @@ -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:?? diff --git a/timestamped/2025-11-05_00-00-00.md b/timestamped/2025-11-05_00-00-00.md index c36bb93..914594a 100644 --- a/timestamped/2025-11-05_00-00-00.md +++ b/timestamped/2025-11-05_00-00-00.md @@ -8,7 +8,7 @@ tags: - original-format/typewritten-print - status/complete - topic/morality - - type/timestamped + - type/periodic/timestamped dg-publish: true --- # 2025-11-05 ??:??:?? diff --git a/timestamped/2025-11-06_18-12-00.md b/timestamped/2025-11-06_18-12-00.md index 62d6414..d37b7cb 100644 --- a/timestamped/2025-11-06_18-12-00.md +++ b/timestamped/2025-11-06_18-12-00.md @@ -9,7 +9,7 @@ tags: - status/complete - topic/estimating - topic/transparency - - type/timestamped + - type/periodic/timestamped dg-publish: true --- # 2025-11-06 18:12:?? diff --git a/timestamped/2025-11-10_06-53-00.md b/timestamped/2025-11-10_06-53-00.md index aa37d49..016d9d2 100644 --- a/timestamped/2025-11-10_06-53-00.md +++ b/timestamped/2025-11-10_06-53-00.md @@ -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:?? diff --git a/timestamped/2025-11-10_10-40-00.md b/timestamped/2025-11-10_10-40-00.md index 4d726a6..8390c4d 100644 --- a/timestamped/2025-11-10_10-40-00.md +++ b/timestamped/2025-11-10_10-40-00.md @@ -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:?? diff --git a/timestamped/2025-11-10_11-14-00.md b/timestamped/2025-11-10_11-14-00.md index b5432c0..3fff87d 100644 --- a/timestamped/2025-11-10_11-14-00.md +++ b/timestamped/2025-11-10_11-14-00.md @@ -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:?? diff --git a/timestamped/2025-11-10_15-15-00.md b/timestamped/2025-11-10_15-15-00.md index 9f8aa7d..bfb3029 100644 --- a/timestamped/2025-11-10_15-15-00.md +++ b/timestamped/2025-11-10_15-15-00.md @@ -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:?? diff --git a/timestamped/2025-11-10_20-00-00.md b/timestamped/2025-11-10_20-00-00.md index 559cd2a..710fca4 100644 --- a/timestamped/2025-11-10_20-00-00.md +++ b/timestamped/2025-11-10_20-00-00.md @@ -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:?? diff --git a/timestamped/2025-11-11_06-06-00.md b/timestamped/2025-11-11_06-06-00.md index 83c0186..e975d98 100644 --- a/timestamped/2025-11-11_06-06-00.md +++ b/timestamped/2025-11-11_06-06-00.md @@ -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:?? diff --git a/timestamped/2025-11-11_14-41-00.md b/timestamped/2025-11-11_14-41-00.md index b5faf22..a273ce0 100644 --- a/timestamped/2025-11-11_14-41-00.md +++ b/timestamped/2025-11-11_14-41-00.md @@ -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:?? diff --git a/timestamped/2025-11-13_08-03-00.md b/timestamped/2025-11-13_08-03-00.md index 4c1a59b..c4e39df 100644 --- a/timestamped/2025-11-13_08-03-00.md +++ b/timestamped/2025-11-13_08-03-00.md @@ -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:?? diff --git a/timestamped/2025-11-13_08-19-00.md b/timestamped/2025-11-13_08-19-00.md index b38f3ae..53f6be5 100644 --- a/timestamped/2025-11-13_08-19-00.md +++ b/timestamped/2025-11-13_08-19-00.md @@ -7,7 +7,7 @@ tags: - destiny/permanent - occupational - topic/estimating - - type/timestamped + - type/periodic/timestamped dg-publish: true --- # 2025-11-13 08:19:?? diff --git a/timestamped/2025-11-13_08-19-01.md b/timestamped/2025-11-13_08-19-01.md index 240c17f..f2ab6d1 100644 --- a/timestamped/2025-11-13_08-19-01.md +++ b/timestamped/2025-11-13_08-19-01.md @@ -6,7 +6,7 @@ tags: - authorship/original - destiny/permanent - occupational - - type/timestamped + - type/periodic/timestamped dg-publish: true --- # 2025-11-13 ??:??:?? diff --git a/timestamped/2025-11-13_20-41-00.md b/timestamped/2025-11-13_20-41-00.md index 5a9bdc9..2e8b7d8 100644 --- a/timestamped/2025-11-13_20-41-00.md +++ b/timestamped/2025-11-13_20-41-00.md @@ -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:?? diff --git a/timestamped/2025-11-14_13-41-00.md b/timestamped/2025-11-14_13-41-00.md index 76c21e6..311bdc3 100644 --- a/timestamped/2025-11-14_13-41-00.md +++ b/timestamped/2025-11-14_13-41-00.md @@ -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:?? diff --git a/timestamped/2025-11-16_08-09-00.md b/timestamped/2025-11-16_08-09-00.md index cb569c0..bde955b 100644 --- a/timestamped/2025-11-16_08-09-00.md +++ b/timestamped/2025-11-16_08-09-00.md @@ -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:?? diff --git a/timestamped/2025-11-18_16-33-00.md b/timestamped/2025-11-18_16-33-00.md index 0a7ca6a..951e80a 100644 --- a/timestamped/2025-11-18_16-33-00.md +++ b/timestamped/2025-11-18_16-33-00.md @@ -6,7 +6,7 @@ tags: - authorship/original - destiny/permanent - status/draft - - type/timestamped + - type/periodic/timestamped - occupational/closeout dg-publish: true --- diff --git a/timestamped/2025-11-21_10-11-00.md b/timestamped/2025-11-21_10-11-00.md index c4d1513..d7c052d 100644 --- a/timestamped/2025-11-21_10-11-00.md +++ b/timestamped/2025-11-21_10-11-00.md @@ -7,7 +7,7 @@ tags: - destiny/permanent - status/complete - topic/estimating - - type/timestamped + - type/periodic/timestamped - topic/organization dg-publish: true --- diff --git a/timestamped/2025-11-24_00-00-00.md b/timestamped/2025-11-24_00-00-00.md index 3a288fb..4c565f2 100644 --- a/timestamped/2025-11-24_00-00-00.md +++ b/timestamped/2025-11-24_00-00-00.md @@ -6,7 +6,7 @@ tags: - authorship/original - destiny/permanent - status/draft - - type/timestamped + - type/periodic/timestamped dg-publish: true --- # 2025-11-24 ??:??:?? diff --git a/timestamped/2025-12-02_10-40-00.md b/timestamped/2025-12-02_10-40-00.md index 9e2e197..160947e 100644 --- a/timestamped/2025-12-02_10-40-00.md +++ b/timestamped/2025-12-02_10-40-00.md @@ -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:?? diff --git a/timestamped/2025-12-02_10-57-00.md b/timestamped/2025-12-02_10-57-00.md index 629c549..c952375 100644 --- a/timestamped/2025-12-02_10-57-00.md +++ b/timestamped/2025-12-02_10-57-00.md @@ -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:?? diff --git a/timestamped/2025-12-02_13-20-00.md b/timestamped/2025-12-02_13-20-00.md index 0cdc5a9..8fe1f66 100644 --- a/timestamped/2025-12-02_13-20-00.md +++ b/timestamped/2025-12-02_13-20-00.md @@ -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:?? diff --git a/timestamped/2025-12-03_15-54-22.md b/timestamped/2025-12-03_15-54-22.md index 2504905..e3a872d 100644 --- a/timestamped/2025-12-03_15-54-22.md +++ b/timestamped/2025-12-03_15-54-22.md @@ -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 diff --git a/timestamped/2025-12-04_09-51-17.md b/timestamped/2025-12-04_09-51-17.md index 07e853d..f495ef5 100644 --- a/timestamped/2025-12-04_09-51-17.md +++ b/timestamped/2025-12-04_09-51-17.md @@ -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 diff --git a/timestamped/2025-12-09_10-52-00.md b/timestamped/2025-12-09_10-52-00.md index bb9f680..fe5adcb 100644 --- a/timestamped/2025-12-09_10-52-00.md +++ b/timestamped/2025-12-09_10-52-00.md @@ -6,7 +6,7 @@ tags: - authorship/original - destiny/permanent - status/draft - - type/timestamped + - type/periodic/timestamped dg-publish: true --- # 2025-12-09 10:52:?? diff --git a/timestamped/2025-12-10_10-45-19.md b/timestamped/2025-12-10_10-45-19.md index 947a8fb..ea874d9 100644 --- a/timestamped/2025-12-10_10-45-19.md +++ b/timestamped/2025-12-10_10-45-19.md @@ -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 diff --git a/timestamped/2025-12-12_09-38-52.md b/timestamped/2025-12-12_09-38-52.md index 0db8583..3bdb366 100644 --- a/timestamped/2025-12-12_09-38-52.md +++ b/timestamped/2025-12-12_09-38-52.md @@ -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 diff --git a/timestamped/2025-12-13_08-45-00.md b/timestamped/2025-12-13_08-45-00.md index 09ce6a3..9abd225 100644 --- a/timestamped/2025-12-13_08-45-00.md +++ b/timestamped/2025-12-13_08-45-00.md @@ -6,7 +6,7 @@ tags: - authorship/original - destiny/permanent - status/draft - - type/timestamped + - type/periodic/timestamped dg-publish: true --- # 2025-12-13 08:45:?? diff --git a/timestamped/2025-12-14_09-52-00.md b/timestamped/2025-12-14_09-52-00.md index ebd5a9e..9a71d33 100644 --- a/timestamped/2025-12-14_09-52-00.md +++ b/timestamped/2025-12-14_09-52-00.md @@ -6,7 +6,7 @@ tags: - authorship/original - destiny/permanent - status/draft - - type/timestamped + - type/periodic/timestamped dg-publish: true --- # 2025-12-14 09:52:?? diff --git a/timestamped/2025-12-16_09-20-52.md b/timestamped/2025-12-16_09-20-52.md index 608172d..799aea0 100644 --- a/timestamped/2025-12-16_09-20-52.md +++ b/timestamped/2025-12-16_09-20-52.md @@ -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 diff --git a/timestamped/2025-12-16_20-04-00.md b/timestamped/2025-12-16_20-04-00.md index 7b57d80..15c2edc 100644 --- a/timestamped/2025-12-16_20-04-00.md +++ b/timestamped/2025-12-16_20-04-00.md @@ -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:?? diff --git a/timestamped/2025-12-17_05-39-00.md b/timestamped/2025-12-17_05-39-00.md index 43ba3d7..0c20553 100644 --- a/timestamped/2025-12-17_05-39-00.md +++ b/timestamped/2025-12-17_05-39-00.md @@ -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:?? diff --git a/timestamped/2025-12-17_12-32-00.md b/timestamped/2025-12-17_12-32-00.md index 95144d9..db41909 100644 --- a/timestamped/2025-12-17_12-32-00.md +++ b/timestamped/2025-12-17_12-32-00.md @@ -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:?? diff --git a/timestamped/2025-12-18_08-32-18.md b/timestamped/2025-12-18_08-32-18.md index 9387682..59537c8 100644 --- a/timestamped/2025-12-18_08-32-18.md +++ b/timestamped/2025-12-18_08-32-18.md @@ -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 diff --git a/timestamped/2025-12-18_10-38-00.md b/timestamped/2025-12-18_10-38-00.md index 622729f..68bb15b 100644 --- a/timestamped/2025-12-18_10-38-00.md +++ b/timestamped/2025-12-18_10-38-00.md @@ -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:?? diff --git a/timestamped/2025-12-18_14-18-00.md b/timestamped/2025-12-18_14-18-00.md index a61246b..33d2e24 100644 --- a/timestamped/2025-12-18_14-18-00.md +++ b/timestamped/2025-12-18_14-18-00.md @@ -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:?? diff --git a/timestamped/2025-12-18_15-22-00.md b/timestamped/2025-12-18_15-22-00.md index 3bc8403..c0e1a29 100644 --- a/timestamped/2025-12-18_15-22-00.md +++ b/timestamped/2025-12-18_15-22-00.md @@ -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:?? diff --git a/timestamped/2025-12-18_15-30-00.md b/timestamped/2025-12-18_15-30-00.md index 890deb8..190003f 100644 --- a/timestamped/2025-12-18_15-30-00.md +++ b/timestamped/2025-12-18_15-30-00.md @@ -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:?? diff --git a/timestamped/2025-12-19_10-44-00.md b/timestamped/2025-12-19_10-44-00.md index f71abbe..2da2314 100644 --- a/timestamped/2025-12-19_10-44-00.md +++ b/timestamped/2025-12-19_10-44-00.md @@ -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:?? diff --git a/timestamped/2025-12-19_10-44-01.md b/timestamped/2025-12-19_10-44-01.md index bd9b270..fa69e89 100644 --- a/timestamped/2025-12-19_10-44-01.md +++ b/timestamped/2025-12-19_10-44-01.md @@ -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:?? diff --git a/timestamped/2025-12-20_19-28-00.md b/timestamped/2025-12-20_19-28-00.md index 8488dad..6522ed9 100644 --- a/timestamped/2025-12-20_19-28-00.md +++ b/timestamped/2025-12-20_19-28-00.md @@ -6,7 +6,7 @@ tags: - authorship/original - destiny/permanent - status/draft - - type/timestamped + - type/periodic/timestamped dg-publish: true --- # 2025-12-20 19:28:?? diff --git a/timestamped/2025-12-30_10-08-30.md b/timestamped/2025-12-30_10-08-30.md index 8a064a1..8dd9d99 100644 --- a/timestamped/2025-12-30_10-08-30.md +++ b/timestamped/2025-12-30_10-08-30.md @@ -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 diff --git a/timestamped/2026-01-02_10-10-18.md b/timestamped/2026-01-02_10-10-18.md index 0d968e1..0191d4d 100644 --- a/timestamped/2026-01-02_10-10-18.md +++ b/timestamped/2026-01-02_10-10-18.md @@ -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 diff --git a/timestamped/2026-01-02_19-21-00.md b/timestamped/2026-01-02_19-21-00.md index 21be1d8..d517c5e 100644 --- a/timestamped/2026-01-02_19-21-00.md +++ b/timestamped/2026-01-02_19-21-00.md @@ -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:?? diff --git a/timestamped/2026-01-04_00-00-00.md b/timestamped/2026-01-04_00-00-00.md index 377f916..005dad7 100644 --- a/timestamped/2026-01-04_00-00-00.md +++ b/timestamped/2026-01-04_00-00-00.md @@ -6,7 +6,7 @@ tags: - authorship/original - destiny/permanent - status/draft - - type/timestamped + - type/periodic/timestamped dg-publish: true --- # 2026-01-04 ??:??:?? diff --git a/timestamped/2026-01-05_15-44-50.md b/timestamped/2026-01-05_15-44-50.md index 5f63a46..3677553 100644 --- a/timestamped/2026-01-05_15-44-50.md +++ b/timestamped/2026-01-05_15-44-50.md @@ -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 diff --git a/timestamped/2026-01-06_07-47-00.md b/timestamped/2026-01-06_07-47-00.md index 3fcb10f..14f9eb5 100644 --- a/timestamped/2026-01-06_07-47-00.md +++ b/timestamped/2026-01-06_07-47-00.md @@ -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:?? diff --git a/timestamped/2026-01-06_10-00-00.md b/timestamped/2026-01-06_10-00-00.md index fd4b131..31250c1 100644 --- a/timestamped/2026-01-06_10-00-00.md +++ b/timestamped/2026-01-06_10-00-00.md @@ -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:?? diff --git a/timestamped/2026-01-06_10-57-00.md b/timestamped/2026-01-06_10-57-00.md index 857a9bb..a183c4d 100644 --- a/timestamped/2026-01-06_10-57-00.md +++ b/timestamped/2026-01-06_10-57-00.md @@ -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:?? diff --git a/timestamped/2026-01-07_06-41-00.md b/timestamped/2026-01-07_06-41-00.md index b0cd640..4348c5a 100644 --- a/timestamped/2026-01-07_06-41-00.md +++ b/timestamped/2026-01-07_06-41-00.md @@ -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:?? diff --git a/timestamped/2026-01-07_10-03-00.md b/timestamped/2026-01-07_10-03-00.md index 543d62a..26f358e 100644 --- a/timestamped/2026-01-07_10-03-00.md +++ b/timestamped/2026-01-07_10-03-00.md @@ -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:?? diff --git a/timestamped/2026-01-07_10-05-00.md b/timestamped/2026-01-07_10-05-00.md index 92faf63..422b767 100644 --- a/timestamped/2026-01-07_10-05-00.md +++ b/timestamped/2026-01-07_10-05-00.md @@ -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:?? diff --git a/timestamped/2026-01-07_10-42-00.md b/timestamped/2026-01-07_10-42-00.md index 476d6ed..9947ff3 100644 --- a/timestamped/2026-01-07_10-42-00.md +++ b/timestamped/2026-01-07_10-42-00.md @@ -6,7 +6,7 @@ tags: - authorship/original - occupational - topic/estimating - - type/timestamped + - type/periodic/timestamped dg-publish: true --- # 2026-01-07 10:42:?? diff --git a/timestamped/2026-01-07_12-13-00.md b/timestamped/2026-01-07_12-13-00.md index 5d6f76b..0099062 100644 --- a/timestamped/2026-01-07_12-13-00.md +++ b/timestamped/2026-01-07_12-13-00.md @@ -6,7 +6,7 @@ tags: - occupational - topic/estimating - topic/organization - - type/timestamped + - type/periodic/timestamped dg-publish: true --- # 2026-01-07 12:13:?? diff --git a/timestamped/2026-01-07_16-03-00.md b/timestamped/2026-01-07_16-03-00.md index d4ad599..8cb0582 100644 --- a/timestamped/2026-01-07_16-03-00.md +++ b/timestamped/2026-01-07_16-03-00.md @@ -6,7 +6,7 @@ tags: - occupational - topic/estimating - topic/organization - - type/timestamped + - type/periodic/timestamped dg-publish: true --- # 2026-01-07 16:03:?? diff --git a/timestamped/2026-01-08_13-33-34.md b/timestamped/2026-01-08_13-33-34.md index d321dbe..b69e800 100644 --- a/timestamped/2026-01-08_13-33-34.md +++ b/timestamped/2026-01-08_13-33-34.md @@ -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 diff --git a/timestamped/2026-01-09_10-00-03.md b/timestamped/2026-01-09_10-00-03.md index 455e3a3..72ef5a1 100644 --- a/timestamped/2026-01-09_10-00-03.md +++ b/timestamped/2026-01-09_10-00-03.md @@ -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 diff --git a/timestamped/2026-01-09_12-00-00.md b/timestamped/2026-01-09_12-00-00.md index 71d4387..1f93d15 100644 --- a/timestamped/2026-01-09_12-00-00.md +++ b/timestamped/2026-01-09_12-00-00.md @@ -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:?? diff --git a/timestamped/2026-01-09_14-45-00.md b/timestamped/2026-01-09_14-45-00.md index 04d4c78..cabf0cb 100644 --- a/timestamped/2026-01-09_14-45-00.md +++ b/timestamped/2026-01-09_14-45-00.md @@ -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:?? diff --git a/timestamped/2026-01-09_16-28-00.md b/timestamped/2026-01-09_16-28-00.md index 471258d..3d443bb 100644 --- a/timestamped/2026-01-09_16-28-00.md +++ b/timestamped/2026-01-09_16-28-00.md @@ -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:?? diff --git a/timestamped/2026-01-10_08-42-00.md b/timestamped/2026-01-10_08-42-00.md index 0effb8e..0c51168 100644 --- a/timestamped/2026-01-10_08-42-00.md +++ b/timestamped/2026-01-10_08-42-00.md @@ -6,7 +6,7 @@ tags: - authorship/original - destiny/permanent - status/draft - - type/timestamped + - type/periodic/timestamped dg-publish: true --- # 2026-01-10 08:42:?? diff --git a/timestamped/2026-01-11_09-00-00.md b/timestamped/2026-01-11_09-00-00.md index 894b322..63d85a1 100644 --- a/timestamped/2026-01-11_09-00-00.md +++ b/timestamped/2026-01-11_09-00-00.md @@ -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:?? diff --git a/timestamped/2026-01-11_11-00-00.md b/timestamped/2026-01-11_11-00-00.md index ec45945..fcbdce1 100644 --- a/timestamped/2026-01-11_11-00-00.md +++ b/timestamped/2026-01-11_11-00-00.md @@ -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:?? diff --git a/timestamped/2026-01-12_10-00-00.md b/timestamped/2026-01-12_10-00-00.md index 617386f..7f541fd 100644 --- a/timestamped/2026-01-12_10-00-00.md +++ b/timestamped/2026-01-12_10-00-00.md @@ -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:?? diff --git a/timestamped/2026-01-12_10-42-30.md b/timestamped/2026-01-12_10-42-30.md index 9e804c3..0ac4a20 100644 --- a/timestamped/2026-01-12_10-42-30.md +++ b/timestamped/2026-01-12_10-42-30.md @@ -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 diff --git a/timestamped/2026-01-12_12-23-00.md b/timestamped/2026-01-12_12-23-00.md index 9dc6c03..9bb85fa 100644 --- a/timestamped/2026-01-12_12-23-00.md +++ b/timestamped/2026-01-12_12-23-00.md @@ -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:?? diff --git a/timestamped/2026-01-12_13-02-00.md b/timestamped/2026-01-12_13-02-00.md index 7013ba9..9bf415e 100644 --- a/timestamped/2026-01-12_13-02-00.md +++ b/timestamped/2026-01-12_13-02-00.md @@ -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:?? diff --git a/timestamped/2026-01-12_13-02-01.md b/timestamped/2026-01-12_13-02-01.md index 5831eb7..470803d 100644 --- a/timestamped/2026-01-12_13-02-01.md +++ b/timestamped/2026-01-12_13-02-01.md @@ -6,7 +6,7 @@ tags: - authorship/original - destiny/permanent - occupational - - type/timestamped + - type/periodic/timestamped dg-publish: true --- # 2026-01-12 13:02:?? diff --git a/timestamped/2026-01-13_11-28-14.md b/timestamped/2026-01-13_11-28-14.md index b99efc5..4f9e475 100644 --- a/timestamped/2026-01-13_11-28-14.md +++ b/timestamped/2026-01-13_11-28-14.md @@ -8,7 +8,7 @@ tags: - occupational/closeout - occupational/takeoff - status/draft - - type/timestamped + - type/periodic/timestamped dg-publish: true --- # 2026-01-13 11:28:14 diff --git a/timestamped/2026-01-14_13-27-20.md b/timestamped/2026-01-14_13-27-20.md index c76aa6f..51e656d 100644 --- a/timestamped/2026-01-14_13-27-20.md +++ b/timestamped/2026-01-14_13-27-20.md @@ -7,7 +7,7 @@ tags: - destiny/permanent - occupational - status/draft - - type/timestamped + - type/periodic/timestamped dg-publish: true --- # 2026-01-14 13:27:20 diff --git a/timestamped/2026-01-15_08-11-10.md b/timestamped/2026-01-15_08-11-10.md index a6fd3cc..0086264 100644 --- a/timestamped/2026-01-15_08-11-10.md +++ b/timestamped/2026-01-15_08-11-10.md @@ -3,7 +3,7 @@ id: 2026-01-15T08:11:10 aliases: [] title: 2026-01-15 08:11:10 tags: - - type/timestamped + - type/periodic/timestamped dg-publish: true --- # 2026-01-15 08:11:10 diff --git a/timestamped/2026-01-15_08-15-00.md b/timestamped/2026-01-15_08-15-00.md index 6be0764..26dcbc0 100644 --- a/timestamped/2026-01-15_08-15-00.md +++ b/timestamped/2026-01-15_08-15-00.md @@ -3,7 +3,7 @@ id: 2026-01-15T08:15:00 aliases: [] title: 2026-01-15 08:15:?? tags: - - type/timestamped + - type/periodic/timestamped dg-publish: true --- # 2026-01-15 08:15:?? diff --git a/timestamped/2026-01-19_11-57-39.md b/timestamped/2026-01-19_11-57-39.md index 22382de..6eb0a54 100644 --- a/timestamped/2026-01-19_11-57-39.md +++ b/timestamped/2026-01-19_11-57-39.md @@ -6,7 +6,7 @@ tags: - authorship/original - destiny/permanent - topic/hobbies/digitizing - - type/timestamped + - type/periodic/timestamped dg-publish: true --- # 2026-01-19 11:57:39 diff --git a/timestamped/2026-01-19_12-32-00.md b/timestamped/2026-01-19_12-32-00.md index 3a47967..b425881 100644 --- a/timestamped/2026-01-19_12-32-00.md +++ b/timestamped/2026-01-19_12-32-00.md @@ -5,7 +5,7 @@ title: 2026-01-19 12:32:?? tags: - topic/construction - topic/estimating - - type/timestamped + - type/periodic/timestamped dg-publish: true --- # 2026-01-19 12:32:?? diff --git a/timestamped/2026-01-19_18-13-00.md b/timestamped/2026-01-19_18-13-00.md index 1445167..74bb24c 100644 --- a/timestamped/2026-01-19_18-13-00.md +++ b/timestamped/2026-01-19_18-13-00.md @@ -3,7 +3,7 @@ id: 2026-01-19T18:13:00-05:00 aliases: [] title: 2026-01-19 18:13:?? tags: - - type/timestamped + - type/periodic/timestamped dg-publish: true --- # 2026-01-19 18:13:?? diff --git a/timestamped/2026-01-20_09-09-12.md b/timestamped/2026-01-20_09-09-12.md index ffa3619..a5be4d4 100644 --- a/timestamped/2026-01-20_09-09-12.md +++ b/timestamped/2026-01-20_09-09-12.md @@ -3,7 +3,7 @@ id: 2026-01-20T09:09:12-05:00 aliases: [] title: 2026-01-20 09:09:12 tags: - - type/timestamped + - type/periodic/timestamped dg-publish: true --- # 2026-01-20 09:09:12 diff --git a/timestamped/2026-01-20_10-10-00.md b/timestamped/2026-01-20_10-10-00.md index f23a743..b54522b 100644 --- a/timestamped/2026-01-20_10-10-00.md +++ b/timestamped/2026-01-20_10-10-00.md @@ -3,7 +3,7 @@ id: 2026-01-20T10:10:00-05:00 aliases: [] title: 2026-01-20 10:10:?? tags: - - type/timestamped + - type/periodic/timestamped dg-publish: true --- # 2026-01-20 10:10:?? diff --git a/timestamped/2026-01-20_14-25-00.md b/timestamped/2026-01-20_14-25-00.md index 673ae45..db24194 100644 --- a/timestamped/2026-01-20_14-25-00.md +++ b/timestamped/2026-01-20_14-25-00.md @@ -3,7 +3,7 @@ id: 2026-01-20T14:25:00-05:00 aliases: [] title: 2026-01-20 14:25:?? tags: - - type/timestamped + - type/periodic/timestamped dg-publish: true --- # 2026-01-20 14:25:?? diff --git a/timestamped/2026-01-22_09-55-42.md b/timestamped/2026-01-22_09-55-42.md index 7a053ed..b7399be 100644 --- a/timestamped/2026-01-22_09-55-42.md +++ b/timestamped/2026-01-22_09-55-42.md @@ -4,7 +4,7 @@ aliases: [] title: 2026-01-22 09:55:42 tags: - occupational - - type/timestamped + - type/periodic/timestamped dg-publish: true --- # 2026-01-22 09:55:42 diff --git a/timestamped/2026-01-22_11-58-00.md b/timestamped/2026-01-22_11-58-00.md index cb6145c..3f2a22b 100644 --- a/timestamped/2026-01-22_11-58-00.md +++ b/timestamped/2026-01-22_11-58-00.md @@ -4,7 +4,7 @@ aliases: [] title: 2026-01-22 11:58:?? tags: - occupational - - type/timestamped + - type/periodic/timestamped dg-publish: true --- # 2026-01-22 11:58:?? diff --git a/timestamped/2026-01-22_14-56-00.md b/timestamped/2026-01-22_14-56-00.md index 2c0a493..c694447 100644 --- a/timestamped/2026-01-22_14-56-00.md +++ b/timestamped/2026-01-22_14-56-00.md @@ -7,7 +7,7 @@ tags: - destiny/permanent - occupational - topic/estimating - - type/timestamped + - type/periodic/timestamped dg-publish: true --- # 2026-01-22 14:56:?? diff --git a/timestamped/2026-01-23_08-18-53.md b/timestamped/2026-01-23_08-18-53.md index 8f23edb..b97ed83 100644 --- a/timestamped/2026-01-23_08-18-53.md +++ b/timestamped/2026-01-23_08-18-53.md @@ -3,7 +3,7 @@ id: 2026-01-23T08:18:53-05:00 aliases: [] title: 2026-01-23 08:18:53 tags: - - type/timestamped + - type/periodic/timestamped dg-publish: true --- # 2026-01-23 08:18:53 diff --git a/timestamped/2026-01-23_12-34-00.md b/timestamped/2026-01-23_12-34-00.md index 8bedb34..8c5d25d 100644 --- a/timestamped/2026-01-23_12-34-00.md +++ b/timestamped/2026-01-23_12-34-00.md @@ -3,7 +3,7 @@ id: 2026-01-23T12:34:00-05:00 aliases: [] title: 2026-01-23 12:34:?? tags: - - type/timestamped + - type/periodic/timestamped dg-publish: true --- # 2026-01-23 12:34:?? diff --git a/timestamped/2026-01-25_18-46-00.md b/timestamped/2026-01-25_18-46-00.md index 41c89a8..08015be 100644 --- a/timestamped/2026-01-25_18-46-00.md +++ b/timestamped/2026-01-25_18-46-00.md @@ -4,7 +4,7 @@ aliases: [] title: 2026-01-25 18:46:?? tags: - topic/finance - - type/timestamped + - type/periodic/timestamped dg-publish: true --- # 2026-01-25 18:46:?? diff --git a/timestamped/2026-01-25_21-02-00.md b/timestamped/2026-01-25_21-02-00.md index a44343a..32212ad 100644 --- a/timestamped/2026-01-25_21-02-00.md +++ b/timestamped/2026-01-25_21-02-00.md @@ -3,7 +3,7 @@ id: 2026-01-25T21:02:00-05:00 aliases: [] title: 2026-01-25 21:02:?? tags: - - type/timestamped + - type/periodic/timestamped dg-publish: true --- # 2026-01-25 21:02:?? diff --git a/timestamped/2026-01-25_22-59-00.md b/timestamped/2026-01-25_22-59-00.md index e4d2000..60c794e 100644 --- a/timestamped/2026-01-25_22-59-00.md +++ b/timestamped/2026-01-25_22-59-00.md @@ -3,7 +3,7 @@ id: 2026-01-25T22:59:00-05:00 aliases: [] title: 2026-01-25 22:59:?? tags: - - type/timestamped + - type/periodic/timestamped dg-publish: true --- # 2026-01-25 22:59:?? diff --git a/timestamped/2026-01-26_06-48-00.md b/timestamped/2026-01-26_06-48-00.md index 4731c75..b2f2582 100644 --- a/timestamped/2026-01-26_06-48-00.md +++ b/timestamped/2026-01-26_06-48-00.md @@ -6,7 +6,7 @@ tags: - authorship/original - destiny/permanent - status/draft - - type/timestamped + - type/periodic/timestamped dg-publish: true --- # 2026-01-26 06:48:?? diff --git a/timestamped/2026-01-27_17-31-00.md b/timestamped/2026-01-27_17-31-00.md index 57283fa..5b14ff4 100644 --- a/timestamped/2026-01-27_17-31-00.md +++ b/timestamped/2026-01-27_17-31-00.md @@ -7,7 +7,7 @@ tags: - destiny/permanent - status/draft - topic/hobbies/reading - - type/timestamped + - type/periodic/timestamped dg-publish: true --- # 2026-01-27 17:31:?? diff --git a/timestamped/2026-01-28_09-51-08.md b/timestamped/2026-01-28_09-51-08.md index 70900e0..251270f 100644 --- a/timestamped/2026-01-28_09-51-08.md +++ b/timestamped/2026-01-28_09-51-08.md @@ -4,7 +4,7 @@ aliases: [] title: 2026-01-28 09:51:08 tags: - occupational - - type/timestamped + - type/periodic/timestamped dg-publish: true --- # 2026-01-28 09:51:08 diff --git a/timestamped/2026-01-28_10-02-00.md b/timestamped/2026-01-28_10-02-00.md index 7ded7d7..8ac76bf 100644 --- a/timestamped/2026-01-28_10-02-00.md +++ b/timestamped/2026-01-28_10-02-00.md @@ -4,7 +4,7 @@ aliases: [] title: 2026-01-28 10:02:?? tags: - topic/meta - - type/timestamped + - type/periodic/timestamped dg-publish: true --- # 2026-01-28 10:02:?? diff --git a/timestamped/2026-01-29_10-07-37.md b/timestamped/2026-01-29_10-07-37.md index 73c628d..51f2475 100644 --- a/timestamped/2026-01-29_10-07-37.md +++ b/timestamped/2026-01-29_10-07-37.md @@ -4,7 +4,7 @@ aliases: [] title: 2026-01-29 10:07:37 tags: - topic/estimating - - type/timestamped + - type/periodic/timestamped dg-publish: true --- # 2026-01-29 10:07:37 diff --git a/timestamped/2026-01-29_17-57-00.md b/timestamped/2026-01-29_17-57-00.md index 462b80e..b66e370 100644 --- a/timestamped/2026-01-29_17-57-00.md +++ b/timestamped/2026-01-29_17-57-00.md @@ -4,7 +4,7 @@ aliases: [] title: 2026-01-29 17:57:?? tags: - topic/finance - - type/timestamped + - type/periodic/timestamped dg-publish: true --- # 2026-01-29 17:57:?? diff --git a/timestamped/2026-01-30_08-44-29.md b/timestamped/2026-01-30_08-44-29.md index 03ea8be..d8a61bf 100644 --- a/timestamped/2026-01-30_08-44-29.md +++ b/timestamped/2026-01-30_08-44-29.md @@ -4,7 +4,7 @@ aliases: [] title: 2026-01-30 08:44:29 tags: - topic/meta - - type/timestamped + - type/periodic/timestamped dg-publish: true --- # 2026-01-30 08:44:29 diff --git a/timestamped/2026-01-30_09-06-00.md b/timestamped/2026-01-30_09-06-00.md index 8309afd..6eb3084 100644 --- a/timestamped/2026-01-30_09-06-00.md +++ b/timestamped/2026-01-30_09-06-00.md @@ -4,7 +4,7 @@ aliases: [] title: 2026-01-30 09:06:?? tags: - topic/meta - - type/timestamped + - type/periodic/timestamped dg-publish: true --- # 2026-01-30 09:06:?? diff --git a/timestamped/2026-01-30_13-42-00.md b/timestamped/2026-01-30_13-42-00.md index b91b993..faae5c0 100644 --- a/timestamped/2026-01-30_13-42-00.md +++ b/timestamped/2026-01-30_13-42-00.md @@ -5,7 +5,7 @@ title: 2026-01-30 13:42:?? tags: - authorship/original - topic/personal-productivity - - type/timestamped + - type/periodic/timestamped dg-publish: true --- # 2026-01-30 13:42:?? diff --git a/timestamped/2026-01-31_12-48-00.md b/timestamped/2026-01-31_12-48-00.md index 114ccdf..145708e 100644 --- a/timestamped/2026-01-31_12-48-00.md +++ b/timestamped/2026-01-31_12-48-00.md @@ -7,7 +7,7 @@ tags: - destiny/permanent - status/draft - topic/hobbies/digitizing - - type/timestamped + - type/periodic/timestamped daily: "[[2026-01-31]]" dg-publish: true --- diff --git a/timestamped/2026-01-31_17-49-00.md b/timestamped/2026-01-31_17-49-00.md index e8be993..b8b1141 100644 --- a/timestamped/2026-01-31_17-49-00.md +++ b/timestamped/2026-01-31_17-49-00.md @@ -7,7 +7,7 @@ tags: - destiny/permanent - exclude-from-word-count - status/draft - - type/timestamped + - type/periodic/timestamped daily: "[[2026-01-31]]" dg-publish: true --- diff --git a/timestamped/2026-02-02_06-50-00.md b/timestamped/2026-02-02_06-50-00.md index 30f5c64..3597f09 100644 --- a/timestamped/2026-02-02_06-50-00.md +++ b/timestamped/2026-02-02_06-50-00.md @@ -7,7 +7,7 @@ tags: - destiny/permanent - status/draft - topic/meta - - type/timestamped + - type/periodic/timestamped daily: "[[2026-02-02]]" dg-publish: true --- diff --git a/timestamped/2026-02-02_12-18-00.md b/timestamped/2026-02-02_12-18-00.md index 795fd14..e9f86df 100644 --- a/timestamped/2026-02-02_12-18-00.md +++ b/timestamped/2026-02-02_12-18-00.md @@ -7,7 +7,7 @@ tags: - destiny/permanent - occupational/takeoff - status/draft - - type/timestamped + - type/periodic/timestamped daily: "[[2026-02-02]]" dg-publish: true --- diff --git a/timestamped/2026-02-03_08-34-00.md b/timestamped/2026-02-03_08-34-00.md index 79d48a2..b1fa917 100644 --- a/timestamped/2026-02-03_08-34-00.md +++ b/timestamped/2026-02-03_08-34-00.md @@ -7,7 +7,7 @@ tags: - destiny/permanent - occupational - status/draft - - type/timestamped + - type/periodic/timestamped daily: "[[2026-02-03]]" dg-publish: true --- diff --git a/timestamped/2026-02-03_15-04-00.md b/timestamped/2026-02-03_15-04-00.md index ad7dab9..b9aed8b 100644 --- a/timestamped/2026-02-03_15-04-00.md +++ b/timestamped/2026-02-03_15-04-00.md @@ -7,7 +7,7 @@ tags: - destiny/permanent - status/draft - topic/estimating - - type/timestamped + - type/periodic/timestamped daily: "[[2026-02-03]]" dg-publish: true --- diff --git a/timestamped/2026-02-03_16-17-00.md b/timestamped/2026-02-03_16-17-00.md index c407055..2997699 100644 --- a/timestamped/2026-02-03_16-17-00.md +++ b/timestamped/2026-02-03_16-17-00.md @@ -7,7 +7,7 @@ tags: - destiny/permanent - occupational - status/draft - - type/timestamped + - type/periodic/timestamped daily: "[[2026-02-03]]" dg-publish: true --- diff --git a/timestamped/2026-02-04_08-07-00.md b/timestamped/2026-02-04_08-07-00.md index 058e66c..d0e62d5 100644 --- a/timestamped/2026-02-04_08-07-00.md +++ b/timestamped/2026-02-04_08-07-00.md @@ -7,7 +7,7 @@ tags: - destiny/permanent - occupational - status/draft - - type/timestamped + - type/periodic/timestamped daily: "[[2026-02-04]]" dg-publish: true --- diff --git a/timestamped/2026-02-04_09-00-00.md b/timestamped/2026-02-04_09-00-00.md index 1f41b5a..99852bc 100644 --- a/timestamped/2026-02-04_09-00-00.md +++ b/timestamped/2026-02-04_09-00-00.md @@ -7,7 +7,7 @@ tags: - destiny/permanent - status/draft - topic/ergonomics/organizational - - type/timestamped + - type/periodic/timestamped daily: "[[2026-02-04]]" dg-publish: true --- diff --git a/timestamped/2026-02-04_13-42-00.md b/timestamped/2026-02-04_13-42-00.md index a301d6f..e7429af 100644 --- a/timestamped/2026-02-04_13-42-00.md +++ b/timestamped/2026-02-04_13-42-00.md @@ -7,7 +7,7 @@ tags: - destiny/permanent - occupational/takeoff - status/draft - - type/timestamped + - type/periodic/timestamped daily: "[[2026-02-04]]" dg-publish: true --- diff --git a/timestamped/2026-02-04_17-02-00.md b/timestamped/2026-02-04_17-02-00.md index 6610302..3c8ecf4 100644 --- a/timestamped/2026-02-04_17-02-00.md +++ b/timestamped/2026-02-04_17-02-00.md @@ -7,7 +7,7 @@ tags: - destiny/permanent - occupational/takeoff - status/draft - - type/timestamped + - type/periodic/timestamped daily: "[[2026-02-04]]" dg-publish: true --- diff --git a/timestamped/2026-02-04_18-05-00.md b/timestamped/2026-02-04_18-05-00.md index 3be241e..ac1ab1e 100644 --- a/timestamped/2026-02-04_18-05-00.md +++ b/timestamped/2026-02-04_18-05-00.md @@ -7,7 +7,7 @@ tags: - destiny/permanent - status/draft - topic/estimating - - type/timestamped + - type/periodic/timestamped daily: "[[2026-02-04]]" dg-publish: true --- diff --git a/timestamped/2026-02-04_19-35-00.md b/timestamped/2026-02-04_19-35-00.md index 3a2270f..4de7989 100644 --- a/timestamped/2026-02-04_19-35-00.md +++ b/timestamped/2026-02-04_19-35-00.md @@ -6,7 +6,7 @@ tags: - authorship/original - destiny/permanent - status/draft - - type/timestamped + - type/periodic/timestamped daily: "[[2026-02-04]]" dg-publish: true --- diff --git a/timestamped/2026-02-05_06-26-00.md b/timestamped/2026-02-05_06-26-00.md index ca2f89d..5d6cabb 100644 --- a/timestamped/2026-02-05_06-26-00.md +++ b/timestamped/2026-02-05_06-26-00.md @@ -7,7 +7,7 @@ tags: - destiny/permanent - status/draft - topic/writing - - type/timestamped + - type/periodic/timestamped daily: "[[2026-02-05]]" dg-publish: true --- diff --git a/timestamped/2026-02-05_10-14-01.md b/timestamped/2026-02-05_10-14-01.md index 7aaea91..13c0025 100644 --- a/timestamped/2026-02-05_10-14-01.md +++ b/timestamped/2026-02-05_10-14-01.md @@ -7,7 +7,7 @@ tags: - destiny/permanent - occupational/takeoff - status/draft - - type/timestamped + - type/periodic/timestamped daily: "[[2026-02-05]]" dg-publish: true monthly: "[[2026-02]]" diff --git a/timestamped/2026-02-05_12-14-47.md b/timestamped/2026-02-05_12-14-47.md index 17ae37e..9bd9b54 100644 --- a/timestamped/2026-02-05_12-14-47.md +++ b/timestamped/2026-02-05_12-14-47.md @@ -7,7 +7,7 @@ tags: - destiny/permanent - status/draft - topic/construction/electrical - - type/timestamped + - type/periodic/timestamped daily: "[[2026-02-05]]" dg-publish: true monthly: "[[2026-02]]" diff --git a/timestamped/2026-02-05_16-50-34.md b/timestamped/2026-02-05_16-50-34.md index fdf3acf..f8602a8 100644 --- a/timestamped/2026-02-05_16-50-34.md +++ b/timestamped/2026-02-05_16-50-34.md @@ -6,7 +6,7 @@ tags: - authorship/original - destiny/permanent - status/draft - - type/timestamped + - type/periodic/timestamped daily: "[[2026-02-05]]" dg-publish: true monthly: "[[2026-02]]" diff --git a/timestamped/2026-02-07_09-16-31.md b/timestamped/2026-02-07_09-16-31.md index ba5af9c..43149ef 100644 --- a/timestamped/2026-02-07_09-16-31.md +++ b/timestamped/2026-02-07_09-16-31.md @@ -8,7 +8,7 @@ tags: - exclude-from-word-count - status/draft - topic/hobbies/reading - - type/timestamped + - type/periodic/timestamped daily: "[[2026-02-07]]" dg-publish: true monthly: "[[2026-02]]" diff --git a/timestamped/2026-02-08_08-00-49.md b/timestamped/2026-02-08_08-00-49.md index c2600d3..efaeadd 100644 --- a/timestamped/2026-02-08_08-00-49.md +++ b/timestamped/2026-02-08_08-00-49.md @@ -7,7 +7,7 @@ tags: - destiny/permanent - status/draft - topic/hobbies/reading - - type/timestamped + - type/periodic/timestamped daily: "[[2026-02-08]]" dg-publish: true monthly: "[[2026-02]]" diff --git a/timestamped/2026-02-09_12-42-11.md b/timestamped/2026-02-09_12-42-11.md index 21af5e1..236c2ab 100644 --- a/timestamped/2026-02-09_12-42-11.md +++ b/timestamped/2026-02-09_12-42-11.md @@ -7,7 +7,7 @@ tags: - destiny/permanent - status/draft - topic/hobbies/digitizing - - type/timestamped + - type/periodic/timestamped daily: "[[2026-02-09]]" dg-publish: true monthly: "[[2026-02]]" diff --git a/timestamped/2026-02-10_07-44-29.md b/timestamped/2026-02-10_07-44-29.md index dc08e43..c17b6e4 100644 --- a/timestamped/2026-02-10_07-44-29.md +++ b/timestamped/2026-02-10_07-44-29.md @@ -7,7 +7,7 @@ tags: - destiny/permanent - status/draft - topic/hobbies/digitizing - - type/timestamped + - type/periodic/timestamped daily: "[[2026-02-10]]" dg-publish: true monthly: "[[2026-02]]" diff --git a/timestamped/2026-02-10_07-47-33.md b/timestamped/2026-02-10_07-47-33.md index 30b0108..168b437 100644 --- a/timestamped/2026-02-10_07-47-33.md +++ b/timestamped/2026-02-10_07-47-33.md @@ -6,7 +6,7 @@ tags: - authorship/original - destiny/permanent - status/draft - - type/timestamped + - type/periodic/timestamped - topic/hobbies/digitizing daily: "[[2026-02-10]]" dg-publish: true diff --git a/timestamped/2026-02-10_15-49-04.md b/timestamped/2026-02-10_15-49-04.md index cd72c99..d02584b 100644 --- a/timestamped/2026-02-10_15-49-04.md +++ b/timestamped/2026-02-10_15-49-04.md @@ -8,7 +8,7 @@ tags: - occupational/closeout - status/draft - type/minutes - - type/timestamped + - type/periodic/timestamped daily: "[[2026-02-10]]" dg-publish: true monthly: "[[2026-02]]" diff --git a/timestamped/2026-02-11_12-12-16.md b/timestamped/2026-02-11_12-12-16.md index b8f16ab..9ef5078 100644 --- a/timestamped/2026-02-11_12-12-16.md +++ b/timestamped/2026-02-11_12-12-16.md @@ -7,7 +7,7 @@ tags: - destiny/permanent - occupational - status/draft - - type/timestamped + - type/periodic/timestamped daily: "[[2026-02-11]]" dg-publish: true monthly: "[[2026-02]]" diff --git a/timestamped/2026-02-12_09-49-56.md b/timestamped/2026-02-12_09-49-56.md index 1d8d889..4b4efc0 100644 --- a/timestamped/2026-02-12_09-49-56.md +++ b/timestamped/2026-02-12_09-49-56.md @@ -7,7 +7,7 @@ tags: - destiny/permanent - status/draft - topic/construction/electrical - - type/timestamped + - type/periodic/timestamped daily: "[[2026-02-12]]" dg-publish: true monthly: "[[2026-02]]" diff --git a/timestamped/2026-02-17_13-13-06.md b/timestamped/2026-02-17_13-13-06.md index 38ce8f9..2ffb4ef 100644 --- a/timestamped/2026-02-17_13-13-06.md +++ b/timestamped/2026-02-17_13-13-06.md @@ -8,7 +8,7 @@ tags: - status/draft - topic/estimating - topic/organization - - type/timestamped + - type/periodic/timestamped daily: "[[2026-02-17]]" dg-publish: true monthly: "[[2026-02]]" diff --git a/timestamped/2026-02-17_16-47-46.md b/timestamped/2026-02-17_16-47-46.md index abd8fde..9fd476c 100644 --- a/timestamped/2026-02-17_16-47-46.md +++ b/timestamped/2026-02-17_16-47-46.md @@ -8,7 +8,7 @@ tags: - exclude-from-word-count - status/draft - topic/risk - - type/timestamped + - type/periodic/timestamped daily: "[[2026-02-17]]" dg-publish: true monthly: "[[2026-02]]" diff --git a/timestamped/2026-02-20_09-39-20.md b/timestamped/2026-02-20_09-39-20.md index 80d9aab..34ac86c 100644 --- a/timestamped/2026-02-20_09-39-20.md +++ b/timestamped/2026-02-20_09-39-20.md @@ -7,7 +7,7 @@ tags: - destiny/permanent - occupational - status/draft - - type/timestamped + - type/periodic/timestamped daily: "[[2026-02-20]]" dg-publish: true monthly: "[[2026-02]]" diff --git a/timestamped/2026-02-21_08-39-20.md b/timestamped/2026-02-21_08-39-20.md index 2c46e25..6215dfe 100644 --- a/timestamped/2026-02-21_08-39-20.md +++ b/timestamped/2026-02-21_08-39-20.md @@ -6,7 +6,7 @@ tags: - authorship/original - destiny/permanent - status/draft - - type/timestamped + - type/periodic/timestamped daily: "[[2026-02-21]]" date-created: 2026-02-21T08:39:20-05:00 dg-publish: true diff --git a/timestamped/2026-02-22_08-55-01.md b/timestamped/2026-02-22_08-55-01.md index 5355bac..c10441b 100644 --- a/timestamped/2026-02-22_08-55-01.md +++ b/timestamped/2026-02-22_08-55-01.md @@ -7,7 +7,7 @@ tags: - destiny/permanent - status/draft - topic/hobbies/reading - - type/timestamped + - type/periodic/timestamped daily: "[[2026-02-22]]" date-created: 2026-02-22T08:55:01-05:00 dg-publish: true diff --git a/timestamped/2026-02-26_09-02-35.md b/timestamped/2026-02-26_09-02-35.md index f00e3e8..4571a00 100644 --- a/timestamped/2026-02-26_09-02-35.md +++ b/timestamped/2026-02-26_09-02-35.md @@ -6,7 +6,7 @@ tags: - authorship/original - destiny/permanent - status/draft - - type/timestamped + - type/periodic/timestamped - topic/estimating daily: "[[2026-02-26]]" date-created: 2026-02-26T09:02:35-05:00 diff --git a/timestamped/2026-02-26_10-06-19.md b/timestamped/2026-02-26_10-06-19.md index 4f2f0c0..01f7af5 100644 --- a/timestamped/2026-02-26_10-06-19.md +++ b/timestamped/2026-02-26_10-06-19.md @@ -6,7 +6,7 @@ tags: - authorship/original - destiny/permanent - status/draft - - type/timestamped + - type/periodic/timestamped - occupational/takeoff dg-publish: true date-created: 2026-02-26T10:06:19-05:00 diff --git a/timestamped/2026-02-27_13-58-30.md b/timestamped/2026-02-27_13-58-30.md index b66b65c..d296a98 100644 --- a/timestamped/2026-02-27_13-58-30.md +++ b/timestamped/2026-02-27_13-58-30.md @@ -6,7 +6,7 @@ tags: - authorship/original - destiny/permanent - status/draft - - type/timestamped + - type/periodic/timestamped - occupational daily: "[[2026-02-27]]" date-created: 2026-02-27T13:58:30-05:00 diff --git a/timestamped/2026-02-27_17-11-14.md b/timestamped/2026-02-27_17-11-14.md index a13421d..50e9d81 100644 --- a/timestamped/2026-02-27_17-11-14.md +++ b/timestamped/2026-02-27_17-11-14.md @@ -6,7 +6,7 @@ tags: - authorship/original - destiny/permanent - status/complete - - type/timestamped + - type/periodic/timestamped - topic/hobbies/birding daily: "[[2026-02-27]]" date-created: 2026-02-27T17:11:14-05:00 diff --git a/timestamped/2026-02-27_17-48-43.md b/timestamped/2026-02-27_17-48-43.md index bdbc382..306d72b 100644 --- a/timestamped/2026-02-27_17-48-43.md +++ b/timestamped/2026-02-27_17-48-43.md @@ -6,7 +6,7 @@ tags: - authorship/original - destiny/permanent - status/draft - - type/timestamped + - type/periodic/timestamped - topic/hobbies/writing daily: "[[2026-02-27]]" date-created: 2026-02-27T17:48:43-05:00 diff --git a/timestamped/2026-02-27_19-00-57.md b/timestamped/2026-02-27_19-00-57.md index 8f8c8b1..ea7f8d1 100644 --- a/timestamped/2026-02-27_19-00-57.md +++ b/timestamped/2026-02-27_19-00-57.md @@ -6,7 +6,7 @@ tags: - authorship/original - destiny/permanent - status/draft - - type/timestamped + - type/periodic/timestamped - topic/hobbies/writing daily: "[[2026-02-27]]" date-created: 2026-02-27T19:00:57-05:00 diff --git a/timestamped/2026-02-28_07-59-45.md b/timestamped/2026-02-28_07-59-45.md index 0cf85e8..f3144e1 100644 --- a/timestamped/2026-02-28_07-59-45.md +++ b/timestamped/2026-02-28_07-59-45.md @@ -6,7 +6,7 @@ tags: - authorship/original - destiny/permanent - status/draft - - type/timestamped + - type/periodic/timestamped - topic/hobbies/music daily: "[[2026-02-28]]" date-created: 2026-02-28T07:59:45-05:00 diff --git a/timestamped/2026-02-28_12-02-03.md b/timestamped/2026-02-28_12-02-03.md index 50cfa62..a2ca9ab 100644 --- a/timestamped/2026-02-28_12-02-03.md +++ b/timestamped/2026-02-28_12-02-03.md @@ -6,7 +6,7 @@ tags: - authorship/original - destiny/permanent - status/draft - - type/timestamped + - type/periodic/timestamped - topic/estimating - topic/software daily: "[[2026-02-28]]" diff --git a/timestamped/2026-03-02_15-35-49.md b/timestamped/2026-03-02_15-35-49.md index 1c72b74..250329a 100644 --- a/timestamped/2026-03-02_15-35-49.md +++ b/timestamped/2026-03-02_15-35-49.md @@ -6,7 +6,7 @@ tags: - authorship/original - destiny/permanent - status/draft - - type/timestamped + - type/periodic/timestamped - occupational dg-publish: true date-created: 2026-03-02T15:35:49-05:00 diff --git a/timestamped/2026-03-03_09-37-39.md b/timestamped/2026-03-03_09-37-39.md index 7c272bc..d4b877c 100644 --- a/timestamped/2026-03-03_09-37-39.md +++ b/timestamped/2026-03-03_09-37-39.md @@ -9,7 +9,7 @@ tags: - occupational - status/draft - type/media - - type/timestamped + - type/periodic/timestamped daily: "[[2026-03-03]]" date-created: 2026-03-03T09:37:39-05:00 dg-publish: true diff --git a/timestamped/2026-03-03_16-01-26.md b/timestamped/2026-03-03_16-01-26.md index 11263ae..9fe7488 100644 --- a/timestamped/2026-03-03_16-01-26.md +++ b/timestamped/2026-03-03_16-01-26.md @@ -6,7 +6,7 @@ tags: - authorship/original - destiny/permanent - status/draft - - type/timestamped + - type/periodic/timestamped - occupational/takeoff dg-publish: true date-created: 2026-03-03T16:01:26-05:00 diff --git a/timestamped/2026-03-05_10-26-48.md b/timestamped/2026-03-05_10-26-48.md index e01df92..20b8d6c 100644 --- a/timestamped/2026-03-05_10-26-48.md +++ b/timestamped/2026-03-05_10-26-48.md @@ -6,7 +6,7 @@ tags: - authorship/original - destiny/permanent - status/draft - - type/timestamped + - type/periodic/timestamped dg-publish: true date-created: 2026-03-05T10:26:48-05:00 daily: "[[2026-03-05]]" diff --git a/timestamped/2026-03-05_13-42-50.md b/timestamped/2026-03-05_13-42-50.md index 704a50e..906c5b3 100644 --- a/timestamped/2026-03-05_13-42-50.md +++ b/timestamped/2026-03-05_13-42-50.md @@ -6,7 +6,7 @@ tags: - authorship/original - destiny/permanent - status/draft - - type/timestamped + - type/periodic/timestamped dg-publish: true date-created: 2026-03-05T13:42:50-05:00 daily: "[[2026-03-05]]" diff --git a/timestamped/2026-03-06_09-57-02.md b/timestamped/2026-03-06_09-57-02.md index afa3fa5..12bafea 100644 --- a/timestamped/2026-03-06_09-57-02.md +++ b/timestamped/2026-03-06_09-57-02.md @@ -6,7 +6,7 @@ tags: - authorship/original - destiny/permanent - status/draft - - type/timestamped + - type/periodic/timestamped dg-publish: true date-created: 2026-03-06T09:57:02-05:00 daily: "[[2026-03-06]]" diff --git a/timestamped/2026-03-06_12-20-32.md b/timestamped/2026-03-06_12-20-32.md index 306eae3..850004a 100644 --- a/timestamped/2026-03-06_12-20-32.md +++ b/timestamped/2026-03-06_12-20-32.md @@ -6,7 +6,7 @@ tags: - authorship/original - destiny/permanent - status/draft - - type/timestamped + - type/periodic/timestamped dg-publish: true date-created: 2026-03-06T12:20:32-05:00 daily: "[[2026-03-06]]" diff --git a/timestamped/2026-03-08_20-20-54.md b/timestamped/2026-03-08_20-20-54.md index c118002..823c99a 100644 --- a/timestamped/2026-03-08_20-20-54.md +++ b/timestamped/2026-03-08_20-20-54.md @@ -6,7 +6,7 @@ tags: - authorship/original - destiny/permanent - status/draft - - type/timestamped + - type/periodic/timestamped dg-publish: true date-created: 2026-03-08T20:20:54-04:00 daily: "[[2026-03-08]]" diff --git a/timestamped/2026-03-09_08-51-24.md b/timestamped/2026-03-09_08-51-24.md index fa7fff8..bea0b7c 100644 --- a/timestamped/2026-03-09_08-51-24.md +++ b/timestamped/2026-03-09_08-51-24.md @@ -6,7 +6,7 @@ tags: - authorship/original - destiny/permanent - status/draft - - type/timestamped + - type/periodic/timestamped dg-publish: true date-created: 2026-03-09T08:51:24-04:00 daily: "[[2026-03-09]]" diff --git a/timestamped/2026-03-09_15-50-49.md b/timestamped/2026-03-09_15-50-49.md index 821b53f..81583ed 100644 --- a/timestamped/2026-03-09_15-50-49.md +++ b/timestamped/2026-03-09_15-50-49.md @@ -6,7 +6,7 @@ tags: - authorship/original - destiny/permanent - status/draft - - type/timestamped + - type/periodic/timestamped daily: "[[2026-03-09]]" date-created: 2026-03-09T15:50:49-04:00 dg-publish: true @@ -21,8 +21,10 @@ yearly: "[[2026]]" Hello Team, -Below is a comprehensive list of means & methods for Charlotte South End Hotel. -Please confirm you have received this email and respond with any questions or comments. +Below is a comprehensive list of means & methods +for **Charlotte South End Hotel**. +Please confirm you have received this email +and respond with any questions or comments. * **Delivery Method:** Plans & Specs * **Document Stage:** Issue for Permit @@ -52,7 +54,7 @@ Please confirm you have received this email and respond with any questions or co * **MC Cable:** * Application: "dry locations only where approved by code authority." _---Spec 260510 2.4(N)(8) (p. 2227)_ - + * Acceptable Manufacturers: _---Spec 260510 2.2(E) (p. 2224)_ * Alflex * AFC @@ -66,7 +68,7 @@ Please confirm you have received this email and respond with any questions or co * Box Material: * Slab on grade: Cast iron * Slabs above grade: Stamped steel - + * Cover Material: Not specified. * **Wiring Devices:** @@ -86,14 +88,14 @@ Please confirm you have received this email and respond with any questions or co * **Panelboards:** * Bus Material: "silver plated copper or electro-tin plated aluminum" _---Spec 262000 2.8(E) (p. 2303)_ - + * Breaker Types: Bolt-on _---Spec 262000 2.9(C) (p. 2303)_ - + * OCPD Interrupting Current Ratings: * Distribution Panelboards: Not specified. * Lighting and Appliance Panelboards: Not less than 10kAIC _---Spec 262000 2.10(A)(3) (p. 2304)_ - + * Acceptable Manufacturers: _---Spec 262000 2.17(C) (p. 2307)_ * Eaton * ABB/GE @@ -108,7 +110,7 @@ Please confirm you have received this email and respond with any questions or co * K-Rating: Only as shown (None shown) _---Spec 262002.5(K) (p. 2295)_ - + * Acceptable Manufacturers: _---Spec 262000 2.17(D) (p. 2307)_ * Eaton * ABB/GE @@ -138,72 +140,88 @@ Please confirm you have received this email and respond with any questions or co ### PDI System Execution Plan -* **Primaries:** Wiring only, duct bank by others. +* **Primaries:** Conduit only; wiring, duct bank by others. * **Secondaries:** Aluminum bus duct. _---Spec 262000 2.11(D) (p. 2305)_ %% PVC UG, GRC Stub-ups, AL %% * **Feeders:** - PVC UG, EMT OH; + PVC UG, EMT OH. Size and material per E05-10 schedule - ==(AL 100A and larger,== - ==transformer primaries and secondaries all copper)== + (AL 100A and larger, + ==transformer primaries and secondaries all copper==). + Voltage drop not considered + (allowance per E00-00, "GENERAL PRICING NOTES"). %% PVC UG, EMT OH, AL over 100A, 2% VD %% %% Emergency Feeds MI Cable %% -* **Unit Subfeeds:** #12 Multi-Circuit MC OH (alternate for voltage drop) +* **Unit Subfeeds:** + #12 Multi-Circuit MC OH. + Voltage drop not considered + (allowance per E00-00, "GENERAL PRICING NOTES"). %% MC OH AL, VD per Chart on E5.01 %% - %% [[2026-03-10_13-51-32#Voltage Drop]] %% -* **==Units==:** +* **Units:** * VFCU HVAC * 20A Decora Switches * 20A Decora Receptacles + * Master Switch control + * Floor boxes (0--1 per K, QQ unit; 2 per 2B, 3B unit) %% 15A Decora, Disposals, T-stat, Floor Boxes, Shade Control, Doorbells, Dimmer Switches, etc. %% -* **Telecom:** Rough-in only - * ??? - %% 42" MSDE, No Cable Homeruns, (1) 1" Back to IDF, CAT6 with Stub-ups %% +* **Telecom:** + Rough-in only, system alternate. + Free-air where allowed by code. + EMT Risers. -* **EV Chargers:** ??? +* **EV Chargers:** Excluded (alternate). %% (42) Conduit only, (56) Conduit & Wire, (20) Conduit, Wire & Equipment %% + %% [[2026-03-10_13-51-32#EV Chargers]] %% -* **Fire Alarm:** ??? - %% Free-air where allowed by code. EMT Risers. %% +* **Fire Alarm:** + Free-air where allowed by code. + EMT Risers. -* **DAS:** ??? - %% Conduit only, Per PDI DAS Design %% +* **DAS:** + Rough-in only, per PDI DAS Design. -* **Low Voltage:** Free-air where allowed by code. - %% Free-air where allowed by code. Stub-ups to accessible ceilings. %% +* **Low Voltage:** + Free-air where allowed by code. + Stub-ups to accessible ceilings. ### Lighting Control +%% [[2026-03-10_13-51-32#Lighting Control]] %% + +* **Applicable Code:** + 2024 North Carolina Energy Conservation Code + (2021 IECC with NC Amendments) + _---Dwg. G00-11_ + * **Basis of Takeoff:** Central dimming system per P&S, PDR quote. -* **Area:** _---Dwg. E06-01 "LIGHTING CONTROL NARRATIVE"_ +* **By Area:** * Units: Master Switch, Digital Standalone Control, 0-10V dimming. - * Amenity: Digital Central Control, 0-10V dimming - * Garage: Integral dimming occupancy sensors, 120V wiring only. + * Amenity: Digital Central Control, 0-10V dimming. + * Corridors: 0-10V dimming per 2021 IECC and LEED checklist. + * BOH: Line voltage control. + * Garage: Line voltage control (integral dimming occupancy sensors). %% Assign Method to Areas: Line Voltage, Low-Voltage Stand Alone or Centralized System %% ### Tasks/Quotes Needed for WBS -%% Delete any completed %% +%% +Only tasks that are not already open. +%% + +* DAS Public Safety Raceway Design + %% Necessary because we own DAS pathways but not the system %% %% * Electrical Constructability Review * Electrical VDC * Coordination Study -* DAS Public Safety Raceway Design %% - - Thank you, diff --git a/timestamped/2026-03-10_13-51-32.md b/timestamped/2026-03-10_13-51-32.md index c050974..817cb55 100644 --- a/timestamped/2026-03-10_13-51-32.md +++ b/timestamped/2026-03-10_13-51-32.md @@ -6,7 +6,7 @@ tags: - authorship/original - destiny/permanent - status/draft - - type/timestamped + - type/periodic/timestamped dg-publish: true date-created: 2026-03-10T13:51:32-04:00 daily: "[[2026-03-10]]" @@ -74,8 +74,35 @@ No definition is provided for a liquid-tight flexible non-metallic raceway ### Lighting Control -> [!quote] LD 03-XX Typical Master Switch Callout -> MASTER - TO CONTROL ENTRY AND ROOM ONLY. ELECTRICAL ENGINEER TO SPECIFY ENERGY CODE COMPLIANT “MASTER OFF” FOR THE REQUIRED GUESTROOM LOADS. GMLD RECOMMENDS LUTRON’S "CODE-SMART" SYSTEM THAT POWERS THE LIGHTING SHOWN HERE AS WELL AS TAKES INPUT FROM THIRD-PARTYDOOR CONTACTS, THERMOSTATS AND OCCUPANCY SENSORS. THIS SYSTEM MEETS THE ENERGY CODE REQUIREMENT TO TURN OFF LOADS AFTER A SPECIFIC PERIOD OF TIME AND ALSO PREVENTS LOADS FROM TURNING ON OR OFF UNEXPECTEDLY IN THE MIDDLE OF THE NIGHT. +#### Corridors + +Corridors may or may not have included digital control + +> [!quote] LEED Checklist, item "Interior Lighting" (Project Manual p. 23) +> Option 1: **Lighting Control:** +> Provide adjustable lighting controls +> for **90% of individual occupant spaces** +> with at least 3 lighting levels or scenes (on, off, mid-level). +> Provide control for **all shared multi-occupant spaces**. + +Checklist assumes this point. + +*** + +> [!quote] Typical Unit Corridor Occupancy Sensor Callout (Ref dwg. E03-06 thru E03-14) +> OCCUPANCY SENSORS TO DIM CORRIDOR LTG TO 50% WHEN NO OCCUPANCY + +> [!quote] Dwg. E06-01 "LIGHTING CONTROL NARRATIVE" +> **SPACE TYPE** Corridor is shown only with captive key card control + +#### Units + +> [!quote] LD03-XX Typical Master Switch Callout +> MASTER - TO CONTROL ENTRY AND ROOM ONLY. +> ELECTRICAL ENGINEER TO SPECIFY ENERGY CODE COMPLIANT “MASTER OFF” +> FOR THE REQUIRED GUESTROOM LOADS. +> GMLD RECOMMENDS LUTRON’S "CODE-SMART" SYSTEM +> ... Lighting control quote does not include master switches @@ -90,6 +117,13 @@ Lighting control quote does not include master switches > (31) Wired Occupancy Sensor, > (2) 5 Contact Closure Inputs and 5 Relay Outputs +These are captured as a budget + +> [!quote] 2025.12.09 - Charlotte South End Hotel - Bid Sheet v16-4-2, "Add-On Items" +> master switch in guestrooms - TBD | $ 72,023 + +*** + > [!quote] Proposal 2025-12-12, Pricing Summary > Lighting Controls – Lutron (turnkey) $ 850,000 @@ -99,9 +133,6 @@ based on sum of quote and switch allowance > [!quote] PDR Lutron Lighting Control Quote 2025-12-10, Pricing Summary –Turnkey > Lighting Control: Lutron $ 738,400.00 -> [!quote] 2025.12.09 - Charlotte South End Hotel - Bid Sheet v16-4-2, "Add-On Items" -> master switch in guestrooms - TBD | $ 72,023 - ### EV Chargers > [!quote] Proposal 2025-12-12, Alternates @@ -113,6 +144,3 @@ with description "EV CHARGER". These circuits are not shown on the electrical set, nor are any chargers besides. - - -> this is a quote \ No newline at end of file diff --git a/timestamped/2026-03-11_08-15-43.md b/timestamped/2026-03-11_08-15-43.md new file mode 100644 index 0000000..ca29f24 --- /dev/null +++ b/timestamped/2026-03-11_08-15-43.md @@ -0,0 +1,23 @@ +--- +id: 2026-03-11T08:15:43-04:00 +aliases: [] +title: 2026-03-11 08:15:43 +tags: + - authorship/original + - destiny/permanent + - status/draft + - type/periodic/timestamped +dg-publish: true +date-created: 2026-03-11T08:15:43-04:00 +daily: "[[2026-03-11]]" +weekly: "[[2026-W11]]" +monthly: "[[2026-03]]" +quarterly: "[[2026-Q1]]" +yearly: "[[2026]]" +--- +# 2026-03-11 08:15:43 + +Follow-up to [[2026-02-02_06-50-00]]. + +I _need_ scripts/cmdlets to batch format note metadata, +namely to add missing periodic links to old timestamped notes. diff --git a/timestamped/2026-03-11_11-58-49.md b/timestamped/2026-03-11_11-58-49.md new file mode 100644 index 0000000..5138fb1 --- /dev/null +++ b/timestamped/2026-03-11_11-58-49.md @@ -0,0 +1,36 @@ +--- +id: 2026-03-11T11:58:49-04:00 +aliases: [] +title: 2026-03-11 11:58:49 +tags: + - authorship/original + - destiny/permanent + - status/draft + - topic/estimating + - topic/transparency + - type/periodic/timestamped +daily: "[[2026-03-11]]" +date-created: 2026-03-11T11:58:49-04:00 +dg-publish: true +monthly: "[[2026-03]]" +quarterly: "[[2026-Q1]]" +weekly: "[[2026-W11]]" +yearly: "[[2026]]" +--- +# 2026-03-11 11:58:49 + +When an estimator provides a proposal, +they are said to be "selling" the scope of work. + +What any salesperson _sells_ +and what the customer _receives_ +are potentially very different. + +* customer interpretation of scope (most favorable to customer) +* contractor's intended meaning (most favorable to contractor) +* professional legal interpretation of scope (somewhere in between) + +## See Also + +* [[2025-12-03_15-54-22]] +* [[2025-11-06_18-12-00]]