vault backup: 2023-03-17 21:15:30

This commit is contained in:
hiyori 2023-03-17 21:15:30 -05:00
parent 700370c374
commit 1100b8ab91
24 changed files with 35704 additions and 136 deletions

View File

@ -1 +1,3 @@
{} {
"alwaysUpdateLinks": true
}

View File

@ -5,5 +5,7 @@
"obsidian-better-codeblock", "obsidian-better-codeblock",
"cm-editor-syntax-highlight-obsidian", "cm-editor-syntax-highlight-obsidian",
"highlightr-plugin", "highlightr-plugin",
"recent-files-obsidian" "recent-files-obsidian",
"obsidian-git",
"obsidian-plugin-groups"
] ]

View File

@ -0,0 +1,29 @@
{
"commitMessage": "vault backup: {{date}}",
"commitDateFormat": "YYYY-MM-DD HH:mm:ss",
"autoSaveInterval": 1,
"autoPushInterval": 0,
"autoPullInterval": 0,
"autoPullOnBoot": false,
"disablePush": false,
"pullBeforePush": true,
"disablePopups": false,
"listChangedFilesInMessageBody": false,
"showStatusBar": true,
"updateSubmodules": false,
"syncMethod": "merge",
"customMessageOnAutoBackup": false,
"autoBackupAfterFileChange": false,
"treeStructure": false,
"refreshSourceControl": true,
"basePath": "",
"differentIntervalCommitAndPush": false,
"changedFilesInStatusBar": false,
"showedMobileNotice": true,
"refreshSourceControlTimer": 7000,
"showBranchStatusBar": true,
"setLastSaveToLastCommit": false,
"submoduleRecurseCheckout": false,
"gitDir": "",
"autoCommitMessage": "vault backup: {{date}}"
}

File diff suppressed because one or more lines are too long

View File

@ -0,0 +1,9 @@
{
"id": "obsidian-git",
"name": "Obsidian Git",
"description": "Backup your vault with Git.",
"isDesktopOnly": false,
"fundingUrl": "https://ko-fi.com/vinzent",
"js": "main.js",
"version": "2.17.4"
}

View File

