办公软件推荐

办公软件推荐

ditto: 记录复制信息,不需要重复复制。
snipaste: 截图可以定在窗口,不需要来回切页面。
vscode:tabnine插件提示代码,设置自动换行”editor.wordWrap”: “on”.
trae: AI编程软件,功能类似vscode,自带代码补全,可部分代码AI优化。
everything: 强大的文件搜索工具,支持快速搜索文件、文件夹、文档等。
xshell: 强大的终端工具,支持ssh连接、文件传输等。
rustdesk: 远程桌面软件,支持Windows、macOS、Linux等操作系统。

软件问题记录

brew安装慢或者没有反应,默认是github的源是国外的所以访问慢,所以需要换国内源,这里换的是清华的源

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
git -C "$(brew --repo)" remote set-url origin https://mirrors.tuna.tsinghua.edu.cn/git/homebrew/brew.git
git -C "$(brew --repo homebrew/core)" remote set-url origin https://mirrors.tuna.tsinghua.edu.cn/git/homebrew/homebrew-core.git
git -C "$(brew --repo homebrew/cask)" remote set-url origin https://mirrors.tuna.tsinghua.edu.cn/git/homebrew/homebrew-cask.git
echo 'export HOMEBREW_BOTTLE_DOMAIN=https://mirrors.tuna.tsinghua.edu.cn/homebrew-bottles' >> ~/.zshrc
source ~/.zshrc
echo 'export HOMEBREW_BOTTLE_DOMAIN=https://mirrors.tuna.tsinghua.edu.cn/homebrew-bottles' >> ~/.bash_profile
source ~/.bash_profile
brew update

# 安装工具,安装卡或者慢的继续观看文章,后面有解决方案
​# gifify开源项目地址:https://github.com/jclem/gifify
brew install gifify
# 切换到视频保存目录
cd Documents
# 重命名一下视频文件,原文件名太长转换会报错,也可以鼠标右键重命名
mv 屏幕录制2023-09-09\ 14.55.15.mov 1.mov
# 转换为gif
gifify 1.mov -o 1.gif