Last Updated: April 19, 2026
Claude.ai 的记忆系统由三个互相配合的层组成,从自动化到手动控制形成了一个完整的记忆管理栈。与 Claude Code 的 CLAUDE.md + Auto Memory + Auto Dream 体系不同,Claude.ai 的记忆更依赖平台层的自动化处理,用户的直接控制力相对有限。
After setting up Tailscale Funnel to publicly expose self-hosted services (Home Assistant, Nextcloud), certain devices couldn't access the Funnel URLs (https://homelab.taile97128.ts.net and https://homelab.taile97128.ts.net:8443), while others worked fine.
Why?
How to clean up?
Awesome — we’ll cover the .github/ folder from a reader’s POV: what it is, how it changes what you see on GitHub, and how to quickly make sense of it in any repo.
What the .github/ folder is • Purpose: holds GitHub-specific config (templates, automation, repo metadata). It doesn’t ship in packages or affect runtime code. • Scope: affects issues, PRs, Discussions, security disclosures, CI (GitHub Actions), and repo presentation.
How it changes your experience • Issues/PRs: you’ll see structured forms or prefilled text when opening issues/PRs. • Automation: PRs may auto-label, auto-assign reviewers, run checks/tests, or block merges. • Docs & policies: contribution rules, code of conduct, and security reporting paths show up in dedicated UI entries.
Great question 👍. A pyproject.toml file looks intimidating at first, but it’s just a TOML-formatted config. The trick is to know the sections that matter.
⸻
How to Read a pyproject.toml
[build-system] requires = ["setuptools>=61.0"]
| Category | File / Directory | Purpose |
|---|---|---|
| Configuration & Build | .gitignore |
Specifies files/folders Git should ignore. |
| Configuration & Build | .pre-commit-config.yaml |
Defines linting/formatting hooks for pre-commit. |
| Configuration & Build | .pylintrc |
Config file for pylint (style/linting rules). |
| Configuration & Build | tox.ini |
Automates testing across multiple environments. |
| Configuration & Build | pyproject.toml |
Defines packaging, dependencies, and build system. |
| Configuration & Build | Dockerfile |
Provides containerized build/runti |
| #!/bin/bash | |
| # === Cache Cleanup Script === | |
| # Cleans caches for Homebrew, UV, Hugging Face, and NPM | |
| # Usage: bash cleanup.sh [options] | |
| # Options: | |
| # -a, --all Clean all caches | |
| # -b, --brew Clean Homebrew cache | |
| # -u, --uv Clean UV cache | |
| # -h, --huggingface Clean Hugging Face cache |