Linux经验
-
shebang(hashbang)注释的讲解
shebang 注释是一种用于在 Unix/Linux shell 中使用的特殊注释,由 #(hash) 和 !(bang) 两个符号开始,后跟脚本的解释器的路径。 shebang 注释又称为 hashbang 注释,更强调符号本身的名称(#! = hash + bang)。 注意:shebang 注释必须放置在脚本文…
-
使用FastGithub加快github访问速度的步骤(Ubuntu)
FastGithub两大功能: 1.解决github打不开、用户头像无法加载、releases无法上传下载、git-clone、git-pull、git-push失败等问题。 2.google的CDN资源替换,解决大量国外网站无法加载css和js的问题。 1.安装FastGithub 由于一些不可抗力因素,原作者已删除…
-
Visual Studio Code最新版国内CDN加速下载地址(Linux)
DEB包:https://go.microsoft.com/fwlink/?LinkID=760868 RPM包:https://go.microsoft.com/fwlink/?LinkID=760867
-
Microsoft Activation Scripts(MAS)
Microsoft Activation Scripts(MAS)是一款支持 HWID / Ohook / TSforge / KMS38 / Online KMS 五种方式激活 Windows 和 Office 的工具。 官方网站:https://massgrave.dev/。 仓库地址:https://githu…
-
VisualCppRedist AIO工具一键安装所有的最新的VC++运行时
VisualCppRedist AIO 工具会帮助我们安装所有的最新的 VC++ 运行时,并卸载旧版本的和多余的 VC++ 运行时,具体介绍详见https://github.com/abbodi1406/vcredist。 到https://github.com/abbodi1406/vcredist/releases…
-
Git常用命令一览表
1.git 命令 简述 git 查看git命令帮助 git <command> –help 或 git help <command> 查看git子命令帮助 git –version 查看git版本 2.git config 命令 简述 git config –global –list 查…
-
安装Git的步骤(Ubuntu)
1.安装Git 2.配置Git
-
常见设计原则和设计模式一览表
1.设计原则 设计原则 英文 单一职责原则 Simple Responsibility Principle, SRP 开闭原则 Open Close Principle, OCP 里氏替换原则 Liskov Substitution Principle, LSP 依赖倒置原则 Dependence Inversion …