Jarvis

Interested in the world, but not owned by it.

Observe · Build · Think

VI

github代理

powershell常用命令总结

查看powershell版本 $PSVersionTable.PSVersion

  1. 文件管理器打开指定目录(如: 当前目录下的aa文件夹): ii ./aa
  2. 查看环境变量: gci env:
  3. 安装包命令(如, RSReadLine): Install-Module PSReadLine -Scope CurrentUser -Force
  4. 查看安装的包(如, RSReadLine)的版本信息: Get-InstalledModule PSReadLine
  5. 编辑类似于linux ~/.bashrc文件的命令。[vscode打开] code $PROFILE    [记事本打开] notepad $PROFILE
  6. 命令联想:
    ps
    Import-Module PSReadLine
    
    Set-PSReadLineOption -PredictionSource History
    Set-PSReadLineOption -PredictionViewStyle InlineView
    
    Set-PSReadLineKeyHandler -Key UpArrow `
        -Function HistorySearchBackward
    
    Set-PSReadLineKeyHandler -Key DownArrow `
        -Function HistorySearchForward
  7. CoffeeTime

常用的chrome插件

  1. languagereactor
  2. 新侧边翻译
  3. code-box阅读增强

资源聚合

  1. FMHY[免费资源导航站]

资源下载

CLV

  1. 最新版本信息
  2. window下载

开发语言

  1. Nodejs阿里镜像源
  2. Python阿里源

Claude Code下载使用

  1. node下载: windows   mac-M芯片  
  2. 设置npm镜像源地址: npm config set registry https://registry.npmmirror.com
  3. claude code下载: npm install -g @anthropic-ai/claude-code
  4. CC Switch下载:windows   mac
  5. CC Switch配置模型

Skills

  1. Anthropic官方Skills

CodeGraph

  1. https://github.com/colbymchenry/codegraph
  1. 安装 npm i -g @colbymchenry/codegraph

电子书

  1. 深入理解 AI Agent - 李博杰