SOFTWARE
OSS
MacOS-Typora-picgo
我的应用是通过 brew 管理的, brew
- fnm
- node(npm)
- pnpm
- picgo
pnpm add picgo -g
picgo set uploader
select “Custom Command” : [your node path] [your picgo-core path] upload
✘ [which node] [which picgo] upload
✔ [which node] [ npm root -g
/picgo/bin/picgo] upload
PicGo
Config PicGo-Core Please edit config.json at following location
- Linux / macOS → ~/.picgo/config.json
- Windows → C:\Users\klaus\ .picgo\config.json
选择 PicGo-Core (Command line)下载或更新
# 在此目录下 C:\Users\klaus\AppData\Roaming\Typora\picgo\win64
.\picgo.exe set uploader
.\picgo.exe use uploader
# Typora + Picgo + aliyun OSS https://zhuanlan.zhihu.com/p/104152479
# area(阿里云区域查询)https://help.aliyun.com/document_detail/31837.html
# area(七牛区域查询)https://developer.qiniu.com/kodo/1671/region-endpoint-fq
{
"picBed": {
"current": "qiniu",
"aliyun": {
"accessKeyId": "**************",
"accessKeySecret": "**************",
"bucket": "ulooklikeamovie",
"area": "oss-cn-beijing",
"path": "img/",
"customUrl": "",
"options": ""
},
"uploader": "qiniu",
"transformer": "path",
"qiniu": {
"accessKey": "**************",
"secretKey": "**************",
"bucket": "chinatelecom",
"url": "qiniu.viphimself.vip",
"area": "z0",
"options": "",
"path": ""
}
},
"picgoPlugins": {}
}
issues
Chrome offline
火狐开发者版切换语言
💔 开发者版参考 Firefox 官方更换语言指引不生效,前提是下载了语言包
- 在地址栏输入 about:config
- "Accept The Risk"
- 搜索框输入 intl.locale.requested
- 选择 string(字符串),然后点击右侧 ➕ 号
- 输入 zh-cn,en-us ... 只写其中一个
- 重启浏览器
PowerToys
Brew 软件源配置
在 ~/.zshrc
中添加以下内容,然后执行 source ~/.zshrc
即可
# Homebrew设置国内镜像
function set_china_source() {
export HOMEBREW_BREW_GIT_REMOTE="https://mirrors.ustc.edu.cn/brew.git"
export HOMEBREW_BOTTLE_DOMAIN="https://mirrors.ustc.edu.cn/homebrew-bottles"
export HOMEBREW_API_DOMAIN="https://mirrors.ustc.edu.cn/homebrew-bottles/api"
brew update
}
# Homebrew切换回官方源
function unset_china_source() {
# brew 程序本身,Homebrew / Linuxbrew 相同
unset HOMEBREW_BREW_GIT_REMOTE
git -C "$(brew --repo)" remote set-url origin https://github.com/Homebrew/brew
unset HOMEBREW_API_DOMAIN
unset HOMEBREW_BOTTLE_DOMAIN
brew update
}
如果报错 Error: Another active Homebrew process is already in progress.
, 执行以下命令
rm -rf $(brew --prefix)/var/homebrew/locks
powershell 设置代理
临时设置
$env:HTTP_PROXY = "http://localhost:7890"
$env:HTTPS_PROXY = "http://localhost:7890"
windows 查看端口占用
Powershell
Get-Process -Id (Get-NetTCPConnection -LocalPort 8080).OwningProcess
netstat -ano | findstr :<端口号>
tasklist | findstr <PID>
使用 Resource Monitor
Win R,输入 resmon
> 网络
> 侦听端口
VScode识别不出C盘
一定不要给C盘的子目录取名A、B等这些单字母,害惨我了,不过大概是 Cursor 的bug,VSCode 也短时出现过识别不出的问题,导致 @nuxtjs/tailwindcss
tailwindcss 在 VS Code 中的 Hover Preview 失效,C:/A/xxx 改成 C:/AI/xxx 后好了
PS命令
查看IP
get-netIPAddress -AddressFamily IPv4 | ft -AutoSize
get-netIPAddress | ft -AutoSize
来自AI:
get-netIPAddress
:这是PowerShell中的一个cmdlet(命令),用于检索与网络接口关联的所有IP地址的信息。这个cmdlet属于NetAdapter
模块,该模块提供了管理和查询网络适配器及其相关配置的功能。-AddressFamily IPv4
:这个参数指定了要检索的IP地址族。IPv4
表示仅获取IPv4地址的信息。如果不指定此参数,get-netIPAddress
默认会返回所有类型的IP地址(包括IPv4和IPv6)。|
:这个符号在PowerShell中用作管道(Pipeline),它的作用是将前一个命令的输出作为后一个命令的输入。这意味着get-netIPAddress -AddressFamily IPv4
的输出将被传递给后面的命令。ft -AutoSize
:这里ft
是Format-Table
的别名,是PowerShell中的一个cmdlet,用于将输入数据格式化为表格形式。-AutoSize
参数指示Format-Table
自动调整列的宽度以适应内容的长度,使表格输出更加易读。
查看powershell版本
$PSVersionTable.PSVersion
Tree
tree /?
# 查看所有 Profile 路径
$PROFILE | Get-Member -MemberType NoteProperty
# 不同版本的PowerShell,需要在终端选择不同的powershell查看
$PROFILE.AllUsersAllHosts
$PROFILE.AllUsersCurrentHost
$PROFILE.CurrentUserAllHosts
$PROFILE.CurrentUserCurrentHost
# 检查 Profile 是否存在
Test-Path $PROFILE.AllUsersAllHosts
# 如果不存在,创建文件
if (!(Test-Path $PROFILE.AllUsersAllHosts)) {
New-Item -Path $PROFILE.AllUsersAllHosts -Type File -Force
}
# 安装 PSTree 模块
Install-Module -Name PSTree
# 模块实际存储位置
C:\Program Files\WindowsPowerShell\Modules\PSTree
# 用记事本打开编辑
notepad $PROFILE.AllUsersAllHosts
notepad $PROFILE.CurrentUserAllHosts
# 以管理员权限打开
Start-Process notepad -ArgumentList $PROFILE.AllUsersAllHosts -Verb RunAs
# 添加如下
Import-Module PSTree
function Show-TreeStructure {
param (
[string]$path
)
$segments = $path.Split('\')
for ($i = 0; $i -lt $segments.Count; $i++) {
$indent = ""
# 为每一级添加正确的竖线和空格
for ($j = 0; $j -lt $i; $j++) {
$indent += [char]0x2502 + " " # 使用 Unicode 竖线
}
# 使用 Unicode 字符确保正确显示
Write-Output ($indent + [char]0x251C + [char]0x2500 + [char]0x2500 + " " + $segments[$i])
}
}
# 执行自定义函数
Show-TreeStructure "node_modules\.pnpm\vue-router@4.4.5_vue@3.5.12_typescript@5.6.3_\node_modules\vue-router\dist"
# 重新加载 Profile
. $PROFILE.AllUsersAllHosts
# 检查模块是否自动加载
Get-Module PSTree
# 或者测试命令是否可用
Get-PSTree --version
# 检查模块可用的命令
Get-Command -Module PSTree
# 使用 Get-PSTree 命令
Get-PSTree "node_modules\.pnpm\vue-router@4.4.5_vue@3.5.12_typescript@5.6.3_\node_modules\vue-router\dist"
# 或者使用它的别名 pstree
pstree "node_modules\.pnpm\vue-router@4.4.5_vue@3.5.12_typescript@5.6.3_\node_modules\vue-router\dist"
重启explorer
Stop-Process -Name explorer -Force; Start-Process explorer
PS执行策略
临时将执行策略设置为 "Bypass",允许您在当前 PowerShell 会话中运行任何脚本。
& 'C:\AI\DATA\tools\scripts\install-open-with-cursor.ps1'
[System. IO. Path]:: Combine()
$cursorExePath = [System.IO.Path]::Combine($env:LOCALAPPDATA, "Programs", "cursor", "Cursor.exe")
- $env:LOCALAPPDATA 是一个环境变量,它包含了当前用户的本地应用程序数据目录的路径。例如,在 Windows 10 上,它通常是 C:\Users<username>\AppData\Local。
- 然后,它将 "Programs", "cursor" 和 "Cursor.exe" 这三个路径片段拼接在一起,形成完整的路径。
所以最终的 $cursorExePath 变量的值应该类似于: C:\Users\klaus\AppData\Local\Programs\cursor\Cursor.exe
以管理员身份运行.ps1脚本
在管理员 PowerShell 窗口中, cd到脚本所在的目录
.\your_script.ps1
使用绝对路径来运行脚本
& 'C:\AI\DATA\tools\scripts\install-open-with-cursor.ps1'
- 使用 Start-Process cmdlet 以管理员身份运行脚本
Start-Process powershell.exe -Verb RunAs -ArgumentList "-File", ".\your_script.ps1"
Get-ChildItem
- 使用 Get-ChildItem 命令来手动搜索 Cursor.exe 文件
$cursorExePath = Get-ChildItem -Path $env:LOCALAPPDATA, $env:ProgramFiles, "$env:ProgramFiles(x86)" -Filter "Cursor.exe" -Recurse -ErrorAction SilentlyContinue | Select-Object -First 1 -ExpandProperty FullName
Write-Host "Cursor executable path: $cursorExePath"