vault backup: 2025-11-07 12:48:54

This commit is contained in:
2025-11-07 12:48:54 -05:00
parent 277e2e5dab
commit 618cf9dcc2
5 changed files with 123 additions and 35 deletions
+56 -23
View File
@@ -1264,20 +1264,20 @@
"isCountable": true,
"targetNodeType": "file",
"noteCount": 1,
"wordCount": 56,
"wordCount": 52,
"wordCountTowardGoal": 0,
"wordGoal": null,
"pageCount": 0.18666666666666668,
"characterCount": 451,
"nonWhitespaceCharacterCount": 371,
"pageCount": 0.17333333333333334,
"characterCount": 410,
"nonWhitespaceCharacterCount": 336,
"newlineCount": 19,
"readingTimeInMinutes": 0.21132075471698114,
"readingTimeInMinutes": 0.19622641509433963,
"linkCount": 0,
"embedCount": 0,
"aliases": [],
"createdDate": 1756122472513,
"modifiedDate": 1762285919400,
"sizeInBytes": 616,
"modifiedDate": 1762530176927,
"sizeInBytes": 575,
"sessionStart": {
"noteCount": 1,
"pageCount": 0.18666666666666668,
@@ -3206,16 +3206,16 @@
"wordCountTowardGoal": 0,
"wordGoal": null,
"pageCount": 0.7666666666666667,
"characterCount": 1954,
"nonWhitespaceCharacterCount": 1578,
"newlineCount": 75,
"characterCount": 1956,
"nonWhitespaceCharacterCount": 1572,
"newlineCount": 78,
"readingTimeInMinutes": 0.8679245283018868,
"linkCount": 0,
"embedCount": 0,
"aliases": [],
"createdDate": 1756122472490,
"modifiedDate": 1762280107978,
"sizeInBytes": 2106,
"modifiedDate": 1762536494105,
"sizeInBytes": 2108,
"sessionStart": {
"noteCount": 1,
"pageCount": 0.7666666666666667,
@@ -5324,20 +5324,20 @@
"isCountable": true,
"targetNodeType": "file",
"noteCount": 1,
"wordCount": 287,
"wordCount": 329,
"wordCountTowardGoal": 0,
"wordGoal": null,
"pageCount": 0.9566666666666667,
"characterCount": 2185,
"nonWhitespaceCharacterCount": 1818,
"newlineCount": 86,
"readingTimeInMinutes": 1.0830188679245283,
"pageCount": 1.0966666666666667,
"characterCount": 2464,
"nonWhitespaceCharacterCount": 2039,
"newlineCount": 96,
"readingTimeInMinutes": 1.241509433962264,
"linkCount": 0,
"embedCount": 0,
"aliases": [],
"createdDate": 1761322071772,
"modifiedDate": 1762467515006,
"sizeInBytes": 2658,
"modifiedDate": 1762522372843,
"sizeInBytes": 2937,
"sessionStart": {
"noteCount": 1,
"pageCount": 0.9566666666666667,
@@ -6295,7 +6295,7 @@
"wordCountTowardGoal": 0,
"wordGoal": null,
"pageCount": 1.3166666666666667,
"characterCount": 2422,
"characterCount": 2357,
"nonWhitespaceCharacterCount": 1933,
"newlineCount": 66,
"readingTimeInMinutes": 1.490566037735849,
@@ -6303,8 +6303,8 @@
"embedCount": 0,
"aliases": [],
"createdDate": 1762521515504,
"modifiedDate": 1762521515504,
"sizeInBytes": 2503,
"modifiedDate": 1762537280196,
"sizeInBytes": 2433,
"sessionStart": {
"noteCount": 0,
"pageCount": 0,
@@ -6319,6 +6319,39 @@
"tags": [],
"title": "2025-11-06 18:12 -- Bad Bid Practice"
}
},
"converting-documents-to-markdown.md": {
"isCountable": true,
"targetNodeType": "file",
"noteCount": 1,
"wordCount": 61,
"wordCountTowardGoal": 0,
"wordGoal": null,
"pageCount": 0.20333333333333334,
"characterCount": 707,
"nonWhitespaceCharacterCount": 567,
"newlineCount": 37,
"readingTimeInMinutes": 0.23018867924528302,
"linkCount": 1,
"embedCount": 0,
"aliases": [],
"createdDate": 1762523226134,
"modifiedDate": 1762524345432,
"sizeInBytes": 783,
"sessionStart": {
"noteCount": 0,
"pageCount": 0,
"wordCount": 0,
"characterCount": 0,
"nonWhitespaceCharacterCount": 0,
"newlineCount": 0
},
"frontmatter": {
"id": null,
"aliases": [],
"tags": [],
"title": "Converting Documents to Markdown"
}
}
}
}
+16 -6
View File
@@ -16,14 +16,24 @@ title: Construction Methods
TYPICAL EIFS ON
CFMF ASSEMBLY
* EIFS -- EXTERIOR INSULATION FINISHING SYSTEM
FCB ON CFMF
FCB ON WD
EIFS ON WD
EIFS ON CIP CONC
* ACP -- ACOUSTICAL CEILING PANEL
* ACT -- ACOUSTICAL CEILING TILE
* AWB -- AIR AND WEATHER BARRIER
* CFMF -- COLD-FORMED METAL FRAMING
* CMU -- CONCRETE MASONRY UNIT
* CT -- CERAMIC TILE
* CIP CONC -- CAST IN PLACE CONCRETE
* EIFS -- EXTERIOR INSULATION FINISHING SYSTEM
* FCP -- FIBER CEMENT PANEL
* FCS -- FIBER CEMENT SIDING (LAP)
* GWB, GYP BD -- GYPSUM WALLBOARD
FCP -- FIBER CEMENT PANEL
FCS -- FIBER CEMENT SIDING (LAP)
RI -- RIGID INSULATION
* MDF -- MEDIUM-DENSITY FIBERBOARD
* RI -- RIGID INSULATION
%%
+42
View File
@@ -0,0 +1,42 @@
---
id:
aliases: []
tags: []
title: Converting Documents to Markdown
---
# Converting Documents to Markdown
```powershell
param(
[string]$Path
)
$content = Get-Content -Path $Path
$newContent = $content
$newContent -replace "foos", "ball"
$newContent -replace "foo", "bar"
# ...
Set-Content -Path $Path -Value $newContent
```
## Converting NFPA Code
```powershell
# "210.17(B)(3)" -> h5
$newContent -replace '^(\d{3}\.\d+\([A-Z]\)\(\d\) .+)$', '\n##### $1\n'
# "210.17(B)" -> h4
$newContent -replace '^(\d{3}\.\d+\([A-Z]\) .+)$', '\n#### $1\n'
# "210.17" -> h3
$newContent -replace '^(\d{3}\.\d+ .+)$', '\n### $1\n'
# "(1)" -> "1."
$newContent -replace '^\((\d)\)', '$1\.'
```
## Semantic Line Breaks
[[semantic-line-breaks]]
+7 -4
View File
@@ -46,6 +46,7 @@ In each Typical:
* `BidItem` = "1 - Site"
* Takeoff: `ITEM DATABASE`/`TEMPORARY POWER`/`TEMPORARY POWER - ... SERVICE`
* **Count** = 1
### Temp Lighting (Building)
@@ -54,12 +55,14 @@ In each Typical:
* `System` = "TPD - Temp Power Distribution (Gag. & Bldg.)"
* `BidItem` = "3 - Building"
Garden Styles:
* Takeoff: `ITEM DATABASE`/`TEMPORARY POWER`/`TEMPORARY POWER - T POLE (EACH)`
`ITEM DATABASE`/`TEMPORARY POWER`/...
_Garden Style:_
* Takeoff: .../`TEMPORARY POWER - T POLE (EACH)`
* **Count** = 1 per 150ft per building
All others:
* Takeoff: `ITEM DATABASE`/`TEMPORARY POWER`/`* - TEMPORARY LIGHTING / PWR PNL (PER BLDG AREA SFT)`
_All others:_
* Takeoff: .../`* - TEMPORARY LIGHTING / PWR PNL (PER BLDG AREA SFT)`
* **Count** = Building GSF = Total GSF - Garage GSF
### Temp Lighting (Garage)
+2 -2
View File
@@ -15,8 +15,8 @@ Provide sleeves for all conduits passing through floors.
`ITEM DATABASE`/`HILTI`/`CAST-IN DEVICE CP 680-...`
* _Slab Deck:_ P (Plastic - Combustible)
* _Wood Frame:_ M (Metal - Non-Combustible)
* _Plastic Conduit:_ P
* _Metal Conduit:_ M
> [!important]
> The term "sleeve" may refer to