Small notes, Aiim

This commit is contained in:
Norm Rasmussen
2023-05-23 17:02:58 -04:00
parent 94145349e7
commit 6a1e560688
17 changed files with 20481 additions and 1 deletions

1
CustomerNotes/.obsidian/app.json vendored Normal file
View File

@ -0,0 +1 @@
{}

View File

@ -0,0 +1,4 @@
{
"accentColor": "",
"cssTheme": ""
}

View File

@ -0,0 +1,4 @@
[
"dataview",
"theme-picker"
]

View File

@ -0,0 +1,29 @@
{
"file-explorer": true,
"global-search": true,
"switcher": true,
"graph": true,
"backlink": true,
"canvas": true,
"outgoing-link": true,
"tag-pane": true,
"page-preview": true,
"daily-notes": true,
"templates": true,
"note-composer": true,
"command-palette": true,
"slash-command": false,
"editor-status": true,
"bookmarks": true,
"markdown-importer": false,
"zk-prefixer": false,
"random-note": false,
"outline": true,
"word-count": true,
"slides": false,
"audio-recorder": false,
"workspaces": false,
"file-recovery": true,
"publish": false,
"sync": false
}

View File

@ -0,0 +1,20 @@
[
"file-explorer",
"global-search",
"switcher",
"graph",
"backlink",
"canvas",
"outgoing-link",
"tag-pane",
"page-preview",
"daily-notes",
"templates",
"note-composer",
"command-palette",
"editor-status",
"bookmarks",
"outline",
"word-count",
"file-recovery"
]

22
CustomerNotes/.obsidian/graph.json vendored Normal file
View File

@ -0,0 +1,22 @@
{
"collapse-filter": false,
"search": "",
"showTags": false,
"showAttachments": false,
"hideUnresolved": false,
"showOrphans": true,
"collapse-color-groups": true,
"colorGroups": [],
"collapse-display": true,
"showArrow": false,
"textFadeMultiplier": 0,
"nodeSizeMultiplier": 1,
"lineSizeMultiplier": 1,
"collapse-forces": true,
"centerStrength": 0.518713248970312,
"repelStrength": 10,
"linkStrength": 1,
"linkDistance": 250,
"scale": 0.36288736930121135,
"close": false
}

1
CustomerNotes/.obsidian/hotkeys.json vendored Normal file
View File

@ -0,0 +1 @@
{}

File diff suppressed because one or more lines are too long

View File

@ -0,0 +1,10 @@
{
"id": "dataview",
"name": "Dataview",
"version": "0.5.56",
"minAppVersion": "0.13.11",
"description": "Complex data views for the data-obsessed.",
"author": "Michael Brenan <blacksmithgu@gmail.com>",
"authorUrl": "https://github.com/blacksmithgu",
"isDesktopOnly": false
}

View File

