-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
1119 lines (722 loc) · 47.5 KB
/
index.html
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
<!DOCTYPE html>
<html lang="zh-CN">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=2">
<meta name="theme-color" content="#222">
<meta name="generator" content="Hexo 6.0.0">
<link rel="apple-touch-icon" sizes="180x180" href="/images/apple-touch-icon-next.png">
<link rel="icon" type="image/png" sizes="32x32" href="/images/favicon-32x32-next.png">
<link rel="icon" type="image/png" sizes="16x16" href="/images/favicon-16x16-next.png">
<link rel="mask-icon" href="/images/logo.svg" color="#222">
<link rel="stylesheet" href="/css/main.css">
<link rel="stylesheet" href="/lib/font-awesome/css/all.min.css">
<script id="hexo-configurations">
var NexT = window.NexT || {};
var CONFIG = {"hostname":"example.com","root":"/","scheme":"Pisces","version":"7.8.0","exturl":false,"sidebar":{"position":"left","display":"post","padding":18,"offset":12,"onmobile":false},"copycode":{"enable":false,"show_result":false,"style":null},"back2top":{"enable":true,"sidebar":false,"scrollpercent":false},"bookmark":{"enable":false,"color":"#222","save":"auto"},"fancybox":false,"mediumzoom":false,"lazyload":false,"pangu":false,"comments":{"style":"tabs","active":null,"storage":true,"lazyload":false,"nav":null},"algolia":{"hits":{"per_page":10},"labels":{"input_placeholder":"Search for Posts","hits_empty":"We didn't find any results for the search: ${query}","hits_stats":"${hits} results found in ${time} ms"}},"localsearch":{"enable":false,"trigger":"auto","top_n_per_article":1,"unescape":false,"preload":false},"motion":{"enable":true,"async":false,"transition":{"post_block":"fadeIn","post_header":"slideDownIn","post_body":"slideDownIn","coll_header":"slideLeftIn","sidebar":"slideUpIn"}}};
</script>
<meta name="description" content="666">
<meta property="og:type" content="website">
<meta property="og:title" content="hahamengbier">
<meta property="og:url" content="http://example.com/index.html">
<meta property="og:site_name" content="hahamengbier">
<meta property="og:description" content="666">
<meta property="og:locale" content="zh_CN">
<meta property="article:author" content="yyy">
<meta name="twitter:card" content="summary">
<link rel="canonical" href="http://example.com/">
<script id="page-configurations">
// https://hexo.io/docs/variables.html
CONFIG.page = {
sidebar: "",
isHome : true,
isPost : false,
lang : 'zh-CN'
};
</script>
<title>hahamengbier</title>
<noscript>
<style>
.use-motion .brand,
.use-motion .menu-item,
.sidebar-inner,
.use-motion .post-block,
.use-motion .pagination,
.use-motion .comments,
.use-motion .post-header,
.use-motion .post-body,
.use-motion .collection-header { opacity: initial; }
.use-motion .site-title,
.use-motion .site-subtitle {
opacity: initial;
top: initial;
}
.use-motion .logo-line-before i { left: initial; }
.use-motion .logo-line-after i { right: initial; }
</style>
</noscript>
<!-- hexo injector head_end start -->
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/katex@0.12.0/dist/katex.min.css">
<!-- hexo injector head_end end --></head>
<body itemscope itemtype="http://schema.org/WebPage">
<div class="container use-motion">
<div class="headband"></div>
<header class="header" itemscope itemtype="http://schema.org/WPHeader">
<div class="header-inner"><div class="site-brand-container">
<div class="site-nav-toggle">
<div class="toggle" aria-label="切换导航栏">
<span class="toggle-line toggle-line-first"></span>
<span class="toggle-line toggle-line-middle"></span>
<span class="toggle-line toggle-line-last"></span>
</div>
</div>
<div class="site-meta">
<a href="/" class="brand" rel="start">
<span class="logo-line-before"><i></i></span>
<h1 class="site-title">hahamengbier</h1>
<span class="logo-line-after"><i></i></span>
</a>
<p class="site-subtitle" itemprop="description">HAHA!</p>
</div>
<div class="site-nav-right">
<div class="toggle popup-trigger">
</div>
</div>
</div>
<nav class="site-nav">
<ul id="menu" class="main-menu menu">
<li class="menu-item menu-item-home">
<a href="/" rel="section"><i class="fa fa-home fa-fw"></i>首页</a>
</li>
<li class="menu-item menu-item-about">
<a href="/about/" rel="section"><i class="fa fa-user fa-fw"></i>关于</a>
</li>
<li class="menu-item menu-item-tags">
<a href="/tags/" rel="section"><i class="fa fa-tags fa-fw"></i>标签</a>
</li>
<li class="menu-item menu-item-categories">
<a href="/categories/" rel="section"><i class="fa fa-th fa-fw"></i>分类</a>
</li>
<li class="menu-item menu-item-archives">
<a href="/archives/" rel="section"><i class="fa fa-archive fa-fw"></i>归档</a>
</li>
<li class="menu-item menu-item-schedule">
<a href="/schedule/" rel="section"><i class="fa fa-calendar fa-fw"></i>日程表</a>
</li>
<li class="menu-item menu-item-sitemap">
<a href="/sitemap.xml" rel="section"><i class="fa fa-sitemap fa-fw"></i>站点地图</a>
</li>
</ul>
</nav>
</div>
</header>
<div class="back-to-top">
<i class="fa fa-arrow-up"></i>
<span>0%</span>
</div>
<main class="main">
<div class="main-inner">
<div class="content-wrap">
<div class="content index posts-expand">
<article itemscope itemtype="http://schema.org/Article" class="post-block" lang="zh-CN">
<link itemprop="mainEntityOfPage" href="http://example.com/2022/04/10/YXY-s-Schedule/">
<span hidden itemprop="author" itemscope itemtype="http://schema.org/Person">
<meta itemprop="image" content="/images/qaq2.png">
<meta itemprop="name" content="yyy">
<meta itemprop="description" content="666">
</span>
<span hidden itemprop="publisher" itemscope itemtype="http://schema.org/Organization">
<meta itemprop="name" content="hahamengbier">
</span>
<header class="post-header">
<h2 class="post-title" itemprop="name headline">
<span class="post-sticky-flag" title="置顶">
<i class="fa fa-thumbtack"></i>
</span>
<a href="/2022/04/10/YXY-s-Schedule/" class="post-title-link" itemprop="url">YXY's Schedule</a>
</h2>
<div class="post-meta">
<span class="post-meta-item">
<span class="post-meta-item-icon">
<i class="far fa-calendar"></i>
</span>
<span class="post-meta-item-text">发表于</span>
<time title="创建时间:2022-04-10 00:55:39" itemprop="dateCreated datePublished" datetime="2022-04-10T00:55:39+08:00">2022-04-10</time>
</span>
<span class="post-meta-item">
<span class="post-meta-item-icon">
<i class="far fa-calendar-check"></i>
</span>
<span class="post-meta-item-text">更新于</span>
<time title="修改时间:2023-02-16 11:42:45" itemprop="dateModified" datetime="2023-02-16T11:42:45+08:00">2023-02-16</time>
</span>
</div>
</header>
<div class="post-body" itemprop="articleBody">
<h2 id="近期要点"><a href="#近期要点" class="headerlink" title="近期要点"></a>近期要点</h2><ul>
<li>好好睡觉:8个小时(0:00-8:00) + 小憩20-30分钟(有时间就90分钟)</li>
<li>好好吃饭:早起好好吃早饭,多吃水果坚果,少吃零食,关注营养需求</li>
<li>好好学习:要尽量认真地对待每一门课(课件、课本、作业),科研超算多投入</li>
<li>好好听课:能线上就线上,听课的时候不干别的事,要听课就专心听</li>
<li>多多运动:健身、足球、跑步?游泳?</li>
<li>少少摸鱼:以能休闲且有意义的方式代替,如:看书、看剧、看新闻评论、看公众号、听音乐、购物</li>
<li>劳逸结合:该学习/干活时专注,适当放松,关注列表里的任务(番茄工作法)</li>
<li>任务列表:根据状态和重要性,选择要做的任务</li>
<li>自我提升:看书,自己喜欢的公众号,写博客(各种分享),记录爱情</li>
<li>限制游戏:完成任务时再奖励性地玩,不能毫无限制,练习lol,steam全成就</li>
<li>少看B站:少看没意义的视频,只看正常的lol/科技/知识;</li>
<li>学习冥想:可以睡前养成习惯,放松的同时进入睡眠状态</li>
</ul>
<h2 id="作息"><a href="#作息" class="headerlink" title="作息"></a>作息</h2><ul>
<li>刚起床可以安排今天任务,中间夹杂着接水、喝水、上厕所等杂事</li>
<li>累的时候看情况,可以适当休息(躺15-20分钟)/吃点零食,要防止白天睡多了晚上睡不着;</li>
<li>中午可以订个下午的水果;</li>
<li>17点吃些加餐然后开始健身,目前执行的是一三五锻炼的计划?</li>
<li>晚上适当娱乐放松,脑力/体力活动之后会比较累,更容易睡觉;</li>
<li>23点之后准备睡觉,陪我滴xyh+写日记;</li>
<li>晚上实在睡不着就下来做些事情(超算、博客、看文章、看书(容易上瘾)、看剧(容易上瘾)),这时候其实挺安静挺舒服的;</li>
<li>时间表大概是:8:00-计划一天-早饭-9:50-上课/学习-午饭-休息-午觉-上课/学习-17:00-健身-18:30-晚饭-娱乐放松/学习-23:00-准备休息-23:59</li>
</ul>
<h2 id="吃饭"><a href="#吃饭" class="headerlink" title="吃饭"></a>吃饭</h2><ul>
<li>可以尽量吃点好吃的,心情会比较好;</li>
<li>如果看手机不舒服的话,就不要看了,会很影响吃饭体验;</li>
<li>不要沉迷看B站!!!尤其是吃完饭就不要再看了,会很浪费时间,还很没有意义;</li>
<li>下午可以吃点加餐,晚饭可以晚点吃,以避免睡觉前太饿;</li>
</ul>
<h2 id="高效工作,劳逸结合"><a href="#高效工作,劳逸结合" class="headerlink" title="高效工作,劳逸结合"></a>高效工作,劳逸结合</h2><h3 id="高效工作"><a href="#高效工作" class="headerlink" title="高效工作"></a>高效工作</h3><ul>
<li>戴耳机学习/干活好像效率更高,心情会更好,而且更容易专注(但戴🎧不太舒服)</li>
<li>番茄工作法,每25分钟休息一下,活动活动,做点别的(一定别犯懒)</li>
<li>工作环境一定要合适,写数学宿舍环境不太行的时候去负一,用电脑写代码/文章宿舍环境不太行的时候戴🎧</li>
</ul>
<h3 id="劳逸结合"><a href="#劳逸结合" class="headerlink" title="劳逸结合"></a>劳逸结合</h3>
<!--noindex-->
<div class="post-button">
<a class="btn" href="/2022/04/10/YXY-s-Schedule/#more" rel="contents">
阅读全文 »
</a>
</div>
<!--/noindex-->
</div>
<footer class="post-footer">
<div class="post-eof"></div>
</footer>
</article>
<article itemscope itemtype="http://schema.org/Article" class="post-block" lang="zh-CN">
<link itemprop="mainEntityOfPage" href="http://example.com/2023/01/02/YXY-s-Diary-2023/">
<span hidden itemprop="author" itemscope itemtype="http://schema.org/Person">
<meta itemprop="image" content="/images/qaq2.png">
<meta itemprop="name" content="yyy">
<meta itemprop="description" content="666">
</span>
<span hidden itemprop="publisher" itemscope itemtype="http://schema.org/Organization">
<meta itemprop="name" content="hahamengbier">
</span>
<header class="post-header">
<h2 class="post-title" itemprop="name headline">
<span class="post-sticky-flag" title="置顶">
<i class="fa fa-thumbtack"></i>
</span>
<a href="/2023/01/02/YXY-s-Diary-2023/" class="post-title-link" itemprop="url">YXY's Diary-2023</a>
</h2>
<div class="post-meta">
<span class="post-meta-item">
<span class="post-meta-item-icon">
<i class="far fa-calendar"></i>
</span>
<span class="post-meta-item-text">发表于</span>
<time title="创建时间:2023-01-02 23:28:01" itemprop="dateCreated datePublished" datetime="2023-01-02T23:28:01+08:00">2023-01-02</time>
</span>
<span class="post-meta-item">
<span class="post-meta-item-icon">
<i class="far fa-calendar-check"></i>
</span>
<span class="post-meta-item-text">更新于</span>
<time title="修改时间:2023-05-18 10:24:43" itemprop="dateModified" datetime="2023-05-18T10:24:43+08:00">2023-05-18</time>
</span>
</div>
</header>
<div class="post-body" itemprop="articleBody">
<h1 id="寒假"><a href="#寒假" class="headerlink" title="寒假"></a>寒假</h1><h2 id="1-1"><a href="#1-1" class="headerlink" title="1.1"></a>1.1</h2><p>1.由于缓考了网原,现在已经处于放假阶段了,要开始好好规划假期了;<br>2.lol玩的有点多,感觉有些无聊,看起来需要别的游戏进行调剂;<br>3.买了很多steam游戏,想当一个全成就党💪💪💪;<br>4.每天学习、游戏、锻炼身体的时间要合理安排,目前游戏时间太多;</p>
<h2 id="1-2"><a href="#1-2" class="headerlink" title="1.2"></a>1.2</h2><p>1.又买了很多steam游戏,仔细观察发现steam的全成就基本上都很阴间。。。<br>2.踢球感觉还行,球太硬了,要练的话以颠球、停球、盘带为主,短传、长传、射门还是算了;<br>3.晚上玩了冰与火之舞,体验还可以,不过音游确实有一些单调,而且需要大段的时间去玩来保持状态,BGM倒是挺好听的;</p>
<h2 id="1-7"><a href="#1-7" class="headerlink" title="1.7"></a>1.7</h2><p>1.现在的感觉就是不想学习。。。今天一个报告硬是拖到晚上才写完;<br>2.抱怨游戏环境不好还是有点给自己找借口,自己确实是菜,摆正心态好好玩好好练,获得提升就很有成就感,而且不能太着急,水平的提升是需要不断努力的,要认真耐心地做好一件事;<br>3.每天不能只玩却不干别的了,要多回归生活;<br>4.早睡早起身体好;</p>
<h2 id="1-15"><a href="#1-15" class="headerlink" title="1.15"></a>1.15</h2><p>1.手机B站已卸载,有空多看书吧,看书比较有意义;<br>2.白天就干活、看书、学习、娱乐,晚上再玩游戏、视频;<br>3.由于认识了个大连的兄弟,所以决定这个寒假转战台服,60ms延迟还可以;</p>
<h2 id="1-30"><a href="#1-30" class="headerlink" title="1.30"></a>1.30</h2>
<!--noindex-->
<div class="post-button">
<a class="btn" href="/2023/01/02/YXY-s-Diary-2023/#more" rel="contents">
阅读全文 »
</a>
</div>
<!--/noindex-->
</div>
<footer class="post-footer">
<div class="post-eof"></div>
</footer>
</article>
<article itemscope itemtype="http://schema.org/Article" class="post-block" lang="zh-CN">
<link itemprop="mainEntityOfPage" href="http://example.com/2023/05/18/test-image/">
<span hidden itemprop="author" itemscope itemtype="http://schema.org/Person">
<meta itemprop="image" content="/images/qaq2.png">
<meta itemprop="name" content="yyy">
<meta itemprop="description" content="666">
</span>
<span hidden itemprop="publisher" itemscope itemtype="http://schema.org/Organization">
<meta itemprop="name" content="hahamengbier">
</span>
<header class="post-header">
<h2 class="post-title" itemprop="name headline">
<a href="/2023/05/18/test-image/" class="post-title-link" itemprop="url">test image</a>
</h2>
<div class="post-meta">
<span class="post-meta-item">
<span class="post-meta-item-icon">
<i class="far fa-calendar"></i>
</span>
<span class="post-meta-item-text">发表于</span>
<time title="创建时间:2023-05-18 10:20:07 / 修改时间:10:24:54" itemprop="dateCreated datePublished" datetime="2023-05-18T10:20:07+08:00">2023-05-18</time>
</span>
</div>
</header>
<div class="post-body" itemprop="articleBody">
<p><img src="/2023/05/18/test-image/2023-5-17-1.jpeg" alt="my way"></p>
</div>
<footer class="post-footer">
<div class="post-eof"></div>
</footer>
</article>
<article itemscope itemtype="http://schema.org/Article" class="post-block" lang="zh-CN">
<link itemprop="mainEntityOfPage" href="http://example.com/2022/10/23/%E8%AF%BB%E4%B9%A6%E7%AC%94%E8%AE%B0%E5%90%88%E9%9B%86/">
<span hidden itemprop="author" itemscope itemtype="http://schema.org/Person">
<meta itemprop="image" content="/images/qaq2.png">
<meta itemprop="name" content="yyy">
<meta itemprop="description" content="666">
</span>
<span hidden itemprop="publisher" itemscope itemtype="http://schema.org/Organization">
<meta itemprop="name" content="hahamengbier">
</span>
<header class="post-header">
<h2 class="post-title" itemprop="name headline">
<a href="/2022/10/23/%E8%AF%BB%E4%B9%A6%E7%AC%94%E8%AE%B0%E5%90%88%E9%9B%86/" class="post-title-link" itemprop="url">读书笔记合集</a>
</h2>
<div class="post-meta">
<span class="post-meta-item">
<span class="post-meta-item-icon">
<i class="far fa-calendar"></i>
</span>
<span class="post-meta-item-text">发表于</span>
<time title="创建时间:2022-10-23 23:44:37" itemprop="dateCreated datePublished" datetime="2022-10-23T23:44:37+08:00">2022-10-23</time>
</span>
<span class="post-meta-item">
<span class="post-meta-item-icon">
<i class="far fa-calendar-check"></i>
</span>
<span class="post-meta-item-text">更新于</span>
<time title="修改时间:2023-02-05 00:12:57" itemprop="dateModified" datetime="2023-02-05T00:12:57+08:00">2023-02-05</time>
</span>
</div>
</header>
<div class="post-body" itemprop="articleBody">
<ul>
<li style="list-style: none"><input type="checkbox"></input> 三体1</li>
<li style="list-style: none"><input type="checkbox"></input> 三体2</li>
<li style="list-style: none"><input type="checkbox"></input> 三体3</li>
<li style="list-style: none"><input type="checkbox"></input> 东方快车谋杀案</li>
<li style="list-style: none"><input type="checkbox"></input> 时空旅行者的沙漏</li>
</ul>
<h1 id="《如何阅读一本书》"><a href="#《如何阅读一本书》" class="headerlink" title="《如何阅读一本书》"></a>《如何阅读一本书》</h1><h2 id="motivation"><a href="#motivation" class="headerlink" title="motivation"></a>motivation</h2><p>这本书的内容正如其名,由于幼时几乎没读过书,初高中也没有时间进行一些书的阅读,所以读书对我来说是一件相对困难的事情,尤其体现在阅读数学课本和讲义时,即自学能力不够。<br>为了提升自己的阅读能力,学习一下怎么读书,在看到pt的博文推荐这本书后,我便开始计划阅读它,这是学期刚开学时的想法,但现在半个学期过去了,进度已然停止了很久。<br>正好借开博客的契机,开一篇读书笔记博文,记录下其中的内容,同时也算是督促自己阅读吧。(不过最近要期中考试了,所以应该还是会鸽一段时间)</p>
<h2 id="abstract"><a href="#abstract" class="headerlink" title="abstract"></a>abstract</h2><h2 id="content"><a href="#content" class="headerlink" title="content"></a>content</h2><h2 id="something"><a href="#something" class="headerlink" title="something"></a>something</h2><p>1.网上看到另外一本名称类似的书:《<a target="_blank" rel="noopener" href="https://book.douban.com/subject/26789567/">如何有效阅读一本书</a>》</p>
</div>
<footer class="post-footer">
<div class="post-eof"></div>
</footer>
</article>
<article itemscope itemtype="http://schema.org/Article" class="post-block" lang="zh-CN">
<link itemprop="mainEntityOfPage" href="http://example.com/2022/10/20/%E5%BD%B1%E8%AF%84%E5%90%88%E9%9B%86/">
<span hidden itemprop="author" itemscope itemtype="http://schema.org/Person">
<meta itemprop="image" content="/images/qaq2.png">
<meta itemprop="name" content="yyy">
<meta itemprop="description" content="666">
</span>
<span hidden itemprop="publisher" itemscope itemtype="http://schema.org/Organization">
<meta itemprop="name" content="hahamengbier">
</span>
<header class="post-header">
<h2 class="post-title" itemprop="name headline">
<a href="/2022/10/20/%E5%BD%B1%E8%AF%84%E5%90%88%E9%9B%86/" class="post-title-link" itemprop="url">影评合集</a>
</h2>
<div class="post-meta">
<span class="post-meta-item">
<span class="post-meta-item-icon">
<i class="far fa-calendar"></i>
</span>
<span class="post-meta-item-text">发表于</span>
<time title="创建时间:2022-10-20 23:38:28" itemprop="dateCreated datePublished" datetime="2022-10-20T23:38:28+08:00">2022-10-20</time>
</span>
<span class="post-meta-item">
<span class="post-meta-item-icon">
<i class="far fa-calendar-check"></i>
</span>
<span class="post-meta-item-text">更新于</span>
<time title="修改时间:2023-02-05 16:48:54" itemprop="dateModified" datetime="2023-02-05T16:48:54+08:00">2023-02-05</time>
</span>
</div>
</header>
<div class="post-body" itemprop="articleBody">
<h1 id="Insipiration"><a href="#Insipiration" class="headerlink" title="Insipiration"></a>Insipiration</h1><p>最近看了影视欣赏推荐课下看的第一部电影《The Imitation Game》,感觉受益匪浅,引人深思,感慨万千,好电影就应该讲好故事并且富有内涵。<br>于是想转载一些看过的电影的相关视频和影评,偶尔写一写简短的观后感。</p>
<h1 id="流浪地球2"><a href="#流浪地球2" class="headerlink" title="流浪地球2"></a>流浪地球2</h1><p><a target="_blank" rel="noopener" href="https://mp.weixin.qq.com/s/sK1bVXTq_lWp_yOGgjDfqQ">《流浪地球2》很好——3号厅检票员工</a><br><a target="_blank" rel="noopener" href="https://www.bilibili.com/video/BV1pT411C7X1/?share_source=copy_web&vd_source=474870d17aae1c40d6b755b3da84ab32">深度解析《流浪地球2》崛起的中国科幻!</a><br><a target="_blank" rel="noopener" href="https://www.bilibili.com/video/BV1X8411w7mJ/?share_source=copy_web&vd_source=474870d17aae1c40d6b755b3da84ab32">深度解析《流浪地球2》这是中国科幻迈向世界的一大步!</a><br><a target="_blank" rel="noopener" href="https://www.bilibili.com/video/BV1J84y177MU/?share_source=copy_web&vd_source=474870d17aae1c40d6b755b3da84ab32">全TM是剧透!《流浪地球2》神级配乐有多牛?</a><br><a target="_blank" rel="noopener" href="https://www.bilibili.com/video/BV1x84y1j7Zn/?share_source=copy_web&vd_source=474870d17aae1c40d6b755b3da84ab32">对话郭帆!时隔4年重逢,解密《流浪地球2》的幕后故事!</a><br><a target="_blank" rel="noopener" href="https://www.bilibili.com/video/BV1qA411k7xL/?share_source=copy_web&vd_source=474870d17aae1c40d6b755b3da84ab32">二刷《流浪地球2》,电影中的这些细节和彩蛋你发现了吗?</a><br><a target="_blank" rel="noopener" href="https://www.bilibili.com/video/BV19841137Cf/?share_source=copy_web&vd_source=474870d17aae1c40d6b755b3da84ab32">刘慈欣如何看待《流浪地球2》和电视剧《三体》</a><br><a target="_blank" rel="noopener" href="https://www.bilibili.com/video/BV11y4y197YT/?share_source=copy_web&vd_source=474870d17aae1c40d6b755b3da84ab32">流浪地球2 阿鲲 550W/Moss音乐创作故事</a><br><a target="_blank" rel="noopener" href="https://www.bilibili.com/video/BV1zv4y1S73o/?share_source=copy_web&vd_source=474870d17aae1c40d6b755b3da84ab32">电影《流浪地球2》发布会吴京刘德华被李雪健发言说泪目</a><br><a target="_blank" rel="noopener" href="https://www.bilibili.com/video/BV1Pd4y1p79w/?share_source=copy_web&vd_source=474870d17aae1c40d6b755b3da84ab32">英国著名电影学家评价《流浪地球2》</a><br><a target="_blank" rel="noopener" href="https://www.bilibili.com/video/BV1X8411w79j/?share_source=copy_web&vd_source=474870d17aae1c40d6b755b3da84ab32">【这个设定真的太妙了!!】流浪地球2 相控阵核爆解析</a></p>
</div>
<footer class="post-footer">
<div class="post-eof"></div>
</footer>
</article>
<article itemscope itemtype="http://schema.org/Article" class="post-block" lang="zh-CN">
<link itemprop="mainEntityOfPage" href="http://example.com/2022/09/04/CS%E8%87%AA%E5%AD%A6%E6%8C%87%E5%8D%97/">
<span hidden itemprop="author" itemscope itemtype="http://schema.org/Person">
<meta itemprop="image" content="/images/qaq2.png">
<meta itemprop="name" content="yyy">
<meta itemprop="description" content="666">
</span>
<span hidden itemprop="publisher" itemscope itemtype="http://schema.org/Organization">
<meta itemprop="name" content="hahamengbier">
</span>
<header class="post-header">
<h2 class="post-title" itemprop="name headline">
<a href="/2022/09/04/CS%E8%87%AA%E5%AD%A6%E6%8C%87%E5%8D%97/" class="post-title-link" itemprop="url">CS自学指南</a>
</h2>
<div class="post-meta">
<span class="post-meta-item">
<span class="post-meta-item-icon">
<i class="far fa-calendar"></i>
</span>
<span class="post-meta-item-text">发表于</span>
<time title="创建时间:2022-09-04 19:12:24" itemprop="dateCreated datePublished" datetime="2022-09-04T19:12:24+08:00">2022-09-04</time>
</span>
<span class="post-meta-item">
<span class="post-meta-item-icon">
<i class="far fa-calendar-check"></i>
</span>
<span class="post-meta-item-text">更新于</span>
<time title="修改时间:2022-09-11 19:23:47" itemprop="dateModified" datetime="2022-09-11T19:23:47+08:00">2022-09-11</time>
</span>
</div>
</header>
<div class="post-body" itemprop="articleBody">
<p><a target="_blank" rel="noopener" href="https://csdiy.wiki">CS自学指南</a></p>
<h1 id="前言"><a href="#前言" class="headerlink" title="前言"></a><a target="_blank" rel="noopener" href="https://csdiy.wiki">前言</a></h1><ul>
<li style="list-style: none"><input type="checkbox"></input> <a target="_blank" rel="noopener" href="https://cs61a.org">CS61A</a><br><a target="_blank" rel="noopener" href="https://github.com/PKUFlyingPig/Self-learning-Computer-Science">CS自学资料整理仓库</a><br>自学:自律、英文、交流沟通</li>
</ul>
<h1 id="一个仅供参考的-CS-学习规划"><a href="#一个仅供参考的-CS-学习规划" class="headerlink" title="一个仅供参考的 CS 学习规划"></a><a target="_blank" rel="noopener" href="https://csdiy.wiki/CS学习规划/">一个仅供参考的 CS 学习规划</a></h1><ul>
<li style="list-style: none"><input type="checkbox"></input> <a target="_blank" rel="noopener" href="https://www.bilibili.com/video/BV1EW411u7th">Crash Course: Computer Science</a></li>
<li style="list-style: none"><input type="checkbox"></input> <a target="_blank" rel="noopener" href="https://github.com/ryanhanwu/How-To-Ask-Questions-The-Smart-Way/blob/main/README-zh_CN.md">提问的智慧</a></li>
<li style="list-style: none"><input type="checkbox"></input> <a target="_blank" rel="noopener" href="https://csdiy.wiki/编程入门/MIT-Missing-Semester/">MIT-Missing-Semester</a></li>
<li style="list-style: none"><input type="checkbox"></input> <a target="_blank" rel="noopener" href="https://github.com/jlevy/the-art-of-command-line/blob/master/README-zh.md">命令行的艺术</a></li>
<li style="list-style: none"><input type="checkbox"></input> <a target="_blank" rel="noopener" href="https://www.shellscript.sh/">Shell 脚本编程</a></li>
<li style="list-style: none"><input type="checkbox"></input> <a target="_blank" rel="noopener" href="https://github.com/orlp/dev-on-windows/wiki">Mac 环境配置</a></li>
<li style="list-style: none"><input type="checkbox"></input> <a target="_blank" rel="noopener" href="https://github.com/Tikam02/DevOps-Guide">服务器端环境配置</a></li>
</ul>
</div>
<footer class="post-footer">
<div class="post-eof"></div>
</footer>
</article>
<article itemscope itemtype="http://schema.org/Article" class="post-block" lang="zh-CN">
<link itemprop="mainEntityOfPage" href="http://example.com/2022/09/04/College-Info-Geek%E6%94%B6%E8%97%8F/">
<span hidden itemprop="author" itemscope itemtype="http://schema.org/Person">
<meta itemprop="image" content="/images/qaq2.png">
<meta itemprop="name" content="yyy">
<meta itemprop="description" content="666">
</span>
<span hidden itemprop="publisher" itemscope itemtype="http://schema.org/Organization">
<meta itemprop="name" content="hahamengbier">
</span>
<header class="post-header">
<h2 class="post-title" itemprop="name headline">
<a href="/2022/09/04/College-Info-Geek%E6%94%B6%E8%97%8F/" class="post-title-link" itemprop="url">College Info Geek收藏</a>
</h2>
<div class="post-meta">
<span class="post-meta-item">
<span class="post-meta-item-icon">
<i class="far fa-calendar"></i>
</span>
<span class="post-meta-item-text">发表于</span>
<time title="创建时间:2022-09-04 18:10:10 / 修改时间:19:12:32" itemprop="dateCreated datePublished" datetime="2022-09-04T18:10:10+08:00">2022-09-04</time>
</span>
</div>
</header>
<div class="post-body" itemprop="articleBody">
<h3 id="Flash-Cards"><a href="#Flash-Cards" class="headerlink" title="Flash Cards"></a>Flash Cards</h3><ul>
<li style="list-style: none"><input type="checkbox"></input> <a target="_blank" rel="noopener" href="https://collegeinfogeek.com/flash-card-study-tips/">8 Better Ways to Make and Study Flash Cards</a></li>
<li style="list-style: none"><input type="checkbox"></input> <a target="_blank" rel="noopener" href="https://collegeinfogeek.com/spaced-repetition-memory-technique/">How to Remember More of What You Learn with Spaced Repetition</a></li>
</ul>
<h3 id=""><a href="#" class="headerlink" title=" "></a> </h3>
</div>
<footer class="post-footer">
<div class="post-eof"></div>
</footer>
</article>
<article itemscope itemtype="http://schema.org/Article" class="post-block" lang="zh-CN">
<link itemprop="mainEntityOfPage" href="http://example.com/2022/07/15/MIT-Missing-Semester/">
<span hidden itemprop="author" itemscope itemtype="http://schema.org/Person">
<meta itemprop="image" content="/images/qaq2.png">
<meta itemprop="name" content="yyy">
<meta itemprop="description" content="666">
</span>
<span hidden itemprop="publisher" itemscope itemtype="http://schema.org/Organization">
<meta itemprop="name" content="hahamengbier">
</span>
<header class="post-header">
<h2 class="post-title" itemprop="name headline">
<a href="/2022/07/15/MIT-Missing-Semester/" class="post-title-link" itemprop="url">MIT-Missing-Semester</a>
</h2>
<div class="post-meta">
<span class="post-meta-item">
<span class="post-meta-item-icon">
<i class="far fa-calendar"></i>
</span>
<span class="post-meta-item-text">发表于</span>
<time title="创建时间:2022-07-15 11:09:52" itemprop="dateCreated datePublished" datetime="2022-07-15T11:09:52+08:00">2022-07-15</time>
</span>
<span class="post-meta-item">
<span class="post-meta-item-icon">
<i class="far fa-calendar-check"></i>
</span>
<span class="post-meta-item-text">更新于</span>
<time title="修改时间:2022-09-11 17:07:44" itemprop="dateModified" datetime="2022-09-11T17:07:44+08:00">2022-09-11</time>
</span>
</div>
</header>
<div class="post-body" itemprop="articleBody">
<p><a target="_blank" rel="noopener" href="https://missing.csail.mit.edu">MIT-Missing-Semester(英文讲义+youtube原视频)</a><br><a target="_blank" rel="noopener" href="https://missing-semester-cn.github.io">中文页面(中文讲义+youtube原视频)</a><br><a target="_blank" rel="noopener" href="https://www.bilibili.com/video/BV1x7411H7wa/?spm_id_from=333.788.recommend_more_video.0&vd_source=15d8bdc45883da6f44a2bce65c88a474">B站搬运(机翻英文+中文字幕)</a><br><a target="_blank" rel="noopener" href="https://github.com/CN-missemi/CN_missemi">B站中文字幕视频(未完待续)</a><br><a target="_blank" rel="noopener" href="https://github.com/piaoliangkb/missing-semester-2020">学习笔记</a><br><a target="_blank" rel="noopener" href="https://github.com/anthonyjatoba/missing-semester">习题解答(未完待续)</a></p>
<ul>
<li style="list-style: none"><input type="checkbox"> MIT-Missing-Semester</li>
</ul>
<h3 id="课程概览与-shell"><a href="#课程概览与-shell" class="headerlink" title="课程概览与 shell"></a>课程概览与 shell</h3><ul>
<li style="list-style: none"><input type="checkbox" checked> 视频</li>
<li style="list-style: none"><input type="checkbox" checked> 讲义</li>
<li style="list-style: none"><input type="checkbox" checked> 课后练习</li>
</ul>
<h3 id="Shell-工具和脚本"><a href="#Shell-工具和脚本" class="headerlink" title="Shell 工具和脚本"></a>Shell 工具和脚本</h3><ul>
<li style="list-style: none"><input type="checkbox" checked> 视频</li>
<li style="list-style: none"><input type="checkbox" checked> 讲义</li>
<li style="list-style: none"><input type="checkbox" checked> 课后练习</li>
</ul>
<h3 id="编辑器-Vim"><a href="#编辑器-Vim" class="headerlink" title="编辑器 (Vim)"></a>编辑器 (Vim)</h3><ul>
<li style="list-style: none"><input type="checkbox" checked> 视频</li>
<li style="list-style: none"><input type="checkbox"> 讲义</li>
<li style="list-style: none"><input type="checkbox"> 课后练习</li>
</ul>
<h3 id="数据整理"><a href="#数据整理" class="headerlink" title="数据整理"></a>数据整理</h3><ul>
<li style="list-style: none"><input type="checkbox"> 视频</li>
<li style="list-style: none"><input type="checkbox"> 讲义</li>
<li style="list-style: none"><input type="checkbox"> 课后练习</li>
</ul>
<!--noindex-->
<div class="post-button">
<a class="btn" href="/2022/07/15/MIT-Missing-Semester/#more" rel="contents">
阅读全文 »
</a>
</div>
<!--/noindex-->
</div>
<footer class="post-footer">
<div class="post-eof"></div>
</footer>
</article>
<article itemscope itemtype="http://schema.org/Article" class="post-block" lang="zh-CN">
<link itemprop="mainEntityOfPage" href="http://example.com/2022/05/22/%E9%9F%B3%E4%B9%90%E6%8E%A8%E8%8D%90%E5%90%88%E9%9B%86/">
<span hidden itemprop="author" itemscope itemtype="http://schema.org/Person">
<meta itemprop="image" content="/images/qaq2.png">
<meta itemprop="name" content="yyy">
<meta itemprop="description" content="666">
</span>
<span hidden itemprop="publisher" itemscope itemtype="http://schema.org/Organization">
<meta itemprop="name" content="hahamengbier">
</span>
<header class="post-header">
<h2 class="post-title" itemprop="name headline">
<a href="/2022/05/22/%E9%9F%B3%E4%B9%90%E6%8E%A8%E8%8D%90%E5%90%88%E9%9B%86/" class="post-title-link" itemprop="url">音乐推荐合集</a>
</h2>
<div class="post-meta">
<span class="post-meta-item">
<span class="post-meta-item-icon">
<i class="far fa-calendar"></i>
</span>
<span class="post-meta-item-text">发表于</span>
<time title="创建时间:2022-05-22 01:26:33" itemprop="dateCreated datePublished" datetime="2022-05-22T01:26:33+08:00">2022-05-22</time>
</span>
<span class="post-meta-item">
<span class="post-meta-item-icon">
<i class="far fa-calendar-check"></i>
</span>
<span class="post-meta-item-text">更新于</span>
<time title="修改时间:2023-02-05 00:22:35" itemprop="dateModified" datetime="2023-02-05T00:22:35+08:00">2023-02-05</time>
</span>
</div>
</header>
<div class="post-body" itemprop="articleBody">
<p>最近听到一些很喜欢的歌,以前也有很多自己很喜欢的歌,打算写出来推荐下,顺便整理下</p>
<p>先介绍下标题们:<br>1.时光音乐会:算是这篇博客的动机,最近发现的一个好节目,里面的歌手大部分我是很喜欢的,歌曲质量也很高👍;<br>2.我是歌手 + 歌手:经典节目了属于是,虽然有不少垃圾,但也有很多经典/震撼;<br>3.音乐私藏馆:B站宝藏了属于是,巨量4K现场资源,发现了一些神仙歌;<br>4.其他:不像上面几个那么突出的一些节目/up主,但也有很多好听的歌曲(主要是翻唱);</p>
<h2 id="时光音乐会"><a href="#时光音乐会" class="headerlink" title="时光音乐会"></a>时光音乐会</h2><h3 id="《路过人间》——郁可唯(链接)"><a href="#《路过人间》——郁可唯(链接)" class="headerlink" title="《路过人间》——郁可唯(链接)"></a>《路过人间》——郁可唯(<a target="_blank" rel="noopener" href="https://c.y.qq.com/base/fcgi-bin/u?__=yVfgVs4A">链接</a>)</h3><blockquote>
<p>世上唯一不变 是人都善变<br>路过人间 爱都有期限</p>
<p>快快抹干眼泪 看昙花多美<br>路过人间 无非一瞬间</p>
</blockquote>
<p>第1期的王炸之一,开口跪了属于是;<br>感觉郁可唯声音确实好听,很空灵;<br>这个版本比她当时的原曲更好听,更有感觉;</p>
<h2 id="我是歌手-歌手"><a href="#我是歌手-歌手" class="headerlink" title="我是歌手 + 歌手"></a>我是歌手 + 歌手</h2><h2 id="音乐私藏馆"><a href="#音乐私藏馆" class="headerlink" title="音乐私藏馆"></a>音乐私藏馆</h2><h2 id="其他"><a href="#其他" class="headerlink" title="其他"></a>其他</h2><h3 id="偶然发现的"><a href="#偶然发现的" class="headerlink" title="偶然发现的"></a>偶然发现的</h3>
<!--noindex-->
<div class="post-button">
<a class="btn" href="/2022/05/22/%E9%9F%B3%E4%B9%90%E6%8E%A8%E8%8D%90%E5%90%88%E9%9B%86/#more" rel="contents">
阅读全文 »
</a>
</div>
<!--/noindex-->
</div>
<footer class="post-footer">
<div class="post-eof"></div>
</footer>
</article>
<article itemscope itemtype="http://schema.org/Article" class="post-block" lang="zh-CN">
<link itemprop="mainEntityOfPage" href="http://example.com/2022/04/14/YXY-s-Diary-2022/">
<span hidden itemprop="author" itemscope itemtype="http://schema.org/Person">
<meta itemprop="image" content="/images/qaq2.png">
<meta itemprop="name" content="yyy">
<meta itemprop="description" content="666">
</span>
<span hidden itemprop="publisher" itemscope itemtype="http://schema.org/Organization">
<meta itemprop="name" content="hahamengbier">
</span>
<header class="post-header">
<h2 class="post-title" itemprop="name headline">
<a href="/2022/04/14/YXY-s-Diary-2022/" class="post-title-link" itemprop="url">YXY's Diary-2022</a>
</h2>
<div class="post-meta">
<span class="post-meta-item">
<span class="post-meta-item-icon">
<i class="far fa-calendar"></i>
</span>
<span class="post-meta-item-text">发表于</span>
<time title="创建时间:2022-04-14 23:46:39" itemprop="dateCreated datePublished" datetime="2022-04-14T23:46:39+08:00">2022-04-14</time>
</span>
<span class="post-meta-item">
<span class="post-meta-item-icon">
<i class="far fa-calendar-check"></i>
</span>
<span class="post-meta-item-text">更新于</span>
<time title="修改时间:2023-01-02 23:28:50" itemprop="dateModified" datetime="2023-01-02T23:28:50+08:00">2023-01-02</time>
</span>
</div>
</header>
<div class="post-body" itemprop="articleBody">
<h2 id="April"><a href="#April" class="headerlink" title="April"></a>April</h2><h3 id="4-14"><a href="#4-14" class="headerlink" title="4.14"></a>4.14</h3><p>晚上本来应该复习大雾,但由于超算那边题目的性能问题,我还是来调试性能了;<br>今天晚上体验良好,有学长带着就比较爽,NickCao还挺有趣的🤔,idea比较多,合作体验不错;<br>还感受到了他和leenldk有一种对超算的热爱🤔,大家都是这样,还有晨特和杰哥🤔;</p>
<h3 id="4-15-4-25"><a href="#4-15-4-25" class="headerlink" title="4.15-4.25"></a>4.15-4.25</h3><p>混乱时期,咕咕咕</p>
<h3 id="4-26"><a href="#4-26" class="headerlink" title="4.26"></a>4.26</h3><p>前一段时间太混乱了,尝试从今天开始调整下。</p>
<h4 id="作息"><a href="#作息" class="headerlink" title="作息"></a>作息</h4><p>昨晚写软工一直到一点多都不困,然后开始摸鱼,一直到五点左右,还是不困。。。<br>然后就开始写软工,把要写的接口完成了,但并没有写完test,但是不太想写了,而且有点太晚了。。。<br>然后在六点多睡觉,到九点半起床,只睡了三个小时,然后就去上软工了。<br>上课的时候明显感觉整个人状态都不太好,因为睡得太少了,实在是难受,所以之后千万不熬夜了。。。<br>目前还不太知道实在睡不着怎么办,处理方式有:听音乐、~玩LOL~、写ddl(如果第二天可以起得很晚)、ASMR(可以尝试下)</p>
<h4 id="疫情"><a href="#疫情" class="headerlink" title="疫情"></a>疫情</h4>
<!--noindex-->
<div class="post-button">
<a class="btn" href="/2022/04/14/YXY-s-Diary-2022/#more" rel="contents">
阅读全文 »
</a>
</div>
<!--/noindex-->
</div>
<footer class="post-footer">
<div class="post-eof"></div>
</footer>
</article>
<nav class="pagination">
<span class="page-number current">1</span><a class="page-number" href="/page/2/">2</a><a class="extend next" rel="next" href="/page/2/"><i class="fa fa-angle-right" aria-label="下一页"></i></a>
</nav>
</div>
<script>
window.addEventListener('tabs:register', () => {
let { activeClass } = CONFIG.comments;
if (CONFIG.comments.storage) {
activeClass = localStorage.getItem('comments_active') || activeClass;
}
if (activeClass) {
let activeTab = document.querySelector(`a[href="#comment-${activeClass}"]`);
if (activeTab) {
activeTab.click();
}
}
});
if (CONFIG.comments.storage) {
window.addEventListener('tabs:click', event => {
if (!event.target.matches('.tabs-comment .tab-content .tab-pane')) return;
let commentClass = event.target.classList[1];
localStorage.setItem('comments_active', commentClass);
});
}
</script>
</div>
<div class="toggle sidebar-toggle">
<span class="toggle-line toggle-line-first"></span>
<span class="toggle-line toggle-line-middle"></span>
<span class="toggle-line toggle-line-last"></span>
</div>
<aside class="sidebar">
<div class="sidebar-inner">
<ul class="sidebar-nav motion-element">
<li class="sidebar-nav-toc">
文章目录
</li>
<li class="sidebar-nav-overview">
站点概览