-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathindex.html
2979 lines (1416 loc) · 115 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 class="theme-next pisces use-motion">
<head>
<meta charset="UTF-8"/>
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1" />
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1"/>
<meta http-equiv="Cache-Control" content="no-transform" />
<meta http-equiv="Cache-Control" content="no-siteapp" />
<link href="/vendors/fancybox/source/jquery.fancybox.css?v=2.1.5" rel="stylesheet" type="text/css" />
<link href="//fonts.googleapis.com/css?family=Lato:300,300italic,400,400italic,700,700italic&subset=latin,latin-ext" rel="stylesheet" type="text/css">
<link href="/vendors/font-awesome/css/font-awesome.min.css?v=4.4.0" rel="stylesheet" type="text/css" />
<link href="/css/main.css?v=5.0.2" rel="stylesheet" type="text/css" />
<meta name="keywords" content="前端开发者说" />
<link rel="alternate" href="/atom.xml" title="前端开发者说" type="application/atom+xml" />
<link rel="shortcut icon" type="image/x-icon" href="/favicon.ico?v=5.0.2" />
<meta name="description" content="前端路漫漫兮,吾将上下而求索">
<meta property="og:type" content="website">
<meta property="og:title" content="前端开发者说">
<meta property="og:url" content="http://huixisheng.github.io/index.html">
<meta property="og:site_name" content="前端开发者说">
<meta property="og:description" content="前端路漫漫兮,吾将上下而求索">
<meta property="og:locale" content="zh-Hans">
<meta name="twitter:card" content="summary">
<meta name="twitter:title" content="前端开发者说">
<meta name="twitter:description" content="前端路漫漫兮,吾将上下而求索">
<script type="text/javascript" id="hexo.configuration">
var NexT = window.NexT || {};
var CONFIG = {
scheme: 'Pisces',
sidebar: {"position":"left","display":"post"},
fancybox: true,
motion: true,
duoshuo: {
userId: '9599',
author: '悔惜晟'
}
};
</script>
<link rel="canonical" href="http://huixisheng.github.io/"/>
<title> 前端开发者说 </title>
</head>
<body itemscope itemtype="//schema.org/WebPage" lang="zh-Hans">
<div class="container one-collumn sidebar-position-left
page-home
">
<div class="headband"></div>
<header id="header" class="header" itemscope itemtype="//schema.org/WPHeader">
<div class="header-inner"><div class="site-meta ">
<div class="custom-logo-site-title">
<a href="/" class="brand" rel="start">
<span class="logo-line-before"><i></i></span>
<span class="site-title">前端开发者说</span>
<span class="logo-line-after"><i></i></span>
</a>
</div>
<p class="site-subtitle">记录开发的故事</p>
</div>
<div class="site-nav-toggle">
<button>
<span class="btn-bar"></span>
<span class="btn-bar"></span>
<span class="btn-bar"></span>
</button>
</div>
<nav class="site-nav">
<ul id="menu" class="menu">
<li class="menu-item menu-item-home">
<a href="/" rel="section">
首页
</a>
</li>
<li class="menu-item menu-item-archives">
<a href="/archives" rel="section">
归档
</a>
</li>
<li class="menu-item menu-item-tags">
<a href="/tags" rel="section">
标签
</a>
</li>
<li class="menu-item menu-item-search">
<a href="javascript:;" class="popup-trigger">
搜索
</a>
</li>
</ul>
<div class="site-search">
<div class="popup">
<span class="search-icon fa fa-search"></span>
<input type="text" id="local-search-input">
<div id="local-search-result"></div>
<span class="popup-btn-close">close</span>
</div>
</div>
</nav>
</div>
</header>
<main id="main" class="main">
<div class="main-inner">
<div class="content-wrap">
<div id="content" class="content">
<section id="posts" class="posts-expand">
<article class="post post-type-normal " itemscope itemtype="//schema.org/Article">
<header class="post-header">
<h1 class="post-title" itemprop="name headline">
<a class="post-title-link" href="/git-init-commit-log/" itemprop="url">
清空 git 的 commit 记录
</a>
</h1>
<div class="post-meta">
<span class="post-time">
<span class="post-meta-item-icon">
<i class="fa fa-calendar-o"></i>
</span>
<span class="post-meta-item-text">发表于</span>
<time itemprop="dateCreated" datetime="2019-03-03T00:29:23+08:00" content="2019-03-03">
2019-03-03
</time>
</span>
<span class="post-comments-count">
|
<a href="/git-init-commit-log/#comments" itemprop="discussionUrl">
<span class="post-comments-count disqus-comment-count" data-disqus-identifier="git-init-commit-log/" itemprop="commentsCount"></span>
</a>
</span>
</div>
</header>
<div class="post-body" itemprop="articleBody">
<p>有时候 git 提交不该提交的内容或者有些 log 过于多余,在我的博客提交记录含有草稿文件,先抹去这些提交记录。本文介绍如何初始化 git commit log。</p>
<p>是不是很干净呢?<br><img src="/images/git/git-commit-init.jpg" alt=""></p>
<figure class="highlight bash"><table><tr><td class="gutter"><pre><span class="line">1</span><br><span class="line">2</span><br><span class="line">3</span><br><span class="line">4</span><br><span class="line">5</span><br><span class="line">6</span><br><span class="line">7</span><br><span class="line">8</span><br><span class="line">9</span><br><span class="line">10</span><br><span class="line">11</span><br><span class="line">12</span><br><span class="line">13</span><br><span class="line">14</span><br><span class="line">15</span><br><span class="line">16</span><br></pre></td><td class="code"><pre><span class="line">$ git checkout --orphan empty-branch</span><br><span class="line">$ git branch</span><br><span class="line">$ git status</span><br><span class="line">$ git rm --cached -rf themes</span><br><span class="line">$ git diff</span><br><span class="line">$ git add .</span><br><span class="line">$ git commit -n -m <span class="string">'init git log'</span></span><br><span class="line">$ git checkout dev</span><br><span class="line">$ git checkout -b dev-bak</span><br><span class="line">$ git checkout empty-branch</span><br><span class="line">$ git status</span><br><span class="line">$ git branch -D dev</span><br><span class="line"><span class="comment"># 重命名分支</span></span><br><span class="line">$ git branch -m dev</span><br><span class="line">$ git <span class="built_in">log</span></span><br><span class="line">$ git push -f origin dev</span><br></pre></td></tr></table></figure>
<h2 id="Sublime-的列选择"><a href="#Sublime-的列选择" class="headerlink" title="Sublime 的列选择"></a>Sublime 的列选择</h2><p>以上内容来自 history,那么多行进行多行编辑呢?<br><code>Ctrl + Shift + Up</code>。当然相同内容可以使用 <code>Command + D</code></p>
<p>更多内容可以点击<a href="https://feliving.github.io/Sublime-Text-3-Documentation/column_selection.html" target="_blank" rel="noopener">列选择 - Sublime Text 3 文档</a></p>
<h2 id="VSCode-的列选择"><a href="#VSCode-的列选择" class="headerlink" title="VSCode 的列选择"></a>VSCode 的列选择</h2><p>option + 鼠标点选</p>
<p>option + shift + 鼠标拖动</p>
<p>同时也可以设置快捷键同 Sublime</p>
<p>更多内容可以点击<a href="https://www.zhihu.com/question/36723216" target="_blank" rel="noopener">怎样在 VSCode 中进行列选择? - 知乎</a></p>
</div>
<div>
</div>
<div>
</div>
<footer class="post-footer">
<div class="post-eof"></div>
</footer>
</article>
<article class="post post-type-normal " itemscope itemtype="//schema.org/Article">
<header class="post-header">
<h1 class="post-title" itemprop="name headline">
<a class="post-title-link" href="/centos-update-nodejs/" itemprop="url">
centos如何升级nodejs
</a>
</h1>
<div class="post-meta">
<span class="post-time">
<span class="post-meta-item-icon">
<i class="fa fa-calendar-o"></i>
</span>
<span class="post-meta-item-text">发表于</span>
<time itemprop="dateCreated" datetime="2018-07-08T23:53:33+08:00" content="2018-07-08">
2018-07-08
</time>
</span>
<span class="post-comments-count">
|
<a href="/centos-update-nodejs/#comments" itemprop="discussionUrl">
<span class="post-comments-count disqus-comment-count" data-disqus-identifier="centos-update-nodejs/" itemprop="commentsCount"></span>
</a>
</span>
</div>
</header>
<div class="post-body" itemprop="articleBody">
<h2 id="更新日志"><a href="#更新日志" class="headerlink" title="更新日志"></a>更新日志</h2><p>curl –silent –location <a href="https://rpm.nodesource.com/setup_8.x" target="_blank" rel="noopener">https://rpm.nodesource.com/setup_8.x</a> | sudo bash -<br>yum -y install nodejs<br>记得删除老版本的npm node<br>rm /usr/local/bin/npm</p>
<p>yum remove nodesource-release<em> nodejs<br>yum clean all<br>rm -rf /var/cache/yum/</em><br>rm /etc/yum.repos.d/nodesource-el.repo<br>yum -y remove nodejs</p>
<h2 id="参考"><a href="#参考" class="headerlink" title="参考"></a>参考</h2>
</div>
<div>
</div>
<div>
</div>
<footer class="post-footer">
<div class="post-eof"></div>
</footer>
</article>
<article class="post post-type-normal " itemscope itemtype="//schema.org/Article">
<header class="post-header">
<h1 class="post-title" itemprop="name headline">
<a class="post-title-link" href="/node-process-env/" itemprop="url">
node如何设置process.env
</a>
</h1>
<div class="post-meta">
<span class="post-time">
<span class="post-meta-item-icon">
<i class="fa fa-calendar-o"></i>
</span>
<span class="post-meta-item-text">发表于</span>
<time itemprop="dateCreated" datetime="2018-07-08T23:40:59+08:00" content="2018-07-08">
2018-07-08
</time>
</span>
<span class="post-comments-count">
|
<a href="/node-process-env/#comments" itemprop="discussionUrl">
<span class="post-comments-count disqus-comment-count" data-disqus-identifier="node-process-env/" itemprop="commentsCount"></span>
</a>
</span>
</div>
</header>
<div class="post-body" itemprop="articleBody">
<p>在使用<a href="https://www.npmjs.com/package/debug" target="_blank" rel="noopener">debug</a>需要设置<code>$env:DEBUG = "*,-not_this"</code>执行相应的环境。</p>
<p><code>echo $DEBUG</code>输出相应的环境配置。Mac下是可以使用<code>DEBUG="*" node bin/before-parse.js</code>。</p>
<p><a href="https://github.com/visionmedia/debug/blob/master/src/node.js" target="_blank" rel="noopener">https://github.com/visionmedia/debug/blob/master/src/node.js</a></p>
<p>“dev-mac”: “ export NODE_ENV=development&& nodemon –harmony –use_strict index.js -w “,<br>“dev-win”: “ set NODE_ENV=development&& nodemon –harmony –use_strict index.js -w “,</p>
<p>windows 不太清楚,*NIX 系统下规则如下:<br>export NODE_ENV=production && node xxx.js 这样在当前命令行下后续的命令中读取 NODE_ENV,都会得到 production 值;<br>如果直接使用 NODE_ENV=production node xxx.js,则 NODE_ENV 的有效性仅限当前命令,不会对后续命令有影响。</p>
<p>可以使用<a href="https://www.npmjs.com/package/cross-env" target="_blank" rel="noopener"><code>cross-env</code></a></p>
<ul>
<li><a href="http://sorex.cnblogs.com/p/6200940.html" target="_blank" rel="noopener">http://sorex.cnblogs.com/p/6200940.html</a></li>
<li><a href="http://yijiebuyi.com/blog/1bfcf43248a873b39a3471901e764b68.html" target="_blank" rel="noopener">http://yijiebuyi.com/blog/1bfcf43248a873b39a3471901e764b68.html</a></li>
</ul>
</div>
<div>
</div>
<div>
</div>
<footer class="post-footer">
<div class="post-eof"></div>
</footer>
</article>
<article class="post post-type-normal " itemscope itemtype="//schema.org/Article">
<header class="post-header">
<h1 class="post-title" itemprop="name headline">
<a class="post-title-link" href="/docker-start/" itemprop="url">
docker-start
</a>
</h1>
<div class="post-meta">
<span class="post-time">
<span class="post-meta-item-icon">
<i class="fa fa-calendar-o"></i>
</span>
<span class="post-meta-item-text">发表于</span>
<time itemprop="dateCreated" datetime="2018-06-24T12:30:28+08:00" content="2018-06-24">
2018-06-24
</time>
</span>
<span class="post-comments-count">
|
<a href="/docker-start/#comments" itemprop="discussionUrl">
<span class="post-comments-count disqus-comment-count" data-disqus-identifier="docker-start/" itemprop="commentsCount"></span>
</a>
</span>
</div>
</header>
<div class="post-body" itemprop="articleBody">
<p>给一个正在运行的Docker容器动态添加Volume <a href="http://dockone.io/article/149" target="_blank" rel="noopener">http://dockone.io/article/149</a><br><a href="https://blog.csdn.net/dream_broken/article/details/52314993" target="_blank" rel="noopener">https://blog.csdn.net/dream_broken/article/details/52314993</a><br><a href="https://deepzz.com/post/the-docker-volumes-basic.html" target="_blank" rel="noopener">https://deepzz.com/post/the-docker-volumes-basic.html</a></p>
<p>docker machine 静态ip</p>
<ul>
<li><a href="https://github.com/fivestars/docker-machine-ipconfig" target="_blank" rel="noopener">https://github.com/fivestars/docker-machine-ipconfig</a></li>
</ul>
<p>docke固定ip <a href="https://github.com/johnnian/Blog/issues/16" target="_blank" rel="noopener">https://github.com/johnnian/Blog/issues/16</a></p>
<p>docker run -itd –network bridge –ip 192.168.3.88 springjk/webdev /bin/bash</p>
<p>docker run -itd –network host –ip 192.168.3.88 springjk/webdev /bin/bash</p>
<p>docker: Error response from daemon: user specified IP address is supported on user defined networks only.</p>
<p>larvel 环境</p>
<p>ssh登录 <code>docker exec -it de1aeb89e0f5 /bin/bash</code><br><a href="https://blog.csdn.net/qq_34021712/article/details/73379851" target="_blank" rel="noopener">https://blog.csdn.net/qq_34021712/article/details/73379851</a></p>
<p>docker镜像位置:</p>
<p>For someone who is using Docker toolbox (that uses docker-machine), the answers concerning boot2docker on Mac OS X is not valid. The docker-machine VM is called “default” and it exists in the /Users/<username>/.docker/machine/machines/default/ directory.</username></p>
<p>docker image是什么,存储在什么位置</p>
<p>ps -u $USER | grep Docker<br>docker镜像地址 /Users/{YourUserName}/Library/Containers/com.docker.docker/Data</p>
<p>下载地址: <a href="https://www.docker.com/community-edition#/download" target="_blank" rel="noopener">https://www.docker.com/community-edition#/download</a><br><a href="https://github.com/docker/kitematic/releases" target="_blank" rel="noopener">https://github.com/docker/kitematic/releases</a></p>
<p>rsync</p>
<p><a href="https://github.com/yeasy/docker_practice/blob/master/appendix/faq/README.md" target="_blank" rel="noopener">常见问题</a></p>
<h2 id="更新日志"><a href="#更新日志" class="headerlink" title="更新日志"></a>更新日志</h2><h2 id="参考"><a href="#参考" class="headerlink" title="参考"></a>参考</h2>
</div>
<div>
</div>
<div>
</div>
<footer class="post-footer">
<div class="post-eof"></div>
</footer>
</article>
<article class="post post-type-normal " itemscope itemtype="//schema.org/Article">
<header class="post-header">
<h1 class="post-title" itemprop="name headline">
<a class="post-title-link" href="/terminal-proxy-ladder/" itemprop="url">
Mac配置终端梯子
</a>
</h1>
<div class="post-meta">
<span class="post-time">
<span class="post-meta-item-icon">
<i class="fa fa-calendar-o"></i>
</span>
<span class="post-meta-item-text">发表于</span>
<time itemprop="dateCreated" datetime="2018-06-23T19:57:53+08:00" content="2018-06-23">
2018-06-23
</time>
</span>
<span class="post-comments-count">
|
<a href="/terminal-proxy-ladder/#comments" itemprop="discussionUrl">
<span class="post-comments-count disqus-comment-count" data-disqus-identifier="terminal-proxy-ladder/" itemprop="commentsCount"></span>
</a>
</span>
</div>
</header>
<div class="post-body" itemprop="articleBody">
<p>最初的起因是由于<a href="https://gist.github.com/" target="_blank" rel="noopener">https://gist.github.com/</a>作为submodule的时候无法更新,于是想到终端配置访问该网站。最初以为<code>ShadowsocksX-NG</code>配置全局代理就可以,然后并无软用。</p>
<p>首先你得有相关的ss账号,可以自己部署,也可以购买相关的服务。</p>
<h2 id="ss服务"><a href="#ss服务" class="headerlink" title="ss服务"></a>ss服务</h2><figure class="highlight shell"><table><tr><td class="gutter"><pre><span class="line">1</span><br></pre></td><td class="code"><pre><span class="line"><span class="meta">$</span><span class="bash"> sublime ~/.zshrc</span></span><br></pre></td></tr></table></figure>
<p>相关的配置信息可以从这里获取</p>
<p><img src="/images/proxy/ShadowsocksX-NG-config.jpeg" alt=""></p>
<p>方法1:</p>
<figure class="highlight plain"><table><tr><td class="gutter"><pre><span class="line">1</span><br><span class="line">2</span><br></pre></td><td class="code"><pre><span class="line">export http_proxy=http://127.0.0.1:1087</span><br><span class="line">export https_proxy=http://127.0.0.1:1087</span><br></pre></td></tr></table></figure>
<p>方法2:</p>
<figure class="highlight plain"><table><tr><td class="gutter"><pre><span class="line">1</span><br></pre></td><td class="code"><pre><span class="line">export ALL_PROXY=socks5://127.0.0.1:1086</span><br></pre></td></tr></table></figure>
<figure class="highlight shell"><table><tr><td class="gutter"><pre><span class="line">1</span><br><span class="line">2</span><br></pre></td><td class="code"><pre><span class="line"><span class="meta">$</span><span class="bash"> <span class="built_in">source</span> ~/.zshrc</span></span><br><span class="line"><span class="meta">$</span><span class="bash"> curl www.google.com</span></span><br></pre></td></tr></table></figure>
<p>另外推荐<a href="https://httpie.org/" target="_blank" rel="noopener"><code>httpie</code></a>。在终端使用http命令,调试api接口</p>
<blockquote>
<p>HTTPie—aitch-tee-tee-pie—is a command line HTTP client with an intuitive UI, JSON support, syntax highlighting, wget-like downloads, plugins, and more.</p>
</blockquote>
<figure class="highlight plain"><table><tr><td class="gutter"><pre><span class="line">1</span><br></pre></td><td class="code"><pre><span class="line">$ brew install httpie</span><br></pre></td></tr></table></figure>
<h2 id="ss服务推荐"><a href="#ss服务推荐" class="headerlink" title="ss服务推荐"></a>ss服务推荐</h2><ul>
<li>吾皇 <a href="http://kingfast.club/index.php/index/register/?yqi=6711" target="_blank" rel="noopener">http://kingfast.club/index.php/index/register/?yqi=6711</a> 可按月按年按流量付费,价格实惠,就光查阅资料够用</li>
<li><a href="https://www.vultr.com/?ref=7872193-4F" target="_blank" rel="noopener">https://www.vultr.com/?ref=7872193-4F</a> 需要自己搭建。参考教程<a href="https://github.com/Alvin9999/new-pac/wiki/%E8%87%AA%E5%BB%BAss%E6%9C%8D%E5%8A%A1%E5%99%A8%E6%95%99%E7%A8%8B" target="_blank" rel="noopener">自建ss服务器教程 · Alvin9999/new-pac Wiki</a> <a href="https://www.diycode.cc/topics/738?from=groupmessage&isappinstalled=0" target="_blank" rel="noopener">轻松在 VPS 搭建 Shadowsocks 翻墙 ($5/月 支付宝) - DiyCode</a></li>
<li>linode</li>
<li><a href="https://www.yunti.website/" target="_blank" rel="noopener">https://www.yunti.website/</a></li>
<li><a href="https://pandafan.im/" target="_blank" rel="noopener">https://pandafan.im/</a> 同事用过</li>
<li><a href="https://duotai.love/" target="_blank" rel="noopener">多态</a> 体验过一个月,有多终端App</li>
<li><a href="https://monocloud.me/" target="_blank" rel="noopener">https://monocloud.me/</a> 借同事的账号用过,速度还不错</li>
<li>~鱼摆摆~</li>
</ul>
<h3 id="相关教程"><a href="#相关教程" class="headerlink" title="相关教程"></a>相关教程</h3><ul>
<li><a href="https://github.com/Alvin9999/new-pac/wiki/自建ss服务器教程" target="_blank" rel="noopener">https://github.com/Alvin9999/new-pac/wiki/自建ss服务器教程</a></li>
<li><a href="https://www.diycode.cc/topics/738?from=groupmessage&isappinstalled=0" target="_blank" rel="noopener">https://www.diycode.cc/topics/738?from=groupmessage&isappinstalled=0</a></li>
</ul>
<h2 id="客户端"><a href="#客户端" class="headerlink" title="客户端"></a>客户端</h2><ul>
<li>wingy</li>
<li>GoAgentX</li>
<li>ShadowsocksX / ShadowsocksX-NG-R8</li>
</ul>
<h2 id="其他相关的软件"><a href="#其他相关的软件" class="headerlink" title="其他相关的软件"></a>其他相关的软件</h2><blockquote>
<p>以下并未实践过,看到关键词做个简单的记录</p>
</blockquote>
<ul>
<li>Proxifier</li>
<li>privoxy <a href="http://blog.devtang.com/2012/12/08/use-privoxy/" target="_blank" rel="noopener">http://blog.devtang.com/2012/12/08/use-privoxy/</a></li>
<li>proxychains-ng</li>
</ul>
</div>
<div>
</div>
<div>
</div>
<footer class="post-footer">
<div class="post-eof"></div>
</footer>
</article>
<article class="post post-type-normal " itemscope itemtype="//schema.org/Article">
<header class="post-header">
<h1 class="post-title" itemprop="name headline">
<a class="post-title-link" href="/wepy-summary/" itemprop="url">
使用wepy开发小程序总结
</a>
</h1>
<div class="post-meta">
<span class="post-time">
<span class="post-meta-item-icon">
<i class="fa fa-calendar-o"></i>
</span>
<span class="post-meta-item-text">发表于</span>
<time itemprop="dateCreated" datetime="2018-04-07T10:55:35+08:00" content="2018-04-07">
2018-04-07
</time>
</span>
<span class="post-comments-count">
|
<a href="/wepy-summary/#comments" itemprop="discussionUrl">
<span class="post-comments-count disqus-comment-count" data-disqus-identifier="wepy-summary/" itemprop="commentsCount"></span>
</a>
</span>
</div>
</header>
<div class="post-body" itemprop="articleBody">
<p>使用<a href="https://tencent.github.io/wepy/" target="_blank" rel="noopener">wepy</a>开发小程序效率提升了很多,相比使用小程序原生框架开发,开发体验提升了好几个等级。如果是从<a href="https://github.com/vuejs/vue" target="_blank" rel="noopener">Vue</a>过来的,可能会对<a href="https://tencent.github.io/wepy/" target="_blank" rel="noopener">wepy</a>部分语法不熟悉,导致自己掉进想当然(Vue习惯的写法)的坑里,所以还是要熟读<a href="https://tencent.github.io/wepy/" target="_blank" rel="noopener">wepy</a>的<a href="https://tencent.github.io/wepy/document.html#/" target="_blank" rel="noopener">文档</a>,理解一些新的概念。我个人觉得<a href="https://tencent.github.io/wepy/" target="_blank" rel="noopener">wepy</a>是类Vue。<a href="https://github.com/Meituan-Dianping/mpvue" target="_blank" rel="noopener">mpvue</a>跟Vue更加亲一些。当然还是要感谢作者<a href="https://github.com/Gcaufy" target="_blank" rel="noopener">@Gcaufy</a>提供这么好的框架,这也是为何个人项目会收入到公司项目的原因吧。</p>
<div class="post-more-link text-center">
<a class="btn" href="/wepy-summary/#more" rel="contents">
阅读全文 »
</a>
</div>
</div>
<div>
</div>
<div>
</div>
<footer class="post-footer">
<div class="post-eof"></div>
</footer>
</article>
<article class="post post-type-normal " itemscope itemtype="//schema.org/Article">
<header class="post-header">
<h1 class="post-title" itemprop="name headline">
<a class="post-title-link" href="/travis-auto-publish-blog/" itemprop="url">
利用trivas自动部署hexo的blog
</a>
</h1>
<div class="post-meta">
<span class="post-time">
<span class="post-meta-item-icon">
<i class="fa fa-calendar-o"></i>
</span>
<span class="post-meta-item-text">发表于</span>
<time itemprop="dateCreated" datetime="2018-04-06T14:41:16+08:00" content="2018-04-06">
2018-04-06
</time>
</span>
<span class="post-comments-count">
|
<a href="/travis-auto-publish-blog/#comments" itemprop="discussionUrl">
<span class="post-comments-count disqus-comment-count" data-disqus-identifier="travis-auto-publish-blog/" itemprop="commentsCount"></span>
</a>
</span>
</div>
</header>
<div class="post-body" itemprop="articleBody">
<p>是什么原因让你折腾<a href="https://travis-ci.org/" target="_blank" rel="noopener">travis</a>?是懒!懒!懒!每次提交代码后台又要手动输一次<code>hexo d -g</code>,真心觉得麻烦,作为程序猿,就应该学会偷懒,可以少输几次相同的命令,心情甚是愉悦。</p>
<p>当然之前也有接触过<a href="https://travis-ci.org/" target="_blank" rel="noopener">travis</a>,比如<a href="https://github.com/huixisheng/x-ci" target="_blank" rel="noopener">x-ci</a><a href="https://travis-ci.org/" target="_blank" rel="noopener">travis</a>的简单使用,<a href="https://github.com/cosmeapp/cosmeapp.github.com/blob/dev/.travis.yml" target="_blank" rel="noopener">团队博客的部署</a>。</p>
<div class="post-more-link text-center">
<a class="btn" href="/travis-auto-publish-blog/#more" rel="contents">
阅读全文 »
</a>
</div>