@ -0,0 +1,474 @@
@keyframes loading {
0% {
transform: rotate(0deg);
}
100% {
transform: rotate(360deg);
}
}
.workspace-leaf-content[data-type='git-view'] .view-content {
padding: 0;
}
.loading>svg {
animation: 2s linear infinite loading;
transform-origin: 50% 50%;
display: inline-block;
}
.obsidian-git-center {
margin: auto;
text-align: center;
width: 50%;
}
.obsidian-git-textarea {
display: block;
margin-left: auto;
margin-right: auto;
}
.obsidian-git-center-button {
display: block;
margin: 20px auto;
}
.tooltip.mod-left {
overflow-wrap: break-word;
}
.tooltip.mod-right {
overflow-wrap: break-word;
}
.obsidian-git-shortcuts {
margin: 10px;
}
.diff-err {
height: 100%;
display: flex;
justify-content: center;
flex-direction: column;
align-items: center;
}
.diff-err-sign {
font-size: 2em;
}
.workspace-leaf-content[data-type="diff-view"] .d2h-d-none {
display: none;
}
.workspace-leaf-content[data-type="diff-view"] .d2h-wrapper {
text-align: left;
}
.workspace-leaf-content[data-type="diff-view"] .d2h-file-header {
background-color: var(--background-primary);
border-bottom: 1px solid var(--interactive-accent);
font-family: var(--font-monospace);
height: 35px;
padding: 5px 10px;
}
.workspace-leaf-content[data-type="diff-view"] .d2h-file-header,
.workspace-leaf-content[data-type="diff-view"] .d2h-file-stats {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
}
.workspace-leaf-content[data-type="diff-view"] .d2h-file-stats {
font-size: 14px;
margin-left: auto;
}
.workspace-leaf-content[data-type="diff-view"] .d2h-lines-added {
border: 1px solid #b4e2b4;
border-radius: 5px 0 0 5px;
color: #399839;
padding: 2px;
text-align: right;
vertical-align: middle;
}
.workspace-leaf-content[data-type="diff-view"] .d2h-lines-deleted {
border: 1px solid #e9aeae;
border-radius: 0 5px 5px 0;
color: #c33;
margin-left: 1px;
padding: 2px;
text-align: left;
vertical-align: middle;
}
.workspace-leaf-content[data-type="diff-view"] .d2h-file-name-wrapper {
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
display: -webkit-box;
display: -ms-flexbox;
display: flex;
font-size: 15px;
width: 100%;
}
.workspace-leaf-content[data-type="diff-view"] .d2h-file-name {
overflow-x: hidden;
text-overflow: ellipsis;
white-space: nowrap;
}
.workspace-leaf-content[data-type="diff-view"] .d2h-file-wrapper {
border: 1px solid var(--background-modifier-border);
border-radius: 3px;
margin-bottom: 1em;
}
.workspace-leaf-content[data-type="diff-view"] .d2h-file-collapse {
-webkit-box-pack: end;
-ms-flex-pack: end;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
border: 1px solid var(--background-modifier-border);
border-radius: 3px;
cursor: pointer;
display: none;
font-size: 12px;
justify-content: flex-end;
padding: 4px 8px;
}
.workspace-leaf-content[data-type="diff-view"] .d2h-file-collapse.d2h-selected {
background-color: #c8e1ff;
}
.workspace-leaf-content[data-type="diff-view"] .d2h-file-collapse-input {
margin: 0 4px 0 0;
}
.workspace-leaf-content[data-type="diff-view"] .d2h-diff-table {
border-collapse: collapse;
font-family: Menlo, Consolas, monospace;
font-size: 13px;
width: 100%;
}
.workspace-leaf-content[data-type="diff-view"] .d2h-files-diff {
width: 100%;
}
.workspace-leaf-content[data-type="diff-view"] .d2h-file-diff {
overflow-y: hidden;
}
.workspace-leaf-content[data-type="diff-view"] .d2h-file-side-diff {
display: inline-block;
margin-bottom: -8px;
margin-right: -4px;
overflow-x: scroll;
overflow-y: hidden;
width: 50%;
}
.workspace-leaf-content[data-type="diff-view"] .d2h-code-line {
padding: 0 8em;
}
.workspace-leaf-content[data-type="diff-view"] .d2h-code-line,
.workspace-leaf-content[data-type="diff-view"] .d2h-code-side-line {
display: inline-block;
-webkit-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
white-space: nowrap;
width: 100%;
}
.workspace-leaf-content[data-type="diff-view"] .d2h-code-side-line {
padding: 0 4.5em;
}
.workspace-leaf-content[data-type="diff-view"] .d2h-code-line-ctn {
word-wrap: normal;
background: none;
display: inline-block;
padding: 0;
-webkit-user-select: text;
-moz-user-select: text;
-ms-user-select: text;
user-select: text;
vertical-align: middle;
white-space: pre;
width: 100%;
}
.theme-light .workspace-leaf-content[data-type="diff-view"] .d2h-code-line del,
.theme-light .workspace-leaf-content[data-type="diff-view"] .d2h-code-side-line del {
background-color: #ffb6ba;
}
.theme-dark .workspace-leaf-content[data-type="diff-view"] .d2h-code-line del,
.theme-dark .workspace-leaf-content[data-type="diff-view"] .d2h-code-side-line del {
background-color: #8d232881;
}
.workspace-leaf-content[data-type="diff-view"] .d2h-code-line del,
.workspace-leaf-content[data-type="diff-view"] .d2h-code-line ins,
.workspace-leaf-content[data-type="diff-view"] .d2h-code-side-line del,
.workspace-leaf-content[data-type="diff-view"] .d2h-code-side-line ins {
border-radius: 0.2em;
display: inline-block;
margin-top: -1px;
text-decoration: none;
vertical-align: middle;
}
.theme-light .workspace-leaf-content[data-type="diff-view"] .d2h-code-line ins,
.theme-light .workspace-leaf-content[data-type="diff-view"] .d2h-code-side-line ins {
background-color: #97f295;
text-align: left;
}
.theme-dark .workspace-leaf-content[data-type="diff-view"] .d2h-code-line ins,
.theme-dark .workspace-leaf-content[data-type="diff-view"] .d2h-code-side-line ins {
background-color: #1d921996;
text-align: left;
}
.workspace-leaf-content[data-type="diff-view"] .d2h-code-line-prefix {
word-wrap: normal;
background: none;
display: inline;
padding: 0;
white-space: pre;
}
.workspace-leaf-content[data-type="diff-view"] .line-num1 {
float: left;
}
.workspace-leaf-content[data-type="diff-view"] .line-num1,
.workspace-leaf-content[data-type="diff-view"] .line-num2 {
-webkit-box-sizing: border-box;
box-sizing: border-box;
overflow: hidden;
padding: 0 0.5em;
text-overflow: ellipsis;
width: 3.5em;
}
.workspace-leaf-content[data-type="diff-view"] .line-num2 {
float: right;
}
.workspace-leaf-content[data-type="diff-view"] .d2h-code-linenumber {
background-color: var(--background-primary);
border: solid var(--background-modifier-border);
border-width: 0 1px;
-webkit-box-sizing: border-box;
box-sizing: border-box;
color: var(--text-muted);
cursor: pointer;
display: inline-block;
position: absolute;
text-align: right;
width: 7.5em;
}
.workspace-leaf-content[data-type="diff-view"] .d2h-code-linenumber:after {
content: "\200b";
}
.workspace-leaf-content[data-type="diff-view"] .d2h-code-side-linenumber {
background-color: var(--background-primary);
border: solid var(--background-modifier-border);
border-width: 0 1px;
-webkit-box-sizing: border-box;
box-sizing: border-box;
color: var(--text-muted);
cursor: pointer;
display: inline-block;
overflow: hidden;
padding: 0 0.5em;
position: absolute;
text-align: right;
text-overflow: ellipsis;
width: 4em;
}
.workspace-leaf-content[data-type="diff-view"] .d2h-diff-tbody tr {
position: relative;
}
.workspace-leaf-content[data-type="diff-view"] .d2h-code-side-linenumber:after {
content: "\200b";
}
.workspace-leaf-content[data-type="diff-view"] .d2h-code-side-emptyplaceholder,
.workspace-leaf-content[data-type="diff-view"] .d2h-emptyplaceholder {
background-color: var(--background-primary);
border-color: var(--background-modifier-border);
}
.workspace-leaf-content[data-type="diff-view"] .d2h-code-line-prefix,
.workspace-leaf-content[data-type="diff-view"] .d2h-code-linenumber,
.workspace-leaf-content[data-type="diff-view"] .d2h-code-side-linenumber,
.workspace-leaf-content[data-type="diff-view"] .d2h-emptyplaceholder {
-webkit-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
}
.workspace-leaf-content[data-type="diff-view"] .d2h-code-linenumber,
.workspace-leaf-content[data-type="diff-view"] .d2h-code-side-linenumber {
direction: rtl;
}
.theme-light .workspace-leaf-content[data-type="diff-view"] .d2h-del {
background-color: #fee8e9;
border-color: #e9aeae;
}
.theme-light .workspace-leaf-content[data-type="diff-view"] .d2h-ins {
background-color: #dfd;
border-color: #b4e2b4;
}
.theme-dark .workspace-leaf-content[data-type="diff-view"] .d2h-del {
background-color: #521b1d83;
border-color: #691d1d73;
}
.theme-dark .workspace-leaf-content[data-type="diff-view"] .d2h-ins {
background-color: rgba(30, 71, 30, 0.5);
border-color: #13501381;
}
.workspace-leaf-content[data-type="diff-view"] .d2h-info {
background-color: var(--background-primary);
border-color: var(--background-modifier-border);
color: var(--text-normal);
}
.theme-light .workspace-leaf-content[data-type="diff-view"] .d2h-file-diff .d2h-del.d2h-change {
background-color: #fdf2d0;
}
.theme-dark .workspace-leaf-content[data-type="diff-view"] .d2h-file-diff .d2h-del.d2h-change {
background-color: #55492480;
}
.theme-light .workspace-leaf-content[data-type="diff-view"] .d2h-file-diff .d2h-ins.d2h-change {
background-color: #ded;
}
.theme-dark .workspace-leaf-content[data-type="diff-view"] .d2h-file-diff .d2h-ins.d2h-change {
background-color: rgba(37, 78, 37, 0.418);
}
.workspace-leaf-content[data-type="diff-view"] .d2h-file-list-wrapper {
margin-bottom: 10px;
}
.workspace-leaf-content[data-type="diff-view"] .d2h-file-list-wrapper a {
color: #3572b0;
text-decoration: none;
}
.workspace-leaf-content[data-type="diff-view"] .d2h-file-list-wrapper a:visited {
color: #3572b0;
}
.workspace-leaf-content[data-type="diff-view"] .d2h-file-list-header {
text-align: left;
}
.workspace-leaf-content[data-type="diff-view"] .d2h-file-list-title {
font-weight: 700;
}
.workspace-leaf-content[data-type="diff-view"] .d2h-file-list-line {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
text-align: left;
}
.workspace-leaf-content[data-type="diff-view"] .d2h-file-list {
display: block;
list-style: none;
margin: 0;
padding: 0;
}
.workspace-leaf-content[data-type="diff-view"] .d2h-file-list>li {
border-bottom: 1px solid var(--background-modifier-border);
margin: 0;
padding: 5px 10px;
}
.workspace-leaf-content[data-type="diff-view"] .d2h-file-list>li:last-child {
border-bottom: none;
}
.workspace-leaf-content[data-type="diff-view"] .d2h-file-switch {
cursor: pointer;
display: none;
font-size: 10px;
}
.workspace-leaf-content[data-type="diff-view"] .d2h-icon {
fill: currentColor;
margin-right: 10px;
vertical-align: middle;
}
.workspace-leaf-content[data-type="diff-view"] .d2h-deleted {
color: #c33;
}
.workspace-leaf-content[data-type="diff-view"] .d2h-added {
color: #399839;
}
.workspace-leaf-content[data-type="diff-view"] .d2h-changed {
color: #d0b44c;
}
.workspace-leaf-content[data-type="diff-view"] .d2h-moved {
color: #3572b0;
}
.workspace-leaf-content[data-type="diff-view"] .d2h-tag {
background-color: var(--background-primary);
display: -webkit-box;
display: -ms-flexbox;
display: flex;
font-size: 10px;
margin-left: 5px;
padding: 0 2px;
}
.workspace-leaf-content[data-type="diff-view"] .d2h-deleted-tag {
border: 2px solid #c33;
}
.workspace-leaf-content[data-type="diff-view"] .d2h-added-tag {
border: 1px solid #399839;
}
.workspace-leaf-content[data-type="diff-view"] .d2h-changed-tag {
border: 1px solid #d0b44c;
}
.workspace-leaf-content[data-type="diff-view"] .d2h-moved-tag {
border: 1px solid #3572b0;
}

