hexo-建站总结
搭站1 基础OS : win 10 x64 教育版
Cmd: git bash
Architecture: Hexo
2 准备工具2.1 git下载网址: http://git-scm.com/download/win
2.2 Node.js下载网址:https://nodejs.org/zh-cn/download/
包含:node、npm
3 安装hexo123456# 安装npm install hexo-cli -g# 查看版本hexo -v
4 配置站点step 1: 建立站点
123456# 建站hexo init blog# 进入blog文件夹cd blog# npm配置npm install
step 2: 配置站点信息
打开_config.yml文件,修改配置信息
123456789101112# Site title: #填站点名称subtitle: # 小标题description:author:language: # en(英语)timezone: # 时区# URLurl:https://jaheel.github.io/blogroot:/ ...
hexo-op
hexo opQuick StartCreate a new post1$ hexo new "My New Post"
More info: Writing
Run server1$ hexo server
More info: Server
Generate static files1$ hexo generate
More info: Generating
Deploy to remote sites1$ hexo deploy
More info: Deployment
git command
创建与合并命令查看分支:git branch
创建分支:git branch name
切换分支:git checkout name
创建+切换分支:git checkout -b name
合并某分支到当前分支:git merge name
删除分支:git branch -d name
git basic command mkdir: XX (创建一个空目录 XX指目录名)
pwd: 显示当前目录的路径。
git init 把当前的目录变成可以管理的git仓库,生成隐藏.git文件。
git add XX 把xx文件添加到暂存区去。
git commit –m “XX” 提交文件 –m 后面的是注释。
git status 查看仓库状态
git diff XX 查看XX文件修改了那些内容
git log 查看历史记录
git reset –hard HEAD^ 或者 git reset –hard HEAD~ 回退到上一个版本
...
C语言笔记
学习自:C语言中文网
1 基础1.1 字符编码
字符编码
说明
ASCII
只显示英文字符(基本拉丁字母)
GB2312
简体中文字符集,1980年发布
GBK
中文字符集,在GB2312基础上扩展,1995年发布
GB18030
中文字符集,GBK的再扩展,2000年发布
Big5
繁体中文字符集,台湾、香港地区
ISO/IEC 8859
欧洲字符集(ASCII的扩展)
Unicode
统一码,万国码
Unicode方案
说明
UTF-8
变长编码方案,使用1~6个字节存储
UTF-32
固定长度编码方案,始终4个字节
UTF-16
使用2or4个字节存储
1.2 编译(Compile)、链接(Link)编译器(Compiler)
编译:将程序转换成计算机能够识别的二进制文件
链接器(Linker)
链接:将目标文件(Object File)和系统组件(比如标准库、动态链接库等)结合起来。
1.3 数据类型
说明
数据类型
数据长度
字符型
char
1
短整型
short
2
整型
int
4
...
Csharp Structure
DictionaryC# Dictionary class is a generic collection of keys and values pair of data.
Defined in the System.Collections.Generic namespace is a generic class and can store any data types in a form of keys and values. Each key must be unique in the collection.
1using System.Collections.Generic;
1 Add elements to a C# Dictionary12345678910111213141516171819Dictionary<string,string> EmployeeList=new Dictionary<string,stirng>();//Add items to the dictionary both keys and values are stri ...
Computer English
1 专有名词computer 计算机
computer science 计算机科学
overview 概述
automation 自动化
compile v. 汇编,编译
Analytical Engine 分析机,解析机
Difference Engine 差分机
prototype n.原型,样机
memory n.存储器,内存
transistor n.晶体管
logical element 逻辑元件
spacing n.间隔
integrated circuit 集成电路(IC)
microprocessor n.微处理器
microchip n.微芯片
etch v. 蚀刻
instruction set 指令集
workstation n.工作站
mainframe n.主机,大型机
supercomputer n.超级计算机,巨型计算机
bus:总线
numerical analysis : 数值分析
life cycle 生命周期,生存周期
image processing 图像处理
signal processing 信号处理
speech recogniti ...