跳转至

好用的软件和工具记录,持续整理汇总中...

001_tools

1. Snipaste

Snipaste Mac下载-Snipaste for Mac(好用的截图软件)- Mac下载

2. brew源

参考:https://cloud.tencent.com/developer/article/1896287 切换为阿里源

Bash
# 查看 brew.git 当前源
$ cd "$(brew --repo)" && git remote -v
origin    https://github.com/Homebrew/brew.git (fetch)
origin    https://github.com/Homebrew/brew.git (push)

# 查看 homebrew-core.git 当前源
$ cd "$(brew --repo homebrew/core)" && git remote -v
origin    https://github.com/Homebrew/homebrew-core.git (fetch)
origin    https://github.com/Homebrew/homebrew-core.git (push)

# 修改 brew.git 为阿里源
$ git -C "$(brew --repo)" remote set-url origin https://mirrors.aliyun.com/homebrew/brew.git

# 修改 homebrew-core.git 为阿里源
$ git -C "$(brew --repo homebrew/core)" remote set-url origin https://mirrors.aliyun.com/homebrew/homebrew-core.git

# zsh 替换 brew bintray 镜像
$ echo 'export HOMEBREW_BOTTLE_DOMAIN=https://mirrors.aliyun.com/homebrew/homebrew-bottles' >> ~/.zshrc
$ source ~/.zshrc

# bash 替换 brew bintray 镜像
$ echo 'export HOMEBREW_BOTTLE_DOMAIN=https://mirrors.aliyun.com/homebrew/homebrew-bottles' >> ~/.bash_profile
$ source ~/.bash_profile

# 刷新源
$ brew update

3. Enterprise Architect

最新英文版16.0软件下载地址: 链接: https://pan.baidu.com/s/1N-Avq8y3S-bq6roeu5toNA 提取码: bee9

文档下载地址 链接: https://pan.baidu.com/s/1PKdLEJtN5IRfKYmRtbd3MQ 提取码: 35e7

12.1中文版下载地址: 链接: https://pan.baidu.com/s/1e3YMJ9dsSde00hXqVHkrDw 提取码: p7ja

EA 16.0安装与破解说明: 0.软件不支持在VMWARE或其它虚拟机上运行。 1.下载安装包,用WinRAR等软件来解压。 2.以管理员身份安装。 4.软件是已经激活过的,安装后直接使用。 5.运行软件。 OK!

最新英文版15.2软件下载地址: 链接: https://pan.baidu.com/s/1JLAoEKiHZf6nQC0iOypWqg 提取码: cgk5

4. Mermaid

5. Drawio

6. VSCode

6.1. 好用插件

  • gitlens
  • github repositories

6.2. launch.json

支持gdb调试

JSON
{
  "version": "0.2.0",
  "configurations": [
      {
          "name": "(gdb) gem5", //这个应该是F1中出现的名字
          "type": "cppdbg",
          "request": "launch",
          "program": "${workspaceFolder}/build/ARM/gem5.opt", //需要运行的是当前打开文件的目录中,名字和当前文件相同,但扩展名为exe的程序
          "args": ["configs/learning_gem5/part2/hello_goodbye.py"],
          "stopAtEntry": false, // 选为true则会在打开控制台后停滞,暂时不执行程序
          "cwd": "${workspaceFolder}", // 当前工作路径:当前文件所在的工作空间
          "environment": [],
          "externalConsole": false,  // 是否使用外部控制台,选false的话,我的vscode会出现错误
          "MIMode": "gdb",
          "miDebuggerPath": "/usr/bin/gdb",
          "setupCommands": [
              {
                  "description": "Enable pretty-printing for gdb",
                  "text": "-enable-pretty-printing",
                  "ignoreFailures": true
              }
          ]
      }]
}

6.3. 快捷键

code.visualstudio.com/shortcuts/keyboard-shortcuts-windows.pdf code.visualstudio.com/shortcuts/keyboard-shortcuts-macOS.pdf

调试: - 新增/取消断点:F9 - Start/Continue: F5 - Stop: Shift + F5 - Step into: F11 - Step out: Shift + F11 - Step over: F10

