-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
1124 lines (617 loc) · 47 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>Page 1 | Venson</title>
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1">
<meta name="description" content="When you can’t find the sunshine, be the sunshine.">
<meta property="og:type" content="website">
<meta property="og:title" content="Venson">
<meta property="og:url" content="http://guowensheng.com/index.html">
<meta property="og:site_name" content="Venson">
<meta property="og:description" content="When you can’t find the sunshine, be the sunshine.">
<meta property="og:locale" content="en_US">
<meta property="article:author" content="Guo Wensheng">
<meta name="twitter:card" content="summary">
<link rel="alternate" href="/atom.xml" title="Venson" type="application/atom+xml">
<link rel="icon" href="/css/images/favicon.ico">
<link href="//fonts.googleapis.com/css?family=Source+Code+Pro" rel="stylesheet" type="text/css">
<link href="https://fonts.googleapis.com/css?family=Open+Sans|Montserrat:700" rel="stylesheet" type="text/css">
<link href="https://fonts.googleapis.com/css?family=Roboto:400,300,300italic,400italic" rel="stylesheet" type="text/css">
<link href="//cdn.bootcss.com/font-awesome/4.6.3/css/font-awesome.min.css" rel="stylesheet">
<style type="text/css">
@font-face{font-family:futura-pt;src:url(https://use.typekit.net/af/9749f0/00000000000000000001008f/27/l?subset_id=2&fvd=n5) format("woff2");font-weight:500;font-style:normal;}
@font-face{font-family:futura-pt;src:url(https://use.typekit.net/af/90cf9f/000000000000000000010091/27/l?subset_id=2&fvd=n7) format("woff2");font-weight:500;font-style:normal;}
@font-face{font-family:futura-pt;src:url(https://use.typekit.net/af/8a5494/000000000000000000013365/27/l?subset_id=2&fvd=n4) format("woff2");font-weight:lighter;font-style:normal;}
@font-face{font-family:futura-pt;src:url(https://use.typekit.net/af/d337d8/000000000000000000010095/27/l?subset_id=2&fvd=i4) format("woff2");font-weight:400;font-style:italic;}</style>
<link rel="stylesheet" id="athemes-headings-fonts-css" href="//fonts.googleapis.com/css?family=Yanone+Kaffeesatz%3A200%2C300%2C400%2C700&ver=4.6.1" type="text/css" media="all">
<link rel="stylesheet" id="athemes-headings-fonts-css" href="//fonts.googleapis.com/css?family=Oswald%3A300%2C400%2C700&ver=4.6.1" type="text/css" media="all">
<link rel="stylesheet" href="/css/style.css">
<script src="/js/jquery-3.1.1.min.js"></script>
<!-- Bootstrap core CSS -->
<link rel="stylesheet" href="/css/bootstrap.css" >
<link rel="stylesheet" href="/css/fashion.css" >
<link rel="stylesheet" href="/css/glyphs.css" >
<meta name="generator" content="Hexo 4.2.0"></head>
<body>
<header id="allheader" class="site-header" role="banner"
>
<div class="clearfix container">
<div class="site-branding">
<h1 class="site-title">
<a href="/" title="Venson" rel="home"> Venson </a>
</h1>
<div class="site-description">When you can’t find the sunshine, be the sunshine.</div>
<nav id="main-navigation" class="main-navigation" role="navigation">
<a class="nav-open">Menu</a>
<a class="nav-close">Close</a>
<div class="clearfix sf-menu">
<ul id="main-nav" class="menu sf-js-enabled sf-arrows" style="touch-action: pan-y;">
<li class="menu-item menu-item-type-custom menu-item-object-custom menu-item-home menu-item-1663"> <a class="" href="/">Home</a> </li>
<li class="menu-item menu-item-type-custom menu-item-object-custom menu-item-home menu-item-1663"> <a class="" href="/archives">Archives</a> </li>
<li class="menu-item menu-item-type-custom menu-item-object-custom menu-item-home menu-item-1663"> <a class="" href="/categories">Categories</a> </li>
<li class="menu-item menu-item-type-custom menu-item-object-custom menu-item-home menu-item-1663"> <a class="" href="/tags">Tags</a> </li>
<li class="menu-item menu-item-type-custom menu-item-object-custom menu-item-home menu-item-1663"> <a class="" href="/about">About</a> </li>
</ul>
</div>
</nav>
</div>
</div>
</header>
<div id="container">
<div id="wrap">
<div id="content" class="outer">
<section id="main">
<article id="post-2021-02-15-2020-year-summary" class="article article-type-post" itemscope itemprop="blogPost" >
<div id="articleInner" class="clearfix post-1016 post type-post status-publish format-standard has-post-thumbnail hentry category-template-2 category-uncategorized tag-codex tag-edge-case tag-featured-image tag-image tag-template">
<header class="article-header">
<h1 class="thumb" itemprop="name">
<a class="article-title" href="/posts/2021-02-15-2020-year-summary/">2020年总结</a>
</h1>
</header>
<div class="article-meta">
<a href="/posts/2021-02-15-2020-year-summary/" class="article-date">
<time datetime="2021-02-15T08:43:33.000Z" itemprop="datePublished">February 15, 2021</time>
</a>
<span class="ico-folder"></span>
<a class="article-category-link" href="/categories/%E6%80%BB%E7%BB%93/">总结</a>
</div>
<div class="article-entry" itemprop="articleBody">
<div class="entry-summary">
新冠疫情竟然持续了一年,到现在还没有结束得迹象,好想出去旅游啊!
上半年刚连考完那阵,由于没啥事干,整个人都松弛了下来,再加上考试发挥得不好,干啥的心情也没有,痛痛快快地当了一段时间咸鱼。现在还记得下分那天的情景,怀着忐忑的心情打开查分网站,输入个人信息,点击查询,202分,过了!高兴得从座位上跳了起来,兴奋得在家里跑来跑去,大喊大叫,好久没有这么高兴了,真的好久了。冷静下来知后,又查了一遍,确实是我本人没错了,安心了。后面就风风火火地准备复试了。疫情中的复试过程也挺难忘的,在家远程面试,两个机位一前一后照着,对着电脑进行问答,发挥得不好。虽然英语笔试成绩奇迹般的达到了78分的免修线,但是复试时的口语简直是个渣渣,听得懂,说不出来,难受得很。管理问题问了OKR跟KPI的区别,没说明白。问我
<p class="article-more-link">
<a href="/posts/2021-02-15-2020-year-summary/#more">Continue Reading →</a>
</p>
</div>
</div>
<footer class="entry-meta entry-footer">
<span class="ico-folder"></span>
<a class="article-category-link" href="/categories/%E6%80%BB%E7%BB%93/">总结</a>
<span class="ico-tags"></span>
<ul class="article-tag-list" itemprop="keywords"><li class="article-tag-list-item"><a class="article-tag-list-link" href="/tags/%E5%B9%B4%E7%BB%88%E6%80%BB%E7%BB%93/" rel="tag">年终总结</a></li></ul>
</footer>
<hr class="entry-footer-hr">
</div>
</article>
<!-- Table of Contents -->
<article id="post-2021-02-15-2020-year-book-list" class="article article-type-post" itemscope itemprop="blogPost" >
<div id="articleInner" class="clearfix post-1016 post type-post status-publish format-standard has-post-thumbnail hentry category-template-2 category-uncategorized tag-codex tag-edge-case tag-featured-image tag-image tag-template">
<header class="article-header">
<h1 class="thumb" itemprop="name">
<a class="article-title" href="/posts/2021-02-15-2020-year-book-list/">2020年书单</a>
</h1>
</header>
<div class="article-meta">
<a href="/posts/2021-02-15-2020-year-book-list/" class="article-date">
<time datetime="2021-02-15T07:10:05.000Z" itemprop="datePublished">February 15, 2021</time>
</a>
<span class="ico-folder"></span>
<a class="article-category-link" href="/categories/%E9%98%85%E8%AF%BB/">阅读</a>
</div>
<div class="article-entry" itemprop="articleBody">
<div class="entry-summary">
MBA教材,财务会计入门。
MBA教材,俗称运筹学,托了老师留作业的福,学的还算明白。
MBA教材,人事,讲了好多,又好像啥也没讲,没啥收获。
MBA教材,经济学在企业管理中的应用,借着复习考试,还算学了点东西。
MBA教材,没啥说的,中国牛逼。
果然人类还是一台生化机器,从生理和心里方面介绍如何自控,了解原理,活得明白。
<p class="article-more-link">
<a href="/posts/2021-02-15-2020-year-book-list/#more">Continue Reading →</a>
</p>
</div>
</div>
<footer class="entry-meta entry-footer">
<span class="ico-folder"></span>
<a class="article-category-link" href="/categories/%E9%98%85%E8%AF%BB/">阅读</a>
<span class="ico-tags"></span>
<ul class="article-tag-list" itemprop="keywords"><li class="article-tag-list-item"><a class="article-tag-list-link" href="/tags/%E4%B9%A6%E5%8D%95/" rel="tag">书单</a></li></ul>
</footer>
<hr class="entry-footer-hr">
</div>
</article>
<!-- Table of Contents -->
<article id="post-2020-08-19-reading-notes-of-managing-corporate-lifecycles" class="article article-type-post" itemscope itemprop="blogPost" >
<div id="articleInner" class="clearfix post-1016 post type-post status-publish format-standard has-post-thumbnail hentry category-template-2 category-uncategorized tag-codex tag-edge-case tag-featured-image tag-image tag-template">
<header class="article-header">
<h1 class="thumb" itemprop="name">
<a class="article-title" href="/posts/2020-08-19-reading-notes-of-managing-corporate-lifecycles/">读书笔记之《企业生命周期》</a>
</h1>
</header>
<div class="article-meta">
<a href="/posts/2020-08-19-reading-notes-of-managing-corporate-lifecycles/" class="article-date">
<time datetime="2020-08-19T07:00:32.000Z" itemprop="datePublished">August 19, 2020</time>
</a>
<span class="ico-folder"></span>
<a class="article-category-link" href="/categories/%E9%98%85%E8%AF%BB/">阅读</a>
</div>
<div class="article-entry" itemprop="articleBody">
<div class="entry-summary">
数数工作已经十几年了,总共经历了两份工作,非常幸运的是这两份工作都是企业创业初期加入的,作为一名员工与企业一起共同经历了成长。就像人的成长会遇到各种烦恼一样,企业的成长也会遇到各种各样的问题,当时身处其中并没有深入思考这些问题的原因以及解决办法,更不用说对它们进行归纳总结了。
《企业生命周期》这本书给了我一个全新的视角,提出了企业生命周期理论,作者把企业比作人,与成长需要的过程类似,都需要经历孕育期、婴儿期、学步期、青春期、壮年期、稳定期、贵族期和死亡,可归纳总结为四个阶段,创业、成长、成熟和衰退。本书第一篇描述了一个典型的组织生命周期过程,在生命周期阶段的典型行为,以及组织在这个过程中遇到的正常问题和异常问题。以前一直认为凡是问题都是不正常的,但这里作者把成长过程中的问题分为正常和异常两
<p class="article-more-link">
<a href="/posts/2020-08-19-reading-notes-of-managing-corporate-lifecycles/#more">Continue Reading →</a>
</p>
</div>
</div>
<footer class="entry-meta entry-footer">
<span class="ico-folder"></span>
<a class="article-category-link" href="/categories/%E9%98%85%E8%AF%BB/">阅读</a>
<span class="ico-tags"></span>
<ul class="article-tag-list" itemprop="keywords"><li class="article-tag-list-item"><a class="article-tag-list-link" href="/tags/%E8%AF%BB%E4%B9%A6%E7%AC%94%E8%AE%B0/" rel="tag">读书笔记</a></li></ul>
</footer>
<hr class="entry-footer-hr">
</div>
</article>
<!-- Table of Contents -->
<article id="post-2020-03-15-my-opinion-on-education" class="article article-type-post" itemscope itemprop="blogPost" >
<div id="articleInner" class="clearfix post-1016 post type-post status-publish format-standard has-post-thumbnail hentry category-template-2 category-uncategorized tag-codex tag-edge-case tag-featured-image tag-image tag-template">
<header class="article-header">
<h1 class="thumb" itemprop="name">
<a class="article-title" href="/posts/2020-03-15-my-opinion-on-education/">教育之我见</a>
</h1>
</header>
<div class="article-meta">
<a href="/posts/2020-03-15-my-opinion-on-education/" class="article-date">
<time datetime="2020-03-15T08:20:27.000Z" itemprop="datePublished">March 15, 2020</time>
</a>
<span class="ico-folder"></span>
<a class="article-category-link" href="/categories/%E6%80%9D%E8%80%83/">思考</a>
</div>
<div class="article-entry" itemprop="articleBody">
<div class="entry-summary">
效率低下
去年一年都在考试,自学网课比较多,除了疑难问题交流不方便以外,没感觉什么特别的障碍,大部分时间反而感觉很方便。一方面,网课时间地点都比较灵活。另一方面,视频可以倍速播放,简单易懂的可以2倍速看,不好理解的可以1倍速反复看。从老师的角度也是一样的,只需要录制一次课程,不用再翻来覆去重复相同的内容,可以腾出更多时间打磨课程本身以及和学生们交流。
回想起我们从小到大在学校的学习过程,老师们年复一年的重复讲解着相同的知识,同学们在课上稍不留神就可能导致完全跟不上节奏。另一方面,优秀的教师资源是极其有限的,为什么不能通过视频课程的方式,让更多的学生聆听更好的课程呢?试想,就这么一点点授课方式的改变,可以给我们的教育系统带来多么大的效率提升。在新冠肺炎肺疫情的当下,全国的老师和同学们都已经在
<p class="article-more-link">
<a href="/posts/2020-03-15-my-opinion-on-education/#more">Continue Reading →</a>
</p>
</div>
</div>
<footer class="entry-meta entry-footer">
<span class="ico-folder"></span>
<a class="article-category-link" href="/categories/%E6%80%9D%E8%80%83/">思考</a>
<span class="ico-tags"></span>
<ul class="article-tag-list" itemprop="keywords"><li class="article-tag-list-item"><a class="article-tag-list-link" href="/tags/%E6%95%99%E8%82%B2/" rel="tag">教育</a></li><li class="article-tag-list-item"><a class="article-tag-list-link" href="/tags/%E7%94%9F%E6%B4%BB/" rel="tag">生活</a></li><li class="article-tag-list-item"><a class="article-tag-list-link" href="/tags/%E7%A4%BE%E4%BC%9A/" rel="tag">社会</a></li></ul>
</footer>
<hr class="entry-footer-hr">
</div>
</article>
<!-- Table of Contents -->
<article id="post-2020-02-01-2019-year-book-list" class="article article-type-post" itemscope itemprop="blogPost" >
<div id="articleInner" class="clearfix post-1016 post type-post status-publish format-standard has-post-thumbnail hentry category-template-2 category-uncategorized tag-codex tag-edge-case tag-featured-image tag-image tag-template">
<header class="article-header">
<h1 class="thumb" itemprop="name">
<a class="article-title" href="/posts/2020-02-01-2019-year-book-list/">2019年书单</a>
</h1>
</header>
<div class="article-meta">
<a href="/posts/2020-02-01-2019-year-book-list/" class="article-date">
<time datetime="2020-02-01T07:54:02.000Z" itemprop="datePublished">February 1, 2020</time>
</a>
<span class="ico-folder"></span>
<a class="article-category-link" href="/categories/%E9%98%85%E8%AF%BB/">阅读</a>
</div>
<div class="article-entry" itemprop="articleBody">
<div class="entry-summary">
PMP官方教材,有用。
MBA大师全套备考资料,不想再看。
<p class="article-more-link">
<a href="/posts/2020-02-01-2019-year-book-list/#more">Continue Reading →</a>
</p>
</div>
</div>
<footer class="entry-meta entry-footer">
<span class="ico-folder"></span>
<a class="article-category-link" href="/categories/%E9%98%85%E8%AF%BB/">阅读</a>
<span class="ico-tags"></span>
<ul class="article-tag-list" itemprop="keywords"><li class="article-tag-list-item"><a class="article-tag-list-link" href="/tags/%E4%B9%A6%E5%8D%95/" rel="tag">书单</a></li></ul>
</footer>
<hr class="entry-footer-hr">
</div>
</article>
<!-- Table of Contents -->
<article id="post-2020-01-31-2019-year-summary" class="article article-type-post" itemscope itemprop="blogPost" >
<div id="articleInner" class="clearfix post-1016 post type-post status-publish format-standard has-post-thumbnail hentry category-template-2 category-uncategorized tag-codex tag-edge-case tag-featured-image tag-image tag-template">
<header class="article-header">
<h1 class="thumb" itemprop="name">
<a class="article-title" href="/posts/2020-01-31-2019-year-summary/">2019年总结</a>
</h1>
</header>
<div class="article-meta">
<a href="/posts/2020-01-31-2019-year-summary/" class="article-date">
<time datetime="2020-01-31T12:46:49.000Z" itemprop="datePublished">January 31, 2020</time>
</a>
<span class="ico-folder"></span>
<a class="article-category-link" href="/categories/%E6%80%BB%E7%BB%93/">总结</a>
</div>
<div class="article-entry" itemprop="articleBody">
<div class="entry-summary">
今年主题就是考试,上半年考PMP,下半年考MBA。长期的碎片化信息获取习惯,已经把人们的注意力撕得四分五裂,根本没办法专注于某事,更不用说到长时间深入学习了。所以这是异常痛苦与充实的一年。
提起为什么要考PMP?还是个挺有意思的决定。由于部门发展到了一定阶段,团队的成长不尽如人意,于是只能求助于PMP考试这个大俗套,所以决定选派部门骨干参加考试。我本来是不想参与的,主要是觉得PMP对自己没什么大用处。后来转念一想,如果部门骨干学成归来以后张口闭口都是PMP,自己接不上来的话,岂不是很没面子?随即决定还是跟大家一起学学吧。起初学习PMP的时候是异常痛苦的,被自己涣散的注意力惊呆了,学习效率低得令人发指。还好报了个培训机构,跟着人家的指导按部就班的慢慢学习,最终取得了不错的成绩。看似无心插柳的
<p class="article-more-link">
<a href="/posts/2020-01-31-2019-year-summary/#more">Continue Reading →</a>
</p>
</div>
</div>
<footer class="entry-meta entry-footer">
<span class="ico-folder"></span>
<a class="article-category-link" href="/categories/%E6%80%BB%E7%BB%93/">总结</a>
<span class="ico-tags"></span>
<ul class="article-tag-list" itemprop="keywords"><li class="article-tag-list-item"><a class="article-tag-list-link" href="/tags/%E5%B9%B4%E7%BB%88%E6%80%BB%E7%BB%93/" rel="tag">年终总结</a></li></ul>
</footer>
<hr class="entry-footer-hr">
</div>
</article>
<!-- Table of Contents -->
<article id="post-2019-02-05-2019-year-summary" class="article article-type-post" itemscope itemprop="blogPost" >
<div id="articleInner" class="clearfix post-1016 post type-post status-publish format-standard has-post-thumbnail hentry category-template-2 category-uncategorized tag-codex tag-edge-case tag-featured-image tag-image tag-template">
<header class="article-header">
<h1 class="thumb" itemprop="name">
<a class="article-title" href="/posts/2019-02-05-2019-year-summary/">2018年总结</a>
</h1>
</header>
<div class="article-meta">
<a href="/posts/2019-02-05-2019-year-summary/" class="article-date">
<time datetime="2019-02-04T16:12:03.000Z" itemprop="datePublished">February 5, 2019</time>
</a>
<span class="ico-folder"></span>
<a class="article-category-link" href="/categories/%E6%80%BB%E7%BB%93/">总结</a>
</div>
<div class="article-entry" itemprop="articleBody">
<div class="entry-summary">
今年这张图解开了我多年的困惑,为什么总是不开心,因为身处绝望之谷还一无所知,未知的敌人才是最可怕的。现在不仅知道了问题所在,还指明了前进的方向,虽然还没有具体的方法,但只要坚持不懈,总会走出去的。如何成为一个有智慧的人,现阶段除了看书,好像没有更好的办法了。虽然这些年一直坚持在看书,但是没啥方向性,如果好好计划一下,应该会有效果,试试吧。
自从跟了长赢计划,开始对投资无限感兴趣,进而开始学习一些经济学原理,还没入门。虽然没几个钱,目前跟的计划还是浮亏,但是很开心,而且充满希望。A股这个大底能否让我实现人生巅峰,就看这一波了,手动狗头。有人说,没钱,投个屁资,先老老实实上班赚钱再说。对,也不全对。班是必须好好上的,因为工资是最稳定的现金流,是财富积累的基础。与此同时,如果在不占用过多精力的基
<p class="article-more-link">
<a href="/posts/2019-02-05-2019-year-summary/#more">Continue Reading →</a>
</p>
</div>
</div>
<footer class="entry-meta entry-footer">
<span class="ico-folder"></span>
<a class="article-category-link" href="/categories/%E6%80%BB%E7%BB%93/">总结</a>
<span class="ico-tags"></span>
<ul class="article-tag-list" itemprop="keywords"><li class="article-tag-list-item"><a class="article-tag-list-link" href="/tags/%E5%B9%B4%E7%BB%88%E6%80%BB%E7%BB%93/" rel="tag">年终总结</a></li></ul>
</footer>
<hr class="entry-footer-hr">
</div>
</article>
<!-- Table of Contents -->
<article id="post-2019-02-04-2018-year-book-list" class="article article-type-post" itemscope itemprop="blogPost" >
<div id="articleInner" class="clearfix post-1016 post type-post status-publish format-standard has-post-thumbnail hentry category-template-2 category-uncategorized tag-codex tag-edge-case tag-featured-image tag-image tag-template">
<header class="article-header">
<h1 class="thumb" itemprop="name">
<a class="article-title" href="/posts/2019-02-04-2018-year-book-list/">2018年书单</a>
</h1>
</header>
<div class="article-meta">
<a href="/posts/2019-02-04-2018-year-book-list/" class="article-date">
<time datetime="2019-02-04T15:38:51.000Z" itemprop="datePublished">February 4, 2019</time>
</a>
<span class="ico-folder"></span>
<a class="article-category-link" href="/categories/%E9%98%85%E8%AF%BB/">阅读</a>
</div>
<div class="article-entry" itemprop="articleBody">
<div class="entry-summary">
增长是门学问,值得好好研究,本书就一些基本理论和成功案例进行了很好的说明,入门了……
奖励不一定是好事,情怀才能长久,关注驱动力,关注人们本身。
剖析选择让人痛苦的原因,并给出11条建议,让生活更加美好。
教我们怎么去影响别人,与怎么不被影响,信息爆炸的时代,尽量处理好每一条信息吧。读书笔记
大道至简,道理一看就懂,如何落地才是关键。
没嘛别没钱。
<p class="article-more-link">
<a href="/posts/2019-02-04-2018-year-book-list/#more">Continue Reading →</a>
</p>
</div>
</div>
<footer class="entry-meta entry-footer">
<span class="ico-folder"></span>
<a class="article-category-link" href="/categories/%E9%98%85%E8%AF%BB/">阅读</a>
<span class="ico-tags"></span>
<ul class="article-tag-list" itemprop="keywords"><li class="article-tag-list-item"><a class="article-tag-list-link" href="/tags/%E4%B9%A6%E5%8D%95/" rel="tag">书单</a></li></ul>
</footer>
<hr class="entry-footer-hr">
</div>
</article>
<!-- Table of Contents -->
<article id="post-2018-09-09-reading-notes-of-influence" class="article article-type-post" itemscope itemprop="blogPost" >
<div id="articleInner" class="clearfix post-1016 post type-post status-publish format-standard has-post-thumbnail hentry category-template-2 category-uncategorized tag-codex tag-edge-case tag-featured-image tag-image tag-template">
<header class="article-header">
<h1 class="thumb" itemprop="name">
<a class="article-title" href="/posts/2018-09-09-reading-notes-of-influence/">读书笔记之《影响力》</a>
</h1>
</header>
<div class="article-meta">
<a href="/posts/2018-09-09-reading-notes-of-influence/" class="article-date">
<time datetime="2018-09-09T14:08:19.000Z" itemprop="datePublished">September 9, 2018</time>
</a>
<span class="ico-folder"></span>
<a class="article-category-link" href="/categories/%E9%98%85%E8%AF%BB/">阅读</a>
</div>
<div class="article-entry" itemprop="articleBody">
<div class="entry-summary">
买书的时候后以为是写如何提升自身影响力的,其实是写哪些心里原则影响了人们的行为与决策。六大影响力原则:互惠、承诺和一致、社会认同、喜好、权威、稀缺。
01 影响力的武器
大量动物形成了一系列盲目而机械的规律性行为模式,例如,雌火鸡通过“叽叽”声来照顾小火鸡。可笑的是雌火鸡竟然会照顾一只发出“叽叽”声的臭鼬充气玩具,要知道臭鼬可是火鸡的天敌啊。这种固定的行为模式虽然看起来比较荒唐,但是在大部分情况下都运作良好。我觉得这应该是千百万年进化的结果,已经固化到基因里去了。
这种所谓的“按一下就播放”的行为,在我们人类身上也同样的存在。例如,我们在要别人帮忙的时候,要是能给一个理由,成功的概率会大很多。
“真不好意思,我有5页纸要印。因为时间有点赶,我可以先用复印机么?”(94%同意)
“真不好
<p class="article-more-link">
<a href="/posts/2018-09-09-reading-notes-of-influence/#more">Continue Reading →</a>
</p>
</div>
</div>
<footer class="entry-meta entry-footer">
<span class="ico-folder"></span>
<a class="article-category-link" href="/categories/%E9%98%85%E8%AF%BB/">阅读</a>
<span class="ico-tags"></span>
<ul class="article-tag-list" itemprop="keywords"><li class="article-tag-list-item"><a class="article-tag-list-link" href="/tags/%E8%AF%BB%E4%B9%A6%E7%AC%94%E8%AE%B0/" rel="tag">读书笔记</a></li></ul>
</footer>
<hr class="entry-footer-hr">
</div>
</article>
<!-- Table of Contents -->
<article id="post-2018-05-23-getting-started-with-ai" class="article article-type-post" itemscope itemprop="blogPost" >
<div id="articleInner" class="clearfix post-1016 post type-post status-publish format-standard has-post-thumbnail hentry category-template-2 category-uncategorized tag-codex tag-edge-case tag-featured-image tag-image tag-template">
<header class="article-header">
<h1 class="thumb" itemprop="name">
<a class="article-title" href="/posts/2018-05-23-getting-started-with-ai/">零基础AI入门指南</a>
</h1>
</header>
<div class="article-meta">
<a href="/posts/2018-05-23-getting-started-with-ai/" class="article-date">
<time datetime="2018-05-23T14:06:44.000Z" itemprop="datePublished">May 23, 2018</time>
</a>
<span class="ico-folder"></span>
<a class="article-category-link" href="/categories/%E6%8A%80%E6%9C%AF/">技术</a>
</div>
<div class="article-entry" itemprop="articleBody">
<div class="entry-summary">
技术浪潮一波又一波,目前最汹涌的非AI莫属,无数小白迷离着双眼,准备学习一波,又不知从何入手。本人去年以身犯险,虽死磕未果,但初窥门径,分享一些心得,供纯小白入门使用。
首先AI对数学基础要求比较高,微积分、线性代数、概率与统计,缺一不可。其次需要有一定的编程能力,Python或R至少得会一种。然后AI本身还有一大堆的理论和算法需要学习。最后不要以为理论都会了就算入门了,实践才是最重要的。
数学、编程、理论、实践,每一个阶段都像一座大山,需要你去一座座的翻越,而在翻山的过程中有一个隐藏的BOSS始终伴你左右,随时准备把你击溃。这个BOSS就是小白入门AI时最最最需要克服的困难——挫败感。对于小白来说,AI学习是个漫长枯燥又极其困难的过程,尤其死磕算法的时候,稍有不慎,疲惫和挫败感就会把你
<p class="article-more-link">
<a href="/posts/2018-05-23-getting-started-with-ai/#more">Continue Reading →</a>
</p>
</div>
</div>
<footer class="entry-meta entry-footer">
<span class="ico-folder"></span>
<a class="article-category-link" href="/categories/%E6%8A%80%E6%9C%AF/">技术</a>
<span class="ico-tags"></span>
<ul class="article-tag-list" itemprop="keywords"><li class="article-tag-list-item"><a class="article-tag-list-link" href="/tags/AI/" rel="tag">AI</a></li></ul>
</footer>
<hr class="entry-footer-hr">
</div>
</article>
<!-- Table of Contents -->
<nav id="page-nav">
<span class="page-number current">1</span><a class="page-number" href="/page/2/">2</a><a class="page-number" href="/page/3/">3</a><a class="extend next" rel="next" href="/page/2/">Next</a>
</nav>
</section>
<aside id="sidebar">
<div style="margin: 20px 0;">
<div id="search-form-wrap">
<form class="search-form">
<label style="width: 72%;">
<span class="screen-reader-text">Search for:</span>
<input type="search" class="search-field" style="height: 36px; width: 100%;" placeholder=" Search…" value="" name="s" title="Search for:">
</label>
<input type="submit" class="search-form-submit" value="Search">
</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: 'Posts',
PAGES: 'Pages',
CATEGORIES: 'Categories',
TAGS: 'Tags',
UNTITLED: '(Untitled)',
},
ROOT_URL: '/',
CONTENT_URL: '/content.json',
};
window.INSIGHT_CONFIG = INSIGHT_CONFIG;
})(window);
</script>
<script src="/js/insight.js"></script>
</div>
</div>
<div class="widget-wrap">
<h3 class="widget-title">Connect With Us</h3>
<div class="widget widget_athemes_social_icons">
<ul class="clearfix widget-social-icons">
<li><a href="https://github.com/venson999" target="_blank" rel="noopener" title="Github"><i class="fa fa-github" aria-hidden="true"></i></a></li>
<li><a href="https://weibo.com/u/1757144813" target="_blank" rel="noopener" title="Weibo"><i class="fa fa-weibo" aria-hidden="true"></i></a></li>
<li><a href="https://venson-blog-images.oss-cn-beijing.aliyuncs.com/qrcode/mmqrcode1582811158538.png" target="_blank" rel="noopener" title="Weixin"><i class="fa fa-weixin" aria-hidden="true"></i></a></li>
</ul>
<!--
<ul class="clearfix widget-social-icons">
<li class="widget-si-twitter"><a href="http://twitter.com" target="_blank" rel="noopener" title="Twitter"><i class="ico-twitter"></i></a></li>
<li class="widget-si-facebook"><a href="http://facebook.com" target="_blank" rel="noopener" title="Facebook"><i class="ico-facebook"></i></a></li>
<li class="widget-si-gplus"><a href="http://plus.google.com" target="_blank" rel="noopener" title="Google+"><i class="ico-gplus"></i></a></li>
<li class="widget-si-pinterest"><a href="http://pinterest.com" target="_blank" rel="noopener" title="Pinterest"><i class="ico-pinterest"></i></a></li>
<li class="widget-si-flickr"><a href="http://flickr.com" target="_blank" rel="noopener" title="Flickr"><i class="ico-flickr"></i></a></li>
<li class="widget-si-instagram"><a href="http://instagram.com" target="_blank" rel="noopener" title="Instagram"><i class="ico-instagram"></i></a></li>
</ul> -->
</div>
</div>
<div class="widget_athemes_tabs">
<ul id="widget-tab" class="clearfix widget-tab-nav">
<li class="active"><a>Recent Posts</a></li>
</ul>
<div class="widget">
<ul>
<li class="clearfix">
<div class="widget-entry-summary" style="margin: 0;">
<h6 style="margin: 0;"><a href="/posts/2021-02-15-2020-year-summary/">2020年总结</a></h6>
<span>February 15, 2021</span>
</div>
</li>
<li class="clearfix">
<div class="widget-entry-summary" style="margin: 0;">
<h6 style="margin: 0;"><a href="/posts/2021-02-15-2020-year-book-list/">2020年书单</a></h6>
<span>February 15, 2021</span>
</div>
</li>
<li class="clearfix">
<div class="widget-entry-summary" style="margin: 0;">
<h6 style="margin: 0;"><a href="/posts/2020-08-19-reading-notes-of-managing-corporate-lifecycles/">读书笔记之《企业生命周期》</a></h6>
<span>August 19, 2020</span>
</div>
</li>
<li class="clearfix">
<div class="widget-entry-summary" style="margin: 0;">
<h6 style="margin: 0;"><a href="/posts/2020-03-15-my-opinion-on-education/">教育之我见</a></h6>
<span>March 15, 2020</span>
</div>
</li>
<li class="clearfix">
<div class="widget-entry-summary" style="margin: 0;">
<h6 style="margin: 0;"><a href="/posts/2020-02-01-2019-year-book-list/">2019年书单</a></h6>
<span>February 1, 2020</span>
</div>
</li>
<li class="clearfix">
<div class="widget-entry-summary" style="margin: 0;">
<h6 style="margin: 0;"><a href="/posts/2020-01-31-2019-year-summary/">2019年总结</a></h6>
<span>January 31, 2020</span>
</div>
</li>
</ul>
</div>
</div>
<div class="widget-wrap">
<h3 class="widget-title">Categories</h3>
<div class="widget">
<ul class="category-list"><li class="category-list-item"><a class="category-list-link" href="/categories/%E6%80%9D%E8%80%83/">思考</a><span class="category-list-count">6</span></li><li class="category-list-item"><a class="category-list-link" href="/categories/%E6%80%BB%E7%BB%93/">总结</a><span class="category-list-count">6</span></li><li class="category-list-item"><a class="category-list-link" href="/categories/%E6%8A%80%E6%9C%AF/">技术</a><span class="category-list-count">9</span></li><li class="category-list-item"><a class="category-list-link" href="/categories/%E9%98%85%E8%AF%BB/">阅读</a><span class="category-list-count">8</span></li></ul>
</div>
</div>
<div class="widget-wrap">
<h3 class="widget-title">Tags</h3>
<div class="widget">
<ul class="tag-list" itemprop="keywords"><li class="tag-list-item"><a class="tag-list-link" href="/tags/AI/" rel="tag">AI</a><span class="tag-list-count">1</span></li><li class="tag-list-item"><a class="tag-list-link" href="/tags/Async/" rel="tag">Async</a><span class="tag-list-count">1</span></li><li class="tag-list-item"><a class="tag-list-link" href="/tags/Cryptography/" rel="tag">Cryptography</a><span class="tag-list-count">1</span></li><li class="tag-list-item"><a class="tag-list-link" href="/tags/Docker/" rel="tag">Docker</a><span class="tag-list-count">2</span></li><li class="tag-list-item"><a class="tag-list-link" href="/tags/Encoding/" rel="tag">Encoding</a><span class="tag-list-count">1</span></li><li class="tag-list-item"><a class="tag-list-link" href="/tags/GFW/" rel="tag">GFW</a><span class="tag-list-count">1</span></li><li class="tag-list-item"><a class="tag-list-link" href="/tags/Node-js/" rel="tag">Node.js</a><span class="tag-list-count">5</span></li><li class="tag-list-item"><a class="tag-list-link" href="/tags/Vagrant/" rel="tag">Vagrant</a><span class="tag-list-count">1</span></li><li class="tag-list-item"><a class="tag-list-link" href="/tags/libuv/" rel="tag">libuv</a><span class="tag-list-count">1</span></li><li class="tag-list-item"><a class="tag-list-link" href="/tags/%E4%B9%A6%E5%8D%95/" rel="tag">书单</a><span class="tag-list-count">6</span></li><li class="tag-list-item"><a class="tag-list-link" href="/tags/%E5%B7%A5%E4%BD%9C/" rel="tag">工作</a><span class="tag-list-count">2</span></li><li class="tag-list-item"><a class="tag-list-link" href="/tags/%E5%B9%B4%E7%BB%88%E6%80%BB%E7%BB%93/" rel="tag">年终总结</a><span class="tag-list-count">6</span></li><li class="tag-list-item"><a class="tag-list-link" href="/tags/%E6%95%99%E8%82%B2/" rel="tag">教育</a><span class="tag-list-count">1</span></li><li class="tag-list-item"><a class="tag-list-link" href="/tags/%E7%94%9F%E6%B4%BB/" rel="tag">生活</a><span class="tag-list-count">4</span></li><li class="tag-list-item"><a class="tag-list-link" href="/tags/%E7%A4%BE%E4%BC%9A/" rel="tag">社会</a><span class="tag-list-count">1</span></li><li class="tag-list-item"><a class="tag-list-link" href="/tags/%E8%AF%BB%E4%B9%A6%E7%AC%94%E8%AE%B0/" rel="tag">读书笔记</a><span class="tag-list-count">2</span></li></ul>
</div>
</div>
<div class="widget-wrap">
<h3 class="widget-title">Tag Cloud</h3>
<div class="widget tagcloud">
<a href="/tags/AI/" style="font-size: 10px;">AI</a> <a href="/tags/Async/" style="font-size: 10px;">Async</a> <a href="/tags/Cryptography/" style="font-size: 10px;">Cryptography</a> <a href="/tags/Docker/" style="font-size: 12.5px;">Docker</a> <a href="/tags/Encoding/" style="font-size: 10px;">Encoding</a> <a href="/tags/GFW/" style="font-size: 10px;">GFW</a> <a href="/tags/Node-js/" style="font-size: 17.5px;">Node.js</a> <a href="/tags/Vagrant/" style="font-size: 10px;">Vagrant</a> <a href="/tags/libuv/" style="font-size: 10px;">libuv</a> <a href="/tags/%E4%B9%A6%E5%8D%95/" style="font-size: 20px;">书单</a> <a href="/tags/%E5%B7%A5%E4%BD%9C/" style="font-size: 12.5px;">工作</a> <a href="/tags/%E5%B9%B4%E7%BB%88%E6%80%BB%E7%BB%93/" style="font-size: 20px;">年终总结</a> <a href="/tags/%E6%95%99%E8%82%B2/" style="font-size: 10px;">教育</a> <a href="/tags/%E7%94%9F%E6%B4%BB/" style="font-size: 15px;">生活</a> <a href="/tags/%E7%A4%BE%E4%BC%9A/" style="font-size: 10px;">社会</a> <a href="/tags/%E8%AF%BB%E4%B9%A6%E7%AC%94%E8%AE%B0/" style="font-size: 12.5px;">读书笔记</a>
</div>
</div>
<div class="widget-wrap">
<h3 class="widget-title">Archives</h3>
<div class="widget">
<ul class="archive-list"><li class="archive-list-item"><a class="archive-list-link" href="/archives/2021/02/">February 2021</a><span class="archive-list-count">2</span></li><li class="archive-list-item"><a class="archive-list-link" href="/archives/2020/08/">August 2020</a><span class="archive-list-count">1</span></li><li class="archive-list-item"><a class="archive-list-link" href="/archives/2020/03/">March 2020</a><span class="archive-list-count">1</span></li><li class="archive-list-item"><a class="archive-list-link" href="/archives/2020/02/">February 2020</a><span class="archive-list-count">1</span></li><li class="archive-list-item"><a class="archive-list-link" href="/archives/2020/01/">January 2020</a><span class="archive-list-count">1</span></li><li class="archive-list-item"><a class="archive-list-link" href="/archives/2019/02/">February 2019</a><span class="archive-list-count">2</span></li><li class="archive-list-item"><a class="archive-list-link" href="/archives/2018/09/">September 2018</a><span class="archive-list-count">1</span></li><li class="archive-list-item"><a class="archive-list-link" href="/archives/2018/05/">May 2018</a><span class="archive-list-count">1</span></li><li class="archive-list-item"><a class="archive-list-link" href="/archives/2018/02/">February 2018</a><span class="archive-list-count">2</span></li><li class="archive-list-item"><a class="archive-list-link" href="/archives/2017/06/">June 2017</a><span class="archive-list-count">1</span></li><li class="archive-list-item"><a class="archive-list-link" href="/archives/2017/02/">February 2017</a><span class="archive-list-count">1</span></li><li class="archive-list-item"><a class="archive-list-link" href="/archives/2017/01/">January 2017</a><span class="archive-list-count">1</span></li><li class="archive-list-item"><a class="archive-list-link" href="/archives/2016/12/">December 2016</a><span class="archive-list-count">1</span></li><li class="archive-list-item"><a class="archive-list-link" href="/archives/2016/09/">September 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">1</span></li><li class="archive-list-item"><a class="archive-list-link" href="/archives/2016/03/">March 2016</a><span class="archive-list-count">1</span></li><li class="archive-list-item"><a class="archive-list-link" href="/archives/2016/02/">February 2016</a><span class="archive-list-count">2</span></li><li class="archive-list-item"><a class="archive-list-link" href="/archives/2015/12/">December 2015</a><span class="archive-list-count">2</span></li><li class="archive-list-item"><a class="archive-list-link" href="/archives/2015/11/">November 2015</a><span class="archive-list-count">1</span></li><li class="archive-list-item"><a class="archive-list-link" href="/archives/2015/10/">October 2015</a><span class="archive-list-count">1</span></li><li class="archive-list-item"><a class="archive-list-link" href="/archives/2015/09/">September 2015</a><span class="archive-list-count">1</span></li><li class="archive-list-item"><a class="archive-list-link" href="/archives/2015/08/">August 2015</a><span class="archive-list-count">1</span></li><li class="archive-list-item"><a class="archive-list-link" href="/archives/2015/04/">April 2015</a><span class="archive-list-count">1</span></li><li class="archive-list-item"><a class="archive-list-link" href="/archives/2015/03/">March 2015</a><span class="archive-list-count">1</span></li></ul>
</div>
</div>
</aside>
</div>
</div>
<!-- <nav id="mobile-nav">
<a href="/" class="mobile-nav-link">Home</a>