From 25e39beef84558848da378d4fdecfbfae855be53 Mon Sep 17 00:00:00 2001 From: Zachary Batte Date: Thu, 2 Jul 2026 23:59:35 -0600 Subject: [PATCH] update .ht.sqlite --- .serena/.gitignore | 2 + .serena/project.yml | 133 +++++++++++++++++++++++++++++++++ wp-content/database/.ht.sqlite | Bin 44220416 -> 44220416 bytes 3 files changed, 135 insertions(+) create mode 100644 .serena/.gitignore create mode 100644 .serena/project.yml diff --git a/.serena/.gitignore b/.serena/.gitignore new file mode 100644 index 00000000..2e510aff --- /dev/null +++ b/.serena/.gitignore @@ -0,0 +1,2 @@ +/cache +/project.local.yml diff --git a/.serena/project.yml b/.serena/project.yml new file mode 100644 index 00000000..b20169a9 --- /dev/null +++ b/.serena/project.yml @@ -0,0 +1,133 @@ +# the name by which the project can be referenced within Serena +project_name: "hub-insurance" + + +# list of languages for which language servers are started; choose from: +# al angular ansible bash clojure +# cpp cpp_ccls crystal csharp csharp_omnisharp +# dart elixir elm erlang fortran +# fsharp go groovy haskell haxe +# hlsl html java json julia +# kotlin lean4 lua luau markdown +# matlab msl nix ocaml pascal +# perl php php_phpactor powershell python +# python_jedi python_ty r rego ruby +# ruby_solargraph rust scala scss solidity +# svelte swift systemverilog terraform toml +# typescript typescript_vts vue yaml zig +# (This list may be outdated. For the current list, see values of Language enum here: +# https://github.com/oraios/serena/blob/main/src/solidlsp/ls_config.py +# For some languages, there are alternative language servers, e.g. csharp_omnisharp, ruby_solargraph.) +# Note: +# - For C, use cpp +# - For JavaScript, use typescript +# - For Angular projects, use angular (subsumes typescript+html; requires `npm install` in the project root) +# - For Svelte projects, use svelte (subsumes typescript/javascript for .svelte projects; requires npm) +# - For SCSS / Sass / plain CSS, use scss (some-sass-language-server handles all three) +# - For Free Pascal/Lazarus, use pascal +# Special requirements: +# Some languages require additional setup/installations. +# See here for details: https://oraios.github.io/serena/01-about/020_programming-languages.html#language-servers +# When using multiple languages, the first language server that supports a given file will be used for that file. +# The first language is the default language and the respective language server will be used as a fallback. +# Note that when using the JetBrains backend, language servers are not used and this list is correspondingly ignored. +languages: +- php + +# the encoding used by text files in the project +# For a list of possible encodings, see https://docs.python.org/3.11/library/codecs.html#standard-encodings +encoding: "utf-8" + +# line ending convention to use when writing source files. +# Possible values: unset (use global setting), "lf", "crlf", or "native" (platform default) +# This does not affect Serena's own files (e.g. memories and configuration files), which always use native line endings. +line_ending: + +# The language backend to use for this project. +# If not set, the global setting from serena_config.yml is used. +# Valid values: LSP, JetBrains +# Note: the backend is fixed at startup. If a project with a different backend +# is activated post-init, an error will be returned. +language_backend: + +# whether to use project's .gitignore files to ignore files +ignore_all_files_in_gitignore: true + +# advanced configuration option allowing to configure language server-specific options. +# Maps the language key to the options. +# Have a look at the docstring of the constructors of the LS implementations within solidlsp (e.g., for C# or PHP) to see which options are available. +# No documentation on options means no options are available. +ls_specific_settings: {} + +# list of additional workspace folder paths for cross-package reference support (e.g. in monorepos). +# Paths can be absolute or relative to the project root. +# Each folder is registered as an LSP workspace folder, enabling language servers to discover +# symbols and references across package boundaries. +# Currently supported for: TypeScript. +# Example: +# additional_workspace_folders: +# - ../sibling-package +# - ../shared-lib +additional_workspace_folders: [] + +# list of additional paths to ignore in this project. +# Same syntax as gitignore, so you can use * and **. +# Note: global ignored_paths from serena_config.yml are also applied additively. +ignored_paths: [] + +# whether the project is in read-only mode +# If set to true, all editing tools will be disabled and attempts to use them will result in an error +# Added on 2025-04-18 +read_only: false + +# list of tool names to exclude. +# This extends the existing exclusions (e.g. from the global configuration) +# Find the list of tools here: https://oraios.github.io/serena/01-about/035_tools.html +excluded_tools: [] + +# list of tools to include that would otherwise be disabled (particularly optional tools that are disabled by default). +# This extends the existing inclusions (e.g. from the global configuration). +# Find the list of tools here: https://oraios.github.io/serena/01-about/035_tools.html +included_optional_tools: [] + +# fixed set of tools to use as the base tool set (if non-empty), replacing Serena's default set of tools. +# This cannot be combined with non-empty excluded_tools or included_optional_tools. +# Find the list of tools here: https://oraios.github.io/serena/01-about/035_tools.html +fixed_tools: [] + +# list of mode names that are to be activated by default, overriding the setting in the global configuration. +# The full set of modes to be activated is base_modes (from global config) + default_modes + added_modes. +# If the setting is undefined/empty, the default_modes from the global configuration (serena_config.yml) apply. +# Otherwise, this overrides the setting from the global configuration (serena_config.yml). +# Therefore, you can set this to [] if you do not want the default modes defined in the global config to apply +# for this project. +# This setting can, in turn, be overridden by CLI parameters (--mode). +# See https://oraios.github.io/serena/02-usage/050_configuration.html#modes +default_modes: + +# list of mode names to be activated additionally for this project, e.g. ["query-projects"] +# The full set of modes to be activated is base_modes (from global config) + default_modes + added_modes. +# See https://oraios.github.io/serena/02-usage/050_configuration.html#modes +added_modes: + +# initial prompt for the project. It will always be given to the LLM upon activating the project +# (contrary to the memories, which are loaded on demand). +initial_prompt: "" + +# time budget (seconds) per tool call for the retrieval of additional symbol information +# such as docstrings or parameter information. +# This overrides the corresponding setting in the global configuration; see the documentation there. +# If null or missing, use the setting from the global configuration. +symbol_info_budget: + +# list of regex patterns which, when matched, mark a memory entry as read‑only. +# Extends the list from the global configuration, merging the two lists. +read_only_memory_patterns: [] + +# list of regex patterns for memories to completely ignore. +# Matching memories will not appear in list_memories or activate_project output +# and cannot be accessed via read_memory or write_memory. +# To access ignored memory files, use the read_file tool on the raw file path. +# Extends the list from the global configuration, merging the two lists. +# Example: ["_archive/.*", "_episodes/.*"] +ignored_memory_patterns: [] diff --git a/wp-content/database/.ht.sqlite b/wp-content/database/.ht.sqlite index d0558a6782adc6830efd19d9e18c8feb3a12f804..3df1a232de79746e94bfd11d7c6be5232e48f6a6 100644 GIT binary patch delta 3631 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