-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
1040 lines (768 loc) · 54.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>
<head>
<meta charset="utf-8">
<title>Union</title>
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1" />
<meta name="description" content="personal">
<meta property="og:type" content="website">
<meta property="og:title" content="Union">
<meta property="og:url" content="https://genesis2011.github.io/index.html">
<meta property="og:site_name" content="Union">
<meta property="og:description" content="personal">
<meta name="twitter:card" content="summary">
<meta name="twitter:title" content="Union">
<meta name="twitter:description" content="personal">
<link rel="stylesheet" href="/vendor/font-awesome/css/font-awesome.min.css">
<link rel="stylesheet" href="/vendor/open-sans/styles.css">
<link rel="stylesheet" href="/vendor/source-code-pro/styles.css">
<link rel="stylesheet" href="/css/style.css">
<script src="/vendor/jquery/2.1.3/jquery.min.js"></script>
<link rel="stylesheet" href="/vendor/fancybox/jquery.fancybox.css">
</head>
<body>
<div id="container">
<header id="header">
<div id="header-main" class="header-inner">
<div class="outer">
<a href="/" id="logo">
<i class="logo"></i>
<span class="site-title">Union</span>
</a>
<nav id="main-nav">
<a class="main-nav-link" href="/.">Home</a>
<a class="main-nav-link" href="/archives">Archives</a>
<a class="main-nav-link" href="/about">About</a>
<a class="main-nav-link" href="/bookshelf">Bookshelf</a>
</nav>
<nav id="sub-nav">
<div class="profile" id="profile-nav">
<a id="profile-anchor" href="javascript:;">
<img class="avatar" src="/css/images/avatar.png" />
<i class="fa fa-caret-down"></i>
</a>
</div>
</nav>
<div id="search-form-wrap">
<form class="search-form">
<input type="text" class="ins-search-input search-form-input" placeholder="Cari" />
<button type="submit" class="search-form-submit"></button>
</form>
<div class="ins-search">
<div class="ins-search-mask"></div>
<div class="ins-search-container">
<div class="ins-input-wrapper">
<input type="text" class="ins-search-input" placeholder="Type something..." />
<span class="ins-close ins-selectable"><i class="fa fa-times-circle"></i></span>
</div>
<div class="ins-section-wrapper">
<div class="ins-section-container"></div>
</div>
</div>
</div>
<script>
(function (window) {
var INSIGHT_CONFIG = {
TRANSLATION: {
POSTS: 'pos',
PAGES: 'Pages',
CATEGORIES: 'kategori',
TAGS: 'tag',
UNTITLED: '(Untitled)',
},
ROOT_URL: '/',
CONTENT_URL: '/content.json',
};
window.INSIGHT_CONFIG = INSIGHT_CONFIG;
})(window);
</script>
<script src="/js/insight.js"></script>
</div>
</div>
</div>
<div id="main-nav-mobile" class="header-sub header-inner">
<table class="menu outer">
<tr>
<td><a class="main-nav-link" href="/.">Home</a></td>
<td><a class="main-nav-link" href="/archives">Archives</a></td>
<td><a class="main-nav-link" href="/about">About</a></td>
<td><a class="main-nav-link" href="/bookshelf">Bookshelf</a></td>
<td>
<div class="search-form">
<input type="text" class="ins-search-input search-form-input" placeholder="Cari" />
</div>
</td>
</tr>
</table>
</div>
</header>
<div class="outer">
<aside id="profile">
<div class="inner profile-inner">
<div class="base-info profile-block">
<img id="avatar" src="/css/images/avatar.png" />
<h2 id="name">Genesis2011</h2>
<h3 id="title">Student</h3>
<span id="location"><i class="fa fa-map-marker"></i>Zibo, China</span>
<a id="follow" target="_blank" href="https://github.com/Genesis2011/">IKUTI</a>
</div>
<div class="article-info profile-block">
<div class="article-info-block">
4
<span>pos</span>
</div>
<div class="article-info-block">
5
<span>tag</span>
</div>
</div>
<div class="profile-block social-links">
<table>
<tr>
<td>
<a href="http://github.com/Genesis2011" target="_blank" title="github" class=tooltip>
<i class="fa fa-github"></i>
</a>
</td>
</tr>
</table>
</div>
</div>
</aside>
<section id="main">
<article id="post-天荒地老,奋斗不老" class="article article-type-post" itemscope itemprop="blogPost">
<div class="article-inner">
<header class="article-header">
<h1 itemprop="name">
<a class="article-title" href="/2017/04/11/天荒地老,奋斗不老/">天荒地老,奋斗不老</a>
</h1>
<div class="article-meta">
<div class="article-date">
<i class="fa fa-calendar"></i>
<a href="/2017/04/11/天荒地老,奋斗不老/">
<time datetime="2017-04-11T04:34:25.000Z" itemprop="datePublished">2017-04-11</time>
</a>
</div>
<div class="article-tag">
<i class="fa fa-tag"></i>
<a class="tag-link" href="/tags/Summary/">Summary</a>, <a class="tag-link" href="/tags/转载/">转载</a>
</div>
</div>
</header>
<div class="article-entry" itemprop="articleBody">
<p>之前看到一篇文章《新阶级通论:收割者与时间战场》(微信公众号:筹码),倍感现实的残酷,充分诠释了达尔文的观点:物竞天择,适者生存。</p>
<p>站在大三下的分岔路口,面对考研、工作等道路,不管我们做出何种选择,每一天都要全力以赴。</p>
<p>下面是转载的这篇文章内容:</p>
<hr>
<p>2017年已经注定的是中国中产嗷嗷叫的一年,此时起,『阶级固化』深入骨髓,我们越来越像一个那个我们曾经口诛笔伐的『万恶的资本主义』:</p>
<ol>
<li><strong>中产屌丝化</strong>:以土地恢复阶级划分。中产和屌丝的区别是谁的负债更多一点。</li>
<li><strong>货币信仰裂痕</strong>:人民币信任度屡创新低,排列在房产、美元、食品之后。这年头连老太太都不敢存钱了,几乎全民押注人民币持续贬值,纷纷用资产来和央行对赌,去拼命购买无法印刷的土地。</li>
<li><strong>阶级门票高涨</strong>:教育成为阶级军火,从幼儿园开始的新科举之路,一线城市一个孩子上学的开支等于买一辆解放军99式主战坦克。</li>
</ol>
<p>中产们恐慌了,选择用房地产捍卫阶级。但是,当全社会60%以上的财富都在固定资产上的时候,几十万亿级别获利盘的规模是根本无法兑现的,一旦集体兑现,就挂了。</p>
<p>我们今天可以说,房产永远涨,这种心态,就像猪儿们都说,饲养员永远爱它一样。对于饲养员来说,99.9%的时间,是真的爱猪如子。等到足够肥,该出栏了,饲养员真正的思考的问题只有一个,最终采取的处理方式人道与否。</p>
<p>天地不仁,以万物为刍狗。就像筹码社群中发起的『学区房悖论』:<strong>为什么学区房值钱,而学历不值钱?为什么读了清华也买不起房,干嘛还要买学区房?</strong>根源不能讨论,但是出路需要思考。</p>
<p><em>1</em> 阶层竞争的本质与终局</p>
<p><strong>我们集体攀爬社会阶层,归根结底,想争夺的是生存的选择权:时间+空间的自由。</strong></p>
<p>过去,只有贵族才有的选。在1900年,美国人均寿命期望不过47岁,我国不会好于这个数字,只有李鸿章大人这种当朝一品贵胄,才能活过70岁,大部分老百姓的寿命会停止在40岁之前。</p>
<p><strong>饥荒、战乱,在我们的DNA 里面留下了贪婪和恐惧的指令,一定要活下来,看到别人跑,就一定要跑的比别人快。我们都知道,每上升一个阶层,存活的概率就会极大提高。</strong></p>
<p>向上攀爬是没错的,只是时代发展太快了,我们的思维还在农业社会,时代却已经进入到互联网社会了。</p>
<p>筹码团队认为在中国,阶级竞争的焦点不会在房产停留太久,会很快向前切换,不断升级演变:</p>
<ol>
<li>开局是地产(静态博弈,一劳永逸);</li>
<li>中场是教育(动态博弈,价值提升);</li>
<li>终局是时间(全局博弈,拿钱买命)。</li>
</ol>
<p><em>2</em> 静态博弈 地产改变命运的幻觉</p>
<p>地产的估值支撑,是生产资料的捆绑,是纳税管道,是农业思维形成的长期惯性:土地意味着一切。 </p>
<p>恰好,地产可以参与信用的创造。在过去20年里,凡是参与政府共同做市,扩大房地产行业税基的开发商和囤房者,都撬动了大量财富。得益于此,我们国家从从资本紧缺、严重依赖美元,到资本泛滥到处投资,只花了不到20年,成果斐然。</p>
<p>如今,我们的地产已经达到GDP250% ,同时,大家对高价持有的物业也给予了越来越大的回报希望,可是接盘侠的人数和资金更多了吗?所有人都在说京沪永远涨,和上两轮股灾太像。</p>
<p><strong>真正主导利益分配的不是房本,而是权力和更大的利益格局。京沪永远涨的前提是**</strong>经济发展模式的永远不换轨。**</p>
<p>我们的经济发展模式是在GDP+政治强化引导后的产物。GDP是1934年哈佛大学经济学家西蒙·史密斯·库兹涅茨在给美国国会的报告中正式提的,居然沿用到现在。 二战之前的指标,主要为了工业和战争服务,数量是一切的核心。70多年前的指标,指导70年后的经济发展,结果可想而知。</p>
<p>GDP忽视了系统熵,忽视了外部性,也无法衡量新技术的进步,只热衷于量的堆砌。这种被异化的命令,无异于神经毒素,永远推动着经济体走向肢端肥大症,并可能重现欧洲的早期的错误:为了工业,牺牲一切;为了发展,炮轰一切。</p>
<p>今天,为了GDP,通过房地产收割年轻一代,和为了炼钢,乱砍乱伐是根源一致的。 虽然代价实质上更大,但GDP的反馈却在鼓励我们继续下去。如果这种逆向激励持续下去,读书显然没有买房有用啊,人民币没有房本有用,我们又会重复晚清的教训:GDP全球第一,4亿人口,地大物博,但是被八国联军的百人小分队占领首都,典型的肢端肥大,毫无竞争力。</p>
<p>今天,技术加速进步,历史进程推进迭代速度10+倍于过去,人才的投资回报率轻松碾压房产。月租金3万的房子不常有,待遇超过3万的码农可是越来越多见。游戏的规则在慢慢改变,我们不能只看到财务回报,就以为自己主宰命运了。</p>
<p><em>3</em> 动态博弈 提升成功概率的阶级军火</p>
<p>我们一直看多教育,最终的估值是向军工体系看齐,是阶级竞争的工具,是提升成功概率的武器,是博弈从静态走向动态的标志。</p>
<p>因为,有了房产的中产阶级会发现,有限的顶层位置,依然关闭着。</p>
<p>房本一开始是敲门砖,后来站票都算不上。权力和资源的分配都是动态的。当全部的精英都聚集在北上广深,他们的子女在同一起跑线竞争,没有超过其他人的教育,只靠房产根本无法提高胜出概率。</p>
<p>重视教育并不是亚洲家长的偏执,而是社会发展的必然:</p>
<ol>
<li><strong>高薪工作所需的技能和知识壁垒在不断加高</strong></li>
<li><strong>技术的进步在加速阶层的洗牌和分化,高知阶层碾压底层是常态</strong></li>
<li><strong>保持足够强的学习能力是保持在本阶层的关键。</strong></li>
</ol>
<p>古人说,朝中不可无人,如今,是常春藤里不可无人。这些年里,从核弹、半导体、计算机、互联网、生物医药,金融市场,哪一项不是顶尖高知分子和顶层阶级全面收割落后分子/国家?<strong>智商税是这个地球上最重的赋税。</strong></p>
<p>成为收割者集团的成员或者公民,是新生代父母的愿望。和中国一样,这催生了美国庞大的『高考复读班产业』。以总部在纽约的Kaplan卡普兰教育集团为例,1994年收入仅800万美元,如今已经是全球最顶尖的终身教育集团之一,收购了好多所大学,每年覆盖100万学生,年收入超过30亿美元,是巴菲特最爱的公司(华盛顿邮报旗下产业,因为太有钱而私有化),没有之一。 </p>
<p>竞争还在延伸,许多贵族预备学校纷纷把学制下延到每年学费几万美元的贵族幼儿园,这些名牌幼儿园的入学名额有限,除了学费外,通常还会有10-20万美元额外的捐赠。</p>
<p>中国的教育市场也更加白热化,51talk(COE)、新东方(EDU)、好未来(TAL)、达内教育(TEDU),正保远程教育(DL)等,是国内赴海外上市公司数量最多的板块。 其中,新东方和好未来,更是阿里和百度之后,最大的中概旗舰,估值的持续上涨,折射了从资本到需求的全面看多。</p>
<p>教育的终极是什么? 目前看,更像软件业。想想看,为PC 安装操作系统的微软,市值2000亿美元,为人类安装操作系统的教育产业,怎么可能价值更低呢?在人类社会的动态博弈中,教育的需求是长期的,动态的,就像武器一样,你可以不用,但不能没有,捍卫阶层和Offer的时候,你绝不会后悔多一个技能。</p>
<p><em>4</em> 全局博弈 时间战场的终极支配和自由</p>
<p>老龄化正在重塑整个世界。 </p>
<p>我们不妨看看全球的年龄中位数,<strong>中国中位数年龄已经高达36.7岁,即:有50%的人的年龄> 36.7岁。**</strong>这样的中国,是3000多年中国历史,乃至100万年的人类进化史从来没有的现象。**</p>
<p>全世界,10亿以上的人口在未来进入80-100岁区间,我们的一切基础设施都没有准备好,谁能够多活几年,就变成了医疗行业的最残酷的资源竞价。</p>
<p><strong>大量富裕的老年人,推动了时间价值的全面重估。拿钱买命,是持续很多年的投资的核心逻辑。拿钱续命的价格比房子便宜算我输。</strong></p>
<p>本来,命是无法延续的,时间对所有人都是公平的。但是技术进步,药品会帮助人类穿越时间线,让时间真正的不公平起来<strong>,实现真正的阶级不平等。</strong></p>
<blockquote>
<p>一个场景:2067年,80岁的小明办理了退休,确实老了,自己的DNA健全程度越来越差,疾病和癌变始终伴随着他。虽然寿命快到了,可是家里还有110岁的老娘要赡养,自己买不起延寿的药物,更换不起器官和身体,只能慢慢走向死亡。公司里的健身房,癌症痊愈后的董事长还在美女教练的陪伴下举铁,110多岁的人了,花了15亿更换了心肺,注射了 1针2000万的抗衰老药物,如今看起来和50岁的人差不多。</p>
</blockquote>
<p>对于小明来说,时间公平吗? </p>
<p>公平将最终被消灭,就好像它从未存在过一样。<strong>国家将变成一个付费网游社区,能够活多久,取决于你创造的价值,或者你充值的费用。</strong></p>
<p>我们要知道,衰老和癌变是医学界的两座大山,技术正在狠狠的攻击这两座大山,并有望在10年内确定性的取得重大突破。</p>
<p>最近暴涨的Kite Pharma(NASDAQ:KITE)在研制CAR-T新药Axicabtagene Ciloleucel,这药大致原理就是:</p>
<ol>
<li>从病人身上提取合适的免疫T细胞;</li>
<li>基因改造这个细胞,类似于装上GPS专门打击癌细胞;</li>
<li>大量培养这种改造过的免疫细胞;</li>
<li>注射回病人体内;</li>
<li>开挂的T细胞开始在体内扫荡癌细胞。</li>
</ol>
<p>这种治疗中,安装不同的GPS(靶点)就是应对不同的癌症类型。目前还没有一个CAR-T上市。Kite这药如果顺利将是人类第一个获批的CAR-T治疗,这种治疗手段极为暴力,效果明显,但是有小概率直接把病人毒死。</p>
<p>同样,衰老的大山在人类的进攻中走向坍塌。</p>
<p>数十年的研究终于有所突破,美国加州大学的博士后研究员伊莉莎·拉扎里(Elisa Lazzari)研究发现,细胞的RNA具有可用于识别细胞衰老的特性,因此,可以尝试在细胞DNA年老力衰时,用人工接管RNA来控制基因表达合成蛋白质。在这种思路指导下,阿肯色州的研究团队已经研制出一种新化合物 ,成功清除老鼠身血液里的老化造血细胞,使老鼠的造血功能保持活力。进而使老鼠的整个身体状况都得到改善。在人类医院中,这种RNA手段的疗法已经被引入临床,在癌症和感染等科室中使用。</p>
<p>技术的进步,将我们人类的竞争,甚至最终的货币体系,都指向时间战场。治疗癌症、延长2年寿命、换一个心脏,都是明码标价,并与时间挂钩。当我们看着高等阶级的大人物,有能力向天再借500年的时候,他的孩子开始从云端下载各项逆天的技能的时候,还是普通寿命的你,看着一事无成的傻逼孩子,还会守着去炒房么?</p>
<p>我们的时代在加速前行。不要停留在过去的估值体系里面陶醉,甚至拼命加杠杆。时间将成为终极的成本,人口是终极的资源,阶级,还是终极的稀缺。</p>
</div>
<footer class="article-footer">
<div class="share-container">
</div>
<a data-url="https://genesis2011.github.io/2017/04/11/天荒地老,奋斗不老/" data-id="cjaxz931u0005i8l5zoaar677" class="article-share-link"><i class="fa fa-share"></i>Bagikan</a>
<script>
(function ($) {
// Prevent duplicate binding
if (typeof(__SHARE_BUTTON_BINDED__) === 'undefined' || !__SHARE_BUTTON_BINDED__) {
__SHARE_BUTTON_BINDED__ = true;
} else {
return;
}
$('body').on('click', function() {
$('.article-share-box.on').removeClass('on');
}).on('click', '.article-share-link', function(e) {
e.stopPropagation();
var $this = $(this),
url = $this.attr('data-url'),
encodedUrl = encodeURIComponent(url),
id = 'article-share-box-' + $this.attr('data-id'),
offset = $this.offset(),
box;
if ($('#' + id).length) {
box = $('#' + id);
if (box.hasClass('on')){
box.removeClass('on');
return;
}
} else {
var html = [
'<div id="' + id + '" class="article-share-box">',
'<input class="article-share-input" value="' + url + '">',
'<div class="article-share-links">',
'<a href="https://twitter.com/intent/tweet?url=' + encodedUrl + '" class="fa fa-twitter article-share-twitter" target="_blank" title="Twitter"></a>',
'<a href="https://www.facebook.com/sharer.php?u=' + encodedUrl + '" class="fa fa-facebook article-share-facebook" target="_blank" title="Facebook"></a>',
'<a href="http://pinterest.com/pin/create/button/?url=' + encodedUrl + '" class="fa fa-pinterest article-share-pinterest" target="_blank" title="Pinterest"></a>',
'<a href="https://plus.google.com/share?url=' + encodedUrl + '" class="fa fa-google article-share-google" target="_blank" title="Google+"></a>',
'</div>',
'</div>'
].join('');
box = $(html);
$('body').append(box);
}
$('.article-share-box.on').hide();
box.css({
top: offset.top + 25,
left: offset.left
}).addClass('on');
}).on('click', '.article-share-box', function (e) {
e.stopPropagation();
}).on('click', '.article-share-box-input', function () {
$(this).select();
}).on('click', '.article-share-box-link', function (e) {
e.preventDefault();
e.stopPropagation();
window.open(this.href, 'article-share-box-window-' + Date.now(), 'width=500,height=450');
});
})(jQuery);
</script>
<a href="https://genesis2011.github.io/2017/04/11/天荒地老,奋斗不老/#comments" class="article-comment-link disqus-comment-count" data-disqus-url="https://genesis2011.github.io/2017/04/11/天荒地老,奋斗不老/">Komentar</a>
</footer>
</div>
</article>
<article id="post-下架图书" class="article article-type-post" itemscope itemprop="blogPost">
<div class="article-inner">
<header class="article-header">
<h1 itemprop="name">
<a class="article-title" href="/2016/10/25/下架图书/">下架图书</a>
</h1>
<div class="article-meta">
<div class="article-date">
<i class="fa fa-calendar"></i>
<a href="/2016/10/25/下架图书/">
<time datetime="2016-10-25T13:54:35.000Z" itemprop="datePublished">2016-10-25</time>
</a>
</div>
<div class="article-tag">
<i class="fa fa-tag"></i>
<a class="tag-link" href="/tags/下架/">下架</a>
</div>
</div>
</header>
<div class="article-entry" itemprop="articleBody">
<p>下架图书还想借阅的话,请直接联系图书主人。</p>
<h2 id="按字典序排列"><a href="#按字典序排列" class="headerlink" title="按字典序排列"></a>按字典序排列</h2><h2 id="Adobe"><a href="#Adobe" class="headerlink" title="Adobe"></a>Adobe</h2><ul>
<li><a href="https://book.douban.com/subject/26318006/" target="_blank" rel="external">Adobe After Effects CC经典教程</a>(Owner:信应1501王楷)</li>
<li><a href="https://book.douban.com/subject/26142712/" target="_blank" rel="external">Adobe Audition CC经典教程</a>(Owner:信应1501王楷)</li>
<li><a href="https://book.douban.com/subject/26606810/" target="_blank" rel="external">Adobe Photoshop CC经典教程</a>(Owner:信应1501王楷)</li>
<li><a href="https://book.douban.com/subject/26606577/" target="_blank" rel="external">Adobe Premiere Pro CC经典教程(附光盘)</a>(Owner:信应1501王楷)</li>
</ul>
<h2 id="C"><a href="#C" class="headerlink" title="C++"></a>C++</h2><ul>
<li><a href="https://book.douban.com/subject/1767741/" target="_blank" rel="external">C++ Primer 中文版(第4版)</a>(Owner:信科1402杜云章)</li>
<li><a href="https://book.douban.com/subject/25708312/" target="_blank" rel="external">C++ Primer 中文版(第5版)</a>(Owner:信科1402姜涛)</li>
</ul>
<h2 id="C-1"><a href="#C-1" class="headerlink" title="C"></a>C</h2><ul>
<li><a href="https://book.douban.com/subject/26279096/" target="_blank" rel="external">C#高级编程(第9版)——C# 5.0 &.NET 4.5.1</a>(Owner:信应1501王楷)</li>
</ul>
<h2 id="Docker"><a href="#Docker" class="headerlink" title="Docker"></a>Docker</h2><ul>
<li><a href="https://book.douban.com/subject/26284823/" target="_blank" rel="external">Docker 技术入门与实战</a>(Owner:周世祥老师)</li>
<li><a href="https://book.douban.com/subject/26700648/" target="_blank" rel="external">Docker即学即用</a>(Owner:周世祥老师)</li>
</ul>
<h2 id="English"><a href="#English" class="headerlink" title="English"></a>English</h2><ul>
<li><a href="https://book.douban.com/subject/1039389/" target="_blank" rel="external">新概念英语3</a>(Owner:信科1402李厚峰)</li>
<li><a href="https://book.douban.com/subject/1014385/" target="_blank" rel="external">新概念英语4</a>(Owner:信科1402李厚峰)</li>
</ul>
<h2 id="汇编"><a href="#汇编" class="headerlink" title="汇编"></a>汇编</h2><ul>
<li><a href="https://book.douban.com/subject/25726019/?qq-pf-to=pcqq.c2c" target="_blank" rel="external">汇编语言(第3版)</a>(Owner:信科1401汤家骏)</li>
</ul>
<h2 id="计算机理论"><a href="#计算机理论" class="headerlink" title="计算机理论"></a>计算机理论</h2><ul>
<li><a href="https://book.douban.com/subject/5333562/" target="_blank" rel="external">深入理解计算机系统(原书第2版)</a>(Owner:信科1401王涵)</li>
</ul>
<h2 id="计算机网络"><a href="#计算机网络" class="headerlink" title="计算机网络"></a>计算机网络</h2><ul>
<li><a href="https://book.douban.com/subject/1238177/" target="_blank" rel="external">CCNA学习指南</a>(Owner:信科1402李厚峰)</li>
<li><a href="https://book.douban.com/subject/24737674/" target="_blank" rel="external">图解TCP/IP : 第5版</a>(Owner:信科1402李厚峰)</li>
</ul>
<h2 id="健康"><a href="#健康" class="headerlink" title="健康"></a>健康</h2><ul>
<li><a href="https://book.douban.com/subject/25981248/" target="_blank" rel="external">程序员健康指南</a>(Owner:信科1402李厚峰)</li>
</ul>
<h2 id="科普"><a href="#科普" class="headerlink" title="科普"></a>科普</h2><ul>
<li><a href="https://book.douban.com/subject/4822685/?qq-pf-to=pcqq.c2c" target="_blank" rel="external">编码</a>(Owner:信科1401汤家骏)</li>
<li><a href="https://book.douban.com/subject/25724948/" target="_blank" rel="external">黑客与画家</a>(Owner:信科1402李厚峰)</li>
<li><a href="https://book.douban.com/subject/26397183/" target="_blank" rel="external">计算机是怎样跑起来的</a>(Owner:信科1402李厚峰)</li>
<li><a href="https://book.douban.com/subject/26766106/" target="_blank" rel="external">身边的未来</a>(Owner:信科1402李厚峰)</li>
</ul>
<h2 id="软考"><a href="#软考" class="headerlink" title="软考"></a>软考</h2><ul>
<li><a href="https://www.amazon.cn/dp/B00N0OM1RI" target="_blank" rel="external">软件设计师教程(第4版)</a>(Owner:信科1402李厚峰)</li>
<li><a href="https://www.amazon.cn/%E5%85%A8%E5%9B%BD%E8%AE%A1%E7%AE%97%E6%9C%BA%E6%8A%80%E6%9C%AF%E4%B8%8E%E8%BD%AF%E4%BB%B6%E4%B8%93%E4%B8%9A%E6%8A%80%E6%9C%AF%E8%B5%84%E6%A0%BC-%E8%80%83%E8%AF%95%E5%8F%82%E8%80%83%E7%94%A8%E4%B9%A6-%E8%BD%AF%E4%BB%B6%E8%AE%BE%E8%AE%A1%E5%B8%88%E8%80%83%E8%AF%95%E5%BA%94%E8%AF%95%E6%8C%87%E5%AF%BC/dp/B0113JRRCU/ref=pd_sim_14_11?ie=UTF8&dpID=51sTi%2Bc-uzL&dpSrc=sims&preST=_AC_UL160_SR160%2C160_&refRID=7BPCQ2Q919Y7QX2Q7MTB" target="_blank" rel="external">软件设计师考试应试指导(第2版)</a>(Owner:信科1402李厚峰)</li>
<li><a href="https://www.amazon.cn/dp/B01777XMEO/ref=pd_lpo_sbs_dp_ss_1?pf_rd_p=238071972&pf_rd_s=lpo-top-stripe&pf_rd_t=201&pf_rd_i=B00N0OM1RI&pf_rd_m=A1AJ19PSB66TGU&pf_rd_r=7BPCQ2Q919Y7QX2Q7MTB" target="_blank" rel="external">软件设计师2009至2014年试题分析与解答</a>(Owner:信科1402李厚峰)</li>
</ul>
<h2 id="散文"><a href="#散文" class="headerlink" title="散文"></a>散文</h2><ul>
<li><a href="https://book.douban.com/subject/3773956/" target="_blank" rel="external">思想的星空</a>(Owner:信科1402李厚峰)</li>
</ul>
<h2 id="数据结构与算法"><a href="#数据结构与算法" class="headerlink" title="数据结构与算法"></a>数据结构与算法</h2><ul>
<li><a href="https://book.douban.com/subject/1139426/" target="_blank" rel="external">数据结构与算法分析</a>(Owner:信科1402金泽宇)</li>
</ul>
<h2 id="数学"><a href="#数学" class="headerlink" title="数学"></a>数学</h2><ul>
<li><a href="https://book.douban.com/subject/26316200/" target="_blank" rel="external">离散数学及其应用(原书第7版)</a>(Owner:信科1402金泽宇)</li>
<li><a href="https://book.douban.com/subject/3099540/" target="_blank" rel="external">数论概论</a>(Owner:信科1402李厚峰)</li>
<li><a href="https://book.douban.com/subject/26696651/" target="_blank" rel="external">数学思维导论</a>(Owner:信科1402李厚峰)</li>
<li><a href="https://book.douban.com/subject/10750155/" target="_blank" rel="external">数学之美</a>(Owner:信科1402金泽宇)</li>
<li><a href="https://book.douban.com/subject/3715623/" target="_blank" rel="external">线性代数应该这样学</a>(Owner:信科1402金泽宇)</li>
<li><a href="https://book.douban.com/subject/1400419/?qq-pf-to=pcqq.c2c" target="_blank" rel="external">3D数学基础</a>(Owner:信科1401汤家骏)</li>
</ul>
<h2 id="图形学"><a href="#图形学" class="headerlink" title="图形学"></a>图形学</h2><ul>
<li><a href="https://book.douban.com/subject/2111771/?qq-pf-to=pcqq.c2c" target="_blank" rel="external">DirectX 9.0 3D游戏开发编程基础</a>(Owner:信科1401汤家骏)</li>
<li><a href="https://book.douban.com/subject/1400419/?qq-pf-to=pcqq.c2c" target="_blank" rel="external">3D数学基础</a>(Owner:信科1401汤家骏)</li>
</ul>
<h2 id="VC"><a href="#VC" class="headerlink" title="VC++"></a>VC++</h2><ul>
<li><a href="https://www.amazon.cn/%E5%AD%99%E9%91%AB%E4%BD%9C%E5%93%81%E7%B3%BB%E5%88%97-VC-%E6%B7%B1%E5%85%A5%E8%AF%A6%E8%A7%A3-%E5%AD%99%E9%91%AB/dp/B008MNQ0BK/ref=sr_1_1?ie=UTF8&qid=1466419799&sr=8-1&keywords=VC%2B%2B%E6%B7%B1%E5%85%A5%E8%AF%A6%E8%A7%A3" target="_blank" rel="external">VC++深入详解(修订版)</a>(Owner:信科1401汤家骏)</li>
</ul>
<h2 id="Windows-Phone"><a href="#Windows-Phone" class="headerlink" title="Windows Phone"></a>Windows Phone</h2><ul>
<li><a href="https://www.douban.com/note/253895762/" target="_blank" rel="external">深入浅出:Windows Phone8应用开发</a>(Owner:信应1501王楷)</li>
<li><a href="https://www.amazon.cn/%E6%B7%B1%E5%85%A5%E7%90%86%E8%A7%A3Windows-Phone8-1UI%E6%8E%A7%E4%BB%B6%E7%BC%96%E7%A8%8B-%E6%9E%97%E6%94%BF/dp/B00L02R6CM/ref=sr_1_1?ie=UTF8&qid=1466420024&sr=8-1&keywords=%E6%B7%B1%E5%85%A5%E7%90%86%E8%A7%A3Windows+Phone+8.1+UI%E6%8E%A7%E4%BB%B6%E7%BC%96%E7%A8%8B" target="_blank" rel="external">深入理解Windows Phone 8.1 UI控件编程</a>(Owner:信应1501王楷)</li>
<li><a href="https://book.douban.com/subject/26356391/" target="_blank" rel="external">深入浅出Windows Phone 8.1应用开发</a>(Owner:信应1501王楷)</li>
</ul>
<h2 id="WPF"><a href="#WPF" class="headerlink" title="WPF"></a>WPF</h2><ul>
<li><a href="https://book.douban.com/subject/4935260/" target="_blank" rel="external">深入浅出WPF</a>(Owner:信应1501王楷)</li>
</ul>
<h2 id="小说"><a href="#小说" class="headerlink" title="小说"></a>小说</h2><ul>
<li><a href="https://book.douban.com/subject/10554308/" target="_blank" rel="external">白夜行</a>(Owner:信科1401王涵)</li>
<li><a href="https://book.douban.com/subject/26340138/" target="_blank" rel="external">岛上书店</a>(Owner:信科1401王涵)</li>
<li><a href="https://book.douban.com/subject/25862578/" target="_blank" rel="external">解忧杂货店</a>(Owner:信科1401王涵)</li>
<li><a href="https://book.douban.com/subject/10517238/" target="_blank" rel="external">平凡的世界</a>(Owner:信科1401王涵)</li>
<li><a href="https://book.douban.com/subject/3211779/" target="_blank" rel="external">嫌疑人X的献身</a>(Owner:信科1401王涵)</li>
</ul>
<h2 id="哲学"><a href="#哲学" class="headerlink" title="哲学"></a>哲学</h2><ul>
<li><a href="https://book.douban.com/subject/4863798/" target="_blank" rel="external">哲学与人生</a>(Owner:信科1402李厚峰)</li>
</ul>
<h2 id="传记"><a href="#传记" class="headerlink" title="传记"></a>传记</h2><ul>
<li><a href="https://book.douban.com/subject/7052307/" target="_blank" rel="external">希特勒传</a>(Owner:信科1402李厚峰)</li>
</ul>
</div>
<footer class="article-footer">
<div class="share-container">
</div>
<a data-url="https://genesis2011.github.io/2016/10/25/下架图书/" data-id="cjaxz93190001i8l5mb70pb8e" class="article-share-link"><i class="fa fa-share"></i>Bagikan</a>
<script>
(function ($) {
// Prevent duplicate binding
if (typeof(__SHARE_BUTTON_BINDED__) === 'undefined' || !__SHARE_BUTTON_BINDED__) {
__SHARE_BUTTON_BINDED__ = true;
} else {
return;
}
$('body').on('click', function() {
$('.article-share-box.on').removeClass('on');
}).on('click', '.article-share-link', function(e) {
e.stopPropagation();
var $this = $(this),
url = $this.attr('data-url'),
encodedUrl = encodeURIComponent(url),
id = 'article-share-box-' + $this.attr('data-id'),
offset = $this.offset(),
box;
if ($('#' + id).length) {
box = $('#' + id);
if (box.hasClass('on')){
box.removeClass('on');
return;
}
} else {
var html = [
'<div id="' + id + '" class="article-share-box">',
'<input class="article-share-input" value="' + url + '">',
'<div class="article-share-links">',
'<a href="https://twitter.com/intent/tweet?url=' + encodedUrl + '" class="fa fa-twitter article-share-twitter" target="_blank" title="Twitter"></a>',
'<a href="https://www.facebook.com/sharer.php?u=' + encodedUrl + '" class="fa fa-facebook article-share-facebook" target="_blank" title="Facebook"></a>',
'<a href="http://pinterest.com/pin/create/button/?url=' + encodedUrl + '" class="fa fa-pinterest article-share-pinterest" target="_blank" title="Pinterest"></a>',
'<a href="https://plus.google.com/share?url=' + encodedUrl + '" class="fa fa-google article-share-google" target="_blank" title="Google+"></a>',
'</div>',
'</div>'
].join('');
box = $(html);
$('body').append(box);
}
$('.article-share-box.on').hide();
box.css({
top: offset.top + 25,
left: offset.left
}).addClass('on');
}).on('click', '.article-share-box', function (e) {
e.stopPropagation();
}).on('click', '.article-share-box-input', function () {
$(this).select();
}).on('click', '.article-share-box-link', function (e) {
e.preventDefault();
e.stopPropagation();
window.open(this.href, 'article-share-box-window-' + Date.now(), 'width=500,height=450');
});
})(jQuery);
</script>
<a href="https://genesis2011.github.io/2016/10/25/下架图书/#comments" class="article-comment-link disqus-comment-count" data-disqus-url="https://genesis2011.github.io/2016/10/25/下架图书/">Komentar</a>
</footer>
</div>
</article>
<article id="post-周老师部分藏书" class="article article-type-post" itemscope itemprop="blogPost">
<div class="article-inner">
<header class="article-header">
<h1 itemprop="name">
<a class="article-title" href="/2016/06/20/周老师部分藏书/">周老师部分藏书</a>
</h1>
<div class="article-meta">
<div class="article-date">
<i class="fa fa-calendar"></i>
<a href="/2016/06/20/周老师部分藏书/">
<time datetime="2016-06-20T09:05:48.000Z" itemprop="datePublished">2016-06-20</time>
</a>
</div>
<div class="article-tag">
<i class="fa fa-tag"></i>
<a class="tag-link" href="/tags/Bookshelf/">Bookshelf</a>
</div>
</div>
</header>
<div class="article-entry" itemprop="articleBody">
<p>感谢周老师提供的部分藏书信息,由于书籍较多、且不易整理(主要是我有些懒,打着复习没时间去做的借口……),下面提供图书照片,需要的可以联系老师借阅</p>
<p><img src="/img/1.jpg" alt="1"><br><img src="/img/2.jpg" alt="2"><br><img src="/img/3.jpg" alt="3"><br><img src="/img/4.jpg" alt="4"><br><img src="/img/5.jpg" alt="5"><br><img src="/img/6.jpg" alt="6"><br><img src="/img/7.jpg" alt="7"><br><img src="/img/8.jpg" alt="8"><br><img src="/img/9.jpg" alt="9"><br><img src="/img/10.jpg" alt="10"><br><img src="/img/11.jpg" alt="11"><br><img src="/img/12.jpg" alt="12"><br><img src="/img/13.jpg" alt="13"><br><img src="/img/14.jpg" alt="14"><br><img src="/img/15.jpg" alt="15"></p>
</div>
<footer class="article-footer">
<div class="share-container">
</div>
<a data-url="https://genesis2011.github.io/2016/06/20/周老师部分藏书/" data-id="cjaxz931i0003i8l5490kcwfr" class="article-share-link"><i class="fa fa-share"></i>Bagikan</a>
<script>
(function ($) {
// Prevent duplicate binding
if (typeof(__SHARE_BUTTON_BINDED__) === 'undefined' || !__SHARE_BUTTON_BINDED__) {
__SHARE_BUTTON_BINDED__ = true;
} else {
return;
}
$('body').on('click', function() {
$('.article-share-box.on').removeClass('on');
}).on('click', '.article-share-link', function(e) {
e.stopPropagation();
var $this = $(this),
url = $this.attr('data-url'),
encodedUrl = encodeURIComponent(url),
id = 'article-share-box-' + $this.attr('data-id'),
offset = $this.offset(),
box;
if ($('#' + id).length) {
box = $('#' + id);
if (box.hasClass('on')){
box.removeClass('on');
return;
}
} else {
var html = [
'<div id="' + id + '" class="article-share-box">',
'<input class="article-share-input" value="' + url + '">',
'<div class="article-share-links">',
'<a href="https://twitter.com/intent/tweet?url=' + encodedUrl + '" class="fa fa-twitter article-share-twitter" target="_blank" title="Twitter"></a>',
'<a href="https://www.facebook.com/sharer.php?u=' + encodedUrl + '" class="fa fa-facebook article-share-facebook" target="_blank" title="Facebook"></a>',
'<a href="http://pinterest.com/pin/create/button/?url=' + encodedUrl + '" class="fa fa-pinterest article-share-pinterest" target="_blank" title="Pinterest"></a>',
'<a href="https://plus.google.com/share?url=' + encodedUrl + '" class="fa fa-google article-share-google" target="_blank" title="Google+"></a>',
'</div>',
'</div>'
].join('');
box = $(html);
$('body').append(box);
}
$('.article-share-box.on').hide();
box.css({
top: offset.top + 25,
left: offset.left
}).addClass('on');
}).on('click', '.article-share-box', function (e) {
e.stopPropagation();
}).on('click', '.article-share-box-input', function () {
$(this).select();
}).on('click', '.article-share-box-link', function (e) {
e.preventDefault();
e.stopPropagation();
window.open(this.href, 'article-share-box-window-' + Date.now(), 'width=500,height=450');
});
})(jQuery);
</script>
<a href="https://genesis2011.github.io/2016/06/20/周老师部分藏书/#comments" class="article-comment-link disqus-comment-count" data-disqus-url="https://genesis2011.github.io/2016/06/20/周老师部分藏书/">Komentar</a>
</footer>
</div>
</article>
<article id="post-BorrowBook" class="article article-type-post" itemscope itemprop="blogPost">
<div class="article-inner">
<header class="article-header">
<h1 itemprop="name">
<a class="article-title" href="/2016/06/20/BorrowBook/">图书借阅规则</a>
</h1>
<div class="article-meta">
<div class="article-date">
<i class="fa fa-calendar"></i>
<a href="/2016/06/20/BorrowBook/">
<time datetime="2016-06-19T16:42:23.000Z" itemprop="datePublished">2016-06-20</time>
</a>
</div>
<div class="article-tag">
<i class="fa fa-tag"></i>
<a class="tag-link" href="/tags/Bookshelf/">Bookshelf</a>, <a class="tag-link" href="/tags/Rule/">Rule</a>
</div>
</div>
</header>
<div class="article-entry" itemprop="articleBody">
<h3 id="本平台初衷是为了营造良好的读书氛围,充分发挥同学们手中纸质书的价值,还望各位自觉遵守。"><a href="#本平台初衷是为了营造良好的读书氛围,充分发挥同学们手中纸质书的价值,还望各位自觉遵守。" class="headerlink" title="本平台初衷是为了营造良好的读书氛围,充分发挥同学们手中纸质书的价值,还望各位自觉遵守。"></a>本平台初衷是为了营造良好的读书氛围,充分发挥同学们手中纸质书的价值,还望各位自觉遵守。</h3><ol>
<li>目前处于测试阶段,同学们有愿意借阅给他人的纸质书(不限种类),可以联系我。我负责发布相关的图书、书籍变动信息,想借阅的童鞋和图书主人联系。</li>
<li>务必爱惜书籍!</li>
<li>所借的书超过2天没看,就很有必要物归原主啦。这个状态说明你现在不适合看书。</li>
<li>图书主人拥有最终解释权。</li>
<li>本借阅平台依赖同学间的信任,望参与者对个人行为负责。</li>
<li>每人次限借1本。</li>
<li>建议部分书可以去逸夫图书馆借阅,平台的书目前多为较新的、图书馆没有采购的。</li>
</ol>
<h3 id="对于想借书却不认识图书主人的,我可充当中介人。目前规模较小,感觉没必要建群"><a href="#对于想借书却不认识图书主人的,我可充当中介人。目前规模较小,感觉没必要建群" class="headerlink" title="对于想借书却不认识图书主人的,我可充当中介人。目前规模较小,感觉没必要建群"></a>对于想借书却不认识图书主人的,我可充当中介人。目前规模较小,感觉没必要建群</h3><p>注:如果信息由误,请及时联系我更正,图书借阅变动情况也请及时通知我。</p>
</div>
<footer class="article-footer">
<div class="share-container">
</div>
<a data-url="https://genesis2011.github.io/2016/06/20/BorrowBook/" data-id="cjaxz932y0006i8l5aqfgffdf" class="article-share-link"><i class="fa fa-share"></i>Bagikan</a>
<script>
(function ($) {
// Prevent duplicate binding
if (typeof(__SHARE_BUTTON_BINDED__) === 'undefined' || !__SHARE_BUTTON_BINDED__) {
__SHARE_BUTTON_BINDED__ = true;
} else {
return;
}
$('body').on('click', function() {
$('.article-share-box.on').removeClass('on');
}).on('click', '.article-share-link', function(e) {
e.stopPropagation();
var $this = $(this),
url = $this.attr('data-url'),
encodedUrl = encodeURIComponent(url),
id = 'article-share-box-' + $this.attr('data-id'),
offset = $this.offset(),
box;
if ($('#' + id).length) {
box = $('#' + id);
if (box.hasClass('on')){
box.removeClass('on');
return;
}
} else {
var html = [
'<div id="' + id + '" class="article-share-box">',
'<input class="article-share-input" value="' + url + '">',
'<div class="article-share-links">',
'<a href="https://twitter.com/intent/tweet?url=' + encodedUrl + '" class="fa fa-twitter article-share-twitter" target="_blank" title="Twitter"></a>',
'<a href="https://www.facebook.com/sharer.php?u=' + encodedUrl + '" class="fa fa-facebook article-share-facebook" target="_blank" title="Facebook"></a>',
'<a href="http://pinterest.com/pin/create/button/?url=' + encodedUrl + '" class="fa fa-pinterest article-share-pinterest" target="_blank" title="Pinterest"></a>',
'<a href="https://plus.google.com/share?url=' + encodedUrl + '" class="fa fa-google article-share-google" target="_blank" title="Google+"></a>',
'</div>',
'</div>'
].join('');
box = $(html);
$('body').append(box);
}
$('.article-share-box.on').hide();
box.css({
top: offset.top + 25,
left: offset.left
}).addClass('on');
}).on('click', '.article-share-box', function (e) {
e.stopPropagation();
}).on('click', '.article-share-box-input', function () {
$(this).select();
}).on('click', '.article-share-box-link', function (e) {
e.preventDefault();
e.stopPropagation();
window.open(this.href, 'article-share-box-window-' + Date.now(), 'width=500,height=450');
});
})(jQuery);
</script>
<a href="https://genesis2011.github.io/2016/06/20/BorrowBook/#comments" class="article-comment-link disqus-comment-count" data-disqus-url="https://genesis2011.github.io/2016/06/20/BorrowBook/">Komentar</a>
</footer>
</div>
</article>
</section>
<aside id="sidebar">
<div class="widget-wrap">
<h3 class="widget-title">terbaru</h3>
<div class="widget">
<ul id="recent-post" class="">
<li>
<div class="item-thumbnail">
<a href="/2017/04/11/天荒地老,奋斗不老/" class="thumbnail">
<span class="thumbnail-image thumbnail-none"></span>
</a>
</div>
<div class="item-inner">
<p class="item-category"></p>
<p class="item-title"><a href="/2017/04/11/天荒地老,奋斗不老/" class="title">天荒地老,奋斗不老</a></p>
<p class="item-date"><time datetime="2017-04-11T04:34:25.000Z" itemprop="datePublished">2017-04-11</time></p>
</div>
</li>
<li>
<div class="item-thumbnail">
<a href="/2016/10/25/下架图书/" class="thumbnail">
<span class="thumbnail-image thumbnail-none"></span>
</a>
</div>
<div class="item-inner">
<p class="item-category"></p>
<p class="item-title"><a href="/2016/10/25/下架图书/" class="title">下架图书</a></p>
<p class="item-date"><time datetime="2016-10-25T13:54:35.000Z" itemprop="datePublished">2016-10-25</time></p>
</div>
</li>
<li>
<div class="item-thumbnail">
<a href="/2016/06/20/周老师部分藏书/" class="thumbnail">
<span style="background-image:url(/img/1.jpg)" alt="周老师部分藏书" class="thumbnail-image"></span>
</a>
</div>
<div class="item-inner">
<p class="item-category"></p>
<p class="item-title"><a href="/2016/06/20/周老师部分藏书/" class="title">周老师部分藏书</a></p>
<p class="item-date"><time datetime="2016-06-20T09:05:48.000Z" itemprop="datePublished">2016-06-20</time></p>
</div>
</li>
<li>
<div class="item-thumbnail">
<a href="/2016/06/20/BorrowBook/" class="thumbnail">
<span class="thumbnail-image thumbnail-none"></span>
</a>
</div>
<div class="item-inner">
<p class="item-category"></p>
<p class="item-title"><a href="/2016/06/20/BorrowBook/" class="title">图书借阅规则</a></p>
<p class="item-date"><time datetime="2016-06-19T16:42:23.000Z" itemprop="datePublished">2016-06-20</time></p>
</div>
</li>
</ul>
</div>
</div>
<div class="widget-wrap">
<h3 class="widget-title">arsip</h3>
<div class="widget">
<ul class="archive-list"><li class="archive-list-item"><a class="archive-list-link" href="/archives/2017/04/">April 2017</a><span class="archive-list-count">1</span></li><li class="archive-list-item"><a class="archive-list-link" href="/archives/2016/10/">October 2016</a><span class="archive-list-count">1</span></li><li class="archive-list-item"><a class="archive-list-link" href="/archives/2016/06/">June 2016</a><span class="archive-list-count">2</span></li></ul>
</div>
</div>
<div class="widget-wrap">
<h3 class="widget-title">tag</h3>
<div class="widget">
<ul class="tag-list"><li class="tag-list-item"><a class="tag-list-link" href="/tags/Bookshelf/">Bookshelf</a><span class="tag-list-count">2</span></li><li class="tag-list-item"><a class="tag-list-link" href="/tags/Rule/">Rule</a><span class="tag-list-count">1</span></li><li class="tag-list-item"><a class="tag-list-link" href="/tags/Summary/">Summary</a><span class="tag-list-count">1</span></li><li class="tag-list-item"><a class="tag-list-link" href="/tags/下架/">下架</a><span class="tag-list-count">1</span></li><li class="tag-list-item"><a class="tag-list-link" href="/tags/转载/">转载</a><span class="tag-list-count">1</span></li></ul>
</div>
</div>
<div class="widget-wrap">
<h3 class="widget-title">awan tag</h3>
<div class="widget tagcloud">
<a href="/tags/Bookshelf/" style="font-size: 20px;">Bookshelf</a> <a href="/tags/Rule/" style="font-size: 10px;">Rule</a> <a href="/tags/Summary/" style="font-size: 10px;">Summary</a> <a href="/tags/下架/" style="font-size: 10px;">下架</a> <a href="/tags/转载/" style="font-size: 10px;">转载</a>
</div>
</div>
<div class="widget-wrap widget-list">
<h3 class="widget-title">tautan</h3>
<div class="widget">
<ul>
<li>
<a href="http://my.csdn.net/Noob_f/">CSDN</a>
</li>
<li>
<a href="http://jm.taobao.org/">阿里中间件团队博客</a>
</li>
<li>
<a href="http://www.qingfan.com/">清帆远航</a>
</li>
<li>
<a href="http://www.51nod.com/index.html/">51NOD</a>
</li>
<li>
<a href="https://www.nowcoder.com/">牛客网</a>
</li>
<li>
<a href="https://www.coursera.org/">Coursera</a>
</li>
</ul>
</div>
</div>