-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
1607 lines (995 loc) · 53.3 KB
/
index.html
File metadata and controls
1607 lines (995 loc) · 53.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
990
991
992
993
994
995
996
997
998
999
1000
<!DOCTYPE html>
<html>
<head><meta name="generator" content="Hexo 3.8.0">
<!-- hexo-inject:begin --><!-- hexo-inject:end --><meta charset="utf-8">
<title>Anders Jing's site</title>
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1">
<meta name="keywords" content="AndersJing, AndersJing's Site">
<meta name="description" content="this is the site of AndersJing.">
<meta name="keywords" content="AndersJing, Anders Jing's site">
<meta property="og:type" content="website">
<meta property="og:title" content="Anders Jing's site">
<meta property="og:url" content="http://andersjing.com/index.html">
<meta property="og:site_name" content="Anders Jing's site">
<meta property="og:description" content="this is the site of AndersJing.">
<meta property="og:locale" content="default">
<meta name="twitter:card" content="summary">
<meta name="twitter:title" content="Anders Jing's site">
<meta name="twitter:description" content="this is the site of AndersJing.">
<link rel="icon" href="/favicon.ico">
<link href="//cdn.bootcss.com/font-awesome/4.7.0/css/font-awesome.min.css" rel="stylesheet" type="text/css">
<link rel="stylesheet" href="/css/style.css">
<script src="/js/pace.min.js"></script><!-- hexo-inject:begin --><!-- hexo-inject:end -->
</head>
</html>
<body>
<!-- hexo-inject:begin --><!-- hexo-inject:end --><div id="container">
<header id="header">
<div id="banner"></div>
<div id="header-outer">
<div id="header-menu" class="header-menu-pos animated">
<div class="header-menu-container">
<a href="/" class="left">
<span class="site-title">AndersJing's Site</span>
</a>
<nav id="header-menu-nav" class="right">
<a href="/">
<i class="fa fa-home"></i>
<span>Home</span>
</a>
<a href="/archives">
<i class="fa fa-archive"></i>
<span>Archives</span>
</a>
<a href="/about">
<i class="fa fa-user"></i>
<span>About</span>
</a>
</nav>
<a class="mobile-header-menu-button">
<i class="fa fa-bars"></i>
</a>
</div>
</div>
<div id="header-row">
<div id="logo">
<a href="/">
<img src="/images/logo.png" alt="logo">
</a>
</div>
<div class="header-info">
<div id="header-title">
<h2>
AndersJing's Site
</h2>
</div>
<div id="header-description">
<h3>
AndersJing 的个人站点
</h3>
</div>
</div>
<nav class="header-nav">
<div class="social">
<a title="AndersJing" target="_blank" href="//AndersJing.com">
<i class="fa fa-home fa-2x"></i></a>
<a title="Github" target="_blank" href="//github.com/AndersJing">
<i class="fa fa-github fa-2x"></i></a>
</div>
</nav>
</div>
</div>
</header>
<div class="outer">
<section id="main" class="body-wrap">
<article id="post-2019-04-20-LearningToRank" class="article article-type-post" itemscope itemprop="blogPost">
<div class="article-inner">
<header class="article-header">
<h1 itemprop="name">
<a class="article-title" href="/2019/04/20/2019-04-20-LearningToRank/">Learn to Rank 简介</a>
</h1>
<span class="header-cate">
<i class="fa fa-map-marker"></i>
<a href="/categories/MachineLearning/">Machine Learning</a>
</span>
</header>
<div class="article-entry " itemprop="articleBody">
<div class="article-img">
<a href="/2019/04/20/2019-04-20-LearningToRank/">
<img src="http://andersjing.com//images/posts/ubuntu.png" alt="Learn to Rank 简介" title="Learn to Rank 简介">
</a>
</div>
<div class="article-feed">
<p>
Learning to Rank (LTR)是指一系列基于机器学习的排序算法,最初主要应用于信息检索领域,最典型的是解决搜索引擎对搜索结果的排序问题。除了信息检索以外,Learning to Rank 也被应用到许多其他排序问题上,如商品推荐、计算广告、生物信息学等。目前主流的 Learning to Rank 在排序的过程中通过文档与文档之间的比较,在很多问题上比只基于...
</p>
</div>
</div>
<footer class="article-footer">
<ul class="article-footer-menu">
<li><i class="fa fa-calendar"></i>2019-04-20</li>
<li class="article-footer-tags">
<i class="fa fa-tags"></i>
<a href="/tags/Rank/" class="color5">Rank</a>
<a href="/tags/MachineLearning/" class="color2">Machine Learning</a>
</li>
</ul>
<a href="/2019/04/20/2019-04-20-LearningToRank/#more" class="article-more-link">more>></a>
</footer>
</div>
</article>
<article id="post-2018-11-30-anaconda" class="article article-type-post" itemscope itemprop="blogPost">
<div class="article-inner">
<header class="article-header">
<h1 itemprop="name">
<a class="article-title" href="/2018/11/30/2018-11-30-anaconda/">Anaconda 使用笔记</a>
</h1>
<span class="header-cate">
<i class="fa fa-map-marker"></i>
<a href="/categories/Python/">Python</a>
</span>
</header>
<div class="article-entry " itemprop="articleBody">
<div class="article-img">
<a href="/2018/11/30/2018-11-30-anaconda/">
<img src="http://andersjing.com//images/posts/ubuntu.png" alt="Anaconda 使用笔记" title="Anaconda 使用笔记">
</a>
</div>
<div class="article-feed">
<p>
Anaconda是可以便捷获取包且对包能够进行管理,同时对环境可以统一管理的发行版本。Anaconda包含了conda、Python在内的超过180个科学包及其依赖项。
总的来说,Anaconda是一个可以便捷地对各种包进行管理的工具,可以实现对包的安装和环境的管理,更详细的介绍见:Anaconda介绍、安装及使用教程
Anaconda是基于Pytho的,但是可以对多种语...
</p>
</div>
</div>
<footer class="article-footer">
<ul class="article-footer-menu">
<li><i class="fa fa-calendar"></i>2018-11-30</li>
<li class="article-footer-tags">
<i class="fa fa-tags"></i>
<a href="/tags/Anaconda/" class="color4">Anaconda</a>
<a href="/tags/Python/" class="color2">Python</a>
</li>
</ul>
<a href="/2018/11/30/2018-11-30-anaconda/#more" class="article-more-link">more>></a>
</footer>
</div>
</article>
<article id="post-2018-11-27-hexo-math" class="article article-type-post" itemscope itemprop="blogPost">
<div class="article-inner">
<header class="article-header">
<h1 itemprop="name">
<a class="article-title" href="/2018/11/27/2018-11-27-hexo-math/">Hexo 支持数学公式</a>
</h1>
<span class="header-cate">
<i class="fa fa-map-marker"></i>
<a href="/categories/hexo/">hexo</a>
</span>
</header>
<div class="article-entry " itemprop="articleBody">
<div class="article-img">
<a href="/2018/11/27/2018-11-27-hexo-math/">
<img src="http://andersjing.com/images/banner.jpg" alt="Hexo 支持数学公式" title="Hexo 支持数学公式">
</a>
</div>
<div class="article-feed">
<p>
Hexo支持Latex格式的数学公式需要做一些配置,因为环境不同,网上的很多教程无法生效,后来找到一个生效的方法,这里对其中的核心内容进行转载,原文见:如何在 hexo 中支持 Mathjax?
1. 使用Kramed代替 Marked12npm uninstall hexo-renderer-marked --savenpm install hexo-renderer-...
</p>
</div>
</div>
<footer class="article-footer">
<ul class="article-footer-menu">
<li><i class="fa fa-calendar"></i>2018-11-27</li>
<li class="article-footer-tags">
<i class="fa fa-tags"></i>
<a href="/tags/Hexo/" class="color5">Hexo</a>
<a href="/tags/math/" class="color5">math</a>
</li>
</ul>
<a href="/2018/11/27/2018-11-27-hexo-math/#more" class="article-more-link">more>></a>
</footer>
</div>
</article>
<article id="post-2018-11-25-sequence-alignment" class="article article-type-post" itemscope itemprop="blogPost">
<div class="article-inner">
<header class="article-header">
<h1 itemprop="name">
<a class="article-title" href="/2018/11/25/2018-11-25-sequence-alignment/">生物序列比对算法简述</a>
</h1>
<span class="header-cate">
<i class="fa fa-map-marker"></i>
<a href="/categories/Bioinformatics/">Bioinformatics</a>
</span>
</header>
<div class="article-entry " itemprop="articleBody">
<div class="article-img">
<a href="/2018/11/25/2018-11-25-sequence-alignment/">
<img src="http://andersjing.com//images/posts/6e7z_screenshot.png" alt="生物序列比对算法简述" title="生物序列比对算法简述">
</a>
</div>
<div class="article-feed">
<p>
在生物信息学研究中,序列比对是一个非常基础的问题,在很多研究中都会用到。本文对其中涉及到的全局比对(Needleman-Wunsch算法)、局部比对算法(Smith-Waterman 算法)、Blast、PSI-Blast、PSSM、HMM的原理进行总结和介绍。
Needleman-Wunsch算法——基于动态规划的序列全局比对Needleman-Wunsch算法是序列全...
</p>
</div>
</div>
<footer class="article-footer">
<ul class="article-footer-menu">
<li><i class="fa fa-calendar"></i>2018-11-25</li>
<li class="article-footer-tags">
<i class="fa fa-tags"></i>
<a href="/tags/Needleman-Wunsch/" class="color2">Needleman-Wunsch</a>
<a href="/tags/Smith-Waterman/" class="color5">Smith-Waterman</a>
<a href="/tags/Blast/" class="color1">Blast</a>
<a href="/tags/PSI-Blast/" class="color5">PSI-Blast</a>
<a href="/tags/PSSM/" class="color5">PSSM</a>
<a href="/tags/HMM/" class="color4">HMM</a>
</li>
</ul>
<a href="/2018/11/25/2018-11-25-sequence-alignment/#more" class="article-more-link">more>></a>
</footer>
</div>
</article>
<article id="post-linux-common-commands-tools" class="article article-type-post" itemscope itemprop="blogPost">
<div class="article-inner">
<header class="article-header">
<h1 itemprop="name">
<a class="article-title" href="/2018/07/28/linux-common-commands-tools/">Linux 常用工具和命令总结</a>
</h1>
<span class="header-cate">
<i class="fa fa-map-marker"></i>
<a href="/categories/linux/">linux</a>
</span>
</header>
<div class="article-entry " itemprop="articleBody">
<div class="article-img">
<a href="/2018/07/28/linux-common-commands-tools/">
<img src="http://andersjing.com//images/posts/ubuntu.png" alt="Linux 常用工具和命令总结" title="Linux 常用工具和命令总结">
</a>
</div>
<div class="article-feed">
<p>
前言Linux日常操作中经常会用到一些工具和命令,这里对一些进行总结。
文件和文件夹大小以/home/目录为例:1du -h /home/* --max-depth=0
—max-depth参数可以指定查看的深度,0为当前目录,1为当前目录及下一级目录,剩下依次类推。
统计目录下文件数目利用 ls1ls | wc -l
在这个基础上, 可以衍生出:
统计文件或文件夹文件:...
</p>
</div>
</div>
<footer class="article-footer">
<ul class="article-footer-menu">
<li><i class="fa fa-calendar"></i>2018-07-28</li>
<li class="article-footer-tags">
<i class="fa fa-tags"></i>
<a href="/tags/linux/" class="color1">linux</a>
</li>
</ul>
<a href="/2018/07/28/linux-common-commands-tools/#more" class="article-more-link">more>></a>
</footer>
</div>
</article>
<article id="post-mac-zsh" class="article article-type-post" itemscope itemprop="blogPost">
<div class="article-inner">
<header class="article-header">
<h1 itemprop="name">
<a class="article-title" href="/2018/07/27/mac-zsh/">Mac zsh 安装简介</a>
</h1>
<span class="header-cate">
<i class="fa fa-map-marker"></i>
<a href="/categories/uncategorized/">uncategorized</a>
</span>
</header>
<div class="article-entry " itemprop="articleBody">
<div class="article-img">
<a href="/2018/07/27/mac-zsh/">
<img src="http://andersjing.com//images/banner.jpg" alt="Mac zsh 安装简介" title="Mac zsh 安装简介">
</a>
</div>
<div class="article-feed">
<p>
前言Mac 下默认的终端界面比较简单,并且不支持自动补全功能,用起来不太方便。可以安装 zsh 取代原有的终端界面,获得丰富的显示效果和功能。
本文提供一个基本的安装和主题配置简介,更进一步的配置请参考其他相关文章。
安装 Oh My Zsh在默认终端中使用如下命令来安装:
1curl -L https://raw.github.com/robbyrussell/oh-m...
</p>
</div>
</div>
<footer class="article-footer">
<ul class="article-footer-menu">
<li><i class="fa fa-calendar"></i>2018-07-27</li>
<li class="article-footer-tags">
<i class="fa fa-tags"></i>
<a href="/tags/mac/" class="color4">mac</a>
<a href="/tags/ohmyzsh/" class="color5">oh my zsh</a>
</li>
</ul>
<a href="/2018/07/27/mac-zsh/#more" class="article-more-link">more>></a>
</footer>
</div>
</article>
<article id="post-ssh-nopass-login" class="article article-type-post" itemscope itemprop="blogPost">
<div class="article-inner">
<header class="article-header">
<h1 itemprop="name">
<a class="article-title" href="/2018/07/26/ssh-nopass-login/">Linux 主机之间 ssh 免密码登录</a>
</h1>
<span class="header-cate">
<i class="fa fa-map-marker"></i>
<a href="/categories/uncategorized/">uncategorized</a>
</span>
</header>
<div class="article-entry " itemprop="articleBody">
<div class="article-img">
<a href="/2018/07/26/ssh-nopass-login/">
<img src="http://andersjing.com//images/banner.jpg" alt="Linux 主机之间 ssh 免密码登录" title="Linux 主机之间 ssh 免密码登录">
</a>
</div>
<div class="article-feed">
<p>
前言对于经常需要互联或者传送文件的Linux主机,可以配置ssh免密码登录。
以 192.168.0.1 和 192.168.0.2 下的root用户为例。
生成ssh-key在两台机器上,使用root或者对应用户下执行ssh-keygen生成本机针对当前用户的ssh-key:
1ssh-keygen -t rsa
一路默认即可。
此时在当前用户下的~/.ssh/文件夹中...
</p>
</div>
</div>
<footer class="article-footer">
<ul class="article-footer-menu">
<li><i class="fa fa-calendar"></i>2018-07-26</li>
<li class="article-footer-tags">
<i class="fa fa-tags"></i>
<a href="/tags/linux/" class="color1">linux</a>
<a href="/tags/ssh/" class="color4">ssh</a>
</li>
</ul>
<a href="/2018/07/26/ssh-nopass-login/#more" class="article-more-link">more>></a>
</footer>
</div>
</article>
<article id="post-tensorflow-gpu" class="article article-type-post" itemscope itemprop="blogPost">
<div class="article-inner">
<header class="article-header">
<h1 itemprop="name">
<a class="article-title" href="/2018/07/25/tensorflow-gpu/">Ubuntu 16.04 下 TensorFlow-gpu 环境配置与安装</a>
</h1>
<span class="header-cate">
<i class="fa fa-map-marker"></i>
<a href="/categories/deeplearning/">deep learning</a>
</span>
</header>
<div class="article-entry " itemprop="articleBody">
<div class="article-img">
<a href="/2018/07/25/tensorflow-gpu/">
<img src="http://andersjing.com//images/banner.jpg" alt="Ubuntu 16.04 下 TensorFlow-gpu 环境配置与安装" title="Ubuntu 16.04 下 TensorFlow-gpu 环境配置与安装">
</a>
</div>
<div class="article-feed">
<p>
前言跑深度学习的任务,在GPU下明显会比CPU下加速很多,本文对Ubuntu下 TensorFlow-gpu 运行环境的安装进行介绍。
环境介绍操作系统:Ubuntu 16.04CPU: Intel(R) Core(TM) i7-8700 CPU @ 3.20GHzGPU:NVIDIA GeForce GTX 1070显卡驱动版本: 384.111CUDA 版本:9.0c...
</p>
</div>
</div>
<footer class="article-footer">
<ul class="article-footer-menu">
<li><i class="fa fa-calendar"></i>2018-07-25</li>
<li class="article-footer-tags">
<i class="fa fa-tags"></i>
<a href="/tags/tensorflow/" class="color1">tensorflow</a>
<a href="/tags/cuda/" class="color5">cuda</a>
<a href="/tags/GPU/" class="color4">GPU</a>
</li>
</ul>
<a href="/2018/07/25/tensorflow-gpu/#more" class="article-more-link">more>></a>
</footer>
</div>
</article>
<article id="post-AngularJS" class="article article-type-post" itemscope itemprop="blogPost">
<div class="article-inner">
<header class="article-header">
<h1 itemprop="name">
<a class="article-title" href="/2018/07/06/AngularJS/">Angular 之顶层理解</a>
</h1>
<span class="header-cate">
<i class="fa fa-map-marker"></i>
<a href="/categories/前端/">前端</a>
</span>
</header>
<div class="article-entry " itemprop="articleBody">
<div class="article-img">
<a href="/2018/07/06/AngularJS/">
<img src="http://andersjing.com//images/web.jpg" alt="Angular 之顶层理解" title="Angular 之顶层理解">
</a>
</div>
<div class="article-feed">
<p>
前言个人认为自顶而下学习各种开发知识有事半功倍的效果。第一步,理解目标知识的核心思想和概念,形成整体的认识,知道其出现的背景和采用的解决方案;第二步,学习相关基础语法;第三步,结合使用手册进行实际项目开发,同时不断体会其核心思想,基本就可以把该技术转化为自己的知识。
目前关于 Angular 的教程各种各样,本文是学习 Angular 过程中的个人对其核心思想和概念的理解...
</p>
</div>
</div>
<footer class="article-footer">
<ul class="article-footer-menu">
<li><i class="fa fa-calendar"></i>2018-07-06</li>
<li class="article-footer-tags">
<i class="fa fa-tags"></i>
<a href="/tags/Angular/" class="color3">Angular</a>
<a href="/tags/web开发/" class="color1">web开发</a>
</li>
</ul>
<a href="/2018/07/06/AngularJS/#more" class="article-more-link">more>></a>
</footer>
</div>
</article>
<article id="post-hexo-basic-usage" class="article article-type-post" itemscope itemprop="blogPost">
<div class="article-inner">
<header class="article-header">
<h1 itemprop="name">
<a class="article-title" href="/2018/06/30/hexo-basic-usage/">Hexo基本用法</a>
</h1>
<span class="header-cate">
<i class="fa fa-map-marker"></i>
<a href="/categories/hexo/">hexo</a>
</span>
</header>
<div class="article-entry " itemprop="articleBody">
<div class="article-img">
<a href="/2018/06/30/hexo-basic-usage/">
<img src="http://andersjing.com//images/posts/hexo.png" alt="Hexo基本用法" title="Hexo基本用法">
</a>
</div>
<div class="article-feed">
<p>
什么是 Hexo?Hexo 是一个快速、简洁且高效的博客框架。Hexo 使用 Markdown(或其他渲染引擎)解析文章,在几秒内,即可利用靓丽的主题生成静态网页。
安装前提安装 Hexo 相当简单。然而在安装前,您必须检查电脑中是否已安装下列应用程序:
Node.js
Git
如果您的电脑中已经安装上述必备程序,那么恭喜您!接下来只需要使用 npm 即可完成 Hex...
</p>
</div>
</div>
<footer class="article-footer">
<ul class="article-footer-menu">
<li><i class="fa fa-calendar"></i>2018-06-30</li>
<li class="article-footer-tags">
<i class="fa fa-tags"></i>
<a href="/tags/Hexo/" class="color5">Hexo</a>
</li>
</ul>
<a href="/2018/06/30/hexo-basic-usage/#more" class="article-more-link">more>></a>
</footer>
</div>
</article>
<article id="post-hexo-theme" class="article article-type-post" itemscope itemprop="blogPost">
<div class="article-inner">
<header class="article-header">
<h1 itemprop="name">
<a class="article-title" href="/2018/06/30/hexo-theme/">Hexo主题同步</a>
</h1>
<span class="header-cate">
<i class="fa fa-map-marker"></i>
<a href="/categories/hexo/">hexo</a>
</span>
</header>
<div class="article-entry " itemprop="articleBody">
<div class="article-img">
<a href="/2018/06/30/hexo-theme/">
<img src="http://andersjing.com//images/posts/hexo.png" alt="Hexo主题同步" title="Hexo主题同步">
</a>
</div>
<div class="article-feed">
<p>
问题为了方便维护 gitpages 项目,我们可以把整个 gitpages 项目作为一个git项目管理,而 Hexo 主题一般也都是用 git 项目进行管理,我们从远程 git 仓库 clone 一份下来,放到 themes/ 文件夹下。每个主题是一个包含 .git/ 的子项目仓库。所以在 push 主项目的时候不会上传子项目。
解决采用用 fork + subtree ...
</p>
</div>
</div>
<footer class="article-footer">
<ul class="article-footer-menu">
<li><i class="fa fa-calendar"></i>2018-06-30</li>
<li class="article-footer-tags">
<i class="fa fa-tags"></i>
<a href="/tags/Hexo/" class="color5">Hexo</a>
<a href="/tags/git/" class="color4">git</a>
</li>
</ul>
<a href="/2018/06/30/hexo-theme/#more" class="article-more-link">more>></a>
</footer>
</div>
</article>
<article id="post-hello-world" class="article article-type-post" itemscope itemprop="blogPost">
<div class="article-inner">
<header class="article-header">
<h1 itemprop="name">
<a class="article-title" href="/2018/06/30/hello-world/">Hello World</a>
</h1>
<span class="header-cate">
<i class="fa fa-map-marker"></i>
<a href="/categories/hexo/">hexo</a>
</span>
</header>
<div class="article-entry " itemprop="articleBody">
<div class="article-img">
<a href="/2018/06/30/hello-world/">
<img src="http://andersjing.com/images/banner.jpg" alt="Hello World" title="Hello World">
</a>
</div>
<div class="article-feed">
<p>
Welcome to Hexo! This is your very first post. Check documentation for more info. If you get any problems when using Hexo, you can find the answer in troubleshooting or you can ask me on ...
</p>
</div>
</div>
<footer class="article-footer">
<ul class="article-footer-menu">
<li><i class="fa fa-calendar"></i>2018-06-30</li>
<li class="article-footer-tags">
<i class="fa fa-tags"></i>
<a href="/tags/Hexo/" class="color5">Hexo</a>
</li>
</ul>
<a href="/2018/06/30/hello-world/#more" class="article-more-link">more>></a>
</footer>
</div>
</article>
<article id="post-2018-01-13-Centos_6.5_glibc" class="article article-type-post" itemscope itemprop="blogPost">
<div class="article-inner">
<header class="article-header">
<h1 itemprop="name">
<a class="article-title" href="/2018/01/13/2018-01-13-Centos_6.5_glibc/">Centos 6.5 升级 glibc</a>
</h1>
<span class="header-cate">
<i class="fa fa-map-marker"></i>
<a href="/categories/Linux/">Linux</a>
</span>
</header>
<div class="article-entry " itemprop="articleBody">
<div class="article-img">
<a href="/2018/01/13/2018-01-13-Centos_6.5_glibc/">
<img src="http://andersjing.com//images/posts/ubuntu.png" alt="Centos 6.5 升级 glibc" title="Centos 6.5 升级 glibc">
</a>
</div>
<div class="article-feed">
<p>
Centos 6.5 的glibc默认为2.12版本,而TensorFlow等程序的运行要求2.14或者更高版本,因此需要对系统的glibc进行升级。
一般的报错为:libc.so.6: version GLIBC_2.14 not found。
注意:glibc为很多功能的依赖库,更新存在风险, 需要小心操作。
查看当前glibc版本可使用如下命令查看系统glibc库版...
</p>
</div>
</div>
<footer class="article-footer">
<ul class="article-footer-menu">
<li><i class="fa fa-calendar"></i>2018-01-13</li>
<li class="article-footer-tags">
<i class="fa fa-tags"></i>
<a href="/tags/centos/" class="color2">centos</a>
<a href="/tags/glibc/" class="color1">glibc</a>
<a href="/tags/tensorflow/" class="color1">tensorflow</a>
</li>
</ul>
<a href="/2018/01/13/2018-01-13-Centos_6.5_glibc/#more" class="article-more-link">more>></a>
</footer>
</div>
</article>
<article id="post-2018-01-11-Centos_6.5_python3" class="article article-type-post" itemscope itemprop="blogPost">
<div class="article-inner">
<header class="article-header">
<h1 itemprop="name">
<a class="article-title" href="/2018/01/11/2018-01-11-Centos_6.5_python3/">Centos 6.5 安装python 3</a>
</h1>
<span class="header-cate">
<i class="fa fa-map-marker"></i>
<a href="/categories/Python/">Python</a>
</span>
</header>
<div class="article-entry " itemprop="articleBody">
<div class="article-img">
<a href="/2018/01/11/2018-01-11-Centos_6.5_python3/">