vault backup: 2024-08-14 12:58:54

This commit is contained in:
2024-08-14 12:58:54 -05:00
parent aa98e33d5f
commit ae2eba6329
22 changed files with 17349 additions and 56 deletions

3
.obsidian/backlink.json vendored Normal file
View File

@@ -0,0 +1,3 @@
{
"backlinkInDocument": true
}

View File

@@ -1,5 +1,8 @@
[
"obsidian-git",
"obsidian-importer",
"numerals"
"numerals",
"nldates-obsidian",
"calendar",
"obsidian-linter"
]

View File

@@ -7,7 +7,7 @@
"canvas": true,
"outgoing-link": true,
"tag-pane": true,
"properties": false,
"properties": true,
"page-preview": true,
"daily-notes": true,
"templates": true,
@@ -21,7 +21,7 @@
"random-note": false,
"outline": true,
"word-count": true,
"slides": false,
"slides": true,
"audio-recorder": false,
"workspaces": false,
"file-recovery": true,

View File

@@ -7,6 +7,7 @@
"canvas",
"outgoing-link",
"tag-pane",
"properties",
"page-preview",
"daily-notes",
"templates",
@@ -16,5 +17,6 @@
"bookmarks",
"outline",
"word-count",
"slides",
"file-recovery"
]

10
.obsidian/plugins/calendar/data.json vendored Normal file
View File

@@ -0,0 +1,10 @@
{
"shouldConfirmBeforeCreate": true,
"weekStart": "locale",
"wordsPerDot": 250,
"showWeeklyNote": false,
"weeklyNoteFormat": "",
"weeklyNoteTemplate": "",
"weeklyNoteFolder": "",
"localeOverride": "system-default"
}

4457
.obsidian/plugins/calendar/main.js vendored Normal file

File diff suppressed because it is too large Load Diff

View File

@@ -0,0 +1,10 @@
{
"id": "calendar",
"name": "Calendar",
"description": "Calendar view of your daily notes",
"version": "1.5.10",
"author": "Liam Cain",
"authorUrl": "https://github.com/liamcain/",
"isDesktopOnly": false,
"minAppVersion": "0.9.11"
}

View File

@@ -0,0 +1,12 @@
{
"autosuggestToggleLink": false,
"autocompleteTriggerPhrase": "@",
"isAutosuggestEnabled": true,
"format": "YYYY-MM-DD",
"timeFormat": "HH:mm",
"separator": " ",
"weekStart": "locale-default",
"modalToggleTime": false,
"modalToggleLink": false,
"modalMomentFormat": "YYYY-MM-DD HH:mm"
}

9560
.obsidian/plugins/nldates-obsidian/main.js vendored Normal file

File diff suppressed because one or more lines are too long

View File

@@ -0,0 +1,10 @@
{
"id": "nldates-obsidian",
"name": "Natural Language Dates",
"description": "Create date-links based on natural language",
"version": "0.6.2",
"author": "Argentina Ortega Sainz",
"authorUrl": "https://argentinaos.com/",
"isDesktopOnly": false,
"minAppVersion": "1.0.0"
}

View File

@@ -0,0 +1,22 @@
{
"ruleConfigs": {},
"lintOnSave": false,
"recordLintOnSaveLogs": false,
"displayChanged": true,
"lintOnFileChange": false,
"displayLintOnFileChangeNotice": false,
"settingsConvertedToConfigKeyValues": true,
"foldersToIgnore": [],
"filesToIgnore": [],
"linterLocale": "system-default",
"logLevel": "ERROR",
"lintCommands": [],
"customRegexes": [],
"commonStyles": {
"aliasArrayStyle": "single-line",
"tagArrayStyle": "single-line",
"minimumNumberOfDollarSignsToBeAMathBlock": 2,
"escapeCharacter": "\"",
"removeUnnecessaryEscapeCharsForMultiLineArrays": false
}
}

2917
.obsidian/plugins/obsidian-linter/main.js vendored Normal file

File diff suppressed because one or more lines are too long

View File

@@ -0,0 +1,11 @@
{
"id": "obsidian-linter",
"name": "Linter",
"version": "1.25.0",
"minAppVersion": "1.5.7",
"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",
"authorUrl": "https://github.com/platers",
"helpUrl": "https://platers.github.io/obsidian-linter/",
"isDesktopOnly": false
}

View File

