120 字
1 分钟
真厉害啊 OpenAI
2024-12-09

我一充钱就给我降智是吧。不充钱反倒正常能用。太牛逼了。

这几天也尝试了一下其他的 AI,都有点问题:

  • Claude 不能联网,会被旧的代码库恶心
  • Github Copilot 比较蠢
  • 通译千问/文心一言:呵呵
  • 官方 api 不好做 embedding,体验不佳
  • POE 不聪明,整个搜索流程非常割裂,最近还涨价了
  • Perplexity/Felo 只能搜索,搜索结果还一般,对话功能废物
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