2024-06-03

This commit is contained in:
2024-06-03 07:04:29 -07:00
commit a6071a4073
273 changed files with 16707 additions and 0 deletions

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

@ -0,0 +1,39 @@
---
type: "note"
created: "2024-01-14T02:18:08.120Z"
updated: "2024-01-22T18:30:18.823Z"
---
# mklink
```bash
# https://stackoverflow.com/questions/10188485/windows-symbolic-link-target
dir
```
```bash Mon Jan 15 2024 17:36:31 GMT-0700 (Mountain Standard Time)
mklink /J "D:\5-Other-Small\Notes\Infineon\.Applications" "L:\DevOps\Mesa_FI\FI-Operations\Applications"
mklink /J "D:\5-Other-Small\Notes\Infineon\.Barcode-Host-Tasks" "D:\5-Other-Small\Kanban\Barcode-Host\tasks"
mklink /J "D:\5-Other-Small\Notes\Infineon\.DevOps" "L:\DevOps\Mesa_FI\FI-Operations\DevOps"
mklink /J "D:\5-Other-Small\Notes\Infineon\.Fab" "L:\DevOps\Mesa_FI\FI-Operations\Fab"
mklink /J "D:\5-Other-Small\Notes\Infineon\.port" "D:\5-Other-Small\Notes\EC-Documentation\port"
```
```bash Sat Jan 06 2024 09:09:50 GMT-0700 (Mountain Standard Time)
git init L:/Git/Notes-Infineon
mklink /J "L:\Git\Notes-Infineon\.Infineon" "D:\5-Other-Small\Notes\Infineon"
mklink /J "D:\5-Other-Small\Notes\Infineon\.git" "L:\Git\Notes-Infineon\.git"
```
```bash Sat Jan 06 2024 09:09:50 GMT-0700 (Mountain Standard Time)
git init L:/Git/Notes-Infineon
mklink /J "L:\Git\Notes-Infineon\.Infineon" "D:\Documents\Notes\Infineon"
mklink /J "D:\Documents\Notes\Infineon\.git" "L:\Git\Notes-Infineon\.git"
code "L:\Git\Notes-Infineon\.Infineon"
codium "L:\Git\Notes-Infineon\.Infineon"
code-insiders "L:\Git\Notes-Infineon\.Infineon"
```
```bash
mklink /J .kanbn "D:\5-Other-Small\Kanban\Infineon"
```

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

@ -0,0 +1,64 @@
{
"files.eol": "\n",
"[markdown]": {
"editor.wordWrap": "off"
},
"cSpell.words": [
"Beelink",
"Hynix",
"Infineon",
"Kanban",
"mikepharesjr",
"Nexcloud",
"Nextcloud",
"nmap",
"Omni",
"PDSF",
"Syncthing",
"Tibco"
],
"files.exclude": {
"**/node_modules": true
},
"files.watcherExclude": {
"**/node_modules": true
},
"foam.files.ignore": [
".foam/**/*",
".stfolder/**/*",
".UserSecrets/**/*",
"**/_layouts/**/*",
"**/_site/**/*",
"**/.vscode/**/*",
"**/node_modules/**/*"
],
"kanbn.showBurndownButton": false,
"kanbn.showSprintButton": false,
"foam.links.hover.enable": false,
"foam.placeholders.exclude": [".kanbn/Archive/**/*"],
"foam.orphans.exclude": [
".Applications/**/*",
".DevOps/**/*",
".Fab/**/*",
".journal/**/*"
],
"foam.graph.style": {
"background": "#202020",
"node": {
"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"
}
}
}

29
.vscode/tasks.json vendored Normal file
View File

@ -0,0 +1,29 @@
{
"version": "2.0.0",
"tasks": [
{
"label": "File-Folder-Helper AOT s M Infineon _-Review",
"type": "shell",
"command": "L:/DevOps/Mesa_FI/File-Folder-Helper/bin/Release/net8.0/win-x64/publish/File-Folder-Helper.exe s M L:/Git/Notes-Infineon/.Infineon -s 'L:/Git/Notes-Infineon/.Infineon/_-Review' -d 'L:/Git/Notes-Infineon/.Infineon/.vscode/Helper'",
"problemMatcher": []
},
{
"label": "Kanbn Console",
"type": "npm",
"script": "kanbn.board",
"problemMatcher": []
},
{
"label": "Kanbn Write Boad",
"type": "shell",
"command": "& kanbn board -j | L:/Git/kanbn2md/kanbn2md.exe >.kanbn/board.md",
"problemMatcher": []
},
{
"label": "Kanbn Write json",
"type": "npm",
"script": "kanbn.board.json",
"problemMatcher": []
}
]
}