常用开发软件
windows 下使用 dbeaver 连接 mysql调整字体大小
VS Code中使用git bash
terminal
在vscode设置界面,搜索terminal.integrated.profiles.windows
,然后edit in setting.json.
在json文件中搜索terminal.integrated.profiles.windows
,修改terminal.integrated.profiles.windows
对应的值,并追加一个属性terminal.integrated.defaultProfile.windows
。
"terminal.integrated.profiles.windows": {
"PowerShell": {
"source": "PowerShell",
"icon": "terminal-powershell"
},
"Command Prompt": {
"path": [
"${env:windir}\\Sysnative\\cmd.exe",
"${env:windir}\\System32\\cmd.exe"
],
"args": [],
"icon": "terminal-cmd"
},
"Git Bash": {
"path": "D:\\software\\Git\\bin\\bash.exe",
"icon": "terminal-bash"
}
},
"terminal.integrated.defaultProfile.windows": "Git Bash"
vscode 取消AI助手提示
-
对所有工程有效: 在设置中搜索
inlineSuggest.enabled
,然后取消勾选即可。 -
如何设置对单个工程有效?在哪创建文件? 在项目根目录创建
.vscode/settings.json
文件,添加如下内容:
{
"editor.inlineSuggest.enabled": false
}
idea中powershell中文是原生编码<AA>
解决办法
powershell.exe -NoExit -Command "[Console]::OutputEncoding=[System.Text.Encoding]::UTF8; $env:LANG='C.UTF-8'; $env:LC_ALL='C.UTF-8'”
重置mobaxterm主密码
idea 重置
C:\Users\xxxx\AppData\Roaming\JetBrains\IntelliJIdea2021.1\eval
删除以上目录中的 idea211.evaluation.key
协议
本作品代码部分采用 Apache 2.0协议 进行许可。遵循许可的前提下,你可以自由地对代码进行修改,再发布,可以将代码用作商业用途。但要求你:
- 署名:在原有代码和衍生代码中,保留原作者署名及代码来源信息。
- 保留许可证:在原有代码和衍生代码中,保留Apache 2.0协议文件。
- 署名:应在使用本文档的全部或部分内容时候,注明原作者及来源信息。
- 非商业性使用:不得用于商业出版或其他任何带有商业性质的行为。如需商业使用,请联系作者。
- 相同方式共享的条件:在本文档基础上演绎、修改的作品,应当继续以知识共享署名 4.0国际许可协议进行许可。