By default, Claude Code stores its configuration data in the ~/.claude directory. All settings, credentials, session history, and plugins are kept under this location. In some cases, keeping these files...
DRA is an open-source command-line utility for downloading assets from GitHub releases. It is commonly used for automation, CI workflows, and system setup tasks. This tutorial explains how to install...
Doxygen is a documentation generation tool widely used for producing technical documentation directly from annotated source code. It supports multiple programming languages including C, C++, C# and Java. Generated documentation...
Reflex is a fast source code search and indexing utility that helps developers locate symbols, definitions, and references within software projects. It builds an index of a repository and provides...
GitHub Linguist is a utility used to identify programming languages within a repository and calculate the percentage of code written in each language. It powers language statistics on GitHub and...
The codespelunker (cs) is a lightweight command-line utility designed for searching and exploring source code repositories. It helps locate definitions, references, comments, and other code patterns across multiple programming languages...
Terminal provides direct access to system commands, package management, and administrative tasks. While often used by advanced users, it can be launched in multiple simple ways. This tutorial provides 3...
When cross-compiling application or working with customized compiler toolchains, it is often necessary to determine the sysroot directory used by the compiler. The sysroot defines the base location for target...
Wasmtime is a fast, secure, and open-source WebAssembly (Wasm) runtime. It is developed by the Bytecode Alliance and designed for running WebAssembly outside the browser in a standards-compliant way. This...
GNU Bison is a widely used parser generator that converts grammar definitions into C programs. It is commonly used in compiler construction and language processing tasks. This tutorial explains how...