Rethinking Agents and the Essence of Productivity GainsDrawing from hands-on experience with various agent products, this post dissects the core principles behind agent-driven efficiency and shares a writing workflow built on OpenCode.2026-02-24
My Current Vibe Coding Workflow (Via Phone)A quick look at my personal mobile-based OpenCode Vibe Coding workflow.2026-02-20教程
Command Claude Code from Your PhoneLeverage claudecodeui and Cloudflare Tunnels to control Claude Code remotely, with optional Zero Trust for enhanced security.2025-08-16
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笔记