-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
1024 lines (550 loc) · 25.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>
<head><meta name="generator" content="Hexo 3.8.0">
<!-- Google Analytics -->
<script>
window.ga=window.ga||function(){(ga.q=ga.q||[]).push(arguments)};ga.l=+new Date;
ga('create', 'true', 'auto');
ga('send', 'pageview');
</script>
<script async src="https://www.google-analytics.com/analytics.js"></script>
<!-- End Google Analytics -->
<meta charset="utf-8">
<meta name="google-site-verification" content="true">
<title>Hexo</title>
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1">
<meta name="theme-color" content="#3F51B5">
<meta name="keywords" content>
<meta name="description" content="keep hungry and practice more">
<meta property="og:type" content="website">
<meta property="og:title" content="Hexo">
<meta property="og:url" content="https://github.com/SunshineJunFu/JunFu.github.io/index.html">
<meta property="og:site_name" content="Hexo">
<meta property="og:description" content="keep hungry and practice more">
<meta property="og:locale" content="en">
<meta name="twitter:card" content="summary">
<meta name="twitter:title" content="Hexo">
<meta name="twitter:description" content="keep hungry and practice more">
<link rel="alternate" type="application/atom+xml" title="Hexo" href="/JunFu.github.io/atom.xml">
<link rel="shortcut icon" href="/JunFu.github.io/favicon.ico">
<link rel="stylesheet" href="/JunFu.github.io/css/style.css?v=1.7.2">
<script>window.lazyScripts=[]</script>
<!-- custom head -->
</head>
<body>
<div id="loading" class="active"></div>
<aside id="menu">
<div class="inner flex-row-vertical">
<a href="javascript:;" class="header-icon waves-effect waves-circle waves-light" id="menu-off">
<i class="icon icon-lg icon-close"></i>
</a>
<div class="brand-wrap" style="background-image:url(/JunFu.github.io/img/brand.jpg)">
<div class="brand">
<a href="/JunFu.github.io/" class="avatar waves-effect waves-circle waves-light">
<img src="/JunFu.github.io/images/avatar.jpg">
</a>
<hgroup class="introduce">
<h5 class="nickname">Jun Fu</h5>
</hgroup>
</div>
</div>
<div class="scroll-wrap flex-col">
<ul class="nav">
<li class="waves-block waves-effect active">
<a href="/JunFu.github.io/">
<i class="icon icon-lg icon-home"></i>
Homepage
</a>
</li>
<li class="waves-block waves-effect">
<a href="/JunFu.github.io/archives">
<i class="icon icon-lg icon-archives"></i>
Archives
</a>
</li>
<li class="waves-block waves-effect">
<a href="/JunFu.github.io/tags">
<i class="icon icon-lg icon-tags"></i>
Tags
</a>
</li>
<li class="waves-block waves-effect">
<a href="/JunFu.github.io/categories">
<i class="icon icon-lg icon-th-list"></i>
Categories
</a>
</li>
<li class="waves-block waves-effect">
<a href="https://github.com/SunshineJunFu" target="_blank">
<i class="icon icon-lg icon-github"></i>
Github
</a>
</li>
</ul>
</div>
</div>
</aside>
<main id="main">
<header class="top-header" id="header">
<div class="flex-row">
<a href="javascript:;" class="header-icon waves-effect waves-circle waves-light on" id="menu-toggle">
<i class="icon icon-lg icon-navicon"></i>
</a>
<div class="flex-col header-title ellipsis">Hexo</div>
<div class="search-wrap" id="search-wrap">
<a href="javascript:;" class="header-icon waves-effect waves-circle waves-light" id="back">
<i class="icon icon-lg icon-chevron-left"></i>
</a>
<input type="text" id="key" class="search-input" autocomplete="off" placeholder="Search">
<a href="javascript:;" class="header-icon waves-effect waves-circle waves-light" id="search">
<i class="icon icon-lg icon-search"></i>
</a>
</div>
<a href="javascript:;" class="header-icon waves-effect waves-circle waves-light" id="menuShare">
<i class="icon icon-lg icon-share-alt"></i>
</a>
</div>
</header>
<header class="content-header index-header">
<div class="container fade-scale">
<h1 class="title">Hexo</h1>
<h5 class="subtitle">
</h5>
</div>
</header>
<div class="container body-wrap">
<ul class="post-list">
<li class="post-list-item fade">
<article id="post-paper1" class="article-card article-type-post" itemprop="blogPost">
<div class="post-meta">
<time class="post-time" title="2019-03-22 12:38:25" datetime="2019-03-22T04:38:25.000Z" itemprop="datePublished">2019-03-22</time>
</div>
<h3 class="post-title" itemprop="name">
<a class="post-title-link" href="/JunFu.github.io/2019/03/22/paper1/">paper1</a>
</h3>
<div class="post-content" id="post-content" itemprop="postContent">
Spatial Temporal Graph Convolutional Networks for Skeleton-Based Action RecognitionAbstract人体骨骼点的变化对人体动作的识别提供了重要的信息。传统骨骼建模的方法通常依赖于手工或者遍历的方法,导致表达能力受限以及很难泛化。本文提出了一种对动态骨骼建模的新方法,该方法叫做时空域图卷积网络。该方法通过自动地从...
<a href="/JunFu.github.io/2019/03/22/paper1/" class="post-more waves-effect waves-button">
Continue reading...
</a>
</div>
<div class="post-footer">
<ul class="article-tag-list"><li class="article-tag-list-item"><a class="article-tag-list-link" href="/JunFu.github.io/tags/Spatial-Temporal-Graph-Convolutional-Networks-for-Skeleton-Based-Action-Recognition/">Spatial Temporal Graph Convolutional Networks for Skeleton-Based Action Recognition</a></li></ul>
</div>
</article>
</li>
<li class="post-list-item fade">
<article id="post-tensorboard-install" class="article-card article-type-post" itemprop="blogPost">
<div class="post-meta">
<time class="post-time" title="2019-02-27 11:19:31" datetime="2019-02-27T03:19:31.000Z" itemprop="datePublished">2019-02-27</time>
</div>
<h3 class="post-title" itemprop="name">
<a class="post-title-link" href="/JunFu.github.io/2019/02/27/tensorboard-install/">tensorboard_install</a>
</h3>
<div class="post-content" id="post-content" itemprop="postContent">
安装Tensorflow-gpu
查看cuda版本: cat /usr/local/cuda/version.txt
查看cudnn版本: cat /usr/local/cuda/include/cudnn.h | grep CUDNN_MAJOR -A 2
在该网站上,根据cuda和cudnn版本选择合适的tensorflow-gpu版本
在该网站上下载对应版本的whl文件
执行p...
<a href="/JunFu.github.io/2019/02/27/tensorboard-install/" class="post-more waves-effect waves-button">
Continue reading...
</a>
</div>
<div class="post-footer">
<ul class="article-tag-list"><li class="article-tag-list-item"><a class="article-tag-list-link" href="/JunFu.github.io/tags/tensorflow/">tensorflow</a></li></ul>
</div>
</article>
</li>
<li class="post-list-item fade">
<article id="post-tensorflowtutorial11" class="article-card article-type-post" itemprop="blogPost">
<div class="post-meta">
<time class="post-time" title="2019-02-20 21:01:22" datetime="2019-02-20T13:01:22.000Z" itemprop="datePublished">2019-02-20</time>
</div>
<h3 class="post-title" itemprop="name">
<a class="post-title-link" href="/JunFu.github.io/2019/02/20/tensorflowtutorial11/">tensorflowtutorial11</a>
</h3>
<div class="post-content" id="post-content" itemprop="postContent">
tf.estimator.RunConfig()函数:
replace(**kwargs)
返回新的RunConfig
以下可以被修改:
model_dir,
tf_random_seed,
save_summary_steps,
save_checkpoints_steps,
save_checkpoints_secs,
session_config,
keep_checkpoint_m...
<a href="/JunFu.github.io/2019/02/20/tensorflowtutorial11/" class="post-more waves-effect waves-button">
Continue reading...
</a>
</div>
<div class="post-footer">
<ul class="article-tag-list"><li class="article-tag-list-item"><a class="article-tag-list-link" href="/JunFu.github.io/tags/tensorflow/">tensorflow</a></li></ul>
</div>
</article>
</li>
<li class="post-list-item fade">
<article id="post-linuxweek2" class="article-card article-type-post" itemprop="blogPost">
<div class="post-meta">
<time class="post-time" title="2019-02-17 15:22:46" datetime="2019-02-17T07:22:46.000Z" itemprop="datePublished">2019-02-17</time>
</div>
<h3 class="post-title" itemprop="name">
<a class="post-title-link" href="/JunFu.github.io/2019/02/17/linuxweek2/">linuxweek2</a>
</h3>
<div class="post-content" id="post-content" itemprop="postContent">
正则表达式功能:描述一个字符串模式,用于字符串匹配操作和替换操作,针对文本内容
字符类别
描述
元字符
.,*,[,\,^,$
其他字符
与自身匹配
元字符
描述
.
代表匹配任意单字符
*
表示该符号前一个字符出现0次或者任意多次
[
表示集合,在集合中\,*,.代表其本身
\
转移字符,将特殊字符转义为本身
-
[a-z]两个字符之间...
<a href="/JunFu.github.io/2019/02/17/linuxweek2/" class="post-more waves-effect waves-button">
Continue reading...
</a>
</div>
<div class="post-footer">
<ul class="article-tag-list"><li class="article-tag-list-item"><a class="article-tag-list-link" href="/JunFu.github.io/tags/linux/">linux</a></li></ul>
</div>
</article>
</li>
<li class="post-list-item fade">
<article id="post-linuxweek5" class="article-card article-type-post" itemprop="blogPost">
<div class="post-meta">
<time class="post-time" title="2019-02-15 21:39:14" datetime="2019-02-15T13:39:14.000Z" itemprop="datePublished">2019-02-15</time>
</div>
<h3 class="post-title" itemprop="name">
<a class="post-title-link" href="/JunFu.github.io/2019/02/15/linuxweek5/">linuxweek5</a>
</h3>
<div class="post-content" id="post-content" itemprop="postContent">
week5文件系统
类别
描述
根文件系统
整个文件系统的基础,不能脱卸(unmount)
子文件系统
包含硬盘,软盘,…,以根根文件系统中某一目录的身份出现
注: 根文件系统和子文件系统都有其自己独立的文件存储结构,甚至文件系统的格式也不同。
创建与删除123456789101112131415161718191. 在块设备文件 /dev/sdb上创建文件系统mkfs...
<a href="/JunFu.github.io/2019/02/15/linuxweek5/" class="post-more waves-effect waves-button">
Continue reading...
</a>
</div>
<div class="post-footer">
<ul class="article-tag-list"><li class="article-tag-list-item"><a class="article-tag-list-link" href="/JunFu.github.io/tags/linux/">linux</a></li></ul>
</div>
</article>
</li>
<li class="post-list-item fade">
<article id="post-linuxweek8" class="article-card article-type-post" itemprop="blogPost">
<div class="post-meta">
<time class="post-time" title="2019-02-14 23:06:53" datetime="2019-02-14T15:06:53.000Z" itemprop="datePublished">2019-02-14</time>
</div>
<h3 class="post-title" itemprop="name">
<a class="post-title-link" href="/JunFu.github.io/2019/02/14/linuxweek8/">linuxweek8</a>
</h3>
<div class="post-content" id="post-content" itemprop="postContent">
shell 之变量内部变量之位置参数
变量
描述
$0
脚本文件本身的名字
$1,$2,…,$n
n号命令行参数
$#
命令行参数的个数
“$*”
等同于”$1 $2 $3…”
“$@”
等同于”$1”,”$2”,”$3”,…
内部的shift命令: 位置参数的移位操作,$#的值减一,旧的$2变为$1,…,也可以shift n
自定义变量
存储的内容:字符串...
<a href="/JunFu.github.io/2019/02/14/linuxweek8/" class="post-more waves-effect waves-button">
Continue reading...
</a>
</div>
<div class="post-footer">
<ul class="article-tag-list"><li class="article-tag-list-item"><a class="article-tag-list-link" href="/JunFu.github.io/tags/linux/">linux</a></li></ul>
</div>
</article>
</li>
<li class="post-list-item fade">
<article id="post-linuxweek7" class="article-card article-type-post" itemprop="blogPost">
<div class="post-meta">
<time class="post-time" title="2019-02-14 14:54:38" datetime="2019-02-14T06:54:38.000Z" itemprop="datePublished">2019-02-14</time>
</div>
<h3 class="post-title" itemprop="name">
<a class="post-title-link" href="/JunFu.github.io/2019/02/14/linuxweek7/">linuxweek7</a>
</h3>
<div class="post-content" id="post-content" itemprop="postContent">
shell种类
种类
描述
B-shell
/bin/sh Stephen R.Bourne 于贝尔实验室开发
C-shell
/bin/csh, Bill Joy
K-shell
/bin/csh, korn shell, David Korn
Bash
/bin/bash, Bourne Again shell
功能
shell是命令解释器
文件名替换,命...
<a href="/JunFu.github.io/2019/02/14/linuxweek7/" class="post-more waves-effect waves-button">
Continue reading...
</a>
</div>
<div class="post-footer">
<ul class="article-tag-list"><li class="article-tag-list-item"><a class="article-tag-list-link" href="/JunFu.github.io/tags/linux/">linux</a></li></ul>
</div>
</article>
</li>
<li class="post-list-item fade">
<article id="post-tensorflow-tutorial-11" class="article-card article-type-post" itemprop="blogPost">
<div class="post-meta">
<time class="post-time" title="2019-02-11 10:53:52" datetime="2019-02-11T02:53:52.000Z" itemprop="datePublished">2019-02-11</time>
</div>
<h3 class="post-title" itemprop="name">
<a class="post-title-link" href="/JunFu.github.io/2019/02/11/tensorflow-tutorial-11/">tensorflow-tutorial-11</a>
</h3>
<div class="post-content" id="post-content" itemprop="postContent">
导入数据tf.data.Dataset属性
属性
描述
output_classes
返回数据集中每个元素的每个组成部分的类名
output_shapes
返回数据集中每个元素的每个组成部分的形状
output_types
返回数据集中每个元素的每个组成部分的数据类型
方法创建数据集
方法
描述
from_tensor_slices(tensors)
建...
<a href="/JunFu.github.io/2019/02/11/tensorflow-tutorial-11/" class="post-more waves-effect waves-button">
Continue reading...
</a>
</div>
<div class="post-footer">
<ul class="article-tag-list"><li class="article-tag-list-item"><a class="article-tag-list-link" href="/JunFu.github.io/tags/tensorflow/">tensorflow</a></li></ul>
</div>
</article>
</li>
<li class="post-list-item fade">
<article id="post-linuxweek4" class="article-card article-type-post" itemprop="blogPost">
<div class="post-meta">
<time class="post-time" title="2019-02-07 14:52:24" datetime="2019-02-07T06:52:24.000Z" itemprop="datePublished">2019-02-07</time>
</div>
<h3 class="post-title" itemprop="name">
<a class="post-title-link" href="/JunFu.github.io/2019/02/07/linuxweek4/">linuxweek4</a>
</h3>
<div class="post-content" id="post-content" itemprop="postContent">
文件管理列出当前文件ls [optional] [file/dir]
命令
描述
ls
列出当前目录下所有文件和目录
ls file
列出文件项
ls dir
列出目录下的所有文件项
选项
描述
-F
列出的如果是目录则在名字后以斜线/表示,可执行文件*,符号连接文件@,普通文件无标记
-l
以长格式显示信息
-a
列出文件名首字符为圆点的文...
<a href="/JunFu.github.io/2019/02/07/linuxweek4/" class="post-more waves-effect waves-button">
Continue reading...
</a>
</div>
<div class="post-footer">
<ul class="article-tag-list"><li class="article-tag-list-item"><a class="article-tag-list-link" href="/JunFu.github.io/tags/linux/">linux</a></li></ul>
</div>
</article>
</li>
<li class="post-list-item fade">
<article id="post-linuxweek3" class="article-card article-type-post" itemprop="blogPost">
<div class="post-meta">
<time class="post-time" title="2019-02-06 22:57:11" datetime="2019-02-06T14:57:11.000Z" itemprop="datePublished">2019-02-06</time>
</div>
<h3 class="post-title" itemprop="name">
<a class="post-title-link" href="/JunFu.github.io/2019/02/06/linuxweek3/">linux之vi编辑器</a>
</h3>
<div class="post-content" id="post-content" itemprop="postContent">
vi编辑器有两种状态:
命令状态:键盘输入解释为命令
vi 一启动就进入命令行模式
以冒号可以引入行编辑的命令和查找命令
编辑命令i(insert, 当前字符前),a(append,当前字符后),可以从命令状态转到文本状态
文本状态
键盘输入解释为输入的文本
可以输入多行
有回显
按Esc键,返回到命令状态
常见命令光标移动
命令
描述
h
左移1列
j...
<a href="/JunFu.github.io/2019/02/06/linuxweek3/" class="post-more waves-effect waves-button">
Continue reading...
</a>
</div>
<div class="post-footer">
<ul class="article-tag-list"><li class="article-tag-list-item"><a class="article-tag-list-link" href="/JunFu.github.io/tags/linux/">linux</a></li></ul>
</div>
</article>
</li>
</ul>
<nav id="page-nav">
<div class="inner">
<span class="page-number current">1</span><a class="page-number" href="/JunFu.github.io/page/2/">2</a><a class="page-number" href="/JunFu.github.io/page/3/">3</a><a class="extend next" rel="next" href="/JunFu.github.io/page/2/">下一页</a>
</div>
</nav>
</div>
<footer class="footer">
<div class="top">
<p>
<span id="busuanzi_container_site_uv" style="display:none">
UV:<span id="busuanzi_value_site_uv"></span>
</span>
<span id="busuanzi_container_site_pv" style="display:none">
PV:<span id="busuanzi_value_site_pv"></span>
</span>
</p>
<p>
<span><a href="/JunFu.github.io/atom.xml" target="_blank" class="rss" title="rss"><i class="icon icon-lg icon-rss"></i></a></span>
<span>This blog is licensed under a <a rel="license" href="https://creativecommons.org/licenses/by/4.0/">Creative Commons Attribution 4.0 International License</a>.</span>
</p>
</div>
<div class="bottom">
<p><span>Jun Fu © 2015 - 2019</span>
<span>
Power by <a href="http://hexo.io/" target="_blank">Hexo</a> Theme <a href="https://github.com/yscoder/hexo-theme-indigo" target="_blank">indigo</a>
</span>
</p>
</div>
</footer>
</main>
<div class="mask" id="mask"></div>
<a href="javascript:;" id="gotop" class="waves-effect waves-circle waves-light"><span class="icon icon-lg icon-chevron-up"></span></a>
<div class="global-share" id="globalShare">
<ul class="reset share-icons">
<li>
<a class="weibo share-sns" target="_blank" href="http://service.weibo.com/share/share.php?url=https://github.com/SunshineJunFu/JunFu.github.io/&title=Hexo&pic=https://github.com/SunshineJunFu/JunFu.github.io/images/avatar.jpg" data-title="微博">
<i class="icon icon-weibo"></i>
</a>
</li>
<li>
<a class="weixin share-sns wxFab" href="javascript:;" data-title="微信">
<i class="icon icon-weixin"></i>
</a>
</li>
<li>
<a class="qq share-sns" target="_blank" href="http://connect.qq.com/widget/shareqq/index.html?url=https://github.com/SunshineJunFu/JunFu.github.io/&title=Hexo&source=keep hungry and practice more" data-title=" QQ">
<i class="icon icon-qq"></i>
</a>
</li>
<li>
<a class="facebook share-sns" target="_blank" href="https://www.facebook.com/sharer/sharer.php?u=https://github.com/SunshineJunFu/JunFu.github.io/" data-title=" Facebook">
<i class="icon icon-facebook"></i>
</a>
</li>
<li>
<a class="twitter share-sns" target="_blank" href="https://twitter.com/intent/tweet?text=Hexo&url=https://github.com/SunshineJunFu/JunFu.github.io/&via=https://github.com/SunshineJunFu/JunFu.github.io" data-title=" Twitter">
<i class="icon icon-twitter"></i>
</a>
</li>
<li>
<a class="google share-sns" target="_blank" href="https://plus.google.com/share?url=https://github.com/SunshineJunFu/JunFu.github.io/" data-title=" Google+">
<i class="icon icon-google-plus"></i>
</a>
</li>
</ul>
</div>
<div class="page-modal wx-share" id="wxShare">
<a class="close" href="javascript:;"><i class="icon icon-close"></i></a>
<p>扫一扫,分享到微信</p>
<img src="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAMYAAADGCAAAAACs8KCBAAACJElEQVR42u3aS27DMAwFwN7/0inQVTexH0mlqKXxKkhtR6MCBD/6+oqv18/1+/O7b979tffmxRcGBsZjGa/L63op+f3VO/O1YWBgnMPIQ2ESFpM732Hy7cPAwMDIf+Y6mFYDKAYGBsY84F4/mywLAwMDo8eohs7o1ZcpYx7cF9fiGBgYD2T0BgN/8/nj8w0MDIx/z3gVr5xXbd6NVoWBgbE1IxkiJiVrniz2WnvRZmFgYGzNqOZdSTk6acz1nsXAwNiVUV3KpKJM3rxgJICBgbEdI8dUS81P85r/EwwMjI0YvVFlPoZMStwFARcDA2M7RrWJPzm6mpeyeSDGwMDYlZG8ohdS8yA+GZdiYGCcyagWkHnYnZSvzcEABgbGFoy8uZYMAz49+Cw33TAwMA5gVMNlrxDtbVB5goqBgfFYRjUh6wXoZBiQLPemiMXAwNiUkYfaVS2z3jZFT2FgYBzAKGSRxXxsVUvuZiMwMDAOYPTC7jzITo5oNKtwDAyMRzHyNn0VlpSveYlbGAZgYGBsyljVUJsnhc1VYWBgbM3Iw+KkcM1TwKRsxsDAOI3RO2AxR1bT0JtUEgMDY2tG73jWKnZeuC47aoaBgfFYxrIhYhx8qylg9B4MDIwDGNUgW2jctxLK8p0YGBgYxR/rFZ/VcI+BgYExamzFRWneYivMNzAwMDZlVA9GTNLE3rM3xS0GBsbWjEkB2fu+1/pfPN/AwMB4BuMb77GyUGivBiEAAAAASUVORK5CYII=" alt="微信分享二维码">
</div>
<script src="//cdn.bootcss.com/node-waves/0.7.4/waves.min.js"></script>
<script>
var BLOG = { ROOT: '/JunFu.github.io/', SHARE: true, REWARD: false };
</script>
<script src="/JunFu.github.io/js/main.min.js?v=1.7.2"></script>
<div class="search-panel" id="search-panel">
<ul class="search-result" id="search-result"></ul>
</div>
<template id="search-tpl">
<li class="item">
<a href="{path}" class="waves-block waves-effect">
<div class="title ellipsis" title="{title}">{title}</div>
<div class="flex-row flex-middle">
<div class="tags ellipsis">
{tags}
</div>
<time class="flex-col time">{date}</time>
</div>
</a>
</li>
</template>
<script src="/JunFu.github.io/js/search.min.js?v=1.7.2" async></script>
<!-- mathjax config similar to math.stackexchange -->
<script type="text/x-mathjax-config">
MathJax.Hub.Config({
tex2jax: {
inlineMath: [ ['$','$'], ["\\(","\\)"] ],
processEscapes: true,
skipTags: ['script', 'noscript', 'style', 'textarea', 'pre', 'code']
}
});
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 async src="//cdn.bootcss.com/mathjax/2.7.0/MathJax.js?config=TeX-MML-AM_CHTML"></script>
<script async src="//busuanzi.ibruce.info/busuanzi/2.3/busuanzi.pure.mini.js"></script>