-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
1500 lines (541 loc) · 31 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"
itemscope
itemtype="http://schema.org/WebPage"
>
<head>
<meta charset="utf-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<title>
飘飘白云:所读,所观,所思
</title>
<meta name="renderer" content="webkit" />
<meta name="viewport" content="width=device-width, initial-scale=1, user-scalable=yes"/>
<meta name="MobileOptimized" content="width"/>
<meta name="HandheldFriendly" content="true"/>
<meta name="applicable-device" content="pc,mobile">
<meta name="theme-color" content="#f8f5ec" />
<meta name="msapplication-navbutton-color" content="#f8f5ec">
<meta name="apple-mobile-web-app-capable" content="yes">
<meta name="apple-mobile-web-app-status-bar-style" content="#f8f5ec">
<meta name="mobile-web-app-capable" content="yes">
<meta name="author" content="飘飘白云" />
<meta name="description" content="飘飘白云的思绪停留地" />
<meta name="keywords" content="飘飘白云, 罗朝辉, kesalin" />
<meta name="generator" content="Hugo 0.118.2" />
<link rel="canonical" href="https://luozhaohui.github.io/" />
<link href="/index.xml" rel="alternate" type="application/rss+xml" title="飘飘白云:所读,所观,所思" />
<link rel="icon" href="/image/favicon.png" />
<link rel="stylesheet" href="/sass/jane.min.be793c33be77e9d09e889a754d0585a1e64c10400af5e54ee17c529aec5311db.css" integrity="sha256-vnk8M7536dCeiJp1TQWFoeZMEEAK9eVO4XxSmuxTEds=" media="screen" crossorigin="anonymous">
<meta property="og:title" content="飘飘白云:所读,所观,所思" />
<meta property="og:description" content="飘飘白云的思绪停留地" />
<meta property="og:type" content="website" />
<meta property="og:url" content="https://luozhaohui.github.io/" />
<meta itemprop="name" content="飘飘白云:所读,所观,所思">
<meta itemprop="description" content="飘飘白云的思绪停留地"><meta name="twitter:card" content="summary"/>
<meta name="twitter:title" content="飘飘白云:所读,所观,所思"/>
<meta name="twitter:description" content="飘飘白云的思绪停留地"/>
<!--[if lte IE 9]>
<script src="https://cdnjs.cloudflare.com/ajax/libs/classlist/1.1.20170427/classList.min.js"></script>
<![endif]-->
<!--[if lt IE 9]>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/html5shiv.min.js"></script>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dest/respond.min.js"></script>
<![endif]-->
</head>
<body>
<div id="back-to-top"></div>
<div id="mobile-navbar" class="mobile-navbar">
<div class="mobile-header-logo">
<a href="/" class="logo">飘飘白云</a>
</div>
<div class="mobile-navbar-icon">
<span></span>
<span></span>
<span></span>
</div>
</div>
<nav id="mobile-menu" class="mobile-menu slideout-menu">
<ul class="mobile-menu-list">
<li class="mobile-menu-item">
<a class="menu-item-link" href="https://luozhaohui.github.io/">首页</a>
</li><li class="mobile-menu-item">
<a class="menu-item-link" href="https://luozhaohui.github.io/post/">归档</a>
</li><li class="mobile-menu-item">
<a class="menu-item-link" href="https://luozhaohui.github.io/tags/">标签</a>
</li><li class="mobile-menu-item">
<a class="menu-item-link" href="https://luozhaohui.github.io/categories/">分类</a>
</li><li class="mobile-menu-item">
<a class="menu-item-link" href="https://luozhaohui.github.io/about/">关于</a>
</li><li class="mobile-menu-item">
<div class="mobile-menu-parent">
<span class="mobile-submenu-open"></span>
<a href="https://luozhaohui.github.io/">
读书如抽丝
</a>
</div>
<ul class="mobile-submenu-list">
<li>
<a href="https://luozhaohui.github.io/book/recommend/">推荐书籍</a>
</li>
<li>
<a href="https://luozhaohui.github.io/book/mindset/">心智成长</a>
</li>
<li>
<a href="https://luozhaohui.github.io/post/annual-reading/annual-readings/">历年阅读</a>
</li>
</ul>
</li>
</ul>
</nav>
<link rel="stylesheet" href="/lib/photoswipe/photoswipe.min.css" />
<link rel="stylesheet" href="/lib/photoswipe/default-skin/default-skin.min.css" />
<div class="pswp" tabindex="-1" role="dialog" aria-hidden="true">
<div class="pswp__bg"></div>
<div class="pswp__scroll-wrap">
<div class="pswp__container">
<div class="pswp__item"></div>
<div class="pswp__item"></div>
<div class="pswp__item"></div>
</div>
<div class="pswp__ui pswp__ui--hidden">
<div class="pswp__top-bar">
<div class="pswp__counter"></div>
<button class="pswp__button pswp__button--close" title="Close (Esc)"></button>
<button class="pswp__button pswp__button--share" title="Share"></button>
<button class="pswp__button pswp__button--fs" title="Toggle fullscreen"></button>
<button class="pswp__button pswp__button--zoom" title="Zoom in/out"></button>
<div class="pswp__preloader">
<div class="pswp__preloader__icn">
<div class="pswp__preloader__cut">
<div class="pswp__preloader__donut"></div>
</div>
</div>
</div>
</div>
<div class="pswp__share-modal pswp__share-modal--hidden pswp__single-tap">
<div class="pswp__share-tooltip"></div>
</div>
<button class="pswp__button pswp__button--arrow--left" title="Previous (arrow left)">
</button>
<button class="pswp__button pswp__button--arrow--right" title="Next (arrow right)">
</button>
<div class="pswp__caption">
<div class="pswp__caption__center"></div>
</div>
</div>
</div>
</div>
<header id="header" class="header">
<div class="logo-wrapper">
<a href="/" class="logo">
飘飘白云
</a>
</div>
<nav class="site-navbar">
<ul id="menu" class="menu">
<li class="menu-item active">
<a class="menu-item-link" href="https://luozhaohui.github.io/">首页</a>
</li>
<li class="menu-item">
<a class="menu-item-link" href="https://luozhaohui.github.io/post/">归档</a>
</li>
<li class="menu-item">
<a class="menu-item-link" href="https://luozhaohui.github.io/tags/">标签</a>
</li>
<li class="menu-item">
<a class="menu-item-link" href="https://luozhaohui.github.io/categories/">分类</a>
</li>
<li class="menu-item">
<a class="menu-item-link" href="https://luozhaohui.github.io/about/">关于</a>
</li>
<li class="menu-item">
<a class="menu-item-link menu-parent" href="https://luozhaohui.github.io/">读书如抽丝</a>
<ul class="submenu">
<li class="submenu-item">
<a href="https://luozhaohui.github.io/book/recommend/">推荐书籍</a>
</li>
<li class="submenu-item">
<a href="https://luozhaohui.github.io/book/mindset/">心智成长</a>
</li>
<li class="submenu-item">
<a href="https://luozhaohui.github.io/post/annual-reading/annual-readings/">历年阅读</a>
</li>
</ul>
</li>
</ul>
</nav>
</header>
<div id="mobile-panel">
<main id="main" class="main bg-llight wallpaper">
<section id="posts" class="posts">
<article class="post">
<header class="post-header">
<h1 class="post-title">
<a class="post-link" href="/post/2025/2025-01-05-amc8-all-in-one/">关于 AMC8 数学竞赛你所需要知道的一切</a>
</h1>
<div class="post-meta">
<div class="post-meta-author">
<a href="/about">
<span class="post-meta-author-name">
飘飘白云
</span>
</a>
</div>
<div class="post-meta-time">
<time datetime="2025-01-05">
2025-01-05
</time>
</div>
<div class="post-meta__right">
<span class="post-meta-more">
约 5072 字 -
预计阅读 11 分钟
</span>
<div class="post-meta-category">
<a href="https://luozhaohui.github.io/categories/%E6%8A%80%E8%89%BA/"> 技艺 </a>
</div>
</div>
</div>
</header>
<div class="post-content">
<div class="post-summary">
<h2 id="前言">前言</h2>
<p><strong>AMC</strong> 美国数学竞赛全称 <strong>American Mathematics Competitions</strong>,由美国数学协会主办,是美国国家级别的系列数学竞赛,赛事分 <strong>AMC8</strong>(初级中学)、<strong>AMC10</strong>(高级中学)、<strong>AMC12</strong>(高级中学)三个级别,分别允许不超过美国 8、10、12 年级的学生参加。</p>
<p>为什么要参加一个美国的数学竞赛考试?</p>
<ul>
<li>
<p>从功利角度来讲:对走国际路线的学生,AMC 竞赛是美国国家级别的竞赛,拿到 AMC 高分证书是申请美国高中、本科学校非常有说服力的材料。对国内的升学来说,很多优秀初中在小升初的刷选中也很看重 AMC 证书,比如网传的上海三公对数学素质的期待为 <strong>AMC8</strong> 20分。</p>
</li>
<li>
<p>从非功利角度来讲:学习数学竞赛能开拓学生思维,把学过的一个概念应用于更综合、更深奥的问题中,培养深度思考的能力。<strong>遇到难题不畏惧,遇到简单题不骄躁,通过理智的分析,逐步解除复杂问题</strong>。这种解决问题的行为模式,能跳出学术,应用到生活中。</p>
</li>
</ul>
<p>什么样的<strong>小学</strong>学生适合参加 <strong>AMC8</strong> 竞赛?</p>
<ul>
<li>打算走国际学校路线的学生</li>
<li>打算参加小升初选拔的学生</li>
<li>对数学有兴趣,以考促学的学生</li>
</ul>
<p>总的来说,小学阶段<strong>有实际需求以及具备相应领悟能力、学有余力</strong>的学生可以备考 <strong>AMC8</strong> 竞赛。<strong>不建议硬控硬上,给孩子留一个快乐的童年和一份阳光健康的心态比让孩子在高压下学习要重要得多</strong>。</p>
</div>
<div class="read-more">
<a href="/post/2025/2025-01-05-amc8-all-in-one/" class="read-more-link"
>阅读全文</a
>
</div>
</div>
</article>
<article class="post">
<header class="post-header">
<h1 class="post-title">
<a class="post-link" href="/post/annual-reading/2024-12-28-reading/">2024年阅读统计-追根溯源</a>
</h1>
<div class="post-meta">
<div class="post-meta-author">
<a href="/about">
<span class="post-meta-author-name">
飘飘白云
</span>
</a>
</div>
<div class="post-meta-time">
<time datetime="2024-12-28">
2024-12-28
</time>
</div>
<div class="post-meta__right">
<span class="post-meta-more">
约 20334 字 -
预计阅读 41 分钟
</span>
<div class="post-meta-category">
<a href="https://luozhaohui.github.io/categories/%E9%98%85%E8%AF%BB/"> 阅读 </a>
</div>
</div>
</div>
</header>
<div class="post-content">
<div class="post-summary">
<h2 id="前言">前言</h2>
<p>今年的阅读可以说是春读诗、夏读史、秋读艺术、冬读考古。首先是接续去年的心智和诗文阅读主题,阅读了心理学以及诗文解析相关的著作;然后是经由太平洋战争三部曲激发的对日本历史文化、美国崛起、二战欧洲战场的扩展阅读,可惜没找到合适的关于二战欧洲战场的书籍;接着带着弥补美学三书仅读过其一的遗憾,而补读了其它两本,进而对李泽厚的西学思想来源(如康德)有了兴趣,进而阅读欧洲近代思想和哲学;最后出于对照中日、中欧文明,而对中华文明的起源和形成有了兴趣,从而大量阅读中国考古、中华文明起源相关书籍。</p>
<p>这些阅读的总体感悟是,中国现阶段的学人已经开始尝试打破西学理论框架的垄断,试着重新构建基于独特中华文化的新理论。在某种程度上对西方理论的迷信,可以说是跟随美国对华自毁规则式的围堵打压而幻灭。基于最近几十年的考古发现,中国考古界有了切实的理论构建进展,但这个新理论构建的过程才刚刚起步,依然任重而道远。其他领域的创建也是如此,比如《踌躇的霸权》的构建就非常优秀。</p>
<p>中西文化在基本理念上的区别是根源性的:中华文化是世俗的(人伦关系)、综合的(天人合一),西方文化是超越的(思辨理性)、分析的(物我二分)。超越的优点是个体能动性,永不满足,永远追索,螺旋上升,一如西方哲学史的发展历程;分析的优点是质疑精神(更准确地说批判和刨根问底的精神),较少成见,如笛卡尔和黑格尔思辨哲学的无预设起点。个人的感触是西方的创新优势就植根于这两个思维基点之中。</p>
</div>
<div class="read-more">
<a href="/post/annual-reading/2024-12-28-reading/" class="read-more-link"
>阅读全文</a
>
</div>
</div>
</article>
<article class="post">
<header class="post-header">
<h1 class="post-title">
<a class="post-link" href="/post/2024/2024-09-21-japan-not-guilty/">日本为什么不诚恳认罪?</a>
</h1>
<div class="post-meta">
<div class="post-meta-author">
<a href="/about">
<span class="post-meta-author-name">
飘飘白云
</span>
</a>
</div>
<div class="post-meta-time">
<time datetime="2024-09-21">
2024-09-21
</time>
</div>
<div class="post-meta__right">
<span class="post-meta-more">
约 11135 字 -
预计阅读 23 分钟
</span>
<div class="post-meta-category">
<a href="https://luozhaohui.github.io/categories/%E5%8E%86%E5%8F%B2/"> 历史 </a>
</div>
</div>
</div>
</header>
<div class="post-content">
<div class="post-summary">
<h2 id="前言">前言</h2>
<p>又是一年九一八事变纪念日,也是定时勿忘国耻之日。回顾种种无耻侵华事实固然能激发愤慨的爱国之情,可待警钟声了,纪念日一过,一切又照常,不会在心底留下些许涟漪,也不会在脑海中留下什么的感悟。面对如此惨痛的灾难,每个人心中都应该有一份独特的“5D报告”,以深刻认识日本为什么发动战争,又为什么不诚恳地认罪(“遗憾”不是悔罪,甚至也不是道歉。就如盟军不会把对波茨坦公告的“默杀”(日语有多重含义:不置评或拒绝)回应视为接受投降条件一样),以便让自己保持警醒与清醒,意识到什么样迹象和社会氛围可能会重蹈覆辙,而在此种情况下又当如何应对。以下是我个人对侵华战争的“5D报告”,鉴于所知甚陋,疏漏错误之处难免,有错必改。</p>
</div>
<div class="read-more">
<a href="/post/2024/2024-09-21-japan-not-guilty/" class="read-more-link"
>阅读全文</a
>
</div>
</div>
</article>
<article class="post">
<header class="post-header">
<h1 class="post-title">
<a class="post-link" href="/post/2024/2024-07-23-mount-huang/">黄山游记</a>
</h1>
<div class="post-meta">
<div class="post-meta-author">
<a href="/about">
<span class="post-meta-author-name">
飘飘白云
</span>
</a>
</div>
<div class="post-meta-time">
<time datetime="2024-07-23">
2024-07-23
</time>
</div>
<div class="post-meta__right">
<span class="post-meta-more">
约 2712 字 -
预计阅读 6 分钟
</span>
<div class="post-meta-category">
<a href="https://luozhaohui.github.io/categories/%E6%97%85%E8%A1%8C/"> 旅行 </a>
</div>
</div>
</div>
</header>
<div class="post-content">
<div class="post-summary">
<h2 id="准备">准备</h2>
<p>上一次去黄山还是十年前(2023)的六月。当时老婆刚有身孕,于是戏说黄山是即将出生宝宝的幸运山。之后由于养育二娃,一直都没有怎么外出旅行。今年嘟嘟十岁了,于是决定陪她去她的幸运山来一场幸运之旅。</p>
<p>十年前去黄山是跟团游,跟团游的特点是:走马观花一时爽,尔后回忆全都忘。在准备这次自由行之前,我就是处于这样的状态,连黄山的前山、后山都没有半点印象了。于是狠狠地补课研究了一番从南大门登山的三日游攻略,结合真实行程而得出如下攻略。</p>
</div>
<div class="read-more">
<a href="/post/2024/2024-07-23-mount-huang/" class="read-more-link"
>阅读全文</a
>
</div>
</div>
</article>
<article class="post">
<header class="post-header">
<h1 class="post-title">
<a class="post-link" href="/post/2024/2024-06-11-invasion-south-or-north/">二战中日本的北进 VS 南进战略</a>
</h1>
<div class="post-meta">
<div class="post-meta-author">
<a href="/about">
<span class="post-meta-author-name">
飘飘白云
</span>
</a>
</div>
<div class="post-meta-time">
<time datetime="2024-06-11">
2024-06-11
</time>
</div>
<div class="post-meta__right">
<span class="post-meta-more">
约 2050 字 -
预计阅读 5 分钟
</span>
<div class="post-meta-category">
<a href="https://luozhaohui.github.io/categories/%E9%98%85%E8%AF%BB/"> 阅读 </a>
</div>
</div>
</div>
</header>
<div class="post-content">
<div class="post-summary">
<p>日本在侵华战争期间曾经有两种不同方向和目标的相互竞争的战略,这就是:北进和南进战略。其中,北进为陆军主推,以苏联为目标;南进为海军主推,以东南亚和美国为目标。这两种战略都是希望通过以战养战,掠夺占领地的资源达到独霸亚洲的目的。先是北进被挫败于诺门坎,然后南进惹毛了美国,导致覆灭。这两种战略的出台背景、决策过程、实际行动及其后果与影响大为迥异,并对中国、苏联和东南亚各国产生了深远的影响。</p>
</div>
<div class="read-more">
<a href="/post/2024/2024-06-11-invasion-south-or-north/" class="read-more-link"
>阅读全文</a
>
</div>
</div>
</article>
</section>
<nav class="pagination">
<ul>
<li class="active">
<a href="/">
1
</a>
</li>
<li class="">
<a href="/page/2/">
2
</a>
</li>
<li class="">
<a href="/page/3/">
3
</a>
</li>
<li class="">
<a href="/page/4/">
4
</a>
</li>
<li class="">
<a href="/page/5/">
5
</a>
</li>
<li class="">
<a href="/page/6/">
6
</a>
</li>
<li class="">
<a href="/page/7/">
7
</a>
</li>
<li class="">
<a href="/page/8/">
8
</a>
</li>