2024-06-03
This commit is contained in:
commit
7c4134bfa0
264
.editorconfig
Normal file
264
.editorconfig
Normal file
@ -0,0 +1,264 @@
|
||||
[*.tsv]
|
||||
end_of_line = crlf
|
||||
file_header_template = unset
|
||||
indent_size = 2
|
||||
indent_style = tab
|
||||
indent_size = tab
|
||||
insert_final_newline = false
|
||||
root = true
|
||||
tab_width = 4
|
||||
[*.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]
|
||||
csharp_indent_block_contents = true
|
||||
csharp_indent_braces = false
|
||||
csharp_indent_case_contents = true
|
||||
csharp_indent_case_contents_when_block = true
|
||||
csharp_indent_labels = one_less_than_current
|
||||
csharp_indent_switch_labels = true
|
||||
csharp_new_line_before_catch = true
|
||||
csharp_new_line_before_else = true
|
||||
csharp_new_line_before_finally = true
|
||||
csharp_new_line_before_members_in_anonymous_types = true
|
||||
csharp_new_line_before_members_in_object_initializers = true
|
||||
csharp_new_line_before_open_brace = all
|
||||
csharp_new_line_between_query_expression_clauses = true
|
||||
csharp_prefer_braces = false
|
||||
csharp_prefer_qualified_reference = true:error
|
||||
csharp_prefer_simple_default_expression = true:warning
|
||||
csharp_prefer_simple_using_statement = true:warning
|
||||
csharp_prefer_static_local_function = true:warning
|
||||
csharp_preferred_modifier_order = public,private,protected,internal,static,extern,new,virtual,abstract,sealed,override,readonly,unsafe,volatile,async
|
||||
csharp_preserve_single_line_blocks = true
|
||||
csharp_preserve_single_line_statements = false
|
||||
csharp_space_after_cast = false
|
||||
csharp_space_after_colon_in_inheritance_clause = true
|
||||
csharp_space_after_comma = true
|
||||
csharp_space_after_dot = false
|
||||
csharp_space_after_keywords_in_control_flow_statements = true
|
||||
csharp_space_after_semicolon_in_for_statement = true
|
||||
csharp_space_around_binary_operators = before_and_after
|
||||
csharp_space_around_declaration_statements = false
|
||||
csharp_space_before_colon_in_inheritance_clause = true
|
||||
csharp_space_before_comma = false
|
||||
csharp_space_before_dot = false
|
||||
csharp_space_before_open_square_brackets = false
|
||||
csharp_space_before_semicolon_in_for_statement = false
|
||||
csharp_space_between_empty_square_brackets = false
|
||||
csharp_space_between_method_call_empty_parameter_list_parentheses = false
|
||||
csharp_space_between_method_call_name_and_opening_parenthesis = false
|
||||
csharp_space_between_method_call_parameter_list_parentheses = false
|
||||
csharp_space_between_method_declaration_empty_parameter_list_parentheses = false
|
||||
csharp_space_between_method_declaration_name_and_open_parenthesis = false
|
||||
csharp_space_between_method_declaration_parameter_list_parentheses = false
|
||||
csharp_space_between_parentheses = false
|
||||
csharp_space_between_square_brackets = false
|
||||
csharp_style_allow_blank_line_after_colon_in_constructor_initializer_experimental = true
|
||||
csharp_style_allow_blank_lines_between_consecutive_braces_experimental = true
|
||||
csharp_style_allow_embedded_statements_on_same_line_experimental = true
|
||||
csharp_style_conditional_delegate_call = true
|
||||
csharp_style_deconstructed_variable_declaration = false
|
||||
csharp_style_expression_bodied_accessors = when_on_single_line:warning
|
||||
csharp_style_expression_bodied_constructors = when_on_single_line:warning
|
||||
csharp_style_expression_bodied_indexers = when_on_single_line:warning
|
||||
csharp_style_expression_bodied_lambdas = when_on_single_line:warning
|
||||
csharp_style_expression_bodied_local_functions = when_on_single_line:warning
|
||||
csharp_style_expression_bodied_methods = when_on_single_line:warning
|
||||
csharp_style_expression_bodied_operators = when_on_single_line:warning
|
||||
csharp_style_expression_bodied_properties = when_on_single_line:warning
|
||||
csharp_style_implicit_object_creation_when_type_is_apparent = true:warning
|
||||
csharp_style_inlined_variable_declaration = false
|
||||
csharp_style_namespace_declarations = file_scoped:warning
|
||||
csharp_style_pattern_local_over_anonymous_function = true:warning
|
||||
csharp_style_pattern_matching_over_as_with_null_check = true:warning
|
||||
csharp_style_pattern_matching_over_is_with_cast_check = true:warning
|
||||
csharp_style_prefer_index_operator = true:warning
|
||||
csharp_style_prefer_not_pattern = true:warning
|
||||
csharp_style_prefer_null_check_over_type_check = true
|
||||
csharp_style_prefer_pattern_matching = true:warning
|
||||
csharp_style_prefer_range_operator = true:warning
|
||||
csharp_style_prefer_switch_expression = true:warning
|
||||
csharp_style_throw_expression = true
|
||||
csharp_style_unused_value_assignment_preference = discard_variable:warning
|
||||
csharp_style_unused_value_expression_statement_preference = discard_variable:warning
|
||||
csharp_style_var_elsewhere = false:warning
|
||||
csharp_style_var_for_built_in_types = false:warning
|
||||
csharp_style_var_when_type_is_apparent = false:warning
|
||||
csharp_using_directive_placement = outside_namespace
|
||||
dotnet_code_quality_unused_parameters = all
|
||||
dotnet_code_quality_unused_parameters = non_public # IDE0060: Remove unused parameter
|
||||
dotnet_code_quality.CAXXXX.api_surface = private, internal
|
||||
dotnet_diagnostic.CA1825.severity = warning # CA1823: Avoid zero-length array allocations
|
||||
dotnet_diagnostic.CA1829.severity = warning # CA1829: Use Length/Count property instead of Count() when available
|
||||
dotnet_diagnostic.CA1834.severity = warning # CA1834: Consider using 'StringBuilder.Append(char)' when applicable
|
||||
dotnet_diagnostic.IDE0001.severity = warning # IDE0001: Simplify name
|
||||
dotnet_diagnostic.IDE0004.severity = warning # IDE0004: Cast is redundant.
|
||||
dotnet_diagnostic.IDE0002.severity = warning # Simplify (member access) - System.Version.Equals("1", "2"); Version.Equals("1", "2");
|
||||
dotnet_diagnostic.IDE0005.severity = warning # Using directive is unnecessary
|
||||
dotnet_diagnostic.IDE0031.severity = warning # Use null propagation (IDE0031)
|
||||
dotnet_diagnostic.IDE0047.severity = warning # IDE0047: Parentheses can be removed
|
||||
dotnet_diagnostic.IDE0049.severity = warning # Use language keywords instead of framework type names for type references (IDE0049)
|
||||
dotnet_diagnostic.IDE0060.severity = warning # IDE0060: Remove unused parameter
|
||||
dotnet_naming_rule.abstract_method_should_be_pascal_case.severity = warning
|
||||
dotnet_naming_rule.abstract_method_should_be_pascal_case.style = pascal_case
|
||||
dotnet_naming_rule.abstract_method_should_be_pascal_case.symbols = abstract_method
|
||||
dotnet_naming_rule.class_should_be_pascal_case.severity = warning
|
||||
dotnet_naming_rule.class_should_be_pascal_case.style = pascal_case
|
||||
dotnet_naming_rule.class_should_be_pascal_case.symbols = class
|
||||
dotnet_naming_rule.delegate_should_be_pascal_case.severity = warning
|
||||
dotnet_naming_rule.delegate_should_be_pascal_case.style = pascal_case
|
||||
dotnet_naming_rule.delegate_should_be_pascal_case.symbols = delegate
|
||||
dotnet_naming_rule.enum_should_be_pascal_case.severity = warning
|
||||
dotnet_naming_rule.enum_should_be_pascal_case.style = pascal_case
|
||||
dotnet_naming_rule.enum_should_be_pascal_case.symbols = enum
|
||||
dotnet_naming_rule.event_should_be_pascal_case.severity = warning
|
||||
dotnet_naming_rule.event_should_be_pascal_case.style = pascal_case
|
||||
dotnet_naming_rule.event_should_be_pascal_case.symbols = event
|
||||
dotnet_naming_rule.interface_should_be_begins_with_i.severity = warning
|
||||
dotnet_naming_rule.interface_should_be_begins_with_i.style = begins_with_i
|
||||
dotnet_naming_rule.interface_should_be_begins_with_i.symbols = interface
|
||||
dotnet_naming_rule.method_should_be_pascal_case.severity = warning
|
||||
dotnet_naming_rule.method_should_be_pascal_case.style = pascal_case
|
||||
dotnet_naming_rule.method_should_be_pascal_case.symbols = method
|
||||
dotnet_naming_rule.non_field_members_should_be_pascal_case.severity = warning
|
||||
dotnet_naming_rule.non_field_members_should_be_pascal_case.style = pascal_case
|
||||
dotnet_naming_rule.non_field_members_should_be_pascal_case.symbols = non_field_members
|
||||
dotnet_naming_rule.private_method_should_be_pascal_case.severity = warning
|
||||
dotnet_naming_rule.private_method_should_be_pascal_case.style = pascal_case
|
||||
dotnet_naming_rule.private_method_should_be_pascal_case.symbols = private_method
|
||||
dotnet_naming_rule.private_or_internal_field_should_be_private_of_internal_field.severity = warning
|
||||
dotnet_naming_rule.private_or_internal_field_should_be_private_of_internal_field.style = private_of_internal_field
|
||||
dotnet_naming_rule.private_or_internal_field_should_be_private_of_internal_field.symbols = private_or_internal_field
|
||||
dotnet_naming_rule.private_or_internal_static_field_should_be_private_of_internal_field.severity = warning
|
||||
dotnet_naming_rule.private_or_internal_static_field_should_be_private_of_internal_field.style = private_of_internal_field
|
||||
dotnet_naming_rule.private_or_internal_static_field_should_be_private_of_internal_field.symbols = private_or_internal_static_field
|
||||
dotnet_naming_rule.property_should_be_pascal_case.severity = warning
|
||||
dotnet_naming_rule.property_should_be_pascal_case.style = pascal_case
|
||||
dotnet_naming_rule.property_should_be_pascal_case.symbols = property
|
||||
dotnet_naming_rule.public_or_protected_field_should_be_private_of_internal_field.severity = warning
|
||||
dotnet_naming_rule.public_or_protected_field_should_be_private_of_internal_field.style = private_of_internal_field
|
||||
dotnet_naming_rule.public_or_protected_field_should_be_private_of_internal_field.symbols = public_or_protected_field
|
||||
dotnet_naming_rule.static_field_should_be_pascal_case.severity = warning
|
||||
dotnet_naming_rule.static_field_should_be_pascal_case.style = pascal_case
|
||||
dotnet_naming_rule.static_field_should_be_pascal_case.symbols = static_field
|
||||
dotnet_naming_rule.static_method_should_be_pascal_case.severity = warning
|
||||
dotnet_naming_rule.static_method_should_be_pascal_case.style = pascal_case
|
||||
dotnet_naming_rule.static_method_should_be_pascal_case.symbols = static_method
|
||||
dotnet_naming_rule.struct_should_be_pascal_case.severity = warning
|
||||
dotnet_naming_rule.struct_should_be_pascal_case.style = pascal_case
|
||||
dotnet_naming_rule.struct_should_be_pascal_case.symbols = struct
|
||||
dotnet_naming_rule.types_should_be_pascal_case.severity = warning
|
||||
dotnet_naming_rule.types_should_be_pascal_case.style = pascal_case
|
||||
dotnet_naming_rule.types_should_be_pascal_case.symbols = types
|
||||
dotnet_naming_style.begins_with_i.capitalization = pascal_case
|
||||
dotnet_naming_style.begins_with_i.required_prefix = I
|
||||
dotnet_naming_style.begins_with_i.required_suffix =
|
||||
dotnet_naming_style.begins_with_i.word_separator =
|
||||
dotnet_naming_style.pascal_case.capitalization = pascal_case
|
||||
dotnet_naming_style.pascal_case.required_prefix =
|
||||
dotnet_naming_style.pascal_case.required_suffix =
|
||||
dotnet_naming_style.pascal_case.word_separator =
|
||||
dotnet_naming_style.private_of_internal_field.capitalization = pascal_case
|
||||
dotnet_naming_style.private_of_internal_field.required_prefix = _
|
||||
dotnet_naming_style.private_of_internal_field.required_suffix =
|
||||
dotnet_naming_style.private_of_internal_field.word_separator =
|
||||
dotnet_naming_symbols.abstract_method.applicable_accessibilities = public, internal, private, protected, protected_internal, private_protected
|
||||
dotnet_naming_symbols.abstract_method.applicable_kinds = method
|
||||
dotnet_naming_symbols.abstract_method.required_modifiers = abstract
|
||||
dotnet_naming_symbols.class.applicable_accessibilities = public, internal, private, protected, protected_internal, private_protected
|
||||
dotnet_naming_symbols.class.applicable_kinds = class
|
||||
dotnet_naming_symbols.class.required_modifiers =
|
||||
dotnet_naming_symbols.delegate.applicable_accessibilities = public, internal, private, protected, protected_internal, private_protected
|
||||
dotnet_naming_symbols.delegate.applicable_kinds = delegate
|
||||
dotnet_naming_symbols.delegate.required_modifiers =
|
||||
dotnet_naming_symbols.enum.applicable_accessibilities = public, internal, private, protected, protected_internal, private_protected
|
||||
dotnet_naming_symbols.enum.applicable_kinds = enum
|
||||
dotnet_naming_symbols.enum.required_modifiers =
|
||||
dotnet_naming_symbols.event.applicable_accessibilities = public, internal, private, protected, protected_internal, private_protected
|
||||
dotnet_naming_symbols.event.applicable_kinds = event
|
||||
dotnet_naming_symbols.event.required_modifiers =
|
||||
dotnet_naming_symbols.interface.applicable_accessibilities = public, internal, private, protected, protected_internal, private_protected
|
||||
dotnet_naming_symbols.interface.applicable_kinds = interface
|
||||
dotnet_naming_symbols.interface.required_modifiers =
|
||||
dotnet_naming_symbols.method.applicable_accessibilities = public
|
||||
dotnet_naming_symbols.method.applicable_kinds = method
|
||||
dotnet_naming_symbols.method.required_modifiers =
|
||||
dotnet_naming_symbols.non_field_members.applicable_accessibilities = public, internal, private, protected, protected_internal, private_protected
|
||||
dotnet_naming_symbols.non_field_members.applicable_kinds = property, event, method
|
||||
dotnet_naming_symbols.non_field_members.required_modifiers =
|
||||
dotnet_naming_symbols.private_method.applicable_accessibilities = private
|
||||
dotnet_naming_symbols.private_method.applicable_kinds = method
|
||||
dotnet_naming_symbols.private_method.required_modifiers =
|
||||
dotnet_naming_symbols.private_or_internal_field.applicable_accessibilities = internal, private, private_protected
|
||||
dotnet_naming_symbols.private_or_internal_field.applicable_kinds = field
|
||||
dotnet_naming_symbols.private_or_internal_field.required_modifiers =
|
||||
dotnet_naming_symbols.private_or_internal_static_field.applicable_accessibilities = internal, private, private_protected
|
||||
dotnet_naming_symbols.private_or_internal_static_field.applicable_kinds = field
|
||||
dotnet_naming_symbols.private_or_internal_static_field.required_modifiers = static
|
||||
dotnet_naming_symbols.property.applicable_accessibilities = public, internal, private, protected, protected_internal, private_protected
|
||||
dotnet_naming_symbols.property.applicable_kinds = property
|
||||
dotnet_naming_symbols.property.required_modifiers =
|
||||
dotnet_naming_symbols.public_or_protected_field.applicable_accessibilities = public, protected
|
||||
dotnet_naming_symbols.public_or_protected_field.applicable_kinds = field
|
||||
dotnet_naming_symbols.public_or_protected_field.required_modifiers =
|
||||
dotnet_naming_symbols.static_field.applicable_accessibilities = public, internal, private, protected, protected_internal, private_protected
|
||||
dotnet_naming_symbols.static_field.applicable_kinds = field
|
||||
dotnet_naming_symbols.static_field.required_modifiers = static
|
||||
dotnet_naming_symbols.static_method.applicable_accessibilities = public, internal, private, protected, protected_internal, private_protected
|
||||
dotnet_naming_symbols.static_method.applicable_kinds = method
|
||||
dotnet_naming_symbols.static_method.required_modifiers = static
|
||||
dotnet_naming_symbols.struct.applicable_accessibilities = public, internal, private, protected, protected_internal, private_protected
|
||||
dotnet_naming_symbols.struct.applicable_kinds = struct
|
||||
dotnet_naming_symbols.struct.required_modifiers =
|
||||
dotnet_naming_symbols.types.applicable_accessibilities = public, internal, private, protected, protected_internal, private_protected
|
||||
dotnet_naming_symbols.types.applicable_kinds = class, struct, interface, enum
|
||||
dotnet_naming_symbols.types.required_modifiers =
|
||||
dotnet_remove_unnecessary_suppression_exclusions = 0
|
||||
dotnet_separate_import_directive_groups = false
|
||||
dotnet_sort_system_directives_first = false
|
||||
dotnet_style_allow_multiple_blank_lines_experimental = false:warning
|
||||
dotnet_style_allow_statement_immediately_after_block_experimental = true
|
||||
dotnet_style_coalesce_expression = true
|
||||
dotnet_style_collection_initializer = true:warning
|
||||
dotnet_style_explicit_tuple_names = true:warning
|
||||
dotnet_style_namespace_match_folder = true
|
||||
dotnet_style_null_propagation = true:warning
|
||||
dotnet_style_object_initializer = true:warning
|
||||
dotnet_style_operator_placement_when_wrapping = beginning_of_line
|
||||
dotnet_style_parentheses_in_arithmetic_binary_operators = always_for_clarity
|
||||
dotnet_style_parentheses_in_other_binary_operators = always_for_clarity
|
||||
dotnet_style_parentheses_in_other_operators = never_if_unnecessary
|
||||
dotnet_style_parentheses_in_relational_binary_operators = always_for_clarity
|
||||
dotnet_style_predefined_type_for_locals_parameters_members = true
|
||||
dotnet_style_predefined_type_for_member_access = true:warning
|
||||
dotnet_style_prefer_auto_properties = true:warning
|
||||
dotnet_style_prefer_compound_assignment = true:warning
|
||||
dotnet_style_prefer_conditional_expression_over_assignment = false
|
||||
dotnet_style_prefer_conditional_expression_over_return = false
|
||||
dotnet_style_prefer_inferred_anonymous_type_member_names = true:warning
|
||||
dotnet_style_prefer_inferred_tuple_names = true:warning
|
||||
dotnet_style_prefer_is_null_check_over_reference_equality_method = true:warning
|
||||
dotnet_style_prefer_simplified_boolean_expressions = true:warning
|
||||
dotnet_style_prefer_simplified_interpolation = true
|
||||
dotnet_style_qualification_for_event = false:error
|
||||
dotnet_style_qualification_for_field = false
|
||||
dotnet_style_qualification_for_method = false:error
|
||||
dotnet_style_qualification_for_property = false:error
|
||||
dotnet_style_readonly_field = true:warning
|
||||
dotnet_style_require_accessibility_modifiers = for_non_interface_members
|
||||
end_of_line = crlf
|
||||
file_header_template = unset
|
||||
indent_size = 4
|
||||
indent_style = space
|
||||
insert_final_newline = false
|
||||
root = true
|
||||
tab_width = 4
|
||||
# https://docs.microsoft.com/en-us/dotnet/fundamentals/code-analysis/quality-rules/ca1822
|
||||
# https://github.com/dotnet/aspnetcore/blob/main/.editorconfig
|
||||
# https://github.com/dotnet/project-system/blob/main/.editorconfig
|
19
.gitignore
vendored
Normal file
19
.gitignore
vendored
Normal file
@ -0,0 +1,19 @@
|
||||
.kanbn
|
||||
# .LocalSystem
|
||||
.stfolder
|
||||
.stignore
|
||||
.PSReadLine
|
||||
.vscode/Helper/**
|
||||
|
||||
node_modules
|
||||
|
||||
*sync-con-flict-2023*
|
||||
sync.ffs_db
|
||||
|
||||
*.pdf
|
||||
|
||||
.etc/hosts.ics
|
||||
.etc/networks
|
||||
.etc/services
|
||||
.etc/protocol
|
||||
.etc/lmhosts.sam
|
6
.prettierignore
Normal file
6
.prettierignore
Normal file
@ -0,0 +1,6 @@
|
||||
|
||||
**/.vscode/*
|
||||
|
||||
*.json
|
||||
|
||||
*.zip
|
46
.vscode/clipboard.md
vendored
Normal file
46
.vscode/clipboard.md
vendored
Normal file
@ -0,0 +1,46 @@
|
||||
---
|
||||
type: "note"
|
||||
---
|
||||
|
||||
# Clipboard
|
||||
|
||||
```conf
|
||||
Google-Drive-CPhares0917
|
||||
/home/syncthing/google-drive-cphares0917
|
||||
D:\5-Other-Small\Google-Drive\cphares0917
|
||||
```
|
||||
|
||||
## Page 1
|
||||
|
||||
- 健身体
|
||||
- 樊翘莎
|
||||
|
||||
## Page 2
|
||||
|
||||
- 你个你的身体更好吗?你的身体是健吗?今天我给你tipes所以你的身体是更好的。今天我会说睡觉,运动,和喝水。
|
||||
- 你好我是樊翘莎我有二个哥哥还有一个姐姐。我的家有两个狗和我在五年级。我十一岁和我喜欢唱歌和画画,我会做篮球和piano我还有做choirs会唱歌。
|
||||
|
||||
|
||||
## Page 3
|
||||
|
||||
- 你睡觉你可以没有stress和你的心情是更好。你的心是更好如果你睡觉。如果你没有睡觉你的immune system不会
|
||||
- 恢复。你的重点可以是更好睡觉更多。但是你不想没有一个睡觉时间表你可以有hypertension, insulin resistance or diabetes
|
||||
|
||||
## Page 4
|
||||
|
||||
- 运动做一点一样比睡觉。你的心情更好,你的stress是更短。你可以有更好的discipline和你的responsibility是更好。你的blood circulation是更好。你的身体会练如果你会在运动。但是你不想overwork你自己和拉一个muscle。你的leadership和teamwork可以是好的。你的Acceptance是更好一点。
|
||||
|
||||
## Page 5
|
||||
|
||||
- 你的身有左右六十百分数。你的身体有很多的水可以是更热。你的body heat可以大小的depending 你喝水多小。可以有能力如果你喝水。说你会中毒你会喝水可以flush out它。 水保你的 sensitive tissues。如果你没有喝水你可以死。
|
||||
|
||||
## Page 6
|
||||
|
||||
- 你的身体和我想你健,你可以是健如果你睡觉,做运动,和喝水。睡觉和运动给你的心和你的brain好,和喝水是都的organs更好给你oxgan。它帮助一起,喝水最大的运动和都帮助你所以你会健。
|
||||
- 谢谢你们听我说。
|
||||
- 我望你的身体是健。
|
||||
- 再见你们。
|
||||
|
||||
```bash
|
||||
ssh-keygen -t ed25519
|
||||
```
|
669
.vscode/family.md
vendored
Normal file
669
.vscode/family.md
vendored
Normal file
@ -0,0 +1,669 @@
|
||||
---
|
||||
type: "note"
|
||||
---
|
||||
|
||||
# family
|
||||
|
||||
Aaron Enloe
|
||||
Aaron Freeseha
|
||||
Aaron Sanchez
|
||||
Abinash Ojha
|
||||
Abraham Lincoln
|
||||
Adam Kuiper
|
||||
Adam Looper
|
||||
Adonias Ortega
|
||||
Adrienne Lovato
|
||||
Adrienne Vigil
|
||||
Agnes Muir
|
||||
Agnes Porterfield
|
||||
Alan Loundagin
|
||||
Alan Madsen
|
||||
Alen Warker
|
||||
Alex Blair
|
||||
Alex Eudy
|
||||
Alicia Foley
|
||||
Alison Watkins
|
||||
Amanda Cocking
|
||||
Amanda Fazzino
|
||||
Amanda Roberts
|
||||
Amanda Waldschmidt
|
||||
Amber Askew
|
||||
Amy Granich
|
||||
Amy Stafford
|
||||
Amy Staley
|
||||
Andreas Schneider
|
||||
Andrew Ortega
|
||||
Andrew Palatinus
|
||||
Andrew Wardwell
|
||||
Andy Estes
|
||||
Andy Sanchez
|
||||
Angelique Tafoya
|
||||
Angie Ng
|
||||
Angie Weese
|
||||
Anita Maestas
|
||||
Anita McCorkle
|
||||
Ann Brashears
|
||||
Ann Glicco
|
||||
Anna Boenig
|
||||
Anna Rochkes
|
||||
Anne Bogensberger
|
||||
Anne Magile
|
||||
April Barrick
|
||||
Arturo Benavidez
|
||||
Ashlee Dupray
|
||||
Ashlend Loundagin
|
||||
Ashley Herman
|
||||
Ashley Patterson
|
||||
Ashlie Aragon
|
||||
Audrey Gunter
|
||||
Austin Copeland
|
||||
Austin Friedman
|
||||
Avayla Lumbre
|
||||
Aydan Loundagin
|
||||
Bandit Dog
|
||||
Barbara Olson
|
||||
Bathsheba Hoxie
|
||||
Becky Barrick
|
||||
Becky Bohannan
|
||||
Ben Roberts
|
||||
Benjamin Snodgrass
|
||||
Benjamin Snodgrass
|
||||
Benjamin Snodgrass
|
||||
Bernadette King
|
||||
Beth Black
|
||||
Beth Holz-Douglas
|
||||
Beth Stephenson
|
||||
Beverly Ryan
|
||||
Bobbye Schubert
|
||||
Bodhi Maestas
|
||||
Bonnie Gjovig
|
||||
Bonnie Glicco
|
||||
Bonnie Thiem
|
||||
Brad Jackson
|
||||
Brad Williams
|
||||
Bradley King
|
||||
Brandon Milford
|
||||
Brandt Godofsky
|
||||
Breanna Oliver
|
||||
Brian Friedman
|
||||
Brian Rendell
|
||||
Brian Vee
|
||||
Briana Widen
|
||||
Brittany Schindler
|
||||
Brittney Verrette
|
||||
Bryce Gunter
|
||||
Buffy Roberts-Conway
|
||||
C H
|
||||
Caitlin Padilla
|
||||
Calvin Glicco
|
||||
Cameran Williams
|
||||
Capt. Ball
|
||||
Carl Frytz
|
||||
Carol-Ann Walker
|
||||
Caroline Lin
|
||||
Catherine Burton
|
||||
Celina Bennett
|
||||
Chad Becker
|
||||
Charity Bailey
|
||||
Charity Dolan
|
||||
Charlene Mitchell
|
||||
Charles Wardwell
|
||||
Chastity Kolar
|
||||
Chelsea Griego
|
||||
Chelsea Medved
|
||||
Chelsea Phares
|
||||
Chester Roberts
|
||||
Cheyenne Nerkowski-Zirpel
|
||||
Chris Alan
|
||||
Chris Gunter
|
||||
Chris Herman
|
||||
Chris Kindel
|
||||
Christian Cruz
|
||||
Christopher Zirpel
|
||||
Christy Wammack
|
||||
Chub Smit
|
||||
Cindy Hoylman
|
||||
Cisco Sanchez
|
||||
Clara Hardick
|
||||
Claudia Rochkes
|
||||
Colleen Gaffney
|
||||
Conrad Holsinger
|
||||
Conrad Zack
|
||||
Corey Herman
|
||||
Cristine Selbee
|
||||
Crystal Williams
|
||||
Cynthia Patton
|
||||
Daisy Mcculloch
|
||||
Dallas Friedman
|
||||
Dan Hills
|
||||
Dan Pendergrass
|
||||
Dana Smith-Rosenblum
|
||||
Daniel Allen
|
||||
Daniel Grinnell
|
||||
Danielle Huval
|
||||
Danielle Nicholson
|
||||
Danna Blumenau
|
||||
Danny Roberts
|
||||
Darren Huval
|
||||
Dave Mazzarella
|
||||
David Porterfield
|
||||
David Prince
|
||||
David Roberts
|
||||
David Rochkes
|
||||
David Valdes
|
||||
Dawn Avila
|
||||
Dawn Blacic
|
||||
Dayna Mitchell
|
||||
Dean Herman
|
||||
Debbie Chrissinger
|
||||
Delfino Garduno
|
||||
Delilah Hinkle
|
||||
Delores Rochkes
|
||||
Dennis Rochkes
|
||||
Deprice Spilbery
|
||||
Derek Bohannan
|
||||
Derek Decamp
|
||||
Derek White
|
||||
Desirre Escobedo
|
||||
Devion Holston
|
||||
Diana Taylor
|
||||
Dianne Hendricks
|
||||
Dina Nail
|
||||
Disney Aladdin
|
||||
Disney Anna
|
||||
Disney Cinderella
|
||||
Disney Jasmine
|
||||
Disney Merida
|
||||
Don Schlichte
|
||||
Donald Porterfield
|
||||
Donna Herman
|
||||
Donna Phares
|
||||
Doris Newman
|
||||
Doris Roberts
|
||||
Dorothy Mirabal
|
||||
Dorothy Rochkess
|
||||
Dorthy Rochkes
|
||||
Douglas Martin
|
||||
Douglas Percy
|
||||
Edith Wardwell
|
||||
Edward Rochkes
|
||||
Eleanor Lovato
|
||||
Elena McLaughlin
|
||||
Eli Zirpel
|
||||
Elizabeth Alden
|
||||
Elizabeth Holsinger
|
||||
Elizabeth Smith
|
||||
Ellie Phares
|
||||
Elza Ball
|
||||
Emilee Gamache
|
||||
Emily Thaler
|
||||
Emily Tippetts
|
||||
Eric Floyd
|
||||
Eric Kozubal
|
||||
Eric Voos
|
||||
Erica Kerstiens
|
||||
Erik Bogensberger
|
||||
Erik Fisk
|
||||
Ernestna Herman
|
||||
Ernie Gibson
|
||||
Ethan Bogensberger
|
||||
Ethan Howe
|
||||
Evan Derider
|
||||
Evart Porterfield
|
||||
Ezekiel Candelaria
|
||||
Flint Livingston
|
||||
Florence Berry
|
||||
Florence Hardick
|
||||
Florence Whitt
|
||||
Frances Courtney
|
||||
Frances E Hardick Phares
|
||||
Frank Drewett
|
||||
Frank Hardick
|
||||
Frank Rochkes
|
||||
Gabriel Glicco
|
||||
Gage Zirpel
|
||||
Gavin Vanv
|
||||
Gemma Williams
|
||||
Gene Justice
|
||||
Geneva Hardick
|
||||
George Hardick
|
||||
Gerald Herman
|
||||
Gideon Allen
|
||||
Gideon Allen
|
||||
Gideon Jr.
|
||||
Gilbert Martinez
|
||||
Gina Zirpel-Kimura
|
||||
Glenn Huval
|
||||
Gloin Mackara
|
||||
Greta Rackley
|
||||
Griffen Woodside
|
||||
Hailey Herman
|
||||
Hannah Waldschmidt
|
||||
Heather Durkin
|
||||
Heather Gamache
|
||||
Heather Herman
|
||||
Henry Hardeck
|
||||
Henry Roberts
|
||||
Hezekiah Whitt
|
||||
Hezekiah Whitt
|
||||
Holden Gibson
|
||||
Holly Lucht
|
||||
Hope Garcia
|
||||
Hudson Mayne
|
||||
Ian Christian
|
||||
Irene Tokar
|
||||
Isaac Berry
|
||||
Isaac Berry
|
||||
Isaac Candelaria
|
||||
Isaac Norman
|
||||
Isaac Phares
|
||||
Isabelle Mayne
|
||||
Isaiah Lumbre
|
||||
Isla Smith
|
||||
Jacen VonDielingen
|
||||
Jack Bowers
|
||||
Jacob VonDielingen
|
||||
Jacob Young
|
||||
Jacob Zirpel
|
||||
Jada Gills
|
||||
Jaime Cawthron
|
||||
Jaime David
|
||||
Jair Ramirez
|
||||
James Abbott
|
||||
James Ball
|
||||
James Luna
|
||||
James Porterfield
|
||||
Jamie Martinez
|
||||
Jamie Moss
|
||||
Jamie Zirpel
|
||||
Jamille Tucker
|
||||
Jan Herman
|
||||
Janet Phares
|
||||
Jared Kipp
|
||||
Jarrott Hughes
|
||||
Jasin Cook
|
||||
Jason Chen
|
||||
Jason Evans
|
||||
Jason Gamache
|
||||
Jason Hargis
|
||||
Jason Woods
|
||||
Javier Prince
|
||||
Jeff Roberts
|
||||
Jeffrey Francis
|
||||
Jemima Allen
|
||||
Jen Dobbs
|
||||
Jennifer Blair
|
||||
Jennifer Friedman
|
||||
Jennifer Osborne
|
||||
Jennifer White
|
||||
Jenny Berger
|
||||
Jenny Cedillo
|
||||
Jenny Gibson
|
||||
Jeral Dickenson
|
||||
Jeremiah Candelaria
|
||||
Jeremy Durkin
|
||||
Jeremy Molinar
|
||||
Jerod Rasmussen
|
||||
Jerry Howard
|
||||
Jessica Ramirez
|
||||
Jill Burns
|
||||
Jim McAlinden
|
||||
Jim Morrison
|
||||
Jim Roberts
|
||||
Jim Rochkes
|
||||
Jj Kipp
|
||||
Jo Huval
|
||||
Joanne Garcia
|
||||
Jocelyn Chapman
|
||||
Joe Herman
|
||||
Joe Howard
|
||||
Joe Peterson
|
||||
Joey Blacic
|
||||
Joey McCulloch
|
||||
John Allen
|
||||
John Ball
|
||||
John Brackbill
|
||||
John Breeding
|
||||
John Brooker
|
||||
John Daniels
|
||||
John Ferguson
|
||||
John Hardick
|
||||
John II
|
||||
John Porterfield
|
||||
John Porterfield
|
||||
John Porterfield
|
||||
John Prince
|
||||
John Prince
|
||||
John Roberts
|
||||
John Roberts
|
||||
John Roberts
|
||||
John Schroeder
|
||||
John Smith
|
||||
Johnny Roberts
|
||||
Johnson Phares
|
||||
Jolie Wenglikowski
|
||||
Jon Baran
|
||||
Jonathan Baiardo
|
||||
Jonathan Ferris
|
||||
Jonathan Kelley
|
||||
Joselyn Glicco
|
||||
Joseph Rochkes
|
||||
Joseph Rochkes
|
||||
Josh Costanza
|
||||
Josh David
|
||||
Josh Harris
|
||||
Josh Maestas
|
||||
Joshua Southard
|
||||
Joshua Zirpel
|
||||
Jovanna Chavez-Tellez
|
||||
Joy Gamache
|
||||
Julie Arabzadeh
|
||||
Julie McConnaughey-Krawchuck
|
||||
Julie Phares
|
||||
Justin Harris
|
||||
Justin Lukaszonas
|
||||
JustinTamara Reimer
|
||||
Jyllian Harris
|
||||
Kai Pickering
|
||||
Kailynn Breezee
|
||||
Kailynn Jones
|
||||
Kara Robertson
|
||||
Karen Cleaver
|
||||
Karen Huval
|
||||
Kari Herman
|
||||
Kasey Harris
|
||||
Kat Barrick
|
||||
Kathie Sickenberger
|
||||
Katie Zirpel
|
||||
Katrina Trujillo
|
||||
Keith Herman
|
||||
Kelby Floyd
|
||||
Kelly Mancha
|
||||
Kelly Salceies
|
||||
Kendra Hodgson-Glicco
|
||||
Kenji Gjovig
|
||||
Kevin Ayres
|
||||
Kevin Helmer
|
||||
Kevin Zirpel
|
||||
Kim Ayres
|
||||
Kimberly Hodgson-Glicco
|
||||
Kimberly Loundagin
|
||||
Kirsten Bell
|
||||
Kristen Martines
|
||||
Kristin Mortensen
|
||||
Kristy Hawrey
|
||||
Kristy Phares
|
||||
Ky Roberts
|
||||
Lana Wenzel-Toler
|
||||
Lance Stallings
|
||||
Lara Mason
|
||||
Larry Barrick
|
||||
Laura Alberto
|
||||
Laura Gunter
|
||||
Laura Jenkins
|
||||
Laurel Roberts
|
||||
Laurie Zirpel
|
||||
Lawrence Garcia
|
||||
Lee Powell
|
||||
Lenore Herman
|
||||
Leo Carrell
|
||||
Leonardo DiCaprio
|
||||
Leslie Bucklin
|
||||
Leslie Carrell
|
||||
Leslie Johnson
|
||||
Leslie Maxwell
|
||||
Leslie Phares
|
||||
Lester Hardick
|
||||
Levina Griffith
|
||||
Lexy Byard
|
||||
Leyla Garcia-Trujillo
|
||||
Lilly Dog
|
||||
Lily Wells
|
||||
Linda Palatinus
|
||||
Linda Rosenberg
|
||||
Lisa Huval
|
||||
Logan Harris
|
||||
Logan Phares
|
||||
Loretta Martinez
|
||||
Lori Ormsby
|
||||
Lorrie Elizabeth
|
||||
Louis Kimball
|
||||
Louverna Ball
|
||||
Lydia Pabodie
|
||||
Lynne Padilla
|
||||
Mackenzie Woods
|
||||
Madalyn Blair
|
||||
Maggie Meier
|
||||
Makenna Gibson
|
||||
Mara Salinas
|
||||
Marcia Chavez
|
||||
Marcia Herman
|
||||
Marcia Lamprecht
|
||||
Margarita Ortega
|
||||
Marilyn Kwan
|
||||
Marissa X
|
||||
Mark Clement
|
||||
Mark Dupray
|
||||
Mark Herman
|
||||
Marshall Friedman
|
||||
Martha Carter
|
||||
Martha Large
|
||||
Mary Cavender
|
||||
Mary Cruz
|
||||
Mary Ferguson
|
||||
Mary Gibson
|
||||
Mary Hardick
|
||||
Mary Herman
|
||||
Mary Smith
|
||||
Mary Stockton
|
||||
Mary Wodell
|
||||
Mary Wright
|
||||
Matt Aragon
|
||||
Matt Durkin
|
||||
Matt Gardner
|
||||
Matt Knipfing
|
||||
Matt Piotrowski
|
||||
Matthew Gamache
|
||||
Matthew Herman
|
||||
Matthew Waldschmidt
|
||||
Meaghan Carpenter
|
||||
Megan Baiardo
|
||||
Meghan Zirel-Kimura
|
||||
Mekinzie Glicco
|
||||
Melanie Pena
|
||||
Melanie Petty
|
||||
Melinda Hacker
|
||||
Melissa McKenna
|
||||
Melvin Herman
|
||||
Melvin Herman
|
||||
Mercedes Wharton
|
||||
Merle Roberts
|
||||
Micah David
|
||||
Michael Chavez
|
||||
Michael Conway
|
||||
Michael Dorin
|
||||
Michael Goodner
|
||||
Michael Schlichte
|
||||
Michael Tirey
|
||||
Michael Zirpel
|
||||
Michal Farley
|
||||
Michelle Andrews
|
||||
Michelle Delillo
|
||||
Michelle Tomlinson
|
||||
Michelle Vanv
|
||||
Mike Gibson
|
||||
Mike Kimura
|
||||
Mike Phares
|
||||
Mike Phares
|
||||
Mikkel Nieto
|
||||
Mildred Herman
|
||||
Millie Smith
|
||||
Milon Porterfield
|
||||
Minnie Hardick
|
||||
Missy Frost
|
||||
Morgan Dablemont
|
||||
Moses Sr.
|
||||
Nanon Talley
|
||||
Natalie Gallagher
|
||||
Natalie Roberts
|
||||
Nathan McCulloch
|
||||
Nellie Howes
|
||||
Nhu Mackara
|
||||
Nicholas Hoffman
|
||||
Nick Gallagher
|
||||
Nick Zirpel
|
||||
Nicki Morales
|
||||
Nicole Alaimo
|
||||
Nicole Girardin
|
||||
Nicole Kreier
|
||||
Nicole Woodside
|
||||
Nikkol Grimes
|
||||
Nora Rochkes
|
||||
Nora Young
|
||||
Norman Herman
|
||||
Oceana Barillaro
|
||||
Orly Gottesfeld
|
||||
Osiris Roberts
|
||||
Owen Kimball
|
||||
Page Potter
|
||||
Patience Brooker
|
||||
Patrick Black
|
||||
Patrick Staley
|
||||
Patrik Radojcic
|
||||
Patrjk Fields
|
||||
Patty Dickenson
|
||||
Patty Perez
|
||||
Paul Clifton
|
||||
Paul Waldschmidt
|
||||
Paula Jaramillo
|
||||
Peggy Chambers
|
||||
Peggy Starr
|
||||
Perry Alberto
|
||||
Persaya Cortez
|
||||
Pete Garcia
|
||||
Peter Malave
|
||||
Phil Hills
|
||||
Phillip Gamache
|
||||
Phillip Woods
|
||||
Pipper Dog
|
||||
Presley Avila
|
||||
Priscilla Mullins
|
||||
Quinn McCulloch
|
||||
Randy Foster
|
||||
Ray Rivira
|
||||
Rebecca Atchison
|
||||
Rebecca Chicketti
|
||||
Rebecca Embry
|
||||
Reed Cannon
|
||||
Reginald Radcliffe
|
||||
Reinaldo Garcia
|
||||
Rex Phares
|
||||
Richard Hardick
|
||||
Rick Beichler
|
||||
Rob Jagnow
|
||||
Robert Candelaria
|
||||
Robert Spurlock
|
||||
Roberta Cocking
|
||||
Roberta Lowe
|
||||
Robin Reynolds
|
||||
Roger Roybal
|
||||
Romie Adams
|
||||
Romina Dickerson
|
||||
Ron Blacic
|
||||
Rosa Snodgrass
|
||||
Rosanna Grate
|
||||
Rozanna Beichler
|
||||
Ruth Bacon
|
||||
Ruth Tibbetts
|
||||
Ryan Bogensberger
|
||||
Ryan Elmore
|
||||
Ryan Markey
|
||||
Ryan Smith
|
||||
Sam Adams
|
||||
Sami Estes
|
||||
Samuel Garcia
|
||||
Samuel Porterfield
|
||||
Sarah Bancroft
|
||||
Sarah Cavinder
|
||||
Sarah Crowell
|
||||
Sarah Negley
|
||||
Sarah Schlichte
|
||||
Savannah Candelaria
|
||||
Scott Boettner
|
||||
Scott Marter
|
||||
Scotty Estes
|
||||
Sean Alberto
|
||||
Serena Sanchez
|
||||
Shane Copeland
|
||||
Shannendoah Gallagher
|
||||
Shannon DeLap
|
||||
Shannon McCahan
|
||||
Shilo Zeches
|
||||
Shonna Zirpel
|
||||
Sidney Prince
|
||||
Skyler Cratch
|
||||
Sophia Mayne
|
||||
Spencer Breeding
|
||||
Stacey Castille
|
||||
Stefan Novotney
|
||||
Stephanie Molloy
|
||||
Stephanie Richards
|
||||
Steve Blair
|
||||
Steve Kraemer
|
||||
Steve Marshall
|
||||
Steven Gibbs
|
||||
Steven Novotny
|
||||
Steven Williams
|
||||
Stevie Henry
|
||||
Strother Roberts
|
||||
Sue Thatcher
|
||||
Susan Harris
|
||||
Susanna Novotnet
|
||||
Susie Keeton
|
||||
Suzanne Phillips
|
||||
Sydney Dupray
|
||||
Sydney Herman
|
||||
Sylvia Jackson
|
||||
Sylvia Ortega
|
||||
Tammy Ellison
|
||||
Tammy Howe
|
||||
Tanner David
|
||||
Tanya Triber
|
||||
Teresa Martinez
|
||||
Teresa Watts
|
||||
Thomas Carter
|
||||
Thomas Contreras
|
||||
Thomas Glicco
|
||||
Thomas Percy
|
||||
Thomas Snodgrass
|
||||
Tia Reece
|
||||
Tim Byard
|
||||
Tim Herman
|
||||
Tim Ray
|
||||
Tina Montoya
|
||||
Todd Barrick
|
||||
Todd Mayne
|
||||
Tom Kain
|
||||
Tony Boggs
|
||||
Tony Grabara
|
||||
Tracy Candelaria
|
||||
Travis Rackley
|
||||
Tricia Jarmer
|
||||
Tricia McCulloch
|
||||
Trish Schlichte
|
||||
Tyler Blair
|
||||
Tyler Marks
|
||||
Ugene Laris
|
||||
Vanessa Backman
|
||||
Vanessa Lerma
|
||||
Victoria Hill
|
||||
Wally Hogan
|
||||
Wayne Zirpel
|
||||
Wendy Bussolini
|
||||
Wendy Skeets
|
||||
Wendy Woodard
|
||||
Winifred Ashby
|
||||
Wyatt Estes
|
||||
Yessi Baca
|
||||
Yvonne Garduno-Vigil
|
||||
Zachary Daniels
|
28
.vscode/mklink.md
vendored
Normal file
28
.vscode/mklink.md
vendored
Normal file
@ -0,0 +1,28 @@
|
||||
---
|
||||
type: "note"
|
||||
|
||||
created: "2024-01-14T02:08:09.143Z"
|
||||
updated: "2024-01-14T02:24:36.280Z"
|
||||
---
|
||||
|
||||
# mklink
|
||||
|
||||
```bash
|
||||
mklink /J "C:\Users\phares\AppData\Roaming\Microsoft\UserSecrets\.LocalSystem" "C:\Windows\System32\config\systemprofile\AppData\Roaming\Microsoft\UserSecrets"
|
||||
mklink /J "C:\Users\phares\AppData\Roaming\Microsoft\UserSecrets\.PSReadLine" "C:\Users\phares\AppData\Roaming\Microsoft\Windows\PowerShell\PSReadLine"
|
||||
mklink /J "C:\Users\phares\AppData\Roaming\Microsoft\UserSecrets\.kanbn" "D:\5-Other-Small\Kanban\Phares"
|
||||
```
|
||||
|
||||
```bash
|
||||
mklink /J "C:\Users\mikep\AppData\Roaming\Microsoft\UserSecrets\.LocalSystem" "C:\Windows\System32\config\systemprofile\AppData\Roaming\Microsoft\UserSecrets"
|
||||
mklink /J "C:\Users\mikep\AppData\Roaming\Microsoft\UserSecrets\.PSReadLine" "C:\Users\mikep\AppData\Roaming\Microsoft\Windows\PowerShell\PSReadLine"
|
||||
```
|
||||
|
||||
```bash
|
||||
git init L:/Git/Notes-User-Secrets
|
||||
mklink /J "L:\Git\Notes-User-Secrets\.UserSecrets" "C:\Users\phares\AppData\Roaming\Microsoft\UserSecrets"
|
||||
mklink /J "C:\Users\phares\AppData\Roaming\Microsoft\UserSecrets\.git" "L:\Git\Notes-User-Secrets\.git"
|
||||
code "L:\Git\Notes-User-Secrets\.UserSecrets"
|
||||
codium "L:\Git\Notes-User-Secrets\.UserSecrets"
|
||||
code-insiders "L:\Git\Notes-User-Secrets\.UserSecrets"
|
||||
```
|
100
.vscode/settings.json
vendored
Normal file
100
.vscode/settings.json
vendored
Normal file
@ -0,0 +1,100 @@
|
||||
{
|
||||
"[markdown]": {
|
||||
"editor.wordWrap": "off"
|
||||
},
|
||||
"cSpell.words": [
|
||||
"Adonias",
|
||||
"ANLYSDIFAAST",
|
||||
"ASPNETCORE",
|
||||
"BIRT",
|
||||
"CHIL",
|
||||
"DDUPSFS",
|
||||
"DDUPSP",
|
||||
"DEAT",
|
||||
"endianness",
|
||||
"Ernestna",
|
||||
"FAMC",
|
||||
"FAMS",
|
||||
"GIVN",
|
||||
"Hasher",
|
||||
"HUSB",
|
||||
"Immich",
|
||||
"INDI",
|
||||
"Infineon",
|
||||
"Kanban",
|
||||
"kanbn",
|
||||
"KofaX",
|
||||
"mesfs",
|
||||
"messa",
|
||||
"messad",
|
||||
"messdv",
|
||||
"messqlec",
|
||||
"messv",
|
||||
"NSFX",
|
||||
"OBJE",
|
||||
"onenote",
|
||||
"Permyriad",
|
||||
"pged",
|
||||
"Phares",
|
||||
"RESIHGCV",
|
||||
"RESIMAPCDE",
|
||||
"RESISRP",
|
||||
"Rozanna",
|
||||
"Serilog",
|
||||
"SUBM",
|
||||
"SUMCO",
|
||||
"SURN",
|
||||
"SYSLIB",
|
||||
"Tencor",
|
||||
"THFTIRQS",
|
||||
"THFTIRSTRATUS",
|
||||
"Trish",
|
||||
"Upsample"
|
||||
],
|
||||
"files.eol": "\n",
|
||||
"files.exclude": {
|
||||
"**/node_modules": true
|
||||
},
|
||||
"files.watcherExclude": {
|
||||
"**/node_modules": true
|
||||
},
|
||||
"foam.files.ignore": [
|
||||
".foam/**/*",
|
||||
".stfolder/**/*",
|
||||
"**/_layouts/**/*",
|
||||
"**/_site/**/*",
|
||||
"**/.vscode/**/*",
|
||||
"**/node_modules/**/*"
|
||||
],
|
||||
"foam.graph.style": {
|
||||
"background": "#202020",
|
||||
"node": {
|
||||
"basic-note": "#773b93",
|
||||
"bug": "#bc2a3c",
|
||||
"daily-note": "#ff9d00",
|
||||
"epic": "#ff7b00",
|
||||
"feature": "#773b93",
|
||||
"issue": "#ff9d00",
|
||||
"kanbn": "#ff7b00",
|
||||
"note": "#f2cb1d",
|
||||
"person": "white",
|
||||
"placeholder": "#ff9d00",
|
||||
"tag": "#0494c1",
|
||||
"task": "#f2cb1d",
|
||||
"test-case": "#ff9d00",
|
||||
"topic": "#bc2a3c",
|
||||
"user-story": "#0494c1",
|
||||
"wired": "green",
|
||||
"wireless": "orange"
|
||||
}
|
||||
},
|
||||
"foam.links.hover.enable": false,
|
||||
"foam.orphans.exclude": [
|
||||
".journal/**/*"
|
||||
],
|
||||
"foam.placeholders.exclude": [
|
||||
".kanbn/Archive/**/*"
|
||||
],
|
||||
"kanbn.showBurndownButton": false,
|
||||
"kanbn.showSprintButton": false
|
||||
}
|
83
.vscode/tasks.json
vendored
Normal file
83
.vscode/tasks.json
vendored
Normal file
@ -0,0 +1,83 @@
|
||||
{
|
||||
"version": "2.0.0",
|
||||
"tasks": [
|
||||
{
|
||||
"label": "File-Folder-Helper AOT s M Phares .Kanbn Tasks",
|
||||
"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/Syncthing-Secrets/.UserSecrets -s L:/Git/Syncthing-Secrets/.UserSecrets/.kanbn/tasks",
|
||||
"problemMatcher": []
|
||||
},
|
||||
{
|
||||
"label": "File-Folder-Helper AOT s M Phares Family-Tree",
|
||||
"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/Syncthing-Secrets/.UserSecrets -s L:/Git/Syncthing-Secrets/.UserSecrets/family-tree",
|
||||
"problemMatcher": []
|
||||
},
|
||||
{
|
||||
"label": "File-Folder-Helper AOT s M Phares Network",
|
||||
"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/Syncthing-Secrets/.UserSecrets -s L:/Git/Syncthing-Secrets/.UserSecrets/network",
|
||||
"problemMatcher": []
|
||||
},
|
||||
{
|
||||
"label": "File-Folder-Helper AOT s M Phares Person",
|
||||
"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/Syncthing-Secrets/.UserSecrets -s L:/Git/Syncthing-Secrets/.UserSecrets/person",
|
||||
"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": []
|
||||
}
|
||||
]
|
||||
}
|
||||
|
||||
// *.jpg.png datecreated:today
|
||||
// "LocationContainerDistanceTolerance": 0.64,
|
||||
// (638072366498023361)17,336 Files, 1,587 Folders 448 2.5%
|
||||
// (638079675973996954)1,593 Files, 489 Folders 21 1.3%
|
||||
// (638088092297967136)1,656 Files, 501 Folders 82 4.9%
|
||||
// (638131271079595958)1,149 Files, 689 Folders 98 8.5%
|
||||
// (638154345096119692)657 Files, 500 Folders 106 16%
|
||||
// (638167550958917000)387 Files, 187 Folders 3 1%
|
||||
// (638206008345584941)216 Files, 263 Folders 4 1.8%
|
||||
// (638236078859587323)1,113 Files, 430 Folders 23 2%
|
||||
// (638258293638438812)1,360 Files, 301 Folders 23 1.6%
|
||||
|
||||
// *.jpg.png datecreated:today
|
||||
// "LocationContainerDistanceTolerance": 0.5864,
|
||||
// (638072366498023361)17,336 Files, 1,587 Folders %
|
||||
// (638079675973996954)1,593 Files, 489 Folders %
|
||||
// (638088092297967136)1,656 Files, 501 Folders %
|
||||
// (638131271079595958)1,149 Files, 689 Folders %
|
||||
// (638154345096119692)657 Files, 500 Folders 86 13%
|
||||
// (638167550958917000)387 Files, 187 Folders %
|
||||
// (638206008345584941)216 Files, 263 Folders %
|
||||
// (638236078859587323)1,113 Files, 430 Folders %
|
||||
// (638258293638438812)1,360 Files, 301 Folders %
|
||||
|
||||
// *.jpg.png datecreated:today
|
||||
// "LocationContainerDistanceTolerance": 0.5764,
|
||||
// (638072366498023361)17,336 Files, 1,587 Folders %
|
||||
// (638079675973996954)1,593 Files, 489 Folders %
|
||||
// (638088092297967136)1,656 Files, 501 Folders %
|
||||
// (638131271079595958)1,149 Files, 689 Folders %
|
||||
// (638154345096119692)657 Files, 500 Folders 93%
|
||||
// (638167550958917000)387 Files, 187 Folders %
|
||||
// (638206008345584941)216 Files, 263 Folders %
|
||||
// (638236078859587323)1,113 Files, 430 Folders %
|
||||
// (638258293638438812)1,360 Files, 301 Folders %
|
356
.vscode/terminal.json
vendored
Normal file
356
.vscode/terminal.json
vendored
Normal file
@ -0,0 +1,356 @@
|
||||
{
|
||||
"$help": "https://aka.ms/terminal-documentation",
|
||||
"$schema": "https://aka.ms/terminal-profiles-schema",
|
||||
"actions": [
|
||||
{
|
||||
"command": {
|
||||
"action": "copy",
|
||||
"singleLine": false
|
||||
},
|
||||
"keys": "ctrl+c"
|
||||
},
|
||||
{
|
||||
"command": "paste",
|
||||
"keys": "ctrl+v"
|
||||
},
|
||||
{
|
||||
"command": {
|
||||
"action": "splitPane",
|
||||
"split": "auto",
|
||||
"splitMode": "duplicate"
|
||||
},
|
||||
"keys": "alt+shift+d"
|
||||
},
|
||||
{
|
||||
"command": "find",
|
||||
"keys": "ctrl+shift+f"
|
||||
}
|
||||
],
|
||||
"copyFormatting": "none",
|
||||
"copyOnSelect": false,
|
||||
"defaultProfile": "{00000000-0000-0000-ba54-000000000002}",
|
||||
"launchMode": "maximized",
|
||||
"newTabMenu": [
|
||||
{
|
||||
"type": "remainingProfiles"
|
||||
}
|
||||
],
|
||||
"profiles": {
|
||||
"defaults": {},
|
||||
"list": [
|
||||
{
|
||||
"commandline": "%SystemRoot%\\System32\\WindowsPowerShell\\v1.0\\powershell.exe",
|
||||
"guid": "{61c54bbd-c2c6-5271-96e7-009a87ff44bf}",
|
||||
"hidden": false,
|
||||
"name": "Windows PowerShell"
|
||||
},
|
||||
{
|
||||
"commandline": "%SystemRoot%\\System32\\cmd.exe",
|
||||
"guid": "{0caa0dad-35be-5f56-a8ff-afceeeaa6101}",
|
||||
"hidden": false,
|
||||
"name": "Command Prompt"
|
||||
},
|
||||
{
|
||||
"guid": "{574e775e-4f2a-5b96-ac1e-a2962a402336}",
|
||||
"hidden": true,
|
||||
"name": "PowerShell",
|
||||
"source": "Windows.Terminal.PowershellCore"
|
||||
},
|
||||
{
|
||||
"guid": "{b453ae62-4e3d-5e58-b989-0a998ec441b8}",
|
||||
"hidden": true,
|
||||
"name": "Azure Cloud Shell",
|
||||
"source": "Windows.Terminal.Azure"
|
||||
},
|
||||
{
|
||||
"guid": "{51855cb2-8cce-5362-8f54-464b92b32386}",
|
||||
"hidden": false,
|
||||
"name": "Ubuntu",
|
||||
"source": "CanonicalGroupLimited.Ubuntu_79rhkp1fndgsc"
|
||||
},
|
||||
{
|
||||
"guid": "{3a9cd546-d7ed-5e04-9b69-0b1f9e2e05bc}",
|
||||
"hidden": true,
|
||||
"name": "Developer Command Prompt for VS 2022",
|
||||
"source": "Windows.Terminal.VisualStudio"
|
||||
},
|
||||
{
|
||||
"guid": "{22aeee6e-3063-59f8-88e9-3693a6cc941a}",
|
||||
"hidden": true,
|
||||
"name": "Developer PowerShell for VS 2022",
|
||||
"source": "Windows.Terminal.VisualStudio"
|
||||
},
|
||||
{
|
||||
"guid": "{9b9c51d7-68e8-5c4c-825f-e941c14e0dbd}",
|
||||
"hidden": false,
|
||||
"name": "Ubuntu-Kestra",
|
||||
"source": "Windows.Terminal.Wsl"
|
||||
},
|
||||
{
|
||||
"guid": "{d9b16f10-ee82-562e-ad21-b48dbf150d1c}",
|
||||
"hidden": false,
|
||||
"name": "Ubuntu-Immich",
|
||||
"source": "Windows.Terminal.Wsl"
|
||||
},
|
||||
{
|
||||
"closeOnExit": "graceful",
|
||||
"colorScheme": "Campbell",
|
||||
"commandline": "%USERPROFILE%/AppData/Local/Programs/Git/bin/bash.exe -l -i",
|
||||
"cursorColor": "#FFFFFF",
|
||||
"cursorShape": "bar",
|
||||
"font": {
|
||||
"face": "Consolas",
|
||||
"size": 20
|
||||
},
|
||||
"guid": "{00000000-0000-0000-ba54-000000000002}",
|
||||
"historySize": 9001,
|
||||
"icon": "%USERPROFILE%/AppData/Local/Programs/Git/mingw64/share/git/git-for-windows.ico",
|
||||
"name": "Git-Bash",
|
||||
"padding": "0, 0, 0, 0",
|
||||
"snapOnInput": true,
|
||||
"startingDirectory": "%USERPROFILE%",
|
||||
"useAcrylic": true
|
||||
},
|
||||
{
|
||||
"commandline": "C:\\cygwin64\\Cygwin.bat",
|
||||
"guid": "{333b1e26-f1a0-4310-82ab-abfdea1d15c8}",
|
||||
"hidden": false,
|
||||
"icon": "C:\\cygwin64\\Cygwin.ico",
|
||||
"name": "Cygwin"
|
||||
}
|
||||
]
|
||||
},
|
||||
"schemes": [
|
||||
{
|
||||
"background": "#0C0C0C",
|
||||
"black": "#0C0C0C",
|
||||
"blue": "#0037DA",
|
||||
"brightBlack": "#767676",
|
||||
"brightBlue": "#3B78FF",
|
||||
"brightCyan": "#61D6D6",
|
||||
"brightGreen": "#16C60C",
|
||||
"brightPurple": "#B4009E",
|
||||
"brightRed": "#E74856",
|
||||
"brightWhite": "#F2F2F2",
|
||||
"brightYellow": "#F9F1A5",
|
||||
"cursorColor": "#FFFFFF",
|
||||
"cyan": "#3A96DD",
|
||||
"foreground": "#CCCCCC",
|
||||
"green": "#13A10E",
|
||||
"name": "Campbell",
|
||||
"purple": "#881798",
|
||||
"red": "#C50F1F",
|
||||
"selectionBackground": "#FFFFFF",
|
||||
"white": "#CCCCCC",
|
||||
"yellow": "#C19C00"
|
||||
},
|
||||
{
|
||||
"background": "#012456",
|
||||
"black": "#0C0C0C",
|
||||
"blue": "#0037DA",
|
||||
"brightBlack": "#767676",
|
||||
"brightBlue": "#3B78FF",
|
||||
"brightCyan": "#61D6D6",
|
||||
"brightGreen": "#16C60C",
|
||||
"brightPurple": "#B4009E",
|
||||
"brightRed": "#E74856",
|
||||
"brightWhite": "#F2F2F2",
|
||||
"brightYellow": "#F9F1A5",
|
||||
"cursorColor": "#FFFFFF",
|
||||
"cyan": "#3A96DD",
|
||||
"foreground": "#CCCCCC",
|
||||
"green": "#13A10E",
|
||||
"name": "Campbell Powershell",
|
||||
"purple": "#881798",
|
||||
"red": "#C50F1F",
|
||||
"selectionBackground": "#FFFFFF",
|
||||
"white": "#CCCCCC",
|
||||
"yellow": "#C19C00"
|
||||
},
|
||||
{
|
||||
"background": "#282C34",
|
||||
"black": "#282C34",
|
||||
"blue": "#61AFEF",
|
||||
"brightBlack": "#5A6374",
|
||||
"brightBlue": "#61AFEF",
|
||||
"brightCyan": "#56B6C2",
|
||||
"brightGreen": "#98C379",
|
||||
"brightPurple": "#C678DD",
|
||||
"brightRed": "#E06C75",
|
||||
"brightWhite": "#DCDFE4",
|
||||
"brightYellow": "#E5C07B",
|
||||
"cursorColor": "#FFFFFF",
|
||||
"cyan": "#56B6C2",
|
||||
"foreground": "#DCDFE4",
|
||||
"green": "#98C379",
|
||||
"name": "One Half Dark",
|
||||
"purple": "#C678DD",
|
||||
"red": "#E06C75",
|
||||
"selectionBackground": "#FFFFFF",
|
||||
"white": "#DCDFE4",
|
||||
"yellow": "#E5C07B"
|
||||
},
|
||||
{
|
||||
"background": "#FAFAFA",
|
||||
"black": "#383A42",
|
||||
"blue": "#0184BC",
|
||||
"brightBlack": "#4F525D",
|
||||
"brightBlue": "#61AFEF",
|
||||
"brightCyan": "#56B5C1",
|
||||
"brightGreen": "#98C379",
|
||||
"brightPurple": "#C577DD",
|
||||
"brightRed": "#DF6C75",
|
||||
"brightWhite": "#FFFFFF",
|
||||
"brightYellow": "#E4C07A",
|
||||
"cursorColor": "#4F525D",
|
||||
"cyan": "#0997B3",
|
||||
"foreground": "#383A42",
|
||||
"green": "#50A14F",
|
||||
"name": "One Half Light",
|
||||
"purple": "#A626A4",
|
||||
"red": "#E45649",
|
||||
"selectionBackground": "#FFFFFF",
|
||||
"white": "#FAFAFA",
|
||||
"yellow": "#C18301"
|
||||
},
|
||||
{
|
||||
"background": "#002B36",
|
||||
"black": "#002B36",
|
||||
"blue": "#268BD2",
|
||||
"brightBlack": "#073642",
|
||||
"brightBlue": "#839496",
|
||||
"brightCyan": "#93A1A1",
|
||||
"brightGreen": "#586E75",
|
||||
"brightPurple": "#6C71C4",
|
||||
"brightRed": "#CB4B16",
|
||||
"brightWhite": "#FDF6E3",
|
||||
"brightYellow": "#657B83",
|
||||
"cursorColor": "#FFFFFF",
|
||||
"cyan": "#2AA198",
|
||||
"foreground": "#839496",
|
||||
"green": "#859900",
|
||||
"name": "Solarized Dark",
|
||||
"purple": "#D33682",
|
||||
"red": "#DC322F",
|
||||
"selectionBackground": "#FFFFFF",
|
||||
"white": "#EEE8D5",
|
||||
"yellow": "#B58900"
|
||||
},
|
||||
{
|
||||
"background": "#FDF6E3",
|
||||
"black": "#002B36",
|
||||
"blue": "#268BD2",
|
||||
"brightBlack": "#073642",
|
||||
"brightBlue": "#839496",
|
||||
"brightCyan": "#93A1A1",
|
||||
"brightGreen": "#586E75",
|
||||
"brightPurple": "#6C71C4",
|
||||
"brightRed": "#CB4B16",
|
||||
"brightWhite": "#FDF6E3",
|
||||
"brightYellow": "#657B83",
|
||||
"cursorColor": "#002B36",
|
||||
"cyan": "#2AA198",
|
||||
"foreground": "#657B83",
|
||||
"green": "#859900",
|
||||
"name": "Solarized Light",
|
||||
"purple": "#D33682",
|
||||
"red": "#DC322F",
|
||||
"selectionBackground": "#FFFFFF",
|
||||
"white": "#EEE8D5",
|
||||
"yellow": "#B58900"
|
||||
},
|
||||
{
|
||||
"background": "#000000",
|
||||
"black": "#000000",
|
||||
"blue": "#3465A4",
|
||||
"brightBlack": "#555753",
|
||||
"brightBlue": "#729FCF",
|
||||
"brightCyan": "#34E2E2",
|
||||
"brightGreen": "#8AE234",
|
||||
"brightPurple": "#AD7FA8",
|
||||
"brightRed": "#EF2929",
|
||||
"brightWhite": "#EEEEEC",
|
||||
"brightYellow": "#FCE94F",
|
||||
"cursorColor": "#FFFFFF",
|
||||
"cyan": "#06989A",
|
||||
"foreground": "#D3D7CF",
|
||||
"green": "#4E9A06",
|
||||
"name": "Tango Dark",
|
||||
"purple": "#75507B",
|
||||
"red": "#CC0000",
|
||||
"selectionBackground": "#FFFFFF",
|
||||
"white": "#D3D7CF",
|
||||
"yellow": "#C4A000"
|
||||
},
|
||||
{
|
||||
"background": "#FFFFFF",
|
||||
"black": "#000000",
|
||||
"blue": "#3465A4",
|
||||
"brightBlack": "#555753",
|
||||
"brightBlue": "#729FCF",
|
||||
"brightCyan": "#34E2E2",
|
||||
"brightGreen": "#8AE234",
|
||||
"brightPurple": "#AD7FA8",
|
||||
"brightRed": "#EF2929",
|
||||
"brightWhite": "#EEEEEC",
|
||||
"brightYellow": "#FCE94F",
|
||||
"cursorColor": "#000000",
|
||||
"cyan": "#06989A",
|
||||
"foreground": "#555753",
|
||||
"green": "#4E9A06",
|
||||
"name": "Tango Light",
|
||||
"purple": "#75507B",
|
||||
"red": "#CC0000",
|
||||
"selectionBackground": "#FFFFFF",
|
||||
"white": "#D3D7CF",
|
||||
"yellow": "#C4A000"
|
||||
},
|
||||
{
|
||||
"background": "#300A24",
|
||||
"black": "#171421",
|
||||
"blue": "#0037DA",
|
||||
"brightBlack": "#767676",
|
||||
"brightBlue": "#08458F",
|
||||
"brightCyan": "#2C9FB3",
|
||||
"brightGreen": "#26A269",
|
||||
"brightPurple": "#A347BA",
|
||||
"brightRed": "#C01C28",
|
||||
"brightWhite": "#F2F2F2",
|
||||
"brightYellow": "#A2734C",
|
||||
"cursorColor": "#FFFFFF",
|
||||
"cyan": "#3A96DD",
|
||||
"foreground": "#FFFFFF",
|
||||
"green": "#26A269",
|
||||
"name": "Ubuntu-ColorScheme",
|
||||
"purple": "#881798",
|
||||
"red": "#C21A23",
|
||||
"selectionBackground": "#FFFFFF",
|
||||
"white": "#CCCCCC",
|
||||
"yellow": "#A2734C"
|
||||
},
|
||||
{
|
||||
"background": "#000000",
|
||||
"black": "#000000",
|
||||
"blue": "#000080",
|
||||
"brightBlack": "#808080",
|
||||
"brightBlue": "#0000FF",
|
||||
"brightCyan": "#00FFFF",
|
||||
"brightGreen": "#00FF00",
|
||||
"brightPurple": "#FF00FF",
|
||||
"brightRed": "#FF0000",
|
||||
"brightWhite": "#FFFFFF",
|
||||
"brightYellow": "#FFFF00",
|
||||
"cursorColor": "#FFFFFF",
|
||||
"cyan": "#008080",
|
||||
"foreground": "#C0C0C0",
|
||||
"green": "#008000",
|
||||
"name": "Vintage",
|
||||
"purple": "#800080",
|
||||
"red": "#800000",
|
||||
"selectionBackground": "#FFFFFF",
|
||||
"white": "#C0C0C0",
|
||||
"yellow": "#808000"
|
||||
}
|
||||
],
|
||||
"themes": []
|
||||
}
|
52
02dce973-df1d-4325-962a-ed549af8d4c5/secrets.json
Normal file
52
02dce973-df1d-4325-962a-ed549af8d4c5/secrets.json
Normal file
@ -0,0 +1,52 @@
|
||||
{
|
||||
"_Application": "Barcode.Host.Server",
|
||||
"_UserSecretsId": "02dce973-df1d-4325-962a-ed549af8d4c5",
|
||||
"ClearLastScanServiceAfter": 250,
|
||||
"Company": "Infineon Technologies Americas Corp.",
|
||||
"DeviceNameEndsWith": "Symbol Bar Code Scanner",
|
||||
"EquipmentName": "",
|
||||
"xExpectedScanLengthA": 8,
|
||||
"xExpectedScanLengthB": 14,
|
||||
"ExpectedScanLengthA": 6,
|
||||
"ExpectedScanLengthB": 9,
|
||||
"ExpectedScanLengthBExample": "1TO172125.1.11",
|
||||
"FileShare": "",
|
||||
"IsDevelopment": false,
|
||||
"IsStaging": false,
|
||||
"LinuxDevicePath": "/proc/bus/input/devices",
|
||||
"Logging:Console:FormatterName": "simple",
|
||||
"Logging:Console:FormatterOptions:IncludeScopes": "True",
|
||||
"Logging:Console:FormatterOptions:SingleLine": "True",
|
||||
"Logging:Console:FormatterOptions:TimestampFormat": "HH:mm:ss ",
|
||||
"Logging:Console:FormatterOptions:UseUtcTimestamp": "True",
|
||||
"Logging:Console:LogLevel:Default": "Information",
|
||||
"Logging:Console:LogLevel:Microsoft.Hosting.Lifetime": "Information",
|
||||
"Logging:Console:LogLevel:Microsoft": "Warning",
|
||||
"Logging:Debug:FormatterName": "simple",
|
||||
"Logging:Debug:FormatterOptions:IncludeScopes": "True",
|
||||
"Logging:Debug:FormatterOptions:SingleLine": "True",
|
||||
"Logging:Debug:FormatterOptions:TimestampFormat": "HH:mm:ss ",
|
||||
"Logging:Debug:FormatterOptions:UseUtcTimestamp": "True",
|
||||
"Logging:Debug:LogLevel:Default": "Warning",
|
||||
"Logging:Debug:LogLevel:Microsoft.Hosting.Lifetime": "Debug",
|
||||
"Logging:Debug:LogLevel:Microsoft": "Information",
|
||||
"Logging:EventLog:LogLevel:Default": "Warning",
|
||||
"Logging:EventSource:LogLevel:Default": "Warning",
|
||||
"Logging:LogLevel:Default": "Debug",
|
||||
"Logging:LogLevel:Microsoft.Hosting.Lifetime": "Debug",
|
||||
"Logging:LogLevel:Microsoft": "Information",
|
||||
"MockRoot": "",
|
||||
"MonAResource": "OI_Metrology_Viewer_EC",
|
||||
"MonASite": "auc",
|
||||
"NotifyMinimum": 3,
|
||||
"OpenInsightApplicationProgrammingInterface": "https://oi-prod-ec-api.mes.infineon.com/api/oiWizard",
|
||||
"PostTo": "",
|
||||
"PostToEvery": 1000,
|
||||
"RootPassword": "",
|
||||
"SerialPortName": "/dev/ttyUSB0",
|
||||
"ShareToEvery": 1000,
|
||||
"ToolClass": "FTIR",
|
||||
"URLs": "http://localhost:5003;",
|
||||
"WorkingDirectoryName": "IFXApps",
|
||||
"WriteToSerialEvery": 750
|
||||
}
|
25
0589ecff-b296-48be-a3f7-7bf27f453975/secrets.json
Normal file
25
0589ecff-b296-48be-a3f7-7bf27f453975/secrets.json
Normal file
@ -0,0 +1,25 @@
|
||||
{
|
||||
"_Application": "Delete-By-Distinct",
|
||||
"_UserSecretsId": "0589ecff-b296-48be-a3f7-7bf27f453975",
|
||||
"CompareRootDirectory": "F:/7-Question/Images-45f4401-(B)",
|
||||
"xRecycleOption": false,
|
||||
"RecycleOption": true,
|
||||
"RenameToMatch": false,
|
||||
"xxRenameToMatch": true,
|
||||
"MaxDegreeOfParallelism": 6,
|
||||
"xSearchPattern": "*.jpg",
|
||||
"SearchPattern": "*.*",
|
||||
"SizeForLong": true,
|
||||
"xSizeForLong": false,
|
||||
"asdf": "8766 - 8815",
|
||||
"xTicksForLong": false,
|
||||
"TicksForLong": true,
|
||||
"Windows": {
|
||||
"Configuration": {
|
||||
"xRootDirectory": "D:/2-Images-B/Corrupt",
|
||||
"RootDirectory": "D:/1-Images-A/Images-c9dbce3b",
|
||||
"xxxRootDirectory": "E:/3-Videos-A/Device-Videos-2_0_0_3-Current-Year",
|
||||
"xxxxRootDirectory": "E:/4-Videos-B/Device Videos 2_0_0_3 - Current - Ignore"
|
||||
}
|
||||
}
|
||||
}
|
9
0841ecbb-394c-4690-bb0e-1c5c48a1297a/secrets.json
Normal file
9
0841ecbb-394c-4690-bb0e-1c5c48a1297a/secrets.json
Normal file
@ -0,0 +1,9 @@
|
||||
{
|
||||
"_UserSecretsId": "0841ecbb-394c-4690-bb0e-1c5c48a1297a",
|
||||
"_Application": "Server",
|
||||
"Mirror:PackageSource": "https://api.nuget.org/v3/index.json",
|
||||
"Mirror:PackageDownloadTimeoutSeconds": "43",
|
||||
"Mirror:Legacy": "False",
|
||||
"GitCommitSeven": "e80b511",
|
||||
"BuildNumber": "1012369"
|
||||
}
|
4
0a0ee825-d83a-4492-aec3-a3cd22f44351/secrets.json
Normal file
4
0a0ee825-d83a-4492-aec3-a3cd22f44351/secrets.json
Normal file
@ -0,0 +1,4 @@
|
||||
{
|
||||
"BuildNumber": "2",
|
||||
"GitCommitSeven": "$(Build"
|
||||
}
|
5
0c43f9aa-96e9-4298-967c-ed069d79e262/secrets.json
Normal file
5
0c43f9aa-96e9-4298-967c-ed069d79e262/secrets.json
Normal file
@ -0,0 +1,5 @@
|
||||
{
|
||||
"_Application": "File-Folder-Helper",
|
||||
"_UserSecretsId": "0c43f9aa-96e9-4298-967c-ed069d79e262",
|
||||
"Delete": "2024-04-29"
|
||||
}
|
354
2999dda1-5329-4d9f-9d68-cccfabe0e47f/secrets.json
Normal file
354
2999dda1-5329-4d9f-9d68-cccfabe0e47f/secrets.json
Normal file
@ -0,0 +1,354 @@
|
||||
{
|
||||
"_Application": "Instance",
|
||||
"_UserSecretsId": "2999dda1-5329-4d9f-9d68-cccfabe0e47f",
|
||||
"Company": "Mike Phares",
|
||||
"Linux": {},
|
||||
"Logging:LogLevel:Microsoft.Hosting.Lifetime": "Debug",
|
||||
"Logging:LogLevel:Microsoft": "Information",
|
||||
"Logging:LogLevel:Default": "Debug",
|
||||
"Logging:EventSource:LogLevel:Default": "Warning",
|
||||
"Logging:EventLog:LogLevel:Default": "Warning",
|
||||
"Logging:Debug:LogLevel:Microsoft.Hosting.Lifetime": "Debug",
|
||||
"Logging:Debug:LogLevel:Microsoft": "Information",
|
||||
"Logging:Debug:LogLevel:Default": "Warning",
|
||||
"Logging:Debug:FormatterOptions:UseUtcTimestamp": "True",
|
||||
"Logging:Debug:FormatterOptions:TimestampFormat": "HH:mm:ss ",
|
||||
"Logging:Debug:FormatterOptions:SingleLine": "True",
|
||||
"Logging:Debug:FormatterOptions:IncludeScopes": "True",
|
||||
"Logging:Debug:FormatterName": "simple",
|
||||
"Logging:Console:LogLevel:Microsoft.Hosting.Lifetime": "Information",
|
||||
"Logging:Console:LogLevel:Microsoft": "Warning",
|
||||
"Logging:Console:LogLevel:Default": "Information",
|
||||
"Logging:Console:FormatterOptions:UseUtcTimestamp": "True",
|
||||
"Logging:Console:FormatterOptions:TimestampFormat": "HH:mm:ss ",
|
||||
"Logging:Console:FormatterOptions:SingleLine": "True",
|
||||
"Logging:Console:FormatterOptions:IncludeScopes": "True",
|
||||
"Logging:Console:FormatterName": "simple",
|
||||
"MaxDegreeOfParallelismX": 1,
|
||||
"MaxDegreeOfParallelism": 6,
|
||||
"Places": [
|
||||
{
|
||||
"Latitude": {
|
||||
"Degrees": 33,
|
||||
"Minutes": 22,
|
||||
"Seconds": 57.8
|
||||
},
|
||||
"Longitude": {
|
||||
"Degrees": -111,
|
||||
"Minutes": 50,
|
||||
"Seconds": 39.94
|
||||
},
|
||||
"Title": "Work"
|
||||
},
|
||||
{
|
||||
"Latitude": {
|
||||
"Degrees": 33,
|
||||
"Minutes": 51,
|
||||
"Seconds": 25.4
|
||||
},
|
||||
"Longitude": {
|
||||
"Degrees": -112,
|
||||
"Minutes": 8,
|
||||
"Seconds": 26.1
|
||||
},
|
||||
"Title": "Home"
|
||||
}
|
||||
],
|
||||
"Windows": {
|
||||
"Configuration": {
|
||||
"CheckDFaceAndUpWriteDates": false,
|
||||
"CheckJsonForDistanceResults": false,
|
||||
"CopyFacesAndSaveFaceLandmarkForOutputResolutions": [],
|
||||
"CrossDirectoryMaxItemsInDistanceCollection": 7,
|
||||
"DateGroup": "c9dbce3b",
|
||||
"DeletePossibleDuplicates": true,
|
||||
"DistanceFactor": 8,
|
||||
"DistanceMoveUnableToMatch": false,
|
||||
"DistanceMoveUnableToMatchXX": true,
|
||||
"DistancePixelDistanceTolerance": 1,
|
||||
"DistanceRenameToMatch": false,
|
||||
"DistanceRenameToMatchXX": true,
|
||||
"EyeThresholdX": 33,
|
||||
"EyeThreshold": 2147483647,
|
||||
"FaceAreaPermyriad": 10000,
|
||||
"FaceConfidencePercent": 100,
|
||||
"FaceDistanceHiddenImageFactorX": 2,
|
||||
"FaceDistanceHiddenImageFactor": 3,
|
||||
"FaceDistancePermyriad": 10000,
|
||||
"FileNameDirectorySeparator": ".Z.",
|
||||
"FocusDirectory": "",
|
||||
"FocusDirectoryXX": "/Hawaii 2022",
|
||||
"FocusModel": "",
|
||||
"FocusModelXX": "NIKON D3400",
|
||||
"ForceFaceLastWriteTimeToCreationTime": false,
|
||||
"ForceMetadataLastWriteTimeToCreationTime": false,
|
||||
"ForcePropertyLastWriteTimeToCreationTime": false,
|
||||
"ForceResizeLastWriteTimeToCreationTime": false,
|
||||
"GenealogicalDataCommunicationFile": "",
|
||||
"GenealogicalDataCommunicationFileXX": "D:/1-Images-A/Images-c9dbce3b-Results/A2)People/c9dbce3b/([])/File-Folder-Helper/638443643487798783/638443643487798783.ged",
|
||||
"ImmichAssetsFile": "D:/1-Images-A/Images-c9dbce3b-Results/F)Immich/c9dbce3b/{}/immich-assets.json",
|
||||
"IgnoreExtensions": [
|
||||
".ffs_db",
|
||||
".FFS_DB",
|
||||
".gif",
|
||||
".GIF",
|
||||
".json",
|
||||
".JSON",
|
||||
".ico",
|
||||
".ICO",
|
||||
".txt",
|
||||
".TXT",
|
||||
".webp",
|
||||
".WEBP"
|
||||
],
|
||||
"IgnoreRulesKeyWords": [
|
||||
"Collage",
|
||||
"Corrupt",
|
||||
"Indecent"
|
||||
],
|
||||
"IntMinValueLength": 11,
|
||||
"JLinks": [],
|
||||
"JLinksXX": [],
|
||||
"JLinksXXX": [
|
||||
"Julie",
|
||||
"Mike Phares Jr"
|
||||
],
|
||||
"JLinksXXXX": [
|
||||
"Adonias-Sylvia-0006",
|
||||
"Don-Trish-0058",
|
||||
"Janet-0015",
|
||||
"Josh-Kasey-0055",
|
||||
"John-Rozanna-0004",
|
||||
"Karen-0017",
|
||||
"Larry-Becky-0009",
|
||||
"Mark-Peggy-0021",
|
||||
"Melvin-Mary-0020",
|
||||
"Norman-Beverly-0003",
|
||||
"Quinn-Tricia-0026",
|
||||
"Wayne-Laurie-0012",
|
||||
"Calvin-Bonnie-0018",
|
||||
"Melvin-Ernestna-0065",
|
||||
"Jeff-Laurel-0025",
|
||||
"Gina-0024",
|
||||
"A-A-0000",
|
||||
"OneOff"
|
||||
],
|
||||
"LinkedAlpha": "",
|
||||
"LinkedAlphaXX": "JJJ",
|
||||
"LoadOrCreateThenSaveDistanceResultsForOutputResolutionsX": [],
|
||||
"LoadOrCreateThenSaveDistanceResultsForOutputResolutions": [
|
||||
"Original"
|
||||
],
|
||||
"LoadOrCreateThenSaveImageFacesResultsForOutputResolutionsX": [],
|
||||
"LoadOrCreateThenSaveImageFacesResultsForOutputResolutions": [
|
||||
"Original"
|
||||
],
|
||||
"LoadPhotoPrismLocations": false,
|
||||
"LocationContainerDebugDirectory": "",
|
||||
"LocationContainerDebugDirectoryXX": "638298094252901621",
|
||||
"LocationContainerDirectoryPattern": "6498023363",
|
||||
"LocationContainerDistanceGroupMinimum": 2000,
|
||||
"LocationContainerDistanceTake": 20,
|
||||
"LocationContainerDistanceTolerance": null,
|
||||
"LocationContainerDistanceToleranceXX": 0.464,
|
||||
"LocationDigits": 9,
|
||||
"LocationFactor": 10000,
|
||||
"LookForAbandoned": false,
|
||||
"LookForAbandonedXX": true,
|
||||
"MappingDefaultName": "John Doe~25",
|
||||
"MappingUseDeterministicHashCodeUnknownFaceKeyValuePairsForAddToMapping": false,
|
||||
"MappingUseDeterministicHashCodeUnknownFaceKeyValuePairsForSaveMapping": false,
|
||||
"MaxImagesInDirectoryForTopLevelFirstPass": 10,
|
||||
"MixedYearRelativePaths": [
|
||||
"Edited",
|
||||
"Phares Slides",
|
||||
"Rex Memorial",
|
||||
"Scanned Grandma's Quilt",
|
||||
"Scanned Pictures Of Kids",
|
||||
"Scanned Prints",
|
||||
"Slide in Name Order Originals (622)",
|
||||
"Slides Pictures"
|
||||
],
|
||||
"ModelDirectory": "L:/GitHub/dlib-models",
|
||||
"ModelName": "Hog",
|
||||
"MoveToDecade": false,
|
||||
"MoveToDecadeXX": true,
|
||||
"NumberOfJitters": 0,
|
||||
"NumberOfTimesToUpsample": 0,
|
||||
"OffsetX": 1000000,
|
||||
"Offset": 9876543,
|
||||
"OffsetXXX": 1055896,
|
||||
"OffsetXXXX": 1056000,
|
||||
"OutputExtension": ".jpg",
|
||||
"OutputQuality": 95,
|
||||
"OutputResolutions": [
|
||||
"Original"
|
||||
],
|
||||
"OverrideForFaceImages": false,
|
||||
"OverrideForFaceImagesXX": true,
|
||||
"OverrideForFaceLandmarkImages": false,
|
||||
"OverrideForResizeImages": false,
|
||||
"Pattern": "[^ABCDEFGHIJKLMNOPQRSTUVWXYZbcdfghjklmnpqrstvwxyz0-9]",
|
||||
"PersonBirthdayFirstYear": 1500,
|
||||
"PersonBirthdayFormat": "yyyy-MM-dd_HH",
|
||||
"PersonCharacters": "^!#+~",
|
||||
"PersonCharactersCopyCount": 0,
|
||||
"PersonCharactersCopyCountXX": 5,
|
||||
"PersonCharactersCopyCountXXX": 2147483647,
|
||||
"PersonCharactersX": "!#%]^_`~+=",
|
||||
"PersonCharactersXX": "^!#]~",
|
||||
"PersonKeyFormat": "yyyy-MM-dd_HH",
|
||||
"PopulatePropertyId": true,
|
||||
"PredictorModelName": "Large",
|
||||
"PropertiesChangedForDistance": false,
|
||||
"PropertiesChangedForFaces": false,
|
||||
"PropertiesChangedForIndex": false,
|
||||
"PropertiesChangedForMetadata": false,
|
||||
"PropertiesChangedForProperty": false,
|
||||
"PropertiesChangedForResize": false,
|
||||
"PropertyContentCollectionFiles": [],
|
||||
"RadomUseBirthdayMinimum": 100,
|
||||
"RangeDaysDeltaTolerance": [
|
||||
0,
|
||||
1825,
|
||||
7300
|
||||
],
|
||||
"RangeDistanceTolerance": [
|
||||
0,
|
||||
0.6164,
|
||||
1.18
|
||||
],
|
||||
"RangeFaceAreaTolerance": [
|
||||
0,
|
||||
0.0001,
|
||||
1
|
||||
],
|
||||
"RangeFaceConfidence": [
|
||||
0,
|
||||
0.5,
|
||||
2.4
|
||||
],
|
||||
"RectangleIntersectMinimums": [
|
||||
0.94,
|
||||
0.99
|
||||
],
|
||||
"RectangleIntersectMinimumsXX": [
|
||||
0.000001
|
||||
],
|
||||
"ReMap": false,
|
||||
"ReMapXX": true,
|
||||
"ResultAllInOne": "_ _ _",
|
||||
"ResultAllInOneSubdirectoryLength": 2,
|
||||
"ResultCollection": "[]",
|
||||
"ResultContent": "()",
|
||||
"ResultSingleton": "{}",
|
||||
"Reverse": false,
|
||||
"RootDirectoryX": "D:/Tmp/phares/Pictures",
|
||||
"RootDirectory": "D:/1-Images-A/Images-c9dbce3b",
|
||||
"RootDirectoryXXX": "D:/Tmp/Phares/Compare/Corrupt",
|
||||
"RootDirectoryXXXX": "D:/7-Question/iCloud Photos 2024",
|
||||
"RootDirectoryXXXXX": "L:/Git/View-by-Distance-Test/Images",
|
||||
"RootDirectoryXXXXXX": "D:/2-Images-B/Not-Copy-Copy-c9dbce3b",
|
||||
"RootDirectoryXXXXXXX": "D:/01-Offline-Backup/1-Images-A/Images-c9dbce3b",
|
||||
"RootDirectoryXXXXXXXX": "D:/1-Images-A/Images-c9dbce3b-Results/Z)lnk-url",
|
||||
"RootDirectoryXXXXXXXXX": "D:/1-Images-A/Images-c9dbce3b/Facebook/2023.2 Facebook",
|
||||
"SaveBlurHashForOutputResolutions": [],
|
||||
"SaveFaceDistancesForOutputResolutions": [
|
||||
"Original"
|
||||
],
|
||||
"SaveFaceLandmarkForOutputResolutions": [],
|
||||
"SaveFilteredOriginalImagesFromJLinksForOutputResolutions": [],
|
||||
"SaveFullYearOfRandomFiles": true,
|
||||
"SaveIndividually": false,
|
||||
"SaveIndividuallyXX": true,
|
||||
"SaveMappedForOutputResolutions": [],
|
||||
"SavePropertyShortcutsForOutputResolutions": [],
|
||||
"SaveRandomForOutputResolutions": [
|
||||
"Original"
|
||||
],
|
||||
"SaveResizedSubFiles": true,
|
||||
"SaveShortcutsForOutputResolutions": [],
|
||||
"SaveSortingWithoutPersonX": true,
|
||||
"SaveSortingWithoutPerson": false,
|
||||
"SkipNotSkipDirectories": [],
|
||||
"SkipNotSkipDirectoriesXX": [
|
||||
"/!/_ Images-To-Do",
|
||||
"/!/_ Test",
|
||||
"/!/Disney",
|
||||
"/!/Chelsea's Friends",
|
||||
"/!/Jason's Friends",
|
||||
"/!/Johnny's Friends",
|
||||
"/!/Julie's Friends",
|
||||
"/!/Kristy's Family",
|
||||
"/!/Kristy's Friends",
|
||||
"/!/Logan Friends",
|
||||
"/!/Mackenzie Friends",
|
||||
"/!/Mike's Family",
|
||||
"/!/Mike's Friends",
|
||||
"/!/Statue",
|
||||
"/!/Tracy's Friend",
|
||||
"/!/WaX"
|
||||
],
|
||||
"SkipOlderThanDays": null,
|
||||
"SkipOlderThanDaysXX": 2200,
|
||||
"SkipPersonWithMoreThen": null,
|
||||
"SkipPersonWithMoreThenXX": 15,
|
||||
"SkipSearch": false,
|
||||
"SortingMaximumPerFaceShouldBeHigh": 3000,
|
||||
"SortingMaximumPerKeyX": 6,
|
||||
"SortingMaximumPerKey": 12,
|
||||
"SortingMinimumToUseSigma": 10,
|
||||
"TestDistanceResults": true,
|
||||
"UseExtraPersonKeyCheck": true,
|
||||
"UseExtraPersonKeyCheckXX": false,
|
||||
"UseFilterTries": 0,
|
||||
"ValidImageFormatExtensions": [
|
||||
".bmp",
|
||||
".BMP",
|
||||
".gif",
|
||||
".GIF",
|
||||
".jpeg",
|
||||
".JPEG",
|
||||
".jpg",
|
||||
".JPG",
|
||||
".png",
|
||||
".PNG",
|
||||
".tiff",
|
||||
".TIFF",
|
||||
".tif",
|
||||
".TIF"
|
||||
],
|
||||
"ValidKeyWordsToIgnoreInRandom": [
|
||||
"Blurry",
|
||||
"Collage",
|
||||
"Corrupt",
|
||||
"Development",
|
||||
"Duplicate",
|
||||
"Ex-spouse",
|
||||
"Indecent",
|
||||
"Infineon",
|
||||
"Irrelevant",
|
||||
"Review",
|
||||
"Slideshow",
|
||||
"SUMCO"
|
||||
],
|
||||
"ValidResolutions": [
|
||||
"Original",
|
||||
"176 x 176",
|
||||
"256 x 256",
|
||||
"353 x 353",
|
||||
"1024 x 768",
|
||||
"1280 x 720",
|
||||
"1280 x 800",
|
||||
"1376 x 768",
|
||||
"1600 x 1200",
|
||||
"1920 x 1080",
|
||||
"2256 x 1496",
|
||||
"3840 x 2160",
|
||||
"7680 x 4320"
|
||||
],
|
||||
"VerifyToSeason": []
|
||||
}
|
||||
},
|
||||
"WorkingDirectoryName": "PharesApps"
|
||||
}
|
42
2a0acd34-8f61-47a3-8818-73fa8fe04902/secrets.json
Normal file
42
2a0acd34-8f61-47a3-8818-73fa8fe04902/secrets.json
Normal file
@ -0,0 +1,42 @@
|
||||
{
|
||||
"_Application": "oi-metrology-viewer.Wafer-Counter",
|
||||
"_UserSecretsId": "2a0acd34-8f61-47a3-8818-73fa8fe04902",
|
||||
"BuildNumber": "1000014",
|
||||
"Company": "Infineon Technologies Americas Corp.",
|
||||
"GitCommitSeven": "6bc0487",
|
||||
"EcCharacterizationSi": "\\\\mesfs.infineon.com\\EC_Characterization_Si",
|
||||
"EcMesaFileShareCharacterizationSi": "https://eaf-prod.mes.infineon.com:4439",
|
||||
"IsDevelopment": "False",
|
||||
"IsDevelopmentX": "True",
|
||||
"IsStaging": "False",
|
||||
"Logging:Console:FormatterName": "simple",
|
||||
"Logging:Console:FormatterOptions:IncludeScopes": "True",
|
||||
"Logging:Console:FormatterOptions:SingleLine": "True",
|
||||
"Logging:Console:FormatterOptions:TimestampFormat": "HH:mm:ss ",
|
||||
"Logging:Console:FormatterOptions:UseUtcTimestamp": "True",
|
||||
"Logging:Console:LogLevel:Default": "Information",
|
||||
"Logging:Console:LogLevel:Microsoft.Hosting.Lifetime": "Information",
|
||||
"Logging:Console:LogLevel:Microsoft": "Warning",
|
||||
"Logging:Debug:FormatterName": "simple",
|
||||
"Logging:Debug:FormatterOptions:IncludeScopes": "True",
|
||||
"Logging:Debug:FormatterOptions:SingleLine": "True",
|
||||
"Logging:Debug:FormatterOptions:TimestampFormat": "HH:mm:ss ",
|
||||
"Logging:Debug:FormatterOptions:UseUtcTimestamp": "True",
|
||||
"Logging:Debug:LogLevel:Default": "Warning",
|
||||
"Logging:Debug:LogLevel:Microsoft.Hosting.Lifetime": "Debug",
|
||||
"Logging:Debug:LogLevel:Microsoft": "Information",
|
||||
"Logging:EventLog:LogLevel:Default": "Warning",
|
||||
"Logging:EventSource:LogLevel:Default": "Warning",
|
||||
"Logging:LogLevel:Default": "Debug",
|
||||
"Logging:LogLevel:Microsoft.Hosting.Lifetime": "Debug",
|
||||
"Logging:LogLevel:Microsoft": "Information",
|
||||
"MockRoot": "",
|
||||
"MockRootX": "/Data/Tests",
|
||||
"MonAResource": "OI_Metrology_Viewer_EC",
|
||||
"MonAResourceX": "OI_Metrology_Viewer_IFX",
|
||||
"MonASite": "auc",
|
||||
"URLs": "http://localhost:5003;",
|
||||
"WaferCounterDestinationDirectory": "\\\\messa01ec.infineon.com\\apps\\WaferCounter",
|
||||
"WaferCounterTwoFileSecondsWait": 14,
|
||||
"WorkingDirectoryName": "IFXApps"
|
||||
}
|
164
2ba43604-da25-4968-85d5-ea7afcfc2ddb/secrets.json
Normal file
164
2ba43604-da25-4968-85d5-ea7afcfc2ddb/secrets.json
Normal file
@ -0,0 +1,164 @@
|
||||
{
|
||||
"_Application": "EDA.Viewer",
|
||||
"_UserSecretsId": "2ba43604-da25-4968-85d5-ea7afcfc2ddb",
|
||||
"BuildNumber": "1",
|
||||
"Company": "Infineon Technologies Americas Corp.",
|
||||
"Drives": [
|
||||
{
|
||||
"Letter": "a",
|
||||
"Password": "",
|
||||
"Share": "Floppy Disk",
|
||||
"Use": false,
|
||||
"User": ""
|
||||
},
|
||||
{
|
||||
"Letter": "c",
|
||||
"Password": "",
|
||||
"Share": "SYSTEM",
|
||||
"Use": false,
|
||||
"User": ""
|
||||
},
|
||||
{
|
||||
"Letter": "d",
|
||||
"Password": "",
|
||||
"Share": "DATA",
|
||||
"Use": false,
|
||||
"User": ""
|
||||
},
|
||||
{
|
||||
"Letter": "g",
|
||||
"Password": "D6QDJ5g6vjqnNyyRbfbj+g==",
|
||||
"Share": "\\\\10.95.154.12\\testdata",
|
||||
"Use": true,
|
||||
"User": "10.95.154.12\\Manager"
|
||||
},
|
||||
{
|
||||
"Letter": "h",
|
||||
"Password": "tVyC7uPHtScZR8NLInSaxQ==",
|
||||
"Share": "\\\\10.95.154.13\\COM 5",
|
||||
"Use": false,
|
||||
"User": "10.95.154.13\\user"
|
||||
},
|
||||
{
|
||||
"Letter": "i",
|
||||
"Password": "tLIPgqM6R9hVQOteRnTHwPqIg3Zxv8CohTjFkjkFz8k=",
|
||||
"Share": "\\\\messdv002.na.infineon.com\\Candela",
|
||||
"Use": true,
|
||||
"User": "INFINEON\\MESGaNEAF"
|
||||
},
|
||||
{
|
||||
"Letter": "j",
|
||||
"Password": "tLIPgqM6R9hVQOteRnTHwPqIg3Zxv8CohTjFkjkFz8k=",
|
||||
"Share": "\\\\messdv002.na.infineon.com\\Characterization",
|
||||
"Use": false,
|
||||
"User": "INFINEON\\MESGaNEAF"
|
||||
},
|
||||
{
|
||||
"Letter": "k",
|
||||
"Password": "tLIPgqM6R9hVQOteRnTHwPqIg3Zxv8CohTjFkjkFz8k=",
|
||||
"Share": "\\\\messdv002.na.infineon.com\\GaN_Ninfineon\\Characterization",
|
||||
"Use": false,
|
||||
"User": "INFINEON\\MESGaNEAF"
|
||||
},
|
||||
{
|
||||
"Letter": "l",
|
||||
"Password": "",
|
||||
"Share": "TFS",
|
||||
"Use": false,
|
||||
"User": ""
|
||||
},
|
||||
{
|
||||
"Letter": "m",
|
||||
"Password": "CUGygiPwahy4U3j+6KqqoMZ08STyVDR1rKm6MwPpt00=",
|
||||
"Share": "\\\\messdv002.na.infineon.com\\MOCVD",
|
||||
"Use": false,
|
||||
"User": "infineon\\ECMESEAF"
|
||||
},
|
||||
{
|
||||
"Letter": "n",
|
||||
"Password": "DYVBOr2HJdB7KOhd/IFhLA==",
|
||||
"Share": "\\\\10.95.154.22\\C",
|
||||
"Use": false,
|
||||
"User": "10.95.154.22\\Aixtron"
|
||||
},
|
||||
{
|
||||
"Letter": "o",
|
||||
"Password": "DYVBOr2HJdB7KOhd/IFhLA==",
|
||||
"Share": "\\\\10.95.154.16\\Aixtron",
|
||||
"Use": false,
|
||||
"User": "10.95.154.16\\Aixtron"
|
||||
},
|
||||
{
|
||||
"Letter": "p",
|
||||
"Password": "DYVBOr2HJdB7KOhd/IFhLA==",
|
||||
"Share": "\\\\10.95.154.15\\Aixtron",
|
||||
"Use": false,
|
||||
"User": "10.95.154.15\\Aixtron"
|
||||
},
|
||||
{
|
||||
"Letter": "q",
|
||||
"Password": "v1NOsEOCvbnhzKabspPcCQ==",
|
||||
"Share": "\\\\10.95.154.21\\Data",
|
||||
"Use": false,
|
||||
"User": "10.95.154.21\\XRD04Admin"
|
||||
},
|
||||
{
|
||||
"Letter": "r",
|
||||
"Password": "rzXkXdHKetDfsukhZKW0yA==",
|
||||
"Share": "\\\\10.95.154.23\\Data",
|
||||
"Use": false,
|
||||
"User": "\"10.95.154.23\\infineon us\""
|
||||
},
|
||||
{
|
||||
"Letter": "s",
|
||||
"Password": "CUGygiPwahy4U3j+6KqqoMZ08STyVDR1rKm6MwPpt00=",
|
||||
"Share": "\\\\mesfs.infineon.com\\EC_EAFRepository",
|
||||
"Use": true,
|
||||
"User": "infineon\\ECMESEAF"
|
||||
},
|
||||
{
|
||||
"Letter": "t",
|
||||
"Password": "IKsJmRVUH3xlv+RRELRbwoXYKwLvF4Re7k1Rigzpwf4=",
|
||||
"Share": "\\\\mesfs.infineon.com\\EC_EDA",
|
||||
"Use": true,
|
||||
"User": "infineon\\ECEDASvc"
|
||||
},
|
||||
{
|
||||
"Letter": "z",
|
||||
"Password": "",
|
||||
"Share": "DVD Drive",
|
||||
"Use": false,
|
||||
"User": ""
|
||||
}
|
||||
],
|
||||
"EcEDADatabasePassword": "8vIs2nEZPkcdBUfXX0hHlA==",
|
||||
"GitCommitSeven": "1234567",
|
||||
"IfxEDADatabasePassword": "8vIs2nEZPkcdBUfXX0hHlA==",
|
||||
"Logging:Console:FormatterName": "simple",
|
||||
"Logging:Console:FormatterOptions:IncludeScopes": "True",
|
||||
"Logging:Console:FormatterOptions:SingleLine": "True",
|
||||
"Logging:Console:FormatterOptions:TimestampFormat": "HH:mm:ss ",
|
||||
"Logging:Console:FormatterOptions:UseUtcTimestamp": "True",
|
||||
"Logging:Console:LogLevel:Default": "Information",
|
||||
"Logging:Console:LogLevel:Microsoft.Hosting.Lifetime": "Information",
|
||||
"Logging:Console:LogLevel:Microsoft": "Warning",
|
||||
"Logging:Debug:FormatterName": "simple",
|
||||
"Logging:Debug:FormatterOptions:IncludeScopes": "True",
|
||||
"Logging:Debug:FormatterOptions:SingleLine": "True",
|
||||
"Logging:Debug:FormatterOptions:TimestampFormat": "HH:mm:ss ",
|
||||
"Logging:Debug:FormatterOptions:UseUtcTimestamp": "True",
|
||||
"Logging:Debug:LogLevel:Default": "Warning",
|
||||
"Logging:Debug:LogLevel:Microsoft.Hosting.Lifetime": "Debug",
|
||||
"Logging:Debug:LogLevel:Microsoft": "Information",
|
||||
"Logging:EventLog:LogLevel:Default": "Warning",
|
||||
"Logging:EventSource:LogLevel:Default": "Warning",
|
||||
"Logging:LogLevel:Default": "Debug",
|
||||
"Logging:LogLevel:Microsoft.Hosting.Lifetime": "Debug",
|
||||
"Logging:LogLevel:Microsoft": "Information",
|
||||
"MonARessource": "EDA_Viewer_EC",
|
||||
"Server": "mesfs.infineon.com",
|
||||
"xURLs": "http://localhost:5001;",
|
||||
"xxURLs": "http://localhost:5002;",
|
||||
"URLs": "https://localhost:7130;http://localhost:5126",
|
||||
"WorkingDirectoryName": "IFXApps"
|
||||
}
|
151
4b1c1d7e-f19c-4349-99e1-8bf623ea1f5b/secrets.json
Normal file
151
4b1c1d7e-f19c-4349-99e1-8bf623ea1f5b/secrets.json
Normal file
@ -0,0 +1,151 @@
|
||||
{
|
||||
"_Application": "EAF-Viewer.Server",
|
||||
"_UserSecretsId": "4b1c1d7e-f19c-4349-99e1-8bf623ea1f5b",
|
||||
"AllowedHosts": "*",
|
||||
"BuildNumber": "1",
|
||||
"Company": "Infineon Technologies Americas Corp.",
|
||||
"ConnectionStrings": {
|
||||
"xSQL": "Data Source=messqlec1.infineon.com\\PROD1,53959;Integrated Security=True;Initial Catalog=Metrology;",
|
||||
"SQL": "Data Source=MESSAD1001\\TEST1,59583;Integrated Security=True;Initial Catalog=Metrology;"
|
||||
},
|
||||
"Drives": [
|
||||
{
|
||||
"Letter": "a",
|
||||
"Password": "",
|
||||
"Share": "Floppy Disk",
|
||||
"Use": false,
|
||||
"User": ""
|
||||
},
|
||||
{
|
||||
"Letter": "c",
|
||||
"Password": "",
|
||||
"Share": "SYSTEM",
|
||||
"Use": false,
|
||||
"User": ""
|
||||
},
|
||||
{
|
||||
"Letter": "d",
|
||||
"Password": "",
|
||||
"Share": "DATA",
|
||||
"Use": false,
|
||||
"User": ""
|
||||
},
|
||||
{
|
||||
"Letter": "g",
|
||||
"Password": "D6QDJ5g6vjqnNyyRbfbj+g==",
|
||||
"Share": "\\\\10.95.154.12\\testdata",
|
||||
"Use": true,
|
||||
"User": "10.95.154.12\\Manager"
|
||||
},
|
||||
{
|
||||
"Letter": "h",
|
||||
"Password": "tVyC7uPHtScZR8NLInSaxQ==",
|
||||
"Share": "\\\\10.95.154.13\\COM 5",
|
||||
"Use": false,
|
||||
"User": "10.95.154.13\\user"
|
||||
},
|
||||
{
|
||||
"Letter": "i",
|
||||
"Password": "tLIPgqM6R9hVQOteRnTHwPqIg3Zxv8CohTjFkjkFz8k=",
|
||||
"Share": "\\\\messdv002.na.infineon.com\\Candela",
|
||||
"Use": true,
|
||||
"User": "INFINEON\\MESGaNEAF"
|
||||
},
|
||||
{
|
||||
"Letter": "j",
|
||||
"Password": "tLIPgqM6R9hVQOteRnTHwPqIg3Zxv8CohTjFkjkFz8k=",
|
||||
"Share": "\\\\messdv002.na.infineon.com\\Characterization",
|
||||
"Use": false,
|
||||
"User": "INFINEON\\MESGaNEAF"
|
||||
},
|
||||
{
|
||||
"Letter": "k",
|
||||
"Password": "tLIPgqM6R9hVQOteRnTHwPqIg3Zxv8CohTjFkjkFz8k=",
|
||||
"Share": "\\\\messdv002.na.infineon.com\\GaN_Ninfineon\\Characterization",
|
||||
"Use": false,
|
||||
"User": "INFINEON\\MESGaNEAF"
|
||||
},
|
||||
{
|
||||
"Letter": "l",
|
||||
"Password": "",
|
||||
"Share": "TFS",
|
||||
"Use": false,
|
||||
"User": ""
|
||||
},
|
||||
{
|
||||
"Letter": "m",
|
||||
"Password": "CUGygiPwahy4U3j+6KqqoMZ08STyVDR1rKm6MwPpt00=",
|
||||
"Share": "\\\\messdv002.na.infineon.com\\MOCVD",
|
||||
"Use": false,
|
||||
"User": "infineon\\ECMESEAF"
|
||||
},
|
||||
{
|
||||
"Letter": "n",
|
||||
"Password": "DYVBOr2HJdB7KOhd/IFhLA==",
|
||||
"Share": "\\\\10.95.154.22\\C",
|
||||
"Use": false,
|
||||
"User": "10.95.154.22\\Aixtron"
|
||||
},
|
||||
{
|
||||
"Letter": "o",
|
||||
"Password": "DYVBOr2HJdB7KOhd/IFhLA==",
|
||||
"Share": "\\\\10.95.154.16\\Aixtron",
|
||||
"Use": false,
|
||||
"User": "10.95.154.16\\Aixtron"
|
||||
},
|
||||
{
|
||||
"Letter": "p",
|
||||
"Password": "DYVBOr2HJdB7KOhd/IFhLA==",
|
||||
"Share": "\\\\10.95.154.15\\Aixtron",
|
||||
"Use": false,
|
||||
"User": "10.95.154.15\\Aixtron"
|
||||
},
|
||||
{
|
||||
"Letter": "q",
|
||||
"Password": "v1NOsEOCvbnhzKabspPcCQ==",
|
||||
"Share": "\\\\10.95.154.21\\Data",
|
||||
"Use": false,
|
||||
"User": "10.95.154.21\\XRD04Admin"
|
||||
},
|
||||
{
|
||||
"Letter": "r",
|
||||
"Password": "rzXkXdHKetDfsukhZKW0yA==",
|
||||
"Share": "\\\\10.95.154.23\\Data",
|
||||
"Use": false,
|
||||
"User": "\"10.95.154.23\\infineon us\""
|
||||
},
|
||||
{
|
||||
"Letter": "s",
|
||||
"Password": "CUGygiPwahy4U3j+6KqqoMZ08STyVDR1rKm6MwPpt00=",
|
||||
"Share": "\\\\mesfs.infineon.com\\EC_EAFRepository",
|
||||
"Use": true,
|
||||
"User": "infineon\\ECMESEAF"
|
||||
},
|
||||
{
|
||||
"Letter": "t",
|
||||
"Password": "IKsJmRVUH3xlv+RRELRbwoXYKwLvF4Re7k1Rigzpwf4=",
|
||||
"Share": "\\\\mesfs.infineon.com\\EC_EDA",
|
||||
"Use": true,
|
||||
"User": "infineon\\ECEDASvc"
|
||||
},
|
||||
{
|
||||
"Letter": "z",
|
||||
"Password": "",
|
||||
"Share": "DVD Drive",
|
||||
"Use": false,
|
||||
"User": ""
|
||||
}
|
||||
],
|
||||
"GitCommitSeven": "1234567",
|
||||
"xMetrologyConnectionString": "Data Source=messqlec1.infineon.com\\PROD1,53959;Integrated Security=True;Initial Catalog=Metrology;",
|
||||
"MetrologyConnectionString": "Data Source=MESSAD1001\\TEST1,59583;Integrated Security=True;Initial Catalog=Metrology;",
|
||||
"xMonitorApplicationResource": "EAF_Viewer_EC",
|
||||
"MonitorApplicationResource": "EAF_Viewer_IFX",
|
||||
"MonitorApplicationSite": "auc",
|
||||
"RequestPath": "",
|
||||
"SerialPort": "COM1",
|
||||
"Server": "mesfs.infineon.com",
|
||||
"xURLs": "http://localhost:5002;",
|
||||
"URLs": "https://localhost:7130;http://localhost:5126",
|
||||
"WorkingDirectoryName": "IFXApps"
|
||||
}
|
48
4cfc0085-f5aa-4815-bae9-05ca5ed37b41/secrets.json
Normal file
48
4cfc0085-f5aa-4815-bae9-05ca5ed37b41/secrets.json
Normal file
@ -0,0 +1,48 @@
|
||||
{
|
||||
"_Application": "Parsing-Packets",
|
||||
"_UserSecretsId": "4cfc0085-f5aa-4815-bae9-05ca5ed37b41",
|
||||
"BuildNumber": "1234",
|
||||
"Company": "Infineon Technologies Americas Corp.",
|
||||
"EAFLogConfiguration": {
|
||||
"SearchPattern": "*.log*"
|
||||
},
|
||||
"GitCommitSeven": "asdf",
|
||||
"Helper": "HelperPhysicalAddress",
|
||||
"Logging:Console:FormatterName": "simple",
|
||||
"Logging:Console:FormatterOptions:IncludeScopes": "True",
|
||||
"Logging:Console:FormatterOptions:SingleLine": "True",
|
||||
"Logging:Console:FormatterOptions:TimestampFormat": "HH:mm:ss ",
|
||||
"Logging:Console:FormatterOptions:UseUtcTimestamp": "True",
|
||||
"Logging:Console:LogLevel:Default": "Information",
|
||||
"Logging:Console:LogLevel:Microsoft": "Warning",
|
||||
"Logging:Console:LogLevel:Microsoft.Hosting.Lifetime": "Information",
|
||||
"Logging:Debug:FormatterName": "simple",
|
||||
"Logging:Debug:FormatterOptions:IncludeScopes": "True",
|
||||
"Logging:Debug:FormatterOptions:SingleLine": "True",
|
||||
"Logging:Debug:FormatterOptions:TimestampFormat": "HH:mm:ss ",
|
||||
"Logging:Debug:FormatterOptions:UseUtcTimestamp": "True",
|
||||
"Logging:Debug:LogLevel:Default": "Warning",
|
||||
"Logging:Debug:LogLevel:Microsoft": "Information",
|
||||
"Logging:Debug:LogLevel:Microsoft.Hosting.Lifetime": "Debug",
|
||||
"Logging:EventLog:LogLevel:Default": "Warning",
|
||||
"Logging:EventSource:LogLevel:Default": "Warning",
|
||||
"Logging:LogLevel:Default": "Debug",
|
||||
"Logging:LogLevel:Microsoft": "Information",
|
||||
"Logging:LogLevel:Microsoft.Hosting.Lifetime": "Debug",
|
||||
"MillisecondsDelay": 54000,
|
||||
"PhysicalAddressConfiguration": {
|
||||
"Description": "Intel(R) Wi-Fi 6E AX211 160MHz",
|
||||
"DescriptionXX": "Realtek Gaming GbE Family Controller",
|
||||
"DescriptionXXX": "Realtek PCIe GbE Family Controller",
|
||||
"DeviceName": "\\Device\\NPF_{C2E4B061-2A66-4ED6-B21F-4F70108FD3F2}",
|
||||
"DeviceNameXX": "\\Device\\NPF_{BE7FA398-3B6D-416B-8F79-48D83FCD66B1}",
|
||||
"DeviceNameXXX": "\\Device\\NPF_{0F98EC52-9802-40F8-811C-13E3C25DE913}",
|
||||
"Directory": "D:/5-Other-Small/Notes/Network/.vscode/Parsing-Packets-Physical-Address",
|
||||
"IPV4Filter": "192.168.",
|
||||
"ReadTimeoutMilliseconds": 1000,
|
||||
"RemoveHistoryAfter": 1000,
|
||||
"StringOutputType": "Normal",
|
||||
"UseARP": false
|
||||
},
|
||||
"URLs": "http://localhost:5004;"
|
||||
}
|
141
6062c774-99a9-4f4a-b42d-a9cb7fcbd8be/file-watcher.json
Normal file
141
6062c774-99a9-4f4a-b42d-a9cb7fcbd8be/file-watcher.json
Normal file
@ -0,0 +1,141 @@
|
||||
{
|
||||
"CompassConfiguration": {
|
||||
"Destination": "\\\\10.95.1.211\\Share\\RawData\\TRENDLOG",
|
||||
"HoursBack": 4,
|
||||
"MonthPattern": "MMM",
|
||||
"Pattern": "*.csv",
|
||||
"Source": "C:/Alerton/Compass/1.0/CLIMATEC/archive/trendlog",
|
||||
"TriggerAppendage": ".trg",
|
||||
"YearPattern": "yyyy"
|
||||
},
|
||||
"DriveConfiguration": {
|
||||
"Letter": "s",
|
||||
"Password": "zjtaxxwdEnJ/9tfXQFdj6TKiKBAmpCHWjdi6XYrflw4=",
|
||||
"Share": "\\\\10.95.1.211\\Share",
|
||||
"Use": true,
|
||||
"User": "infineon\\ECMESEAF"
|
||||
},
|
||||
"EAFLogConfiguration": {
|
||||
"SearchPattern": "*.log*"
|
||||
},
|
||||
"EAFProgramDataConfiguration": {
|
||||
"Destination": "\\\\messa08ec.infineon.com\\d$\\ProgramData\\EC_Characterization_Si\\RawData",
|
||||
"Source": "D:/ProgramData/EC_Characterization_Si/RawData"
|
||||
},
|
||||
"EDADatabaseConfiguration": {
|
||||
"CSharpDateTimeFormat": "yyyy-MM-dd_hh:mm:ss tt",
|
||||
"FileShare": "\\\\mesfs.infineon.com\\EC_EDA",
|
||||
"Name": "Staging",
|
||||
"OracleDateTimeFormat": "yyyy-MM-dd_hh:mi:ss AM",
|
||||
"Password": "8vIs2nEZPkcdBUfXX0hHlA==",
|
||||
"TNS": "(description=(address_list=(address=(protocol=tcp)(host=fimess-db.mes.infineon.com)(port=7001)))(connect_data=(sid=fimess)))",
|
||||
"TNSX": "(description=(address_list=(address=(protocol=tcp)(host=fimesp-db.mes.infineon.com)(port=7002)))(connect_data=(sid=fimesp)))",
|
||||
"UserName": "edastag"
|
||||
},
|
||||
"MetrologyConfiguration": {
|
||||
"DeleteOlderThanWeeks": 16,
|
||||
"DirectoriesBack": 2,
|
||||
"HardcodedValues": [
|
||||
"BIORAD2",
|
||||
"BIORAD3",
|
||||
"BIORAD4",
|
||||
"BIORAD5",
|
||||
"CDE2",
|
||||
"CDE3",
|
||||
"CDE4",
|
||||
"CDE5",
|
||||
"CDE6",
|
||||
"HGCV1",
|
||||
"HGCV2",
|
||||
"HGCV3",
|
||||
"TENCOR1",
|
||||
"TENCOR2",
|
||||
"TENCOR3",
|
||||
"SP101",
|
||||
"SPV01",
|
||||
"SRP",
|
||||
"WC6Inch",
|
||||
"WC8Inch",
|
||||
"Bio-Rad"
|
||||
],
|
||||
"SourceDirectories": [
|
||||
"\\\\messa01ec.infineon.com\\apps\\Metrology\\Run Data Repository\\MET08ANLYSDIFAAST230\\Source\\MET08ANLYSDIFAAST230",
|
||||
"\\\\messa01ec.infineon.com\\apps\\Metrology\\Run Data Repository\\MET08DDUPSFS6420\\Source\\MET08DDUPSFS6420",
|
||||
"\\\\messa01ec.infineon.com\\apps\\Metrology\\Run Data Repository\\MET08DDUPSP1TBI\\Source\\MET08DDUPSP1TBI",
|
||||
"\\\\messa01ec.infineon.com\\apps\\Metrology\\Run Data Repository\\MET08RESIHGCV\\Source\\MET08RESIHGCV",
|
||||
"\\\\messa01ec.infineon.com\\apps\\Metrology\\Run Data Repository\\MET08RESIMAPCDE\\Source\\MET08RESIMAPCDE",
|
||||
"\\\\messa01ec.infineon.com\\apps\\Metrology\\Run Data Repository\\MET08RESISRP2100\\Source\\MET08RESISRP2100",
|
||||
"\\\\messa01ec.infineon.com\\apps\\Metrology\\Run Data Repository\\MET08THFTIRQS408M\\Source\\MET08THFTIRQS408M",
|
||||
"\\\\messa01ec.infineon.com\\apps\\Metrology\\Run Data Repository\\MET08THFTIRSTRATUS\\Source\\MET08THFTIRSTRATUS"
|
||||
]
|
||||
},
|
||||
"NugetConfiguration": {
|
||||
"Destination": "L:/File-Watcher/Helper/Nuget/Packages",
|
||||
"KeyFileExtension": ".nuspec",
|
||||
"KeyFileExtensionB": "icon",
|
||||
"KeyFileExtensionC": "readme",
|
||||
"RenameToLower": true,
|
||||
"SearchPattern": "*.nupkg",
|
||||
"Source": "C:/Users/phares/.nuget/packages"
|
||||
},
|
||||
"SerialConfiguration": {
|
||||
"Destination": "L:/DevOps/MESA_FI/File-Watcher/.vscode",
|
||||
"GhostPCLFileName": "gpcl6win64.exe",
|
||||
"LincPDFCFileName": "LincPDFC.exe",
|
||||
"PortName": "COM37"
|
||||
},
|
||||
"StratusConfiguration": {
|
||||
"Destination": "D:/Tmp",
|
||||
"DestinationX": "\\\\10.95.1.211\\Share\\RawData\\BIORAD4",
|
||||
"FileDelimiterPattern": "Mean [0-9.]*, STDD [0-9.]*",
|
||||
"WatchFile": "DataBiorad.txt"
|
||||
},
|
||||
"TransmissionControlProtocolConfiguration": {
|
||||
"Destination": "L:/DevOps/MESA_FI/File-Watcher/.vscode",
|
||||
"GhostPCLFileName": "gpcl6win64.exe",
|
||||
"IPAddress": "COM37",
|
||||
"IPAddresses": {
|
||||
"10.95.154.19": [
|
||||
"EPP-WEST",
|
||||
"6INCH",
|
||||
"WC6INCH3"
|
||||
],
|
||||
"10.95.154.43": [
|
||||
"FQA",
|
||||
"6INCH",
|
||||
"WC6INCH1"
|
||||
],
|
||||
"10.95.154.44": [
|
||||
"MU",
|
||||
"6INCH",
|
||||
"WC6INCH2"
|
||||
],
|
||||
"10.95.154.46": [
|
||||
"EPP-EAST",
|
||||
"6INCH",
|
||||
"WC6INCH4"
|
||||
],
|
||||
"10.95.154.47": [
|
||||
"FQA",
|
||||
"8INCH",
|
||||
"WC8INCH1"
|
||||
],
|
||||
"10.95.154.48": [
|
||||
"MU",
|
||||
"8INCH",
|
||||
"WC8INCH2"
|
||||
],
|
||||
"10.95.154.49": [
|
||||
"EPP-WEST",
|
||||
"8INCH",
|
||||
"WC8INCH3"
|
||||
]
|
||||
},
|
||||
"Port": 950,
|
||||
"Server": false
|
||||
},
|
||||
"WaferCounterConfiguration": {
|
||||
"Destination": "\\\\mestsa01ec.infineon.com\\apps\\WaferCounter\\V203",
|
||||
"MatchPath": false
|
||||
}
|
||||
}
|
51
6062c774-99a9-4f4a-b42d-a9cb7fcbd8be/secrets.json
Normal file
51
6062c774-99a9-4f4a-b42d-a9cb7fcbd8be/secrets.json
Normal file
@ -0,0 +1,51 @@
|
||||
{
|
||||
"_Application": "File-Watcher",
|
||||
"_UserSecretsId": "6062c774-99a9-4f4a-b42d-a9cb7fcbd8be",
|
||||
"BuildNumber": "1234",
|
||||
"ConfigurationDirectoryNames": [
|
||||
"Microsoft",
|
||||
"UserSecrets",
|
||||
"6062c774-99a9-4f4a-b42d-a9cb7fcbd8be"
|
||||
],
|
||||
"ConfigurationSpecialFolder": 26,
|
||||
"ConfigurationFileName": "file-watcher.json",
|
||||
"Company": "Infineon Technologies Americas Corp.",
|
||||
"GitCommitSeven": "asdf",
|
||||
"HelperX": "HelperTCP",
|
||||
"Helper": "HelperNuget",
|
||||
"HelperXXX": "HelperEAFLog",
|
||||
"HelperXXXX": "HelperSerial",
|
||||
"HelperXXXXX": "HelperCompass",
|
||||
"HelperXXXXXX": "HelperStratus",
|
||||
"HelperXXXXXXX": "HelperEventLog",
|
||||
"HelperXXXXXXXX": "HelperInfinityQS",
|
||||
"HelperXXXXXXXXX": "HelperWaferCounter",
|
||||
"HelperXXXXXXXXXX": "HelperEAFProgramData",
|
||||
"HelperXXXXXXXXXXX": "HelperMetrologyFiles",
|
||||
"Logging:Console:FormatterName": "simple",
|
||||
"Logging:Console:FormatterOptions:IncludeScopes": "True",
|
||||
"Logging:Console:FormatterOptions:SingleLine": "True",
|
||||
"Logging:Console:FormatterOptions:TimestampFormat": "HH:mm:ss ",
|
||||
"Logging:Console:FormatterOptions:UseUtcTimestamp": "True",
|
||||
"Logging:Console:LogLevel:Default": "Information",
|
||||
"Logging:Console:LogLevel:Microsoft": "Warning",
|
||||
"Logging:Console:LogLevel:Microsoft.Hosting.Lifetime": "Information",
|
||||
"Logging:Debug:FormatterName": "simple",
|
||||
"Logging:Debug:FormatterOptions:IncludeScopes": "True",
|
||||
"Logging:Debug:FormatterOptions:SingleLine": "True",
|
||||
"Logging:Debug:FormatterOptions:TimestampFormat": "HH:mm:ss ",
|
||||
"Logging:Debug:FormatterOptions:UseUtcTimestamp": "True",
|
||||
"Logging:Debug:LogLevel:Default": "Warning",
|
||||
"Logging:Debug:LogLevel:Microsoft": "Information",
|
||||
"Logging:Debug:LogLevel:Microsoft.Hosting.Lifetime": "Debug",
|
||||
"Logging:EventLog:LogLevel:Default": "Warning",
|
||||
"Logging:EventSource:LogLevel:Default": "Warning",
|
||||
"Logging:LogLevel:Default": "Debug",
|
||||
"Logging:LogLevel:Microsoft": "Information",
|
||||
"Logging:LogLevel:Microsoft.Hosting.Lifetime": "Debug",
|
||||
"MillisecondsDelay": 54000,
|
||||
"URLs": "http://localhost:5003;",
|
||||
"WatchDirectory": "D:/Tmp/Phares/Event-Log",
|
||||
"WatchDirectoryXX": "D:/EAF/EAF Instances",
|
||||
"WatchDirectoryXXX": "C:/software/WaferCounter/V203"
|
||||
}
|
66
6501aa0f-8499-4be5-96a9-e99b11323eeb/secrets.json
Normal file
66
6501aa0f-8499-4be5-96a9-e99b11323eeb/secrets.json
Normal file
@ -0,0 +1,66 @@
|
||||
{
|
||||
"_Application": "oi-metrology-viewer.S-e-r-v-e-r",
|
||||
"_UserSecretsId": "6501aa0f-8499-4be5-96a9-e99b11323eeb",
|
||||
"AllowedHosts": "*",
|
||||
"ApiExportPath": "\\\\messdv002.na.infineon.com\\Candela\\Archive\\API",
|
||||
"ApiExportPathX": "\\\\mesfs.infineon.com\\EC_Metrology_Si",
|
||||
"ApiLoggingContentTypes": "application/json",
|
||||
"ApiLoggingPathPrefixes": "/api/inbound",
|
||||
"ApiLogPath": "D:/Metrology/MetrologyAPILogs",
|
||||
"ApiUrl": "~/api",
|
||||
"ApiUrlX": "http://localhost:5126/api",
|
||||
"ApiUrlXX": "https://oi-metrology-viewer-prod.mes.infineon.com/api",
|
||||
"ApiUrlXXX": "http://messa010ec.infineon.com:50301/api",
|
||||
"ApiUrlXXXX": "http://localhost:50301/api",
|
||||
"ApiUrlXXXXX": "http://messa010ec.infineon.com:50301/api",
|
||||
"AttachmentPath": "",
|
||||
"AttachmentPathX": "\\\\mesfs.infineon.com\\EC_Metrology_Si\\MetrologyAttachments",
|
||||
"BuildNumber": "1",
|
||||
"Company": "Infineon Technologies Americas Corp.",
|
||||
"ConnectionString": "Data Source=messqlec1.infineon.com\\PROD1,53959;Integrated Security=True;Initial Catalog=Metrology;",
|
||||
"ConnectionStringX": "Data Source=messad1001\\test1,59583;Integrated Security=True;Initial Catalog=Metrology;",
|
||||
"GitCommitSeven": "1234567",
|
||||
"InboundApiAllowedIPList": "",
|
||||
"IsDevelopment": true,
|
||||
"IsDevelopmentX": false,
|
||||
"IsStaging": false,
|
||||
"Logging:Console:FormatterName": "simple",
|
||||
"Logging:Console:FormatterOptions:IncludeScopes": "True",
|
||||
"Logging:Console:FormatterOptions:SingleLine": "True",
|
||||
"Logging:Console:FormatterOptions:TimestampFormat": "HH:mm:ss ",
|
||||
"Logging:Console:FormatterOptions:UseUtcTimestamp": "True",
|
||||
"Logging:Console:LogLevel:Default": "Information",
|
||||
"Logging:Console:LogLevel:Microsoft": "Warning",
|
||||
"Logging:Console:LogLevel:Microsoft.Hosting.Lifetime": "Information",
|
||||
"Logging:Debug:FormatterName": "simple",
|
||||
"Logging:Debug:FormatterOptions:IncludeScopes": "True",
|
||||
"Logging:Debug:FormatterOptions:SingleLine": "True",
|
||||
"Logging:Debug:FormatterOptions:TimestampFormat": "HH:mm:ss ",
|
||||
"Logging:Debug:FormatterOptions:UseUtcTimestamp": "True",
|
||||
"Logging:Debug:LogLevel:Default": "Warning",
|
||||
"Logging:Debug:LogLevel:Microsoft": "Information",
|
||||
"Logging:Debug:LogLevel:Microsoft.Hosting.Lifetime": "Debug",
|
||||
"Logging:EventLog:LogLevel:Default": "Warning",
|
||||
"Logging:EventSource:LogLevel:Default": "Warning",
|
||||
"Logging:LogLevel:Default": "Debug",
|
||||
"Logging:LogLevel:Microsoft": "Information",
|
||||
"Logging:LogLevel:Microsoft.Hosting.Lifetime": "Debug",
|
||||
"MockRoot": "/Data/Tests",
|
||||
"MockRootX": "",
|
||||
"MonAResource": "OI_Metrology_Viewer_IFX",
|
||||
"MonAResourceX": "OI_Metrology_Viewer_EC",
|
||||
"MonASite": "auc",
|
||||
"Oi2SqlConnectionString": "Data Source=messqlec1.infineon.com\\PROD1,53959;Initial Catalog=LSL2SQL;Persist Security Info=True;User ID=srpadmin;Password=0okm9ijn;",
|
||||
"Oi2SqlConnectionStringX": "Data Source=messad1001\\test1,59583;Initial Catalog=LSL2SQL;Persist Security Info=True;User ID=srpadmin;Password=0okm9ijn;",
|
||||
"TableToPath:BioRadRunHeader": "\\\\messa01ec.infineon.com\\apps\\Metrology\\MET08THFTIRQS408M\\Source",
|
||||
"TableToPath:CDERunHeader": "\\\\messa01ec.infineon.com\\apps\\Metrology\\MET08RESIMAPCDE\\Source",
|
||||
"TableToPath:MercuryProbeRunHeader": "\\\\messa01ec.infineon.com\\apps\\Metrology\\MET08RESIHGCV\\Source",
|
||||
"TableToPath:SP1RunHeader": "\\\\messa01ec.infineon.com\\apps\\Metrology\\MET08DDUPSP1TBI\\Source",
|
||||
"TableToPath:SPVRunHeader": "\\\\messa01ec.infineon.com\\apps\\Metrology\\MET08ANLYSDIFAAST230\\Source",
|
||||
"TableToPath:SRPRunHeader": "\\\\messa01ec.infineon.com\\apps\\Metrology\\MET08RESISRP2100\\Source",
|
||||
"TableToPath:StratusBioRadRunHeader": "\\\\messa01ec.infineon.com\\apps\\Metrology\\MET08THFTIRSTRATUS\\Source",
|
||||
"TableToPath:TencorRunHeader": "\\\\messa01ec.infineon.com\\apps\\Metrology\\MET08DDUPSFS6420\\Source",
|
||||
"URLs": "http://localhost:5002;",
|
||||
"URLsX": "https://localhost:7130;http://localhost:5126",
|
||||
"WorkingDirectoryName": "IFXApps"
|
||||
}
|
103
6e026d2f-9edf-4c6c-a042-162758114e9a/secrets.json
Normal file
103
6e026d2f-9edf-4c6c-a042-162758114e9a/secrets.json
Normal file
@ -0,0 +1,103 @@
|
||||
{
|
||||
"_Application": "Rename",
|
||||
"_UserSecretsId": "6e026d2f-9edf-4c6c-a042-162758114e9a",
|
||||
"Company": "Mike Phares",
|
||||
"ComparePathsFile": "",
|
||||
"DefaultUnknownDirectoryName": "",
|
||||
"DefaultUnknownDirectoryNameX": "Unknown",
|
||||
"ForceIdName": true,
|
||||
"ForceIdNameX": false,
|
||||
"LinuX": {},
|
||||
"Logging:LogLevel:Microsoft.Hosting.Lifetime": "Debug",
|
||||
"Logging:LogLevel:Microsoft": "Information",
|
||||
"Logging:LogLevel:Default": "Debug",
|
||||
"Logging:EventSource:LogLevel:Default": "Warning",
|
||||
"Logging:EventLog:LogLevel:Default": "Warning",
|
||||
"Logging:Debug:LogLevel:Microsoft.Hosting.Lifetime": "Debug",
|
||||
"Logging:Debug:LogLevel:Microsoft": "Information",
|
||||
"Logging:Debug:LogLevel:Default": "Warning",
|
||||
"Logging:Debug:FormatterOptions:UseUtcTimestamp": "True",
|
||||
"Logging:Debug:FormatterOptions:TimestampFormat": "HH:mm:ss ",
|
||||
"Logging:Debug:FormatterOptions:SingleLine": "True",
|
||||
"Logging:Debug:FormatterOptions:IncludeScopes": "True",
|
||||
"Logging:Debug:FormatterName": "simple",
|
||||
"Logging:Console:LogLevel:Microsoft.Hosting.Lifetime": "Information",
|
||||
"Logging:Console:LogLevel:Microsoft": "Warning",
|
||||
"Logging:Console:LogLevel:Default": "Information",
|
||||
"Logging:Console:FormatterOptions:UseUtcTimestamp": "True",
|
||||
"Logging:Console:FormatterOptions:TimestampFormat": "HH:mm:ss ",
|
||||
"Logging:Console:FormatterOptions:SingleLine": "True",
|
||||
"Logging:Console:FormatterOptions:IncludeScopes": "True",
|
||||
"Logging:Console:FormatterName": "simple",
|
||||
"MaxDegreeOfParallelism": 6,
|
||||
"MaxMinutesDelta": 10080,
|
||||
"MaxMinutesDeltaX": 2,
|
||||
"MaxMinutesDeltaXX": 2147483647,
|
||||
"RenameUndo": false,
|
||||
"RenameUndoXX": true,
|
||||
"Windows": {
|
||||
"Configuration": {
|
||||
"DateGroup": "c9dbce3b",
|
||||
"DiffPropertyDirectory": "",
|
||||
"FileNameDirectorySeparator": ".Z.",
|
||||
"ForceMetadataLastWriteTimeToCreationTime": false,
|
||||
"ForcePropertyLastWriteTimeToCreationTime": false,
|
||||
"IgnoreExtensions": [
|
||||
".gif",
|
||||
".GIF",
|
||||
".lnk",
|
||||
".LNK",
|
||||
".nef",
|
||||
".NEF",
|
||||
".pdf",
|
||||
".PDF"
|
||||
],
|
||||
"IgnoreRulesKeyWords": [
|
||||
"Collage",
|
||||
"Corrupt",
|
||||
"Indecent"
|
||||
],
|
||||
"IntMinValueLength": 11,
|
||||
"MaxImagesInDirectoryForTopLevelFirstPass": 10,
|
||||
"OffsetX": 1000000,
|
||||
"Offset": 1054000,
|
||||
"OutputExtension": ".jpg",
|
||||
"Pattern": "[^ABCDEFGHIJKLMNOPQRSTUVWXYZbcdfghjklmnpqrstvwxyz0-9]",
|
||||
"PersonBirthdayFormat": "yyyy-MM-dd_HH",
|
||||
"PopulatePropertyId": true,
|
||||
"PropertiesChangedForMetadata": false,
|
||||
"PropertiesChangedForProperty": false,
|
||||
"ResultAllInOne": "_ _ _",
|
||||
"ResultAllInOneSubdirectoryLength": 2,
|
||||
"ResultCollection": "[]",
|
||||
"ResultContent": "()",
|
||||
"ResultSingleton": "{}",
|
||||
"RootDirectoryX": "D:/Images",
|
||||
"RootDirectoryXX": "D:/7-Question/iCloud Photos",
|
||||
"RootDirectoryXXX": "D:/1-Images-A/Images-c9dbce3b",
|
||||
"RootDirectoryXXXXX": "D:/1-Images-A/Images-c9dbce3b/Facebook/2023.2 Summer Facebook",
|
||||
"ValidImageFormatExtensions": [
|
||||
".bmp",
|
||||
".BMP",
|
||||
".gif",
|
||||
".GIF",
|
||||
".heic",
|
||||
".HEIC",
|
||||
".jpeg",
|
||||
".JPEG",
|
||||
".jpg",
|
||||
".JPG",
|
||||
".png",
|
||||
".PNG",
|
||||
".tif",
|
||||
".TIF",
|
||||
".tiff",
|
||||
".TIFF",
|
||||
".webp",
|
||||
".WEBP"
|
||||
],
|
||||
"VerifyToSeason": []
|
||||
}
|
||||
},
|
||||
"WorkingDirectoryName": "PharesApps"
|
||||
}
|
8
727b3ea2-9ea2-43fd-8332-af33ca70954c/secrets.json
Normal file
8
727b3ea2-9ea2-43fd-8332-af33ca70954c/secrets.json
Normal file
@ -0,0 +1,8 @@
|
||||
{
|
||||
"_Application": "Test",
|
||||
"_UserSecretsId": "727b3ea2-9ea2-43fd-8332-af33ca70954c",
|
||||
"Company": "Infineon Technologies Americas Corp.",
|
||||
"OpenInsightApplicationProgrammingInterfaceUrlX": "http://localhost:5003/api/v1/OIWizard/change",
|
||||
"OpenInsightApplicationProgrammingInterfaceUrl": "http://messa020ec.infineon.com/api/OIWizard/change",
|
||||
"WorkingDirectoryName": "IFXApps"
|
||||
}
|
271
7b153e3d-672b-4f7a-888a-cb31645a2439/secrets.json
Normal file
271
7b153e3d-672b-4f7a-888a-cb31645a2439/secrets.json
Normal file
@ -0,0 +1,271 @@
|
||||
{
|
||||
"_Application": "Drag-Drop-Search",
|
||||
"_UserSecretsId": "7b153e3d-672b-4f7a-888a-cb31645a2439",
|
||||
"Company": "Mike Phares",
|
||||
"LinuX": {},
|
||||
"Logging": {
|
||||
"LogLevel": {
|
||||
"Default": "Information",
|
||||
"Microsoft": "Warning",
|
||||
"Log4netProvider": "Debug",
|
||||
"Microsoft.Hosting.Lifetime": "Information"
|
||||
}
|
||||
},
|
||||
"MaxDegreeOfParallelism": 6,
|
||||
"Serilog": {
|
||||
"Using": [
|
||||
"Serilog.Sinks.Console",
|
||||
"Serilog.Sinks.File"
|
||||
],
|
||||
"MinimumLevel": "Debug",
|
||||
"WriteTo": [
|
||||
{
|
||||
"Name": "Debug",
|
||||
"Args": {
|
||||
"outputTemplate": "{Timestamp:yyyy-MM-dd HH:mm:ss.fff zzz} [{Level}] ({SourceContext}.{MethodName}) ({InstanceId}) ({RemoteIpAddress}) {Message}{NewLine}{Exception}"
|
||||
}
|
||||
},
|
||||
{
|
||||
"Name": "Console",
|
||||
"Args": {
|
||||
"outputTemplate": "{Timestamp:yyyy-MM-dd HH:mm:ss.fff zzz} [{Level}] ({SourceContext}.{MethodName}) ({InstanceId}) ({RemoteIpAddress}) {Message}{NewLine}{Exception}"
|
||||
}
|
||||
},
|
||||
{
|
||||
"Name": "File",
|
||||
"Args": {
|
||||
"path": "%workingDirectory% - Log/log-.txt",
|
||||
"outputTemplate": "{Timestamp:yyyy-MM-dd HH:mm:ss.fff zzz} [{Level}] ({SourceContext}.{MethodName}) ({InstanceId}) ({RemoteIpAddress}) {Message}{NewLine}{Exception}",
|
||||
"rollingInterval": "Hour"
|
||||
}
|
||||
}
|
||||
],
|
||||
"Enrich": [
|
||||
"FromLogContext",
|
||||
"WithMachineName",
|
||||
"WithThreadId"
|
||||
],
|
||||
"Properties": {
|
||||
"Application": "Sample"
|
||||
}
|
||||
},
|
||||
"Windows": {
|
||||
"Configuration": {
|
||||
"CheckDFaceAndUpWriteDates": false,
|
||||
"CheckJsonForDistanceResults": false,
|
||||
"CopyFacesAndSaveFaceLandmarkForOutputResolutions": [],
|
||||
"CrossDirectoryMaxItemsInDistanceCollection": 7,
|
||||
"DateGroup": "c9dbce3b",
|
||||
"DeletePossibleDuplicates": true,
|
||||
"DistanceFactor": 8,
|
||||
"DistanceMoveUnableToMatch": true,
|
||||
"DistancePixelDistanceTolerance": 1,
|
||||
"DistanceRenameToMatch": true,
|
||||
"xEyeThreshold": 33,
|
||||
"EyeThreshold": 2147483647,
|
||||
"FaceAreaPermyriad": 10000,
|
||||
"xFaceDistanceHiddenImageFactor": 2,
|
||||
"FaceConfidencePercent": 100,
|
||||
"FaceDistanceHiddenImageFactor": 3,
|
||||
"FaceDistancePermyriad": 10000,
|
||||
"FileNameDirectorySeparator": ".Z.",
|
||||
"xFocusDirectory": "/Hawaii 2022",
|
||||
"FocusDirectory": "",
|
||||
"xFocusModel": "NIKON D3400",
|
||||
"FocusModel": "",
|
||||
"ForceFaceLastWriteTimeToCreationTime": false,
|
||||
"ForceMetadataLastWriteTimeToCreationTime": false,
|
||||
"ForcePropertyLastWriteTimeToCreationTime": false,
|
||||
"xGenealogicalDataCommunicationFile": "",
|
||||
"ForceResizeLastWriteTimeToCreationTime": false,
|
||||
"GenealogicalDataCommunicationFile": "D:/1-Images-A/Images-c9dbce3b-Results/A2)People/c9dbce3b/([])/File-Folder-Helper/638268289384407819/638268289384407819.ged",
|
||||
"xLocationContainerDistanceTolerance": 0.5764,
|
||||
"LoadPhotoPrismLocations": false,
|
||||
"LocationContainerDistanceTolerance": null,
|
||||
"LocationDigits": 9,
|
||||
"LocationFactor": 10000,
|
||||
"LookForAbandoned": false,
|
||||
"MappingDefaultName": "John Doe~25",
|
||||
"MappingUseDeterministicHashCodeUnknownFaceKeyValuePairsForAddToMapping": false,
|
||||
"MappingUseDeterministicHashCodeUnknownFaceKeyValuePairsForSaveMapping": false,
|
||||
"MaxImagesInDirectoryForTopLevelFirstPass": 10,
|
||||
"ModelDirectory": "C:/GitHub/dlib-models",
|
||||
"ModelName": "Hog",
|
||||
"NumberOfJitters": 0,
|
||||
"NumberOfTimesToUpsample": 0,
|
||||
"OutputExtension": ".jpg",
|
||||
"OutputQuality": 95,
|
||||
"OverrideForFaceImages": false,
|
||||
"OverrideForFaceLandmarkImages": false,
|
||||
"OverrideForResizeImages": false,
|
||||
"Pattern": "[^ABCDEFGHIJKLMNOPQRSTUVWXYZbcdfghjklmnpqrstvwxyz0-9]",
|
||||
"PersonBirthdayFirstYear": 1500,
|
||||
"xPersonCharacters": "!#%]^_`~+=",
|
||||
"xxPersonCharacters": "^!#]~",
|
||||
"PersonCharacters": "^!#+~",
|
||||
"PersonBirthdayFormat": "yyyy-MM-dd_HH",
|
||||
"xPersonCharactersCopyCount": 5,
|
||||
"PersonCharactersCopyCount": 0,
|
||||
"PersonKeyFormat": "yyyy-MM-dd_HH",
|
||||
"PopulatePropertyId": true,
|
||||
"PredictorModelName": "Large",
|
||||
"PropertiesChangedForDistance": false,
|
||||
"PropertiesChangedForFaces": false,
|
||||
"PropertiesChangedForIndeX": false,
|
||||
"PropertiesChangedForMetadata": false,
|
||||
"PropertiesChangedForProperty": false,
|
||||
"PropertiesChangedForResize": false,
|
||||
"ResultAllInOne": "_ _ _",
|
||||
"ResultAllInOneSubdirectoryLength": 2,
|
||||
"ResultCollection": "[]",
|
||||
"ResultContent": "()",
|
||||
"ResultSingleton": "{}",
|
||||
"Reverse": false,
|
||||
"xRootDirectory": "D:/Tmp/phares/Pictures",
|
||||
"xxRootDirectory": "D:/Tmp/Phares/Compare/Corrupt",
|
||||
"xxxRootDirectory": "D:/2-Images-B/Not-Copy-Copy-c9dbce3b",
|
||||
"xxxxRootDirectory": "D:/1-Images-A/Images-c9dbce3b/Facebook/2023.2 Facebook",
|
||||
"RootDirectory": "D:/1-Images-A/Images-c9dbce3b",
|
||||
"SaveFullYearOfRandomFiles": true,
|
||||
"xSaveIndividually": true,
|
||||
"SaveIndividually": false,
|
||||
"SaveResizedSubFiles": true,
|
||||
"xSkipOlderThanDays": 2200,
|
||||
"SaveSortingWithoutPerson": true,
|
||||
"xSkipPersonWithMoreThen": 15,
|
||||
"SkipOlderThanDays": null,
|
||||
"SkipPersonWithMoreThen": null,
|
||||
"SkipSearch": false,
|
||||
"SortingMaximumPerFaceShouldBeHigh": 3000,
|
||||
"SortingMaximumPerKey": 7,
|
||||
"SortingMinimumToUseSigma": 10,
|
||||
"TestDistanceResults": true,
|
||||
"xxPersonCharactersCopyCount": 2147483647,
|
||||
"UseFilterTries": 0,
|
||||
"xJLinks": [
|
||||
"Julie",
|
||||
"Mike Phares Jr"
|
||||
],
|
||||
"JLinks": [
|
||||
""
|
||||
],
|
||||
"LoadOrCreateThenSaveDistanceResultsForOutputResolutions": [
|
||||
"Original"
|
||||
],
|
||||
"LoadOrCreateThenSaveImageFacesResultsForOutputResolutions": [
|
||||
"Original"
|
||||
],
|
||||
"OutputResolutions": [
|
||||
"Original"
|
||||
],
|
||||
"PropertyContentCollectionFiles": [],
|
||||
"RangeDaysDeltaTolerance": [
|
||||
0,
|
||||
7000,
|
||||
7300
|
||||
],
|
||||
"RangeDistanceTolerance": [
|
||||
0,
|
||||
0.064,
|
||||
1.8
|
||||
],
|
||||
"RangeFaceAreaTolerance": [
|
||||
0,
|
||||
0.0001,
|
||||
1
|
||||
],
|
||||
"RangeFaceConfidence": [
|
||||
0,
|
||||
0.5,
|
||||
2.4
|
||||
],
|
||||
"xRectangleIntersectMinimums": [
|
||||
0.000001
|
||||
],
|
||||
"RectangleIntersectMinimums": [
|
||||
0.94,
|
||||
0.99
|
||||
],
|
||||
"SaveFaceDistancesForOutputResolutions": [
|
||||
"Original"
|
||||
],
|
||||
"SaveFaceLandmarkForOutputResolutions": [],
|
||||
"SaveFilteredOriginalImagesFromJLinksForOutputResolutions": [],
|
||||
"SaveMappedForOutputResolutions": [],
|
||||
"SaveRandomForOutputResolutions": [],
|
||||
"SaveShortcutsForOutputResolutions": [],
|
||||
"SkipNotSkipDirectories": [],
|
||||
"xSkipNotSkipDirectories": [
|
||||
"/!/_ Images-To-Do",
|
||||
"/!/_ Test",
|
||||
"/!/Disney",
|
||||
"/!/Chelsea's Friends",
|
||||
"/!/Jason's Friends",
|
||||
"/!/Johnny's Friends",
|
||||
"/!/Julie's Friends",
|
||||
"/!/Kristy's Family",
|
||||
"/!/Kristy's Friends",
|
||||
"/!/Logan Friends",
|
||||
"/!/Mackenzie Friends",
|
||||
"/!/Mike's Family",
|
||||
"/!/Mike's Friends",
|
||||
"/!/Statue",
|
||||
"/!/Tracy's Friend",
|
||||
"/!/WaX"
|
||||
],
|
||||
"MixedYearRelativePaths": [
|
||||
"Edited",
|
||||
"Phares Slides",
|
||||
"Rex Memorial",
|
||||
"Scanned Grandma's Quilt",
|
||||
"Scanned Pictures Of Kids",
|
||||
"Scanned Prints",
|
||||
"Slide in Name Order Originals (622)",
|
||||
"Slides Pictures"
|
||||
],
|
||||
"IgnoreExtensions": [
|
||||
".gif",
|
||||
".GIF",
|
||||
".json",
|
||||
".JOSN",
|
||||
".txt",
|
||||
".TXT",
|
||||
".ico",
|
||||
".ICO"
|
||||
],
|
||||
"VerifyToSeason": [],
|
||||
"ValidImageFormatExtensions": [
|
||||
".bmp",
|
||||
".BMP",
|
||||
".gif",
|
||||
".GIF",
|
||||
".jpeg",
|
||||
".JPEG",
|
||||
".jpg",
|
||||
".JPG",
|
||||
".png",
|
||||
".PNG",
|
||||
".tiff",
|
||||
".TIFF",
|
||||
".tif",
|
||||
".TIF"
|
||||
],
|
||||
"ValidResolutions": [
|
||||
"Original",
|
||||
"176 x 176",
|
||||
"256 x 256",
|
||||
"353 x 353",
|
||||
"1024 x 768",
|
||||
"1280 x 720",
|
||||
"1280 x 800",
|
||||
"1376 x 768",
|
||||
"1600 x 1200",
|
||||
"1920 x 1080",
|
||||
"2256 x 1496",
|
||||
"3840 x 2160",
|
||||
"7680 x 4320"
|
||||
]
|
||||
}
|
||||
},
|
||||
"WorkingDirectoryName": "PharesApps"
|
||||
}
|
16
7ca5318a-9332-4217-b9d8-cae696629934/secrets.json
Normal file
16
7ca5318a-9332-4217-b9d8-cae696629934/secrets.json
Normal file
@ -0,0 +1,16 @@
|
||||
{
|
||||
"_Application": "Person",
|
||||
"_UserSecretsId": "7ca5318a-9332-4217-b9d8-cae696629934",
|
||||
"LinuX": {
|
||||
"Configuration": {
|
||||
"VerifyToSeason": []
|
||||
}
|
||||
},
|
||||
"MaxDegreeOfParallelism": 6,
|
||||
"Windows": {
|
||||
"Configuration": {
|
||||
"RootDirectory": "C:/",
|
||||
"VerifyToSeason": []
|
||||
}
|
||||
}
|
||||
}
|
21
8004d966-1a9e-4545-a220-83f32b6a13e9/secrets.json
Normal file
21
8004d966-1a9e-4545-a220-83f32b6a13e9/secrets.json
Normal file
@ -0,0 +1,21 @@
|
||||
{
|
||||
"_Application": "Date-Group",
|
||||
"_UserSecretsId": "8004d966-1a9e-4545-a220-83f32b6a13e9",
|
||||
"MaxDegreeOfParallelism": 6,
|
||||
"Windows": {
|
||||
"Configuration": {
|
||||
"ByCreateDateShortcut": false,
|
||||
"ByDay": false,
|
||||
"ByHash": true,
|
||||
"BySeason": false,
|
||||
"ByWeek": false,
|
||||
"PopulatePropertyId": true,
|
||||
"xRootDirectory": "D:/2-Images-B/Corrupt",
|
||||
"xxRootDirectory": "D:/1-Images-A/Images-c9dbce3b",
|
||||
"xxxRootDirectory": "E:/3-Videos-A/Device-Videos-2_0_0_3-Current-Year",
|
||||
"xxxxRootDirectory": "E:/4-Videos-B/Device Videos 2_0_0_3 - Current - Ignore",
|
||||
"xxxxxRootDirectory": "C:/1-Images-A/Images-c9dbce3b",
|
||||
"RootDirectory": "D:/7-Question/DCIM/100D3400"
|
||||
}
|
||||
}
|
||||
}
|
602
8da397d4-13ec-4576-9722-3c79cad25563/secrets.json
Normal file
602
8da397d4-13ec-4576-9722-3c79cad25563/secrets.json
Normal file
@ -0,0 +1,602 @@
|
||||
{
|
||||
"_Application": "File-Folder-Helper",
|
||||
"_UserSecretsId": "8da397d4-13ec-4576-9722-3c79cad25563",
|
||||
"asdf": "54f064c485b1",
|
||||
"BuildNumber": "1234",
|
||||
"Company": "Infineon Technologies Americas Corp.",
|
||||
"DefaultNoteType": "note",
|
||||
"ExcludeDirectoryNames:0": "node_modules",
|
||||
"ExcludeDirectoryNames:1": "templates",
|
||||
"ExcludeSchemes:0": "http:",
|
||||
"ExcludeSchemes:1": "https:",
|
||||
"ExcludeSchemes:4": "mailto:",
|
||||
"ExcludeSchemes:5": "onenote:",
|
||||
"ExcludeSchemes:6": "rdp:",
|
||||
"ExcludeSchemes:7": "tcp:",
|
||||
"ExcludeSchemes:8": "\\\\",
|
||||
"GitCommitSeven": "asdf",
|
||||
"Logging:Console:FormatterName": "simple",
|
||||
"Logging:Console:FormatterOptions:IncludeScopes": "True",
|
||||
"Logging:Console:FormatterOptions:SingleLine": "True",
|
||||
"Logging:Console:FormatterOptions:TimestampFormat": "HH:mm:ss ",
|
||||
"Logging:Console:FormatterOptions:UseUtcTimestamp": "True",
|
||||
"Logging:Console:LogLevel:Default": "Information",
|
||||
"Logging:Console:LogLevel:Microsoft": "Warning",
|
||||
"Logging:Console:LogLevel:Microsoft.Hosting.Lifetime": "Information",
|
||||
"Logging:Debug:FormatterName": "simple",
|
||||
"Logging:Debug:FormatterOptions:IncludeScopes": "True",
|
||||
"Logging:Debug:FormatterOptions:SingleLine": "True",
|
||||
"Logging:Debug:FormatterOptions:TimestampFormat": "HH:mm:ss ",
|
||||
"Logging:Debug:FormatterOptions:UseUtcTimestamp": "True",
|
||||
"Logging:Debug:LogLevel:Default": "Warning",
|
||||
"Logging:Debug:LogLevel:Microsoft": "Information",
|
||||
"Logging:Debug:LogLevel:Microsoft.Hosting.Lifetime": "Debug",
|
||||
"Logging:EventLog:LogLevel:Default": "Warning",
|
||||
"Logging:EventSource:LogLevel:Default": "Warning",
|
||||
"Logging:LogLevel:Default": "Debug",
|
||||
"Logging:LogLevel:Microsoft": "Information",
|
||||
"Logging:LogLevel:Microsoft.Hosting.Lifetime": "Debug",
|
||||
"PersonBirthdayFormat": "yyyy-MM-dd_HH",
|
||||
"PersonCharacters": "^!#+~",
|
||||
"PersonTitleFilters": "MK",
|
||||
"Worker": {
|
||||
"A) Save (Top Directory Only)": {
|
||||
"args": [
|
||||
"s",
|
||||
"A",
|
||||
".kanbn/tasks"
|
||||
]
|
||||
},
|
||||
"B) Save (All Directories)": {
|
||||
"args": [
|
||||
"s",
|
||||
"B",
|
||||
".kanbn/tasks"
|
||||
]
|
||||
},
|
||||
"C) Clipboard (Top Directory Only)": {
|
||||
"args": [
|
||||
"s",
|
||||
"C",
|
||||
".kanbn/tasks"
|
||||
]
|
||||
},
|
||||
"D) Clipboard (All Directories)": {
|
||||
"args": [
|
||||
"s",
|
||||
"D",
|
||||
".kanbn/tasks"
|
||||
]
|
||||
},
|
||||
"E) Everything delete recursive": {
|
||||
"args": [
|
||||
"s",
|
||||
"E",
|
||||
".kanbn/tasks"
|
||||
]
|
||||
},
|
||||
"F) Find and delete all *.log.* files then empty directories": {
|
||||
"args": [
|
||||
"s",
|
||||
"F",
|
||||
"\\\\messv02ecc1.ec.local\\EC_EAFLog\\Staging\\_ Logs"
|
||||
]
|
||||
},
|
||||
"G) Genealogical Data Communication": {
|
||||
"args": [
|
||||
"s",
|
||||
"G",
|
||||
"D:/1-Images-A/Images-c9dbce3b-Results/A2)People/c9dbce3b/([])/File-Folder-Helper/638443643487798783",
|
||||
"-d",
|
||||
"D:/1-Images-A/Images-c9dbce3b-Results/A2)People/c9dbce3b/{2}"
|
||||
]
|
||||
},
|
||||
"H": {
|
||||
"args": [
|
||||
"s",
|
||||
"H",
|
||||
".kanbn/tasks"
|
||||
]
|
||||
},
|
||||
"I) Ignore case and rename files to lowercase": {
|
||||
"args": [
|
||||
"s",
|
||||
"I",
|
||||
".kanbn/tasks"
|
||||
]
|
||||
},
|
||||
"J) Set Date from Json Entry": {
|
||||
"args": [
|
||||
"s",
|
||||
"J",
|
||||
"L:/Verdaccio/storage"
|
||||
]
|
||||
},
|
||||
"K) Kanban support": {
|
||||
"args": [
|
||||
"s",
|
||||
"K",
|
||||
".kanbn/tasks"
|
||||
]
|
||||
},
|
||||
"L) Log Merge (APC Log [0-9(8)]_*.log)": {
|
||||
"args": [
|
||||
"s",
|
||||
"L",
|
||||
".kanbn/tasks"
|
||||
]
|
||||
},
|
||||
"M) Markdown Wiki Link Verification": {
|
||||
"args": [
|
||||
"s",
|
||||
"M",
|
||||
"L:/Git/Notes-Infineon/.Infineon",
|
||||
"-s",
|
||||
"L:/Git/Notes-Infineon/.Infineon/_-Review",
|
||||
"-d",
|
||||
"L:/Git/Notes-Infineon/.Infineon/.vscode/helper"
|
||||
]
|
||||
},
|
||||
"N) Create Note Files": {
|
||||
"args": [
|
||||
"s",
|
||||
"N",
|
||||
".kanbn/tasks"
|
||||
]
|
||||
},
|
||||
"O) Oracle tnsNames.ora": {
|
||||
"args": [
|
||||
"s",
|
||||
"O",
|
||||
"C:/programs",
|
||||
"-t",
|
||||
"C:/Users/MESPhares/AppData/Local/IFXApps/sqldeveloper/tnsnames.ora"
|
||||
]
|
||||
},
|
||||
"P) PDF parse": {
|
||||
"args": [
|
||||
"s",
|
||||
"P",
|
||||
"D:/Tmp/Source",
|
||||
"-d",
|
||||
"D:/Tmp/Destination",
|
||||
"-p",
|
||||
"K",
|
||||
"s",
|
||||
"P",
|
||||
"D:/Tmp/Source",
|
||||
"-d",
|
||||
"D:/Tmp/Destination",
|
||||
"-k",
|
||||
"Bin"
|
||||
]
|
||||
},
|
||||
"Q": {
|
||||
"args": [
|
||||
"s",
|
||||
"Q",
|
||||
".kanbn/tasks"
|
||||
]
|
||||
},
|
||||
"R) Rename to old, copy, delete old": {
|
||||
"args": [
|
||||
"s",
|
||||
"R",
|
||||
".kanbn/tasks"
|
||||
]
|
||||
},
|
||||
"S) Set Date from Zip Entry": {
|
||||
"args": [
|
||||
"s",
|
||||
"S",
|
||||
"L:/BaGet/packages"
|
||||
]
|
||||
},
|
||||
"T) *Ticks ~~Too long rename~~": {
|
||||
"args": [
|
||||
"s",
|
||||
"T",
|
||||
".kanbn/tasks"
|
||||
]
|
||||
},
|
||||
"U": {
|
||||
"args": [
|
||||
"s",
|
||||
"U",
|
||||
"Helpers"
|
||||
]
|
||||
},
|
||||
"V": {
|
||||
"args": [
|
||||
"s",
|
||||
"V",
|
||||
"Helpers"
|
||||
]
|
||||
},
|
||||
"W": {
|
||||
"args": [
|
||||
"s",
|
||||
"W",
|
||||
".kanbn/tasks"
|
||||
]
|
||||
},
|
||||
"X": {
|
||||
"Day-Helper-2023-Q4": {
|
||||
"Day-Helper-2023-12-12": {
|
||||
"args": [
|
||||
"s",
|
||||
"X",
|
||||
"D:/Tmp/Phares/Network",
|
||||
"Day-Helper-2023-12-12",
|
||||
"1*.json"
|
||||
]
|
||||
},
|
||||
"Day-Helper-2023-12-22": {
|
||||
"args": [
|
||||
"s",
|
||||
"X",
|
||||
"D:/7-Question/iCloud Photos 2024",
|
||||
"Day-Helper-2023-12-22",
|
||||
"*",
|
||||
"D:/1-Images-A/Images-4083e56a-Results/A)Property/4083e56a/{}/_ _ _",
|
||||
"*.json",
|
||||
"D:/1-Images-A/Images-4083e56a-Results/A2)People/4083e56a/{}",
|
||||
"*.gif",
|
||||
"D:/1-Images-A/Images-4083e56a-Results/B)Metadata/4083e56a/{}/_ _ _",
|
||||
"*.json",
|
||||
"D:/1-Images-A/Images-4083e56a-Results/C)Resize/4083e56a/1376 x 768/{}/_ _ _",
|
||||
"*.json",
|
||||
"D:/1-Images-A/Images-4083e56a-Results/C)Resize/4083e56a/1376 x 768/()/_ _ _",
|
||||
"*.png",
|
||||
"*.jpg",
|
||||
"D:/1-Images-A/Images-4083e56a-Results/C)Resize/4083e56a/Original/{}/_ _ _",
|
||||
"*.json",
|
||||
"D:/1-Images-A/Images-4083e56a-Results/C)Resize/4083e56a/Original/()/_ _ _",
|
||||
"*.png",
|
||||
"*.jpg",
|
||||
"D:/1-Images-A/Images-4083e56a-Results/C)Resize/4083e56a/Original/()/_-_-_",
|
||||
"*.tsv",
|
||||
"D:/1-Images-A/Images-4083e56a-Results/C2)BlurHasher/4083e56a/1376 x 768/{}/_ _ _",
|
||||
"*.csv",
|
||||
"!!!D:/1-Images-A/Images-4083e56a-Results/C2)BlurHasher/4083e56a/1376 x 768/()/_ _ _",
|
||||
"!!!*.png",
|
||||
"D:/1-Images-A/Images-4083e56a-Results/D)Face/4083e56a/Original/Original-Hog-Large-0-0/[]/_ _ _",
|
||||
"*.json",
|
||||
"D:/1-Images-A/Images-4083e56a-Results/D)Face/4083e56a/Original/Original-Hog-Large-0-0/()/_ _ _",
|
||||
"*.png",
|
||||
"*.gif",
|
||||
"D:/1-Images-A/Images-4083e56a-Results/E)Distance/4083e56a",
|
||||
"*.png",
|
||||
"D:/1-Images-A/Images-4083e56a--",
|
||||
"*.png",
|
||||
"*.jpg",
|
||||
"C:/3-Videos-A/Device-Videos-2_0_0_3-Current-Year/Have-Media-Created",
|
||||
"*",
|
||||
"C:/3-Videos-A/Device-Videos-2_0_0_3-Current-Year/Have-Wrong-Media-Created",
|
||||
"*"
|
||||
]
|
||||
}
|
||||
},
|
||||
"Day-Helper-2024-Q1": {
|
||||
"Day-Helper-2024-01-05": {
|
||||
"args": [
|
||||
"s",
|
||||
"X",
|
||||
"D:/Tmp/Phares/KeePass",
|
||||
"Day-Helper-2024-01-05",
|
||||
"*.xml",
|
||||
".json"
|
||||
]
|
||||
},
|
||||
"Day-Helper-2024-01-06": {
|
||||
"args": [
|
||||
"s",
|
||||
"X",
|
||||
"D:/Tmp/Phares/.TP-Link",
|
||||
"Day-Helper-2024-01-06",
|
||||
"*.txt",
|
||||
"1",
|
||||
"17",
|
||||
"- -",
|
||||
"DeviceName,MacAddress,IpAddress,RealTimeUpRate,RealTimeDownRate,RateOrInterface,DurationOrRate,SpeedLimitOrDuration",
|
||||
"IpAddress",
|
||||
"hosts.jsonl",
|
||||
"hosts.conf"
|
||||
]
|
||||
},
|
||||
"Day-Helper-2024-01-07": {
|
||||
"args": [
|
||||
"s",
|
||||
"X",
|
||||
"D:/1-Images-A/Images-c9dbce3b-Results",
|
||||
"Day-Helper-2024-01-07",
|
||||
"11",
|
||||
"D:/8-Move"
|
||||
]
|
||||
},
|
||||
"Day-Helper-2024-01-08": {
|
||||
"args": [
|
||||
"s",
|
||||
"X",
|
||||
"L:/DevOps/Mesa_FI/File-Folder-Helper",
|
||||
"Day-Helper-2024-01-08",
|
||||
"L:/DevOps/Mesa_FI/File-Folder-Helper/Day/2024-Q1"
|
||||
]
|
||||
},
|
||||
"Day-Helper-2024-01-27": {
|
||||
"args": [
|
||||
"s",
|
||||
"X",
|
||||
"D:/Tmp/Phares/.TP-Link",
|
||||
"Day-Helper-2024-01-27",
|
||||
"192.168.*.json",
|
||||
"host.conf"
|
||||
]
|
||||
},
|
||||
"Day-Helper-2024-01-29": {
|
||||
"args": [
|
||||
"s",
|
||||
"X",
|
||||
"\\\\oi-metrology-import-prod.mes.infineon.com\\APPS\\Metrology\\MET08RESIHGCV\\Source",
|
||||
"Day-Helper-2024-01-29",
|
||||
"*.json"
|
||||
]
|
||||
},
|
||||
"Day-Helper-2024-02-27": {
|
||||
"args": [
|
||||
"s",
|
||||
"X",
|
||||
"L:/DevOps/Mesa_FI/File-Folder-Helper/.vscode",
|
||||
"Day-Helper-2024-02-27",
|
||||
"event-b.json"
|
||||
]
|
||||
},
|
||||
"Day-Helper-2024-03-05": {
|
||||
"args": [
|
||||
"s",
|
||||
"X",
|
||||
"C:/hp",
|
||||
"Day-Helper-2024-03-05",
|
||||
"*.RsM*",
|
||||
"L:/Archive",
|
||||
"4"
|
||||
]
|
||||
},
|
||||
"Day-Helper-2024-03-07": {
|
||||
"args": [
|
||||
"s",
|
||||
"X",
|
||||
"L:/DevOps/Mesa_FI/OI-Metrology/Server/.vscode",
|
||||
"Day-Helper-2024-03-07",
|
||||
"*.html",
|
||||
"Part,Process,Test,USL,TAR,LSL,Last Entry,Last Alarm,Alarm,Subgroups,Mean"
|
||||
]
|
||||
},
|
||||
"Day-Helper-2024-04-03": {
|
||||
"args": [
|
||||
"s",
|
||||
"X",
|
||||
"L:/Git/Notes-Network/.Network/.vscode/helper",
|
||||
"Day-Helper-2024-04-03",
|
||||
"192.168.*.md",
|
||||
"192.168.0.11.md",
|
||||
"|Reserved IP Address|Device Name|Device Name|MAC Address|Count|MAC Address|Device Name|Segments|Connection Type|",
|
||||
"4",
|
||||
"XX-XX-XX-XX-XX-XX"
|
||||
]
|
||||
},
|
||||
"Day-Helper-2024-04-04": {
|
||||
"args": [
|
||||
"s",
|
||||
"X",
|
||||
"L:/DevOps/Mesa_FI/File-Folder-Helper/.vscode/Compass",
|
||||
"Day-Helper-2024-04-04",
|
||||
"^Dev (?<DeviceId>[0-9]{1,8}), (?<DeviceType>A[A-Z]{1}) (?<DeviceNumber>[0-9]{1,8}), present-value, (?<DescriptionName>[A-Za-z0-9-]+) (?<DescriptionTest>[^s]+)-(?<Frequency>[DWM]{1})-(?<Date>[0-9]{4}-[0-9]{2}-[0-9]{2})$",
|
||||
"8",
|
||||
"Dev *, A*, present-value, *-*-*-*-*.csv",
|
||||
"3",
|
||||
"1",
|
||||
"Dev 119, AI 1005, present-value, CAH-3 Humidity-D-2024-04-23.csv"
|
||||
]
|
||||
},
|
||||
"Day-Helper-2024-04-09": {
|
||||
"args": [
|
||||
"s",
|
||||
"X",
|
||||
"D:/Documents/Notes/EC-Documentation/server",
|
||||
"Day-Helper-2024-04-09",
|
||||
"*.md",
|
||||
"https://monout.auc.infineon.com",
|
||||
"/hour/1d/data.json?sys=zabbix:emea_win:",
|
||||
".infineon.com:vfs.fs.size[D:,total]",
|
||||
".infineon.com-vfs.fs.size[D:,total]",
|
||||
"6",
|
||||
"avg",
|
||||
"messa009,mesxs015,messa02ec,messa03ec,messa05ec,messa08ec,messa1005,messcec01,messd01ec,messnec01,messpec01,messt6501,messt6502,messv01ec,mestsa008,elsstec101,leosatec01,messa017ec,messa018ec,messtec101,messtec102,mestsa01ec,mestsa04ec,mestsv01ec,mesxsec011,mesxsec012,mesxsec013,mesxsec014,mesxvec031,mesxvec034,mesxvec035,leosataec21,loesapaec21,loesapaec22,mesirwfp001,messv02ech1,messv02ech2,isccvmd0af56899"
|
||||
]
|
||||
},
|
||||
"Day-Helper-2024-04-17": {
|
||||
"args": [
|
||||
"s",
|
||||
"X",
|
||||
"L:/DevOps/Mesa_FI/OpenInsight-Copy",
|
||||
"Day-Helper-2024-04-17",
|
||||
"run.bat"
|
||||
]
|
||||
},
|
||||
"Day-Helper-2024-04-26": {
|
||||
"args": [
|
||||
"s",
|
||||
"X",
|
||||
"T:/",
|
||||
"Day-Helper-2024-04-26",
|
||||
"System Volume Information",
|
||||
"06_SourceCode",
|
||||
"CreateSelfDescription",
|
||||
"Extract",
|
||||
"Static",
|
||||
"*.cs",
|
||||
"v2.52.0",
|
||||
"v2.56.0"
|
||||
]
|
||||
},
|
||||
"Day-Helper-2024-04-27": {
|
||||
"args": [
|
||||
"s",
|
||||
"X",
|
||||
"D:/8-Move/Immich/backups",
|
||||
"Day-Helper-2024-04-27",
|
||||
"password",
|
||||
"SELECT json_agg(a) FROM \"assets\" AS a",
|
||||
"assets.json",
|
||||
"/var/snap/immich-distribution/common/upload/thumbs/fc9fd5a1-d1b3-4080-a21c-daf9b1c24593",
|
||||
"\\\\wsl.localhost\\Ubuntu-Immich\\home\\mikep\\thumbs\\fc9fd5a1-d1b3-4080-a21c-daf9b1c24593",
|
||||
"/var/snap/immich-distribution/pictures"
|
||||
]
|
||||
},
|
||||
"Day-Helper-2024-04-29": {
|
||||
"args": [
|
||||
"s",
|
||||
"X",
|
||||
"L:/",
|
||||
"Day-Helper-2024-04-29",
|
||||
"System Volume Information",
|
||||
"config",
|
||||
"ubuntu,messa017,mestsa003,mestsa07ec,messa08ec,eaf-prod,azure",
|
||||
"No such remote"
|
||||
]
|
||||
},
|
||||
"Day-Helper-2024-05-10": {
|
||||
"args": [
|
||||
"s",
|
||||
"X",
|
||||
"C:/ProgramData/ISCvX",
|
||||
"Day-Helper-2024-05-10",
|
||||
"FabIcons",
|
||||
"\\\\mestsa003.infineon.com\\mestsa003\\Icons",
|
||||
"*.ico"
|
||||
]
|
||||
},
|
||||
"Day-Helper-2024-05-13": {
|
||||
"args": [
|
||||
"s",
|
||||
"X",
|
||||
"D:/7-Question/638072366498023363",
|
||||
"Day-Helper-2024-05-13",
|
||||
"D:/1-Images-A/Images-c9dbce3b-Results/A2)People/c9dbce3b/([])/File-Folder-Helper/638443643487798783/638443643487798783/people.json"
|
||||
]
|
||||
},
|
||||
"Day-Helper-2024-05-17": {
|
||||
"args": [
|
||||
"s",
|
||||
"X",
|
||||
"D:/8-Move/Har-Files/Input",
|
||||
"Day-Helper-2024-05-17",
|
||||
"D:/8-Move/Har-Files/Input/Amazon"
|
||||
]
|
||||
},
|
||||
"Day-Helper-2024-05-18": {
|
||||
"args": [
|
||||
"s",
|
||||
"X",
|
||||
"D:/7-Question",
|
||||
"Day-Helper-2024-05-18",
|
||||
"D:/1-Images-A/Images-c9dbce3b-Results/A2)People/c9dbce3b/([])/File-Folder-Helper/638443643487798783/638443643487798783/people.json",
|
||||
"person",
|
||||
"ownerId,name,birthDate",
|
||||
"c76905af-c06a-4a78-a9a7-c32f5b58e793",
|
||||
"yyyy-MM-dd"
|
||||
]
|
||||
},
|
||||
"Day-Helper-2024-05-19": {
|
||||
"args": [
|
||||
"s",
|
||||
"X",
|
||||
"D:/8-Move",
|
||||
"Day-Helper-2024-05-19",
|
||||
".0 Winter !9,.1 Spring !9,.2 Fall !9,.3 Fall !9,.2 Summer !9,.3 Summer !9,.4 Winter !9",
|
||||
" !9",
|
||||
"D:/7-Question/2023-07-01_-_Summary",
|
||||
"D:/7-Question/2023-07-01_-_Summary-Copy",
|
||||
"D:/8-Move/2023-07-01_-_Summary"
|
||||
]
|
||||
},
|
||||
"Day-Helper-2024-05-20": {
|
||||
"args": [
|
||||
"s",
|
||||
"X",
|
||||
"D:/7-Question/iCloud Photos 2024",
|
||||
"Day-Helper-2024-05-20",
|
||||
"11",
|
||||
"9876543",
|
||||
"D:/1-Images-A/Images-c9dbce3b-Results/B)Metadata/c9dbce3b/[]/.json",
|
||||
"9876543",
|
||||
"D:/7-Question/iCloud Photos 2024-X",
|
||||
"Padded"
|
||||
]
|
||||
},
|
||||
"Day-Helper-2024-05-24": {
|
||||
"args": [
|
||||
"s",
|
||||
"X",
|
||||
"D:/7-Question/Mike-Missing",
|
||||
"Day-Helper-2024-05-24",
|
||||
"D:/7-Question/Mike-Missing-x",
|
||||
"*.json"
|
||||
]
|
||||
},
|
||||
"Day-Helper-2024-05-25": {
|
||||
"args": [
|
||||
"s",
|
||||
"X",
|
||||
"D:/01-Offline-Backup/2-Images-B/Norman-Herman-tiff-jpg-hash-code",
|
||||
"Day-Helper-2024-05-25",
|
||||
"D:/01-Offline-Backup/2-Images-B/Norman-Herman-tiff-jpg-hash-code-x",
|
||||
"*.tif",
|
||||
"D:/01-Offline-Backup/1-Images-A/tiff-other/Scanned Norman Herman !9"
|
||||
]
|
||||
},
|
||||
"Day-Helper-2024-05-26": {
|
||||
"args": [
|
||||
"s",
|
||||
"X",
|
||||
"D:/01-Offline-Backup/2-Images-B/Scans-2024-12-22-2043-compare-copy",
|
||||
"Day-Helper-2024-05-26"
|
||||
]
|
||||
},
|
||||
"Day-Helper-2024-05-27": {
|
||||
"args": [
|
||||
"s",
|
||||
"X",
|
||||
"D:/01-Offline-Backup/2-Images-B/Scans-2024-12-22-2043-both-copy",
|
||||
"Day-Helper-2024-05-27",
|
||||
"*.json",
|
||||
"129277510591,999671110411,830533300921,033704110161,384823110971,516854500931,731393110441,892289210861,129277510592,999671110412,830533300922,033704110162,384823110972,516854500932,731393110442,892289210862,222035410239,222035410238",
|
||||
"765065710059,121130300229,131135410169,678138700571,681054400011,789810300019,045109300279,134264800061,259598000459,780801210021,546939310211,499083410829,122199800599,967044100919,902278020631,959417010901,807030120801,281169400701,598303110681,316396900799,724943500861,613162700161,570162900591,650685410461,408997100141,819563500261,561245100449,185463900091,729978100041,821198200639,693668400471,105377700229,693379810249,096525000429,874955800551,725269200271,773038610751,624392010501,029464020941,248022310699,310172000301,939443500241,407635010141,593041120199,437133010829,683675000251,273462900579,382754600759,900069010289,342786800691,702720610969,388549900359,523534510879,883138500049,110321120481,478373600019,565585100129,440504600431,914963300491,662356910109,878658110081,739010110929,654836110121,216852110861,454412010301,644928010621,543226310349,525886010099,359969000631,907129110609,014691010799,652936020071,482266020959,857851900359,747770400869,119636510289,855065910621,991185700851,423315700911,794426810689,861728020381,178630710879,932453310511,543331410599,723531600171,757998610721,152064010469,389047810489,939519010409,009890800061,084277310539,012405210341,759572300651,404282610799,265671210141,718703400661,042764000831,794165400741,550899110591,292355410639,549650400981,152957010431,921839510261,813429010519,153403910649,123311120929,254962200279,350660710059,703501900071,831859600729,691467810689,538734800799,052213300841,293053020209,961302400809,844642910869,557814200841,954741200451,435103010641,853166100091,473099500869,487373020119,326508810319,622219200021,408683000681,153342000301,760557700751,112573700031,231598110209,879461100641,368726400141,552965800581,586519020819,439433300221,617887610229,990971310911,106613020141,995783100121,650450500849,266282710101,612799310919,152529210671,489140610719,903448800991,188911200159,774582610609,298738000131,595838910911,871583810611,465211610771,667971310131,914981900251,753578110769,805376100411,053492120439,966850310011,369241710629,192148310819,872309610481,059474300989,204256910029,396213110831,129882610169,260658400239,078969410091,611031120991,090574410349,065233410921,466640700189,305197910351,406908800699,683566710331,835913600901,054392610719,838723020409,230167310531,769929510229,639818210889,402582010999,508380610461,354519700689,024264810121,251219000631,961802200829,959271500331,125337300261,221871120979,994008300969,702876410811,243219010951,145001020939,590807100479,213925400609,925101300471,832489500571,866908100661,603093110589,390359700489,791251510691,119703100139,820564020001,958593400631,411389400841,026171000541,350817810559,274036410021,742589210839,586030210319,908006710599,723388200769,416947400661,453972120099,939598210499,181812310039,786164800949,143085100211,356898510009,537631010959,046794810321,929182810621,695927310771,777191310909,909773500571,290132110449,431991410579,630273210569,441441110369,363704210029,123374210651,975734010731,588603110929,871101600261,197515800521,153975700349,117346020259,007416200151,312064700591,728655700481,789590000859,431817800771,073450510181,358346600839,150099910949,566320600489,066381410871,210427400121,399084110011,819384100951,126970120049,412850810191,979574100519,142374400371",
|
||||
"D:/01-Offline-Backup/2-Images-B",
|
||||
"5555",
|
||||
"6666",
|
||||
"7777",
|
||||
"8888",
|
||||
"9999"
|
||||
]
|
||||
}
|
||||
}
|
||||
},
|
||||
"Y) Zip file(s) by directory with file": {
|
||||
"args": [
|
||||
"s",
|
||||
"Y",
|
||||
".kanbn/tasks"
|
||||
]
|
||||
},
|
||||
"Z) Zip file(s) by date": {
|
||||
"args": [
|
||||
"s",
|
||||
"Z",
|
||||
".kanbn/tasks"
|
||||
]
|
||||
}
|
||||
},
|
||||
"WorkingDirectoryName": "IFXApps"
|
||||
}
|
47
a016b99b-7e22-4654-b0ef-07c722dabe69/secrets.json
Normal file
47
a016b99b-7e22-4654-b0ef-07c722dabe69/secrets.json
Normal file
@ -0,0 +1,47 @@
|
||||
{
|
||||
"_Application": "GenealogicalDataCommunicationGoogleSheet",
|
||||
"_UserSecretsId": "a016b99b-7e22-4654-b0ef-07c722dabe69",
|
||||
"BuildNumber": "1234",
|
||||
"Company": "Mike Phares",
|
||||
"GitCommitSeven": "asdf",
|
||||
"GoogleApi": {
|
||||
"ApplicationName": "Current Legislators",
|
||||
"SpreadsheetId": "13XvFopu58Ni1SCJ8eFPumvojmhHRFnYmKiyObRRYBgw"
|
||||
},
|
||||
"GoogleCredential": {
|
||||
"type": "service_account",
|
||||
"project_id": "fiery-outpost-368318",
|
||||
"private_key_id": "9317323e6863057a0c5f919fe73fe798d795fd60",
|
||||
"private_key": "-----BEGIN PRIVATE KEY-----\nMIIEvQIBADANBgkqhkiG9w0BAQEFAASCBKcwggSjAgEAAoIBAQCtmOqGthsk4QcS\nhuH3nxbYJH7Rjb2MR9oo7fYvEqKech97a1+nMuAJsomVxHuN7aSedBVyVAa8mjE5\ng46/oRaEZR6Z89D1AMQ7zLBKjtjyiIKzxCbW/HldoFvb8R74jAetbbMK/qbu8omB\n2Zd7W92jRcBSJ8mFewp2OZiaJHnjdK/uhPHhAjdko1LAQNRoQv5nkAgeUWA51Bx9\nPdO+x+s1NxR8PeL2DyOEAa+3tJ2P6bXclTr3H80AtByWUDNXf74T7gPJ25ay08KE\nMm7Hho97li4oTJDiJKOiP+7Hh4w6S2B3Gen/yOMMDCkeSgPH2JeZN2AT2ytzil41\nJH47S22XAgMBAAECggEAA9OFg8+avI7bLYzciS0v/zaatvq1TVS+Gb3Y+cOi4vQn\n/nvo4VINPxl4z9zDTmcJBFcRq/HvLhQF9rsQF+gwi12BNap6lhPcv2atEg+g94OL\nwfOWWZG6CRbCP5BKevb3KlrrIdhoDIc7AaounRDyyyj76rOmzPLf0ahGVUtthlZg\nSFCuHe7AEDWaN65F230rJP3iufeKKBuWL8yiiI1AStbNMaDDLlmxEaeX9GCSiHcB\nQ1qMGEJk5OtCYDX6GxRE0VMDdhNOrJdhfqmjss6Iug4Rx5lHBM0U2hPQ0KBdpdiX\ncTkWtk46AGf3HSrnjfnI+couhLva4rKYolmrTx4opQKBgQDY/GIiE5zg28WhQNGI\ny+w1DtnwiARo00go8/QpGKJH4FO1amYpWm+HNTEa8jNzBG8Si9bvgM07gO4or6aX\nxeQl4fB7hGRRfxLgcCVJ2B0yJrcHqsTYTfo+pyG7ddYqSBrP2Aoc84DErLrvIG2w\nGABdvH9dz5WTHN36Ovpc9vvgOwKBgQDMz2geSuTZ9A6ewB+JrmlIY0AzFTwFBUvV\nKZ5SF7J4Vrt9eeGBlcwyWu0Bl5lI1/HH2T1I7T3lATVJJqqda3AxY43rUuMnzQrb\n3ibHGspM1XvYe2Syzhmeo6DVZpLDSwZsUsLls2ouCHvBuL1zV7RCFv9gHyp1aoaV\nQUQnVIhOVQKBgCc6OWN/uDTOhoQIe9kHRMSy0qOxc1qgF8OPlux3D59+5qM9gQqo\n1tDSxPXiI3r/qjToIwtZdcD0Jhok5zE5DW3r0tYBsUEqf/cjTxpyf5S5ew1fygZw\n0nTRMj/5paYvMumwXOOvAfCMaZ8hdbMII8jOcxg6lwfpiBfc4bY80HxRAoGAETnA\ngAu8g7hLIn72KBZLNJNkaud2TNXNMvh1IGJt2EEzM7J0jPmUWwfaty+Q7Nd8tlpH\nFUMe2Yvod2aRIvxOS1kcLpaiFE7iguuER2qxaRTrfaGjLoa3EOiiNlCSN2qv95xe\nWANnAsgj4H8xL+pIduaIRAVbBNUYzKTYnpY1gKECgYEAqpkDMGxw39/T0SgVArrM\nokHzYxVwXM49Gn6JwGzm0yqVHMYN0JASNbdhvINZKVOrG7aqgfO3WsQyNTe260mM\nss1h0hDutd4r/bXxkuE2jHkSuNtG/nkjBnY/K6xuO848kdQp7qu4BBPhhyamL0Fe\nXuVrYmF2eFOdiOyZMh3NNi0=\n-----END PRIVATE KEY-----\n",
|
||||
"client_email": "sheets@fiery-outpost-368318.iam.gserviceaccount.com",
|
||||
"client_id": "103046569137574173695",
|
||||
"auth_uri": "https://accounts.google.com/o/oauth2/auth",
|
||||
"token_uri": "https://oauth2.googleapis.com/token",
|
||||
"auth_provider_x509_cert_url": "https://www.googleapis.com/oauth2/v1/certs",
|
||||
"client_x509_cert_url": "https://www.googleapis.com/robot/v1/metadata/x509/sheets%40fiery-outpost-368318.iam.gserviceaccount.com",
|
||||
"universe_domain": "googleapis.com"
|
||||
},
|
||||
"Logging:Console:FormatterName": "simple",
|
||||
"Logging:Console:FormatterOptions:IncludeScopes": "True",
|
||||
"Logging:Console:FormatterOptions:SingleLine": "True",
|
||||
"Logging:Console:FormatterOptions:TimestampFormat": "HH:mm:ss ",
|
||||
"Logging:Console:FormatterOptions:UseUtcTimestamp": "True",
|
||||
"Logging:Console:LogLevel:Default": "Information",
|
||||
"Logging:Console:LogLevel:Microsoft.Hosting.Lifetime": "Information",
|
||||
"Logging:Console:LogLevel:Microsoft": "Warning",
|
||||
"Logging:Debug:FormatterName": "simple",
|
||||
"Logging:Debug:FormatterOptions:IncludeScopes": "True",
|
||||
"Logging:Debug:FormatterOptions:SingleLine": "True",
|
||||
"Logging:Debug:FormatterOptions:TimestampFormat": "HH:mm:ss ",
|
||||
"Logging:Debug:FormatterOptions:UseUtcTimestamp": "True",
|
||||
"Logging:Debug:LogLevel:Default": "Warning",
|
||||
"Logging:Debug:LogLevel:Microsoft.Hosting.Lifetime": "Debug",
|
||||
"Logging:Debug:LogLevel:Microsoft": "Information",
|
||||
"Logging:EventLog:LogLevel:Default": "Warning",
|
||||
"Logging:EventSource:LogLevel:Default": "Warning",
|
||||
"Logging:LogLevel:Default": "Debug",
|
||||
"Logging:LogLevel:Microsoft.Hosting.Lifetime": "Debug",
|
||||
"Logging:LogLevel:Microsoft": "Information",
|
||||
"PersonTitleFilters": "KM",
|
||||
"WorkingDirectoryName": "IFXApps"
|
||||
}
|
54
a1434467-4990-4941-a851-7ab234b084a9/secrets.json
Normal file
54
a1434467-4990-4941-a851-7ab234b084a9/secrets.json
Normal file
@ -0,0 +1,54 @@
|
||||
{
|
||||
"_Application": "Worker",
|
||||
"_UserSecretsId": "a1434467-4990-4941-a851-7ab234b084a9",
|
||||
"BuildNumber": "1012369",
|
||||
"Company": "Infineon Technologies Americas Corp.",
|
||||
"DateFormat": "yyyy-MM-dd HH:mm:ss:fff",
|
||||
"Destination": "D:/ProgramData/EC_EAFRepository/nupkg",
|
||||
"DestinationX": "",
|
||||
"DestinationWhenDeviceIpStartsWith": "10.95.36.",
|
||||
"DestinationWhenDeviceIpStartsWithX": "",
|
||||
"Drives:0:Letter": "i",
|
||||
"Drives:0:Password": "tLIPgqM6R9hVQOteRnTHwPqIg3Zxv8CohTjFkjkFz8k=",
|
||||
"Drives:0:Share": "\\\\messdv002.na.infineon.com\\Candela",
|
||||
"Drives:0:Use": "True",
|
||||
"Drives:0:User": "INFINEON\\MESGaNEAF",
|
||||
"Drives:1:Letter": "s",
|
||||
"Drives:1:Password": "zjtaxxwdEnJ/9tfXQFdj6TKiKBAmpCHWjdi6XYrflw4=",
|
||||
"Drives:1:Share": "\\\\mesfs.infineon.com\\EC_EAFRepository",
|
||||
"Drives:1:Use": "True",
|
||||
"Drives:1:User": "infineon\\ECMESEAF",
|
||||
"FileShare": "\\\\mesfs.infineon.com\\EC_EAFRepository\\BaGet",
|
||||
"FileShareX": "\\\\messdv002.na.infineon.com\\Candela\\BaGet",
|
||||
"FileShareXX": "",
|
||||
"FileShares:0": "\\\\messdv002.na.infineon.com\\Candela\\BaGet",
|
||||
"FileShares:1": "\\\\mesfs.infineon.com\\EC_EAFRepository\\BaGet",
|
||||
"GitCommitSeven": "e80b511",
|
||||
"Logging:Console:FormatterName": "simple",
|
||||
"Logging:Console:FormatterOptions:IncludeScopes": "True",
|
||||
"Logging:Console:FormatterOptions:SingleLine": "True",
|
||||
"Logging:Console:FormatterOptions:TimestampFormat": "HH:mm:ss ",
|
||||
"Logging:Console:FormatterOptions:UseUtcTimestamp": "True",
|
||||
"Logging:Console:LogLevel:Default": "Information",
|
||||
"Logging:Console:LogLevel:Microsoft": "Warning",
|
||||
"Logging:Console:LogLevel:Microsoft.Hosting.Lifetime": "Information",
|
||||
"Logging:Debug:FormatterName": "simple",
|
||||
"Logging:Debug:FormatterOptions:IncludeScopes": "True",
|
||||
"Logging:Debug:FormatterOptions:SingleLine": "True",
|
||||
"Logging:Debug:FormatterOptions:TimestampFormat": "HH:mm:ss ",
|
||||
"Logging:Debug:FormatterOptions:UseUtcTimestamp": "True",
|
||||
"Logging:Debug:LogLevel:Default": "Warning",
|
||||
"Logging:Debug:LogLevel:Microsoft": "Information",
|
||||
"Logging:Debug:LogLevel:Microsoft.Hosting.Lifetime": "Debug",
|
||||
"Logging:EventLog:LogLevel:Default": "Warning",
|
||||
"Logging:EventSource:LogLevel:Default": "Warning",
|
||||
"Logging:LogLevel:Default": "Debug",
|
||||
"Logging:LogLevel:Microsoft": "Information",
|
||||
"Logging:LogLevel:Microsoft.Hosting.Lifetime": "Debug",
|
||||
"MillisecondsDelay": "30000",
|
||||
"MonitorApplicationResource": "MES_BaGet_Worker_###",
|
||||
"MonitorApplicationSite": "auc",
|
||||
"Storage:Path": "L:/BaGet",
|
||||
"Storage:Type": "FileSystem",
|
||||
"WorkingDirectoryName": "IFXApps"
|
||||
}
|
8
a71ebef9-7685-4ccf-b098-f5a2e119480a/secrets.json
Normal file
8
a71ebef9-7685-4ccf-b098-f5a2e119480a/secrets.json
Normal file
@ -0,0 +1,8 @@
|
||||
{
|
||||
"_Application": "Unknown",
|
||||
"_UserSecretsId": "a71ebef9-7685-4ccf-b098-f5a2e119480a",
|
||||
"CharacterizationArchivePath": "\\\\mesfs.infineon.com\\EC_Characterization_Si\\Archive",
|
||||
"xCharacterizationArchivePath": "D:/Tmp/phares/EC_Characterization_Si-Archive",
|
||||
"xMockRoot": "",
|
||||
"MockRoot": ""
|
||||
}
|
12
ae069946-d0c0-4e4f-94f6-9c526e4ae4e7/secrets.json
Normal file
12
ae069946-d0c0-4e4f-94f6-9c526e4ae4e7/secrets.json
Normal file
@ -0,0 +1,12 @@
|
||||
{
|
||||
"_Application": "Offset-Date-Time-Original",
|
||||
"_UserSecretsId": "ae069946-d0c0-4e4f-94f6-9c526e4ae4e7",
|
||||
"MaxDegreeOfParallelism": 1,
|
||||
"Windows": {
|
||||
"Configuration": {
|
||||
"PopulatePropertyId": true,
|
||||
"RootDirectory": "D:/7-Question/May2012Offset",
|
||||
"VerifyToSeason": []
|
||||
}
|
||||
}
|
||||
}
|
71
b0a3891c-b775-422c-80ee-63a2f385045d/secrets.json
Normal file
71
b0a3891c-b775-422c-80ee-63a2f385045d/secrets.json
Normal file
@ -0,0 +1,71 @@
|
||||
{
|
||||
"_Application": "oi-metrology-viewer.Server",
|
||||
"_UserSecretsId": "b0a3891c-b775-422c-80ee-63a2f385045d",
|
||||
"AllowedHosts": "*",
|
||||
"ApiFileShare": "https://oi-metrology-viewer-prod.mes.infineon.com:4438",
|
||||
"ApiLoggingContentTypes": "application/json",
|
||||
"ApiLoggingPathPrefixes": "/api/inbound",
|
||||
"ApiLogPath": "D:/Metrology/MetrologyAPILogs",
|
||||
"ApiUrl": "~/api",
|
||||
"BuildNumber": "1000014",
|
||||
"Company": "Infineon Technologies Americas Corp.",
|
||||
"ConnectionStringX": "Data Source=messad1001\\test1,59583;Initial Catalog=LSL2SQL;Persist Security Info=True;User ID=srpadmin;Password=0okm9ijn;",
|
||||
"ConnectionString": "Data Source=messqlec1.infineon.com\\PROD1,53959;Initial Catalog=Metrology;User ID=metrology_rouser;Password=Metrologyrouser2024!;",
|
||||
"GitCommitSeven": "6bc0487",
|
||||
"EcCharacterizationSi": "\\\\mesfs.infineon.com\\EC_Characterization_Si",
|
||||
"EcMesaFileShareCharacterizationSi": "https://eaf-prod.mes.infineon.com:4439",
|
||||
"EcMesaFileShareMetrologySi": "https://oi-metrology-viewer-prod.mes.infineon.com:4439",
|
||||
"EcMetrologySi": "\\\\mesfs.infineon.com\\EC_Metrology_Si",
|
||||
"InboundApiAllowedIPList": "",
|
||||
"IqsColumns": "Part,Process,Test,USL,TAR,LSL,Last Entry,Last Alarm,Alarm,Subgroups,Mean",
|
||||
"IqsFileSegments": [
|
||||
"RawData",
|
||||
"SPC-MI",
|
||||
"product-thick-and-res-health-reduced-web.html"
|
||||
],
|
||||
"IqsKey": "Process",
|
||||
"IqsRed": "#0000FF",
|
||||
"IqsYellow": "#00FFFF",
|
||||
"IsDevelopment": "False",
|
||||
"IsDevelopmentX": "True",
|
||||
"IsStaging": "False",
|
||||
"Logging:Console:FormatterName": "simple",
|
||||
"Logging:Console:FormatterOptions:IncludeScopes": "True",
|
||||
"Logging:Console:FormatterOptions:SingleLine": "True",
|
||||
"Logging:Console:FormatterOptions:TimestampFormat": "HH:mm:ss ",
|
||||
"Logging:Console:FormatterOptions:UseUtcTimestamp": "True",
|
||||
"Logging:Console:LogLevel:Default": "Information",
|
||||
"Logging:Console:LogLevel:Microsoft.Hosting.Lifetime": "Information",
|
||||
"Logging:Console:LogLevel:Microsoft": "Warning",
|
||||
"Logging:Debug:FormatterName": "simple",
|
||||
"Logging:Debug:FormatterOptions:IncludeScopes": "True",
|
||||
"Logging:Debug:FormatterOptions:SingleLine": "True",
|
||||
"Logging:Debug:FormatterOptions:TimestampFormat": "HH:mm:ss ",
|
||||
"Logging:Debug:FormatterOptions:UseUtcTimestamp": "True",
|
||||
"Logging:Debug:LogLevel:Default": "Warning",
|
||||
"Logging:Debug:LogLevel:Microsoft.Hosting.Lifetime": "Debug",
|
||||
"Logging:Debug:LogLevel:Microsoft": "Information",
|
||||
"Logging:EventLog:LogLevel:Default": "Warning",
|
||||
"Logging:EventSource:LogLevel:Default": "Warning",
|
||||
"Logging:LogLevel:Default": "Debug",
|
||||
"Logging:LogLevel:Microsoft.Hosting.Lifetime": "Debug",
|
||||
"Logging:LogLevel:Microsoft": "Information",
|
||||
"MockRoot": "",
|
||||
"MockRootX": "/Data/Tests",
|
||||
"MonAResource": "OI_Metrology_Viewer_EC",
|
||||
"MonAResourceX": "OI_Metrology_Viewer_IFX",
|
||||
"MonASite": "auc",
|
||||
"OpenInsightApplicationProgrammingInterface": "http://oi-prod-ec-api.mes.infineon.com/api/oiWizard",
|
||||
"TableToPath:BioRadRunHeader": "\\\\messa01ec.infineon.com\\apps\\Metrology\\MET08THFTIRQS408M\\Source",
|
||||
"TableToPath:CDERunHeader": "\\\\messa01ec.infineon.com\\apps\\Metrology\\MET08RESIMAPCDE\\Source",
|
||||
"TableToPath:MercuryProbeRunHeader": "\\\\messa01ec.infineon.com\\apps\\Metrology\\MET08RESIHGCV\\Source",
|
||||
"TableToPath:SP1RunHeader": "\\\\messa01ec.infineon.com\\apps\\Metrology\\MET08DDUPSP1TBI\\Source",
|
||||
"TableToPath:SPVRunHeader": "\\\\messa01ec.infineon.com\\apps\\Metrology\\MET08ANLYSDIFAAST230\\Source",
|
||||
"TableToPath:SRPRunHeader": "\\\\messa01ec.infineon.com\\apps\\Metrology\\MET08RESISRP2100\\Source",
|
||||
"TableToPath:StratusBioRadRunHeader": "\\\\messa01ec.infineon.com\\apps\\Metrology\\MET08THFTIRSTRATUS\\Source",
|
||||
"TableToPath:TencorRunHeader": "\\\\messa01ec.infineon.com\\apps\\Metrology\\MET08DDUPSFS6420\\Source",
|
||||
"URLs": "http://localhost:5003;",
|
||||
"WaferCounterDestinationDirectory": "\\\\messa01ec.infineon.com\\apps\\WaferCounter",
|
||||
"WaferCounterTwoFileSecondsWait": 14,
|
||||
"WorkingDirectoryName": "IFXApps"
|
||||
}
|
5
b2d83cb4-6503-49cf-9f09-3e3581a9c017/secrets.json
Normal file
5
b2d83cb4-6503-49cf-9f09-3e3581a9c017/secrets.json
Normal file
@ -0,0 +1,5 @@
|
||||
{
|
||||
"_Application": "Roof-Air-Handlers",
|
||||
"_UserSecretsId": "b2d83cb4-6503-49cf-9f09-3e3581a9c017",
|
||||
"Delete": "2024-04-28"
|
||||
}
|
14
b3bbcc69-1439-4e86-9bbf-75c8e8839cc0/secrets.json
Normal file
14
b3bbcc69-1439-4e86-9bbf-75c8e8839cc0/secrets.json
Normal file
@ -0,0 +1,14 @@
|
||||
{
|
||||
"_Application": "Set-Created-Date",
|
||||
"_UserSecretsId": "b3bbcc69-1439-4e86-9bbf-75c8e8839cc0",
|
||||
"MaxDegreeOfParallelism": 6,
|
||||
"MaxValue": 102,
|
||||
"Windows": {
|
||||
"Configuration": {
|
||||
"xPopulatePropertyId": true,
|
||||
"PopulatePropertyId": false,
|
||||
"RootDirectory": "D:/1-Images-A/Images-c9dbce3b",
|
||||
"VerifyToSeason": []
|
||||
}
|
||||
}
|
||||
}
|
164
b6f34b8e-5026-41d4-9c28-6516d19d6569/secrets.json
Normal file
164
b6f34b8e-5026-41d4-9c28-6516d19d6569/secrets.json
Normal file
@ -0,0 +1,164 @@
|
||||
{
|
||||
"_Application": "File-Watcher",
|
||||
"_UserSecretsId": "b6f34b8e-5026-41d4-9c28-6516d19d6569",
|
||||
"_ZzzPre": "Oracle",
|
||||
"BuildNumber": "1234",
|
||||
"Company": "Infineon Technologies Americas Corp.",
|
||||
"CompassConfiguration": {
|
||||
"Destination": "\\\\10.95.1.211\\Share\\RawData\\Compass",
|
||||
"HoursBack": 4,
|
||||
"MonthPattern": "MMM",
|
||||
"Pattern": "*.csv",
|
||||
"Source": "C:/Alerton/Compass/1.0/CLIMATEC/archive/trendlog",
|
||||
"YearPattern": "yyyy"
|
||||
},
|
||||
"DriveConfiguration": {
|
||||
"Letter": "s",
|
||||
"Password": "zjtaxxwdEnJ/9tfXQFdj6TKiKBAmpCHWjdi6XYrflw4=",
|
||||
"Share": "\\\\10.95.1.211\\Share",
|
||||
"Use": "True",
|
||||
"User": "infineon\\ECMESEAF"
|
||||
},
|
||||
"EAFLogConfiguration": {
|
||||
"SearchPattern": "*.log*"
|
||||
},
|
||||
"EAFProgramDataConfiguration": {
|
||||
"Destination": "\\\\messa08ec.infineon.com\\d$\\ProgramData\\EC_Characterization_Si\\RawData",
|
||||
"Source": "D:/ProgramData/EC_Characterization_Si/RawData"
|
||||
},
|
||||
"GitCommitSeven": "asdf",
|
||||
"HelperX": "HelperTCP",
|
||||
"Helper": "HelperNuget",
|
||||
"HelperXXX": "HelperEAFLog",
|
||||
"HelperXXXX": "HelperSerial",
|
||||
"HelperXXXXX": "HelperCompass",
|
||||
"HelperXXXXXX": "HelperStratus",
|
||||
"HelperXXXXXXX": "HelperEventLog",
|
||||
"HelperXXXXXXXX": "HelperInfinityQS",
|
||||
"HelperXXXXXXXXX": "HelperWaferCounter",
|
||||
"HelperXXXXXXXXXX": "HelperEAFProgramData",
|
||||
"HelperXXXXXXXXXXX": "HelperMetrologyFiles",
|
||||
"Logging:Console:FormatterName": "simple",
|
||||
"Logging:Console:FormatterOptions:IncludeScopes": "True",
|
||||
"Logging:Console:FormatterOptions:SingleLine": "True",
|
||||
"Logging:Console:FormatterOptions:TimestampFormat": "HH:mm:ss ",
|
||||
"Logging:Console:FormatterOptions:UseUtcTimestamp": "True",
|
||||
"Logging:Console:LogLevel:Default": "Information",
|
||||
"Logging:Console:LogLevel:Microsoft": "Warning",
|
||||
"Logging:Console:LogLevel:Microsoft.Hosting.Lifetime": "Information",
|
||||
"Logging:Debug:FormatterName": "simple",
|
||||
"Logging:Debug:FormatterOptions:IncludeScopes": "True",
|
||||
"Logging:Debug:FormatterOptions:SingleLine": "True",
|
||||
"Logging:Debug:FormatterOptions:TimestampFormat": "HH:mm:ss ",
|
||||
"Logging:Debug:FormatterOptions:UseUtcTimestamp": "True",
|
||||
"Logging:Debug:LogLevel:Default": "Warning",
|
||||
"Logging:Debug:LogLevel:Microsoft": "Information",
|
||||
"Logging:Debug:LogLevel:Microsoft.Hosting.Lifetime": "Debug",
|
||||
"Logging:EventLog:LogLevel:Default": "Warning",
|
||||
"Logging:EventSource:LogLevel:Default": "Warning",
|
||||
"Logging:LogLevel:Default": "Debug",
|
||||
"Logging:LogLevel:Microsoft": "Information",
|
||||
"Logging:LogLevel:Microsoft.Hosting.Lifetime": "Debug",
|
||||
"MetrologyConfiguration": {
|
||||
"DirectoriesBack": 2,
|
||||
"DeleteOlderThanWeeks": 16,
|
||||
"HardcodedValues": [
|
||||
"BIORAD2",
|
||||
"BIORAD3",
|
||||
"BIORAD4",
|
||||
"BIORAD5",
|
||||
"CDE2",
|
||||
"CDE3",
|
||||
"CDE4",
|
||||
"CDE5",
|
||||
"CDE6",
|
||||
"HGCV1",
|
||||
"HGCV2",
|
||||
"HGCV3",
|
||||
"TENCOR1",
|
||||
"TENCOR2",
|
||||
"TENCOR3",
|
||||
"SP101",
|
||||
"SPV01",
|
||||
"SRP",
|
||||
"WC6Inch",
|
||||
"WC8Inch",
|
||||
"Bio-Rad"
|
||||
],
|
||||
"SourceDirectories": [
|
||||
"\\\\messa01ec.infineon.com\\apps\\Metrology\\Run Data Repository\\MET08ANLYSDIFAAST230\\Source\\MET08ANLYSDIFAAST230",
|
||||
"\\\\messa01ec.infineon.com\\apps\\Metrology\\Run Data Repository\\MET08DDUPSFS6420\\Source\\MET08DDUPSFS6420",
|
||||
"\\\\messa01ec.infineon.com\\apps\\Metrology\\Run Data Repository\\MET08DDUPSP1TBI\\Source\\MET08DDUPSP1TBI",
|
||||
"\\\\messa01ec.infineon.com\\apps\\Metrology\\Run Data Repository\\MET08RESIHGCV\\Source\\MET08RESIHGCV",
|
||||
"\\\\messa01ec.infineon.com\\apps\\Metrology\\Run Data Repository\\MET08RESIMAPCDE\\Source\\MET08RESIMAPCDE",
|
||||
"\\\\messa01ec.infineon.com\\apps\\Metrology\\Run Data Repository\\MET08RESISRP2100\\Source\\MET08RESISRP2100",
|
||||
"\\\\messa01ec.infineon.com\\apps\\Metrology\\Run Data Repository\\MET08THFTIRQS408M\\Source\\MET08THFTIRQS408M",
|
||||
"\\\\messa01ec.infineon.com\\apps\\Metrology\\Run Data Repository\\MET08THFTIRSTRATUS\\Source\\MET08THFTIRSTRATUS"
|
||||
]
|
||||
},
|
||||
"MillisecondsDelay": 54000,
|
||||
"SerialConfiguration": {
|
||||
"Destination": "L:/DevOps/MESA_FI/File-Watcher/.vscode",
|
||||
"GhostPCLFileName": "gpcl6win64.exe",
|
||||
"LincPDFCFileName": "LincPDFC.exe",
|
||||
"PortName": "COM37"
|
||||
},
|
||||
"StratusConfiguration": {
|
||||
"Destination": "D:/Tmp",
|
||||
"DestinationX": "\\\\10.95.1.211\\Share\\RawData\\BIORAD4",
|
||||
"FileDelimiterPattern": "Mean [0-9.]*, STDD [0-9.]*",
|
||||
"WatchFile": "DataBiorad.txt"
|
||||
},
|
||||
"TransmissionControlProtocolConfiguration": {
|
||||
"Destination": "L:/DevOps/MESA_FI/File-Watcher/.vscode",
|
||||
"GhostPCLFileName": "gpcl6win64.exe",
|
||||
"IPAddress": "COM37",
|
||||
"IPAddresses": {
|
||||
"10.95.154.43": [
|
||||
"FQA",
|
||||
"6INCH",
|
||||
"WC6INCH1"
|
||||
],
|
||||
"10.95.154.44": [
|
||||
"MU",
|
||||
"6INCH",
|
||||
"WC6INCH2"
|
||||
],
|
||||
"10.95.154.19": [
|
||||
"EPP-WEST",
|
||||
"6INCH",
|
||||
"WC6INCH3"
|
||||
],
|
||||
"10.95.154.46": [
|
||||
"EPP-EAST",
|
||||
"6INCH",
|
||||
"WC6INCH4"
|
||||
],
|
||||
"10.95.154.47": [
|
||||
"FQA",
|
||||
"8INCH",
|
||||
"WC8INCH1"
|
||||
],
|
||||
"10.95.154.48": [
|
||||
"MU",
|
||||
"8INCH",
|
||||
"WC8INCH2"
|
||||
],
|
||||
"10.95.154.49": [
|
||||
"EPP-WEST",
|
||||
"8INCH",
|
||||
"WC8INCH3"
|
||||
]
|
||||
},
|
||||
"Port": 950,
|
||||
"Server": false
|
||||
},
|
||||
"URLs": "http://localhost:5003;",
|
||||
"WaferCounterConfiguration": {
|
||||
"Destination": "\\\\mestsa01ec.infineon.com\\apps\\WaferCounter\\V203",
|
||||
"MatchPath": false
|
||||
},
|
||||
"WatchDirectory": "D:/Tmp/Phares/Event-Log",
|
||||
"WatchDirectoryXX": "D:/EAF/EAF Instances",
|
||||
"WatchDirectoryXXX": "C:/software/WaferCounter/V203"
|
||||
}
|
60
bd6612f8-1e49-4f08-bfd6-ba6205462f25/secrets.json
Normal file
60
bd6612f8-1e49-4f08-bfd6-ba6205462f25/secrets.json
Normal file
@ -0,0 +1,60 @@
|
||||
{
|
||||
"_Application": "Directory-Size",
|
||||
"_UserSecretsId": "bd6612f8-1e49-4f08-bfd6-ba6205462f25",
|
||||
"BuildNumber": "1234",
|
||||
"Company": "Infineon Technologies Americas Corp.",
|
||||
"GitCommitSeven": "asdf",
|
||||
"Logging:Console:FormatterName": "simple",
|
||||
"Logging:Console:FormatterOptions:IncludeScopes": "True",
|
||||
"Logging:Console:FormatterOptions:SingleLine": "True",
|
||||
"Logging:Console:FormatterOptions:TimestampFormat": "HH:mm:ss ",
|
||||
"Logging:Console:FormatterOptions:UseUtcTimestamp": "True",
|
||||
"Logging:Console:LogLevel:Default": "Information",
|
||||
"Logging:Console:LogLevel:Microsoft": "Warning",
|
||||
"Logging:Console:LogLevel:Microsoft.Hosting.Lifetime": "Information",
|
||||
"Logging:Debug:FormatterName": "simple",
|
||||
"Logging:Debug:FormatterOptions:IncludeScopes": "True",
|
||||
"Logging:Debug:FormatterOptions:SingleLine": "True",
|
||||
"Logging:Debug:FormatterOptions:TimestampFormat": "HH:mm:ss ",
|
||||
"Logging:Debug:FormatterOptions:UseUtcTimestamp": "True",
|
||||
"Logging:Debug:LogLevel:Default": "Warning",
|
||||
"Logging:Debug:LogLevel:Microsoft": "Information",
|
||||
"Logging:Debug:LogLevel:Microsoft.Hosting.Lifetime": "Debug",
|
||||
"Logging:EventLog:LogLevel:Default": "Warning",
|
||||
"Logging:EventSource:LogLevel:Default": "Warning",
|
||||
"Logging:LogLevel:Default": "Debug",
|
||||
"Logging:LogLevel:Microsoft": "Information",
|
||||
"Logging:LogLevel:Microsoft.Hosting.Lifetime": "Debug",
|
||||
"MillisecondsDelay": 300000,
|
||||
"ReportPath": "R:/Shares/EC_APC/Directory-Size/Tab-Separated-Values",
|
||||
"URLs": "http://localhost:5002;",
|
||||
"WatchDirectories:0": "R:/Shares/EC_APC",
|
||||
"WatchDirectories:1": "R:/Shares/EC_Candela_GaN",
|
||||
"WatchDirectories:2": "R:/Shares/EC_Characterization_GaN",
|
||||
"WatchDirectories:3": "R:/Shares/EC_Characterization_Si",
|
||||
"WatchDirectories:4": "R:/Shares/EC_Customer_Service",
|
||||
"WatchDirectories:5": "R:/Shares/EC_EAFLog",
|
||||
"WatchDirectories:6": "R:/Shares/EC_EAFRepository",
|
||||
"WatchDirectories:7": "R:/Shares/EC_EDA",
|
||||
"WatchDirectories:8": "R:/Shares/EC_Engineering",
|
||||
"WatchDirectories:9": "R:/Shares/EC_EpiReactorRecipes",
|
||||
"WatchDirectories:10": "R:/Shares/EC_Equip_Eng",
|
||||
"WatchDirectories:11": "R:/Shares/EC_Maintenance",
|
||||
"WatchDirectories:12": "R:/Shares/EC_MAMD_Files",
|
||||
"WatchDirectories:13": "R:/Shares/EC_MAMD_Ops",
|
||||
"WatchDirectories:14": "R:/Shares/EC_Materials",
|
||||
"WatchDirectories:15": "R:/Shares/EC_Metrology_GaN",
|
||||
"WatchDirectories:16": "R:/Shares/EC_Metrology_Si",
|
||||
"WatchDirectories:17": "R:/Shares/EC_MOCVD",
|
||||
"WatchDirectories:18": "R:/Shares/EC_Production",
|
||||
"WatchDirectories:19": "R:/Shares/EC_Sales",
|
||||
"WatchDirectories:20": "R:/Shares/EC_SPC_GaN",
|
||||
"WatchDirectories:21": "R:/Shares/EC_SPC_Si",
|
||||
"WatchDirectories:22": "R:/Shares/EC_TempHumidity_Controls",
|
||||
"WatchDirectories:23": "R:/Shares/EC_Test",
|
||||
"WatchDirectories:24": "R:/Shares/EC_TESTTTT",
|
||||
"WatchDirectories:25": "R:/Shares/EC_WFOperations",
|
||||
"WatchDirectories:26": "R:/Shares/EC_YODAConfig",
|
||||
"WatchDirectories:27": "R:/Shares/EC_GaN_Development",
|
||||
"WatchDirectories:28": "R:/Shares/EC_WFOperations"
|
||||
}
|
96
c64a15ed-0ba3-4378-8f80-0c19d0531747/secrets.json
Normal file
96
c64a15ed-0ba3-4378-8f80-0c19d0531747/secrets.json
Normal file
@ -0,0 +1,96 @@
|
||||
{
|
||||
"_Application": "Drag-Drop-Set-Property-Item",
|
||||
"_UserSecretsId": "c64a15ed-0ba3-4378-8f80-0c19d0531747",
|
||||
"Company": "Mike Phares",
|
||||
"Logging:LogLevel:Microsoft.Hosting.Lifetime": "Debug",
|
||||
"Logging:LogLevel:Microsoft": "Information",
|
||||
"Logging:LogLevel:Default": "Debug",
|
||||
"Logging:EventSource:LogLevel:Default": "Warning",
|
||||
"Logging:EventLog:LogLevel:Default": "Warning",
|
||||
"Logging:Debug:LogLevel:Microsoft.Hosting.Lifetime": "Debug",
|
||||
"Logging:Debug:LogLevel:Microsoft": "Information",
|
||||
"Logging:Debug:LogLevel:Default": "Warning",
|
||||
"Logging:Debug:FormatterOptions:UseUtcTimestamp": "True",
|
||||
"Logging:Debug:FormatterOptions:TimestampFormat": "HH:mm:ss ",
|
||||
"Logging:Debug:FormatterOptions:SingleLine": "True",
|
||||
"Logging:Debug:FormatterOptions:IncludeScopes": "True",
|
||||
"Logging:Debug:FormatterName": "simple",
|
||||
"Logging:Console:LogLevel:Microsoft.Hosting.Lifetime": "Information",
|
||||
"Logging:Console:LogLevel:Microsoft": "Warning",
|
||||
"Logging:Console:LogLevel:Default": "Information",
|
||||
"Logging:Console:FormatterOptions:UseUtcTimestamp": "True",
|
||||
"Logging:Console:FormatterOptions:TimestampFormat": "HH:mm:ss ",
|
||||
"Logging:Console:FormatterOptions:SingleLine": "True",
|
||||
"Logging:Console:FormatterOptions:IncludeScopes": "True",
|
||||
"Logging:Console:FormatterName": "simple",
|
||||
"MaxDegreeOfParallelism": 1,
|
||||
"ValidKeyWords": [
|
||||
"Blurry",
|
||||
"Collage",
|
||||
"Corrupt",
|
||||
"Development",
|
||||
"Duplicate",
|
||||
"Ex-spouse",
|
||||
"Indecent",
|
||||
"Infineon",
|
||||
"Irrelevant",
|
||||
"Review",
|
||||
"Slideshow",
|
||||
"SUMCO"
|
||||
],
|
||||
"Windows": {
|
||||
"Configuration": {
|
||||
"DateGroup": "c9dbce3b",
|
||||
"DiffPropertyDirectory": "",
|
||||
"FileNameDirectorySeparator": ".Z.",
|
||||
"ForcePropertyLastWriteTimeToCreationTime": false,
|
||||
"IgnoreExtensions": [
|
||||
".gif",
|
||||
".GIF",
|
||||
".lnk",
|
||||
".LNK",
|
||||
".nef",
|
||||
".NEF",
|
||||
".pdf",
|
||||
".PDF"
|
||||
],
|
||||
"IgnoreRulesKeyWords": [
|
||||
"Collage",
|
||||
"Corrupt",
|
||||
"Indecent"
|
||||
],
|
||||
"IntMinValueLength": 11,
|
||||
"MaxImagesInDirectoryForTopLevelFirstPass": 10,
|
||||
"Offset": 1054000,
|
||||
"OffsetX": 1000000,
|
||||
"OutputExtension": ".jpg",
|
||||
"Pattern": "[^ABCDEFGHIJKLMNOPQRSTUVWXYZbcdfghjklmnpqrstvwxyz0-9]",
|
||||
"PersonBirthdayFormat": "yyyy-MM-dd_HH",
|
||||
"PopulatePropertyId": true,
|
||||
"PropertiesChangedForProperty": false,
|
||||
"ResultAllInOne": "_ _ _",
|
||||
"ResultAllInOneSubdirectoryLength": 2,
|
||||
"ResultCollection": "[]",
|
||||
"ResultContent": "()",
|
||||
"ResultSingleton": "{}",
|
||||
"RootDirectory": "C:/Tmp/Phares/Compare/Images-c9dbce3b",
|
||||
"ValidImageFormatExtensions": [
|
||||
".bmp",
|
||||
".BMP",
|
||||
".gif",
|
||||
".GIF",
|
||||
".jpeg",
|
||||
".JPEG",
|
||||
".jpg",
|
||||
".JPG",
|
||||
".png",
|
||||
".PNG",
|
||||
".tiff",
|
||||
".TIFF",
|
||||
".tif",
|
||||
".TIF"
|
||||
]
|
||||
}
|
||||
},
|
||||
"WorkingDirectoryName": "PharesApps"
|
||||
}
|
61
ce31220e-ef92-4e68-89c5-91b027a94dca/secrets.json
Normal file
61
ce31220e-ef92-4e68-89c5-91b027a94dca/secrets.json
Normal file
@ -0,0 +1,61 @@
|
||||
{
|
||||
"_Application": "Move-By-Id",
|
||||
"_UserSecretsId": "ce31220e-ef92-4e68-89c5-91b027a94dca",
|
||||
"ComparePathsFile": "C:/Users/mikep/AppData/Local/PharesApps/Drag-Drop-Explorer/2023_24/638220903745321099.json",
|
||||
"MaxDegreeOfParallelism": 6,
|
||||
"MaxMinutesDelta": 2,
|
||||
"MoveTo": "L",
|
||||
"Windows": {
|
||||
"Configuration": {
|
||||
"DateGroup": "c9dbce3b",
|
||||
"FileNameDirectorySeparator": ".Z.",
|
||||
"ForcePropertyLastWriteTimeToCreationTime": false,
|
||||
"IgnoreExtensions": [
|
||||
".gif",
|
||||
".GIF",
|
||||
".lnk",
|
||||
".LNK",
|
||||
".nef",
|
||||
".NEF",
|
||||
".pdf",
|
||||
".PDF"
|
||||
],
|
||||
"IgnoreRulesKeyWords": [
|
||||
"Collage",
|
||||
"Corrupt",
|
||||
"Indecent"
|
||||
],
|
||||
"IntMinValueLength": 11,
|
||||
"MaxImagesInDirectoryForTopLevelFirstPass": 10,
|
||||
"Offset": 1054000,
|
||||
"OffsetX": 1000000,
|
||||
"Pattern": "[^ABCDEFGHIJKLMNOPQRSTUVWXYZbcdfghjklmnpqrstvwxyz0-9]",
|
||||
"PersonBirthdayFormat": "yyyy-MM-dd_HH",
|
||||
"PopulatePropertyId": true,
|
||||
"PropertiesChangedForProperty": false,
|
||||
"ResultAllInOne": "_ _ _",
|
||||
"ResultAllInOneSubdirectoryLength": 2,
|
||||
"ResultCollection": "[]",
|
||||
"ResultContent": "()",
|
||||
"ResultSingleton": "{}",
|
||||
"RootDirectory": "C:/",
|
||||
"ValidImageFormatExtensions": [
|
||||
".bmp",
|
||||
".BMP",
|
||||
".gif",
|
||||
".GIF",
|
||||
".jpeg",
|
||||
".JPEG",
|
||||
".jpg",
|
||||
".JPG",
|
||||
".png",
|
||||
".PNG",
|
||||
".tiff",
|
||||
".TIFF",
|
||||
".tif",
|
||||
".TIF"
|
||||
]
|
||||
}
|
||||
},
|
||||
"WorkingDirectoryName": "PharesApps"
|
||||
}
|
37
d862524f-2b48-4f47-b4c3-5a8615814ec2/secrets.json
Normal file
37
d862524f-2b48-4f47-b4c3-5a8615814ec2/secrets.json
Normal file
@ -0,0 +1,37 @@
|
||||
{
|
||||
"_Application": "Copy-Distinct",
|
||||
"_UserSecretsId": "d862524f-2b48-4f47-b4c3-5a8615814ec2",
|
||||
"xCopyDuplicates": true,
|
||||
"CopyDuplicates": false,
|
||||
"CopyTo": "D:/7-Question/2000.0 Winter-2",
|
||||
"xIfCanUseId": true,
|
||||
"IfCanUseId": false,
|
||||
"MaxDegreeOfParallelism": 6,
|
||||
"MaxValue": 102,
|
||||
"ResultDirectoryKey": "()",
|
||||
"Windows": {
|
||||
"Configuration": {
|
||||
"RootDirectory": "D:/7-Question/2000.0 Winter",
|
||||
"VerifyToSeason": []
|
||||
}
|
||||
},
|
||||
"Delete": [
|
||||
"D:/1-Images-A/Images-1e85c0ba/2010.2 Summer/-418091901.jpg",
|
||||
"D:/1-Images-A/Images-1e85c0ba/2010.2 Summer/1474055403.jpg",
|
||||
"D:/1-Images-A/Images-1e85c0ba/2010.2 Summer/2068805610.jpg",
|
||||
"D:/1-Images-A/Images-1e85c0ba/2010.3 Fall/-914581211.jpg",
|
||||
"D:/1-Images-A/Images-1e85c0ba/2011.0 Winter !9/-1982723576.jpg",
|
||||
"D:/1-Images-A/Images-1e85c0ba/2011.0 Winter !9/-815124193.jpg",
|
||||
"D:/1-Images-A/Images-1e85c0ba/2011.0 Winter/2092826301.jpg",
|
||||
"D:/1-Images-A/Images-1e85c0ba/2011.0 Winter/252454200.jpg",
|
||||
"D:/1-Images-A/Images-1e85c0ba/Mike Google Without Date Taken 2018 !9/1635339916.jpg",
|
||||
"D:/1-Images-A/Images-1e85c0ba/Tracy Pictures 2011.3 Fall !9/247087266.jpg",
|
||||
"D:/1-Images-A/Images-1e85c0ba/Tracy Pictures 2011.3 Fall !9/705001046.jpg",
|
||||
"D:/1-Images-A/Images-1e85c0ba/Tracy Pictures 2014.1 Spring !9/-1862174100.jpg",
|
||||
"D:/1-Images-A/Images-1e85c0ba/Tracy Pictures 2014.1 Spring !9/762432778.jpg",
|
||||
"D:/1-Images-A/Images-1e85c0ba/Tracy Pictures 2014.2 Summer !9/-1681658758.jpg",
|
||||
"D:/1-Images-A/Images-1e85c0ba/Tracy Pictures 2014.2 Summer !9/1298176653.jpg",
|
||||
"D:/1-Images-A/Images-1e85c0ba/Tracy Pictures 2014.2 Summer !9/150934598.jpg",
|
||||
""
|
||||
]
|
||||
}
|
296
e8c3d25d-9715-4b35-9010-1cdc74840190/secrets.json
Normal file
296
e8c3d25d-9715-4b35-9010-1cdc74840190/secrets.json
Normal file
@ -0,0 +1,296 @@
|
||||
{
|
||||
"_Application": "Tests",
|
||||
"_UserSecretsId": "e8c3d25d-9715-4b35-9010-1cdc74840190",
|
||||
"Company": "Mike Phares",
|
||||
"Linux": {},
|
||||
"Logging:Console:FormatterName": "simple",
|
||||
"Logging:Console:FormatterOptions:IncludeScopes": "True",
|
||||
"Logging:Console:FormatterOptions:SingleLine": "True",
|
||||
"Logging:Console:FormatterOptions:TimestampFormat": "HH:mm:ss ",
|
||||
"Logging:Console:FormatterOptions:UseUtcTimestamp": "True",
|
||||
"Logging:Console:LogLevel:Default": "Information",
|
||||
"Logging:Console:LogLevel:Microsoft": "Warning",
|
||||
"Logging:Console:LogLevel:Microsoft.Hosting.Lifetime": "Information",
|
||||
"Logging:Debug:FormatterName": "simple",
|
||||
"Logging:Debug:FormatterOptions:IncludeScopes": "True",
|
||||
"Logging:Debug:FormatterOptions:SingleLine": "True",
|
||||
"Logging:Debug:FormatterOptions:TimestampFormat": "HH:mm:ss ",
|
||||
"Logging:Debug:FormatterOptions:UseUtcTimestamp": "True",
|
||||
"Logging:Debug:LogLevel:Default": "Warning",
|
||||
"Logging:Debug:LogLevel:Microsoft": "Information",
|
||||
"Logging:Debug:LogLevel:Microsoft.Hosting.Lifetime": "Debug",
|
||||
"Logging:EventLog:LogLevel:Default": "Warning",
|
||||
"Logging:EventSource:LogLevel:Default": "Warning",
|
||||
"Logging:LogLevel:Default": "Debug",
|
||||
"Logging:LogLevel:Microsoft": "Information",
|
||||
"Logging:LogLevel:Microsoft.Hosting.Lifetime": "Debug",
|
||||
"MaxDegreeOfParallelism": 6,
|
||||
"Windows": {
|
||||
"Configuration": {
|
||||
"CheckDFaceAndUpWriteDates": false,
|
||||
"CheckJsonForDistanceResults": false,
|
||||
"CopyFacesAndSaveFaceLandmarkForOutputResolutions": [],
|
||||
"CrossDirectoryMaxItemsInDistanceCollection": 7,
|
||||
"DateGroup": "c9dbce3b",
|
||||
"DeletePossibleDuplicates": true,
|
||||
"DistanceFactor": 8,
|
||||
"DistanceMoveUnableToMatch": true,
|
||||
"DistancePixelDistanceTolerance": 1,
|
||||
"DistanceRenameToMatch": true,
|
||||
"EyeThreshold": 2147483647,
|
||||
"EyeThresholdXX": 33,
|
||||
"FaceAreaPermyriad": 10000,
|
||||
"FaceConfidencePercent": 100,
|
||||
"FaceDistanceHiddenImageFactor": 3,
|
||||
"FaceDistanceHiddenImageFactorX": 2,
|
||||
"FaceDistancePermyriad": 10000,
|
||||
"FileNameDirectorySeparator": ".Z.",
|
||||
"FocusDirectory": "",
|
||||
"FocusDirectoryXX": "/Hawaii 2022",
|
||||
"FocusModel": "",
|
||||
"FocusModelXX": "NIKON D3400",
|
||||
"ForceFaceLastWriteTimeToCreationTime": false,
|
||||
"ForceMetadataLastWriteTimeToCreationTime": false,
|
||||
"ForcePropertyLastWriteTimeToCreationTime": false,
|
||||
"ForceResizeLastWriteTimeToCreationTime": false,
|
||||
"GenealogicalDataCommunicationFile": "D:/1-Images-A/Images-c9dbce3b-Results/A2)People/c9dbce3b/([])/File-Folder-Helper/638268289384407819/638268289384407819.ged",
|
||||
"GenealogicalDataCommunicationFileXX": "",
|
||||
"GenealogicalDataCommunicationFileXXX": "L:/Git/View-by-Distance-Test/Images-Results/A2)People/c9dbce3b/([])/New Text Document.txt",
|
||||
"IgnoreExtensions": [
|
||||
".gif",
|
||||
".GIF",
|
||||
".json",
|
||||
".JOSN",
|
||||
".txt",
|
||||
".TXT",
|
||||
".ico",
|
||||
".ICO"
|
||||
],
|
||||
"IgnoreRulesKeyWords": [
|
||||
"Collage",
|
||||
"Corrupt",
|
||||
"Indecent"
|
||||
],
|
||||
"ImmichAssetsFile": "D:/1-Images-A/Images-c9dbce3b-Results/F)Immich/c9dbce3b/{}/immich-assets.json",
|
||||
"IntMinValueLength": 11,
|
||||
"JLinks": [],
|
||||
"JLinksXX": [
|
||||
"Julie",
|
||||
"Mike Phares Jr"
|
||||
],
|
||||
"JLinksXXX": [
|
||||
"Adonias-Sylvia-0006",
|
||||
"Don-Trish-0058",
|
||||
"Janet-0015",
|
||||
"Josh-Kasey-0055",
|
||||
"John-Rozanna-0004",
|
||||
"Karen-0017",
|
||||
"Larry-Becky-0009",
|
||||
"Mark-Peggy-0021",
|
||||
"Melvin-Mary-0020",
|
||||
"Norman-Beverly-0003",
|
||||
"Quinn-Tricia-0026",
|
||||
"Wayne-Laurie-0012",
|
||||
"Calvin-Bonnie-0018",
|
||||
"Melvin-Ernestna-0065",
|
||||
"Jeff-Laurel-0025",
|
||||
"Gina-0024",
|
||||
"A-A-0000",
|
||||
"OneOff"
|
||||
],
|
||||
"LoadOrCreateThenSaveDistanceResultsForOutputResolutions": [
|
||||
"Original"
|
||||
],
|
||||
"LoadOrCreateThenSaveImageFacesResultsForOutputResolutions": [
|
||||
"Original"
|
||||
],
|
||||
"LoadPhotoPrismLocations": false,
|
||||
"LocationContainerDistanceTolerance": null,
|
||||
"LocationContainerDistanceToleranceXX": 0.6464,
|
||||
"LocationDigits": 9,
|
||||
"LocationFactor": 10000,
|
||||
"LookForAbandoned": false,
|
||||
"MappingDefaultName": "John Doe~25",
|
||||
"MappingUseDeterministicHashCodeUnknownFaceKeyValuePairsForAddToMapping": false,
|
||||
"MappingUseDeterministicHashCodeUnknownFaceKeyValuePairsForSaveMapping": false,
|
||||
"MaxImagesInDirectoryForTopLevelFirstPass": 10,
|
||||
"MixedYearRelativePaths": [
|
||||
"Edited",
|
||||
"Phares Slides",
|
||||
"Rex Memorial",
|
||||
"Scanned Grandma's Quilt",
|
||||
"Scanned Pictures Of Kids",
|
||||
"Scanned Prints",
|
||||
"Slide in Name Order Originals (622)",
|
||||
"Slides Pictures"
|
||||
],
|
||||
"ModelDirectory": "C:/GitHub/dlib-models",
|
||||
"ModelName": "Hog",
|
||||
"MoveToDecade": false,
|
||||
"NumberOfJitters": 0,
|
||||
"NumberOfTimesToUpsample": 0,
|
||||
"Offset": 1054000,
|
||||
"OffsetXX": 1000000,
|
||||
"OutputExtension": ".jpg",
|
||||
"OutputQuality": 95,
|
||||
"OutputResolutions": [
|
||||
"Original"
|
||||
],
|
||||
"OverrideForFaceImages": false,
|
||||
"OverrideForFaceLandmarkImages": false,
|
||||
"OverrideForResizeImages": false,
|
||||
"Pattern": "[^ABCDEFGHIJKLMNOPQRSTUVWXYZbcdfghjklmnpqrstvwxyz0-9]",
|
||||
"PersonBirthdayFirstYear": 1500,
|
||||
"PersonBirthdayFormat": "yyyy-MM-dd_HH",
|
||||
"PersonCharacters": "^!#+~",
|
||||
"PersonCharactersCopyCount": 0,
|
||||
"PersonCharactersCopyCountXX": 5,
|
||||
"PersonCharactersCopyCountXXX": 2147483647,
|
||||
"PersonCharactersX": "!#%]^_`~+=",
|
||||
"PersonCharactersXX": "^!#]~",
|
||||
"PersonKeyFormat": "yyyy-MM-dd_HH",
|
||||
"PopulatePropertyId": true,
|
||||
"PredictorModelName": "Large",
|
||||
"PropertiesChangedForDistance": false,
|
||||
"PropertiesChangedForFaces": false,
|
||||
"PropertiesChangedForIndex": false,
|
||||
"PropertiesChangedForMetadata": false,
|
||||
"PropertiesChangedForProperty": false,
|
||||
"PropertiesChangedForResize": false,
|
||||
"PropertyContentCollectionFiles": [],
|
||||
"RadomUseBirthdayMinimum": 100,
|
||||
"RangeDaysDeltaTolerance": [
|
||||
0,
|
||||
7000,
|
||||
7300
|
||||
],
|
||||
"RangeDistanceTolerance": [
|
||||
0,
|
||||
0.064,
|
||||
1.8
|
||||
],
|
||||
"RangeFaceAreaTolerance": [
|
||||
0,
|
||||
0.0001,
|
||||
1
|
||||
],
|
||||
"RangeFaceConfidence": [
|
||||
0,
|
||||
0.5,
|
||||
2.4
|
||||
],
|
||||
"RectangleIntersectMinimums": [
|
||||
0.94,
|
||||
0.99
|
||||
],
|
||||
"RectangleIntersectMinimumsXX": [
|
||||
0.000001
|
||||
],
|
||||
"ReMap": true,
|
||||
"ReMapXX": false,
|
||||
"ResultAllInOne": "_ _ _",
|
||||
"ResultAllInOneSubdirectoryLength": 2,
|
||||
"ResultCollection": "[]",
|
||||
"ResultContent": "()",
|
||||
"ResultSingleton": "{}",
|
||||
"Reverse": false,
|
||||
"RootDirectory": "D:/1-Images-A/Images-c9dbce3b",
|
||||
"RootDirectoryXX": "D:/Tmp/phares/Pictures",
|
||||
"RootDirectoryXXX": "D:/Tmp/Phares/Compare/Corrupt",
|
||||
"RootDirectoryXXXX": "D:/2-Images-B/Not-Copy-Copy-c9dbce3b",
|
||||
"RootDirectoryXXXXX": "D:/1-Images-A/Images-c9dbce3b/Facebook/2023.2 Facebook",
|
||||
"RootDirectoryXXXXXX": "L:/Git/View-by-Distance-Test/Images",
|
||||
"SaveFaceDistancesForOutputResolutions": [
|
||||
"Original"
|
||||
],
|
||||
"SaveFaceLandmarkForOutputResolutions": [],
|
||||
"SaveFilteredOriginalImagesFromJLinksForOutputResolutions": [],
|
||||
"SaveFullYearOfRandomFiles": true,
|
||||
"SaveIndividually": false,
|
||||
"SaveIndividuallyXX": true,
|
||||
"SaveMappedForOutputResolutions": [],
|
||||
"SavePropertyShortcutsForOutputResolutions": [],
|
||||
"SaveRandomForOutputResolutions": [],
|
||||
"SaveResizedSubFiles": true,
|
||||
"SaveShortcutsForOutputResolutions": [],
|
||||
"SaveSortingWithoutPerson": false,
|
||||
"SaveSortingWithoutPersonXX": true,
|
||||
"SkipNotSkipDirectories": [],
|
||||
"SkipNotSkipDirectoriesXX": [
|
||||
"/!/_ Images-To-Do",
|
||||
"/!/_ Test",
|
||||
"/!/Disney",
|
||||
"/!/Chelsea's Friends",
|
||||
"/!/Jason's Friends",
|
||||
"/!/Johnny's Friends",
|
||||
"/!/Julie's Friends",
|
||||
"/!/Kristy's Family",
|
||||
"/!/Kristy's Friends",
|
||||
"/!/Logan Friends",
|
||||
"/!/Mackenzie Friends",
|
||||
"/!/Mike's Family",
|
||||
"/!/Mike's Friends",
|
||||
"/!/Statue",
|
||||
"/!/Tracy's Friend",
|
||||
"/!/WaX"
|
||||
],
|
||||
"SkipOlderThanDays": null,
|
||||
"SkipOlderThanDaysXX": 2200,
|
||||
"SkipPersonWithMoreThen": null,
|
||||
"SkipPersonWithMoreThenXX": 15,
|
||||
"SkipSearch": false,
|
||||
"SortingMaximumPerFaceShouldBeHigh": 3000,
|
||||
"SortingMaximumPerKey": 7,
|
||||
"SortingMinimumToUseSigma": 10,
|
||||
"TestDistanceResults": true,
|
||||
"UseFilterTries": 0,
|
||||
"ValidImageFormatExtensions": [
|
||||
".bmp",
|
||||
".BMP",
|
||||
".gif",
|
||||
".GIF",
|
||||
".jpeg",
|
||||
".JPEG",
|
||||
".jpg",
|
||||
".JPG",
|
||||
".png",
|
||||
".PNG",
|
||||
".tiff",
|
||||
".TIFF",
|
||||
".tif",
|
||||
".TIF"
|
||||
],
|
||||
"ValidKeyWordsToIgnoreInRandom": [
|
||||
"Blurry",
|
||||
"Collage",
|
||||
"Corrupt",
|
||||
"Development",
|
||||
"Duplicate",
|
||||
"Ex-spouse",
|
||||
"Indecent",
|
||||
"Infineon",
|
||||
"Irrelevant",
|
||||
"Review",
|
||||
"Slideshow",
|
||||
"SUMCO"
|
||||
],
|
||||
"ValidResolutions": [
|
||||
"Original",
|
||||
"176 x 176",
|
||||
"256 x 256",
|
||||
"353 x 353",
|
||||
"1024 x 768",
|
||||
"1280 x 720",
|
||||
"1280 x 800",
|
||||
"1376 x 768",
|
||||
"1600 x 1200",
|
||||
"1920 x 1080",
|
||||
"2256 x 1496",
|
||||
"3840 x 2160",
|
||||
"7680 x 4320"
|
||||
],
|
||||
"VerifyToSeason": []
|
||||
}
|
||||
},
|
||||
"WorkingDirectoryName": "PharesApps"
|
||||
}
|
239
ead2e5ee-5f40-4151-bdb6-31d630d94f28/secrets.json
Normal file
239
ead2e5ee-5f40-4151-bdb6-31d630d94f28/secrets.json
Normal file
@ -0,0 +1,239 @@
|
||||
{
|
||||
"_Application": "Delete-By-Relative",
|
||||
"_UserSecretsId": "ead2e5ee-5f40-4151-bdb6-31d630d94f28",
|
||||
"CompareRootDirectory": "D:/7-Question/Takeout/Google Photos",
|
||||
"MaxDegreeOfParallelism": 6,
|
||||
"Windows": {
|
||||
"Configuration": {
|
||||
"xRootDirectory": "D:/2-Images-B/Corrupt",
|
||||
"RootDirectory": "D:/1-Images-A/Images-c9dbce3b",
|
||||
"xxxRootDirectory": "E:/3-Videos-A/Device Videos 2_0_0_3 - Current",
|
||||
"xxxxRootDirectory": "E:/4-Videos-B/Device Videos 2_0_0_3 - Current - Ignore",
|
||||
"xxxxxRootDirectory": "C:/1-Images-A/Images-c9dbce3b",
|
||||
"VerifyToSeason": [
|
||||
". 2000",
|
||||
". 2001",
|
||||
". 2002",
|
||||
". 2003",
|
||||
". 2004",
|
||||
". 2005",
|
||||
". 2006",
|
||||
". 2007",
|
||||
". 2008",
|
||||
". 2009",
|
||||
". 2010",
|
||||
". 2011",
|
||||
". 2012",
|
||||
". 2013",
|
||||
". 2014",
|
||||
". 2015",
|
||||
". 2016",
|
||||
". 2017",
|
||||
". 2018",
|
||||
". 2019",
|
||||
". 2020",
|
||||
". 2021",
|
||||
". 2022",
|
||||
". 2023",
|
||||
". 2024",
|
||||
". 2025",
|
||||
". 2026",
|
||||
". 2027",
|
||||
". 2028",
|
||||
". 2029",
|
||||
"2000.0 Winter",
|
||||
"2002.1 Spring",
|
||||
"2002.4 Winter",
|
||||
"2003.0 Winter",
|
||||
"2003.1 Spring",
|
||||
"2003.3 Fall",
|
||||
"2003.4 Winter",
|
||||
"2004.0 Winter",
|
||||
"2005.1 Spring",
|
||||
"2005.2 Summer",
|
||||
"2005.3 Fall",
|
||||
"2005.4 Winter",
|
||||
"2006.0 Winter",
|
||||
"2006.1 Spring",
|
||||
"2006.3 Fall",
|
||||
"2007.0 Winter",
|
||||
"2007.2 Summer Logan Michael",
|
||||
"2007.2 Summer",
|
||||
"2007.3 Fall Logan Michael",
|
||||
"2007.4 Winter Logan Michael",
|
||||
"2008.0 Winter Logan Michael",
|
||||
"2008.1 Spring Logan Michael",
|
||||
"2008.2 Summer Logan Michael",
|
||||
"2008.2 Summer",
|
||||
"2008.3 Fall Logan Michael",
|
||||
"2009.0 Winter Logan Michael",
|
||||
"2009.0 Winter",
|
||||
"2009.1 Spring Logan Michael",
|
||||
"2009.1 Spring",
|
||||
"2009.2 Summer Logan Michael",
|
||||
"2009.2 Summer",
|
||||
"2009.3 Fall Logan Michael",
|
||||
"2009.3 Fall",
|
||||
"2009.4 Winter Logan Michael",
|
||||
"2009.4 Winter",
|
||||
"2010.0 Winter Logan Michael",
|
||||
"2010.0 Winter",
|
||||
"2010.1 Spring Logan Michael",
|
||||
"2010.1 Spring",
|
||||
"2010.2 Summer",
|
||||
"2010.3 Fall Logan Michael",
|
||||
"2010.3 Fall",
|
||||
"2010.4 Winter",
|
||||
"2011.0 Winter",
|
||||
"2011.1 Spring",
|
||||
"2011.2 Summer",
|
||||
"2011.3 Fall",
|
||||
"2011.4 Winter",
|
||||
"2012.0 Winter Chelsea 2012",
|
||||
"2012.0 Winter Chelsea",
|
||||
"2012.0 Winter",
|
||||
"2012.1 Spring Chelsea",
|
||||
"2012.1 Spring",
|
||||
"2012.2 Summer Chelsea",
|
||||
"2012.2 Summer",
|
||||
"2012.3 Fall Chelsea",
|
||||
"2012.3 Fall",
|
||||
"2012.4 Winter Chelsea",
|
||||
"2012.4 Winter",
|
||||
"2013.0 Winter Chelsea 2013",
|
||||
"2013.0 Winter Chelsea",
|
||||
"2013.0 Winter",
|
||||
"2013.1 Spring",
|
||||
"2013.2 Summer Chelsea",
|
||||
"2013.2 Summer",
|
||||
"2013.3 Fall Chelsea",
|
||||
"2013.3 Fall",
|
||||
"2013.4 Winter",
|
||||
"2014.0 Winter",
|
||||
"2014.1 Spring",
|
||||
"2014.2 Summer",
|
||||
"2014.3 Fall",
|
||||
"2014.4 Winter",
|
||||
"2015.0 Winter",
|
||||
"2015.1 Spring",
|
||||
"2015.2 Summer",
|
||||
"2015.3 Fall",
|
||||
"2015.4 Winter",
|
||||
"2016.0 Winter",
|
||||
"2016.1 Spring",
|
||||
"2016.2 Summer",
|
||||
"2016.3 Fall",
|
||||
"2016.4 Winter",
|
||||
"2017.1 Spring",
|
||||
"2017.2 Summer",
|
||||
"2017.3 Fall",
|
||||
"2017.4 Winter",
|
||||
"2018.0 Winter",
|
||||
"2018.1 Spring",
|
||||
"2018.3 Fall",
|
||||
"2018.4 Winter",
|
||||
"2019.0 Winter",
|
||||
"2019.1 Spring",
|
||||
"2019.2 Summer",
|
||||
"2019.3 Fall",
|
||||
"2019.4 Winter",
|
||||
"2020.0 Winter",
|
||||
"2020.1 Spring",
|
||||
"2020.2 Summer",
|
||||
"2020.3 Fall",
|
||||
"2020.4 Winter",
|
||||
"2021.1 Spring",
|
||||
"2021.2 Summer",
|
||||
"2021.3 Fall",
|
||||
"2021.4 Winter",
|
||||
"2022.0 Winter",
|
||||
"2022.1 Spring",
|
||||
"Anthem 2015",
|
||||
"April 2010",
|
||||
"April 2013",
|
||||
"December 2006",
|
||||
"December 2010",
|
||||
"Fall 2005",
|
||||
"Fall 2015",
|
||||
"Fall 2016",
|
||||
"Fall 2017",
|
||||
"Fall 2018",
|
||||
"Fall 2019",
|
||||
"Fall 2020",
|
||||
"Fall 2021",
|
||||
"February 2010",
|
||||
"January 2015",
|
||||
"July 2010",
|
||||
"June 2010",
|
||||
"Kids 2005",
|
||||
"March 2013",
|
||||
"May 2010",
|
||||
"May 2011",
|
||||
"May 2013",
|
||||
"October 2005",
|
||||
"October 2014",
|
||||
"Spring 2013",
|
||||
"Spring 2014",
|
||||
"Spring 2016",
|
||||
"Spring 2018",
|
||||
"Spring 2019",
|
||||
"Spring 2020",
|
||||
"Summer 2011",
|
||||
"Summer 2012",
|
||||
"Summer 2013",
|
||||
"Summer 2014",
|
||||
"Summer 2015",
|
||||
"Summer 2016",
|
||||
"Summer 2017",
|
||||
"Summer 2018",
|
||||
"Summer 2020",
|
||||
"Summer 2021",
|
||||
"Winter 2015",
|
||||
"Winter 2016",
|
||||
"Winter 2017",
|
||||
"Winter 2018",
|
||||
"Winter 2019-2020",
|
||||
"Winter 2020",
|
||||
"zzz 2005.0 Winter Tracy Pictures",
|
||||
"zzz 2005.1 Spring Tracy Pictures",
|
||||
"zzz 2005.2 Summer Tracy Pictures",
|
||||
"zzz 2005.3 Fall Tracy Pictures",
|
||||
"zzz 2005.4 Winter Tracy Pictures",
|
||||
"zzz 2006.1 Spring Tracy Pictures",
|
||||
"zzz 2007.0 Winter Tracy Pictures",
|
||||
"zzz 2007.2 Summer Tracy Pictures",
|
||||
"zzz 2008.0 Winter Tracy Pictures",
|
||||
"zzz 2008.2 Summer Tracy Pictures",
|
||||
"zzz 2009.0 Winter Tracy Pictures",
|
||||
"zzz 2009.2 Summer Tracy Pictures",
|
||||
"zzz 2009.3 Fall Tracy Pictures",
|
||||
"zzz 2009.4 Winter Tracy Pictures",
|
||||
"zzz 2010.0 Winter Tracy Pictures",
|
||||
"zzz 2010.1 Spring Tracy Pictures",
|
||||
"zzz 2010.2 Summer Tracy Pictures",
|
||||
"zzz 2010.3 Fall Tracy Pictures",
|
||||
"zzz 2011.0 Winter Tracy Pictures",
|
||||
"zzz 2011.1 Spring Tracy Pictures",
|
||||
"zzz 2011.2 Summer Tracy Pictures",
|
||||
"zzz 2011.3 Fall Tracy Pictures",
|
||||
"zzz 2011.4 Winter Tracy Pictures",
|
||||
"zzz 2012.0 Winter Tracy Pictures",
|
||||
"zzz 2012.1 Spring Tracy Pictures",
|
||||
"zzz 2012.2 Summer Tracy Pictures",
|
||||
"zzz 2012.3 Fall Tracy Pictures",
|
||||
"zzz 2012.4 Winter Tracy Pictures",
|
||||
"zzz 2013.0 Winter Tracy Pictures",
|
||||
"zzz 2013.1 Spring Tracy Pictures",
|
||||
"zzz 2013.2 Summer Tracy Pictures",
|
||||
"zzz 2013.3 Fall Tracy Pictures",
|
||||
"zzz 2013.4 Winter Tracy Pictures",
|
||||
"zzz 2014.0 Winter Tracy Pictures",
|
||||
"zzz 2014.1 Spring Tracy Pictures",
|
||||
"zzz 2014.2 Summer Tracy Pictures",
|
||||
"zzz 2014.3 Fall Tracy Pictures",
|
||||
"zzz 2014.4 Winter Tracy Pictures",
|
||||
"zzz 2015.0 Winter Tracy Pictures"
|
||||
]
|
||||
}
|
||||
}
|
||||
}
|
446
eb9e8f58-fcb5-45bb-9d4d-54f064c485b1/secrets.json
Normal file
446
eb9e8f58-fcb5-45bb-9d4d-54f064c485b1/secrets.json
Normal file
@ -0,0 +1,446 @@
|
||||
{
|
||||
"_Application": "File-Folder-Helper",
|
||||
"_UserSecretsId": "eb9e8f58-fcb5-45bb-9d4d-54f064c485b1",
|
||||
"_ZzzPre": "WindowsShortcutFactory",
|
||||
"asdf": "54f064c485b1",
|
||||
"BuildNumber": "1234",
|
||||
"Company": "Infineon Technologies Americas Corp.",
|
||||
"DefaultNoteType": "note",
|
||||
"ExcludeDirectoryNames:0": "node_modules",
|
||||
"ExcludeDirectoryNames:1": "templates",
|
||||
"ExcludeSchemes:0": "http:",
|
||||
"ExcludeSchemes:1": "https:",
|
||||
"ExcludeSchemes:4": "mailto:",
|
||||
"ExcludeSchemes:5": "onenote:",
|
||||
"ExcludeSchemes:6": "rdp:",
|
||||
"ExcludeSchemes:7": "tcp:",
|
||||
"ExcludeSchemes:8": "\\\\",
|
||||
"GitCommitSeven": "asdf",
|
||||
"Logging:Console:FormatterName": "simple",
|
||||
"Logging:Console:FormatterOptions:IncludeScopes": "True",
|
||||
"Logging:Console:FormatterOptions:SingleLine": "True",
|
||||
"Logging:Console:FormatterOptions:TimestampFormat": "HH:mm:ss ",
|
||||
"Logging:Console:FormatterOptions:UseUtcTimestamp": "True",
|
||||
"Logging:Console:LogLevel:Default": "Information",
|
||||
"Logging:Console:LogLevel:Microsoft": "Warning",
|
||||
"Logging:Console:LogLevel:Microsoft.Hosting.Lifetime": "Information",
|
||||
"Logging:Debug:FormatterName": "simple",
|
||||
"Logging:Debug:FormatterOptions:IncludeScopes": "True",
|
||||
"Logging:Debug:FormatterOptions:SingleLine": "True",
|
||||
"Logging:Debug:FormatterOptions:TimestampFormat": "HH:mm:ss ",
|
||||
"Logging:Debug:FormatterOptions:UseUtcTimestamp": "True",
|
||||
"Logging:Debug:LogLevel:Default": "Warning",
|
||||
"Logging:Debug:LogLevel:Microsoft": "Information",
|
||||
"Logging:Debug:LogLevel:Microsoft.Hosting.Lifetime": "Debug",
|
||||
"Logging:EventLog:LogLevel:Default": "Warning",
|
||||
"Logging:EventSource:LogLevel:Default": "Warning",
|
||||
"Logging:LogLevel:Default": "Debug",
|
||||
"Logging:LogLevel:Microsoft": "Information",
|
||||
"Logging:LogLevel:Microsoft.Hosting.Lifetime": "Debug",
|
||||
"PersonBirthdayFormat": "yyyy-MM-dd_HH",
|
||||
"PersonCharacters": "^!#+~",
|
||||
"PersonTitleFilters": "MK",
|
||||
"Worker": {
|
||||
"A) Save (Top Directory Only)": {
|
||||
"args": [
|
||||
"s",
|
||||
"A",
|
||||
".kanbn/tasks"
|
||||
]
|
||||
},
|
||||
"B) Save (All Directories)": {
|
||||
"args": [
|
||||
"s",
|
||||
"B",
|
||||
".kanbn/tasks"
|
||||
]
|
||||
},
|
||||
"C) Clipboard (Top Directory Only)": {
|
||||
"args": [
|
||||
"s",
|
||||
"C",
|
||||
".kanbn/tasks"
|
||||
]
|
||||
},
|
||||
"D) Clipboard (All Directories)": {
|
||||
"args": [
|
||||
"s",
|
||||
"D",
|
||||
".kanbn/tasks"
|
||||
]
|
||||
},
|
||||
"E) Everything delete recursive": {
|
||||
"args": [
|
||||
"s",
|
||||
"E",
|
||||
".kanbn/tasks"
|
||||
]
|
||||
},
|
||||
"F) Find and delete all *.log.* files then empty directories": {
|
||||
"args": [
|
||||
"s",
|
||||
"F",
|
||||
"\\\\messv02ecc1.ec.local\\EC_EAFLog\\Staging\\_ Logs"
|
||||
]
|
||||
},
|
||||
"G) Genealogical Data Communication": {
|
||||
"args": [
|
||||
"s",
|
||||
"G",
|
||||
"D:/1-Images-A/Images-c9dbce3b-Results/A2)People/c9dbce3b/([])/File-Folder-Helper/638443643487798783",
|
||||
"-d",
|
||||
"D:/1-Images-A/Images-c9dbce3b-Results/A2)People/c9dbce3b/{2}"
|
||||
]
|
||||
},
|
||||
"H": {
|
||||
"args": [
|
||||
"s",
|
||||
"H",
|
||||
".kanbn/tasks"
|
||||
]
|
||||
},
|
||||
"I) Ignore case and rename files to lowercase": {
|
||||
"args": [
|
||||
"s",
|
||||
"I",
|
||||
".kanbn/tasks"
|
||||
]
|
||||
},
|
||||
"J) Set Date from Json Entry": {
|
||||
"args": [
|
||||
"s",
|
||||
"J",
|
||||
"L:/Verdaccio/storage"
|
||||
]
|
||||
},
|
||||
"K) Kanban support": {
|
||||
"args": [
|
||||
"s",
|
||||
"K",
|
||||
".kanbn/tasks"
|
||||
]
|
||||
},
|
||||
"L) Log Merge (APC Log [0-9(8)]_*.log)": {
|
||||
"args": [
|
||||
"s",
|
||||
"L",
|
||||
".kanbn/tasks"
|
||||
]
|
||||
},
|
||||
"M) Markdown Wiki Link Verification": {
|
||||
"args": [
|
||||
"s",
|
||||
"M",
|
||||
"L:/Git/Notes-Infineon/.Infineon",
|
||||
"-s",
|
||||
"L:/Git/Notes-Infineon/.Infineon/_-Review",
|
||||
"-d",
|
||||
"L:/Git/Notes-Infineon/.Infineon/.vscode/helper"
|
||||
]
|
||||
},
|
||||
"N) Create Note Files": {
|
||||
"args": [
|
||||
"s",
|
||||
"N",
|
||||
".kanbn/tasks"
|
||||
]
|
||||
},
|
||||
"O) Oracle tnsNames.ora": {
|
||||
"args": [
|
||||
"s",
|
||||
"O",
|
||||
"C:/programs",
|
||||
"-t",
|
||||
"C:/Users/MESPhares/AppData/Local/IFXApps/sqldeveloper/tnsnames.ora"
|
||||
]
|
||||
},
|
||||
"P) PDF parse": {
|
||||
"args": [
|
||||
"s",
|
||||
"P",
|
||||
"D:/Tmp/Source",
|
||||
"-d",
|
||||
"D:/Tmp/Destination",
|
||||
"-p",
|
||||
"K",
|
||||
"s",
|
||||
"P",
|
||||
"D:/Tmp/Source",
|
||||
"-d",
|
||||
"D:/Tmp/Destination",
|
||||
"-k",
|
||||
"Bin"
|
||||
]
|
||||
},
|
||||
"Q": {
|
||||
"args": [
|
||||
"s",
|
||||
"Q",
|
||||
".kanbn/tasks"
|
||||
]
|
||||
},
|
||||
"R) Rename to old, copy, delete old": {
|
||||
"args": [
|
||||
"s",
|
||||
"R",
|
||||
".kanbn/tasks"
|
||||
]
|
||||
},
|
||||
"S) Set Date from Zip Entry": {
|
||||
"args": [
|
||||
"s",
|
||||
"S",
|
||||
"L:/BaGet/packages"
|
||||
]
|
||||
},
|
||||
"T) *Ticks ~~Too long rename~~": {
|
||||
"args": [
|
||||
"s",
|
||||
"T",
|
||||
".kanbn/tasks"
|
||||
]
|
||||
},
|
||||
"U": {
|
||||
"args": [
|
||||
"s",
|
||||
"U",
|
||||
"Helpers"
|
||||
]
|
||||
},
|
||||
"V": {
|
||||
"args": [
|
||||
"s",
|
||||
"V",
|
||||
"Helpers"
|
||||
]
|
||||
},
|
||||
"W": {
|
||||
"args": [
|
||||
"s",
|
||||
"W",
|
||||
".kanbn/tasks"
|
||||
]
|
||||
},
|
||||
"X": {
|
||||
"Day-Helper-2023-Q4": {
|
||||
"Day-Helper-2023-12-12": {
|
||||
"args": [
|
||||
"s",
|
||||
"X",
|
||||
"D:/Tmp/Phares/Network",
|
||||
"Day-Helper-2023-12-12",
|
||||
"1*.json"
|
||||
]
|
||||
},
|
||||
"Day-Helper-2023-12-22": {
|
||||
"args": [
|
||||
"s",
|
||||
"X",
|
||||
"D:/7-Question/iCloud Photos 2024",
|
||||
"Day-Helper-2023-12-22",
|
||||
"*",
|
||||
"D:/1-Images-A/Images-4083e56a-Results/A)Property/4083e56a/{}/_ _ _",
|
||||
"*.json",
|
||||
"D:/1-Images-A/Images-4083e56a-Results/A2)People/4083e56a/{}",
|
||||
"*.gif",
|
||||
"D:/1-Images-A/Images-4083e56a-Results/B)Metadata/4083e56a/{}/_ _ _",
|
||||
"*.json",
|
||||
"D:/1-Images-A/Images-4083e56a-Results/C)Resize/4083e56a/1376 x 768/{}/_ _ _",
|
||||
"*.json",
|
||||
"D:/1-Images-A/Images-4083e56a-Results/C)Resize/4083e56a/1376 x 768/()/_ _ _",
|
||||
"*.png",
|
||||
"*.jpg",
|
||||
"D:/1-Images-A/Images-4083e56a-Results/C)Resize/4083e56a/Original/{}/_ _ _",
|
||||
"*.json",
|
||||
"D:/1-Images-A/Images-4083e56a-Results/C)Resize/4083e56a/Original/()/_ _ _",
|
||||
"*.png",
|
||||
"*.jpg",
|
||||
"D:/1-Images-A/Images-4083e56a-Results/C)Resize/4083e56a/Original/()/_-_-_",
|
||||
"*.tsv",
|
||||
"D:/1-Images-A/Images-4083e56a-Results/C2)BlurHasher/4083e56a/1376 x 768/{}/_ _ _",
|
||||
"*.csv",
|
||||
"!!!D:/1-Images-A/Images-4083e56a-Results/C2)BlurHasher/4083e56a/1376 x 768/()/_ _ _",
|
||||
"!!!*.png",
|
||||
"D:/1-Images-A/Images-4083e56a-Results/D)Face/4083e56a/Original/Original-Hog-Large-0-0/[]/_ _ _",
|
||||
"*.json",
|
||||
"D:/1-Images-A/Images-4083e56a-Results/D)Face/4083e56a/Original/Original-Hog-Large-0-0/()/_ _ _",
|
||||
"*.png",
|
||||
"*.gif",
|
||||
"D:/1-Images-A/Images-4083e56a-Results/E)Distance/4083e56a",
|
||||
"*.png",
|
||||
"D:/1-Images-A/Images-4083e56a--",
|
||||
"*.png",
|
||||
"*.jpg",
|
||||
"C:/3-Videos-A/Device-Videos-2_0_0_3-Current-Year/Have-Media-Created",
|
||||
"*",
|
||||
"C:/3-Videos-A/Device-Videos-2_0_0_3-Current-Year/Have-Wrong-Media-Created",
|
||||
"*"
|
||||
]
|
||||
}
|
||||
},
|
||||
"Day-Helper-2024-Q1": {
|
||||
"Day-Helper-2024-01-05": {
|
||||
"args": [
|
||||
"s",
|
||||
"X",
|
||||
"D:/Tmp/Phares/KeePass",
|
||||
"Day-Helper-2024-01-05",
|
||||
"*.xml",
|
||||
".json"
|
||||
]
|
||||
},
|
||||
"Day-Helper-2024-01-06": {
|
||||
"args": [
|
||||
"s",
|
||||
"X",
|
||||
"D:/Tmp/Phares/.TP-Link",
|
||||
"Day-Helper-2024-01-06",
|
||||
"*.txt",
|
||||
"1",
|
||||
"17",
|
||||
"- -",
|
||||
"DeviceName,MacAddress,IpAddress,RealTimeUpRate,RealTimeDownRate,RateOrInterface,DurationOrRate,SpeedLimitOrDuration",
|
||||
"IpAddress",
|
||||
"hosts.jsonl",
|
||||
"hosts.conf"
|
||||
]
|
||||
},
|
||||
"Day-Helper-2024-01-07": {
|
||||
"args": [
|
||||
"s",
|
||||
"X",
|
||||
"D:/1-Images-A/Images-c9dbce3b-Results",
|
||||
"Day-Helper-2024-01-07",
|
||||
"11",
|
||||
"D:/8-Move"
|
||||
]
|
||||
},
|
||||
"Day-Helper-2024-01-08": {
|
||||
"args": [
|
||||
"s",
|
||||
"X",
|
||||
"L:/DevOps/Mesa_FI/File-Folder-Helper",
|
||||
"Day-Helper-2024-01-08",
|
||||
"L:/DevOps/Mesa_FI/File-Folder-Helper/Day/2024-Q1"
|
||||
]
|
||||
},
|
||||
"Day-Helper-2024-01-27": {
|
||||
"args": [
|
||||
"s",
|
||||
"X",
|
||||
"D:/Tmp/Phares/.TP-Link",
|
||||
"Day-Helper-2024-01-27",
|
||||
"192.168.*.json",
|
||||
"host.conf"
|
||||
]
|
||||
},
|
||||
"Day-Helper-2024-01-29": {
|
||||
"args": [
|
||||
"s",
|
||||
"X",
|
||||
"\\\\oi-metrology-import-prod.mes.infineon.com\\APPS\\Metrology\\MET08RESIHGCV\\Source",
|
||||
"Day-Helper-2024-01-29",
|
||||
"*.json"
|
||||
]
|
||||
},
|
||||
"Day-Helper-2024-02-27": {
|
||||
"args": [
|
||||
"s",
|
||||
"X",
|
||||
"L:/DevOps/Mesa_FI/File-Folder-Helper/.vscode",
|
||||
"Day-Helper-2024-02-27",
|
||||
"event-b.json"
|
||||
]
|
||||
},
|
||||
"Day-Helper-2024-03-05": {
|
||||
"args": [
|
||||
"s",
|
||||
"X",
|
||||
"C:/hp",
|
||||
"Day-Helper-2024-03-05",
|
||||
"*.RsM*",
|
||||
"L:/Archive",
|
||||
"4"
|
||||
]
|
||||
},
|
||||
"Day-Helper-2024-03-07": {
|
||||
"args": [
|
||||
"s",
|
||||
"X",
|
||||
"L:/DevOps/Mesa_FI/OI-Metrology/Server/.vscode",
|
||||
"Day-Helper-2024-03-07",
|
||||
"*.html",
|
||||
"Part,Process,Test,USL,TAR,LSL,Last Entry,Last Alarm,Alarm,Subgroups,Mean"
|
||||
]
|
||||
},
|
||||
"Day-Helper-2024-04-03": {
|
||||
"args": [
|
||||
"s",
|
||||
"X",
|
||||
"L:/Git/Notes-Network/.Network/.vscode/helper",
|
||||
"Day-Helper-2024-04-03",
|
||||
"192.168.*.md",
|
||||
"192.168.0.11.md",
|
||||
"|Reserved IP Address|Device Name|Device Name|MAC Address|Count|MAC Address|Device Name|Segments|Connection Type|",
|
||||
"4",
|
||||
"XX-XX-XX-XX-XX-XX"
|
||||
]
|
||||
},
|
||||
"Day-Helper-2024-04-04": {
|
||||
"args": [
|
||||
"s",
|
||||
"X",
|
||||
"L:/DevOps/Mesa_FI/File-Folder-Helper/.vscode/Compass",
|
||||
"Day-Helper-2024-04-04",
|
||||
"^Dev (?<DeviceId>[0-9]{1,8}), (?<DeviceType>A[A-Z]{1}) (?<DeviceNumber>[0-9]{1,8}), present-value, (?<DescriptionName>[A-Za-z0-9-]+) (?<DescriptionTest>[^s]+)-(?<Frequency>[DWM]{1})-(?<Date>[0-9]{4}-[0-9]{2}-[0-9]{2})$",
|
||||
"8",
|
||||
"Dev *, A*, present-value, *-*-*-*-*.csv",
|
||||
"3",
|
||||
"1",
|
||||
"Dev 119, AI 1005, present-value, CAH-3 Humidity-D-2024-04-23.csv"
|
||||
]
|
||||
},
|
||||
"Day-Helper-2024-04-09": {
|
||||
"args": [
|
||||
"s",
|
||||
"X",
|
||||
"D:/Documents/Notes/EC-Documentation/server",
|
||||
"Day-Helper-2024-04-09",
|
||||
"*.md",
|
||||
"https://monout.auc.infineon.com",
|
||||
"/hour/1d/data.json?sys=zabbix:emea_win:",
|
||||
".infineon.com:vfs.fs.size[D:,total]",
|
||||
".infineon.com-vfs.fs.size[D:,total]",
|
||||
"6",
|
||||
"avg",
|
||||
"messa009,mesxs015,messa02ec,messa03ec,messa05ec,messa08ec,messa1005,messcec01,messd01ec,messnec01,messpec01,messt6501,messt6502,messv01ec,mestsa008,elsstec101,leosatec01,messa017ec,messa018ec,messtec101,messtec102,mestsa01ec,mestsa04ec,mestsv01ec,mesxsec011,mesxsec012,mesxsec013,mesxsec014,mesxvec031,mesxvec034,mesxvec035,leosataec21,loesapaec21,loesapaec22,mesirwfp001,messv02ech1,messv02ech2,isccvmd0af56899"
|
||||
]
|
||||
},
|
||||
"Day-Helper-2024-04-17": {
|
||||
"args": [
|
||||
"s",
|
||||
"X",
|
||||
"L:/DevOps/Mesa_FI/OpenInsight-Copy",
|
||||
"Day-Helper-2024-04-17",
|
||||
"run.bat"
|
||||
]
|
||||
}
|
||||
}
|
||||
},
|
||||
"Y) Zip file(s) by directory with file": {
|
||||
"args": [
|
||||
"s",
|
||||
"Y",
|
||||
".kanbn/tasks"
|
||||
]
|
||||
},
|
||||
"Z) Zip file(s) by date": {
|
||||
"args": [
|
||||
"s",
|
||||
"Z",
|
||||
".kanbn/tasks"
|
||||
]
|
||||
}
|
||||
},
|
||||
"WorkingDirectoryName": "IFXApps"
|
||||
}
|
295
ecbdc76d-6037-4046-86a4-1a7626a3d342/secrets.json
Normal file
295
ecbdc76d-6037-4046-86a4-1a7626a3d342/secrets.json
Normal file
@ -0,0 +1,295 @@
|
||||
{
|
||||
"_Application": "TestsWithFaceRecognitionDotNet",
|
||||
"_UserSecretsId": "ecbdc76d-6037-4046-86a4-1a7626a3d342",
|
||||
"Company": "Mike Phares",
|
||||
"LinuX": {},
|
||||
"Logging:LogLevel:Microsoft.Hosting.Lifetime": "Debug",
|
||||
"Logging:LogLevel:Microsoft": "Information",
|
||||
"Logging:LogLevel:Default": "Debug",
|
||||
"Logging:EventSource:LogLevel:Default": "Warning",
|
||||
"Logging:EventLog:LogLevel:Default": "Warning",
|
||||
"Logging:Debug:LogLevel:Microsoft.Hosting.Lifetime": "Debug",
|
||||
"Logging:Debug:LogLevel:Microsoft": "Information",
|
||||
"Logging:Debug:LogLevel:Default": "Warning",
|
||||
"Logging:Debug:FormatterOptions:UseUtcTimestamp": "True",
|
||||
"Logging:Debug:FormatterOptions:TimestampFormat": "HH:mm:ss ",
|
||||
"Logging:Debug:FormatterOptions:SingleLine": "True",
|
||||
"Logging:Debug:FormatterOptions:IncludeScopes": "True",
|
||||
"Logging:Debug:FormatterName": "simple",
|
||||
"Logging:Console:LogLevel:Microsoft.Hosting.Lifetime": "Information",
|
||||
"Logging:Console:LogLevel:Microsoft": "Warning",
|
||||
"Logging:Console:LogLevel:Default": "Information",
|
||||
"Logging:Console:FormatterOptions:UseUtcTimestamp": "True",
|
||||
"Logging:Console:FormatterOptions:TimestampFormat": "HH:mm:ss ",
|
||||
"Logging:Console:FormatterOptions:SingleLine": "True",
|
||||
"Logging:Console:FormatterOptions:IncludeScopes": "True",
|
||||
"Logging:Console:FormatterName": "simple",
|
||||
"MaxDegreeOfParallelism": 6,
|
||||
"Windows": {
|
||||
"Configuration": {
|
||||
"CheckDFaceAndUpWriteDates": false,
|
||||
"CheckJsonForDistanceResults": false,
|
||||
"CopyFacesAndSaveFaceLandmarkForOutputResolutions": [],
|
||||
"CrossDirectoryMaxItemsInDistanceCollection": 7,
|
||||
"DateGroup": "c9dbce3b",
|
||||
"DeletePossibleDuplicates": true,
|
||||
"DistanceFactor": 8,
|
||||
"DistanceMoveUnableToMatch": true,
|
||||
"DistancePixelDistanceTolerance": 1,
|
||||
"DistanceRenameToMatch": true,
|
||||
"EyeThreshold": 2147483647,
|
||||
"FaceAreaPermyriad": 10000,
|
||||
"FaceConfidencePercent": 100,
|
||||
"FaceDistanceHiddenImageFactor": 3,
|
||||
"FaceDistancePermyriad": 10000,
|
||||
"FileNameDirectorySeparator": ".Z.",
|
||||
"FocusDirectory": "",
|
||||
"FocusModel": "",
|
||||
"ForceFaceLastWriteTimeToCreationTime": false,
|
||||
"ForceMetadataLastWriteTimeToCreationTime": false,
|
||||
"ForcePropertyLastWriteTimeToCreationTime": false,
|
||||
"ForceResizeLastWriteTimeToCreationTime": false,
|
||||
"GenealogicalDataCommunicationFile": "D:/1-Images-A/Images-c9dbce3b-Results/A2)People/c9dbce3b/([])/File-Folder-Helper/638268289384407819/638268289384407819.ged",
|
||||
"IgnoreExtensions": [
|
||||
".gif",
|
||||
".GIF",
|
||||
".json",
|
||||
".JOSN",
|
||||
".txt",
|
||||
".TXT",
|
||||
".ico",
|
||||
".ICO"
|
||||
],
|
||||
"IgnoreRulesKeyWords": [
|
||||
"Collage",
|
||||
"Corrupt",
|
||||
"Indecent"
|
||||
],
|
||||
"IntMinValueLength": 11,
|
||||
"JLinks": [],
|
||||
"LoadOrCreateThenSaveDistanceResultsForOutputResolutions": [
|
||||
"Original"
|
||||
],
|
||||
"LoadOrCreateThenSaveImageFacesResultsForOutputResolutions": [
|
||||
"Original"
|
||||
],
|
||||
"LoadPhotoPrismLocations": false,
|
||||
"LocationContainerDistanceTolerance": null,
|
||||
"LocationDigits": 9,
|
||||
"LocationFactor": 10000,
|
||||
"LookForAbandoned": false,
|
||||
"MappingDefaultName": "John Doe~25",
|
||||
"MappingUseDeterministicHashCodeUnknownFaceKeyValuePairsForAddToMapping": false,
|
||||
"MappingUseDeterministicHashCodeUnknownFaceKeyValuePairsForSaveMapping": false,
|
||||
"MaxImagesInDirectoryForTopLevelFirstPass": 10,
|
||||
"MixedYearRelativePaths": [
|
||||
"Edited",
|
||||
"Phares Slides",
|
||||
"Rex Memorial",
|
||||
"Scanned Grandma's Quilt",
|
||||
"Scanned Pictures Of Kids",
|
||||
"Scanned Prints",
|
||||
"Slide in Name Order Originals (622)",
|
||||
"Slides Pictures"
|
||||
],
|
||||
"ModelDirectory": "C:/GitHub/dlib-models",
|
||||
"ModelName": "Hog",
|
||||
"MoveToDecade": false,
|
||||
"NumberOfJitters": 0,
|
||||
"NumberOfTimesToUpsample": 0,
|
||||
"OffsetX": 1000000,
|
||||
"Offset": 1054000,
|
||||
"OutputExtension": ".jpg",
|
||||
"OutputQuality": 95,
|
||||
"OutputResolutions": [
|
||||
"Original"
|
||||
],
|
||||
"OverrideForFaceImages": false,
|
||||
"OverrideForFaceLandmarkImages": false,
|
||||
"OverrideForResizeImages": false,
|
||||
"Pattern": "[^ABCDEFGHIJKLMNOPQRSTUVWXYZbcdfghjklmnpqrstvwxyz0-9]",
|
||||
"PersonBirthdayFirstYear": 1500,
|
||||
"PersonBirthdayFormat": "yyyy-MM-dd_HH",
|
||||
"PersonCharacters": "^!#+~",
|
||||
"PersonCharactersCopyCount": 0,
|
||||
"PersonKeyFormat": "yyyy-MM-dd_HH",
|
||||
"PopulatePropertyId": true,
|
||||
"PredictorModelName": "Large",
|
||||
"PropertiesChangedForDistance": false,
|
||||
"PropertiesChangedForFaces": false,
|
||||
"PropertiesChangedForIndeX": false,
|
||||
"PropertiesChangedForMetadata": false,
|
||||
"PropertiesChangedForProperty": false,
|
||||
"PropertiesChangedForResize": false,
|
||||
"PropertyContentCollectionFiles": [],
|
||||
"RadomUseBirthdayMinimum": 100,
|
||||
"RangeDaysDeltaTolerance": [
|
||||
0,
|
||||
7000,
|
||||
7300
|
||||
],
|
||||
"RangeDistanceTolerance": [
|
||||
0,
|
||||
0.064,
|
||||
1.8
|
||||
],
|
||||
"RangeFaceAreaTolerance": [
|
||||
0,
|
||||
0.0001,
|
||||
1
|
||||
],
|
||||
"RangeFaceConfidence": [
|
||||
0,
|
||||
0.5,
|
||||
2.4
|
||||
],
|
||||
"RectangleIntersectMinimums": [
|
||||
0.94,
|
||||
0.99
|
||||
],
|
||||
"ReMap": true,
|
||||
"ResultAllInOne": "_ _ _",
|
||||
"ResultAllInOneSubdirectoryLength": 2,
|
||||
"ResultCollection": "[]",
|
||||
"ResultContent": "()",
|
||||
"ResultSingleton": "{}",
|
||||
"Reverse": false,
|
||||
"RootDirectory": "D:/1-Images-A/Images-c9dbce3b",
|
||||
"SaveFaceDistancesForOutputResolutions": [
|
||||
"Original"
|
||||
],
|
||||
"SaveFaceLandmarkForOutputResolutions": [],
|
||||
"SaveFilteredOriginalImagesFromJLinksForOutputResolutions": [],
|
||||
"SaveFullYearOfRandomFiles": true,
|
||||
"SaveIndividually": false,
|
||||
"SaveMappedForOutputResolutions": [],
|
||||
"SavePropertyShortcutsForOutputResolutions": [],
|
||||
"SaveRandomForOutputResolutions": [],
|
||||
"SaveResizedSubFiles": true,
|
||||
"SaveShortcutsForOutputResolutions": [],
|
||||
"SaveSortingWithoutPerson": false,
|
||||
"SkipNotSkipDirectories": [],
|
||||
"SkipOlderThanDays": null,
|
||||
"SkipPersonWithMoreThen": null,
|
||||
"SkipSearch": false,
|
||||
"SortingMaximumPerFaceShouldBeHigh": 3000,
|
||||
"SortingMaximumPerKey": 7,
|
||||
"SortingMinimumToUseSigma": 10,
|
||||
"TestDistanceResults": true,
|
||||
"UseFilterTries": 0,
|
||||
"ValidImageFormatExtensions": [
|
||||
".bmp",
|
||||
".BMP",
|
||||
".gif",
|
||||
".GIF",
|
||||
".jpeg",
|
||||
".JPEG",
|
||||
".jpg",
|
||||
".JPG",
|
||||
".png",
|
||||
".PNG",
|
||||
".tiff",
|
||||
".TIFF",
|
||||
".tif",
|
||||
".TIF"
|
||||
],
|
||||
"ValidKeyWordsToIgnoreInRandom": [
|
||||
"Blurry",
|
||||
"Collage",
|
||||
"Corrupt",
|
||||
"Development",
|
||||
"Duplicate",
|
||||
"Ex-spouse",
|
||||
"Indecent",
|
||||
"Infineon",
|
||||
"Irrelevant",
|
||||
"Review",
|
||||
"Slideshow",
|
||||
"SUMCO"
|
||||
],
|
||||
"ValidResolutions": [
|
||||
"Original",
|
||||
"176 x 176",
|
||||
"256 x 256",
|
||||
"353 x 353",
|
||||
"1024 x 768",
|
||||
"1280 x 720",
|
||||
"1280 x 800",
|
||||
"1376 x 768",
|
||||
"1600 x 1200",
|
||||
"1920 x 1080",
|
||||
"2256 x 1496",
|
||||
"3840 x 2160",
|
||||
"7680 x 4320"
|
||||
],
|
||||
"VerifyToSeason": [],
|
||||
"xEyeThreshold": 33,
|
||||
"xFaceDistanceHiddenImageFactor": 2,
|
||||
"xFocusDirectory": "/Hawaii 2022",
|
||||
"xFocusModel": "NIKON D3400",
|
||||
"xGenealogicalDataCommunicationFile": "",
|
||||
"xJLinks": [
|
||||
"Julie",
|
||||
"Mike Phares Jr"
|
||||
],
|
||||
"xLocationContainerDistanceTolerance": 0.6464,
|
||||
"xPersonCharacters": "!#%]^_`~+=",
|
||||
"xPersonCharactersCopyCount": 5,
|
||||
"xRectangleIntersectMinimums": [
|
||||
0.000001
|
||||
],
|
||||
"xReMap": false,
|
||||
"xRootDirectory": "D:/Tmp/phares/Pictures",
|
||||
"xSaveIndividually": true,
|
||||
"xSaveSortingWithoutPerson": true,
|
||||
"xSkipNotSkipDirectories": [
|
||||
"/!/_ Images-To-Do",
|
||||
"/!/_ Test",
|
||||
"/!/Disney",
|
||||
"/!/Chelsea's Friends",
|
||||
"/!/Jason's Friends",
|
||||
"/!/Johnny's Friends",
|
||||
"/!/Julie's Friends",
|
||||
"/!/Kristy's Family",
|
||||
"/!/Kristy's Friends",
|
||||
"/!/Logan Friends",
|
||||
"/!/Mackenzie Friends",
|
||||
"/!/Mike's Family",
|
||||
"/!/Mike's Friends",
|
||||
"/!/Statue",
|
||||
"/!/Tracy's Friend",
|
||||
"/!/WaX"
|
||||
],
|
||||
"xSkipOlderThanDays": 2200,
|
||||
"xSkipPersonWithMoreThen": 15,
|
||||
"xxGenealogicalDataCommunicationFile": "L:/Git/View-by-Distance-Test/Images-Results/A2)People/c9dbce3b/([])/New Text Document.txt",
|
||||
"xxJLinks": [
|
||||
"Adonias-Sylvia-0006",
|
||||
"Don-Trish-0058",
|
||||
"Janet-0015",
|
||||
"Josh-Kasey-0055",
|
||||
"John-Rozanna-0004",
|
||||
"Karen-0017",
|
||||
"Larry-Becky-0009",
|
||||
"Mark-Peggy-0021",
|
||||
"Melvin-Mary-0020",
|
||||
"Norman-Beverly-0003",
|
||||
"Quinn-Tricia-0026",
|
||||
"Wayne-Laurie-0012",
|
||||
"Calvin-Bonnie-0018",
|
||||
"Melvin-Ernestna-0065",
|
||||
"Jeff-Laurel-0025",
|
||||
"Gina-0024",
|
||||
"A-A-0000",
|
||||
"OneOff"
|
||||
],
|
||||
"xxPersonCharacters": "^!#]~",
|
||||
"xxPersonCharactersCopyCount": 2147483647,
|
||||
"xxRootDirectory": "D:/Tmp/Phares/Compare/Corrupt",
|
||||
"xxxRootDirectory": "D:/2-Images-B/Not-Copy-Copy-c9dbce3b",
|
||||
"xxxxRootDirectory": "D:/1-Images-A/Images-c9dbce3b/Facebook/2023.2 Facebook",
|
||||
"xxxxxRootDirectory": "L:/Git/View-by-Distance-Test/Images"
|
||||
}
|
||||
},
|
||||
"WorkingDirectoryName": "PharesApps"
|
||||
}
|
21
f89b7242-dbb0-4349-b950-657eb8cf87ef/secrets.json
Normal file
21
f89b7242-dbb0-4349-b950-657eb8cf87ef/secrets.json
Normal file
@ -0,0 +1,21 @@
|
||||
{
|
||||
"_Application": "Metadata-Query",
|
||||
"_UserSecretsId": "6e026d2f-9edf-4c6c-a042-162758114e9a",
|
||||
"MaxDegreeOfParallelism": 1,
|
||||
"Windows": {
|
||||
"Configuration": {
|
||||
"xPopulatePropertyId": true,
|
||||
"PopulatePropertyId": false,
|
||||
"IgnoreRulesKeyWords": [
|
||||
"Collage",
|
||||
"Corrupt",
|
||||
"Indecent"
|
||||
],
|
||||
"IntMinValueLength": 11,
|
||||
"OffsetX": 1000000,
|
||||
"Offset": 1054000,
|
||||
"RootDirectory": "D:/1-Images-A/Images-c9dbce3b-Results/B)Metadata/c9dbce3b/{}",
|
||||
"VerifyToSeason": []
|
||||
}
|
||||
}
|
||||
}
|
14
fa06c6db-0226-42ca-8728-68b1e336184d/secrets.json
Normal file
14
fa06c6db-0226-42ca-8728-68b1e336184d/secrets.json
Normal file
@ -0,0 +1,14 @@
|
||||
{
|
||||
"_Application": "Mirror-Length",
|
||||
"_UserSecretsId": "fa06c6db-0226-42ca-8728-68b1e336184d",
|
||||
"Destination": "D",
|
||||
"MaxDegreeOfParallelism": 1,
|
||||
"Windows": {
|
||||
"Configuration": {
|
||||
"xPopulatePropertyId": true,
|
||||
"PopulatePropertyId": false,
|
||||
"RootDirectory": "D:/7-Question/- Scans 12.22 (2,043) 4 Renamed",
|
||||
"VerifyToSeason": []
|
||||
}
|
||||
}
|
||||
}
|
88
fa0fa59b-afe4-4960-9afc-18fcbc7fb41b/rename.json
Normal file
88
fa0fa59b-afe4-4960-9afc-18fcbc7fb41b/rename.json
Normal file
@ -0,0 +1,88 @@
|
||||
{
|
||||
"RenameConfiguration": {
|
||||
"DefaultMaker": "",
|
||||
"DefaultMakerXX": "Unknown",
|
||||
"ForceNewId": false,
|
||||
"ForceNewIdXX": true,
|
||||
"IgnoreExtensions": [
|
||||
".gif",
|
||||
".ffs_db",
|
||||
".json",
|
||||
".lnk",
|
||||
".nef",
|
||||
".pdf"
|
||||
],
|
||||
"InPlace": false,
|
||||
"InPlaceXX": true,
|
||||
"InPlaceWithOriginalName": false,
|
||||
"InPlaceWithOriginalNameXX": true,
|
||||
"MetadataConfiguration": {
|
||||
"ForceMetadataLastWriteTimeToCreationTime": false,
|
||||
"IgnoreRulesKeyWords": [
|
||||
"Collage",
|
||||
"Corrupt",
|
||||
"Indecent"
|
||||
],
|
||||
"IntMinValueLength": 11,
|
||||
"Offset": 9876543,
|
||||
"OffsetX": -1,
|
||||
"OffsetXX": 1000000,
|
||||
"OffsetXXX": 1048800,
|
||||
"OffsetXXXX": 1054050,
|
||||
"OffsetXXXXX": 1055000,
|
||||
"PropertiesChangedForMetadata": false,
|
||||
"ResultConfiguration": {
|
||||
"DateGroup": "c9dbce3b",
|
||||
"EpicYear": 2014,
|
||||
"ModelName": null,
|
||||
"PredictorModelName": null,
|
||||
"ResultAllInOneSubdirectoryLength": 2,
|
||||
"ResultCollection": "[]",
|
||||
"ResultContent": "()",
|
||||
"ResultSingleton": "{}",
|
||||
"RootDirectory": "D:/01-Offline-Backup/2-Images-B/Scans-2024-12-22-2043-ready-pull-tif/Scanned Jason's Album/Jason's Album (265)/_ Exists _",
|
||||
"RootDirectoryX": "D:/Images",
|
||||
"RootDirectoryXX": "D:/1-Images-A/Images-c9dbce3b",
|
||||
"RootDirectoryXXX": "D:/7-Question/iCloud Photos 2024",
|
||||
"RootDirectoryXXXX": "C:/1-Images-A/Images-c9dbce3b-b-Splat8",
|
||||
"RootDirectoryXXXXX": "D:/1-Images-A/Images-c9dbce3b-Results/Z)lnk-url",
|
||||
"RootDirectoryXXXXXX": "D:/1-Images-A/Images-c9dbce3b/Facebook/2023.2 Summer Facebook"
|
||||
}
|
||||
},
|
||||
"OnlySaveIdentifiersToDisk": false,
|
||||
"OnlySaveIdentifiersToDiskXX": true,
|
||||
"RelativePropertyCollectionFileX": "",
|
||||
"RelativePropertyCollectionFile": "D:/7-Question/.json",
|
||||
"SidecarExtensions": [
|
||||
".nef"
|
||||
],
|
||||
"SidecarExtensionsX": [
|
||||
".nef",
|
||||
".tif"
|
||||
],
|
||||
"SkipIdFiles": false,
|
||||
"ValidImageFormatExtensions": [
|
||||
".bmp",
|
||||
".gif",
|
||||
".heic",
|
||||
".jpeg",
|
||||
".jpg",
|
||||
".png",
|
||||
".tiff",
|
||||
".tif",
|
||||
".webp"
|
||||
],
|
||||
"ValidVideoFormatExtensions": [
|
||||
".3gp",
|
||||
".avi",
|
||||
".dvr-ms",
|
||||
".mkv",
|
||||
".mov",
|
||||
".mp4"
|
||||
]
|
||||
},
|
||||
"ZConfiguration": {
|
||||
"Pattern": "[^ABCDEFGHIJKLMNOPQRSTUVWXYZbcdfghjklmnpqrstvwxyz0-9]",
|
||||
"PersonBirthdayFormat": "yyyy-MM-dd_HH"
|
||||
}
|
||||
}
|
36
fa0fa59b-afe4-4960-9afc-18fcbc7fb41b/secrets.json
Normal file
36
fa0fa59b-afe4-4960-9afc-18fcbc7fb41b/secrets.json
Normal file
@ -0,0 +1,36 @@
|
||||
{
|
||||
"_Application": "Rename",
|
||||
"_UserSecretsId": "fa0fa59b-afe4-4960-9afc-18fcbc7fb41b",
|
||||
"ConfigurationDirectoryNames": [
|
||||
"Microsoft",
|
||||
"UserSecrets",
|
||||
"fa0fa59b-afe4-4960-9afc-18fcbc7fb41b"
|
||||
],
|
||||
"ConfigurationSpecialFolder": 26,
|
||||
"ConfigurationFileName": "rename.json",
|
||||
"Company": "Mike Phares",
|
||||
"Logging:Console:FormatterName": "simple",
|
||||
"Logging:Console:FormatterOptions:IncludeScopes": "True",
|
||||
"Logging:Console:FormatterOptions:SingleLine": "True",
|
||||
"Logging:Console:FormatterOptions:TimestampFormat": "HH:mm:ss ",
|
||||
"Logging:Console:FormatterOptions:UseUtcTimestamp": "True",
|
||||
"Logging:Console:LogLevel:Default": "Information",
|
||||
"Logging:Console:LogLevel:Microsoft": "Warning",
|
||||
"Logging:Console:LogLevel:Microsoft.Hosting.Lifetime": "Information",
|
||||
"Logging:Debug:FormatterName": "simple",
|
||||
"Logging:Debug:FormatterOptions:IncludeScopes": "True",
|
||||
"Logging:Debug:FormatterOptions:SingleLine": "True",
|
||||
"Logging:Debug:FormatterOptions:TimestampFormat": "HH:mm:ss ",
|
||||
"Logging:Debug:FormatterOptions:UseUtcTimestamp": "True",
|
||||
"Logging:Debug:LogLevel:Default": "Warning",
|
||||
"Logging:Debug:LogLevel:Microsoft": "Information",
|
||||
"Logging:Debug:LogLevel:Microsoft.Hosting.Lifetime": "Debug",
|
||||
"Logging:EventLog:LogLevel:Default": "Warning",
|
||||
"Logging:EventSource:LogLevel:Default": "Warning",
|
||||
"Logging:LogLevel:Default": "Debug",
|
||||
"Logging:LogLevel:Microsoft": "Information",
|
||||
"Logging:LogLevel:Microsoft.Hosting.Lifetime": "Debug",
|
||||
"MaxDegreeOfParallelism": 1,
|
||||
"MaxDegreeOfParallelismX": 6,
|
||||
"RequireRootDirectoryExists": false
|
||||
}
|
17
package.json
Normal file
17
package.json
Normal file
@ -0,0 +1,17 @@
|
||||
{
|
||||
"scripts": {
|
||||
"build:db": "netlify-db create public/admin person",
|
||||
"build:mddb": "mddb person",
|
||||
"prettier.check": "prettier . --check",
|
||||
"prettier.write": "prettier . --write",
|
||||
"kanbn.board": "kanbn board",
|
||||
"kanbn.board.json": "kanbn board -j > .kanbn/board.json",
|
||||
"garbage-collect": "git gc"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@flowershow/markdowndb": "^0.1.8",
|
||||
"netlify-db": "^0.0.2",
|
||||
"prettier": "3.0.0",
|
||||
"static-json-db": "^0.0.2"
|
||||
}
|
||||
}
|
Loading…
x
Reference in New Issue
Block a user