Skip to content

Commit

Permalink
更新内容
Browse files Browse the repository at this point in the history
  • Loading branch information
Shimiankang committed Oct 18, 2024
1 parent 599bd5f commit 54f22a4
Show file tree
Hide file tree
Showing 4 changed files with 33 additions and 22 deletions.
25 changes: 13 additions & 12 deletions ComputerSkills.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,13 +2,13 @@

##### 该笔记主要记录一些电脑经常使用的快捷键以及一些开发技巧之类内容。

## Edge 技巧
## Edge 技巧

- 地址栏输入 edge://flags 进入edge 实验室页面
- 地址栏中输入 edge://surf 进入冲浪小游戏
- 地址栏中前缀加 read:// 进入阅读模式

#### 快捷键
#### 快捷键

```scss

Expand All @@ -18,7 +18,7 @@ ctrl +



## Chrome 技巧
## Chrome 技巧

#### 快捷键:

Expand All @@ -45,7 +45,7 @@ ctrl + shift + n // 新窗口打开私密模式

```

### Lorem&Lorem Picsum
### Lorem&Lorem Picsum

一般编辑器都支持,Lorem 一个随机生成数据的

Expand Down Expand Up @@ -75,7 +75,7 @@ LoremN*M // M 代表要生成几句



## VsCode 使用
## VsCode 使用

快捷键:

Expand All @@ -100,7 +100,7 @@ ctrl + k ; ctrl + j //展开所有代码
ctrl + shift + c // 在根目录打开CMD
```

## HbuilderX 使用
## HbuilderX 使用

快捷键:

Expand All @@ -116,7 +116,7 @@ alt + x //打开或关闭控制台

```

## WebStorm 使用
## WebStorm 使用

快捷键:

Expand Down Expand Up @@ -159,7 +159,7 @@ ctrl + shift + a // 查找操作

```

## Jet Brains 全家桶插件
## Jet Brains 全家桶插件

| 插件名称 | 说明 |
| :--------------------------------- | :--------------------------------------------------- |
Expand All @@ -179,7 +179,7 @@ ctrl + shift + a // 查找操作



## SubmileText 使用
## SubmileText 使用

```scss
ctrl + shift + p //打开命令行窗口
Expand All @@ -189,18 +189,18 @@ ctrl + shift + [ //选中代码 折叠 ] 是展开
ctrl + shift + 上下键 //移动代码
```

## Excel 使用
## Excel 使用

```scss

f2 // 进入编辑模式
F2 // 进入编辑模式
Esc // 退出编辑模式
Ctrl + ; // 输入当前日期
Ctrl + Shift + ; // 输入当前时间

```

## Typora 使用
## Typora 使用

Typora官网:[https://www.typora.io/](https://www.typora.io/)

Expand All @@ -212,6 +212,7 @@ Typora 常用的快捷键:
| --------------------- | ---------------------- |
| ctrl + k | 创建超链接 |
| ctrl + / | 切换源码编辑模式 |
| ctrl + shift + L | 显示/隐藏侧边栏 |
| ctrl + shift + i | 插入图片 |
| ctrl + 1.....n | 1....n 级标题文字 |
| ctrl + n | 在新窗口打开,新建文件 |
Expand Down
14 changes: 10 additions & 4 deletions JavaScript.md
Original file line number Diff line number Diff line change
Expand Up @@ -1346,15 +1346,15 @@ koa2 run dev 项目名称

```
####
## Nest 框架
Nest 是一个用于构建高效,可拓展的 Node.js 服务端应用程序的框架。它使用渐进式JavaScript,内置并完全支持TypeScript(但仍然允许开发人员使用纯JavaScript编写代码)并结合了OOP(面向对象编程)。FP(函数式编程)和FRP(函数时响应编程)的元素。
**安装使用**
#### 安装使用
```sh

Expand All @@ -1374,13 +1374,17 @@ git clone https://github.com/nestjs/typescript-starter.git <项目名>
### Volta
## Volta
Volta 是一种管理 JavaScript 命令行工具的便捷方式。
Volta 的优点就是:速度、无缝,每个项目的版本切换、跨平台支持、支持多个包管理器、稳定的工具安装、可拓展性。
缺点:安装其他的工具时,老是报一些莫名其妙的错误 <span style="color: red">Volta error: Could not create shared environment for package</span>
**常见问题:** 安装其他的工具时,老是报一些莫名其妙的错误 <span style="color: red">Volta error: Could not create shared environment for package</span>
**解决方法:** 用管理员权限打开终端
```sh

Expand All @@ -1393,6 +1397,8 @@ volta install [email protected]
# 为一个项目选择节点引擎和包管理器, 这个命令需在项目目录下使用,该命令会记录版本号到 package.json 文件中
# 固定项目的运行时或包管理器
volta pin node@14.18.0
# 然后切换当前项目node版本
node -v

# 从工具链中删除
volta uninstall node@14.18.0
Expand Down
6 changes: 3 additions & 3 deletions MongoDB_notes.md
Original file line number Diff line number Diff line change
Expand Up @@ -293,7 +293,7 @@ db.student.insert({

```

查询文档
#### 查询文档

```scss

Expand All @@ -316,7 +316,7 @@ db.collection.find({ id: { $gt: 100, $lt: 200 }})

```

对照表
#### 对照表

| 操作 | 格式 | 范例 | RDBMS中的类似语句 |
| :--------- | :----------------------- | :------------------------------------------ | :---------------------- |
Expand Down Expand Up @@ -352,7 +352,7 @@ db.collection.find({

```

模糊查询
#### 模糊查询

```scss

Expand Down
10 changes: 7 additions & 3 deletions PHP_notes.md
Original file line number Diff line number Diff line change
Expand Up @@ -454,13 +454,17 @@ function stateChange(){

##### JavaScript中:JSON.parse ( );将字符串转换成 json 数据格式;

##### //JSON数据结构
```json
// JSON数据结构

{"名1":"值1","名2","值2"}

{"name":"xikun",'age':19,'isboy':true} 表示㇐个单独的对象
{"name":"xikun",'age':19,'isboy':true} // 表示㇐个单独的对象

[{"name":"xikun",'age':19},{"name":"xikun",'age':19}] // 表示json数
```


[{"name":"xikun",'age':19},{"name":"xikun",'age':19}] 表示json数

#### PHP面向对象

Expand Down

0 comments on commit 54f22a4

Please sign in to comment.