76 字
1 分钟
无题
2024-12-01

兄弟们你们挣钱我没问题哈,我心态很好,为你们开心,但现在问题是,你们他妈的挣得有点太多了。

唉,又和马内擦肩而过。

这几天 GPT 给降智降完了,整个生产力下降严重,OpenAI 重度依赖了这下。

54 字
1 分钟
快速 Git fixup
2024-11-24

需要存在 fzf

Fixing commits with git commit —fixup and git rebase —autosquash | Jordan Elver | Ruby on Rails Developer, Bristol, UK

  1. Add autosquash to ~/.gitconfig

    [rebase]
    autosquash = true
    
  2. Add alias to ~/.gitconfig

    [alias]
    fixup = "!git log -n 50 --pretty=format:'%h %s' --no-merges | fzf | cut -c -7 | xargs -o git commit --fixup"
    
42 字
1 分钟
批量下载 Github Release
2024-11-23

安装 Github 官方 CLi 并登录。

gh release list -R mihomo-party-org/mihomo-party | `
Select-String -Pattern 'v\d+\.\d+(\.\d+)?' | %{$_.Matches.Value} | `
ForEach-Object { `
    Write-Host "Downloading version $_..." ; `
    gh release download $_ -D D:/tmp/Download/pt/$_ -R mihomo-party-org/mihomo-party `
}
1