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 56c16ad..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.13163395511369996, + "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/charlotte-south-end-hotel.md b/charlotte-south-end-hotel.md new file mode 100644 index 0000000..1036280 --- /dev/null +++ b/charlotte-south-end-hotel.md @@ -0,0 +1,8 @@ +--- +id: +aliases: [] +title: Charlotte South End Hotel +tags: + - occupational/project +--- +# Charlotte South End Hotel 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/nfpa-70_110_requirements.md b/nfpa-70_110_requirements.md index 4aac186..0e29c77 100644 --- a/nfpa-70_110_requirements.md +++ b/nfpa-70_110_requirements.md @@ -14,9 +14,9 @@ dg-publish: false --- # Article 110 Requirements for Electrical Installations -## Part I. General +## Part I. General ^p1 -### 110.1 Scope. +### 110.1 Scope. ^1 This article covers general requirements for the examination and approval, installation and use, @@ -27,28 +27,28 @@ and tunnel installations. > [!info] Informational Note: > See Informative Annex J for information regarding ADA accessibility design. -### 110.2 Approval. +### 110.2 Approval. ^2 The conductors and equipment required or permitted by this Code shall be acceptable only if approved. > [!info] Informational Note: -> See 90.7, Examination of Equipment for Safety, and 110.3, Examination, Identification, Installation, and Use of +> See 90.7, Examination of Equipment for Safety, +> and 110.3, Examination, Identification, Installation, and Use of Equipment. +> See definitions of Approved, Identified, Labeled, and Listed. -Equipment. See definitions of Approved, Identified, Labeled, and Listed. +### 110.3 Examination, Identification, Installation, Use, and Listing (Product Certification) of Equipment. ^3 -### 110.3 Examination, Identification, Installation, Use, and Listing (Product Certification) of Equipment. - -#### 110.3(A) Examination. +#### 110.3(A) Examination. ^3a In judging equipment, considerations such as the following shall be evaluated: * (1) Suitability for installation and use in conformity with this Code -> [!info] Informational Note No. 1: -> Equipment may be new, reconditioned, refurbished, or remanufactured. + > [!info] Informational Note No. 1: + > Equipment may be new, reconditioned, refurbished, or remanufactured. -> [!info] Informational Note No. 2: -> Suitability of equipment use may be identified by a description marked on or provided with a product to identify the suitability of the product for a specific purpose, environment, or application. Special conditions of use or other limitations and other pertinent information may be marked on the equipment, included in the product instructions, or included in the appropriate listing and labeling information. Suitability of equipment may be evidenced by listing or labeling. + > [!info] Informational Note No. 2: + > Suitability of equipment use may be identified by a description marked on or provided with a product to identify the suitability of the product for a specific purpose, environment, or application. Special conditions of use or other limitations and other pertinent information may be marked on the equipment, included in the product instructions, or included in the appropriate listing and labeling information. Suitability of equipment may be evidenced by listing or labeling. * (2) Mechanical strength and durability, including, for parts designed to enclose and protect other equipment, the adequacy of the protection thus provided @@ -64,36 +64,36 @@ In judging equipment, considerations such as the following shall be evaluated: * (8) Other factors that contribute to the practical safeguarding of persons using or likely to come in contact with the equipment -#### 110.3(B) Installation and Use. +#### 110.3(B) Installation and Use. ^3b Equipment that is listed, labeled, or both shall be installed and used in accordance with any instructions included in the listing or labeling. -#### 110.3(C) Listing. +#### 110.3(C) Listing. ^3c Product testing, evaluation, and listing (product certification) shall be performed by recognized qualified electrical testing laboratories and shall be in accordance with applicable product standards recognized as achieving equivalent and effective safety for equipment installed to comply with this Code. > [!info] Informational Note: > The Occupational Safety and Health Administration (OSHA) recognizes qualified electrical testing laboratories that perform evaluations, testing, and certification of certain products to ensure that they meet the requirements of both the construction and general industry OSHA electrical standards. If the listing (product certification) is done under a qualified electrical testing laboratory program, this listing mark signifies that the tested and certified product complies with the requirements of one or more appropriate product safety test standards. -### 110.4 Voltages. +### 110.4 Voltages. ^4 Throughout this Code, the voltage considered shall be that at which the circuit operates. The voltage rating of electrical equipment shall not be less than the nominal voltage of a circuit to which it is connected. -### 110.5 Conductors. +### 110.5 Conductors. ^5 Conductors used to carry current shall be of copper, aluminum, or copper-clad aluminum unless otherwise provided in this Code. Where the conductor material is not specified, the sizes given in this Code shall apply to copper conductors. Where other materials are used, the size shall be changed accordingly. -### 110.6 Conductor Sizes. +### 110.6 Conductor Sizes. ^6 Conductor sizes are expressed in American Wire Gage (AWG) or in circular mils. -### 110.7 Wiring Integrity. +### 110.7 Wiring Integrity. ^7 Completed wiring installations shall be free from short circuits, ground faults, or any connections to ground other than as required or permitted elsewhere in this Code. -### 110.8 Wiring Methods +### 110.8 Wiring Methods ^8 Only wiring methods recognized as suitable are included in this Code. @@ -102,13 +102,13 @@ shall be permitted to be installed in any type of building or occupancy, except as otherwise provided in this Code. -### 110.9 Interrupting Rating. +### 110.9 Interrupting Rating. ^9 Equipment intended to interrupt current at fault levels shall have an interrupting rating at nominal circuit voltage at least equal to the current that is available at the line terminals of the equipment. Equipment intended to interrupt current at other than fault levels shall have an interrupting rating at nominal circuit voltage at least equal to the current that must be interrupted. -### 110.10 Circuit Impedance, Short-Circuit Current Ratings, and Other Characteristics. +### 110.10 Circuit Impedance, Short-Circuit Current Ratings, and Other Characteristics. ^10 The overcurrent protective devices, the total impedance, the equipment short-circuit current ratings, and other characteristics of the circuit to be protected shall be selected and coordinated to permit the circuit protective devices used to clear a fault to do so without extensive damage to the electrical equipment of the circuit. This fault shall be assumed to be either between two or more of the circuit conductors or between any circuit conductor and the equipment grounding conductor(s) permitted in 250.118. Listed equipment applied in accordance with their listing shall be considered to meet the requirements of this section. @@ -128,18 +128,16 @@ Equipment not identified for outdoor use and equipment identified only for indoo > See Table 110.28 for appropriate enclosure-type designations. > [!info] Informational Note No. 4: -> Minimum flood provisions are provided in NFPA 5000-2015 Building Construction and Safety Code, the - -International Building Code (IBC), and the International Residential Code for One- and Two-Family Dwellings (IRC). +> Minimum flood provisions are provided in NFPA 5000-2015 Building Construction and Safety Code, +> the International Building Code (IBC), +> and the International Residential Code for One- and Two-Family Dwellings (IRC). ### 110.12 Mechanical Execution of Work. Electrical equipment shall be installed in a neat and workmanlike manner. > [!info] Informational Note: -> Accepted industry practices are described in ANSI/NECA 1-2015, Standard for Good Workmanship in Electrical - -Construction, and other ANSI-approved installation standards. +> Accepted industry practices are described in ANSI/NECA 1-2015, Standard for Good Workmanship in Electrical Construction, and other ANSI-approved installation standards. #### 110.12(A) Unused Openings. @@ -156,14 +154,10 @@ Internal parts of electrical equipment, including busbars, wiring terminals, ins Cables and conductors installed exposed on the surfaces of ceilings and sidewalls shall be supported by the building structure in such a manner that the cables and conductors will not be damaged by normal building use. Such cables and conductors shall be secured by hardware including straps, staples, cable ties, hangers, or similar fittings designed and installed so as not to damage the cable. The installation shall also conform with 300.4 and 300.11. Nonmetallic cable ties and other nonmetallic cable accessories used to secure and support cables in other spaces used for environmental air (plenums) shall be listed as having low smoke and heat release properties. > [!info] Informational Note No. 1: -> Accepted industry practices are described in ANSI/ NECA/FOA 301-2009, Standard for Installing and Testing - -Fiber Optic Cables, and other ANSI-approved installation standards. +> Accepted industry practices are described in ANSI/NECA/FOA 301-2009, Standard for Installing and Testing Fiber Optic Cables, and other ANSI-approved installation standards. > [!info] Informational Note No. 2: -> See 4.3.11.2.6.5 and 4.3.11.5.5.6 of NFPA 90A-2018, Standard for the Installation of Air-Conditioning and - -Ventilating Systems, for discrete combustible components installed in accordance with 300.22(C). +> See 4.3.11.2.6.5 and 4.3.11.5.5.6 of NFPA 90A-2018, Standard for the Installation of Air-Conditioning and Ventilating Systems, for discrete combustible components installed in accordance with 300.22(C). > [!info] Informational Note No. 3: > Paint, plaster, cleaners, abrasives, corrosive residues, or other contaminants may result in an undetermined alteration of optical fiber cable properties. @@ -220,12 +214,16 @@ shall be based on Table 310.16 as appropriately modified by 310.12. * (a) Termination provisions of equipment for circuits rated 100 amperes or less, or marked for 14 AWG through 1 AWG conductors, shall be used only for one of the following: + * (1) Conductors rated 60°C (140°F). + * (2) Conductors with higher temperature ratings, provided the ampacity of such conductors is determined based on the 60°C (140°F) ampacity of the conductor size used. + * (3) Conductors with higher temperature ratings if the equipment is listed and identified for use with such conductors. + * (4) For motors marked with design letters B, C, or D, conductors having an insulation rating of 75°C (167°F) or higher shall be permitted to be used, @@ -236,7 +234,9 @@ shall be based on Table 310.16 as appropriately modified by 310.12. for circuits rated over 100 amperes, or marked for conductors larger than 1 AWG, shall be used only for one of the following: + * (1) Conductors rated 75°C (167°F) + * (2) Conductors with higher temperature ratings, provided the ampacity of such conductors does not exceed the 75°C (167°F) ampacity of the conductor size used, @@ -247,10 +247,10 @@ shall be based on Table 310.16 as appropriately modified by 310.12. Separately installed pressure connectors shall be used with conductors at the ampacities not exceeding the ampacity at the listed and identified temperature rating of the connector. -Informational Note: -With respect to 110.14(C)(1) and (C)(2), -equipment markings or listing information may additionally restrict -the sizing and temperature ratings of connected conductors. +> [!info] Informational Note: +> With respect to 110.14(C)(1) and (C)(2), +> equipment markings or listing information may additionally restrict +> the sizing and temperature ratings of connected conductors. #### 110.14(D) Terminal Connection Torque. @@ -259,22 +259,22 @@ shall be as indicated on equipment or in installation instructions provided by the manufacturer. An approved means shall be used to achieve the indicated torque value. -Informational Note No. 1: -Examples of approved means of achieving the indicated torque values -include torque tools or devices such as shear bolts -or breakaway-style devices with visual indicators -that demonstrate that the proper torque has been applied. +> [!info] Informational Note No. 1: +> Examples of approved means of achieving the indicated torque values +> include torque tools or devices such as shear bolts +> or breakaway-style devices with visual indicators +> that demonstrate that the proper torque has been applied. -Informational Note No. 2: -The equipment manufacturer can be contacted -if numeric torque values are not indicated on the equipment -or if the installation instructions are not available. -Informative Annex I of UL Standard 486A-486B, Standard for Safety-Wire Connectors, -provides torque values in the absence of manufacturer's recommendations. +> [!info] Informational Note No. 2: +> The equipment manufacturer can be contacted +> if numeric torque values are not indicated on the equipment +> or if the installation instructions are not available. +> Informative Annex I of UL Standard 486A-486B, Standard for Safety-Wire Connectors, +> provides torque values in the absence of manufacturer's recommendations. -Informational Note No. 3: -Additional information for torquing threaded connections and terminations -can be found in Section 8.11 of NFPA 70B-2019, Recommended Practice for Electrical Equipment Maintenance. +> [!info] Informational Note No. 3: +> Additional information for torquing threaded connections and terminations +> can be found in Section 8.11 of NFPA 70B-2019, Recommended Practice for Electrical Equipment Maintenance. ### 110.15 High-Leg Marking. diff --git a/nfpa-70_200.md b/nfpa-70_200.md new file mode 100644 index 0000000..e69de29 diff --git a/out/letter-of-explanation_address-verification.html b/out/letter-of-explanation_address-verification.html new file mode 100644 index 0000000..7f3c2f6 --- /dev/null +++ b/out/letter-of-explanation_address-verification.html @@ -0,0 +1,197 @@ + + + + + + + letter-of-explanation_address-verification + + + +

