Skip to content

Commit

Permalink
更新了部分文档
Browse files Browse the repository at this point in the history
  • Loading branch information
jackfrued committed Mar 9, 2020
1 parent 45a8b23 commit b773c05
Show file tree
Hide file tree
Showing 5 changed files with 32 additions and 17 deletions.
2 changes: 1 addition & 1 deletion Day01-15/02.语言元素.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

计算机的硬件系统通常由五大部件构成,包括:运算器、控制器、存储器、输入设备和输出设备。其中,运算器和控制器放在一起就是我们通常所说的中央处理器,它的功能是执行各种运算和控制指令以及处理计算机软件中的数据。我们通常所说的程序实际上就是指令的集合,我们程序就是将一系列的指令按照某种方式组织到一起,然后通过这些指令去控制计算机做我们想让它做的事情。今天我们大多数时候使用的计算机,虽然它们的元器件做工越来越精密,处理能力越来越强大,但究其本质来说仍然属于[“冯·诺依曼结构”](https://zh.wikipedia.org/wiki/%E5%86%AF%C2%B7%E8%AF%BA%E4%BC%8A%E6%9B%BC%E7%BB%93%E6%9E%84)的计算机。“冯·诺依曼结构”有两个关键点,一是指出要将存储设备与中央处理器分开,二是提出了将数据以二进制方式编码。二进制是一种“逢二进一”的计数法,跟我们人类使用的“逢十进一”的计数法没有实质性的区别,人类因为有十根手指所以使用了十进制(因为在数数时十根手指用完之后就只能进位了,当然凡事都有例外,玛雅人可能是因为长年光着脚的原因把脚趾头也算上了,于是他们使用了二十进制的计数法,在这种计数法的指导下玛雅人的历法就与我们平常使用的历法不一样,而按照玛雅人的历法,2012年是上一个所谓的“太阳纪”的最后一年,而2013年则是新的“太阳纪”的开始,后来这件事情被以讹传讹的方式误传为”2012年是玛雅人预言的世界末日“这种荒诞的说法,今天我们可以大胆的猜测,玛雅文明之所以发展缓慢估计也与使用了二十进制有关)。对于计算机来说,二进制在物理器件上来说是最容易实现的(高电压表示1,低电压表示0),于是在“冯·诺依曼结构”的计算机都使用了二进制。虽然我们并不需要每个程序员都能够使用二进制的思维方式来工作,但是了解二进制以及它与我们生活中的十进制之间的转换关系,以及二进制与八进制和十六进制的转换关系还是有必要的。如果你对这一点不熟悉,可以自行使用[维基百科](https://zh.wikipedia.org/wiki/%E4%BA%8C%E8%BF%9B%E5%88%B6)或者[百度百科](https://baike.baidu.com)科普一下。

> 提示:近期关于**量子计算机**的研究已经被推倒了风口浪尖,量子计算机基于量子力学进行运算,使用量子瞬移的方式来传递信息。2018年6月,Intel宣布开发出新款量子芯片并通过了在接近绝对零度环境下的测试;2019年1月,IBM向全世界发布了首款商业化量子计算机
> 提示:近期关于**量子计算机**的研究已经被推倒了风口浪尖,量子计算机基于量子力学进行运算,使用量子瞬移的方式来传递信息。2018年6月,Intel宣布开发出新款量子芯片并通过了在接近绝对零度环境下的测试;2019年,IBM和Google都推出了自己的量子计算机
### 变量和类型

Expand Down
21 changes: 11 additions & 10 deletions Day91-100/97.电商网站技术要点剖析.md
Original file line number Diff line number Diff line change
Expand Up @@ -340,15 +340,15 @@ ElasticSearch的安装和配置可以参考[《ElasticSearch之Docker安装》](
1. 使用Docker安装ElasticSearch。

```Shell
docker pull elasticsearch:6.5.3
docker run -d -p 9200:9200 -p 9300:9300 -e "discovery.type=single-node" -e ES_JAVA_OPTS="-Xms512m -Xmx512m" --name es elasticsearch:6.5.3
docker pull elasticsearch:7.6.0
docker run -d -p 9200:9200 -p 9300:9300 -e "discovery.type=single-node" -e ES_JAVA_OPTS="-Xms512m -Xmx512m" --name es elasticsearch:7.6.0
```

> 说明:上面创建容器时通过`-e`参数指定了使用单机模式和Java虚拟机最小最大可用堆空间的大小,堆空间大小可以根据服务器实际能够提供给ElasticSearch的内存大小来决定,默认为2G。
2. 创建数据库。

请求:PUT - `http://1.2.3.4:9200/demo`
请求:PUT - `http://1.2.3.4:9200/demo/`

响应:

Expand All @@ -362,7 +362,7 @@ ElasticSearch的安装和配置可以参考[《ElasticSearch之Docker安装》](

3. 查看创建的数据库。

请求:GET - `http://1.2.3.4:9200/demo`
请求:GET - `http://1.2.3.4:9200/demo/`

响应:

Expand Down Expand Up @@ -528,18 +528,19 @@ ElasticSearch的安装和配置可以参考[《ElasticSearch之Docker安装》](
2. 下载和ElasticSearch版本对应的[ik](https://github.com/medcl/elasticsearch-analysis-ik)[pinyin](https://github.com/medcl/elasticsearch-analysis-pinyin)插件。

```Shell
yum install -y wget
cd plugins/
mkdir ik
cd ik
wget https://github.com/medcl/elasticsearch-analysis-ik/releases/download/v6.5.3/elasticsearch-analysis-ik-6.5.3.zip
unzip elasticsearch-analysis-ik-6.5.3.zip
rm -f elasticsearch-analysis-ik-6.5.3.zip
wget https://github.com/medcl/elasticsearch-analysis-ik/releases/download/v7.6.0/elasticsearch-analysis-ik-7.6.0.zip
unzip elasticsearch-analysis-ik-7.6.0.zip
rm -f elasticsearch-analysis-ik-7.6.0.zip
cd ..
mkdir pinyin
cd pinyin
wget https://github.com/medcl/elasticsearch-analysis-pinyin/releases/download/v6.5.3/elasticsearch-analysis-pinyin-6.5.3.zip
unzip elasticsearch-analysis-pinyin-6.5.3.zip
rm -f elasticsearch-analysis-pinyin-6.5.3.zip
wget https://github.com/medcl/elasticsearch-analysis-pinyin/releases/download/v7.6.0/elasticsearch-analysis-pinyin-7.6.0.zip
unzip elasticsearch-analysis-pinyin-7.6.0.zip
rm -f elasticsearch-analysis-pinyin-7.6.0.zip
```

3. 退出容器,重启ElasticSearch。
Expand Down
18 changes: 12 additions & 6 deletions Day91-100/98.项目部署上线和性能调优.md
Original file line number Diff line number Diff line change
Expand Up @@ -68,27 +68,33 @@
wget https://www.python.org/ftp/python/3.7.6/Python-3.7.6.tar.xz
```

3. 解压缩和解归档。
3. 验证下载文件。

```Bash
md5sum Python-3.7.6.tar.xz
```

4. 解压缩和解归档。

```Shell
xz -d Python-3.7.6.tar.xz
tar -xvf Python-3.7.6.tar
```

4. 执行配置生成Makefile(构建文件)。
5. 执行安装前的配置(生成Makefile文件)。

```Shell
cd Python-3.7.6
./configure --prefix=/usr/local/python37 --enable-optimizations
```

5. 构建和安装。
6. 构建和安装。

```Shell
make && make install
```

6. 配置PATH环境变量(用户或系统环境变量)并激活。
7. 配置PATH环境变量(用户或系统环境变量)并激活。

```Shell
vim ~/.bash_profile
Expand All @@ -108,13 +114,13 @@
source /etc/profile
```

7. 注册软链接(符号链接)- 这一步不是必须的,但通常会比较有用。
8. 注册软链接(符号链接)- 这一步不是必须的,但通常会比较有用。

```Shell
ln -s /usr/local/python37/bin/python3 /usr/bin/python3
```

8. 测试Python环境是否更新成功(安装Python 3一定不能破坏原来的Python 2)。
9. 测试Python环境是否更新成功(安装Python 3一定不能破坏原来的Python 2)。

```Shell
python3 --version
Expand Down
Binary file added res/meituan.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
8 changes: 8 additions & 0 deletions 更新日志.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,13 @@
## 更新日志

### 2020年3月8日

1. 更新了最后10天的部分文档。

2. 通过美团公益将近期打赏捐助给受疫情影响儿童。

![](res/meituan.png)

### 2020年3月1日

1. 优化了项目中的部分图片资源。
Expand Down

0 comments on commit b773c05

Please sign in to comment.