Building an MCP Server from ScratchA step-by-step guide to creating your own MCP server with Python, covering everything from the initial idea to deploying and promoting your server.2025-04-04教程
Git Merge vs Rebase: Which One Should You Use?Merge or rebase? It's the eternal Git dilemma. We break down the trade-offs, when each shines, and how to choose without wrecking your history.2025-03-01
conda 常用命令以下所有命令都以在Windows上的为例。 进入conda环境 1 activate 退出 1 deactivate 创建环境 1 conda create -n 如果使用python,需要用 1 conda create -n python 进入指定环境 1 conda activate 列出当前环境的包 1 conda list 安装指定的包 1 conda install 可以指定版本。 1 conda install = 查看2024-02-26笔记
Essential conda Commands You Need to KnowAll commands below are demonstrated on Windows. Entering a conda environment 1 activate Exiting 1 deactivate Creating an environment 1 conda create -n If you’re using python, you’ll need to run 1 conda create -n python Entering a specific environment 1 conda activate 2024-02-26笔记
Google Advanced Search Tips + Simple Tampermonkey ScriptJump straight to a beginner-friendly UI: Google Advanced Search Google Search Advanced Commands: A Complete Table Summary (with Examples) - EvanLi’s Blog Search Strategy Problem-Solving Approach * Extract keywords * Refine * Reverse-engineer * Convert & transform Syntax Commonly used syntax: 2023-11-29教程
Google 高级搜索技巧+简易油猴脚本直达简单入门的UI: Google 高级搜索 谷歌搜索引擎高级搜索、命令大全表格总结(完整示例说明) - EvanLi的博客 搜索思路 解决思路 * 取词 * 优化 * 反推 * 转化转换 语法 常用语法: 搜索操作符功能示例" "搜索包含特定单词或短语的结果。“steve jobs”OR搜索与 X 或 Y 相关的结果。jobs OR gates``与OR 功能相同。AND搜索与 X 和 Y 相关的结果。jobs AND gates-搜索不包含特定单词或短语的结果。jobs -apple*通配符,匹配任何单词或短语。steve * apple( )分组多个搜索条件。(ipad 2023-11-29教程