-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathLife_4.html
705 lines (499 loc) · 21.4 KB
/
Life_4.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
<!doctype html>
<html class="no-js" lang="en">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>
Life - West Wong
</title>
<link href="atom.xml" rel="alternate" title="West Wong" type="application/atom+xml">
<link rel="stylesheet" href="asset/css/foundation.min.css" />
<link rel="stylesheet" href="asset/css/docs.css" />
<script src="asset/js/vendor/modernizr.js"></script>
<script src="asset/js/vendor/jquery.js"></script>
<script type="text/javascript">
function before_search(){
var searchVal = 'site: ' + document.getElementById('search_input').value;
document.getElementById('search_q').value = searchVal;
return true;
}
</script>
</head>
<body class="antialiased hide-extras">
<div class="marketing off-canvas-wrap" data-offcanvas>
<div class="inner-wrap">
<nav class="top-bar docs-bar hide-for-small" data-topbar>
<section class="top-bar-section">
<div class="row">
<div style="position: relative;width:100%;"><div style="position: absolute; width:100%;">
<ul id="main-menu" class="left">
<li id=""><a target="_self" href="index.html">Home</a></li>
<li id=""><a target="_self" href="archives.html">Archives</a></li>
</ul>
<ul class="right" id="search-wrap">
<li>
<form target="_blank" onsubmit="return before_search();" action="https://google.com/search" method="get">
<input type="hidden" id="search_q" name="q" value="" />
<input tabindex="1" type="search" id="search_input" placeholder="Search"/>
</form>
</li>
</ul>
</div></div>
</div>
</section>
</nav>
<nav class="tab-bar show-for-small">
<a href="javascript:void(0)" class="left-off-canvas-toggle menu-icon">
<span> West Wong</span>
</a>
</nav>
<aside class="left-off-canvas-menu">
<ul class="off-canvas-list">
<li><a target="_self" href="index.html">Home</a></li>
<li><a target="_self" href="archives.html">Archives</a></li>
<li><label>Categories</label></li>
<li><a href="Design.html">Design</a></li>
<li><a href="Life.html">Life</a></li>
<li><a href="Work.html">Work</a></li>
<li><a href="Misc.html">Misc</a></li>
</ul>
</aside>
<a class="exit-off-canvas" href="#"></a>
<section id="main-content" role="main" class="scroll-container">
<script type="text/javascript">
$(function(){
$('#menu_item_index').addClass('is_active');
});
</script>
<div class="row">
<div class="large-8 medium-8 columns">
<div class="markdown-body home-categories">
<div class="article">
<a class="clearlink" href="16409395465290.html">
<h1>2022 春季书荐</h1>
<div class="a-content">
<div class="a-content-text">
<p>@王瑞青</p>
<p><img src="media/16409395465290/2022%20%E6%98%A5%E5%AD%A3%E7%B1%8D%E8%8D%90.png" alt="2022 春季籍荐" /></p>
<p>如下:<br />
<img src="media/16409395465290/%E7%84%A6%E8%99%91%E8%87%AA%E5%8A%A9%E7%96%97%E6%B3%95.png" alt="焦虑自助疗法" /></p>
<p>你是否被焦虑、恐惧或恐慌折磨?<br />
你是否在夜里辗转反侧,为工作、家庭、工作、健康或人际关系而烦恼?<br />
你是否有严重的羞怯、强迫性怀疑或不安全感?<br />
你可能没有意识到,这些恐惧几乎从来都不是基于现实。当你焦虑时,你实际上是在欺骗自己,告诉自己那些事情并非真的。<br />
过一种没有烦恼和自我怀疑的生活,晚上睡觉时感觉平静和放松,自信地和人一起玩乐,做充满活力的演讲……会是什么感觉?是充满积极性、生产力和自信。<br />
本书通过 40 多种简单、有效的技巧,让读者了解如何在不使用药物的情况下克服各种可能的焦虑。有了这 40 多种技巧,你的恐惧和焦虑就会立刻消失。Burns 博士也分享了关于焦虑和抑郁的药物的最新研究,并解释了为什么药物有时会弊大于利。<br />
这不是流行心理学,但其中的方法已被证明比药物更有效。对于焦虑的人来说,这是一本必不可少的实用手册。</p>
<hr />
<p><img src="media/16409395465290/%E6%99%AE%E9%80%9A%E8%AF%AD%E8%A8%80%E5%AD%A6%E6%95%99%E7%A8%8B.png" alt="普通语言学教程" /></p>
<p>费尔迪南·德·索绪尔(1857—1913),现代语言学的重要奠基者,也是结构主义的开创者之一,被后人称为“现代语言学之父”,结构主义的鼻祖。本书就近一百年间各国语言学界提出的语言学原理和方法表述了自己独到的见解和主张,为语言学研究提供了新的理论基础。本书首次把语言和言语区别开来,指出语言学的唯一的研究对象就是语言,而不是各人不同的言语,还区分了内部语言学和外部语言学,影响很广。</p>
<hr />
<p><img src="media/16409395465290/%E6%8C%BD%E6%95%91%E8%AE%A1%E5%88%92.png" alt="挽救计划" /></p>
<p>科技宅男 + 跨星系好(基)友联袂上演太空大救援。<br />
硬核工程风+幽默碎碎念打造年度科幻。<br />
出版后连续 16 周雄踞亚马逊科幻畅销榜。<br />
两个世界处于危险之中,一个有能力但有缺陷的人类,一个有能力的外星人,无休止的科学谜题有待解开,人类自身处于危险之中,这本书拥有老科幻迷所喜爱的一切。如果你喜欢满是科学的科幻小说,安迪·威尔就是最适合你的作家。——乔治·马丁《冰与火之歌》作者</p>
</div>
</div>
</a>
<div class="read-more clearfix">
<div class="more-left left">
<span class="date">2021/12/31</span>
<span>posted in </span>
<span class="posted-in"><a href='Life.html'>Life</a></span>
</div>
<div class="more-right right">
<span class="comments">
</span>
</div>
</div>
</div><!-- article -->
<div class="article">
<a class="clearlink" href="16323236469499.html">
<h1>2021 冬季书荐</h1>
<div class="a-content">
<div class="a-content-text">
<p>@王瑞青</p>
<p><img src="media/16323236469499/16337487513037.png" alt="2021 冬季书荐" /></p>
<p>如下:<br />
<img src="media/16323236469499/16337488099133.png" alt="蒙台梭利的早教全书" /></p>
<p>蒙台梭利的思想和教育方法,是当代幼儿教育的里程碑之作,也是全世界父母和幼儿教师必备的教育手册!她提出“敏感期”“精神胚胎”“有吸引力的心灵”等极具革命性的理念,深刻、科学地揭示了孩子成长的奥秘!她还反思了成人对儿童的教育,指出儿童的很多问题源于成人对待儿童的错误方式以及对他们产生的压抑,向成人提出了警示。</p>
<hr />
<p><img src="media/16323236469499/16337488387358.png" alt="世界观" /></p>
<p>从科学哲学的根本问题,到科学史上的历史事件和哲学主题,彰显了历史、科学、哲学的无止境魅力。本书化繁为简,剖析根本,纵观西方科学两千年,探讨近代科学发展,特别是相对论、量子力学和演化论等理论给世界观带来的冲击和挑战。 它拥有的不仅是知识,更是一套新的认知体系。<br />
本书纵论西方科学两千年,探索科学的起源和思维的本质。这是每一个现代人都需要阅读、了解的关于科学的历史和哲理,有助于读者构建正确的世界观。</p>
<hr />
<p><img src="media/16323236469499/16337488643279.png" alt="党员、党权与党争" /></p>
<p>本书考察国民党的组织形态,从国民党内部探寻其制度结构与运作机制,对国民党内部派系冲突、党务与党权在地方的运作、党与政和军的关系等做了细致的讨论。全书核心是国民党为“弱势独裁政党”,其组织的散漫性使其无法实现俄共式的一党专政,即有独裁之心而无独裁之力。作者指出,国民党始终未能建立一个具有严密渗透性和强大内聚力的政党组织体系,这是其最终失去政权的主要原因。</p>
</div>
</div>
</a>
<div class="read-more clearfix">
<div class="more-left left">
<span class="date">2021/09/22</span>
<span>posted in </span>
<span class="posted-in"><a href='Life.html'>Life</a></span>
</div>
<div class="more-right right">
<span class="comments">
</span>
</div>
</div>
</div><!-- article -->
<div class="article">
<a class="clearlink" href="16250648705661.html">
<h1>2021 秋季书荐</h1>
<div class="a-content">
<div class="a-content-text">
<p>@王瑞青</p>
<p><img src="media/16250648705661/2021%20%E7%A7%8B%E5%AD%A3%E4%B9%A6%E8%8D%90.png" alt="2021 秋季书荐" /></p>
<p>如下:<br />
<img src="media/16250648705661/%E4%B8%89%E5%9B%BD%E5%BF%97.png" alt="三国志" /><br />
《三国志》为西晋陈寿所撰,共六十五卷,其中《魏书》三十卷、《蜀书》十五卷、《吴书》二十卷,主要叙述三国时期的历史,与《史记》、《汉书》、《后汉书》并称“前四史”。南朝宋裴松为之注,引魏晋时人著述两百多种,丰富了陈寿《三国志》文本本身</p>
<hr />
<p><img src="media/16250648705661/%E6%9C%BA%E5%99%A8%E4%BA%BA%E5%A4%A7%E5%B8%88.png" alt="机器人大师" /><br />
“我们所追求的完美是我们的桎梏,因为不可预知性总会伴随着我们创造出的每一样东西!”<br />
他们是伟大的发明家,从人格交换机到末世论改造机,无所不造。<br />
他们不仅要一起面对宇宙中无解的难题,还要为谁是更强的发明家争得你死我活。<br />
他们是特鲁勒和克拉帕乌丘斯,别称:机器人大师</p>
<hr />
<p><img src="media/16250648705661/%E7%AC%AC%E4%B8%89%E5%B8%9D%E5%9B%BD%E4%B8%89%E9%83%A8%E6%9B%B2.png" alt="第三帝国三部曲" /><br />
第三帝国三部曲(理想国译丛 038-040 )包括《理想国译丛 038 第三帝国的到来》纳粹德国的前传,魏玛共和国的崩溃史。完整剖析纳粹崛起的缘由,生动还原希特勒攫取权力的过程。《理想国译丛 039 当权的第三帝国》重现和平时期的纳粹党,如何以残暴血腥的独裁手段,一步步清洗、动员、武装德意志民族,将德国改造成一架全力冲刺的战争机器。《理想国译丛 040 战时的第三帝国》透过宏观的战争描绘与普通人的战时经历,细致讲述纳粹的军事征服与极端的种族灭绝。再现德国如何点燃战火,彻底改变 20 世纪的世界局势与历史发展</p>
</div>
</div>
</a>
<div class="read-more clearfix">
<div class="more-left left">
<span class="date">2021/06/30</span>
<span>posted in </span>
<span class="posted-in"><a href='Life.html'>Life</a></span>
</div>
<div class="more-right right">
<span class="comments">
</span>
</div>
</div>
</div><!-- article -->
<div class="row">
<div class="large-6 columns">
<p class="text-left" style="padding-top:25px;">
<a href="Life_3.html">« Prev Page</a>
</p>
</div>
<div class="large-6 columns">
<p class="text-right" style="padding-top:25px;">
<a href="Life_5.html">» Next Page</a>
</p>
</div>
</div>
</div>
</div><!-- large 8 -->
<div class="large-4 medium-4 columns">
<div class="hide-for-small">
<div id="sidebar" class="sidebar">
<div id="site-info" class="site-info">
<h1>West Wong</h1>
<div class="site-des"></div>
<div class="social">
<a target="_blank" class="rss" href="atom.xml" title="RSS">RSS</a>
</div>
</div>
<div id="site-categories" class="side-item ">
<div class="side-header">
<h2>Categories</h2>
</div>
<div class="side-content">
<p class="cat-list">
<a href="Design.html"><strong>Design</strong></a>
<a href="Life.html"><strong>Life</strong></a>
<a href="Work.html"><strong>Work</strong></a>
<a href="Misc.html"><strong>Misc</strong></a>
</p>
</div>
</div>
<div id="site-categories" class="side-item">
<div class="side-header">
<h2>Recent Posts</h2>
</div>
<div class="side-content">
<ul class="posts-list">
<li class="post">
<a href="17319103266708.html">创业记 202411</a>
</li>
<li class="post">
<a href="17286907061177.html">2024 冬季书荐</a>
</li>
<li class="post">
<a href="17236807479993.html">2024 秋季书荐</a>
</li>
<li class="post">
<a href="17225879177233.html">创业记 202408</a>
</li>
<li class="post">
<a href="17181637581908.html">2024 夏季书荐</a>
</li>
</ul>
</div>
</div>
</div><!-- sidebar -->
</div><!-- hide for small -->
</div><!-- large 4 -->
</div><!-- row -->
<div class="page-bottom clearfix">
<div class="row">
<p class="copyright">Copyright © 2015
Powered by <a target="_blank" href="http://www.mweb.im">MWeb</a>,
Theme used <a target="_blank" href="http://github.com">GitHub CSS</a>.</p>
</div>
</div>
</section>
</div>
</div>
<style>.mweb-charts{background:#fff;}
body{ box-sizing: border-box;
margin: 0 auto;}
@media print{
pre, code, pre code {
overflow: visible !important;
white-space: pre-wrap !important; /* css-3 */
white-space: -moz-pre-wrap !important; /* Mozilla, since 1999 */
white-space: -pre-wrap !important; /* Opera 4-6 */
white-space: -o-pre-wrap !important; /* Opera 7 */
word-wrap: break-word !important; /* Internet Explorer 5.5+ */
}
html,body{margin:0;padding:4px;}
}
div.code-toolbar {
position: relative;
}
div.code-toolbar > .toolbar {
position: absolute;
z-index: 10;
top: .3em;
right: .2em;
transition: opacity 0.3s ease-in-out;
opacity: 0;
}
div.code-toolbar:hover > .toolbar {
opacity: 1;
}
/* Separate line b/c rules are thrown out if selector is invalid.
IE11 and old Edge versions don't support :focus-within. */
div.code-toolbar:focus-within > .toolbar {
opacity: 1;
}
div.code-toolbar > .toolbar > .toolbar-item {
display: inline-block;
}
div.code-toolbar > .toolbar > .toolbar-item > a {
cursor: pointer;
}
div.code-toolbar > .toolbar > .toolbar-item > button {
background: none;
border: 0;
color: inherit;
font: inherit;
line-height: normal;
overflow: visible;
padding: 0;
-webkit-user-select: none; /* for button */
-moz-user-select: none;
-ms-user-select: none;
}
div.code-toolbar > .toolbar > .toolbar-item > a,
div.code-toolbar > .toolbar > .toolbar-item > button,
div.code-toolbar > .toolbar > .toolbar-item > span {
color: inherit;
font-size: .8em;
padding: 4px .5em;
background: #f5f2f0;
background: rgba(224, 224, 224, 0.4);
box-shadow: 0 2px 0 0 rgba(0,0,0,0.2);
border-radius: .5em;
}
div.code-toolbar > .toolbar > .toolbar-item > a:hover,
div.code-toolbar > .toolbar > .toolbar-item > a:focus,
div.code-toolbar > .toolbar > .toolbar-item > button:hover,
div.code-toolbar > .toolbar > .toolbar-item > button:focus,
div.code-toolbar > .toolbar > .toolbar-item > span:hover,
div.code-toolbar > .toolbar > .toolbar-item > span:focus {
color: inherit;
text-decoration: none;
}
</style>
<style type="text/css">
figure{margin: 0;padding: 0;}
figcaption{text-align:center;}
/* PrismJS 1.14.0
http://prismjs.com/download.html#themes=prism&languages=markup+css+clike+javascript */
/**
* prism.js default theme for JavaScript, CSS and HTML
* Based on dabblet (http://dabblet.com)
* @author Lea Verou
*/
code[class*="language-"],
pre[class*="language-"] {
color: black;
background: none;
text-shadow: 0 1px white;
font-family: Consolas, Monaco, 'Andale Mono', 'Ubuntu Mono', monospace;
text-align: left;
white-space: pre;
word-spacing: normal;
word-break: normal;
word-wrap: normal;
line-height: 1.5;
-moz-tab-size: 4;
-o-tab-size: 4;
tab-size: 4;
-webkit-hyphens: none;
-moz-hyphens: none;
-ms-hyphens: none;
hyphens: none;
}
pre[class*="language-"]::-moz-selection, pre[class*="language-"] ::-moz-selection,
code[class*="language-"]::-moz-selection, code[class*="language-"] ::-moz-selection {
text-shadow: none;
background:#b3d4fc;
}
pre[class*="language-"]::selection, pre[class*="language-"] ::selection,
code[class*="language-"]::selection, code[class*="language-"] ::selection {
text-shadow: none;
background: #b3d4fc;
}
@media print {
code[class*="language-"],
pre[class*="language-"] {
text-shadow: none;
}
}
/* Code blocks */
pre[class*="language-"] {
padding: 1em;
margin: .5em 0;
overflow: auto;
}
:not(pre) > code[class*="language-"],
pre[class*="language-"] {
background: #F7F7F7;
}
/* Inline code */
:not(pre) > code[class*="language-"] {
padding: .1em;
border-radius: .3em;
white-space: normal;
}
.token.comment,
.token.prolog,
.token.doctype,
.token.cdata {
color: slategray;
}
.token.punctuation {
color: #999;
}
.namespace {
opacity: .7;
}
.token.property,
.token.tag,
.token.boolean,
.token.number,
.token.constant,
.token.symbol,
.token.deleted {
color: #905;
}
.token.selector,
.token.attr-name,
.token.string,
.token.char,
.token.builtin,
.token.inserted {
color: #690;
}
.token.operator,
.token.entity,
.token.url,
.language-css .token.string,
.style .token.string {
color: #9a6e3a;
background: hsla(0, 0%, 100%, .5);
}
.token.atrule,
.token.attr-value,
.token.keyword {
color: #07a;
}
.token.function,
.token.class-name {
color: #DD4A68;
}
.token.regex,
.token.important,
.token.variable {
color: #e90;
}
.token.important,
.token.bold {
font-weight: bold;
}
.token.italic {
font-style: italic;
}
.token.entity {
cursor: help;
}
pre[class*="language-"].line-numbers {
position: relative;
padding-left: 3.8em;
counter-reset: linenumber;
}
pre[class*="language-"].line-numbers > code {
position: relative;
white-space: inherit;
}
.line-numbers .line-numbers-rows {
position: absolute;
pointer-events: none;
top: 0;
font-size: 100%;
left: -3.8em;
width: 3em; /* works for line-numbers below 1000 lines */
letter-spacing: -1px;
border-right: 1px solid #999;
-webkit-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
}
.line-numbers-rows > span {
pointer-events: none;
display: block;
counter-increment: linenumber;
}
.line-numbers-rows > span:before {
content: counter(linenumber);
color: #999;
display: block;
padding-right: 0.8em;
text-align: right;
}
</style>
<script src="asset/js/foundation.min.js"></script>
<script>
$(document).foundation();
function fixSidebarHeight(){
var w1 = $('.markdown-body').height();
var w2 = $('#sidebar').height();
if (w1 > w2) { $('#sidebar').height(w1); };
}
$(function(){
fixSidebarHeight();
})
$(window).load(function(){
fixSidebarHeight();
});
</script>
</body>
</html>