-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.org.html
1002 lines (723 loc) · 42.7 KB
/
index.org.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 http-equiv="Cache-Control" content="max-age=7200" />
<!--addons at start of head-->
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>IT部落</title>
<meta name="author" content="Nicky">
<meta name="description" content="Blog by 51itclub
Blog
Download as .zip
Download as .tar.gz">
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1">
<meta property="og:site_name" content="IT部落"/>
<!--[if IE]><style>.testIE.IE{display:inline;}</style><![endif]-->
<!--[if lte IE 7]><link rel="stylesheet" href="/css/ie7.css" type="text/css"><![endif]-->
<!--[if (lt IE 9)&(gt IE 7)]><style>.testIE.IE8{display:inline;}</style><![endif]-->
<!--[if gt IE 8]><style>.testIE.IE9{display:inline;}</style><![endif]-->
<link rel="author" href="http://www.51itclub.net/" />
<link rel="shortcut icon" href="../../../../../img/favicon.ico" >
<link rel="shortcut icon" href="../../../../../img/animated_favicon.gif" type="image/gif" >
<!--
<link href="/favicon.png" rel="icon">
<link rel="alternate" href="/atom.xml" title="IT部落 Feed" type="application/atom+xml">
-->
<link rel="stylesheet" href="http://cdn.staticfile.org/twitter-bootstrap/3.1.0/css/bootstrap.min.css" type="text/css">
<link rel="stylesheet" href="http://cdn.bootcss.com/font-awesome/4.0.3/css/font-awesome.min.css" type="text/css">
<link rel="stylesheet" href="http://cdn.bootcss.com/prettify/r298/prettify.min.css" type="text/css">
<link rel="stylesheet" href="http://cdn.bootcss.com/fancybox/2.1.5/jquery.fancybox.min.css" type="text/css">
<link rel="stylesheet" href="/css/style.css" type="text/css">
<!--[if lt IE 9]>
<style>article,aside,dialog,footer,header,section,footer,nav,figure,menu{display:block}</style>
<script src="http://cdn.staticfile.org/html5shiv/r29/html5.min.js"></script>
<script src="http://cdn.staticfile.org/respond.js/1.4.2/respond.min.js"></script>
<link href="http://cdn.staticfile.org/respond.js/1.4.2/respond-proxy.html" id="respond-proxy" rel="respond-proxy" />
<link href="/js/respond.proxy.gif" id="respond-redirect" rel="respond-redirect" />
<script src="/js/respond.proxy.js"></script>
<script src="http://cdn.bootcss.com/selectivizr/1.0.2/selectivizr-min.js"></script>
<![endif]-->
<script type="text/javascript">var site = {BASE_URI: '/'};var _js2load = [];</script>
<link rel="stylesheet" href="/css/font-awesome-ie7.min.css" type="text/css">
<link rel="stylesheet" href="/css/font-awesome.min.css" type="text/css">
<link rel="stylesheet" href="/css/font-awesome.css" type="text/css">
<link rel="stylesheet" href="/css/font-diao.css" type="text/css">
<link rel="stylesheet" href="/css/font-covered_by_your_graceregular.css" type="text/css">
<!--addons at end of head-->
</head>
<body>
<!--addons at start of body-->
<header id="header" class="container"><nav id="main-nav" class="navbar navbar-default navbar-fixed-top " role="navigation">
<div class="container">
<div class="navbar-header">
<button type="button" class="navbar-toggle" data-toggle="collapse" data-target=".navbar-collapse">
<span class="sr-only">Toggle navigation</span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
<div><p><table cellSpacing=0 cellPadding=0 align=center background=../../../../../img/ysz5.gif>
<tbody> <tr> <td style="FILTER: chroma(color=#336699)">
<table align=center background=../../../../../img/ysz4.gif><tbody><tr>
<td align=middle style="padding: .3em .5em .2em .5em;"><a style="text-decoration:none;" href="/" title="点击回到主页〉"><font style="FONT-WEIGHT: normal; FONT-SIZE: 18pt; LINE-HEIGHT: normal; FONT-STYLE: normal; FONT-VARIANT: normal" face=华文行楷シ color=purple><strong>IT部落</strong></font></a></td></tr></tbody></table></td></tr></tbody></table></p></div>
<!--
<div><p><table cellSpacing=0 cellPadding=0 align=center background=/img/ysz5.gif>
<tbody> <tr> <td style="FILTER: chroma(color=#336699)">
<table align=center background=/img/ysz4.gif><tbody><tr>
<td align=middle style="padding: .3em .5em .2em .5em;"><a style="text-decoration:none;" href="/" title="点击回到主页〉"><font style="FONT-WEIGHT: normal; FONT-SIZE: 18pt; LINE-HEIGHT: normal; FONT-STYLE: normal; FONT-VARIANT: normal" face=华文行楷シ color=purple><strong>IT部落</strong></font></a></td></tr></tbody></table></td></tr></tbody></table></p></div>
<a class="navbar-brand" href="/">IT部落</a>
<TABLE align=center background=/img/ysz1.gif border=0><TBODY><TR><TD style="FILTER: mask(color=#000000)" align=middle><a style="text-decoration:none;" href="/" title="点击回到主页〉"><FONT style="FONT-SIZE: 18pt" face=隶书 color=#336699><B>IT部落</B></FONT></a></TD></TR></TBODY></TABLE>
<TABLE align=center background=/img/ysz2.gif border=0><TBODY><TR><TD style="FILTER: mask(color=#000000)" align=middle><a style="text-decoration:none;" href="/" title="点击回到主页〉"><FONT style="FONT-SIZE: 18pt" face=隶书 color=#336699><B>IT部落</B></FONT></a></TD></TR></TBODY></TABLE>
<div style="FONT-SIZE: 26pt; FILTER: dropshadow(color=#228B22,offX=5,offY=3,Positive=1); WIDTH: 100%; COLOR: #ff7f50; LINE-HEIGHT: 150%; FONT-FAMILY: 华文行楷シ"><strong><a style="text-decoration:none;" href="/" title="点击回到主页〉">IT部落</a></strong></div>
<div><p><table cellSpacing=0 cellPadding=0 align=center background=/img/ysz5.gif>
<tbody> <tr> <td style="FILTER: chroma(color=#336699)">
<table align=center background=/img/ysz4.gif><tbody><tr>
<td align=middle style="padding: .3em .5em .2em .5em;"><a style="text-decoration:none;" href="/" title="点击回到主页〉"><font style="FONT-WEIGHT: normal; FONT-SIZE: 18pt; LINE-HEIGHT: normal; FONT-STYLE: normal; FONT-VARIANT: normal" face=华文行楷シ color=#336699><strong>IT部落</strong></font></a></td></tr></tbody></table></td></tr></tbody></table></p></div>
<div><p><table cellSpacing=0 cellPadding=0 align=center background=/img/ysz5.gif>
<tbody> <tr> <td style="FILTER: chroma(color=#336699)">
<table align=center background=/img/ysz4.gif><tbody><tr>
<td align=middle style="padding: .3em .5em .2em .5em;"><a style="text-decoration:none;" href="/" title="点击回到主页〉"><font style="FONT-WEIGHT: normal; FONT-SIZE: 18pt; LINE-HEIGHT: normal; FONT-STYLE: normal; FONT-VARIANT: normal" face=华文行楷シ color=#ff7f50><strong>IT部落</strong></font></a></td></tr></tbody></table></td></tr></tbody></table></p></div>
<div><p><table cellSpacing=0 cellPadding=0 align=center background=/img/ysz5.gif>
<tbody> <tr> <td style="FILTER: chroma(color=#336699)">
<table align=center background=/img/ysz4.gif><tbody><tr>
<td align=middle style="padding: .3em .5em .2em .5em;"><a style="text-decoration:none;" href="/" title="点击回到主页〉"><font style="FONT-WEIGHT: normal; FONT-SIZE: 18pt; LINE-HEIGHT: normal; FONT-STYLE: normal; FONT-VARIANT: normal" face=华文行楷シ color=purple><strong>IT部落</strong></font></a></td></tr></tbody></table></td></tr></tbody></table></p></div>
-->
</div>
<div class="collapse navbar-collapse">
<ul class="nav navbar-nav dropdown-hover" style="margin-left:20px;">
<!--
<li class='dropdown' style="height:39px;margin-top:6px;margin-left:15px;margin-right:1px;"><object type="application/x-shockwave-flash" data="../../../../../swf/clock1.swf" width="100" height="39" id="numclock" name="nclock"><param name="wmode" value="transparent" /><param name="movie" value="../../../../../swf/clock1.swf" /></object></li>
-->
<li class='dropdown' style="height:39px;margin-top:6px;margin-left:15px;margin-right:1px;"><object type="application/x-shockwave-flash" data="../../../../../swf/clock2.swf" width="100" height="39" id="numclock" name="nclock"><param name="wmode" value="transparent" /><param name="movie" value="../../../../../swf/clock1.swf" /></object></li>
<li item='index.org.html' class='imli' style="margin-left:2px;margin-right:2px;"><a href="/about/" title="关于">关于</a></li>
<li item='index.org.html' class='imli' style="margin-left:2px;margin-right:2px;"><a href="/post/vpn/" title="VPN">VPN</a></li>
<!--
<li><a style="color:green;" title="关于" href="../../../../../about/" _hover-ignore="1">关于</a></li>
<li><a style="color:blue;" title="WIFI" href="../../../../../wifi/" _hover-ignore="1">WIFI</a></li>
<li><a style="color:blue;" title="VPN" href="../../../../../vpn/" _hover-ignore="1">VPN</a></li>
-->
<script type="text/javascript">
//<![CDATA[
function high() {
function c() {
var e = document.createElement("link");
e.setAttribute("type", "text/css");
e.setAttribute("rel", "stylesheet");
e.setAttribute("href", f);
e.setAttribute("class", l);
document.body.appendChild(e)
}
function h() {
var e = document.getElementsByClassName(l);
for (var t = 0; t < e.length; t++) {
document.body.removeChild(e[t])
}
}
function p() {
var e = document.createElement("div");
e.setAttribute("class", a);
document.body.appendChild(e);
setTimeout(function() {
document.body.removeChild(e)
},
100)
}
function d(e) {
return {
height: e.offsetHeight,
width: e.offsetWidth
}
}
function v(i) {
var s = d(i);
return s.height > e && s.height < n && s.width > t && s.width < r
}
function m(e) {
var t = e;
var n = 0;
while ( !! t) {
n += t.offsetTop;
t = t.offsetParent
}
return n
}
function g() {
var e = document.documentElement;
if ( !! window.innerWidth) {
return window.innerHeight
} else if(e && !isNaN(e.clientHeight)) {
return e.clientHeight
}
return 0
}
function y() {
if (window.pageYOffset) {
return window.pageYOffset
}
return Math.max(document.documentElement.scrollTop, document.body.scrollTop)
}
function E(e) {
var t = m(e);
return t >= w && t <= b + w
}
function S() {
var e = document.createElement("audio");
e.setAttribute("class", l);
e.src = i;
e.loop = false;
e.addEventListener("canplay",
function() {
setTimeout(function() {
x(k)
},
500);
setTimeout(function() {
N();
p();
for (var e = 0; e < O.length; e++) {
T(O[e])
}
},
15500)
},
true);
e.addEventListener("ended",
function() {
N();
h()
},
true);
e.innerHTML = " <p>If you are reading this, it is because your browser does not support the audio element. We recommend that you get a new browser.</p> <p>";
document.body.appendChild(e);
e.play()
}
function x(e) {
e.className += " " + s + " " + o
}
function T(e) {
e.className += " " + s + " " + u[Math.floor(Math.random() * u.length)]
}
function N() {
var e = document.getElementsByClassName(s);
var t = new RegExp("\\b" + s + "\\b");
for (var n = 0; n < e.length;) {
e[n].className = e[n].className.replace(t, "")
}
}
var e = 30;
var t = 30;
var n = 350;
var r = 350;
var i = "../../../../../mp3/harlem-shake.mp3";
var s = "mw-harlem_shake_me";
var o = "im_first";
var u = ["im_drunk", "im_baked", "im_trippin", "im_blown"];
var a = "mw-strobe_light";
var f = "../../../../../css/harlem-shake-style.css";
var l = "mw_added_css";
var b = g();
var w = y();
var C = document.getElementsByTagName("*");
var k = null;
for (var L = 0; L < C.length; L++) {
var A = C[L];
if (v(A)) {
if (E(A)) {
k = A;
break
}
}
}
if (A === null) {
console.warn("Could not find a node of the right size. Please try a different page.");
return
}
c();
S();
var O = [];
for (var L = 0; L < C.length; L++) {
var A = C[L];
if (v(A)) {
O.push(A)
}
}
}
//]]>
</script>
<li class="dropdown">
<a class="dropdown-toggle" style="color:green;" href="#" data-toggle="dropdown" _hover-ignore="1">分站<!--<b class="caret"></b>--></a>
<ul class="dropdown-menu">
<!--
<li><a style="color:purple;" target="_blank" title="主站" href="http://www.51itclub.net">主站</a></li>
<li><a style="color:purple;" target="_blank" title="主站" href="../../../../../">主站</a></li>
-->
<li><a style="color:purple;" target="_blank" title="主站" href="http://www.51itclub.net/">主站</a></li>
<li><a style="color:purple;" target="_blank" title="本站归档" href="../../../../../archives/">归档</a></li>
<li><a target="_blank" style="color:blue;" title="GitCafe静态博客托管平台" href="http://51itclub.gitcafe.io">GitCafe</a></li>
<li><a target="_blank" style="color:blue;" title="GitHub静态博客托管平台" href="http://51itclub.github.io">GitHub</a></li>
<li><a target="_blank" style="color:red;" title="托管在路由器上的WIFI通告" href="../../../../../wifi/">WIFI</a></li>
<!--<li><a style="color:purple;" target="_blank" title="BBS综合社区论坛" href="http://bbs.51itclub.net">BBS</a></li>-->
<li><a style="color:purple;" target="_blank" title="BBS综合社区论坛" href="../../../../../post/bbs/">BBS</a></li>
</ul>
</li>
<li class="dropdown">
<a class="dropdown-toggle" style="color:green;" href="#" data-toggle="dropdown" _hover-ignore="1">实用工具<!--<b class="caret"></b>--></a>
<ul class="dropdown-menu">
<!--<li><a target="_blank" style="color:red;" title="64码高清" href="http://www.51itclub.net/tv/">64码高清</a></li>-->
<li><a target="_blank" style="color:red;" title="64码高清" href="../../../../../tv/">64码高清</a></li>
<li><a target="_blank" style="color:purple;" title="歌单刷新" href="../../../../../mp3/dew-web.xml">歌单刷新</a></li>
<li><a style="color:blue;" target="_blank" title="央广电台" href="../../../../../tv/ygdt.html">央广电台</a></li>
<!--<li><a style="color:purple;" target="_blank" title="CCTV1综合频道" href="../../../../../tv/cctv1.html">CCTV1</a></li>-->
<li><a style="color:purple;" target="_blank" title="豆瓣音乐" href="../../../../../tv/db.html">豆瓣音乐</a></li>
<li><a style="color:blue;" target="_blank" title="易视直播" href="../../../../../tv/ys.html">易视直播</a></li>
<li><a style="color:blue;" target="_blank" title="夏玲电视直播" href="../../../../../tv/xl.html">夏玲电视</a></li>
<li><a style="color:purple;" target="_blank" title="在线闹钟" href="http://www.naobiao.com/">在线闹钟</a></li>
<li><a style="color:blue;" target="_blank" title="汉王手写" href="http://www.codefans.net/jscss/code/2099.shtml">汉王手写</a></li>
<li><a style="color:purple;" title="High一下" href="javascript:high()">High一下</a></li>
<!--
<li><a style="color:purple;" title="High一下" href='javascript:(function(){function%20c(){var%20e=document.createElement("link");e.setAttribute("type","text/css");e.setAttribute("rel","stylesheet");e.setAttribute("href",f);e.setAttribute("class",l);document.body.appendChild(e)}function%20h(){var%20e=document.getElementsByClassName(l);for(var%20t=0;t<e.length;t++){document.body.removeChild(e[t])}}function%20p(){var%20e=document.createElement("div");e.setAttribute("class",a);document.body.appendChild(e);setTimeout(function(){document.body.removeChild(e)},100)}function%20d(e){return{height:e.offsetHeight,width:e.offsetWidth}}function%20v(i){var%20s=d(i);return%20s.height>e&&s.height<n&&s.width>t&&s.width<r}function%20m(e){var%20t=e;var%20n=0;while(!!t){n+=t.offsetTop;t=t.offsetParent}return%20n}function%20g(){var%20e=document.documentElement;if(!!window.innerWidth){return%20window.innerHeight}else%20if(e&&!isNaN(e.clientHeight)){return%20e.clientHeight}return%200}function%20y(){if(window.pageYOffset){return%20window.pageYOffset}return%20Math.max(document.documentElement.scrollTop,document.body.scrollTop)}function%20E(e){var%20t=m(e);return%20t>=w&&t<=b+w}function%20S(){var%20e=document.createElement("audio");e.setAttribute("class",l);e.src=i;e.loop=false;e.addEventListener("canplay",function(){setTimeout(function(){x(k)},500);setTimeout(function(){N();p();for(var%20e=0;e<O.length;e++){T(O[e])}},15500)},true);e.addEventListener("ended",function(){N();h()},true);e.innerHTML="%20<p>If%20you%20are%20reading%20this,%20it%20is%20because%20your%20browser%20does%20not%20support%20the%20audio%20element.%20We%20recommend%20that%20you%20get%20a%20new%20browser.</p>%20<p>";document.body.appendChild(e);e.play()}function%20x(e){e.className+="%20"+s+"%20"+o}function%20T(e){e.className+="%20"+s+"%20"+u[Math.floor(Math.random()*u.length)]}function%20N(){var%20e=document.getElementsByClassName(s);var%20t=new%20RegExp("\\b"+s+"\\b");for(var%20n=0;n<e.length;){e[n].className=e[n].className.replace(t,"")}}var%20e=30;var%20t=30;var%20n=350;var%20r=350;var%20i="//s3.amazonaws.com/moovweb-marketing/playground/harlem-shake.mp3";var%20s="mw-harlem_shake_me";var%20o="im_first";var%20u=["im_drunk","im_baked","im_trippin","im_blown"];var%20a="mw-strobe_light";var%20f="//s3.amazonaws.com/moovweb-marketing/playground/harlem-shake-style.css";var%20l="mw_added_css";var%20b=g();var%20w=y();var%20C=document.getElementsByTagName("*");var%20k=null;for(var%20L=0;L<C.length;L++){var%20A=C[L];if(v(A)){if(E(A)){k=A;break}}}if(A===null){console.warn("Could%20not%20find%20a%20node%20of%20the%20right%20size.%20Please%20try%20a%20different%20page.");return}c();S();var%20O=[];for(var%20L=0;L<C.length;L++){var%20A=C[L];if(v(A)){O.push(A)}}})()'>High一下</a></li>
<li><a style="color:green;font-weight:bold;" title="其它更多" href="../../../../../tv/more.html">其它更多</a></li>
-->
</ul>
</li>
<!--
<li><a target="_blank" style="color:green;" title="WordPress" href="http://wp.51itclub.net" _hover-ignore="1">WordPress</a></li>
<li><a target="_blank" style="color:purple;" title="论坛" href="http://bbs.51itclub.net" _hover-ignore="1">论坛</a></li>
<li><a target="_blank" style="color:red;" title="没得比" href="http://www.meidebi.com/" _hover-ignore="1">没得比</a></li>
-->
<li class="dropdown">
<a class="dropdown-toggle" style="color:purple;" href="#" data-toggle="dropdown">支付宝捐赠</a>
<ul class="dropdown-menu">
<li><form action="https://shenghuo.alipay.com/send/payment/fill.htm" method="post" target="_blank" accept-charset="GBK2312" id="alipayForm">
<input name="optEmail" type="hidden" value="[email protected]" />
<input name="payAmount" type="hidden" value="10.00" />
<input id="title" name="title" type="hidden" value="Thanks for donate..." />
<!--<input name="memo" type="hidden" value="QQ:997191058
Tel:1501184488X" />-->
<input name="memo" type="hidden" value="QQ:99719105X
Tel:1501184488x" />
<input name="pay" type="image" src="../../../../../img/apqhnru50w0fpec999.png" width="250" height="250">
</form>
</li>
</ul></li>
<li class="dropdown">
<a class="dropdown-toggle" style="color:blue;" href="#" data-toggle="dropdown">加我微信</a>
<ul class="dropdown-menu">
<li><img src="../../../../../img/mmqrcode1438268851877.png" width="250" height="250">
</form>
</li>
</ul></li>
</ul>
<ul class="nav navbar-nav navbar-right">
<li style="margin:17px 1px 1px 1px;"><object type="application/x-shockwave-flash" data="../../../../../swf/dewplayer/dewplayer-multi.swf" width="250" height="20" id="dewplayer" name="dewplayer"><param name="wmode" value="transparent" /><param name="movie" value="../../../../../swf/dewplayer/dewplayer-multi.swf" /><param name="flashvars" value="xml=../../../../../mp3/dew-web.xml&autoplay=0&autoreplay=true&showtime=1&volume=95&nopointer=false" /></object></li>
<!--
<li><a href="/atom.xml" target="_blank" class="fa fa-rss-square fa-2x" style="padding:20px;" title="RSS"></a></li>
<li><a href="http://weibo.com/1859539911" target="_blank" style="color:red;padding:20px;" class="fa fa-weibo fa-2x" title="新浪微博"></a></li>
<li><a href="http://997191058.qzone.qq.com" target="_blank" style="color:blue;padding:20px;" class="fa fa-qq fa-2x" title="QZone"></a></li>
-->
<!--
<li><a href="https://gitcafe.com/51itclub" target="_blank" class="fa fa-github fa-2x" style="color:green;padding:20px;" title="GitCafe"></a></li>
<li><a href="https://www.douban.com/people/48905699" target="_blank" class="fa fa-reddit fa-2x" style="padding:20px;" title="豆瓣主页"></a></li>
-->
<li><a href="http://music.douban.com/programme/4776865" target="_blank" class="icon-douban fd-2x" style="color:purple;padding:20px;" title="豆瓣歌曲"></a></li>
</ul>
</div>
</div>
</nav>
<div class="clearfix"></div></header>
<div id='content' class="container">
<div class="page-header-wrapper">
<!--[if lt IE 9]><div class="alert alert-warning alert-dismissable"><button type="button" class="close" data-dismiss="alert" aria-hidden="true">×</button><strong>提示:</strong>您的浏览器版本太低了,建议升级到 <strong><a href="http://windows.microsoft.com/zh-cn/internet-explorer/download-ie" title="IE9">IE9</a></strong> 以上,本站使用<a href="https://www.google.com/intl/zh-CN/chrome/">Chrome浏览器</a>可以获得最好的显示效果.</div><![endif]-->
<!--
<div class="page-header" style="text-align: center;margin: 1px 0 2px;">
<div><p><table cellSpacing=0 cellPadding=0 align=center background=/images/ysz5.gif>
<tbody> <tr> <td style="FILTER: chroma(color=#336699)">
<table align=center background=/images/ysz4.gif><tbody><tr>
<td align=middle style="padding: .7em 1em .6em 1em;"><font style="FONT-WEIGHT: normal; FONT-SIZE: 24pt; LINE-HEIGHT: normal; FONT-STYLE: normal; FONT-VARIANT: normal" face=华文行楷 color=purple><strong>IT部落</strong></font></td></tr></tbody></table></td></tr></tbody></table></p></div>
<h3><small style="color: blue;">IT是前沿,过程是积累,生活是目的</small></h3>
</div>
<div class="page-header" style="text-align: center;margin: 1px 0 2px;"><h3 style="color:blue;">IT部落</h3><h3><small style="color:green;">IT是前沿,过程是积累,生活是目的</small></h3></div>
<div class="page-header" style="text-align: center;margin: 1px 0 2px;">
<TABLE align=center background=/images/ysz1.gif border=0><TBODY><TR><TD style="FILTER: mask(color=#000000)" align=middle><FONT style="FONT-SIZE: 24pt" face=隶书 color=#336699><B>IT部落</B></FONT></TD></TR></TBODY></TABLE>
<h3><small style="color:green;">IT是前沿,过程是积累,生活是目的</small></h3>
</div>
<div class="page-header" style="text-align: center;margin: 1px 0 2px;">
<TABLE align=center background=/images/ysz2.gif border=0><TBODY><TR><TD style="FILTER: mask(color=#000000)" align=middle><FONT style="FONT-SIZE: 24pt" face=隶书 color=#336699><B>IT部落</B></FONT></TD></TR></TBODY></TABLE>
<h3><small style="color:green;">IT是前沿,过程是积累,生活是目的</small></h3>
</div>
<div class="page-header" style="text-align: center;margin: 1px 0 2px;">
<div style="FONT-SIZE: 26pt; FILTER: dropshadow(color=#228B22,offX=5,offY=3,Positive=1); WIDTH: 100%; COLOR: #ff7f50; LINE-HEIGHT: 150%; FONT-FAMILY: 华文行楷"><strong>IT部落</strong></div>
<h3><small style="color:green;">IT是前沿,过程是积累,生活是目的</small></h3>
</div>
<div class="page-header" style="text-align: center;margin: 1px 0 2px;">
<div><p><table cellSpacing=0 cellPadding=0 align=center background=/images/ysz5.gif>
<tbody> <tr> <td style="FILTER: chroma(color=#336699)">
<table align=center background=/images/ysz4.gif><tbody><tr>
<td align=middle style="padding: .7em 1em .6em 1em;"><font style="FONT-WEIGHT: normal; FONT-SIZE: 24pt; LINE-HEIGHT: normal; FONT-STYLE: normal; FONT-VARIANT: normal" face=华文行楷 color=#336699><strong>IT部落</strong></font></td></tr></tbody></table></td></tr></tbody></table></p></div>
<h3><small style="color:green;">IT是前沿,过程是积累,生活是目的</small></h3>
</div>
<div class="page-header" style="text-align: center;margin: 1px 0 2px;">
<div><p><table cellSpacing=0 cellPadding=0 align=center background=/images/ysz5.gif>
<tbody> <tr> <td style="FILTER: chroma(color=#336699)">
<table align=center background=/images/ysz4.gif><tbody><tr>
<td align=middle style="padding: .7em 1em .6em 1em;"><font style="FONT-WEIGHT: normal; FONT-SIZE: 24pt; LINE-HEIGHT: normal; FONT-STYLE: normal; FONT-VARIANT: normal" face=华文行楷 color=#ff7f50><strong>IT部落</strong></font></td></tr></tbody></table></td></tr></tbody></table></p></div>
<h3><small style="color:green;">IT是前沿,过程是积累,生活是目的</small></h3>
</div>
<div class="page-header" style="text-align: center;margin: 1px 0 2px;">
<div><p><table cellSpacing=0 cellPadding=0 align=center background=/images/ysz5.gif>
<tbody> <tr> <td style="FILTER: chroma(color=#336699)">
<table align=center background=/images/ysz4.gif><tbody><tr>
<td align=middle style="padding: .7em 1em .6em 1em;"><font style="FONT-WEIGHT: normal; FONT-SIZE: 24pt; LINE-HEIGHT: normal; FONT-STYLE: normal; FONT-VARIANT: normal" face=华文行楷 color=purple><strong>IT部落</strong></font></td></tr></tbody></table></td></tr></tbody></table></p></div>
<h3><small style="color: blue;">IT是前沿,过程是积累,生活是目的</small></h3>
</div>
-->
</div>
<div class="row">
<div id="main-col" class="alignleft col-sx-12 col-sm-8 col-md-9 col-lg-9">
<section id='header_widget'></section>
<div id="wrapper"><article>
<div id="page" class="page well">
<div class="post-content">
<header class="well-sm">
<i class="fa icon fa-5x pull-left"></i>
<h1 class="title"></h1>
</header>
<section id='before_content_widget'></section>
<div class="entry" data-spy="scroll" data-target="#toc" >
<!DOCTYPE html>
<html>
<head>
<meta charset='utf-8'>
<meta http-equiv="X-UA-Compatible" content="chrome=1">
<link rel="stylesheet" type="text/css" href="stylesheets/stylesheet.css" media="screen">
<link rel="stylesheet" type="text/css" href="stylesheets/github-dark.css" media="screen">
<link rel="stylesheet" type="text/css" href="stylesheets/print.css" media="print">
<title>Blog by 51itclub</title>
</head>
<body>
<header>
<div class="container">
<h1>Blog</h1>
<h2></h2>
<section id="downloads">
<a href="https://github.com/51itclub/blog/zipball/master" class="btn" target="_blank">Download as .zip</a>
<a href="https://github.com/51itclub/blog/tarball/master" class="btn" target="_blank">Download as .tar.gz</a>
<a href="https://github.com/51itclub/blog" class="btn btn-github" target="_blank"><span class="icon"></span>View on GitHub</a>
</section>
</div>
</header>
<div class="container">
<section id="main_content">
<h3>
<a id="welcome-to-github-pages" class="anchor" href="#welcome-to-github-pages" aria-hidden="true"><span class="octicon octicon-link"></span></a>Welcome to GitHub Pages.</h3>
<p>This automatic page generator is the easiest way to create beautiful pages for all of your projects. Author your page content here <a href="https://guides.github.com/features/mastering-markdown/" target="_blank">using GitHub Flavored Markdown</a>, select a template crafted by a designer, and publish. After your page is generated, you can check out the new <code>gh-pages</code> branch locally. If you're using GitHub for Mac or GitHub for Windows, simply sync your repository and you'll see the new branch.</p>
<h3>
<a id="designer-templates" class="anchor" href="#designer-templates" aria-hidden="true"><span class="octicon octicon-link"></span></a>Designer Templates</h3>
<p>We've crafted some handsome templates for you to use. Go ahead and click 'Continue to layouts' to browse through them. You can easily go back to edit your page before publishing. After publishing your page, you can revisit the page generator and switch to another theme. Your Page content will be preserved.</p>
<h3>
<a id="creating-pages-manually" class="anchor" href="#creating-pages-manually" aria-hidden="true"><span class="octicon octicon-link"></span></a>Creating pages manually</h3>
<p>If you prefer to not use the automatic generator, push a branch named <code>gh-pages</code> to your repository to create a page manually. In addition to supporting regular HTML content, GitHub Pages support Jekyll, a simple, blog aware static site generator. Jekyll makes it easy to create site-wide headers and footers without having to copy them across every page. It also offers intelligent blog support and other advanced templating features.</p>
<h3>
<a id="authors-and-contributors" class="anchor" href="#authors-and-contributors" aria-hidden="true"><span class="octicon octicon-link"></span></a>Authors and Contributors</h3>
<p>You can <a href="https://github.com/blog/821" class="user-mention" target="_blank">@mention</a> a GitHub username to generate a link to their profile. The resulting <code><a></code> element will link to the contributor's GitHub Profile. For example: In 2007, Chris Wanstrath (<a href="https://github.com/defunkt" class="user-mention" target="_blank">@defunkt</a>), PJ Hyett (<a href="https://github.com/pjhyett" class="user-mention" target="_blank">@pjhyett</a>), and Tom Preston-Werner (<a href="https://github.com/mojombo" class="user-mention" target="_blank">@mojombo</a>) founded GitHub.</p>
<h3>
<a id="support-or-contact" class="anchor" href="#support-or-contact" aria-hidden="true"><span class="octicon octicon-link"></span></a>Support or Contact</h3>
<p>Having trouble with Pages? Check out our <a href="https://help.github.com/pages" target="_blank">documentation</a> or <a href="https://github.com/contact" target="_blank">contact support</a> and we’ll help you sort it out.</p>
</section>
</div>
</body>
</html>
</div>
<section id='after_content_widget'></section>
<div class="clearfix"></div>
</div>
</div>
</article>
<section id='after_post_widget'></section>
<div id="comments"><!-- Duoshuo Comment BEGIN -->
<div class="ds-thread" data-url="http://www.51itclub.net/index.org.html" data-title=""></div>
<!-- Duoshuo Comment END -->
</div></div><!--wapper-->
</div><!-- ID main-col END -->
<aside id="sidebar" class="alignright col-sx-6 col-sm-4 col-md-3 col-lg-3">
<div id="widget_swiftype" class="widget panel panel-primary">
<form class="input-group">
<input type="text" id="st-search-input" class="form-control" placeholder="搜索" autocomplete="off" autocorrect="off" autocapitalize="off" style="outline: none;">
<span class="input-group-btn"><button class="btn btn-default" type="search"><i class="fa fa-search"></i></button></span>
</form></div>
<div id="widget_category" class="widget panel panel-primary">
<div class="panel-heading">分类</div> <div data-src='category' class='ajax_widgets'>正在加载...</div>
</div>
<div id="widget_tagcloud" class="widget panel panel-primary">
<div class="panel-heading">标签云</div> <div data-src='tagcloud' class='ajax_widgets'>正在加载...</div></div>
<div id="widget_sina_weiboshow" class="widget panel panel-primary">
<div class="panel-heading">新浪微搏秀</div>
<iframe width="100%" height="600" class="share_self" frameborder="0" scrolling="no" src="http://widget.weibo.com/weiboshow/index.php?width=0&height=600&fansRow=1&ptype=2&speed=1&skin=7&isTitle=0&noborder=1&isWeibo=1&isFans=1&uid=1859539911&verifier=e2427e0b&dpc=1"></iframe>
</div>
<div id="widget_links" class="widget panel panel-primary">
<div class="panel-heading">友情链接</div> <div class="linkslist">
<ul>
<li>
<a href="http://chenall.net/" target="_blank" title="Chenall's Blog">Chenall's Blog</a>
</li>
<li>
<a href="http://wuchong.me" target="_blank" title="Jark's Blog">Jark's Blog</a>
</li>
</ul>
</div></div>
<div id="widget_rss" class="widget panel panel-primary">
<div class="rsspart">
<a href="../../../../../atom.xml" target="_blank" title="RSS订阅">RSS订阅</a>
<!--<a href="atom.xml" target="_blank" title="RSS订阅">rss</a>-->
</div></div>
</aside>
<div class="clearfix"></div>
</div><!-- row END -->
</div>
<footer id="footer" class="container">
<div class="panel panel-info">
<section id='footer_widget'></section> <div class="panel-footer">
<div id="site-info">
<span class='author'>
© 2009-2015 【 小吴工作室 】<!--IT部落-->
<a href='http://www.miibeian.gov.cn/' target="_blank" title="点击进入ICP官网查询备案信息">粤ICP备15002619号-1</a>
</span>
<span class="pull-right">
<!--
<a target="_blank" href="http://997191058.qzone.qq.com" title="QZone"><img border="0" SRC="http://wpa.qq.com/pa?p=1:997191058:4" alt="Q我吧" /></a>
<a target="_blank" href="http://wpa.qq.com/msgrd?V=3&uin=997191058&Site=IT部落&Menu=yes" title="Q我吧"><img border="0" SRC="http://wpa.qq.com/pa?p=1:997191058:4" alt="Q我吧" /></a>
<a href="http://wpa.qq.com/msgrd?V=3&Uin=997191058&Site=51itclub.net&Menu=yes&from=blog" target="_blank" title="QQ"><img src="/img/site_qq.jpg" alt="QQ" /></a>
-->
<span id='analytics-51la'>
<script language="javascript" type="text/javascript" src="http://js.users.51.la/18197588.js"></script>
<noscript><a href="http://www.51.la/?18197588" target="_blank"><img alt="我要啦免费统计" src="http://img.users.51.la/18197588.asp" style="border:none" /></a></noscript>
</span><span id='analytics-google'>
<script type="text/javascript">
var _gaq = _gaq || [];
_gaq.push(['_setAccount', 'UA-65590274-1']);
_gaq.push(['_trackPageview']);
_js2load.push({src:('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js'});
</script></span><span id='analytics-baidu'>
<script>
var _hmt = _hmt || [];
_js2load.push({src:"//hm.baidu.com/hm.js?e74619e545b2ba3b26211007988beaed"});
</script>
</span>
</span>
</div>
<div id="copyright">Blog Powered by <a href='http://hexo.io/' target="_blank" title="本站由Hexo V2.5.3 生成"><strong>Hexo</strong></a> Theme <strong><a href='https://github.com/51itclub/hexo-theme-51itclub' target="_blank" title="本站所用主题代码仓库">51itclub</a></strong><!-- Based on <strong><a href='https://github.com/chenall/hexo-theme-chenall' target="_blank" title="chenall的主题代码仓库">chenall V2.2</a></strong>--><span class="pull-right"> 更新时间: <em>2015-07-03 21:50:25</em></span></div>
</div>
<div class="clearfix"></div>
<style>
#footer .line {
width: 100%;
height: 14em;
margin: 0 auto;
}
/* @media only screen and (min-width:768px) */
#footer .line {
width: 10em;
float: left;
position: relative;
}
.info {
font-family: "covered_by_your_graceregular";
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
font-size: 170%;
/* font-size: 170%; */
line-height: 1.3em;
width: 90%;
margin: 0 auto;
color: #333;
}
/* @media only screen and (min-width:768px) */
.info {
margin: 4.5em 0 2em 0;
float: left;
width: 75%;
}
.social-font {
width: 100%;
margin: 0 auto;
float: left;
padding-left: 3%;
}
/* @media only screen and (min-width:568px) */
.social-font {
padding-left: 20%;
}
/* @media only screen and (min-width:768px) */
.social-font {
width: 15em;
position: absolute;
right: -2em;
top: 3em;
}
#footer .line span {
display: block;
width: 0.5em;
height: 6.25em;
border-right: 0.125em solid pink;
margin: 0 auto;
}
/* @media only screen and (min-width:768px) */
#footer .line span {
position: absolute;
left: 3em;
margin: 0 0 1.5em;
}
.author_img {
width: 6.87em;
height: 6.87em;
margin: 0 auto;
background: no-repeat url(/img/author.gif) left top;
-webkit-background-size: 6.875em 6.875em;
-moz-background-size: 6.875em 6.875em;
background-size: 6.875em 6.875em;
-webkit-border-radius: 3.4375em;
border-radius: 3.4375em;
-webkit-transition: -webkit-transform 2s ease-out;
-moz-transition: -moz-transform 2s ease-out;
-o-transition: -o-transform 2s ease-out;
-ms-transition: -ms-transform 2s ease-out;
transition: transform 2s ease-out;
}
.author_img:hover {
transform: rotateZ(360deg);
}
/* @media only screen and (min-width:768px) */
.author_img {
position: absolute;
top: 6em;
margin: 0 0 1.5em;
}
</style>
<div id="footer">
<div class="line">
<span></span>
<div class="author_img"></div>
</div>
<section class="info">
<!--<section class="info fc-2x">-->
<p> Hello ,I'm
<a href='http://www.51itclub.net/' target="_blank" style="text-decoration:none;color:#333;" title="点击进入我的个人主页">Nicky</a>
in <a href='https://gitcafe.com/51itclub' target="_blank" style="text-decoration:none;color:#333;" title="点击进入我的Gitcafe主页">Gitcafe</a>
. <br>
This is my blog,believe it or not.</p>
</section>
<div class="social-font">
</div>
</div>
</div>
</footer>
<script src="http://cdn.bootcss.com/jquery/1.10.2/jquery.min.js"></script>
<script src="http://cdn.staticfile.org/twitter-bootstrap/3.1.0/js/bootstrap.min.js"></script>
<script type="text/javascript"> (function(win,doc){ var s = doc.createElement("script"), h = doc.getElementsByTagName("head")[0]; if (!win.alimamatk_show) { s.charset = "gbk"; s.async = true; s.src = "http://a.alimama.cn/tkapi.js"; h.insertBefore(s, h.firstChild); }; var o = { pid: "mm_14266497_2425855_13670245",}; win.alimamatk_onload = win.alimamatk_onload || []; win.alimamatk_onload.push(o); })(window,document);</script>
<script src="http://cdn.bootcss.com/prettify/r298/prettify.min.js"></script> <script type="text/javascript">
var lang=["bsh", "c", "cc", "cpp", "cs", "csh", "cyc", "cv", "htm", "html",
"java", "js", "m", "mxml", "perl", "pl", "pm", "py", "rb", "sh",
"xhtml", "xml", "xsl"];
var pretty_base='';
$('script').each(function(){
var c = $(this).attr('src');
if (!c)
return;
if (c.match(/(\/)?prettify(\.min)?\.js/i))
{
var index = c.lastIndexOf('/');
if (index != -1)
pretty_base = c.substr(0,index + 1);
return false;
}
})
$('pre code').each(function(){
var c = $(this).attr('class')
if (!c)
return;
c = c.match(/\s?(lang\-\w+)/i);
if (c && lang.indexOf(c[1]) == -1)
{
lang.push(c[1]);
$.getScript(pretty_base + c[1] + '.min.js');
}
})
$(window).load(function(){
$("pre").addClass("prettyprint");
prettyPrint();
})
</script>
<script type="text/javascript">
var duoshuoQuery = {short_name:"51itclub"};
_js2load.push({src:'http://static.duoshuo.com/embed.js',charset:'UTF-8'});
</script>
<!--wumii_relatedItems-->
<script>_js2load.push({src:(document.location.protocol == 'https:' ? 'https:' : 'http:') + '//www.google.com/cse/cse.js?cx=013748367689400048621:dmsqkhtcvbm'});</script>
<div id='swiftype-searchinfo' style='display: none;'><div class="alert alert-info"> 正在搜索中,稍后将在这里显示结果。。。。</div></div>
<script type="text/javascript">
var Swiftype = window.Swiftype || {key:'ACXWZyZ4J9jjvQEmmzua',renderStyle: 'inline' };
_js2load.push({src:"//s.swiftypecdn.com/embed.js"});
$(function(){$('#main-col').prepend('<div id="st-results-container"></div>');$('form').has('#st-search-input').submit(function(){$('#st-results-container').html($('#swiftype-searchinfo').html());})});
</script>
<script src="http://cdn.bootcss.com/fancybox/2.1.5/jquery.fancybox.min.js"></script> <script type="text/javascript">
(function($){
$('.entry').each(function(i){
$(this).find('img').each(function(){
var alt = this.alt;
var imgsrc = /^.+?(png|bmp|jpeg)/.exec(this.src);
$(this).wrap('<a href="' + (imgsrc?imgsrc[0]:this.src) + '" title="' + alt + '" class="fancybox" rel="fancybox' + i + '" />').wrap('<div class="img_block"></div>');
if(alt){$(this).after('<span class="caption">' + alt + '</span>')};
});
});
$('.fancybox').fancybox();
})(jQuery);
</script>
<script src="http://cdn.bootcss.com/mathjax/2.3/MathJax.js?config=TeX-AMS-MML_HTMLorMML"></script> <script type="text/x-mathjax-config">
MathJax.Hub.Config({
tex2jax: {
skipTags: ['script', 'noscript', 'style', 'textarea', 'pre', 'code'],
inlineMath: [ ['$','$'], ["\\(","\\)"] ],
processEscapes: true
}
});
MathJax.Hub.Queue(function() {
var all = MathJax.Hub.getAllJax(), i;
for(i=0; i < all.length; i += 1) {
all[i].SourceElement().parentNode.className += ' has-jax';
}
});
</script>
<script type="text/javascript" src="/js/chenall.js"></script>
<script type="text/javascript" src="/js/jquery-2.1.0.min.js"></script>
<!-- <script src="/js/jquery-2.0.3.min.js"></script> -->
<script src="/js/jquery.imagesloaded.min.js"></script>
<script src="/js/gallery.js"></script>
<script src="/js/jquery.qrcode-0.12.0.min.js"></script>
<!-- Totop Begin -->
<div id="totop">
<a title="返回顶部"><img src="/img/scrollup.png"/></a>
</div>
<script src="/js/totop.js"></script>
<!-- Totop End -->
<!-- Tiny_search Begin -->
<script>
var option = {
engineKey: 'null'
};
(function(w,d,t,u,n,s,e){
s = d.createElement(t);
s.src = u;
s.async = 1;
w[n] = function(r){
w[n].opts = r;
};
e = d.getElementsByTagName(t)[0];
e.parentNode.insertBefore(s, e);
})(window,document,'script','//tinysou-cdn.b0.upaiyun.com/ts.js','_ts');
_ts(option);
</script>
<!-- Tiny_search End -->
<!--addons at end of body-->