-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
966 lines (883 loc) · 71.6 KB
/
Copy pathindex.html
File metadata and controls
966 lines (883 loc) · 71.6 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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Arnoldnuo</title>
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1">
<meta property="og:type" content="website">
<meta property="og:title" content="Arnoldnuo">
<meta property="og:url" content="http://arnoldnuo.github.io/index.html">
<meta property="og:site_name" content="Arnoldnuo">
<meta name="twitter:card" content="summary">
<meta name="twitter:title" content="Arnoldnuo">
<link rel="alternate" href="/atom.xml" title="Arnoldnuo" type="application/atom+xml">
<link rel="icon" href="/favicon.png">
<link href="//fonts.googleapis.com/css?family=Source+Code+Pro" rel="stylesheet" type="text/css">
<link rel="stylesheet" href="/css/style.css">
</head>
<body>
<div id="container">
<div id="wrap">
<header id="header">
<div id="banner"></div>
<div id="header-outer" class="outer">
<div id="header-title" class="inner">
<h1 id="logo-wrap">
<a href="/" id="logo">Arnoldnuo</a>
</h1>
</div>
<div id="header-inner" class="inner">
<nav id="main-nav">
<a id="main-nav-toggle" class="nav-icon"></a>
<a class="main-nav-link" href="/">Home</a>
<a class="main-nav-link" href="/archives">Archives</a>
</nav>
<nav id="sub-nav">
<a id="nav-rss-link" class="nav-icon" href="/atom.xml" title="Flux RSS"></a>
<a id="nav-search-btn" class="nav-icon" title="Rechercher"></a>
</nav>
<div id="search-form-wrap">
<form action="//google.com/search" method="get" accept-charset="UTF-8" class="search-form"><input type="search" name="q" class="search-form-input" placeholder="Search"><button type="submit" class="search-form-submit"></button><input type="hidden" name="sitesearch" value="http://arnoldnuo.github.io"></form>
</div>
</div>
</div>
</header>
<div class="outer">
<section id="main">
<article id="post-github高排名项目简介(19-25页)" class="article article-type-post" itemscope itemprop="blogPost">
<div class="article-meta">
<a href="/2017/06/06/github高排名项目简介(19-25页)/" class="article-date">
<time datetime="2017-06-06T06:08:34.000Z" itemprop="datePublished">2017-06-06</time>
</a>
</div>
<div class="article-inner">
<header class="article-header">
<h1 itemprop="name">
<a class="article-title" href="/2017/06/06/github高排名项目简介(19-25页)/">github高排名项目简介(19-25页)</a>
</h1>
</header>
<div class="article-entry" itemprop="articleBody">
<h2 id="build-web-application-with-golang"><a href="#build-web-application-with-golang" class="headerlink" title="build-web-application-with-golang"></a>build-web-application-with-golang</h2><figure class="highlight plain"><table><tr><td class="gutter"><pre><div class="line">1</div><div class="line">2</div><div class="line">3</div></pre></td><td class="code"><pre><div class="line">分类:教育培训</div><div class="line">链接:https://github.com/astaxie/build-web-application-with-golang</div><div class="line">简介:介绍如何使用go语言构建web应用</div></pre></td></tr></table></figure>
<h2 id="awesome-selfhosted"><a href="#awesome-selfhosted" class="headerlink" title="awesome-selfhosted"></a>awesome-selfhosted</h2><figure class="highlight plain"><table><tr><td class="gutter"><pre><div class="line">1</div><div class="line">2</div><div class="line">3</div></pre></td><td class="code"><pre><div class="line">分类:教育培训</div><div class="line">链接:https://github.com/Kickball/awesome-selfhosted</div><div class="line">简介:可以自己搭建的web服务的集合</div></pre></td></tr></table></figure>
<h2 id="opencv"><a href="#opencv" class="headerlink" title="opencv"></a>opencv</h2><figure class="highlight plain"><table><tr><td class="gutter"><pre><div class="line">1</div><div class="line">2</div><div class="line">3</div></pre></td><td class="code"><pre><div class="line">分类:计算机视觉</div><div class="line">链接:https://github.com/opencv/opencv</div><div class="line">简介:开源的计算机视觉库</div></pre></td></tr></table></figure>
<h2 id="dragula"><a href="#dragula" class="headerlink" title="dragula"></a>dragula</h2><figure class="highlight plain"><table><tr><td class="gutter"><pre><div class="line">1</div><div class="line">2</div><div class="line">3</div></pre></td><td class="code"><pre><div class="line">分类:前端开发库</div><div class="line">链接:https://github.com/bevacqua/dragula</div><div class="line">简介:开源的前端拖拽库</div></pre></td></tr></table></figure>
<h2 id="sweetalert"><a href="#sweetalert" class="headerlink" title="sweetalert"></a>sweetalert</h2><figure class="highlight plain"><table><tr><td class="gutter"><pre><div class="line">1</div><div class="line">2</div><div class="line">3</div></pre></td><td class="code"><pre><div class="line">分类:前端开发库</div><div class="line">链接:https://github.com/t4t5/sweetalert</div><div class="line">简介:漂亮的js的alert的替换方案</div></pre></td></tr></table></figure>
<h2 id="MPAndroidChart"><a href="#MPAndroidChart" class="headerlink" title="MPAndroidChart"></a>MPAndroidChart</h2><figure class="highlight plain"><table><tr><td class="gutter"><pre><div class="line">1</div><div class="line">2</div><div class="line">3</div></pre></td><td class="code"><pre><div class="line">分类:界面相关</div><div class="line">链接:https://github.com/PhilJay/MPAndroidChart</div><div class="line">简介:android上绘制强大的图表</div></pre></td></tr></table></figure>
<h2 id="bulma"><a href="#bulma" class="headerlink" title="bulma"></a>bulma</h2><figure class="highlight plain"><table><tr><td class="gutter"><pre><div class="line">1</div><div class="line">2</div><div class="line">3</div></pre></td><td class="code"><pre><div class="line">分类:界面相关</div><div class="line">链接:https://github.com/jgthms/bulma</div><div class="line">简介:基于Flexbox的前端css框架</div></pre></td></tr></table></figure>
<h2 id="free-for-dev"><a href="#free-for-dev" class="headerlink" title="free-for-dev"></a>free-for-dev</h2><figure class="highlight plain"><table><tr><td class="gutter"><pre><div class="line">1</div><div class="line">2</div><div class="line">3</div></pre></td><td class="code"><pre><div class="line">分类:教育培训</div><div class="line">链接:https://github.com/ripienaar/free-for-dev</div><div class="line">简介:列举了一些针对开发者的可以免费尝试的软件服务(Saas、Paas、laaS等)</div></pre></td></tr></table></figure>
<h2 id="koa"><a href="#koa" class="headerlink" title="koa"></a>koa</h2><figure class="highlight plain"><table><tr><td class="gutter"><pre><div class="line">1</div><div class="line">2</div><div class="line">3</div></pre></td><td class="code"><pre><div class="line">分类:后端框架</div><div class="line">链接:https://github.com/koajs/koa</div><div class="line">简介:使用ES2017的async函数的后端开发框架</div></pre></td></tr></table></figure>
<h2 id="GPUImage"><a href="#GPUImage" class="headerlink" title="GPUImage"></a>GPUImage</h2><figure class="highlight plain"><table><tr><td class="gutter"><pre><div class="line">1</div><div class="line">2</div><div class="line">3</div></pre></td><td class="code"><pre><div class="line">分类:APP开发依赖库</div><div class="line">链接:https://github.com/BradLarson/GPUImage</div><div class="line">简介:ios平台开源框架,可以用GPU渲染图片和视频</div></pre></td></tr></table></figure>
<h2 id="glide"><a href="#glide" class="headerlink" title="glide"></a>glide</h2><figure class="highlight plain"><table><tr><td class="gutter"><pre><div class="line">1</div><div class="line">2</div><div class="line">3</div></pre></td><td class="code"><pre><div class="line">分类:APP开发依赖库</div><div class="line">链接:https://github.com/bumptech/glide</div><div class="line">简介:android平台的图片加载和缓存库,专注于流畅的滚动</div></pre></td></tr></table></figure>
<h2 id="request"><a href="#request" class="headerlink" title="request"></a>request</h2><figure class="highlight plain"><table><tr><td class="gutter"><pre><div class="line">1</div><div class="line">2</div><div class="line">3</div></pre></td><td class="code"><pre><div class="line">分类:后端依赖库</div><div class="line">链接:https://github.com/request/request</div><div class="line">简介:基于node.js的网络请求库</div></pre></td></tr></table></figure>
<h2 id="material"><a href="#material" class="headerlink" title="material"></a>material</h2><figure class="highlight plain"><table><tr><td class="gutter"><pre><div class="line">1</div><div class="line">2</div><div class="line">3</div></pre></td><td class="code"><pre><div class="line">分类:前端界面</div><div class="line">链接:https://github.com/angular/material</div><div class="line">简介:针对AngularJS的Material风格的前端框架</div></pre></td></tr></table></figure>
<h2 id="awesome-php"><a href="#awesome-php" class="headerlink" title="awesome-php"></a>awesome-php</h2><figure class="highlight plain"><table><tr><td class="gutter"><pre><div class="line">1</div><div class="line">2</div><div class="line">3</div></pre></td><td class="code"><pre><div class="line">分类:教育培训</div><div class="line">链接:https://github.com/ziadoz/awesome-php</div><div class="line">简介:php相关项目的合集</div></pre></td></tr></table></figure>
<h2 id="models"><a href="#models" class="headerlink" title="models"></a>models</h2><figure class="highlight plain"><table><tr><td class="gutter"><pre><div class="line">1</div><div class="line">2</div><div class="line">3</div></pre></td><td class="code"><pre><div class="line">分类:机器学习</div><div class="line">链接:https://github.com/tensorflow/models</div><div class="line">简介:使用TensorFlow构建的模型</div></pre></td></tr></table></figure>
<h2 id="phaser"><a href="#phaser" class="headerlink" title="phaser"></a>phaser</h2><figure class="highlight plain"><table><tr><td class="gutter"><pre><div class="line">1</div><div class="line">2</div><div class="line">3</div></pre></td><td class="code"><pre><div class="line">分类:游戏开发</div><div class="line">链接:https://github.com/photonstorm/phaser</div><div class="line">简介:免费而快速的基于web技术的游戏开发框架</div></pre></td></tr></table></figure>
<h2 id="gitbook"><a href="#gitbook" class="headerlink" title="gitbook"></a>gitbook</h2><figure class="highlight plain"><table><tr><td class="gutter"><pre><div class="line">1</div><div class="line">2</div><div class="line">3</div></pre></td><td class="code"><pre><div class="line">分类:辅助工具</div><div class="line">链接:https://github.com/GitbookIO/gitbook</div><div class="line">简介:使用git和mardown来书写文档</div></pre></td></tr></table></figure>
<h2 id="leakcanary"><a href="#leakcanary" class="headerlink" title="leakcanary"></a>leakcanary</h2><figure class="highlight plain"><table><tr><td class="gutter"><pre><div class="line">1</div><div class="line">2</div><div class="line">3</div></pre></td><td class="code"><pre><div class="line">分类:APP开发依赖库</div><div class="line">链接:https://github.com/square/leakcanary</div><div class="line">简介:Android和java平台的内存泄露判断库</div></pre></td></tr></table></figure>
<h2 id="500lines"><a href="#500lines" class="headerlink" title="500lines"></a>500lines</h2><blockquote>
<p>分类:教育培训</p>
<p>链接:<a href="https://github.com/aosabook/500lines" target="_blank" rel="external">https://github.com/aosabook/500lines</a></p>
<p>简介:用最多500行代码的一个个例子告诉大家为什么要拆分代码,什么时候用继承或组合,如何预测我们程序的可扩展处</p>
</blockquote>
<h2 id="intro-js"><a href="#intro-js" class="headerlink" title="intro.js"></a>intro.js</h2><blockquote>
<p>分类:前端依赖库</p>
<p>链接:<a href="https://github.com/usablica/intro.js" target="_blank" rel="external">https://github.com/usablica/intro.js</a></p>
<p>简介:一种更好的功能介绍和用户指导的演示方案</p>
</blockquote>
<h2 id="Android-Universal-Image-Loader"><a href="#Android-Universal-Image-Loader" class="headerlink" title="Android-Universal-Image-Loader"></a>Android-Universal-Image-Loader</h2><blockquote>
<p>分类:APP开发依赖库</p>
<p>链接:<a href="https://github.com/nostra13/Android-Universal-Image-Loader" target="_blank" rel="external">https://github.com/nostra13/Android-Universal-Image-Loader</a></p>
<p>简介:android平台的图片加载、缓存、展示库</p>
</blockquote>
<h2 id="How-to-Make-a-Computer-Operating-System"><a href="#How-to-Make-a-Computer-Operating-System" class="headerlink" title="How-to-Make-a-Computer-Operating-System"></a>How-to-Make-a-Computer-Operating-System</h2><blockquote>
<p>分类:教育培训</p>
<p>链接:<a href="https://github.com/SamyPesse/How-to-Make-a-Computer-Operating-System" target="_blank" rel="external">https://github.com/SamyPesse/How-to-Make-a-Computer-Operating-System</a></p>
<p>简介:教你如何用C++实现一个操作系统</p>
</blockquote>
<h2 id="js-stack-from-scratch"><a href="#js-stack-from-scratch" class="headerlink" title="js-stack-from-scratch"></a>js-stack-from-scratch</h2><blockquote>
<p>分类:教育培训</p>
<p>链接:<a href="https://github.com/verekia/js-stack-from-scratch" target="_blank" rel="external">https://github.com/verekia/js-stack-from-scratch</a></p>
<p>简介:从0搭建的js技术栈</p>
</blockquote>
<h2 id="bower"><a href="#bower" class="headerlink" title="bower"></a>bower</h2><blockquote>
<p>分类:前端开发工具</p>
<p>链接:<a href="https://github.com/bower/bower" target="_blank" rel="external">https://github.com/bower/bower</a></p>
<p>简介:前端依赖管理工具</p>
</blockquote>
<h2 id="machine-learning-for-software-engineers"><a href="#machine-learning-for-software-engineers" class="headerlink" title="machine-learning-for-software-engineers"></a>machine-learning-for-software-engineers</h2><blockquote>
<p>分类:机器学习</p>
<p>链接:<a href="https://github.com/ZuzooVn/machine-learning-for-software-engineers" target="_blank" rel="external">https://github.com/ZuzooVn/machine-learning-for-software-engineers</a></p>
<p>简介:成为机器学习工程师的每日学习计划</p>
</blockquote>
<h2 id="ace"><a href="#ace" class="headerlink" title="ace"></a>ace</h2><blockquote>
<p>分类:编辑器</p>
<p>链接:<a href="https://github.com/ajaxorg/ace" target="_blank" rel="external">https://github.com/ajaxorg/ace</a></p>
<p>简介:一个云端编辑器</p>
</blockquote>
<h2 id="jquery-pjax"><a href="#jquery-pjax" class="headerlink" title="jquery-pjax"></a>jquery-pjax</h2><blockquote>
<p>分类:前端依赖库</p>
<p>链接:<a href="https://github.com/defunkt/jquery-pjax" target="_blank" rel="external">https://github.com/defunkt/jquery-pjax</a></p>
<p>简介:通过pushState+ajax实现无刷新页面切换</p>
</blockquote>
<h2 id="awesome-interview-questions"><a href="#awesome-interview-questions" class="headerlink" title="awesome-interview-questions"></a>awesome-interview-questions</h2><blockquote>
<p>分类:教育培训</p>
<p>链接:<a href="https://github.com/MaximAbramchuck/awesome-interview-questions" target="_blank" rel="external">https://github.com/MaximAbramchuck/awesome-interview-questions</a></p>
<p>简介:面试题合集</p>
</blockquote>
<h2 id="Vundle-vim"><a href="#Vundle-vim" class="headerlink" title="Vundle.vim"></a>Vundle.vim</h2><blockquote>
<p>分类:编辑器</p>
<p>链接:<a href="https://github.com/VundleVim/Vundle.vim" target="_blank" rel="external">https://github.com/VundleVim/Vundle.vim</a></p>
<p>简介:vim插件管理器</p>
</blockquote>
<h2 id="awesome-sysadmin"><a href="#awesome-sysadmin" class="headerlink" title="awesome-sysadmin"></a>awesome-sysadmin</h2><blockquote>
<p>分类:教育培训</p>
<p>链接:<a href="https://github.com/kahun/awesome-sysadmin" target="_blank" rel="external">https://github.com/kahun/awesome-sysadmin</a></p>
<p>简介:开源的系统管理软件列表</p>
</blockquote>
<h2 id="postcss"><a href="#postcss" class="headerlink" title="postcss"></a>postcss</h2><blockquote>
<p>分类:前端工具</p>
<p>链接:<a href="https://github.com/postcss/postcss" target="_blank" rel="external">https://github.com/postcss/postcss</a></p>
<p>简介:css编译处理器</p>
</blockquote>
<h2 id="Masonry"><a href="#Masonry" class="headerlink" title="Masonry"></a>Masonry</h2><blockquote>
<p>分类:APP开发依赖库</p>
<p>链接:<a href="https://github.com/SnapKit/Masonry" target="_blank" rel="external">https://github.com/SnapKit/Masonry</a></p>
<p>简介:强大的ios平台的自动布局库</p>
</blockquote>
<h2 id="weui"><a href="#weui" class="headerlink" title="weui"></a>weui</h2><blockquote>
<p>分类:前端界面</p>
<p>链接:<a href="https://github.com/weui/weui" target="_blank" rel="external">https://github.com/weui/weui</a></p>
<p>简介:微信团队出品的前端UI框架</p>
</blockquote>
<h2 id="less-js"><a href="#less-js" class="headerlink" title="less.js"></a>less.js</h2><blockquote>
<p>分类:前端工具</p>
<p>链接:<a href="https://github.com/less/less.js" target="_blank" rel="external">https://github.com/less/less.js</a></p>
<p>简介:可以编译成css的语言</p>
</blockquote>
<h2 id="EventBus"><a href="#EventBus" class="headerlink" title="EventBus"></a>EventBus</h2><blockquote>
<p>分类:APP开发依赖库</p>
<p>链接:<a href="https://github.com/greenrobot/EventBus" target="_blank" rel="external">https://github.com/greenrobot/EventBus</a></p>
<p>简介:Android平台的消息传递库</p>
</blockquote>
<h2 id="faskclick"><a href="#faskclick" class="headerlink" title="faskclick"></a>faskclick</h2><blockquote>
<p>分类:前端依赖库</p>
<p>链接:<a href="https://github.com/ftlabs/fastclick" target="_blank" rel="external">https://github.com/ftlabs/fastclick</a></p>
<p>简介:消除浏览器点击的延迟</p>
</blockquote>
<h2 id="vagrant"><a href="#vagrant" class="headerlink" title="vagrant"></a>vagrant</h2><blockquote>
<p>分类:后端工具</p>
<p>链接:<a href="https://github.com/mitchellh/vagrant" target="_blank" rel="external">https://github.com/mitchellh/vagrant</a></p>
<p>简介:创建和部署虚拟化开发环境</p>
</blockquote>
<h2 id="bluebird"><a href="#bluebird" class="headerlink" title="bluebird"></a>bluebird</h2><blockquote>
<p>分类:后端依赖库</p>
<p>链接:<a href="https://github.com/petkaantonov/bluebird" target="_blank" rel="external">https://github.com/petkaantonov/bluebird</a></p>
<p>简介:高性能的promise库</p>
</blockquote>
<h2 id="SwiftyJSON"><a href="#SwiftyJSON" class="headerlink" title="SwiftyJSON"></a>SwiftyJSON</h2><blockquote>
<p>分类:APP开发依赖库</p>
<p>链接:<a href="https://github.com/SwiftyJSON/SwiftyJSON" target="_blank" rel="external">https://github.com/SwiftyJSON/SwiftyJSON</a></p>
<p>简介:通过swift处理json的方案</p>
</blockquote>
<h2 id="kotlin"><a href="#kotlin" class="headerlink" title="kotlin"></a>kotlin</h2><blockquote>
<p>分类:编程语言</p>
<p>链接:<a href="https://github.com/JetBrains/kotlin" target="_blank" rel="external">https://github.com/JetBrains/kotlin</a></p>
<p>简介:一种编程语言,可以用开开发android app</p>
</blockquote>
<h2 id="XX-net"><a href="#XX-net" class="headerlink" title="XX-net"></a>XX-net</h2><blockquote>
<p>分类:开发依赖工具</p>
<p>链接:<a href="https://github.com/XX-net/XX-Net" target="_blank" rel="external">https://github.com/XX-net/XX-Net</a></p>
<p>简介:傻瓜式翻墙软件</p>
</blockquote>
<h2 id="clean-code-javascript"><a href="#clean-code-javascript" class="headerlink" title="clean-code-javascript"></a>clean-code-javascript</h2><blockquote>
<p>分类:教育培训</p>
<p>链接:<a href="https://github.com/ryanmcdermott/clean-code-javascript" target="_blank" rel="external">https://github.com/ryanmcdermott/clean-code-javascript</a></p>
<p>简介:一些例子,学习怎么写一些好的js代码</p>
</blockquote>
<h2 id="hhvm"><a href="#hhvm" class="headerlink" title="hhvm"></a>hhvm</h2><blockquote>
<p>分类:解析器</p>
<p>链接:<a href="https://github.com/facebook/hhvm" target="_blank" rel="external">https://github.com/facebook/hhvm</a></p>
<p>简介:facebook出品的PHP的解析器,性能更好</p>
</blockquote>
<h2 id="Codelgniter"><a href="#Codelgniter" class="headerlink" title="Codelgniter"></a>Codelgniter</h2><blockquote>
<p>分类:后端框架</p>
<p>链接:<a href="https://github.com/bcit-ci/CodeIgniter" target="_blank" rel="external">https://github.com/bcit-ci/CodeIgniter</a></p>
<p>简介:开源的PHP框架</p>
</blockquote>
<h2 id="pixi-js"><a href="#pixi-js" class="headerlink" title="pixi.js"></a>pixi.js</h2><blockquote>
<p>分类:前端框架</p>
<p>链接:<a href="https://github.com/pixijs/pixi.js" target="_blank" rel="external">https://github.com/pixijs/pixi.js</a></p>
<p>简介:基于webGL的超快的html5的2D渲染框架</p>
</blockquote>
<h2 id="pug"><a href="#pug" class="headerlink" title="pug"></a>pug</h2><blockquote>
<p>分类:后端模版</p>
<p>链接:<a href="https://github.com/pugjs/pug" target="_blank" rel="external">https://github.com/pugjs/pug</a></p>
<p>简介:node.js的后端渲染模版</p>
</blockquote>
<h2 id="what-happens-when"><a href="#what-happens-when" class="headerlink" title="what-happens-when"></a>what-happens-when</h2><blockquote>
<p>分类:教育培训</p>
<p>链接:<a href="https://github.com/alex/what-happens-when" target="_blank" rel="external">https://github.com/alex/what-happens-when</a></p>
<p>简介:当然在浏览器里输入google.com后,点击回车,发生了什么</p>
</blockquote>
<h2 id="fetch"><a href="#fetch" class="headerlink" title="fetch"></a>fetch</h2><blockquote>
<p>分类:前端依赖库</p>
<p>链接:<a href="https://github.com/github/fetch" target="_blank" rel="external">https://github.com/github/fetch</a></p>
<p>简介:在低端浏览器上模拟javascript的fetch方法</p>
</blockquote>
<h2 id="slate"><a href="#slate" class="headerlink" title="slate"></a>slate</h2><blockquote>
<p>分类:通用工具</p>
<p>链接:<a href="https://github.com/lord/slate" target="_blank" rel="external">https://github.com/lord/slate</a></p>
<p>简介:为开发的API构建漂亮的静态文档</p>
</blockquote>
<h2 id="linux-insides"><a href="#linux-insides" class="headerlink" title="linux-insides"></a>linux-insides</h2><blockquote>
<p>分类:教育培训</p>
<p>链接:<a href="https://github.com/0xAX/linux-insides" target="_blank" rel="external">https://github.com/0xAX/linux-insides</a></p>
<p>简介:一本介绍linux内核的书</p>
</blockquote>
<h2 id="spring-framework"><a href="#spring-framework" class="headerlink" title="spring-framework"></a>spring-framework</h2><blockquote>
<p>分类:后端框架</p>
<p>链接:<a href="https://github.com/spring-projects/spring-framework" target="_blank" rel="external">https://github.com/spring-projects/spring-framework</a></p>
<p>简介:基于java的web开发框架</p>
</blockquote>
<h2 id="superset"><a href="#superset" class="headerlink" title="superset"></a>superset</h2><blockquote>
<p>分类:数据可视化</p>
<p>链接:<a href="https://github.com/airbnb/superset" target="_blank" rel="external">https://github.com/airbnb/superset</a></p>
<p>简介:airbnb出品的数据可视化框架</p>
</blockquote>
<h2 id="weex"><a href="#weex" class="headerlink" title="weex"></a>weex</h2><blockquote>
<p>分类:APP开发框架</p>
<p>链接:<a href="https://github.com/alibaba/weex" target="_blank" rel="external">https://github.com/alibaba/weex</a></p>
<p>简介:跨平台的app开发框架</p>
</blockquote>
<h2 id="typeahead-js"><a href="#typeahead-js" class="headerlink" title="typeahead.js"></a>typeahead.js</h2><blockquote>
<p>分类:前端依赖库</p>
<p>链接:<a href="https://github.com/twitter/typeahead.js" target="_blank" rel="external">https://github.com/twitter/typeahead.js</a></p>
<p>简介:快速而全功能的自动补全库</p>
</blockquote>
<h2 id="react-starter-kit"><a href="#react-starter-kit" class="headerlink" title="react-starter-kit"></a>react-starter-kit</h2><blockquote>
<p>分类:前端工具</p>
<p>链接:<a href="https://github.com/kriasoft/react-starter-kit" target="_blank" rel="external">https://github.com/kriasoft/react-starter-kit</a></p>
<p>简介:快速构建一个react应用模版,包含node.js、express、graphql等</p>
</blockquote>
<h2 id="angular-ui-bootstrap"><a href="#angular-ui-bootstrap" class="headerlink" title="angular-ui/bootstrap"></a>angular-ui/bootstrap</h2><blockquote>
<p>分类:前端框架</p>
<p>链接:<a href="https://github.com/search?p=24&q=stars%3A%3E10000&ref=opensearch&type=Repositories" target="_blank" rel="external">https://github.com/search?p=24&q=stars%3A%3E10000&ref=opensearch&type=Repositories</a></p>
<p>简介:基于angularjs原声指令的bootstrap库</p>
</blockquote>
<h2 id="ant-design"><a href="#ant-design" class="headerlink" title="ant-design"></a>ant-design</h2><blockquote>
<p>分类:界面设计</p>
<p>链接:<a href="https://github.com/ant-design/ant-design" target="_blank" rel="external">https://github.com/ant-design/ant-design</a></p>
<p>简介:阿里出品的UI设计语言</p>
</blockquote>
<h2 id="1"><a href="#1" class="headerlink" title="1"></a>1</h2><blockquote>
<p>分类:</p>
<p>链接:</p>
<p>简介:</p>
</blockquote>
</div>
<footer class="article-footer">
<a data-url="http://arnoldnuo.github.io/2017/06/06/github高排名项目简介(19-25页)/" data-id="cj3oj0nvl0000ryunhm9d41c2" class="article-share-link">Partager</a>
</footer>
</div>
</article>
<article id="post-github高排名项目简介(1-18页)" class="article article-type-post" itemscope itemprop="blogPost">
<div class="article-meta">
<a href="/2017/06/05/github高排名项目简介(1-18页)/" class="article-date">
<time datetime="2017-06-05T07:10:49.000Z" itemprop="datePublished">2017-06-05</time>
</a>
</div>
<div class="article-inner">
<header class="article-header">
<h1 itemprop="name">
<a class="article-title" href="/2017/06/05/github高排名项目简介(1-18页)/">github高排名项目简介(1-18页)</a>
</h1>
</header>
<div class="article-entry" itemprop="articleBody">
<h2 id="freeCodeCamp"><a href="#freeCodeCamp" class="headerlink" title="freeCodeCamp"></a>freeCodeCamp</h2><pre><code>分类:教育培训
链接:https://github.com/freeCodeCamp/freeCodeCamp
简介:教人们从0开始学习写代码,如果我刚接触编程的时候有这个多好,从0开始学起,应该能节省很多时间。
</code></pre><h2 id="bootstrap"><a href="#bootstrap" class="headerlink" title="bootstrap"></a>bootstrap</h2><pre><code>分类:界面设计
链接:https://github.com/twbs/bootstrap
简介:全球最火的快速实现优美的网站界面的html、css、js库,对手机网站的界面支持更好。
</code></pre><h2 id="free-programming-books"><a href="#free-programming-books" class="headerlink" title="free-programming-books"></a>free-programming-books</h2><pre><code>分类:教育培训
链接:https://github.com/vhf/free-programming-books
简介:免费的编程学习书籍
</code></pre><h2 id="react"><a href="#react" class="headerlink" title="react"></a>react</h2><pre><code>分类:前端框架
链接:https://github.com/facebook/react
简介:强大的声明式js库,用来构建用户界面,基于组件化,可以在ios、android、浏览器里跑起来
</code></pre><h2 id="d3"><a href="#d3" class="headerlink" title="d3"></a>d3</h2><pre><code>分类:数据可视化
链接:https://github.com/d3/d3
简介:通过web技术实现数据可视化
</code></pre><h2 id="You-Dont-Know-JS"><a href="#You-Dont-Know-JS" class="headerlink" title="You-Dont-Know-JS"></a>You-Dont-Know-JS</h2><pre><code>分类:教育培训
链接:https://github.com/getify/You-Dont-Know-JS
简介:一本深入介绍js的书,在github上连载
</code></pre><h2 id="awesome"><a href="#awesome" class="headerlink" title="awesome"></a>awesome</h2><pre><code>分类:教育培训
链接:https://github.com/sindresorhus/awesome
简介:罗列了编程相关的各个相关的项目、技术、语言等等的介绍和链接
</code></pre><h2 id="tensorflow"><a href="#tensorflow" class="headerlink" title="tensorflow"></a>tensorflow</h2><pre><code>分类:机器学习
链接:https://github.com/tensorflow/tensorflow
简介:google开源的机器学习库,之前是由谷歌大脑团队开发的。
</code></pre><h2 id="angular-js"><a href="#angular-js" class="headerlink" title="angular.js"></a>angular.js</h2><pre><code>分类:前端框架
链接:https://github.com/angular/angular.js
简介:第一个双向绑定的前端框架
</code></pre><h2 id="vue"><a href="#vue" class="headerlink" title="vue"></a>vue</h2><pre><code>分类:前端框架
链接:https://github.com/vuejs/vue
简介:渐进式的前端框架
</code></pre><h2 id="oh-my-zsh"><a href="#oh-my-zsh" class="headerlink" title="oh-my-zsh"></a>oh-my-zsh</h2><pre><code>分类:开发工具
链接:https://github.com/robbyrussell/oh-my-zsh
简介:开源的管理zsh配置的工具,让你的命令行工具更爽
</code></pre><h2 id="javascript"><a href="#javascript" class="headerlink" title="javascript"></a>javascript</h2><pre><code>分类:编码规范
链接:https://github.com/airbnb/javascript
简介:airbnb的javascript编码规范
</code></pre><h2 id="gitignore"><a href="#gitignore" class="headerlink" title="gitignore"></a>gitignore</h2><pre><code>分类:编码规范
链接:https://github.com/github/gitignore
简介:有用的gitignore模版的合集
</code></pre><h2 id="Font-Awesome"><a href="#Font-Awesome" class="headerlink" title="Font-Awesome"></a>Font-Awesome</h2><pre><code>分类:界面设计
链接:https://github.com/FortAwesome/Font-Awesome
简介:漂亮的字体
</code></pre><h2 id="react-native"><a href="#react-native" class="headerlink" title="react-native"></a>react-native</h2><pre><code>分类:软件开发
链接:https://github.com/facebook/react-native
简介:通过react技术构建app
</code></pre><h2 id="electron"><a href="#electron" class="headerlink" title="electron"></a>electron</h2><pre><code>分类:软件开发
链接:https://github.com/electron/electron
简介:通过web技术构建桌面软件
</code></pre><h2 id="linux"><a href="#linux" class="headerlink" title="linux"></a>linux</h2><pre><code>分类:操作系统
链接:https://github.com/torvalds/linux
简介:不多说
</code></pre><h2 id="jquery"><a href="#jquery" class="headerlink" title="jquery"></a>jquery</h2><pre><code>分类:前端框架
链接:https://github.com/jquery/jquery
简介:这是jquery
</code></pre><h2 id="coding-interview-university"><a href="#coding-interview-university" class="headerlink" title="coding-interview-university"></a>coding-interview-university</h2><pre><code>分类:教育培训
链接:https://github.com/jwasham/coding-interview-university
简介:成为一名软件工程师的完整学习手册
</code></pre><h2 id="moby"><a href="#moby" class="headerlink" title="moby"></a>moby</h2><pre><code>分类:运维工具
链接:https://github.com/moby/moby
简介:容器技术,之前是docker
</code></pre><h2 id="animate-css"><a href="#animate-css" class="headerlink" title="animate.css"></a>animate.css</h2><pre><code>分类:界面设计
链接:https://github.com/daneden/animate.css
简介:通过css实现动画效果
</code></pre><h2 id="swift"><a href="#swift" class="headerlink" title="swift"></a>swift</h2><pre><code>分类:开发语言
链接:https://github.com/apple/swift
简介:ios平台的软件开发语言
</code></pre><h2 id="meteor"><a href="#meteor" class="headerlink" title="meteor"></a>meteor</h2><pre><code>分类:前端框架
链接:https://github.com/meteor/meteor
简介:构建web应用的框架
</code></pre><h2 id="html5-boilerplate"><a href="#html5-boilerplate" class="headerlink" title="html5-boilerplate"></a>html5-boilerplate</h2><pre><code>分类:前端框架
链接:https://github.com/h5bp/html5-boilerplate
简介:一个专业的网站的设置项的合集,每个网站都该设置的选项都全部设置了,包括缓存、robots.txt等
</code></pre><h2 id="atom"><a href="#atom" class="headerlink" title="atom"></a>atom</h2><pre><code>分类:编辑器
链接:https://github.com/atom/atom
简介:github出品的编辑器
</code></pre><h2 id="node"><a href="#node" class="headerlink" title="node"></a>node</h2><pre><code>分类:执行引擎
链接:https://github.com/nodejs/node
简介:javascript执行引擎,可以让javascript运行在服务器端
</code></pre><h2 id="rails"><a href="#rails" class="headerlink" title="rails"></a>rails</h2><pre><code>分类:开发框架
链接:https://github.com/rails/rails
简介:基于ruby语言的开发框架
</code></pre><h2 id="Semantic-UI"><a href="#Semantic-UI" class="headerlink" title="Semantic-UI"></a>Semantic-UI</h2><pre><code>分类:界面设计
链接:https://github.com/Semantic-Org/Semantic-UI
简介:前端的UI框架
</code></pre><h2 id="reveal-js"><a href="#reveal-js" class="headerlink" title="reveal.js"></a>reveal.js</h2><pre><code>分类:展示工具
链接:https://github.com/hakimel/reveal.js
简介:用html来做ppt,效果酷炫
</code></pre><h2 id="awesome-python"><a href="#awesome-python" class="headerlink" title="awesome-python"></a>awesome-python</h2><pre><code>分类:资料合集
链接:https://github.com/vinta/awesome-python
简介:关于python的资料合集
</code></pre><h2 id="socket-io"><a href="#socket-io" class="headerlink" title="socket.io"></a>socket.io</h2><pre><code>分类:开发框架
链接:https://github.com/socketio/socket.io
简介:基于node.js的实时web应用库
</code></pre><h2 id="three-js"><a href="#three-js" class="headerlink" title="three.js"></a>three.js</h2><pre><code>分类:开发框架
链接:https://github.com/mrdoob/three.js
简介:javascript实现的3D库
</code></pre><h2 id="lavavel"><a href="#lavavel" class="headerlink" title="lavavel"></a>lavavel</h2><pre><code>分类:开发框架
链接:https://github.com/laravel/laravel
简介:基于PHP的web开发框架
</code></pre><h2 id="express"><a href="#express" class="headerlink" title="express"></a>express</h2><pre><code>分类:开发框架
链接:https://github.com/expressjs/express
简介:基于node.js的web开发框架
</code></pre><h2 id="impress-js"><a href="#impress-js" class="headerlink" title="impress.js"></a>impress.js</h2><pre><code>分类:展示工具
链接:https://github.com/impress/impress.js
简介:用html来做ppt,和reveal.js类似
</code></pre><h2 id="nw-js"><a href="#nw-js" class="headerlink" title="nw.js"></a>nw.js</h2><pre><code>分类:桌面软件开发
链接:https://github.com/nwjs/nw.js
简介:使用node.js开发桌面软件
</code></pre><h2 id="moment"><a href="#moment" class="headerlink" title="moment"></a>moment</h2><pre><code>分类:开发依赖库
链接:https://github.com/moment/moment
简介:javascript的处理date的库
</code></pre><h2 id="redux"><a href="#redux" class="headerlink" title="redux"></a>redux</h2><pre><code>分类:开发依赖库
链接:https://github.com/reactjs/redux
简介:与react.js搭配使用的可预测
</code></pre><h2 id="the-art-of-command-line"><a href="#the-art-of-command-line" class="headerlink" title="the-art-of-command-line"></a>the-art-of-command-line</h2><pre><code>分类:教育培训
链接:https://github.com/jlevy/the-art-of-command-line
简介:一页网页教会使用命令行
</code></pre><h2 id="Chart-js"><a href="#Chart-js" class="headerlink" title="Chart.js"></a>Chart.js</h2><pre><code>分类:界面设计
链接:https://github.com/chartjs/Chart.js
简介:通过canvas标签来绘制图表
</code></pre><h2 id="jekyll"><a href="#jekyll" class="headerlink" title="jekyll"></a>jekyll</h2><pre><code>分类:程序员辅助工具
链接:https://github.com/jekyll/jekyll
简介:基于ruby的博客静态生成器
</code></pre><h2 id="httpie"><a href="#httpie" class="headerlink" title="httpie"></a>httpie</h2><pre><code>分类:程序员辅助工具
链接:https://github.com/jakubroztocil/httpie
简介:使用命令行便捷的发送http请求
</code></pre><h2 id="material-design-icons"><a href="#material-design-icons" class="headerlink" title="material-design-icons"></a>material-design-icons</h2><pre><code>分类:图标设计
链接:https://github.com/google/material-design-icons
简介:Google设计的Material风格的图标
</code></pre><h2 id="ionic"><a href="#ionic" class="headerlink" title="ionic"></a>ionic</h2><pre><code>分类:APP开发
链接:https://github.com/ionic-team/ionic
简介:使用Angular技术构建原生应用
</code></pre><h2 id="AFNetworking"><a href="#AFNetworking" class="headerlink" title="AFNetworking"></a>AFNetworking</h2><pre><code>分类:开发依赖库
链接:https://github.com/AFNetworking/AFNetworking
简介:ios平台的网络请求库
</code></pre><h2 id="legacy-homebrew"><a href="#legacy-homebrew" class="headerlink" title="legacy-homebrew"></a>legacy-homebrew</h2><pre><code>分类:程序员辅助工具
链接:https://github.com/Homebrew/legacy-homebrew
简介:homebrew的代码,在mac上便捷的安装各种工具
</code></pre><h2 id="resume-github-com"><a href="#resume-github-com" class="headerlink" title="resume.github.com"></a>resume.github.com</h2><pre><code>分类:教育培训
链接:https://github.com/resume/resume.github.com
简介:给予github上的信息构建个人简历
</code></pre><h2 id="vscode"><a href="#vscode" class="headerlink" title="vscode"></a>vscode</h2><pre><code>分类:编辑器
链接:https://github.com/Microsoft/vscode
简介:微软出品的基于web技术的编辑器
</code></pre><h2 id="go"><a href="#go" class="headerlink" title="go"></a>go</h2><pre><code>分类:开发语言
链接:https://github.com/golang/go
简介:Google出品的go语言
</code></pre><h2 id="webpack"><a href="#webpack" class="headerlink" title="webpack"></a>webpack</h2><pre><code>分类:前端构建工具
链接:https://github.com/webpack/webpack
简介:前端代码打包编译工具
</code></pre><h2 id="thefuck"><a href="#thefuck" class="headerlink" title="thefuck"></a>thefuck</h2><pre><code>分类:命令行工具
链接:https://github.com/nvbn/thefuck
简介:自动修正在命令行上输错的命令
</code></pre><h2 id="Front-end-Developer-Interview-Questions"><a href="#Front-end-Developer-Interview-Questions" class="headerlink" title="Front-end-Developer-Interview-Questions"></a>Front-end-Developer-Interview-Questions</h2><pre><code>分类:教育培训
链接:https://github.com/h5bp/Front-end-Developer-Interview-Questions
简介:前端面试问题
</code></pre><h2 id="create-react-app"><a href="#create-react-app" class="headerlink" title="create-react-app"></a>create-react-app</h2><pre><code>分类:程序员辅助工具
链接:https://github.com/facebookincubator/create-react-app
简介:快速构建react应用的工具
</code></pre><h2 id="hacker-scripts"><a href="#hacker-scripts" class="headerlink" title="hacker-scripts"></a>hacker-scripts</h2><pre><code>分类:教育培训
链接:https://github.com/NARKOZ/hacker-scripts
简介:基于真实故事写的一些脚本文件,比如自动煮咖啡,自动发短信请假等
</code></pre><h2 id="material-design-lite"><a href="#material-design-lite" class="headerlink" title="material-design-lite"></a>material-design-lite</h2><pre><code>分类:界面设计
链接:https://github.com/google/material-design-lite
简介:谷歌出品的material风格的css库
</code></pre><h2 id="brackets"><a href="#brackets" class="headerlink" title="brackets"></a>brackets</h2><pre><code>分类:编辑器
链接:https://github.com/adobe/brackets
简介:adobe出品的基于web技术的编辑器
</code></pre><h2 id="flask"><a href="#flask" class="headerlink" title="flask"></a>flask</h2><pre><code>分类:开发依赖库
链接:https://github.com/pallets/flask
简介:基于python的web开发框架
</code></pre><h2 id="materialize"><a href="#materialize" class="headerlink" title="materialize"></a>materialize</h2><pre><code>分类:界面设计
链接:https://github.com/Dogfalo/materialize
简介:material风格的css库
</code></pre><h2 id="jQuery-File-Upload"><a href="#jQuery-File-Upload" class="headerlink" title="jQuery-File-Upload"></a>jQuery-File-Upload</h2><pre><code>分类:开发依赖库
链接:https://github.com/blueimp/jQuery-File-Upload
简介:基于jquery的文件上传库
</code></pre><h2 id="gulp"><a href="#gulp" class="headerlink" title="gulp"></a>gulp</h2><pre><code>分类:前端构建工具
链接:https://github.com/gulpjs/gulp
简介:流式的前端构建工具
</code></pre><h2 id="youtube-dl"><a href="#youtube-dl" class="headerlink" title="youtube-dl"></a>youtube-dl</h2><pre><code>分类:通用工具
链接:https://github.com/rg3/youtube-dl
简介:通过命令行下载Youtebe等各大视频网站的视频。
</code></pre><h2 id="normalize-css"><a href="#normalize-css" class="headerlink" title="normalize.css"></a>normalize.css</h2><pre><code>分类:界面设计
链接:https://github.com/necolas/normalize.css
简介:标准化各个浏览器的默认css属性
</code></pre><h2 id="backbone"><a href="#backbone" class="headerlink" title="backbone"></a>backbone</h2><pre><code>分类:前端框架
链接:https://github.com/jashkenas/backbone
简介:前端的MVC框架
</code></pre><h2 id="material-ui"><a href="#material-ui" class="headerlink" title="material-ui"></a>material-ui</h2><pre><code>分类:界面设计
链接:https://github.com/callemall/material-ui
简介:实现了Material风格的react组件
</code></pre><h2 id="diango"><a href="#diango" class="headerlink" title="diango"></a>diango</h2><pre><code>分类:后端框架
链接:https://github.com/django/django
简介:基于python的后端框架
</code></pre><h2 id="foundation-sites"><a href="#foundation-sites" class="headerlink" title="foundation-sites"></a>foundation-sites</h2><pre><code>分类:界面设计
链接:https://github.com/zurb/foundation-sites
简介:响应式布局的css库
</code></pre><h2 id="yarn"><a href="#yarn" class="headerlink" title="yarn"></a>yarn</h2><pre><code>分类:程序员辅助工具
链接:https://github.com/yarnpkg/yarn
简介:node.js的依赖管理工具,用来替代npm
</code></pre><h2 id="requests"><a href="#requests" class="headerlink" title="requests"></a>requests</h2><pre><code>分类:后端依赖库
链接:https://github.com/requests/requests
简介:基于python的http请求库
</code></pre><h2 id="RxJava"><a href="#RxJava" class="headerlink" title="RxJava"></a>RxJava</h2><pre><code>分类:后端依赖库
链接:https://github.com/ReactiveX/RxJava
简介:基于java的异步调用库
</code></pre><h2 id="angular"><a href="#angular" class="headerlink" title="angular"></a>angular</h2><pre><code>分类:前端框架
链接:https://github.com/angular/angular
简介:用于构建web应用的前端框架
</code></pre><h2 id="Apllo-11"><a href="#Apllo-11" class="headerlink" title="Apllo-11"></a>Apllo-11</h2><pre><code>分类:教育培训
链接:https://github.com/chrislgarry/Apollo-11
简介:阿波罗11号的源码
</code></pre><h2 id="lodash"><a href="#lodash" class="headerlink" title="lodash"></a>lodash</h2><pre><code>分类:前端开发库
链接:https://github.com/lodash/lodash
简介:基于js的工具辅助库,高性能,模块化
</code></pre><h2 id="Alamofire"><a href="#Alamofire" class="headerlink" title="Alamofire"></a>Alamofire</h2><pre><code>分类:开发依赖库
链接:https://github.com/Alamofire/Alamofire
简介:ios平台的基于swift的http请求库
</code></pre><h2 id="redis"><a href="#redis" class="headerlink" title="redis"></a>redis</h2><pre><code>分类:数据库
链接:https://github.com/antirez/redis
简介:高性能的缓存数据库
</code></pre><h2 id="kubernetes"><a href="#kubernetes" class="headerlink" title="kubernetes"></a>kubernetes</h2><pre><code>分类:容器技术
链接:https://github.com/kubernetes/kubernetes
简介:Google出品的工业级集群调度和管理技术
</code></pre><h2 id="ansible"><a href="#ansible" class="headerlink" title="ansible"></a>ansible</h2><pre><code>分类:部署运维
链接:https://github.com/ansible/ansible
简介:自动化部署运维的工具
</code></pre><h2 id="lantern"><a href="#lantern" class="headerlink" title="lantern"></a>lantern</h2><pre><code>分类:辅助工具
链接:https://github.com/getlantern/lantern
简介:免费的翻墙工具
</code></pre><h2 id="awesome-android-ui"><a href="#awesome-android-ui" class="headerlink" title="awesome-android-ui"></a>awesome-android-ui</h2><pre><code>分类:界面设计
链接:https://github.com/wasabeef/awesome-android-ui
简介:不错的android界面库合集
</code></pre><h2 id="papers-we-love"><a href="#papers-we-love" class="headerlink" title="papers-we-love"></a>papers-we-love</h2><pre><code>分类:教育培训
链接:https://github.com/papers-we-love/papers-we-love
简介:计算机科学社区里值得阅读和讨论的论文
</code></pre><h2 id="awesome-machine-learning"><a href="#awesome-machine-learning" class="headerlink" title="awesome-machine-learning"></a>awesome-machine-learning</h2><pre><code>分类:教育培训
链接:https://github.com/josephmisiti/awesome-machine-learning
简介:机器学习框架、库、软件合集
</code></pre><h2 id="neovim"><a href="#neovim" class="headerlink" title="neovim"></a>neovim</h2><pre><code>分类:编辑器
链接:https://github.com/neovim/neovim
简介:基于vim改进的编辑器,增强克可扩展性和易用性
</code></pre><h2 id="elasticsearch"><a href="#elasticsearch" class="headerlink" title="elasticsearch"></a>elasticsearch</h2><pre><code>分类:搜索引擎
链接:https://github.com/elastic/elasticsearch
简介:开源的提供restful接口的搜索引擎
</code></pre><h2 id="nylas-mail"><a href="#nylas-mail" class="headerlink" title="nylas-mail"></a>nylas-mail</h2><pre><code>分类:通用工具
链接:https://github.com/nylas/nylas-mail
简介:基于web技术构建的桌面邮箱应用
</code></pre><h2 id="android-open-project"><a href="#android-open-project" class="headerlink" title="android-open-project"></a>android-open-project</h2><pre><code>分类:教育培训
链接:https://github.com/Trinea/android-open-project
简介:android开源项目合集
</code></pre><h2 id="Ghost"><a href="#Ghost" class="headerlink" title="Ghost"></a>Ghost</h2><pre><code>分类:通用工具
链接:https://github.com/TryGhost/Ghost
简介:简单而强大的博客发布平台
</code></pre><h2 id="angular-styleguide"><a href="#angular-styleguide" class="headerlink" title="angular-styleguide"></a>angular-styleguide</h2><pre><code>分类:教育培训
链接:https://github.com/johnpapa/angular-styleguide
简介:angular的代码风格指南
</code></pre><h2 id="react-router"><a href="#react-router" class="headerlink" title="react-router"></a>react-router</h2><pre><code>分类:前端依赖库
链接:https://github.com/ReactTraining/react-router
简介:针对react的声明式路由
</code></pre><h2 id="Typescript"><a href="#Typescript" class="headerlink" title="Typescript"></a>Typescript</h2><pre><code>分类:开发语言
链接:https://github.com/Microsoft/TypeScript
简介:微软出品的开发语言,可以编译成javascriipt
</code></pre><h2 id="developer-roadmap"><a href="#developer-roadmap" class="headerlink" title="developer-roadmap"></a>developer-roadmap</h2><pre><code>分类:教育培训
链接:https://github.com/kamranahmedse/developer-roadmap
简介:在2017年成为一名web开发者的成长指南
</code></pre><h2 id="phantomjs"><a href="#phantomjs" class="headerlink" title="phantomjs"></a>phantomjs</h2><pre><code>分类:通用工具
链接:https://github.com/ariya/phantomjs
简介:脚本模拟浏览器,基于webkit内核
</code></pre><h2 id="github-cheat-sheet"><a href="#github-cheat-sheet" class="headerlink" title="github-cheat-sheet"></a>github-cheat-sheet</h2><pre><code>分类:教育培训
链接:https://github.com/tiimgreen/github-cheat-sheet
简介:列举了git和github的酷功能
</code></pre><h2 id="computer-science"><a href="#computer-science" class="headerlink" title="computer-science"></a>computer-science</h2><pre><code>分类:教育培训
链接:https://github.com/open-source-society/computer-science
简介:如何自学成为一名计算机科学家
</code></pre><h2 id="rust"><a href="#rust" class="headerlink" title="rust"></a>rust</h2><pre><code>分类:开发语言
链接:https://github.com/rust-lang/rust
简介:mozilla出品的系统编程语言
</code></pre><h2 id="json-server"><a href="#json-server" class="headerlink" title="json-server"></a>json-server</h2><pre><code>分类:开发工具
链接:https://github.com/typicode/json-server
简介:30秒模拟一个restful API
</code></pre><h2 id="frontend-dev-bookmarks"><a href="#frontend-dev-bookmarks" class="headerlink" title="frontend-dev-bookmarks"></a>frontend-dev-bookmarks</h2><pre><code>分类:教育培训
链接:https://github.com/dypsilon/frontend-dev-bookmarks
简介:前端开发者常用的资源
</code></pre><h2 id="discourse"><a href="#discourse" class="headerlink" title="discourse"></a>discourse</h2><pre><code>分类:通用工具
链接:https://github.com/discourse/discourse
简介:基于ROR开发的社区讨论系统
</code></pre><h2 id="retrofit"><a href="#retrofit" class="headerlink" title="retrofit"></a>retrofit</h2><pre><code>分类:开发依赖库
链接:https://github.com/square/retrofit
简介:square开发的类型安全的http库,可以在android和java平台运行
</code></pre><h2 id="netdata"><a href="#netdata" class="headerlink" title="netdata"></a>netdata</h2><pre><code>分类:系统工具
链接:https://github.com/firehol/netdata
简介:一款实时监控机器cpu、内存等各项指标的应用
</code></pre><h2 id="async"><a href="#async" class="headerlink" title="async"></a>async</h2><pre><code>分类:开发依赖库
链接:https://github.com/caolan/async
简介:在node.js和浏览器上执行异步代码的工具
</code></pre><h2 id="babel"><a href="#babel" class="headerlink" title="babel"></a>babel</h2><pre><code>分类:编译器
链接:https://github.com/babel/babel
简介:将新标准的js语法(ES2017、ES2016)等编译成ES3等能直接在浏览器中执行的语法
</code></pre><h2 id="todomvc"><a href="#todomvc" class="headerlink" title="todomvc"></a>todomvc</h2><pre><code>分类:教育培训
链接:https://github.com/tastejs/todomvc
简介:使用各种前端框架实现的一个todo应用,帮你选择合适的框架
</code></pre><h2 id="big-list-of-naughty-strings"><a href="#big-list-of-naughty-strings" class="headerlink" title="big-list-of-naughty-strings"></a>big-list-of-naughty-strings</h2><pre><code>分类:辅助工具
链接:https://github.com/minimaxir/big-list-of-naughty-strings
简介:各种奇怪的字符串,用于测试系统是否在输入这些字符串后正常
</code></pre><h2 id="awesome-go"><a href="#awesome-go" class="headerlink" title="awesome-go"></a>awesome-go</h2><pre><code>分类:教育培训
链接:https://github.com/avelino/awesome-go
简介:go相关资料合集
</code></pre><h2 id="scrapy"><a href="#scrapy" class="headerlink" title="scrapy"></a>scrapy</h2><pre><code>分类:爬虫
链接:https://github.com/scrapy/scrapy
简介:python实现的高性能的爬虫
</code></pre><h2 id="chosen"><a href="#chosen" class="headerlink" title="chosen"></a>chosen</h2><pre><code>分类:界面设计
链接:https://github.com/harvesthq/chosen
简介:让web上的选择框更美观,更友好
</code></pre><h2 id="underscore"><a href="#underscore" class="headerlink" title="underscore"></a>underscore</h2><pre><code>分类:前端工具
链接:https://github.com/jashkenas/underscore
简介:javascript的常用工具库
</code></pre><h2 id="axios"><a href="#axios" class="headerlink" title="axios"></a>axios</h2><pre><code>分类:开发依赖库
链接:https://github.com/mzabriskie/axios
简介:基于Promise的http请求库,可以在浏览器和node.js上运行
</code></pre><h2 id="Modernizr"><a href="#Modernizr" class="headerlink" title="Modernizr"></a>Modernizr</h2><pre><code>分类:开发依赖库
链接:https://github.com/Modernizr/Modernizr
简介:检测浏览器的html5和css3特性是否可用
</code></pre><h2 id="select2"><a href="#select2" class="headerlink" title="select2"></a>select2</h2><pre><code>分类:前端工具
链接:https://github.com/select2/select2
简介:基于jquery的库,用于替换web上原生的选择框select
</code></pre><h2 id="es6features"><a href="#es6features" class="headerlink" title="es6features"></a>es6features</h2><pre><code>分类:教育培训
链接:https://github.com/lukehoban/es6features
简介:列举了ES6的功能特征
</code></pre><h2 id="okhttp"><a href="#okhttp" class="headerlink" title="okhttp"></a>okhttp</h2><pre><code>分类:开发依赖库
链接:https://github.com/square/okhttp
简介:http和http2请求的客户端,基于java,可以在android和java平台运行
</code></pre><h2 id="awesome-ios"><a href="#awesome-ios" class="headerlink" title="awesome-ios"></a>awesome-ios</h2><pre><code>分类:教育培训
链接:https://github.com/vsouza/awesome-ios
简介:关于ios开发的技术资料合集
</code></pre><h2 id="hackathon-starter"><a href="#hackathon-starter" class="headerlink" title="hackathon-starter"></a>hackathon-starter</h2><pre><code>分类:教育培训
链接:https://github.com/sahat/hackathon-starter
简介:基于node.js快速开发一个web应用的样板应用,做了诸如登陆等方面的工作
</code></pre><h2 id="markdown-here"><a href="#markdown-here" class="headerlink" title="markdown-here"></a>markdown-here</h2><pre><code>分类:通用工具
链接:https://github.com/adam-p/markdown-here
简介:chrome插件,在gmail等邮箱里写邮件的时候,使用markdown格式,然后自动转成可读性强的格式
</code></pre><h2 id="awesome-react"><a href="#awesome-react" class="headerlink" title="awesome-react"></a>awesome-react</h2><pre><code>分类:教育培训
链接:https://github.com/enaqx/awesome-react
简介:关于react的资料合集
</code></pre><h2 id="nvm"><a href="#nvm" class="headerlink" title="nvm"></a>nvm</h2><pre><code>分类:开发工具
链接:https://github.com/creationix/nvm
简介:安装多个node.js版本,并快速切换
</code></pre><h2 id="awesome-courses"><a href="#awesome-courses" class="headerlink" title="awesome-courses"></a>awesome-courses</h2><pre><code>分类:教育培训
链接:https://github.com/prakhar1989/awesome-courses
简介:优秀的计算机课程合集
</code></pre><h2 id="java-design-patterns"><a href="#java-design-patterns" class="headerlink" title="java-design-patterns"></a>java-design-patterns</h2><pre><code>分类:教育培训
链接:https://github.com/iluwatar/java-design-patterns
简介:java实现的多种设计模式
</code></pre><h2 id="gitlabhq"><a href="#gitlabhq" class="headerlink" title="gitlabhq"></a>gitlabhq</h2><pre><code>分类:开发工具
链接:https://github.com/gitlabhq/gitlabhq
简介:git托管服务源码
</code></pre><h2 id="gogs"><a href="#gogs" class="headerlink" title="gogs"></a>gogs</h2><pre><code> 分类:开发工具
链接:https://github.com/gogits/gogs
简介:可以自己搭建的git托管服务,对标gitlab
</code></pre><h2 id="fullPage-js"><a href="#fullPage-js" class="headerlink" title="fullPage.js"></a>fullPage.js</h2><pre><code>分类:前端依赖库
链接:https://github.com/alvarotrigo/fullPage.js
简介:创建整屏滚动的效果
</code></pre><h2 id="pm2"><a href="#pm2" class="headerlink" title="pm2"></a>pm2</h2><pre><code>分类:开发工具
链接:https://github.com/Unitech/pm2
简介:node.js应用的守护进程
</code></pre><h2 id="rethinkdb"><a href="#rethinkdb" class="headerlink" title="rethinkdb"></a>rethinkdb</h2><pre><code>分类:数据库
链接:https://github.com/rethinkdb/rethinkdb
简介:为实时的web应用开发的数据库
</code></pre><h2 id="immutable-js"><a href="#immutable-js" class="headerlink" title="immutable-js"></a>immutable-js</h2><pre><code>分类:前端依赖库
链接:https://github.com/facebook/immutable-js
简介:让数据结构里的数据不可变,增强性能和易用性
</code></pre><h2 id="HEAD"><a href="#HEAD" class="headerlink" title="HEAD"></a>HEAD</h2><pre><code> 分类:教育培训
链接:https://github.com/joshbuchea/HEAD
简介:<head>标签里应该有的内容
</code></pre><h2 id="scikit-learn"><a href="#scikit-learn" class="headerlink" title="scikit-learn"></a>scikit-learn</h2><pre><code>分类:教育培训
链接:https://github.com/scikit-learn/scikit-learn
简介:基于python的机器学习
</code></pre><h2 id="awesome-awesomeness"><a href="#awesome-awesomeness" class="headerlink" title="awesome-awesomeness"></a>awesome-awesomeness</h2><pre><code>分类:教育培训
链接:https://github.com/bayandin/awesome-awesomeness
简介:awesome-\*型集合的集合
</code></pre><h2 id="awesome-public-datasets"><a href="#awesome-public-datasets" class="headerlink" title="awesome-public-datasets"></a>awesome-public-datasets</h2><pre><code>分类:教育培训
链接:https://github.com/caesar0301/awesome-public-datasets
简介:公开的数据集合的合集,类似awesome-awesomeness
</code></pre><h2 id="android-architecture"><a href="#android-architecture" class="headerlink" title="android-architecture"></a>android-architecture</h2><pre><code>分类:教育培训
链接:https://github.com/googlesamples/android-architecture
简介:介绍android应用的架构的示范代码
</code></pre><h2 id="certbot"><a href="#certbot" class="headerlink" title="certbot"></a>certbot</h2><pre><code>分类:开发工具
链接:https://github.com/certbot/certbot
简介:自动为你的服务启用https
</code></pre><h2 id="Leaflet"><a href="#Leaflet" class="headerlink" title="Leaflet"></a>Leaflet</h2><pre><code>分类:前端开发库
链接:https://github.com/Leaflet/Leaflet
简介:实现可交互的地图,对手机友好
</code></pre><h2 id="slick"><a href="#slick" class="headerlink" title="slick"></a>slick</h2><pre><code>分类:前端开发库
链接:https://github.com/kenwheeler/slick
简介:轮播图插件
</code></pre><h2 id="android-guides"><a href="#android-guides" class="headerlink" title="android_guides"></a>android_guides</h2><pre><code>分类:教育培训
链接:https://github.com/codepath/android_guides
简介:针对android学习者的入门教程
</code></pre><h2 id="free-programming-books-zh-CN"><a href="#free-programming-books-zh-CN" class="headerlink" title="free-programming-books-zh_CN"></a>free-programming-books-zh_CN</h2><pre><code>分类:教育培训
链接:https://github.com/justjavac/free-programming-books-zh_CN
简介:免费的计算机编程类中文书籍
</code></pre><h2 id="echarts"><a href="#echarts" class="headerlink" title="echarts"></a>echarts</h2><pre><code>分类:界面设计
链接:https://github.com/ecomfe/echarts
简介:基于web的数据可视化库
</code></pre><h2 id="public-apis"><a href="#public-apis" class="headerlink" title="public-apis"></a>public-apis</h2><pre><code>分类:教育培训
链接:https://github.com/toddmotto/public-apis
简介:用于web开发的开放的api的合集
</code></pre><h2 id="caffe"><a href="#caffe" class="headerlink" title="caffe"></a>caffe</h2><pre><code>分类:机器学习
链接:https://github.com/BVLC/caffe
简介:高速的机器学习框架
</code></pre><h2 id="bootstrap-material-design"><a href="#bootstrap-material-design" class="headerlink" title="bootstrap-material-design"></a>bootstrap-material-design</h2><pre><code>分类:界面设计
链接:https://github.com/FezVrasta/bootstrap-material-design
简介:Bootstarp的Material风格的主题
</code></pre><h2 id="pdf-js"><a href="#pdf-js" class="headerlink" title="pdf.js"></a>pdf.js</h2><pre><code>分类:前端开发库
链接:https://github.com/mozilla/pdf.js
简介:使用javascript渲染pdf
</code></pre><h2 id="shadowsocks"><a href="#shadowsocks" class="headerlink" title="shadowsocks"></a>shadowsocks</h2><pre><code>分类:辅助工具
链接:https://github.com/shadowsocks/shadowsocks
简介:用来翻墙
</code></pre><h2 id="ember-js"><a href="#ember-js" class="headerlink" title="ember.js"></a>ember.js</h2><pre><code>分类:前端框架
链接:https://github.com/emberjs/ember.js
简介:用来创建强大的web应用的前端框架
</code></pre><h2 id="SDWebImage"><a href="#SDWebImage" class="headerlink" title="SDWebImage"></a>SDWebImage</h2><pre><code>分类:开发依赖库
链接:https://github.com/rs/SDWebImage
简介:ios平台异步下载图片的库,支持缓存
</code></pre><h2 id="git"><a href="#git" class="headerlink" title="git"></a>git</h2><pre><code>分类:辅助工具
链接:https://github.com/git/git
简介:代码管理工具
</code></pre><h2 id="pop"><a href="#pop" class="headerlink" title="pop"></a>pop</h2><pre><code>分类:界面设计
链接:https://github.com/facebook/pop
简介:ios平台的动画交互效果库
</code></pre><h2 id="protobuf"><a href="#protobuf" class="headerlink" title="protobuf"></a>protobuf</h2><pre><code>分类:数据格式
链接:https://github.com/google/protobuf
简介:谷歌出品的数据交换格式,性能高
</code></pre><h2 id="polymer"><a href="#polymer" class="headerlink" title="polymer"></a>polymer</h2><pre><code>分类:前端框架
链接:https://github.com/Polymer/polymer
简介:使用web组件构建web应用
</code></pre><h2 id="clipboard-js"><a href="#clipboard-js" class="headerlink" title="clipboard.js"></a>clipboard.js</h2><pre><code>分类:开发依赖库
链接:https://github.com/zenorocha/clipboard.js
简介:无需flash实现在web上一键复制
</code></pre><h2 id="hugo"><a href="#hugo" class="headerlink" title="hugo"></a>hugo</h2><pre><code>分类:博客生成器
链接:https://github.com/spf13/hugo
简介:基于go实现的静态网站生成器
</code></pre><h2 id="gitflow"><a href="#gitflow" class="headerlink" title="gitflow"></a>gitflow</h2><pre><code>分类:开发工具
链接:https://github.com/nvie/gitflow
简介:针对gitflow开发模型实现的git的扩展,用于管理大型项目的开发过程
</code></pre><h2 id="awesome-nodejs"><a href="#awesome-nodejs" class="headerlink" title="awesome-nodejs"></a>awesome-nodejs</h2><pre><code>分类:教育培训
链接:https://github.com/sindresorhus/awesome-nodejs
简介:关于nodejs资料的合集
</code></pre><h2 id="ReactiveCocoa"><a href="#ReactiveCocoa" class="headerlink" title="ReactiveCocoa"></a>ReactiveCocoa</h2><pre><code>分类:开发依赖库
链接:https://github.com/ReactiveCocoa/ReactiveCocoa
简介:ios平台的响应式编程框架,可以统一ios开发中的各种消息传递机制
</code></pre><h2 id="sails"><a href="#sails" class="headerlink" title="sails"></a>sails</h2><pre><code>分类:开发框架
链接:https://github.com/balderdashy/sails
简介:基于node.js的实时web框架
</code></pre><h2 id="system-design-primer"><a href="#system-design-primer" class="headerlink" title="system-design-primer"></a>system-design-primer</h2><pre><code>分类:教育培训
链接:https://github.com/donnemartin/system-design-primer
简介:学习如何设计大型应用
</code></pre><h2 id="devise"><a href="#devise" class="headerlink" title="devise"></a>devise</h2><pre><code>分类:开发依赖库
链接:https://github.com/plataformatec/devise
简介:基于ROR的用户认证模块
</code></pre><h2 id="hyper"><a href="#hyper" class="headerlink" title="hyper"></a>hyper</h2><pre><code>分类:命令行
链接:https://github.com/zeit/hyper
简介:基于web技术构建的命令行工具
</code></pre><h2 id="skrollr"><a href="#skrollr" class="headerlink" title="skrollr"></a>skrollr</h2><pre><code>分类:前端依赖库
链接:https://github.com/Prinzhorn/skrollr
简介:视差滚动库,无需jquery,但是已经不维护了
</code></pre><h2 id="design-patterns-for-humans"><a href="#design-patterns-for-humans" class="headerlink" title="design-patterns-for-humans"></a>design-patterns-for-humans</h2><pre><code>分类:教育培训
链接:https://github.com/kamranahmedse/design-patterns-for-humans
简介:设计模式的解释
</code></pre><h2 id="awesome-osx-command-line"><a href="#awesome-osx-command-line" class="headerlink" title="awesome-osx-command-line"></a>awesome-osx-command-line</h2><pre><code>分类:教育培训
链接:https://github.com/herrbischoff/awesome-osx-command-line
简介:在osx上,通过命令行可以做到的一些事
</code></pre><h2 id="serverless"><a href="#serverless" class="headerlink" title="serverless"></a>serverless</h2><pre><code>分类:开发框架
链接:https://github.com/serverless/serverless
简介:基于AWS Lambda,Azure Function等实现的无后端服务框架
</code></pre><h2 id="og-aws"><a href="#og-aws" class="headerlink" title="og-aws"></a>og-aws</h2><pre><code>分类:教育培训
链接:https://github.com/open-guides/og-aws
简介:关于AWS的入门指导
</code></pre><h2 id="the-swift-programming-language-in-chinese"><a href="#the-swift-programming-language-in-chinese" class="headerlink" title="the-swift-programming-language-in-chinese"></a>the-swift-programming-language-in-chinese</h2><pre><code>分类:教育培训
链接:https://github.com/numbbbbb/the-swift-programming-language-in-chinese
简介:中文版Swift教程
</code></pre><h2 id="dotfiles"><a href="#dotfiles" class="headerlink" title="dotfiles"></a>dotfiles</h2><pre><code>分类:教育培训
链接:https://github.com/mathiasbynens/dotfiles
简介:macOS上的各种不可见文件,可以参考别人的配置进行自己电脑的配置
</code></pre><h2 id="pure"><a href="#pure" class="headerlink" title="pure"></a>pure</h2><pre><code>分类:界面设计
链接:https://github.com/yahoo/pure
简介:yahoo出品的前端设计框架
</code></pre><h2 id="Hover"><a href="#Hover" class="headerlink" title="Hover"></a>Hover</h2><pre><code>分类:界面设计
链接:https://github.com/IanLunn/Hover
简介:通过css实现的各种界面hover效果的合集
</code></pre><h2 id="guava"><a href="#guava" class="headerlink" title="guava"></a>guava</h2><pre><code>分类:后端依赖库
链接:https://github.com/google/guava
简介:Google开发的基于java的一些一系列核心库
</code></pre><h2 id="AdminLTE"><a href="#AdminLTE" class="headerlink" title="AdminLTE"></a>AdminLTE</h2><pre><code>分类:界面设计
链接:https://github.com/almasaeed2010/AdminLTE
简介:基于Bootstrap的管理员控制主题
</code></pre><h2 id="awesome-vue"><a href="#awesome-vue" class="headerlink" title="awesome-vue"></a>awesome-vue</h2><pre><code>分类:教育培训
链接:https://github.com/vuejs/awesome-vue
简介:关于vue.js的一系列资料和框架等
</code></pre><h2 id="hexo"><a href="#hexo" class="headerlink" title="hexo"></a>hexo</h2><pre><code>分类:博客生成器
链接:https://github.com/hexojs/hexo
简介:基于node.js的boke生成器
</code></pre><h2 id="web-starter-kit"><a href="#web-starter-kit" class="headerlink" title="web-starter-kit"></a>web-starter-kit</h2><pre><code>分类:辅助工具
链接:https://github.com/google/web-starter-kit
简介:google出品的进行web开发的样板项目
</code></pre><h2 id="video-js"><a href="#video-js" class="headerlink" title="video.js"></a>video.js</h2><pre><code>分类:前端依赖库
链接:https://github.com/videojs/video.js
简介:开源的基于html5和Flash的视频播放器
</code></pre><h2 id="security-guide-for-developer"><a href="#security-guide-for-developer" class="headerlink" title="security-guide-for-developer"></a>security-guide-for-developer</h2><pre><code>分类:教育培训
链接:https://github.com/FallibleInc/security-guide-for-developers
简介:使用的开发人员安全须知
</code></pre><h2 id="butterknife"><a href="#butterknife" class="headerlink" title="butterknife"></a>butterknife</h2><pre><code>分类:开发依赖库
链接:https://github.com/JakeWharton/butterknife
简介:通过注解的方式给Android上的view绑定方法等
</code></pre><h2 id="hammer-js"><a href="#hammer-js" class="headerlink" title="hammer.js"></a>hammer.js</h2><pre><code>分类:前端依赖库
链接:https://github.com/hammerjs/hammer.js
简介:前端手势库
</code></pre><h2 id="huginn"><a href="#huginn" class="headerlink" title="huginn"></a>huginn</h2><pre><code>分类:辅助工具
链接:https://github.com/huginn/huginn
简介:监控代理,自动完成一些基于web的任务,可以自己部署的ifttt服务
</code></pre><h2 id="RxJS"><a href="#RxJS" class="headerlink" title="RxJS"></a>RxJS</h2><pre><code>分类:前端框架
链接:https://github.com/Reactive-Extensions/RxJS
简介:基于javascript的交互框架
</code></pre><h2 id="fastlane"><a href="#fastlane" class="headerlink" title="fastlane"></a>fastlane</h2><pre><code>分类:辅助工具
链接:https://github.com/fastlane/fastlane
简介:最方便的自动构建和发布ios、android应用的方案
</code></pre><h2 id="grafana"><a href="#grafana" class="headerlink" title="grafana"></a>grafana</h2><pre><code>分类:辅助工具
链接:https://github.com/grafana/grafana
简介:针对Graphite, InfluxDB & Prometheus的分析和查看程序
</code></pre><h2 id="syncthing"><a href="#syncthing" class="headerlink" title="syncthing"></a>syncthing</h2><pre><code>分类:辅助工具
链接:https://github.com/syncthing/syncthing
简介:开源的文件同步工具
</code></pre><h2 id="upterm"><a href="#upterm" class="headerlink" title="upterm"></a>upterm</h2><pre><code>分类:命令行
链接:https://github.com/railsware/upterm
简介:开源的命令行工具
</code></pre>
</div>
<footer class="article-footer">
<a data-url="http://arnoldnuo.github.io/2017/06/05/github高排名项目简介(1-18页)/" data-id="cj3oj0nw80001ryun6e2ehz7v" class="article-share-link">Partager</a>
</footer>
</div>
</article>
</section>
<aside id="sidebar">
<div class="widget-wrap">
<h3 class="widget-title">Archives</h3>
<div class="widget">
<ul class="archive-list"><li class="archive-list-item"><a class="archive-list-link" href="/archives/2017/06/">June 2017</a></li></ul>
</div>
</div>
<div class="widget-wrap">
<h3 class="widget-title">Articles récents</h3>
<div class="widget">
<ul>
<li>
<a href="/2017/06/06/github高排名项目简介(19-25页)/">github高排名项目简介(19-25页)</a>
</li>
<li>
<a href="/2017/06/05/github高排名项目简介(1-18页)/">github高排名项目简介(1-18页)</a>
</li>
</ul>
</div>
</div>
</aside>
</div>
<footer id="footer">
<div class="outer">
<div id="footer-info" class="inner">
© 2017 Arnoldnuo<br>
Propulsé by <a href="http://hexo.io/" target="_blank">Hexo</a>
</div>
</div>
</footer>
</div>
<nav id="mobile-nav">
<a href="/" class="mobile-nav-link">Home</a>
<a href="/archives" class="mobile-nav-link">Archives</a>
</nav>
<script src="//ajax.googleapis.com/ajax/libs/jquery/2.0.3/jquery.min.js"></script>
<link rel="stylesheet" href="/fancybox/jquery.fancybox.css">
<script src="/fancybox/jquery.fancybox.pack.js"></script>
<script src="/js/script.js"></script>
</div>
</body>
</html>