@@ -0,0 +1,244 @@
/**
* Based on https://github.com/Fevol/obsidian-translate/blob/master/src/ui/translator-components/SettingsPage.svelte
*/
.linter-navigation-item {
cursor: pointer;
border-radius: 100px;
border: 1px solid var(--background-modifier-border);
border-radius: 8px 8px 2px 2px;
font-weight: bold;
font-size: 16px;
display: flex;
flex-direction: row;
white-space: nowrap;
padding: 4px 6px;
align-items: center;
gap: 4px;
overflow: hidden;
background-color: var(--background-primary-secondary-alt);
transition: color 0.25s ease-in-out,
padding 0.25s ease-in-out,
background-color 0.35s cubic-bezier(0.45, 0.25, 0.83, 0.67),
max-width 0.35s cubic-bezier(0.57, 0.04, 0.58, 1);
height: 32px;
}
@media screen and (max-width: 1325px) {
.linter-navigation-item.linter-desktop {
max-width: 32px;
}
}
@media screen and (max-width: 800px) {
.linter-navigation-item.linter-mobile {
max-width: 32px;
}
}
.linter-navigation-item-icon {
padding-top: 5px;
}
.linter-navigation-item:hover {
border-color: var(--interactive-accent-hover);
border-bottom: 0px;
}
.linter-navigation-item-selected {
background-color: var(--interactive-accent) !important;
color: var(--text-on-accent);
padding: 4px 9px !important;
max-width: 100% !important;
border: 1px solid var(--background-modifier-border);
border-radius: 8px 8px 2px 2px;
border-bottom: 0px;
transition: color 0.25s ease-in-out,
padding 0.25s ease-in-out,
background-color 0.35s cubic-bezier(0.45, 0.25, 0.83, 0.67),
max-width 0.45s cubic-bezier(0.57, 0.04, 0.58, 1) 0.2s;
}
/**
* Based on https://github.com/phibr0/obsidian-commander/blob/main/src/styles.scss
*/
.linter {
transition: transform 400ms 0s;
}
.linter-setting-title {
display: flex;
align-items: baseline;
justify-content: space-between;
gap: 30px;
}
.linter-setting-title.linter-mobile {
justify-content: space-around;
}
.linter-setting-title h1 {
font-weight: 900;
margin-top: 6px;
margin-bottom: 12px;
}
.linter-setting-header {
margin-bottom: 24px;
overflow-y: hidden;
overflow-x: auto;
}
.linter-setting-header .linter-setting-tab-group {
display: flex;
align-items: flex-end;
flex-wrap: wrap;
width: 100%;
}
.linter-setting-tab-group {
margin-top: 6px;
padding-left: 2px;
padding-right: 2px;
border-bottom: 2px solid var(--background-modifier-border);
}
.linter-setting-header .linter-tab-settings {
padding: 6px 12px;
font-weight: 600;
cursor: pointer;
white-space: nowrap;
border-left: 2px solid transparent;
border-right: 2px solid transparent;
}
.linter-setting-header .linter-tab-settings:first-child {
margin-left: 6px;
}
.linter-setting-header .linter-tab-settings.linter-tab-settings-active {
border-bottom: 2px solid var(--background-primary);
transform: translateY(2px);
border-radius: 2px;
border-left: 2px solid var(--background-modifier-border);
border-top: 2px solid var(--background-modifier-border);
border-right: 2px solid var(--background-modifier-border);
}
/** Hide linter element css
* Based on https://zellwk.com/blog/hide-content-accessibly/
*/
.linter-navigation-item:not(.linter-navigation-item-selected) > span:nth-child(2),
.linter-visually-hidden {
border: 0;
clip: rect(0 0 0 0);
clip-path: rect(0 0 0 0);
height: auto;
margin: 0;
overflow: hidden;
padding: 0;
position: absolute;
width: 1px;
white-space: nowrap;
}
/**
* Full-width text areas
* Based on https://github.com/nyable/obsidian-code-block-enhancer/blob/bb0c636c1e7609b6d26c48a8d7ca15d5cd9abdcf/src/styles/index.scss
*/
textarea.full-width {
width: 100%;
min-height: 10em;
margin-top: 0.8em;
margin-bottom: 0.8em;
}
.full-width-textbox-input-wrapper {
position: relative;
}
.settings-copy-button {
position: absolute;
top: 0.8em;
right: 0.8em;
margin: 0 0 0 auto;
padding: 4px;
}
.settings-copy-button svg.linter-clipboard path {
fill: var(--text-faint);
}
.settings-copy-button svg.linter-success path {
fill: var(--interactive-success);
}
.settings-copy-button:hover, .settings-copy-button:active {
cursor: pointer;
}
.settings-copy-button:hover svg path, .settings-copy-button:active svg path {
fill: var(--text-accent-hover);
transition: all ease 0.3s;
}
.settings-copy-button:focus {
outline: 0;
}
/**
* Custom regex replacement
*/
.linter-custom-regex-replacement-container div:last-child {
border: none;
}
.linter-custom-regex-replacement {
margin-bottom: 15px;
border: none;
border-bottom: var(--hr-thickness) solid;
border-color: var(--hr-color);
}
.linter-custom-regex-replacement-row2 {
flex-wrap: wrap;
}
.linter-custom-regex-replacement-normal-input {
width: 40%;
}
.linter-custom-regex-replacement-flags {
width: 15%;
}
.linter-custom-regex-replacement-label {
flex-direction: row-reverse;
}
.linter-custom-regex-replacement-label-input {
width: 50%;
}
/**
* Files to ignore
*/
.linter-files-to-ignore-container div:last-child {
border: none;
}
.linter-files-to-ignore {
margin-bottom: 15px;
border: none;
border-bottom: var(--hr-thickness) solid;
border-color: var(--hr-color);
}
.linter-files-to-ignore-normal-input {
width: 40%;
}
.linter-files-to-ignore-flags {
width: 15%;
}
/**
* Setting item no border
*/
.linter-no-border {
border: none;
}
/**
* Custom row
*/
.custom-row-description {
margin-top: 0px;
}