Letter of +Explanation — Address Verification

+

To Whom It May Concern,

+

I am writing in response to the request for clarification regarding +my relationship to the properties listed below.

+
    +
  1. 104 Crest Pointe, Warner Robins, GA

    +

    This property is my parents’ primary residence. I did not participate +in the purchase or ownership of this property and have never held any +ownership interest in it. I resided at this address rent-free from +September 2021 through June 2025 as a family member. My +role during this period was solely that of a resident; I was not a +tenant under a lease, owner, or otherwise financially responsible for +the property.

  2. +
  3. 104 Crest Pointe, Centerville, GA

    +

    I have never lived at, owned, or otherwise been associated with a +property at this address. I believe this is an erroneous address for 104 +Crest Pointe, Warner Robins, GA (Centerville is a neighboring +municipality of Warner Robins).

  4. +
+

Please let me know if any additional information or clarification is +required.

+

Sincerely,

+

Zane Meyers

+ + diff --git a/out/letter-of-explanation_withdrawals.html b/out/letter-of-explanation_withdrawals.html new file mode 100644 index 0000000..3658a52 --- /dev/null +++ b/out/letter-of-explanation_withdrawals.html @@ -0,0 +1,194 @@ + + + + + + + letter-of-explanation_withdrawals + + + +

Letter of Explanation — +Withdrawals