File diff suppressed because it is too large Load Diff

View File

@ -0,0 +1,11 @@
{
"id": "obsidian-plugin-groups",
"name": "Plugin Groups",
"version": "2.0.2",
"minAppVersion": "0.15.0",
"description": "Manage your Plugins through groups: Enable and disable multiple plugins through a single command, or delay the startup of plugins to speed up your Obsidian start up time.",
"author": "Mocca101",
"authorUrl": "https://github.com/Mocca101",
"isDesktopOnly": false,
"fundingUrl": "https://www.buymeacoffee.com/Mocca101"
}

View File

@ -0,0 +1,253 @@
.pg-settings-list {
overflow: scroll;
min-height: 1vh;
max-height: 40vh;
padding-top: 10px;
padding-bottom: 5px;
}
.add-group-btn {
}
.btn-disabled {
pointer-events: none;
opacity: 0.3;
}
.pg-edit-modal-footer {
position: sticky;
width: 100%;
left: 0;
bottom: -16px;
height: 30px;
display: flex;
justify-content: flex-end;
background: var(--modal-background, '#1e1e1');
align-items: center;
padding-top: 30px;
padding-bottom: 20px;
}
.pg-tabs {
display: flex;
flex: 0 1 auto;
overflow: auto;
margin: 6px -5px calc(var(--tab-outline-width) * -1);
padding: 1px 15px 0;
}
.pg-tab {
background: var(--color-base-20);
align-items: center;
display: flex;
gap: var(--size-2-1);
height: 100%;
border-radius: 4px 4px 0 0;
overflow: hidden;
padding: 8px 8px;
width: 100%;
}
.pg-tab:before {
position: absolute;
bottom: 0;
content: '';
width: calc(var(--tab-curve) * 2);
height: calc(var(--tab-curve) * 2);
border-radius: 100%;
box-shadow: 0 0 0 calc(var(--tab-curve) * 3) transparent;
}
.pg-tab.is-active {
background: var(--tab-background-active, darkgray);
border-top: 1px solid var(--color-base-30, silver);
border-right: 1px solid var(--color-base-30, silver);
border-left: 1px solid var(--color-base-30, silver);
}
.pg-tab:hover {
background: var(--interactive-hover, #363636);
}
.pg-tabbed-content {
display: none;
margin: 0 6px;
padding: 1em 0;
border-top: 1px solid var(--color-base-30, silver);
}
.pg-tabbed-content.is-active {
display: block;
}
.pg-plugin-filter-section {
display: flex;
justify-content: space-between;
}
.pg-drp-btn {
position: relative;
padding: 1px 1px;
margin: 2px;
}
.pg-drp-btn span {
padding: 6px;
padding-bottom: 8px;
}
.pg-drp-btn-main-label {
width: 75%;
}
.pg-has-dropdown-single:focus .pg-dropdown {
opacity: 1;
display: flex;
pointer-events: auto;
}
.pg-has-dropdown:focus-within .pg-dropdown {
opacity: 1;
display: flex;
pointer-events: auto;
}
.pg-dropdown {
opacity: 0;
pointer-events: none;
position: absolute;
display: none;
align-items: center;
justify-content: center;
flex-direction: column;
z-index: 1;
top: 2em;
padding: 0;
width: 100%;
transition: opacity 0.15s ease-out;
list-style: none;
box-shadow: var(--input-shadow, rgba(211, 211, 211, 0.5));
color: var(--text-normal, white);
background-color: var(--interactive-normal, #363636);
border-radius: var(--button-radius, 5px);
border: 0;
}
.pg-dropdown-item {
padding: 10px;
white-space: normal;
width: 100%;
height: 100%;
}
.pg-dropdown-item:hover {
box-shadow: rgba(17, 17, 26, 0.1) 0px 4px 16px,
rgba(17, 17, 26, 0.05) 0px 8px 32px;
background-color: var(--interactive-hover, #363636);
border-radius: var(--button-radius, 5px);
}
.pg-drp-btn .pg-drp-btn-divider {
padding: 0;
margin: 4px 1px;
}
.pg-chip {
background-color: var(--color-base-30, #363636);
border-radius: 16px;
font-size: 14px;
display: inline-flex;
align-items: center;
}
.pg-chip span {
margin-left: 12px;
}
.pg-chip .pg-chip-close-btn {
padding-top: 4px;
padding-right: 4px;
padding-left: 4px;
border-radius: 16px;
margin-left: 12px;
}
.pg-chip-close-btn:hover {
background: var(--color-base-50, rgb(255 255 255 / 20%));
}
.pg-group-filter-list {
display: flex;
gap: 8px;
margin-top: 8px;
min-height: 1.8rem;
align-items: center;
flex-wrap: wrap;
}
.pg-plugin-filter-container {
border-bottom: 1px solid var(--color-base-30, silver);
margin-bottom: 1rem;
padding-bottom: 0.6rem;
}
.pg-settings-window {
height: 0;
opacity: 0;
transition: height 1s, opacity 250ms;
overflow: scroll;
position: fixed;
background-color: var(--modal-background);
}
.pg-statusbar-icon:focus-within > .pg-settings-window {
height: auto;
max-height: 500px;
min-height: 100px;
min-width: 350px;
opacity: 1;
transition: height 1s, opacity 250ms;
border-radius: var(--modal-radius);
border: var(--modal-border-width) solid var(--modal-border-color);
padding: 0 0 0 16px;
}
.pg-collapsible-content.is-active {
display: block;
}
.pg-collapsible-content {
display: none;
}
.pg-collapsible-header:hover {
background-color: var(--interactive-hover, #363636);
border-radius: var(--button-radius, 5px);
}
.pg-collapsible-header {
padding-bottom: 8px;
padding-top: 4px;
}
.pg-collapsible-icon {
position: relative;
top: 4px;
left: 16px;
}
:root {
--pg-edit-modal-footer-height: 60px;
}

View File

@ -1,8 +1,28 @@
{ {
"recentFiles": [ "recentFiles": [
{ {
"basename": "shell scripting", "basename": "my ricing and dev enviroment showcase_ make the best enviroment for your windows 11",
"path": "shell scripting.md" "path": "my ricing and dev enviroment showcase_ make the best enviroment for your windows 11.md"
},
{
"basename": "windows packages installers",
"path": "windows packages installers.md"
},
{
"basename": "navingating through different internet protocols",
"path": "navingating through different internet protocols.md"
},
{
"basename": "fresh windows install",
"path": "fresh windows install.md"
},
{
"basename": "terminals apps",
"path": "terminals apps.md"
},
{
"basename": "internet protocols",
"path": "internet protocols.md"
}, },
{ {
"basename": "Linux", "basename": "Linux",
@ -13,24 +33,20 @@
"path": "templates/new post.md" "path": "templates/new post.md"
}, },
{ {
"basename": "git and github", "basename": "Open AI competitors",
"path": "git and github.md" "path": "Open AI competitors.md"
}, },
{ {
"basename": "markup languages", "basename": "SQL subsets",
"path": "markup languages.md" "path": "SQL subsets.md"
}, },
{ {
"basename": "internet protocols", "basename": "guide for AI chatbots",
"path": "internet protocols.md" "path": "guide for AI chatbots.md"
}, },
{ {
"basename": "rmarkdown and LaTeX", "basename": "AI chatbots",
"path": "rmarkdown and LaTeX.md" "path": "AI chatbots.md"
},
{
"basename": "packages",
"path": "packages.md"
}, },
{ {
"basename": "powershell scripting", "basename": "powershell scripting",
@ -41,8 +57,20 @@
"path": "functional verbal thinking.md" "path": "functional verbal thinking.md"
}, },
{ {
"basename": "AI chatbots", "basename": "rmarkdown and LaTeX",
"path": "AI chatbots.md" "path": "rmarkdown and LaTeX.md"
},
{
"basename": "git and github",
"path": "git and github.md"
},
{
"basename": "shell scripting",
"path": "shell scripting.md"
},
{
"basename": "markup languages",
"path": "markup languages.md"
}, },
{ {
"basename": "This digital garden", "basename": "This digital garden",

View File

@ -4,131 +4,34 @@
"type": "split", "type": "split",
"children": [ "children": [
{ {
"id": "901cc941d6441933", "id": "bd365acc3ec0aad0",
"type": "tabs", "type": "tabs",
"children": [ "children": [
{ {
"id": "31227c0140005e5b", "id": "24da404567122ff2",
"type": "leaf", "type": "leaf",
"state": { "state": {
"type": "markdown", "type": "markdown",
"state": { "state": {
"file": "powershell scripting.md", "file": "my ricing and dev enviroment showcase_ make the best enviroment for your windows 11.md",
"mode": "source", "mode": "source",
"source": false "source": false
} }
} }
}, },
{ {
"id": "12892f8696d422f4", "id": "266c8db5df24ac73",
"type": "leaf", "type": "leaf",
"state": { "state": {
"type": "markdown", "type": "markdown",
"state": { "state": {
"file": "functional verbal thinking.md", "file": "guide for AI chatbots.md",
"mode": "source",
"source": false
}
}
},
{
"id": "15ef7883f13f9d0f",
"type": "leaf",
"state": {
"type": "markdown",
"state": {
"file": "powershell scripting.md",
"mode": "source",
"source": false
}
}
},
{
"id": "fdc84cbeec2d94cd",
"type": "leaf",
"state": {
"type": "markdown",
"state": {
"file": "packages.md",
"mode": "source",
"source": false
}
}
},
{
"id": "5e809567807707d4",
"type": "leaf",
"state": {
"type": "markdown",
"state": {
"file": "internet protocols.md",
"mode": "source",
"source": false
}
}
},
{
"id": "fdfe7d0817eb2e88",
"type": "leaf",
"state": {
"type": "markdown",
"state": {
"file": "shell scripting.md",
"mode": "source",
"source": false
}
}
},
{
"id": "279ad3ef4fd3a2af",
"type": "leaf",
"state": {
"type": "markdown",
"state": {
"file": "Linux.md",
"mode": "source",
"source": false
}
}
},
{
"id": "732cda13d69e8846",
"type": "leaf",
"state": {
"type": "markdown",
"state": {
"file": "templates/new post.md",
"mode": "source",
"source": false
}
}
},
{
"id": "fbd5c78d637b9b76",
"type": "leaf",
"state": {
"type": "markdown",
"state": {
"file": "git and github.md",
"mode": "source",
"source": false
}
}
},
{
"id": "9724238b221bd7bc",
"type": "leaf",
"state": {
"type": "markdown",
"state": {
"file": "rmarkdown and LaTeX.md",
"mode": "source", "mode": "source",
"source": false "source": false
} }
} }
} }
], ]
"currentTab": 5
} }
], ],
"direction": "vertical" "direction": "vertical"
@ -157,7 +60,7 @@
"state": { "state": {
"type": "search", "type": "search",
"state": { "state": {
"query": "", "query": "tag:entry",
"matchingCase": false, "matchingCase": false,
"explainSearch": false, "explainSearch": false,
"collapseAll": false, "collapseAll": false,
@ -182,11 +85,13 @@
"state": {} "state": {}
} }
} }
] ],
"currentTab": 1
} }
], ],
"direction": "horizontal", "direction": "horizontal",
"width": 300 "width": 300,
"collapsed": true
}, },
"right": { "right": {
"id": "edd979fd1d0352d7", "id": "edd979fd1d0352d7",
@ -202,7 +107,7 @@
"state": { "state": {
"type": "backlink", "type": "backlink",
"state": { "state": {
"file": "shell scripting.md", "file": "my ricing and dev enviroment showcase_ make the best enviroment for your windows 11.md",
"collapseAll": false, "collapseAll": false,
"extraContext": false, "extraContext": false,
"sortOrder": "alphabetical", "sortOrder": "alphabetical",
@ -219,7 +124,7 @@
"state": { "state": {
"type": "outgoing-link", "type": "outgoing-link",
"state": { "state": {
"file": "shell scripting.md", "file": "my ricing and dev enviroment showcase_ make the best enviroment for your windows 11.md",
"linksCollapsed": false, "linksCollapsed": false,
"unlinkedCollapsed": true "unlinkedCollapsed": true
} }
@ -242,7 +147,7 @@
"state": { "state": {
"type": "outline", "type": "outline",
"state": { "state": {
"file": "shell scripting.md" "file": "my ricing and dev enviroment showcase_ make the best enviroment for your windows 11.md"
} }
} }
} }
@ -263,19 +168,26 @@
"command-palette:Open command palette": false "command-palette:Open command palette": false
} }
}, },
"active": "fdfe7d0817eb2e88", "active": "24da404567122ff2",
"lastOpenFiles": [ "lastOpenFiles": [
"Linux.md", "windows packages installers.md",
"shell scripting.md", "my ricing and dev enviroment showcase_ make the best enviroment for your windows 11.md",
"templates/new post.md", "navingating through different internet protocols.md",
"git and github.md", "fresh windows install.md",
"markup languages.md", "terminals apps.md",
"internet protocols.md", "internet protocols.md",
"rmarkdown and LaTeX.md", "Linux.md",
"packages.md", "templates/new post.md",
"Open AI competitors.md",
"SQL subsets.md",
"guide for AI chatbots.md",
"AI chatbots.md",
"powershell scripting.md", "powershell scripting.md",
"functional verbal thinking.md", "functional verbal thinking.md",
"AI chatbots.md", "rmarkdown and LaTeX.md",
"git and github.md",
"shell scripting.md",
"markup languages.md",
"This digital garden.md", "This digital garden.md",
"templates" "templates"
] ]

18
content/notes/Linux.md Normal file
View File

@ -0,0 +1,18 @@
---
title: "linux"
tags :
- entry
- budding
- linux
- unix
---
[The Linux Documentation Project (tldp.org)](https://tldp.org/)
[The UNIX and Linux Forums - Free Tech Support](https://www.unix.com/)
[Ryan's Tutorials - A bunch of Technology Tutorials (ryanstutorials.net)](https://ryanstutorials.net/)

View File

@ -0,0 +1,9 @@
---
title: "Open AI competitors"
tags :
- entry
- budding
- Artificial_Intelligence_applications
- ignore
---
OpenAI's main competitors in the field of artificial intelligence and machine learning include companies like Google, Facebook, Amazon, Microsoft, IBM, Baidu, and Tencent. These companies also have significant investments in AI research and development and offer various AI-powered products and services. Additionally, there are several other startups and research organizations that are competing in the AI space, such as DeepMind, Neurala, Vicarious, and more.

View File

@ -0,0 +1,14 @@
---
title: "SQL subsets"
tags :
- entry
- budding
- ignore
---
SQL has several subsets that are used for different purposes:
- DDL (Data Definition Language): It defines the data structure and schema of the database. It includes commands such as CREATE, ALTER, DROP and RENAME.
- DML (Data Manipulation Language): It manipulates the data in the database. It includes commands such as SELECT, INSERT, UPDATE and DELETE
- DCL (Data Control Language): It controls the access and permissions of the data. It includes commands such as GRANT and REVOKE
- TCL (Transaction Control Language): It manages the transactions in the database. It includes commands such as COMMIT, ROLLBACK and SAVEPOINT
There are also other subsets of SQL such as DQL (Data Query Language), which is used to query data from a database, and SCL (Session Control Language), which is used to manage sessions in a database.

View File

@ -0,0 +1,6 @@
---
title: "new post"
tags :
- entry
- budding
---

View File

@ -0,0 +1,6 @@
---
title: "guide for AI chatbots"
tags :
- entry
- budding
---

View File

@ -2,6 +2,7 @@
title: "internet protocols" title: "internet protocols"
tags : tags :
- entry - entry
- ignore
--- ---
Internet protocols are sets of rules that enable communication and data exchange across the internet. There are many types of internet protocols for different purposes and functions. Here are some examples of common internet protocols: Internet protocols are sets of rules that enable communication and data exchange across the internet. There are many types of internet protocols for different purposes and functions. Here are some examples of common internet protocols:

View File

@ -0,0 +1,19 @@
---
title: "AI chatbots"
tags :
- entry
- budding
- scripting
- YAML
- Markdown
- Rmarkdown
---
- - [Video game scripts: files that define the logic, events, and interactions of a video game](https://doc.stride3d.net/latest/en/manual/scripts/types-of-script.html)[2](https://doc.stride3d.net/latest/en/manual/scripts/types-of-script.html).
- [Postscript: a page description language that describes how documents should be printed](https://ontopia.net/i18n/script-types.jsp)[3](https://ontopia.net/i18n/script-types.jsp).
- [XML: a markup language that defines rules for encoding data in a human-readable and machine-readable format](https://ontopia.net/i18n/script-types.jsp)[3](https://ontopia.net/i18n/script-types.jsp).
- Markdown. Has lots of flavors
- GitHub markdown
- Rmarkdown
- YAML
- Usage: I use it on Obsidian
-

View File

@ -0,0 +1,25 @@
---
title: "how to rice your windows 11"
tags :
- entry
- budding
- megapost
---
This is a ==megapost==.
https://vsthemes.org/en/software/808-ultrauxthemepatcher.html
you have lots of option I personally use Sophia for Windows 11 [[fresh windows install]]
https://github.com/stars/aleendev/lists/windows
[[navingating through different internet protocols]]
I personally love terminal apps [[terminals apps]]
[[windows packages installers]]
## enviroments
[[dev packages]]

View File

@ -0,0 +1,6 @@
---
title: "new post"
tags :
- entry
- budding
---

View File

View File

@ -0,0 +1,29 @@
---
title: "shell scripting"
tags :
- scripting
---
## basics
what's scripting: A shell script is a computer program designed to be run by the Unix/Linux shell which could be one of the following.
- Shell: A shell script is a file that contains a sequence of commands that can be executed by a shell program. Shell scripts are often used for automation, scheduling, and customization of tasks in Linux and other operating systems.
- [The Shell Scripting Tutorial](https://www.shellscript.sh/)
-
- Terminal
- Unix
- Linux
- [[Linux]]
## my favs
- ZSH: Zsh is called Z Shell, which is an **extension of Bash** that has many new features and themes. Zsh was released in 1990 by Paul Falstad. Zsh has similarities with Korn shell as well. Linux and Mac OS use Bash as their default shell. Bash is the abbreviation of the Bourne-again shell.
- Powershell
- Git Bash:
- You can access both Git and Bash features on Windows, which are native to macOS and Linux users
- You can use Bashs powerful features such as arithmetic, array variables, loops, and branches that are not available in Command Prompt.
## alternatives
- The Bourne Shell: These are scripts written for the original sh shell, which is a command-line interpreter for Unix systems. [The character for prompting a Bourne shell is $](https://www.techtarget.com/searchdatacenter/definition/shell-script)
- The C Shell. These are scripts written for the csh shell, which is a command-line interpreter that has features similar to the C programming language. [The character for prompting a C shell is %](https://www.techtarget.com/searchdatacenter/definition/shell-script)
- The Korn Shell
- The GNU Bourne-Again Shell
## Which I don't use
- Bourne shell scripts: These are scripts written for the original sh shell, which is a command-line interpreter for Unix systems. The character for prompting a Bourne shell is $.
[Types of script | Stride (stride3d.net)](https://doc.stride3d.net/latest/en/manual/scripts/types-of-script.html)

View File

@ -0,0 +1,8 @@
---
title: "new post"
tags :
- entry
- budding
---
https://github.com/stars/aleendev/lists/terminal