diff --git a/articles/overflow.md b/articles/safe/overflow.md similarity index 100% rename from articles/overflow.md rename to articles/safe/overflow.md diff --git a/articles/time.attacks.md b/articles/safe/time.attacks.md similarity index 100% rename from articles/time.attacks.md rename to articles/safe/time.attacks.md diff --git a/cg/babylonjs/index.md b/cg/babylonjs/index.md index aa2f57f..749eb50 100644 --- a/cg/babylonjs/index.md +++ b/cg/babylonjs/index.md @@ -1,4 +1,5 @@ # BabylonJS -- [dev](./dev.md) -- [shader](./shader.md) \ No newline at end of file +- [dev](/cg/babylonjs/dev.md) +- [shader](/cg/babylonjs/shader.md) +- [mesh](/cg/babylonjs/mesh.md) \ No newline at end of file diff --git a/cg/threejs/index.md b/cg/threejs/index.md index 2e56a63..a7d54b0 100644 --- a/cg/threejs/index.md +++ b/cg/threejs/index.md @@ -1,11 +1,12 @@ # Threejs -- [乱记](./threejs.md) -- [Bump map](./bumpmap.md) -- [RayCaster](./raycaster.md) -- [Loader细节](./loader.md) +- [乱记](/cg/threejs/threejs.md) +- [Bump map](/cg/threejs/bumpmap.md) +- [RayCaster](/cg/threejs/raycaster.md) +- [Loader细节](/cg/threejs/loader.md) ## 参考 -- -- [一个模拟PC桌面的个人网站,可以参考](https://henryheffernan.com/) \ No newline at end of file +- [模拟的原神启动](https://github.com/gamemcu/www-genshin) + - [其官网显示“我们致力于创造令人惊叹的用户体验”, 目前看到其B站上的效果真的很amazing](https://gamemcu.com/) +- [一个模拟PC桌面的个人网站,可以参考](https://henryheffernan.com/) diff --git a/dev-note/powershell.md b/dev-note/powershell.md index 9cd983f..ca2364c 100644 --- a/dev-note/powershell.md +++ b/dev-note/powershell.md @@ -1,6 +1,8 @@ # PowerShell -[PowerShell 文档](https://learn.microsoft.com/zh-cn/powershell/) +- [什么是 PowerShell?](https://learn.microsoft.com/zh-cn/powershell/scripting/overview?view=powershell-7.4) +- [PowerShell 文档](https://learn.microsoft.com/zh-cn/powershell/) + ```shell # 默认关闭 diff --git a/index/safety.md b/index/safety.md index e3b667a..4aa8790 100644 --- a/index/safety.md +++ b/index/safety.md @@ -2,8 +2,8 @@ ## 编程 -- [溢出分析](../articles/overflow.md) -- [计时攻击](../articles/time.attacks.md) +- [溢出分析](/articles/safe/overflow.md) +- [计时攻击](/articles/safe/time.attacks.md) ## 逆向工程 @@ -13,4 +13,14 @@ ## 工具 -- [ImHex](https://github.com/WerWolv/ImHex) \ No newline at end of file +- [ImHex](https://github.com/WerWolv/ImHex) + +## 术语 + +### [CVE(Common Vulnerabilities and Exposures)](https://www.cve.org/) +> 公共漏洞和暴露,是公开披露的网络安全漏洞列表 + +[通用漏洞评估系统(Common Vulnerability Scoring System,CVSS)是广泛应用的漏洞评分开放标准。CVSS的分值代表漏洞的严重程度,分值范围为0.0到10.0,数字越大漏洞的严重程度越高。CVSS评分往往是漏扫工具、安全分析工具不可或缺的信息。](https://www.cvedetails.com/) + +- [什么是 CVE(常见漏洞和暴露)?](https://informationsecurityasia.com/zh-CN/what-is-cve/) +- [什么是CVE?](https://info.support.huawei.com/info-finder/encyclopedia/zh/CVE.html) diff --git a/index/standard.md b/index/standard.md index 646040e..530f1a4 100644 --- a/index/standard.md +++ b/index/standard.md @@ -78,3 +78,4 @@ - [个人关于微软的开发文档](https://msdn.itellyou.cn/) - [MDN Web Docs](https://developer.mozilla.org/en-US/) - [HandWiki is a wiki encyclopedia for collaborative editing of articles on computing, science, technology and general knowledge](https://handwiki.org/wiki/Start) +- [美国国家工业与学术Working with industry and academia to enhance economic security and improve our quality of life.](https://www.nist.gov/) diff --git a/web/index.md b/web/index.md index b48326e..d62f7f0 100644 --- a/web/index.md +++ b/web/index.md @@ -28,7 +28,20 @@ - [Web Check网站分析,分析各种配置,可参考网站的配置](https://web-check.as93.net/) - [Draggable objects可拖动的对象网页实现](https://www.redblobgames.com/making-of/draggable/) -## 多语言 + +## WebGL + +### [threejs](https://threejs.org/) + +- [笔记](/cg/threejs/index.md) + +### [BabylonJS](https://www.babylonjs.com/) + +- [笔记](/cg/babylonjs/index.md) + +## library + +### 多语言 > i18n是国际化的英文为 internationalization,为了方便,通常会简写为 i18n(开头的 i、中间的 18 个字符、末尾的 n) 分三类信息, @@ -43,7 +56,7 @@ - 符合用户习惯与不同文化的需求 -### **vue** +#### **vue** 把i18n实列对象放入Vue的实例中,通过this.$i18n.locale='zh'来设置对应的语言 @@ -62,8 +75,6 @@ new Vuei81n({ }) ``` -## library - ### 引导库 - [driver.js官网](https://driverjs.com/) diff --git a/web/pkg.md b/web/pkg.md index d092d57..feab49b 100644 --- a/web/pkg.md +++ b/web/pkg.md @@ -50,6 +50,8 @@ npm config list ## [pnpm](https://pnpm.io/) +- [中文文档](https://pnpm.io/zh/motivation) + ```js pnpm i // 安装依赖 pnpm add libName --save // 按照库