文章列表

3.2k 3 分钟

向量运算与相关想法 [Math 241] - Section 12.2 # Arithmetric with vectors # add/ subtract/ scale vectors 不同维度的向量无法相互加减乘除 # Geometric point of view i.e. # add a⃗\vec {a}a 的头与 b⃗\vec {b}b 的尾相连 # scaling # subtraction # Algebratic point of view i.e. a⃗=<a1,a2,...,an>\vec {a} = <a_1, a_2,...
965 1 分钟

多维度下的向量 [Math 241] - Section 12.1 # The Key Spaces —— 空间维度 R\mathbb{R}R: real numbers - 实数 e.x: 2, 0, -0.5, π\piπ, ... R2\mathbb{R} ^ 2R2: Two-dimensional plane/space - 二维平面 point in 2-dim space is pair of real numbers, such as (x, y) 二维平面中的点由一对实数组成 R3\mathbb{R} ^ 3R3: Three-dimensional plane/space...
396 1 分钟

# 创建库 GitHub 主页右上角加号 => New repository Repository name 中输入 用户名.github.io Description (描述) 选填 Initialize this repository with a README 可以勾选 点击 Create repository 创建 创建后默认博客地址为:https:// 用户名.github.io # 将库与 GitHub 连接 首先需要安装对应插件: hexo-deployer-git npm install hexo-deployer-git --save 接着修改...
265 1 分钟

# 创建博客 首先,选择一个打算存放博客的地方,然后两种办法 打开该文件夹,右键 -> Git Bash Here。 打开 cmd, cd 到该文件夹位置 接着 hexo init blog 会生成一个 blog 文件夹,里面是博客的文件。具体可以自己改名 接着可以 cd 进去: cd blog 安装基础组件: npm install 这时就可以预览了,输入: hexo s 访问 http://localhost:4000 可以看效果。 # 基本指令 hexo g 生成 /public 文件夹,里面是网站 hexo d 把这个网站文件夹推送到服务器 hexo...
1.3k 1 分钟

有几种办法: Personal Access Tokens (PAT) 密匙 # 密匙 # 创建 SSH 密匙 首先打开 cmd,设置自己显示的用户名以及邮箱 git config --global user.name "GitHub 用户名" git config --global user.email "GitHub 邮箱" 如果设置成功,输入 git config --global user.email 和 git config --global user.name 应该会显示自己刚刚的用户名以及邮箱 接着创建...
334 1 分钟

# 需要安装的软件 Node.js Git 安装自己系统对应的版本 # 检查 打开 cmd ( Win + R , 并输入 cmd , 然后 Enter ) 输入: node -v npm -v git --version 如果出现对应程序的版本号就表明正确安装,否则请尝试 重新安装 或 上网查询 。 例如: C:\Users>node -v v16.16.0 C:\Users>npm -v 8.15.0 C:\Users>git --version git version 2.37.1.windows.1 #...