Skip to content

Commit e2422ea

Browse files
committed
update
1 parent d801c0f commit e2422ea

File tree

3 files changed

+18
-25
lines changed

3 files changed

+18
-25
lines changed

README.md

+12-12
Original file line numberDiff line numberDiff line change
@@ -5,13 +5,13 @@
55

66
## Linux
77

8-
* [curl URL是否加单引号引发的问题]() 2018.12.7
9-
* [Linux常用命令总结]() 2018.8.31
8+
* [curl URL是否加单引号引发的问题](https://github.com/vonzhou/Blog/blob/master/Contents/Linux/curl/singlequote/curl-single-quote.md) 2018.12.7
9+
* [Linux常用命令总结](https://github.com/vonzhou/Blog/blob/master/Contents/Linux/linux-commands.md) 2018.8.31
1010

1111

1212
## Scala
1313

14-
* [《快学Scala》读书笔记]() 2018.12.31
14+
* [《快学Scala》读书笔记](https://github.com/vonzhou/ScalaImpatient#%E5%BF%AB%E5%AD%A6scala%E8%AF%BB%E4%B9%A6%E7%AC%94%E8%AE%B0) 2018.12.31
1515

1616
## Java
1717

@@ -32,25 +32,25 @@
3232

3333
## Spring/SpringBoot/SpringCloud
3434

35-
* [解决Zuul无法同时转发Multipart和JSON请求的问题]() 2018.10.10
36-
* [如何加快 Spring Boot 项目的启动速度?]() 2018.9.4
35+
* [解决Zuul无法同时转发Multipart和JSON请求的问题](https://github.com/vonzhou/Blog/blob/master/Contents/Spring/zuul-forward-multipart-and-json.md) 2018.10.10
36+
* [如何加快 Spring Boot 项目的启动速度?](https://github.com/vonzhou/Blog/blob/master/Contents/Spring/spring-boot-speedup.md) 2018.9.4
3737
* [Spring Boot 执行初始化逻辑的方法](https://github.com/vonzhou/spring-boot-examples/tree/master/spring-boot-init-method) 2018.9.18
3838

3939
## BigData 大数据
4040

41-
* [Kafka源码阅读环境搭建]() 2018.11.7
42-
* [Kafka中的2种日志清理策略]() 2018.914
43-
* [《HBase权威指南》读书笔记]() 2018.12.20
44-
* [运行《HBase权威指南》书中代码]() 2018.12.18
41+
* [Kafka源码阅读环境搭建](https://github.com/vonzhou/Blog/blob/master/Contents/BigData/kafka-source-begin.md) 2018.11.7
42+
* [Kafka中的2种日志清理策略](https://github.com/vonzhou/Blog/blob/master/Contents/BigData/kafka-cleanup-policy.md) 2018.914
43+
* [《HBase权威指南》读书笔记](https://github.com/vonzhou/Blog/blob/master/Contents/BigData/hbase-definitive.md) 2018.12.20
44+
* [运行《HBase权威指南》书中代码](https://github.com/vonzhou/hbase-book#%E8%BF%90%E8%A1%8Chbase%E6%9D%83%E5%A8%81%E6%8C%87%E5%8D%97%E4%B9%A6%E4%B8%AD%E4%BB%A3%E7%A0%81) 2018.12.18
4545

4646
## Nginx
4747

48-
* [Nginx后端响应不完整问题分析]() 2019.1.4
48+
* [Nginx后端响应不完整问题分析](https://github.com/vonzhou/Blog/blob/master/Contents/Nginx/nginx-temp-file.md) 2019.1.4
4949

5050
## Reading
5151

5252
* [何为整洁架构?](https://github.com/vonzhou/Blog/blob/master/Contents/Reading/cleanarch/clean-arch.md) 2019.1.8
53-
* [《非暴力沟通》读书笔记]()
53+
* [《非暴力沟通》读书笔记](https://github.com/vonzhou/Blog/blob/master/Contents/Reading/nonviolent-communication.md)
5454
* [2018阅读书单](https://github.com/vonzhou/Blog/blob/master/Contents/Reading/2018-read-book.md) 2018.12.16
5555
* [2017阅读书单](https://github.com/vonzhou/Blog/blob/master/Contents/Reading/2017-read-book.md) 2018.1.3
5656
* [2016阅读书单](https://github.com/vonzhou/Blog/blob/master/Contents/Reading/2016-read-book.md) 2016.12.10
@@ -62,7 +62,7 @@
6262

6363
## Other 其他
6464

65-
* [历史文章列表]() 2018.12.14
65+
* [历史文章列表](https://github.com/vonzhou/Blog/blob/master/Contents/Other/history-blogs.md) 2018.12.14
6666

6767

6868

generate.py

+6-3
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
#!/usr/bin/python
2+
# -*- coding: utf-8 -*-
3+
14
import platform
25
import subprocess
36

@@ -11,8 +14,8 @@
1114

1215

1316
# 处理写UTF-8到文件,需要这样
14-
file = codecs.open("index.html","w", "utf-8")
15-
start = """<!DOCTYPE html><html lang="en"><head><meta charset="UTF-8" /><meta name="viewport" content="width=device-width, initial-scale=1.0" /><meta http-equiv="X-UA-Compatible" content="ie=edge" /><title>编程之路 by vonzhou</title></head><body>"""
17+
file = codecs.open("index.html","w", "utf-8")
18+
start = """<!DOCTYPE html><html lang="en"><head><meta charset="UTF-8" /><meta name="viewport" content="width=device-width, initial-scale=1.0" /><meta http-equiv="X-UA-Compatible" content="ie=edge" /><title>编程之路 by vonzhou</title></head><body>"""
1619
end = """</body></html>"""
1720

1821
# 1.写头部
@@ -28,4 +31,4 @@
2831
# 3.写尾部
2932
file.write(end)
3033

31-
file.close()
34+
file.close()

index.html

-10
Original file line numberDiff line numberDiff line change
@@ -1,10 +0,0 @@
1-
<!DOCTYPE html><html lang="en"><head><meta charset="UTF-8" /><meta name="viewport" content="width=device-width, initial-scale=1.0" /><meta http-equiv="X-UA-Compatible" content="ie=edge" /><title>编程之路 by vonzhou</title></head><body><h2 id="主页---读书---知乎--github"><a href="http://vonzhou.com">主页</a> | <a href="https://github.com/vonzhou/readings">读书</a> | <a href="https://www.zhihu.com/people/vonzhou">知乎</a> | <a href="https://github.com/vonzhou">GitHub</a></h2>
2-
<h1 id="编程之路---build-your-programming-culture">编程之路 - Build Your Programming Culture</h1>
3-
<hr>
4-
<h2 id="linux"><a href="./Contents/Linux">Linux</a></h2>
5-
<h2 id="java"><a href="./Contents/Java">Java</a></h2>
6-
<p><a href="https://github.com/vonzhou/learning-java/blob/master/src/framework/kafka/rebalancejitter/README.md">大面积offset commit失败,导致不停Rebalance,大量消息重复消费的问题</a> 2019.1.30</p>
7-
<h2 id="reading"><a href="./Contents/Reading">Reading</a></h2>
8-
<h2 id="life"><a href="./Contents/Life">Life</a></h2>
9-
10-
</body></html>

0 commit comments

Comments
 (0)