<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
  <channel>
    <title>LaoHand Developer Cheatsheet</title>
    <link>https://laohand.com/index.html</link>
    <description>New and updated developer command cheatsheets — Docker, Kubernetes, Git, Linux, databases, languages and more. Find fast, copy directly.</description>
    <language>zh-CN</language>
    <lastBuildDate>Wed, 05 Aug 2026 00:00:00 GMT</lastBuildDate>
    <atom:link href="https://laohand.com/rss.xml" rel="self" type="application/rss+xml" />
  <item>
    <title>Aider Cheatsheet - Open-Source Terminal AI Pair Programming Full Reference</title>
    <link>https://laohand.com/aider.html</link>
    <guid isPermaLink="true">https://laohand.com/aider.html</guid>
    <description>All Aider terminal AI pair-programming commands in one place — from install to model switching, file context to architect mode — organized by scenario. Copy and go. · Sections: Install &amp; Start, Model &amp; Reasoning, Files &amp; Context · e.g. pip install aider-chat, aider, aider src/main.py tests/test_main.py</description>
    <pubDate>Wed, 05 Aug 2026 00:00:00 GMT</pubDate>
    <category>ai-cli</category>
  </item>
  <item>
    <title>Cursor Editor CLI Cheatsheet - AI Editor Command Line &amp; Agent Flags</title>
    <link>https://laohand.com/cursor.html</link>
    <guid isPermaLink="true">https://laohand.com/cursor.html</guid>
    <description>All Cursor editor CLI and Agent commands in one place — from opening files to diff compare, extension management, and Agent calls — organized by scenario. Copy and go. · Sections: Open Files &amp; Folders, Window Management, Diff &amp; Merge · e.g. cursor ., cursor /path/to/file.ts, cursor /path/to/file.ts:42</description>
    <pubDate>Wed, 05 Aug 2026 00:00:00 GMT</pubDate>
    <category>ai-cli</category>
  </item>
  <item>
    <title>Gemini CLI Cheatsheet - Google Terminal AI Agent Full Reference</title>
    <link>https://laohand.com/gemini-cli.html</link>
    <guid isPermaLink="true">https://laohand.com/gemini-cli.html</guid>
    <description>All Gemini CLI terminal AI agent commands in one place — from install &amp; auth to headless exec, approval modes, and MCP/extensions — organized by scenario. Copy and go. · Sections: Install &amp; Auth, Run Modes, Global Flags · e.g. npm install -g @google/gemini-cli, gemini --version, gemini</description>
    <pubDate>Wed, 05 Aug 2026 00:00:00 GMT</pubDate>
    <category>ai-cli</category>
  </item>
  <item>
    <title>Codex CLI Cheatsheet - OpenAI Terminal Coding Agent Full Reference</title>
    <link>https://laohand.com/codex-cli.html</link>
    <guid isPermaLink="true">https://laohand.com/codex-cli.html</guid>
    <description>All Codex CLI terminal coding agent commands in one place — from install &amp; login to non-interactive exec, sandbox approval, and MCP — organized by scenario. Copy and go. · Sections: Install &amp; Auth, Interactive Mode, Non-interactive (codex exec) · e.g. npm install -g @openai/codex, brew install --cask codex, codex --version</description>
    <pubDate>Wed, 05 Aug 2026 00:00:00 GMT</pubDate>
    <category>ai-cli</category>
  </item>
  <item>
    <title>Claude Code CLI Cheatsheet - Anthropic AI Coding Agent Full Reference</title>
    <link>https://laohand.com/claude-code.html</link>
    <guid isPermaLink="true">https://laohand.com/claude-code.html</guid>
    <description>All Claude Code terminal AI coding agent commands in one place — from install &amp; auth to print/resume sessions, permission modes, and MCP — organized by scenario. Copy and go. · Sections: Install &amp; Auth, Launch &amp; Run, CLI Flags · e.g. npm install -g @anthropic-ai/claude-code, claude --version, npm update -g @anthropic-ai/claude-code</description>
    <pubDate>Wed, 05 Aug 2026 00:00:00 GMT</pubDate>
    <category>ai-cli</category>
  </item>
  <item>
    <title>HTTP Methods Cheatsheet - REST/HTTP Verbs &amp; Idempotency</title>
    <link>https://laohand.com/http-methods.html</link>
    <guid isPermaLink="true">https://laohand.com/http-methods.html</guid>
    <description>When designing REST APIs you often wonder PUT vs PATCH, or which is idempotent. Grouped by method semantics, idempotency, safe attributes and status-code pairing, with copy-ready examples. · Sections: Core Methods, Idempotency &amp; Safety, Status Pairing · e.g. GET, POST, PUT</description>
    <pubDate>Sun, 02 Aug 2026 00:00:00 GMT</pubDate>
    <category>reference</category>
  </item>
  <item>
    <title>.dockerignore Cheatsheet - Docker Build Context Ignore Rules</title>
    <link>https://laohand.com/dockerignore.html</link>
    <guid isPermaLink="true">https://laohand.com/dockerignore.html</guid>
    <description>Without a proper .dockerignore the build context ships node_modules and .git into the daemon. Grouped by globs, directory ignores, differences from .gitignore and context slimming, with copy-ready examples. · Sections: Basic Syntax, Glob Patterns, Common Ignores · e.g. node_modules, *.log, tmp/</description>
    <pubDate>Sun, 02 Aug 2026 00:00:00 GMT</pubDate>
    <category>config</category>
  </item>
  <item>
    <title>Env Vars Cheatsheet - .env Config &amp; dotenv Usage</title>
    <link>https://laohand.com/env.html</link>
    <guid isPermaLink="true">https://laohand.com/env.html</guid>
    <description>The format and pitfalls you forget when writing .env or loading config with dotenv, grouped by definition, framework integration and security, with copy-ready examples. · Sections: Definition, Reading, dotenv Usage · e.g. KEY=value, KEY=&quot;value with space&quot;, KEY=&apos;literal $NOT_EXPANDED&apos;</description>
    <pubDate>Sun, 02 Aug 2026 00:00:00 GMT</pubDate>
    <category>config</category>
  </item>
  <item>
    <title>Regex Cheatsheet - Common Patterns &amp; Syntax Reference</title>
    <link>https://laohand.com/regex.html</link>
    <guid isPermaLink="true">https://laohand.com/regex.html</guid>
    <description>The most-used, easiest-to-forget regex syntax in one place: characters, quantifiers, groups, assertions, each with practical examples. Copy directly when tuning validation or matching rules. · Sections: Character Classes, Anchors, Quantifiers · e.g. [abc], [^abc], [a-z]</description>
    <pubDate>Sun, 02 Aug 2026 00:00:00 GMT</pubDate>
    <category>regex</category>
  </item>
  <item>
    <title>SQL Cheatsheet - Common Query Syntax &amp; Examples</title>
    <link>https://laohand.com/sql.html</link>
    <guid isPermaLink="true">https://laohand.com/sql.html</guid>
    <description>The most-used, easiest-to-forget SQL syntax in one place: queries, joins, aggregation, window functions and transactions, with copy-ready examples. · Sections: Basic Query, Filtering &amp; Logic, Aggregation &amp; Grouping · e.g. SELECT * FROM users, SELECT name, age FROM users, SELECT * FROM users WHERE age &gt; 18</description>
    <pubDate>Sun, 02 Aug 2026 00:00:00 GMT</pubDate>
    <category>db</category>
  </item>
  <item>
    <title>curl / wget Cheatsheet - Command-line File Download &amp; HTTP Requests</title>
    <link>https://laohand.com/web-fetch.html</link>
    <guid isPermaLink="true">https://laohand.com/web-fetch.html</guid>
    <description>Downloading files, calling APIs and debugging HTTP — curl and wget are the go-to CLI tools. Grouped by requests, download, auth and debugging, with a side-by-side comparison and copy-ready examples. · Sections: Basic Requests, HTTP Method, Headers &amp; Cookies · e.g. curl https://api.test, curl -O https://x/file.zip, curl -o out.html https://x</description>
    <pubDate>Sun, 02 Aug 2026 00:00:00 GMT</pubDate>
    <category>web</category>
  </item>
  <item>
    <title>.gitignore Cheatsheet - Ignore Patterns &amp; Rules</title>
    <link>https://laohand.com/gitignore.html</link>
    <guid isPermaLink="true">https://laohand.com/gitignore.html</guid>
    <description>The glob syntax and pitfalls you forget when writing .gitignore, grouped by wildcards, directories, negation and global config, with copy-ready examples. · Sections: Basic Syntax, Wildcards &amp; Comments, Dirs &amp; Files · e.g. *.log, build/, /dist</description>
    <pubDate>Sun, 02 Aug 2026 00:00:00 GMT</pubDate>
    <category>vcs</category>
  </item>
  <item>
    <title>Slack Keyboard Shortcuts Cheatsheet</title>
    <link>https://laohand.com/slack-shortcuts.html</link>
    <guid isPermaLink="true">https://laohand.com/slack-shortcuts.html</guid>
    <description>High-frequency Slack collaboration shortcuts organized by Messages, Channels, Navigation, Search, and Formatting. macOS and Windows side-by-side for daily communication. · Sections: Messages, Channels, Navigation · e.g. Enter / Enter, Shift+Enter / Shift+Enter, ↑ / ↑</description>
    <pubDate>Fri, 31 Jul 2026 00:00:00 GMT</pubDate>
    <category>shortcuts</category>
  </item>
  <item>
    <title>Chrome Browser Keyboard Shortcuts Cheatsheet</title>
    <link>https://laohand.com/chrome-shortcuts.html</link>
    <guid isPermaLink="true">https://laohand.com/chrome-shortcuts.html</guid>
    <description>High-frequency Chrome browser shortcuts organized by Tabs, Windows, Browsing, Address Bar, DevTools, and Mouse. macOS and Windows side-by-side for browsing and front-end debugging. · Sections: Tabs, Windows, Browsing · e.g. Cmd+T / Ctrl+T, Cmd+W / Ctrl+W, Cmd+Shift+T / Ctrl+Shift+T</description>
    <pubDate>Fri, 31 Jul 2026 00:00:00 GMT</pubDate>
    <category>shortcuts</category>
  </item>
  <item>
    <title>Windows Keyboard Shortcuts Cheatsheet</title>
    <link>https://laohand.com/windows-shortcuts.html</link>
    <guid isPermaLink="true">https://laohand.com/windows-shortcuts.html</guid>
    <description>High-frequency Windows system shortcuts organized by General, File Explorer, Screenshots, Window Management, System, and Command Line. Quick reference for daily Windows usage. · Sections: General, File Explorer, Screenshots · e.g. Win, Win+S, Win+I</description>
    <pubDate>Fri, 31 Jul 2026 00:00:00 GMT</pubDate>
    <category>shortcuts</category>
  </item>
  <item>
    <title>macOS Keyboard Shortcuts Cheatsheet</title>
    <link>https://laohand.com/macos-shortcuts.html</link>
    <guid isPermaLink="true">https://laohand.com/macos-shortcuts.html</guid>
    <description>High-frequency macOS system shortcuts organized by General, Finder, Screenshots, Window Management, System, and Text Editing. Quick reference for daily Mac usage. · Sections: General, Finder, Screenshots · e.g. Cmd+Space, Cmd+Tab, Cmd+Shift+Tab</description>
    <pubDate>Fri, 31 Jul 2026 00:00:00 GMT</pubDate>
    <category>shortcuts</category>
  </item>
  <item>
    <title>VSCode Keyboard Shortcuts Cheatsheet</title>
    <link>https://laohand.com/vscode-shortcuts.html</link>
    <guid isPermaLink="true">https://laohand.com/vscode-shortcuts.html</guid>
    <description>High-frequency VSCode keyboard shortcuts organized by General, Editing, Navigation, Search, Window Management, and Terminal. macOS and Windows side-by-side for quick reference while coding. · Sections: General, Editing, Navigation · e.g. Cmd+Shift+P / Ctrl+Shift+P, Cmd+P / Ctrl+P, Cmd+Shift+N / Ctrl+Shift+N</description>
    <pubDate>Fri, 31 Jul 2026 00:00:00 GMT</pubDate>
    <category>shortcuts</category>
  </item>
  <item>
    <title>Midjourney Prompts Cheatsheet - AI Image Generation Parameters</title>
    <link>https://laohand.com/midjourney-prompts.html</link>
    <guid isPermaLink="true">https://laohand.com/midjourney-prompts.html</guid>
    <description>Midjourney AI art prompts and parameters organized by Basics, Style, Composition, Lighting, Negative &amp; Weights, and Advanced. Combine parameters and generate. · Sections: Basic Parameters (--ar/--v/--q/--n), Style Keywords (photorealistic/anime/oil painting), Composition &amp; Camera (close-up/wide angle/aerial) · e.g. --ar 16:9, --ar 9:16, --ar 1:1</description>
    <pubDate>Fri, 31 Jul 2026 00:00:00 GMT</pubDate>
    <category>ai-prompt</category>
  </item>
  <item>
    <title>Claude Prompts Cheatsheet - Claude AI Prompt Writing Techniques</title>
    <link>https://laohand.com/claude-prompts.html</link>
    <guid isPermaLink="true">https://laohand.com/claude-prompts.html</guid>
    <description>Claude prompt templates that leverage 200K context and Constitutional AI, organized by Long Docs, Code, Role-play, Structured Output, Multi-turn, and Safety. Copy and go. · Sections: Long Document Processing (200K Context), Code Generation &amp; Analysis, Role-play &amp; System Prompts · e.g. Read the following long document and answer the question. Document:
{long doc}

