-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
1674 lines (682 loc) · 43.2 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 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 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="//fonts.googleapis.com/css?family=Lato:300,300italic,400,400italic,700,700italic&subset=latin,latin-ext" 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.1" rel="stylesheet" type="text/css" />
<meta name="keywords" content="Hexo, NexT" />
<link rel="shortcut icon" type="image/x-icon" href="/favicon.ico?v=5.1.1" />
<meta property="og:type" content="website">
<meta property="og:title" content="Alan199">
<meta property="og:url" content="http://https://github.com/Alan199/Alan199.github.io.git/index.html">
<meta property="og:site_name" content="Alan199">
<meta name="twitter:card" content="summary">
<meta name="twitter:title" content="Alan199">
<script type="text/javascript" id="hexo.configurations">
var NexT = window.NexT || {};
var CONFIG = {
root: '/',
scheme: 'Muse',
sidebar: {"position":"left","display":"post","offset":12,"offset_float":0,"b2t":false,"scrollpercent":false},
fancybox: true,
motion: true,
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://https://github.com/Alan199/Alan199.github.io.git/"/>
<title>Alan199</title>
</head>
<body itemscope itemtype="http://schema.org/WebPage" lang="">
<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">Alan199</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>
<li class="menu-item menu-item-tags">
<a href="/tags/" rel="section">
<i class="menu-item-icon fa fa-fw fa-tags"></i> <br />
Tags
</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">
<link itemprop="mainEntityOfPage" href="http://https://github.com/Alan199/Alan199.github.io.git/2018/03/17/递归、堆栈关系/">
<span hidden itemprop="author" itemscope itemtype="http://schema.org/Person">
<meta itemprop="name" content="Alan199">
<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="Alan199">
</span>
<header class="post-header">
<h1 class="post-title" itemprop="name headline">
<a class="post-title-link" href="/2018/03/17/递归、堆栈关系/" 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="2018-03-17T09:30:42+08:00">
2018-03-17
</time>
</span>
</div>
</header>
<div class="post-body" itemprop="articleBody">
<h3 id="编程题:"><a href="#编程题:" class="headerlink" title="编程题:"></a>编程题:</h3><p>用递归算法将一个整数n转换成字符串。例如输入234 ,应输出字符串”2 3 4”。<br> voit convert(int n)<br> {<br> int i;<br> char c;<br> if((i=n/10)!=0)<br> convert(i);<br> c=n%10+’0’; //个位数加上‘0’的ASCII码值(48)得到该位数对应字符表示<br> cout<<””<<c;<br> }</p>
<p>显然,设输入52,第一个输出的c应该是2,然后是5.但是结果显示是“5 2”</p>
<p>那么递归应该就利用堆栈来实现的。</p>
<blockquote>
<p>递归是用系统栈来实现的,一般栈的大小默认为1MB。虽然表面上没有使用栈,但系统执行时会自动建立和使用栈。</p>
</blockquote>
<hr>
<h4 id="栈:"><a href="#栈:" class="headerlink" title="栈:"></a>栈:</h4><p>一种线性的数据结构,特点“先进后出”</p>
<h4 id="堆和栈的区别:"><a href="#堆和栈的区别:" class="headerlink" title="堆和栈的区别:"></a>堆和栈的区别:</h4><p>堆是指程序运行时申请动态内存。可以看作一棵完全二叉树。</p>
<p>栈是一种使用方法,先进后出。</p>
</div>
<div>
</div>
<div>
</div>
<div>
</div>
<footer class="post-footer">
<div class="post-eof"></div>
</footer>
</article>
<article class="post post-type-normal " itemscope itemtype="http://schema.org/Article">
<link itemprop="mainEntityOfPage" href="http://https://github.com/Alan199/Alan199.github.io.git/2017/12/31/hexo-g-时-line-4-column1-报错/">
<span hidden itemprop="author" itemscope itemtype="http://schema.org/Person">
<meta itemprop="name" content="Alan199">
<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="Alan199">
</span>
<header class="post-header">
<h1 class="post-title" itemprop="name headline">
<a class="post-title-link" href="/2017/12/31/hexo-g-时-line-4-column1-报错/" itemprop="url">hexo g 时 line 4 column1 报错 </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="2017-12-31T11:24:25+08:00">
2017-12-31
</time>
</span>
</div>
</header>
<div class="post-body" itemprop="articleBody">
<p>hexo g 时发现</p>
<h5 id="YAMLException-cannot-read-a-block-mapping-entry-a-multi-line-key-may-not-be-an-implicit-key-at-line-4-column-1"><a href="#YAMLException-cannot-read-a-block-mapping-entry-a-multi-line-key-may-not-be-an-implicit-key-at-line-4-column-1" class="headerlink" title="YAMLException: cannot read a block mapping entry; a multi line key may not be an implicit key at line 4, column 1"></a>YAMLException: cannot read a block mapping entry; a multi line key may not be an implicit key at line 4, column 1</h5><blockquote>
<p> 原因: tags冒号后面应该有空格</p>
<p><img src="http://ooupgqdn7.bkt.clouddn.com/hexo1.PNG" alt=""></p>
</blockquote>
<h5 id="YAMLException-cannot-read-a-block-mapping-entry-a-multi-line-key-may-not-be-an-implicit-key-at-line-5-column-1-Site"><a href="#YAMLException-cannot-read-a-block-mapping-entry-a-multi-line-key-may-not-be-an-implicit-key-at-line-5-column-1-Site" class="headerlink" title="YAMLException: cannot read a block mapping entry; a multi line key may not be an implicit key at line 5, column 1: # Site"></a>YAMLException: cannot read a block mapping entry; a multi line key may not be an implicit key at line 5, column 1: # Site</h5><h5 id="YAMLException-cannot-read-a-block-mapping-entry-a-multi-line-key-may-not-be-an-implicit-key-at-line-13-column-1-URL"><a href="#YAMLException-cannot-read-a-block-mapping-entry-a-multi-line-key-may-not-be-an-implicit-key-at-line-13-column-1-URL" class="headerlink" title="YAMLException: cannot read a block mapping entry; a multi line key may not be an implicit key at line 13, column 1: # URL"></a>YAMLException: cannot read a block mapping entry; a multi line key may not be an implicit key at line 13, column 1: # URL</h5><blockquote>
<p>配置文件:_config.yml 中 # Site #URL 属性设置后面的:需要有空格</p>
<p>注意时属性后面的“:”</p>
</blockquote>
</div>
<div>
</div>
<div>
</div>
<div>
</div>
<footer class="post-footer">
<div class="post-eof"></div>
</footer>
</article>
<article class="post post-type-normal " itemscope itemtype="http://schema.org/Article">
<link itemprop="mainEntityOfPage" href="http://https://github.com/Alan199/Alan199.github.io.git/2017/12/31/2018/">
<span hidden itemprop="author" itemscope itemtype="http://schema.org/Person">
<meta itemprop="name" content="Alan199">
<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="Alan199">
</span>
<header class="post-header">
<h1 class="post-title" itemprop="name headline">
<a class="post-title-link" href="/2017/12/31/2018/" itemprop="url">2018</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="2017-12-31T09:39:07+08:00">
2017-12-31
</time>
</span>
</div>
</header>
<div class="post-body" itemprop="articleBody">
<h2 id="2018"><a href="#2018" class="headerlink" title="2018"></a>2018</h2><p>很期待2018年</p>
<p>2016年高考已经花完了我这些年的运气</p>
<p>2018年,该扭转了吧</p>
<p>很多很多想要做的事今年没有完成</p>
<p>大学开头这一年半我觉得过得挺虚的</p>
<p>好像,没有一点改变</p>
<p>学吉他学到中途放弃,厨艺也没长进</p>
<p>课很多,压力很大,专业课很少很水,很难提起兴趣</p>
<p>我喜欢计算机专业,喜欢信安</p>
<p>但是几乎没有时间来学喜欢学的</p>
<p>是挺失败的啊</p>
<p>所以这一年半忙碌而虚</p>
<p>2018年,作为一个转折点吧</p>
<p>希望可以管理好时间,可以拼尽全力去做喜欢的事,不错过重要的人</p>
<p>最重要的是,学会做人,即使很忙很累,每一天都要开心</p>
<p>因为生活不只有学习,把生活过得生动灵活,才是生活嘛</p>
</div>
<div>
</div>
<div>
</div>
<div>
</div>
<footer class="post-footer">
<div class="post-eof"></div>
</footer>
</article>
<article class="post post-type-normal " itemscope itemtype="http://schema.org/Article">
<link itemprop="mainEntityOfPage" href="http://https://github.com/Alan199/Alan199.github.io.git/2017/06/10/如何成为一门黑客/">
<span hidden itemprop="author" itemscope itemtype="http://schema.org/Person">
<meta itemprop="name" content="Alan199">
<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="Alan199">
</span>
<header class="post-header">
<h1 class="post-title" itemprop="name headline">
<a class="post-title-link" href="/2017/06/10/如何成为一门黑客/" 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="2017-06-10T11:22:36+08:00">
2017-06-10
</time>
</span>
</div>
</header>
<div class="post-body" itemprop="articleBody">
<hr>
<p><a href="http://ssv.sebug.net/%E5%A6%82%E4%BD%95%E6%88%90%E4%B8%BA%E4%B8%80%E5%90%8D%E9%BB%91%E5%AE%A2" target="_blank" rel="external">《如何成为一名黑客》</a>文档</p>
<hr>
<blockquote>
<h4 id="目录"><a href="#目录" class="headerlink" title="目录"></a>目录</h4><p>1 为什么会有这份文档?<br>2 什么是黑客?<br>3 黑客的态度<br>3.1 这个世界充满了令人着迷的问题等着我们解决<br>3.2 一个问题不应该被解决两次<br>3.3 无聊和乏味的工作是罪恶<br>3.4 崇尚自由<br>3.5 态度不能替代能力<br>4 黑客的基本技能<br>4.1 学习如何编程<br>4.2 学习使用开源的 Unix 系统<br>4.3 学会使用万维网以及编写 HTML<br>4.4 学习英语,如果你的水平不够用的话<br>5 提高自己在黑客圈中的地位<br>5.1 撰写开源软件<br>5.2 帮助测试并调试开源软件<br>5.3 发布有用的信息<br>5.4 帮助维护基础设施的运转<br>5.5 为黑客文化本身服务<br>6 黑客和书呆子(Nerd)的联系<br>7 向黑客的格调靠拢<br>8 关于黑客、开源、以及自由软件的历史<br>9 其它资源<br>10 FAQ(常见问题解答)<br>10.1 怎样才能知道自己已经是一名够格的黑客<br>10.2 你能教我做黑客吗<br>10.3 那么,我要如何开始<br>10.4 我得什么时候开始学?现在会不会太迟了?<br>10.5 要学多久才能学会黑客技能?<br>10.6 Visual Basic 是好的入门语言吗?<br>10.7 你能帮我“黑”掉一个站点吗?或者教我怎么黑它?<br>10.8 我怎么样才能得到别人帐号的密码?<br>10.9 我如何入侵/查看/监视别人的 Email?<br>10.10 我如何才能在IRC聊天室里偷到频道 op 的特权?<br>10.11 我被黑了。你能帮我避免以后再被攻击吗?<br>10.12 我的 Windows 软件出现问题了。你能帮我吗?<br>10.13 我在哪里能找到可以与之交流的真正的黑客?<br>10.14 成为一名黑客我需要擅长数学吗?<br>10.15 我该从那种语言学起<br>10.16 我需要什么样的机器配置<br>10.17 我想贡献社区。你可以帮我选一个问题让我下手吗?<br>10.18 我得因此憎恨和反对 Microsoft 吗<br>10.19 开放源代码软件不会使程序员丢饭碗吗<br>10.20 我要如何开始?哪里有免费的Unix</p>
</blockquote>
<hr>
<h3 id="Hacker学习发展流程图"><a href="#Hacker学习发展流程图" class="headerlink" title="Hacker学习发展流程图"></a>Hacker学习发展流程图</h3><hr>
<p><img src="http://ooupgqdn7.bkt.clouddn.com/a5e4229c8bfe9ae282b4db8add8ed09b_b.jpg.png" alt=""></p>
</div>
<div>
</div>
<div>
</div>
<div>
</div>
<footer class="post-footer">
<div class="post-eof"></div>
</footer>
</article>
<article class="post post-type-normal " itemscope itemtype="http://schema.org/Article">
<link itemprop="mainEntityOfPage" href="http://https://github.com/Alan199/Alan199.github.io.git/2017/06/10/《暗时间》笔记/">
<span hidden itemprop="author" itemscope itemtype="http://schema.org/Person">
<meta itemprop="name" content="Alan199">
<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="Alan199">
</span>
<header class="post-header">
<h1 class="post-title" itemprop="name headline">
<a class="post-title-link" href="/2017/06/10/《暗时间》笔记/" 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="2017-06-10T08:54:20+08:00">
2017-06-10
</time>
</span>
</div>
</header>
<div class="post-body" itemprop="articleBody">
<hr>
<ul>
<li>“暗时间”:走路,买菜,洗脸,洗手,坐公车,逛街,出游,吃饭,睡觉,所有这些时间都可以成为暗时间,充分利用这些时间进行思考,反刍和消化平时看和读的东西</li>
</ul>
<ul>
<li>思考得越多的人,心理年龄越大</li>
</ul>
<ul>
<li>能够迅速进入专注状态,以及能够长期保持专注状态是高效学习的两个最重要习惯</li>
</ul>
<ul>
<li>抗干扰能力:经常利用碎片化时间阅读和思考,对迅速集中注意力非常有帮助</li>
</ul>
<ul>
<li>善于做规划的人,将目标分割成一个个里程碑,再将里程碑分割成TODO列表。对目标几个重大步骤有清晰的界定,每个步骤的耗时作出靠谱的上界估计</li>
</ul>
<ul>
<li><p>你所拥有的知识并不取决于你记多少,而在于它们能否在恰当的时间被回忆起来:</p>
<p>知识自动蹦出来:</p>
<ul>
<li>养成习惯,经常主动回顾一段时间学到的东西</li>
<li>创造回忆的机会:<ul>
<li>经常与别人讨论,或者讲给别人听</li>
<li>经常整理笔记并养成记笔记的习惯</li>
<li>书写:将一段时间学习的知识按照一个主题系统地“串”起来,平添无数提取线索</li>
</ul>
</li>
<li>设身处地地“虚拟经历”别人经历过的事</li>
<li>联系/比较自身的经历</li>
</ul>
</li>
</ul>
<hr>
<h2 id="作者的学习习惯"><a href="#作者的学习习惯" class="headerlink" title="作者的学习习惯"></a>作者的学习习惯</h2><ul>
<li>学习与思考<ul>
<li>Google&Wiki:遇到问题做的第一件事,也是学习某个东西做功课时最先用到的东西</li>
<li>看书挑剔,只看经典</li>
<li>做读书笔记。一是将阅读的思考及闪念写下来,二是将书中的好例子摘抄下来。人与人的差距不在谈资,而是花在思考的时间和思考的深度上</li>
<li>利用走路和吃饭的时间思考,还有睡觉前必然要弄一个问题放在脑子里,在思考中入睡<ul>
<li>思考还能避免焦虑</li>
</ul>
</li>
<li>重要的事优先,尽量避免琐事干扰</li>
<li>重要的事营造比较大的时机块来完成</li>
<li>多看心理和思维的书</li>
<li>学习一项知识,问自己三个问题:1.它的本质是什么2.它的第一原则是什么3.它的知识结构是怎样</li>
<li>改变拖延的习惯:承认它很难改、要在过程中常常观察自己的行为</li>
</ul>
</li>
<li>学习和思考的过程中常问自己的几个问题<ul>
<li>你的问题到底是什么?(提醒自己思考不要偏离问题)</li>
<li>到现在为止我收获了什么?(提醒自己整理学习的东西,时不时去总结)</li>
<li>设想自己正在将东西讲给别人听</li>
<li>时常反省和注意自己的思维过程。遇到无法解决的问题,将原先的思维过程回顾一遍,看看到底哪个环节被阻塞了妨碍了理解。将思维过程写下来</li>
<li>养成反驳自己的想法的习惯</li>
<li>当理解了一个问题,问问自己真的理解了吗?对这个理解满意吗?发散思维</li>
</ul>
</li>
<li>重视知识的本质:抓住不变量,程序员行业大量的新技术,其实只是一层皮,背后支撑的东西是十年来不变的东西</li>
<li>重视积累的强大力量</li>
<li>时不时审视自己正在做的事情对现在和未来有什么价值,是不是自己真正希望做到的,学到的东西重要吗</li>
</ul>
<hr>
<h2 id="送给自己的话"><a href="#送给自己的话" class="headerlink" title="送给自己的话"></a>送给自己的话</h2><p>1.一生的知识积累,自学的起码占90%</p>
<p>2.遇到任何问题,找书,谷歌,wiki,百度</p>
<p>3.怪自己,不怪书,不怪老师,不怪环境</p>
</div>
<div>
</div>
<div>
</div>
<div>
</div>
<footer class="post-footer">
<div class="post-eof"></div>
</footer>
</article>
<article class="post post-type-normal " itemscope itemtype="http://schema.org/Article">
<link itemprop="mainEntityOfPage" href="http://https://github.com/Alan199/Alan199.github.io.git/2017/05/30/第四篇/">
<span hidden itemprop="author" itemscope itemtype="http://schema.org/Person">
<meta itemprop="name" content="Alan199">
<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="Alan199">
</span>
<header class="post-header">
<h1 class="post-title" itemprop="name headline">
<a class="post-title-link" href="/2017/05/30/第四篇/" 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="2017-05-30T17:50:31+08:00">
2017-05-30
</time>
</span>
</div>
</header>
<div class="post-body" itemprop="articleBody">
<h1 id="Q-hexo换了主题之后只有文字"><a href="#Q-hexo换了主题之后只有文字" class="headerlink" title="Q:hexo换了主题之后只有文字"></a>Q:hexo换了主题之后只有文字</h1><p>背景:就是看中了一款主题,迫不及待去换。结果问题来了!<br>主题主人(不知道是不是)说要安装渲染器,嗯,网络原因安装不成功。通过淘宝镜像安装后,可以了。BUT,还是只有文字<br>果然还是要专一,手残专业户真是伤不起</p>
<h3 id="原因:主题下载不成功"><a href="#原因:主题下载不成功" class="headerlink" title="原因:主题下载不成功"></a>原因:主题下载不成功</h3><p>但是再次下载主题出现了这样一个错误:fatal: destination path ‘themes/maupassant’ already exists and is not an empty directory.</p>
<p>再换另一个主题就0K了。如果还想用一开始相中的,那再次换主题吧。</p>
</div>
<div>