-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathLife_1.html
694 lines (488 loc) · 21.9 KB
/
Life_1.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
<!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="17043643777425.html">
<h1>2024 春季书荐</h1>
<div class="a-content">
<div class="a-content-text">
<p>@王瑞青</p>
<p><img src="media/17043643777425/2024%20%E6%98%A5%E5%AD%A3%E4%B9%A6%E8%8D%90.png" alt="2024 春季书荐" /></p>
<p>三本书如下</p>
<h2><a id="%E5%88%9B%E9%80%A0%E6%96%B0%E6%97%A5%E6%9C%AC" class="anchor" aria-hidden="true"><span class="octicon octicon-link"></span></a>创造新日本</h2>
<p><img src="media/17043643777425/%E5%88%9B%E9%80%A0%E6%96%B0%E6%97%A5%E6%9C%AC.png" alt="创造新日本" /></p>
<p>日本,紧凑、同质、紧密团结,害怕无序;美国,庞大、开放,害怕经济危机,不断谋求国际市场。本书即讲述了自 1853 年以来这两个国家之间的分歧、冲突、战争与合作,以及其背后的爱恨故事。通过运用美日两国的文献材料,拉夫伯尔为我们呈现了重新武装日本背后的曲折、现代美日贸易谈判中的紧张、日本在为美国巨额赤字提供资金方面的持续重要性,以及两国开拓中国市场的动力</p>
<h2><a id="%E7%A4%BE%E4%BC%9A%E5%A5%91%E7%BA%A6%E8%AE%BA" class="anchor" aria-hidden="true"><span class="octicon octicon-link"></span></a>社会契约论</h2>
<p><img src="media/17043643777425/%E7%A4%BE%E4%BC%9A%E5%A5%91%E7%BA%A6%E8%AE%BA.png" alt="社会契约论" /></p>
<p>本书是十八世纪法国启蒙思想家、法国大革命的思想先驱卢梭 (1712-1778) 的一部政治哲学著作。它探讨的是政治权利的原理,它的主旨是为人民民主主权的建立奠定理论基础。本书分为四卷:第一卷论述了社会结构和社会契约,第二卷阐述主权及其权利,第三卷阐述政府及其运作形式,第四卷讨论几种社会组织。书中所提倡的民主理论很快风靡世界,不仅引发了震惊世界的法国大革命,亦为美国《独立宣言》、法国《人权宣言》等奠定了理论基础。本书第一次提出了“天赋人权”和“主权在民”的思想,后者是现代民主制度的基石</p>
<h2><a id="%E5%90%9B%E4%B8%BB%E8%AE%BA" class="anchor" aria-hidden="true"><span class="octicon octicon-link"></span></a>君主论</h2>
<p><img src="media/17043643777425/%E5%90%9B%E4%B8%BB%E8%AE%BA.png" alt="君主论" /></p>
<p>作者马基雅维里 (1469-1527) ,近代政治思想的主要奠基人。在中世纪后期的政治思想家中,马基雅维里第一个明显地摆脱了神学和伦理学的束缚,为政治学和法学开辟了走向独立学科的道路。本书是马基雅维里的代表作,被誉为 “一本毁誉参半的奇书,一直被奉为欧洲历代君主的案头之书,政治家的最高指南,统治阶级巩固其统治的治国原则,人类有史以来对政治斗争技巧最独到最精辟的解剖”。本书自 1532 年开始印行,迄今 480 多年,被西方评论界列为是与《圣经》《资本论》等相提并论的、影响人类历史的十部著作之一</p>
</div>
</div>
</a>
<div class="read-more clearfix">
<div class="more-left left">
<span class="date">2024/01/04</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="17007959324178.html">
<h1>2023 冬季书荐</h1>
<div class="a-content">
<div class="a-content-text">
<p>@王瑞青</p>
<p><img src="media/17007959324178/2023%20%E5%86%AC%E5%AD%A3%E4%B9%A6%E8%8D%90.png" alt="2023 冬季书荐" /></p>
<p>如下:</p>
<p><img src="media/17007959324178/%E8%B4%A2%E5%8A%A1%E6%8A%A5%E8%A1%A8%E5%88%86%E6%9E%90%E4%B8%8E%E8%82%A1%E7%A5%A8%E4%BC%B0%E5%80%BC.png" alt="财务报表分析与股票估值" /></p>
<p>作者郭永清,博士,上海国家会计学院教授,上海财经大学博士生导师,财政部企业会计准则咨询委员会委员,多家上市公司独立董事。长期从事会计标准与财务战略决策的研究与教学工作,在财务报表分析、企业全面风险管理和内部控制、会计准则解释与应用、公司估值、管理会计和财务战略决策等方面有比较深入的研究。著有《财务报表分析与股票估值》《管理会计实践》等</p>
<hr />
<p><img src="media/17007959324178/%E7%B9%81%E8%8D%A3%E4%B8%8E%E5%81%9C%E6%BB%9E.png" alt="繁荣与停滞" /><br />
本书深入、细致、全面地介绍了日本经济从二战后至 21 世纪第二个十年的发展与转型历程,特别是通过高速增长实现起飞和赶超,应对经济崛起之后的贸易冲突、增速下降和人口老龄化,泡沫经济的产生、破灭与 “失去的 20 年”,以及之后的经济结构调整与转型,这有助于了解日本从贫困走向富裕的整个发展历程,并从中汲取经验和教训。严谨的学术训练和丰富的政策经验,使本书两位作者对日本经济的历史经验、主要特征、运行机制、面临的挑战与政策应对有着深刻的认识。本书是对日本经济发展历程全景式的描述和解释,适合对日本经济感兴趣的普通读者和专业人士阅读</p>
<hr />
<p><img src="media/17007959324178/%E6%B8%B8%E6%88%8F%E7%BB%93%E6%9D%9F.png" alt="游戏结束" /></p>
<p>1983 年,雅达利冲击爆发,大量劣质游戏与疯狂的价格战,导致北美电子游戏市场陷入大萧条,行业营收自三十二亿美元一度骤降至一亿美元,跌幅高达 97%,大批游戏公司宣告破产。与此同时,位于日本京都、以花札起家的任天堂在山内溥掌舵下,于同年成功推出家用游戏主机红白机,继而于 1985 年将其推向大洋彼岸。由荒川实一手打造的北美任天堂,直面已成废墟的游戏行业及噤若寒蝉的零售渠道,打响一场史无前例的销售战役,几乎以一己之力重塑北美电子游戏市场。经过几年辛勤耕耘,任天堂不仅一举奠定龙头地位,还以严苛的权利金制度和首创的锁机芯片,构建起家用游戏机的基本商业模式,对现代电子游戏行业产生深远影响 ...</p>
</div>
</div>
</a>
<div class="read-more clearfix">
<div class="more-left left">
<span class="date">2023/11/24</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="16880975074467.html">
<h1>2023 秋季书荐</h1>
<div class="a-content">
<div class="a-content-text">
<p>@王瑞青</p>
<p><img src="media/16880975074467/2023%20%E7%A7%8B%E5%AD%A3%E4%B9%A6%E8%8D%90.png" alt="2023 秋季书荐" /></p>
<p>如下:</p>
<p><img src="media/16880975074467/%E8%81%AA%E6%98%8E%E7%9A%84%E6%8A%95%E8%B5%84%E8%80%85.png" alt="聪明的投资者" /></p>
<p>本书着重介绍防御型投资者与积极型投资者的投资组合策略,论述了投资者如何应对市场波动。本书还对基金投资、投资者与投资顾问的关系、普通投资者证券分析的一般方法、防御型投资者与积极型投资者的证券选择、可转换证券及认股权证等问题进行了详细阐述</p>
<p>TIP:本杰明·格雷厄姆,著有《证券分析》(1934 年) 和《聪明的投资者》(1949 年),这两本书被公认为 “划时代的、里程碑式的投资圣经”</p>
<hr />
<p><img src="media/16880975074467/%E5%AE%89%E5%85%A8%E8%BE%B9%E9%99%85.png" alt="安全边际" /></p>
<p>本书的书名取自本杰明·格雷厄姆经常强调的箴言:投资始终要有安全边际。作者卡拉曼在书中解释了价值投资理念,更重要的是,它解释了这一理念背后的逻辑,证明了为什么价值投资能够成功,而其他方法会失败。如果投资者认真遵循卡拉曼提供的方法,就非常有可能以有限的风险获得投资成功</p>
<hr />
<p><img src="media/16880975074467/%E8%82%A1%E5%B8%82%E7%9C%9F%E8%A7%84%E5%88%99.png" alt="股市真规则" /></p>
<p>对于不愿意 “人云亦云” 的投资者来说,这本公认的个人投资理财圣经将为你指明方向,告诉你公司价值研究、股票估值和投资策略的秘密,它将帮助投资者挑选正确的股票、发现好的公司、理解不同行业背后的驱动力</p>
</div>
</div>
</a>
<div class="read-more clearfix">
<div class="more-left left">
<span class="date">2023/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.html">« Prev Page</a>
</p>
</div>
<div class="large-6 columns">
<p class="text-right" style="padding-top:25px;">
<a href="Life_2.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>