-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathfeed.xml
More file actions
2059 lines (2059 loc) · 118 KB
/
feed.xml
File metadata and controls
2059 lines (2059 loc) · 118 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
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<?xml version='1.0' encoding='UTF-8'?>
<feed xmlns="http://www.w3.org/2005/Atom"><id>https://github.com/noteMay/blog</id><title>RSS feed of noteMay's blog</title><updated>2023-03-04T04:09:16.697525+00:00</updated><author><name>noteMay</name><email>note9852@outlook.com</email></author><link href="https://github.com/noteMay/blog"/><link href="https://raw.githubusercontent.com/noteMay/blog/master/feed.xml" rel="self"/><generator uri="https://lkiesow.github.io/python-feedgen" version="0.9.0">python-feedgen</generator><entry><id>https://github.com/noteMay/blog/issues/44</id><title>汽车相关知识</title><updated>2023-03-04T04:09:17.096102+00:00</updated><content type="html"><![CDATA[<h1>侧方停车</h1>
<p><a href="https://weibo.com/6292709597/MvApjtMkd">https://weibo.com/6292709597/MvApjtMkd</a></p>
<ol>
<li>后视镜与前方车辆后视镜平行时,方向盘往右打死并挂退档</li>
<li>在左后视镜里看到后方车辆右侧车灯,方向盘回正继续挂退档</li>
<li>在右后视镜看到马路牙子和前车门把手交叉,方向盘往左打死,车子会退进车位,记得观察前后车距离</li>
</ol>
<h1>车门反锁,从后备箱逃脱</h1>
<blockquote>
<p>汽车车门锁住,从后备箱逃脱<a href="https://weibo.com/6292709597/Mrr8f5x9G">https://weibo.com/6292709597/Mrr8f5x9G</a></p>
</blockquote>
<p>后排座位有挡板,左右两个是儿童座椅的,中间一块是普通座位
掀开挡板,使用钥匙插入划开,可把座椅放倒,再钻到后备箱里,打开应急锁,即可逃脱</p>
]]></content><link href="https://github.com/noteMay/blog/issues/44" rel="alternate"/><category term="学习"/><published>2023-02-04T04:30:26+00:00</published></entry><entry><id>https://github.com/noteMay/blog/issues/43</id><title>iWatch</title><updated>2023-03-04T04:09:17.244257+00:00</updated><content type="html"><![CDATA[<p>换了个Apple Watch Series 3</p>
<p>是本地自提,一位老哥18年买的,整体成色还不错,就是电池健康度剩下87%了</p>
<p>试了试还不错的,就是没有血氧,不过不要紧!</p>
<p>血氧好像是S6才有,这个跟我的iPhone7s没什么关系JPG</p>
<p>先试用一周看看</p>
<p>晚上22点充电看看能用到什么时间
——2023-01-30记</p>
<p>晚上睡前充满电,能用到我下班回来
——2023-02-01记</p>
<p>充电大概50分钟左右?虽然都是有空就丢下去充电,但是还真没认真计时过……手机都是到家就插上充电器的
——2023-02-04记</p>
<p>iWatch用iPhone自带的地图,会震动提醒路口拐弯什么的,还是挺不错的
然后高德地图只支持骑行或者步行的导航<code>暂未尝试</code>
——2023-02-08记</p>
<p>比较喜欢拿来听微信语音……音量设置得刚刚好
——2023-02-09记</p>
]]></content><link href="https://github.com/noteMay/blog/issues/43" rel="alternate"/><category term="生活"/><category term="记录"/><published>2023-01-30T11:44:32+00:00</published></entry><entry><id>https://github.com/noteMay/blog/issues/42</id><title>明日方舟干员技能</title><updated>2023-03-04T04:09:17.400330+00:00</updated><content type="html"><![CDATA[<table>
<thead>
<tr>
<th align="center">干员</th>
<th align="center">技能</th>
<th align="center">专精</th>
</tr>
</thead>
<tbody>
<tr>
<td align="center">迷迭香</td>
<td align="center">2、3</td>
<td align="center">2、3</td>
</tr>
<tr>
<td align="center">伊芙利特</td>
<td align="center">2、3</td>
<td align="center">2</td>
</tr>
<tr>
<td align="center">桃金娘</td>
<td align="center">1</td>
<td align="center">1</td>
</tr>
<tr>
<td align="center">极境</td>
<td align="center">1、3</td>
<td align="center">1、3</td>
</tr>
<tr>
<td align="center">凯尔希</td>
<td align="center">2、3</td>
<td align="center">2、3</td>
</tr>
<tr>
<td align="center">浊心斯卡蒂</td>
<td align="center">1、2、3</td>
<td align="center">2</td>
</tr>
<tr>
<td align="center">泥岩</td>
<td align="center">2</td>
<td align="center">2</td>
</tr>
<tr>
<td align="center">能天使</td>
<td align="center">2、3</td>
<td align="center">3</td>
</tr>
<tr>
<td align="center">歌蕾蒂娅</td>
<td align="center">2、3</td>
<td align="center">3</td>
</tr>
<tr>
<td align="center">棘刺</td>
<td align="center">3</td>
<td align="center">3</td>
</tr>
<tr>
<td align="center">令</td>
<td align="center">3</td>
<td align="center">3</td>
</tr>
<tr>
<td align="center">号角</td>
<td align="center">1、2、3<code>常用于对Boss输出</code></td>
<td align="center">1、2</td>
</tr>
<tr>
<td align="center">斯卡蒂</td>
<td align="center">2</td>
<td align="center">2</td>
</tr>
<tr>
<td align="center">鸿雪</td>
<td align="center">2、3</td>
<td align="center">2、3</td>
</tr>
<tr>
<td align="center">归溟幽灵鲨</td>
<td align="center">2、3</td>
<td align="center">2<code>较为常用</code>、3</td>
</tr>
<tr>
<td align="center">煌</td>
<td align="center">2</td>
<td align="center">2</td>
</tr>
<tr>
<td align="center">瑕光</td>
<td align="center">1、2、3</td>
<td align="center">1、2、3</td>
</tr>
<tr>
<td align="center">星熊</td>
<td align="center">2</td>
<td align="center">2</td>
</tr>
<tr>
<td align="center">塞雷娅</td>
<td align="center">1、2、3</td>
<td align="center">1、2、3</td>
</tr>
<tr>
<td align="center">夜莺</td>
<td align="center">2</td>
<td align="center">2</td>
</tr>
<tr>
<td align="center">年</td>
<td align="center">2</td>
<td align="center">2</td>
</tr>
<tr>
<td align="center">斥罪</td>
<td align="center">2、3</td>
<td align="center">3</td>
</tr>
<tr>
<td align="center">濯尘芙蓉</td>
<td align="center">2</td>
<td align="center">2</td>
</tr>
</tbody></table>]]></content><link href="https://github.com/noteMay/blog/issues/42" rel="alternate"/><category term="游戏"/><published>2023-01-27T06:03:38+00:00</published></entry><entry><id>https://github.com/noteMay/blog/issues/41</id><title>明日方舟助战干员</title><updated>2023-03-04T04:09:17.531704+00:00</updated><content type="html"><![CDATA[<!-- more -->
<!-- more -->
<h1>国服官服</h1>
<h2>1507463</h2>
<p><img src="https://img.xn--5ivs9a.work/images/2022/11/26/CN1507463.png" alt="" />
<img src="https://img.xn--5ivs9a.work/images/2022/11/26/CN-1507463_1.png" alt="" />
<img src="https://img.xn--5ivs9a.work/images/2022/11/26/CN-1507463_2.png" alt="" /></p>
<h2>30644121</h2>
<p><img src="https://img.xn--5ivs9a.work/images/2022/11/26/CN30644121.png" alt="" />
<img src="https://img.xn--5ivs9a.work/images/2022/11/26/CN-30644121.png" alt="" /></p>
<h2>303840438</h2>
<p><img src="https://img.xn--5ivs9a.work/images/2022/11/26/CN303840438.png" alt="" />
<img src="https://img.xn--5ivs9a.work/images/2022/11/26/CN-303840438.png" alt="" /></p>
<h2>773647902</h2>
<p><img src="https://img.xn--5ivs9a.work/images/2022/11/26/CN773647902.png" alt="" />
<img src="https://img.xn--5ivs9a.work/images/2022/11/26/CN-773647902.png" alt="" /></p>
<h2>420712102</h2>
<p><img src="https://img.xn--5ivs9a.work/images/2022/11/26/CN420712102.png" alt="" />
<img src="https://img.xn--5ivs9a.work/images/2022/11/26/CN-420712102.png" alt="" /></p>
<h2>081348804</h2>
<p><img src="https://img.xn--5ivs9a.work/images/2022/11/26/CN081348804.png" alt="" />
<img src="https://img.xn--5ivs9a.work/images/2022/11/26/CN-081348804.png" alt="" /></p>
<h2>319461315</h2>
<p><img src="https://img.xn--5ivs9a.work/images/2022/11/26/CN319461315.png" alt="" />
<img src="https://img.xn--5ivs9a.work/images/2022/11/26/CN-319461315.png" alt="" /></p>
<h1>国际服日服</h1>
<h2>17899591</h2>
<p>|<img src="https://img.xn--5ivs9a.work/images/2022/11/26/JP17899591.png" alt="" />|<img src="https://img.xn--5ivs9a.work/images/2022/11/26/JP-17899591.png" alt="" />|</p>
<h2>21258805</h2>
<p><img src="https://img.xn--5ivs9a.work/images/2022/11/18/21258805.png" alt="" /></p>
<h2>91414615</h2>
<p><img src="https://img.xn--5ivs9a.work/images/2022/11/18/91414615.png" alt="" /></p>
<h2>94013319</h2>
<p><img src="https://img.xn--5ivs9a.work/images/2022/11/19/94013319.jpg" alt="" /></p>
]]></content><link href="https://github.com/noteMay/blog/issues/41" rel="alternate"/><category term="游戏"/><published>2023-01-27T05:45:52+00:00</published></entry><entry><id>https://github.com/noteMay/blog/issues/40</id><title>待看</title><updated>2023-03-04T04:09:17.691495+00:00</updated><content type="html"><![CDATA[<h1>纪录片</h1>
<ul>
<li>
<p><input checked="" disabled="" type="checkbox"> 魅力纪录:<a href="https://www.bilibili.com/video/BV1Gs411a76W/">花豹女王</a>
哎,不容易啊</p>
</li>
<li>
<p><input disabled="" type="checkbox"> 《纪录片编辑室》 <a href="http://jishi.cctv.com/2016/06/29/VIDEkf7hLfh7M6cK1oRJQbbF160629.shtml">20160629 含泪活着·上</a></p>
</li>
<li>
<p><input checked="" disabled="" type="checkbox"> 《纪录片编辑室》 <a href="https://jishi.cctv.com/2016/05/26/VIDEKOHZYnABMYy8usRFDxf3160526.shtml">20160526 再见,通北路</a>
好真实的拆迁啊……俗话说,近邻远亲,也是如此了</p>
</li>
<li>
<p><input checked="" disabled="" type="checkbox"> 《纪录片编辑室》 <a href="https://jishi.cctv.com/2016/05/27/VIDEz6UpYeNxiXBRhsKaz0nt160527.shtml">20160530 海之南·上</a>
哎!了解了一点关于海南花黎和沉香的事情</p>
</li>
<li>
<p><input checked="" disabled="" type="checkbox"> 《纪录片编辑室》 <a href="https://jishi.cctv.com/2016/05/30/VIDEVflIdphl3LJJOS6JH42x160530.shtml">20160530 海之南·下</a>
介绍了海南黎族、黎锦、鱼茶、文昌鸡</p>
</li>
</ul>
<h1>综艺</h1>
<h2>种地吧</h2>
<p><a href="https://www.iqiyi.com/a_gpoousl01p.html">https://www.iqiyi.com/a_gpoousl01p.html</a>
<a href="https://vip.fxw.la/">https://vip.fxw.la/</a></p>
<ul>
<li>
<p><input checked="" disabled="" type="checkbox"> 第1期上<a href="http://www.iqiyi.com/v_1cn6v93s3gs.html">种地团热血奋战稻田</a>
……不懂的东西还是老老实实请教吧,还是有莽劲啊</p>
</li>
<li>
<p><input checked="" disabled="" type="checkbox"> 第1期下<a href="http://www.iqiyi.com/v_wmc3k0ku34.html">种地团抢收水稻翻车不断</a>
好莽啊哥……哎,希望能看到成长</p>
</li>
</ul>
]]></content><link href="https://github.com/noteMay/blog/issues/40" rel="alternate"/><category term="TODO"/><published>2023-01-25T18:24:45+00:00</published></entry><entry><id>https://github.com/noteMay/blog/issues/38</id><title>备份手机</title><updated>2023-03-04T04:09:17.857034+00:00</updated><content type="html"><![CDATA[<p>备份手机刷系统!当然是折腾之前买的iPhone7s</p>
<p>因为iOS系统……突然发现除了iCloud之外的备份手段有点少,就来找比较靠谱的备份方法</p>
<p>主要是备份短信,因为其他的都有方法备份</p>
<p><code>通讯录</code>丢网盘或者换机APP就行了
<code>照片</code>网盘或直接导出到PC上</p>
<blockquote>
<p><a href="https://zh-cn.aiseesoft.com/how-to/backup-text-messages-on-iphone.html">备份iPhone短信的5种方法</a>
这篇介绍了蛮多的</p>
</blockquote>
<blockquote>
<p><a href="https://www.a7la-home.com/zh-CN/transfer-calls-logs-sms-iphone-android/">如何将通话记录和短信从 IPHONE 转移到 ANDROID</a>
这篇虽然是转移,但是够用了</p>
</blockquote>
<p>结合这两篇总结下来就是iMazing和iTunes
先试试看iMazing……iTunes没什么兴趣</p>
<p>备份小米或红米手机可以使用<code>小米手机助手</code>进行备份</p>
]]></content><link href="https://github.com/noteMay/blog/issues/38" rel="alternate"/><category term="记录"/><published>2023-01-25T15:40:37+00:00</published></entry><entry><id>https://github.com/noteMay/blog/issues/37</id><title>做饭炒菜视频</title><updated>2023-03-04T04:09:18.004686+00:00</updated><content type="html"><![CDATA[<blockquote>
<p>花甲想鲜美好吃,切记不要直接焯水,分享海边人不加一滴水的做法<a href="https://www.bilibili.com/video/BV1td4y1W7em">https://www.bilibili.com/video/BV1td4y1W7em</a>
还行,算是不错的教程</p>
</blockquote>
<blockquote>
<p>煮饺子时,用冷水和开水都错了,教你正确方法,饺子不破皮不粘锅<a href="https://www.bilibili.com/video/BV1YP4y1r73d">https://www.bilibili.com/video/BV1YP4y1r73d</a>
看起来有点复杂……都用速冻饺子了……估计能做到这样的也不必用速冻饺子</p>
</blockquote>
<blockquote>
<p>扁豆、荷兰豆、四季豆...到底是些什么豆?<a href="https://zhuanlan.zhihu.com/p/81484046">https://zhuanlan.zhihu.com/p/81484046</a>
科普!我认识了!!</p>
</blockquote>
]]></content><link href="https://github.com/noteMay/blog/issues/37" rel="alternate"/><category term="美食"/><category term="记录"/><published>2023-01-23T14:07:13+00:00</published></entry><entry><id>https://github.com/noteMay/blog/issues/36</id><title>APP买菜记录</title><updated>2023-03-04T04:09:18.174090+00:00</updated><content type="html"><![CDATA[<blockquote>
<p>在各种APP买菜的记录(淘菜菜、美团优选、多多买菜)</p>
</blockquote>
<h1>淘菜菜</h1>
<blockquote>
<p>时不时看看有没有送优惠(满4-3元优惠券)买秒杀价的东西居多吧!
菜菜超市(原:淘菜菜)</p>
</blockquote>
<h2>2023-01-07:干蒸</h2>
<p>这个买来试试……如果好吃的话,可以早上自己蒸两个来吃</p>
<p>不错,够咸……早上拿来配饭也OK,就是个头有点小,一口闷</p>
<p><img src="https://9852.ru/images/2023/01/06/Screenshot_2023-01-06-17-44-39-940_com.taobao.taobao.jpg" alt="2023-01-07鸿津翡翠干蒸" /></p>
<h2>2023-01-06:鱼豆腐</h2>
<p>这个是之前吃关东煮觉得不错的,问了批发冻品那有没有关东煮啊,卖冻品的说那些人是买了一些回去自己组装起来的,散件有!</p>
<p>然后刚好有优惠,就买了个来试试</p>
<p>真滴不错!</p>
<p><img src="https://9852.ru/images/2023/01/06/Screenshot_2023-01-06-17-48-03-288_com.taobao.taobao.jpg" alt="2023-01-06鱼豆腐" /></p>
<h2>2022-11-17:奥利奥夹心饼干、好丽友巧克力派</h2>
<p>好吃!有优惠券就买了!</p>
<p><img src="https://9852.ru/images/2023/01/06/Screenshot_2023-01-06-17-47-11-378_com.taobao.taobao.jpg" alt="2022-11-17奥利奥夹心饼干、好丽友巧克力派" /></p>
]]></content><link href="https://github.com/noteMay/blog/issues/36" rel="alternate"/><category term="美食"/><category term="记录"/><published>2023-01-22T16:49:55+00:00</published></entry><entry><id>https://github.com/noteMay/blog/issues/35</id><title>一条很重要又容易被忽视的做饭技巧合集</title><updated>2023-03-04T04:09:18.344430+00:00</updated><content type="html"><![CDATA[<blockquote>
<p>Cr·知乎刘小鹿
<a href="https://user.qzone.qq.com/12395798/">https://user.qzone.qq.com/12395798/</a></p>
</blockquote>
<p>〔1〕肉类焯水要用冷水入锅,热水下锅外面的肉直接熟了,血水锁在里面出不来。
〔2〕煮鸡蛋要在水还没开的时候下锅,以免蛋白质受到水流冲击变散,包裹空气变成浮沫。
〔3〕煮挂面要在水里起小气泡的时候下锅,盖上锅盖,水开就往里面点凉水。水再次开的时候,面差不多就熟了。
〔4〕鲜的手擀面,要在水开的时候下锅,搅动的时候必须往一个方向,避免黏连。火开到最大,小火面条容易糊化。点两次凉水。
〔5〕煮面放醋,醋会让面条口感更好,煮出来更白,减少面的碱性。
〔6〕煮饺子,如果是速冻饺子要冷水下锅,借着水温慢慢化冻;刚包好的饺子要热水下锅。
〔7〕水开就点凉水,不能一直沸腾,不然皮熟透烂了,里面的肉还是没熟。差不多点三次凉水正好。
〔8〕钟水饺的灵魂在于咸味和甜味的融合,还有红油带来的辣味和视觉冲击。最简单的方法是酱油加糖加红油,最好是用葱姜蒜炼一次酱油,然后加冰糖,小火融化,让咸味和甜味更好的融合。
〔9〕阳春面的灵魂在于猪油的香味和鸡汤的鲜味。碗底生抽猪油小葱,生抽味道足够了,可以不加盐。没有鸡汤的时候,汤底可以加鸡精。面用细挂面最好。
〔10〕泡发腐竹最好用冷水,泡上两三个小时。热水快速泡发容易破,口感也没那么劲道。
〔11〕红油+凉拌汁+蒸鱼豉油+醋+糖,可以凉拌一切。特别适合腐竹、木耳、千张、豆腐丝、鸡丝、杏鲍菇、金针菇这些。(附:蒸鱼豉油是在生抽基础上处理了一下,味道更鲜,着色更弱。适合凉拌和蒸鱼。)
〔12〕麻辣鸡丝的鸡丝,冷水下锅后,煮开,然后小火继续煮个七八分钟,让鸡肉完全熟。(鸡胸肉比较干,脂肪少;鸡腿肉香一些,脂肪更多)
〔13〕焯水要去腥味,加料酒,姜片,葱白。
〔14〕凉拌鸡丝的时候可以加一点坚果进去,最常见的就是花生,拍成花生碎,炒香,加进去。
〔15〕自己做油泼辣子:辣椒碎,花椒,白芝麻,热油一浇即成。
〔16〕糖可以减少咸味和酸味,突出鲜味。
〔17〕红烧鱼要在油微热的时候加一点糖,油变成金黄色再把鱼放进去煎,这样鱼皮不容易破。
〔18〕肉下锅之前先用淀粉抓一遍,不然很容易老。肉比菜难入味,要提前用生抽腌制一下。起锅的时候加一点醋,能让肉变得更嫩更香。
〔19〕横切牛羊竖切猪,斜切鸡。
〔20〕蛋白质含量高的汤都可以加牛奶提鲜,比如鱼汤和鸡汤。煮泡面、韩式年糕火锅、麻辣烫都可以用牛奶来增鲜,也可以让汤底的口感更浓稠。
〔21〕料酒下锅可以沿着锅边淋入,高温能够快速蒸发料酒,炝锅。酱油要淋在菜上,高温容易让酱油糊了。
〔22〕炒粉丝要先把粉丝给焯水。焯水后要加醋浸泡5分钟,这样粉丝才不会太软而且黏连;炒粉丝不能点水,水会让粉丝的淀粉流出,锅太干了只能加油;用锅铲的反面推动菜,避免把粉丝炒碎,卖相太差。
〔23〕清蒸鲈鱼,猛火七八分钟,虚火(关火之后)焖3分钟,肉质细嫩。蒸鱼的时候要在水开之后在把鱼放进去,高温会让表面收缩,肉更紧实更鲜嫩,色泽也更好看。
〔24〕炒蔬菜的时候,加水要加热水,更脆嫩。加冷水会让菜变硬。炒肉的时候,肉遇热后又遇冷,里面难熟,不能加冷水。如果肉已经炒熟了,加冷水可以让肉的口感Q弹一点。
〔25〕蒸鸡蛋羹时用温开水搅,这样蒸出来的蛋羹比用冷水调的蛋羹更加鲜嫩。煎鸡蛋时,洒几滴热水在蛋周围和面上,可使蛋黄完整,表面更光滑。这样煎出来的鸡蛋表面凝固了,但是里面还是溏心的。
〔26〕炒鸡蛋时,一个蛋加一汤匙温水搅匀,就不会炒“老”,且炒出的蛋量多,松软可口。
〔27〕煮鸡蛋时,先将蛋放在冷水里浸湿,再放进热水里煮,蛋壳便不会破裂并且容易剥皮。
〔28〕煮饭用开水,可以缩短蒸煮时间,保护米中的维生素,减少营养损失。煮饭的时间越长,维生素B1损失的越快。
〔29〕炒方便面的面只能8分熟,不要全熟。水开之后下面,到面饼能打散,立刻捞出来,过凉水。炒方便面的调料加一点豆瓣酱更好吃,也可以用辣椒酱。加生抽老抽蚝油和糖。
〔30〕汤里面打蛋花,要在锅开了之后,关火打入蛋花。
〔31〕起锅的时候再加盐和醋,过早加盐,蔬菜里的水分析出来,口感黏软;醋易挥发,先加的话会破坏色泽和口感。</p>
]]></content><link href="https://github.com/noteMay/blog/issues/35" rel="alternate"/><category term="美食"/><category term="记录"/><published>2023-01-21T17:26:24+00:00</published></entry><entry><id>https://github.com/noteMay/blog/issues/34</id><title>乒乓球拍与胶皮</title><updated>2023-03-04T04:09:18.499760+00:00</updated><content type="html"><![CDATA[<h1>2020至2022年用的胶皮</h1>
<blockquote>
<p>红双喜R6002<code>狂飙3+天弓</code>
之前换球拍随便买的,用着还行吧
后来换了胶皮,但最近打着有点不得劲</p>
</blockquote>
<blockquote>
<p>威蝶尔WCE-018<code>红色39度</code>
买来做反手的,反手拉球还不错</p>
</blockquote>
<blockquote>
<p>KOKUTAKU樱花868<code>黑色</code>
正手拉球还行</p>
</blockquote>
<h1>2023-01 DIY一套</h1>
<blockquote>
<p>底板:<del>雷蛇L9</del>劲极7
黑色胶皮:友谊729反胶普及套<code>42度</code>
红色胶皮:563生胶<code>38度</code></p>
</blockquote>
<p>今年有打工赚钱,就给自己买点新年礼物!希望这个拍子适合我</p>
<p><del>原以为买了一套729普及套,收到才发现只有一面……反手就去买个生胶来玩</del></p>
<p><del>因为发货太慢</del>把雷蛇L9的都退了,买了劲极7,以后要升级还能升!</p>
<p>手感还不错,生胶还需要一定时间适应!普及套蛮不错的嘛,拉球嘎嘎的!——2023-01-28记</p>
<table>
<thead>
<tr>
<th align="center">总价</th>
<th align="center">¥190.08</th>
</tr>
</thead>
<tbody>
<tr>
<td align="center">劲极7</td>
<td align="center">¥116.09</td>
</tr>
<tr>
<td align="center">563生胶 红色38度</td>
<td align="center">¥44.99</td>
</tr>
<tr>
<td align="center">729普及套 黑色42度</td>
<td align="center">¥29.00</td>
</tr>
</tbody></table><table>
<thead>
<tr>
<th align="center">订单</th>
<th align="center">729普及套 黑色42度</th>
<th align="center">563生胶 红色38度</th>
<th align="center">劲极7底板</th>
<th align="center"></th>
</tr>
</thead>
<tbody>
<tr>
<td align="center"><img src="https://9852.ru/images/2023/01/24/20230124214636.png" alt="订单" /></td>
<td align="center"><img src="https://9852.ru/images/2023/01/25/2023_01_25_18_14_IMG_1493.jpg" alt="729普及套" /></td>
<td align="center"><img src="https://9852.ru/images/2023/01/25/2023_01_25_18_14_IMG_1494.jpg" alt="563生胶" /></td>
<td align="center"><img src="https://9852.ru/images/2023/01/28/20230128145550.jpg" alt="劲极7" /></td>
<td align="center"><img src="https://9852.ru/images/2023/01/28/20230128145544.jpg" alt="劲极7拆" /></td>
</tr>
</tbody></table>]]></content><link href="https://github.com/noteMay/blog/issues/34" rel="alternate"/><category term="兴趣"/><category term="记录"/><published>2023-01-21T12:55:47+00:00</published></entry><entry><id>https://github.com/noteMay/blog/issues/33</id><title>乒乓球相关教程</title><updated>2023-03-04T04:09:18.658211+00:00</updated><content type="html"><![CDATA[<blockquote>
<p>中国乒乓球协会<a href="https://www.ctta.cn/">https://www.ctta.cn/</a>
开球网<a href="https://www.kaiqiu.cc/">https://www.kaiqiu.cc/</a>
乒乓网<a href="https://www.pingpangwang.com/">https://www.pingpangwang.com/</a>
<a href="https://tieba.baidu.com/f?kw=%E4%B9%92%E4%B9%93%E7%90%83&ie=utf-8">乒乓球百度贴吧</a></p>
</blockquote>
<blockquote>
<p><a href="https://www.bilibili.com/video/BV1VS4y167XV">优质乒乓球器材up推荐</a>
【乒乓就是F的个人空间-哔哩哔哩】<a href="https://b23.tv/bGxhbcd">https://b23.tv/bGxhbcd</a>
【淘宝小甘哥乒乓器材店的个人空间-哔哩哔哩】<a href="https://b23.tv/OtEcYPT">https://b23.tv/OtEcYPT</a>
【1857乒乓器材君的个人空间-哔哩哔哩】<a href="https://b23.tv/iLGotYx">https://b23.tv/iLGotYx</a>
【半山老钟的个人空间-哔哩哔哩】<a href="https://b23.tv/2SVBxIs">https://b23.tv/2SVBxIs</a>
【少数派的报告的个人空间-哔哩哔哩】<a href="https://b23.tv/yQRO231">https://b23.tv/yQRO231</a>
【砖家乒乓器材评测的个人空间-哔哩哔哩】<a href="https://b23.tv/YYMRM38">https://b23.tv/YYMRM38</a>
【破晓d97的个人空间-哔哩哔哩】<a href="https://b23.tv/SpJMECi">https://b23.tv/SpJMECi</a></p>
</blockquote>
<h1>保养胶皮</h1>
<blockquote>
<p><a href="https://www.bilibili.com/video/BV1Cu411o7Lb">【球友必备】乒乓球拍胶皮保养攻略,确定不来看看?</a>
是用泡沫型清洁剂+洗球拍擦擦干</p>
</blockquote>
<blockquote>
<p><a href="https://www.bilibili.com/video/BV14Z4y197Xa">正确的保养乒乓球拍,对你一定有帮助!</a></p>
</blockquote>
<blockquote>
<p><a href="https://www.bilibili.com/video/BV1Qy4y1i7Sm">《全民学乒乓器材篇》乒乓球胶皮底板清洁养护方法及清洁剂测评</a></p>
</blockquote>
<h1>球拍配置</h1>
<blockquote>
<p><a href="https://www.bilibili.com/video/BV1LE411n7rs">《老钟说拍(第七十四期)》银河u2,新手可以闭着眼睛买的球拍之一。</a>
这个应该是适合刚入门的,可以玩很久</p>
</blockquote>
<h1>科普</h1>
<p>生胶克长胶</p>
<blockquote>
<p>【姚彦】教你选胶皮,你知道“生胶,正胶,反胶,长胶有什么区别吗”<a href="https://www.bilibili.com/video/BV1iE411C7Ak">https://www.bilibili.com/video/BV1iE411C7Ak</a></p>
</blockquote>
<p>胶皮越硬,防守难度越大</p>
<blockquote>
<p>国产反胶:胶皮粘,旋转性强
国外选手选择的反胶:胶皮涩,海绵软,适合防守
长胶:胶粒长,海绵薄,性能怪
生胶:颗粒稍短,海绵厚
正胶:直板选手常用,速度快,海绵厚</p>
</blockquote>
<blockquote>
<p>女孩选择胶皮:厚度2.2,硬度38-39
男孩选择胶皮:硬度40-41,厚度2.2</p>
</blockquote>
<h1>教程</h1>
<blockquote>
<p>关于乒乓球技术中用反手把球吃透的问题?<a href="https://www.pingpangwang.com/forum.php?mod=viewthread&tid=197382">https://www.pingpangwang.com/forum.php?mod=viewthread&tid=197382</a>
这个是讲反手弧圈球,角度确实与一般的反手击球不太一样</p>
</blockquote>
<blockquote>
<p>打球肘关节不能往里撇,前臂有这样一个小动作,正手攻球就标准了 乒乓球图文教学<a href="https://www.pingpangwang.com/forum.php?mod=viewthread&tid=279685">https://www.pingpangwang.com/forum.php?mod=viewthread&tid=279685</a>
正手攻球一些容易出错的地方</p>
</blockquote>
<blockquote>
<p>想试试生胶?乒乓球颗粒胶什么特点?详解生胶学习过程<a href="https://www.bilibili.com/video/BV1i44y1e7Lv">https://www.bilibili.com/video/BV1i44y1e7Lv</a>
买个563来试试……</p>
</blockquote>
<blockquote>
<p>乒乓球横拍的几种常规技术<a href="https://www.pingpangwang.com/forum.php?mod=viewthread&tid=55296">https://www.pingpangwang.com/forum.php?mod=viewthread&tid=55296</a>
争取吃下这个知识!</p>
</blockquote>
<blockquote>
<p>【弧圈球发力的物理原理】【乒乓网】<a href="https://www.pingpangwang.com/forum.php?mod=viewthread&tid=662">https://www.pingpangwang.com/forum.php?mod=viewthread&tid=662</a>
弧圈球的知识点!</p>
</blockquote>
<blockquote>
<p>【乒乓球拉球的十点要领】【乒乓网】<a href="https://www.pingpangwang.com/forum.php?mod=viewthread&tid=664">https://www.pingpangwang.com/forum.php?mod=viewthread&tid=664</a>
确实是十点要领,能吃透的话,就能打出更好的拉球</p>
</blockquote>
<blockquote>
<p>业余选手没有了这些“通病”能力会蒸蒸日上<a href="https://www.pingpangwang.com/forum.php?mod=viewthread&tid=198172">https://www.pingpangwang.com/forum.php?mod=viewthread&tid=198172</a>
确实是很常见的通病</p>
</blockquote>
<blockquote>
<p>(原创)学打长胶与生胶<a href="https://www.pingpangwang.com/forum.php?mod=viewthread&tid=5944">https://www.pingpangwang.com/forum.php?mod=viewthread&tid=5944</a>
记录,需要的时候可以掏出来看看</p>
</blockquote>
<blockquote>
<p>【原创】让你的反手“爆”起来<a href="https://www.pingpangwang.com/forum.php?mod=viewthread&tid=38592">https://www.pingpangwang.com/forum.php?mod=viewthread&tid=38592</a>
反手确实有点难,目前还在努力学习中</p>
</blockquote>
<blockquote>
<p>乒乓球运动的基本功对初学者的重要性<a href="https://www.pingpangwang.com/forum.php?mod=viewthread&tid=9400">https://www.pingpangwang.com/forum.php?mod=viewthread&tid=9400</a>
基本功真的好重要……今年要争取锻炼一下基本功了</p>
</blockquote>
<blockquote>
<p>业余爱好者如何练好发球技术<a href="https://www.bilibili.com/video/BV1jm4y197YZ">https://www.bilibili.com/video/BV1jm4y197YZ</a>
直拍的</p>
</blockquote>
<blockquote>
<p>把乒乓球发转的四个小窍门,照着练肯定错不了!<a href="https://www.bilibili.com/video/BV1MP411E7Pz">https://www.bilibili.com/video/BV1MP411E7Pz</a>
嗷嗷嗷,这就照着练!</p>
</blockquote>
<blockquote>
<p>《乒乓3000问》横拍正反手转换调节方法,深握与浅握握拍技巧<a href="https://www.bilibili.com/video/BV1U84y1V7bB">https://www.bilibili.com/video/BV1U84y1V7bB</a>
这个在观摩运动员握拍和自己练习的过程中Get到了!</p>
</blockquote>
]]></content><link href="https://github.com/noteMay/blog/issues/33" rel="alternate"/><category term="兴趣"/><category term="记录"/><published>2023-01-20T16:41:11+00:00</published></entry><entry><id>https://github.com/noteMay/blog/issues/32</id><title>锻炼</title><updated>2023-03-04T04:09:18.865328+00:00</updated><content type="html"><![CDATA[<h1>拉伸手腕</h1>
<p><a href="https://weibo.com/1720962692/Mp4OKF1yS">https://weibo.com/1720962692/Mp4OKF1yS</a></p>
<p>注意力度,可以拉伸</p>
<h1>活动胸椎</h1>
<p><a href="https://weibo.com/5495346798/MrriFCAng">https://weibo.com/5495346798/MrriFCAng</a></p>
<h1>跑步伤膝盖?这个锅我们不背!</h1>
<p><a href="https://weibo.com/7715326836/LbdfptIbh">https://weibo.com/7715326836/LbdfptIbh</a></p>
<h1>认识腿部肌肉</h1>
<p><a href="https://weibo.com/7715326836/LbOfD4KMs">https://weibo.com/7715326836/LbOfD4KMs</a></p>
<h1>小腿抽筋</h1>
<p><a href="https://weibo.com/7715326836/LfViFdmIU">https://weibo.com/7715326836/LfViFdmIU</a></p>
<h1>正确的跑姿</h1>
<p><a href="https://weibo.com/7715326836/M6O9Pw56X">https://weibo.com/7715326836/M6O9Pw56X</a></p>
<h1>久站后小腿有紧绷感、酸痛感如何缓解?</h1>
<p><a href="https://weibo.com/7715326836/LwCeQAJTU">https://weibo.com/7715326836/LwCeQAJTU</a></p>
<h1>颈椎</h1>
<p><a href="https://youtu.be/lZasyZQgAUg">https://youtu.be/lZasyZQgAUg</a></p>
<p><a href="https://www.youtube.com/watch?v=CHoGRbNdalg">https://www.youtube.com/watch?v=CHoGRbNdalg</a>
12:44分起</p>
]]></content><link href="https://github.com/noteMay/blog/issues/32" rel="alternate"/><category term="兴趣"/><category term="生活"/><category term="学习"/><category term="记录"/><published>2023-01-19T15:57:47+00:00</published></entry><entry><id>https://github.com/noteMay/blog/issues/31</id><title>海瓜子</title><updated>2023-03-04T04:09:19.053228+00:00</updated><content type="html"><![CDATA[<h1>海瓜子</h1>
<p><a href="https://www.sohu.com/a/340695960_799260">这三种小海鲜,都叫“海瓜子” </a></p>
<p>不看不知道……原来大家都是海瓜子……</p>
<p>以前只知道薄壳<code>👈潮汕话</code>叫海瓜子,现在知道学名叫寻氏肌蛤,又顺便知道了其他的海瓜子</p>
]]></content><link href="https://github.com/noteMay/blog/issues/31" rel="alternate"/><category term="美食"/><category term="记录"/><published>2023-01-18T16:24:57+00:00</published></entry><entry><id>https://github.com/noteMay/blog/issues/30</id><title>WTT Contender Doha 2023</title><updated>2023-03-04T04:09:19.205533+00:00</updated><content type="html"><![CDATA[<p>看一些乒乓球比赛,学技术</p>
<blockquote>
<p>直播链接:<a href="https://www.youtube.com/@WTTGlobal/streams">https://www.youtube.com/@WTTGlobal/streams</a></p>
</blockquote>
<blockquote>
<p>Zhou Kai vs Cristian Pletea<a href="https://youtu.be/yy1LSxoKy3k">https://youtu.be/yy1LSxoKy3k</a>
很势均力敌,第一局太精彩了,后面估计找到对方的弱点,对方也有点慌</p>
</blockquote>
<blockquote>
<p>Adrien Rassenfosse vs Lubomir Jancarik<a href="https://youtu.be/NDfFILKuZBM">https://youtu.be/NDfFILKuZBM</a>
这俩看起来势均力敌</p>
</blockquote>
<blockquote>
<p>Zhang Rui/Kuai Man vs Qian Tianyi/Shi Xunyao<a href="https://youtu.be/g9dqMLoj3jY">https://youtu.be/g9dqMLoj3jY</a></p>
</blockquote>
<blockquote>
<p>Xue Fei/Qian Tianyi vs Lin Shidong/Kuai Man<a href="https://youtu.be/OpBVq6G8kA8">https://youtu.be/OpBVq6G8kA8</a>
失误率也有点……诶?</p>
</blockquote>
<blockquote>
<p>Xu Yingbin/Xu Haidong vs Chen Yuanyu/Lin Shidong<a href="https://youtu.be/xQmhgtztAo8">https://youtu.be/xQmhgtztAo8</a>
草……两边都失误率好高,只不过双XU失误率更高!</p>
</blockquote>
<blockquote>
<p>Fan Siqi vs Qian Tianyi<a href="https://youtu.be/QaS1DeClKks">https://youtu.be/QaS1DeClKks</a>
这两位的技术感觉应该是没有那么稳定的,能看出来失误率有点高</p>
</blockquote>
]]></content><link href="https://github.com/noteMay/blog/issues/30" rel="alternate"/><category term="兴趣"/><category term="记录"/><published>2023-01-16T03:25:05+00:00</published></entry><entry><id>https://github.com/noteMay/blog/issues/29</id><title>唠嗑</title><updated>2023-03-04T04:09:19.361199+00:00</updated><content type="html"><![CDATA[<h1>2023-03-03</h1>
<p>双标是人的本性……可以理解JPG</p>
<p>买了个三合一数据线,结果今天就到了……我好像是昨天买的吧?!省内就是神速!</p>
<h1>2023-03-02</h1>
<p>不要管寄件,不要管寄件,不要管寄件</p>
]]></content><link href="https://github.com/noteMay/blog/issues/29" rel="alternate"/><category term="2023"/><category term="记录"/><published>2023-01-15T17:38:16+00:00</published></entry><entry><id>https://github.com/noteMay/blog/issues/28</id><title>随便拍拍</title><updated>2023-03-04T04:09:19.557295+00:00</updated><content type="html"><![CDATA[<h1>2021</h1>
<blockquote>
<p>拍摄设备:红米Note 9 4G</p>
</blockquote>
<h2>2021-06-14</h2>
<p><img src="https://9852.ru/images/2022/12/25/20210614.jpg" alt="2021-06-14" /></p>
<h2>2021-07-04</h2>
<p><img src="https://9852.ru/images/2022/12/25/20210704.jpg" alt="2021-07-04" /></p>
]]></content><link href="https://github.com/noteMay/blog/issues/28" rel="alternate"/><category term="记录"/><published>2023-01-14T18:25:17+00:00</published></entry><entry><id>https://github.com/noteMay/blog/issues/27</id><title>实用网址</title><updated>2023-03-04T04:09:19.720328+00:00</updated><content type="html"><![CDATA[<h1>“捡垃圾”</h1>
<blockquote>
<p><a href="https://mp.weixin.qq.com/s/G1ZsdZVoYQzLanbXP40kbw">捡垃圾2023年2月(上)</a></p>
</blockquote>
<blockquote>
<p><a href="https://mp.weixin.qq.com/s/yyDCILA60m7dGU6o4TUVBg">【open car】1T固态终来到249元</a></p>
</blockquote>
<blockquote>
<p><a href="https://mp.weixin.qq.com/s/XJw6ugHlFRhPxqn-pl68CA">2022年12月份下</a>
NAS和各种SSD盘</p>
</blockquote>
<blockquote>
<p><a href="https://mp.weixin.qq.com/s/W-RnnF9k74ik84mKANVAUA">2022年末值得购买的显示器推荐</a></p>
</blockquote>
<blockquote>
<p><a href="https://mp.weixin.qq.com/s/K1kTwEj4rp5ph9DWm3y0yg">捡垃圾2023年1月(下)</a>
大机械盘</p>
</blockquote>
<blockquote>
<p><a href="https://mp.weixin.qq.com/s/_Kbfz39yMJA4ymX9BCELyg">2022年度硬件盘点①</a></p>
</blockquote>
<blockquote>
<p><a href="https://mp.weixin.qq.com/s/iHpAsPdqhbK9T_srF_ESIA">【移动设备进阶】常见的硬盘盒芯片盘点</a></p>
</blockquote>
<h1>科普</h1>
<blockquote>
<p><a href="https://neal.fun/deep-sea/">深海科普</a>
使用PC端观看效果好点,深海恐惧者勿入!</p>
</blockquote>
<h1>实用</h1>
<ul>
<li><a href="https://mp.weixin.qq.com/s/nhSpEC0BCVeVC_o6f8OZ9Q">把Windows给印度人做,微软大佬都去搞小工具了</a></li>
<li><a href="https://catchv.fooish.com/">CatchV : 网页视频下载器 支持6000+网站</a></li>
<li><a href="https://www.soushu.vip/">搜书网-电子书搜索引擎 ,收录10万余种随书光盘</a></li>
<li><a href="https://www.trxs.cc/">免费同人小说在线阅读网站-同人小说网</a></li>
<li><a href="https://wuyagege.substack.com/p/c51">一份外语学习简明指南</a></li>
<li><a href="https://p7.btapp.cc/">磁力片:一个高效的磁力搜索引擎网站</a></li>
<li><a href="https://www.ahhhhfs.com/35964/">喵汪任务助手v1.0.0</a></li>
<li><a href="https://www.ahhhhfs.com/35901/">解析机器人,支持多种解析协议</a><a href="https://bgg.lanzout.com/b02dpt5oj">https://bgg.lanzout.com/b02dpt5oj</a></li>
<li><a href="https://apps.apple.com/cn/app/am3u-pro/id6443737201">AM3U Pro-M3U8 IPTV 电视直播播放器 iOS限免</a></li>
<li><a href="https://picwish.cn/image-enlarger">在线免费AI图片无损放大-佐糖</a></li>
<li><a href="https://zhuanlan.zhihu.com/p/585666622">从 0 开始学外语:Refold 路线图(简化版)</a></li>
<li><a href="https://www.bejson.com/ui/compress_img/">在线压缩图片,在线无损压缩图片</a></li>
<li><a href="https://github.com/xuncv/WechatVideoSniffer">微信视频号视频下载工具- WechatVideoSniffer</a><a href="https://abskoop.lanzoue.com/izege0kw4nlg">https://abskoop.lanzoue.com/izege0kw4nlg</a></li>
<li><a href="https://zebra.9farm.com/">Zebra 书籍搜索</a></li>
<li><a href="https://ja.annas-archive.org/">アンナのアーカイブ</a></li>
<li><a href="https://www.jbsou.cn/">煎饼搜</a></li>
</ul>
<h1>GitHub</h1>
<blockquote>
<p><a href="https://github.com/zas023/JdBuyer">京东抢购</a>
支持Windows和MacOS
教程:<a href="https://www.bilibili.com/video/BV1pe4y1e7ty/">https://www.bilibili.com/video/BV1pe4y1e7ty/</a></p>
</blockquote>
<blockquote>
<p><a href="https://github.com/louisfb01/best_AI_papers_2022">2022 年人工智能领域最新突破的重磅论文</a></p>
</blockquote>
<blockquote>
<p><a href="https://github.com/hzlzh/Best-App">Best App-收集和推荐优秀的 Apps</a></p>
</blockquote>
<h1>料理</h1>
<blockquote>
<p>切菜手法
<a href="https://weibo.com/1273553751/MmqLEcBke">https://weibo.com/1273553751/MmqLEcBke</a></p>
</blockquote>
<blockquote>
<p>海鲜解冻
<a href="https://weibo.com/2522334710/Lc4cN0RHL">https://weibo.com/2522334710/Lc4cN0RHL</a></p>
</blockquote>
]]></content><link href="https://github.com/noteMay/blog/issues/27" rel="alternate"/><category term="兴趣"/><category term="生活"/><category term="记录"/><published>2023-01-14T17:34:21+00:00</published></entry><entry><id>https://github.com/noteMay/blog/issues/26</id><title>鼠标指针</title><updated>2023-03-04T04:09:19.900861+00:00</updated><content type="html"><![CDATA[<h1>鼠标指针</h1>
<table>
<thead>
<tr>
<th align="center">链接</th>
<th align="center">备注</th>
</tr>
</thead>
<tbody>
<tr>
<td align="center"><a href="https://zhutix.com/ico/comix-cursors-white/">白色版 Comix 光标</a></td>
<td align="center">还不错,半透明的</td>
</tr>
<tr>
<td align="center"><a href="https://zhutix.com/ico/comix-cursors/">Comix Cursors</a></td>
<td align="center">跟上面的差不多,就是有其他颜色的</td>
</tr>
<tr>
<td align="center"><del><a href="https://zhutix.com/ico/black-dragon-blue/">黑暗龙光标</a></del></td>
<td align="center"><del>勉强算可以看吧,实际使用一般</del>不好用!</td>
</tr>
<tr>
<td align="center"><a href="https://zhutix.com/ico/blue-gsb/">蓝色荧光鼠标指针</a></td>
<td align="center">以前还挺喜欢用的,现在一般般吧</td>
</tr>
<tr>
<td align="center"><a href="https://zhutix.com/ico/bibata-modern-cursor/">Bibata Modern Cursor</a></td>
<td align="center">看起来还不错,不错不错,有大有小可以自己选择</td>
</tr>
<tr>
<td align="center"><a href="https://zhutix.com/ico/squid-cursors/">鱿鱼光标</a></td>
<td align="center">还行</td>
</tr>
<tr>
<td align="center"><a href="https://zhutix.com/ico/shijian-hei-guang/">时间线黑色动态光标</a></td>
<td align="center">还算不错</td>
</tr>
<tr>
<td align="center"><a href="https://zhutix.com/ico/arcstarry-cursors/">ArcStarry 弧形多彩光标</a></td>
<td align="center">还可以,用用看</td>
</tr>
<tr>
<td align="center"><a href="https://zhutix.com/ico/vectorgloss-blue-cursors/">蓝色矢量光泽光标</a></td>
<td align="center">这个也不错,够大够亮!</td>
</tr>
<tr>
<td align="center"><a href="https://zhutix.com/ico/cyan-ring-sk/">青色光环</a></td>
<td align="center">透明度比较高……有点小,不过还挺好看的</td>
</tr>
<tr>
<td align="center"><a href="https://zhutix.com/ico/super-smash-bros-ultimate-cursor/">任天堂明星大乱斗终极光标</a></td>
<td align="center">还不错,可惜没有大号一点的</td>
</tr>
<tr>
<td align="center"><del><a href="https://zhutix.com/ico/rainbow-unicorn/">像素宝石光标</a></del></td>
<td align="center">不咋滴,颜色不好</td>
</tr>
</tbody></table>]]></content><link href="https://github.com/noteMay/blog/issues/26" rel="alternate"/><category term="记录"/><published>2023-01-14T17:32:57+00:00</published></entry><entry><id>https://github.com/noteMay/blog/issues/25</id><title>看新闻</title><updated>2023-03-04T04:09:20.052103+00:00</updated><content type="html"><![CDATA[<p>没事看点新闻,增加血压</p>
<blockquote>
<p>#警方通报一男子持刀行凶致6人死亡案件#<a href="https://weibo.com/1686546714/Mp41Vmddq">https://weibo.com/1686546714/Mp41Vmddq</a>
靠啊,年关将近,什么狗东西,关久点</p>
</blockquote>
<blockquote>
<p>别车后续<a href="https://weibo.com/1750270991/MoUZAmbyS">https://weibo.com/1750270991/MoUZAmbyS</a>前提<a href="https://weibo.com/1720962692/MoZnygoPv">https://weibo.com/1720962692/MoZnygoPv</a>
我记得前情摘要是在高速路上走应急道别车?反正喜提年夜饭,这种危害交通安全的,一个都不能放过</p>
</blockquote>
<blockquote>
<p>网传胡宾果在泰国“百人斩”快200人了<a href="https://weibo.com/7682011967/MoKCDiCkG">https://weibo.com/7682011967/MoKCDiCkG</a>
欲望No.1可真可怕</p>
</blockquote>
<blockquote>
<p>持刀强奸未成年的强奸犯,出狱后当网红卖高价卫生巾给女粉丝<a href="https://weibo.com/6481510219/MoRe0dTF2">https://weibo.com/6481510219/MoRe0dTF2</a>
真牛……!</p>
</blockquote>
<blockquote>
<p><a href="https://weibo.com/2382356540/MoTzwdTck">https://weibo.com/2382356540/MoTzwdTck</a>
等结果吧……真服了</p>
</blockquote>
<blockquote>
<p><a href="https://weibo.com/7573207486/MoLw0eJ1r">https://weibo.com/7573207486/MoLw0eJ1r</a>
什么东西???呵呵呵呵,真自信啊,婉拒了还不放弃,真当自己是个宝啊,这不是妥妥的性骚扰吗</p>
</blockquote>
<blockquote>
<p><a href="https://weibo.com/6064752668/MoGBuDPD3">https://weibo.com/6064752668/MoGBuDPD3</a>
挣的就是这种钱嘛,要整顿的话早就没有这些乌烟瘴气咯,还是流量重要啊</p>
</blockquote>
<blockquote>
<p>#罕见病药品价格是如何从63800砍到3780的#<a href="https://weibo.com/1686546714/MoTaHiwtP">https://weibo.com/1686546714/MoTaHiwtP</a>
不容易啊这个谈判,又能拯救了一些患者</p>
</blockquote>
<blockquote>
<p>#家长做完美容竟将婴儿忘在了店里# 当事人:以为丈夫先将孩子带走了<a href="https://weibo.com/1720962692/MoV5AlsAl">https://weibo.com/1720962692/MoV5AlsAl</a>
绝配,锁死谢谢,一个不看一下身边,一个离开了不交代,非常绝配</p>
</blockquote>
<blockquote>
<p>#投诉车辆问题接到单位领导电话# 个人信息“泄露”了?<a href="https://weibo.com/2334162530/MoQMK00xz">https://weibo.com/2334162530/MoQMK00xz</a>
这么牛啊,居然打投诉人领导,让领导施压可还行!</p>
</blockquote>
<blockquote>
<p>冈田和睦、育儿业初参战<a href="https://weibo.com/2611685441/MosCPh3EM">https://weibo.com/2611685441/MosCPh3EM</a></p>
</blockquote>
<blockquote>
<p>达沃斯年会<a href="https://weibo.com/1747817202/MoMvv14yo">https://weibo.com/1747817202/MoMvv14yo</a></p>
</blockquote>
<blockquote>
<p>黑悟空的事情<a href="https://weibo.com/5460748371/MoCBCpcJ6">https://weibo.com/5460748371/MoCBCpcJ6</a>
我就记得好像是有什么事情的,果然
男的在这方面就会有互联网失忆症</p>
</blockquote>
<blockquote>
<p>Nature重磅综述:如果不采取行动,长新冠或会造成终身残疾<a href="https://weibo.com/ttarticle/p/show?id=2309404859180539576369">https://weibo.com/ttarticle/p/show?id=2309404859180539576369</a>
新冠后遗症确实挺可怕的,所以一直在谨慎锻炼<a href="https://9852.ru/images/2022/12/25/20221224202027.jpg">新冠后遗症</a></p>
</blockquote>
<blockquote>
<p>她是大学生,会唱歌 跳舞 写歌 ,但是因为她一次大意 被GUAi卖了5次,也不知道家在哪里,以前的事情都忘记了 。不知道她妈妈现在找到她没有。<a href="https://weibo.com/6558604370/MoKSCldar">https://weibo.com/6558604370/MoKSCldar</a>
可悲……就这还要生育率,呵呵</p>
</blockquote>
<blockquote>
<p>买个西瓜抵消治疗腱鞘囊肿的就诊费<a href="https://weibo.com/2423757750/MoQ2j4yQ2">https://weibo.com/2423757750/MoQ2j4yQ2</a>
……什么憨批人,果然是白嫖至上吼</p>
</blockquote>
<p>想起来之前在看小说的时候无意中让一个读者确诊腱鞘炎,虽然害对方没法玩手机,毕竟憨批家长们只知道玩手机会腱鞘炎……哎,希望人能快乐</p>
<blockquote>
<p>蓝环章鱼<a href="https://weibo.com/7756494305/MoIHO6g1X">https://weibo.com/7756494305/MoIHO6g1X</a>
吓人!!!</p>
</blockquote>
<blockquote>
<p>#中科大提出生育力保存新方法#<a href="https://weibo.com/1231317854/Mopgtw01C">https://weibo.com/1231317854/Mopgtw01C</a>
生育原来只是女人的事情吗,男人一点屁事都没有是吧,笑死
顺便取卵和生育都是会对身体造成很大伤害的事情</p>
</blockquote>
<blockquote>
<p>#母亲称女儿拒绝追求被男孩泼汽油烧伤#<a href="https://weibo.com/5044281310/MoGm1tSoG">https://weibo.com/5044281310/MoGm1tSoG</a>
™的男人追求女子不成,泼汽油使女子烧伤不行吗???被被被,被个勾八</p>
</blockquote>
<blockquote>
<p>#6人宰杀烹食蜂猴获刑#<a href="https://weibo.com/2286908003/MnPCNkbrT">https://weibo.com/2286908003/MnPCNkbrT</a>
还炫耀?你偷偷吃就算了,炫耀就老老实实进去吧</p>
</blockquote>
<blockquote>
<p>#新娘结婚走红毯头顶被扣两盆麸子# 知情人:一些地方的习俗,一般不会生<a href="https://weibo.com/6168007956/MooFQ4fVG">https://weibo.com/6168007956/MooFQ4fVG</a>
要我说,习俗这种东西就该废除,有的习俗就是整人,等到把人整死了才知道出大错</p>
</blockquote>
<blockquote>
<p>#八成大学生想生两娃# ,‘丁克’群体占比仅4%<a href="https://weibo.com/1988645095/MooCNvvwL">https://weibo.com/1988645095/MooCNvvwL</a>
加油!</p>
</blockquote>
<blockquote>
<p>22岁女生熟睡时从宿舍上铺坠亡<a href="https://weibo.com/1720962692/Mo63AA5Vg">https://weibo.com/1720962692/Mo63AA5Vg</a>
15cm的护栏……大学?我中专的护栏都比你这高</p>
</blockquote>
]]></content><link href="https://github.com/noteMay/blog/issues/25" rel="alternate"/><category term="记录"/><published>2023-01-13T17:55:26+00:00</published></entry><entry><id>https://github.com/noteMay/blog/issues/24</id><title>作曲写歌创作入门第三课</title><updated>2023-03-04T04:09:20.256214+00:00</updated><content type="html"><![CDATA[<blockquote>
<p>课程:<a href="https://www.bilibili.com/video/BV1c4411t7ja">【伯克利音乐学院】作曲写歌创作入门 --中文51集</a></p>
</blockquote>
<p>于2022年学习,暂时搁置中</p>
<p><a href="https://www.bilibili.com/video/BV1c4411t7ja?p=14">https://www.bilibili.com/video/BV1c4411t7ja?p=14</a></p>
<p>easily number of lines和长短,互相配合并制造出效果</p>
<p>本身就不稳定并有向前推进的倾向,而且第三句为短句,使得整个结构更加的不稳定,这就创造出了一种非常强劲的推力</p>
<p>韵律的结构是指韵律可以加入到行数的长度中
to create even more activity to create even more,prosity,to create even more light and spotlighting.To create even more contrast between sections更加鲜明的对比</p>
<p>先从一个非常简单的韵律结构开始N行韵律
N行韵律就如其他韵律一样为你耳朵创造出一个路线图
歌曲不是用来看的,歌曲是用来听的
韵律也是你所看不到的东西,但是你听得到,所以韵律结构就是一个路线图,一个对未来发展的暗示,为你提供一种预期,当你一行一行去体会就能感受到</p>
<h2>韵律结构的指引</h2>
<h3>如何创造出稳定的结构</h3>
<p>最稳定的结构就是两行同样长短的句子,同时又押韵可以给歌曲更多稳定感和平衡感</p>
<h4>Cpuplet 对句</h4>
<p>一对对句,是两行押韵的句子
两行长短相同且押韵的句子
对句应该是最小的稳定结构单位</p>
<h5>Fragmentation 中部断裂</h5>
<p>四行结构,实际上是2+2的结构(两行稳定句+两行稳定句)</p>
<p>👆行数、句式长短、韵律结构三者之间的协作
在第四行结尾给了我们一个完全的停顿,实际上是在每两行的结尾都给了我们一个完全的停顿</p>
<p>完全用对句来写歌当然是一种可行的方法,但对句会要在每两句之后停顿一次,这也是正常的
但是一首歌里太多两句就停顿的地方
song is going to be in jeopardy of being a little too fractured.
In feeble perhaps a little bit too long</p>
<p>对句可以在合适的地方使用,但不要从头用到尾</p>
<h4>四行长短句</h4>
<p>四行结构,长短交替,长短的长度都一致,这就形成了一种结构
也可以长句押韵,短句押韵</p>
<h3>注释韵脚</h3>
<p>用英文表的顺序来称呼每一个新的押韵声调
用X来表示不押韵
AB也可以来表示句子的长短</p>
<p>2+2押韵👉AABB
长短交替👉XAXA</p>
<h3>不稳定结构</h3>
<p>1.长度比我们预期还要长
2.押第三句的韵</p>
<h4>Deceptive Cadence 伪终止式</h4>
<p>很不稳定,同时也强烈聚焦第四句,极大程度上吸引了我们的注意力</p>
<h2>不稳定韵律</h2>
<p><a href="https://www.bilibili.com/video/BV1c4411t7ja?p=15">https://www.bilibili.com/video/BV1c4411t7ja?p=15</a></p>
<table>
<thead>
<tr>
<th align="center">ABBA</th>
<th align="center">押韵</th>
</tr>
</thead>
<tbody>
<tr>
<td align="center">A</td>
<td align="center">thud</td>
</tr>
<tr>
<td align="center">B</td>
<td align="center">crash</td>
</tr>
<tr>
<td align="center">B</td>
<td align="center">bash</td>
</tr>
<tr>
<td align="center">A</td>
<td align="center">blood</td>
</tr>
</tbody></table><p>两组稳定,一组不稳定的韵律组合</p>
<p>ABBA相对来说有点不太稳定,想要多加点韵律
ABAB、AABB传达出稳定的信息,给人肯定的感觉</p>
<h3>In Memoriam Rhyme Scheme 纪念韵律组合</h3>
<p>来源于一首诗,ABBA给人感觉离开的感受
不会涉及太多的细小变化</p>
<p>ABAB强调四句中的最后一句,更强调最后一句
AABB强调每两句的最后一句,同等强调AA和BB</p>
<h4>AABB与ABAB韵律不同的地方</h4>
<p>ABAB韵律先创造大量的能量与动力,最后聚焦在第四行或最后一行让他更加光亮,让它成为最有力量的一句,而不是与第二行分散它的力量
ABAB在最后一句比AABB创造了更多的力量
ABBA这里的行数应该是偶数,等长度和不均匀的韵律,可创造一些回音、细小的差异</p>
<p>零散的AABB模式是相对于ABAB的协作顺序
一种是创造了更多的压力给最后一句
另一种则是在第二行和第四行上拥有相等压力</p>
<h2>Tonic Funciton(主调音)</h2>
<pre><code>I've landed
I'm home
I'm at rest
</code></pre>
<p>一个C大调和弦包含4个音</p>
<p>伴奏主旋律的和弦,会影响主旋律,带来不同的情感共鸣</p>
<p>押韵与和弦一样,会改变歌曲所表达的情感</p>
<h2>完全和谐押韵</h2>
<p>例子:blood/mud,mud/blood,trees/breeze</p>
<ol>
<li>Identical vowel sounds<code>一致的元音</code></li>
<li>Consonants sounds following the vowel(if any)are identical<code>如果元音后面有辅音,辅音必须一致</code></li>
<li>The rhyming syllables begin differently<code>为了在转韵的时候制造张力,押韵的音节必须以不同的音开始</code>
这就是完全韵的三个条件</li>
</ol>
<p>完全韵诗全转韵</p>
<h2>Identity(同一性)</h2>
<p>Repetition,not rhyme
同一性给你重复,而不是押韵的感觉,所以没有押韵的功能(不同声母、同样的韵母,为押韵)</p>
<h2>观看进度</h2>
<p><a href="https://www.bilibili.com/video/BV1c4411t7ja?p=17">https://www.bilibili.com/video/BV1c4411t7ja?p=17</a></p>
]]></content><link href="https://github.com/noteMay/blog/issues/24" rel="alternate"/><category term="学习"/><category term="记录"/><published>2023-01-13T16:32:11+00:00</published></entry><entry><id>https://github.com/noteMay/blog/issues/23</id><title>作曲写歌创作入门第二课</title><updated>2023-03-04T04:09:20.420509+00:00</updated><content type="html"><![CDATA[<blockquote>
<p>课程:<a href="https://www.bilibili.com/video/BV1c4411t7ja">【伯克利音乐学院】作曲写歌创作入门 --中文51集</a></p>
</blockquote>
<p>于2022年学习,暂时搁置中</p>
<h2>韵律</h2>
<p><a href="https://www.bilibili.com/video/BV1c4411t7ja?p=7">https://www.bilibili.com/video/BV1c4411t7ja?p=7</a></p>
<p>一切都和谐的组合在一起(Pros·o·dy:All elements work together to support the central message of the song."An appropriate relationship between elements")</p>
<p>歌曲的一切:表达中心情感、中心思想、中心目的
同一特征:一致性(所有事情契合在一起、作用在一起)Everything fits together.Everything works together.
强调、表达、交流,专注于一件作品的中心思想,所有要素度契合在一起,每个要素合力使一首歌充满冲击力</p>
<h2>Stable稳定(强大)、Unstable不稳定(虚弱)</h2>
<p><a href="https://www.bilibili.com/video/BV1c4411t7ja?p=8">https://www.bilibili.com/video/BV1c4411t7ja?p=8</a></p>
<p>创作稳定或者不稳定的感觉
写个就是选择的过程</p>
<h2>创造稳定与不稳定的五个工具</h2>
<p><a href="https://www.bilibili.com/video/BV1c4411t7ja?p=9">https://www.bilibili.com/video/BV1c4411t7ja?p=9</a></p>
<h3>Number of lines 行数</h3>
<p><a href="https://www.bilibili.com/video/BV1c4411t7ja?p=10">https://www.bilibili.com/video/BV1c4411t7ja?p=10</a></p>
<p>运用句子的数量,创造稳定与不稳定</p>
<h4>An even number of lines feels stable 偶数行会给人以稳定的感觉</h4>
<h4>An odd number of lines feels unstable 奇数行则会令人觉得不稳定</h4>
<p>惶恐,感觉不平衡,觉得事情仿佛还未解决
可以利用句数的奇偶性创造不同的情绪感受
单数句能使想表达的倾向更为突出,双数句能使它更为确切</p>
<h4>句数 Effects of Number of Lines</h4>
<p><a href="https://www.bilibili.com/video/BV1c4411t7ja?p=11">https://www.bilibili.com/video/BV1c4411t7ja?p=11</a></p>
<ol>
<li>Spotlighting important ideas 用句数去强调那些重要的想法</li>
</ol>
<p>双数句:第二句处于调整与均衡的位置,确实比第一句话表达的更为强烈,因此可以创造出更强的聚光效果或均衡态度</p>
<ol start="2">
<li>To stop motion or move one section into another 单数句或双数句能创造出乐曲停止或前进的意向</li>
</ol>
<p>双数句倾向于表达出一种音乐结束了的感觉,而单数句则表达出一种音乐还要继续的效果
可以用双数句去表达乐曲的结束,用单数句表示音乐还将继续
单数句通常用在那些需要表达前进意向的部分,表示将继续进入另一个部分<code>乐曲中高潮部分的前奏,连接主歌和副歌的部分</code></p>
<ol start="3">
<li>To create contrast between sections 乐曲的句数可以用来表示不同部分之间的对比</li>
</ol>
<p>对于在不同部分之间创造对比的效果来说用句数并不是最好的方式,但仍旧是有用的</p>
<p>怎么使用单数句,来表达不同的语调
双数句情绪表达很稳定,单数句情绪表达还未结束</p>
<h4>单句与双句歌词的效果与运用</h4>
<ol>
<li>Prosody:Supporting emotion
这种变化可以让内容和情感更加饱满
可以表达出一种新情感,而不是仅仅支撑这些情感</li>
</ol>
<p>单数句与双数句创造出来的感觉是不一样的</p>
<ol start="2">
<li>
<p>Spotlighting Ideas
可以强调某些内容
单数句与双数句都可以产生强调和亮点的效果
亮点的效果可以通过在双句(平衡结构)上加一句,也可以重新创作一句</p>
</li>
<li>
<p>Stopping motion or moving one section into another
每个部分都是由一系列稳定或不稳定的音决定结束还是继续</p>
</li>
<li>
<p>Creating contrast between sections
还能体现两个不同部分的对比</p>
</li>
</ol>
<h3>Matched of unmatched line lengths 匹配或不匹配的行长度</h3>
<h4>规整与不规整乐句</h4>
<p><a href="https://www.bilibili.com/video/BV1c4411t7ja?p=12">https://www.bilibili.com/video/BV1c4411t7ja?p=12</a></p>
<p>规整乐句暗示着停止
不规整乐句会让人继续,或者让人觉得缺少点什么</p>
<p>当两个乐句长度一致时,会令人感觉很平稳</p>
<ol>
<li>Matched line lengths feel stable
让人感觉到一种平衡、完整和结束感</li>
</ol>
<p>两个乐句长度不同时,则会让人觉得不平稳
2. Unmatched line lengths feel unstable
让人觉得失衡和不完整,影响歌曲的另一个因素</p>
<p>创作出句子,通过一种节奏,把它们联系起来<code>长短配合</code></p>
<p>第一句比第二局稍微长一点,第二句就会有想要继续往下的感觉
在长短句之间往来,能产生跳跃感</p>
<p>想写一段情感在不断变化、不断推进并一直持续到结尾的歌曲,长短句交错会更有效果</p>
<h4>第二句比第一句短与长的区别</h4>
<p>第二句比第一句长:情感UP到DOWN的感觉,最后持续平稳,创造了强调的感觉</p>
<p>添加额外的旋律会触发一些灵感,去掉一些你期望的,创造出你内在的东西</p>
<h3>Rhyme scheme 韵式(节奏形式)</h3>
<h3>Rhyme types 韵律(节奏)种类</h3>
<h3>Rhythm of lines 行的韵律(节奏)</h3>
<p><a href="https://www.bilibili.com/video/BV1c4411t7ja?p=13">https://www.bilibili.com/video/BV1c4411t7ja?p=13</a></p>
<p>规整的乐段,给人的感觉就是在陈述一个事实
把最后一句变短,给人一种未完成感,希望能够继续下去</p>
<p>韵律:用一种特定的方式表现出来的你的想法的色彩</p>
<p>Line lengths can create Prosody<code>Expectation</code>
乐句长短事实上也可以用乐句的数量来运用和表现
或者是给你陈述的事情、或者你的想法,加个批注
缩短最后一句,是很重要的→可以给出一种期待的效果</p>
<p>可以借用长句短句来着重强调你想要表达的想法
乐句长短可以用来产生稳定感与不稳定感👉用来产生韵律、产生额外的感觉</p>
<p>Spotlighting important ideas
在几行的乐句中,也用来突出主题
分解乐句带给我们自然的突出点
我们可以利用特别长的乐句来打破平衡感</p>
<p>利用乐句的长度,可以从一节过渡到另一节,也可以用来开始一个新的节</p>
<p>稍长句、短句、最长句之间的不平衡
如果我们追求稳定性,我们应该将现在不平衡的顺序联系起来
<code>👆玩转这些技巧</code></p>
<p>短句是非常短快的,长句听起来很舒缓</p>
<h4>Effects of Line Lengths 变换句子长度的四种影响</h4>
<p><a href="https://www.bilibili.com/video/BV1c4411t7ja?p=13">https://www.bilibili.com/video/BV1c4411t7ja?p=13</a></p>
<ol>
<li>
<p>Prosody 押韵
创造出稳定和不稳定的节奏,呈现思想,以及感性地丰富思想</p>
</li>
<li>
<p>To spotlight important ideas
强调重要的思想</p>
</li>
<li>
<p>To move one section into another section
从一个章节转移到另一个章节</p>
</li>
<li>
<p>To contrast sections
对比两个章节
行数没有较好的对比成分</p>
</li>
</ol>
<p>在每个章节结束之前,你不知道需要多少行,所以你不能根据行数立刻创造出章节的对比
但是如果根据每行的长度,你可以迅速听出不同
因为有不同长度的行
长短句不仅仅创造出了对比,同时也创造出了韵律</p>
<p>有点难消化,不懂的时候再看一次好了<a href="https://www.bilibili.com/video/BV1c4411t7ja?p=13">https://www.bilibili.com/video/BV1c4411t7ja?p=13</a></p>
<h2>个人总结</h2>
<p>等待填写</p>
]]></content><link href="https://github.com/noteMay/blog/issues/23" rel="alternate"/><category term="学习"/><category term="记录"/><published>2023-01-13T16:31:08+00:00</published></entry><entry><id>https://github.com/noteMay/blog/issues/22</id><title>2022百大</title><updated>2023-03-04T04:09:20.625355+00:00</updated><content type="html"><![CDATA[<p>看看有没有认识的</p>
<blockquote>
<p>年度原创作品:盗月社《超级外卖》
这个确实很好看!</p>
</blockquote>