+

To Whom It May Concern,

+

I am writing in response to the request for clarification regarding +the recurring withdrawals to “Loan 40” dated 11/20/2024 and 12/20/2024 +as shown on my bank statements.

+

These withdrawals are automatic payments to my Visa Platinum credit +card, which I hold with Robins Financial Credit Union. I use this credit +card primarily to pay for gas for my vehicle.

+

My understanding is that “Loan 40” is the friendly name of my credit +card account ID, which ends in L40. In my statement for this card each +payment is shown as “Loan Payment from Share 70”. My checking account ID +ends in S70.

+

These payments occur on the 20th of every month, unless my balance on +the credit card is zero. The payments will continue to occur for as long +as I continue to use the credit card. I currently have no plans to +cancel or stop using the credit card.

+

Please let me know if any additional information or clarification is +required.

+

Sincerely,

+

Zane Meyers

+ + diff --git a/recipe_markdown.py b/recipe_markdown.py new file mode 100644 index 0000000..af70006 --- /dev/null +++ b/recipe_markdown.py @@ -0,0 +1,99 @@ +""" +This script was originally based on +https://github.com/atiumcache/pure-recipe +but has been modified to remove functionality +that I consider extraneous. +What remains is only a basic wrapper for recipe_scrapers, +but out of an abundance of caution +I'm including pure-recipe's original license below. + +---Zane Meyers + +*** + +MIT License + +Copyright (c) 2023 Andrew Attilio + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. +""" +from recipe_scrapers import scrape_me +import argparse + +def main(): + args = parse_arguments() + + try: + scraper = scrape_me(args.url) + md_content = generate_markdown(scraper) + print(md_content) + except Exception as e: + print(f"An error occurred: {str(e)}") + + +def generate_markdown(scraper) -> str: + """ + Generate markdown content from a recipe scraper object. + + Args: + scraper: A recipe_scrapers scraper object + + Returns: + str: Markdown formatted recipe content + """ + lines = [] + + title = scraper.title() + lines.append(f"# {title}") + + lines.append(f"\n**Serves:** {scraper.yields()}") + lines.append(f"**Total Time:** {scraper.total_time()} mins") + + lines.append(f"\n## Ingredients") + for ingredient in scraper.ingredients(): + lines.append(f"- {ingredient}") + + lines.append(f"\n## Instructions") + for index, instruction in enumerate(scraper.instructions_list()): + lines.append(f"{index + 1}. {instruction}") + + return "\n".join(lines) + + +def parse_arguments() -> argparse.Namespace: + """ + Parse command-line arguments for the recipe formatter program. + + argument: + - `url`: The URL of the recipe to view. + + Returns: + Namespace: An argparse.Namespace object containing the parsed arguments. + """ + parser = argparse.ArgumentParser( + prog="Recipe Markdown", description="Format web recipes as Markdown." + ) + + parser.add_argument("url", help="URL of the recipe to scrape") + + return parser.parse_args() + + +if __name__ == "__main__": + main() 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 new file mode 100644 index 0000000..7dd8358 --- /dev/null +++ b/timestamped/2025-10-15_09-32-00.md @@ -0,0 +1,31 @@ +--- +id: 2025-10-15T09:32:00 +aliases: [] +title: 2025-10-15 09:32:00 +tags: + - authorship/original + - destiny/permanent + - occupational/takeoff + - status/draft + - type/periodic/timestamped +date-created: 2026-03-10T14:04:51-04:00 +dg-publish: true +--- +# 2025-10-15 09:32:00 + +%% +Content extracted from [[wiring-method-selection]], +timestamp based on my teams message to Joel. +%% + +## Vanderbilt Central Neighborhood Residential College Spec Interpretation + +[[vanderbilt-central-neighborhood-residential-college]] + +> [!cite] Project Specifications (pp.) +> Fittings for Type EMT Duct Raceways: +> * Coupling Method: Compression coupling or Setscrew coupling. +> Setscrew couplings with only single screw per conduit are unacceptable. + +> [!quote] Joel Jansen via Microsoft Teams @ 2025-10-15 09:33 AM +> use set screw 🙂 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 1d45528..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]]" @@ -23,7 +23,7 @@ yearly: "[[2026]]" Applies to "Equipment intended to interrupt current". -[[nfpa-70_110_requirements#110.9 Interrupting Rating.|NEC 110.9 Interrupting Rating.]] +[[nfpa-70_110_requirements#^9|NEC 110.9 Interrupting Rating.]] Maximum current that the equipment can interrupt without damage. Measured in amperes, usually shown as kAIC. @@ -32,7 +32,7 @@ Measured in amperes, usually shown as kAIC. * "withstand rating" -[[nfpa-70_110_requirements#110.10 Circuit Impedance, Short-Circuit Current Ratings, and Other Characteristics.|NEC 110.10 Circuit Impedance, Short-Circuit Current Ratings, and Other Characteristics.]] +[[nfpa-70_110_requirements#^10|NEC 110.10 Circuit Impedance, Short-Circuit Current Ratings, and Other Characteristics.]] Applies to **assemblies**: distribution equipment like switchboards, panelboards, switches, etc. 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 e5d5be1..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 @@ -34,11 +36,13 @@ Please confirm you have received this email and respond with any questions or co ### Project Specification Callouts * **Conduit:** - %% GRC, coupling specs, etc. %% + * EMT Fittings: _---Spec 260510 2.4(N)(2) (p. 2226)_ + * Smaller than trade size 2-1/2": Compression + * Trade size 2-1/2" and larger: Set-screw * **Wire:** - * Material: Aluminum 100A and larger _---E021 "ALUMINUM FEEDER SCHEDULE" Note 1(b)_ - * Acceptable Manufacturers: _---Spec 260510-2 (p. 2224)_ + * Material: Aluminum 1 AWG and larger _---Spec 260510 2.2(C)(1) (p. 2224)_ + * Acceptable Manufacturers: _---Spec 260510 2.2(D) (p. 2224)_ * Encore Wire * General Cable * Okonite @@ -48,69 +52,80 @@ Please confirm you have received this email and respond with any questions or co * Southwire * **MC Cable:** - * Application: Concealed feeders and branch circuits _---Spec XXXXXX (p. XXXX)_ - %% Branch homeruns only; Not permitted %% - * Acceptable Manufacturers: _---Spec 260510-2 (p. 2224)_ + * 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 * America Metal Moulding * Encore Wire * Southwire - * ==Conductors: Copper _---Spec XXXXXX (p. XXXX)_== - * ==Armor: Steel _---Spec XXXXXX (p. XXXX)_== - * ==Jacket: PVC _---Spec XXXXXX (p. XXXX)_== -* **Steel Box Depth:** - * Telecom: 2-1/8" _---Spec XXXXXX (p. XXXX)_ - * Security: 2-1/8" _---Spec XXXXXX (p. XXXX)_ - * Other Applications: Not specified - %% 1-1/2", 2-1/8" %% +* **Steel Box Depth:** Not specified _---Spec 260510 2.12(A) (p. 2231)_ -* **Floor Boxes:** Sheet metal with brass or aluminum covers _---Spec XXXXXX (p. XXXX)_ +* **Floor Boxes:** _---Spec 260510 2.12(E) (p. 2231)_ + * Box Material: + * Slab on grade: Cast iron + * Slabs above grade: Stamped steel + + * Cover Material: Not specified. * **Wiring Devices:** - * Units: - * Current rating: Unspecified. Assuming 15A for takeoff. - * Standard/Decora: Unspecified. Assuming Toggle/Duplex for takeoff. - %% 15A Decora %% - * BOH/Common Areas: - * Current rating: Unspecified. Assuming 20A for takeoff. - * Standard/Decora: Unspecified. Assuming Toggle/Duplex for takeoff. - %% 20A Toggle/Duplex %% + * All Areas: + * Current rating: 20A _---Spec 260510 2.16(B)(1) (p. 2231)_ + * Standard/Decora: Decora _---Spec 260510 2.16(D) (p. 2231)_ * **Switchboards:** - * Acceptable Manufacturers: _---Spec XXXXXX (p. XXXX)_ - * ??? - * Bus Material: ??? _---Spec XXXXXX (p. XXXX)_ - * Interrupting Current Rating: ??? + * Bus Material: "aluminum or copper, tin or silver plated" _---Spec 262000 2.6(C)(4) (p. 2297)_ + * OCPD Interrupting Current Ratings: Not specified. + * Acceptable Manufacturers: _---Spec 262000 2.17(C) (p. 2307)_ + * Eaton + * ABB/GE + * Schneider Electric + * Siemens -* **Distribution Panelboards:** - * Acceptable Manufacturers: _---Spec XXXXXX (p. XXXX)_ - * ??? - * Bus Material: ??? _---Spec XXXXXX (p. XXXX)_ - * Breaker Types: ??? _---Spec XXXXXX (p. XXXX)_ - %% Snap-on, bolt on %% - * Interrupting Current Rating: ??? - -* **Load Centers:** - * Acceptable Manufacturers: _---Spec XXXXXX (p. XXXX)_ - * ??? - * Bus Material: ??? _---Spec XXXXXX (p. XXXX)_ - * Breaker Types: ??? _---Spec XXXXXX (p. XXXX)_ - %% Snap-on, bolt on %% - * Interrupting Current Rating: ??? +* **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 + * Schneider Electric + * Siemens * **Transformers:** - * Winding Material: ??? _---Spec XXXXXX (p. XXXX)_ - * K-Rating: ??? - %% Windings AL or CU, K-rating %% + * Winding Material: + "Transformer windings shall be manufacturer's standard design, + copper or aluminum conductor. Bussing shall be copper." + _---Spec 262002.5(L) (p. 2296)_ + + * 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 + * Heavy Duty + * MGM + * Siemens + * Schneider Electric + * United Power Corp -* **Generator:** (1) 500kW Diesel - * Enclosure Specs: ??? _---Dwg. E014_ - * Remote Tank: ??? - * Tank Size: ??? _---Spec XXXXXX (p. XXXX)_ - * Load Banks: ??? _---Spec XXXXXX (p. XXXX)_ - * Acceptable Manufacturers: _---Spec 263213-3 (p. 2323)_ +* **Generator:** (1) 500kW Diesel _---Dwg. E05-12_ + * Enclosure Specs: Not specified. + * Remote Tank: None shown or specified. + * Tank Size: 12hrs at full load _---Spec 263213 2.7(C) (p. 2326)_ + * Load Banks: None shown or specified. + * Acceptable Manufacturers: _---Spec 263213 2.1(A) (p. 2323)_ * Caterpillar Tractor Co. * Cummins/Power Generation * Kohler Power Systems (MTU Engine Only) @@ -125,66 +140,88 @@ Please confirm you have received this email and respond with any questions or co ### PDI System Execution Plan -* **Primaries:** - %% Installation only, (9) 6" PVC %% +* **Primaries:** Conduit only; wiring, duct bank by others. -* **Secondaries:** - * +* **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 - ==(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:** ??? +* **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:** - * ??? + * 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:** - * ??? - %% 42" MSDE, No Cable Homeruns, (1) 1" Back to IDF, CAT6 with Stub-ups %% + 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 -* **Basis of Takeoff:** ??? _---???_ - %% Code Minimum per Energy Code Assigned, P&S, PDI Design %% +%% [[2026-03-10_13-51-32#Lighting Control]] %% -* **Area:** _---Dwg. E06-01 "LIGHTING CONTROL NARRATIVE"_ - * +* **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. + +* **By Area:** + * Units: Master Switch, Digital Standalone Control, 0-10V dimming. + * 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 new file mode 100644 index 0000000..817cb55 --- /dev/null +++ b/timestamped/2026-03-10_13-51-32.md @@ -0,0 +1,146 @@ +--- +id: 2026-03-10T13:51:32-04:00 +aliases: [] +title: 2026-03-10 13:51:32 +tags: + - authorship/original + - destiny/permanent + - status/draft + - type/periodic/timestamped +dg-publish: true +date-created: 2026-03-10T13:51:32-04:00 +daily: "[[2026-03-10]]" +weekly: "[[2026-W11]]" +monthly: "[[2026-03]]" +quarterly: "[[2026-Q1]]" +yearly: "[[2026]]" +--- +# 2026-03-10 13:51:32 + +## Charlotte South End Hotel Spec Interpretation + +[[charlotte-south-end-hotel|Charlotte South End Hotel]] + +### EMT Fittings + +> [!quote] Spec 260510 2.4(E) +> EMT - Electrical metallic tubing, "thin wall" zinc coated steel, enameled interior, ANSI C80.3, UL-797, +> assembled using concrete tight and rain tight gland-ring compression threaded type fittings +> except where alternate type fittings are allowable by the NEC +> and authorities have jusrisdiction \[sic\]. + +> [!quote] Spec 260510 2.4(N)(2) +> EMT connectors - Provide gland ring compression threaded fittings, except- +> * a. Concrete tight double set screw type connectors +> are acceptable in 2 1/2-inch and larger sizes +> in dry locations only. + +> [!quote] Joel Jansen 2026-03-10 (pp.) +> Takeoff as specified + +### Liquid-Tight Conduit + +> [!quote] Spec 260510 2.4(G) +> Liquid-tight flexible metallic raceway +> shall be similar to standard flexible steel conduit +> except encased in liquid tight neoprene outer jacket. + +No definition is provided for a liquid-tight flexible non-metallic raceway + +> [!quote] Spec 260510 2.4(G)(7) (text decoration added) +> Provide _liquid-tight flexible conduit_ +> for each motor and rotating device for power and control, ~~computer room~~[^1] +> and for other equipment requiring adjustments or removal for service +> in mechanical rooms or where subject to moisture or weather. + +> [!quote] Joel Jansen 2026-03-10 (pp.) +> + +[^1]: I feel fairly confident this is erroneous. + +### Voltage Drop + +> [!quote] Spec 260510 2.2(C)(4) (text decoration added) +> Sizing of conductors and conduits +> shall be solely the responsibility of the Contractor +> and shall be based on the NEC, [[nfpa-70_310_conductors_for_general_wiring|Article 310]]. +> Ampacity shall be equal to, or greater than, the required load specified. +> ==Voltage drop shall be no greater than that allowed by the NEC.== + +> [!quote] Dwg. E00-00 "GENERAL PRICING NOTES" Note 9 +> PROVIDE ALLOWANCE TO UPSIZE FEEDERS/BRANCH CIRCUITS +> (OVER 100 FEET FOR 120/208V, OVER 200 FEET FOR 277/480V) +> FOR A MAXIMUM OF 3% VOLTAGE DROP. + +### Lighting Control + +#### 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 + +> [!quote] PDR Lutron Lighting Control Quote 2025-12-10 +> (13) Pre-Assembled Processor Panel, +> (14) Athena Centralized Din Lighting Control Panel, +> (14) DALI ESN Panel, +> (14) QS Sensor Module, +> (4) Touchscreen, +> (112) QS Wired Keypads, +> (2) Partition Sensor, +> (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 + +Assuming that this line includes master switches +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 + +### EV Chargers + +> [!quote] Proposal 2025-12-12, Alternates +> Add: (21) EV-Capable and (3) EV-Installed per Building Connected $ 38,000 + +Panel LG's schedule (E06-13) +shows (10) 40A/2P circuits +with description "EV CHARGER". + +These circuits are not shown on the electrical set, +nor are any chargers besides. 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]] diff --git a/wiring-method-selection.md b/wiring-method-selection.md index e77edac..5fb5aad 100644 --- a/wiring-method-selection.md +++ b/wiring-method-selection.md @@ -175,15 +175,7 @@ but may not be acceptable. > These are usually only mentioned in specifications > to say that they are unacceptable. -> [!info] Edge Case: [[vanderbilt-central-neighborhood-residential-college]] -> -> > [!cite] Vanderbilt Central Neighborhood Residential College - Project Specifications (pp.) -> > Fittings for Type EMT Duct Raceways: -> > * Coupling Method: Compression coupling or Setscrew coupling. -> > Setscrew couplings with only single screw per conduit are unacceptable. -> -> > [!quote] Joel Jansen via Microsoft Teams @ 2025-10-15 09:33 AM -> > use set screw 🙂 +[[2025-10-15_09-32-00#Vanderbilt Central Neighborhood Residential College Spec Interpretation]] ## Standard Outdoor Wiring Methods diff --git a/wishlist.md b/wishlist.md index b73b4c6..f9c6619 100644 --- a/wishlist.md +++ b/wishlist.md @@ -14,8 +14,10 @@ dg-publish: true * [ ] hand sewing thread set (multiple colors) * [ ] quality aux cable +* [ ] half-letter 3-hole punch ## Pricier * [ ] [[e-ink-tablet]] -* [ ] 61-key midi controller (M-AUDIO Keystation 61 MK3, Nektar Impact GXP61) \ No newline at end of file +* [ ] 61-key midi controller (M-AUDIO Keystation 61 MK3, Nektar Impact GXP61) +* [ ] printer \ No newline at end of file