如果我有一台电脑,我会好好的进行磁盘分区,让磁盘变得干净简洁易区分
SSD:512G(or 256G)
机械:2T
运行内存:16G
SSD:150G单独分出,备用,剩余为C盘,用来存放软件、系统等
机械:100G用来存放代码,为E盘,剩余单独成区D盘
除了基本的系统文件夹外,单独新建Program
文件夹,用来存放破解或者绿色软件
由于是用来存放代码的,所以按照语言分类
装机软件分为三大类:日常工具软件、编程软件、办公软件
所有的安装包在这里:https://cloud.189.cn/t/qYvQFbYJvI32(访问码:c8xt)
netdisk;P2SP;2.2.60.26
16
(不是越大越好)文档
种子
音乐
视频、字幕下载
视频在线观看
软件
Microsoft Store中搜索:Pichon - Free Icons
十分的强大,i了i了~
关于VS Code、VS2019、Codeblocks的相关设置,点击进入这个博客
https://blog.csdn.net/qq_43328585/article/details/104583885
我的电脑-->属性-->高级系统设置-->高级-->环境变量-->系统变量-->path-->编辑
{
// Use IntelliSense to learn about possible attributes.
// Hover to view descriptions of existing attributes.
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
"version": "0.2.0",
"configurations": [
{
"name": "(gdb) 启动",
"type": "cppdbg",
"request": "launch",
"program": "${fileDirname}\\${fileBasenameNoExtension}.exe",
"args": [],
"stopAtEntry": false,
"cwd": "${workspaceFolder}",
"environment": [],
"externalConsole": true,
"MIMode": "gdb",
"miDebuggerPath": "C:\\mingw64\\bin\\gdb.exe",/*待修改*/
"setupCommands": [
{
"description": "为 gdb 启用整齐打印",
"text": "-enable-pretty-printing",
"ignoreFailures": true
}
],
"preLaunchTask": "C/C++: g++.exe build active file"
}
]
}
切记修改自己的编译器路径
3. 配置task
{
"version": "2.0.0",
"tasks": [
{
"type": "shell",
"label": "C/C++: g++.exe build active file",
"command": "C:\\mingw64\\bin\\g++.exe",/*待修改*/
"args": [
"-g",
"${file}",
"-o",
"${fileDirname}\\${fileBasenameNoExtension}.exe"
],
"options": {
"cwd": "C:\\mingw64\\bin"/*待修改*/
},
"problemMatcher": [
"$gcc"
],
"group": {
"kind": "build",
"isDefault": true
}
}
]
}
密钥
Visual Studio 2019 Enterprise
BF8Y8-GN2QH-T84XB-QVY3B-RC4DF
Visual Studio 2019 Professional
NYWVH-HT4XC-R2WYW-9Y3CM-X4V3Y
工具-->选项-->文本编辑器-->选择对应的语言-->滚动条-->(行为设置下)使用垂直滚动条的缩略图模式-->确定
有些东西https://blog.csdn.net/qq_43328585/article/details/104583885
这里有
重新打开恢复上次显示的文件夹
找到matlab快捷方式处,选择属性,进入后在目标
中添加如下代码:-useStartupFolderPref
,注意与前者空出一个空格
修改字体
在相应的安装目录下的MATLAB\Rxxxxx\sys\java\jre\win64\jre\lib\fonts
中添加字体文件
功能极其强大,牛逼之处不多说