窗口: - 显示/隐藏侧边栏:Cmd + B - 资源管理器:Shift + Cmd + E - 插件扩展:Shift + Cmd + X - 搜索栏:Shift + Cmd + F - 调试栏:Shift + Cmd + D - 源代码管理:Shfit + Ctrl + G 代码阅读: - 代码提示:Cmd + I - 跳转到定义:F12 - 查看引用:Shift + F12 - 进入符号:Ctrl + ] - 返回符号:Ctrl + O - 当前文档符号大纲:Shift + Cmd + O

7. Vim

插件: - ctags - nerdtree - completor - vundle - vim-airline - vim-airline-themes - vim-fugitive - vim-colors-solarized

vim 光标移动 - 字符移动,光标移动,单词移动,行移动 - vim使用入门 | 宅学部落 Vim 调试:termdebug 入门-CSDN博客 Vim安装插件管理器Vundle-腾讯云开发者社区-腾讯云 GitHub - preservim/nerdtree VIM插件:目录导航与操作插件NERDTree的使用方法-CSDN博客 vim插件——vim-colors-solarized_vim90 colors-CSDN博客

8. Obsidian

好用插件 - Auto Link Title - Editor Syntax Highlight - Icon Folder - Image auto upload Plugin - Image Toolkit - obsidian-title-index - Outliner - Terminal - Vimrc Support

9. MAC快捷键

mac快捷键官方链接:https://support.apple.com/zh-cn/HT201237 Mac中主要有四个修饰键,分别是Command,Control,Option和Shift。 image-20230716161059404

9.1. 全系统通用

  • 关闭当前窗口:Command-W
  • 隐藏当前APP:Command-H
  • H与W的区别在于前者是当前APP中的所有窗口都会隐藏,后者只会关闭当前窗口
  • 最小化当前APP:Command-M
  • 会最小化到程序坞
  • 打开新窗口:Command-N
  • 切换当前APP:Command-Tab
  • 打开当前APP的偏好设置:Command-,
  • 全屏/退出全屏APP:Control-Command-F
  • 不是所有的APP都支持
  • 退出APP:
  • 普通退出:Command-Q强制退出:Option-Command-Esc
  • 截屏:Shift-Command-5/4/3
  • 切换大小写:
  • 单次大写:Shift-字母切换:Fn-Tab
  • 切换输入法:Ctrl + Space
  • 新建文件夹:Shift-Command-N

9.2. 浏览器

  • 打开新标签页:
    • 新标签页:Command-T
    • 最后被关闭的:Shift-Command-T
    • 在新窗口新建:Command-N
    • 在新窗口用无痕方式新建:Shift-Command-N
    • 当前页面打开主页:Shift-Command-H
  • 关闭标签页:
    • 关闭当前:Command-W
    • 关闭所有:Shift-Command-W
  • 切换标签页:
    • 下一个: Control-Tab
    • 前一个: Shift-Control-Tab
    • 指定页签:Command-数字,支持1-8最后页签:Command-9
  • 刷新页面:
    • 普通刷新:Command-R
    • 忽略缓存刷新:Shift-Command-R
  • 输入搜索:
    • 聚焦浏览器的地址栏:Command-L
    • 地址栏检索:Option-Command-F
  • 打开下载页面:Shift-Command-J
  • 打开历史记录:Command-Y
  • 打开书签管理器:Option-Command-B
  • 打开或关闭书签栏:Shift-Command-B
  • 收藏书签:
    • 收藏当前页面:Command-D
    • 收藏所有页面:Shift-Command-D
  • 在新标签页打开链接:
    • 只是打开:Command-链接
    • 打开并切换:Shift-Command-链接
  • 页面前进回退
    • 方案1:Command-[或者]
    • 方案2:Command-左右方向
  • 页面滚动
    • 上下逐渐滚动:上下方向
    • 页面顶部或底部:Command-上下方向
    • 向下滚一页:Space
    • 向上滚一页:Shift-Space
  • 页面检索
    • 开始检索:Command-F
    • 跳转下一条:Command-G
    • 跳转上一条:Shift-Command-G
  • 查看网页源代码:Option-Command-U
  • 查看可点击项:
    • 下一个:Tab
    • 上一个:Shift-Tab
  • 用浏览器打开本地文件:Command-O
  • 页面缩放
    • 放大:Command-+
    • 缩小:Command--
    • 恢复默认:Command-0

clion

在淘宝上买的破解方案: Mac版激活教程:支持全家桶 支持专业版 支持最新版 - 飞书云文档 mac2020-2023(方法1) - 飞书云文档


最后更新: 2024-04-14