Skip to content

Commit 5293beb

Browse files
committed
Insert QRCode at the end of every post.
1 parent 7e96341 commit 5293beb

File tree

139 files changed

+845
-11
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

139 files changed

+845
-11
lines changed

content/zh/post/2016/emacs_ipython.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -96,3 +96,9 @@ similar to shell-pop"
9696
```
9797

9898
Enjoy Emacs :)
99+
100+
<div center class="qr-container">
101+
<img src="/ox-hugo/qrcode_gh_e06d750e626f_1.jpg" alt="qrcode_gh_e06d750e626f_1.jpg" width="160px" height="160px" center="t" class="qr-container" />
102+
公号同步更新,欢迎关注👻
103+
</div>
104+

content/zh/post/2016/emacs_startup.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -138,3 +138,9 @@ Emacs lisp 有一项auto-load 的技术,类似延迟加载,合理运用延
138138
这样 `anaconda-mode` 就会在 `python-mode` 加载以后被加载
139139

140140
Enjoy Emacs :)
141+
142+
<div center class="qr-container">
143+
<img src="/ox-hugo/qrcode_gh_e06d750e626f_1.jpg" alt="qrcode_gh_e06d750e626f_1.jpg" width="160px" height="160px" center="t" class="qr-container" />
144+
公号同步更新,欢迎关注👻
145+
</div>
146+

content/zh/post/2017/about_tool_about_tweak.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -192,3 +192,9 @@ i3wm, 在折腾过炫酷的 KDE, Gnome, xfce, 而我最后选择的是 i3这个
192192
编程随想也发一篇文章来说明[聊聊【折腾】的重要性](https://program-think.blogspot.com/2017/04/The-Importance-of-Zheteng.html), 来阐述「折腾」对自学与提高的重要性。
193193

194194
- Enjoy tweaking;Enjoy Linux :)
195+
196+
<div center class="qr-container">
197+
<img src="/ox-hugo/qrcode_gh_e06d750e626f_1.jpg" alt="qrcode_gh_e06d750e626f_1.jpg" width="160px" height="160px" center="t" class="qr-container" />
198+
公号同步更新,欢迎关注👻
199+
</div>
200+

content/zh/post/2017/blog.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -68,3 +68,9 @@ highlighted = true
6868

6969
每个人总会有不同的想法,不同的际遇,如果你想和他人分享而不知从何言起,与何人言?
7070
何不付诸博客呢?
71+
72+
<div center class="qr-container">
73+
<img src="/ox-hugo/qrcode_gh_e06d750e626f_1.jpg" alt="qrcode_gh_e06d750e626f_1.jpg" width="160px" height="160px" center="t" class="qr-container" />
74+
公号同步更新,欢迎关注👻
75+
</div>
76+

content/zh/post/2017/bloom_filter.md

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -81,4 +81,10 @@ print 'apple' in bf
8181
## <span class="section-num">4</span> 参考 {#参考}
8282

8383
- <https://llimllib.github.io/bloomfilter-tutorial/>
84-
- <https://en.wikipedia.org/wiki/Bloom_filter>
84+
- <https://en.wikipedia.org/wiki/Bloom_filter>
85+
86+
<div center class="qr-container">
87+
<img src="/ox-hugo/qrcode_gh_e06d750e626f_1.jpg" alt="qrcode_gh_e06d750e626f_1.jpg" width="160px" height="160px" center="t" class="qr-container" />
88+
公号同步更新,欢迎关注👻
89+
</div>
90+

content/zh/post/2017/cat.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -108,3 +108,9 @@ cat file |grep "something" |sort -n |tee newfile
108108
| cat file/cat &lt;file | 显示一个已有文件 |
109109
| cat &lt;oldfile&gt; newfile | 复制一个文件 |
110110
| cat file1 file2 file3&gt;file4 | 组合多个文件 |
111+
112+
<div center class="qr-container">
113+
<img src="/ox-hugo/qrcode_gh_e06d750e626f_1.jpg" alt="qrcode_gh_e06d750e626f_1.jpg" width="160px" height="160px" center="t" class="qr-container" />
114+
公号同步更新,欢迎关注👻
115+
</div>
116+

content/zh/post/2017/diff.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -165,3 +165,9 @@ a a
165165
```shell
166166
man diff
167167
```
168+
169+
<div center class="qr-container">
170+
<img src="/ox-hugo/qrcode_gh_e06d750e626f_1.jpg" alt="qrcode_gh_e06d750e626f_1.jpg" width="160px" height="160px" center="t" class="qr-container" />
171+
公号同步更新,欢迎关注👻
172+
</div>
173+

content/zh/post/2017/distributed_system_unique_id.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -236,3 +236,9 @@ if (lastTimestamp == timestamp) {
236236
算法虽然简单,但是在找到 Snowflake 算法之前,我尝试了挺多的算法,但是都是因为不符合要求而被一一否决, 而 Snowflake 算法虽然简单,但是胜在实用。
237237

238238
最后附上我写的 snowflake 算法的 Python 实现: [Snowfloke](https://github.com/ramsayleung/snowflake)
239+
240+
<div center class="qr-container">
241+
<img src="/ox-hugo/qrcode_gh_e06d750e626f_1.jpg" alt="qrcode_gh_e06d750e626f_1.jpg" width="160px" height="160px" center="t" class="qr-container" />
242+
公号同步更新,欢迎关注👻
243+
</div>
244+

content/zh/post/2017/fasd-meet-eshell.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -144,3 +144,9 @@ Enjoy Emacs and Shell :)
144144

145145
参考:
146146
<https://github.com/clvv/fasd>
147+
148+
<div center class="qr-container">
149+
<img src="/ox-hugo/qrcode_gh_e06d750e626f_1.jpg" alt="qrcode_gh_e06d750e626f_1.jpg" width="160px" height="160px" center="t" class="qr-container" />
150+
公号同步更新,欢迎关注👻
151+
</div>
152+

content/zh/post/2017/from-helm-to-ivy.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -195,3 +195,9 @@ Helm 为用户作了非常多的决定,Ivy 让用户按需求进行定制;He
195195
原文地址 <https://sam217pa.github.io/2016/09/13/from-helm-to-ivy/>
196196

197197
在下翻译水平有限,如有错误,还请指出
198+
199+
<div center class="qr-container">
200+
<img src="/ox-hugo/qrcode_gh_e06d750e626f_1.jpg" alt="qrcode_gh_e06d750e626f_1.jpg" width="160px" height="160px" center="t" class="qr-container" />
201+
公号同步更新,欢迎关注👻
202+
</div>
203+

0 commit comments

Comments
 (0)