vault backup: 2026-01-16 17:27:01
This commit is contained in:
Vendored
+1
-15
@@ -14,20 +14,6 @@
|
||||
"rgb": 14701138
|
||||
}
|
||||
},
|
||||
{
|
||||
"query": "tag:#topic/estimating ",
|
||||
"color": {
|
||||
"a": 1,
|
||||
"rgb": 14725458
|
||||
}
|
||||
},
|
||||
{
|
||||
"query": "tag:#topic/construction/electrical ",
|
||||
"color": {
|
||||
"a": 1,
|
||||
"rgb": 5431378
|
||||
}
|
||||
},
|
||||
{
|
||||
"query": "tag:#topic/construction ",
|
||||
"color": {
|
||||
@@ -60,6 +46,6 @@
|
||||
"repelStrength": 20,
|
||||
"linkStrength": 1,
|
||||
"linkDistance": 307,
|
||||
"scale": 0.15376893622574136,
|
||||
"scale": 0.1845485538360368,
|
||||
"close": false
|
||||
}
|
||||
Vendored
+1
-2
File diff suppressed because one or more lines are too long
+2
-2
@@ -1,8 +1,8 @@
|
||||
{
|
||||
"id": "homepage",
|
||||
"name": "Homepage",
|
||||
"version": "4.2.2",
|
||||
"minAppVersion": "1.4.10",
|
||||
"version": "4.3.1",
|
||||
"minAppVersion": "1.11.0",
|
||||
"description": "Open a specified note, canvas, base, or workspace on startup, or set it for quick access later.",
|
||||
"author": "novov",
|
||||
"authorUrl": "https://novov.me",
|
||||
|
||||
+7
-20
@@ -1,15 +1,3 @@
|
||||
.nv-homepage-interstitial {
|
||||
position: absolute;
|
||||
left: 0;
|
||||
top: 0;
|
||||
width: 100vw;
|
||||
height: 100vh;
|
||||
background: var(--background-primary);
|
||||
z-index: 9999;
|
||||
animation: 0.02s ease-in 0.5s forwards nv-interstitial-destroy;
|
||||
pointer-events: none;
|
||||
}
|
||||
|
||||
@keyframes nv-interstitial-destroy {
|
||||
from { opacity: 1; }
|
||||
to { opacity: 0; }
|
||||
@@ -22,11 +10,10 @@
|
||||
|
||||
#nv-main-setting {
|
||||
flex-wrap: wrap;
|
||||
margin-bottom: 30px;
|
||||
}
|
||||
|
||||
#nv-main-setting .setting-item-control {
|
||||
padding-top: var(--size-4-2);
|
||||
padding-top: var(--size-4-1);
|
||||
flex-basis: 100%;
|
||||
align-items: stretch;
|
||||
}
|
||||
@@ -86,7 +73,7 @@
|
||||
margin-left: var(--size-2-2);
|
||||
}
|
||||
|
||||
.nv-mobile-setting {
|
||||
.nv-mobile-setting, .nv-command-setting {
|
||||
flex-wrap: wrap;
|
||||
row-gap: var(--size-2-2);
|
||||
}
|
||||
@@ -98,21 +85,20 @@
|
||||
}
|
||||
|
||||
.nv-command-desc {
|
||||
padding: 1.2em 0 0;
|
||||
border-top: 1px solid var(--background-modifier-border);
|
||||
padding: 0;
|
||||
}
|
||||
|
||||
.nv-command-box {
|
||||
margin: 1em 0 1.75em;
|
||||
margin: 1em 0 0;
|
||||
display: flex;
|
||||
flex-wrap: wrap;
|
||||
gap: 12px;
|
||||
align-items: center;
|
||||
width: 100%;
|
||||
}
|
||||
|
||||
.nv-command-pill {
|
||||
background-color: var(--background-secondary);
|
||||
border: 1px solid var(--background-modifier-border-hover);
|
||||
background-color: var(--background-modifier-hover);
|
||||
border-radius: var(--radius-s);
|
||||
font-size: var(--font-ui-small);
|
||||
padding: var(--size-2-1) var(--size-2-2) var(--size-2-1) var(--size-2-3) ;
|
||||
@@ -150,6 +136,7 @@
|
||||
.nv-command-pill > .svg-icon, .nv-command-pill button .svg-icon {
|
||||
height: 1em;
|
||||
width: 1em;
|
||||
opacity: 1;
|
||||
}
|
||||
|
||||
.nv-command-pill > .svg-icon {
|
||||
|
||||
+28
-14
@@ -54,7 +54,7 @@ var DebugHelper = class {
|
||||
return () => {
|
||||
};
|
||||
}
|
||||
var qualifiedName = `novel-word-count|${name} (${++this.idCounter})`;
|
||||
const qualifiedName = `novel-word-count|${name} (${++this.idCounter})`;
|
||||
console.time(qualifiedName);
|
||||
return () => console.timeEnd(qualifiedName);
|
||||
}
|
||||
@@ -1958,7 +1958,7 @@ var NovelWordCountPlugin = class extends import_obsidian5.Plugin {
|
||||
await this.updateDisplayedCounts();
|
||||
} catch (err) {
|
||||
this.debugHelper.debug("Error while updating displayed counts");
|
||||
this.debugHelper.error(err);
|
||||
this.debugHelper.debug(err);
|
||||
setTimeout(() => {
|
||||
this.initialize(false);
|
||||
}, 1e3);
|
||||
@@ -1981,19 +1981,31 @@ var NovelWordCountPlugin = class extends import_obsidian5.Plugin {
|
||||
this.debugHelper.debug("File explorer leaf not found; skipping update.");
|
||||
return;
|
||||
}
|
||||
this.setContainerClass(fileExplorerLeaf);
|
||||
const vaultCount = this.fileHelper.getCachedDataForPath(
|
||||
this.savedData.cachedCounts,
|
||||
"/"
|
||||
);
|
||||
document.documentElement.style.setProperty("--novel-word-count-opacity", `${this.settings.labelOpacity}`);
|
||||
const drawers = [this.app.workspace.leftSplit, this.app.workspace.rightSplit];
|
||||
let hasMobileDrawer = false;
|
||||
for (const drawer of drawers) {
|
||||
this.setContainerClass(drawer.containerEl);
|
||||
if (!(drawer == null ? void 0 : drawer.fileCountEl)) {
|
||||
continue;
|
||||
}
|
||||
drawer.fileCountEl.setAttribute(
|
||||
"data-novel-word-count-plugin",
|
||||
this.nodeLabelHelper.getNodeLabel(vaultCount)
|
||||
);
|
||||
hasMobileDrawer = true;
|
||||
}
|
||||
const fileExplorerView = fileExplorerLeaf.view;
|
||||
const fileItems = fileExplorerView.fileItems;
|
||||
if ((_a = fileExplorerView == null ? void 0 : fileExplorerView.headerDom) == null ? void 0 : _a.navButtonsEl) {
|
||||
const counts = this.fileHelper.getCachedDataForPath(
|
||||
this.savedData.cachedCounts,
|
||||
"/"
|
||||
);
|
||||
if (!hasMobileDrawer && ((_a = fileExplorerView == null ? void 0 : fileExplorerView.headerDom) == null ? void 0 : _a.navButtonsEl)) {
|
||||
fileExplorerView.headerDom.navButtonsEl.setAttribute(
|
||||
"data-novel-word-count-plugin",
|
||||
this.nodeLabelHelper.getNodeLabel(counts)
|
||||
this.nodeLabelHelper.getNodeLabel(vaultCount)
|
||||
);
|
||||
document.documentElement.style.setProperty("--novel-word-count-opacity", `${this.settings.labelOpacity}`);
|
||||
}
|
||||
if (file) {
|
||||
const relevantItems = Object.keys(fileItems).filter(
|
||||
@@ -2030,7 +2042,7 @@ var NovelWordCountPlugin = class extends import_obsidian5.Plugin {
|
||||
async getFileExplorerLeaf() {
|
||||
return new Promise((resolve, reject) => {
|
||||
let foundLeaf = null;
|
||||
this.app.workspace.iterateAllLeaves((leaf) => {
|
||||
this.app.workspace.getLeavesOfType("file-explorer").forEach((leaf) => {
|
||||
if (foundLeaf) {
|
||||
return;
|
||||
}
|
||||
@@ -2046,8 +2058,11 @@ var NovelWordCountPlugin = class extends import_obsidian5.Plugin {
|
||||
}
|
||||
});
|
||||
}
|
||||
setContainerClass(leaf) {
|
||||
const container = leaf.view.containerEl;
|
||||
setContainerClass(container) {
|
||||
if (!container) {
|
||||
this.debugHelper.debug("No container was passed to setContainerClass");
|
||||
return;
|
||||
}
|
||||
container.toggleClass(`novel-word-count--active`, true);
|
||||
const notePrefix = `novel-word-count--note-`;
|
||||
const folderPrefix = `novel-word-count--folder-`;
|
||||
@@ -2061,5 +2076,4 @@ var NovelWordCountPlugin = class extends import_obsidian5.Plugin {
|
||||
}
|
||||
};
|
||||
|
||||
|
||||
/* nosourcemap */
|
||||
+1
-1
@@ -1,7 +1,7 @@
|
||||
{
|
||||
"id": "novel-word-count",
|
||||
"name": "Novel word count",
|
||||
"version": "4.6.0",
|
||||
"version": "4.6.1",
|
||||
"minAppVersion": "0.13.31",
|
||||
"description": "Displays a word count (and more!) for each file, folder and vault in the File Explorer pane.",
|
||||
"author": "Isaac Lyman",
|
||||
|
||||
+45
-56
@@ -1,7 +1,18 @@
|
||||
.novel-word-count--active .nav-header .nav-buttons-container {
|
||||
flex-wrap: wrap !important;
|
||||
.novel-word-count--active .workspace-drawer-header-info div[data-novel-word-count-plugin]::after {
|
||||
content: attr(data-novel-word-count-plugin);
|
||||
display: block;
|
||||
font-size: 0.8em;
|
||||
min-width: 0;
|
||||
opacity: var(--novel-word-count-opacity);
|
||||
overflow: hidden;
|
||||
padding: 2px 0 0 0;
|
||||
position: relative;
|
||||
text-align: left;
|
||||
text-overflow: ellipsis;
|
||||
white-space: nowrap;
|
||||
width: 100%;
|
||||
}
|
||||
.novel-word-count--active .nav-header .nav-buttons-container::after {
|
||||
.novel-word-count--active .nav-buttons-container[data-novel-word-count-plugin]::after {
|
||||
content: attr(data-novel-word-count-plugin);
|
||||
display: block;
|
||||
font-size: 0.8em;
|
||||
@@ -16,58 +27,12 @@
|
||||
white-space: nowrap;
|
||||
width: 100%;
|
||||
}
|
||||
|
||||
.novel-word-count--active .nav-files-container .nav-file-title {
|
||||
align-items: baseline;
|
||||
unicode-bidi: isolate;
|
||||
}
|
||||
.novel-word-count--active .nav-files-container .nav-file-title::after {
|
||||
content: attr(data-novel-word-count-plugin);
|
||||
flex: 1 0 auto;
|
||||
font-size: 0.8em;
|
||||
max-width: calc(100% - 20px);
|
||||
min-width: 0;
|
||||
opacity: var(--novel-word-count-opacity);
|
||||
order: 1;
|
||||
overflow: hidden;
|
||||
padding: 0 4px;
|
||||
position: relative;
|
||||
text-overflow: ellipsis;
|
||||
white-space: nowrap;
|
||||
unicode-bidi: isolate;
|
||||
direction: ltr;
|
||||
}
|
||||
.novel-word-count--active .nav-files-container .nav-file-title-content {
|
||||
min-width: 20px;
|
||||
unicode-bidi: isolate;
|
||||
}
|
||||
.novel-word-count--note-right .nav-files-container .nav-file-title-content {
|
||||
flex: 1 1 0;
|
||||
}
|
||||
.novel-word-count--note-right .nav-files-container .nav-file-title::after {
|
||||
flex: none;
|
||||
order: 6;
|
||||
overflow: hidden;
|
||||
}
|
||||
.novel-word-count--note-below .nav-files-container .nav-file-title {
|
||||
flex-wrap: wrap;
|
||||
}
|
||||
.novel-word-count--note-below .nav-files-container .nav-file-title-content {
|
||||
flex: 100%;
|
||||
}
|
||||
.novel-word-count--note-below .nav-files-container .nav-file-title::after {
|
||||
display: inline-block;
|
||||
margin-top: -2px;
|
||||
max-width: 100%;
|
||||
overflow: hidden;
|
||||
padding: 0;
|
||||
text-overflow: ellipsis;
|
||||
white-space: nowrap;
|
||||
}
|
||||
.novel-word-count--active .nav-files-container .nav-file-title,
|
||||
.novel-word-count--active .nav-files-container .nav-folder-title {
|
||||
align-items: baseline;
|
||||
unicode-bidi: isolate;
|
||||
}
|
||||
.novel-word-count--active .nav-files-container .nav-file-title::after,
|
||||
.novel-word-count--active .nav-files-container .nav-folder-title::after {
|
||||
content: attr(data-novel-word-count-plugin);
|
||||
flex: 1 0 auto;
|
||||
@@ -84,25 +49,49 @@
|
||||
unicode-bidi: isolate;
|
||||
direction: ltr;
|
||||
}
|
||||
.novel-word-count--active .nav-files-container .nav-file-title-content,
|
||||
.novel-word-count--active .nav-files-container .nav-folder-title-content {
|
||||
min-width: 20px;
|
||||
unicode-bidi: isolate;
|
||||
}
|
||||
.novel-word-count--folder-right .nav-files-container .nav-folder-title-content {
|
||||
.novel-word-count--active.novel-word-count--note-right .nav-files-container .nav-file-title-content {
|
||||
flex: 1 1 0;
|
||||
}
|
||||
.novel-word-count--folder-right .nav-files-container .nav-folder-title::after {
|
||||
.novel-word-count--active.novel-word-count--note-right .nav-files-container .nav-file-title:after {
|
||||
flex: none;
|
||||
order: 6;
|
||||
overflow: hidden;
|
||||
}
|
||||
.novel-word-count--folder-below .nav-files-container .nav-folder-title {
|
||||
.novel-word-count--active.novel-word-count--note-below .nav-files-container .nav-file-title {
|
||||
flex-wrap: wrap;
|
||||
}
|
||||
.novel-word-count--folder-below .nav-files-container .nav-folder-title-content {
|
||||
.novel-word-count--active.novel-word-count--note-below .nav-files-container .nav-file-title-content {
|
||||
flex: 100%;
|
||||
}
|
||||
.novel-word-count--folder-below .nav-files-container .nav-folder-title::after {
|
||||
.novel-word-count--active.novel-word-count--note-below .nav-files-container .nav-file-title::after {
|
||||
display: inline-block;
|
||||
margin-top: -2px;
|
||||
max-width: 100%;
|
||||
overflow: hidden;
|
||||
padding: 0;
|
||||
text-overflow: ellipsis;
|
||||
white-space: nowrap;
|
||||
}
|
||||
.novel-word-count--active.novel-word-count--folder-right .nav-files-container .nav-folder-title-content {
|
||||
flex: 1 1 0;
|
||||
}
|
||||
.novel-word-count--active.novel-word-count--folder-right .nav-files-container .nav-folder-title::after {
|
||||
flex: none;
|
||||
order: 6;
|
||||
overflow: hidden;
|
||||
}
|
||||
.novel-word-count--active.novel-word-count--folder-below .nav-files-container .nav-folder-title {
|
||||
flex-wrap: wrap;
|
||||
}
|
||||
.novel-word-count--active.novel-word-count--folder-below .nav-files-container .nav-folder-title-content {
|
||||
flex: 100%;
|
||||
}
|
||||
.novel-word-count--active.novel-word-count--folder-below .nav-files-container .nav-folder-title::after {
|
||||
display: inline-block;
|
||||
margin-top: -2px;
|
||||
max-width: 100%;
|
||||
|
||||
+1
-1
@@ -123,7 +123,7 @@
|
||||
"mdBorderColor": "Black",
|
||||
"mdCSS": "",
|
||||
"scriptEngineSettings": {},
|
||||
"previousRelease": "2.19.0",
|
||||
"previousRelease": "2.19.1",
|
||||
"showReleaseNotes": true,
|
||||
"compareManifestToPluginVersion": true,
|
||||
"showNewVersionNotification": false,
|
||||
|
||||
+2
-2
File diff suppressed because one or more lines are too long
@@ -1,7 +1,7 @@
|
||||
{
|
||||
"id": "obsidian-excalidraw-plugin",
|
||||
"name": "Excalidraw",
|
||||
"version": "2.19.0",
|
||||
"version": "2.19.1",
|
||||
"minAppVersion": "1.5.7",
|
||||
"description": "Sketch Your Mind. An Obsidian plugin to edit and view Excalidraw drawings. Enter the world of 4D Visual PKM.",
|
||||
"author": "Zsolt Viczian",
|
||||
|
||||
+1
-1
@@ -19,7 +19,7 @@ tags:
|
||||
#topic/meta
|
||||
|
||||
I definitively think my new approach
|
||||
of putting nascent ideas in daily notes
|
||||
of putting nascent ideas in [[daily-notes|daily notes]]
|
||||
rather than separate fleeting notes
|
||||
is superior.
|
||||
|
||||
|
||||
+2
-1
@@ -115,7 +115,8 @@ We have no bonding assemblies with bare wire.
|
||||
Therefore it must be assumed that it was determined
|
||||
that it would be acceptable to represent bare wire bonding with insulated wire items,
|
||||
because otherwise it would be necessary to have double the assemblies,
|
||||
or to ec
|
||||
or to expect estimators to substitute each size of wire
|
||||
everywhere bare was necessary.
|
||||
|
||||
## 2026-01-07 16:03
|
||||
|
||||
|
||||
+1
-1
@@ -18,7 +18,7 @@ tags:
|
||||
|
||||
#### Lighting Control
|
||||
|
||||
I took of lighting per plans (E510)
|
||||
I took off lighting per plans (E510)
|
||||
in spite of proposal stating "local control".
|
||||
Will have to be changed.
|
||||
|
||||
|
||||
+2
-2
@@ -57,8 +57,8 @@ it is not cost-effective[^1] to allow it to take four.[^2]
|
||||
with confidence estimates uncorrupted by [[estimating-culture#Incentives|perverse incentives]],
|
||||
they may have reasonable basis to set sliding standards for estimate precision
|
||||
to be specifically determined at consideration of the opportunity for bid
|
||||
according to current climate (i.e. their risk appetite).
|
||||
I believe my use of the absolute is still fair.
|
||||
according to current climate (i.e. their transient risk appetite).
|
||||
I believe my use of the absolute is still fair:
|
||||
No contractor is doing that, so they lack a competent measure of risk tolerance
|
||||
besides continuing to tolerate what they have historically.
|
||||
|
||||
|
||||
+2
-1
@@ -75,7 +75,8 @@ duration: 11 months
|
||||
|
||||
#### GP Variance
|
||||
|
||||
"GP%" is **margin** (see [[markup-vs-margin]]).
|
||||
> [!info]
|
||||
> "GP%" is **margin** (see [[markup-vs-margin]]).
|
||||
|
||||
The job appears to be doing poorly, at current GP variance of -$299,356.
|
||||
|
||||
|
||||
@@ -0,0 +1,26 @@
|
||||
---
|
||||
id:
|
||||
aliases: []
|
||||
title: "2026-01-15"
|
||||
tags:
|
||||
- authorship/original
|
||||
- destiny/permanent
|
||||
- status/draft
|
||||
- type/daily
|
||||
---
|
||||
# 2026-01-15
|
||||
|
||||
## 2026-01-15 08:11
|
||||
|
||||
Follow-up to [[2026-01-12#2026-01-12 12:23|2026-01-12 12:23]]
|
||||
|
||||
Left Apartment at 05:30, at terminal around 06:10.
|
||||
|
||||
## 2026-01-15 08:15
|
||||
|
||||
[[2025-11-13#2025-11-13 08:19]]
|
||||
I spoke to a peer about this yesterday.
|
||||
|
||||
## 2026-01-15 08:18
|
||||
|
||||
[[2025-12-03#Excluding Vs. Ignoring Project Requirements|Excluding Vs. Ignoring Project Requirements]]
|
||||
+5
-1
@@ -15,7 +15,11 @@ Daily notes are the place for [[small-tasks]], journal entries,
|
||||
and any content I must record, but don't have a _good_ place for.
|
||||
|
||||
It is permissible to correct typos
|
||||
to a note started on a previous day.
|
||||
in a note started on a previous day.
|
||||
Adding content to finish a thought
|
||||
may also be permissible.
|
||||
I frequently leave sentences unfinished.
|
||||
|
||||
As I understand it, other practitioners of [[personal-knowledge-management]]
|
||||
tend to put events in the days that they take place,
|
||||
but I'm not a fan of this.
|
||||
|
||||
Reference in New Issue
Block a user