一、移除Windows应用程序快捷方式小箭头通过修改注册表和清理图标缓存实现快捷方式箭头隐藏将代码保存为批处理文件并以管理员身份运行。reg add HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\Shell Icons /v 29 /d %systemroot%\system32\imageres.dll,197 /t reg_sz /ftaskkill /f /im explorer.exeattrib -s -r -h %userprofile%\AppData\Local\iconcache.dbdel %userprofile%\AppData\Local\iconcache.db /f /qstart explorerpause新建一个文本文档将文件后缀名改为bat右键以管理员身份运行上述代码即可二、Linux终端clear命令替代方案在缺少clear命令的环境下使用ANSI转义码实现屏幕清除功能并配置持久化设置。# 设置最原始、最兼容的终端类型export TERMdumb# 用原始的ANSI转义码清屏printf \033[H\033[2J# 立即生效到当前会话echo export TERMdumb ~/.bashrc# 创建clear和reset的别名alias clearprintf \033[H\033[2Jalias resetprintf \033c# 保存到.bashrcecho alias clearprintf \\\033[H\\033[2J\ ~/.bashrcecho alias resetprintf \\\033c\ ~/.bashrc三、常用开发资源镜像源提供主流开源软件的国内镜像下载地址加速软件获取过程。1、虚拟机镜像源下载https://mirrors.tuna.tsinghua.edu.cn/ubuntu-releases/2、Python包的下载pip install [包名] -i [镜像源URL]常用的国内镜像源清华https://pypi.tuna.tsinghua.edu.cn/simple阿里云https://mirrors.aliyun.com/pypi/simple/腾讯云https://mirrors.cloud.tencent.com/pypi/simple华为云https://repo.huaweicloud.com/repository/pypi/simple四、Visual studio code中文输出问题Visual studio code的utf-8编码无法显示中文通过配置对应的setting文件。解决办法位置~/.config/Code/User/settings.json这是最常用的设置文件修改后对所有项目生效。步骤按 Ctrl Shift PWindows/Linux之后输入setting找到文件这个文件是Preferences: Open User Settings (JSON)。