2024-06-03

This commit is contained in:
2024-06-03 07:25:11 -07:00
commit 4d23316f57
559 changed files with 15154 additions and 0 deletions

29
.vscode/mklink.md vendored Normal file
View File

@ -0,0 +1,29 @@
---
type: "note"
created: "2024-01-14T02:18:18.908Z"
updated: "2024-04-01T23:12:14.179Z"
---
# mklink
```bash
mklink /J "D:\5-Other-Small\Kanban\.git" "L:\Git\Notes-Kanban\.git"
```
```bash
mklink /J "D:\5-Other-Small\Kanban\.git" "L:\Git\Notes-Kanban\.git"
```
```bash
mklink /J "D:\5-Other-Small\Kanban\.kanbn" "D:\5-Other-Small\Kanban\Phares"
mklink /J "D:\5-Other-Small\Kanban\.UserSecrets" "C:\Users\phares\AppData\Roaming\Microsoft\UserSecrets"
```
```bash Mon Jun 03 2024 07:19:35 GMT-0700 (Mountain Standard Time)
git init L:/Git/Notes-Kanban
mklink /J "L:\Git\Notes-Kanban\.Kanban" "D:\5-Other-Small\Notes\Kanban"
mklink /J "D:\5-Other-Small\Kanban\.git" "L:\Git\Notes-Kanban\.git"
code "L:\Git\Notes-Kanban\.Kanban"
codium "L:\Git\Notes-Kanban\.Kanban"
code-insiders "L:\Git\Notes-Kanban\.Kanban"
```

55
.vscode/settings.json vendored Normal file
View File

@ -0,0 +1,55 @@
{
"files.eol": "\n",
"[markdown]": {
"editor.wordWrap": "off"
},
"cSpell.words": [
"PDSF",
"Syncthing"
],
"files.exclude": {
"**/node_modules": true
},
"files.watcherExclude": {
"**/node_modules": true
},
"foam.files.ignore": [
".foam/**/*",
".stfolder/**/*",
"**/_layouts/**/*",
"**/_site/**/*",
"**/.vscode/**/*",
"**/node_modules/**/*"
],
"kanbn.showBurndownButton": false,
"kanbn.showSprintButton": false,
"foam.links.hover.enable": false,
"foam.placeholders.exclude": [
".kanbn/Archive/**/*"
],
"foam.orphans.exclude": [
".journal/**/*"
],
"foam.graph.style": {
"background": "#202020",
"node": {
"wired": "green",
"wireless": "orange",
"person": "white",
"topic": "#bc2a3c",
"kanbn": "#ff7b00",
"basic-note": "#773b93",
"daily-note": "#ff9d00",
"note": "#f2cb1d",
"placeholder": "#ff9d00",
"tag": "#0494c1",
"bug": "#bc2a3c",
"epic": "#ff7b00",
"feature": "#773b93",
"issue": "#ff9d00",
"task": "#f2cb1d",
"test-case": "#ff9d00",
"user-story": "#0494c1"
}
}
}