View File

@@ -4,16 +4,19 @@
"type": "split",
"children": [
{
"id": "546bd9b07f7ea6ce",
"id": "e8bd24047c8e5c37",
"type": "tabs",
"children": [
{
"id": "9a14cb3c3def324a",
"id": "5f2a733d9ded79c3",
"type": "leaf",
"state": {
"type": "image",
"type": "markdown",
"state": {
"file": "_Attachments/Exported image 20240808114239-0.jpeg"
"file": "Work/Questions for PATHAR.md",
"mode": "source",
"backlinks": true,
"source": false
}
}
}
@@ -83,7 +86,7 @@
"state": {
"type": "backlink",
"state": {
"file": "_Attachments/Exported image 20240808114239-0.jpeg",
"file": "Work/Questions for PATHAR.md",
"collapseAll": false,
"extraContext": false,
"sortOrder": "alphabetical",
@@ -100,7 +103,7 @@
"state": {
"type": "outgoing-link",
"state": {
"file": "_Attachments/Exported image 20240808114239-0.jpeg",
"file": "Work/Questions for PATHAR.md",
"linksCollapsed": false,
"unlinkedCollapsed": false
}
@@ -123,12 +126,32 @@
"state": {
"type": "outline",
"state": {
"file": "_Attachments/Exported image 20240808114239-0.jpeg"
"file": "Work/Questions for PATHAR.md"
}
}
},
{
"id": "84b74a5ade367311",
"type": "leaf",
"state": {
"type": "all-properties",
"state": {
"sortOrder": "frequency",
"showSearch": false,
"searchQuery": ""
}
}
},
{
"id": "111c3c6823e8aac7",
"type": "leaf",
"state": {
"type": "calendar",
"state": {}
}
}
],
"currentTab": 3
"currentTab": 1
}
],
"direction": "horizontal",
@@ -142,11 +165,39 @@
"daily-notes:Open today's daily note": false,
"templates:Insert template": false,
"command-palette:Open command palette": false,
"obsidian-importer:Open Importer": false
"obsidian-importer:Open Importer": false,
"zk-prefixer:Create new unique note": false,
"workspaces:Manage workspace layouts": false
}
},
"active": "9a14cb3c3def324a",
"active": "7d4cfa54f3e28aba",
"lastOpenFiles": [
"Work/Private Equity thoughts.md",
"Work/Questions for PATHAR.md",
"Work/Rightpoint interview.md",
"Work/Faithlife pair programming interview.md",
"Work/BigCommerce Notes.md",
"Work/Faithlife panel interview.md",
"Bible Study/Messages/2019.04.31 Learning to handle emotions.md",
"Bible Study/Messages/2019.01.27 Bartimaeus healed (Mark 1046-52, Luke 1835-43).md",
"Bible Study/1 Peter/1 Peter Flow Outline.md",
"Bible Study/1 Peter/1 Peter Observation.md",
"Church/Board meeting notes/Board meeting meetings 3182021.md",
"Work/New Platform Alerting.md",
"2024-08-14.md",
"Work/Switching jobs pros and cons.md",
"Reading/Read Later/StackExchange.RedisThreadTheft.md at main · StackExchangeStackExchange.Redis · GitHub.md",
"Reading/Read Later/What is Scrumban Definition, Overview, and Examples.md",
"Reading/Book recommendations.md",
"Bible Study/Hebrews/Hebrews Summary.md",
"Bible Study/Hebrews/Hebrews Outline.md",
"Bible Study/Hebrews/Hebrews Observation.md",
"Bible Study/Hebrews/Hebrews Background Info.md",
"Bible Study/Galatians/Galatians Summary.md",
"Bible Study/Galatians/Galatians Observation.md",
"Bible Study/1 Thessalonians/1 Thessalonians Observation.md",
"Bible Study/1 Thessalonians/1 Thessalonians Outline.md",
"_Attachments/Exported image 20240808114239-0.jpeg",
"_Attachments/Exported image 20240808114234-0.jpeg",
"_Attachments/Exported image 20240808114117-0.jpeg",
"_Attachments/Exported image 20240808114116-0.jpeg",
@@ -156,34 +207,8 @@
"_Attachments/Exported image 20240808114111-0.jpeg",
"_Attachments/Exported image 20240808113940-7.jpeg",
"_Attachments/Exported image 20240808113940-6.jpeg",
"_Attachments/Exported image 20240808113940-5.png",
"_Attachments/Exported image 20240808113940-4.jpeg",
"Work/Daily Log/2024-08-14 (Wednesday).md",
"_Attachments/305e82da0687bc4fb7ab116f2a3407cf.pdf",
"Reading/Book notes/Shepherding a Child's Heart.md",
"Reading/Book notes/Problem of Pain, C.S. Lewis.md",
"Lenovo laptop model differences.md",
"Work/New Platform Alerting.md",
"Work/Daily Log/2024-08-13 (Tuesday).md",
"Work/AcademicDesk integration to Salesforce.md",
"Work/Enterprise subscriptions meeting.md",
"Work/Daily Log/2024-08-12 (Monday).md",
"conflict-files-obsidian-git.md",
"Shopping/Shopping list.md",
"Shopping/Shopping list 2.md",
"Shopping/Shopping List 1.md",
"Shopping/Sams.md",
"Shopping/Sams club.md",
"Shopping/Sams club 3.md",
"Shopping/Sams club 2.md",
"Shopping/Sams Club 1.md",
"Shopping/Lowes.md",
"Shopping/Lowes shopping list.md",
"Shopping/Lowes.md",
"Shopping/Lowes 3.md",
"Shopping/Lowes 1.md",
"Shopping/Lowes 2.md",
"Shopping/Jozwick Sams list.md",
"Shopping",
"Bible Study/Psalms",
"Bible Study/Messages",

1
.obsidian/workspaces.json vendored Normal file
View File

@@ -0,0 +1 @@
{}

3
.obsidian/zk-prefixer.json vendored Normal file
View File

@@ -0,0 +1,3 @@
{
"folder": "/"
}

View File

@@ -16,13 +16,11 @@ Learning to handle emotions
3. Psalm 66:16Come and hear, all who fear God, And I will tell of what He has done for my soul.
5. Some of the story of Ada's death
1. Three years ago on March 19th
2. Born at 32 weeks and died 10 hours later
3. Sorrow we had never known before
6. How we read the Psalms afterward
7. What we noticed as we read
1. Emotions freely and frankly expressed
2. Character of God clearly described
3. Comfort came a result

View File

@@ -1,3 +1,8 @@
2024-08-14
#logos #vercel #bigcommerce #celigo #replatform #oncall #alerting
With the replatform work, we have several new systems for which the Business Solutions Group on-call rotation will need to eventually be responsible.
## New Systems with Alerting Needs

View File

@@ -1,6 +1,6 @@
#privateequity #covehill
#privateequity #covehill #logos
My meeting with Nate yesterday triggered a few more thoughts on private equity and Cove Hill's ownership of Logos.
My meeting with Nate Merritt yesterday triggered a few more thoughts on private equity and Cove Hill's ownership of Logos.
1. Their goal is, obviously, profit
1. Moving to subscriptions shows a stronger revenue stream

View File

@@ -1,5 +1,5 @@
| | | | | | | | |
|---|---|---|---|---|---|---|---|
| ------------------------------------ | ------ | ------------------------------------------------------- | ------ | ---------------------------------------------------------------------- | ------ | -------------------------------- | ------ |
| Accepting Rightpoint offer | | | | Staying at VML | | | |
| Pros | Weight | Cons | Weight | Pros | Weight | Cons | Weight |
| Salary increase | 8 | New people to meet | 5 | Familiar processes | 6 | No pay increase | 3 |