-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
989 lines (652 loc) · 26.3 KB
/
index.html
File metadata and controls
989 lines (652 loc) · 26.3 KB
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
<!DOCTYPE html>
<html lang="en">
<!-- Head tag -->
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="google-site-verification" content="xBT4GhYoi5qRD5tr338pgPM5OWHHIDR6mNg1a3euekI" />
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="description" content="">
<meta name="keyword" content="">
<link rel="shortcut icon" href="/img/ironman-draw.png">
<!-- Place this tag in your head or just before your close body tag. -->
<script async defer src="https://buttons.github.io/buttons.js"></script>
<title>
SpuerCheng | Blog
</title>
<link rel="canonical" href="http://www.ruozedata.com/">
<!-- Bootstrap Core CSS -->
<link rel="stylesheet" href="/css/bootstrap.min.css">
<!-- Custom CSS -->
<link rel="stylesheet" href="/css/beantech.min.css">
<link rel="stylesheet" href="/css/donate.css">
<!-- Pygments Highlight CSS -->
<link rel="stylesheet" href="/css/highlight.css">
<link rel="stylesheet" href="/css/widget.css">
<link rel="stylesheet" href="/css/rocket.css">
<link rel="stylesheet" href="/css/signature.css">
<link rel="stylesheet" href="/css/toc.css">
<!-- Custom Fonts -->
<!-- <link href="https://maxcdn.bootstrapcdn.com/font-awesome/4.3.0/css/font-awesome.min.css" rel="stylesheet" type="text/css"> -->
<!-- Hux change font-awesome CDN to qiniu -->
<link href="https://cdn.staticfile.org/font-awesome/4.5.0/css/font-awesome.min.css" rel="stylesheet" type="text/css">
<!-- Hux Delete, sad but pending in China
<link href='http://fonts.googleapis.com/css?family=Lora:400,700,400italic,700italic' rel='stylesheet' type='text/css'>
<link href='http://fonts.googleapis.com/css?family=Open+Sans:300italic,400italic,600italic,700italic,800italic,400,300,600,700,800' rel='stylesheet' type='text/
css'>
-->
<!-- 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="https://oss.maxcdn.com/libs/html5shiv/3.7.0/html5shiv.js"></script>
<script src="https://oss.maxcdn.com/libs/respond.js/1.4.2/respond.min.js"></script>
<![endif]-->
<!-- ga & ba script hoook -->
<script></script>
</head>
<!-- hack iOS CSS :active style -->
<body ontouchstart="">
<!-- Modified by Yu-Hsuan Yen -->
<!-- Post Header -->
<style type="text/css">
header.intro-header{
background-image: url('/img/header_img/wolfkill.png')
/*config*/
}
</style>
<header class="intro-header" >
<!-- Signature -->
<div id="signature">
<div class="container">
<div class="row">
<div class="col-lg-8 col-lg-offset-2 col-md-10 col-md-offset-1">
<div class="site-heading">
<h1>Data Life</h1>
<!--<hr class="small">-->
<span class="subheading"></span>
</div>
</div>
</div>
</div>
</div>
</header>
<!-- Navigation -->
<nav class="navbar navbar-default navbar-custom navbar-fixed-top">
<div class="container-fluid">
<!-- Brand and toggle get grouped for better mobile display -->
<div class="navbar-header page-scroll">
<button type="button" class="navbar-toggle">
<span class="sr-only">Toggle navigation</span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
<a class="navbar-brand" href="/">Data Life</a>
</div>
<!-- Collect the nav links, forms, and other content for toggling -->
<!-- Known Issue, found by Hux:
<nav>'s height woule be hold on by its content.
so, when navbar scale out, the <nav> will cover tags.
also mask any touch event of tags, unfortunately.
-->
<div id="huxblog_navbar">
<div class="navbar-collapse">
<ul class="nav navbar-nav navbar-right">
<li>
<a href="/">Home</a>
</li>
<li>
<a href="/about/">About</a>
</li>
<li>
<a href="/archive/">Archives</a>
</li>
<li>
<a href="/tags/">Tags</a>
</li>
</ul>
</div>
</div>
<!-- /.navbar-collapse -->
</div>
<!-- /.container -->
</nav>
<script>
// Drop Bootstarp low-performance Navbar
// Use customize navbar with high-quality material design animation
// in high-perf jank-free CSS3 implementation
var $body = document.body;
var $toggle = document.querySelector('.navbar-toggle');
var $navbar = document.querySelector('#huxblog_navbar');
var $collapse = document.querySelector('.navbar-collapse');
$toggle.addEventListener('click', handleMagic)
function handleMagic(e){
if ($navbar.className.indexOf('in') > 0) {
// CLOSE
$navbar.className = " ";
// wait until animation end.
setTimeout(function(){
// prevent frequently toggle
if($navbar.className.indexOf('in') < 0) {
$collapse.style.height = "0px"
}
},400)
}else{
// OPEN
$collapse.style.height = "auto"
$navbar.className += " in";
}
}
</script>
<!-- Main Content -->
<!-- Main Content -->
<div class="container">
<div class="row">
<!-- USE SIDEBAR -->
<!-- Post Container -->
<div class="
col-lg-8 col-lg-offset-1
col-md-8 col-md-offset-1
col-sm-12
col-xs-12
post-container
">
<!-- Main Content -->
<div class="post-preview">
<a href="/article/hadoop1/">
<h2 class="post-title">
Hadoop单节点安装及常见问题
</h2>
<h3 class="post-subtitle">
</h3>
<div class="post-content-preview">
Hadoop官网地址:http://hadoop.apache.org/
hadoop官网十分详细的介绍了hadoop的主要功能,有一定英语阅读习惯的小伙伴,可以通过官网学习。hadoop虽然在linux和window系统上都能安装,但是我们一般还是选择在linux系统上运行hadoop。
hadoop2.6版本安装步骤
1、安装hadoop之前,一些基础软件必须安装,安装与hadoop版本......
</div>
</a>
<p class="post-meta" style="margin: 10px 0;">
Posted by SpuerCheng on
2019-11-29
</p>
<div class="tags">
<a href="/tags/#Hadoop Ssh" title="Hadoop Ssh">Hadoop Ssh</a>
</div>
</div>
<hr>
<div class="post-preview">
<a href="/article/文件存储格式/">
<h2 class="post-title">
大数据文件存储格式对比
</h2>
<h3 class="post-subtitle">
SequenceFile Avro parquet Orc的对比
</h3>
<div class="post-content-preview">
SequenceFile
1、相比于text格式的文件,SequenceFile可以存储key-value格式的消息,方便mapreduce引擎处理数据。
2、支持record级别的压缩和block级别的压缩
3、文件是分块的,因此是可分割的。支持mapreduce的split输入
4、使用sequencefile还可以将多个小文件合并到一个大文件中,通过key-value的形式组织起来,此......
</div>
</a>
<p class="post-meta" style="margin: 10px 0;">
Posted by SpuerCheng on
2018-05-11
</p>
<div class="tags">
<a href="/tags/#SequenceFile Avro parquet Orc" title="SequenceFile Avro parquet Orc">SequenceFile Avro parquet Orc</a>
</div>
</div>
<hr>
<div class="post-preview">
<a href="/article/hive1/">
<h2 class="post-title">
hive解决中文乱码
</h2>
<h3 class="post-subtitle">
SequenceFile Avro parquet Orc的对比
</h3>
<div class="post-content-preview">
创建表的时候,commnet说明字段包含中文,表创建成功之后,中文显示乱码。
1234567891011121314create external table movie(userID int comment '用户ID',movieID int comment '电影ID',rating int comment '电影评分',timestamped bigint comment '评分时间......
</div>
</a>
<p class="post-meta" style="margin: 10px 0;">
Posted by SpuerCheng on
2018-03-15
</p>
<div class="tags">
<a href="/tags/#hive utf8" title="hive utf8">hive utf8</a>
</div>
</div>
<hr>
<div class="post-preview">
<a href="/article/hivesql/">
<h2 class="post-title">
hive常见
</h2>
<h3 class="post-subtitle">
SequenceFile Avro parquet Orc的对比
</h3>
<div class="post-content-preview">
1、Hive SQL问题
下面有这样一张用户登录情况表格,需要求出用户连续登录的天数:
第一列是登录时间,第二列是用户ID.
dt
userid
2017-12-12
abc
2017-12-13
abc
2017-12-15
abc
2017-12-14
def
2017-12-15
def
2017-12-17
def
2017-12-18
def......
</div>
</a>
<p class="post-meta" style="margin: 10px 0;">
Posted by SpuerCheng on
2018-03-14
</p>
<div class="tags">
<a href="/tags/#hive" title="hive">hive</a>
</div>
</div>
<hr>
<div class="post-preview">
<a href="/article/mysql1/">
<h2 class="post-title">
mysql常见
</h2>
<h3 class="post-subtitle">
SequenceFile Avro parquet Orc的对比
</h3>
<div class="post-content-preview">
mysql行转列
有如下的表格 t
year
month
amount
1991
1
1.1
1991
2
1.2
1991
3
1.3
1991
4
1.4
1992
1
2.1
1992
2
2.2
1992
3
2.3
1992
4
2.4
转换成
year
m1
m2
m3
m4
1991
1.1
1.2
1.3
1.4
......
</div>
</a>
<p class="post-meta" style="margin: 10px 0;">
Posted by SpuerCheng on
2018-03-11
</p>
<div class="tags">
<a href="/tags/#mysql 行转列 列转行 substring_index" title="mysql 行转列 列转行 substring_index">mysql 行转列 列转行 substring_index</a>
</div>
</div>
<hr>
<div class="post-preview">
<a href="/article/hadoop7/">
<h2 class="post-title">
Hdfs上恢复删除文件的方法
</h2>
<h3 class="post-subtitle">
</h3>
<div class="post-content-preview">
背景: 每天操作Hdfs难免会误删除文件,下面介绍几种恢复删除文件的方法
通过垃圾箱恢复
HDFS 为我们提供了垃圾箱机制,当我们执行hadoop fs -rmr xxx命令之后,文件并不会马上删除,而会被移动到执行这个操作用户的 .Trash 目录下。等待一段时间后才执行真正的删除操作。这个时间可以通过在core-default.xml配置文件里添加fs.trash.interval参数设......
</div>
</a>
<p class="post-meta" style="margin: 10px 0;">
Posted by SpuerCheng on
2018-01-15
</p>
<div class="tags">
<a href="/tags/#hdfs Trash SnapShot fsimage edits" title="hdfs Trash SnapShot fsimage edits">hdfs Trash SnapShot fsimage edits</a>
</div>
</div>
<hr>
<div class="post-preview">
<a href="/article/hadoop5/">
<h2 class="post-title">
副本放置、读写流程、PID文件、磁盘均衡、安全模式
</h2>
<h3 class="post-subtitle">
</h3>
<div class="post-content-preview">
hdfs副本放置策略
第一个副本放置在上传文件的DataNode服务器节点上,如果是在集群外提交,则随机放置在一个DataNode服务器节点上。
第二个副本放置在与第一个DataNode不同的机架的一个节点上。
第三个副本放置在与第二个DataNode相同的机架的不同节点上。
更多副本:随机节点放置。
为了最小化全局带宽消耗和读取延迟,HDFS尝试满足来自离读取器最近的副本的读取请求。如果......
</div>
</a>
<p class="post-meta" style="margin: 10px 0;">
Posted by SpuerCheng on
2018-01-15
</p>
<div class="tags">
<a href="/tags/#hdfs hadoop pid safemode balancer" title="hdfs hadoop pid safemode balancer">hdfs hadoop pid safemode balancer</a>
</div>
</div>
<hr>
<div class="post-preview">
<a href="/article/mysqltopn/">
<h2 class="post-title">
Mysql TOP函数实现
</h2>
<h3 class="post-subtitle">
</h3>
<div class="post-content-preview">
前言: 工作中常常会遇见,查询分组后的最大值、最小值所在整行的记录或者分组后的topn行记录,但是mysql只支持聚合函数,而不支持分函数。
准备了一份数据test1
Top1实现
使用自连接推荐
1234567891011121314151617181920212223242526272829303132333435363738SELECT a. NAME, a.course, a.sc......
</div>
</a>
<p class="post-meta" style="margin: 10px 0;">
Posted by SpuerCheng on
2018-01-10
</p>
<div class="tags">
<a href="/tags/#mysql top" title="mysql top">mysql top</a>
</div>
</div>
<hr>
<div class="post-preview">
<a href="/article/hadoop3/">
<h2 class="post-title">
HDFS常用命令总结
</h2>
<h3 class="post-subtitle">
</h3>
<div class="post-content-preview">
1、Hadoop安装好之后,配置hadoop安装目录的 bin、sbin文件到我们的个人环境变量 .bashrc下,hdfs命令存储在这两个文件夹下面。
2、==-help:显示帮助信息==
1hadoop fs -help rm
3、==-ls:显示目录信息==
1hadoop fs -ls /
4、==-mkdir:在hdfs上创建目录==
1hadoop fs -mkdir /user......
</div>
</a>
<p class="post-meta" style="margin: 10px 0;">
Posted by SpuerCheng on
2017-12-02
</p>
<div class="tags">
<a href="/tags/#hdfs hadoop" title="hdfs hadoop">hdfs hadoop</a>
</div>
</div>
<hr>
<div class="post-preview">
<a href="/article/hadoop4/">
<h2 class="post-title">
Block、小文件、HDFS架构、SNN流程
</h2>
<h3 class="post-subtitle">
</h3>
<div class="post-content-preview">
Block的理解
*物理角度的块概念:
扇区是磁盘最小的物理存储单元,一般而言是每个扇区512B大小,但是操作通常不直接管理每一个扇区,而是通过将若干个扇区组成的一个更大的集合来去进行操作管理。 这个比扇区更大的集合,在Windows下叫做簇;在Linux下叫做块(block)。
建立在该磁盘之上的文件系统也有‘block’的概念,一般为磁盘‘block’大小的整数倍。对于用户来说,这些读写......
</div>
</a>
<p class="post-meta" style="margin: 10px 0;">
Posted by SpuerCheng on
2017-12-02
</p>
<div class="tags">
<a href="/tags/#hdfs hadoop" title="hdfs hadoop">hdfs hadoop</a>
</div>
</div>
<hr>
<!-- Pager -->
<ul class="pager">
<li class="next">
<a href="/page/2/">Older Posts →</a>
</li>
</ul>
<br>
<!-- require APlayer -->
<!-- 如果开启评论功能 -->
</div>
<!-- Sidebar Container -->
<div class="
col-lg-3 col-lg-offset-0
col-md-3 col-md-offset-0
col-sm-12
col-xs-12
sidebar-container
">
<!-- Featured Tags -->
<section>
<!-- no hr -->
<h5><a href="/tags/">FEATURED TAGS</a></h5>
<div class="tags">
<a href="/tags/#SuperCheng" title="SuperCheng" rel="1">SuperCheng</a>
<a href="/tags/#Hadoop Ssh" title="Hadoop Ssh" rel="1">Hadoop Ssh</a>
<a href="/tags/#hdfs hadoop" title="hdfs hadoop" rel="2">hdfs hadoop</a>
<a href="/tags/#hdfs hadoop pid safemode balancer" title="hdfs hadoop pid safemode balancer" rel="1">hdfs hadoop pid safemode balancer</a>
<a href="/tags/#hdfs Trash SnapShot fsimage edits" title="hdfs Trash SnapShot fsimage edits" rel="1">hdfs Trash SnapShot fsimage edits</a>
<a href="/tags/#hive utf8" title="hive utf8" rel="1">hive utf8</a>
<a href="/tags/#HIVESQL COLLECT_SET" title="HIVESQL COLLECT_SET" rel="1">HIVESQL COLLECT_SET</a>
<a href="/tags/#hive" title="hive" rel="1">hive</a>
<a href="/tags/#mysql 行转列 列转行 substring_index" title="mysql 行转列 列转行 substring_index" rel="1">mysql 行转列 列转行 substring_index</a>
<a href="/tags/#mysql" title="mysql" rel="1">mysql</a>
<a href="/tags/#mysql top" title="mysql top" rel="1">mysql top</a>
<a href="/tags/#SequenceFile Avro parquet Orc" title="SequenceFile Avro parquet Orc" rel="1">SequenceFile Avro parquet Orc</a>
</div>
</section>
<hr>
<!-- Short About -->
<section class="visible-md visible-lg">
<h5><a href="/about/">ABOUT ME</a></h5>
<div class="short-about">
<img id = "avatar_pic" src="/img/avatar/wolfkill.jpg" />
<!-- SNS Link -->
<ul class="list-inline">
<li>
<a target="_blank" href="https://github.com/hackeruncle">
<span class="fa-stack fa-lg">
<i class="fa fa-circle fa-stack-2x"></i>
<i class="fa fa-github fa-stack-1x fa-inverse"></i>
</span>
</a>
</li>
</ul>
</div>
</section>
<hr>
<h5>RECENT POSTS</h3>
<div class="widget">
<ul>
<li>
<a href="/article/hadoop1/">Hadoop单节点安装及常见问题</a>
</li>
<li>
<a href="/article/文件存储格式/">大数据文件存储格式对比</a>
</li>
<li>
<a href="/article/hive1/">hive解决中文乱码</a>
</li>
<li>
<a href="/article/hivesql/">hive常见</a>
</li>
<li>
<a href="/article/mysql1/">mysql常见</a>
</li>
</ul>
</div>
<hr>
<!-- Friends Blog -->
<h5>FRIENDS</h5>
<ul class="list-inline">
<li><a href="http://www.ruozedata.com" target="_blank">若泽数据官网</a></li>
</ul>
<hr>
<h5>ARCHIVES</h5>
<div class="widget">
<ul class="archive-list"><li class="archive-list-item"><a class="archive-list-link" href="/archives/2019/11/">November 2019</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/03/">March 2018</a><span class="archive-list-count">3</span></li><li class="archive-list-item"><a class="archive-list-link" href="/archives/2018/01/">January 2018</a><span class="archive-list-count">3</span></li><li class="archive-list-item"><a class="archive-list-link" href="/archives/2017/12/">December 2017</a><span class="archive-list-count">2</span></li><li class="archive-list-item"><a class="archive-list-link" href="/archives/2017/10/">October 2017</a><span class="archive-list-count">1</span></li><li class="archive-list-item"><a class="archive-list-link" href="/archives/2017/09/">September 2017</a><span class="archive-list-count">1</span></li><li class="archive-list-item"><a class="archive-list-link" href="/archives/2017/07/">July 2017</a><span class="archive-list-count">1</span></li></ul>
</div>
<hr>
</div>
</div>
</div>
<!-- Footer -->
<!-- Footer -->
<footer>
<div class="container">
<div class="row">
<div class="col-lg-8 col-lg-offset-2 col-md-10 col-md-offset-1">
<ul class="list-inline text-center">
<li>
<a target="_blank" href="https://github.com/hackeruncle">
<span class="fa-stack fa-lg">
<i class="fa fa-circle fa-stack-2x"></i>
<i class="fa fa-github fa-stack-1x fa-inverse"></i>
</span>
</a>
</li>
</ul>
<p class="copyright text-muted">
Copyright © SpuerCheng 2020
By <a href="">SuperCheng</a> | BigData
<iframe
style="margin-left: 2px; margin-bottom:-5px;"
frameborder="0" scrolling="0" width="91px" height="20px"
src="https://github.com/wolfkill/" >
</iframe>
</p>
</div>
</div>
</div>
</footer>
<!-- jQuery -->
<script src="/js/jquery.min.js"></script>
<!-- Bootstrap Core JavaScript -->
<script src="/js/bootstrap.min.js"></script>
<!-- Custom Theme JavaScript -->
<script src="/js/hux-blog.min.js"></script>
<!-- async load function -->
<script>
function async(u, c) {
var d = document, t = 'script',
o = d.createElement(t),
s = d.getElementsByTagName(t)[0];
o.src = u;
if (c) { o.addEventListener('load', function (e) { c(null, e); }, false); }
s.parentNode.insertBefore(o, s);
}
</script>
<!--
Because of the native support for backtick-style fenced code blocks
right within the Markdown is landed in Github Pages,
From V1.6, There is no need for Highlight.js,
so Huxblog drops it officially.
- https://github.com/blog/2100-github-pages-now-faster-and-simpler-with-jekyll-3-0
- https://help.github.com/articles/creating-and-highlighting-code-blocks/
-->
<!--
<script>
async("http://cdn.bootcss.com/highlight.js/8.6/highlight.min.js", function(){
hljs.initHighlightingOnLoad();
})
</script>
<link href="http://cdn.bootcss.com/highlight.js/8.6/styles/github.min.css" rel="stylesheet">
-->
<!-- jquery.tagcloud.js -->
<script>
// only load tagcloud.js in tag.html
if($('#tag_cloud').length !== 0){
async("http://www.ruozedata.com/js/jquery.tagcloud.js",function(){
$.fn.tagcloud.defaults = {
//size: {start: 1, end: 1, unit: 'em'},
color: {start: '#bbbbee', end: '#0085a1'},
};
$('#tag_cloud a').tagcloud();
})
}
</script>
<!--fastClick.js -->
<script>
async("https://cdn.bootcss.com/fastclick/1.0.6/fastclick.min.js", function(){
var $nav = document.querySelector("nav");
if($nav) FastClick.attach($nav);
})
</script>
<!-- Google Analytics -->
<script>
// dynamic User by Hux
var _gaId = 'UA-XXXXXXXX-X';
var _gaDomain = 'yoursite';
// Originial
(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
})(window,document,'script','//www.google-analytics.com/analytics.js','ga');
ga('create', _gaId, _gaDomain);
ga('send', 'pageview');
</script>
<!-- Baidu Tongji -->
<script>
// dynamic User by Hux
var _baId = 'xxx';
// Originial
var _hmt = _hmt || [];
(function() {
var hm = document.createElement("script");
hm.src = "//hm.baidu.com/hm.js?" + _baId;
var s = document.getElementsByTagName("script")[0];
s.parentNode.insertBefore(hm, s);
})();
</script>
<a id="rocket" href="#top" class=""></a>
<script type="text/javascript" src="/js/totop.js?v=1.0.0" async=""></script>
<script type="text/javascript" src="/js/toc.js?v=1.0.0" async=""></script>
<!-- Image to hack wechat -->
<img src="http://www.ruozedata.com/img/icon_wechat.png" width="0" height="0" />
<!-- Migrate from head to bottom, no longer block render and still work -->
</body>
</html>