vault backup: 2025-10-10 06:56:17
This commit is contained in:
Vendored
-1
@@ -3,7 +3,6 @@
|
|||||||
"homepage",
|
"homepage",
|
||||||
"tag-wrangler",
|
"tag-wrangler",
|
||||||
"table-editor-obsidian",
|
"table-editor-obsidian",
|
||||||
"dataview",
|
|
||||||
"obsidian-linter",
|
"obsidian-linter",
|
||||||
"obsidian-style-settings",
|
"obsidian-style-settings",
|
||||||
"obsidian-tagfolder",
|
"obsidian-tagfolder",
|
||||||
|
|||||||
Vendored
-20876
File diff suppressed because one or more lines are too long
-11
@@ -1,11 +0,0 @@
|
|||||||
{
|
|
||||||
"id": "dataview",
|
|
||||||
"name": "Dataview",
|
|
||||||
"version": "0.5.68",
|
|
||||||
"minAppVersion": "0.13.11",
|
|
||||||
"description": "Complex data views for the data-obsessed.",
|
|
||||||
"author": "Michael Brenan <blacksmithgu@gmail.com>",
|
|
||||||
"authorUrl": "https://github.com/blacksmithgu",
|
|
||||||
"helpUrl": "https://blacksmithgu.github.io/obsidian-dataview/",
|
|
||||||
"isDesktopOnly": false
|
|
||||||
}
|
|
||||||
-141
@@ -1,141 +0,0 @@
|
|||||||
.block-language-dataview {
|
|
||||||
overflow-y: auto;
|
|
||||||
}
|
|
||||||
|
|
||||||
/*****************/
|
|
||||||
/** Table Views **/
|
|
||||||
/*****************/
|
|
||||||
|
|
||||||
/* List View Default Styling; rendered internally as a table. */
|
|
||||||
.table-view-table {
|
|
||||||
width: 100%;
|
|
||||||
}
|
|
||||||
|
|
||||||
.table-view-table > thead > tr, .table-view-table > tbody > tr {
|
|
||||||
margin-top: 1em;
|
|
||||||
margin-bottom: 1em;
|
|
||||||
text-align: left;
|
|
||||||
}
|
|
||||||
|
|
||||||
.table-view-table > tbody > tr:hover {
|
|
||||||
background-color: var(--table-row-background-hover);
|
|
||||||
}
|
|
||||||
|
|
||||||
.table-view-table > thead > tr > th {
|
|
||||||
font-weight: 700;
|
|
||||||
font-size: larger;
|
|
||||||
border-top: none;
|
|
||||||
border-left: none;
|
|
||||||
border-right: none;
|
|
||||||
border-bottom: solid;
|
|
||||||
|
|
||||||
max-width: 100%;
|
|
||||||
}
|
|
||||||
|
|
||||||
.table-view-table > tbody > tr > td {
|
|
||||||
text-align: left;
|
|
||||||
border: none;
|
|
||||||
font-weight: 400;
|
|
||||||
max-width: 100%;
|
|
||||||
}
|
|
||||||
|
|
||||||
.table-view-table ul, .table-view-table ol {
|
|
||||||
margin-block-start: 0.2em !important;
|
|
||||||
margin-block-end: 0.2em !important;
|
|
||||||
}
|
|
||||||
|
|
||||||
/** Rendered value styling for any view. */
|
|
||||||
.dataview-result-list-root-ul {
|
|
||||||
padding: 0em !important;
|
|
||||||
margin: 0em !important;
|
|
||||||
}
|
|
||||||
|
|
||||||
.dataview-result-list-ul {
|
|
||||||
margin-block-start: 0.2em !important;
|
|
||||||
margin-block-end: 0.2em !important;
|
|
||||||
}
|
|
||||||
|
|
||||||
/** Generic grouping styling. */
|
|
||||||
.dataview.result-group {
|
|
||||||
padding-left: 8px;
|
|
||||||
}
|
|
||||||
|
|
||||||
/*******************/
|
|
||||||
/** Inline Fields **/
|
|
||||||
/*******************/
|
|
||||||
|
|
||||||
.dataview.inline-field-key {
|
|
||||||
padding-left: 8px;
|
|
||||||
padding-right: 8px;
|
|
||||||
font-family: var(--font-monospace);
|
|
||||||
background-color: var(--background-primary-alt);
|
|
||||||
color: var(--nav-item-color-selected);
|
|
||||||
}
|
|
||||||
|
|
||||||
.dataview.inline-field-value {
|
|
||||||
padding-left: 8px;
|
|
||||||
padding-right: 8px;
|
|
||||||
font-family: var(--font-monospace);
|
|
||||||
background-color: var(--background-secondary-alt);
|
|
||||||
color: var(--nav-item-color-selected);
|
|
||||||
}
|
|
||||||
|
|
||||||
.dataview.inline-field-standalone-value {
|
|
||||||
padding-left: 8px;
|
|
||||||
padding-right: 8px;
|
|
||||||
font-family: var(--font-monospace);
|
|
||||||
background-color: var(--background-secondary-alt);
|
|
||||||
color: var(--nav-item-color-selected);
|
|
||||||
}
|
|
||||||
|
|
||||||
/***************/
|
|
||||||
/** Task View **/
|
|
||||||
/***************/
|
|
||||||
|
|
||||||
.dataview.task-list-item, .dataview.task-list-basic-item {
|
|
||||||
margin-top: 3px;
|
|
||||||
margin-bottom: 3px;
|
|
||||||
transition: 0.4s;
|
|
||||||
}
|
|
||||||
|
|
||||||
.dataview.task-list-item:hover, .dataview.task-list-basic-item:hover {
|
|
||||||
background-color: var(--text-selection);
|
|
||||||
box-shadow: -40px 0 0 var(--text-selection);
|
|
||||||
cursor: pointer;
|
|
||||||
}
|
|
||||||
|
|
||||||
/*****************/
|
|
||||||
/** Error Views **/
|
|
||||||
/*****************/
|
|
||||||
|
|
||||||
div.dataview-error-box {
|
|
||||||
width: 100%;
|
|
||||||
min-height: 150px;
|
|
||||||
display: flex;
|
|
||||||
align-items: center;
|
|
||||||
justify-content: center;
|
|
||||||
border: 4px dashed var(--background-secondary);
|
|
||||||
}
|
|
||||||
|
|
||||||
.dataview-error-message {
|
|
||||||
color: var(--text-muted);
|
|
||||||
text-align: center;
|
|
||||||
}
|
|
||||||
|
|
||||||
/*************************/
|
|
||||||
/** Additional Metadata **/
|
|
||||||
/*************************/
|
|
||||||
|
|
||||||
.dataview.small-text {
|
|
||||||
font-size: smaller;
|
|
||||||
color: var(--text-muted);
|
|
||||||
margin-left: 3px;
|
|
||||||
}
|
|
||||||
|
|
||||||
.dataview.small-text::before {
|
|
||||||
content: "(";
|
|
||||||
}
|
|
||||||
|
|
||||||
.dataview.small-text::after {
|
|
||||||
content: ")";
|
|
||||||
}
|
|
||||||
+3
-610
File diff suppressed because one or more lines are too long
+1
-1
@@ -1,7 +1,7 @@
|
|||||||
{
|
{
|
||||||
"id": "image-converter",
|
"id": "image-converter",
|
||||||
"name": "Image Converter",
|
"name": "Image Converter",
|
||||||
"version": "1.3.15",
|
"version": "1.3.18",
|
||||||
"minAppVersion": "0.15.0",
|
"minAppVersion": "0.15.0",
|
||||||
"description": "Convert, compress, resize, annotate, markup, draw, crop, rotate, flip, align images directly in Obsidian. Drag-resize, rename with variables, batch process. WEBP, JPG, PNG, HEIC, TIF.",
|
"description": "Convert, compress, resize, annotate, markup, draw, crop, rotate, flip, align images directly in Obsidian. Drag-resize, rename with variables, batch process. WEBP, JPG, PNG, HEIC, TIF.",
|
||||||
"author": "xRyul",
|
"author": "xRyul",
|
||||||
|
|||||||
Vendored
+218
-186
File diff suppressed because one or more lines are too long
+1
-1
@@ -1,7 +1,7 @@
|
|||||||
{
|
{
|
||||||
"id": "make-md",
|
"id": "make-md",
|
||||||
"name": "make.md",
|
"name": "make.md",
|
||||||
"version": "1.1.7",
|
"version": "1.3.1",
|
||||||
"minAppVersion": "0.16.0",
|
"minAppVersion": "0.16.0",
|
||||||
"description": "make.md gives you everything you need to organize and personalize your notes.",
|
"description": "make.md gives you everything you need to organize and personalize your notes.",
|
||||||
"author": "make.md",
|
"author": "make.md",
|
||||||
|
|||||||
Vendored
+1
-1
File diff suppressed because one or more lines are too long
+7
-1
@@ -47,6 +47,7 @@
|
|||||||
"penModeDoubleTapEraser": true,
|
"penModeDoubleTapEraser": true,
|
||||||
"penModeSingleFingerPanning": true,
|
"penModeSingleFingerPanning": true,
|
||||||
"penModeCrosshairVisible": true,
|
"penModeCrosshairVisible": true,
|
||||||
|
"panWithRightMouseButton": false,
|
||||||
"renderImageInMarkdownReadingMode": false,
|
"renderImageInMarkdownReadingMode": false,
|
||||||
"renderImageInHoverPreviewForMDNotes": false,
|
"renderImageInHoverPreviewForMDNotes": false,
|
||||||
"renderImageInMarkdownToPDF": false,
|
"renderImageInMarkdownToPDF": false,
|
||||||
@@ -55,6 +56,9 @@
|
|||||||
"zoomToFitOnOpen": true,
|
"zoomToFitOnOpen": true,
|
||||||
"zoomToFitOnResize": true,
|
"zoomToFitOnResize": true,
|
||||||
"zoomToFitMaxLevel": 2,
|
"zoomToFitMaxLevel": 2,
|
||||||
|
"zoomStep": 0.05,
|
||||||
|
"zoomMin": 0.1,
|
||||||
|
"zoomMax": 30,
|
||||||
"linkPrefix": "📍",
|
"linkPrefix": "📍",
|
||||||
"urlPrefix": "🌐",
|
"urlPrefix": "🌐",
|
||||||
"parseTODO": false,
|
"parseTODO": false,
|
||||||
@@ -115,8 +119,10 @@
|
|||||||
"mdCSS": "",
|
"mdCSS": "",
|
||||||
"scriptEngineSettings": {},
|
"scriptEngineSettings": {},
|
||||||
"defaultTrayMode": true,
|
"defaultTrayMode": true,
|
||||||
"previousRelease": "2.14.1",
|
"compactModeOnTablets": true,
|
||||||
|
"previousRelease": "2.16.1",
|
||||||
"showReleaseNotes": true,
|
"showReleaseNotes": true,
|
||||||
|
"compareManifestToPluginVersion": true,
|
||||||
"showNewVersionNotification": true,
|
"showNewVersionNotification": true,
|
||||||
"latexBoilerplate": "\\color{blue}",
|
"latexBoilerplate": "\\color{blue}",
|
||||||
"latexPreambleLocation": "preamble.sty",
|
"latexPreambleLocation": "preamble.sty",
|
||||||
|
|||||||
+3
-3
File diff suppressed because one or more lines are too long
@@ -1,7 +1,7 @@
|
|||||||
{
|
{
|
||||||
"id": "obsidian-excalidraw-plugin",
|
"id": "obsidian-excalidraw-plugin",
|
||||||
"name": "Excalidraw",
|
"name": "Excalidraw",
|
||||||
"version": "2.14.1",
|
"version": "2.16.1",
|
||||||
"minAppVersion": "1.5.7",
|
"minAppVersion": "1.5.7",
|
||||||
"description": "An Obsidian plugin to edit and view Excalidraw drawings",
|
"description": "An Obsidian plugin to edit and view Excalidraw drawings",
|
||||||
"author": "Zsolt Viczian",
|
"author": "Zsolt Viczian",
|
||||||
|
|||||||
+1
-1
File diff suppressed because one or more lines are too long
+51
-51
File diff suppressed because one or more lines are too long
+1
-1
@@ -6,5 +6,5 @@
|
|||||||
"description": "Integrate Git version control with automatic backup and other advanced features.",
|
"description": "Integrate Git version control with automatic backup and other advanced features.",
|
||||||
"isDesktopOnly": false,
|
"isDesktopOnly": false,
|
||||||
"fundingUrl": "https://ko-fi.com/vinzent",
|
"fundingUrl": "https://ko-fi.com/vinzent",
|
||||||
"version": "2.35.0"
|
"version": "2.35.1"
|
||||||
}
|
}
|
||||||
|
|||||||
+10
-2
@@ -14,11 +14,19 @@
|
|||||||
}
|
}
|
||||||
|
|
||||||
.workspace-leaf-content[data-type="git-view"] .view-content {
|
.workspace-leaf-content[data-type="git-view"] .view-content {
|
||||||
padding: 0;
|
padding-left: 0;
|
||||||
|
padding-top: 0;
|
||||||
|
padding-right: 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
.workspace-leaf-content[data-type="git-history-view"] .view-content {
|
.workspace-leaf-content[data-type="git-history-view"] .view-content {
|
||||||
padding: 0;
|
padding-left: 0;
|
||||||
|
padding-top: 0;
|
||||||
|
padding-right: 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
.loading {
|
||||||
|
overflow: hidden;
|
||||||
}
|
}
|
||||||
|
|
||||||
.loading > svg {
|
.loading > svg {
|
||||||
|
|||||||
+3
-3
@@ -70,9 +70,9 @@
|
|||||||
"update-on-file-contents-updated": "never"
|
"update-on-file-contents-updated": "never"
|
||||||
},
|
},
|
||||||
"yaml-title": {
|
"yaml-title": {
|
||||||
"enabled": false,
|
"enabled": true,
|
||||||
"title-key": "title",
|
"title-key": "title",
|
||||||
"mode": "first-h1-or-filename-if-h1-missing"
|
"mode": "first-h1"
|
||||||
},
|
},
|
||||||
"yaml-title-alias": {
|
"yaml-title-alias": {
|
||||||
"enabled": false,
|
"enabled": false,
|
||||||
@@ -243,7 +243,7 @@
|
|||||||
},
|
},
|
||||||
"trailing-spaces": {
|
"trailing-spaces": {
|
||||||
"enabled": true,
|
"enabled": true,
|
||||||
"twp-space-line-break": false
|
"two-space-line-break": false
|
||||||
},
|
},
|
||||||
"add-blockquote-indentation-on-paste": {
|
"add-blockquote-indentation-on-paste": {
|
||||||
"enabled": true
|
"enabled": true
|
||||||
|
|||||||
+264
-299
File diff suppressed because one or more lines are too long
+2
-2
@@ -1,8 +1,8 @@
|
|||||||
{
|
{
|
||||||
"id": "obsidian-linter",
|
"id": "obsidian-linter",
|
||||||
"name": "Linter",
|
"name": "Linter",
|
||||||
"version": "1.29.0",
|
"version": "1.30.0",
|
||||||
"minAppVersion": "1.5.7",
|
"minAppVersion": "1.9.0",
|
||||||
"description": "Formats and styles your notes. It can be used to format YAML tags, aliases, arrays, and metadata; footnotes; headings; spacing; math blocks; regular markdown contents like list, italics, and bold styles; and more with the use of custom rule options as well.",
|
"description": "Formats and styles your notes. It can be used to format YAML tags, aliases, arrays, and metadata; footnotes; headings; spacing; math blocks; regular markdown contents like list, italics, and bold styles; and more with the use of custom rule options as well.",
|
||||||
"author": "Victor Tao",
|
"author": "Victor Tao",
|
||||||
"authorUrl": "https://github.com/platers",
|
"authorUrl": "https://github.com/platers",
|
||||||
|
|||||||
@@ -1,86 +0,0 @@
|
|||||||
{
|
|
||||||
"presets": {
|
|
||||||
"this_file": "path includes {{query.file.path}}",
|
|
||||||
"this_folder": "folder includes {{query.file.folder}}",
|
|
||||||
"this_folder_only": "filter by function task.file.folder === query.file.folder",
|
|
||||||
"this_root": "root includes {{query.file.root}}",
|
|
||||||
"hide_date_fields": "# Hide any values for all date fields\nhide due date\nhide scheduled date\nhide start date\nhide created date\nhide done date\nhide cancelled date",
|
|
||||||
"hide_non_date_fields": "# Hide all the non-date fields, but not tags\nhide id\nhide depends on\nhide recurrence rule\nhide on completion\nhide priority",
|
|
||||||
"hide_query_elements": "# Hide postpone, edit and backinks\nhide postpone button\nhide edit button\nhide backlinks",
|
|
||||||
"hide_everything": "# Hide everything except description and any tags\npreset hide_date_fields\npreset hide_non_date_fields\npreset hide_query_elements"
|
|
||||||
},
|
|
||||||
"globalQuery": "",
|
|
||||||
"globalFilter": "",
|
|
||||||
"removeGlobalFilter": false,
|
|
||||||
"taskFormat": "tasksPluginEmoji",
|
|
||||||
"setCreatedDate": false,
|
|
||||||
"setDoneDate": true,
|
|
||||||
"setCancelledDate": true,
|
|
||||||
"autoSuggestInEditor": true,
|
|
||||||
"autoSuggestMinMatch": 0,
|
|
||||||
"autoSuggestMaxItems": 20,
|
|
||||||
"provideAccessKeys": true,
|
|
||||||
"useFilenameAsScheduledDate": false,
|
|
||||||
"filenameAsScheduledDateFormat": "",
|
|
||||||
"filenameAsDateFolders": [],
|
|
||||||
"recurrenceOnNextLine": false,
|
|
||||||
"removeScheduledDateOnRecurrence": false,
|
|
||||||
"statusSettings": {
|
|
||||||
"coreStatuses": [
|
|
||||||
{
|
|
||||||
"symbol": " ",
|
|
||||||
"name": "Todo",
|
|
||||||
"nextStatusSymbol": "x",
|
|
||||||
"availableAsCommand": true,
|
|
||||||
"type": "TODO"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"symbol": "x",
|
|
||||||
"name": "Done",
|
|
||||||
"nextStatusSymbol": " ",
|
|
||||||
"availableAsCommand": true,
|
|
||||||
"type": "DONE"
|
|
||||||
}
|
|
||||||
],
|
|
||||||
"customStatuses": [
|
|
||||||
{
|
|
||||||
"symbol": "/",
|
|
||||||
"name": "In Progress",
|
|
||||||
"nextStatusSymbol": "x",
|
|
||||||
"availableAsCommand": true,
|
|
||||||
"type": "IN_PROGRESS"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"symbol": "-",
|
|
||||||
"name": "Cancelled",
|
|
||||||
"nextStatusSymbol": " ",
|
|
||||||
"availableAsCommand": true,
|
|
||||||
"type": "CANCELLED"
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
"features": {
|
|
||||||
"INTERNAL_TESTING_ENABLED_BY_DEFAULT": true
|
|
||||||
},
|
|
||||||
"generalSettings": {},
|
|
||||||
"headingOpened": {
|
|
||||||
"Core Statuses": true,
|
|
||||||
"Custom Statuses": true
|
|
||||||
},
|
|
||||||
"debugSettings": {
|
|
||||||
"ignoreSortInstructions": false,
|
|
||||||
"showTaskHiddenData": false,
|
|
||||||
"recordTimings": false
|
|
||||||
},
|
|
||||||
"loggingOptions": {
|
|
||||||
"minLevels": {
|
|
||||||
"": "info",
|
|
||||||
"tasks": "info",
|
|
||||||
"tasks.Cache": "info",
|
|
||||||
"tasks.Events": "info",
|
|
||||||
"tasks.File": "info",
|
|
||||||
"tasks.Query": "info",
|
|
||||||
"tasks.Task": "info"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
-500
File diff suppressed because one or more lines are too long
@@ -1,12 +0,0 @@
|
|||||||
{
|
|
||||||
"id": "obsidian-tasks-plugin",
|
|
||||||
"name": "Tasks",
|
|
||||||
"version": "7.20.0",
|
|
||||||
"minAppVersion": "1.4.0",
|
|
||||||
"description": "Track tasks across your vault. Supports due dates, recurring tasks, done dates, sub-set of checklist items, and filtering.",
|
|
||||||
"helpUrl": "https://publish.obsidian.md/tasks/",
|
|
||||||
"author": "Clare Macrae and Ilyas Landikov (created by Martin Schenck)",
|
|
||||||
"authorUrl": "https://github.com/obsidian-tasks-group",
|
|
||||||
"fundingUrl": "https://github.com/sponsors/claremacrae",
|
|
||||||
"isDesktopOnly": false
|
|
||||||
}
|
|
||||||
File diff suppressed because one or more lines are too long
Vendored
+3
-1
@@ -4,7 +4,9 @@
|
|||||||
"devMode": false,
|
"devMode": false,
|
||||||
"templateFolderPath": "",
|
"templateFolderPath": "",
|
||||||
"announceUpdates": false,
|
"announceUpdates": false,
|
||||||
"version": "2.1.0",
|
"version": "2.4.0",
|
||||||
|
"globalVariables": {},
|
||||||
|
"onePageInputEnabled": false,
|
||||||
"disableOnlineFeatures": true,
|
"disableOnlineFeatures": true,
|
||||||
"enableRibbonIcon": false,
|
"enableRibbonIcon": false,
|
||||||
"showCaptureNotification": true,
|
"showCaptureNotification": true,
|
||||||
|
|||||||
Vendored
+48
-46
File diff suppressed because one or more lines are too long
+1
-1
@@ -1,7 +1,7 @@
|
|||||||
{
|
{
|
||||||
"id": "quickadd",
|
"id": "quickadd",
|
||||||
"name": "QuickAdd",
|
"name": "QuickAdd",
|
||||||
"version": "2.1.0",
|
"version": "2.4.0",
|
||||||
"minAppVersion": "1.6.0",
|
"minAppVersion": "1.6.0",
|
||||||
"description": "Quickly add new pages or content to your vault.",
|
"description": "Quickly add new pages or content to your vault.",
|
||||||
"author": "Christian B. B. Houmann",
|
"author": "Christian B. B. Houmann",
|
||||||
|
|||||||
+1
-1
File diff suppressed because one or more lines are too long
+12
-12
@@ -1,5 +1,17 @@
|
|||||||
{
|
{
|
||||||
"recentFiles": [
|
"recentFiles": [
|
||||||
|
{
|
||||||
|
"basename": "stochastic-branch-takeoff",
|
||||||
|
"path": "stochastic-branch-takeoff.md"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"basename": "spatial-sampling",
|
||||||
|
"path": "spatial-sampling.gif"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"basename": "monte-carlo-methods",
|
||||||
|
"path": "monte-carlo-methods.md"
|
||||||
|
},
|
||||||
{
|
{
|
||||||
"basename": "README",
|
"basename": "README",
|
||||||
"path": "README.md"
|
"path": "README.md"
|
||||||
@@ -140,10 +152,6 @@
|
|||||||
"basename": "this-notebook",
|
"basename": "this-notebook",
|
||||||
"path": "this-notebook.md"
|
"path": "this-notebook.md"
|
||||||
},
|
},
|
||||||
{
|
|
||||||
"basename": "stochastic-branch-takeoff",
|
|
||||||
"path": "stochastic-branch-takeoff.md"
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
"basename": "favorite-quotes",
|
"basename": "favorite-quotes",
|
||||||
"path": "favorite-quotes.md"
|
"path": "favorite-quotes.md"
|
||||||
@@ -191,14 +199,6 @@
|
|||||||
{
|
{
|
||||||
"basename": "nfpa-70_220_load-calculations",
|
"basename": "nfpa-70_220_load-calculations",
|
||||||
"path": "nfpa-70_220_load-calculations.md"
|
"path": "nfpa-70_220_load-calculations.md"
|
||||||
},
|
|
||||||
{
|
|
||||||
"basename": "nfpa-70_215_feeders",
|
|
||||||
"path": "nfpa-70_215_feeders.md"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"basename": "nfpa-70_210_branch-circuits",
|
|
||||||
"path": "nfpa-70_210_branch-circuits.md"
|
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"omittedPaths": [],
|
"omittedPaths": [],
|
||||||
|
|||||||
+22
-14
File diff suppressed because one or more lines are too long
+1
-1
@@ -1,7 +1,7 @@
|
|||||||
{
|
{
|
||||||
"id": "templater-obsidian",
|
"id": "templater-obsidian",
|
||||||
"name": "Templater",
|
"name": "Templater",
|
||||||
"version": "2.14.1",
|
"version": "2.16.0",
|
||||||
"description": "Create and use templates",
|
"description": "Create and use templates",
|
||||||
"minAppVersion": "1.5.0",
|
"minAppVersion": "1.5.0",
|
||||||
"author": "SilentVoid",
|
"author": "SilentVoid",
|
||||||
|
|||||||
+8
-2
@@ -54,7 +54,8 @@
|
|||||||
justify-content: center;
|
justify-content: center;
|
||||||
}
|
}
|
||||||
|
|
||||||
.templater-prompt-div {
|
.templater-prompt-div,
|
||||||
|
.templater-multisuggester-div {
|
||||||
display: flex;
|
display: flex;
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -63,7 +64,8 @@
|
|||||||
flex-grow: 1;
|
flex-grow: 1;
|
||||||
}
|
}
|
||||||
|
|
||||||
.templater-prompt-input {
|
.templater-prompt-input,
|
||||||
|
.templater-multisuggester-input {
|
||||||
flex-grow: 1;
|
flex-grow: 1;
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -82,6 +84,10 @@ textarea.templater-prompt-input:focus {
|
|||||||
border-color: var(--interactive-accent);
|
border-color: var(--interactive-accent);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.templater-multisuggester-list {
|
||||||
|
margin: 1.5em 0;
|
||||||
|
}
|
||||||
|
|
||||||
.cm-s-obsidian .templater-command-bg {
|
.cm-s-obsidian .templater-command-bg {
|
||||||
left: 0px;
|
left: 0px;
|
||||||
right: 0px;
|
right: 0px;
|
||||||
|
|||||||
@@ -6,6 +6,7 @@ tags:
|
|||||||
- status/incomplete
|
- status/incomplete
|
||||||
- topic/estimating
|
- topic/estimating
|
||||||
- type/anecdote
|
- type/anecdote
|
||||||
|
title: "Estimating Isn't Engineering"
|
||||||
---
|
---
|
||||||
# Estimating Isn't Engineering
|
# Estimating Isn't Engineering
|
||||||
|
|
||||||
|
|||||||
@@ -4,6 +4,7 @@ aliases: []
|
|||||||
tags:
|
tags:
|
||||||
- destiny/permanent
|
- destiny/permanent
|
||||||
- occupational
|
- occupational
|
||||||
|
title: 90-Day Performance Review
|
||||||
---
|
---
|
||||||
# 90-Day Performance Review
|
# 90-Day Performance Review
|
||||||
|
|
||||||
|
|||||||
@@ -5,6 +5,7 @@ aliases: []
|
|||||||
excalidraw-plugin: parsed
|
excalidraw-plugin: parsed
|
||||||
tags:
|
tags:
|
||||||
- excalidraw
|
- excalidraw
|
||||||
|
title: Excalidraw Data
|
||||||
---
|
---
|
||||||
==⚠ Switch to EXCALIDRAW VIEW in the MORE OPTIONS menu of this document. ⚠== You can decompress Drawing data with the command palette: 'Decompress current Excalidraw file'. For more info check in plugin settings under 'Saving'
|
==⚠ Switch to EXCALIDRAW VIEW in the MORE OPTIONS menu of this document. ⚠== You can decompress Drawing data with the command palette: 'Decompress current Excalidraw file'. For more info check in plugin settings under 'Saving'
|
||||||
|
|
||||||
|
|||||||
@@ -9,6 +9,7 @@ tags:
|
|||||||
- status/incomplete
|
- status/incomplete
|
||||||
- topic/meta
|
- topic/meta
|
||||||
- type/encyclopedia
|
- type/encyclopedia
|
||||||
|
title: zmVault
|
||||||
---
|
---
|
||||||
# zmVault
|
# zmVault
|
||||||
|
|
||||||
|
|||||||
@@ -4,6 +4,7 @@ aliases: []
|
|||||||
tags:
|
tags:
|
||||||
- occupational/systems
|
- occupational/systems
|
||||||
- type/guide
|
- type/guide
|
||||||
|
title: Blank System
|
||||||
---
|
---
|
||||||
# Blank System
|
# Blank System
|
||||||
|
|
||||||
|
|||||||
@@ -4,5 +4,6 @@ aliases: []
|
|||||||
tags:
|
tags:
|
||||||
- destiny/fleeting
|
- destiny/fleeting
|
||||||
- type/idea
|
- type/idea
|
||||||
|
title: Idea
|
||||||
---
|
---
|
||||||
# Idea
|
# Idea
|
||||||
|
|||||||
@@ -4,6 +4,7 @@ aliases: []
|
|||||||
tags:
|
tags:
|
||||||
- occupational
|
- occupational
|
||||||
- type/guide
|
- type/guide
|
||||||
|
title: Accubid Setup
|
||||||
---
|
---
|
||||||
# Accubid Setup
|
# Accubid Setup
|
||||||
|
|
||||||
|
|||||||
@@ -6,6 +6,7 @@ tags:
|
|||||||
- topic/estimating
|
- topic/estimating
|
||||||
- topic/software
|
- topic/software
|
||||||
- type/philosophy
|
- type/philosophy
|
||||||
|
title: AI in Estimating
|
||||||
---
|
---
|
||||||
# AI in Estimating
|
# AI in Estimating
|
||||||
|
|
||||||
|
|||||||
@@ -5,6 +5,7 @@ tags:
|
|||||||
- destiny/fleeting
|
- destiny/fleeting
|
||||||
- topic/electrical
|
- topic/electrical
|
||||||
- type/encyclopedia
|
- type/encyclopedia
|
||||||
|
title: Alternating Current
|
||||||
---
|
---
|
||||||
# Alternating Current
|
# Alternating Current
|
||||||
|
|
||||||
|
|||||||
@@ -7,6 +7,7 @@ aliases:
|
|||||||
tags:
|
tags:
|
||||||
- occupational/systems/standalone-systems
|
- occupational/systems/standalone-systems
|
||||||
- type/guide
|
- type/guide
|
||||||
|
title: Area of Refuge (AoR)
|
||||||
---
|
---
|
||||||
# Area of Refuge (AoR)
|
# Area of Refuge (AoR)
|
||||||
|
|
||||||
|
|||||||
@@ -7,6 +7,7 @@ tags:
|
|||||||
- topic/estimating
|
- topic/estimating
|
||||||
- topic/software
|
- topic/software
|
||||||
- type/idea
|
- type/idea
|
||||||
|
title: Assembly Objects
|
||||||
---
|
---
|
||||||
# Assembly Objects
|
# Assembly Objects
|
||||||
|
|
||||||
|
|||||||
@@ -5,6 +5,7 @@ tags:
|
|||||||
- destiny/fleeting
|
- destiny/fleeting
|
||||||
- topic/estimating
|
- topic/estimating
|
||||||
- type/philosophy
|
- type/philosophy
|
||||||
|
title: Assembly Philosophy
|
||||||
---
|
---
|
||||||
# Assembly Philosophy
|
# Assembly Philosophy
|
||||||
|
|
||||||
|
|||||||
@@ -6,6 +6,7 @@ tags:
|
|||||||
- topic/automation
|
- topic/automation
|
||||||
- topic/organization
|
- topic/organization
|
||||||
- topic/software
|
- topic/software
|
||||||
|
title: Automating Estimating Project Creation
|
||||||
---
|
---
|
||||||
# Automating Estimating Project Creation
|
# Automating Estimating Project Creation
|
||||||
|
|
||||||
|
|||||||
@@ -6,6 +6,7 @@ tags:
|
|||||||
- topic/automation
|
- topic/automation
|
||||||
- topic/software
|
- topic/software
|
||||||
- type/idea
|
- type/idea
|
||||||
|
title: Automating PDF Annotation
|
||||||
---
|
---
|
||||||
# Automating PDF Annotation
|
# Automating PDF Annotation
|
||||||
|
|
||||||
|
|||||||
@@ -5,6 +5,7 @@ tags:
|
|||||||
- destiny/fleeting
|
- destiny/fleeting
|
||||||
- topic/other
|
- topic/other
|
||||||
- type/encyclopedia
|
- type/encyclopedia
|
||||||
|
title: "Birds I've Seen Around Here"
|
||||||
---
|
---
|
||||||
# Birds I've Seen Around Here
|
# Birds I've Seen Around Here
|
||||||
|
|
||||||
|
|||||||
@@ -6,6 +6,7 @@ tags:
|
|||||||
- occupational
|
- occupational
|
||||||
- topic/automation
|
- topic/automation
|
||||||
- type/idea
|
- type/idea
|
||||||
|
title: BPM Award Analysis
|
||||||
---
|
---
|
||||||
# BPM Award Analysis
|
# BPM Award Analysis
|
||||||
|
|
||||||
|
|||||||
@@ -7,6 +7,7 @@ tags:
|
|||||||
- topic/estimating
|
- topic/estimating
|
||||||
- topic/software
|
- topic/software
|
||||||
- type/idea
|
- type/idea
|
||||||
|
title: Breakdown Objects
|
||||||
---
|
---
|
||||||
# Breakdown Objects
|
# Breakdown Objects
|
||||||
|
|
||||||
|
|||||||
@@ -4,6 +4,7 @@ aliases: []
|
|||||||
tags:
|
tags:
|
||||||
- authorship/other
|
- authorship/other
|
||||||
- occupational
|
- occupational
|
||||||
|
title: Breakdowns
|
||||||
---
|
---
|
||||||
# Breakdowns
|
# Breakdowns
|
||||||
|
|
||||||
|
|||||||
@@ -6,6 +6,7 @@ tags:
|
|||||||
- topic/estimating
|
- topic/estimating
|
||||||
- topic/risk
|
- topic/risk
|
||||||
- type/encyclopedia
|
- type/encyclopedia
|
||||||
|
title: Calibration Questions
|
||||||
---
|
---
|
||||||
# Calibration Questions
|
# Calibration Questions
|
||||||
|
|
||||||
|
|||||||
@@ -6,6 +6,7 @@ tags:
|
|||||||
- status/incomplete
|
- status/incomplete
|
||||||
- topic/electrical
|
- topic/electrical
|
||||||
- type/encyclopedia
|
- type/encyclopedia
|
||||||
|
title: Conductor Sizing
|
||||||
---
|
---
|
||||||
# Conductor Sizing
|
# Conductor Sizing
|
||||||
|
|
||||||
@@ -158,6 +159,7 @@ $$
|
|||||||
> 208Y/120V or 480Y/277V voltage system
|
> 208Y/120V or 480Y/277V voltage system
|
||||||
|
|
||||||
> [!info] 3-Phase Voltage
|
> [!info] 3-Phase Voltage
|
||||||
|
>
|
||||||
> $$
|
> $$
|
||||||
> V_{LL} = \sqrt{3} \times V_{LN}, \quad V_{LN} = \frac{V_{LL}}{\sqrt{3}}
|
> V_{LL} = \sqrt{3} \times V_{LN}, \quad V_{LN} = \frac{V_{LL}}{\sqrt{3}}
|
||||||
> $$
|
> $$
|
||||||
|
|||||||
@@ -5,6 +5,7 @@ tags:
|
|||||||
- topic/estimating
|
- topic/estimating
|
||||||
- topic/software
|
- topic/software
|
||||||
- type/philosophy
|
- type/philosophy
|
||||||
|
title: Construction Estimating Software
|
||||||
---
|
---
|
||||||
# Construction Estimating Software
|
# Construction Estimating Software
|
||||||
|
|
||||||
|
|||||||
@@ -4,6 +4,7 @@ aliases: []
|
|||||||
tags:
|
tags:
|
||||||
- destiny/uncertain
|
- destiny/uncertain
|
||||||
- type/media-commentary
|
- type/media-commentary
|
||||||
|
title: _Construction Estimating Using Excel_
|
||||||
---
|
---
|
||||||
# _Construction Estimating Using Excel_
|
# _Construction Estimating Using Excel_
|
||||||
|
|
||||||
|
|||||||
@@ -5,6 +5,7 @@ tags:
|
|||||||
- destiny/permanent
|
- destiny/permanent
|
||||||
- topic/estimating
|
- topic/estimating
|
||||||
- type/philosophy
|
- type/philosophy
|
||||||
|
title: Construction Estimating
|
||||||
---
|
---
|
||||||
# Construction Estimating
|
# Construction Estimating
|
||||||
|
|
||||||
|
|||||||
@@ -4,6 +4,7 @@ aliases: []
|
|||||||
tags:
|
tags:
|
||||||
- occupational
|
- occupational
|
||||||
- type/guide
|
- type/guide
|
||||||
|
title: Design Build Budget
|
||||||
---
|
---
|
||||||
# Design Build Budget
|
# Design Build Budget
|
||||||
|
|
||||||
|
|||||||
@@ -5,6 +5,7 @@ aliases:
|
|||||||
tags:
|
tags:
|
||||||
- occupational/systems/standalone-systems
|
- occupational/systems/standalone-systems
|
||||||
- type/guide
|
- type/guide
|
||||||
|
title: Distributed Antenna Systems (DAS)
|
||||||
---
|
---
|
||||||
# Distributed Antenna Systems (DAS)
|
# Distributed Antenna Systems (DAS)
|
||||||
|
|
||||||
|
|||||||
@@ -4,6 +4,7 @@ aliases: []
|
|||||||
tags:
|
tags:
|
||||||
- destiny/uncertain
|
- destiny/uncertain
|
||||||
- type/media-commentary
|
- type/media-commentary
|
||||||
|
title: _Electrical Estimating Methods_
|
||||||
---
|
---
|
||||||
# _Electrical Estimating Methods_
|
# _Electrical Estimating Methods_
|
||||||
|
|
||||||
|
|||||||
@@ -4,6 +4,7 @@ aliases: []
|
|||||||
tags:
|
tags:
|
||||||
- destiny/uncertain
|
- destiny/uncertain
|
||||||
- type/media-commentary
|
- type/media-commentary
|
||||||
|
title: _Electrical Estimators Manual_
|
||||||
---
|
---
|
||||||
# _Electrical Estimators Manual_
|
# _Electrical Estimators Manual_
|
||||||
|
|
||||||
|
|||||||
@@ -4,6 +4,7 @@ aliases: []
|
|||||||
tags:
|
tags:
|
||||||
- occupational/systems/electrical
|
- occupational/systems/electrical
|
||||||
- type/guide
|
- type/guide
|
||||||
|
title: Electrical
|
||||||
---
|
---
|
||||||
# Electrical
|
# Electrical
|
||||||
|
|
||||||
|
|||||||
@@ -7,6 +7,7 @@ tags:
|
|||||||
- topic/estimating
|
- topic/estimating
|
||||||
- topic/software
|
- topic/software
|
||||||
- type/idea
|
- type/idea
|
||||||
|
title: Estimating as Code
|
||||||
---
|
---
|
||||||
# Estimating as Code
|
# Estimating as Code
|
||||||
|
|
||||||
|
|||||||
@@ -5,6 +5,7 @@ tags:
|
|||||||
- topic/estimating
|
- topic/estimating
|
||||||
- topic/organization
|
- topic/organization
|
||||||
- type/philosophy
|
- type/philosophy
|
||||||
|
title: Estimating Culture
|
||||||
---
|
---
|
||||||
# Estimating Culture
|
# Estimating Culture
|
||||||
|
|
||||||
|
|||||||
@@ -4,6 +4,7 @@ aliases: []
|
|||||||
tags:
|
tags:
|
||||||
- topic/estimating
|
- topic/estimating
|
||||||
- type/philosophy
|
- type/philosophy
|
||||||
|
title: Estimating Detail
|
||||||
---
|
---
|
||||||
# Estimating Detail
|
# Estimating Detail
|
||||||
|
|
||||||
|
|||||||
@@ -6,6 +6,7 @@ tags:
|
|||||||
- topic/organization
|
- topic/organization
|
||||||
- topic/software
|
- topic/software
|
||||||
- type/idea
|
- type/idea
|
||||||
|
title: Estimating Dimensionality
|
||||||
---
|
---
|
||||||
# Estimating Dimensionality
|
# Estimating Dimensionality
|
||||||
|
|
||||||
|
|||||||
@@ -6,6 +6,7 @@ tags:
|
|||||||
- topic/estimating
|
- topic/estimating
|
||||||
- topic/software
|
- topic/software
|
||||||
- type/idea
|
- type/idea
|
||||||
|
title: Estimating Ergonomics
|
||||||
---
|
---
|
||||||
# Estimating Ergonomics
|
# Estimating Ergonomics
|
||||||
|
|
||||||
|
|||||||
@@ -4,6 +4,7 @@ aliases: []
|
|||||||
tags:
|
tags:
|
||||||
- topic/estimating
|
- topic/estimating
|
||||||
- type/philosophy
|
- type/philosophy
|
||||||
|
title: Estimating Methodologies
|
||||||
---
|
---
|
||||||
# Estimating Methodologies
|
# Estimating Methodologies
|
||||||
|
|
||||||
|
|||||||
@@ -4,6 +4,7 @@ aliases: []
|
|||||||
tags:
|
tags:
|
||||||
- topic/estimating
|
- topic/estimating
|
||||||
- type/philosophy
|
- type/philosophy
|
||||||
|
title: Estimating Philosophy
|
||||||
---
|
---
|
||||||
# Estimating Philosophy
|
# Estimating Philosophy
|
||||||
|
|
||||||
|
|||||||
@@ -4,6 +4,7 @@ aliases: []
|
|||||||
tags:
|
tags:
|
||||||
- authorship/other
|
- authorship/other
|
||||||
- occupational
|
- occupational
|
||||||
|
title: ""
|
||||||
---
|
---
|
||||||
## Create a WBS
|
## Create a WBS
|
||||||
|
|
||||||
|
|||||||
@@ -4,6 +4,7 @@ aliases: []
|
|||||||
tags:
|
tags:
|
||||||
- topic/software
|
- topic/software
|
||||||
- type/guide
|
- type/guide
|
||||||
|
title: Excel Macros
|
||||||
---
|
---
|
||||||
# Excel Macros
|
# Excel Macros
|
||||||
|
|
||||||
|
|||||||
@@ -3,6 +3,7 @@ id:
|
|||||||
aliases: []
|
aliases: []
|
||||||
tags:
|
tags:
|
||||||
- destiny/fleeting
|
- destiny/fleeting
|
||||||
|
title: Favorite Quotes
|
||||||
---
|
---
|
||||||
# Favorite Quotes
|
# Favorite Quotes
|
||||||
|
|
||||||
|
|||||||
@@ -6,6 +6,7 @@ tags:
|
|||||||
- occupational
|
- occupational
|
||||||
- topic/automation
|
- topic/automation
|
||||||
- type/guide
|
- type/guide
|
||||||
|
title: Feeder Verification
|
||||||
---
|
---
|
||||||
# Feeder Verification
|
# Feeder Verification
|
||||||
|
|
||||||
|
|||||||
@@ -4,6 +4,7 @@ aliases: []
|
|||||||
tags:
|
tags:
|
||||||
- occupational/systems/feeders
|
- occupational/systems/feeders
|
||||||
- type/guide
|
- type/guide
|
||||||
|
title: Feeders
|
||||||
---
|
---
|
||||||
# Feeders
|
# Feeders
|
||||||
|
|
||||||
|
|||||||
@@ -4,6 +4,7 @@ aliases: []
|
|||||||
tags:
|
tags:
|
||||||
- occupational/systems/fire-alarm
|
- occupational/systems/fire-alarm
|
||||||
- type/guide
|
- type/guide
|
||||||
|
title: Fire Alarm
|
||||||
---
|
---
|
||||||
# Fire Alarm
|
# Fire Alarm
|
||||||
|
|
||||||
|
|||||||
@@ -4,6 +4,7 @@ aliases: []
|
|||||||
tags:
|
tags:
|
||||||
- occupational/systems/fixtures
|
- occupational/systems/fixtures
|
||||||
- type/guide
|
- type/guide
|
||||||
|
title: Fixture Designations
|
||||||
---
|
---
|
||||||
# Fixture Designations
|
# Fixture Designations
|
||||||
|
|
||||||
|
|||||||
@@ -4,6 +4,7 @@ aliases: []
|
|||||||
tags:
|
tags:
|
||||||
- occupational/systems/fixtures
|
- occupational/systems/fixtures
|
||||||
- type/guide
|
- type/guide
|
||||||
|
title: Fixtures
|
||||||
---
|
---
|
||||||
# Fixtures
|
# Fixtures
|
||||||
|
|
||||||
|
|||||||
@@ -7,6 +7,7 @@ tags:
|
|||||||
- occupational
|
- occupational
|
||||||
- status/incomplete
|
- status/incomplete
|
||||||
- type/guide
|
- type/guide
|
||||||
|
title: Full Takeoff
|
||||||
---
|
---
|
||||||
# Full Takeoff
|
# Full Takeoff
|
||||||
|
|
||||||
|
|||||||
@@ -5,6 +5,7 @@ tags:
|
|||||||
- topic/estimating
|
- topic/estimating
|
||||||
- topic/math
|
- topic/math
|
||||||
- type/idea
|
- type/idea
|
||||||
|
title: Functional Estimating
|
||||||
---
|
---
|
||||||
# Functional Estimating
|
# Functional Estimating
|
||||||
|
|
||||||
|
|||||||
@@ -6,6 +6,7 @@ tags:
|
|||||||
- topic/automation
|
- topic/automation
|
||||||
- topic/estimating
|
- topic/estimating
|
||||||
- topic/software
|
- topic/software
|
||||||
|
title: Functional Labor Factoring
|
||||||
---
|
---
|
||||||
# Functional Labor Factoring
|
# Functional Labor Factoring
|
||||||
|
|
||||||
|
|||||||
@@ -6,6 +6,7 @@ tags:
|
|||||||
- topic/automation
|
- topic/automation
|
||||||
- topic/estimating
|
- topic/estimating
|
||||||
- type/idea
|
- type/idea
|
||||||
|
title: Getting Historical Material Pricing
|
||||||
---
|
---
|
||||||
# Getting Historical Material Pricing
|
# Getting Historical Material Pricing
|
||||||
|
|
||||||
|
|||||||
@@ -3,6 +3,7 @@ id:
|
|||||||
aliases: []
|
aliases: []
|
||||||
tags:
|
tags:
|
||||||
- topic/risk
|
- topic/risk
|
||||||
|
title: Gold Plating
|
||||||
---
|
---
|
||||||
# Gold Plating
|
# Gold Plating
|
||||||
|
|
||||||
|
|||||||
@@ -4,6 +4,7 @@ aliases: []
|
|||||||
tags:
|
tags:
|
||||||
- occupational/systems/feeders
|
- occupational/systems/feeders
|
||||||
- type/guide
|
- type/guide
|
||||||
|
title: Grounding
|
||||||
---
|
---
|
||||||
# Grounding
|
# Grounding
|
||||||
|
|
||||||
|
|||||||
@@ -4,6 +4,7 @@ aliases: []
|
|||||||
tags:
|
tags:
|
||||||
- destiny/fleeting
|
- destiny/fleeting
|
||||||
- topic/risk
|
- topic/risk
|
||||||
|
title: Gut Feel
|
||||||
---
|
---
|
||||||
# Gut Feel
|
# Gut Feel
|
||||||
|
|
||||||
|
|||||||
@@ -6,6 +6,7 @@ tags:
|
|||||||
- status/incomplete
|
- status/incomplete
|
||||||
- topic/electrical
|
- topic/electrical
|
||||||
- type/encyclopedia
|
- type/encyclopedia
|
||||||
|
title: HVAC Calculations
|
||||||
---
|
---
|
||||||
# HVAC Calculations
|
# HVAC Calculations
|
||||||
|
|
||||||
|
|||||||
@@ -4,6 +4,7 @@ aliases: []
|
|||||||
tags:
|
tags:
|
||||||
- occupational/systems/electrical
|
- occupational/systems/electrical
|
||||||
- type/guide
|
- type/guide
|
||||||
|
title: Lighting Controls
|
||||||
---
|
---
|
||||||
# Lighting Controls
|
# Lighting Controls
|
||||||
|
|
||||||
|
|||||||
@@ -4,6 +4,7 @@ aliases: []
|
|||||||
tags:
|
tags:
|
||||||
- occupational/systems/lightning-protection
|
- occupational/systems/lightning-protection
|
||||||
- type/guide
|
- type/guide
|
||||||
|
title: Lightning Protection
|
||||||
---
|
---
|
||||||
# Lightning Protection
|
# Lightning Protection
|
||||||
|
|
||||||
|
|||||||
@@ -4,6 +4,7 @@ aliases: []
|
|||||||
tags:
|
tags:
|
||||||
- occupational/systems/low-voltage
|
- occupational/systems/low-voltage
|
||||||
- type/guide
|
- type/guide
|
||||||
|
title: Low Voltage
|
||||||
---
|
---
|
||||||
# Low Voltage
|
# Low Voltage
|
||||||
|
|
||||||
|
|||||||
@@ -4,6 +4,7 @@ aliases: []
|
|||||||
tags:
|
tags:
|
||||||
- occupational
|
- occupational
|
||||||
- type/guide
|
- type/guide
|
||||||
|
title: Material Pricing
|
||||||
---
|
---
|
||||||
# Material Pricing
|
# Material Pricing
|
||||||
|
|
||||||
|
|||||||
@@ -3,6 +3,7 @@ id: me
|
|||||||
aliases: []
|
aliases: []
|
||||||
tags:
|
tags:
|
||||||
- topic/meta
|
- topic/meta
|
||||||
|
title: Me
|
||||||
---
|
---
|
||||||
# Me
|
# Me
|
||||||
|
|
||||||
|
|||||||
@@ -2,10 +2,11 @@
|
|||||||
id: mike-holts-illustrated-guide-to-electrical-estimating
|
id: mike-holts-illustrated-guide-to-electrical-estimating
|
||||||
aliases: []
|
aliases: []
|
||||||
tags:
|
tags:
|
||||||
|
- destiny/uncertain
|
||||||
- topic/electrical
|
- topic/electrical
|
||||||
- topic/estimating
|
- topic/estimating
|
||||||
- destiny/uncertain
|
|
||||||
- type/media-commentary
|
- type/media-commentary
|
||||||
|
title: "_Mike Holt's Illustrated Guide to Electrical Estimating_"
|
||||||
---
|
---
|
||||||
# _Mike Holt's Illustrated Guide to Electrical Estimating_
|
# _Mike Holt's Illustrated Guide to Electrical Estimating_
|
||||||
|
|
||||||
|
|||||||
@@ -4,6 +4,7 @@ aliases: []
|
|||||||
tags:
|
tags:
|
||||||
- occupational/systems
|
- occupational/systems
|
||||||
- type/guide
|
- type/guide
|
||||||
|
title: Misc Budgets
|
||||||
---
|
---
|
||||||
# Misc Budgets
|
# Misc Budgets
|
||||||
|
|
||||||
|
|||||||
@@ -5,12 +5,13 @@ tags:
|
|||||||
- topic/math
|
- topic/math
|
||||||
- topic/risk
|
- topic/risk
|
||||||
- type/encyclopedia
|
- type/encyclopedia
|
||||||
|
title: Monte Carlo Methods
|
||||||
---
|
---
|
||||||
# Monte Carlo Methods
|
# Monte Carlo Methods
|
||||||
|
|
||||||
> [!quote]
|
> [!quote] [Monte Carlo methods](https://en.wikipedia.org/wiki/Monte_Carlo_method)
|
||||||
> [Monte Carlo methods](https://en.wikipedia.org/wiki/Monte_Carlo_method),
|
> Monte Carlo methods or Monte Carlo experiments,
|
||||||
> or Monte Carlo experiments, are a broad class of computational algorithms
|
> are a broad class of computational algorithms
|
||||||
> that rely on repeated random sampling to obtain numerical results.
|
> that rely on repeated random sampling to obtain numerical results.
|
||||||
> The underlying concept is to use randomness to solve problems
|
> The underlying concept is to use randomness to solve problems
|
||||||
> that might be deterministic in principle.
|
> that might be deterministic in principle.
|
||||||
@@ -21,5 +22,6 @@ by randomly sampling points in a known area,
|
|||||||
and estimating the value of pi
|
and estimating the value of pi
|
||||||
by tossing toothpicks onto a ruled surface.
|
by tossing toothpicks onto a ruled surface.
|
||||||
|
|
||||||
[Professor Art Owen](https://artowen.su.domains/) at Stanford University
|
[Professor Art Owen](https://artowen.su.domains/)
|
||||||
|
at Stanford University
|
||||||
has several excellent resources on the subject.
|
has several excellent resources on the subject.
|
||||||
|
|||||||
@@ -4,6 +4,7 @@ aliases: []
|
|||||||
tags:
|
tags:
|
||||||
- authorship/other
|
- authorship/other
|
||||||
- occupational
|
- occupational
|
||||||
|
title: NEW HIRE - ESTIMATOR
|
||||||
---
|
---
|
||||||
# NEW HIRE - ESTIMATOR
|
# NEW HIRE - ESTIMATOR
|
||||||
|
|
||||||
|
|||||||
@@ -8,6 +8,7 @@ tags:
|
|||||||
- status/incomplete
|
- status/incomplete
|
||||||
- topic/electrical
|
- topic/electrical
|
||||||
- type/encyclopedia
|
- type/encyclopedia
|
||||||
|
title: Article 110 Requirements for Electrical Installations
|
||||||
---
|
---
|
||||||
# Article 110 Requirements for Electrical Installations
|
# Article 110 Requirements for Electrical Installations
|
||||||
|
|
||||||
|
|||||||
@@ -8,6 +8,7 @@ tags:
|
|||||||
- status/incomplete
|
- status/incomplete
|
||||||
- topic/electrical
|
- topic/electrical
|
||||||
- type/encyclopedia
|
- type/encyclopedia
|
||||||
|
title: NEC Article 210 Branch Circuits
|
||||||
---
|
---
|
||||||
# NEC Article 210 Branch Circuits
|
# NEC Article 210 Branch Circuits
|
||||||
|
|
||||||
|
|||||||
@@ -8,6 +8,7 @@ tags:
|
|||||||
- status/incomplete
|
- status/incomplete
|
||||||
- topic/electrical
|
- topic/electrical
|
||||||
- type/encyclopedia
|
- type/encyclopedia
|
||||||
|
title: Article 215 Feeders
|
||||||
---
|
---
|
||||||
# Article 215 Feeders
|
# Article 215 Feeders
|
||||||
|
|
||||||
@@ -29,12 +30,12 @@ Feeder conductors shall have an ampacity
|
|||||||
not less than the larger of 215.2(A)(1)(a) or (A)(1)(b)
|
not less than the larger of 215.2(A)(1)(a) or (A)(1)(b)
|
||||||
and shall comply with 110.14(C).
|
and shall comply with 110.14(C).
|
||||||
|
|
||||||
- (a) Where a feeder supplies continuous loads
|
* (a) Where a feeder supplies continuous loads
|
||||||
or any combination of continuous and noncontinuous loads,
|
or any combination of continuous and noncontinuous loads,
|
||||||
the minimum feeder conductor size shall have an ampacity
|
the minimum feeder conductor size shall have an ampacity
|
||||||
not less than the noncontinuous load plus 125 percent of the continuous load.
|
not less than the noncontinuous load plus 125 percent of the continuous load.
|
||||||
|
|
||||||
- (b) The minimum feeder conductor size
|
* (b) The minimum feeder conductor size
|
||||||
shall have an ampacity not less than the maximum load to be served
|
shall have an ampacity not less than the maximum load to be served
|
||||||
after the application of any adjustment or correction factors
|
after the application of any adjustment or correction factors
|
||||||
in accordance with
|
in accordance with
|
||||||
|
|||||||
@@ -8,6 +8,7 @@ tags:
|
|||||||
- status/incomplete
|
- status/incomplete
|
||||||
- topic/electrical
|
- topic/electrical
|
||||||
- type/encyclopedia
|
- type/encyclopedia
|
||||||
|
title: Article 220 Branch-Circuit, Feeder, and Service Load Calculations
|
||||||
---
|
---
|
||||||
# Article 220 Branch-Circuit, Feeder, and Service Load Calculations
|
# Article 220 Branch-Circuit, Feeder, and Service Load Calculations
|
||||||
|
|
||||||
@@ -87,8 +88,8 @@ for each required branch circuit specified in 600.5(A).
|
|||||||
Show windows shall be calculated
|
Show windows shall be calculated
|
||||||
in accordance with either of the following:
|
in accordance with either of the following:
|
||||||
|
|
||||||
- (1) The unit load per outlet as required in other provisions of this section
|
* (1) The unit load per outlet as required in other provisions of this section
|
||||||
- (2) At 200 volt-amperes per linear 300 mm (1 ft) of show window
|
* (2) At 200 volt-amperes per linear 300 mm (1 ft) of show window
|
||||||
|
|
||||||
#### 220.14(H) Fixed Multioutlet Assemblies.
|
#### 220.14(H) Fixed Multioutlet Assemblies.
|
||||||
|
|
||||||
@@ -99,12 +100,12 @@ For the purposes of this section,
|
|||||||
the calculation shall be permitted
|
the calculation shall be permitted
|
||||||
to be based on the portion that contains receptacle outlets.
|
to be based on the portion that contains receptacle outlets.
|
||||||
|
|
||||||
- (1) Where appliances are unlikely to be used simultaneously,
|
* (1) Where appliances are unlikely to be used simultaneously,
|
||||||
each 1.5 m (5 ft) or fraction thereof
|
each 1.5 m (5 ft) or fraction thereof
|
||||||
of each separate and continuous length
|
of each separate and continuous length
|
||||||
shall be considered as one outlet of not less than 180 volt-amperes.
|
shall be considered as one outlet of not less than 180 volt-amperes.
|
||||||
|
|
||||||
- (2) Where appliances are likely to be used simultaneously,
|
* (2) Where appliances are likely to be used simultaneously,
|
||||||
each 300 mm (1 ft) or fraction thereof
|
each 300 mm (1 ft) or fraction thereof
|
||||||
shall be considered as an outlet of not less than 180 volt-amperes.
|
shall be considered as an outlet of not less than 180 volt-amperes.
|
||||||
|
|
||||||
@@ -132,19 +133,19 @@ and the floor area as determined in 220.11 for dwelling occupancies.
|
|||||||
Motors rated less than 1⁄8 hp and connected to a lighting circuit
|
Motors rated less than 1⁄8 hp and connected to a lighting circuit
|
||||||
shall be considered part of the minimum lighting load.
|
shall be considered part of the minimum lighting load.
|
||||||
|
|
||||||
- (1) All general-use receptacle outlets of 20-ampere rating or less,
|
* (1) All general-use receptacle outlets of 20-ampere rating or less,
|
||||||
including receptacles connected to the circuits in 210.11(C)(3) and 210.11(C)(4)
|
including receptacles connected to the circuits in 210.11(C)(3) and 210.11(C)(4)
|
||||||
- (2) The receptacle outlets specified in 210.52(E) and (G)
|
* (2) The receptacle outlets specified in 210.52(E) and (G)
|
||||||
- (3) The lighting outlets specified in 210.70
|
* (3) The lighting outlets specified in 210.70
|
||||||
|
|
||||||
#### 220.14(K) Office Buildings.
|
#### 220.14(K) Office Buildings.
|
||||||
|
|
||||||
In office buildings, the receptacle loads
|
In office buildings, the receptacle loads
|
||||||
shall be calculated to be the larger of (1) or (2):
|
shall be calculated to be the larger of (1) or (2):
|
||||||
|
|
||||||
- (1) The calculated load from 220.14(I)
|
* (1) The calculated load from 220.14(I)
|
||||||
after all demand factors have been applied
|
after all demand factors have been applied
|
||||||
- (2) 11 volt-amperes/m$^2$ or 1 volt-ampere/ft$^2$
|
* (2) 11 volt-amperes/m$^2$ or 1 volt-ampere/ft$^2$
|
||||||
|
|
||||||
#### 220.14(L) Other Outlets.
|
#### 220.14(L) Other Outlets.
|
||||||
|
|
||||||
|
|||||||
@@ -8,6 +8,7 @@ tags:
|
|||||||
- status/incomplete
|
- status/incomplete
|
||||||
- topic/electrical
|
- topic/electrical
|
||||||
- type/encyclopedia
|
- type/encyclopedia
|
||||||
|
title: Article 310 Conductors for General Wiring
|
||||||
---
|
---
|
||||||
# Article 310 Conductors for General Wiring
|
# Article 310 Conductors for General Wiring
|
||||||
|
|
||||||
|
|||||||
@@ -8,6 +8,7 @@ tags:
|
|||||||
- status/incomplete
|
- status/incomplete
|
||||||
- topic/electrical
|
- topic/electrical
|
||||||
- type/encyclopedia
|
- type/encyclopedia
|
||||||
|
title: Article 314 Outlet, Device, Pull, and Junction Boxes; Conduit Bodies; Fittings; and Handhole Enclosures
|
||||||
---
|
---
|
||||||
# Article 314 Outlet, Device, Pull, and Junction Boxes; Conduit Bodies; Fittings; and Handhole Enclosures
|
# Article 314 Outlet, Device, Pull, and Junction Boxes; Conduit Bodies; Fittings; and Handhole Enclosures
|
||||||
|
|
||||||
|
|||||||
@@ -8,6 +8,7 @@ tags:
|
|||||||
- status/incomplete
|
- status/incomplete
|
||||||
- topic/electrical
|
- topic/electrical
|
||||||
- type/encyclopedia
|
- type/encyclopedia
|
||||||
|
title: Article 430 Motors, Motor Circuits, and Controllers
|
||||||
---
|
---
|
||||||
# Article 430 Motors, Motor Circuits, and Controllers
|
# Article 430 Motors, Motor Circuits, and Controllers
|
||||||
|
|
||||||
|
|||||||
@@ -8,6 +8,7 @@ tags:
|
|||||||
- status/incomplete
|
- status/incomplete
|
||||||
- topic/electrical
|
- topic/electrical
|
||||||
- type/encyclopedia
|
- type/encyclopedia
|
||||||
|
title: Article 450 Transformers and Transformer Vaults (Including Secondary Ties)
|
||||||
---
|
---
|
||||||
# Article 450 Transformers and Transformer Vaults (Including Secondary Ties)
|
# Article 450 Transformers and Transformer Vaults (Including Secondary Ties)
|
||||||
|
|
||||||
|
|||||||
@@ -3,6 +3,7 @@ id:
|
|||||||
aliases: []
|
aliases: []
|
||||||
tags:
|
tags:
|
||||||
- topic/estimating
|
- topic/estimating
|
||||||
|
title: Open Problems in Estimating
|
||||||
---
|
---
|
||||||
# Open Problems in Estimating
|
# Open Problems in Estimating
|
||||||
|
|
||||||
|
|||||||
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user