2024-06-03
This commit is contained in:
commit
ddbcfa9aea
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
|
11
.foam/templates/daily-note.md
Normal file
11
.foam/templates/daily-note.md
Normal file
@ -0,0 +1,11 @@
|
||||
---
|
||||
type: "daily-note"
|
||||
created: ${CURRENT_YEAR}-${CURRENT_MONTH}-${CURRENT_DATE}T${CURRENT_HOUR}:${CURRENT_MINUTE}:${CURRENT_SECOND}.000Z
|
||||
updated: ${CURRENT_YEAR}-${CURRENT_MONTH}-${CURRENT_DATE}T${CURRENT_HOUR}:${CURRENT_MINUTE}:${CURRENT_SECOND}.000Z
|
||||
foam_template:
|
||||
filepath: ".journal/$FOAM_DATE_YEAR/Week-$FOAM_DATE_WEEK/$FOAM_SLUG.md"
|
||||
---
|
||||
|
||||
# $FOAM_TITLE $CURRENT_DAY_NAME
|
||||
|
||||
- ${1:$FOAM_TITLE}
|
10
.foam/templates/new-kanbn.md
Normal file
10
.foam/templates/new-kanbn.md
Normal file
@ -0,0 +1,10 @@
|
||||
---
|
||||
type: "kanbn"
|
||||
created: ${CURRENT_YEAR}-${CURRENT_MONTH}-${CURRENT_DATE}T${CURRENT_HOUR}:${CURRENT_MINUTE}:${CURRENT_SECOND}.000Z
|
||||
updated: ${CURRENT_YEAR}-${CURRENT_MONTH}-${CURRENT_DATE}T${CURRENT_HOUR}:${CURRENT_MINUTE}:${CURRENT_SECOND}.000Z
|
||||
assigned: ""
|
||||
foam_template:
|
||||
filepath: ".kanbn/tasks/$FOAM_SLUG.md"
|
||||
---
|
||||
|
||||
# $FOAM_TITLE
|
9
.foam/templates/new-note.md
Normal file
9
.foam/templates/new-note.md
Normal file
@ -0,0 +1,9 @@
|
||||
---
|
||||
type: "basic-note"
|
||||
created: ${CURRENT_YEAR}-${CURRENT_MONTH}-${CURRENT_DATE}T${CURRENT_HOUR}:${CURRENT_MINUTE}:${CURRENT_SECOND}.000Z
|
||||
updated: ${CURRENT_YEAR}-${CURRENT_MONTH}-${CURRENT_DATE}T${CURRENT_HOUR}:${CURRENT_MINUTE}:${CURRENT_SECOND}.000Z
|
||||
foam_template:
|
||||
filepath: "_-Review/$FOAM_SLUG.md"
|
||||
---
|
||||
|
||||
# $FOAM_TITLE
|
9
.foam/templates/new-topic.md
Normal file
9
.foam/templates/new-topic.md
Normal file
@ -0,0 +1,9 @@
|
||||
---
|
||||
type: "topic"
|
||||
created: ${CURRENT_YEAR}-${CURRENT_MONTH}-${CURRENT_DATE}T${CURRENT_HOUR}:${CURRENT_MINUTE}:${CURRENT_SECOND}.000Z
|
||||
updated: ${CURRENT_YEAR}-${CURRENT_MONTH}-${CURRENT_DATE}T${CURRENT_HOUR}:${CURRENT_MINUTE}:${CURRENT_SECOND}.000Z
|
||||
foam_template:
|
||||
filepath: "_-Review/$FOAM_SLUG.md"
|
||||
---
|
||||
|
||||
# $FOAM_TITLE
|
11
.foam/templates/person.md
Normal file
11
.foam/templates/person.md
Normal file
@ -0,0 +1,11 @@
|
||||
---
|
||||
type: "person"
|
||||
created: "${CURRENT_YEAR}-${CURRENT_MONTH}-${CURRENT_DATE}T${CURRENT_HOUR}:${CURRENT_MINUTE}:${CURRENT_SECOND}.000Z"
|
||||
updated: "${CURRENT_YEAR}-${CURRENT_MONTH}-${CURRENT_DATE}T${CURRENT_HOUR}:${CURRENT_MINUTE}:${CURRENT_SECOND}.000Z"
|
||||
foam_template:
|
||||
filepath: "Family Tree/$FOAM_SLUG.md"
|
||||
---
|
||||
|
||||
# $FOAM_TITLE
|
||||
|
||||
[[${1:person}]]
|
11
.foam/templates/wired.md
Normal file
11
.foam/templates/wired.md
Normal file
@ -0,0 +1,11 @@
|
||||
---
|
||||
type: "wired"
|
||||
created: "${CURRENT_YEAR}-${CURRENT_MONTH}-${CURRENT_DATE}T${CURRENT_HOUR}:${CURRENT_MINUTE}:${CURRENT_SECOND}.000Z"
|
||||
updated: "${CURRENT_YEAR}-${CURRENT_MONTH}-${CURRENT_DATE}T${CURRENT_HOUR}:${CURRENT_MINUTE}:${CURRENT_SECOND}.000Z"
|
||||
foam_template:
|
||||
filepath: "Network/Wired/$FOAM_SLUG.md"
|
||||
---
|
||||
|
||||
# $FOAM_TITLE
|
||||
|
||||
[[${1:Router}]]
|
11
.foam/templates/wireless.md
Normal file
11
.foam/templates/wireless.md
Normal file
@ -0,0 +1,11 @@
|
||||
---
|
||||
type: "wireless"
|
||||
created: "${CURRENT_YEAR}-${CURRENT_MONTH}-${CURRENT_DATE}T${CURRENT_HOUR}:${CURRENT_MINUTE}:${CURRENT_SECOND}.000Z"
|
||||
updated: "${CURRENT_YEAR}-${CURRENT_MONTH}-${CURRENT_DATE}T${CURRENT_HOUR}:${CURRENT_MINUTE}:${CURRENT_SECOND}.000Z"
|
||||
foam_template:
|
||||
filepath: "Network/Wireless/$FOAM_SLUG.md"
|
||||
---
|
||||
|
||||
# $FOAM_TITLE
|
||||
|
||||
[[${1:Centurylink}]]
|
18
.gitignore
vendored
Normal file
18
.gitignore
vendored
Normal file
@ -0,0 +1,18 @@
|
||||
.kanbn
|
||||
.stfolder
|
||||
.stignore
|
||||
.PSReadLine
|
||||
.UserSecrets
|
||||
.UserSecretsLocalSystem
|
||||
.vscode/Helper/**
|
||||
|
||||
node_modules
|
||||
|
||||
family-tree
|
||||
network
|
||||
person
|
||||
|
||||
*sync-con-flict-2023*
|
||||
*.pdf
|
||||
|
||||
sync.ffs_db
|
6
.prettierignore
Normal file
6
.prettierignore
Normal file
@ -0,0 +1,6 @@
|
||||
|
||||
**/.vscode/*
|
||||
|
||||
*.json
|
||||
|
||||
*.zip
|
857
.vscode/638245428365061723.json
vendored
Normal file
857
.vscode/638245428365061723.json
vendored
Normal file
@ -0,0 +1,857 @@
|
||||
[
|
||||
{
|
||||
"File": "D:\\5-Other-Small\\Notes\\Phares\\.kanbn\\index.md",
|
||||
"Directory": "D:\\5-Other-Small\\Notes\\Phares\\.kanbn",
|
||||
"FileName": "index.md",
|
||||
"FileNameWithoutExtension": "index",
|
||||
"Extension": ".md",
|
||||
"CreationDateTime": "2023-07-08T14:27:50.5681902-07:00",
|
||||
"LastWriteDateTime": "2023-07-09T00:22:37.2480643-07:00",
|
||||
"LineNumber": {
|
||||
"Created": 2,
|
||||
"H1": 12,
|
||||
"MetaEnd": 10,
|
||||
"Status": null,
|
||||
"Type": 1,
|
||||
"Updated": 3
|
||||
},
|
||||
"Type": "note",
|
||||
"H1": "Phares"
|
||||
},
|
||||
{
|
||||
"File": "D:\\5-Other-Small\\Notes\\Phares\\Family Tree\\chelsea-phares.md",
|
||||
"Directory": "D:\\5-Other-Small\\Notes\\Phares\\Family Tree",
|
||||
"FileName": "chelsea-phares.md",
|
||||
"FileNameWithoutExtension": "chelsea-phares",
|
||||
"Extension": ".md",
|
||||
"CreationDateTime": "2023-07-06T22:00:15.8508551-07:00",
|
||||
"LastWriteDateTime": "2023-07-08T12:45:36.7044901-07:00",
|
||||
"LineNumber": {
|
||||
"Created": 2,
|
||||
"H1": 6,
|
||||
"MetaEnd": 4,
|
||||
"Status": null,
|
||||
"Type": 1,
|
||||
"Updated": 3
|
||||
},
|
||||
"Type": "person",
|
||||
"H1": "Chelsea Phares"
|
||||
},
|
||||
{
|
||||
"File": "D:\\5-Other-Small\\Notes\\Phares\\Family Tree\\eleanor-phares.md",
|
||||
"Directory": "D:\\5-Other-Small\\Notes\\Phares\\Family Tree",
|
||||
"FileName": "eleanor-phares.md",
|
||||
"FileNameWithoutExtension": "eleanor-phares",
|
||||
"Extension": ".md",
|
||||
"CreationDateTime": "2023-07-06T21:59:16.8348286-07:00",
|
||||
"LastWriteDateTime": "2023-07-08T12:45:36.7050038-07:00",
|
||||
"LineNumber": {
|
||||
"Created": 2,
|
||||
"H1": 6,
|
||||
"MetaEnd": 4,
|
||||
"Status": null,
|
||||
"Type": 1,
|
||||
"Updated": 3
|
||||
},
|
||||
"Type": "person",
|
||||
"H1": "Eleanor Phares"
|
||||
},
|
||||
{
|
||||
"File": "D:\\5-Other-Small\\Notes\\Phares\\Family Tree\\jason-woods.md",
|
||||
"Directory": "D:\\5-Other-Small\\Notes\\Phares\\Family Tree",
|
||||
"FileName": "jason-woods.md",
|
||||
"FileNameWithoutExtension": "jason-woods",
|
||||
"Extension": ".md",
|
||||
"CreationDateTime": "2023-07-06T21:01:49.5071792-07:00",
|
||||
"LastWriteDateTime": "2023-07-06T22:05:52.9670038-07:00",
|
||||
"LineNumber": {
|
||||
"Created": 2,
|
||||
"H1": 6,
|
||||
"MetaEnd": 4,
|
||||
"Status": null,
|
||||
"Type": 1,
|
||||
"Updated": 3
|
||||
},
|
||||
"Type": "person",
|
||||
"H1": "Jason Woods"
|
||||
},
|
||||
{
|
||||
"File": "D:\\5-Other-Small\\Notes\\Phares\\Family Tree\\john-roberts.md",
|
||||
"Directory": "D:\\5-Other-Small\\Notes\\Phares\\Family Tree",
|
||||
"FileName": "john-roberts.md",
|
||||
"FileNameWithoutExtension": "john-roberts",
|
||||
"Extension": ".md",
|
||||
"CreationDateTime": "2023-07-06T22:04:20.3028104-07:00",
|
||||
"LastWriteDateTime": "2023-07-08T12:45:36.7050038-07:00",
|
||||
"LineNumber": {
|
||||
"Created": 2,
|
||||
"H1": 6,
|
||||
"MetaEnd": 4,
|
||||
"Status": null,
|
||||
"Type": 1,
|
||||
"Updated": 3
|
||||
},
|
||||
"Type": "person",
|
||||
"H1": "John Roberts"
|
||||
},
|
||||
{
|
||||
"File": "D:\\5-Other-Small\\Notes\\Phares\\Family Tree\\julie-phares.md",
|
||||
"Directory": "D:\\5-Other-Small\\Notes\\Phares\\Family Tree",
|
||||
"FileName": "julie-phares.md",
|
||||
"FileNameWithoutExtension": "julie-phares",
|
||||
"Extension": ".md",
|
||||
"CreationDateTime": "2023-07-06T21:58:07.0230751-07:00",
|
||||
"LastWriteDateTime": "2023-07-08T12:45:36.7050038-07:00",
|
||||
"LineNumber": {
|
||||
"Created": 2,
|
||||
"H1": 6,
|
||||
"MetaEnd": 4,
|
||||
"Status": null,
|
||||
"Type": 1,
|
||||
"Updated": 3
|
||||
},
|
||||
"Type": "person",
|
||||
"H1": "Julie Phares"
|
||||
},
|
||||
{
|
||||
"File": "D:\\5-Other-Small\\Notes\\Phares\\Family Tree\\kristy-phares.md",
|
||||
"Directory": "D:\\5-Other-Small\\Notes\\Phares\\Family Tree",
|
||||
"FileName": "kristy-phares.md",
|
||||
"FileNameWithoutExtension": "kristy-phares",
|
||||
"Extension": ".md",
|
||||
"CreationDateTime": "2023-07-06T20:59:38.30564-07:00",
|
||||
"LastWriteDateTime": "2023-07-06T22:05:52.9675091-07:00",
|
||||
"LineNumber": {
|
||||
"Created": 2,
|
||||
"H1": 6,
|
||||
"MetaEnd": 4,
|
||||
"Status": null,
|
||||
"Type": 1,
|
||||
"Updated": 3
|
||||
},
|
||||
"Type": "person",
|
||||
"H1": "Kristy Phares"
|
||||
},
|
||||
{
|
||||
"File": "D:\\5-Other-Small\\Notes\\Phares\\Family Tree\\logan-phares.md",
|
||||
"Directory": "D:\\5-Other-Small\\Notes\\Phares\\Family Tree",
|
||||
"FileName": "logan-phares.md",
|
||||
"FileNameWithoutExtension": "logan-phares",
|
||||
"Extension": ".md",
|
||||
"CreationDateTime": "2023-07-06T21:59:48.421653-07:00",
|
||||
"LastWriteDateTime": "2023-07-08T12:45:36.7050038-07:00",
|
||||
"LineNumber": {
|
||||
"Created": 2,
|
||||
"H1": 6,
|
||||
"MetaEnd": 4,
|
||||
"Status": null,
|
||||
"Type": 1,
|
||||
"Updated": 3
|
||||
},
|
||||
"Type": "person",
|
||||
"H1": "Logan Phares"
|
||||
},
|
||||
{
|
||||
"File": "D:\\5-Other-Small\\Notes\\Phares\\Family Tree\\mackenzie-woods.md",
|
||||
"Directory": "D:\\5-Other-Small\\Notes\\Phares\\Family Tree",
|
||||
"FileName": "mackenzie-woods.md",
|
||||
"FileNameWithoutExtension": "mackenzie-woods",
|
||||
"Extension": ".md",
|
||||
"CreationDateTime": "2023-07-06T22:00:48.6630198-07:00",
|
||||
"LastWriteDateTime": "2023-07-08T12:45:36.7050038-07:00",
|
||||
"LineNumber": {
|
||||
"Created": 2,
|
||||
"H1": 6,
|
||||
"MetaEnd": 4,
|
||||
"Status": null,
|
||||
"Type": 1,
|
||||
"Updated": 3
|
||||
},
|
||||
"Type": "person",
|
||||
"H1": "Mackenzie Woods"
|
||||
},
|
||||
{
|
||||
"File": "D:\\5-Other-Small\\Notes\\Phares\\Family Tree\\mike-phares-jr.md",
|
||||
"Directory": "D:\\5-Other-Small\\Notes\\Phares\\Family Tree",
|
||||
"FileName": "mike-phares-jr.md",
|
||||
"FileNameWithoutExtension": "mike-phares-jr",
|
||||
"Extension": ".md",
|
||||
"CreationDateTime": "2023-07-06T20:59:21.2494815-07:00",
|
||||
"LastWriteDateTime": "2023-07-06T22:05:52.96814-07:00",
|
||||
"LineNumber": {
|
||||
"Created": 2,
|
||||
"H1": 6,
|
||||
"MetaEnd": 4,
|
||||
"Status": null,
|
||||
"Type": 1,
|
||||
"Updated": 3
|
||||
},
|
||||
"Type": "person",
|
||||
"H1": "Mike Phares Jr"
|
||||
},
|
||||
{
|
||||
"File": "D:\\5-Other-Small\\Notes\\Phares\\Family Tree\\mike-phares-sr.md",
|
||||
"Directory": "D:\\5-Other-Small\\Notes\\Phares\\Family Tree",
|
||||
"FileName": "mike-phares-sr.md",
|
||||
"FileNameWithoutExtension": "mike-phares-sr",
|
||||
"Extension": ".md",
|
||||
"CreationDateTime": "2023-07-06T21:57:47.7224534-07:00",
|
||||
"LastWriteDateTime": "2023-07-08T12:45:36.7055109-07:00",
|
||||
"LineNumber": {
|
||||
"Created": 2,
|
||||
"H1": 6,
|
||||
"MetaEnd": 4,
|
||||
"Status": null,
|
||||
"Type": 1,
|
||||
"Updated": 3
|
||||
},
|
||||
"Type": "person",
|
||||
"H1": "Mike Phares Sr"
|
||||
},
|
||||
{
|
||||
"File": "D:\\5-Other-Small\\Notes\\Phares\\Family Tree\\philip-woods.md",
|
||||
"Directory": "D:\\5-Other-Small\\Notes\\Phares\\Family Tree",
|
||||
"FileName": "philip-woods.md",
|
||||
"FileNameWithoutExtension": "philip-woods",
|
||||
"Extension": ".md",
|
||||
"CreationDateTime": "2023-07-06T22:01:04.4880988-07:00",
|
||||
"LastWriteDateTime": "2023-07-08T12:45:36.7055109-07:00",
|
||||
"LineNumber": {
|
||||
"Created": 2,
|
||||
"H1": 6,
|
||||
"MetaEnd": 4,
|
||||
"Status": null,
|
||||
"Type": 1,
|
||||
"Updated": 3
|
||||
},
|
||||
"Type": "person",
|
||||
"H1": "Philip Woods"
|
||||
},
|
||||
{
|
||||
"File": "D:\\5-Other-Small\\Notes\\Phares\\Family Tree\\rex-phares.md",
|
||||
"Directory": "D:\\5-Other-Small\\Notes\\Phares\\Family Tree",
|
||||
"FileName": "rex-phares.md",
|
||||
"FileNameWithoutExtension": "rex-phares",
|
||||
"Extension": ".md",
|
||||
"CreationDateTime": "2023-07-06T21:59:03.3142637-07:00",
|
||||
"LastWriteDateTime": "2023-07-08T12:45:36.7055109-07:00",
|
||||
"LineNumber": {
|
||||
"Created": 2,
|
||||
"H1": 6,
|
||||
"MetaEnd": 4,
|
||||
"Status": null,
|
||||
"Type": 1,
|
||||
"Updated": 3
|
||||
},
|
||||
"Type": "person",
|
||||
"H1": "Rex Phares"
|
||||
},
|
||||
{
|
||||
"File": "D:\\5-Other-Small\\Notes\\Phares\\.kanbn\\tasks\\look-at-nuxt-for-personal-knowledge-management-pkm.md",
|
||||
"Directory": "D:\\5-Other-Small\\Notes\\Phares\\.kanbn\\tasks",
|
||||
"FileName": "look-at-nuxt-for-personal-knowledge-management-pkm.md",
|
||||
"FileNameWithoutExtension": "look-at-nuxt-for-personal-knowledge-management-pkm",
|
||||
"Extension": ".md",
|
||||
"CreationDateTime": "2023-07-08T14:42:25.3020283-07:00",
|
||||
"LastWriteDateTime": "2023-07-09T00:24:52.3308671-07:00",
|
||||
"LineNumber": {
|
||||
"Created": 1,
|
||||
"H1": 9,
|
||||
"MetaEnd": 7,
|
||||
"Status": null,
|
||||
"Type": 6,
|
||||
"Updated": 2
|
||||
},
|
||||
"Type": "note",
|
||||
"H1": "Look at nuxt for Personal knowledge management (PKM)"
|
||||
},
|
||||
{
|
||||
"File": "D:\\5-Other-Small\\Notes\\Phares\\.kanbn\\tasks\\play-with-trello.md",
|
||||
"Directory": "D:\\5-Other-Small\\Notes\\Phares\\.kanbn\\tasks",
|
||||
"FileName": "play-with-trello.md",
|
||||
"FileNameWithoutExtension": "play-with-trello",
|
||||
"Extension": ".md",
|
||||
"CreationDateTime": "2023-07-09T00:07:45.514098-07:00",
|
||||
"LastWriteDateTime": "2023-07-09T23:40:26.4159564-07:00",
|
||||
"LineNumber": {
|
||||
"Created": 1,
|
||||
"H1": 9,
|
||||
"MetaEnd": 7,
|
||||
"Status": null,
|
||||
"Type": 6,
|
||||
"Updated": 2
|
||||
},
|
||||
"Type": "note",
|
||||
"H1": "Play With Trello"
|
||||
},
|
||||
{
|
||||
"File": "D:\\5-Other-Small\\Notes\\Phares\\.kanbn\\tasks\\review-nuxt-mdc.md",
|
||||
"Directory": "D:\\5-Other-Small\\Notes\\Phares\\.kanbn\\tasks",
|
||||
"FileName": "review-nuxt-mdc.md",
|
||||
"FileNameWithoutExtension": "review-nuxt-mdc",
|
||||
"Extension": ".md",
|
||||
"CreationDateTime": "2023-07-09T00:22:37.2440614-07:00",
|
||||
"LastWriteDateTime": "2023-07-09T00:23:50.3044459-07:00",
|
||||
"LineNumber": {
|
||||
"Created": 1,
|
||||
"H1": 8,
|
||||
"MetaEnd": 6,
|
||||
"Status": null,
|
||||
"Type": null,
|
||||
"Updated": 2
|
||||
},
|
||||
"Type": "note",
|
||||
"H1": "Review Nuxt MDC"
|
||||
},
|
||||
{
|
||||
"File": "D:\\5-Other-Small\\Notes\\Phares\\Network\\Wired\\amazon-50-inch-tv.md",
|
||||
"Directory": "D:\\5-Other-Small\\Notes\\Phares\\Network\\Wired",
|
||||
"FileName": "amazon-50-inch-tv.md",
|
||||
"FileNameWithoutExtension": "amazon-50-inch-tv",
|
||||
"Extension": ".md",
|
||||
"CreationDateTime": "2023-07-06T21:18:04.3721037-07:00",
|
||||
"LastWriteDateTime": "2023-07-06T22:05:52.9688661-07:00",
|
||||
"LineNumber": {
|
||||
"Created": 2,
|
||||
"H1": null,
|
||||
"MetaEnd": 4,
|
||||
"Status": null,
|
||||
"Type": 1,
|
||||
"Updated": 3
|
||||
},
|
||||
"Type": "wired",
|
||||
"H1": "amazon-50-inch-tv"
|
||||
},
|
||||
{
|
||||
"File": "D:\\5-Other-Small\\Notes\\Phares\\Network\\Wired\\centurylink.md",
|
||||
"Directory": "D:\\5-Other-Small\\Notes\\Phares\\Network\\Wired",
|
||||
"FileName": "centurylink.md",
|
||||
"FileNameWithoutExtension": "centurylink",
|
||||
"Extension": ".md",
|
||||
"CreationDateTime": "2023-07-06T21:18:04.3737361-07:00",
|
||||
"LastWriteDateTime": "2023-07-08T12:45:50.0481704-07:00",
|
||||
"LineNumber": {
|
||||
"Created": 2,
|
||||
"H1": 6,
|
||||
"MetaEnd": 4,
|
||||
"Status": null,
|
||||
"Type": 1,
|
||||
"Updated": 3
|
||||
},
|
||||
"Type": "wired",
|
||||
"H1": "Centurylink"
|
||||
},
|
||||
{
|
||||
"File": "D:\\5-Other-Small\\Notes\\Phares\\Network\\Wired\\kristy-laptop.md",
|
||||
"Directory": "D:\\5-Other-Small\\Notes\\Phares\\Network\\Wired",
|
||||
"FileName": "kristy-laptop.md",
|
||||
"FileNameWithoutExtension": "kristy-laptop",
|
||||
"Extension": ".md",
|
||||
"CreationDateTime": "2023-07-06T21:18:04.3747727-07:00",
|
||||
"LastWriteDateTime": "2023-07-06T22:05:52.9693707-07:00",
|
||||
"LineNumber": {
|
||||
"Created": 2,
|
||||
"H1": null,
|
||||
"MetaEnd": 4,
|
||||
"Status": null,
|
||||
"Type": 1,
|
||||
"Updated": 3
|
||||
},
|
||||
"Type": "wired",
|
||||
"H1": "kristy-laptop"
|
||||
},
|
||||
{
|
||||
"File": "D:\\5-Other-Small\\Notes\\Phares\\Network\\Wired\\kristy-personal.md",
|
||||
"Directory": "D:\\5-Other-Small\\Notes\\Phares\\Network\\Wired",
|
||||
"FileName": "kristy-personal.md",
|
||||
"FileNameWithoutExtension": "kristy-personal",
|
||||
"Extension": ".md",
|
||||
"CreationDateTime": "2023-07-06T21:18:04.375858-07:00",
|
||||
"LastWriteDateTime": "2023-07-06T22:05:52.9693707-07:00",
|
||||
"LineNumber": {
|
||||
"Created": 2,
|
||||
"H1": null,
|
||||
"MetaEnd": 4,
|
||||
"Status": null,
|
||||
"Type": 1,
|
||||
"Updated": 3
|
||||
},
|
||||
"Type": "wired",
|
||||
"H1": "kristy-personal"
|
||||
},
|
||||
{
|
||||
"File": "D:\\5-Other-Small\\Notes\\Phares\\Network\\Wired\\laundry-switch.md",
|
||||
"Directory": "D:\\5-Other-Small\\Notes\\Phares\\Network\\Wired",
|
||||
"FileName": "laundry-switch.md",
|
||||
"FileNameWithoutExtension": "laundry-switch",
|
||||
"Extension": ".md",
|
||||
"CreationDateTime": "2023-07-06T21:18:04.3769088-07:00",
|
||||
"LastWriteDateTime": "2023-07-08T12:45:46.1639006-07:00",
|
||||
"LineNumber": {
|
||||
"Created": 2,
|
||||
"H1": 6,
|
||||
"MetaEnd": 4,
|
||||
"Status": null,
|
||||
"Type": 1,
|
||||
"Updated": 3
|
||||
},
|
||||
"Type": "wired",
|
||||
"H1": "Laundry Switch"
|
||||
},
|
||||
{
|
||||
"File": "D:\\5-Other-Small\\Notes\\Phares\\Network\\Wired\\living-room-tv.md",
|
||||
"Directory": "D:\\5-Other-Small\\Notes\\Phares\\Network\\Wired",
|
||||
"FileName": "living-room-tv.md",
|
||||
"FileNameWithoutExtension": "living-room-tv",
|
||||
"Extension": ".md",
|
||||
"CreationDateTime": "2023-07-06T21:18:04.3779404-07:00",
|
||||
"LastWriteDateTime": "2023-07-06T22:05:52.9698881-07:00",
|
||||
"LineNumber": {
|
||||
"Created": 2,
|
||||
"H1": null,
|
||||
"MetaEnd": 4,
|
||||
"Status": null,
|
||||
"Type": 1,
|
||||
"Updated": 3
|
||||
},
|
||||
"Type": "wired",
|
||||
"H1": "living-room-tv"
|
||||
},
|
||||
{
|
||||
"File": "D:\\5-Other-Small\\Notes\\Phares\\Network\\Wired\\loft-camera.md",
|
||||
"Directory": "D:\\5-Other-Small\\Notes\\Phares\\Network\\Wired",
|
||||
"FileName": "loft-camera.md",
|
||||
"FileNameWithoutExtension": "loft-camera",
|
||||
"Extension": ".md",
|
||||
"CreationDateTime": "2023-07-06T21:18:04.3795254-07:00",
|
||||
"LastWriteDateTime": "2023-07-06T22:05:52.9698881-07:00",
|
||||
"LineNumber": {
|
||||
"Created": 2,
|
||||
"H1": null,
|
||||
"MetaEnd": 4,
|
||||
"Status": null,
|
||||
"Type": 1,
|
||||
"Updated": 3
|
||||
},
|
||||
"Type": "wired",
|
||||
"H1": "loft-camera"
|
||||
},
|
||||
{
|
||||
"File": "D:\\5-Other-Small\\Notes\\Phares\\Network\\Wired\\loft-router.md",
|
||||
"Directory": "D:\\5-Other-Small\\Notes\\Phares\\Network\\Wired",
|
||||
"FileName": "loft-router.md",
|
||||
"FileNameWithoutExtension": "loft-router",
|
||||
"Extension": ".md",
|
||||
"CreationDateTime": "2023-07-06T21:18:04.3805549-07:00",
|
||||
"LastWriteDateTime": "2023-07-08T12:45:46.1639006-07:00",
|
||||
"LineNumber": {
|
||||
"Created": 2,
|
||||
"H1": 6,
|
||||
"MetaEnd": 4,
|
||||
"Status": null,
|
||||
"Type": 1,
|
||||
"Updated": 3
|
||||
},
|
||||
"Type": "wired",
|
||||
"H1": "Loft Router"
|
||||
},
|
||||
{
|
||||
"File": "D:\\5-Other-Small\\Notes\\Phares\\Network\\Wired\\loft-switch.md",
|
||||
"Directory": "D:\\5-Other-Small\\Notes\\Phares\\Network\\Wired",
|
||||
"FileName": "loft-switch.md",
|
||||
"FileNameWithoutExtension": "loft-switch",
|
||||
"Extension": ".md",
|
||||
"CreationDateTime": "2023-07-06T21:18:04.3815857-07:00",
|
||||
"LastWriteDateTime": "2023-07-08T12:45:46.1648996-07:00",
|
||||
"LineNumber": {
|
||||
"Created": 2,
|
||||
"H1": 6,
|
||||
"MetaEnd": 4,
|
||||
"Status": null,
|
||||
"Type": 1,
|
||||
"Updated": 3
|
||||
},
|
||||
"Type": "wired",
|
||||
"H1": "Loft Switch"
|
||||
},
|
||||
{
|
||||
"File": "D:\\5-Other-Small\\Notes\\Phares\\Network\\Wired\\logan.md",
|
||||
"Directory": "D:\\5-Other-Small\\Notes\\Phares\\Network\\Wired",
|
||||
"FileName": "logan.md",
|
||||
"FileNameWithoutExtension": "logan",
|
||||
"Extension": ".md",
|
||||
"CreationDateTime": "2023-07-06T21:18:04.3822693-07:00",
|
||||
"LastWriteDateTime": "2023-07-06T22:05:52.9698881-07:00",
|
||||
"LineNumber": {
|
||||
"Created": 2,
|
||||
"H1": null,
|
||||
"MetaEnd": 4,
|
||||
"Status": null,
|
||||
"Type": 1,
|
||||
"Updated": 3
|
||||
},
|
||||
"Type": "wired",
|
||||
"H1": "logan"
|
||||
},
|
||||
{
|
||||
"File": "D:\\5-Other-Small\\Notes\\Phares\\Network\\Wired\\mike-laptop.md",
|
||||
"Directory": "D:\\5-Other-Small\\Notes\\Phares\\Network\\Wired",
|
||||
"FileName": "mike-laptop.md",
|
||||
"FileNameWithoutExtension": "mike-laptop",
|
||||
"Extension": ".md",
|
||||
"CreationDateTime": "2023-07-06T21:18:04.383953-07:00",
|
||||
"LastWriteDateTime": "2023-07-06T22:05:52.9698881-07:00",
|
||||
"LineNumber": {
|
||||
"Created": 2,
|
||||
"H1": null,
|
||||
"MetaEnd": 4,
|
||||
"Status": null,
|
||||
"Type": 1,
|
||||
"Updated": 3
|
||||
},
|
||||
"Type": "wired",
|
||||
"H1": "mike-laptop"
|
||||
},
|
||||
{
|
||||
"File": "D:\\5-Other-Small\\Notes\\Phares\\Network\\Wired\\mike-personal.md",
|
||||
"Directory": "D:\\5-Other-Small\\Notes\\Phares\\Network\\Wired",
|
||||
"FileName": "mike-personal.md",
|
||||
"FileNameWithoutExtension": "mike-personal",
|
||||
"Extension": ".md",
|
||||
"CreationDateTime": "2023-07-06T21:18:04.3855025-07:00",
|
||||
"LastWriteDateTime": "2023-07-06T22:05:52.9698881-07:00",
|
||||
"LineNumber": {
|
||||
"Created": 2,
|
||||
"H1": null,
|
||||
"MetaEnd": 4,
|
||||
"Status": null,
|
||||
"Type": 1,
|
||||
"Updated": 3
|
||||
},
|
||||
"Type": "wired",
|
||||
"H1": "mike-personal"
|
||||
},
|
||||
{
|
||||
"File": "D:\\5-Other-Small\\Notes\\Phares\\Network\\Wired\\playstation.md",
|
||||
"Directory": "D:\\5-Other-Small\\Notes\\Phares\\Network\\Wired",
|
||||
"FileName": "playstation.md",
|
||||
"FileNameWithoutExtension": "playstation",
|
||||
"Extension": ".md",
|
||||
"CreationDateTime": "2023-07-06T21:18:04.3865588-07:00",
|
||||
"LastWriteDateTime": "2023-07-06T22:05:52.9708947-07:00",
|
||||
"LineNumber": {
|
||||
"Created": 2,
|
||||
"H1": null,
|
||||
"MetaEnd": 4,
|
||||
"Status": null,
|
||||
"Type": 1,
|
||||
"Updated": 3
|
||||
},
|
||||
"Type": "wired",
|
||||
"H1": "playstation"
|
||||
},
|
||||
{
|
||||
"File": "D:\\5-Other-Small\\Notes\\Phares\\Network\\Wired\\reciever.md",
|
||||
"Directory": "D:\\5-Other-Small\\Notes\\Phares\\Network\\Wired",
|
||||
"FileName": "reciever.md",
|
||||
"FileNameWithoutExtension": "reciever",
|
||||
"Extension": ".md",
|
||||
"CreationDateTime": "2023-07-06T21:18:04.3881581-07:00",
|
||||
"LastWriteDateTime": "2023-07-06T22:05:52.9708947-07:00",
|
||||
"LineNumber": {
|
||||
"Created": 2,
|
||||
"H1": null,
|
||||
"MetaEnd": 4,
|
||||
"Status": null,
|
||||
"Type": 1,
|
||||
"Updated": 3
|
||||
},
|
||||
"Type": "wired",
|
||||
"H1": "reciever"
|
||||
},
|
||||
{
|
||||
"File": "D:\\5-Other-Small\\Notes\\Phares\\Network\\Wired\\router.md",
|
||||
"Directory": "D:\\5-Other-Small\\Notes\\Phares\\Network\\Wired",
|
||||
"FileName": "router.md",
|
||||
"FileNameWithoutExtension": "router",
|
||||
"Extension": ".md",
|
||||
"CreationDateTime": "2023-07-06T21:18:04.3893643-07:00",
|
||||
"LastWriteDateTime": "2023-07-06T21:22:04.9122112-07:00",
|
||||
"LineNumber": {
|
||||
"Created": 2,
|
||||
"H1": null,
|
||||
"MetaEnd": 4,
|
||||
"Status": null,
|
||||
"Type": 1,
|
||||
"Updated": 3
|
||||
},
|
||||
"Type": "wired",
|
||||
"H1": "router"
|
||||
},
|
||||
{
|
||||
"File": "D:\\5-Other-Small\\Notes\\Phares\\Network\\Wired\\slideshow.md",
|
||||
"Directory": "D:\\5-Other-Small\\Notes\\Phares\\Network\\Wired",
|
||||
"FileName": "slideshow.md",
|
||||
"FileNameWithoutExtension": "slideshow",
|
||||
"Extension": ".md",
|
||||
"CreationDateTime": "2023-07-06T21:18:04.3903894-07:00",
|
||||
"LastWriteDateTime": "2023-07-06T22:05:52.9708947-07:00",
|
||||
"LineNumber": {
|
||||
"Created": 2,
|
||||
"H1": null,
|
||||
"MetaEnd": 4,
|
||||
"Status": null,
|
||||
"Type": 1,
|
||||
"Updated": 3
|
||||
},
|
||||
"Type": "wired",
|
||||
"H1": "slideshow"
|
||||
},
|
||||
{
|
||||
"File": "D:\\5-Other-Small\\Notes\\Phares\\Network\\Wired\\small-windows.md",
|
||||
"Directory": "D:\\5-Other-Small\\Notes\\Phares\\Network\\Wired",
|
||||
"FileName": "small-windows.md",
|
||||
"FileNameWithoutExtension": "small-windows",
|
||||
"Extension": ".md",
|
||||
"CreationDateTime": "2023-07-06T21:18:04.3916065-07:00",
|
||||
"LastWriteDateTime": "2023-07-06T22:05:52.9708947-07:00",
|
||||
"LineNumber": {
|
||||
"Created": 2,
|
||||
"H1": null,
|
||||
"MetaEnd": 4,
|
||||
"Status": null,
|
||||
"Type": 1,
|
||||
"Updated": 3
|
||||
},
|
||||
"Type": "wired",
|
||||
"H1": "small-windows"
|
||||
},
|
||||
{
|
||||
"File": "D:\\5-Other-Small\\Notes\\Phares\\Network\\Wired\\solar-city.md",
|
||||
"Directory": "D:\\5-Other-Small\\Notes\\Phares\\Network\\Wired",
|
||||
"FileName": "solar-city.md",
|
||||
"FileNameWithoutExtension": "solar-city",
|
||||
"Extension": ".md",
|
||||
"CreationDateTime": "2023-07-06T21:18:04.3933996-07:00",
|
||||
"LastWriteDateTime": "2023-07-06T22:05:52.9708947-07:00",
|
||||
"LineNumber": {
|
||||
"Created": 2,
|
||||
"H1": null,
|
||||
"MetaEnd": 4,
|
||||
"Status": null,
|
||||
"Type": 1,
|
||||
"Updated": 3
|
||||
},
|
||||
"Type": "wired",
|
||||
"H1": "solar-city"
|
||||
},
|
||||
{
|
||||
"File": "D:\\5-Other-Small\\Notes\\Phares\\Network\\Wired\\stairs-switch.md",
|
||||
"Directory": "D:\\5-Other-Small\\Notes\\Phares\\Network\\Wired",
|
||||
"FileName": "stairs-switch.md",
|
||||
"FileNameWithoutExtension": "stairs-switch",
|
||||
"Extension": ".md",
|
||||
"CreationDateTime": "2023-07-06T21:18:04.3945758-07:00",
|
||||
"LastWriteDateTime": "2023-07-08T12:45:46.1648996-07:00",
|
||||
"LineNumber": {
|
||||
"Created": 2,
|
||||
"H1": 6,
|
||||
"MetaEnd": 4,
|
||||
"Status": null,
|
||||
"Type": 1,
|
||||
"Updated": 3
|
||||
},
|
||||
"Type": "wired",
|
||||
"H1": "Stairs Switch"
|
||||
},
|
||||
{
|
||||
"File": "D:\\5-Other-Small\\Notes\\Phares\\Network\\Wired\\unity4.md",
|
||||
"Directory": "D:\\5-Other-Small\\Notes\\Phares\\Network\\Wired",
|
||||
"FileName": "unity4.md",
|
||||
"FileNameWithoutExtension": "unity4",
|
||||
"Extension": ".md",
|
||||
"CreationDateTime": "2023-07-06T21:18:04.3956773-07:00",
|
||||
"LastWriteDateTime": "2023-07-06T22:05:52.9708947-07:00",
|
||||
"LineNumber": {
|
||||
"Created": 2,
|
||||
"H1": null,
|
||||
"MetaEnd": 4,
|
||||
"Status": null,
|
||||
"Type": 1,
|
||||
"Updated": 3
|
||||
},
|
||||
"Type": "wired",
|
||||
"H1": "unity4"
|
||||
},
|
||||
{
|
||||
"File": "D:\\5-Other-Small\\Notes\\Phares\\Network\\Wired\\xbox.md",
|
||||
"Directory": "D:\\5-Other-Small\\Notes\\Phares\\Network\\Wired",
|
||||
"FileName": "xbox.md",
|
||||
"FileNameWithoutExtension": "xbox",
|
||||
"Extension": ".md",
|
||||
"CreationDateTime": "2023-07-06T21:18:04.3967629-07:00",
|
||||
"LastWriteDateTime": "2023-07-06T22:05:52.9718946-07:00",
|
||||
"LineNumber": {
|
||||
"Created": 2,
|
||||
"H1": null,
|
||||
"MetaEnd": 4,
|
||||
"Status": null,
|
||||
"Type": 1,
|
||||
"Updated": 3
|
||||
},
|
||||
"Type": "wired",
|
||||
"H1": "xbox"
|
||||
},
|
||||
{
|
||||
"File": "D:\\5-Other-Small\\Notes\\Phares\\Network\\Wireless\\backyard-echo.md",
|
||||
"Directory": "D:\\5-Other-Small\\Notes\\Phares\\Network\\Wireless",
|
||||
"FileName": "backyard-echo.md",
|
||||
"FileNameWithoutExtension": "backyard-echo",
|
||||
"Extension": ".md",
|
||||
"CreationDateTime": "2023-07-06T21:18:04.3994685-07:00",
|
||||
"LastWriteDateTime": "2023-07-06T22:05:52.9718946-07:00",
|
||||
"LineNumber": {
|
||||
"Created": 2,
|
||||
"H1": null,
|
||||
"MetaEnd": 4,
|
||||
"Status": null,
|
||||
"Type": 1,
|
||||
"Updated": 3
|
||||
},
|
||||
"Type": "wireless",
|
||||
"H1": "backyard-echo"
|
||||
},
|
||||
{
|
||||
"File": "D:\\5-Other-Small\\Notes\\Phares\\Network\\Wireless\\chelsea-chromebook.md",
|
||||
"Directory": "D:\\5-Other-Small\\Notes\\Phares\\Network\\Wireless",
|
||||
"FileName": "chelsea-chromebook.md",
|
||||
"FileNameWithoutExtension": "chelsea-chromebook",
|
||||
"Extension": ".md",
|
||||
"CreationDateTime": "2023-07-06T21:18:04.4002021-07:00",
|
||||
"LastWriteDateTime": "2023-07-08T12:45:52.2080658-07:00",
|
||||
"LineNumber": {
|
||||
"Created": 2,
|
||||
"H1": 6,
|
||||
"MetaEnd": 4,
|
||||
"Status": null,
|
||||
"Type": 1,
|
||||
"Updated": 3
|
||||
},
|
||||
"Type": "wireless",
|
||||
"H1": "Chelsea Chromebook"
|
||||
},
|
||||
{
|
||||
"File": "D:\\5-Other-Small\\Notes\\Phares\\Network\\Wireless\\chelsea-kids-fire.md",
|
||||
"Directory": "D:\\5-Other-Small\\Notes\\Phares\\Network\\Wireless",
|
||||
"FileName": "chelsea-kids-fire.md",
|
||||
"FileNameWithoutExtension": "chelsea-kids-fire",
|
||||
"Extension": ".md",
|
||||
"CreationDateTime": "2023-07-06T22:07:46.3122648-07:00",
|
||||
"LastWriteDateTime": "2023-07-08T12:45:52.2090391-07:00",
|
||||
"LineNumber": {
|
||||
"Created": 2,
|
||||
"H1": 6,
|
||||
"MetaEnd": 4,
|
||||
"Status": null,
|
||||
"Type": 1,
|
||||
"Updated": 3
|
||||
},
|
||||
"Type": "wireless",
|
||||
"H1": "Chelsea Kids Fire"
|
||||
},
|
||||
{
|
||||
"File": "D:\\5-Other-Small\\Notes\\Phares\\Network\\Wireless\\chelsea-phone.md",
|
||||
"Directory": "D:\\5-Other-Small\\Notes\\Phares\\Network\\Wireless",
|
||||
"FileName": "chelsea-phone.md",
|
||||
"FileNameWithoutExtension": "chelsea-phone",
|
||||
"Extension": ".md",
|
||||
"CreationDateTime": "2023-07-06T21:18:04.4012818-07:00",
|
||||
"LastWriteDateTime": "2023-07-08T12:45:52.2090391-07:00",
|
||||
"LineNumber": {
|
||||
"Created": 2,
|
||||
"H1": 6,
|
||||
"MetaEnd": 4,
|
||||
"Status": null,
|
||||
"Type": 1,
|
||||
"Updated": 3
|
||||
},
|
||||
"Type": "wireless",
|
||||
"H1": "Chelsea Phone"
|
||||
},
|
||||
{
|
||||
"File": "D:\\5-Other-Small\\Notes\\Phares\\Network\\Wireless\\kitchen-alexa.md",
|
||||
"Directory": "D:\\5-Other-Small\\Notes\\Phares\\Network\\Wireless",
|
||||
"FileName": "kitchen-alexa.md",
|
||||
"FileNameWithoutExtension": "kitchen-alexa",
|
||||
"Extension": ".md",
|
||||
"CreationDateTime": "2023-07-06T21:18:04.4023871-07:00",
|
||||
"LastWriteDateTime": "2023-07-08T12:45:52.2090391-07:00",
|
||||
"LineNumber": {
|
||||
"Created": 2,
|
||||
"H1": 6,
|
||||
"MetaEnd": 4,
|
||||
"Status": null,
|
||||
"Type": 1,
|
||||
"Updated": 3
|
||||
},
|
||||
"Type": "wireless",
|
||||
"H1": "Kitchen Alexa"
|
||||
},
|
||||
{
|
||||
"File": "D:\\5-Other-Small\\Notes\\Phares\\Network\\Wireless\\kristy-phone.md",
|
||||
"Directory": "D:\\5-Other-Small\\Notes\\Phares\\Network\\Wireless",
|
||||
"FileName": "kristy-phone.md",
|
||||
"FileNameWithoutExtension": "tt-phone",
|
||||
"Extension": ".md",
|
||||
"CreationDateTime": "2023-07-06T21:18:04.4034572-07:00",
|
||||
"LastWriteDateTime": "2023-07-08T12:45:52.2090391-07:00",
|
||||
"LineNumber": {
|
||||
"Created": 2,
|
||||
"H1": 6,
|
||||
"MetaEnd": 4,
|
||||
"Status": null,
|
||||
"Type": 1,
|
||||
"Updated": 3
|
||||
},
|
||||
"Type": "wireless",
|
||||
"H1": "Kristy Phone"
|
||||
},
|
||||
{
|
||||
"File": "D:\\5-Other-Small\\Notes\\Phares\\Network\\Wireless\\mike-phone.md",
|
||||
"Directory": "D:\\5-Other-Small\\Notes\\Phares\\Network\\Wireless",
|
||||
"FileName": "mike-phone.md",
|
||||
"FileNameWithoutExtension": "mike-phone",
|
||||
"Extension": ".md",
|
||||
"CreationDateTime": "2023-07-06T21:18:04.4044992-07:00",
|
||||
"LastWriteDateTime": "2023-07-08T12:45:52.2090391-07:00",
|
||||
"LineNumber": {
|
||||
"Created": 2,
|
||||
"H1": 6,
|
||||
"MetaEnd": 4,
|
||||
"Status": null,
|
||||
"Type": 1,
|
||||
"Updated": 3
|
||||
},
|
||||
"Type": "wireless",
|
||||
"H1": "Mike Phone"
|
||||
},
|
||||
{
|
||||
"File": "D:\\5-Other-Small\\Notes\\Phares\\Network\\Wireless\\roku.md",
|
||||
"Directory": "D:\\5-Other-Small\\Notes\\Phares\\Network\\Wireless",
|
||||
"FileName": "roku.md",
|
||||
"FileNameWithoutExtension": "roku",
|
||||
"Extension": ".md",
|
||||
"CreationDateTime": "2023-07-06T21:18:04.4061094-07:00",
|
||||
"LastWriteDateTime": "2023-07-08T12:45:52.2095468-07:00",
|
||||
"LineNumber": {
|
||||
"Created": 2,
|
||||
"H1": 6,
|
||||
"MetaEnd": 4,
|
||||
"Status": null,
|
||||
"Type": 1,
|
||||
"Updated": 3
|
||||
},
|
||||
"Type": "wireless",
|
||||
"H1": "Roku"
|
||||
}
|
||||
]
|
4768
.vscode/638255514504627464.json
vendored
Normal file
4768
.vscode/638255514504627464.json
vendored
Normal file
File diff suppressed because it is too large
Load Diff
24
.vscode/mklink.md
vendored
Normal file
24
.vscode/mklink.md
vendored
Normal file
@ -0,0 +1,24 @@
|
||||
---
|
||||
type: "note"
|
||||
created: "2023-10-20T03:58:11.564Z"
|
||||
updated: "2023-10-20T03:59:01.765Z"
|
||||
---
|
||||
|
||||
# mklink
|
||||
|
||||
```bash
|
||||
mklink /J "D:\Documents\Notes\Phares\.git" "L:\Git\Notes-Phares\.git"
|
||||
```
|
||||
|
||||
```bash
|
||||
mklink /J "D:\5-Other-Small\Notes\Phares\.git" "L:\Git\Notes-Phares\.git"
|
||||
```
|
||||
|
||||
```bash Sat Jan 06 2024 09:09:50 GMT-0700 (Mountain Standard Time)
|
||||
git init L:/Git/Notes-Phares
|
||||
mklink /J "L:\Git\Notes-Phares\.Phares" "D:\5-Other-Small\Notes\Phares"
|
||||
mklink /J "D:\5-Other-Small\Notes\Phares\.git" "L:\Git\Notes-Phares\.git"
|
||||
code "L:\Git\Notes-Phares\.Phares"
|
||||
codium "L:\Git\Notes-Phares\.Phares"
|
||||
code-insiders "L:\Git\Notes-Phares\.Phares"
|
||||
```
|
55
.vscode/settings.json
vendored
Normal file
55
.vscode/settings.json
vendored
Normal file
@ -0,0 +1,55 @@
|
||||
{
|
||||
"files.eol": "\n",
|
||||
"[markdown]": {
|
||||
"editor.wordWrap": "off"
|
||||
},
|
||||
"cSpell.words": [
|
||||
"PDSF",
|
||||
"Syncthing"
|
||||
],
|
||||
"files.exclude": {
|
||||
"**/node_modules": true
|
||||
},
|
||||
"files.watcherExclude": {
|
||||
"**/node_modules": true
|
||||
},
|
||||
"foam.files.ignore": [
|
||||
".foam/**/*",
|
||||
".stfolder/**/*",
|
||||
"**/_layouts/**/*",
|
||||
"**/_site/**/*",
|
||||
"**/.vscode/**/*",
|
||||
"**/node_modules/**/*"
|
||||
],
|
||||
"kanbn.showBurndownButton": false,
|
||||
"kanbn.showSprintButton": false,
|
||||
"foam.links.hover.enable": false,
|
||||
"foam.placeholders.exclude": [
|
||||
".kanbn/Archive/**/*"
|
||||
],
|
||||
"foam.orphans.exclude": [
|
||||
".journal/**/*"
|
||||
],
|
||||
"foam.graph.style": {
|
||||
"background": "#202020",
|
||||
"node": {
|
||||
"wired": "green",
|
||||
"wireless": "orange",
|
||||
"person": "white",
|
||||
"topic": "#bc2a3c",
|
||||
"kanbn": "#ff7b00",
|
||||
"basic-note": "#773b93",
|
||||
"daily-note": "#ff9d00",
|
||||
"note": "#f2cb1d",
|
||||
"placeholder": "#ff9d00",
|
||||
"tag": "#0494c1",
|
||||
"bug": "#bc2a3c",
|
||||
"epic": "#ff7b00",
|
||||
"feature": "#773b93",
|
||||
"issue": "#ff9d00",
|
||||
"task": "#f2cb1d",
|
||||
"test-case": "#ff9d00",
|
||||
"user-story": "#0494c1"
|
||||
}
|
||||
}
|
||||
}
|
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/net7.0/win-x64/publish/File-Folder-Helper.exe s M L:/Git/Notes-Phares/Phares -s L:/Git/Notes-Phares/Phares/.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/net7.0/win-x64/publish/File-Folder-Helper.exe s M L:/Git/Notes-Phares/Phares -s L:/Git/Notes-Phares/Phares/family-tree",
|
||||
"problemMatcher": []
|
||||
},
|
||||
{
|
||||
"label": "File-Folder-Helper AOT s M Phares Network",
|
||||
"type": "shell",
|
||||
"command": "& L:/DevOps/Mesa_FI/File-Folder-Helper/bin/Release/net7.0/win-x64/publish/File-Folder-Helper.exe s M L:/Git/Notes-Phares/Phares -s L:/Git/Notes-Phares/Phares/network",
|
||||
"problemMatcher": []
|
||||
},
|
||||
{
|
||||
"label": "File-Folder-Helper AOT s M Phares Person",
|
||||
"type": "shell",
|
||||
"command": "& L:/DevOps/Mesa_FI/File-Folder-Helper/bin/Release/net7.0/win-x64/publish/File-Folder-Helper.exe s M L:/Git/Notes-Phares/Phares -s L:/Git/Notes-Phares/Phares/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 %
|
BIN
markdown.db
Normal file
BIN
markdown.db
Normal file
Binary file not shown.
5093
package-lock.json
generated
Normal file
5093
package-lock.json
generated
Normal file
File diff suppressed because it is too large
Load Diff
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