HEX
Server: LiteSpeed
System: Linux houston.panomity.com 6.8.0-100-generic #100-Ubuntu SMP PREEMPT_DYNAMIC Tue Jan 13 16:40:06 UTC 2026 x86_64
User: nudepix (1011)
PHP: 7.4.33
Disabled: pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wifcontinued,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_get_handler,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority,pcntl_async_signals,pcntl_unshare,
Upload Files
File: /home/kiwerkzeuge.de/speaches/CLAUDE.md
- **Always** use type hints for function/method parameters and return types.
- Use latest type hinting format (Python 3.12). For example:
  - Use `list[str]` instead of `List[str]`.
  - Use `dict[str, int]` instead of `Dict[str, int]`.
  - Use `tuple[int, ...]` instead of `Tuple[int, ...]`.
  - Use `set[str]` instead of `Set[str]`.
- Prefer using `pathlib` module over `os.path` for file and path manipulations.
- Prefer using `pydantic.BaseModel` over `dataclasses.dataclass` for data validation and serialization.
- Use `logger.exception` for logging exceptions with stack traces instead of `logger.error(f"Error occured: {e}")`
- Use `logger.xxx()` for logging instead of `print()`
- Do not use emojis or any special characters in code comments or log messages.
- Use f-strings for string formatting instead of `str.format()` or concatenation.
- Do not write docsctrings
- Prefer defining functions over classes with methods when state is not needed.
- Use `pydantic_settings.BaseSettings` for configuration settings.
- Always run `ruff format <modified files>` and `ruff check <modified files>` (add `--fix` to `ruff check` to auto-fix some of the issues).
- Use semantic git commit messages (e.g., `feat: add new feature`, `fix: correct a bug`, `docs: update documentation`).