-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathatom.xml
More file actions
467 lines (267 loc) · 22.5 KB
/
atom.xml
File metadata and controls
467 lines (267 loc) · 22.5 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
<?xml version="1.0" encoding="utf-8"?>
<feed xmlns="http://www.w3.org/2005/Atom">
<title>Hexo</title>
<link href="/atom.xml" rel="self"/>
<link href="https://erwindy.github.io/"/>
<updated>2020-01-06T16:06:00.864Z</updated>
<id>https://erwindy.github.io/</id>
<author>
<name>erwin</name>
</author>
<generator uri="https://hexo.io/">Hexo</generator>
<entry>
<title>前端路由</title>
<link href="https://erwindy.github.io/2020/01/06/%E5%89%8D%E7%AB%AF%E8%B7%AF%E7%94%B1/"/>
<id>https://erwindy.github.io/2020/01/06/%E5%89%8D%E7%AB%AF%E8%B7%AF%E7%94%B1/</id>
<published>2020-01-06T13:43:41.000Z</published>
<updated>2020-01-06T16:06:00.864Z</updated>
<summary type="html">
</summary>
<category term="前端" scheme="https://erwindy.github.io/tags/%E5%89%8D%E7%AB%AF/"/>
<category term="前端路由" scheme="https://erwindy.github.io/tags/%E5%89%8D%E7%AB%AF%E8%B7%AF%E7%94%B1/"/>
</entry>
<entry>
<title>js二叉树中序遍历递归和非递归算法</title>
<link href="https://erwindy.github.io/2020/01/06/js%E4%BA%8C%E5%8F%89%E6%A0%91%E4%B8%AD%E5%BA%8F%E9%81%8D%E5%8E%86%E9%80%92%E5%BD%92%E5%92%8C%E9%9D%9E%E9%80%92%E5%BD%92%E7%AE%97%E6%B3%95/"/>
<id>https://erwindy.github.io/2020/01/06/js%E4%BA%8C%E5%8F%89%E6%A0%91%E4%B8%AD%E5%BA%8F%E9%81%8D%E5%8E%86%E9%80%92%E5%BD%92%E5%92%8C%E9%9D%9E%E9%80%92%E5%BD%92%E7%AE%97%E6%B3%95/</id>
<published>2020-01-06T02:42:37.000Z</published>
<updated>2020-01-06T03:01:37.390Z</updated>
<summary type="html">
<h2 id="定义树节点"><a href="#定义树节点" class="headerlink" title="定义树节点"></a>定义树节点</h2><figure class="highlight plain"><table><tr><td class="gutter"><pre><span class="line">1</span><br><span class="line">2</span><br><span class="line">3</span><br><span class="line">4</span><br><span class="line">5</span><br><span class="line">6</span><br><span class="line">7</span><br><span class="line">8</span><br></pre></td><td class="code"><pre><span class="line">&#x2F;&#x2F; 树节点定义</span><br><span class="line">class TreeNode&#123;</span><br><span class="line"> constructor(value)&#123;</span><br><span class="line"> this.value &#x3D; value;</span><br><span class="line"> this.left &#x3D; null;</span><br><span class="line"> this.right &#x3D; null;</span><br><span class="line"> &#125;</span><br><span class="line">&#125;</span><br></pre></td></tr></table></figure>
</summary>
<category term="js" scheme="https://erwindy.github.io/tags/js/"/>
<category term="算法" scheme="https://erwindy.github.io/tags/%E7%AE%97%E6%B3%95/"/>
<category term="树" scheme="https://erwindy.github.io/tags/%E6%A0%91/"/>
</entry>
<entry>
<title>Promise和async/await</title>
<link href="https://erwindy.github.io/2020/01/04/Promise%E5%92%8Casync-await/"/>
<id>https://erwindy.github.io/2020/01/04/Promise%E5%92%8Casync-await/</id>
<published>2020-01-04T15:20:53.000Z</published>
<updated>2020-01-06T02:59:18.787Z</updated>
<summary type="html">
<p>async/await<br><a href="https://blog.csdn.net/weixin_33725126/article/details/89064514" target="_blank" rel="noopener">https://blog.csdn.net/weixin_33725126/article/details/89064514</a></p>
</summary>
<category term="async/await" scheme="https://erwindy.github.io/tags/async-await/"/>
<category term="promise" scheme="https://erwindy.github.io/tags/promise/"/>
<category term="同步/异步" scheme="https://erwindy.github.io/tags/%E5%90%8C%E6%AD%A5-%E5%BC%82%E6%AD%A5/"/>
</entry>
<entry>
<title>ejs语法</title>
<link href="https://erwindy.github.io/2020/01/04/ejs%E8%AF%AD%E6%B3%95/"/>
<id>https://erwindy.github.io/2020/01/04/ejs%E8%AF%AD%E6%B3%95/</id>
<published>2020-01-04T07:20:22.000Z</published>
<updated>2020-01-06T03:00:27.193Z</updated>
<summary type="html">
<p>(1) &lt;% %&gt;流程控制标签</p>
<p>(2) &lt;%= %&gt;输出内容标签(原文输出HTML标签)</p>
</summary>
<category term="ejs" scheme="https://erwindy.github.io/tags/ejs/"/>
<category term="前端" scheme="https://erwindy.github.io/tags/%E5%89%8D%E7%AB%AF/"/>
</entry>
<entry>
<title>vue笔记</title>
<link href="https://erwindy.github.io/2020/01/04/vue%E7%AC%94%E8%AE%B0/"/>
<id>https://erwindy.github.io/2020/01/04/vue%E7%AC%94%E8%AE%B0/</id>
<published>2020-01-04T02:51:08.000Z</published>
<updated>2020-01-06T13:37:25.126Z</updated>
<summary type="html">
<h2 id="vue面试题"><a href="#vue面试题" class="headerlink" title="vue面试题"></a>vue面试题</h2><p><a href="https://segmentfault.com/a/1190000016344599?utm_source=tag-newest" target="_blank" rel="noopener">https://segmentfault.com/a/1190000016344599?utm_source=tag-newest</a></p>
<h2 id="vue生命周期"><a href="#vue生命周期" class="headerlink" title="vue生命周期"></a>vue生命周期</h2><p><a href="https://blog.csdn.net/mqingo/article/details/86031260" target="_blank" rel="noopener">https://blog.csdn.net/mqingo/article/details/86031260</a></p>
<h2 id="组件私有样式-scoped"><a href="#组件私有样式-scoped" class="headerlink" title="组件私有样式 scoped"></a>组件私有样式 scoped</h2><p>总结一下scoped三条渲染规则</p>
</summary>
<category term="vue" scheme="https://erwindy.github.io/tags/vue/"/>
</entry>
<entry>
<title>vue与微信小程序的异同</title>
<link href="https://erwindy.github.io/2020/01/03/vue%E4%B8%8E%E5%BE%AE%E4%BF%A1%E5%B0%8F%E7%A8%8B%E5%BA%8F%E7%9A%84%E5%BC%82%E5%90%8C/"/>
<id>https://erwindy.github.io/2020/01/03/vue%E4%B8%8E%E5%BE%AE%E4%BF%A1%E5%B0%8F%E7%A8%8B%E5%BA%8F%E7%9A%84%E5%BC%82%E5%90%8C/</id>
<published>2020-01-03T12:15:37.000Z</published>
<updated>2020-01-06T02:58:54.582Z</updated>
<summary type="html">
<p><a href="https://blog.csdn.net/weixin_34183910/article/details/88768140" target="_blank" rel="noopener">https://blog.csdn.net/weixin_34183910/article/details/88768140</a></p>
<p>阻止事件冒泡:<br>wx:catchtap=””<br>vue: @click.stop<br>js: event.stopPropagation(); return false; event.preventDefault();</p>
</summary>
<category term="微信小程序" scheme="https://erwindy.github.io/tags/%E5%BE%AE%E4%BF%A1%E5%B0%8F%E7%A8%8B%E5%BA%8F/"/>
<category term="vue" scheme="https://erwindy.github.io/tags/vue/"/>
</entry>
<entry>
<title>原生html、css、js整理</title>
<link href="https://erwindy.github.io/2020/01/01/%E5%8E%9F%E7%94%9Fhtml%E3%80%81css%E3%80%81js%E6%95%B4%E7%90%86/"/>
<id>https://erwindy.github.io/2020/01/01/%E5%8E%9F%E7%94%9Fhtml%E3%80%81css%E3%80%81js%E6%95%B4%E7%90%86/</id>
<published>2020-01-01T12:22:31.000Z</published>
<updated>2020-01-06T16:05:58.226Z</updated>
<summary type="html">
<h2 id="js"><a href="#js" class="headerlink" title="js:"></a>js:</h2><p>ajax原生:<a href="https://blog.csdn.net/huangqqdy/article/details/83093166" target="_blank" rel="noopener">https://blog.csdn.net/huangqqdy/article/details/83093166</a><br>ajax跨域:<a href="https://segmentfault.com/a/1190000012469713" target="_blank" rel="noopener">https://segmentfault.com/a/1190000012469713</a><br>jsonp: <a href="https://blog.csdn.net/hansexploration/article/details/80314948" target="_blank" rel="noopener">https://blog.csdn.net/hansexploration/article/details/80314948</a><br>数组去重:<a href="https://segmentfault.com/a/1190000018705199?utm_source=tag-newest" target="_blank" rel="noopener">https://segmentfault.com/a/1190000018705199?utm_source=tag-newest</a><br>数组方法:push()、unshift()、pop()、shift()、splice()、slice()<br>Array.isArray()</p>
</summary>
<category term="前端" scheme="https://erwindy.github.io/tags/%E5%89%8D%E7%AB%AF/"/>
<category term="js" scheme="https://erwindy.github.io/tags/js/"/>
<category term="html" scheme="https://erwindy.github.io/tags/html/"/>
<category term="css" scheme="https://erwindy.github.io/tags/css/"/>
</entry>
<entry>
<title>jquery整理</title>
<link href="https://erwindy.github.io/2020/01/01/jquery%E6%95%B4%E7%90%86/"/>
<id>https://erwindy.github.io/2020/01/01/jquery%E6%95%B4%E7%90%86/</id>
<published>2020-01-01T12:21:55.000Z</published>
<updated>2020-01-06T02:54:53.571Z</updated>
<summary type="html">
</summary>
<category term="js" scheme="https://erwindy.github.io/tags/js/"/>
<category term="jq" scheme="https://erwindy.github.io/tags/jq/"/>
</entry>
<entry>
<title>es6学习</title>
<link href="https://erwindy.github.io/2020/01/01/es6%E5%AD%A6%E4%B9%A0/"/>
<id>https://erwindy.github.io/2020/01/01/es6%E5%AD%A6%E4%B9%A0/</id>
<published>2020-01-01T12:20:57.000Z</published>
<updated>2020-01-06T02:52:24.438Z</updated>
<summary type="html">
</summary>
<category term="js" scheme="https://erwindy.github.io/tags/js/"/>
<category term="es6" scheme="https://erwindy.github.io/tags/es6/"/>
</entry>
<entry>
<title>css3学习</title>
<link href="https://erwindy.github.io/2020/01/01/css3%E5%AD%A6%E4%B9%A0/"/>
<id>https://erwindy.github.io/2020/01/01/css3%E5%AD%A6%E4%B9%A0/</id>
<published>2020-01-01T12:20:42.000Z</published>
<updated>2020-01-06T02:50:38.017Z</updated>
<summary type="html">
<p>calc() 可以进行四则运算,但运算符两侧要有空格。<br>flex子元素布局受到影响:<a href="https://www.cnblogs.com/yt0817/p/11825734.html" target="_blank" rel="noopener">https://www.cnblogs.com/yt0817/p/11825734.html</a></p>
</summary>
<category term="css" scheme="https://erwindy.github.io/tags/css/"/>
<category term="css3" scheme="https://erwindy.github.io/tags/css3/"/>
</entry>
<entry>
<title>html5学习</title>
<link href="https://erwindy.github.io/2020/01/01/html5%E5%AD%A6%E4%B9%A0/"/>
<id>https://erwindy.github.io/2020/01/01/html5%E5%AD%A6%E4%B9%A0/</id>
<published>2020-01-01T12:20:21.000Z</published>
<updated>2020-01-06T02:59:31.141Z</updated>
<summary type="html">
<h2 id="svg和canvas的比较:"><a href="#svg和canvas的比较:" class="headerlink" title="svg和canvas的比较:"></a>svg和canvas的比较:</h2><pre><code>&lt;https://blog.csdn.net/yoyful/article/details/85812776&gt;</code></pre><h2 id="transfrom、transtion、animation学习"><a href="#transfrom、transtion、animation学习" class="headerlink" title="transfrom、transtion、animation学习"></a>transfrom、transtion、animation学习</h2><pre><code>&lt;https://www.cnblogs.com/qianduanjingying/p/4937574.html&gt;</code></pre>
</summary>
<category term="html" scheme="https://erwindy.github.io/tags/html/"/>
<category term="html5" scheme="https://erwindy.github.io/tags/html5/"/>
</entry>
<entry>
<title>一些链接整理</title>
<link href="https://erwindy.github.io/2020/01/01/%E4%B8%80%E4%BA%9B%E9%93%BE%E6%8E%A5%E6%95%B4%E7%90%86/"/>
<id>https://erwindy.github.io/2020/01/01/%E4%B8%80%E4%BA%9B%E9%93%BE%E6%8E%A5%E6%95%B4%E7%90%86/</id>
<published>2020-01-01T12:18:24.000Z</published>
<updated>2020-01-01T14:41:28.398Z</updated>
<summary type="html">
<p><a href="https://www.jianshu.com/p/e1c0cbbfb599" target="_blank" rel="noopener">https://www.jianshu.com/p/e1c0cbbfb599</a></p>
</summary>
<category term="前端" scheme="https://erwindy.github.io/tags/%E5%89%8D%E7%AB%AF/"/>
<category term="杂记" scheme="https://erwindy.github.io/tags/%E6%9D%82%E8%AE%B0/"/>
</entry>
<entry>
<title>前端新技术</title>
<link href="https://erwindy.github.io/2019/12/29/%E5%89%8D%E7%AB%AF%E6%96%B0%E6%8A%80%E6%9C%AF/"/>
<id>https://erwindy.github.io/2019/12/29/%E5%89%8D%E7%AB%AF%E6%96%B0%E6%8A%80%E6%9C%AF/</id>
<published>2019-12-29T07:04:38.274Z</published>
<updated>2019-12-29T07:21:06.412Z</updated>
<summary type="html">
<h2 id="前端新技术"><a href="#前端新技术" class="headerlink" title="前端新技术"></a>前端新技术</h2><hr>
<p><a href="https://blog.csdn.net/xiangzhihong8/article/details/103233487" target="_blank" rel="noopener">https://blog.csdn.net/xiangzhihong8/article/details/103233487</a></p>
<ol>
<li>serverless<br>是一种构建和管理基于微服务架构的完整流程,允许你在服务部署级别而不是服务器部署级别来管理你的应用部署。它与传统架构的不同之处在于,完全由第三方管理,由事件触发,存在于无状态(Stateless)、暂存(可能只存在于一次调用的过程中)计算容器内。
</summary>
<category term="杂记" scheme="https://erwindy.github.io/tags/%E6%9D%82%E8%AE%B0/"/>
</entry>
<entry>
<title>微信小程序特性</title>
<link href="https://erwindy.github.io/2019/12/29/%E5%BE%AE%E4%BF%A1%E5%B0%8F%E7%A8%8B%E5%BA%8F%E7%89%B9%E6%80%A7%E8%AE%B0%E5%BD%95/"/>
<id>https://erwindy.github.io/2019/12/29/%E5%BE%AE%E4%BF%A1%E5%B0%8F%E7%A8%8B%E5%BA%8F%E7%89%B9%E6%80%A7%E8%AE%B0%E5%BD%95/</id>
<published>2019-12-29T04:03:04.000Z</published>
<updated>2019-12-31T08:14:21.270Z</updated>
<summary type="html">
<h2 id="微信小程序特性"><a href="#微信小程序特性" class="headerlink" title="微信小程序特性"></a>微信小程序特性</h2><hr>
<h1 id="1-微信小程序采用双线程模型:"><a href="#1-微信小程序采用双线程模型:" class="headerlink" title="1. 微信小程序采用双线程模型:"></a>1. 微信小程序采用双线程模型:</h1><ol>
<li><p>渲染层:负责渲染工作</p>
</li>
<li><p>逻辑层:负责执行逻辑代码</p>
</li>
<li><p>通过微信客户端交换数据。逻辑层执行逻辑代码,将数据通过setData发送到渲染层;渲染层解析WXML和WXSS,结合数据渲染出页面。</p>
</summary>
<category term="微信小程序" scheme="https://erwindy.github.io/tags/%E5%BE%AE%E4%BF%A1%E5%B0%8F%E7%A8%8B%E5%BA%8F/"/>
<category term="面试" scheme="https://erwindy.github.io/tags/%E9%9D%A2%E8%AF%95/"/>
</entry>
<entry>
<title>markdown 语法总结(不断更新)</title>
<link href="https://erwindy.github.io/2019/12/29/markdown%E8%AF%AD%E6%B3%95%E6%80%BB%E7%BB%93%EF%BC%88%E4%B8%8D%E6%96%AD%E6%9B%B4%E6%96%B0%EF%BC%89/"/>
<id>https://erwindy.github.io/2019/12/29/markdown%E8%AF%AD%E6%B3%95%E6%80%BB%E7%BB%93%EF%BC%88%E4%B8%8D%E6%96%AD%E6%9B%B4%E6%96%B0%EF%BC%89/</id>
<published>2019-12-28T18:15:28.730Z</published>
<updated>2019-12-29T07:21:06.412Z</updated>
<summary type="html">
<h2 id="markdown-语法总结(不断更新)"><a href="#markdown-语法总结(不断更新)" class="headerlink" title="markdown 语法总结(不断更新)"></a>markdown 语法总结(不断更新)</h2><hr>
<h1 id="1-引用"><a href="#1-引用" class="headerlink" title="1. 引用"></a>1. 引用</h1><p> &gt;</p>
<blockquote>
<p>例子</p>
</blockquote>
</summary>
<category term="markdown" scheme="https://erwindy.github.io/tags/markdown/"/>
</entry>
<entry>
<title>html中的特殊符号极其编码(可用于markdown中)</title>
<link href="https://erwindy.github.io/2019/12/29/html%E4%B8%AD%E7%89%B9%E6%AE%8A%E7%AC%A6%E5%8F%B7%E5%8F%8A%E5%85%B6%E7%BC%96%E7%A0%81/"/>
<id>https://erwindy.github.io/2019/12/29/html%E4%B8%AD%E7%89%B9%E6%AE%8A%E7%AC%A6%E5%8F%B7%E5%8F%8A%E5%85%B6%E7%BC%96%E7%A0%81/</id>
<published>2019-12-28T18:15:28.728Z</published>
<updated>2019-12-29T07:21:06.412Z</updated>
<summary type="html">
<h2 id="html中的特殊符号极其编码(可用于markdown中)"><a href="#html中的特殊符号极其编码(可用于markdown中)" class="headerlink" title="html中的特殊符号极其编码(可用于markdown中)"></a>html中的特殊符号极其编码(可用于markdown中)</h2><hr>
<p>特殊符号、说明及其编码</p>
</summary>
<category term="html" scheme="https://erwindy.github.io/tags/html/"/>
<category term="markdown" scheme="https://erwindy.github.io/tags/markdown/"/>
</entry>
<entry>
<title>吴恩达机器学习学习笔记</title>
<link href="https://erwindy.github.io/2019/12/29/%E5%90%B4%E6%81%A9%E8%BE%BE%E6%9C%BA%E5%99%A8%E5%AD%A6%E4%B9%A0%E8%A7%86%E9%A2%91%E7%AC%94%E8%AE%B0/"/>
<id>https://erwindy.github.io/2019/12/29/%E5%90%B4%E6%81%A9%E8%BE%BE%E6%9C%BA%E5%99%A8%E5%AD%A6%E4%B9%A0%E8%A7%86%E9%A2%91%E7%AC%94%E8%AE%B0/</id>
<published>2019-12-28T18:15:28.718Z</published>
<updated>2019-12-29T07:21:06.413Z</updated>
<summary type="html">
<h3 id="吴恩达机器学习学习笔记"><a href="#吴恩达机器学习学习笔记" class="headerlink" title="吴恩达机器学习学习笔记"></a>吴恩达机器学习学习笔记</h3><h2 id="一、机器学习分类"><a href="#一、机器学习分类" class="headerlink" title="一、机器学习分类"></a>一、机器学习分类</h2><h1 id="1-监督学习"><a href="#1-监督学习" class="headerlink" title="1 监督学习"></a>1 监督学习</h1><pre><code>1.1 分类
1.2 回归</code></pre><h1 id="2-无监督学习"><a href="#2-无监督学习" class="headerlink" title="2 无监督学习"></a>2 无监督学习</h1><pre><code>2.1 聚类</code></pre>
</summary>
<category term="机器学习" scheme="https://erwindy.github.io/tags/%E6%9C%BA%E5%99%A8%E5%AD%A6%E4%B9%A0/"/>
</entry>
<entry>
<title>明天就要考研啦!!!</title>
<link href="https://erwindy.github.io/2019/12/29/2019.12.20-%E8%80%83%E7%A0%94%E5%89%8D%E4%B8%80%E5%A4%A9/"/>
<id>https://erwindy.github.io/2019/12/29/2019.12.20-%E8%80%83%E7%A0%94%E5%89%8D%E4%B8%80%E5%A4%A9/</id>
<published>2019-12-28T18:13:59.980Z</published>
<updated>2019-12-20T04:33:56.000Z</updated>
<summary type="html">
<p>明天就真的要考研了。<br><img
</summary>
<category term="杂记" scheme="https://erwindy.github.io/tags/%E6%9D%82%E8%AE%B0/"/>
</entry>
<entry>
<title>Hello World</title>
<link href="https://erwindy.github.io/2019/12/29/hello-world/"/>
<id>https://erwindy.github.io/2019/12/29/hello-world/</id>
<published>2019-12-28T17:43:32.919Z</published>
<updated>2019-12-16T01:36:38.000Z</updated>
<summary type="html">
<p>Welcome to <a href="https://hexo.io/" target="_blank" rel="noopener">Hexo</a>! This is your very first post. Check <a
</summary>
<category term="学习" scheme="https://erwindy.github.io/categories/%E5%AD%A6%E4%B9%A0/"/>
</entry>
<entry>
<title>名著摘抄</title>
<link href="https://erwindy.github.io/2019/12/17/literature-extract/"/>
<id>https://erwindy.github.io/2019/12/17/literature-extract/</id>
<published>2019-12-17T15:04:41.000Z</published>
<updated>2019-12-20T04:34:26.000Z</updated>
<summary type="html">
<p><i class="fas fa-tags"></i><br> 三岁学说话,一生学闭嘴。</p>
<p><i class="fas
</summary>
<category term="文学" scheme="https://erwindy.github.io/tags/%E6%96%87%E5%AD%A6/"/>
<category term="摘录" scheme="https://erwindy.github.io/tags/%E6%91%98%E5%BD%95/"/>
</entry>
</feed>