Question: {question}, Compare the following two long documents across structure, content, and viewpoints:
Doc A: {doc A}
Doc B: {doc B}, Distill the following 50-page meeting notes into an executive summary with: key decisions, action items, owners, deadlines:
{notes}</description>
    <pubDate>Fri, 31 Jul 2026 00:00:00 GMT</pubDate>
    <category>ai-prompt</category>
  </item>
  <item>
    <title>ChatGPT Prompts Cheatsheet - Effective Prompt Writing Techniques</title>
    <link>https://laohand.com/chatgpt-prompts.html</link>
    <guid isPermaLink="true">https://laohand.com/chatgpt-prompts.html</guid>
    <description>Essential ChatGPT prompt templates organized by Role Setting, Structured Output, Code, Text Processing, Few-shot, and Chain of Thought. Copy a template, fill the variables, and ship. · Sections: Role Setting (System Role), Structured Output (JSON/Table/Markdown), Code (Generate/Review/Explain/Refactor) · e.g. You are a senior {domain} expert with 10+ years of experience. Answer the following in a professional yet accessible way: {question}, As a {role}, complete the following task strictly following {standard/spec}: {task}, Your identity is {role}, your goal is {goal}, your constraints are {constraints}. Begin: {input}</description>
    <pubDate>Fri, 31 Jul 2026 00:00:00 GMT</pubDate>
    <category>ai-prompt</category>
  </item>
  <item>
    <title>Date &amp; Time Format Cheatsheet - Date Formatting &amp; Timestamp Reference</title>
    <link>https://laohand.com/datetime.html</link>
    <guid isPermaLink="true">https://laohand.com/datetime.html</guid>
    <description>All essential Date &amp; Time Format commands organized by use case, with 50+ entries you can copy and run directly. Find the right command fast when you need it. · Sections: strftime Format Specifiers, ISO 8601 Standard, Timezone &amp; Offset · e.g. %Y, %y, %m</description>
    <pubDate>Tue, 21 Jul 2026 00:00:00 GMT</pubDate>
    <category>reference</category>
  </item>
  <item>
    <title>CIDR Cheatsheet - Subnet Mask &amp; IP Address Reference</title>
    <link>https://laohand.com/cidr.html</link>
    <guid isPermaLink="true">https://laohand.com/cidr.html</guid>
    <description>All essential CIDR commands organized by use case, with 34+ entries you can copy and run directly. Find the right command fast when you need it. · Sections: CIDR Notation Basics, Subnet Mask Reference, Common Subnet Sizes · e.g. 192.168.1.0/24, IP/前缀, /24</description>
    <pubDate>Tue, 21 Jul 2026 00:00:00 GMT</pubDate>
    <category>reference</category>
  </item>
  <item>
    <title>RESTful API Cheatsheet - REST API Design Reference</title>
    <link>https://laohand.com/rest-api.html</link>
    <guid isPermaLink="true">https://laohand.com/rest-api.html</guid>
    <description>All essential RESTful API commands organized by use case, with 46+ entries you can copy and run directly. Find the right command fast when you need it. · Sections: URL Design Spec, HTTP Methods, Common Status Codes · e.g. /api/v1/users, /api/v1/users/123, /api/v1/users/123/orders</description>
    <pubDate>Tue, 21 Jul 2026 00:00:00 GMT</pubDate>
    <category>reference</category>
  </item>
  <item>
    <title>SemVer Cheatsheet - Semantic Versioning Reference</title>
    <link>https://laohand.com/semver.html</link>
    <guid isPermaLink="true">https://laohand.com/semver.html</guid>
    <description>All essential SemVer commands organized by use case, with 33+ entries you can copy and run directly. Find the right command fast when you need it. · Sections: Version Number Structure, Pre-release &amp; Build Metadata, Version Comparison Operators · e.g. MAJOR.MINOR.PATCH, 1.2.3, MAJOR：不兼容的 API 变更</description>
    <pubDate>Tue, 21 Jul 2026 00:00:00 GMT</pubDate>
    <category>reference</category>
  </item>
  <item>
    <title>ISO 639-1 Cheatsheet - Language Code Reference</title>
    <link>https://laohand.com/iso-639-1.html</link>
    <guid isPermaLink="true">https://laohand.com/iso-639-1.html</guid>
    <description>All essential ISO 639-1 commands organized by use case, with 49+ entries you can copy and run directly. Find the right command fast when you need it. · Sections: Asian Languages, European Languages, Middle East &amp; African Languages · e.g. zh, zh-CN, zh-TW</description>
    <pubDate>Tue, 21 Jul 2026 00:00:00 GMT</pubDate>
    <category>reference</category>
  </item>
  <item>
    <title>Screen Resolution &amp; Aspect Ratio Cheatsheet - Device Resolution Reference</title>
    <link>https://laohand.com/aspect-ratio.html</link>
    <guid isPermaLink="true">https://laohand.com/aspect-ratio.html</guid>
    <description>All essential Screen Resolution &amp; Aspect Ratio commands organized by use case, with 38+ entries you can copy and run directly. Find the right command fast when you need it. · Sections: Phone Resolutions, Tablet Resolutions, Laptop Resolutions · e.g. 320 × 480, 640 × 960, 750 × 1334</description>
    <pubDate>Tue, 21 Jul 2026 00:00:00 GMT</pubDate>
    <category>reference</category>
  </item>
  <item>
    <title>Emoji Unicode Cheatsheet - Emoji Encoding Reference</title>
    <link>https://laohand.com/emoji-unicode.html</link>
    <guid isPermaLink="true">https://laohand.com/emoji-unicode.html</guid>
    <description>All essential Emoji Unicode commands organized by use case, with 48+ entries you can copy and run directly. Find the right command fast when you need it. · Sections: Smileys &amp; Emotion, Gestures, Hearts · e.g. 😀 U+1F600, 😂 U+1F602, 😊 U+1F60A</description>
    <pubDate>Tue, 21 Jul 2026 00:00:00 GMT</pubDate>
    <category>reference</category>
  </item>
  <item>
    <title>HTML Character Entities Cheatsheet - HTML Special Characters Reference</title>
    <link>https://laohand.com/html-char-entities.html</link>
    <guid isPermaLink="true">https://laohand.com/html-char-entities.html</guid>
    <description>All essential HTML Character Entities commands organized by use case, with 38+ entries you can copy and run directly. Find the right command fast when you need it. · Sections: Basic Characters, Common Symbols, Currency Symbols · e.g. &amp;amp; 或 &amp;#38;, &amp;lt; 或 &amp;#60;, &amp;gt; 或 &amp;#62;</description>
    <pubDate>Tue, 21 Jul 2026 00:00:00 GMT</pubDate>
    <category>reference</category>
  </item>
  <item>
    <title>MIME Types Cheatsheet - Content-Type Reference</title>
    <link>https://laohand.com/mime-types.html</link>
    <guid isPermaLink="true">https://laohand.com/mime-types.html</guid>
    <description>All essential MIME Types commands organized by use case, with 47+ entries you can copy and run directly. Find the right command fast when you need it. · Sections: Text Types, Image Types, Audio/Video Types · e.g. text/html, text/css, text/javascript</description>
    <pubDate>Tue, 21 Jul 2026 00:00:00 GMT</pubDate>
    <category>reference</category>
  </item>
  <item>
    <title>ASCII Code Cheatsheet - ASCII Character Encoding Reference</title>
    <link>https://laohand.com/ascii-code.html</link>
    <guid isPermaLink="true">https://laohand.com/ascii-code.html</guid>
    <description>All essential ASCII Code commands organized by use case, with 61+ entries you can copy and run directly. Find the right command fast when you need it. · Sections: Control Characters (0-31, 127), Printable Characters (32-126), Common Control Characters · e.g. 0 (0x00), 3 (0x03), 4 (0x04)</description>
    <pubDate>Tue, 21 Jul 2026 00:00:00 GMT</pubDate>
    <category>reference</category>
  </item>
  <item>
    <title>LaTeX Cheatsheet - LaTeX Academic Typesetting Reference</title>
    <link>https://laohand.com/latex.html</link>
    <guid isPermaLink="true">https://laohand.com/latex.html</guid>
    <description>All essential LaTeX commands organized by use case, with 45+ entries you can copy and run directly. Find the right command fast when you need it. · Sections: Document Structure, Text Formats, Math Formulas · e.g. \documentclass{article}, \usepackage[utf8]{inputenc}, \usepackage{amsmath}</description>
    <pubDate>Tue, 21 Jul 2026 00:00:00 GMT</pubDate>
    <category>latex</category>
  </item>
  <item>
    <title>Markdown Cheatsheet - Markdown Syntax Reference</title>
    <link>https://laohand.com/markdown.html</link>
    <guid isPermaLink="true">https://laohand.com/markdown.html</guid>
    <description>Essential Markdown syntax for documentation writing. Organized by functionality from headings to tables. Reference directly when writing READMEs and docs. · Sections: Heading, Text Style, List · e.g. # H1, ## H2, ### H3</description>
    <pubDate>Tue, 21 Jul 2026 00:00:00 GMT</pubDate>
    <category>reference</category>
  </item>
  <item>
    <title>HTTP Status Codes Cheatsheet - HTTP Response Status Code Reference</title>
    <link>https://laohand.com/http-status-codes.html</link>
    <guid isPermaLink="true">https://laohand.com/http-status-codes.html</guid>
    <description>All essential HTTP Status Codes commands organized by use case, with 38+ entries you can copy and run directly. Find the right command fast when you need it. · Sections: 1xx Informational, 2xx Success, 3xx Redirection · e.g. 100 Continue, 101 Switching Protocols, 200 OK</description>
    <pubDate>Tue, 21 Jul 2026 00:00:00 GMT</pubDate>
    <category>reference</category>
  </item>
  <item>
    <title>Regular Expressions Cheatsheet - Regex Syntax Reference</title>
    <link>https://laohand.com/regex-syntax.html</link>
    <guid isPermaLink="true">https://laohand.com/regex-syntax.html</guid>
    <description>Essential regex syntax at your fingertips. Organized by functionality from metacharacters to assertions. Reference directly when writing regex patterns. · Sections: Character Class, Quantifier, Anchor &amp; Alternation · e.g. ., \d  \D, \w  \W</description>
    <pubDate>Tue, 21 Jul 2026 00:00:00 GMT</pubDate>
    <category>reference</category>
  </item>
  <item>
    <title>INI Cheatsheet - INI Configuration Reference</title>
    <link>https://laohand.com/ini.html</link>
    <guid isPermaLink="true">https://laohand.com/ini.html</guid>
    <description>All essential INI commands organized by use case, with 52+ entries you can copy and run directly. Find the right command fast when you need it. · Sections: Basic Syntax, Data Types, Common Applications · e.g. ; this is a comment, # this is also a comment, [section]</description>
    <pubDate>Tue, 21 Jul 2026 00:00:00 GMT</pubDate>
    <category>ini</category>
  </item>
  <item>
    <title>TOML Cheatsheet - TOML Configuration Reference</title>
    <link>https://laohand.com/toml.html</link>
    <guid isPermaLink="true">https://laohand.com/toml.html</guid>
    <description>All essential TOML commands organized by use case, with 38+ entries you can copy and run directly. Find the right command fast when you need it. · Sections: Basic Types, Date &amp; Time, Strings · e.g. # this is a comment, key = &quot;value&quot;, key = &apos;value&apos;</description>
    <pubDate>Tue, 21 Jul 2026 00:00:00 GMT</pubDate>
    <category>toml</category>
  </item>
  <item>
    <title>JSON Cheatsheet</title>
    <link>https://laohand.com/json.html</link>
    <guid isPermaLink="true">https://laohand.com/json.html</guid>
    <description>JSON syntax on one page. Reference when writing config files and API data. · Sections: Data Types, Object, Array · e.g. &quot;string&quot;, 123 / -456 / 3.14, true / false</description>
    <pubDate>Tue, 21 Jul 2026 00:00:00 GMT</pubDate>
    <category>json</category>
  </item>
  <item>
    <title>YAML Cheatsheet - YAML Syntax Reference</title>
    <link>https://laohand.com/yaml.html</link>
    <guid isPermaLink="true">https://laohand.com/yaml.html</guid>
    <description>All essential YAML commands organized by use case, with 54+ entries you can copy and run directly. Find the right command fast when you need it. · Sections: Basic Syntax, Data Types, List / Array · e.g. key: value, # comment, ---</description>
    <pubDate>Tue, 21 Jul 2026 00:00:00 GMT</pubDate>
    <category>yaml</category>
  </item>
  <item>
    <title>Vite Cheatsheet - Vite Build Tool Command Reference</title>
    <link>https://laohand.com/vite.html</link>
    <guid isPermaLink="true">https://laohand.com/vite.html</guid>
    <description>Essential Vite build tool commands for the complete workflow from project creation to production build. Copy directly for your projects. · Sections: Project Creation &amp; Init, Dev Server, Production Build · e.g. npm create vite@latest, npm create vite@latest my-app -- --template react-ts, npm create vite@latest my-app -- --template vanilla-ts</description>
    <pubDate>Tue, 21 Jul 2026 00:00:00 GMT</pubDate>
    <category>devtools</category>
  </item>
  <item>
    <title>Jest Cheatsheet - Testing Framework</title>
    <link>https://laohand.com/jest.html</link>
    <guid isPermaLink="true">https://laohand.com/jest.html</guid>
    <description>All essential Jest commands organized by use case, with 44+ entries you can copy and run directly. Find the right command fast when you need it. · Sections: Basic Tests, Matchers, Async Tests · e.g. test(&quot;desc&quot;, () =&gt; { expect(1 + 2).toBe(3) }), it(&quot;desc&quot;, fn), describe(&quot;module&quot;, () =&gt; { it(...) })</description>
    <pubDate>Tue, 21 Jul 2026 00:00:00 GMT</pubDate>
    <category>node</category>
  </item>
  <item>
    <title>Webpack Cheatsheet - Frontend Build Tool Configuration Reference</title>
    <link>https://laohand.com/webpack.html</link>
    <guid isPermaLink="true">https://laohand.com/webpack.html</guid>
    <description>All essential Webpack commands organized by use case, with 45+ entries you can copy and run directly. Find the right command fast when you need it. · Sections: Entry &amp; Output, Loaders, Plugins · e.g. entry: &quot;./src/index.js&quot;, entry: { app: &quot;./src/app.js&quot;, vendor: &quot;./src/vendor.js&quot; }, output.filename: &quot;[name].[contenthash].js&quot;</description>
    <pubDate>Tue, 21 Jul 2026 00:00:00 GMT</pubDate>
    <category>node</category>
  </item>
  <item>
    <title>npm Cheatsheet - Node.js Package Manager Reference</title>
    <link>https://laohand.com/npm.html</link>
    <guid isPermaLink="true">https://laohand.com/npm.html</guid>
    <description>All essential npm commands organized by use case, with 41+ entries you can copy and run directly. Find the right command fast when you need it. · Sections: Project Init, Install &amp; Uninstall, Version Management · e.g. npm init -y, npm init, npm init &lt;initializer&gt; [args]</description>
    <pubDate>Tue, 21 Jul 2026 00:00:00 GMT</pubDate>
    <category>node</category>
  </item>
  <item>
    <title>GitLab Cheatsheet - Code Hosting Platform Shortcut Reference</title>
    <link>https://laohand.com/gitlab.html</link>
    <guid isPermaLink="true">https://laohand.com/gitlab.html</guid>
    <description>All essential GitLab commands organized by use case, with 51+ entries you can copy and run directly. Find the right command fast when you need it. · Sections: Global Navigation, Repository Browsing, Code Browsing · e.g. G then D, G then A, G then M</description>
    <pubDate>Tue, 21 Jul 2026 00:00:00 GMT</pubDate>
    <category>devtools</category>
  </item>
  <item>
    <title>GitHub Cheatsheet - Code Hosting Platform Shortcut Reference</title>
    <link>https://laohand.com/github.html</link>
    <guid isPermaLink="true">https://laohand.com/github.html</guid>
    <description>All essential GitHub commands organized by use case, with 50+ entries you can copy and run directly. Find the right command fast when you need it. · Sections: Global Navigation, Repository Browsing, Code Browsing · e.g. G then N, G then I, G then P</description>
    <pubDate>Tue, 21 Jul 2026 00:00:00 GMT</pubDate>
    <category>devtools</category>
  </item>
  <item>
    <title>Android Studio Cheatsheet - Android IDE Shortcut Reference</title>
    <link>https://laohand.com/android-studio.html</link>
    <guid isPermaLink="true">https://laohand.com/android-studio.html</guid>
    <description>All essential Android Studio commands organized by use case, with 52+ entries you can copy and run directly. Find the right command fast when you need it. · Sections: Kotlin/Java Development, Layout Editor, Gradle Build · e.g. Cmd + N, Cmd + Option + T, Cmd + Option + M</description>
    <pubDate>Tue, 21 Jul 2026 00:00:00 GMT</pubDate>
    <category>devtools</category>
  </item>
  <item>
    <title>PhpStorm Cheatsheet - PHP IDE Shortcut Reference</title>
    <link>https://laohand.com/phpstorm.html</link>
    <guid isPermaLink="true">https://laohand.com/phpstorm.html</guid>
    <description>All essential PhpStorm commands organized by use case, with 47+ entries you can copy and run directly. Find the right command fast when you need it. · Sections: PHP-specific, Laravel-specific, Database Tools · e.g. Cmd + N, Cmd + Option + T, Cmd + Option + M</description>
    <pubDate>Tue, 21 Jul 2026 00:00:00 GMT</pubDate>
    <category>devtools</category>
  </item>
  <item>
    <title>WebStorm Cheatsheet - Frontend IDE Shortcut Reference</title>
    <link>https://laohand.com/webstorm.html</link>
    <guid isPermaLink="true">https://laohand.com/webstorm.html</guid>
    <description>All essential WebStorm commands organized by use case, with 67+ entries you can copy and run directly. Find the right command fast when you need it. · Sections: Basic Editing, Completion &amp; Generation, Navigation &amp; Search · e.g. Cmd + D, Cmd + Y, Cmd + Shift + Enter</description>
    <pubDate>Tue, 21 Jul 2026 00:00:00 GMT</pubDate>
    <category>devtools</category>
  </item>
  <item>
    <title>Sublime Text Cheatsheet - Text Editor Shortcut Reference</title>
    <link>https://laohand.com/sublime-text.html</link>
    <guid isPermaLink="true">https://laohand.com/sublime-text.html</guid>
    <description>All essential Sublime Text commands organized by use case, with 46+ entries you can copy and run directly. Find the right command fast when you need it. · Sections: Basic Editing, Multi-cursor Editing, Navigation &amp; Selection · e.g. Cmd + D, Cmd + Shift + D, Cmd + Shift + K</description>
    <pubDate>Tue, 21 Jul 2026 00:00:00 GMT</pubDate>
    <category>devtools</category>
  </item>
  <item>
    <title>IntelliJ IDEA Cheatsheet - Java IDE Shortcut Reference</title>
    <link>https://laohand.com/intellij-idea.html</link>
    <guid isPermaLink="true">https://laohand.com/intellij-idea.html</guid>
    <description>All essential IntelliJ IDEA commands organized by use case, with 55+ entries you can copy and run directly. Find the right command fast when you need it. · Sections: Code Navigation, Editing &amp; Refactoring, Code Completion · e.g. Cmd+O, Cmd+Shift+O, Cmd+Alt+L</description>
    <pubDate>Tue, 21 Jul 2026 00:00:00 GMT</pubDate>
    <category>intellij-idea</category>
  </item>
  <item>
    <title>Figma Cheatsheet - UI Design Tool Shortcut Reference</title>
    <link>https://laohand.com/figma.html</link>
    <guid isPermaLink="true">https://laohand.com/figma.html</guid>
    <description>All essential Figma commands organized by use case, with 50+ entries you can copy and run directly. Find the right command fast when you need it. · Sections: Tool Switching, Layer Operations, Align &amp; Distribute · e.g. V, F, R</description>
    <pubDate>Tue, 21 Jul 2026 00:00:00 GMT</pubDate>
    <category>figma</category>
  </item>
  <item>
    <title>Chrome DevTools Cheatsheet - Front-end Debugging Reference</title>
    <link>https://laohand.com/chrome-devtools.html</link>
    <guid isPermaLink="true">https://laohand.com/chrome-devtools.html</guid>
    <description>All essential Chrome DevTools commands organized by use case, with 54+ entries you can copy and run directly. Find the right command fast when you need it. · Sections: Shortcuts, Console Commands, Elements Debugging · e.g. F12 or Cmd+Option+I, F12 or Ctrl+Shift+I, Cmd+Option+J</description>
    <pubDate>Tue, 21 Jul 2026 00:00:00 GMT</pubDate>
    <category>chrome-devtools</category>
  </item>
  <item>
    <title>Postman Cheatsheet - API Debugging Tool Reference</title>
    <link>https://laohand.com/postman.html</link>
    <guid isPermaLink="true">https://laohand.com/postman.html</guid>
    <description>All essential Postman commands organized by use case, with 35+ entries you can copy and run directly. Find the right command fast when you need it. · Sections: Request Building, Environment Variables, Test Scripts · e.g. GET {{base_url}}/api/users, POST {{base_url}}/api/users, PUT {{base_url}}/api/users/1</description>
    <pubDate>Tue, 21 Jul 2026 00:00:00 GMT</pubDate>
    <category>postman</category>
  </item>
  <item>
    <title>mitmproxy Cheatsheet - Packet Capture &amp; Debugging Reference</title>
    <link>https://laohand.com/mitmproxy.html</link>
    <guid isPermaLink="true">https://laohand.com/mitmproxy.html</guid>
    <description>All essential mitmproxy commands organized by use case, with 37+ entries you can copy and run directly. Find the right command fast when you need it. · Sections: Startup &amp; Modes, Filter Expressions, Interactive Operations · e.g. mitmproxy, mitmweb, mitmdump</description>
    <pubDate>Tue, 21 Jul 2026 00:00:00 GMT</pubDate>
    <category>mitmproxy</category>
  </item>
  <item>
    <title>XPath Cheatsheet - XML/HTML Selector Syntax Reference</title>
    <link>https://laohand.com/xpath.html</link>
    <guid isPermaLink="true">https://laohand.com/xpath.html</guid>
    <description>All essential XPath commands organized by use case, with 34+ entries you can copy and run directly. Find the right command fast when you need it. · Sections: Basic Paths, Predicate Filtering, Axes · e.g. /, //, .</description>
    <pubDate>Tue, 21 Jul 2026 00:00:00 GMT</pubDate>
    <category>xpath</category>
  </item>
  <item>
    <title>Homebrew Cheatsheet - macOS Package Manager Reference</title>
    <link>https://laohand.com/homebrew.html</link>
    <guid isPermaLink="true">https://laohand.com/homebrew.html</guid>
    <description>All essential Homebrew commands organized by use case, with 38+ entries you can copy and run directly. Find the right command fast when you need it. · Sections: Basics, Cask GUI Apps, Services · e.g. brew install wget, brew uninstall wget, brew update</description>
    <pubDate>Tue, 21 Jul 2026 00:00:00 GMT</pubDate>
    <category>homebrew</category>
  </item>
  <item>
    <title>Pandoc Cheatsheet - Document Conversion Command Reference</title>
    <link>https://laohand.com/pandoc.html</link>
    <guid isPermaLink="true">https://laohand.com/pandoc.html</guid>
    <description>All essential Pandoc commands organized by use case, with 38+ entries you can copy and run directly. Find the right command fast when you need it. · Sections: Basic Conversion, PDF Advanced Options, Templates &amp; Styles · e.g. pandoc input.md -o output.html, pandoc input.md -o output.pdf, pandoc input.md -o output.docx</description>
    <pubDate>Tue, 21 Jul 2026 00:00:00 GMT</pubDate>
    <category>pandoc</category>
  </item>
  <item>
    <title>ChatGPT Cheatsheet - AI Prompt Reference</title>
    <link>https://laohand.com/chatgpt.html</link>
    <guid isPermaLink="true">https://laohand.com/chatgpt.html</guid>
    <description>All essential ChatGPT commands organized by use case, with 35+ entries you can copy and run directly. Find the right command fast when you need it. · Sections: Prompting, Code, Writing · e.g. You are a senior Python engineer..., Act as a product manager with 10 years of experience..., Complete the following task step by step:...</description>
    <pubDate>Tue, 21 Jul 2026 00:00:00 GMT</pubDate>
    <category>chatgpt</category>
  </item>
  <item>
    <title>Emacs Cheatsheet - Emacs Shortcut Reference</title>
    <link>https://laohand.com/emacs.html</link>
    <guid isPermaLink="true">https://laohand.com/emacs.html</guid>
    <description>All essential Emacs commands organized by use case, with 48+ entries you can copy and run directly. Find the right command fast when you need it. · Sections: Files &amp; Buffers, Cursor Movement, Editing · e.g. C-x C-f, C-x C-s, C-x C-w</description>
    <pubDate>Tue, 21 Jul 2026 00:00:00 GMT</pubDate>
    <category>emacs</category>
  </item>
  <item>
    <title>VSCode Cheatsheet - VS Code Shortcut Reference</title>
    <link>https://laohand.com/vscode.html</link>
    <guid isPermaLink="true">https://laohand.com/vscode.html</guid>
    <description>All essential VSCode commands organized by use case, with 44+ entries you can copy and run directly. Find the right command fast when you need it. · Sections: General, Editing, Navigation · e.g. Cmd+Shift+P, Ctrl+Shift+P, Cmd+P</description>
    <pubDate>Tue, 21 Jul 2026 00:00:00 GMT</pubDate>
    <category>vscode</category>
  </item>
  <item>
    <title>PM2 Cheatsheet - Node.js Process Manager Reference</title>
    <link>https://laohand.com/pm2.html</link>
    <guid isPermaLink="true">https://laohand.com/pm2.html</guid>
    <description>All essential PM2 commands organized by use case, with 38+ entries you can copy and run directly. Find the right command fast when you need it. · Sections: Start &amp; Stop, Logs, Monitor &amp; Status · e.g. pm2 start app.js, pm2 start app.js --name &quot;api&quot;, pm2 start app.js -i max</description>
    <pubDate>Tue, 21 Jul 2026 00:00:00 GMT</pubDate>
    <category>node</category>
  </item>
  <item>
    <title>Ruby Cheatsheet - Ruby Syntax &amp; Methods Reference</title>
    <link>https://laohand.com/ruby.html</link>
    <guid isPermaLink="true">https://laohand.com/ruby.html</guid>
    <description>Essential Ruby syntax for daily development, organized by category from basics to advanced features like blocks, modules, and metaprogramming. Copy directly when coding. · Sections: Basics, Array &amp; Hash, Control Flow · e.g. name = &quot;Ruby&quot;, name = &quot;Hello, #{name}&quot;, :symbol</description>
    <pubDate>Tue, 21 Jul 2026 00:00:00 GMT</pubDate>
    <category>ruby</category>
  </item>
  <item>
    <title>Moment.js Cheatsheet - Date &amp; Time</title>
    <link>https://laohand.com/moment.html</link>
    <guid isPermaLink="true">https://laohand.com/moment.html</guid>
    <description>All essential Moment.js commands organized by use case, with 39+ entries you can copy and run directly. Find the right command fast when you need it. · Sections: Creating Dates, Formatting, Manipulating Dates · e.g. moment(), moment(&quot;2024-01-15&quot;), moment(&quot;2024-01-15&quot;, &quot;YYYY-MM-DD&quot;)</description>
    <pubDate>Tue, 21 Jul 2026 00:00:00 GMT</pubDate>
    <category>javascript</category>
  </item>
  <item>
    <title>Sinon Cheatsheet - Test Doubles</title>
    <link>https://laohand.com/sinon.html</link>
    <guid isPermaLink="true">https://laohand.com/sinon.html</guid>
    <description>All essential Sinon commands organized by use case, with 46+ entries you can copy and run directly. Find the right command fast when you need it. · Sections: Spy, Stub, Mock · e.g. sinon.spy(obj, &quot;method&quot;), sinon.spy(fn), spy.calledOnce</description>
    <pubDate>Tue, 21 Jul 2026 00:00:00 GMT</pubDate>
    <category>javascript</category>
  </item>
  <item>
    <title>Chai Cheatsheet - Assertion Library</title>
    <link>https://laohand.com/chai.html</link>
    <guid isPermaLink="true">https://laohand.com/chai.html</guid>
    <description>All essential Chai commands organized by use case, with 44+ entries you can copy and run directly. Find the right command fast when you need it. · Sections: Expect Style (BDD), Should Style (BDD), Assert Style (TDD) · e.g. expect(value).to.equal(expected), expect(value).to.be.a(&quot;string&quot;), expect(array).to.include(item)</description>
    <pubDate>Tue, 21 Jul 2026 00:00:00 GMT</pubDate>
    <category>javascript</category>
  </item>
  <item>
    <title>React Router Cheatsheet - Routing</title>
    <link>https://laohand.com/react-router.html</link>
    <guid isPermaLink="true">https://laohand.com/react-router.html</guid>
    <description>All essential React Router commands organized by use case, with 36+ entries you can copy and run directly. Find the right command fast when you need it. · Sections: Router Setup, Navigation, Route Params · e.g. &lt;BrowserRouter&gt;&lt;App /&gt;&lt;/BrowserRouter&gt;, &lt;Routes&gt;&lt;Route path=&quot;/&quot; element={&lt;Home /&gt;} /&gt;&lt;/Routes&gt;, &lt;Route path=&quot;/users/:id&quot; element={&lt;User /&gt;} /&gt;</description>
    <pubDate>Tue, 21 Jul 2026 00:00:00 GMT</pubDate>
    <category>javascript</category>
  </item>
  <item>
    <title>Redux Cheatsheet - State Management</title>
    <link>https://laohand.com/redux.html</link>
    <guid isPermaLink="true">https://laohand.com/redux.html</guid>
    <description>All essential Redux commands organized by use case, with 37+ entries you can copy and run directly. Find the right command fast when you need it. · Sections: Store Setup, Slice Creation, Actions &amp; Dispatch · e.g. const store = configureStore({ reducer: rootReducer }), configureStore({ reducer: { users: usersReducer, posts: postsReducer } }), configureStore({ middleware: (gdm) =&gt; gdm().concat(logger) })</description>
    <pubDate>Tue, 21 Jul 2026 00:00:00 GMT</pubDate>
    <category>javascript</category>
  </item>
  <item>
    <title>Promise Cheatsheet - Async JavaScript</title>
    <link>https://laohand.com/promise.html</link>
    <guid isPermaLink="true">https://laohand.com/promise.html</guid>
    <description>All essential Promise commands organized by use case, with 36+ entries you can copy and run directly. Find the right command fast when you need it. · Sections: Basics, Consuming Promises, Static Methods · e.g. new Promise((resolve, reject) =&gt; { resolve(value) }), new Promise((resolve, reject) =&gt; { reject(new Error(&quot;fail&quot;)) }), Promise.resolve(value)</description>
    <pubDate>Tue, 21 Jul 2026 00:00:00 GMT</pubDate>
    <category>javascript</category>
  </item>
  <item>
    <title>React Cheatsheet - Hooks &amp; Components</title>
    <link>https://laohand.com/react.html</link>
    <guid isPermaLink="true">https://laohand.com/react.html</guid>
    <description>All essential React commands organized by use case, with 39+ entries you can copy and run directly. Find the right command fast when you need it. · Sections: Core Hooks, Advanced Hooks, Component Patterns · e.g. const [count, setCount] = useState(0), const [user, setUser] = useState({ name: &quot;&quot;, age: 0 }), useEffect(() =&gt; { fetchData() }, [])</description>
    <pubDate>Tue, 21 Jul 2026 00:00:00 GMT</pubDate>
    <category>node</category>
  </item>
  <item>
    <title>Vue.js Cheatsheet - API Reference</title>
    <link>https://laohand.com/vue.html</link>
    <guid isPermaLink="true">https://laohand.com/vue.html</guid>
    <description>All essential Vue.js commands organized by use case, with 46+ entries you can copy and run directly. Find the right command fast when you need it. · Sections: Reactivity Basics, Lifecycle Hooks, Component Communication · e.g. const count = ref(0), count.value++, const state = reactive({ name: &quot;Vue&quot; })</description>
    <pubDate>Tue, 21 Jul 2026 00:00:00 GMT</pubDate>
    <category>node</category>
  </item>
  <item>
    <title>Lodash Cheatsheet - Utility Functions</title>
    <link>https://laohand.com/lodash.html</link>
    <guid isPermaLink="true">https://laohand.com/lodash.html</guid>
    <description>All essential Lodash commands organized by use case, with 44+ entries you can copy and run directly. Find the right command fast when you need it. · Sections: Array, Object, String · e.g. _.map(arr, (n) =&gt; n * 2), _.filter(arr, (n) =&gt; n &gt; 0), _.reduce(arr, (sum, n) =&gt; sum + n, 0)</description>
    <pubDate>Tue, 21 Jul 2026 00:00:00 GMT</pubDate>
    <category>node</category>
  </item>
  <item>
    <title>TypeScript Cheatsheet - Type Types &amp; Generics Reference</title>
    <link>https://laohand.com/typescript.html</link>
    <guid isPermaLink="true">https://laohand.com/typescript.html</guid>
    <description>All the TypeScript types and syntax you need for daily development — from basic types to advanced generics, organized by category, ready to copy into your code. · Sections: Basic Types, Interfaces &amp; Types, Generics · e.g. let name: string = &quot;John&quot;, let age: number = 30, let isActive: boolean = true</description>
    <pubDate>Tue, 21 Jul 2026 00:00:00 GMT</pubDate>
    <category>node</category>
  </item>
  <item>
    <title>MATLAB Cheatsheet - MATLAB Commands &amp; Matrix Operations Reference</title>
    <link>https://laohand.com/matlab.html</link>
    <guid isPermaLink="true">https://laohand.com/matlab.html</guid>
    <description>All essential MATLAB commands organized by use case, with 83+ entries you can copy and run directly. Find the right command fast when you need it. · Sections: Matrix Creation, Matrix Operations, Data Visualization · e.g. A = [1 2 3; 4 5 6; 7 8 9], B = [1; 2; 3], C = [1, 2, 3]</description>
    <pubDate>Tue, 21 Jul 2026 00:00:00 GMT</pubDate>
    <category>language</category>
  </item>
  <item>
    <title>EJS Cheatsheet - EJS Template Engine Reference</title>
    <link>https://laohand.com/ejs.html</link>
    <guid isPermaLink="true">https://laohand.com/ejs.html</guid>
    <description>All essential EJS commands organized by use case, with 35+ entries you can copy and run directly. Find the right command fast when you need it. · Sections: Basic Syntax, Conditionals, Loops · e.g. &lt;% code %&gt;, &lt;%= value %&gt;, &lt;%- value %&gt;</description>
    <pubDate>Tue, 21 Jul 2026 00:00:00 GMT</pubDate>
    <category>language</category>
  </item>
  <item>
    <title>Dart Cheatsheet - Dart Syntax &amp; Flutter Reference</title>
    <link>https://laohand.com/dart.html</link>
    <guid isPermaLink="true">https://laohand.com/dart.html</guid>
    <description>All essential Dart commands organized by use case, with 43+ entries you can copy and run directly. Find the right command fast when you need it. · Sections: Variables &amp; Types, Functions &amp; Closures, Classes &amp; Mixins · e.g. var name = &apos;Dart&apos;;, String name = &apos;Dart&apos;;, final name = &apos;Dart&apos;;</description>
    <pubDate>Tue, 21 Jul 2026 00:00:00 GMT</pubDate>
    <category>dart</category>
  </item>
  <item>
    <title>C# Cheatsheet - C# Syntax &amp; .NET Reference</title>
    <link>https://laohand.com/csharp.html</link>
    <guid isPermaLink="true">https://laohand.com/csharp.html</guid>
    <description>All essential C# commands organized by use case, with 39+ entries you can copy and run directly. Find the right command fast when you need it. · Sections: Classes &amp; Interfaces, Properties &amp; Methods, LINQ Queries · e.g. public class MyClass { }, public interface IMyInterface { void Method(); }, public class Derived : Base, IMyInterface { }</description>
    <pubDate>Tue, 21 Jul 2026 00:00:00 GMT</pubDate>
    <category>csharp</category>
  </item>
  <item>
    <title>C++ Cheatsheet - C++ Syntax &amp; STL Reference</title>
    <link>https://laohand.com/cpp.html</link>
    <guid isPermaLink="true">https://laohand.com/cpp.html</guid>
    <description>All essential C++ commands organized by use case, with 44+ entries you can copy and run directly. Find the right command fast when you need it. · Sections: Classes &amp; Objects, STL Containers, Smart Pointers · e.g. class MyClass { public: MyClass(); ~MyClass(); };, struct MyStruct { int x; int y; };, MyClass obj;</description>
    <pubDate>Tue, 21 Jul 2026 00:00:00 GMT</pubDate>
    <category>cpp</category>
  </item>
  <item>
    <title>C Cheatsheet - C Language Syntax &amp; Pointer Reference</title>
    <link>https://laohand.com/c.html</link>
    <guid isPermaLink="true">https://laohand.com/c.html</guid>
    <description>All essential C commands organized by use case, with 58+ entries you can copy and run directly. Find the right command fast when you need it. · Sections: Data Types &amp; Variables, Control Flow, Pointers &amp; Arrays · e.g. int x = 10;, float pi = 3.14f;, double e = 2.718;</description>
    <pubDate>Tue, 21 Jul 2026 00:00:00 GMT</pubDate>
    <category>c</category>
  </item>
  <item>
    <title>GraphQL Cheatsheet - GraphQL Query Language &amp; API Reference</title>
    <link>https://laohand.com/graphql.html</link>
    <guid isPermaLink="true">https://laohand.com/graphql.html</guid>
    <description>All essential GraphQL commands organized by use case, with 42+ entries you can copy and run directly. Find the right command fast when you need it. · Sections: Query, Mutation, Subscription · e.g. { user { id name } }, { user(id: 1) { name } }, { users { id name posts { title } } }</description>
    <pubDate>Tue, 21 Jul 2026 00:00:00 GMT</pubDate>
    <category>graphql</category>
  </item>
  <item>
    <title>jQuery Cheatsheet - jQuery API &amp; DOM Manipulation Reference</title>
    <link>https://laohand.com/jquery.html</link>
    <guid isPermaLink="true">https://laohand.com/jquery.html</guid>
    <description>All essential jQuery commands organized by use case, with 41+ entries you can copy and run directly. Find the right command fast when you need it. · Sections: Selectors, DOM Manipulation, Event Binding · e.g. $(&quot;div&quot;),  $(&quot;.class&quot;), $(&quot;#id&quot;)</description>
    <pubDate>Tue, 21 Jul 2026 00:00:00 GMT</pubDate>
    <category>jquery</category>
  </item>
  <item>
    <title>ES6+ Cheatsheet - ES6+ JavaScript Syntax Reference</title>
    <link>https://laohand.com/es6.html</link>
    <guid isPermaLink="true">https://laohand.com/es6.html</guid>
    <description>All essential ES6+ commands organized by use case, with 44+ entries you can copy and run directly. Find the right command fast when you need it. · Sections: Variables &amp; Functions, Destructuring, Asynchronous · e.g. let x = 1, const PI = 3.14, const fn = (x) =&gt; x * 2</description>
    <pubDate>Tue, 21 Jul 2026 00:00:00 GMT</pubDate>
    <category>es6</category>
  </item>
  <item>
    <title>Express.js Cheatsheet - Express Middleware &amp; API Reference</title>
    <link>https://laohand.com/express.html</link>
    <guid isPermaLink="true">https://laohand.com/express.html</guid>
    <description>All essential Express.js commands organized by use case, with 45+ entries you can copy and run directly. Find the right command fast when you need it. · Sections: App Setup, Route Definition, Request Object · e.g. const app = express(), app.use(express.json()), app.listen(3000, () =&gt; {})</description>
    <pubDate>Tue, 21 Jul 2026 00:00:00 GMT</pubDate>
    <category>express</category>
  </item>
  <item>
    <title>Laravel Cheatsheet - Laravel Artisan Command Reference</title>
    <link>https://laohand.com/laravel.html</link>
    <guid isPermaLink="true">https://laohand.com/laravel.html</guid>
    <description>All essential Laravel commands organized by use case, with 40+ entries you can copy and run directly. Find the right command fast when you need it. · Sections: Project &amp; Dev, Database, Routes &amp; Cache · e.g. laravel new project, php artisan serve, php artisan make:model Post -mcr</description>
    <pubDate>Tue, 21 Jul 2026 00:00:00 GMT</pubDate>
    <category>laravel</category>
  </item>
  <item>
    <title>Swift Cheatsheet - Swift &amp; iOS Development Command Reference</title>
    <link>https://laohand.com/swift.html</link>
    <guid isPermaLink="true">https://laohand.com/swift.html</guid>
    <description>All essential Swift commands organized by use case, with 34+ entries you can copy and run directly. Find the right command fast when you need it. · Sections: Compile &amp; Run, Swift Package Manager, Xcode CLI · e.g. swift main.swift, swiftc main.swift -o main, swift main.swiftc</description>
    <pubDate>Tue, 21 Jul 2026 00:00:00 GMT</pubDate>
    <category>swift</category>
  </item>
  <item>
    <title>Kotlin Cheatsheet - Kotlin Syntax &amp; Coroutine Reference</title>
    <link>https://laohand.com/kotlin.html</link>
    <guid isPermaLink="true">https://laohand.com/kotlin.html</guid>
    <description>All essential Kotlin commands organized by use case, with 47+ entries you can copy and run directly. Find the right command fast when you need it. · Sections: Compile &amp; Run, Gradle Build, Null Safety · e.g. kotlinc main.kt -include-runtime -d main.jar, java -jar main.jar, kotlinc -script script.kts</description>
    <pubDate>Tue, 21 Jul 2026 00:00:00 GMT</pubDate>
    <category>kotlin</category>
  </item>
  <item>
    <title>Rust Cheatsheet - Rust &amp; Cargo Command Reference</title>
    <link>https://laohand.com/rust.html</link>
    <guid isPermaLink="true">https://laohand.com/rust.html</guid>
    <description>All essential Rust commands organized by use case, with 51+ entries you can copy and run directly. Find the right command fast when you need it. · Sections: Project Management, Dependency Management, Testing &amp; Docs · e.g. cargo new project_name, cargo new --lib project_name, cargo init</description>
    <pubDate>Tue, 21 Jul 2026 00:00:00 GMT</pubDate>
    <category>rust</category>
  </item>
  <item>
    <title>PHP Cheatsheet - PHP &amp; Composer Command Reference</title>
    <link>https://laohand.com/php.html</link>
    <guid isPermaLink="true">https://laohand.com/php.html</guid>
    <description>All essential PHP commands organized by use case, with 36+ entries you can copy and run directly. Find the right command fast when you need it. · Sections: CLI Run, Composer Dependency, Extensions &amp; Config · e.g. php script.php, php -a, php -S localhost:8000</description>
    <pubDate>Tue, 21 Jul 2026 00:00:00 GMT</pubDate>
    <category>php</category>
  </item>
  <item>
    <title>Java Cheatsheet - Java &amp; JVM Command Reference</title>
    <link>https://laohand.com/java.html</link>
    <guid isPermaLink="true">https://laohand.com/java.html</guid>
    <description>All essential Java commands organized by use case, with 34+ entries you can copy and run directly. Find the right command fast when you need it. · Sections: Compile &amp; Run, Maven Commands, Gradle Commands · e.g. javac Main.java, java -cp .:lib.jar Main, java -cp &quot;.;lib.jar&quot; Main</description>
    <pubDate>Tue, 21 Jul 2026 00:00:00 GMT</pubDate>
    <category>java</category>
  </item>
  <item>
    <title>NumPy Cheatsheet - NumPy Functions &amp; Array Operations Reference</title>
    <link>https://laohand.com/numpy.html</link>
    <guid isPermaLink="true">https://laohand.com/numpy.html</guid>
    <description>All essential NumPy commands organized by use case, with 40+ entries you can copy and run directly. Find the right command fast when you need it. · Sections: Array Creation, Indexing &amp; Slicing, Shape Manipulation · e.g. np.array([1, 2, 3]), np.zeros((3, 4)), np.ones((2, 3))</description>
    <pubDate>Tue, 21 Jul 2026 00:00:00 GMT</pubDate>
    <category>numpy</category>
  </item>
  <item>
    <title>Go Cheatsheet - Go Syntax &amp; Concurrency Reference</title>
    <link>https://laohand.com/go.html</link>
    <guid isPermaLink="true">https://laohand.com/go.html</guid>
    <description>All essential Go commands organized by use case, with 44+ entries you can copy and run directly. Find the right command fast when you need it. · Sections: Variables &amp; Constants, Control Flow, Functions · e.g. var name string = &quot;value&quot;, name := &quot;value&quot;, const Pi = 3.14</description>
    <pubDate>Tue, 21 Jul 2026 00:00:00 GMT</pubDate>
    <category>language</category>
  </item>
  <item>
    <title>JavaScript Cheatsheet - ES6+ Command Reference</title>
    <link>https://laohand.com/javascript.html</link>
    <guid isPermaLink="true">https://laohand.com/javascript.html</guid>
    <description>All the JavaScript ES6+ syntax you need for daily development — from basics to async/await, organized by category, ready to copy into your code. · Sections: Variables &amp; Functions, Destructuring, String &amp; Template · e.g. const name = &quot;value&quot;, let count = 0, const fn = (x) =&gt; x * 2</description>
    <pubDate>Tue, 21 Jul 2026 00:00:00 GMT</pubDate>
    <category>language</category>
  </item>
  <item>
    <title>Python Cheatsheet - Command Reference</title>
    <link>https://laohand.com/python.html</link>
    <guid isPermaLink="true">https://laohand.com/python.html</guid>
    <description>All the Python syntax you need for daily development — from basics to advanced features, organized by category, ready to copy into your code. · Sections: Virtual Environment &amp; Package Management, Data Types, List Comprehension · e.g. python3 -m venv venv, source venv/bin/activate, venv\Scripts\activate</description>
    <pubDate>Tue, 21 Jul 2026 00:00:00 GMT</pubDate>
    <category>language</category>
  </item>
  <item>
    <title>SQLite Cheatsheet - SQLite Database Command Reference</title>
    <link>https://laohand.com/sqlite.html</link>
    <guid isPermaLink="true">https://laohand.com/sqlite.html</guid>
    <description>Essential SQLite embedded database commands for the complete workflow from database creation to data import/export. Copy directly for your projects. · Sections: Database Connection &amp; Basics, Table Operations, Data CRUD · e.g. sqlite3 file.db, .open file.db, .databases</description>
    <pubDate>Tue, 21 Jul 2026 00:00:00 GMT</pubDate>
    <category>database</category>
  </item>
  <item>
    <title>Knex.js Cheatsheet - Knex SQL Query Builder Reference</title>
    <link>https://laohand.com/knex.html</link>
    <guid isPermaLink="true">https://laohand.com/knex.html</guid>
    <description>All essential Knex.js commands organized by use case, with 50+ entries you can copy and run directly. Find the right command fast when you need it. · Sections: Query Data, Insert Data, Update &amp; Delete · e.g. knex(&quot;users&quot;).select(&quot;*&quot;), knex(&quot;users&quot;).select(&quot;name&quot;, &quot;email&quot;), knex(&quot;users&quot;).where(&quot;age&quot;, &quot;&gt;&quot;, 18)</description>
    <pubDate>Tue, 21 Jul 2026 00:00:00 GMT</pubDate>
    <category>database</category>
  </item>
  <item>
    <title>SQL JOIN Cheatsheet - SQL JOIN Query Reference</title>
    <link>https://laohand.com/sql-join.html</link>
    <guid isPermaLink="true">https://laohand.com/sql-join.html</guid>
    <description>All essential SQL JOIN commands organized by use case, with 41+ entries you can copy and run directly. Find the right command fast when you need it. · Sections: INNER JOIN, LEFT / RIGHT JOIN, FULL / CROSS JOIN · e.g. SELECT * FROM users INNER JOIN orders ON users.id = orders.user_id, SELECT u.name, o.total FROM users u JOIN orders o ON u.id = o.user_id, SELECT u.name, o.total FROM users u JOIN orders o ON u.id = o.user_id AND o.status = &apos;paid&apos;</description>
    <pubDate>Tue, 21 Jul 2026 00:00:00 GMT</pubDate>
    <category>database</category>
  </item>
  <item>
    <title>Neo4j Cypher Cheatsheet - Neo4j Graph Database Command Reference</title>
    <link>https://laohand.com/neo4j.html</link>
    <guid isPermaLink="true">https://laohand.com/neo4j.html</guid>
    <description>All essential Neo4j Cypher commands organized by use case, with 40+ entries you can copy and run directly. Find the right command fast when you need it. · Sections: Create Nodes &amp; Relationships, Query &amp; Match, WITH &amp; Subqueries · e.g. CREATE (n:Person {name: &quot;Alice&quot;}), CREATE (a:Person)-[:KNOWS]-&gt;(b:Person), CREATE (a:Person {name: &quot;Alice&quot;})-[:KNOWS {since: 2020}]-&gt;(b:Person {name: &quot;Bob&quot;})</description>
    <pubDate>Tue, 21 Jul 2026 00:00:00 GMT</pubDate>
    <category>neo4j</category>
  </item>
  <item>
    <title>MongoDB Cheatsheet - MongoDB Command Reference</title>
    <link>https://laohand.com/mongodb.html</link>
    <guid isPermaLink="true">https://laohand.com/mongodb.html</guid>
    <description>All essential MongoDB commands organized by use case, with 43+ entries you can copy and run directly. Find the right command fast when you need it. · Sections: Database, Document CRUD, Query Operators · e.g. show dbs, use dbname, db</description>
    <pubDate>Tue, 21 Jul 2026 00:00:00 GMT</pubDate>
    <category>database</category>
  </item>
  <item>
    <title>Redis Cheatsheet - Redis Command Reference</title>
    <link>https://laohand.com/redis.html</link>
    <guid isPermaLink="true">https://laohand.com/redis.html</guid>
    <description>Essential Redis commands for daily cache administration and development. Organized by scenario from data structure operations to memory troubleshooting. Copy and use directly during troubleshooting. · Sections: Connection, Data Structure, Key Space · e.g. redis-cli -h 127.0.0.1 -p 6379 -a password, redis-cli --scan --pattern &quot;user:*&quot;, redis-cli -r 5 -i 1 INFO memory</description>
    <pubDate>Tue, 21 Jul 2026 00:00:00 GMT</pubDate>
    <category>redis</category>
  </item>
  <item>
    <title>PostgreSQL Cheatsheet - PostgreSQL Command Reference</title>
    <link>https://laohand.com/postgresql.html</link>
    <guid isPermaLink="true">https://laohand.com/postgresql.html</guid>
    <description>Essential PostgreSQL commands for daily database administration and development. Organized by scenario from table creation to query optimization. Copy and use directly during troubleshooting. · Sections: Connection &amp; Role, Database &amp; Table, Query Analysis · e.g. psql -U postgres -h 127.0.0.1 -p 5432, psql -U postgres -d db_name -c &quot;\dt&quot;, CREATE ROLE app_user WITH LOGIN PASSWORD &apos;secret&apos;;</description>
    <pubDate>Tue, 21 Jul 2026 00:00:00 GMT</pubDate>
    <category>database</category>
  </item>
  <item>
    <title>MySQL Cheatsheet - MySQL Command Reference</title>
    <link>https://laohand.com/mysql.html</link>
    <guid isPermaLink="true">https://laohand.com/mysql.html</guid>
    <description>Essential MySQL commands for daily database administration and development. Organized by scenario from table creation to query optimization. Copy and use directly during troubleshooting. · Sections: Connection &amp; User, Database &amp; Table, Query &amp; Index · e.g. mysql -u root -p -h 127.0.0.1 -P 3306, mysql -u root -p db_name &lt; dump.sql, mysqldump -u root -p --single-transaction db_name &gt; backup.sql</description>
    <pubDate>Tue, 21 Jul 2026 00:00:00 GMT</pubDate>
    <category>database</category>
  </item>
  <item>
    <title>Elasticsearch Cheatsheet - Command Reference</title>
    <link>https://laohand.com/elasticsearch-commands.html</link>
    <guid isPermaLink="true">https://laohand.com/elasticsearch-commands.html</guid>
    <description>All essential Elasticsearch commands organized by use case, with 40+ entries you can copy and run directly. Find the right command fast when you need it. · Sections: Cluster Status, Shard &amp; Index, Document CRUD · e.g. curl localhost:9200/_cluster/health?pretty, curl localhost:9200/_cat/nodes?v, curl localhost:9200/_cat/health?v</description>
    <pubDate>Tue, 21 Jul 2026 00:00:00 GMT</pubDate>
    <category>search</category>
  </item>
  <item>
    <title>Svelte Cheatsheet - Svelte Framework Reference</title>
    <link>https://laohand.com/svelte.html</link>
    <guid isPermaLink="true">https://laohand.com/svelte.html</guid>
    <description>Essential Svelte compiled frontend framework syntax from reactivity to component communication, Store to animations. Organized by category, copy directly when coding. · Sections: Template Syntax, Reactive Declarations, Components &amp; Props · e.g. { expression }, {@html rawHtmlString}, {#if condition}...{:else if}...{:else}...{/if}</description>
    <pubDate>Tue, 21 Jul 2026 00:00:00 GMT</pubDate>
    <category>frontend</category>
  </item>
  <item>
    <title>Next.js Cheatsheet - Next.js Framework Reference</title>
    <link>https://laohand.com/nextjs.html</link>
    <guid isPermaLink="true">https://laohand.com/nextjs.html</guid>
    <description>Essential Next.js full-stack React framework APIs from routing to data fetching, rendering strategies to middleware. Organized by category, copy directly when coding. · Sections: App Router Basics, Routing &amp; Navigation, Data Fetching · e.g. app/page.tsx, app/layout.tsx, app/loading.tsx</description>
    <pubDate>Tue, 21 Jul 2026 00:00:00 GMT</pubDate>
    <category>frontend</category>
  </item>
  <item>
    <title>Tailwind CSS Cheatsheet - Utility Class Reference</title>
    <link>https://laohand.com/tailwind-css.html</link>
    <guid isPermaLink="true">https://laohand.com/tailwind-css.html</guid>
    <description>Essential Tailwind CSS utility classes for atomic CSS, organized by function from layout to colors, responsive design to animations. Copy directly when building pages. · Sections: Layout, Flexbox, Grid · e.g. container, block / inline-block / inline, hidden</description>
    <pubDate>Tue, 21 Jul 2026 00:00:00 GMT</pubDate>
    <category>frontend</category>
  </item>
  <item>
    <title>HTML Meta Tags Cheatsheet - Meta Tags SEO &amp; Configuration Reference</title>
    <link>https://laohand.com/html-meta.html</link>
    <guid isPermaLink="true">https://laohand.com/html-meta.html</guid>
    <description>All essential HTML Meta Tags commands organized by use case, with 36+ entries you can copy and run directly. Find the right command fast when you need it. · Sections: Document Metadata, SEO, Social Sharing (Open Graph + Twitter) · e.g. &lt;meta charset=&quot;UTF-8&quot;&gt;, &lt;meta name=&quot;viewport&quot; content=&quot;width=device-width, initial-scale=1&quot;&gt;, &lt;meta name=&quot;description&quot; content=&quot;Page description&quot;&gt;</description>
    <pubDate>Tue, 21 Jul 2026 00:00:00 GMT</pubDate>
    <category>frontend</category>
  </item>
  <item>
    <title>CSS Grid Cheatsheet - Grid Layout Reference</title>
    <link>https://laohand.com/css-grid.html</link>
    <guid isPermaLink="true">https://laohand.com/css-grid.html</guid>
    <description>All essential CSS Grid commands organized by use case, with 42+ entries you can copy and run directly. Find the right command fast when you need it. · Sections: Container Definition, Gap &amp; Alignment, Cells &amp; Spans · e.g. display: grid, display: inline-grid, grid-template-columns: 1fr 2fr 1fr</description>
    <pubDate>Tue, 21 Jul 2026 00:00:00 GMT</pubDate>
    <category>frontend</category>
  </item>
  <item>
    <title>CSS Flexbox Cheatsheet - Flexbox Layout Reference</title>
    <link>https://laohand.com/css-flexbox.html</link>
    <guid isPermaLink="true">https://laohand.com/css-flexbox.html</guid>
    <description>All essential CSS Flexbox commands organized by use case, with 44+ entries you can copy and run directly. Find the right command fast when you need it. · Sections: Container Properties, Gap &amp; Main-axis Alignment, Cross-axis Alignment · e.g. display: flex, display: inline-flex, flex-direction: row</description>
    <pubDate>Tue, 21 Jul 2026 00:00:00 GMT</pubDate>
    <category>frontend</category>
  </item>
  <item>
    <title>Sass/SCSS Cheatsheet - Sass Syntax &amp; Mixin Reference</title>
    <link>https://laohand.com/sass.html</link>
    <guid isPermaLink="true">https://laohand.com/sass.html</guid>
    <description>All essential Sass/SCSS commands organized by use case, with 40+ entries you can copy and run directly. Find the right command fast when you need it. · Sections: Variables &amp; Operations, Maps &amp; Color Functions, Nesting · e.g. $primary: #6366f1, color: $primary, $primary: #6366f1 !default</description>
    <pubDate>Tue, 21 Jul 2026 00:00:00 GMT</pubDate>
    <category>sass</category>
  </item>
  <item>
    <title>Emmet Cheatsheet - Emmet Abbreviation &amp; Syntax Reference</title>
    <link>https://laohand.com/emmet.html</link>
    <guid isPermaLink="true">https://laohand.com/emmet.html</guid>
    <description>All essential Emmet commands organized by use case, with 39+ entries you can copy and run directly. Find the right command fast when you need it. · Sections: HTML Basics, Common HTML Structures, CSS Shorthand · e.g. ! or html:5, div#app, div.container</description>
    <pubDate>Tue, 21 Jul 2026 00:00:00 GMT</pubDate>
    <category>emmet</category>
  </item>
  <item>
    <title>CSS3 Cheatsheet - CSS3 Properties &amp; Layout Reference</title>
    <link>https://laohand.com/css3.html</link>
    <guid isPermaLink="true">https://laohand.com/css3.html</guid>
    <description>All essential CSS3 commands organized by use case, with 59+ entries you can copy and run directly. Find the right command fast when you need it. · Sections: Selectors, Box Model, Layout · e.g. .class, #id, div p</description>
    <pubDate>Tue, 21 Jul 2026 00:00:00 GMT</pubDate>
    <category>frontend</category>
  </item>
  <item>
    <title>HTML Cheatsheet - HTML Tags &amp; Attributes Reference</title>
    <link>https://laohand.com/html.html</link>
    <guid isPermaLink="true">https://laohand.com/html.html</guid>
    <description>All essential HTML commands organized by use case, with 52+ entries you can copy and run directly. Find the right command fast when you need it. · Sections: Document Structure, Text Formatting, Lists · e.g. &lt;!DOCTYPE html&gt;, &lt;html lang=&quot;zh-CN&quot;&gt;, &lt;head&gt;...&lt;/head&gt;</description>
    <pubDate>Tue, 21 Jul 2026 00:00:00 GMT</pubDate>
    <category>frontend</category>
  </item>
  <item>
    <title>SSH Cheatsheet - SSH Connection &amp; Configuration Command Reference</title>
    <link>https://laohand.com/ssh.html</link>
    <guid isPermaLink="true">https://laohand.com/ssh.html</guid>
    <description>Essential SSH commands organized by Login &amp; Auth, Key Management, Config File, and Port Forwarding. Reference directly for passwordless login and tunneling. · Sections: Connection &amp; Auth, Key Management, Config File ~/.ssh/config · e.g. ssh user@host, ssh -p 2222 user@host, ssh -i ~/.ssh/id_ed25519 user@host</description>
    <pubDate>Tue, 21 Jul 2026 00:00:00 GMT</pubDate>
    <category>linux</category>
  </item>
  <item>
    <title>curl Cheatsheet - curl HTTP Debugging Command Reference</title>
    <link>https://laohand.com/curl.html</link>
    <guid isPermaLink="true">https://laohand.com/curl.html</guid>
    <description>Essential curl commands organized by Basic Requests, Debugging, Proxy &amp; Timeout, and Auth &amp; Upload. Reference directly when debugging APIs or verifying packets. · Sections: Basic Requests, Debugging &amp; Details, Proxy &amp; Timeout · e.g. curl https://example.com, curl -X POST https://api.example.com, curl -H &quot;Content-Type: application/json&quot; -H &quot;Authorization: Bearer xxx&quot; https://api.example.com</description>
    <pubDate>Tue, 21 Jul 2026 00:00:00 GMT</pubDate>
    <category>curl</category>
  </item>
  <item>
    <title>Nginx Cheatsheet - Nginx Configuration &amp; Command Reference</title>
    <link>https://laohand.com/nginx.html</link>
    <guid isPermaLink="true">https://laohand.com/nginx.html</guid>
    <description>Essential Nginx commands for config testing, location matching, reverse proxy, and log troubleshooting. Reference directly when editing configs or debugging 502 errors. · Sections: Commands &amp; Testing, Location Matching Priority, Reverse Proxy Snippets · e.g. nginx -t, nginx -s reload, nginx -T</description>
    <pubDate>Tue, 21 Jul 2026 00:00:00 GMT</pubDate>
    <category>nginx</category>
  </item>
  <item>
    <title>PowerShell Cheatsheet - PowerShell Command Reference</title>
    <link>https://laohand.com/powershell.html</link>
    <guid isPermaLink="true">https://laohand.com/powershell.html</guid>
    <description>Essential PowerShell commands for Windows system administration and automation, organized by scenario from file operations to remote management. Copy directly. · Sections: Basic Commands, File &amp; Directory, Content Operations · e.g. Get-Command, Get-Help Get-Process, Get-Member</description>
    <pubDate>Tue, 21 Jul 2026 00:00:00 GMT</pubDate>
    <category>sysops</category>
  </item>
  <item>
    <title>Terraform Cheatsheet - Infrastructure as Code Command Reference</title>
    <link>https://laohand.com/terraform.html</link>
    <guid isPermaLink="true">https://laohand.com/terraform.html</guid>
    <description>Essential Terraform IaC commands for the complete lifecycle from init to destroy, organized by scenario. Copy directly for your infrastructure. · Sections: Core Workflow, State Management, Variables &amp; Outputs · e.g. terraform init, terraform plan, terraform apply</description>
    <pubDate>Tue, 21 Jul 2026 00:00:00 GMT</pubDate>
    <category>cicd</category>
  </item>
  <item>
    <title>cron Cheatsheet - Job Scheduling</title>
    <link>https://laohand.com/cron.html</link>
    <guid isPermaLink="true">https://laohand.com/cron.html</guid>
    <description>All essential cron commands organized by use case, with 43+ entries you can copy and run directly. Find the right command fast when you need it. · Sections: Schedule Format, Special Strings, System Cron · e.g. * * * * * command, */15 * * * *, 0 */2 * * *</description>
    <pubDate>Tue, 21 Jul 2026 00:00:00 GMT</pubDate>
    <category>linux</category>
  </item>
  <item>
    <title>rclone Cheatsheet - Cloud Sync</title>
    <link>https://laohand.com/rclone.html</link>
    <guid isPermaLink="true">https://laohand.com/rclone.html</guid>
    <description>All essential rclone commands organized by use case, with 35+ entries you can copy and run directly. Find the right command fast when you need it. · Sections: Config &amp; Connect, Browse &amp; List, Sync &amp; Copy · e.g. rclone config, rclone config show, rclone listremotes</description>
    <pubDate>Tue, 21 Jul 2026 00:00:00 GMT</pubDate>
    <category>linux</category>
  </item>
  <item>
    <title>Fish Shell Cheatsheet - Shell Config</title>
    <link>https://laohand.com/fish-shell.html</link>
    <guid isPermaLink="true">https://laohand.com/fish-shell.html</guid>
    <description>All essential Fish Shell commands organized by use case, with 36+ entries you can copy and run directly. Find the right command fast when you need it. · Sections: Variables &amp; Scope, Control Flow, Functions &amp; Aliases · e.g. set name &quot;John&quot;, echo $name, set -x PATH /usr/local/bin $PATH</description>
    <pubDate>Tue, 21 Jul 2026 00:00:00 GMT</pubDate>
    <category>linux</category>
  </item>
  <item>
    <title>Vagrant Cheatsheet - VM Management</title>
    <link>https://laohand.com/vagrant.html</link>
    <guid isPermaLink="true">https://laohand.com/vagrant.html</guid>
    <description>All essential Vagrant commands organized by use case, with 40+ entries you can copy and run directly. Find the right command fast when you need it. · Sections: VM Lifecycle, Box Management, Vagrantfile · e.g. vagrant init ubuntu/jammy64, vagrant up, vagrant ssh</description>
    <pubDate>Tue, 21 Jul 2026 00:00:00 GMT</pubDate>
    <category>linux</category>
  </item>
  <item>
    <title>Ansible Cheatsheet - Automation</title>
    <link>https://laohand.com/ansible.html</link>
    <guid isPermaLink="true">https://laohand.com/ansible.html</guid>
    <description>All essential Ansible commands organized by use case, with 42+ entries you can copy and run directly. Find the right command fast when you need it. · Sections: Core Commands, Ad-hoc Commands, Common Modules · e.g. ansible all -m ping, ansible-playbook site.yml, ansible-galaxy init myrole</description>
    <pubDate>Tue, 21 Jul 2026 00:00:00 GMT</pubDate>
    <category>linux</category>
  </item>
  <item>
    <title>GnuPG Cheatsheet - Encryption</title>
    <link>https://laohand.com/gnupg.html</link>
    <guid isPermaLink="true">https://laohand.com/gnupg.html</guid>
    <description>All essential GnuPG commands organized by use case, with 37+ entries you can copy and run directly. Find the right command fast when you need it. · Sections: Key Generation, Import &amp; Export, Encrypt &amp; Decrypt · e.g. gpg --full-generate-key, gpg --quick-generate-key &quot;Name &lt;email&gt;&quot;, gpg --list-keys</description>
    <pubDate>Tue, 21 Jul 2026 00:00:00 GMT</pubDate>
    <category>linux</category>
  </item>
  <item>
    <title>Zsh Cheatsheet - Shell Configuration</title>
    <link>https://laohand.com/zsh.html</link>
    <guid isPermaLink="true">https://laohand.com/zsh.html</guid>
    <description>All essential Zsh commands organized by use case, with 37+ entries you can copy and run directly. Find the right command fast when you need it. · Sections: Basic Setup, Variables &amp; Arrays, Globbing &amp; Expansion · e.g. chsh -s $(which zsh), source ~/.zshrc, echo $SHELL</description>
    <pubDate>Tue, 21 Jul 2026 00:00:00 GMT</pubDate>
    <category>linux</category>
  </item>
  <item>
    <title>FFmpeg Cheatsheet - Media Processing</title>
    <link>https://laohand.com/ffmpeg.html</link>
    <guid isPermaLink="true">https://laohand.com/ffmpeg.html</guid>
    <description>All essential FFmpeg commands organized by use case, with 39+ entries you can copy and run directly. Find the right command fast when you need it. · Sections: Format Conversion, Trim &amp; Crop, Extract &amp; Separate · e.g. ffmpeg -i input.mp4 output.avi, ffmpeg -i input.mp4 -c:v libx264 output.mp4, ffmpeg -i input.mp4 -c:v libx265 output.mp4</description>
    <pubDate>Tue, 21 Jul 2026 00:00:00 GMT</pubDate>
    <category>linux</category>
  </item>
  <item>
    <title>taskset Cheatsheet - CPU Affinity</title>
    <link>https://laohand.com/taskset.html</link>
    <guid isPermaLink="true">https://laohand.com/taskset.html</guid>
    <description>All essential taskset commands organized by use case, with 37+ entries you can copy and run directly. Find the right command fast when you need it. · Sections: Basic Usage, CPU Mask &amp; List Format, Pin Running Processes · e.g. taskset -p &lt;pid&gt;, taskset -c -p &lt;pid&gt;, taskset -c 0,1 &lt;command&gt;</description>
    <pubDate>Tue, 21 Jul 2026 00:00:00 GMT</pubDate>
    <category>taskset</category>
  </item>
  <item>
    <title>netcat Cheatsheet - Network Debugging</title>
    <link>https://laohand.com/netcat.html</link>
    <guid isPermaLink="true">https://laohand.com/netcat.html</guid>
    <description>All essential netcat commands organized by use case, with 36+ entries you can copy and run directly. Find the right command fast when you need it. · Sections: Connectivity Test &amp; Port Scan, File &amp; Data Transfer, Port Listening · e.g. nc -zv host 80, nc -zv host 80 443 8080, nc -zv host 1-1000</description>
    <pubDate>Tue, 21 Jul 2026 00:00:00 GMT</pubDate>
    <category>netcat</category>
  </item>
  <item>
    <title>SCP &amp; Rsync Cheatsheet - File Transfer</title>
    <link>https://laohand.com/scp-rsync.html</link>
    <guid isPermaLink="true">https://laohand.com/scp-rsync.html</guid>
    <description>All essential SCP &amp; Rsync commands organized by use case, with 39+ entries you can copy and run directly. Find the right command fast when you need it. · Sections: scp Basics, rsync Basics, rsync Incremental · e.g. scp file user@host:/path, scp user@host:/path/file ., scp -r dir user@host:/path</description>
    <pubDate>Tue, 21 Jul 2026 00:00:00 GMT</pubDate>
    <category>linux</category>
  </item>
  <item>
    <title>wget Cheatsheet - Download Command</title>
    <link>https://laohand.com/wget.html</link>
    <guid isPermaLink="true">https://laohand.com/wget.html</guid>
    <description>All essential wget commands organized by use case, with 38+ entries you can copy and run directly. Find the right command fast when you need it. · Sections: Basic Download, Resume, Recursive · e.g. wget URL, wget -O filename URL, wget -P /path/to/dir URL</description>
    <pubDate>Tue, 21 Jul 2026 00:00:00 GMT</pubDate>
    <category>linux</category>
  </item>
  <item>
    <title>top Cheatsheet - Process Monitoring</title>
    <link>https://laohand.com/top.html</link>
    <guid isPermaLink="true">https://laohand.com/top.html</guid>
    <description>All essential top commands organized by use case, with 52+ entries you can copy and run directly. Find the right command fast when you need it. · Sections: top Basics, top Interactive, top Sort &amp; Display · e.g. top, top -d 5, top -p 1234</description>
    <pubDate>Tue, 21 Jul 2026 00:00:00 GMT</pubDate>
    <category>linux</category>
  </item>
  <item>
    <title>ps Cheatsheet - Linux Process Management Reference</title>
    <link>https://laohand.com/ps.html</link>
    <guid isPermaLink="true">https://laohand.com/ps.html</guid>
    <description>All essential ps commands organized by use case, with 35+ entries you can copy and run directly. Find the right command fast when you need it. · Sections: Basic View, Filter, Custom Format · e.g. ps, ps aux, ps -ef</description>
    <pubDate>Tue, 21 Jul 2026 00:00:00 GMT</pubDate>
    <category>linux</category>
  </item>
  <item>
    <title>grep Cheatsheet - Linux Text Search Reference</title>
    <link>https://laohand.com/grep.html</link>
    <guid isPermaLink="true">https://laohand.com/grep.html</guid>
    <description>All essential grep commands organized by use case, with 38+ entries you can copy and run directly. Find the right command fast when you need it. · Sections: Basic Search, Recursive, Regular Expression · e.g. grep &quot;pattern&quot; file, grep -i &quot;pattern&quot; file, grep -v &quot;pattern&quot; file</description>
    <pubDate>Tue, 21 Jul 2026 00:00:00 GMT</pubDate>
    <category>linux</category>
  </item>
  <item>
    <title>sed Cheatsheet - Linux Text Editing Reference</title>
    <link>https://laohand.com/sed.html</link>
    <guid isPermaLink="true">https://laohand.com/sed.html</guid>
    <description>All essential sed commands organized by use case, with 37+ entries you can copy and run directly. Find the right command fast when you need it. · Sections: Substitute, Delete, Insert &amp; Append · e.g. sed &apos;s/old/new/&apos; file, sed &apos;s/old/new/g&apos; file, sed &apos;s/old/new/2&apos; file</description>
    <pubDate>Tue, 21 Jul 2026 00:00:00 GMT</pubDate>
    <category>linux</category>
  </item>
  <item>
    <title>awk Cheatsheet - Linux Text Processing Reference</title>
    <link>https://laohand.com/awk.html</link>
    <guid isPermaLink="true">https://laohand.com/awk.html</guid>
    <description>All essential awk commands organized by use case, with 37+ entries you can copy and run directly. Find the right command fast when you need it. · Sections: Basic Syntax, Built-in Variables, Conditionals · e.g. awk &apos;{print $1}&apos; file, awk -F: &apos;{print $1, $3}&apos; /etc/passwd, awk &apos;{print $1, $NF}&apos; file</description>
    <pubDate>Tue, 21 Jul 2026 00:00:00 GMT</pubDate>
    <category>linux</category>
  </item>
  <item>
    <title>screen Cheatsheet - Terminal Session Manager Reference</title>
    <link>https://laohand.com/screen.html</link>
    <guid isPermaLink="true">https://laohand.com/screen.html</guid>
    <description>All essential screen commands organized by use case, with 38+ entries you can copy and run directly. Find the right command fast when you need it. · Sections: Session Management, Windows, Split Screen · e.g. screen -S name, screen -ls, screen -r name</description>
    <pubDate>Tue, 21 Jul 2026 00:00:00 GMT</pubDate>
    <category>linux</category>
  </item>
  <item>
    <title>netstat Cheatsheet - Linux Network Troubleshooting Reference</title>
    <link>https://laohand.com/netstat.html</link>
    <guid isPermaLink="true">https://laohand.com/netstat.html</guid>
    <description>All essential netstat commands organized by use case, with 39+ entries you can copy and run directly. Find the right command fast when you need it. · Sections: View Connections, Listening Ports, Routing Table &amp; Interface Stats · e.g. netstat, netstat -a, netstat -at</description>
    <pubDate>Tue, 21 Jul 2026 00:00:00 GMT</pubDate>
    <category>network</category>
  </item>
  <item>
    <title>lsof Cheatsheet - Linux Process &amp; Port Diagnostics Reference</title>
    <link>https://laohand.com/lsof.html</link>
    <guid isPermaLink="true">https://laohand.com/lsof.html</guid>
    <description>All essential lsof commands organized by use case, with 35+ entries you can copy and run directly. Find the right command fast when you need it. · Sections: By Process, By Port, By File · e.g. lsof -p 1234, lsof -c nginx, lsof -c /^nginx/</description>
    <pubDate>Tue, 21 Jul 2026 00:00:00 GMT</pubDate>
    <category>linux</category>
  </item>
  <item>
    <title>find Cheatsheet - Linux File Search Reference</title>
    <link>https://laohand.com/find.html</link>
    <guid isPermaLink="true">https://laohand.com/find.html</guid>
    <description>All essential find commands organized by use case, with 37+ entries you can copy and run directly. Find the right command fast when you need it. · Sections: By Name, By Type, By Size · e.g. find . -name &quot;file.txt&quot;, find . -iname &quot;file.txt&quot;, find . -name &quot;*.log&quot;</description>
    <pubDate>Tue, 21 Jul 2026 00:00:00 GMT</pubDate>
    <category>linux</category>
  </item>
  <item>
    <title>chmod Cheatsheet - Linux File Permission Reference</title>
    <link>https://laohand.com/chmod.html</link>
    <guid isPermaLink="true">https://laohand.com/chmod.html</guid>
    <description>All essential chmod commands organized by use case, with 37+ entries you can copy and run directly. Find the right command fast when you need it. · Sections: Permission Bits, Numeric Mode, Symbolic Mode · e.g. r (read), w (write), x (execute)</description>
    <pubDate>Tue, 21 Jul 2026 00:00:00 GMT</pubDate>
    <category>sysops</category>
  </item>
  <item>
    <title>Bash Cheatsheet - Shell Scripting Command Reference</title>
    <link>https://laohand.com/bash.html</link>
    <guid isPermaLink="true">https://laohand.com/bash.html</guid>
    <description>Essential Bash scripting syntax on one page. Variables, loops, functions, and string operations — reference directly when writing shell scripts. · Sections: Variables, Conditionals, Loops · e.g. NAME=&quot;value&quot;, echo $NAME, echo ${NAME}</description>
    <pubDate>Tue, 21 Jul 2026 00:00:00 GMT</pubDate>
    <category>linux</category>
  </item>
  <item>
    <title>OpenSSL Cheatsheet - OpenSSL Certificate &amp; Encryption Reference</title>
    <link>https://laohand.com/openssl.html</link>
    <guid isPermaLink="true">https://laohand.com/openssl.html</guid>
    <description>All essential OpenSSL commands organized by use case, with 33+ entries you can copy and run directly. Find the right command fast when you need it. · Sections: Inspect Certificate, Remote Check, Generate Certificate · e.g. openssl x509 -in cert.pem -text -noout, openssl x509 -in cert.pem -dates -noout, openssl x509 -in cert.pem -issuer -noout</description>
    <pubDate>Tue, 21 Jul 2026 00:00:00 GMT</pubDate>
    <category>security</category>
  </item>
  <item>
    <title>tar Cheatsheet - tar Archive &amp; Compression Reference</title>
    <link>https://laohand.com/tar-compress.html</link>
    <guid isPermaLink="true">https://laohand.com/tar-compress.html</guid>
    <description>All essential tar commands organized by use case, with 44+ entries you can copy and run directly. Find the right command fast when you need it. · Sections: Pack &amp; Compress, Extract, List &amp; Test · e.g. tar -cvf archive.tar dir/, tar -czvf archive.tar.gz dir/, tar -cjvf archive.tar.bz2 dir/</description>
    <pubDate>Tue, 21 Jul 2026 00:00:00 GMT</pubDate>
    <category>archive</category>
  </item>
  <item>
    <title>sed/awk/grep Cheatsheet - Linux Text Processing Reference</title>
    <link>https://laohand.com/text-processing.html</link>
    <guid isPermaLink="true">https://laohand.com/text-processing.html</guid>
    <description>All essential sed/awk/grep commands organized by use case, with 52+ entries you can copy and run directly. Find the right command fast when you need it. · Sections: grep Match &amp; Search, sed Replace &amp; Edit, awk Extract &amp; Summarize · e.g. grep &quot;error&quot; app.log, grep -i &quot;error&quot; app.log, grep -rn &quot;TODO&quot; src/</description>
    <pubDate>Tue, 21 Jul 2026 00:00:00 GMT</pubDate>
    <category>linux</category>
  </item>
  <item>
    <title>tmux Cheatsheet - Terminal Multiplexer Command Reference</title>
    <link>https://laohand.com/tmux.html</link>
    <guid isPermaLink="true">https://laohand.com/tmux.html</guid>
    <description>Essential tmux commands for remote development. Organized by session, window, pane, copy mode, and configuration — keep sessions alive when connections drop. · Sections: Session, Window, Pane · e.g. tmux new -s mywork, tmux ls, tmux attach -t mywork</description>
    <pubDate>Tue, 21 Jul 2026 00:00:00 GMT</pubDate>
    <category>linux</category>
  </item>
  <item>
    <title>MQ Commands Cheatsheet - Kafka/RabbitMQ/RocketMQ Reference</title>
    <link>https://laohand.com/mq-commands.html</link>
    <guid isPermaLink="true">https://laohand.com/mq-commands.html</guid>
    <description>All essential MQ commands organized by use case, with 32+ entries you can copy and run directly. Find the right command fast when you need it. · Sections: Kafka, RabbitMQ, RocketMQ · e.g. kafka-consumer-groups.sh --bootstrap-server :9092 --list, kafka-consumer-groups.sh --describe --group &lt;group&gt;, kafka-topics.sh --describe --topic &lt;topic&gt;</description>
    <pubDate>Tue, 21 Jul 2026 00:00:00 GMT</pubDate>
    <category>mq</category>
  </item>
  <item>
    <title>CI/CD Commands Cheatsheet - CI/CD Pipeline Debugging Reference</title>
    <link>https://laohand.com/cicd-commands.html</link>
    <guid isPermaLink="true">https://laohand.com/cicd-commands.html</guid>
    <description>All essential CI/CD commands organized by use case, with 33+ entries you can copy and run directly. Find the right command fast when you need it. · Sections: GitHub Actions, GitLab CI, Jenkins · e.g. gh run list --limit 10, gh run view &lt;run-id&gt; --log-failed, gh run rerun &lt;run-id&gt; --failed</description>
    <pubDate>Tue, 21 Jul 2026 00:00:00 GMT</pubDate>
    <category>cicd</category>
  </item>
  <item>
    <title>Cron Cheatsheet - Cron Expression &amp; Task Scheduling Reference</title>
    <link>https://laohand.com/crontab.html</link>
    <guid isPermaLink="true">https://laohand.com/crontab.html</guid>
    <description>All essential Cron commands organized by use case, with 43+ entries you can copy and run directly. Find the right command fast when you need it. · Sections: Expression Format, Special Characters, Special Time Macros · e.g. * * * * * command, Minute (0-59), Hour (0-23)</description>
    <pubDate>Tue, 21 Jul 2026 00:00:00 GMT</pubDate>
    <category>linux</category>
  </item>
  <item>
    <title>Systemd Cheatsheet - Systemd Service Management Command Reference</title>
    <link>https://laohand.com/systemd.html</link>
    <guid isPermaLink="true">https://laohand.com/systemd.html</guid>
    <description>All essential Systemd commands organized by use case, with 47+ entries you can copy and run directly. Find the right command fast when you need it. · Sections: Service Management, Status, journalctl · e.g. systemctl start nginx, systemctl stop nginx, systemctl restart nginx</description>
    <pubDate>Tue, 21 Jul 2026 00:00:00 GMT</pubDate>
    <category>linux</category>
  </item>
  <item>
    <title>Vim Cheatsheet - Editor Command Reference</title>
    <link>https://laohand.com/vim.html</link>
    <guid isPermaLink="true">https://laohand.com/vim.html</guid>
    <description>Essential Vim commands for editing configs on a server. Organized by motion, edit, search, visual mode, and save/exit — just copy and use when stuck. · Sections: Motion, Edit, Search · e.g. gg / G, 0 / $, w / b</description>
    <pubDate>Tue, 21 Jul 2026 00:00:00 GMT</pubDate>
    <category>linux</category>
  </item>
  <item>
    <title>Linux Troubleshooting Cheatsheet - System Fault Diagnosis Command Reference</title>
    <link>https://laohand.com/linux-troubleshoot.html</link>
    <guid isPermaLink="true">https://laohand.com/linux-troubleshoot.html</guid>
    <description>Essential Linux troubleshooting commands covering CPU, memory, disk, and network. Organized by scenario for on-site diagnosis — just copy and use. · Sections: Process &amp; Load, Port &amp; Network, Disk &amp; Memory · e.g. top -c, ps aux --sort=-%cpu | head, ps aux --sort=-%mem | head</description>
    <pubDate>Tue, 21 Jul 2026 00:00:00 GMT</pubDate>
    <category>linux</category>
  </item>
  <item>
    <title>Git Log Cheatsheet - Git Commit History Reference</title>
    <link>https://laohand.com/git-log.html</link>
    <guid isPermaLink="true">https://laohand.com/git-log.html</guid>
    <description>All essential Git Log commands organized by use case, with 48+ entries you can copy and run directly. Find the right command fast when you need it. · Sections: Formatting Output, Filtering, Statistics &amp; Analysis · e.g. git log --oneline, git log -n 10, git log --pretty=format:&quot;%h %s&quot;</description>
    <pubDate>Tue, 21 Jul 2026 00:00:00 GMT</pubDate>
    <category>git</category>
  </item>
  <item>
    <title>Git Branch Management Cheatsheet - Command Reference</title>
    <link>https://laohand.com/git-branch.html</link>
    <guid isPermaLink="true">https://laohand.com/git-branch.html</guid>
    <description>Git branches are the core of team collaboration. All essential branch operation commands organized by Create &amp; Switch, Merge &amp; Rebase, Remote Branches, and Cleanup for managing multi-branch development workflows. · Sections: Create &amp; Switch, Merge &amp; Rebase, Remote Branches · e.g. git branch feature/login, git checkout feature/login, git checkout -b feature/login</description>
    <pubDate>Tue, 21 Jul 2026 00:00:00 GMT</pubDate>
    <category>git</category>
  </item>
  <item>
    <title>Git Cheatsheet - Command Reference</title>
    <link>https://laohand.com/git.html</link>
    <guid isPermaLink="true">https://laohand.com/git.html</guid>
    <description>All essential Git commands organized by Commit, Branch, Revert, Remote, and Diagnostics. Find solutions when you mess up a commit or branch. · Sections: Commit &amp; Stash, Branch &amp; Merge, Revert &amp; Undo · e.g. git status -s, git add -p, git commit -m &quot;msg&quot;</description>
    <pubDate>Tue, 21 Jul 2026 00:00:00 GMT</pubDate>
    <category>git</category>
  </item>
  <item>
    <title>Dockerfile Cheatsheet - Docker Image Build Reference</title>
    <link>https://laohand.com/dockerfile.html</link>
    <guid isPermaLink="true">https://laohand.com/dockerfile.html</guid>
    <description>All essential Dockerfile commands organized by use case, with 38+ entries you can copy and run directly. Find the right command fast when you need it. · Sections: Base Instructions, Env &amp; Args, File Operations · e.g. FROM node:18-alpine, FROM scratch, WORKDIR /app</description>
    <pubDate>Tue, 21 Jul 2026 00:00:00 GMT</pubDate>
    <category>docker</category>
  </item>
  <item>
    <title>Docker Compose Cheatsheet - Command Reference</title>
    <link>https://laohand.com/docker-compose.html</link>
    <guid isPermaLink="true">https://laohand.com/docker-compose.html</guid>
    <description>All essential Docker Compose commands for multi-service projects organized by Start/Stop, Logs, Config, and Network &amp; Volume. Reference directly when managing and troubleshooting services. · Sections: Start &amp; Stop, Logs &amp; Status, Config &amp; Build · e.g. docker compose up -d, docker compose up -d --build, docker compose stop</description>
    <pubDate>Tue, 21 Jul 2026 00:00:00 GMT</pubDate>
    <category>docker</category>
  </item>
  <item>
    <title>kubectl Cheatsheet - Command Reference</title>
    <link>https://laohand.com/kubectl.html</link>
    <guid isPermaLink="true">https://laohand.com/kubectl.html</guid>
    <description>All essential kubectl commands organized by Query, Describe, Scale, and Context. Step through groups when troubleshooting CrashLoop or connectivity issues. · Sections: Get Resources, Describe &amp; Diagnose, Scale &amp; Rollout · e.g. kubectl get pods -n prod, kubectl get pods -o wide, kubectl get pods -A</description>
    <pubDate>Tue, 21 Jul 2026 00:00:00 GMT</pubDate>
    <category>kubernetes</category>
  </item>
  <item>
    <title>Docker CLI Cheatsheet - Command Reference</title>
    <link>https://laohand.com/docker-cli.html</link>
    <guid isPermaLink="true">https://laohand.com/docker-cli.html</guid>
    <description>All essential Docker commands organized by Image, Container, Network, Volume, Registry, Build Debug, and Compose. Copy and tweak on the spot during troubleshooting. · Sections: Image, Container, Network &amp; Volume · e.g. docker images, docker pull nginx:alpine, docker build -t app:1.0 .</description>
    <pubDate>Tue, 21 Jul 2026 00:00:00 GMT</pubDate>
    <category>docker</category>
  </item>
  <item>
    <title>rsync Cheatsheet - File Sync</title>
    <link>https://laohand.com/rsync.html</link>
    <guid isPermaLink="true">https://laohand.com/rsync.html</guid>
    <description>All essential rsync commands organized by use case, with 31+ entries you can copy and run directly. Find the right command fast when you need it. · Sections: Basic Sync, Transfer Options, Display Options · e.g. rsync -avz ./src /dest, rsync -avz ./src/ /dest, rsync -avz user@host:/remote /local</description>
    <pubDate>Sun, 19 Jul 2026 00:00:00 GMT</pubDate>
    <category>linux</category>
  </item>
  <item>
    <title>AWS CLI Cheatsheet - Cloud Commands</title>
    <link>https://laohand.com/awscli.html</link>
    <guid isPermaLink="true">https://laohand.com/awscli.html</guid>
    <description>All essential AWS CLI commands organized by use case, with 41+ entries you can copy and run directly. Find the right command fast when you need it. · Sections: Configure &amp; Auth, EC2 Instances, S3 Storage · e.g. aws configure, aws configure --profile production, aws configure list</description>
    <pubDate>Sun, 19 Jul 2026 00:00:00 GMT</pubDate>
    <category>linux</category>
  </item>
  <item>
    <title>HTTPie Cheatsheet - HTTP Client</title>
    <link>https://laohand.com/httpie.html</link>
    <guid isPermaLink="true">https://laohand.com/httpie.html</guid>
    <description>All essential HTTPie commands organized by use case, with 37+ entries you can copy and run directly. Find the right command fast when you need it. · Sections: Basic Requests, Headers &amp; Params, Auth &amp; Session · e.g. http GET https://api.example.com/users, http https://api.example.com/users, http POST https://api.example.com/users name=John age:=30</description>
    <pubDate>Sun, 19 Jul 2026 00:00:00 GMT</pubDate>
    <category>linux</category>
  </item>
  <item>
    <title>Makefile Cheatsheet - Build Automation</title>
    <link>https://laohand.com/makefile.html</link>
    <guid isPermaLink="true">https://laohand.com/makefile.html</guid>
    <description>All essential Makefile commands organized by use case, with 42+ entries you can copy and run directly. Find the right command fast when you need it. · Sections: Variables &amp; Assignment, Automatic Variables, Rules &amp; Targets · e.g. CC = gcc, CC := gcc, CC ?= gcc</description>
    <pubDate>Sun, 19 Jul 2026 00:00:00 GMT</pubDate>
    <category>linux</category>
  </item>
  </channel>
</rss>