@ -0,0 +1,146 @@
/** Live Preview padding fixes, specifically for DataviewJS custom HTML elements. */
.is-live-preview .block-language-dataviewjs > p, .is-live-preview .block-language-dataviewjs > span {
line-height: 1.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(--text-selection) !important;
}
.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(--text-nav-selected);
}
.dataview.inline-field-value {
padding-left: 8px;
padding-right: 8px;
font-family: var(--font-monospace);
background-color: var(--background-secondary-alt);
color: var(--text-nav-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(--text-nav-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: ")";
}

File diff suppressed because one or more lines are too long

View File

@ -0,0 +1,10 @@
{
"id": "theme-picker",
"name": "Theme Picker",
"version": "1.0.8",
"minAppVersion": "1.0.0",
"description": "Quickly preview installed themes",
"author": "kenset",
"authorUrl": "https://github.com/kenset",
"isDesktopOnly": true
}

View File

@ -0,0 +1,11 @@
.theme-picker-modal {
box-shadow: 0px 0px 17px 0px rgb(0 0 0 / 25%);
}
.theme-picker-color-scheme-icon > svg {
fill: var(--text-muted);
}
.theme-picker-color-scheme-icon:hover > svg {
fill: var(--text-normal);
}

158
CustomerNotes/.obsidian/workspace.json vendored Normal file
View File

@ -0,0 +1,158 @@
{
"main": {
"id": "4fc3a5cdcd99de07",
"type": "split",
"children": [
{
"id": "611cd5d51072ed6e",
"type": "tabs",
"children": [
{
"id": "15cae0f8ddecb454",
"type": "leaf",
"state": {
"type": "markdown",
"state": {
"file": "Skuid.md",
"mode": "source",
"source": false
}
}
}
]
}
],
"direction": "vertical"
},
"left": {
"id": "28ff22f702bbe9a4",
"type": "split",
"children": [
{
"id": "2e1703f8c10ec576",
"type": "tabs",
"children": [
{
"id": "10c861da40f1b918",
"type": "leaf",
"state": {
"type": "file-explorer",
"state": {
"sortOrder": "alphabetical"
}
}
},
{
"id": "82e21ce7bb9cb3a4",
"type": "leaf",
"state": {
"type": "search",
"state": {
"query": "analytics",
"matchingCase": false,
"explainSearch": false,
"collapseAll": false,
"extraContext": false,
"sortOrder": "alphabetical"
}
}
},
{
"id": "be6b46faba7dd7a6",
"type": "leaf",
"state": {
"type": "bookmarks",
"state": {}
}
}
]
}
],
"direction": "horizontal",
"width": 300
},
"right": {
"id": "b2b8a695a6ae16ba",
"type": "split",
"children": [
{
"id": "c5df452df2a17ea1",
"type": "tabs",
"children": [
{
"id": "92255194e0bbfd63",
"type": "leaf",
"state": {
"type": "backlink",
"state": {
"file": "Skuid.md",
"collapseAll": false,
"extraContext": false,
"sortOrder": "alphabetical",
"showSearch": false,
"searchQuery": "",
"backlinkCollapsed": false,
"unlinkedCollapsed": true
}
}
},
{
"id": "74e4fa3796a23614",
"type": "leaf",
"state": {
"type": "outgoing-link",
"state": {
"file": "Skuid.md",
"linksCollapsed": false,
"unlinkedCollapsed": true
}
}
},
{
"id": "551ec272d04e40fe",
"type": "leaf",
"state": {
"type": "tag",
"state": {
"sortOrder": "frequency",
"useHierarchy": true
}
}
},
{
"id": "457cb6080b97ec53",
"type": "leaf",
"state": {
"type": "outline",
"state": {
"file": "Skuid.md"
}
}
}
]
}
],
"direction": "horizontal",
"width": 300,
"collapsed": true
},
"left-ribbon": {
"hiddenItems": {
"switcher:Open quick switcher": false,
"graph:Open graph view": false,
"canvas:Create new canvas": false,
"daily-notes:Open today's daily note": false,
"templates:Insert template": false,
"command-palette:Open command palette": false
}
},
"active": "10c861da40f1b918",
"lastOpenFiles": [
"2023-05-23.md",
"github_readme_profile.md",
"Untitled.canvas",
"Agriwebb.md",
"Artsy.md",
"4Pillars.md"
]
}

View File

@ -61,3 +61,9 @@ _Analytics:_
* More for Admins
* Pulling certain roles & attributes
* Being able to impersonate that person, or move them to complete when they are stuck. View what they see.
## 05/23/2023
Certs sends out credential name - it should share course/lp name instead of cert name
LinkedIn metrics for who has added the cert to their profile.
TODO: Send Georgina the pricing for OpenSesame.

View File

@ -0,0 +1,9 @@
{
"nodes":[
{"id":"85f6396de3784552","x":-180,"y":120,"width":250,"height":60,"type":"text","text":"This is a test\n"},
{"id":"4e559da8c83034f9","x":216,"y":114,"width":250,"height":60,"type":"text","text":"Weird!"}
],
"edges":[
{"id":"d23a8b4629f4de06","fromNode":"85f6396de3784552","fromSide":"right","toNode":"4e559da8c83034f9","toSide":"left"}
]
}

View File

@ -123,7 +123,6 @@ Questions from Stephanie:
* Luminate's biggest concern is upkeep. Version Control. They make a ton of changes to the products. They need to update
the content quickly and effectively. Example: Screenshot in one lesson but what if it is in different lessons etc.
## 03/29/2023
### Design Process