Mostly Markdown
This commit is contained in:
parent
2cc854d7b2
commit
4c5771b688
@ -1,3 +1,11 @@
|
|||||||
|
[*.md]
|
||||||
|
end_of_line = crlf
|
||||||
|
file_header_template = unset
|
||||||
|
indent_size = 2
|
||||||
|
indent_style = space
|
||||||
|
insert_final_newline = false
|
||||||
|
root = true
|
||||||
|
tab_width = 2
|
||||||
[*.cs]
|
[*.cs]
|
||||||
csharp_indent_block_contents = true
|
csharp_indent_block_contents = true
|
||||||
csharp_indent_braces = false
|
csharp_indent_braces = false
|
||||||
|
11
.foam/templates/daily-note.md
Normal file
11
.foam/templates/daily-note.md
Normal file
@ -0,0 +1,11 @@
|
|||||||
|
---
|
||||||
|
type: daily-note
|
||||||
|
created: ${CURRENT_YEAR}-${CURRENT_MONTH}-${CURRENT_DATE}T${CURRENT_HOUR}:${CURRENT_MINUTE}:${CURRENT_SECOND}.000Z
|
||||||
|
updated: ${CURRENT_YEAR}-${CURRENT_MONTH}-${CURRENT_DATE}T${CURRENT_HOUR}:${CURRENT_MINUTE}:${CURRENT_SECOND}.000Z
|
||||||
|
foam_template:
|
||||||
|
filepath: ".journal/$FOAM_DATE_YEAR/Week-$FOAM_DATE_WEEK/$FOAM_SLUG.md"
|
||||||
|
---
|
||||||
|
|
||||||
|
# $FOAM_TITLE $CURRENT_DAY_NAME
|
||||||
|
|
||||||
|
- ${1:$FOAM_TITLE}
|
10
.foam/templates/new-kanbn.md
Normal file
10
.foam/templates/new-kanbn.md
Normal file
@ -0,0 +1,10 @@
|
|||||||
|
---
|
||||||
|
type: kanbn
|
||||||
|
created: ${CURRENT_YEAR}-${CURRENT_MONTH}-${CURRENT_DATE}T${CURRENT_HOUR}:${CURRENT_MINUTE}:${CURRENT_SECOND}.000Z
|
||||||
|
updated: ${CURRENT_YEAR}-${CURRENT_MONTH}-${CURRENT_DATE}T${CURRENT_HOUR}:${CURRENT_MINUTE}:${CURRENT_SECOND}.000Z
|
||||||
|
assigned: ""
|
||||||
|
foam_template:
|
||||||
|
filepath: ".kanbn/tasks/$FOAM_SLUG.md"
|
||||||
|
---
|
||||||
|
|
||||||
|
# $FOAM_TITLE
|
@ -4,17 +4,7 @@ created: ${CURRENT_YEAR}-${CURRENT_MONTH}-${CURRENT_DATE}T${CURRENT_HOUR}:${CURR
|
|||||||
updated: ${CURRENT_YEAR}-${CURRENT_MONTH}-${CURRENT_DATE}T${CURRENT_HOUR}:${CURRENT_MINUTE}:${CURRENT_SECOND}.000Z
|
updated: ${CURRENT_YEAR}-${CURRENT_MONTH}-${CURRENT_DATE}T${CURRENT_HOUR}:${CURRENT_MINUTE}:${CURRENT_SECOND}.000Z
|
||||||
assigned: ""
|
assigned: ""
|
||||||
foam_template:
|
foam_template:
|
||||||
filepath: '_-Review/$FOAM_SLUG.md'
|
filepath: "_-Review/$FOAM_SLUG.md"
|
||||||
---
|
---
|
||||||
|
|
||||||
# ${1:$TM_FILENAME_BASE}
|
# ${1:$TM_FILENAME_BASE}
|
||||||
|
|
||||||
${RANDOM}
|
|
||||||
|
|
||||||
## Sub-tasks
|
|
||||||
|
|
||||||
- [x] ${2:$TM_FILENAME_BASE}
|
|
||||||
|
|
||||||
### Relations
|
|
||||||
|
|
||||||
- ${3:$TM_FILENAME_BASE}
|
|
||||||
|
10
.foam/templates/new-topic.md
Normal file
10
.foam/templates/new-topic.md
Normal file
@ -0,0 +1,10 @@
|
|||||||
|
---
|
||||||
|
type: topic
|
||||||
|
created: ${CURRENT_YEAR}-${CURRENT_MONTH}-${CURRENT_DATE}T${CURRENT_HOUR}:${CURRENT_MINUTE}:${CURRENT_SECOND}.000Z
|
||||||
|
updated: ${CURRENT_YEAR}-${CURRENT_MONTH}-${CURRENT_DATE}T${CURRENT_HOUR}:${CURRENT_MINUTE}:${CURRENT_SECOND}.000Z
|
||||||
|
assigned: ""
|
||||||
|
foam_template:
|
||||||
|
filepath: "_-Review/$FOAM_SLUG.md"
|
||||||
|
---
|
||||||
|
|
||||||
|
# ${1:$TM_FILENAME_BASE}
|
@ -1,6 +1,10 @@
|
|||||||
<style>
|
<style>
|
||||||
created { color: gray }
|
created {
|
||||||
relations { color: Green }
|
color: gray;
|
||||||
|
}
|
||||||
|
relations {
|
||||||
|
color: Green;
|
||||||
|
}
|
||||||
</style>
|
</style>
|
||||||
|
|
||||||
| Maybe
|
| Maybe
|
||||||
|
BIN
.kanbn/board.md
BIN
.kanbn/board.md
Binary file not shown.
@ -1,29 +1,28 @@
|
|||||||
.kanbn-column-wip .kanbn-column-task-list {
|
.kanbn-column-wip .kanbn-column-task-list {
|
||||||
border-color: #6929c4;
|
border-color: #6929c4;
|
||||||
}
|
}
|
||||||
.kanbn-column-next .kanbn-column-task-list {
|
.kanbn-column-next .kanbn-column-task-list {
|
||||||
border-color: #1192e8;
|
border-color: #1192e8;
|
||||||
}
|
}
|
||||||
.kanbn-column-wait .kanbn-column-task-list {
|
.kanbn-column-wait .kanbn-column-task-list {
|
||||||
border-color: #005d5d;
|
border-color: #005d5d;
|
||||||
}
|
}
|
||||||
.kanbn-column-later .kanbn-column-task-list {
|
.kanbn-column-later .kanbn-column-task-list {
|
||||||
border-color: #9f1853;
|
border-color: #9f1853;
|
||||||
}
|
}
|
||||||
.kanbn-column-maybe .kanbn-column-task-list {
|
.kanbn-column-maybe .kanbn-column-task-list {
|
||||||
border-color: #fa4d56;
|
border-color: #fa4d56;
|
||||||
}
|
}
|
||||||
.kanbn-column-friday .kanbn-column-task-list {
|
.kanbn-column-friday .kanbn-column-task-list {
|
||||||
border-color: #570408;
|
border-color: #570408;
|
||||||
}
|
}
|
||||||
.kanbn-column-done .kanbn-column-task-list {
|
.kanbn-column-done .kanbn-column-task-list {
|
||||||
border-color: #198038;
|
border-color: #198038;
|
||||||
}
|
}
|
||||||
.kanbn-task-data-workload {
|
.kanbn-task-data-workload {
|
||||||
display: none;
|
display: none;
|
||||||
}
|
}
|
||||||
.kanbn-task-data-relation {
|
.kanbn-task-data-relation {
|
||||||
display: block;
|
display: block;
|
||||||
color: #198038;
|
color: #198038;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -1,10 +1,12 @@
|
|||||||
---
|
---
|
||||||
startedColumns:
|
startedColumns:
|
||||||
- 'In Progress'
|
- "In Progress"
|
||||||
completedColumns:
|
completedColumns:
|
||||||
- Done
|
- Done
|
||||||
dateFormat: mm/dd
|
dateFormat: mm/dd
|
||||||
taskTemplate: '^+^_${overdue ? ''^R'' : ''''}${name}^: ${relations ? (''\n^-^/^g'' + relations.reduce((accumulator, currentValue) => accumulator.task + currentValue.task + '' '', '''')) : ''''}'
|
taskTemplate: '^+^_${overdue ? ''^R'' : ''''}${name}^: ${relations ? (''\n^-^/^g'' + relations.reduce((accumulator, currentValue) => accumulator.task + currentValue.task + '' '', '''')) : ''''}'
|
||||||
|
created: 2023-07-05T22:17:38.271Z
|
||||||
|
updated: 2023-07-05T22:39:48.691Z
|
||||||
---
|
---
|
||||||
|
|
||||||
# View-by-Distance
|
# View-by-Distance
|
||||||
@ -12,18 +14,18 @@ taskTemplate: '^+^_${overdue ? ''^R'' : ''''}${name}^: ${relations ? (''\n^-^/^g
|
|||||||
## Backlog
|
## Backlog
|
||||||
|
|
||||||
- [asdf](tasks/asdf.md)
|
- [asdf](tasks/asdf.md)
|
||||||
|
- [use-photo-prism-to-map](tasks/use-photo-prism-to-map.md)
|
||||||
|
- [google-timeline-for-geo](tasks/google-timeline-for-geo.md)
|
||||||
|
- [import-face-region-metadata](tasks/import-face-region-metadata.md)
|
||||||
- [merge-scan-photos](tasks/merge-scan-photos.md)
|
- [merge-scan-photos](tasks/merge-scan-photos.md)
|
||||||
- [setup-syncthing-server](tasks/setup-syncthing-server.md)
|
- [setup-syncthing-server](tasks/setup-syncthing-server.md)
|
||||||
- [google-timeline-for-geo](tasks/google-timeline-for-geo.md)
|
|
||||||
- [use-photo-prism-to-map](tasks/use-photo-prism-to-map.md)
|
|
||||||
- [import-face-region-metadata](tasks/import-face-region-metadata.md)
|
|
||||||
- [go-back-to-index-for-sort](tasks/go-back-to-index-for-sort.md)
|
- [go-back-to-index-for-sort](tasks/go-back-to-index-for-sort.md)
|
||||||
|
|
||||||
## Todo
|
## Todo
|
||||||
|
|
||||||
- [determine-if-location-container-collection-is-needed-in-get-faces](tasks/determine-if-location-container-collection-is-needed-in-get-faces.md)
|
- [determine-if-location-container-collection-is-needed-in-get-faces](tasks/determine-if-location-container-collection-is-needed-in-get-faces.md)
|
||||||
- [merge-kristy-files](tasks/merge-kristy-files.md)
|
|
||||||
- [import-know-faces-into-db](tasks/import-know-faces-into-db.md)
|
- [import-know-faces-into-db](tasks/import-know-faces-into-db.md)
|
||||||
|
- [merge-kristy-files](tasks/merge-kristy-files.md)
|
||||||
- [compression-only-difference](tasks/compression-only-difference.md)
|
- [compression-only-difference](tasks/compression-only-difference.md)
|
||||||
- [set-date-taken-when-missing](tasks/set-date-taken-when-missing.md)
|
- [set-date-taken-when-missing](tasks/set-date-taken-when-missing.md)
|
||||||
- [skip-metadata-load-after-first-each-day](tasks/skip-metadata-load-after-first-each-day.md)
|
- [skip-metadata-load-after-first-each-day](tasks/skip-metadata-load-after-first-each-day.md)
|
||||||
@ -37,6 +39,6 @@ taskTemplate: '^+^_${overdue ? ''^R'' : ''''}${name}^: ${relations ? (''\n^-^/^g
|
|||||||
## Done
|
## Done
|
||||||
|
|
||||||
- [eof-error](tasks/eof-error.md)
|
- [eof-error](tasks/eof-error.md)
|
||||||
- [setup-photo-prism-again-in-wsl-docker](tasks/setup-photo-prism-again-in-wsl-docker.md)
|
|
||||||
- [run-scan-originals](tasks/run-scan-originals.md)
|
- [run-scan-originals](tasks/run-scan-originals.md)
|
||||||
- [shrink-percent](tasks/shrink-percent.md)
|
- [shrink-percent](tasks/shrink-percent.md)
|
||||||
|
- [setup-photo-prism-again-in-wsl-docker](tasks/setup-photo-prism-again-in-wsl-docker.md)
|
||||||
|
@ -1,13 +1,14 @@
|
|||||||
---
|
---
|
||||||
created: 2023-06-12T21:54:44.803Z
|
created: 2023-06-12T21:54:44.803Z
|
||||||
updated: 2023-06-12T21:54:44.803Z
|
updated: 2023-07-08T21:20:54.668Z
|
||||||
assigned: ""
|
assigned: ""
|
||||||
progress: 0
|
progress: 0
|
||||||
tags: []
|
tags: []
|
||||||
status: "1-Backlog"
|
status: "1-Backlog"
|
||||||
|
type: note
|
||||||
---
|
---
|
||||||
|
|
||||||
# asdf
|
# Asdf
|
||||||
|
|
||||||
## Sub-tasks
|
## Sub-tasks
|
||||||
|
|
||||||
|
@ -1,13 +1,14 @@
|
|||||||
---
|
---
|
||||||
created: 2023-06-12T21:54:44.803Z
|
created: 2023-06-30T04:24:26.054Z
|
||||||
updated: 2023-06-12T21:54:44.803Z
|
updated: 2023-07-08T21:21:03.057Z
|
||||||
assigned: ""
|
assigned: ""
|
||||||
progress: 0
|
progress: 0
|
||||||
tags: []
|
tags: []
|
||||||
status: "1-Backlog"
|
status: "2-Todo"
|
||||||
|
type: note
|
||||||
---
|
---
|
||||||
|
|
||||||
# compression-only-difference
|
# Compression Only Difference
|
||||||
|
|
||||||
## Sub-tasks
|
## Sub-tasks
|
||||||
|
|
||||||
|
@ -1,13 +1,14 @@
|
|||||||
---
|
---
|
||||||
created: 2023-06-24T02:12:00.629Z
|
created: 2023-06-24T02:12:00.629Z
|
||||||
updated: 2023-06-24T02:12:47.758Z
|
updated: 2023-07-08T21:21:03.774Z
|
||||||
assigned: ""
|
assigned: ""
|
||||||
progress: 0
|
progress: 0
|
||||||
tags: []
|
tags: []
|
||||||
status: "2-Todo"
|
status: "2-Todo"
|
||||||
|
type: note
|
||||||
---
|
---
|
||||||
|
|
||||||
# determine-if-location-container-collection-is-needed-in-get-faces
|
# Determine if Location Container Collection Is Needed in Get Faces
|
||||||
|
|
||||||
```c#
|
```c#
|
||||||
locations = Shared.Models.Stateless.Methods.ILocation.GetLocations(collection, results, mappingFromPhotoPrismCollection, _RectangleIntersectMinimum);
|
locations = Shared.Models.Stateless.Methods.ILocation.GetLocations(collection, results, mappingFromPhotoPrismCollection, _RectangleIntersectMinimum);
|
||||||
|
@ -1,13 +1,14 @@
|
|||||||
---
|
---
|
||||||
created: 2023-06-12T21:55:20.591Z
|
created: 2023-06-12T21:55:20.591Z
|
||||||
updated: 2023-06-18T15:18:01.941Z
|
updated: 2023-07-08T21:21:04.351Z
|
||||||
assigned: ""
|
assigned: ""
|
||||||
progress: 0
|
progress: 0
|
||||||
tags: []
|
tags: []
|
||||||
status: "4-Done"
|
status: "4-Done"
|
||||||
|
type: note
|
||||||
---
|
---
|
||||||
|
|
||||||
# eof-error
|
# Eof Error
|
||||||
|
|
||||||
```bash
|
```bash
|
||||||
C:/Docker/photoprism/originals/()/_ _ _/84/-50458384.jpg
|
C:/Docker/photoprism/originals/()/_ _ _/84/-50458384.jpg
|
||||||
|
@ -1,15 +1,16 @@
|
|||||||
---
|
---
|
||||||
created: 2023-06-18T20:29:10.288Z
|
created: 2023-06-18T20:29:10.288Z
|
||||||
updated: 2023-06-19T01:50:22.660Z
|
updated: 2023-07-08T21:21:04.820Z
|
||||||
assigned: ""
|
assigned: ""
|
||||||
progress: 0
|
progress: 0
|
||||||
tags: []
|
tags: []
|
||||||
status: "3-In Progress"
|
status: "3-In Progress"
|
||||||
|
type: note
|
||||||
---
|
---
|
||||||
|
|
||||||
# find-incorrectly-mapped-faces
|
# Find Incorrectly Mapped Faces
|
||||||
|
|
||||||
- Added _RangeDistanceToleranceAverage to rename ~200 files to *.ukn
|
- Added \_RangeDistanceToleranceAverage to rename ~200 files to \*.ukn
|
||||||
|
|
||||||
## Sub-tasks
|
## Sub-tasks
|
||||||
|
|
||||||
|
@ -1,10 +1,14 @@
|
|||||||
---
|
---
|
||||||
|
created: 2023-07-05T22:17:38.271Z
|
||||||
|
updated: 2023-07-08T21:21:06.218Z
|
||||||
|
status: "1-Backlog"
|
||||||
|
type: note
|
||||||
---
|
---
|
||||||
|
|
||||||
# go-back-to-index-for-sort
|
# Go Back to Index for Sort
|
||||||
|
|
||||||
## Sub-tasks
|
## Sub-tasks
|
||||||
|
|
||||||
- [ ] New file for index to to id
|
- [ ] New file for index to to id
|
||||||
- [ ] Count backwards
|
- [ ] Count backwards
|
||||||
- [ ] Maybe skip some for scan images
|
- [ ] Maybe skip some for scan images
|
||||||
|
@ -1,13 +1,14 @@
|
|||||||
---
|
---
|
||||||
created: 2023-06-25T15:26:35.170Z
|
created: 2023-06-25T15:26:35.170Z
|
||||||
updated: 2023-06-25T15:29:50.594Z
|
updated: 2023-07-08T21:21:06.219Z
|
||||||
assigned: ""
|
assigned: ""
|
||||||
progress: 0
|
progress: 0
|
||||||
tags: []
|
tags: []
|
||||||
status: "2-Todo"
|
status: "1-Backlog"
|
||||||
|
type: note
|
||||||
---
|
---
|
||||||
|
|
||||||
# google-timeline-for-geo
|
# Google Timeline for Geo
|
||||||
|
|
||||||
## Sub-tasks
|
## Sub-tasks
|
||||||
|
|
||||||
|
@ -1,13 +1,14 @@
|
|||||||
---
|
---
|
||||||
created: 2023-06-19T21:38:12.818Z
|
created: 2023-06-19T21:38:12.818Z
|
||||||
updated: 2023-06-19T21:38:12.818Z
|
updated: 2023-07-08T21:21:06.219Z
|
||||||
assigned: ""
|
assigned: ""
|
||||||
progress: 0
|
progress: 0
|
||||||
tags: []
|
tags: []
|
||||||
status: "2-Todo"
|
status: "1-Backlog"
|
||||||
|
type: note
|
||||||
---
|
---
|
||||||
|
|
||||||
# import-face-region-metadata
|
# Import Face Region Metadata
|
||||||
|
|
||||||
- [ ] review https://github.com/kvalev/photoprism/pull/59/files#
|
- [ ] review https://github.com/kvalev/photoprism/pull/59/files#
|
||||||
|
|
||||||
|
@ -1,13 +1,14 @@
|
|||||||
---
|
---
|
||||||
created: 2023-06-12T21:54:44.803Z
|
created: 2023-06-12T21:54:44.803Z
|
||||||
updated: 2023-06-25T01:24:50.138Z
|
updated: 2023-07-08T21:21:06.220Z
|
||||||
assigned: ""
|
assigned: ""
|
||||||
progress: 0
|
progress: 0
|
||||||
tags: []
|
tags: []
|
||||||
status: "3-In Progress"
|
status: "2-Todo"
|
||||||
|
type: note
|
||||||
---
|
---
|
||||||
|
|
||||||
# import-know-faces-into-db
|
# Import Know Faces Into Db
|
||||||
|
|
||||||
```bash
|
```bash
|
||||||
# locating data volumes in docker desktop windows
|
# locating data volumes in docker desktop windows
|
||||||
@ -21,11 +22,11 @@ docker compose exec photoprism photoprism restore -i -f
|
|||||||
```
|
```
|
||||||
|
|
||||||
- After changes to code:
|
- After changes to code:
|
||||||
- 50 ~230 and still has wrong
|
- 50 ~230 and still has wrong
|
||||||
- 66 198 and still has wrong
|
- 66 198 and still has wrong
|
||||||
- 75 145 and still has wrong
|
- 75 145 and still has wrong
|
||||||
- 85 81 and still has wrong (Bodhi and Hudson)
|
- 85 81 and still has wrong (Bodhi and Hudson)
|
||||||
- 90 50 and still has wrong (Chelsea and Hudson)
|
- 90 50 and still has wrong (Chelsea and Hudson)
|
||||||
|
|
||||||
## Sub-tasks
|
## Sub-tasks
|
||||||
|
|
||||||
|
@ -1,13 +1,14 @@
|
|||||||
---
|
---
|
||||||
created: 2023-06-25T16:35:28.627Z
|
created: 2023-06-25T16:35:28.627Z
|
||||||
updated: 2023-06-25T16:35:35.404Z
|
updated: 2023-07-08T21:21:06.221Z
|
||||||
assigned: ""
|
assigned: ""
|
||||||
progress: 0
|
progress: 0
|
||||||
tags: []
|
tags: []
|
||||||
status: "2-Todo"
|
status: "2-Todo"
|
||||||
|
type: note
|
||||||
---
|
---
|
||||||
|
|
||||||
# merge-kristy-files
|
# Merge Kristy Files
|
||||||
|
|
||||||
## Sub-tasks
|
## Sub-tasks
|
||||||
|
|
||||||
|
@ -1,13 +1,14 @@
|
|||||||
---
|
---
|
||||||
created: 2023-06-12T21:54:44.803Z
|
created: 2023-06-25T16:38:23.750Z
|
||||||
updated: 2023-06-12T21:54:44.803Z
|
updated: 2023-07-08T21:21:06.221Z
|
||||||
assigned: ""
|
assigned: ""
|
||||||
progress: 0
|
progress: 0
|
||||||
tags: []
|
tags: []
|
||||||
status: "1-Backlog"
|
status: "1-Backlog"
|
||||||
|
type: note
|
||||||
---
|
---
|
||||||
|
|
||||||
# merge-scan-photos
|
# Merge Scan Photos
|
||||||
|
|
||||||
- Inform about the few file name duplicates
|
- Inform about the few file name duplicates
|
||||||
|
|
||||||
|
@ -1,13 +1,14 @@
|
|||||||
---
|
---
|
||||||
created: 2023-06-24T02:13:16.426Z
|
created: 2023-06-24T02:13:16.426Z
|
||||||
updated: 2023-06-24T02:13:20.545Z
|
updated: 2023-07-08T21:21:06.222Z
|
||||||
assigned: ""
|
assigned: ""
|
||||||
progress: 0
|
progress: 0
|
||||||
tags: []
|
tags: []
|
||||||
status: "3-In Progress"
|
status: "3-In Progress"
|
||||||
|
type: note
|
||||||
---
|
---
|
||||||
|
|
||||||
# nef-support
|
# Nef Support
|
||||||
|
|
||||||
## Sub-tasks
|
## Sub-tasks
|
||||||
|
|
||||||
|
@ -1,13 +1,14 @@
|
|||||||
---
|
---
|
||||||
created: 2023-06-12T21:54:44.810Z
|
created: 2023-06-12T21:54:44.810Z
|
||||||
updated: 2023-06-25T16:30:22.805Z
|
updated: 2023-07-08T21:21:06.222Z
|
||||||
assigned: ""
|
assigned: ""
|
||||||
progress: 0
|
progress: 0
|
||||||
tags: []
|
tags: []
|
||||||
status: "4-Done"
|
status: "4-Done"
|
||||||
|
type: note
|
||||||
---
|
---
|
||||||
|
|
||||||
# run-scan-originals
|
# Run Scan Originals
|
||||||
|
|
||||||
## Sub-tasks
|
## Sub-tasks
|
||||||
|
|
||||||
|
@ -1,8 +1,12 @@
|
|||||||
---
|
---
|
||||||
|
created: 2023-07-05T22:17:38.271Z
|
||||||
|
updated: 2023-07-08T21:21:06.223Z
|
||||||
|
status: "2-Todo"
|
||||||
|
type: note
|
||||||
---
|
---
|
||||||
|
|
||||||
# set-date-taken-when-missing
|
# Set Date Taken When Missing
|
||||||
|
|
||||||
## Sub-tasks
|
## Sub-tasks
|
||||||
|
|
||||||
- [ ]
|
- [ ]
|
||||||
|
@ -1,13 +1,14 @@
|
|||||||
---
|
---
|
||||||
created: 2023-06-12T17:28:20.080Z
|
created: 2023-07-05T22:34:47.537Z
|
||||||
updated: 2023-06-25T16:29:52.487Z
|
updated: 2023-07-08T21:21:06.223Z
|
||||||
assigned: ""
|
assigned: ""
|
||||||
progress: 0
|
progress: 0
|
||||||
tags: []
|
tags: []
|
||||||
status: "4-Done"
|
status: "4-Done"
|
||||||
|
type: note
|
||||||
---
|
---
|
||||||
|
|
||||||
# Setup PhotoPrism again in WSL / Docker
|
# Setup Photo Prism Again in Wsl Docker
|
||||||
|
|
||||||
## Sub-tasks
|
## Sub-tasks
|
||||||
|
|
||||||
|
@ -1,13 +1,14 @@
|
|||||||
---
|
---
|
||||||
created: 2023-06-12T21:54:44.803Z
|
created: 2023-06-25T16:42:24.220Z
|
||||||
updated: 2023-06-12T21:54:44.803Z
|
updated: 2023-07-08T21:21:06.224Z
|
||||||
assigned: ""
|
assigned: ""
|
||||||
progress: 0
|
progress: 0
|
||||||
tags: []
|
tags: []
|
||||||
status: "1-Backlog"
|
status: "1-Backlog"
|
||||||
|
type: note
|
||||||
---
|
---
|
||||||
|
|
||||||
# setup-syncthing-server
|
# Setup Syncthing Server
|
||||||
|
|
||||||
- Share one folder at a time
|
- Share one folder at a time
|
||||||
- Use push only feature
|
- Use push only feature
|
||||||
|
@ -1,13 +1,14 @@
|
|||||||
---
|
---
|
||||||
created: 2023-06-19T21:39:09.103Z
|
created: 2023-06-19T21:39:09.103Z
|
||||||
updated: 2023-06-25T16:24:52.333Z
|
updated: 2023-07-08T21:21:06.224Z
|
||||||
assigned: ""
|
assigned: ""
|
||||||
progress: 0
|
progress: 0
|
||||||
tags: []
|
tags: []
|
||||||
status: "4-Done"
|
status: "4-Done"
|
||||||
|
type: note
|
||||||
---
|
---
|
||||||
|
|
||||||
# shrink-percent
|
# Shrink Percent
|
||||||
|
|
||||||
## Sub-tasks
|
## Sub-tasks
|
||||||
|
|
||||||
|
@ -1,8 +1,12 @@
|
|||||||
---
|
---
|
||||||
|
created: 2023-07-05T22:17:38.271Z
|
||||||
|
updated: 2023-07-08T21:21:06.224Z
|
||||||
|
status: "2-Todo"
|
||||||
|
type: note
|
||||||
---
|
---
|
||||||
|
|
||||||
# skip-metadata-load-after-first-each-day
|
# Skip Metadata Load After First Each Day
|
||||||
|
|
||||||
## Sub-tasks
|
## Sub-tasks
|
||||||
|
|
||||||
- [ ] When E_... is newer then today don't search json files for metadata and resize
|
- [ ] When E\_... is newer then today don't search json files for metadata and resize
|
||||||
|
@ -1,13 +1,14 @@
|
|||||||
---
|
---
|
||||||
created: 2023-06-23T13:56:11.956Z
|
created: 2023-06-23T13:56:11.956Z
|
||||||
updated: 2023-06-24T15:11:14.038Z
|
updated: 2023-07-08T21:21:06.224Z
|
||||||
assigned: ""
|
assigned: ""
|
||||||
progress: 0
|
progress: 0
|
||||||
tags: []
|
tags: []
|
||||||
status: "3-In Progress"
|
status: "3-In Progress"
|
||||||
|
type: note
|
||||||
---
|
---
|
||||||
|
|
||||||
# use-eyes-to-find-orientation
|
# Use Eyes to Find Orientation
|
||||||
|
|
||||||
## Sub-tasks
|
## Sub-tasks
|
||||||
|
|
||||||
|
@ -1,13 +1,14 @@
|
|||||||
---
|
---
|
||||||
created: 2023-06-19T21:38:12.818Z
|
created: 2023-06-19T21:38:12.818Z
|
||||||
updated: 2023-06-19T21:38:12.818Z
|
updated: 2023-07-08T21:21:06.224Z
|
||||||
assigned: ""
|
assigned: ""
|
||||||
progress: 0
|
progress: 0
|
||||||
tags: []
|
tags: []
|
||||||
status: "2-Todo"
|
status: "1-Backlog"
|
||||||
|
type: note
|
||||||
---
|
---
|
||||||
|
|
||||||
# use-photo-prism-to-map
|
# Use Photo Prism to Map
|
||||||
|
|
||||||
## Sub-tasks
|
## Sub-tasks
|
||||||
|
|
||||||
|
9
.prettierignore
Normal file
9
.prettierignore
Normal file
@ -0,0 +1,9 @@
|
|||||||
|
|
||||||
|
**/.vscode/*
|
||||||
|
|
||||||
|
[Bb]in/
|
||||||
|
[Oo]bj/
|
||||||
|
|
||||||
|
*.json
|
||||||
|
|
||||||
|
*.zip
|
46
.vscode/settings.json
vendored
46
.vscode/settings.json
vendored
@ -39,13 +39,57 @@
|
|||||||
"Upsample",
|
"Upsample",
|
||||||
"Vericruz"
|
"Vericruz"
|
||||||
],
|
],
|
||||||
|
"files.watcherExclude": {
|
||||||
|
"**/node_modules": true
|
||||||
|
},
|
||||||
"cSpell.enabled": true,
|
"cSpell.enabled": true,
|
||||||
"files.exclude": {
|
"files.exclude": {
|
||||||
"**/.git": false
|
"**/.git": false,
|
||||||
|
"**/node_modules": true
|
||||||
},
|
},
|
||||||
"coverage-gutters.coverageBaseDir": "./.vscode/ReportGenerator/Cobertura/*",
|
"coverage-gutters.coverageBaseDir": "./.vscode/ReportGenerator/Cobertura/*",
|
||||||
"extensions.ignoreRecommendations": true,
|
"extensions.ignoreRecommendations": true,
|
||||||
"[markdown]": {
|
"[markdown]": {
|
||||||
"editor.wordWrap": "off"
|
"editor.wordWrap": "off"
|
||||||
|
},
|
||||||
|
"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"
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
27
package-lock.json
generated
Normal file
27
package-lock.json
generated
Normal file
@ -0,0 +1,27 @@
|
|||||||
|
{
|
||||||
|
"name": "View-by-Distance-MKLink-Console",
|
||||||
|
"lockfileVersion": 3,
|
||||||
|
"requires": true,
|
||||||
|
"packages": {
|
||||||
|
"": {
|
||||||
|
"devDependencies": {
|
||||||
|
"prettier": "3.0.0"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"node_modules/prettier": {
|
||||||
|
"version": "3.0.0",
|
||||||
|
"resolved": "https://registry.npmjs.org/prettier/-/prettier-3.0.0.tgz",
|
||||||
|
"integrity": "sha512-zBf5eHpwHOGPC47h0zrPyNn+eAEIdEzfywMoYn2XPi0P44Zp0tSq64rq0xAREh4auw2cJZHo9QUob+NqCQky4g==",
|
||||||
|
"dev": true,
|
||||||
|
"bin": {
|
||||||
|
"prettier": "bin/prettier.cjs"
|
||||||
|
},
|
||||||
|
"engines": {
|
||||||
|
"node": ">=14"
|
||||||
|
},
|
||||||
|
"funding": {
|
||||||
|
"url": "https://github.com/prettier/prettier?sponsor=1"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
@ -1,5 +1,7 @@
|
|||||||
{
|
{
|
||||||
"scripts": {
|
"scripts": {
|
||||||
|
"prettier.check": "prettier . --check",
|
||||||
|
"prettier.write": "prettier . --write",
|
||||||
"Alpha": "ABCDEFGHIJKLMNOPQRSTUVWXYZ",
|
"Alpha": "ABCDEFGHIJKLMNOPQRSTUVWXYZ",
|
||||||
"build": "dotnet build --runtime win-x64 --self-contained",
|
"build": "dotnet build --runtime win-x64 --self-contained",
|
||||||
"cobertura": "ReportGenerator -reports:.vscode/TestResults/*/coverage.cobertura.xml -targetDir:.vscode/ReportGenerator/Cobertura/1d194f36-30a9-40e0-bf72-2ac275bd2fe2 -reportTypes:Cobertura",
|
"cobertura": "ReportGenerator -reports:.vscode/TestResults/*/coverage.cobertura.xml -targetDir:.vscode/ReportGenerator/Cobertura/1d194f36-30a9-40e0-bf72-2ac275bd2fe2 -reportTypes:Cobertura",
|
||||||
@ -20,5 +22,8 @@
|
|||||||
"Z-Compare-Publish-": "dotnet publish \"Compare\\Compare.csproj\" --configuration Release --runtime win-x64 --verbosity normal --self-contained true -o \"D:\\net6.0\\View-by-Distance\\Compare\\\"",
|
"Z-Compare-Publish-": "dotnet publish \"Compare\\Compare.csproj\" --configuration Release --runtime win-x64 --verbosity normal --self-contained true -o \"D:\\net6.0\\View-by-Distance\\Compare\\\"",
|
||||||
"Z-Instance-Publish-": "dotnet publish \"Instance\\Instance.csproj\" --configuration Release --runtime win-x64 --verbosity normal --self-contained true -o \"D:\\net6.0\\View-by-Distance\\Instance\\\"",
|
"Z-Instance-Publish-": "dotnet publish \"Instance\\Instance.csproj\" --configuration Release --runtime win-x64 --verbosity normal --self-contained true -o \"D:\\net6.0\\View-by-Distance\\Instance\\\"",
|
||||||
"Z-Instance-CUDA-Publish-": "dotnet publish \"Instance\\Instance.csproj\" --configuration Release --runtime win-x64 --verbosity normal --self-contained true -o \"D:\\net6.0\\View-by-Distance\\Instance-CUDA\\\""
|
"Z-Instance-CUDA-Publish-": "dotnet publish \"Instance\\Instance.csproj\" --configuration Release --runtime win-x64 --verbosity normal --self-contained true -o \"D:\\net6.0\\View-by-Distance\\Instance-CUDA\\\""
|
||||||
|
},
|
||||||
|
"devDependencies": {
|
||||||
|
"prettier": "3.0.0"
|
||||||
}
|
}
|
||||||
}
|
}
|
Loading…
x
Reference in New Issue
Block a user