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)
官方网站:https://massgrave.dev。 仓库地址:https://github.com/massgravel。 激活类型 支持产品 激活时间 是否需要联网 HWID Windows 10-11 永久 是 Ohook Office 永久 否 TSforge Windows / ESU / Office 永…
-
使用VisualCppRedist AIO安装Microsoft Visual C++运行时
仓库地址:https://github.com/abbodi1406/vcredist。 下载 VisualCppRedist_AIO_x86_x64.exe,右击“以管理员身份运行”-“Next”-“Finish”。
-
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 …