-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
about.html
2381 lines (1611 loc) · 59.7 KB
/
about.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">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="description" content="Sci blog jekyll theme">
<meta name="author" content="AIR RAYA Group">
<link href='/MyBlog/img/favicon.ico' type='image/icon' rel='shortcut icon'/>
<title>泽民博客 | Jekyll theme</title>
<link rel="stylesheet" href="/MyBlog/css/bootstrap.min.css" integrity="sha384-1q8mTJOASx8j1Au+a5WDVnPi2lkFfwwEAa8hDDdjZlpLegxhjVME1fgjWPGmkzs7" crossorigin="anonymous">
<link rel="stylesheet" href="/MyBlog/css/font-awesome.min.css">
<link href="/MyBlog/css/simple-sidebar.css" rel="stylesheet">
<link href="/MyBlog/css/classic-10_7.css" rel="stylesheet" type="text/css">
<!-- Custom CSS -->
<link href="/MyBlog/css/style.css" rel="stylesheet">
<link href="/MyBlog/css/pygments.css" rel="stylesheet">
<!-- Fonts -->
<link href="/MyBlog/css/front.css" rel="stylesheet" type="text/css">
<link href="/MyBlog/css/Josefin_Slab.css" rel="stylesheet" type="text/css">
<link href="/MyBlog/css/Architects_Daughter.css" rel="stylesheet" type="text/css">
<link href="/MyBlog/css/Schoolbell.css" rel="stylesheet" type="text/css">
<link href="/MyBlog/css/Codystar.css" rel="stylesheet" type="text/css">
<script type="text/javascript" src="/MyBlog/js/jquery-1.12.0.min.js"></script>
<!-- share this -->
<script type="text/javascript">var switchTo5x=true;</script>
<script type="text/javascript" src="/MyBlog/js/buttons.js"></script>
<script type="text/javascript">stLight.options({publisher: "b28464c3-d287-4257-ad18-058346dd35f7", doNotHash: false, doNotCopy: false, hashAddressBar: false});</script>
<!-- HTML5 Shim and Respond.js IE8 support of HTML5 elements and media queries -->
<!-- WARNING: Respond.js doesn't work if you view the page via file:// -->
<!--[if lt IE 9]>
<script src="/MyBlog/js/html5shiv.js"></script>
<script src="/MyBlog/js/respond.min.js"></script>
<![endif]-->
<!--百度统计-->
<script>
var _hmt = _hmt || [];
(function() {
var hm = document.createElement("script");
hm.src = "https://hm.baidu.com/hm.js?e965cab8c73512b8b23939e7051d93bd";
var s = document.getElementsByTagName("script")[0];
s.parentNode.insertBefore(hm, s);
})();
</script>
<script async src="/MyBlog/katex/katex.js"></script>
<link rel="stylesheet" href="/MyBlog/katex/katex.css">
<!--轮播图片-->
<!--script type="text/javascript" src="https://xiazemin.github.io/MyBlog/js/jquery.js"></script>
<script type="text/javascript" src="https://xiazemin.github.io/MyBlog/js/jquery.stripesrotator.js"></script>
<script type="text/javascript">
$(document).ready(function() {
alert($('#rotator_xzm'));
alert($('#rotator_xzm').fn);
$('#rotator_xzm').stripesRotator({ images: [ "https://xiazemin.github.io/MyBlog/img/BPlusTree.png", "https://xiazemin.github.io/MyBlog/img/linuxMMap.jpeg"] });
});
</script-->
</head>
<body>
<div id="wrapper">
<!-- Navigation -->
<!-- Sidebar -->
<div id="sidebar-wrapper">
<ul class="sidebar-nav">
<li class="sidebar-brand">
<a href="/MyBlog">
Home
</a>
</li>
<li>
<a href="#">About</a>
</li>
<li>
<a href="#">Services</a>
</li>
<li>
<a href="#">Portfolio</a>
</li>
<li>
<a href="#">Events</a>
</li>
<li>
<a href="#">Blog</a>
</li>
<li>
<a href="#">FAQ</a>
</li>
<li>
<a href="#">Contact</a>
</li>
</ul>
</div>
<header class="intro-header">
<div class="container">
<div class="row">
<div class="col-lg-12">
<div class="heading text-center">
<a href="/MyBlog/" style="color: #fff; font-size: 4em; font-family: 'Schoolbell', cursive;">泽民博客</a>
<a href="#menu-toggle" class="btn btn-default sciblog" id="menu-toggle" style="font-weight: bold;">☰ Menu</a>
</div>
</div>
</div>
</div>
</header>
<script async src="/MyBlog/js/busuanzi.pure.mini.js"></script>
<!--script type="text/javascript" src="js/jquery.js"></script>
<script type="text/javascript" src="js/jquery.stripesrotator.js"></script-->
<script type="text/javascript" src="/MyBlog/js/jquery.js"></script>
<script type="text/javascript" src="/MyBlog/js/jquery.stripesrotator.js"></script>
<!-- Page Content -->
<div class="container">
<div class="row">
<!-- Blog Post Content Column -->
<div class="col-lg-8">
<!-- Blog Post -->
<div class="post-list" style="list-style-type: none;">
</div>
<!-- Pagination links -->
<!-- Pagination links -->
<span class='st_sharethis' displayText='ShareThis'></span>
<span class='st_facebook' displayText='Facebook'></span>
<span class='st_twitter' displayText='Tweet'></span>
<span class='st_linkedin' displayText='LinkedIn'></span>
<span class='st_pinterest' displayText='Pinterest'></span>
<span class='st_email' displayText='Email'></span>
<!-- Pagination links -->
<div class="pagination">
<ul>
<li><span class="disabled">Previous</span></li>
<li><a href="/MyBlog/">1</a></li>
<li><span class="disabled">Next</span></li>
</ul>
</div>
</div>
<!-- Widget -->
<div class="col-md-4">
<div class="well">
<span id='statics' ></span>
</div>
<!-- Blog Search -->
<div class="well">
<h4>Search</h4>
<div class="input-group">
<form action="#" id="cse-search-box">
<div>
<input type="hidden" name="cx" value="" />
<input type="hidden" name="ie" value="UTF-8" />
<!-- 搜索框 -->
<input type="text" name="q" size="20" id='txt'/>
<input type="submit" name="sa" id="Search" value="Search" />
<!-- 模糊查询结果显示框 -->
<div id="msg"></div>
<script type="text/javascript">
var searchIndex={
"code" : 0 ,
"data" : [
{
"title" : "type_hinting - ",
"url" : "/MyBlog/web/2018/02/26/type_hinting.html"
}
,
{
"title" : "tsrm - ",
"url" : "/MyBlog/web/2018/02/26/tsrm.html"
}
,
{
"title" : "create_function - ",
"url" : "/MyBlog/web/2018/02/26/create_function.html"
}
,
{
"title" : "Xdebug - ",
"url" : "/MyBlog/web/2018/02/26/Xdebug.html"
}
,
{
"title" : "Closure - ",
"url" : "/MyBlog/lang/2018/02/26/Closure.html"
}
,
{
"title" : "lex - ",
"url" : "/MyBlog/lang/2018/02/13/lex.html"
}
,
{
"title" : "vld_dot_graphviz - ",
"url" : "/MyBlog/web/2018/02/12/vld_dot_graphviz.html"
}
,
{
"title" : "phpvld - ",
"url" : "/MyBlog/jekyll/2018/02/12/phpvld.html"
}
,
{
"title" : "phpize - ",
"url" : "/MyBlog/web/2018/02/12/phpize.html"
}
,
{
"title" : "PHP 调试利器之 PHPDBG - ",
"url" : "/MyBlog/web/2018/02/12/phpdbg.html"
}
,
{
"title" : "dot - ",
"url" : "/MyBlog/web/2018/02/12/dot.html"
}
,
{
"title" : "netty - ",
"url" : "/MyBlog/web/2018/02/10/netty.html"
}
,
{
"title" : "Tachyon - ",
"url" : "/MyBlog/spark/2018/02/10/Tachyon.html"
}
,
{
"title" : "crlf 攻击 - ",
"url" : "/MyBlog/web/2018/02/06/crlf.html"
}
,
{
"title" : "iputils - ",
"url" : "/MyBlog/linux/2018/02/05/iputils.html"
}
,
{
"title" : "cscope - ",
"url" : "/MyBlog/web/2018/02/05/cscope.html"
}
,
{
"title" : "sklearn - ",
"url" : "/MyBlog/spark/2018/02/03/sklearn.html"
}
,
{
"title" : "mathlatex - ",
"url" : "/MyBlog/web/2018/02/02/mathlatex.html"
}
,
{
"title" : "二项逻辑斯蒂回归模型 - ",
"url" : "/MyBlog/spark/2018/02/02/logistic.html"
}
,
{
"title" : "Duck typing - ",
"url" : "/MyBlog/web/2018/02/02/Duck_typing.html"
}
,
{
"title" : "导入第三方依赖到shell - ",
"url" : "/MyBlog/spark/2018/01/27/spark_jar.html"
}
,
{
"title" : "zero copy - ",
"url" : "/MyBlog/linux/2018/01/26/zero_copy.html"
}
,
{
"title" : "进程在后台运行原理 - ",
"url" : "/MyBlog/linux/2018/01/24/nohup.html"
}
,
{
"title" : "mongodb - ",
"url" : "/MyBlog/web/2018/01/24/mongodb.html"
}
,
{
"title" : "倒排索引 - ",
"url" : "/MyBlog/web/2018/01/24/inverted_file.html"
}
,
{
"title" : "npm registry - ",
"url" : "/MyBlog/web/2018/01/16/npm.html"
}
,
{
"title" : "制作地图 - ",
"url" : "/MyBlog/web/2018/01/16/map.html"
}
,
{
"title" : "Linux、Mac上面ln命令使用说明 - ",
"url" : "/MyBlog/linux/2018/01/16/ln.html"
}
,
{
"title" : "spark on hive - ",
"url" : "/MyBlog/spark/2018/01/13/spark_hive.html"
}
,
{
"title" : "scala maven 版本冲突问题解决 - ",
"url" : "/MyBlog/spark/2018/01/12/scala_version.html"
}
,
{
"title" : "Eclipse中操作Hive、HDFS、spark时的jar包列表 - ",
"url" : "/MyBlog/spark/2018/01/12/hive.html"
}
,
{
"title" : "Eclipse+maven+scala+spark环境搭建 - ",
"url" : "/MyBlog/spark/2018/01/11/maven_scala_eclipse.html"
}
,
{
"title" : "maven - ",
"url" : "/MyBlog/spark/2018/01/11/maven.html"
}
,
{
"title" : "随机森林 - ",
"url" : "/MyBlog/spark/2018/01/09/random_foreast.html"
}
,
{
"title" : "svm - ",
"url" : "/MyBlog/spark/2018/01/08/svm.html"
}
,
{
"title" : "virtualenv - ",
"url" : "/MyBlog/web/2018/01/07/virtualenv.html"
}
,
{
"title" : "pip - ",
"url" : "/MyBlog/web/2018/01/07/pip.html"
}
,
{
"title" : "信息熵 - ",
"url" : "/MyBlog/spark/2018/01/05/shang.html"
}
,
{
"title" : "Zookeeper与Paxos - ",
"url" : "/MyBlog/spark/2018/01/04/zookeeper.html"
}
,
{
"title" : "安全散列算法SHA256 - ",
"url" : "/MyBlog/web/2018/01/04/sha.html"
}
,
{
"title" : "raft - ",
"url" : "/MyBlog/jekyll/2018/01/04/raft.html"
}
,
{
"title" : "比较raft ,basic paxos以及multi-paxos - ",
"url" : "/MyBlog/spark/2018/01/04/paxos_raft.html"
}
,
{
"title" : "p2p - ",
"url" : "/MyBlog/web/2018/01/04/p2p.html"
}
,
{
"title" : "nat - ",
"url" : "/MyBlog/web/2018/01/04/nat.html"
}
,
{
"title" : "Chubby与Paxos - ",
"url" : "/MyBlog/spark/2018/01/04/chubby.html"
}
,
{
"title" : "Paxos - ",
"url" : "/MyBlog/spark/2018/01/04/Paxos.html"
}
,
{
"title" : "rsa 非对称加密原理 - ",
"url" : "/MyBlog/web/2018/01/03/rsa.html"
}
,
{
"title" : "Merkle Patricia Tree - ",
"url" : "/MyBlog/web/2018/01/03/merkle_tree.html"
}
,
{
"title" : "ecc 椭圆曲线加密 - ",
"url" : "/MyBlog/web/2018/01/03/ecc.html"
}
,
{
"title" : "单播、多播和广播 - ",
"url" : "/MyBlog/linux/2017/12/30/broad_cast.html"
}
,
{
"title" : "arp - ",
"url" : "/MyBlog/linux/2017/12/30/arp.html"
}
,
{
"title" : "json_shell - ",
"url" : "/MyBlog/web/2017/12/27/json_shell.html"
}
,
{
"title" : "ioctl - ",
"url" : "/MyBlog/linux/2017/12/27/ioctl.html"
}
,
{
"title" : "inetd - ",
"url" : "/MyBlog/linux/2017/12/27/inetd.html"
}
,
{
"title" : "Django_nginx_uwsgi - ",
"url" : "/MyBlog/web/2017/12/27/Django_nginx_uwsgi.html"
}
,
{
"title" : "UNIX下的5种IO模型 - ",
"url" : "/MyBlog/linux/2017/12/24/unix_io5.html"
}
,
{
"title" : "用户空间实现线程 内核实现线程 线程的调度 - ",
"url" : "/MyBlog/linux/2017/12/24/thread_namespace.html"
}
,
{
"title" : "进程切换 - ",
"url" : "/MyBlog/linux/2017/12/24/thread.html"
}
,
{
"title" : "IO多路复用之select、poll、epoll - ",
"url" : "/MyBlog/linux/2017/12/24/select_poll.html"
}
,
{
"title" : "goroutine - ",
"url" : "/MyBlog/linux/2017/12/24/goroutine.html"
}
,
{
"title" : "goclipse eclipse go 开发环境搭建+跳转支持 - ",
"url" : "/MyBlog/web/2017/12/24/goclipse.html"
}
,
{
"title" : "tcp_flag - ",
"url" : "/MyBlog/web/2017/12/22/tcp_flag.html"
}
,
{
"title" : "url短链 - ",
"url" : "/MyBlog/web/2017/12/22/short_url.html"
}
,
{
"title" : "ID为0和ID为1的进程 - ",
"url" : "/MyBlog/linux/2017/12/22/pid_0_1.html"
}
,
{
"title" : "Shell脚本经典之Fork炸弹 - ",
"url" : "/MyBlog/linux/2017/12/22/fork_b.html"
}
,
{
"title" : "fork - ",
"url" : "/MyBlog/linux/2017/12/22/fork.html"
}
,
{
"title" : "Linux进程控制——exec函数族 - ",
"url" : "/MyBlog/linux/2017/12/22/exec.html"
}
,
{
"title" : "各种树的应用场景 - ",
"url" : "/MyBlog/web/2017/12/13/tree.html"
}
,
{
"title" : "sbt - ",
"url" : "/MyBlog/spark/2017/12/13/sbt.html"
}
,
{
"title" : "radix tree - ",
"url" : "/MyBlog/linux/2017/12/13/radix_tree.html"
}
,
{
"title" : "maven 安装 - ",
"url" : "/MyBlog/spark/2017/12/13/maven.html"
}
,
{
"title" : "figaro mac 安装 - ",
"url" : "/MyBlog/spark/2017/12/13/figaro.html"
}
,
{
"title" : "大端小端 - ",
"url" : "/MyBlog/web/2017/12/13/bigEnd.html"
}
,
{
"title" : "truss、strace或ltrace - ",
"url" : "/MyBlog/linux/2017/12/10/strace.html"
}
,
{
"title" : "netlink - ",
"url" : "/MyBlog/linux/2017/12/10/netlink.html"
}
,
{
"title" : "linux sysfs - ",
"url" : "/MyBlog/linux/2017/12/09/sysfs.html"
}
,
{
"title" : "proc文件系统 - ",
"url" : "/MyBlog/linux/2017/12/09/proc.html"
}
,
{
"title" : "netfliter - ",
"url" : "/MyBlog/jekyll/2017/12/09/netfliter.html"
}
,
{
"title" : "namespace - ",
"url" : "/MyBlog/linux/2017/12/08/namespace.html"
}
,
{
"title" : "vfs - ",
"url" : "/MyBlog/linux/2017/12/07/vfs.html"
}
,
{
"title" : "mysql_index - ",
"url" : "/MyBlog/web/2017/12/07/mysql_index.html"
}
,
{
"title" : "linux_rcu - ",
"url" : "/MyBlog/linux/2017/12/06/linux_rcu.html"
}
,
{
"title" : "Linux的mmap内存映射机制 - ",
"url" : "/MyBlog/linux/2017/12/06/linux_mmap.html"
}
,
{
"title" : "linux_lock - ",
"url" : "/MyBlog/linux/2017/12/06/linux_lock.html"
}
,
{
"title" : "linux_elf - ",
"url" : "/MyBlog/linux/2017/12/06/linux_elf.html"
}
,
{
"title" : "linux_cow - ",
"url" : "/MyBlog/linux/2017/12/06/linux_cow.html"
}
,
{
"title" : "Kibana - ",
"url" : "/MyBlog/spark/2017/12/06/Kibana.html"
}
,
{
"title" : "linux_memory - ",
"url" : "/MyBlog/linux/2017/12/05/linux_memory.html"
}
,
{
"title" : "server格式 - ",
"url" : "/MyBlog/web/2017/12/02/server_tyrp.html"
}
,
{
"title" : "nginx_ssi - ",
"url" : "/MyBlog/web/2017/12/02/nginx_ssi.html"
}
,
{
"title" : "go升级遇到问题及解决方案 - ",
"url" : "/MyBlog/web/2017/11/29/go_update.html"
}
,
{
"title" : "go_pprof - ",
"url" : "/MyBlog/web/2017/11/29/go_pprof.html"
}
,
{
"title" : "go_vs_code - ",
"url" : "/MyBlog/web/2017/11/28/go_vs_code.html"
}
,
{
"title" : "scala tuple - ",
"url" : "/MyBlog/spark/2017/11/19/scala_tuple.html"
}
,
{
"title" : "redis协议 - ",
"url" : "/MyBlog/web/2017/11/18/redis_protocal.html"
}
,
{
"title" : "jupyter 数学公式 - ",
"url" : "/MyBlog/spark/2017/11/18/jupyter_math.html"
}
,
{
"title" : "jupyter 数学公式 - ",
"url" : "/MyBlog/spark/2017/11/18/jupyter_latex.html"
}
,
{
"title" : "Jupyter Notebook 添加目录 - ",
"url" : "/MyBlog/spark/2017/11/18/jupyter_index.html"
}
,
{
"title" : "文字特征提取算法 - ",
"url" : "/MyBlog/spark/2017/11/17/word_feature.html"
}
,
{
"title" : "sparl_ml_pipline - ",
"url" : "/MyBlog/spark/2017/11/16/sparl_ml_pipline.html"
}
,
{
"title" : "mysql 的排序 - ",
"url" : "/MyBlog/web/2017/11/16/mysql_sort.html"
}
,