Run two Claude Code accounts simultaneously on macOS without re-authenticating by using separate configuration directories.
- Create Separate Config Directories
mkdir ~/.claude-account1 mkdir ~/.claude-account2
A pattern for building personal knowledge bases using LLMs.
This is an idea file, it is designed to be copy pasted to your own LLM Agent (e.g. OpenAI Codex, Claude Code, OpenCode / Pi, or etc.). Its goal is to communicate the high level idea, but your agent will build out the specifics in collaboration with you.
Most people's experience with LLMs and documents looks like RAG: you upload a collection of files, the LLM retrieves relevant chunks at query time, and generates an answer. This works, but the LLM is rediscovering knowledge from scratch on every question. There's no accumulation. Ask a subtle question that requires synthesizing five documents, and the LLM has to find and piece together the relevant fragments every time. Nothing is built up. NotebookLM, ChatGPT file uploads, and most RAG systems work this way.
| Name | Shell Command Shortcut | |
|---|---|---|
| %UserProfile% | explorer "shell:::{59031a47-3f72-44a7-89c5-5595fe6b30ee}" | |
| %UserProfile%\Desktop | explorer "shell:::{B4BFCC3A-DB2C-424C-B029-7FE99A87C641}" | |
| %UserProfile%\Documents | explorer "shell:::{A8CDFF1C-4878-43be-B5FD-F8091C1C60D0}" | |
| %UserProfile%\Downloads | explorer "shell:::{088e3905-0323-4b02-9826-5d99428e115f}" | |
| %UserProfile%\Pictures | explorer "shell:::{24ad3ad4-a569-4530-98e1-ab02f9417aa8}" | |
| Add Network Location | explorer "shell:::{D4480A50-BA28-11d1-8E75-00C04FA31A86}" | |
| Additional Information | explorer "shell:::{C58C4893-3BE0-4B45-ABB5-A63E4B8C8651}\resultPage" | |
| Advanced Problem Reporting Settings | explorer "shell:::{BB64F8A7-BEE7-4E1A-AB8D-7D8273F7FDB6}\pageAdvSettings" | |
| Advanced sharing settings | explorer "shell:::{8E908FC9-BECC-40f6-915B-F4CA0E70D03D}\Advanced" |
| Filter | Description | Example |
|---|---|---|
| allintext | Searches for occurrences of all the keywords given. | allintext:"keyword" |
| intext | Searches for the occurrences of keywords all at once or one at a time. | intext:"keyword" |
| inurl | Searches for a URL matching one of the keywords. | inurl:"keyword" |
| allinurl | Searches for a URL matching all the keywords in the query. | allinurl:"keyword" |
| intitle | Searches for occurrences of keywords in title all or one. | intitle:"keyword" |
| let hasBlobConstructor = typeof(Blob) !== 'undefined' && (function () { | |
| try { | |
| return Boolean(new Blob()); | |
| } catch (e) { | |
| return false; | |
| } | |
| }()); | |
| let hasArrayBufferViewSupport = hasBlobConstructor && typeof(Uint8Array) !== 'undefined' && (function () { | |
| try { |
The docker-compose command permits the management of multi-container applications. The command has the format:
$ docker-compose [options] [command] [arguments]To list all the sub-commands including a short description of each command, use -h option for help.
$ docker-compose -h