-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathatom.xml
515 lines (298 loc) · 19.8 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
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
<?xml version="1.0" encoding="utf-8"?>
<feed xmlns="http://www.w3.org/2005/Atom">
<title>Mr Yao 的博客</title>
<link href="/atom.xml" rel="self"/>
<link href="http://yaojusheng.github.io/"/>
<updated>2020-06-21T09:30:46.448Z</updated>
<id>http://yaojusheng.github.io/</id>
<author>
<name>Jusheng Yao</name>
</author>
<generator uri="https://hexo.io/">Hexo</generator>
<entry>
<title> Python(十五)- 创建二叉树和遍历的实现</title>
<link href="http://yaojusheng.github.io/archives/f9d00648.html"/>
<id>http://yaojusheng.github.io/archives/f9d00648.html</id>
<published>2020-06-21T07:16:26.000Z</published>
<updated>2020-06-21T09:30:46.448Z</updated>
<summary type="html">
<p>树(tree)是一种非线性的数据结构,是一种抽象数据类型(ADT),用来模拟具有树状结构性质的数据集合,它是由n(n&gt;0)个有限节点通过连接它们的边组成一个具有层次关系的集合。</p>
</summary>
<category term="编程" scheme="http://YaoJusheng.github.io/categories/%E7%BC%96%E7%A8%8B/"/>
<category term="Python" scheme="http://YaoJusheng.github.io/categories/Python/"/>
<category term="二叉树遍历" scheme="http://YaoJusheng.github.io/tags/%E4%BA%8C%E5%8F%89%E6%A0%91%E9%81%8D%E5%8E%86/"/>
</entry>
<entry>
<title>Python(十四)- 多任务:进程、线程、协程</title>
<link href="http://yaojusheng.github.io/archives/46aa5d73.html"/>
<id>http://yaojusheng.github.io/archives/46aa5d73.html</id>
<published>2020-05-21T15:03:58.000Z</published>
<updated>2020-06-21T12:03:58.075Z</updated>
<summary type="html">
<p>实际开发中,经常会面临一些并发问题的方案和设计,通常会有性能优化和提升的需求。</p>
</summary>
<category term="编程" scheme="http://YaoJusheng.github.io/categories/%E7%BC%96%E7%A8%8B/"/>
<category term="Python" scheme="http://YaoJusheng.github.io/categories/Python/"/>
<category term="进程" scheme="http://YaoJusheng.github.io/tags/%E8%BF%9B%E7%A8%8B/"/>
<category term="线程" scheme="http://YaoJusheng.github.io/tags/%E7%BA%BF%E7%A8%8B/"/>
<category term="协程" scheme="http://YaoJusheng.github.io/tags/%E5%8D%8F%E7%A8%8B/"/>
</entry>
<entry>
<title>Python(十三)- 常用内置模块与第三方库</title>
<link href="http://yaojusheng.github.io/archives/70f95257.html"/>
<id>http://yaojusheng.github.io/archives/70f95257.html</id>
<published>2020-05-20T14:31:06.000Z</published>
<updated>2020-06-21T05:51:07.938Z</updated>
<summary type="html">
<p>python具有庞大的用户群,因其语法简洁,开发效率高而备受欢迎,同样,它的标准库与第三方库的支持也比较完善。</p>
<p><font color="red">这里做些简单的整理。</font></p>
</summary>
<category term="编程" scheme="http://YaoJusheng.github.io/categories/%E7%BC%96%E7%A8%8B/"/>
<category term="Python" scheme="http://YaoJusheng.github.io/categories/Python/"/>
<category term="常用内置模块与第三方库" scheme="http://YaoJusheng.github.io/tags/%E5%B8%B8%E7%94%A8%E5%86%85%E7%BD%AE%E6%A8%A1%E5%9D%97%E4%B8%8E%E7%AC%AC%E4%B8%89%E6%96%B9%E5%BA%93/"/>
</entry>
<entry>
<title>数据结构与算法(一)- 常见的数据结构及应用场景分析</title>
<link href="http://yaojusheng.github.io/archives/eafd9a05.html"/>
<id>http://yaojusheng.github.io/archives/eafd9a05.html</id>
<published>2020-05-19T14:22:54.000Z</published>
<updated>2020-06-21T07:09:53.798Z</updated>
<summary type="html">
<p>算法中,往往都会涉及数据结构的选择和使用。<br>本篇博文主要描述一些常用的数据结构。</p>
</summary>
</entry>
<entry>
<title>Python(十二)- 基础知识点汇总</title>
<link href="http://yaojusheng.github.io/archives/65842ce6.html"/>
<id>http://yaojusheng.github.io/archives/65842ce6.html</id>
<published>2020-05-16T10:51:47.000Z</published>
<updated>2020-05-23T03:38:17.739Z</updated>
<summary type="html">
<p>Python 语言如今风靡一时,因其简单易学的语法和庞大完善的社区支持深受程序员的喜爱,本篇博文主要整理一下 Python 相关的基础知识以及一些汇总。</p>
</summary>
<category term="编程" scheme="http://YaoJusheng.github.io/categories/%E7%BC%96%E7%A8%8B/"/>
<category term="Python" scheme="http://YaoJusheng.github.io/categories/Python/"/>
<category term="基础知识" scheme="http://YaoJusheng.github.io/tags/%E5%9F%BA%E7%A1%80%E7%9F%A5%E8%AF%86/"/>
</entry>
<entry>
<title>【工具】(八):VSCode 之个性化配置</title>
<link href="http://yaojusheng.github.io/archives/9a4a16.html"/>
<id>http://yaojusheng.github.io/archives/9a4a16.html</id>
<published>2020-05-04T11:12:18.000Z</published>
<updated>2020-05-09T12:23:31.569Z</updated>
<summary type="html">
<p>本文主要记录VSCode中的一些个性化配置。</p>
</summary>
<category term="工具" scheme="http://YaoJusheng.github.io/categories/%E5%B7%A5%E5%85%B7/"/>
<category term="VSCode" scheme="http://YaoJusheng.github.io/categories/VSCode/"/>
<category term="插件" scheme="http://YaoJusheng.github.io/tags/%E6%8F%92%E4%BB%B6/"/>
</entry>
<entry>
<title>个人网站之GitBook的简单使用</title>
<link href="http://yaojusheng.github.io/archives/4544d152.html"/>
<id>http://yaojusheng.github.io/archives/4544d152.html</id>
<published>2020-04-13T12:44:04.000Z</published>
<updated>2020-04-14T16:31:34.238Z</updated>
<summary type="html">
<p>相比于博客网站(如:CSDN、简书、Hexo搭建的个人博客等),个人感觉GitBook更能做一些系列型的技术存档与学习,<br>前者更适合做一些笔记的整理和技术分享,而GitBook的作用相当于将这些笔记做了一些归纳,类似电子书的方式。<br>对于查询资料和文档整理会更好些,当然,工具的使用因人而异。</p>
</summary>
<category term="网站" scheme="http://YaoJusheng.github.io/categories/%E7%BD%91%E7%AB%99/"/>
<category term="GitBook" scheme="http://YaoJusheng.github.io/tags/GitBook/"/>
<category term="插件配置" scheme="http://YaoJusheng.github.io/tags/%E6%8F%92%E4%BB%B6%E9%85%8D%E7%BD%AE/"/>
</entry>
<entry>
<title>Python(十一)- 命令行参数选项解析</title>
<link href="http://yaojusheng.github.io/archives/2d2f30d0.html"/>
<id>http://yaojusheng.github.io/archives/2d2f30d0.html</id>
<published>2020-04-11T15:42:18.000Z</published>
<updated>2020-04-12T13:09:58.240Z</updated>
<summary type="html">
<p>Python中模块和库比较丰富,这里记录一下关于命令行解析相关的模块。</p>
</summary>
<category term="编程" scheme="http://YaoJusheng.github.io/categories/%E7%BC%96%E7%A8%8B/"/>
<category term="Python" scheme="http://YaoJusheng.github.io/categories/Python/"/>
<category term="命令行解析" scheme="http://YaoJusheng.github.io/tags/%E5%91%BD%E4%BB%A4%E8%A1%8C%E8%A7%A3%E6%9E%90/"/>
</entry>
<entry>
<title>web前端(八):webpack的使用</title>
<link href="http://yaojusheng.github.io/archives/7c6cfabd.html"/>
<id>http://yaojusheng.github.io/archives/7c6cfabd.html</id>
<published>2020-04-10T13:52:30.000Z</published>
<updated>2020-04-14T16:34:57.331Z</updated>
<summary type="html">
<p><code>webpack</code> 是一款模块加载器兼打包工具,它能够把各种资源,例如js(含JSX)、样式(含less/sass)、图片等都作为模块来使用和处理。</p>
</summary>
<category term="编程" scheme="http://YaoJusheng.github.io/categories/%E7%BC%96%E7%A8%8B/"/>
<category term="前端" scheme="http://YaoJusheng.github.io/categories/%E5%89%8D%E7%AB%AF/"/>
<category term="Webpack" scheme="http://YaoJusheng.github.io/tags/Webpack/"/>
</entry>
<entry>
<title>web前端(七):gh-pages部署到GitHub</title>
<link href="http://yaojusheng.github.io/archives/ff075d55.html"/>
<id>http://yaojusheng.github.io/archives/ff075d55.html</id>
<published>2020-04-09T13:49:29.000Z</published>
<updated>2020-04-11T10:09:42.478Z</updated>
<summary type="html">
<p>有时需要将一些前端静态资源部署到GitHub上,如博客、在线简历这类的情况。<br>这只涉及一些简单的页面和静态文件,为了减少一些脚本的使用,前端有gh-pages这样一个模块,可以帮助部署到GitHub上。</p>
</summary>
<category term="编程" scheme="http://YaoJusheng.github.io/categories/%E7%BC%96%E7%A8%8B/"/>
<category term="前端" scheme="http://YaoJusheng.github.io/categories/%E5%89%8D%E7%AB%AF/"/>
<category term="gh-pages" scheme="http://YaoJusheng.github.io/tags/gh-pages/"/>
</entry>
<entry>
<title>web前端(六):静态资源压缩</title>
<link href="http://yaojusheng.github.io/archives/3d25ddbc.html"/>
<id>http://yaojusheng.github.io/archives/3d25ddbc.html</id>
<published>2020-04-08T13:47:19.000Z</published>
<updated>2020-04-11T10:42:37.180Z</updated>
<summary type="html">
<blockquote>
<p>前端的静态资源压缩的方式有很多,这里记录一下 <code>Grunt</code> 和 <code>Gulp</code> 的使用</p>
</blockquote>
</summary>
<category term="编程" scheme="http://YaoJusheng.github.io/categories/%E7%BC%96%E7%A8%8B/"/>
<category term="前端" scheme="http://YaoJusheng.github.io/categories/%E5%89%8D%E7%AB%AF/"/>
<category term="资源压缩" scheme="http://YaoJusheng.github.io/tags/%E8%B5%84%E6%BA%90%E5%8E%8B%E7%BC%A9/"/>
</entry>
<entry>
<title>web前端(五):CSS布局之Grid网格布局</title>
<link href="http://yaojusheng.github.io/archives/2db465c1.html"/>
<id>http://yaojusheng.github.io/archives/2db465c1.html</id>
<published>2020-04-07T10:56:01.000Z</published>
<updated>2020-04-11T15:36:17.271Z</updated>
<summary type="html">
<blockquote>
<p>以下资料来源于网络。</p>
</blockquote>
</summary>
<category term="编程" scheme="http://YaoJusheng.github.io/categories/%E7%BC%96%E7%A8%8B/"/>
<category term="前端" scheme="http://YaoJusheng.github.io/categories/%E5%89%8D%E7%AB%AF/"/>
<category term="css布局" scheme="http://YaoJusheng.github.io/tags/css%E5%B8%83%E5%B1%80/"/>
<category term="grid布局" scheme="http://YaoJusheng.github.io/tags/grid%E5%B8%83%E5%B1%80/"/>
</entry>
<entry>
<title>web前端(四):CSS布局之flex弹性布局</title>
<link href="http://yaojusheng.github.io/archives/1155e3cf.html"/>
<id>http://yaojusheng.github.io/archives/1155e3cf.html</id>
<published>2020-04-07T08:55:27.000Z</published>
<updated>2020-04-11T14:13:34.709Z</updated>
<summary type="html">
<ul>
<li>布局的传统解决方案,基于<a href="https://developer.mozilla.org/en-US/docs/Web/CSS/box_model" target="_blank" rel="noopener">盒状模型</a>,依赖 <a href="https://developer.mozilla.org/en-US/docs/Web/CSS/display" target="_blank" rel="noopener"><code>display</code></a> 属性 + <a href="https://developer.mozilla.org/en-US/docs/Web/CSS/position" target="_blank" rel="noopener"><code>position</code></a>属性 + <a href="https://developer.mozilla.org/en-US/docs/Web/CSS/float" target="_blank" rel="noopener"><code>float</code></a>属性。</li>
<li>它对于那些特殊布局非常不方便,比如,<a href="https://css-tricks.com/centering-css-complete-guide/" target="_blank" rel="noopener">垂直居中</a>就不容易实现。</li>
</ul>
</summary>
<category term="编程" scheme="http://YaoJusheng.github.io/categories/%E7%BC%96%E7%A8%8B/"/>
<category term="前端" scheme="http://YaoJusheng.github.io/categories/%E5%89%8D%E7%AB%AF/"/>
<category term="css布局" scheme="http://YaoJusheng.github.io/tags/css%E5%B8%83%E5%B1%80/"/>
<category term="flex布局" scheme="http://YaoJusheng.github.io/tags/flex%E5%B8%83%E5%B1%80/"/>
</entry>
<entry>
<title>web前端(三):CSS布局之双飞翼、圣杯布局</title>
<link href="http://yaojusheng.github.io/archives/d533509a.html"/>
<id>http://yaojusheng.github.io/archives/d533509a.html</id>
<published>2020-04-07T06:53:59.000Z</published>
<updated>2020-04-11T17:10:50.442Z</updated>
<summary type="html">
<blockquote>
<p>本文简单整理一下前端样式中的经典布局方式。</p>
</blockquote>
</summary>
<category term="编程" scheme="http://YaoJusheng.github.io/categories/%E7%BC%96%E7%A8%8B/"/>
<category term="前端" scheme="http://YaoJusheng.github.io/categories/%E5%89%8D%E7%AB%AF/"/>
<category term="CSS布局" scheme="http://YaoJusheng.github.io/tags/CSS%E5%B8%83%E5%B1%80/"/>
<category term="圣杯布局" scheme="http://YaoJusheng.github.io/tags/%E5%9C%A3%E6%9D%AF%E5%B8%83%E5%B1%80/"/>
<category term="双飞翼布局" scheme="http://YaoJusheng.github.io/tags/%E5%8F%8C%E9%A3%9E%E7%BF%BC%E5%B8%83%E5%B1%80/"/>
</entry>
<entry>
<title>web前端(二):HTML标签常用属性和CSS样式</title>
<link href="http://yaojusheng.github.io/archives/9d4c0047.html"/>
<id>http://yaojusheng.github.io/archives/9d4c0047.html</id>
<published>2020-04-06T13:26:48.000Z</published>
<updated>2020-04-11T07:30:28.256Z</updated>
<summary type="html">
<blockquote>
<p>本文主要记录一下HTML标签的常用属性和CSS样式。</p>
</blockquote>
</summary>
<category term="编程" scheme="http://YaoJusheng.github.io/categories/%E7%BC%96%E7%A8%8B/"/>
<category term="前端" scheme="http://YaoJusheng.github.io/categories/%E5%89%8D%E7%AB%AF/"/>
<category term="HTML" scheme="http://YaoJusheng.github.io/tags/HTML/"/>
<category term="属性样式" scheme="http://YaoJusheng.github.io/tags/%E5%B1%9E%E6%80%A7%E6%A0%B7%E5%BC%8F/"/>
</entry>
<entry>
<title>Python(十)- tkinter案例(1): WiFi连接器!</title>
<link href="http://yaojusheng.github.io/archives/6eec6899.html"/>
<id>http://yaojusheng.github.io/archives/6eec6899.html</id>
<published>2020-04-05T10:07:23.000Z</published>
<updated>2020-04-05T11:12:30.176Z</updated>
<summary type="html">
<p>前段时间,在脉脉上看到一篇关于WiFi连接的python实现,感觉挺有意思的。</p>
</summary>
<category term="编程" scheme="http://YaoJusheng.github.io/categories/%E7%BC%96%E7%A8%8B/"/>
<category term="Python" scheme="http://YaoJusheng.github.io/categories/Python/"/>
<category term="GUI编程" scheme="http://YaoJusheng.github.io/categories/GUI%E7%BC%96%E7%A8%8B/"/>
<category term="Tkinter" scheme="http://YaoJusheng.github.io/tags/Tkinter/"/>
<category term="WiFi连接" scheme="http://YaoJusheng.github.io/tags/WiFi%E8%BF%9E%E6%8E%A5/"/>
</entry>
<entry>
<title>Python(九)- 音频文字转换</title>
<link href="http://yaojusheng.github.io/archives/890d42a0.html"/>
<id>http://yaojusheng.github.io/archives/890d42a0.html</id>
<published>2020-04-01T12:42:59.000Z</published>
<updated>2020-04-05T09:01:29.031Z</updated>
<summary type="html">
<p>Python 是一门通用性很强的语言,本文主要讲述其中的音频模块 gtts(Google文本到语音)的使用。</p>
</summary>
<category term="编程" scheme="http://YaoJusheng.github.io/categories/%E7%BC%96%E7%A8%8B/"/>
<category term="Python" scheme="http://YaoJusheng.github.io/categories/Python/"/>
<category term="音频" scheme="http://YaoJusheng.github.io/tags/%E9%9F%B3%E9%A2%91/"/>
</entry>
<entry>
<title>Python(八)- url 代理设置!</title>
<link href="http://yaojusheng.github.io/archives/17e4c729.html"/>
<id>http://yaojusheng.github.io/archives/17e4c729.html</id>
<published>2020-03-16T14:15:24.000Z</published>
<updated>2020-04-05T09:04:53.096Z</updated>
<summary type="html">
<p>之前有同事问到关于 Python 中URL走代理的问题,这里做个简单的记录。</p>
</summary>
<category term="编程" scheme="http://YaoJusheng.github.io/categories/%E7%BC%96%E7%A8%8B/"/>
<category term="Python" scheme="http://YaoJusheng.github.io/categories/Python/"/>
<category term="代理配置" scheme="http://YaoJusheng.github.io/tags/%E4%BB%A3%E7%90%86%E9%85%8D%E7%BD%AE/"/>
</entry>
<entry>
<title>Python(七)- 连接MongoDB数据库以及CURD操作!</title>
<link href="http://yaojusheng.github.io/archives/db519792.html"/>
<id>http://yaojusheng.github.io/archives/db519792.html</id>
<published>2020-03-13T14:11:29.000Z</published>
<updated>2020-03-13T14:34:39.807Z</updated>
<summary type="html">
<blockquote>
<p>本文介绍python中对MongoDB数据库操作的两个模块:<code>pymongo</code> 和 <code>mongoengine</code></p>
</blockquote>
</summary>
<category term="编程" scheme="http://YaoJusheng.github.io/categories/%E7%BC%96%E7%A8%8B/"/>
<category term="Python" scheme="http://YaoJusheng.github.io/categories/Python/"/>
<category term="数据库" scheme="http://YaoJusheng.github.io/categories/%E6%95%B0%E6%8D%AE%E5%BA%93/"/>
<category term="CURD" scheme="http://YaoJusheng.github.io/tags/CURD/"/>
<category term="MongoDB" scheme="http://YaoJusheng.github.io/tags/MongoDB/"/>
</entry>
<entry>
<title>Python(六)- 连接MySQL数据库以及CURD操作!</title>
<link href="http://yaojusheng.github.io/archives/17f677f9.html"/>
<id>http://yaojusheng.github.io/archives/17f677f9.html</id>
<published>2020-03-13T14:07:49.000Z</published>
<updated>2020-03-13T14:34:25.151Z</updated>
<summary type="html">
<blockquote>
<p>本文介绍python中对MySQL数据库操作的几个模块</p>
</blockquote>
</summary>
<category term="编程" scheme="http://YaoJusheng.github.io/categories/%E7%BC%96%E7%A8%8B/"/>
<category term="Python" scheme="http://YaoJusheng.github.io/categories/Python/"/>
<category term="数据库" scheme="http://YaoJusheng.github.io/categories/%E6%95%B0%E6%8D%AE%E5%BA%93/"/>
<category term="MySQL" scheme="http://YaoJusheng.github.io/tags/MySQL/"/>
<category term="CURD" scheme="http://YaoJusheng.github.io/tags/CURD/"/>
</entry>
</feed>