-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
1805 lines (613 loc) · 41.9 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 class="theme-next muse use-motion" lang="">
<head><meta name="generator" content="Hexo 3.8.0">
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1">
<meta name="theme-color" content="#222">
<meta http-equiv="Cache-Control" content="no-transform">
<meta http-equiv="Cache-Control" content="no-siteapp">
<link href="/lib/fancybox/source/jquery.fancybox.css?v=2.1.5" rel="stylesheet" type="text/css">
<link href="/lib/font-awesome/css/font-awesome.min.css?v=4.6.2" rel="stylesheet" type="text/css">
<link href="/css/main.css?v=5.1.4" rel="stylesheet" type="text/css">
<link rel="apple-touch-icon" sizes="180x180" href="/images/apple-touch-icon-next.png?v=5.1.4">
<link rel="icon" type="image/png" sizes="32x32" href="/images/favicon-32x32-next.png?v=5.1.4">
<link rel="icon" type="image/png" sizes="16x16" href="/images/favicon-16x16-next.png?v=5.1.4">
<link rel="mask-icon" href="/images/logo.svg?v=5.1.4" color="#222">
<meta name="keywords" content="Hexo, NexT">
<meta property="og:type" content="website">
<meta property="og:title" content="fakership の blog">
<meta property="og:url" content="http://yoursite.com/index.html">
<meta property="og:site_name" content="fakership の blog">
<meta property="og:locale" content="default">
<meta name="twitter:card" content="summary">
<meta name="twitter:title" content="fakership の blog">
<script type="text/javascript" id="hexo.configurations">
var NexT = window.NexT || {};
var CONFIG = {
root: '/',
scheme: 'Muse',
version: '5.1.4',
sidebar: {"position":"left","display":"post","offset":12,"b2t":false,"scrollpercent":false,"onmobile":false},
fancybox: true,
tabs: true,
motion: {"enable":true,"async":false,"transition":{"post_block":"fadeIn","post_header":"slideDownIn","post_body":"slideDownIn","coll_header":"slideLeftIn","sidebar":"slideUpIn"}},
duoshuo: {
userId: '0',
author: 'Author'
},
algolia: {
applicationID: '',
apiKey: '',
indexName: '',
hits: {"per_page":10},
labels: {"input_placeholder":"Search for Posts","hits_empty":"We didn't find any results for the search: ${query}","hits_stats":"${hits} results found in ${time} ms"}
}
};
</script>
<link rel="canonical" href="http://yoursite.com/">
<title>fakership の blog</title>
</head>
<body itemscope="" itemtype="http://schema.org/WebPage" lang="default">
<div class="container sidebar-position-left
page-home">
<div class="headband"></div>
<header id="header" class="header" itemscope="" itemtype="http://schema.org/WPHeader">
<div class="header-inner"><div class="site-brand-wrapper">
<div class="site-meta ">
<div class="custom-logo-site-title">
<a href="/" class="brand" rel="start">
<span class="logo-line-before"><i></i></span>
<span class="site-title">fakership の blog</span>
<span class="logo-line-after"><i></i></span>
</a>
</div>
<p class="site-subtitle"></p>
</div>
<div class="site-nav-toggle">
<button>
<span class="btn-bar"></span>
<span class="btn-bar"></span>
<span class="btn-bar"></span>
</button>
</div>
</div>
<nav class="site-nav">
<ul id="menu" class="menu">
<li class="menu-item menu-item-home">
<a href="/" rel="section">
<i class="menu-item-icon fa fa-fw fa-home"></i> <br>
Home
</a>
</li>
<li class="menu-item menu-item-archives">
<a href="/archives/" rel="section">
<i class="menu-item-icon fa fa-fw fa-archive"></i> <br>
Archives
</a>
</li>
</ul>
</nav>
</div>
</header>
<main id="main" class="main">
<div class="main-inner">
<div class="content-wrap">
<div id="content" class="content">
<section id="posts" class="posts-expand">
<article class="post post-type-normal" itemscope="" itemtype="http://schema.org/Article">
<div class="post-block">
<link itemprop="mainEntityOfPage" href="http://yoursite.com/2020/06/09/今日所想-2020-6-9/">
<span hidden itemprop="author" itemscope="" itemtype="http://schema.org/Person">
<meta itemprop="name" content="fakership">
<meta itemprop="description" content="">
<meta itemprop="image" content="/images/avatar.gif">
</span>
<span hidden itemprop="publisher" itemscope="" itemtype="http://schema.org/Organization">
<meta itemprop="name" content="fakership の blog">
</span>
<header class="post-header">
<h1 class="post-title" itemprop="name headline">
<a class="post-title-link" href="/2020/06/09/今日所想-2020-6-9/" itemprop="url">今日所想-2020-6-9</a></h1>
<div class="post-meta">
<span class="post-time">
<span class="post-meta-item-icon">
<i class="fa fa-calendar-o"></i>
</span>
<span class="post-meta-item-text">Posted on</span>
<time title="Post created" itemprop="dateCreated datePublished" datetime="2020-06-09T22:11:29+08:00">
2020-06-09
</time>
</span>
</div>
</header>
<div class="post-body" itemprop="articleBody">
<p>最近在面试,给我带来了很多不一样的想法,技术还是非常有意思的。</p>
<p>还是那句话,沉浸在业务里头会让你失去对技术的敏感,谨记,不论何时,尽量保持每天做一道题。</p>
<p>感觉自己的广度差不多够了,选择几个方向往深走走。</p>
</div>
<footer class="post-footer">
<div class="post-eof"></div>
</footer>
</div>
</article>
<article class="post post-type-normal" itemscope="" itemtype="http://schema.org/Article">
<div class="post-block">
<link itemprop="mainEntityOfPage" href="http://yoursite.com/2020/03/18/《人生设计在童年》读后感/">
<span hidden itemprop="author" itemscope="" itemtype="http://schema.org/Person">
<meta itemprop="name" content="fakership">
<meta itemprop="description" content="">
<meta itemprop="image" content="/images/avatar.gif">
</span>
<span hidden itemprop="publisher" itemscope="" itemtype="http://schema.org/Organization">
<meta itemprop="name" content="fakership の blog">
</span>
<header class="post-header">
<h1 class="post-title" itemprop="name headline">
<a class="post-title-link" href="/2020/03/18/《人生设计在童年》读后感/" itemprop="url">《人生设计在童年》读后感</a></h1>
<div class="post-meta">
<span class="post-time">
<span class="post-meta-item-icon">
<i class="fa fa-calendar-o"></i>
</span>
<span class="post-meta-item-text">Posted on</span>
<time title="Post created" itemprop="dateCreated datePublished" datetime="2020-03-18T13:37:47+08:00">
2020-03-18
</time>
</span>
</div>
</header>
<div class="post-body" itemprop="articleBody">
<p>最近在看一本叫做《人生设计在童年》的书。</p>
<p>说真的,我很震惊。看完这本书,我对于自身所陷入的陷阱也稍微有点明白了。</p>
<p>其实,我自己的action里头有着大量需要做的事情,我也深深的明白我要去做,但是,问题是,我什么拉不起精神呢?</p>
<p>一方面是身体的原因,这点必然是有的。</p>
<p>但另个一方面,绝对不是我懒,或者说是拖延,而是我自身的整体认知受到了限制,而导致我一直在自己思维的囚牢里头,密不透气。我现在的瓶颈不是在某个技术点,或者某项技术上,我认为那些只需要通过研究,花些时间即可搞定的东西。</p>
<p>所以,我一直心里有种束缚的感觉,我能感觉到我的认知或者行为理念上出现了严重的限制我自身的问题。</p>
<p>而看到这本书,我也笃定了我的怀疑,或者说我一直有这个怀疑,但问题是我一直没找到解法,所以我过些时间就会很痛苦,我认为我现在如果要突破,就必须解决掉这件事。</p>
<p>不要总想着,通过时间或者其他手段可以解决。</p>
<p>虽然,我目前不能找到直接的解决方式,但我大致明白,我应该怎么做了:</p>
<ol>
<li>看书 - 大量的看书,</li>
<li>写 - 总结自己所看的书</li>
<li>讲 - 讲自己所看的书 </li>
</ol>
<p>我认为以上三点,我不断的去做不断地去做,一定会慢慢抓到瓶颈的。</p>
<p>所以,此博客,会作为看书的总结,不再写写乱七八糟的东西,因为,我明白了,是什么在限制着我。</p>
</div>
<footer class="post-footer">
<div class="post-eof"></div>
</footer>
</div>
</article>
<article class="post post-type-normal" itemscope="" itemtype="http://schema.org/Article">
<div class="post-block">
<link itemprop="mainEntityOfPage" href="http://yoursite.com/2019/12/31/关于焦虑以及强迫思维/">
<span hidden itemprop="author" itemscope="" itemtype="http://schema.org/Person">
<meta itemprop="name" content="fakership">
<meta itemprop="description" content="">
<meta itemprop="image" content="/images/avatar.gif">
</span>
<span hidden itemprop="publisher" itemscope="" itemtype="http://schema.org/Organization">
<meta itemprop="name" content="fakership の blog">
</span>
<header class="post-header">
<h1 class="post-title" itemprop="name headline">
<a class="post-title-link" href="/2019/12/31/关于焦虑以及强迫思维/" itemprop="url">关于焦虑以及强迫思维</a></h1>
<div class="post-meta">
<span class="post-time">
<span class="post-meta-item-icon">
<i class="fa fa-calendar-o"></i>
</span>
<span class="post-meta-item-text">Posted on</span>
<time title="Post created" itemprop="dateCreated datePublished" datetime="2019-12-31T18:51:37+08:00">
2019-12-31
</time>
</span>
</div>
</header>
<div class="post-body" itemprop="articleBody">
<p>有时候,我在想我有些时候还是蛮NB的,或者也是蛮运气的,靠着我这个残缺的注意力挺到了现在。</p>
<p>高三是万恶的开端,也是对我贪婪的惩罚,所以的起始在于我对时间的过分追求,那个时候,时间总是不够的,所以怎么办的。<br>那个时候我发现,人会一般进入一些“高光“(这个词是我自己命名的,之后知道专业术语再补上,即脑袋极其兴奋,处理效率极其高的状态,这个状态一般会在考试最后5min以及线上故障处理上会出现),所以那个时候,我在想,我可以让我自己一直处于高光时刻啊,多么令人着迷的状态啊。</p>
<p>自此之后,我都是这么要求自己的,其实刚开始一段时间,真的很效率,真的很high,基本上老师一堂课下来,我都能整理到老师所讲课的整理顺序以及逻辑,而且要求极其完美,如果中间稍微磕碰了下,我都会重新总结直到一字不差。</p>
<p>但是,我现在想想,这跟CPU一直满负荷运转有啥区别,直到了后来,越来越做不到,但同时我压根没意识到这个问题,我所想要的完美这个时候变成了一把致命的毒,让我陷入了焦虑的深渊。</p>
<p>从此之后,我一节课都没听进去过,无穷无尽的焦虑充斥着整个脑袋,虽然表面看上去没有问题,但其实大脑的运转基本已经崩溃,这就会导致注意力、精神力急剧下降,这是件很可怕的事情。</p>
<p>用CPU举例子,大概就是要处理的任务早已挤爆了内存,但这个时候CPU在无限空跑(严格的说在while循环跑一个无聊的空函数),基本达到了95%,只剩5%的脑力在处理成堆的任务。</p>
<p>在这之后,所有的失败接踵而至。</p>
<p>高考的失败,家庭的变动,让我彻彻底底地被黑暗围绕。</p>
<p>大学的时光,必定是堕落的时光,只有不断的通宵游戏才会短暂的麻痹自我,因为我对自己失望至极,因为我摆脱不出这种状态,不论我再怎么鞭策自己,不论我再怎么折磨自己,我始终在深渊徘徊,后来我发现,一旦我不再挣扎,自己就会好受一些,从此之后,我放弃了自己,因为我知道,我做什么都是没用的。</p>
<p>毕业之后,对别人来说,可能是开心,可能是奋斗,但对我是更可怕的牢笼,因为至少在大学,我还可以麻痹自我,但开始工作,意味着你要丢掉饭碗。</p>
<p>所以我又试着挣扎,试着摆脱,但只能一次一次的以失败告终,我绝望至极。</p>
<p>6年啊,6年啊,我在做些什么啊!!!!我当时在想,我宁愿被车撞残,然后躺在医院,因为至少别人是知道的,而不像当时那样外表其实没啥两样,但其实内心、大脑,已经一片死寂、一片混沌。</p>
<p>因为这种病很多人无法理解,甚至觉得莫名其妙,甚至嘲讽。我真的想告诉别人,不是我不想努力,是我不能努力!听起来特别可笑的话,但这是真的。无法被人理解,我自己也无法理解,让我跌入了谷底。</p>
<p>自杀的念头我真的不知道出现过多少次。</p>
<p>接着,为啥没有呢,有这么一句话,忘了出自哪里,人啊,要活着,长活着,各种苟且的或者,可能活着活着有些事情就会出现转机。老天爷不会让一个人承担所有的罪罚。</p>
<p>有些时候,我也会在想如果有一天我突然间好起来了,会是什么心情呢,那时候我认为肯定会大哭一场的,因为光明终于驱散了我大脑里如同附骨之疽般杂乱的思绪。</p>
<p>——————</p>
<p>接着写吧。</p>
<p>可能我的好运终于来了,我可以去另外一个地方了,这对我来说真的是一个救命的机会。</p>
</div>
<footer class="post-footer">
<div class="post-eof"></div>
</footer>
</div>
</article>
<article class="post post-type-normal" itemscope="" itemtype="http://schema.org/Article">
<div class="post-block">
<link itemprop="mainEntityOfPage" href="http://yoursite.com/2019/10/31/今日思考-2019-10-31/">
<span hidden itemprop="author" itemscope="" itemtype="http://schema.org/Person">
<meta itemprop="name" content="fakership">
<meta itemprop="description" content="">
<meta itemprop="image" content="/images/avatar.gif">
</span>
<span hidden itemprop="publisher" itemscope="" itemtype="http://schema.org/Organization">
<meta itemprop="name" content="fakership の blog">
</span>
<header class="post-header">
<h1 class="post-title" itemprop="name headline">
<a class="post-title-link" href="/2019/10/31/今日思考-2019-10-31/" itemprop="url">今日思考-2019-10-31</a></h1>
<div class="post-meta">
<span class="post-time">
<span class="post-meta-item-icon">
<i class="fa fa-calendar-o"></i>
</span>
<span class="post-meta-item-text">Posted on</span>
<time title="Post created" itemprop="dateCreated datePublished" datetime="2019-10-31T20:05:08+08:00">
2019-10-31
</time>
</span>
</div>
</header>
<div class="post-body" itemprop="articleBody">
<ol>
<li>求战者和,求和者亡。</li>
<li>求上得其中,求中得其下。</li>
</ol>
</div>
<footer class="post-footer">
<div class="post-eof"></div>
</footer>
</div>
</article>
<article class="post post-type-normal" itemscope="" itemtype="http://schema.org/Article">
<div class="post-block">
<link itemprop="mainEntityOfPage" href="http://yoursite.com/2019/10/17/今日感想-2019-10-17/">
<span hidden itemprop="author" itemscope="" itemtype="http://schema.org/Person">
<meta itemprop="name" content="fakership">
<meta itemprop="description" content="">
<meta itemprop="image" content="/images/avatar.gif">
</span>
<span hidden itemprop="publisher" itemscope="" itemtype="http://schema.org/Organization">
<meta itemprop="name" content="fakership の blog">
</span>
<header class="post-header">
<h1 class="post-title" itemprop="name headline">
<a class="post-title-link" href="/2019/10/17/今日感想-2019-10-17/" itemprop="url">今日感想- 2019-10-17</a></h1>
<div class="post-meta">
<span class="post-time">
<span class="post-meta-item-icon">
<i class="fa fa-calendar-o"></i>
</span>
<span class="post-meta-item-text">Posted on</span>
<time title="Post created" itemprop="dateCreated datePublished" datetime="2019-10-17T20:20:28+08:00">
2019-10-17
</time>
</span>
</div>
</header>
<div class="post-body" itemprop="articleBody">
<p>有空的话重新看一遍设计模式吧。</p>
<p>昨天晚上开始吧,貌似强迫症有点小犯,应该是最近累了吧,感觉精力根本不够。身体的话应该没啥问题。</p>
<p>所以,我需要思考的是,年龄的增长,自己如何利用现有的状态去积极地快速成长呢。</p>
<p>还有,如果自己感觉到状态不好,请去休息,就早点回,耗着不过是耗费自己的精气神。</p>
<p>结束。</p>
</div>
<footer class="post-footer">
<div class="post-eof"></div>
</footer>
</div>
</article>
<article class="post post-type-normal" itemscope="" itemtype="http://schema.org/Article">
<div class="post-block">
<link itemprop="mainEntityOfPage" href="http://yoursite.com/2019/10/14/沉淀沉淀/">
<span hidden itemprop="author" itemscope="" itemtype="http://schema.org/Person">
<meta itemprop="name" content="fakership">
<meta itemprop="description" content="">
<meta itemprop="image" content="/images/avatar.gif">
</span>
<span hidden itemprop="publisher" itemscope="" itemtype="http://schema.org/Organization">
<meta itemprop="name" content="fakership の blog">
</span>
<header class="post-header">
<h1 class="post-title" itemprop="name headline">
<a class="post-title-link" href="/2019/10/14/沉淀沉淀/" itemprop="url">沉淀沉淀</a></h1>
<div class="post-meta">
<span class="post-time">
<span class="post-meta-item-icon">
<i class="fa fa-calendar-o"></i>
</span>
<span class="post-meta-item-text">Posted on</span>
<time title="Post created" itemprop="dateCreated datePublished" datetime="2019-10-14T20:40:11+08:00">
2019-10-14
</time>
</span>
</div>
</header>
<div class="post-body" itemprop="articleBody">
<p>今天开通了自己的微信账号,也有了自己技术博客,希望之后可以好好地运营下去。</p>
<p>当技术走到了一个阶段的时候,就需要沉淀,不用去想什么扩大影响力,我认为比较重要的是<strong>沉淀</strong>。</p>
</div>
<footer class="post-footer">
<div class="post-eof"></div>
</footer>
</div>
</article>
<article class="post post-type-normal" itemscope="" itemtype="http://schema.org/Article">
<div class="post-block">
<link itemprop="mainEntityOfPage" href="http://yoursite.com/2019/10/08/今日学习-10-08/">
<span hidden itemprop="author" itemscope="" itemtype="http://schema.org/Person">
<meta itemprop="name" content="fakership">
<meta itemprop="description" content="">
<meta itemprop="image" content="/images/avatar.gif">