Skip to content

Commit

Permalink
update
Browse files Browse the repository at this point in the history
  • Loading branch information
lmj01 committed May 7, 2024
1 parent e2a411b commit b7ae88d
Show file tree
Hide file tree
Showing 9 changed files with 44 additions and 16 deletions.
File renamed without changes.
File renamed without changes.
5 changes: 3 additions & 2 deletions cg/babylonjs/index.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
# BabylonJS

- [dev](./dev.md)
- [shader](./shader.md)
- [dev](/cg/babylonjs/dev.md)
- [shader](/cg/babylonjs/shader.md)
- [mesh](/cg/babylonjs/mesh.md)
13 changes: 7 additions & 6 deletions cg/threejs/index.md
Original file line number Diff line number Diff line change
@@ -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/)
- [模拟的原神启动](https://github.com/gamemcu/www-genshin)
- [其官网显示“我们致力于创造令人惊叹的用户体验”, 目前看到其B站上的效果真的很amazing](https://gamemcu.com/)
- [一个模拟PC桌面的个人网站,可以参考](https://henryheffernan.com/)
4 changes: 3 additions & 1 deletion dev-note/powershell.md
Original file line number Diff line number Diff line change
@@ -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
# 默认关闭
Expand Down
16 changes: 13 additions & 3 deletions index/safety.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@

## 编程

- [溢出分析](../articles/overflow.md)
- [计时攻击](../articles/time.attacks.md)
- [溢出分析](/articles/safe/overflow.md)
- [计时攻击](/articles/safe/time.attacks.md)

## 逆向工程

Expand All @@ -13,4 +13,14 @@

## 工具

- [ImHex](https://github.com/WerWolv/ImHex)
- [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)
1 change: 1 addition & 0 deletions index/standard.md
Original file line number Diff line number Diff line change
Expand Up @@ -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/)
19 changes: 15 additions & 4 deletions web/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -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)
分三类信息,
Expand All @@ -43,7 +56,7 @@
- 符合用户习惯与不同文化的需求


### **vue**
#### **vue**

把i18n实列对象放入Vue的实例中,通过this.$i18n.locale='zh'来设置对应的语言

Expand All @@ -62,8 +75,6 @@ new Vuei81n({
})
```

## library

### 引导库

- [driver.js官网](https://driverjs.com/)
Expand Down
2 changes: 2 additions & 0 deletions web/pkg.md
Original file line number Diff line number Diff line change
Expand Up @@ -50,6 +50,8 @@ npm config list

## [pnpm](https://pnpm.io/)

- [中文文档](https://pnpm.io/zh/motivation)

```js
pnpm i // 安装依赖
pnpm add libName --save // 按照库
Expand Down

0 comments on commit b7ae88d

Please sign in to comment.