-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathatom.xml
471 lines (249 loc) · 18.9 KB
/
atom.xml
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
468
469
470
471
<?xml version="1.0" encoding="utf-8"?>
<feed xmlns="http://www.w3.org/2005/Atom">
<title>阿湫o</title>
<subtitle>一只前端崽</subtitle>
<link href="https://qiuxchao.github.io/atom.xml" rel="self"/>
<link href="https://qiuxchao.github.io/"/>
<updated>2022-06-15T09:12:22.211Z</updated>
<id>https://qiuxchao.github.io/</id>
<author>
<name>阿湫o</name>
</author>
<generator uri="https://hexo.io/">Hexo</generator>
<entry>
<title>Koa 学习总结</title>
<link href="https://qiuxchao.github.io/2021/08/12/koa%E5%AD%A6%E4%B9%A0%E6%80%BB%E7%BB%93/"/>
<id>https://qiuxchao.github.io/2021/08/12/koa%E5%AD%A6%E4%B9%A0%E6%80%BB%E7%BB%93/</id>
<published>2021-08-12T00:08:08.000Z</published>
<updated>2022-06-15T09:12:22.211Z</updated>
<summary type="html">Koa 是一个基于 Nodejs 平台的下一代 web 开发框架;Koa 由 Express 幕后的原班人马打造,致力于成为 web 应用和 API 开发领域中的一个更小、更富有表现力、更健壮的基石。</summary>
<category term="JavaScript" scheme="https://qiuxchao.github.io/categories/JavaScript/"/>
<category term="Nodejs" scheme="https://qiuxchao.github.io/categories/Nodejs/"/>
<category term="Koa" scheme="https://qiuxchao.github.io/categories/Nodejs/Koa/"/>
<category term="JavaScript" scheme="https://qiuxchao.github.io/tags/JavaScript/"/>
<category term="Nodejs" scheme="https://qiuxchao.github.io/tags/Nodejs/"/>
<category term="Koa" scheme="https://qiuxchao.github.io/tags/Koa/"/>
</entry>
<entry>
<title>react-router-dom 学习总结</title>
<link href="https://qiuxchao.github.io/2021/07/16/react-router-dom%E6%95%99%E7%A8%8B/"/>
<id>https://qiuxchao.github.io/2021/07/16/react-router-dom%E6%95%99%E7%A8%8B/</id>
<published>2021-07-16T00:08:08.000Z</published>
<updated>2022-06-15T09:12:22.211Z</updated>
<summary type="html">react-router-dom 是 react 的路由模块,本文介绍了 react-router-dom 的基本使用方法。</summary>
<category term="JavaScript" scheme="https://qiuxchao.github.io/categories/JavaScript/"/>
<category term="React" scheme="https://qiuxchao.github.io/categories/JavaScript/React/"/>
<category term="react-router-dom" scheme="https://qiuxchao.github.io/categories/JavaScript/React/react-router-dom/"/>
<category term="JavaScript" scheme="https://qiuxchao.github.io/tags/JavaScript/"/>
<category term="React" scheme="https://qiuxchao.github.io/tags/React/"/>
<category term="react-router-dom" scheme="https://qiuxchao.github.io/tags/react-router-dom/"/>
</entry>
<entry>
<title>react-redux 学习总结</title>
<link href="https://qiuxchao.github.io/2021/07/12/react-redux%E5%9F%BA%E6%9C%AC%E6%95%99%E7%A8%8B/"/>
<id>https://qiuxchao.github.io/2021/07/12/react-redux%E5%9F%BA%E6%9C%AC%E6%95%99%E7%A8%8B/</id>
<published>2021-07-12T00:08:08.000Z</published>
<updated>2022-06-15T09:12:22.211Z</updated>
<summary type="html">react-redux 是一个用于连接 React 和 Redux 的 npm 模块,本文介绍了 react-redux 的基本使用方法。</summary>
<category term="JavaScript" scheme="https://qiuxchao.github.io/categories/JavaScript/"/>
<category term="React" scheme="https://qiuxchao.github.io/categories/JavaScript/React/"/>
<category term="react-redux" scheme="https://qiuxchao.github.io/categories/JavaScript/React/react-redux/"/>
<category term="JavaScript" scheme="https://qiuxchao.github.io/tags/JavaScript/"/>
<category term="React" scheme="https://qiuxchao.github.io/tags/React/"/>
<category term="react-redux" scheme="https://qiuxchao.github.io/tags/react-redux/"/>
</entry>
<entry>
<title>TypeScript 学习总结</title>
<link href="https://qiuxchao.github.io/2021/06/26/TypeScript%E5%AD%A6%E4%B9%A0%E6%80%BB%E7%BB%93/"/>
<id>https://qiuxchao.github.io/2021/06/26/TypeScript%E5%AD%A6%E4%B9%A0%E6%80%BB%E7%BB%93/</id>
<published>2021-06-26T00:08:08.000Z</published>
<updated>2022-06-15T09:12:22.210Z</updated>
<summary type="html">本文是我在学习 TypeScript 过程中的一些知识点的记录</summary>
<category term="TypeScript" scheme="https://qiuxchao.github.io/categories/TypeScript/"/>
<category term="TypeScript" scheme="https://qiuxchao.github.io/tags/TypeScript/"/>
</entry>
<entry>
<title>Webpack tapable 模块</title>
<link href="https://qiuxchao.github.io/2020/07/23/Webpack_tapable%E6%A8%A1%E5%9D%97/"/>
<id>https://qiuxchao.github.io/2020/07/23/Webpack_tapable%E6%A8%A1%E5%9D%97/</id>
<published>2020-07-23T00:08:08.000Z</published>
<updated>2022-06-15T09:12:22.210Z</updated>
<summary type="html">tapable 模块是 Webpack 内部使用的事件钩子处理模块,其中有同步钩子和异步钩子供我们使用。</summary>
<category term="JavaScript" scheme="https://qiuxchao.github.io/categories/JavaScript/"/>
<category term="Webpack" scheme="https://qiuxchao.github.io/categories/JavaScript/Webpack/"/>
<category term="tapable" scheme="https://qiuxchao.github.io/categories/JavaScript/Webpack/tapable/"/>
<category term="JavaScript" scheme="https://qiuxchao.github.io/tags/JavaScript/"/>
<category term="Webpack" scheme="https://qiuxchao.github.io/tags/Webpack/"/>
<category term="tapable" scheme="https://qiuxchao.github.io/tags/tapable/"/>
</entry>
<entry>
<title>Webpack学习总结</title>
<link href="https://qiuxchao.github.io/2020/06/18/Webpack%E5%AD%A6%E4%B9%A0%E6%80%BB%E7%BB%93/"/>
<id>https://qiuxchao.github.io/2020/06/18/Webpack%E5%AD%A6%E4%B9%A0%E6%80%BB%E7%BB%93/</id>
<published>2020-06-18T00:08:08.000Z</published>
<updated>2022-06-15T09:12:22.210Z</updated>
<summary type="html">本文主要记录我在学习 Webpack 过程中所遇到的一些知识点,以及自己写的一些 demo。</summary>
<category term="JavaScript" scheme="https://qiuxchao.github.io/categories/JavaScript/"/>
<category term="Webpack" scheme="https://qiuxchao.github.io/categories/JavaScript/Webpack/"/>
<category term="JavaScript" scheme="https://qiuxchao.github.io/tags/JavaScript/"/>
<category term="Webpack" scheme="https://qiuxchao.github.io/tags/Webpack/"/>
</entry>
<entry>
<title>JavaScript ES6+学习总结</title>
<link href="https://qiuxchao.github.io/2020/04/09/Es6+%E5%AD%A6%E4%B9%A0%E6%80%BB%E7%BB%93/"/>
<id>https://qiuxchao.github.io/2020/04/09/Es6+%E5%AD%A6%E4%B9%A0%E6%80%BB%E7%BB%93/</id>
<published>2020-04-09T00:08:08.000Z</published>
<updated>2022-06-15T09:12:22.208Z</updated>
<summary type="html">本文是我在学习 JavaScript ES6+ 这一部分内容时知识点的记录。</summary>
<category term="JavaScript" scheme="https://qiuxchao.github.io/categories/JavaScript/"/>
<category term="ES6" scheme="https://qiuxchao.github.io/categories/JavaScript/ES6/"/>
<category term="JavaScript" scheme="https://qiuxchao.github.io/tags/JavaScript/"/>
<category term="ES6" scheme="https://qiuxchao.github.io/tags/ES6/"/>
</entry>
<entry>
<title>贪心算法和动态规划</title>
<link href="https://qiuxchao.github.io/2020/02/20/%E7%AE%97%E6%B3%95%E2%80%94%E2%80%94%E8%B4%AA%E5%BF%83%E7%AE%97%E6%B3%95%E5%92%8C%E5%8A%A8%E6%80%81%E8%A7%84%E5%88%92/"/>
<id>https://qiuxchao.github.io/2020/02/20/%E7%AE%97%E6%B3%95%E2%80%94%E2%80%94%E8%B4%AA%E5%BF%83%E7%AE%97%E6%B3%95%E5%92%8C%E5%8A%A8%E6%80%81%E8%A7%84%E5%88%92/</id>
<published>2020-02-20T00:08:08.000Z</published>
<updated>2022-06-15T09:12:22.213Z</updated>
<summary type="html">当遇到一个求解全局最优解问题时,如果可以将全局问题切分为小的局部问题,并寻求局部最优解,同时可以证明局部最优解累计的结果就是全局最优解,则可以使用贪心算法。</summary>
<category term="算法" scheme="https://qiuxchao.github.io/categories/%E7%AE%97%E6%B3%95/"/>
<category term="算法" scheme="https://qiuxchao.github.io/tags/%E7%AE%97%E6%B3%95/"/>
</entry>
<entry>
<title>Ajax 异步请求与数据交互</title>
<link href="https://qiuxchao.github.io/2020/02/20/Ajax%20%E5%BC%82%E6%AD%A5%E8%AF%B7%E6%B1%82%20%E6%95%B0%E6%8D%AE%E4%BA%A4%E4%BA%92/"/>
<id>https://qiuxchao.github.io/2020/02/20/Ajax%20%E5%BC%82%E6%AD%A5%E8%AF%B7%E6%B1%82%20%E6%95%B0%E6%8D%AE%E4%BA%A4%E4%BA%92/</id>
<published>2020-02-20T00:08:08.000Z</published>
<updated>2022-06-15T09:12:22.207Z</updated>
<summary type="html">本文着重介绍Javascript Ajax异步数据请求技术。</summary>
<category term="JavaScript" scheme="https://qiuxchao.github.io/categories/JavaScript/"/>
<category term="Ajax" scheme="https://qiuxchao.github.io/categories/JavaScript/Ajax/"/>
<category term="JavaScript" scheme="https://qiuxchao.github.io/tags/JavaScript/"/>
<category term="Ajax" scheme="https://qiuxchao.github.io/tags/Ajax/"/>
</entry>
<entry>
<title>图结构</title>
<link href="https://qiuxchao.github.io/2020/02/15/%E7%AE%97%E6%B3%95%E2%80%94%E2%80%94%E5%9B%BE%E7%BB%93%E6%9E%84/"/>
<id>https://qiuxchao.github.io/2020/02/15/%E7%AE%97%E6%B3%95%E2%80%94%E2%80%94%E5%9B%BE%E7%BB%93%E6%9E%84/</id>
<published>2020-02-15T00:08:08.000Z</published>
<updated>2022-06-15T09:12:22.212Z</updated>
<summary type="html">图结构中,一个结点可以链接到任意结点,所有结点链接而成的结构,即为图结构。</summary>
<category term="数据结构" scheme="https://qiuxchao.github.io/categories/%E6%95%B0%E6%8D%AE%E7%BB%93%E6%9E%84/"/>
<category term="数据结构" scheme="https://qiuxchao.github.io/tags/%E6%95%B0%E6%8D%AE%E7%BB%93%E6%9E%84/"/>
</entry>
<entry>
<title>树形结构</title>
<link href="https://qiuxchao.github.io/2020/02/10/%E7%AE%97%E6%B3%95%E2%80%94%E2%80%94%E6%A0%91%E5%BD%A2%E7%BB%93%E6%9E%84/"/>
<id>https://qiuxchao.github.io/2020/02/10/%E7%AE%97%E6%B3%95%E2%80%94%E2%80%94%E6%A0%91%E5%BD%A2%E7%BB%93%E6%9E%84/</id>
<published>2020-02-10T00:08:08.000Z</published>
<updated>2022-06-15T09:12:22.213Z</updated>
<summary type="html">树是一个类似于链表的二维结构,每个节点可以指向0个或多个其他节点。</summary>
<category term="数据结构" scheme="https://qiuxchao.github.io/categories/%E6%95%B0%E6%8D%AE%E7%BB%93%E6%9E%84/"/>
<category term="数据结构" scheme="https://qiuxchao.github.io/tags/%E6%95%B0%E6%8D%AE%E7%BB%93%E6%9E%84/"/>
</entry>
<entry>
<title>HTTP协议</title>
<link href="https://qiuxchao.github.io/2020/02/09/http%E5%8D%8F%E8%AE%AE/"/>
<id>https://qiuxchao.github.io/2020/02/09/http%E5%8D%8F%E8%AE%AE/</id>
<published>2020-02-09T00:08:08.000Z</published>
<updated>2022-06-15T09:12:22.211Z</updated>
<summary type="html">我们可以通过url地址访问服务器,但是,浏览器和服务器之间的数据到底是怎么交互的,数据的格式是什么,这取决于使用什么协议<br>最常见的协议,就是http协议</summary>
<category term="网络" scheme="https://qiuxchao.github.io/categories/%E7%BD%91%E7%BB%9C/"/>
<category term="Http" scheme="https://qiuxchao.github.io/categories/%E7%BD%91%E7%BB%9C/Http/"/>
<category term="网络" scheme="https://qiuxchao.github.io/tags/%E7%BD%91%E7%BB%9C/"/>
<category term="Http" scheme="https://qiuxchao.github.io/tags/Http/"/>
</entry>
<entry>
<title>JavaScript模块化</title>
<link href="https://qiuxchao.github.io/2020/02/07/Js%E6%A8%A1%E5%9D%97%E5%8C%96/"/>
<id>https://qiuxchao.github.io/2020/02/07/Js%E6%A8%A1%E5%9D%97%E5%8C%96/</id>
<published>2020-02-07T00:08:08.000Z</published>
<updated>2022-06-15T09:12:22.208Z</updated>
<summary type="html">本文着重介绍JavaScript ES6 的模块化</summary>
<category term="JavaScript" scheme="https://qiuxchao.github.io/categories/JavaScript/"/>
<category term="ES6" scheme="https://qiuxchao.github.io/categories/JavaScript/ES6/"/>
<category term="JavaScript" scheme="https://qiuxchao.github.io/tags/JavaScript/"/>
<category term="ES6" scheme="https://qiuxchao.github.io/tags/ES6/"/>
</entry>
<entry>
<title>排序和查找</title>
<link href="https://qiuxchao.github.io/2020/02/05/%E7%AE%97%E6%B3%95%E2%80%94%E2%80%94%E6%8E%92%E5%BA%8F%E5%92%8C%E6%9F%A5%E6%89%BE/"/>
<id>https://qiuxchao.github.io/2020/02/05/%E7%AE%97%E6%B3%95%E2%80%94%E2%80%94%E6%8E%92%E5%BA%8F%E5%92%8C%E6%9F%A5%E6%89%BE/</id>
<published>2020-02-05T00:08:08.000Z</published>
<updated>2022-06-15T09:12:22.213Z</updated>
<summary type="html">排序算法没有优劣之分,在不同的场景中,不同的排序算法执行效率不同。</summary>
<category term="算法" scheme="https://qiuxchao.github.io/categories/%E7%AE%97%E6%B3%95/"/>
<category term="排序和查找" scheme="https://qiuxchao.github.io/categories/%E7%AE%97%E6%B3%95/%E6%8E%92%E5%BA%8F%E5%92%8C%E6%9F%A5%E6%89%BE/"/>
<category term="算法" scheme="https://qiuxchao.github.io/tags/%E7%AE%97%E6%B3%95/"/>
<category term="排序和查找" scheme="https://qiuxchao.github.io/tags/%E6%8E%92%E5%BA%8F%E5%92%8C%E6%9F%A5%E6%89%BE/"/>
</entry>
<entry>
<title>ES6异步解决方案 Promise</title>
<link href="https://qiuxchao.github.io/2020/02/05/ES6%E5%BC%82%E6%AD%A5%E8%A7%A3%E5%86%B3%E6%96%B9%E6%A1%88Promise/"/>
<id>https://qiuxchao.github.io/2020/02/05/ES6%E5%BC%82%E6%AD%A5%E8%A7%A3%E5%86%B3%E6%96%B9%E6%A1%88Promise/</id>
<published>2020-02-05T00:08:08.000Z</published>
<updated>2022-06-15T09:12:22.207Z</updated>
<summary type="html">本文着重介绍 ES6 异步解决方案 Promise</summary>
<category term="JavaScript" scheme="https://qiuxchao.github.io/categories/JavaScript/"/>
<category term="ES6" scheme="https://qiuxchao.github.io/categories/JavaScript/ES6/"/>
<category term="Promise" scheme="https://qiuxchao.github.io/categories/JavaScript/ES6/Promise/"/>
<category term="JavaScript" scheme="https://qiuxchao.github.io/tags/JavaScript/"/>
<category term="ES6" scheme="https://qiuxchao.github.io/tags/ES6/"/>
<category term="Promise" scheme="https://qiuxchao.github.io/tags/Promise/"/>
</entry>
<entry>
<title>JavaScript事件循环</title>
<link href="https://qiuxchao.github.io/2020/02/03/%E4%BA%8B%E4%BB%B6%E5%BE%AA%E7%8E%AF/"/>
<id>https://qiuxchao.github.io/2020/02/03/%E4%BA%8B%E4%BB%B6%E5%BE%AA%E7%8E%AF/</id>
<published>2020-02-03T00:08:08.000Z</published>
<updated>2022-06-15T09:12:22.212Z</updated>
<summary type="html">本文主要介绍JavaScript事件循环机制。</summary>
<category term="JavaScript" scheme="https://qiuxchao.github.io/categories/JavaScript/"/>
<category term="EventLoop" scheme="https://qiuxchao.github.io/categories/JavaScript/EventLoop/"/>
<category term="JavaScript" scheme="https://qiuxchao.github.io/tags/JavaScript/"/>
<category term="EventLoop" scheme="https://qiuxchao.github.io/tags/EventLoop/"/>
</entry>
<entry>
<title>线性结构</title>
<link href="https://qiuxchao.github.io/2020/01/29/%E7%AE%97%E6%B3%95%E2%80%94%E2%80%94%E7%BA%BF%E6%80%A7%E7%BB%93%E6%9E%84/"/>
<id>https://qiuxchao.github.io/2020/01/29/%E7%AE%97%E6%B3%95%E2%80%94%E2%80%94%E7%BA%BF%E6%80%A7%E7%BB%93%E6%9E%84/</id>
<published>2020-01-29T00:08:08.000Z</published>
<updated>2022-06-15T09:12:22.213Z</updated>
<summary type="html">线性结构是数据结构中的一种分类,用于表示一系列的元素形成的有序集合。</summary>
<category term="数据结构" scheme="https://qiuxchao.github.io/categories/%E6%95%B0%E6%8D%AE%E7%BB%93%E6%9E%84/"/>
<category term="数据结构" scheme="https://qiuxchao.github.io/tags/%E6%95%B0%E6%8D%AE%E7%BB%93%E6%9E%84/"/>
</entry>
<entry>
<title>jQuery 所有选择器</title>
<link href="https://qiuxchao.github.io/2020/01/15/jQuery%20%E6%89%80%E6%9C%89%E9%80%89%E6%8B%A9%E5%99%A8/"/>
<id>https://qiuxchao.github.io/2020/01/15/jQuery%20%E6%89%80%E6%9C%89%E9%80%89%E6%8B%A9%E5%99%A8/</id>
<published>2020-01-15T00:08:08.000Z</published>
<updated>2022-06-15T09:12:22.211Z</updated>
<summary type="html">本文介绍了 jQuery 所有的选择器。</summary>
<category term="JavaScript" scheme="https://qiuxchao.github.io/categories/JavaScript/"/>
<category term="jQuery" scheme="https://qiuxchao.github.io/categories/JavaScript/jQuery/"/>
<category term="JavaScript" scheme="https://qiuxchao.github.io/tags/JavaScript/"/>
<category term="jQuery" scheme="https://qiuxchao.github.io/tags/jQuery/"/>
</entry>
<entry>
<title>使用Git进行版本控制</title>
<link href="https://qiuxchao.github.io/2019/12/09/%E4%BD%BF%E7%94%A8Git%E8%BF%9B%E8%A1%8C%E7%89%88%E6%9C%AC%E6%8E%A7%E5%88%B6/"/>
<id>https://qiuxchao.github.io/2019/12/09/%E4%BD%BF%E7%94%A8Git%E8%BF%9B%E8%A1%8C%E7%89%88%E6%9C%AC%E6%8E%A7%E5%88%B6/</id>
<published>2019-12-09T00:08:08.000Z</published>
<updated>2022-06-15T09:12:22.212Z</updated>
<summary type="html">版本控制软件让我们能够拍摄处于可行状态的项目的快照。修改项目(如实现新功能)后,如果项目不能正常运行,可恢复到前一个可行状态。<br>通过使用版本控制软件,我们可以无忧无虑地改进项目,不用担心项目因我们犯了错而遭到破坏。对大型项目来说,这显得尤其重要,但对于较小的项目,哪怕是只包含一个文件的程序,这也大有裨益。</summary>
<category term="Git" scheme="https://qiuxchao.github.io/categories/Git/"/>
<category term="Git" scheme="https://qiuxchao.github.io/tags/Git/"/>
</entry>
<entry>
<title>Python中的编码问题</title>
<link href="https://qiuxchao.github.io/2019/08/25/Python%E4%B8%AD%E7%9A%84%E7%BC%96%E7%A0%81%E9%97%AE%E9%A2%98/"/>
<id>https://qiuxchao.github.io/2019/08/25/Python%E4%B8%AD%E7%9A%84%E7%BC%96%E7%A0%81%E9%97%AE%E9%A2%98/</id>
<published>2019-08-25T00:08:08.000Z</published>
<updated>2022-06-15T09:12:22.208Z</updated>
<summary type="html">本文介绍Python中的编码问题</summary>
<category term="Python" scheme="https://qiuxchao.github.io/categories/Python/"/>
<category term="Python" scheme="https://qiuxchao.github.io/tags/Python/"/>
</entry>
</feed>