-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathatom.xml
More file actions
507 lines (234 loc) · 14.8 KB
/
atom.xml
File metadata and controls
507 lines (234 loc) · 14.8 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
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
<?xml version="1.0" encoding="utf-8"?>
<feed xmlns="http://www.w3.org/2005/Atom">
<title>路易零世的博客</title>
<subtitle>路易零世的博客</subtitle>
<link href="https://louisz.top/atom.xml" rel="self"/>
<link href="https://louisz.top/"/>
<updated>2023-11-22T14:03:02.734Z</updated>
<id>https://louisz.top/</id>
<author>
<name>LouisZ</name>
</author>
<generator uri="https://hexo.io/">Hexo</generator>
<entry>
<title>疯言疯语</title>
<link href="https://louisz.top/2023/11/47300.html"/>
<id>https://louisz.top/2023/11/47300.html</id>
<published>2023-11-22T13:50:43.000Z</published>
<updated>2023-11-22T14:03:02.734Z</updated>
<summary type="html"><p>有时候啊,真的觉得自己非常无力和懦弱,即使是珍惜的事物在自己面前被破坏,被蹂躏,心里明白自己没有做错任何东西,面对那强权,
却完全无法提起反抗的想法。反思百遍,我认为我们问心无愧,强权为了自己的那顶帽子,化身纣王的帮凶,给我们严重的打击。
公平正义?有权有理!
<stron</summary>
</entry>
<entry>
<title>简易CMake入门</title>
<link href="https://louisz.top/2023/11/63520.html"/>
<id>https://louisz.top/2023/11/63520.html</id>
<published>2023-11-22T09:16:01.000Z</published>
<updated>2023-11-23T03:09:23.038Z</updated>
<summary type="html"><h2</summary>
<category term="学习笔记" scheme="https://louisz.top/tags/%E5%AD%A6%E4%B9%A0%E7%AC%94%E8%AE%B0/"/>
<category term="开发" scheme="https://louisz.top/tags/%E5%BC%80%E5%8F%91/"/>
</entry>
<entry>
<title>C++ 对象的内存模型</title>
<link href="https://louisz.top/2023/11/11245.html"/>
<id>https://louisz.top/2023/11/11245.html</id>
<published>2023-11-14T06:03:57.000Z</published>
<updated>2023-11-14T06:05:57.109Z</updated>
<summary type="html"><h2 id="一般对象和子类对象">一般对象和子类对象</h2>
<h3 id="说明">说明</h3>
<p>一般对象的内存中仅包含其成员变量而不包含成员函数,子类对象中包括父类的成员变量和
子类自己的成员变量。</p>
<h3</summary>
<category term="学习笔记" scheme="https://louisz.top/tags/%E5%AD%A6%E4%B9%A0%E7%AC%94%E8%AE%B0/"/>
<category term="C++" scheme="https://louisz.top/tags/C/"/>
</entry>
<entry>
<title>C++类的成员函数指针</title>
<link href="https://louisz.top/2023/10/27019.html"/>
<id>https://louisz.top/2023/10/27019.html</id>
<published>2023-10-30T12:00:41.000Z</published>
<updated>2023-10-30T12:29:13.736Z</updated>
<summary type="html"><p>最近学习的过程中,碰到了这样一个代码:</p>
<pre class="language-cpp" data-language="cpp"><code class="language-cpp">SampleClass sc<span class="token</summary>
<category term="学习笔记" scheme="https://louisz.top/tags/%E5%AD%A6%E4%B9%A0%E7%AC%94%E8%AE%B0/"/>
<category term="C++" scheme="https://louisz.top/tags/C/"/>
</entry>
<entry>
<title>联合及枚举、特殊指针、流</title>
<link href="https://louisz.top/2023/09/13518.html"/>
<id>https://louisz.top/2023/09/13518.html</id>
<published>2023-09-10T09:16:03.000Z</published>
<updated>2023-09-10T09:50:01.401Z</updated>
<summary type="html"><h2 id="基础">基础</h2>
<p>前四章属于基础中的基础,基本上没有什么新的收获。只总结两个以前见得比较少的类型。</p>
<h3</summary>
<category term="学习笔记" scheme="https://louisz.top/tags/%E5%AD%A6%E4%B9%A0%E7%AC%94%E8%AE%B0/"/>
<category term="C++" scheme="https://louisz.top/tags/C/"/>
<category term="杂七杂八" scheme="https://louisz.top/tags/%E6%9D%82%E4%B8%83%E6%9D%82%E5%85%AB/"/>
</entry>
<entry>
<title>可执行文件的装载与进程</title>
<link href="https://louisz.top/2023/09/12719.html"/>
<id>https://louisz.top/2023/09/12719.html</id>
<published>2023-09-06T05:35:31.000Z</published>
<updated>2023-09-06T05:42:27.425Z</updated>
<summary type="html"><p>注:本文为阅读《程序员的自我修养》第六章后所作总结</p>
<h2</summary>
<category term="学习笔记" scheme="https://louisz.top/tags/%E5%AD%A6%E4%B9%A0%E7%AC%94%E8%AE%B0/"/>
<category term="读书笔记" scheme="https://louisz.top/tags/%E8%AF%BB%E4%B9%A6%E7%AC%94%E8%AE%B0/"/>
</entry>
<entry>
<title>抽象、分层、派生</title>
<link href="https://louisz.top/2023/09/15822.html"/>
<id>https://louisz.top/2023/09/15822.html</id>
<published>2023-09-03T07:52:15.000Z</published>
<updated>2023-09-05T13:52:19.077Z</updated>
<summary type="html"><p>注:本文为阅读《程序员的自我修养》第一章后所作总结。</p>
<p>书本对第一章的定位是“基础复习”,但是对我而言并不算复习,而更像是基础知识科普,或者说,是为了能读懂这本书而学习的一些新内容。
这本书的作者也的确高明,虽然我过去基本上没有学习过这些内容,但也能够基本明白第</summary>
<category term="学习笔记" scheme="https://louisz.top/tags/%E5%AD%A6%E4%B9%A0%E7%AC%94%E8%AE%B0/"/>
<category term="读书笔记" scheme="https://louisz.top/tags/%E8%AF%BB%E4%B9%A6%E7%AC%94%E8%AE%B0/"/>
</entry>
<entry>
<title>在Visual Studio中使用libcurl</title>
<link href="https://louisz.top/2023/06/31156.html"/>
<id>https://louisz.top/2023/06/31156.html</id>
<published>2023-06-08T13:42:25.000Z</published>
<updated>2023-06-09T04:47:02.420Z</updated>
<summary type="html"><h2 id="0x0-前言">0x0 前言</h2>
<p>最近的一个C++项目中需要实现发送http请求的功能,计划使用有名的开源库libcurl来做。
相关工具和代码的版本以及一些约定如下:</p>
<blockquote>
<p>Visual Studio</summary>
<category term="学习笔记" scheme="https://louisz.top/tags/%E5%AD%A6%E4%B9%A0%E7%AC%94%E8%AE%B0/"/>
<category term="C++" scheme="https://louisz.top/tags/C/"/>
<category term="实验" scheme="https://louisz.top/tags/%E5%AE%9E%E9%AA%8C/"/>
</entry>
<entry>
<title>C++类与对象之析构函数</title>
<link href="https://louisz.top/2023/05/34611.html"/>
<id>https://louisz.top/2023/05/34611.html</id>
<published>2023-05-25T03:27:56.000Z</published>
<updated>2023-05-25T04:00:14.971Z</updated>
<summary type="html"><h2 id="概念">概念</h2>
<p>在对象被撤销时,清理对象的内存。然而析构函数并不能释放对象占用的内存,只是事先做一些清理的工作。</p>
<h2 id="语法">语法</h2>
<p>函数名和类名一致,以~开头,没有返回值,不带参数。</p>
<pre</summary>
<category term="学习笔记" scheme="https://louisz.top/tags/%E5%AD%A6%E4%B9%A0%E7%AC%94%E8%AE%B0/"/>
<category term="C++" scheme="https://louisz.top/tags/C/"/>
</entry>
<entry>
<title>8086汇编中物理地址的合成方式</title>
<link href="https://louisz.top/2023/03/20524.html"/>
<id>https://louisz.top/2023/03/20524.html</id>
<published>2023-03-20T13:53:56.000Z</published>
<updated>2023-03-25T04:45:55.683Z</updated>
<summary type="html"><h2</summary>
<category term="学习笔记" scheme="https://louisz.top/tags/%E5%AD%A6%E4%B9%A0%E7%AC%94%E8%AE%B0/"/>
<category term="汇编语言" scheme="https://louisz.top/tags/%E6%B1%87%E7%BC%96%E8%AF%AD%E8%A8%80/"/>
</entry>
<entry>
<title>搓一个语音唤醒</title>
<link href="https://louisz.top/2023/03/56157.html"/>
<id>https://louisz.top/2023/03/56157.html</id>
<published>2023-03-07T12:32:00.000Z</published>
<updated>2023-03-25T04:45:55.693Z</updated>
<summary type="html"><p>(非原创,代某位卷王发送)</p>
<hr>
<p>(哈哈 这个排版 稀烂咯)</p>
<h2 id="目标">目标</h2>
<p>搓一个语音唤醒(keyword</summary>
<category term="代发" scheme="https://louisz.top/tags/%E4%BB%A3%E5%8F%91/"/>
<category term="开发笔记" scheme="https://louisz.top/tags/%E5%BC%80%E5%8F%91%E7%AC%94%E8%AE%B0/"/>
</entry>
<entry>
<title>再游湖畔</title>
<link href="https://louisz.top/2023/03/35335.html"/>
<id>https://louisz.top/2023/03/35335.html</id>
<published>2023-03-05T10:43:42.000Z</published>
<updated>2023-03-25T04:45:55.695Z</updated>
<summary type="html"><p>子在川上曰:“逝者如斯夫,不舍昼夜”。时间如河水一般滚滚流去,曾经熟悉的事物所发生的变化也大得让人吃惊。</p>
<p>时隔两个月,我又一次循着熟悉的湖边小路散步。拦腰高的石头围栏,被齐胸高、涂着黑灰色油漆的铁制栏杆所取代。
和两个月前相比,本就很低的水位变得更低了。原本靠</summary>
<category term="生活" scheme="https://louisz.top/tags/%E7%94%9F%E6%B4%BB/"/>
</entry>
<entry>
<title>王爽《汇编语言》实验5 (5)</title>
<link href="https://louisz.top/2023/02/17545.html"/>
<id>https://louisz.top/2023/02/17545.html</id>
<published>2023-02-21T14:40:09.000Z</published>
<updated>2023-03-25T04:45:55.679Z</updated>
<summary type="html"><h2 id="原题">原题</h2>
<p>编写code段中的代码,将a段和b段数据依次相加,结果存入c段</p>
<pre class="language-none"><code class="language-none">assume cs:code
a</summary>
<category term="学习笔记" scheme="https://louisz.top/tags/%E5%AD%A6%E4%B9%A0%E7%AC%94%E8%AE%B0/"/>
<category term="汇编语言" scheme="https://louisz.top/tags/%E6%B1%87%E7%BC%96%E8%AF%AD%E8%A8%80/"/>
</entry>
<entry>
<title>开端</title>
<link href="https://louisz.top/2023/02/21985.html"/>
<id>https://louisz.top/2023/02/21985.html</id>
<published>2023-02-19T14:06:07.000Z</published>
<updated>2023-09-05T13:37:19.718Z</updated>
<summary type="html"><p>开学了。</p>
<p>恰是春季,尽管还有些许寒意,也难掩生机勃勃。曾经因封控而变得冷清的街道,也恢复了往日的繁荣。</p>
<p>火车站一如既往,不一样的是车站大门口悬挂的写着“请出示健康码”的牌子不见了,那些低头操作手机寻找健康码、堵住通道的旅客没有了。
候车大厅也似乎</summary>
<category term="生活" scheme="https://louisz.top/tags/%E7%94%9F%E6%B4%BB/"/>
</entry>
<entry>
<title>群星异闻录</title>
<link href="https://louisz.top/2023/02/48452.html"/>
<id>https://louisz.top/2023/02/48452.html</id>
<published>2023-02-19T14:06:07.000Z</published>
<updated>2023-09-05T14:02:28.225Z</updated>
<summary type="html"><h1><span style="display:block;text-align:center;color:lightblue;">群星异闻录</span></h1>
<p>本文非原创,是代替某卷王存档的文章</p>
<h2</summary>
<category term="游戏" scheme="https://louisz.top/tags/%E6%B8%B8%E6%88%8F/"/>
<category term="代发" scheme="https://louisz.top/tags/%E4%BB%A3%E5%8F%91/"/>
</entry>
<entry>
<title>nginx配置防盗链</title>
<link href="https://louisz.top/2023/02/53518.html"/>
<id>https://louisz.top/2023/02/53518.html</id>
<published>2023-02-08T14:55:55.000Z</published>
<updated>2023-09-05T13:50:36.596Z</updated>
<summary type="html"><p>由于打算把图片放在自己的服务器上,所以配置防盗链也成了一个必须完成的任务。</p>
<p>在网上搜了一下,大致上是利用nginx检测http请求头中的referer参数来判断是否返回图片。</p>
<pre class="language-none"><code</summary>
<category term="日积月累" scheme="https://louisz.top/tags/%E6%97%A5%E7%A7%AF%E6%9C%88%E7%B4%AF/"/>
</entry>
<entry>
<title>使用three.js创建3D场景</title>
<link href="https://louisz.top/2023/02/36984.html"/>
<id>https://louisz.top/2023/02/36984.html</id>
<published>2023-02-06T08:14:15.000Z</published>
<updated>2023-03-25T04:45:55.693Z</updated>
<summary type="html"><h2 id="总流程">总流程</h2>
<ul>
<li>新建一个空的场景</li>
<li>添加相机和灯光</li>
<li>添加各个物体</li>
<li>创建渲染器</li>
<li>使用渲染器渲染场景</li>
</ul>
<h2</summary>
<category term="开发笔记" scheme="https://louisz.top/tags/%E5%BC%80%E5%8F%91%E7%AC%94%E8%AE%B0/"/>
<category term="JavaScript" scheme="https://louisz.top/tags/JavaScript/"/>
</entry>
<entry>
<title>JavaScript压缩和混淆</title>
<link href="https://louisz.top/2023/02/55798.html"/>
<id>https://louisz.top/2023/02/55798.html</id>
<published>2023-02-02T12:09:37.000Z</published>
<updated>2023-03-25T04:45:55.686Z</updated>
<summary type="html"><h2</summary>
<category term="日积月累" scheme="https://louisz.top/tags/%E6%97%A5%E7%A7%AF%E6%9C%88%E7%B4%AF/"/>
</entry>
</feed>