forked from GrowingGit/GitHub-Chinese-Top-Charts
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathREADME-Part2.md
1478 lines (1440 loc) · 308 KB
/
README-Part2.md
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
# 一个README容纳不下,第二个README接上
<br/>
## 目录
- 总榜
- [All Language](https://github.com/kon9chunkit/GitHub-Chinese-Top-Charts#All-Language)
- 分榜
- [Java](https://github.com/kon9chunkit/GitHub-Chinese-Top-Charts#Java)
- [Python](https://github.com/kon9chunkit/GitHub-Chinese-Top-Charts#Python)
- [Go](hhttps://github.com/kon9chunkit/GitHub-Chinese-Top-Charts#Go)
- [PHP](https://github.com/kon9chunkit/GitHub-Chinese-Top-Charts#PHP)
- [JavaScript](https://github.com/kon9chunkit/GitHub-Chinese-Top-Charts#JavaScript)
- [Vue](https://github.com/kon9chunkit/GitHub-Chinese-Top-Charts#Vue)
- [CSS](https://github.com/kon9chunkit/GitHub-Chinese-Top-Charts#CSS)
- [HTML](https://github.com/kon9chunkit/GitHub-Chinese-Top-Charts#HTML)
- [Objective-C](https://github.com/kon9chunkit/GitHub-Chinese-Top-Charts#Objective-C)
- [Swift](https://github.com/kon9chunkit/GitHub-Chinese-Top-Charts#Swift)
- [Jupyter Notebook](#Jupyter-Notebook)
- [Shell](#Shell)
- [C](#C)
- [C++](#C-1)
- [C#](#C-2)
- [Dart](#Dart)
- [TeX](#TeX)
<br/>
## Jupyter Notebook
| # | Repository | Description | Stars | Language | Updated |
| ---- | ------------------------------------------------------------ | ------------------------------------------------------------ | ----- | ---------------- | ------- |
| 1 | [jackfrued/Python-100-Days](https://github.com/jackfrued/Python-100-Days) | Python - 100天从新手到大师 | 58.0k | Jupyter Notebook | 08/28 |
| 2 | [MLEveryday/100-Days-Of-ML-Code](https://github.com/MLEveryday/100-Days-Of-ML-Code) | 100-Days-Of-ML-Code中文版 | 13.2k | Jupyter Notebook | 08/22 |
| 3 | [zergtant/pytorch-handbook](https://github.com/zergtant/pytorch-handbook) | pytorch handbook是一本开源的书籍,目标是帮助那些希望和使用PyTorch进行深度学习开发和研究的朋友快速入门,其中包含的Pytorch教程全部通过测试保证可以成功运行 | 7.0k | Jupyter Notebook | 08/21 |
| 4 | [fengdu78/lihang-code](https://github.com/fengdu78/lihang-code) | 《统计学习方法》的代码实现 | 6.7k | Jupyter Notebook | 07/13 |
| 5 | [lijin-THU/notes-python](https://github.com/lijin-THU/notes-python) | 中文 Python 笔记 | 5.1k | Jupyter Notebook | 02/16 |
| 6 | [xianhu/LearnPython](https://github.com/xianhu/LearnPython) | 以撸代码的形式学习Python | 4.0k | Jupyter Notebook | 08/09 |
| 7 | [apachecn/Interview](https://github.com/apachecn/Interview) | Interview = 简历指南 + LeetCode + Kaggle | 4.0k | Jupyter Notebook | 08/31 |
| 8 | [xitu/tensorflow-docs](https://github.com/xitu/tensorflow-docs) | TensorFlow 最新官方文档中文版 | 3.5k | Jupyter Notebook | 04/17 |
| 9 | [czy36mengfei/tensorflow2_tutorials_chinese](https://github.com/czy36mengfei/tensorflow2_tutorials_chinese) | tensorflow2中文教程,持续更新(当前版本:tensorflow2.0),tag: tensorflow 2.0 tutorials | 2.8k | Jupyter Notebook | 05/13 |
| 10 | [roboticcam/machine-learning-notes](https://github.com/roboticcam/machine-learning-notes) | My continuously updated Machine Learning, Probabilistic Models and Deep Learning notes and demos (1000+ slides) 我不间断更新的机器学习,概率模型和深度学习的讲义(1000+页)和视频链接 | 2.7k | Jupyter Notebook | 09/01 |
| 11 | [Alfred1984/interesting-python](https://github.com/Alfred1984/interesting-python) | 有趣的Python爬虫和Python数据分析小项目(Some interesting Python crawlers and data analysis projects) | 2.3k | Jupyter Notebook | 07/24 |
| 12 | [dragen1860/TensorFlow-2.x-Tutorials](https://github.com/dragen1860/TensorFlow-2.x-Tutorials) | TensorFlow 2.x version's Tutorials and Examples, including CNN, RNN, GAN, Auto-Encoders, FasterRCNN, GPT, BERT examples, etc. TF 2.0版入门实例代码,实战教程。 | 1.5k | Jupyter Notebook | 08/28 |
| 13 | [SophonPlus/ChineseNlpCorpus](https://github.com/SophonPlus/ChineseNlpCorpus) | 搜集、整理、发布 中文 自然语言处理 语料/数据集,与 有志之士 共同 促进 中文 自然语言处理 的 发展。 | 1.5k | Jupyter Notebook | 01/29 |
| 14 | [Mikoto10032/DeepLearning](https://github.com/Mikoto10032/DeepLearning) | 深度学习入门教程&&优秀文章&&Deep Learning Tutorial | 1.4k | Jupyter Notebook | 08/21 |
| 15 | [YZHANG1270/Girls-In-AI](https://github.com/YZHANG1270/Girls-In-AI) | 免费学代码系列:小白python入门、数据分析data analyst、机器学习machine learning、深度学习deep learning、kaggle实战 | 1.3k | Jupyter Notebook | 07/05 |
| 16 | [ypwhs/captcha_break](https://github.com/ypwhs/captcha_break) | 验证码识别 | 1.2k | Jupyter Notebook | 07/22 |
| 17 | [fengdu78/Data-Science-Notes](https://github.com/fengdu78/Data-Science-Notes) | 数据科学的笔记以及资料搜集 | 991 | Jupyter Notebook | 08/20 |
| 18 | [MLEveryday/practicalAI-cn](https://github.com/MLEveryday/practicalAI-cn) | AI实战-practicalAI 中文版 | 954 | Jupyter Notebook | 05/03 |
| 19 | [MachineLP/Tensorflow-](https://github.com/MachineLP/Tensorflow-) | Tensorflow实战学习笔记、代码、机器学习进阶系列 | 895 | Jupyter Notebook | 05/10 |
| 20 | [hangsz/pandas-tutorial](https://github.com/hangsz/pandas-tutorial) | 适合初级到中级晋升者,有了体系之后就看熟练度了。 | 833 | Jupyter Notebook | 05/14 |
| 21 | [amusi/TensorFlow-From-Zero-To-One](https://github.com/amusi/TensorFlow-From-Zero-To-One) | 记录自己学习TensorFlow的笔记和代码 | 785 | Jupyter Notebook | 07/21 |
| 22 | [Rockyzsu/stock](https://github.com/Rockyzsu/stock) | 30天掌握量化交易 (持续更新) | 724 | Jupyter Notebook | 08/31 |
| 23 | [NLP-LOVE/ML-NLP](https://github.com/NLP-LOVE/ML-NLP) | 此项目是机器学习(Machine Learning)、深度学习(Deep Learning)、NLP面试中常考到的知识点和代码实现,也是作为一个算法工程师必会的理论基础知识。 | 696 | Jupyter Notebook | 08/31 |
| 24 | [fengdu78/machine_learning_beginner](https://github.com/fengdu78/machine_learning_beginner) | 机器学习初学者公众号作品 | 679 | Jupyter Notebook | 07/23 |
| 25 | [bighuang624/Andrew-Ng-Deep-Learning-notes](https://github.com/bighuang624/Andrew-Ng-Deep-Learning-notes) | 吴恩达《深度学习》系列课程笔记及代码 | 612 | Jupyter Notebook | 06/04 |
| 26 | [liuyubobobo/Play-with-Machine-Learning-Algorithms](https://github.com/liuyubobobo/Play-with-Machine-Learning-Algorithms) | Code of my MOOC Course <Play with Machine Learning Algorithms>. Updated contents and practices are also included. 我在慕课网上的课程《Python3 入门机器学习》示例代码。课程的更多更新内容及辅助练习也将逐步添加进这个代码仓。 | 608 | Jupyter Notebook | 06/09 |
| 27 | [wx-chevalier/AIDL-Series](https://github.com/wx-chevalier/AIDL-Series) | :books: Series of Artificial Intelligence & Deep Learning, including Mathematics Fundamentals, Python Practices, NLP Application, etc. 💫 人工智能与深度学习实战,数理统计篇 \| 机器学习篇 \| 深度学习篇 \| 自然语言处理篇 \| 工具实践 Scikit & Tensoflow & PyTorch 篇 \| 行业应用 & 课程笔记 | 589 | Jupyter Notebook | 08/31 |
| 28 | [chengstone/movie_recommender](https://github.com/chengstone/movie_recommender) | MovieLens based recommender system.使用MovieLens数据集训练的电影推荐系统。 | 587 | Jupyter Notebook | 03/31 |
| 29 | [Doraemonzzz/Learning-from-data](https://github.com/Doraemonzzz/Learning-from-data) | 记录Learning from data一书中的习题解答 | 520 | Jupyter Notebook | 05/15 |
| 30 | [Honlan/fullstack-data-engineer](https://github.com/Honlan/fullstack-data-engineer) | 全栈数据工程师养成攻略 | 467 | Jupyter Notebook | 03/05 |
| 31 | [chenghuige/wenzheng](https://github.com/chenghuige/wenzheng) | ai challenger 2018细粒度情感分类第一名解决方案,统一使用tensorflow和pytorch的一个框架 | 441 | Jupyter Notebook | 08/07 |
| 32 | [wangshub/tracking-my-phone](https://github.com/wangshub/tracking-my-phone) | 🕵️♀️ 监视我的手机:数据都去哪儿了? | 407 | Jupyter Notebook | 07/17 |
| 33 | [maplezzz/NTU_ML2017_Hung-yi-Lee_HW](https://github.com/maplezzz/NTU_ML2017_Hung-yi-Lee_HW) | NTU ML2017 Spring and Fall Homework Hung-yi_Li 李宏毅老师 机器学习课程作业 | 404 | Jupyter Notebook | 03/15 |
| 34 | [cedricporter/funcat](https://github.com/cedricporter/funcat) | Funcat 将同花顺、通达信、文华财经麦语言等的公式写法移植到了 Python 中。 | 402 | Jupyter Notebook | 08/04 |
| 35 | [xiaomaxiao/keras_ocr](https://github.com/xiaomaxiao/keras_ocr) | 用keras实现OCR定位、识别 | 378 | Jupyter Notebook | 04/21 |
| 36 | [Wasim37/deeplearning-assignment](https://github.com/Wasim37/deeplearning-assignment) | 吴恩达-深度学习-课后作业-答案与总结 | 345 | Jupyter Notebook | 05/11 |
| 37 | [chocoluffy/deep-recommender-system](https://github.com/chocoluffy/deep-recommender-system) | 深度学习在推荐系统中的应用及论文小结。 | 311 | Jupyter Notebook | 06/14 |
| 38 | [huaweicloud/ModelArts-Lab](https://github.com/huaweicloud/ModelArts-Lab) | ModelArts开发者交流互动平台,@ModelArts服务官网:https://www.huaweicloud.com/product/modelarts.html | 281 | Jupyter Notebook | 09/01 |
| 39 | [htygithub/machine-learning-python](https://github.com/htygithub/machine-learning-python) | 機器學習: Python | 279 | Jupyter Notebook | 02/01 |
| 40 | [dafish-ai/NTU-Machine-learning](https://github.com/dafish-ai/NTU-Machine-learning) | 台湾大学李宏毅老师机器学习 | 269 | Jupyter Notebook | 07/15 |
| 41 | [yenlung/Python-3-Data-Analysis-Basics](https://github.com/yenlung/Python-3-Data-Analysis-Basics) | Python 3 與數據分析概要 | 263 | Jupyter Notebook | 08/31 |
| 42 | [derekhe/mobike-crawler](https://github.com/derekhe/mobike-crawler) | 摩拜单车爬虫 | 259 | Jupyter Notebook | 04/22 |
| 43 | [chengstone/kaggle_criteo_ctr_challenge-](https://github.com/chengstone/kaggle_criteo_ctr_challenge-) | This is a kaggle challenge project called Display Advertising Challenge by CriteoLabs at 2014.这是2014年由CriteoLabs在kaggle上发起的广告点击率预估挑战项目。 | 250 | Jupyter Notebook | 03/31 |
| 44 | [MrLevo520/Mini-Python-Project](https://github.com/MrLevo520/Mini-Python-Project) | 用Python做些有趣的项目 | 244 | Jupyter Notebook | 03/01 |
| 45 | [huaxz1986/git_book](https://github.com/huaxz1986/git_book) | 教材对应的源码 | 236 | Jupyter Notebook | 01/25 |
| 46 | [wikke/Tianchi-Medical-LungTumorDetect](https://github.com/wikke/Tianchi-Medical-LungTumorDetect) | 天池医疗AI大赛[第一季]:肺部结节智能诊断 UNet/VGG/Inception/ResNet/DenseNet | 236 | Jupyter Notebook | 05/11 |
| 47 | [shibing624/python-tutorial](https://github.com/shibing624/python-tutorial) | python教程,包括:python基础、python进阶;常用机器学习库:numpy、scipy、sklearn、xgboost;深度学习库:keras、tensorflow、paddle、pytorch。 | 228 | Jupyter Notebook | 04/09 |
| 48 | [Parker-Lyu/TensorFLow-Learning](https://github.com/Parker-Lyu/TensorFLow-Learning) | B站上炼数成金的公开课笔记 | 224 | Jupyter Notebook | 08/24 |
| 49 | [Magic-Bubble/Zhihu](https://github.com/Magic-Bubble/Zhihu) | 知乎看山杯 第二名 解决方案 | 218 | Jupyter Notebook | 01/18 |
| 50 | [geektutu/interview-questions](https://github.com/geektutu/interview-questions) | 机器学习深度学习面试题笔试题(Machine learning Deep Learning Interview Questions) | 211 | Jupyter Notebook | 08/06 |
| 51 | [icoxfog417/baby-steps-of-rl-ja](https://github.com/icoxfog417/baby-steps-of-rl-ja) | Pythonで学ぶ強化学習 -入門から実践まで- サンプルコード | 201 | Jupyter Notebook | 08/24 |
| 52 | [bat67/pytorch-tutorials-examples-and-books](https://github.com/bat67/pytorch-tutorials-examples-and-books) | PyTorch1.0 tutorials, examples and some books I found 【不定期更新中】整理的PyTorch 1.0 最新版教程、例子和书籍 | 199 | Jupyter Notebook | 06/03 |
| 53 | [DesertsX/gulius-projects](https://github.com/DesertsX/gulius-projects) | 收录古柳(DesertsX)的一些小项目 | 198 | Jupyter Notebook | 06/17 |
| 54 | [DjangoPeng/tensorflow-101](https://github.com/DjangoPeng/tensorflow-101) | 《TensorFlow 快速入门与实战》课件与参考代码 | 194 | Jupyter Notebook | 03/21 |
| 55 | [liweimin1996/MachineLearning-DeepLearning-NLP-LeetCode-StatisticalLearningMethod-TensorFlow](https://github.com/liweimin1996/MachineLearning-DeepLearning-NLP-LeetCode-StatisticalLearningMethod-TensorFlow) | 最近在学习机器学习,深度学习,自然语言处理,统计学习方法等知识,理论学习主要根据readme的链接,在学习理论的同时,决定自己将学习的相关算法用Python实现一遍,并结合GitHub上相关大牛的代码进行改进,本项目会不断的更新相关算法,欢迎star,fork和关注。 主要包括: 1.吴恩达Andrew Ng老师的机器学习课程作业个人笔记 Python实现, 2.deeplearning.ai(吴恩达老师的深度学习课程笔记及资源) Python实现, 3.李航《统计学习方法》 Python代码实现, 4.自然语言处理NLP 牛津大学xDeepMind Python代码实现, ... | 189 | Jupyter Notebook | 07/02 |
| 56 | [ShusenTang/Dive-into-DL-PyTorch](https://github.com/ShusenTang/Dive-into-DL-PyTorch) | Dive into Deep Learning (动手学深度学习) with PyTorch. | 180 | Jupyter Notebook | 08/07 |
| 57 | [chengstone/LotteryPredict](https://github.com/chengstone/LotteryPredict) | TensorFlow实战,使用LSTM预测彩票 | 177 | Jupyter Notebook | 06/11 |
| 58 | [Doraemonzzz/ML-Foundation-and-ML-Techniques](https://github.com/Doraemonzzz/ML-Foundation-and-ML-Techniques) | 台大机器学习课程作业详解 | 176 | Jupyter Notebook | 05/20 |
| 59 | [AlbertHG/Coursera-Deep-Learning-deeplearning.ai](https://github.com/AlbertHG/Coursera-Deep-Learning-deeplearning.ai) | (完结)网易云课堂微专业《深度学习工程师》听课笔记,编程作业和课后练习 | 176 | Jupyter Notebook | 01/21 |
| 60 | [GreedyAIAcademy/Machine-Learning](https://github.com/GreedyAIAcademy/Machine-Learning) | 讲解常见的机器学习算法 | 174 | Jupyter Notebook | 08/19 |
| 61 | [iphysresearch/TOP250movie_douban](https://github.com/iphysresearch/TOP250movie_douban) | TOP250豆瓣电影短评:Scrapy 爬虫+数据清理/分析+构建中文文本情感分析模型 | 172 | Jupyter Notebook | 04/12 |
| 62 | [cloga/scipy-lecture-notes_cn](https://github.com/cloga/scipy-lecture-notes_cn) | Pytho科学计算生态介绍的中文翻译,英文原文地址: | 162 | Jupyter Notebook | 01/26 |
| 63 | [HadXu/ML-From-Scratch](https://github.com/HadXu/ML-From-Scratch) | 机器学习算法 基于西瓜书以及《统计学习方法》,当然包括DL。 | 162 | Jupyter Notebook | 08/17 |
| 64 | [AllanYiin/DeepBelief_Course4_Examples](https://github.com/AllanYiin/DeepBelief_Course4_Examples) | 深度學習課程(第四梯)所設計的課程實作 | 150 | Jupyter Notebook | 08/02 |
| 65 | [heucoder/dimensionality_reduction_alo_codes](https://github.com/heucoder/dimensionality_reduction_alo_codes) | PCA、LDA、MDS、LLE、TSNE等降维算法的python实现 | 149 | Jupyter Notebook | 06/20 |
| 66 | [yuanxiaosc/Google-Machine-learning-crash-course](https://github.com/yuanxiaosc/Google-Machine-learning-crash-course) | 谷歌机器学习速成课程(招式)+机器学习术语表(口诀)+机器学习规则(心得)+机器学习中的常识性问题 (内功)。该资源适用于机器学习、深度学习以及TensorFlow研究人员参考! | 148 | Jupyter Notebook | 08/09 |
| 67 | [aespresso/chinese_sentiment](https://github.com/aespresso/chinese_sentiment) | 用tensorflow进行中文自然语言处理的情感分析 | 147 | Jupyter Notebook | 06/10 |
| 68 | [LianHaiMiao/pytorch-lesson-zh](https://github.com/LianHaiMiao/pytorch-lesson-zh) | pytorch 包教不包会 | 144 | Jupyter Notebook | 04/26 |
| 69 | [applenob/rl_learn](https://github.com/applenob/rl_learn) | 我的强化学习笔记和学习材料:book: still updating ... ... | 144 | Jupyter Notebook | 06/09 |
| 70 | [nlpjoe/daguan-classify-2018](https://github.com/nlpjoe/daguan-classify-2018) | 2018达观杯长文本分类智能处理挑战赛 18解决方案 | 134 | Jupyter Notebook | 06/10 |
| 71 | [19920625lsg/liuyubobobo-algorithms](https://github.com/19920625lsg/liuyubobobo-algorithms) | 慕课网刘宇波老师所有的算法视频教程,学习时自己的代码记录 | 132 | Jupyter Notebook | 08/26 |
| 72 | [monpa-team/monpa](https://github.com/monpa-team/monpa) | MONPA 罔拍是一個提供正體中文斷詞、詞性標註以及命名實體辨識的多任務模型 | 121 | Jupyter Notebook | 08/21 |
| 73 | [makcyun/web_scraping_with_python](https://github.com/makcyun/web_scraping_with_python) | Python 入门爬虫和数据分析实战 | 116 | Jupyter Notebook | 09/01 |
| 74 | [nlpjoe/CCF-BDCI-Automotive-Field-ASC-2018](https://github.com/nlpjoe/CCF-BDCI-Automotive-Field-ASC-2018) | CCF-BDCI 2018年汽车行业用户观点主题及情感识别挑战赛 第6名解决方案 | 114 | Jupyter Notebook | 01/08 |
| 75 | [bupticybee/icyChessZero](https://github.com/bupticybee/icyChessZero) | 中国象棋alpha zero程序 | 113 | Jupyter Notebook | 01/02 |
| 76 | [anch3or/Notes-on-Statistical-Learning-Methods](https://github.com/anch3or/Notes-on-Statistical-Learning-Methods) | 李航《统计学习方法》中机器学习模型的LaTeX公式笔记 | 113 | Jupyter Notebook | 02/05 |
| 77 | [beader/ruijin_round2](https://github.com/beader/ruijin_round2) | 瑞金医院MMC人工智能辅助构建知识图谱大赛复赛 | 112 | Jupyter Notebook | 05/15 |
| 78 | [bobo0810/AnnotatedNetworkModelGit](https://github.com/bobo0810/AnnotatedNetworkModelGit) | 加注释的网络模型(便于理解) | 110 | Jupyter Notebook | 06/12 |
| 79 | [kuhung/SSD_keras](https://github.com/kuhung/SSD_keras) | 简明 SSD 目标检测模型 keras version(交通标志识别 训练部分见 dev 分支) | 107 | Jupyter Notebook | 01/23 |
| 80 | [CrazyXiao/machine-learning](https://github.com/CrazyXiao/machine-learning) | python,机器学习笔记,machine learning,nlp | 98 | Jupyter Notebook | 08/29 |
| 81 | [LemenChao/PythonFromDAToDS](https://github.com/LemenChao/PythonFromDAToDS) | 图书《Python编程:从数据分析到数据科学》的配套资源 | 94 | Jupyter Notebook | 03/08 |
| 82 | [fenglei110/Data-analysis](https://github.com/fenglei110/Data-analysis) | 主要是爬虫与数据分析项目总结,外加建模与机器学习,模型的评估。 | 94 | Jupyter Notebook | 03/02 |
| 83 | [fire717/Machine-Learning](https://github.com/fire717/Machine-Learning) | 机器学习&深度学习资料笔记&基本算法实现&资源整理 / Everything about Machine Learning & Deep Learning | 92 | Jupyter Notebook | 08/28 |
| 84 | [nladuo/THSTrader](https://github.com/nladuo/THSTrader) | 量化交易。最新版通用版同花顺客户端的python API。(Python3) | 91 | Jupyter Notebook | 03/14 |
| 85 | [AceCoooool/MLF-MLT](https://github.com/AceCoooool/MLF-MLT) | :books: 机器学习基石和机器学习技法作业 | 90 | Jupyter Notebook | 02/26 |
| 86 | [strivebo/DeepLearning_Notes_CV](https://github.com/strivebo/DeepLearning_Notes_CV) | :tangerine: tensorflow,keras;python,numpy,matplotlib,scikit-learn等;python图像处理—opencv,gdal,matlab,etc. | 89 | Jupyter Notebook | 08/31 |
| 87 | [zake7749/Gossiping-Chinese-Corpus](https://github.com/zake7749/Gossiping-Chinese-Corpus) | PTT 八卦版問答中文語料 | 85 | Jupyter Notebook | 06/03 |
| 88 | [HumanomeLab/mlcourse](https://github.com/HumanomeLab/mlcourse) | 生命情報の機械学習入門(新学術領域「先進ゲノム支援」中級講習会資料) | 82 | Jupyter Notebook | 05/10 |
| 89 | [Roger-luo/TutorialZH.jl](https://github.com/Roger-luo/TutorialZH.jl) | Julia语言的中文教程 | 82 | Jupyter Notebook | 05/14 |
| 90 | [RayDean/MachineLearning](https://github.com/RayDean/MachineLearning) | 【火炉炼AI】-机器学习系列文章 | 79 | Jupyter Notebook | 04/13 |
| 91 | [qfzn/AI_UAV](https://github.com/qfzn/AI_UAV) | 在人工智能、机器视觉、高精度导航定位和多传感器融合等技术的助推下,众多行业迎来了前所未有的发展机遇,人工智能+无人机(AI+UAV)正是一个具有无限想象力的应用方向。杭州启飞智能科技有限公司深耕无人机及人工智能领域多年,拥有完善的软硬件平台、海量数据资源(飞行数据及农田地理信息数据)及众多资深专家团队,正在努力地开拓AI+UAV在科技+农业的行业应用,欢迎加入 | 78 | Jupyter Notebook | 01/04 |
| 92 | [qulacs/quantum-native-dojo](https://github.com/qulacs/quantum-native-dojo) | 量子コンピュータ初学者のための自習教材 | 78 | Jupyter Notebook | 06/20 |
| 93 | [YutaroOgawa/pytorch_advanced](https://github.com/YutaroOgawa/pytorch_advanced) | 書籍「つくりながら学ぶ! PyTorchによる発展ディープラーニング」の実装コードを配置したリポジトリです | 77 | Jupyter Notebook | 08/28 |
| 94 | [YutaroOgawa/Deep-Reinforcement-Learning-Book](https://github.com/YutaroOgawa/Deep-Reinforcement-Learning-Book) | 書籍「つくりながら学ぶ!深層強化学習」のサポートリポジトリです | 77 | Jupyter Notebook | 03/24 |
| 95 | [zhuanxuhit/nd101](https://github.com/zhuanxuhit/nd101) | 记录自己深度学习之路的点滴 | 76 | Jupyter Notebook | 04/03 |
| 96 | [yenlung/Deep-Learning-MOOC](https://github.com/yenlung/Deep-Learning-MOOC) | 這是我在政治大學開設 Deep Learning MOOC 教學的相關檔案。 | 75 | Jupyter Notebook | 05/14 |
| 97 | [loveunk/machine-learning-deep-learning-notes](https://github.com/loveunk/machine-learning-deep-learning-notes) | 机器学习、深度学习的学习路径及知识总结 | 74 | Jupyter Notebook | 08/21 |
| 98 | [tsycnh/Keras-Tutorials](https://github.com/tsycnh/Keras-Tutorials) | 一个面向初学者的,友好的Keras入门教程 | 73 | Jupyter Notebook | 08/04 |
| 99 | [wangvenn/Credit-Scoring-Regression](https://github.com/wangvenn/Credit-Scoring-Regression) | 消费者人群画像—信用智能评分比赛开源 | 73 | Jupyter Notebook | 02/02 |
| 100 | [bat67/Deep-Learning-with-PyTorch-A-60-Minute-Blitz-cn](https://github.com/bat67/Deep-Learning-with-PyTorch-A-60-Minute-Blitz-cn) | PyTorch1.0 深度学习:60分钟入门与实战(Deep Learning with PyTorch: A 60 Minute Blitz 中文翻译与学习) | 72 | Jupyter Notebook | 03/11 |
| 101 | [chargemyself/selfteaching-book-_python](https://github.com/chargemyself/selfteaching-book-_python) | 基于李笑来的那本自学是一门手艺的书,然后里面有自己修改的痕迹,以及更多的资料。 | 66 | Jupyter Notebook | 08/01 |
| 102 | [batermj/data_sciences_campaign](https://github.com/batermj/data_sciences_campaign) | 【数据科学家系列课程】 | 66 | Jupyter Notebook | 03/21 |
| 103 | [fancyerii/deep_learning_theory_and_practice](https://github.com/fancyerii/deep_learning_theory_and_practice) | 《深度学习理论与实战:基础篇》代码 | 66 | Jupyter Notebook | 08/15 |
| 104 | [xuwening/blog](https://github.com/xuwening/blog) | 对过往做做总结 | 65 | Jupyter Notebook | 05/31 |
| 105 | [linxid/Competition](https://github.com/linxid/Competition) | 参加过的比赛记录,包括代码和经验和其他文件 | 64 | Jupyter Notebook | 03/20 |
| 106 | [ShawnyXiao/2018-Kaggle-AdTrackingFraud](https://github.com/ShawnyXiao/2018-Kaggle-AdTrackingFraud) | 2018 - Kaggle - TalkingData AdTracking Fraud Detection Challenge: Silver medal (银牌) | 64 | Jupyter Notebook | 01/12 |
| 107 | [YJango/Tensorflow-eager-execution](https://github.com/YJango/Tensorflow-eager-execution) | 使用 tensorflow eager execution 的机器学习全新教程 | 63 | Jupyter Notebook | 03/23 |
| 108 | [FontTian/hyperopt-doc-zh](https://github.com/FontTian/hyperopt-doc-zh) | Github开源项目hyperopt系列的中文文档,以及学习教程等 | 63 | Jupyter Notebook | 05/28 |
| 109 | [beader/ruijin_round1](https://github.com/beader/ruijin_round1) | 瑞金医院MMC人工智能辅助构建知识图谱大赛初赛 | 63 | Jupyter Notebook | 05/28 |
| 110 | [czczup/UrbanRegionFunctionClassification](https://github.com/czczup/UrbanRegionFunctionClassification) | 第五届百度西安交大大数据竞赛 城市区域功能分类 Baseline | 63 | Jupyter Notebook | 05/05 |
| 111 | [LiuChuang0059/100days-ML-code](https://github.com/LiuChuang0059/100days-ML-code) | 100天机器学习 (翻译+ 实操) | 61 | Jupyter Notebook | 05/08 |
| 112 | [Questions1/Rong360_2nd](https://github.com/Questions1/Rong360_2nd) | 第三届融360天机智能金融算法挑战赛-第二题:特征挖掘 | 60 | Jupyter Notebook | 04/03 |
| 113 | [Magic-Bubble/RecommendSystemPractice](https://github.com/Magic-Bubble/RecommendSystemPractice) | 《推荐系统实践》代码实现 | 55 | Jupyter Notebook | 03/11 |
| 114 | [audier/my_deep_project](https://github.com/audier/my_deep_project) | 个人深度学习项目整理 | 55 | Jupyter Notebook | 01/10 |
| 115 | [qiwsir/DataAnalysis](https://github.com/qiwsir/DataAnalysis) | 《跟老齐学Python系列》图书之《数据分析》www.itdiffer.com | 54 | Jupyter Notebook | 08/30 |
| 116 | [ShusenTang/BDC2019](https://github.com/ShusenTang/BDC2019) | 2019中国高校计算机大赛——大数据挑战赛 第三名解决方案 | 54 | Jupyter Notebook | 08/28 |
| 117 | [lightfate/XueLang-YOLOhasst](https://github.com/lightfate/XueLang-YOLOhasst) | 雪浪制造AI挑战赛—视觉计算辅助良品检测 test_a 952 test_b 953 | 53 | Jupyter Notebook | 06/16 |
| 118 | [Mryangkaitong/python-Machine-learning](https://github.com/Mryangkaitong/python-Machine-learning) | 机器学习算法项目 | 53 | Jupyter Notebook | 08/19 |
| 119 | [GenTang/intro_ds_wy_course](https://github.com/GenTang/intro_ds_wy_course) | 《精通数据科学:从线性回归到深度学习》视频课程的配套资料 | 53 | Jupyter Notebook | 09/01 |
| 120 | [peaceiris/emoji-ime-dictionary](https://github.com/peaceiris/emoji-ime-dictionary) | 日本語で絵文字入力をするための IME 追加辞書 📙 Google 日本語入力などで日本語から絵文字への変換を可能にする IME 拡張辞書です | 53 | Jupyter Notebook | 08/09 |
| 121 | [yenlung/nccu-jupyter-math](https://github.com/yenlung/nccu-jupyter-math) | 這是政治大學應用數學系《數學軟體應用》課程的上課筆記。主要介紹 Python 程式語言, 目標是用 Python 做數據分析。 | 52 | Jupyter Notebook | 08/25 |
| 122 | [zhpmatrix/BERTem](https://github.com/zhpmatrix/BERTem) | ACL2019论文实现《Matching the Blanks: Distributional Similarity for Relation Learning》 | 52 | Jupyter Notebook | 08/05 |
| 123 | [panluoluo/crawler-analysis](https://github.com/panluoluo/crawler-analysis) | 爬虫+数据分析实战项目 | 51 | Jupyter Notebook | 03/04 |
| 124 | [yenlung/AI_Math](https://github.com/yenlung/AI_Math) | Python 數據分析與人工智慧課程網頁 | 51 | Jupyter Notebook | 05/30 |
| 125 | [songlei1994/ccks2018](https://github.com/songlei1994/ccks2018) | CCKS 2018 开放领域的中文问答任务 1st 解决方案 | 50 | Jupyter Notebook | 05/26 |
| 126 | [Rockyzsu/red_bag](https://github.com/Rockyzsu/red_bag) | 雪球红包/苏宁易购/京东/淘宝自动签到 领取金币 | 50 | Jupyter Notebook | 08/16 |
| 127 | [HOXOMInc/feature-engineering-book](https://github.com/HOXOMInc/feature-engineering-book) | 『機械学習のための特徴量エンジニアリング』のサンプルコード集 | 48 | Jupyter Notebook | 05/22 |
| 128 | [shiyanlou/louplus-ml](https://github.com/shiyanlou/louplus-ml) | 实验楼 《楼+ 机器学习实战》课程挑战作业参考答案 https://www.shiyanlou.com/louplus/ml | 48 | Jupyter Notebook | 07/22 |
| 129 | [ztz818/Automatic-generation-of-text-summaries](https://github.com/ztz818/Automatic-generation-of-text-summaries) | 使用两种方法(抽取式Textrank和概要式seq2seq)自动提取文本摘要 | 48 | Jupyter Notebook | 07/16 |
| 130 | [LemenChao/Introduction-to-Data-Science](https://github.com/LemenChao/Introduction-to-Data-Science) | 本Repository为中国人民大学朝乐门老师开源课程——《数据科学导论》 | 48 | Jupyter Notebook | 04/18 |
| 131 | [Hellcatzm/TransforLearning_TensorFlow](https://github.com/Hellcatzm/TransforLearning_TensorFlow) | 使用预训练好的InceptionV3模型对自己的数据进行分类,用这个代码的同学希望可以给一个star | 47 | Jupyter Notebook | 01/24 |
| 132 | [PhilosopherZ/Meteorological-Books](https://github.com/PhilosopherZ/Meteorological-Books) | 气象相关书籍合集 | 46 | Jupyter Notebook | 07/22 |
| 133 | [ColaDrill/tx_competition](https://github.com/ColaDrill/tx_competition) | 2018腾讯广告算法大赛 | 46 | Jupyter Notebook | 07/16 |
| 134 | [heilongjianguniversity/AI-Team](https://github.com/heilongjianguniversity/AI-Team) | 清华大学AI自强项目课件以及代码下载,黑龙江大学机器学习小组学习历程。@清华大学数据院,感谢他们的课件以及源码 | 45 | Jupyter Notebook | 04/19 |
| 135 | [searobbersduck/CustomerServiceAI](https://github.com/searobbersduck/CustomerServiceAI) | 智能客服 | 44 | Jupyter Notebook | 07/03 |
| 136 | [xiaoxiaoyao/MyApp](https://github.com/xiaoxiaoyao/MyApp) | 随便写的各种,点链接可以进入我的知乎 | 44 | Jupyter Notebook | 07/10 |
| 137 | [blmoistawinde/hello_world](https://github.com/blmoistawinde/hello_world) | 博客文章开源代码分享区 | 43 | Jupyter Notebook | 02/23 |
| 138 | [tomo-makes/dl-in-a-sec](https://github.com/tomo-makes/dl-in-a-sec) | 2019年5月発刊『図解速習DEEP LEARNING』(シーアンドアール研究所)のサポートサイトです。 | 43 | Jupyter Notebook | 05/20 |
| 139 | [allenlu2008/PythonDemo](https://github.com/allenlu2008/PythonDemo) | 虾神的Python示例代码库 | 41 | Jupyter Notebook | 05/25 |
| 140 | [shikanon/MyPresentations](https://github.com/shikanon/MyPresentations) | this is my presentaion area .个人演讲稿展示区,主要展示一些平时的个人演讲稿或者心得之类的, | 41 | Jupyter Notebook | 01/17 |
| 141 | [atnlp/torchtext-summary](https://github.com/atnlp/torchtext-summary) | torchtext使用总结,从零开始逐步实现了torchtext文本预处理过程,包括截断补长,词表构建,使用预训练词向量,构建可用于PyTorch的可迭代数据等步骤。并结合Pytorch实现LSTM. | 41 | Jupyter Notebook | 05/25 |
| 142 | [airxiechao/simple-car-plate-recognition](https://github.com/airxiechao/simple-car-plate-recognition) | 简单车牌识别-Mask_RCNN定位车牌+手写方法分割字符+CNN单个字符识别 | 40 | Jupyter Notebook | 06/26 |
| 143 | [finlay-liu/kaggle_public](https://github.com/finlay-liu/kaggle_public) | 阿水的开源分支 | 39 | Jupyter Notebook | 08/31 |
| 144 | [hecongqing/TextClassification](https://github.com/hecongqing/TextClassification) | 以ToxicComment文本分类比赛为例,整理了常见文本分类算法的使用 | 38 | Jupyter Notebook | 07/24 |
| 145 | [ami66/ChineseTextClassifier](https://github.com/ami66/ChineseTextClassifier) | 中文商品评论短文本分类器,可用于情感分析 | 37 | Jupyter Notebook | 06/09 |
| 146 | [qiguming/MLAPP_CN_CODE](https://github.com/qiguming/MLAPP_CN_CODE) | 《Machine Learning: A Probabilistic Perspective》(Kevin P. Murphy)中文翻译和书中算法的Python实现。 | 37 | Jupyter Notebook | 01/11 |
| 147 | [letylin/pyprogbook](https://github.com/letylin/pyprogbook) | 金融大數據首部曲 書名: Python 程式設計入門 — 金融商管實務案例 讀者可以在此下載教學資源含程式碼 | 36 | Jupyter Notebook | 08/06 |
| 148 | [JaimeTang/book-code](https://github.com/JaimeTang/book-code) | 《深度学习之PyTorch实战计算机视觉》全书代码 | 36 | Jupyter Notebook | 05/04 |
| 149 | [music1353/pyHowFun](https://github.com/music1353/pyHowFun) | 🌻 提供一系列的 Python 教學,讓初學者或是有程式基礎的人,快速融入 Python 的世界 | 35 | Jupyter Notebook | 08/30 |
| 150 | [YQGong/NN_From_Scratch](https://github.com/YQGong/NN_From_Scratch) | B站视频系列-从零开始的神经网络 | 35 | Jupyter Notebook | 05/24 |
| 151 | [echohandsome/Machine_Learning_in_Action_for_smallwhite](https://github.com/echohandsome/Machine_Learning_in_Action_for_smallwhite) | 面向机器学习初学者的最全注释版本的机器学习实战的代码 | 35 | Jupyter Notebook | 08/01 |
| 152 | [uncleban/2019_cmb_fintech](https://github.com/uncleban/2019_cmb_fintech) | 2019招行fintech精英训练营线上赛第二题基于收支记录判断借贷意愿baseline(第1名) | 34 | Jupyter Notebook | 05/13 |
| 153 | [JuliaCN/MeetUpMaterials](https://github.com/JuliaCN/MeetUpMaterials) | Julia中文社区活动的各种材料 Meetup Materials | 33 | Jupyter Notebook | 08/30 |
| 154 | [shiyanlou/louplus-dm](https://github.com/shiyanlou/louplus-dm) | 实验楼 《楼+ 数据分析与挖掘实战》课程挑战作业参考答案 | 33 | Jupyter Notebook | 08/30 |
| 155 | [mantchs/machine_learning_model](https://github.com/mantchs/machine_learning_model) | 机器学习基本模型算法介绍(附加案例) | 33 | Jupyter Notebook | 05/09 |
| 156 | [asdf2014/algorithm](https://github.com/asdf2014/algorithm) | Leetcode 组队刷题 | 33 | Jupyter Notebook | 08/29 |
| 157 | [sailist/ASRFrame](https://github.com/sailist/ASRFrame) | An Automatic Speech Recognition Frame ,一个中文语音识别的完整框架, 提供了多个模型 | 33 | Jupyter Notebook | 08/21 |
| 158 | [zc402/ChineseTrafficPolicePose](https://github.com/zc402/ChineseTrafficPolicePose) | Detects Chinese traffic police commanding poses 检测中国交警指挥手势 | 32 | Jupyter Notebook | 06/05 |
| 159 | [duoergun0729/adversarial_examples](https://github.com/duoergun0729/adversarial_examples) | 对抗样本 | 32 | Jupyter Notebook | 01/29 |
| 160 | [wqw547243068/Python-learning](https://github.com/wqw547243068/Python-learning) | 好玩儿的Python:从数据挖掘到深度学习 | 32 | Jupyter Notebook | 08/06 |
| 161 | [renxingkai/Credit_Score_Baseline](https://github.com/renxingkai/Credit_Score_Baseline) | DCIC消费者人群画像-信用智能评分Baseline | 32 | Jupyter Notebook | 02/28 |
| 162 | [gunosy/Gunosy-Internship-Textbook](https://github.com/gunosy/Gunosy-Internship-Textbook) | Gunosy Summer Internship 機械学習コース向けの事前学習用のテキストです。 | 31 | Jupyter Notebook | 08/26 |
| 163 | [cantjie/XJTU-Share](https://github.com/cantjie/XJTU-Share) | 西安交通大学实验报告共享计划 | 30 | Jupyter Notebook | 08/13 |
| 164 | [P01son6415/MatchModels](https://github.com/P01son6415/MatchModels) | 2019中国高校计算机大赛——大数据挑战赛 第15名 WriteUp | 30 | Jupyter Notebook | 08/31 |
| 165 | [beiciliang/intro2musictech](https://github.com/beiciliang/intro2musictech) | 公众号“无痛入门音乐科技”开源代码 | 30 | Jupyter Notebook | 08/19 |
| 166 | [lmhgithi/SOHU-baseline](https://github.com/lmhgithi/SOHU-baseline) | :blush:搜狐算法大赛(实体+情感)简单baseline(比较容易理解)(使用lgb模型做二分类) | 30 | Jupyter Notebook | 06/10 |
| 167 | [YZHANG1270/Marvel_KnowledgeGraph](https://github.com/YZHANG1270/Marvel_KnowledgeGraph) | 漫威英雄的知识图谱 | 30 | Jupyter Notebook | 04/28 |
| 168 | [mushroom-x/K210_Tutorial](https://github.com/mushroom-x/K210_Tutorial) | K210基础入门教程 edit by Kyle阿凯 | 29 | Jupyter Notebook | 05/13 |
| 169 | [NicesMan/Linear-Algebra-and-Its-Applications-notes](https://github.com/NicesMan/Linear-Algebra-and-Its-Applications-notes) | 《线性代数及其应用》笔记 | 28 | Jupyter Notebook | 05/16 |
| 170 | [edu2act/course-PySCE](https://github.com/edu2act/course-PySCE) | 人工智能方向,《Python科学计算生态》课程仓库 | 27 | Jupyter Notebook | 07/16 |
| 171 | [CUHKSZ-TQL/WeiboSpider_SentimentAnalysis](https://github.com/CUHKSZ-TQL/WeiboSpider_SentimentAnalysis) | 借助Python抓取微博数据,并对抓取的数据进行情绪分析 | 27 | Jupyter Notebook | 06/22 |
| 172 | [kujirahand/book-python-scraping](https://github.com/kujirahand/book-python-scraping) | 『Pythonによるスクレイピング&機械学習 開発テクニック』のサンプルプログラム | 27 | Jupyter Notebook | 07/20 |
| 173 | [PegasusWang/notebooks](https://github.com/PegasusWang/notebooks) | My jupyter notebooks。使用 Jupyter python markdown 制作分享 ppt | 27 | Jupyter Notebook | 01/27 |
| 174 | [Y-sir/Coursera_ML_Exercise](https://github.com/Y-sir/Coursera_ML_Exercise) | 吴恩达机器学习公开课作业中文版本以及Python实现 | 27 | Jupyter Notebook | 05/26 |
| 175 | [TensShinet/learn_statistical-learning-method](https://github.com/TensShinet/learn_statistical-learning-method) | 学习《统计学习方法》并实现其中的大部分算法 | 26 | Jupyter Notebook | 03/21 |
| 176 | [jamess010/AIOpen](https://github.com/jamess010/AIOpen) | AIOpen是一个按人工智能三要素(数据、算法、算力)进行AI开源项目分类的汇集项目,项目致力于跟踪目前人工智能(AI)的深度学习(DL)开源项目,并尽可能地罗列目前的开源项目,同时加入了一些曾经研究过的代码。通过这些开源项目,使初次接触AI的人们对人工智能(深度学习)有更清晰和更全面的了解。 | 26 | Jupyter Notebook | 08/03 |
| 177 | [kingname/SourceCodeofMongoRedis](https://github.com/kingname/SourceCodeofMongoRedis) | 《左手MongoDB,右手Redis——从入门到商业实战》书籍配套源代码。 | 26 | Jupyter Notebook | 06/01 |
| 178 | [Jie-Yuan/tql-Python](https://github.com/Jie-Yuan/tql-Python) | 思维误区: 用理想模型来思考复杂现实问题 | 26 | Jupyter Notebook | 08/29 |
| 179 | [IBBD/IBBD.github.io](https://github.com/IBBD/IBBD.github.io) | IBBD技术博客 | 26 | Jupyter Notebook | 08/21 |
| 180 | [bat67/pytorch-examples-cn](https://github.com/bat67/pytorch-examples-cn) | 用例子学习PyTorch1.0(Learning PyTorch with Examples 中文翻译与学习) | 26 | Jupyter Notebook | 03/11 |
| 181 | [liulin7576/wankuangzhong](https://github.com/liulin7576/wankuangzhong) | 游戏玩家付费预测比赛 Rank1 | 25 | Jupyter Notebook | 02/10 |
| 182 | [QUANTAXIS/QADemo](https://github.com/QUANTAXIS/QADemo) | QUANTAXIS 的示例demo | 25 | Jupyter Notebook | 04/15 |
| 183 | [leeguandong/DL-data-processing-methods](https://github.com/leeguandong/DL-data-processing-methods) | 深度学习处理数据的一些基本操作 | 25 | Jupyter Notebook | 04/19 |
| 184 | [azy1988/ML-CV](https://github.com/azy1988/ML-CV) | 机器学习实战 | 24 | Jupyter Notebook | 04/30 |
| 185 | [juwikuang/china_job_survey](https://github.com/juwikuang/china_job_survey) | stats of Chinese developers. 统计中国程序员的就业情况 | 24 | Jupyter Notebook | 08/11 |
| 186 | [pascal1129/cv_notes](https://github.com/pascal1129/cv_notes) | 深度学习/计算机视觉工程向笔记 | 24 | Jupyter Notebook | 08/20 |
| 187 | [taoyafan/jinnan](https://github.com/taoyafan/jinnan) | 天池比赛:津南数字制造算法挑战赛【赛场一】初赛 17 名 Drop 队代码 | 24 | Jupyter Notebook | 03/23 |
| 188 | [liuhaumin/LeadsheetArrangement](https://github.com/liuhaumin/LeadsheetArrangement) | Lead Sheet Generation and Arrangement 自動簡譜編曲 | 24 | Jupyter Notebook | 01/25 |
| 189 | [shaqsnake/Data-Structures-and-Algorithms-in-Python](https://github.com/shaqsnake/Data-Structures-and-Algorithms-in-Python) | 通过Python学习数据结构和算法 | 24 | Jupyter Notebook | 04/19 |
| 190 | [chinapnr/python_study](https://github.com/chinapnr/python_study) | python 入门培训教材,实用、快速、清晰 | 24 | Jupyter Notebook | 03/28 |
| 191 | [taenggu0309/PPD-Modeling-Competition](https://github.com/taenggu0309/PPD-Modeling-Competition) | 拍拍贷"魔镜杯"风控算法比赛实战 | 24 | Jupyter Notebook | 02/17 |
| 192 | [feng-li/Distributed-Statistical-Computing](https://github.com/feng-li/Distributed-Statistical-Computing) | Computer Code and Statistical Cases for book: Distributed Statistical Computing for Big Data (大数据分布式计算与案例——李丰著) | 24 | Jupyter Notebook | 01/04 |
| 193 | [tim-yao/au-it-faq-for-chinese](https://github.com/tim-yao/au-it-faq-for-chinese) | 澳洲IT新移民常见问题 | 24 | Jupyter Notebook | 01/29 |
| 194 | [GitLanx/Python-note](https://github.com/GitLanx/Python-note) | 《Python 学习手册》(第四版 + 第五版)笔记 | 22 | Jupyter Notebook | 07/05 |
| 195 | [Tshzzz/jinnan_yolo_baseline](https://github.com/Tshzzz/jinnan_yolo_baseline) | 使用YOLO目标检测做津南算法大赛 | 22 | Jupyter Notebook | 05/29 |
| 196 | [blueapplehe/car_identify](https://github.com/blueapplehe/car_identify) | 汽车识别,汽车车型识别,汽车品牌识别,车辆识别,深度学习,神经网络 | 22 | Jupyter Notebook | 07/08 |
| 197 | [EvilPsyCHo/competition](https://github.com/EvilPsyCHo/competition) | 知乎专栏代码存放地 | 21 | Jupyter Notebook | 01/02 |
| 198 | [Parker-Lyu/rscup2019_classifier](https://github.com/Parker-Lyu/rscup2019_classifier) | rscup2019,分类赛道 | 21 | Jupyter Notebook | 09/01 |
| 199 | [LinXueyuanStdio/LaTeX_OCR](https://github.com/LinXueyuanStdio/LaTeX_OCR) | 数学公式识别 | 21 | Jupyter Notebook | 08/24 |
| 200 | [cacolola/python-LEC](https://github.com/cacolola/python-LEC) | python数据分析基础 | 21 | Jupyter Notebook | 05/07 |
⬆ [回到目录](#目录)
<br/>
## Shell
| # | Repository | Description | Stars | Language | Updated |
| ---- | ------------------------------------------------------------ | ------------------------------------------------------------ | ----- | -------- | ------- |
| 1 | [shengxinjing/programmer-job-blacklist](https://github.com/shengxinjing/programmer-job-blacklist) | :see_no_evil:程序员找工作黑名单,换工作和当技术合伙人需谨慎啊 更新有赞 | 23.9k | Shell | 04/09 |
| 2 | [taizilongxu/interview_python](https://github.com/taizilongxu/interview_python) | 关于Python的面试题 | 10.6k | Shell | 07/29 |
| 3 | [judasn/Linux-Tutorial](https://github.com/judasn/Linux-Tutorial) | 《Java 程序员眼中的 Linux》 | 6.3k | Shell | 08/19 |
| 4 | [EtherDream/jsproxy](https://github.com/EtherDream/jsproxy) | 一个基于浏览器端 JS 实现的在线代理 | 6.1k | Shell | 08/17 |
| 5 | [rootsongjc/kubernetes-handbook](https://github.com/rootsongjc/kubernetes-handbook) | Kubernetes中文指南/云原生应用架构实践手册 - https://jimmysong.io/kubernetes-handbook | 5.7k | Shell | 08/13 |
| 6 | [233boy/v2ray](https://github.com/233boy/v2ray) | 最好用的 V2Ray 一键安装脚本 & 管理脚本 | 5.5k | Shell | 08/31 |
| 7 | [skywind3000/awesome-cheatsheets](https://github.com/skywind3000/awesome-cheatsheets) | 超级速查表 - 编程语言、框架和开发工具的速查表,单个文件包含一切你需要知道的东西 :zap: | 4.9k | Shell | 05/02 |
| 8 | [opsnull/follow-me-install-kubernetes-cluster](https://github.com/opsnull/follow-me-install-kubernetes-cluster) | 和我一步步部署 kubernetes 集群 | 4.5k | Shell | 08/29 |
| 9 | [easzlab/kubeasz](https://github.com/easzlab/kubeasz) | 使用Ansible脚本安装K8S集群,介绍组件交互原理,方便直接,不受国内网络环境影响 | 3.8k | Shell | 08/28 |
| 10 | [HIT-Alibaba/interview](https://github.com/HIT-Alibaba/interview) | 笔试面试知识整理 | 3.7k | Shell | 07/29 |
| 11 | [softwaredownload/openwrt-fanqiang](https://github.com/softwaredownload/openwrt-fanqiang) | 最好的路由器翻墙、科学上网教程—OpenWrt—shadowsocks | 2.9k | Shell | 07/30 |
| 12 | [91yun/serverspeeder](https://github.com/91yun/serverspeeder) | 锐速破解版 | 2.9k | Shell | 01/04 |
| 13 | [ToyoDAdoubi/doubi](https://github.com/ToyoDAdoubi/doubi) | 一个逗比写的各种逗比脚本~ | 2.7k | Shell | 06/17 |
| 14 | [gfw-breaker/ssr-accounts](https://github.com/gfw-breaker/ssr-accounts) | 一键部署Shadowsocks服务;免费Shadowsocks账号分享;免费SS账号分享; 翻墙;无界,自由门 | 2.6k | Shell | 09/01 |
| 15 | [Medicean/VulApps](https://github.com/Medicean/VulApps) | 快速搭建各种漏洞环境(Various vulnerability environment) | 2.4k | Shell | 03/14 |
| 16 | [wx-chevalier/Developer-Zero-To-Mastery](https://github.com/wx-chevalier/Developer-Zero-To-Mastery) | :books: To Be Professional Developer From Zero To Mastery, Interactive MindMap, RoadMap(Learning Path/Interview Questions), xCompass, Weekly for Developer, to Learn Everything in ITCS :dizzy: 程序员的技术视野、知识管理与职业规划,提高个人与团队的研发效能 | 2.3k | Shell | 08/29 |
| 17 | [flyzy2005/ss-fly](https://github.com/flyzy2005/ss-fly) | 一键脚本搭建ss/ssr并开启bbr内核加速(Ubuntu/CentOS/Debian) | 1.8k | Shell | 05/16 |
| 18 | [wangdoc/javascript-tutorial](https://github.com/wangdoc/javascript-tutorial) | JavaScript 教程 https://wangdoc.com/javascript | 1.8k | Shell | 08/27 |
| 19 | [LCTT/TranslateProject](https://github.com/LCTT/TranslateProject) | Linux中国翻译项目 | 1.4k | Shell | 09/02 |
| 20 | [fengyuhetao/shell](https://github.com/fengyuhetao/shell) | Linux命令行与shell脚本编程大全案例 | 1.3k | Shell | 06/18 |
| 21 | [CyC2018/Job-Recommend](https://github.com/CyC2018/Job-Recommend) | 🔎 互联网内推信息(社招、校招、实习) | 1.2k | Shell | 08/25 |
| 22 | [apachecn/ai-roadmap](https://github.com/apachecn/ai-roadmap) | ApacheCN AI 路线图(知识树) | 1.1k | Shell | 08/06 |
| 23 | [studygolang/GCTT](https://github.com/studygolang/GCTT) | GCTT Go中文网翻译组。 | 970 | Shell | 09/01 |
| 24 | [neoFelhz/neohosts](https://github.com/neoFelhz/neohosts) | 自由·负责·克制 去广告 Hosts 项目 | 885 | Shell | 08/14 |
| 25 | [wulabing/V2Ray_ws-tls_bash_onekey](https://github.com/wulabing/V2Ray_ws-tls_bash_onekey) | V2Ray Nginx+vmess+ws+tls/ http2 over tls 一键安装脚本 | 883 | Shell | 06/07 |
| 26 | [lmk123/oh-my-wechat](https://github.com/lmk123/oh-my-wechat) | 微信小助手的安装 / 更新工具。 | 787 | Shell | 08/13 |
| 27 | [yakumioto/YaHei-Consolas-Hybrid-1.12](https://github.com/yakumioto/YaHei-Consolas-Hybrid-1.12) | YaHei Consolas Hybrid 字体 | 730 | Shell | 05/27 |
| 28 | [liuyi01/kubernetes-starter](https://github.com/liuyi01/kubernetes-starter) | kubernetes入门,包括kubernetes概念,架构设计,集群环境搭建,认证授权等。 | 715 | Shell | 01/30 |
| 29 | [gaoyifan/china-operator-ip](https://github.com/gaoyifan/china-operator-ip) | 中国运营商IP地址库-每日更新 | 705 | Shell | 09/02 |
| 30 | [sabersalv/freedom-routes](https://github.com/sabersalv/freedom-routes) | chnroutes改进版, 智能生成路由表, 大幅提升VPN浏览国内网页速度 | 631 | Shell | 06/04 |
| 31 | [duguying/parsing-techniques](https://github.com/duguying/parsing-techniques) | 📕 parsing techniques 中文译本——《解析技术》 | 631 | Shell | 08/27 |
| 32 | [liquanzhou/ops_doc](https://github.com/liquanzhou/ops_doc) | 运维简洁实用手册 | 614 | Shell | 03/22 |
| 33 | [zfl9/ss-tproxy](https://github.com/zfl9/ss-tproxy) | SS/SSR/V2Ray/Socks5 透明代理 for Linux | 613 | Shell | 08/31 |
| 34 | [devdawei/libstdc-](https://github.com/devdawei/libstdc-) | Xcode 10 和 Xcode 11 中删除的 libstdc++ 库 | 579 | Shell | 08/20 |
| 35 | [goreliu/zshguide](https://github.com/goreliu/zshguide) | Zsh 开发指南 | 570 | Shell | 06/23 |
| 36 | [xuexb/learn-nginx](https://github.com/xuexb/learn-nginx) | Nginx 入门指南 | 560 | Shell | 03/11 |
| 37 | [tinyclub/open-c-book](https://github.com/tinyclub/open-c-book) | 开源书籍:《C语言编程透视》,透视 C 的前世今生! | 545 | Shell | 08/05 |
| 38 | [ToyoDAdoubiBackup/doubi](https://github.com/ToyoDAdoubiBackup/doubi) | 一个逗比写的各种逗比脚本~ | 532 | Shell | 03/28 |
| 39 | [Nick233333/phper-linux-gitbook](https://github.com/Nick233333/phper-linux-gitbook) | 💡PHPer 必知必会的 Linux 命令 | 500 | Shell | 08/25 |
| 40 | [caison/java-knowledge-mind-map](https://github.com/caison/java-knowledge-mind-map) | 【🌱🌱Java服务端知识技能图谱】用思维脑图梳理汇总Java服务端知识技能 | 497 | Shell | 07/13 |
| 41 | [maguowei/k8s-docker-desktop-for-mac](https://github.com/maguowei/k8s-docker-desktop-for-mac) | Docker Desktop for Mac 开启并使用 Kubernetes | 482 | Shell | 08/31 |
| 42 | [stackhou/AutoPacking-iOS](https://github.com/stackhou/AutoPacking-iOS) | iOS自动打包脚本 多项选择 一行上传指定位置 | 480 | Shell | 05/20 |
| 43 | [apachecn/awesome-indie-zh](https://github.com/apachecn/awesome-indie-zh) | 独立开发/自由职业/远程工作资源列表 | 466 | Shell | 03/06 |
| 44 | [wind-liang/leetcode](https://github.com/wind-liang/leetcode) | leetcode 顺序刷题,详细通俗题解,with JAVA | 463 | Shell | 08/29 |
| 45 | [blademainer/miwifi-ss](https://github.com/blademainer/miwifi-ss) | 小米路由 ss | 422 | Shell | 03/05 |
| 46 | [HBLong/channel_v3_daily](https://github.com/HBLong/channel_v3_daily) | 每天定时更新channel_v3.json,解决 Sublime Text 3 拓展包源无法访问问题,fix the problem that can not access packagecontrol.io | 395 | Shell | 09/02 |
| 47 | [Jactor-Sue/Deepin-Apps-Installation](https://github.com/Jactor-Sue/Deepin-Apps-Installation) | 本仓库介绍如何在基于Ubuntu的系统上安装Deepin移植的软件。This repo shows how to install apps packaged by Deepin. | 368 | Shell | 01/01 |
| 48 | [clangcn/onekey-install-shell](https://github.com/clangcn/onekey-install-shell) | 一大坨一键安装脚本 | 367 | Shell | 06/08 |
| 49 | [maxlicheng/luci-app-unblockmusic](https://github.com/maxlicheng/luci-app-unblockmusic) | 用于解锁网易云灰色歌曲的OpenWRT/LEDE路由器插件 (openwrt/lede luci support for unblock neteasecloudmusic) | 356 | Shell | 08/30 |
| 50 | [rime/plum](https://github.com/rime/plum) | 東風破 /plum/: Rime configuration manager and input schema repository | 343 | Shell | 06/08 |
| 51 | [onplus/v2hero](https://github.com/onplus/v2hero) | All Free . Deploy V2Ray to Heroku . v2ray学习参考 | 332 | Shell | 04/06 |
| 52 | [skyline75489/Heart-First-JavaWeb](https://github.com/skyline75489/Heart-First-JavaWeb) | 一个走心的 Java Web 入门开发教程 | 324 | Shell | 08/02 |
| 53 | [RokasUrbelis/docker-wine-linux](https://github.com/RokasUrbelis/docker-wine-linux) | :boom::whale::fire:Linux运行wine应用(QQ/微信/百度网盘/TIM/迅雷极速版/Foxmail等),适用于所有发行版------- Best wine-QQ/TIM/Wechat for all Linux distros | 320 | Shell | 08/27 |
| 54 | [jkpang/PPAutoPackageScript](https://github.com/jkpang/PPAutoPackageScript) | Automatic packing script after Xcode8 - Xcode8以后的自动打包脚本 | 302 | Shell | 08/23 |
| 55 | [sirzdy/shadowsocks](https://github.com/sirzdy/shadowsocks) | 与 ShadowSocks 有关的教程、文件等 | 291 | Shell | 03/08 |
| 56 | [anrip/ArDNSPod](https://github.com/anrip/ArDNSPod) | 基于DNSPod用户API实现的纯Shell动态域名客户端 | 289 | Shell | 05/16 |
| 57 | [haiwen/seafile-docs-cn](https://github.com/haiwen/seafile-docs-cn) | Seafile服务器用户手册 | 279 | Shell | 06/12 |
| 58 | [zhangguanzhang/Kubernetes-ansible](https://github.com/zhangguanzhang/Kubernetes-ansible) | :christmas_tree:ansible一键部署高可用Kubernetes | 264 | Shell | 08/23 |
| 59 | [csy512889371/learnDoc](https://github.com/csy512889371/learnDoc) | 🔥:rocket:架构师的成长之路-博客-导图 | 257 | Shell | 08/21 |
| 60 | [xzhih/ONMP](https://github.com/xzhih/ONMP) | 用于 Entware 库的 web 环境一键安装命令,适用于 LEDE、Padavan、梅林等固件 | 251 | Shell | 08/01 |
| 61 | [venshine/decompile-apk](https://github.com/venshine/decompile-apk) | 🔥 Decompile APK(反编译APK) | 248 | Shell | 05/07 |
| 62 | [helloxz/ccaa](https://github.com/helloxz/ccaa) | CentOS + Caddy + Aria2 + AriaNg一键安装离线下载、文件管理。 | 245 | Shell | 05/26 |
| 63 | [FeeiCN/autossh](https://github.com/FeeiCN/autossh) | Password-free automatic login SSH(免密登陆SSH) | 235 | Shell | 07/24 |
| 64 | [chinanf-boy/react-beautiful-dnd-zh](https://github.com/chinanf-boy/react-beautiful-dnd-zh) | 🇨🇳翻译: react-beautiful-dnd 文档 ❤️ 更新 ✅ | 229 | Shell | 03/29 |
| 65 | [ctf-wiki/ctf-tools](https://github.com/ctf-wiki/ctf-tools) | CTF 工具集合 | 226 | Shell | 02/01 |
| 66 | [al0ne/LinuxCheck](https://github.com/al0ne/LinuxCheck) | linux信息收集脚本 主要用于应急响应 | 224 | Shell | 08/26 |
| 67 | [QAX-A-Team/LuWu](https://github.com/QAX-A-Team/LuWu) | 红队基础设施自动化部署工具 | 218 | Shell | 04/17 |
| 68 | [jaywcjlove/docker-tutorial](https://github.com/jaywcjlove/docker-tutorial) | 🐳Docker入门学习笔记 | 207 | Shell | 08/22 |
| 69 | [MvsCode/frp-onekey](https://github.com/MvsCode/frp-onekey) | Frps 一键安装脚本&管理脚本 A tool to auto-compile & install frps on Linux | 205 | Shell | 08/30 |
| 70 | [dakkidaze/one-key-kms](https://github.com/dakkidaze/one-key-kms) | 在Linux上一键搭建KMS服务器 | 204 | Shell | 02/19 |
| 71 | [meetbill/op_practice_book](https://github.com/meetbill/op_practice_book) | 📚 《运维实践指南》持续更新中 | 199 | Shell | 08/29 |
| 72 | [swoole/swoole-wiki](https://github.com/swoole/swoole-wiki) | 📖Swoole全量Markdown文档, Swoole-Doc, Swoole-Wiki | 196 | Shell | 05/05 |
| 73 | [tonydeng/sdn-handbook](https://github.com/tonydeng/sdn-handbook) | SDN手册 | 195 | Shell | 08/15 |
| 74 | [wallace5303/dnnmmp](https://github.com/wallace5303/dnnmmp) | 基于docker的开发者集成环境 (docker,nodejs,php,nginx,mongo,mysql,redis等) | 192 | Shell | 08/31 |
| 75 | [T0xst/linux](https://github.com/T0xst/linux) | linux安全检查 | 191 | Shell | 05/15 |
| 76 | [innoob/netease-cloud-music](https://github.com/innoob/netease-cloud-music) | 可用于ubuntu 18.04的网易云音乐 | 189 | Shell | 04/23 |
| 77 | [cookcodeblog/k8s-deploy](https://github.com/cookcodeblog/k8s-deploy) | 使用kubeadm一键部署kubernetes集群 | 189 | Shell | 07/02 |
| 78 | [yangchuansheng/love-gfw](https://github.com/yangchuansheng/love-gfw) | 🔥以社会主义核心价值观为指导思想,实现 Linux 和 MacOS 设备的全局智能分流 | 185 | Shell | 06/22 |
| 79 | [lis912/Evaluation_tools](https://github.com/lis912/Evaluation_tools) | 等级保护测评工具 | 184 | Shell | 06/08 |
| 80 | [91yun/91yuntest](https://github.com/91yun/91yuntest) | 91云服务器一键测试包 | 183 | Shell | 08/19 |
| 81 | [Biulink/ShadowsocksTutorials](https://github.com/Biulink/ShadowsocksTutorials) | Shadowsocks教程 | 181 | Shell | 04/29 |
| 82 | [zfl9/gfwlist2privoxy](https://github.com/zfl9/gfwlist2privoxy) | 将 gfwlist.txt(Adblock Plus 规则)转换为 privoxy.action | 179 | Shell | 06/02 |
| 83 | [ruoyu-chen/hadoop-docker](https://github.com/ruoyu-chen/hadoop-docker) | 基于Docker构建的Hadoop开发测试环境,包含Hadoop,Hive,HBase,Spark | 178 | Shell | 05/26 |
| 84 | [jagerzhang/CCKiller](https://github.com/jagerzhang/CCKiller) | Linux轻量级CC攻击防御工具脚本 | 173 | Shell | 07/12 |
| 85 | [OMGZui/bash-step-to-step](https://github.com/OMGZui/bash-step-to-step) | 👀bash命令和语法--带你升级打boss | 173 | Shell | 01/20 |
| 86 | [4ch12dy/xadb](https://github.com/4ch12dy/xadb) | Android逆向自动化脚本,一键开启调试(ida/gdb/lldb),一键查看app、设备信息,一键脱壳,一键开启frida等。32/64位均支持 | 172 | Shell | 08/23 |
| 87 | [wang-bin/avbuild](https://github.com/wang-bin/avbuild) | ffmpeg花式编译. build tool for all platforms: iOS, android, raspberry pi, win32, uwp, linux, macOS etc. | 170 | Shell | 09/01 |
| 88 | [YangMame/Arch-Linux-Installer](https://github.com/YangMame/Arch-Linux-Installer) | Arch-Linux-Install-Script/Arch Linux 安装脚本 | 170 | Shell | 07/01 |
| 89 | [apachecn/ml-mastery-zh](https://github.com/apachecn/ml-mastery-zh) | :book: [译] MachineLearningMastery 博客文章 | 164 | Shell | 09/01 |
| 90 | [diguage/mysql-notes](https://github.com/diguage/mysql-notes) | MySQL 学习笔记 | 161 | Shell | 06/25 |
| 91 | [HyperledgerCN/hyperledgerDocs](https://github.com/HyperledgerCN/hyperledgerDocs) | Hyperledger文档 | 158 | Shell | 01/21 |
| 92 | [aiyijing/familycloudaccelerate](https://github.com/aiyijing/familycloudaccelerate) | 安卓端家庭云提速破解脚本 | 157 | Shell | 05/19 |
| 93 | [wizardforcel/data-science-notebook](https://github.com/wizardforcel/data-science-notebook) | :book: 每一个伟大的思想和行动都有一个微不足道的开始 | 156 | Shell | 07/22 |
| 94 | [lipengzhou/nodejs-tutorial](https://github.com/lipengzhou/nodejs-tutorial) | Node.js 入门教程 | 144 | Shell | 05/05 |
| 95 | [chusiang/working-on-gnu-linux](https://github.com/chusiang/working-on-gnu-linux) | 《 完全用 GNU/Linux 工作》 | 143 | Shell | 08/03 |
| 96 | [hczhcz/the-elder-is-excited](https://github.com/hczhcz/the-elder-is-excited) | 暴力膜蛤 | 140 | Shell | 09/01 |
| 97 | [rachpt/AutoSeed](https://github.com/rachpt/AutoSeed) | 全自动发种姬 | 139 | Shell | 09/02 |
| 98 | [tianhao/alfred-mweb-workflow](https://github.com/tianhao/alfred-mweb-workflow) | 搜索、打开MWeb 内部文档和外部 Markdown 文档 | 139 | Shell | 03/06 |
| 99 | [andyzhshg/syno-acme](https://github.com/andyzhshg/syno-acme) | 通过acme协议更新群晖HTTPS泛域名证书的自动脚本 | 138 | Shell | 07/25 |
| 100 | [vcheckzen/FamilyCloudSpeederInShell](https://github.com/vcheckzen/FamilyCloudSpeederInShell) | [ 天翼家庭云/天翼云盘提速 Shell 版 ] A Shell Implementation of FamilyCloudSpeeder, ESurfing | 138 | Shell | 06/06 |
| 101 | [LucienShui/PasteMe](https://github.com/LucienShui/PasteMe) | PasteMe 是一个无需注册的文本分享平台,可以为文本设置密码和阅后即焚,支持二维码分享和各种一键复制,最大化释放你的双手,针对代码提供了额外的高亮功能。主站点已全站 CDN 以及 GZIP 传输,有着好看的前端(嘤嘤嘤)和优秀的访问速度。 | 138 | Shell | 09/02 |
| 102 | [wi1dcard/laravel-deployment](https://github.com/wi1dcard/laravel-deployment) | 📗[WIP] 追求质量的 Laravel 应用部署上线课程。 | 137 | Shell | 07/04 |
| 103 | [tinyclub/linux-doc](https://github.com/tinyclub/linux-doc) | Linux Documentation 中文翻译计划 | 137 | Shell | 07/28 |
| 104 | [tinyclub/elinux](https://github.com/tinyclub/elinux) | 嵌入式 Linux 知识库 (elinux.org) 中文翻译计划 | 136 | Shell | 07/28 |
| 105 | [P3TERX/aria2_perfect_config](https://github.com/P3TERX/aria2_perfect_config) | Aria2 配置文件 \| Onedrive、Google Drvive 离线下载解决方案 \| 百度网盘不限速转存解决方案 | 136 | Shell | 08/12 |
| 106 | [jaywcjlove/shell-tutorial](https://github.com/jaywcjlove/shell-tutorial) | Shell入门教程(Shell tutorial book) | 136 | Shell | 06/04 |
| 107 | [xzhih/dell-7460-7560-hackintosh](https://github.com/xzhih/dell-7460-7560-hackintosh) | 戴尔燃7000系列黑苹果安装和日常使用EFI | 134 | Shell | 06/11 |
| 108 | [aturl/awesome-anti-gfw](https://github.com/aturl/awesome-anti-gfw) | 突破网络审查和封锁的开源工具清单。 | 134 | Shell | 01/24 |
| 109 | [guanguans/dnmp-plus](https://github.com/guanguans/dnmp-plus) | Docker的LNMP一键安装开发环境 + PHP非侵入式监控平台xhgui(优化系统性能、定位Bug神器) | 128 | Shell | 07/03 |
| 110 | [lijianying10/FixLinux](https://github.com/lijianying10/FixLinux) | 记录我是如何解决一些问题的,公开我平时用的脚本,变量等。 | 125 | Shell | 07/24 |
| 111 | [minminmsn/k8s1.13](https://github.com/minminmsn/k8s1.13) | 微服务容器化持续交付总体流程:提交gitlab;walle构建镜像及上传到私有镜像库;持续部署到kubernetes集群上启动应用。 | 122 | Shell | 06/06 |
| 112 | [loyess/Shell](https://github.com/loyess/Shell) | shadowsocks-libev + [ v2ray-plugin、kcptun、simple-obfs、goquiet、cloak ] 插件,一键安装~ | 119 | Shell | 08/31 |
| 113 | [zxui/shell](https://github.com/zxui/shell) | :maple_leaf: Centos运维常用工具 | 117 | Shell | 03/31 |
| 114 | [Karmenzind/dotfiles-and-scripts](https://github.com/Karmenzind/dotfiles-and-scripts) | :fishing_pole_and_fish: Dotfiles and scripts providing cumbersome configure details and other senseless stuff. 一些无聊的脚本和配置文件 | 117 | Shell | 08/28 |
| 115 | [wangdoc/webapi-tutorial](https://github.com/wangdoc/webapi-tutorial) | Web API 教程 | 116 | Shell | 07/04 |
| 116 | [wulabing/SSR-manyuser_glzjin_shell](https://github.com/wulabing/SSR-manyuser_glzjin_shell) | sspanel v3 魔改版 后端一键安装配置管理脚本 | 113 | Shell | 01/19 |
| 117 | [gwdburst/de_GWD](https://github.com/gwdburst/de_GWD) | Debian Gateway & DNS 旁路网关透明代理 | 112 | Shell | 08/31 |
| 118 | [printempw/live-stream-recorder](https://github.com/printempw/live-stream-recorder) | Monitor and record live streams from YouTube, OPENREC, TwitCasting, etc. Made for VTuber fans. (VTuber 直播自动录像脚本) | 112 | Shell | 08/08 |
| 119 | [pssss/Security-Baseline](https://github.com/pssss/Security-Baseline) | Linux/Windows 安全加固脚本 | 111 | Shell | 07/23 |
| 120 | [scu-igroup/ssh-scanner](https://github.com/scu-igroup/ssh-scanner) | ssh password guessing,ssh登录密码破解 | 111 | Shell | 01/09 |
| 121 | [jgsrty/jgsrty.github.docs](https://github.com/jgsrty/jgsrty.github.docs) | :sunny: :feet: personal blog docs 项目预览:https://jgsrty.github.io 国内访问:https://rtyxmd.gitee.io | 109 | Shell | 09/01 |
| 122 | [Kiyotaka233/ASF-Install-Shell](https://github.com/Kiyotaka233/ASF-Install-Shell) | 一个在 Linux 中的自动化安装ArchiSteamFarm的脚本。 | 106 | Shell | 03/30 |
| 123 | [rcmdnk/sentaku](https://github.com/rcmdnk/sentaku) | Utility to make sentaku (selection, 選択(sentaku)) window with shell command. | 106 | Shell | 07/18 |
| 124 | [MoreSecLab/DDG_MalWare_Clean_Tool](https://github.com/MoreSecLab/DDG_MalWare_Clean_Tool) | Watchdogs 、kthrotlds 挖矿蠕虫清理脚本。 | 103 | Shell | 06/04 |
| 125 | [suniceman/ss-fly](https://github.com/suniceman/ss-fly) | 一键脚本搭建ss/ssr并开启bbr内核加速(Ubuntu/CentOS/Debian) | 101 | Shell | 06/21 |
| 126 | [aa335418265/IPABuildShell](https://github.com/aa335418265/IPABuildShell) | IPABuildShell 一个强大的、轻量的 iOS 自动打包工具,无需手动指定授权文件和证书 | 99 | Shell | 08/21 |
| 127 | [idoop/docker-apollo](https://github.com/idoop/docker-apollo) | docker image for Ctrip/Apollo(携程Apollo) | 99 | Shell | 05/07 |
| 128 | [sensec/ddns-scripts_aliyun](https://github.com/sensec/ddns-scripts_aliyun) | OpenWrt/LEDE DDNS support for aliyun (阿里云) | 96 | Shell | 03/21 |
| 129 | [shengqiangzhang/Drcom-GDUT-HC5661A-OpenWrt](https://github.com/shengqiangzhang/Drcom-GDUT-HC5661A-OpenWrt) | 在Drcom下使用路由器上校园网WIFI(以广东工业大学、极路由1S HC5661A、OpenWrt为例) | 89 | Shell | 04/19 |
| 130 | [yomun/youdaodict_5.5](https://github.com/yomun/youdaodict_5.5) | 重新编译 DeepIn 的有道词典 DEB 包 (支持其它新的 Linux 分发版) | 89 | Shell | 06/07 |
| 131 | [moooofly/MarkSomethingDown](https://github.com/moooofly/MarkSomethingDown) | 本仓库用于记录自 2016年6月1日起,在饿了么任职期间的各方面知识汇总~ | 86 | Shell | 04/29 |
| 132 | [FantasticLBP/codesnippets](https://github.com/FantasticLBP/codesnippets) | iOS 代码规范、Xcode 代码块和文件模版 | 85 | Shell | 09/02 |
| 133 | [iKubernetes/Kubernetes_Advanced_Practical](https://github.com/iKubernetes/Kubernetes_Advanced_Practical) | 《kubernetes进阶实战》一书配套YAML源码 | 85 | Shell | 02/13 |
| 134 | [clion007/dnsmasq](https://github.com/clion007/dnsmasq) | 全自动dnsmasq及hosts科学上网,防DNS劫持及全面广告屏蔽脚本 | 84 | Shell | 09/02 |
| 135 | [levinit/itnotes](https://github.com/levinit/itnotes) | 个人笔记,IT相关。 | 84 | Shell | 08/18 |
| 136 | [nwcdlabs/kops-cn](https://github.com/nwcdlabs/kops-cn) | AWS中国宁夏区域/北京区域,快速Kops部署K8S集群 | 84 | Shell | 08/25 |
| 137 | [233boy/ss](https://github.com/233boy/ss) | Shadowsocks-Go 一键安装脚本 & 管理脚本 | 81 | Shell | 05/15 |
| 138 | [wangdoc/html-tutorial](https://github.com/wangdoc/html-tutorial) | HTML 语言教程 | 80 | Shell | 08/19 |
| 139 | [QAX-A-Team/WeblogicEnvironment](https://github.com/QAX-A-Team/WeblogicEnvironment) | Weblogic环境搭建工具 | 80 | Shell | 08/01 |
| 140 | [4ch12dy/issh](https://github.com/4ch12dy/issh) | iOS免密登录ssh,自动打开端口映射,自动签名debugserver,一键调试,一键shell等等,越狱设备用issh就够了 | 80 | Shell | 08/20 |
| 141 | [jueying/docker-ngrok-server](https://github.com/jueying/docker-ngrok-server) | ngrok服务器的docker image,实现内网穿透。也可以下载附件中的ngrok客户端使用 | 78 | Shell | 03/26 |
| 142 | [zsenliao/shellMonitor](https://github.com/zsenliao/shellMonitor) | 一个 Linux 下基于 Bash 的文件和数据库监控及备份工具,可发送微信报警通知 | 78 | Shell | 05/07 |
| 143 | [aoaoho/DEVONthink-Chinese](https://github.com/aoaoho/DEVONthink-Chinese) | DEVONthink 简体中文语言包(中文化/汉化/中文版) \| Chinese translation \| zh_CN.lproj | 77 | Shell | 05/07 |
| 144 | [FantasticLBP/knowledge-kit](https://github.com/FantasticLBP/knowledge-kit) | iOS、Web前端、后端、Swift、计算机网络踩坑以及学习记录 | 76 | Shell | 08/29 |
| 145 | [YCF/Hackintosh-EFI-for-deskmini-310-i3-8100](https://github.com/YCF/Hackintosh-EFI-for-deskmini-310-i3-8100) | deskmini 310+i3-8100 的 hackintosh(黑苹果)EFI 配置 | 75 | Shell | 02/06 |
| 146 | [goldze/Anti-Android-KM](https://github.com/goldze/Anti-Android-KM) | 破解某猫社区VIP会员 | 74 | Shell | 08/12 |
| 147 | [mritd/shell_scripts](https://github.com/mritd/shell_scripts) | 常用的一些 shell 脚本 | 73 | Shell | 08/21 |
| 148 | [cniPatch/NavicatPremium](https://github.com/cniPatch/NavicatPremium) | Navicat Premium 🦀简体中文版 | 72 | Shell | 07/30 |
| 149 | [felix-fly/v2ray-openwrt](https://github.com/felix-fly/v2ray-openwrt) | 路由器Openwrt安装V2ray简单流程 | 71 | Shell | 08/27 |
| 150 | [xnng/my-git-bash](https://github.com/xnng/my-git-bash) | git bash 优化指北 | 70 | Shell | 04/28 |
| 151 | [laubonghaudoi/Chinese_Rime](https://github.com/laubonghaudoi/Chinese_Rime) | 收集現代漢語方言和古漢語的中州韻輸入法拼音方案 Collection of phonetic spelling schemas for Sinitic languages and dialects | 70 | Shell | 09/02 |
| 152 | [apachecn/awesome-cs-courses-zh](https://github.com/apachecn/awesome-cs-courses-zh) | 计算机公开课推荐 | 70 | Shell | 08/08 |
| 153 | [cjy37/linux-install-script](https://github.com/cjy37/linux-install-script) | 自动安装 docker \| rancher \| k8s \| mysql \| redis \| haproxy \| mongodb \| nginx \| Node.js \| mosquitto (MQTT server) | 69 | Shell | 07/19 |
| 154 | [apachecn/ml-book-100-zh](https://github.com/apachecn/ml-book-100-zh) | :book: [译] 百页机器学习小书 | 69 | Shell | 08/27 |
| 155 | [giantbranch/pwn-env-init](https://github.com/giantbranch/pwn-env-init) | CTF PWN 做题环境一键搭建脚本 | 69 | Shell | 08/28 |
| 156 | [vcheckzen/XunleiKuainiaoInShell](https://github.com/vcheckzen/XunleiKuainiaoInShell) | [ 迅雷快鸟 Shell 版 ] A Shell Implementation of Kuainiao, Xunlei | 67 | Shell | 04/24 |
| 157 | [zwmscorm/sharealiddns](https://github.com/zwmscorm/sharealiddns) | 全功能阿里云域名解析脚本(支持IPV4, IPV6, 多域名等,同时支持asuswrt-merlin 、padavan、pandorabox、lede/openwrt固件) | 67 | Shell | 06/11 |
| 158 | [bookfere/KindleEar-Uploader](https://github.com/bookfere/KindleEar-Uploader) | 适用于 GAE 云端 Shell 的 KindleEar上传脚本。 | 65 | Shell | 08/15 |
| 159 | [gnu4cn/ccna60d](https://github.com/gnu4cn/ccna60d) | 60天通过思科认证的网络工程师考试 | 63 | Shell | 08/30 |
| 160 | [lgs3137/MR_S1-macOS](https://github.com/lgs3137/MR_S1-macOS) | 机械革命S1(MSI PS42 8RB) for macOS Catalina & Mojave | 62 | Shell | 09/02 |
| 161 | [cjybyjk/powercfg_generator](https://github.com/cjybyjk/powercfg_generator) | 用于CPU调度作者生成powercfg和卡刷包 | 62 | Shell | 08/28 |
| 162 | [jas502n/gitlab-SSRF-redis-RCE](https://github.com/jas502n/gitlab-SSRF-redis-RCE) | GitLab 11.4.7 SSRF配合redis远程执行代码 | 61 | Shell | 04/24 |
| 163 | [goodboy23/shell-script-collection](https://github.com/goodboy23/shell-script-collection) | shell脚本合集,地址:http://www.52wiki.cn/docs/shell/shell-1amsdgmu7q851 | 61 | Shell | 08/13 |
| 164 | [BlockchainOne/WeChat](https://github.com/BlockchainOne/WeChat) | 区块链技术指北(ChainONE)社区微信群价值信息汇总。 | 61 | Shell | 09/01 |
| 165 | [yejinlei/about-compiler](https://github.com/yejinlei/about-compiler) | 有关编译器 | 61 | Shell | 08/25 |
| 166 | [Toxic-Cat/Airport-toolkit](https://github.com/Toxic-Cat/Airport-toolkit) | 各類方便機場主進行安裝維護的shell腳本 | 61 | Shell | 08/29 |
| 167 | [darkhandz/XPS15-9550-Mojave](https://github.com/darkhandz/XPS15-9550-Mojave) | DELL XPS15 9550 10.14 黑苹果 配置 | 60 | Shell | 05/22 |
| 168 | [yz19930826/shadowsocks-d](https://github.com/yz19930826/shadowsocks-d) | shadowsocks优质教程集锦 | 59 | Shell | 06/01 |
| 169 | [mdrights/LiveSlak](https://github.com/mdrights/LiveSlak) | 中文化的隐私加强 GNU/Linux 系统 - Forked from Alien Bob's powerful building script for Slackware Live. | 59 | Shell | 06/23 |
| 170 | [dunwu/linux-tutorial](https://github.com/dunwu/linux-tutorial) | :penguin: Linux教程、Docker教程、Git教程;Linux运维脚本整理;Shell、Python、Vim教程 | 59 | Shell | 08/21 |
| 171 | [arloor/iptablesUtils](https://github.com/arloor/iptablesUtils) | iptables转发ddns域名 | 57 | Shell | 08/28 |
| 172 | [MFrank2016/GotoSSH](https://github.com/MFrank2016/GotoSSH) | Automatic login SSH (一键登录SSH,可直接从跳板机登录到线上服务器) | 57 | Shell | 06/15 |
| 173 | [guanpengchn/LeetCodeDrawing](https://github.com/guanpengchn/LeetCodeDrawing) | 力扣精选题解,画解算法合集 | 57 | Shell | 08/10 |
| 174 | [1265578519/kangle](https://github.com/1265578519/kangle) | kangle web server 最强网站性能服务器架设软件 | 57 | Shell | 08/15 |
| 175 | [project-openwrt/UnblockNeteaseMusic](https://github.com/project-openwrt/UnblockNeteaseMusic) | OpenWRT/LEDE 解除网易云音乐播放限制 | 56 | Shell | 08/23 |
| 176 | [wanjunlengfeng/goodyesmarket](https://github.com/wanjunlengfeng/goodyesmarket) | WhatsVPN Free Download (萝卜加速器免费版)-打造全球免费的加速器VPN公司 | 55 | Shell | 04/21 |
| 177 | [athlonreg/AppleALC-ALCPlugFix](https://github.com/athlonreg/AppleALC-ALCPlugFix) | 简单制作AppleALC驱动声卡并解决耳机、外放切换以及麦克风无输入 | 55 | Shell | 09/01 |
| 178 | [iqiancheng/fast-profiler](https://github.com/iqiancheng/fast-profiler) | 快速查看占用CPU前五的java线程栈 | 54 | Shell | 01/23 |
| 179 | [WuOtto/MacImagesetGenerator](https://github.com/WuOtto/MacImagesetGenerator) | 2个脚本文件,帮助你在Mac上,生成Xcode可使用的APP图标和启动图。 | 53 | Shell | 04/28 |
| 180 | [Lancger/opslinux](https://github.com/Lancger/opslinux) | Linux运维手册(基础+Redis+安全+漏洞扫描+ELFK+LVM+监控+CI/CD+数据库+翻墙+LDAP+MQ等) | 53 | Shell | 08/31 |
| 181 | [smallmuou/xmlyfetcher](https://github.com/smallmuou/xmlyfetcher) | 喜马拉雅音频下载工具 | 53 | Shell | 08/07 |
| 182 | [idoop/zentao](https://github.com/idoop/zentao) | auto build docker image for zentao(禅道). | 52 | Shell | 08/08 |
| 183 | [wyx176/Socks5](https://github.com/wyx176/Socks5) | Socks5代理服务器搭建脚本/Socks5 shortcut creation script | 51 | Shell | 08/23 |
| 184 | [BeginMan/myshell](https://github.com/BeginMan/myshell) | 写的常用Shell小工具,运维小脚本等 | 51 | Shell | 04/19 |
| 185 | [JaderH/GreenBox](https://github.com/JaderH/GreenBox) | :game_die: 娱乐项目,使用 Crontab 定时提交 Commits。点亮绿格子;对就是绿 | 51 | Shell | 09/02 |
| 186 | [biezhihua/FFmpegBuildTool](https://github.com/biezhihua/FFmpegBuildTool) | A simple,fast FFmpeg build tool [一款简洁、快速的FFmpeg编译构建工具] 🚀🚀 | 51 | Shell | 08/27 |
| 187 | [zhenruyan/codefont](https://github.com/zhenruyan/codefont) | 60余种常用的等宽字体 愉快的code吧 欢迎issues我 收录更多字体 Happy code bar with more than 60 common fonts of equal width. Welcome issues. I include more fonts. | 50 | Shell | 01/25 |
| 188 | [primovist/snell.sh](https://github.com/primovist/snell.sh) | snell的一键安装脚本 | 49 | Shell | 06/28 |
| 189 | [alicfeng/AShell](https://github.com/alicfeng/AShell) | 开发者常用脚本shell | 47 | Shell | 07/12 |
| 190 | [linfangzhi/Onekey_ss_ssr](https://github.com/linfangzhi/Onekey_ss_ssr) | 酸酸 酸酸乳 暴力魔改BBR 一键脚本(仅作学术用途) | 46 | Shell | 05/22 |
| 191 | [vagentProject/vAgent](https://github.com/vagentProject/vAgent) | 基于ECC非对称公钥技术的新一代隧道技术 | 46 | Shell | 04/16 |
| 192 | [GitHubNull/YaHei-Consolas-Hybrid-1.12](https://github.com/GitHubNull/YaHei-Consolas-Hybrid-1.12) | 编程专用优美字体,特别是在Linux下的IDE特别管用。 | 46 | Shell | 03/28 |
| 193 | [fenbox/Vagrantfile](https://github.com/fenbox/Vagrantfile) | Vagrant 配置示例 | 45 | Shell | 04/05 |
| 194 | [hegphegp/docker-learning](https://github.com/hegphegp/docker-learning) | docker和一些软件学习笔记 | 45 | Shell | 09/01 |
| 195 | [daliansky/Lenovo-Air13-IWL-Hackintosh](https://github.com/daliansky/Lenovo-Air13-IWL-Hackintosh) | 联想小新Air 13 IWL笔记本EFI | 45 | Shell | 09/02 |
| 196 | [meishixiu/note](https://github.com/meishixiu/note) | 笔记 | 44 | Shell | 05/19 |
| 197 | [ibisheng/onlyoffice-deploy](https://github.com/ibisheng/onlyoffice-deploy) | onlyoffice 一键安装 :毕升文档包括drive和在线文件服务功能。其中drive实现文件的在线管理,组织结构权限,分享,团队协作等,文件的全文检索等功能;在线文件服务能够处理word,ppt,excel格式文件的带水印预览以及多人协同编辑,另外还能处理pdf,视频,音频文件的预览以及实现了100多种文本文件带语法高亮的预览 | 44 | Shell | 08/28 |
| 198 | [LGiki/RuijiePortalLoginShellScript](https://github.com/LGiki/RuijiePortalLoginShellScript) | 锐捷 ePortal Web 认证自动登录脚本 (Shell Script) | 43 | Shell | 06/01 |
| 199 | [jiangtao/blog](https://github.com/jiangtao/blog) | 深入基础,沉淀下来。欢迎watch或star. 更多信息关注: 公众号 大前端空间 | 43 | Shell | 06/18 |
| 200 | [sakura-internet/cloud-startupscripts](https://github.com/sakura-internet/cloud-startupscripts) | さくらのクラウド スタートアップスクリプト用リポジトリです | 41 | Shell | 08/13 |
⬆ [回到目录](#目录)
<br/>
## C
| # | Repository | Description | Stars | Language | Updated |
| ---- | ------------------------------------------------------------ | ------------------------------------------------------------ | ----- | -------- | ------- |
| 1 | [QSCTech/zju-icicles](https://github.com/QSCTech/zju-icicles) | 浙江大学课程攻略共享计划 | 13.6k | C | 08/30 |
| 2 | [Awesome-HarmonyOS/HarmonyOS](https://github.com/Awesome-HarmonyOS/HarmonyOS) | A curated list of awesome things related to HarmonyOS. 华为鸿蒙操作系统。 | 12.4k | C | 08/26 |
| 3 | [bingoogolapple/BGAQRCode-Android](https://github.com/bingoogolapple/BGAQRCode-Android) | QRCode 扫描二维码、扫描条形码、相册获取图片后识别、生成带 Logo 二维码、支持微博微信 QQ 二维码扫描样式 | 5.8k | C | 05/31 |
| 4 | [nonstriater/Learn-Algorithms](https://github.com/nonstriater/Learn-Algorithms) | 算法学习笔记 | 3.9k | C | 08/12 |
| 5 | [Meituan-Dianping/SQLAdvisor](https://github.com/Meituan-Dianping/SQLAdvisor) | 输入SQL,输出索引优化建议 | 3.8k | C | 04/10 |
| 6 | [EZLippi/Tinyhttpd](https://github.com/EZLippi/Tinyhttpd) | Tinyhttpd 是J. David Blackstone在1999年写的一个不到 500 行的超轻量型 Http Server,用来学习非常不错,可以帮助我们真正理解服务器程序的本质。官网:http://tinyhttpd.sourceforge.net | 3.8k | C | 06/13 |
| 7 | [SecWiki/windows-kernel-exploits](https://github.com/SecWiki/windows-kernel-exploits) | windows-kernel-exploits Windows平台提权漏洞集合 | 3.3k | C | 07/29 |
| 8 | [mabeijianxi/small-video-record](https://github.com/mabeijianxi/small-video-record) | 利用FFmpeg视频录制微信小视频与其压缩处理 | 3.0k | C | 07/13 |
| 9 | [miloyip/json-tutorial](https://github.com/miloyip/json-tutorial) | 从零开始的 JSON 库教程 | 2.8k | C | 08/31 |
| 10 | [SecWiki/linux-kernel-exploits](https://github.com/SecWiki/linux-kernel-exploits) | linux-kernel-exploits Linux平台提权漏洞集合 | 2.8k | C | 03/26 |
| 11 | [Sunzxyong/Tiny](https://github.com/Sunzxyong/Tiny) | an image compression framework.(一个高保真、高压缩比的图片压缩框架) | 2.3k | C | 02/17 |
| 12 | [yourtion/30dayMakeOS](https://github.com/yourtion/30dayMakeOS) | 《30天自制操作系统》源码中文版。自己制作一个操作系统(OSASK)的过程 | 2.3k | C | 05/27 |
| 13 | [linw7/Skill-Tree](https://github.com/linw7/Skill-Tree) | 🐼 准备秋招,欢迎来树上取果实 | 2.2k | C | 02/26 |
| 14 | [WizTeam/WizQTClient](https://github.com/WizTeam/WizQTClient) | 为知笔记跨平台客户端 | 2.0k | C | 08/14 |
| 15 | [snooda/net-speeder](https://github.com/snooda/net-speeder) | net-speeder 在高延迟不稳定链路上优化单线程下载速度 | 2.0k | C | 07/12 |
| 16 | [y123456yz/reading-code-of-nginx-1.9.2](https://github.com/y123456yz/reading-code-of-nginx-1.9.2) | nginx-1.9.2源码通读分析注释,带详尽函数中文分析注释以及相关函数流程调用注释,最全面的nginx源码阅读分析中文注释,更新完毕(nginx源码学习交流QQ群:568892619) | 2.0k | C | 07/30 |
| 17 | [yangchaojiang/yjPlay](https://github.com/yangchaojiang/yjPlay) | 一个支持自定义UI布局,流式API, 加密,直播 ,亮度,音量,快进等手势 ,广告视频预览,多种加载模式 ,多种分辨率切换 ,多种封面图, 自定义数据源,列表播放,倍数播放,边播变缓存<font color="red">不是使用AndroidVideoCache</font>,离线播放,神奇的播放器 | 1.5k | C | 08/30 |
| 18 | [reactnativecn/react-native-pushy](https://github.com/reactnativecn/react-native-pushy) | ReactNative中文网推出的代码热更新服务 | 1.4k | C | 09/01 |
| 19 | [firmianay/CTF-All-In-One](https://github.com/firmianay/CTF-All-In-One) | CTF竞赛入门指南 | 1.3k | C | 08/18 |
| 20 | [guanzhi/GmSSL](https://github.com/guanzhi/GmSSL) | 支持国密SM2/SM3/SM4/SM9/ZUC/SSL的OpenSSL分支 | 1.2k | C | 08/28 |
| 21 | [yangjie10930/EpMedia](https://github.com/yangjie10930/EpMedia) | Android上基于FFmpeg开发的视频处理框架,简单易用,体积小,帮助使用者快速实现视频处理功能。包含以下功能:剪辑,裁剪,旋转,镜像,合并,分离,变速,添加LOGO,添加滤镜,添加背景音乐,加速减速视频,倒放音视频。 | 1.2k | C | 06/10 |
| 22 | [microshow/RxFFmpeg](https://github.com/microshow/RxFFmpeg) | 🔥RxFFmpeg 是基于 ( FFmpeg 4.0 + X264 + mp3lame + fdk-aac ) 编译的适用于 Android 平台的音视频编辑、视频剪辑的快速处理框架,包含以下功能(视频拼接,转码,压缩,裁剪,片头片尾,分离音视频,变速,添加静态贴纸和gif动态贴纸,添加字幕,添加滤镜,添加背景音乐,加速减速视频,倒放音视频,音频裁剪,变声,混音,图片合成视频,视频解码图片等主流特色功能 | 1.1k | C | 08/19 |
| 23 | [liexusong/php-beast](https://github.com/liexusong/php-beast) | PHP source code encrypt module (PHP源码加密模块) | 1.1k | C | 04/02 |
| 24 | [baoleiji/QilinBaoleiji](https://github.com/baoleiji/QilinBaoleiji) | 堡垒机-麒麟堡垒机,集堡垒机、SSLVPN-堡垒机内置、动态口令-堡垒机内置、应用审计-堡垒机内置、数据库审计-堡垒机内置、CA证书-堡垒机内置-堡垒机内置、云桌面-堡垒机内置、密码自动修改为一体的堡垒机系统 | 1.1k | C | 03/06 |
| 25 | [huawei-iot/HarmonyOS](https://github.com/huawei-iot/HarmonyOS) | 鸿蒙系统资料。Docs about HarmonyOS. | 1.0k | C | 08/15 |
| 26 | [cetus-tools/cetus](https://github.com/cetus-tools/cetus) | 专注于稳定、性能和分布式事务的MySQL数据库中间件(其中性能测试在开源数据库中间件排名第一) | 990 | C | 08/29 |
| 27 | [zlgopen/awtk](https://github.com/zlgopen/awtk) | AWTK = Toolkit AnyWhere(为嵌入式、手机和PC打造的通用GUI系统) | 963 | C | 09/01 |
| 28 | [xufuji456/FFmpegAndroid](https://github.com/xufuji456/FFmpegAndroid) | android端基于FFmpeg实现音频剪切、拼接、转码、混音、编解码;视频剪切、水印、截图、转码、编解码、转Gif动图、画面拼接、视频倒播;音视频合成与分离;音视频解码、同步与播放;FFmpeg本地推流、H264与RTMP实时推流直播;OpenGL+GPUImage实时滤镜;FFmpeg滤镜:素描、色彩平衡、hue、lut、模糊、九宫格等;基于IjkPlayer修改支持RTSP超低延时直播(局域网1080P延时130ms)、暂停、静音,多路投屏直播 | 885 | C | 08/03 |
| 29 | [armink/EasyLogger](https://github.com/armink/EasyLogger) | A ultra-lightweight(ROM<1.6K, RAM<0.3k), high-performance C/C++ log library. \| 一款超轻量级(ROM<1.6K, RAM<0.3k)、高性能的 C/C++ 日志库 | 883 | C | 08/03 |
| 30 | [quickjs-zh/QuickJS](https://github.com/quickjs-zh/QuickJS) | QuickJS是一个小型并且可嵌入的Javascript引擎,它支持ES2019规范,包括模块,异步生成器和代理器。 | 763 | C | 08/30 |
| 31 | [armink/EasyFlash](https://github.com/armink/EasyFlash) | Lightweight IoT device information storage solution. Make the flash to be a small KV database. \| 轻量级物联网设备信息存储方案,让 Flash 成为小型 KV 数据库 | 753 | C | 08/10 |
| 32 | [MRNIU/SimpleKernel](https://github.com/MRNIU/SimpleKernel) | Simple kernel for learning operating systems. 用于学习操作系统的简单内核 | 676 | C | 05/22 |
| 33 | [chiakge/Linux-NetSpeed](https://github.com/chiakge/Linux-NetSpeed) | 将Linux现常用的网络加速集成在一起 | 666 | C | 07/25 |
| 34 | [BruceWind/AESJniEncrypt](https://github.com/BruceWind/AESJniEncrypt) | Reach high security in Android. (ndk实现AES,key在native中,防止被二次打包){长期维护,请star,勿fork} | 649 | C | 07/15 |
| 35 | [gatieme/LDD-LinuxDeviceDrivers](https://github.com/gatieme/LDD-LinuxDeviceDrivers) | Linux内核与设备驱动程序学习笔记 | 638 | C | 07/26 |
| 36 | [cx9208/bbrplus](https://github.com/cx9208/bbrplus) | 编译了dog250大神的bbr修正版 | 622 | C | 07/10 |
| 37 | [netwarm007/GameEngineFromScratch](https://github.com/netwarm007/GameEngineFromScratch) | 配合我的知乎专栏写的项目 | 607 | C | 08/30 |
| 38 | [y123456yz/Reading-and-comprehense-linux-Kernel-network-protocol-stack](https://github.com/y123456yz/Reading-and-comprehense-linux-Kernel-network-protocol-stack) | linux内核网络协议栈源码阅读分析注释--带详尽中文分析注释以及相关流程分析调用注释,对理解分析内核协议栈源码很有帮助(源码学习交流QQ群:568892619) | 579 | C | 04/07 |
| 39 | [starrtc/starrtc-server](https://github.com/starrtc/starrtc-server) | 免费IM系统,IM即时通信消息系统(含一对一文字聊天,群聊,聊天室),免费一对一voip实时通话,录屏,webrtc服务端,免费直播连麦,互动直播,视频直播,RTSP拉流,RTMP推流,语音对讲,免费在线会议,视频会议等服务端程序,支持物联网平台,✨万水千山总是情,来个star行不行✨ | 570 | C | 08/27 |
| 40 | [jianfengye/nginx-1.0.14_comment](https://github.com/jianfengye/nginx-1.0.14_comment) | nginx源码中文注释版 | 555 | C | 01/14 |
| 41 | [cppla/ServerStatus](https://github.com/cppla/ServerStatus) | 云探针、多服务器探针、云监控、多服务器云监控,演示: https://tz.cloudcpp.com/ | 538 | C | 06/27 |
| 42 | [Ewenwan/ShiYanLou](https://github.com/Ewenwan/ShiYanLou) | 学习C & C++ & python&汇编语言 数据结构 算法 操作系统 单片机 linux 面试 | 530 | C | 09/01 |
| 43 | [armink/FreeModbus_Slave-Master-RTT-STM32](https://github.com/armink/FreeModbus_Slave-Master-RTT-STM32) | Add master mode to FreeModbus. \| 在 FreeModbus 中添加主机模式 | 522 | C | 06/18 |
| 44 | [kangjianwei/Data-Structure](https://github.com/kangjianwei/Data-Structure) | 《数据结构》-严蔚敏.吴伟民-教材源码与习题解析 | 522 | C | 02/22 |
| 45 | [hurley25/hurlex-doc](https://github.com/hurley25/hurlex-doc) | hurlex 小内核分章节代码和文档 | 501 | C | 07/02 |
| 46 | [yianwillis/vimcdoc](https://github.com/yianwillis/vimcdoc) | Vim 中文文档计划 | 496 | C | 08/14 |
| 47 | [larryli/PuTTY](https://github.com/larryli/PuTTY) | PuTTY 中文版,原 http://code.google.com/p/puttycn 项目。 | 476 | C | 07/24 |
| 48 | [wulijun/php-ext-trie-filter](https://github.com/wulijun/php-ext-trie-filter) | php extension for spam word filter based on Double-Array Trie tree, it can detect if a spam word exists in a text message. 关键词过滤扩展,用于检查一段文本中是否出现敏感词,基于Double-Array Trie 树实现。 | 463 | C | 02/13 |
| 49 | [armink/CmBacktrace](https://github.com/armink/CmBacktrace) | Advanced fault backtrace library for ARM Cortex-M series MCU \| ARM Cortex-M 系列 MCU 错误追踪库 | 460 | C | 07/16 |
| 50 | [ustcwpz/USTC-CS-Courses-Resource](https://github.com/ustcwpz/USTC-CS-Courses-Resource) | USTC计算机学院课程资源 | 442 | C | 05/29 |
| 51 | [Tassandar/OSASK](https://github.com/Tassandar/OSASK) | <30天自制操作系统>-----用GIT管理你的自制操作系统。 | 435 | C | 05/26 |
| 52 | [linyiqun/Redis-Code](https://github.com/linyiqun/Redis-Code) | redis键值数据库源码分析 | 425 | C | 04/23 |
| 53 | [aliyun/iotkit-embedded](https://github.com/aliyun/iotkit-embedded) | 高速镜像: https://code.aliyun.com/linkkit/c-sdk | 387 | C | 08/29 |
| 54 | [Jeykit/MUKit](https://github.com/Jeykit/MUKit) | 'UITableView、UICollectionView、Signal、UINavigation、QRCode、AliPay、weChatPay、Shared、Popup、Networking、Runtime、Block、UIScrollView、嵌套滚动、多代理、MVVM、Refresh、delegate、Route、路由、CheckBox、微信键盘、QQ下拉下单、图片多选、图片浏览器、图片缓存、富文本、TextKit、标签、分段视图'-提高iOS开发效率的MUKit | 380 | C | 08/21 |
| 55 | [vimfung/LuaScriptCore](https://github.com/vimfung/LuaScriptCore) | 一款简单易用的多平台Lua桥接器,目前支持在iOS、Mac OS X、Android以及Unity3D中使用,让原生环境与Lua无障碍沟通。 | 377 | C | 08/21 |
| 56 | [headingmobile/fabu.love](https://github.com/headingmobile/fabu.love) | 应用发布平台类似fir.im/蒲公英,支持检查更新,灰度发布等等.Demo地址:https://fabu.apppills.com/ | 370 | C | 04/30 |
| 57 | [del-xiong/screw-plus](https://github.com/del-xiong/screw-plus) | 开源php加密运行扩展,基于screw二次开发,暂时只能在linux下运行 | 368 | C | 05/09 |
| 58 | [mengzhidaren/Vlc-sdk-lib](https://github.com/mengzhidaren/Vlc-sdk-lib) | vlc-android The latest compilation video playback libraries 最新视频库支持录屏 欢迎star | 362 | C | 07/02 |
| 59 | [feiskyer/linux-perf-examples](https://github.com/feiskyer/linux-perf-examples) | 《Linux 性能优化实战》案例 | 354 | C | 03/24 |
| 60 | [osgochina/donkeyid](https://github.com/osgochina/donkeyid) | php扩展,64位自增id生成器 | 350 | C | 01/22 |
| 61 | [tsingsee/EasyRTMP](https://github.com/tsingsee/EasyRTMP) | EasyRTMP是一套调用简单、功能完善、运行高效稳定的RTMP功能组件,经过多年实战和线上运行打造,支持RTMP推送断线重连、环形缓冲、智能丢帧、网络事件回调,支持Windows、Linux、arm(hisiv100/hisiv200/hisiv300/hisiv400/hisiv500/hisiv600/etc..)、Android、iOS平台,支持市面上绝大部分的RTMP流媒体服务器,包括Wowza、Red5、ngnix_rtmp、crtmpserver等主流RTMP服务器,能够完美应用于各种行业的直播需求,手机直播、桌面直播、摄像机直播、课堂直播等等方面! Android版本地址:ht ... | 345 | C | 08/30 |
| 62 | [rime/ibus-rime](https://github.com/rime/ibus-rime) | 【中州韻】Rime for Linux/IBus | 341 | C | 06/27 |
| 63 | [CasterWx/AntzOS](https://github.com/CasterWx/AntzOS) | :earth_asia: Develop an intelligent AI half terminal half graphical operating system Antz. 一个随心所欲制造的操作系统Antz。 | 339 | C | 08/09 |
| 64 | [wanliyang1990/wlplayer](https://github.com/wanliyang1990/wlplayer) | NDK+FFmpeg+OpenSL+OpenGL+Mediacodec 的视频播放SDK源码和实例APP,很适合学习ffmpeg解码流程和Android中NDK实战开发 | 335 | C | 05/03 |
| 65 | [lqian/light-LPR](https://github.com/lqian/light-LPR) | Light-LPR是一个瞄准可以在嵌入式设备、手机端和普通的x86平台上运行的车牌识别开源项目,旨在支持各种场景的车牌识别,车牌字符识别准确率超99.95%,综合识别准确率超过99%,支持目前国内所有的车牌识别,觉得好用的一定要加星哦。 | 331 | C | 08/30 |
| 66 | [chenall/grub4dos](https://github.com/chenall/grub4dos) | 外部命令和工具源码:https://github.com/chenall/grubutils 下载: | 322 | C | 08/09 |
| 67 | [zsummer/breeze](https://github.com/zsummer/breeze) | 一个C++的轻量级的分布式服务器引擎, 架构思想为一切皆service. | 302 | C | 06/08 |
| 68 | [armink/SFUD](https://github.com/armink/SFUD) | An using JEDEC's SFDP standard serial (SPI) flash universal driver library \| 一款使用 JEDEC SFDP 标准的串行 (SPI) Flash 通用驱动库 | 302 | C | 05/30 |
| 69 | [picasso250/spring12](https://github.com/picasso250/spring12) | 春节十二响 | 290 | C | 06/27 |
| 70 | [czqasngit/objc_msgSend_hook](https://github.com/czqasngit/objc_msgSend_hook) | objc_msgSend之精简且完整的hook核心功能,并且还有详细注释 | 280 | C | 04/29 |
| 71 | [hurley25/Hurlex-II](https://github.com/hurley25/Hurlex-II) | 第二版重新设计和构思,参考一些优秀的实现进行补充设计和编码。 | 271 | C | 04/22 |
| 72 | [tangsilian/android-vuln](https://github.com/tangsilian/android-vuln) | 安卓内核提权漏洞分析 | 270 | C | 04/27 |
| 73 | [huangz1990/blog](https://github.com/huangz1990/blog) | 我的个人博客。 | 251 | C | 08/29 |
| 74 | [elarity/data-structure-php-clanguage](https://github.com/elarity/data-structure-php-clanguage) | 对于数据结构和算法类的东西,我工作有些年份了,大学也有所涉猎,积累了一些内容,不高产不母猪,打我自己脸 | 248 | C | 07/26 |
| 75 | [fanchy/fflib](https://github.com/fanchy/fflib) | FFLib is a lightweight c++ framework.FFlib is mainly designed for game server developing. But some components in FFLib is in common use. For example socket&net module, log module, thread&lock, tools for performance & memory leak check.用于分布式程序的c++类库,封装了socket、rpc、lua、CQRS框架、算法等组件,适于SNS、WEBGAME、MMO后台程 ... | 243 | C | 08/20 |
| 76 | [aqi00/android2](https://github.com/aqi00/android2) | 《Android Studio开发实战:从零基础到App上线》随书源码(全面添加注释版) | 241 | C | 06/14 |
| 77 | [xausky/UnityModManager](https://github.com/xausky/UnityModManager) | 一个便捷的程序可以修改游戏内资源包括:Unity游戏资源,Wwise音频资源。 | 240 | C | 07/27 |
| 78 | [ma6174/fmpi](https://github.com/ma6174/fmpi) | 树莓派 FM发射台 | 236 | C | 07/09 |
| 79 | [979451341/Audio-and-video-learning-materials](https://github.com/979451341/Audio-and-video-learning-materials) | 基于Android的音视频学习资料代码集合第一弹,这是第二弹https://github.com/979451341/AudioVideoStudyCodeTwo | 235 | C | 02/12 |
| 80 | [lichuang/Lua-5.1.4-codedump](https://github.com/lichuang/Lua-5.1.4-codedump) | Lua 5.1.4版本代码注释 | 217 | C | 05/12 |
| 81 | [MiEcosystem/miio_open](https://github.com/MiEcosystem/miio_open) | 智能硬件接入文档 | 212 | C | 08/29 |
| 82 | [zerochl/FFMPEG-AAC-264-Android-32-64](https://github.com/zerochl/FFMPEG-AAC-264-Android-32-64) | android视频压缩,使用ffmpeg方案,集成fdk-aac与264编码,适用于32位系统与64位系统,支持ARM 32/64 cpu与x86 32/64 cpu,mips 32/64 cpu,即支持android7.0系统 | 210 | C | 06/11 |
| 83 | [chronolaw/annotated_nginx](https://github.com/chronolaw/annotated_nginx) | Annotated Nginx Source(中文) | 210 | C | 08/14 |
| 84 | [updateing/minieap](https://github.com/updateing/minieap) | 可扩展的 802.1x 客户端,带有锐捷 v3 (v4) 算法插件支持 | 209 | C | 05/18 |
| 85 | [y123456yz/middleware_development_learning](https://github.com/y123456yz/middleware_development_learning) | 手把手教你做中间件、高性能服务器、分布式存储等(redis、memcache、nginx、大容量redis pika、rocksdb、mongodb、wiredtiger存储引擎、高性能代理中间件)二次开发、性能优化,逐步整理文档说明并配合demo指导--每周末定时更新2-3篇技术文章及程序demo--(技术交流QQ群:568892619) | 207 | C | 07/09 |
| 86 | [dpull/skynet-mingw](https://github.com/dpull/skynet-mingw) | 对skynet无任何改动的windows版 | 197 | C | 08/31 |
| 87 | [yifengyou/The-design-and-implementation-of-a-64-bit-os](https://github.com/yifengyou/The-design-and-implementation-of-a-64-bit-os) | 《一个64位操作系统的设计与实现》读书笔记&随书源码 | 196 | C | 08/24 |
| 88 | [idealclover/NJU-Review-Materials](https://github.com/idealclover/NJU-Review-Materials) | 📝 南哪课程复习资料 Review materials for NJU | 196 | C | 07/18 |
| 89 | [y123456yz/reading-and-annotate-quic](https://github.com/y123456yz/reading-and-annotate-quic) | quic、prot_quic、goquic、libquic源码中文注释分析,增加C++ quic-client和quic-server example 程序,便于快速掌握学习谷歌quic库源码和学习quic协议,作为新的网络加速协议,可以根据实际需要应用于自己的工程项目中。把google quic源码和goquic合并到一个工程编译安装 | 192 | C | 03/18 |
| 90 | [QingdaoU/Judger](https://github.com/QingdaoU/Judger) | Online judge sandbox based on seccomp \| OnlineJudge 安全沙箱 | 189 | C | 07/30 |
| 91 | [chexiongsheng/build_xlua_with_libs](https://github.com/chexiongsheng/build_xlua_with_libs) | 为xLua集成几个常用库,方便使用 | 189 | C | 06/18 |
| 92 | [chankeh/net-lenrning-reference](https://github.com/chankeh/net-lenrning-reference) | TCP/IP网络编程笔记 | 187 | C | 03/11 |
| 93 | [kingwang666/AppAddUpdate](https://github.com/kingwang666/AppAddUpdate) | Android app 增量更新 | 183 | C | 07/03 |
| 94 | [zhangqhn/mybase](https://github.com/zhangqhn/mybase) | 一个极简的数据库Demo | 178 | C | 05/04 |
| 95 | [gatieme/AderXCoding](https://github.com/gatieme/AderXCoding) | 介绍各类语言,库,系统编程以及算法的学习 | 178 | C | 06/23 |
| 96 | [Philon/arts](https://github.com/Philon/arts) | 每周一道算法一本书 | 171 | C | 09/01 |
| 97 | [hecongqing/2018-daguan-competition](https://github.com/hecongqing/2018-daguan-competition) | 2018年"达观杯"文本智能处理挑战赛-长文本分类-rank4 | 167 | C | 07/22 |
| 98 | [figozhang/runninglinuxkernel_4.0](https://github.com/figozhang/runninglinuxkernel_4.0) | 《奔跑吧Linux内核》配套实验平台和代码,白色入门酱香篇,蓝色进阶浓香篇 | 166 | C | 08/21 |
| 99 | [loveuav/BlueSkyFlightControl](https://github.com/loveuav/BlueSkyFlightControl) | 天穹飞控:致力于打造中国最强大的多旋翼开源飞控! | 164 | C | 01/08 |
| 100 | [y123456yz/Reading-and-comprehense-redis-cluster](https://github.com/y123456yz/Reading-and-comprehense-redis-cluster) | 分布式NOSQL redis源码阅读中文分析注释,带详尽注释以及相关流程调用注释,提出改造点,redis cluster集群功能、节点扩容、槽位迁移、failover故障切换、一致性选举完整分析,对理解redis源码很有帮助,解决了source insight中文注释乱码问题,更新完毕(redis源码学习交流QQ群:568892619) | 162 | C | 04/10 |
| 101 | [redknotmiaoyuqiao/Fractal](https://github.com/redknotmiaoyuqiao/Fractal) | 生成好看的Fractal图形 | 160 | C | 07/08 |
| 102 | [jntass/TASSL](https://github.com/jntass/TASSL) | 支持SM2 SM3 SM4国密算法和国密openssl协议的TASSL 新版基于openssl-1.1.1b版本已经更新:https://github.com/jntass/TASSL-1.1.1b | 160 | C | 03/26 |
| 103 | [EasyDarwin/EasyAACEncoder](https://github.com/EasyDarwin/EasyAACEncoder) | 开源项目:简单、高效、稳定的开源音频编码库,支持将各种音频数据(G.711A/PCMA、G.711U/PCMU、G726、PCM)转码成AAC(with adts)格式,其中aac编码部分采用的是业界公认的faac库,EasyAACEncoder支持Windows、Linux、ARM等多种平台,能够广泛应用于各种移动终端设备、嵌入式设备和流媒体转码服务器! | 155 | C | 08/19 |
| 104 | [OliverLew/PAT](https://github.com/OliverLew/PAT) | PAT OJ exercises in C language 浙江大学PAT纯C语言题解,欢迎改进建议 | 154 | C | 08/26 |
| 105 | [fanchy/h2engine](https://github.com/fanchy/h2engine) | H2服务器引擎架构是轻量级的,与其说是引擎,个人觉得称之为平台更为合适。因为它封装的功能少之又少,但是提供了非常简洁方便的扩展机制,使得可以用C++、python、lua、js、php来开发具体的服务器功能。H2引擎的灵感来源于web服务器Apache。 | 152 | C | 06/15 |
| 106 | [golaced/Oldx_fly_controller](https://github.com/golaced/Oldx_fly_controller) | 多旋翼开源飞控 更新中 请Star支持一下 | 149 | C | 03/31 |
| 107 | [hui6075/mosquitto-cluster](https://github.com/hui6075/mosquitto-cluster) | a built-in, autonomous Mosquitto Cluster implementation. MQTT集群. | 148 | C | 02/14 |
| 108 | [eboxmaker/eBox_Framework](https://github.com/eboxmaker/eBox_Framework) | ebox是类似于arduino的一层api,简化stm32编程 | 145 | C | 07/10 |
| 109 | [codeqian/ffmpegCLDemo](https://github.com/codeqian/ffmpegCLDemo) | 在android中使用ffmpeg库合成图片及音视频 | 144 | C | 01/15 |
| 110 | [byhook/ffmpeg4android](https://github.com/byhook/ffmpeg4android) | 音视频学习实践,从移植ffmpeg库到android平台,混合编译x264库以及fdk-aac库,到相机音频采集编码推流到RTMP服务器的学习记录 | 143 | C | 07/27 |
| 111 | [konosubakonoakua/Various_MCU_Debugger_DIY](https://github.com/konosubakonoakua/Various_MCU_Debugger_DIY) | 各种LInk大合集 | 140 | C | 06/09 |
| 112 | [usbxyz/CAN-Bootloader](https://github.com/usbxyz/CAN-Bootloader) | 使用USB2XXX实现的CAN Bootloader功能,实现CAN节点固件远程升级 | 135 | C | 02/24 |
| 113 | [pannzh/Airkiss](https://github.com/pannzh/Airkiss) | A source code implementation of Wechat(微信) Airkiss protocol | 134 | C | 01/02 |
| 114 | [ksvc/KSYDiversityLive_Android](https://github.com/ksvc/KSYDiversityLive_Android) | 金山云SDK多样化接入方式,提供直播全链路数据开放,兼容美颜、连麦、贴纸、多种摄像头输入,共建移动直播大生态。 | 134 | C | 02/25 |
| 115 | [Shies/PHP7-forp](https://github.com/Shies/PHP7-forp) | 用c语言编写forp PHP分析器是一个轻量级的PHP扩展提供脚本的调用堆栈,CPU和内存使用 | 132 | C | 01/22 |
| 116 | [dzxx36gyy/nali-ipip](https://github.com/dzxx36gyy/nali-ipip) | a fork of http://www.surfchen.org/nali using ipip ipdb (http://ipip.net) 基于nali修改支持ipip数据库, 欢迎使用 | 131 | C | 03/04 |
| 117 | [ha-excited/BigNews](https://github.com/ha-excited/BigNews) | Android增量更新框架差分包升级 | 123 | C | 04/09 |
| 118 | [zlgopen/ametal](https://github.com/zlgopen/ametal) | 芯片级裸机软件包,定义了一系列常用外设(如:UART、IIC、SPI、ADC等)的通用接口,基于通用接口的应用可以跨平台复用。 | 123 | C | 08/28 |
| 119 | [AngelLiang/ESP8266-Demos](https://github.com/AngelLiang/ESP8266-Demos) | ESP8266示例工程集合 | 118 | C | 02/26 |
| 120 | [miniLV/Interview-series](https://github.com/miniLV/Interview-series) | iOS从入门到进阶 - 技术合集 | 110 | C | 05/06 |
| 121 | [tsingsee/EasyPlayer-RTSP-Win](https://github.com/tsingsee/EasyPlayer-RTSP-Win) | An elegant, simple, fast windows RTSP Player.EasyPlayer support RTSP(RTP over TCP/UDP),video support H.264/H.265,audio support G.711/G.726/AAC!EasyPlayer RTSP是一款精炼、高效、稳定的RTSP流媒体播放器,视频支持H.264/H.265,音频支持G.711/G.726/AAC,支持RTP over UDP/TCP两种模式! | 108 | C | 07/02 |
| 122 | [sctangqiang/skynetpatch](https://github.com/sctangqiang/skynetpatch) | skynet扩展支持websocket协议的netpack、gate、gateserver | 103 | C | 02/03 |
| 123 | [xuhongv/StudyInEsp32](https://github.com/xuhongv/StudyInEsp32) | 【深度开源】wiif+bt模块esp32学习之旅(持续更新,欢迎 Star...) | 100 | C | 08/06 |
| 124 | [YunYang1994/CodeFun](https://github.com/YunYang1994/CodeFun) | 📚 这绝对是一份好看的深度学习笔记了😏 | 100 | C | 08/21 |
| 125 | [HX-IoT/ESP32-Developer-Guide](https://github.com/HX-IoT/ESP32-Developer-Guide) | 开源一小步之ESP32开发指南 | 96 | C | 02/07 |
| 126 | [EasyDarwin/EasyAudioDecoder](https://github.com/EasyDarwin/EasyAudioDecoder) | 开源项目:简单、高效、稳定的开源音频解码库,能够将G.711A/PCMA、G.711U/PCMU、G726、AAC等音频格式转码到Linear PCM,再提供给流媒体播放器进行音频播放,EasyAudioDecoder支持跨平台,支持Android & iOS,目前已稳定应用于EasyPlayer、EasyClient等多个开源及商业项目! | 91 | C | 07/01 |
| 127 | [switch-iot/hin2n](https://github.com/switch-iot/hin2n) | n2n support for mobiles(n2n手机版) | 90 | C | 06/17 |
| 128 | [kyzhouhzau/Clinical-NER](https://github.com/kyzhouhzau/Clinical-NER) | 面向中文电子病历的命名实体识别 | 90 | C | 08/27 |
| 129 | [nns779/px4_drv](https://github.com/nns779/px4_drv) | PLEX PX-W3U4/Q3U4/W3PE4/Q3PE4 用の非公式版Linuxドライバ | 89 | C | 08/30 |
| 130 | [liu2guang/LittlevGL2RTT](https://github.com/liu2guang/LittlevGL2RTT) | The littlevgl graphics library for RT-Thread. \| 基于 RT-Thread 移植的littlevgl图形库. | 88 | C | 05/22 |
| 131 | [havenxie/stm32-iap-uart-boot](https://github.com/havenxie/stm32-iap-uart-boot) | STM32 IAP(UART模式)的BOOT部分 | 87 | C | 08/29 |
| 132 | [Rokid/docs](https://github.com/Rokid/docs) | Rokid 开发者社区文档,包含语音技能开发、语音设备接入及智能家居接入文档等。 | 87 | C | 09/01 |
| 133 | [dustpg/StepFC](https://github.com/dustpg/StepFC) | Make FC(NES) Emulator Step-by-Step 一步一步模拟红白机 | 86 | C | 01/03 |
| 134 | [XLsn0w/Cydia](https://github.com/XLsn0w/Cydia) | [添加我的Cydia源: https://xlsn0w.github.io/ipas]-(关注我的个人微信公众号:Cydiapple)->Cydia iOS逆向工程开发 越狱Jailbreak deb插件开发- Cycript / IDA / Hopper Disassembler / MonkeyDev / Class-dump / Theos / Reveal / Dumpdecryptd / FLEX | 86 | C | 08/29 |
| 135 | [wsbblyy/wechat-pc-hook-api](https://github.com/wsbblyy/wechat-pc-hook-api) | 微信 pc hook | 84 | C | 08/08 |
| 136 | [PHZ76/DesktopSharing](https://github.com/PHZ76/DesktopSharing) | 桌面共享, 支持RTSP转发, RTSP推流, RTMP推流。 | 83 | C | 08/28 |
| 137 | [y123456yz/tcprstat](https://github.com/y123456yz/tcprstat) | 服务器时延统计工具,在原有功能基础上,增加时延阈值统计,记录超过阈值的包个数,并把数据包时间戳记录到日志文件,这样可以根据时间戳快速定位到抓包文件中对应的包,从而可以快速定位到大时延包,避免了人肉搜索抓包文件,提高问题排查效率,所有参数可配置。可以以在线方式和离线方式分析redis、memcached、mysql、nginx等请求应答系统的时延,并定位慢响应数据报文。(源码学习交流QQ群:568892619) | 82 | C | 03/18 |
| 138 | [UncP/aili](https://github.com/UncP/aili) | the fastest in-memory index in the East 东半球最快并发索引 | 79 | C | 07/14 |
| 139 | [MRdoulestar/whatMiner](https://github.com/MRdoulestar/whatMiner) | 整理和收集遇见的各种恶意挖矿样本以供研究和学习(欢迎小伙伴们一起维护) | 78 | C | 02/23 |
| 140 | [DingHe/unpv13e](https://github.com/DingHe/unpv13e) | UNIX网络编程 卷1:套接字联网API(第3版)源代码 | 76 | C | 06/04 |
| 141 | [AngelKitty/review_the_national_post-graduate_entrance_examination](https://github.com/AngelKitty/review_the_national_post-graduate_entrance_examination) | 🌟复习考研的那些事儿~~ | 75 | C | 09/01 |
| 142 | [mrpre/atls](https://github.com/mrpre/atls) | A light TLS implementation used for learning: TLS 1.0 TLS 1.1 TLS 1.2 TLS 1.3 GMSSL 1.1(国密SSL) based on libcrypto.so. | 74 | C | 05/21 |
| 143 | [alibaba/iot_remote_access](https://github.com/alibaba/iot_remote_access) | 阿里云IoT远程运维套装之远程访问设备侧源码 | 71 | C | 05/07 |
| 144 | [wanliyang1990/FFmpeg-Android](https://github.com/wanliyang1990/FFmpeg-Android) | FFmpeg(3.3.2)移植Android平台-例子 | 71 | C | 05/03 |
| 145 | [lmnos/lmosem](https://github.com/lmnos/lmosem) | 支持ARM,x86平台的嵌入式操作系统内核 | 71 | C | 03/28 |
| 146 | [albuer/heapsnap](https://github.com/albuer/heapsnap) | HeapSnap 是一款针对Android进程堆内存进行追踪、定位,以便查出泄露位置的工具 | 69 | C | 08/16 |
| 147 | [heidsoft/devops](https://github.com/heidsoft/devops) | 系统架构实践 | 69 | C | 01/22 |
| 148 | [AngelKitty/Computer-Virus](https://github.com/AngelKitty/Computer-Virus) | 👻计算机病毒以及相应的专杀工具的研发 | 68 | C | 08/06 |
| 149 | [suxin1412/suos](https://github.com/suxin1412/suos) | 一个简陋的操作系统 | 68 | C | 03/17 |
| 150 | [vulhub/redis-rogue-getshell](https://github.com/vulhub/redis-rogue-getshell) | 利用redis 4.x/5.x master/slave 模式getshell | 68 | C | 07/11 |
| 151 | [amate/Proxydomo](https://github.com/amate/Proxydomo) | ローカルで動作するプロクシフィルタリングソフトです | 67 | C | 05/05 |
| 152 | [maxlicheng/stm32f4_ucosii_lwip_mqtt](https://github.com/maxlicheng/stm32f4_ucosii_lwip_mqtt) | 基于正点原子STM32F4开发板和阿里云物联网平台的MQTT项目 | 67 | C | 06/17 |
| 153 | [Chocolatl/qqlight-websocket](https://github.com/Chocolatl/qqlight-websocket) | QQLight机器人WebSocket-RPC插件,让你能够使用任何语言编写QQ机器人程序 | 67 | C | 07/24 |
| 154 | [iyakexi/app-pay-demo](https://github.com/iyakexi/app-pay-demo) | iOS集成支付宝&微信支付Demo (Swift版) | 66 | C | 01/14 |
| 155 | [Kiyotaka233/lcd_driver_12864](https://github.com/Kiyotaka233/lcd_driver_12864) | LCD12864液晶驱动 | 66 | C | 07/06 |
| 156 | [QAX-A-Team/ptrace](https://github.com/QAX-A-Team/ptrace) | a PoC for Linux to get around agents that log commands being executed, without root privilege. Linux低权限模糊化执行的程序名和参数,避开基于execve系统调用监控的命令日志 | 66 | C | 05/08 |
| 157 | [bolanlaike/Linux-0.01](https://github.com/bolanlaike/Linux-0.01) | Linux 0.01源码及注释 | 64 | C | 01/15 |
| 158 | [pymumu/tinylog](https://github.com/pymumu/tinylog) | A lightweight c,c++ log component developed for Linux, It is designed with high performance, asynchronized, thread-safe and process-safe; tinylog是一个专为UNIX设计的轻量级的C/C++日志模块,其提供了高性能,异步,线程安全,进程安全的日志功能。 | 64 | C | 08/09 |
| 159 | [trumanzhao/luna](https://github.com/trumanzhao/luna) | 基于C++17的lua/C++绑定库,以及lua的二进制序列化等辅助代码 | 63 | C | 08/29 |
| 160 | [AntSwordProject/ant_php_extension](https://github.com/AntSwordProject/ant_php_extension) | PHP 扩展, 用于 PHP-FPM、FastCGI、LD_PRELOAD等模式下突破 disabled_functions | 60 | C | 04/25 |
| 161 | [zhoumengkang/notes](https://github.com/zhoumengkang/notes) | 我学习笔记代码统一放这里吧,不然太多太乱了 | 60 | C | 04/09 |
| 162 | [phonegapX/AirPlay](https://github.com/phonegapX/AirPlay) | 关于AirPlay的一些逆向研究成果。 | 59 | C | 03/11 |
| 163 | [9chu/LuaSTGPlus](https://github.com/9chu/LuaSTGPlus) | luastg的底层改进版本 | 59 | C | 04/14 |
| 164 | [Money888/LibUpgrade](https://github.com/Money888/LibUpgrade) | 万能更新库,修改只要一点点 | 58 | C | 01/02 |
| 165 | [luoyanbei/testHookzz](https://github.com/luoyanbei/testHookzz) | iOS逆向:使用HookZz框架hook游戏“我的战争”,进入上帝模式 | 58 | C | 05/10 |
| 166 | [BeginMan/PersonNotes](https://github.com/BeginMan/PersonNotes) | 个人笔记集中营,快糙猛的形式记录技术性Notes .. 📚☕️⌨️🎧 | 58 | C | 07/24 |
| 167 | [zpoint/Redis-Internals](https://github.com/zpoint/Redis-Internals) | Analyze redis 5.0 source code through diagrams \| 图解 Redis 5.0 | 58 | C | 08/31 |
| 168 | [chenrensong/ImageLib.UWP](https://github.com/chenrensong/ImageLib.UWP) | 支持Universal Windows Platform(UWP),基于微软最新的2d图形加速引擎Win2d,支持gif、jpg、png、webp等格式 | 57 | C | 06/29 |
| 169 | [stz2012/libarib25](https://github.com/stz2012/libarib25) | Linux用ARIB STD-B25ライブラリ(各録画ツールにarib25ソースを添付しなくとも、Makefile内で-larib25でコンパイルできる) | 57 | C | 07/29 |
| 170 | [no5ix/kcpp](https://github.com/no5ix/kcpp) | A single-header-only kcp session implementation (dynamic redundancy + reliable udp/unreliable channel) & A annotated kcp. 一个单头文件的kcp会话实现(动态冗余+可靠udp/非可靠双通道), 另附一个注释版kcp. | 56 | C | 03/21 |
| 171 | [fjqisba/E-debug-plus](https://github.com/fjqisba/E-debug-plus) | 易语言辅助调试工具 | 56 | C | 03/28 |
| 172 | [xuliker/kde](https://github.com/xuliker/kde) | 记录我的内核成长贡献之路。kernel-dev-environment | 56 | C | 09/01 |
| 173 | [feifei2020/ffmpegrtmppusher](https://github.com/feifei2020/ffmpegrtmppusher) | 基于ffmpeg的直播推流器,超级稳定,经过长时间稳定性测试,超低延时,可用于手机,电视,嵌入式等直播App及设备。 | 55 | C | 03/31 |
| 174 | [zl03jsj/mupdf](https://github.com/zl03jsj/mupdf) | 扩展mupdf 实现图像数字证书签名, 手写笔迹数字证书签名, 插入图片, 手写签名注释..改进手写批注,实现模拟真实手写的算法, annot自定义数据, annot插入,删除密码校验等功能...支持ios, windows, mac, linux, c++, java, android | 54 | C | 05/05 |
| 175 | [tsingsee/EasyPlayer-RTSP-iOS](https://github.com/tsingsee/EasyPlayer-RTSP-iOS) | An elegant, simple, fast windows RTSP Player.EasyPlayer support RTSP(RTP over TCP/UDP),video support H.264/H.265,audio support G.711/G.726/AAC!EasyPlayer RTSP是一款精炼、高效、稳定的RTSP流媒体播放器,视频支持H.264/H.265,音频支持G.711/G.726/AAC,支持RTP over UDP/TCP两种模式! | 53 | C | 08/05 |
| 176 | [murphyzhao/FlexibleButton](https://github.com/murphyzhao/FlexibleButton) | 灵活的按键处理库(Flexible Button)\| 按键驱动 \| 支持单击、双击、长按、自动消抖 \| 灵活适配中断和低功耗 \| 按需实现组合按键 | 53 | C | 08/12 |
| 177 | [wwptrdudu/Voice_Recognition_Control_Robot](https://github.com/wwptrdudu/Voice_Recognition_Control_Robot) | 树莓派上的语音控制语音聊天的智能机器人。利用树莓派的wiringPi,科大讯飞,图灵机器人,alsa等开发库实现。 | 53 | C | 01/22 |
| 178 | [MissFreak/SI-2019-Spring](https://github.com/MissFreak/SI-2019-Spring) | 信息学院(School of Information)2019春入学的同学们,欢迎进入公共讨论区,你可以与本专业的老师和同学在这里交流。 | 52 | C | 07/12 |
| 179 | [doctording/os](https://github.com/doctording/os) | 《操作系统真相还原》笔记 | 52 | C | 04/27 |
| 180 | [zhouchangxun/ngx_healthcheck_module](https://github.com/zhouchangxun/ngx_healthcheck_module) | nginx module for upstream servers health check. support stream and http upstream. 该模块可以为Nginx提供主动式后端服务器健康检查的功能(同时支持四层和七层后端服务器的健康检测) | 50 | C | 04/19 |
| 181 | [alipay/mpaas-demo](https://github.com/alipay/mpaas-demo) | mPaaS Demo 合集,mPaaS 是源自于支付宝的移动开发平台。The collection of demos for mPaaS components. mPaaS is the Mobile Development Platform which oriented from Alipay. | 50 | C | 08/17 |
| 182 | [stz2012/recpt1](https://github.com/stz2012/recpt1) | PT1/PT2/PT3をLinuxで使う為の録画ツール(STZ版) | 49 | C | 05/30 |
| 183 | [sjdy521/Mojo-StrawberryPerl](https://github.com/sjdy521/Mojo-StrawberryPerl) | 基于StrawberryPerl打包而成的包含Perl-5.24+cpanm+Mojo-Webqq+Mojo-Weixin的完整Windows运行环境 | 48 | C | 04/18 |
| 184 | [apicloudcom/aMap](https://github.com/apicloudcom/aMap) | 高德地图模块源码(含iOS和Android) | 48 | C | 05/16 |
| 185 | [4kingRAS/CSstudy](https://github.com/4kingRAS/CSstudy) | 自己收集的一些计算机/数学/Linux/分布式的资料,收藏夹不够用了! | 47 | C | 08/21 |
| 186 | [fuujiro/LIMS](https://github.com/fuujiro/LIMS) | Library Information Management System / Course Design / 图书管理系统 C语言 / 课程设计 | 46 | C | 01/16 |
| 187 | [jiejieTop/ButtonDrive](https://github.com/jiejieTop/ButtonDrive) | 纯C语言实现的一个按键驱动,可移植性强,支持单双击、连按、连按释放、长按;采用回调处理按键事件(自定义消抖时间),使用只需3步,1:创建按键,2:按键事件与回调处理函数链接映射。然后周期检查按键。 | 46 | C | 04/28 |
| 188 | [ZJ-TEK/ZJ-SDK-RT-Thread-NORDIC](https://github.com/ZJ-TEK/ZJ-SDK-RT-Thread-NORDIC) | 基于RT-Thread操作系统在子敬电子ZJ-TEK系列开发板的软件开发包 | 46 | C | 01/22 |
| 189 | [leleliu008/C](https://github.com/leleliu008/C) | C语言学习项目 | 45 | C | 03/29 |
| 190 | [userpro/MemoryPool](https://github.com/userpro/MemoryPool) | 一个极简内存池实现 | 45 | C | 06/07 |
| 191 | [alibaba/id2_client_sdk](https://github.com/alibaba/id2_client_sdk) | ID²(Internet Device ID),是物联网设备的可信身份标识,具备不可篡改、不可伪造、全球唯一的安全属性,是实现万物互联、服务流转的关键基础设施。ID²支持多安全等级载体,合理地平衡物联网在安全、成本、功耗等各方面的诉求,为客户提供用得起、容易用、有保障的安全方案,适应物联网碎片化的市场需求。 ID² Client SDK是用于设备端开发的软件工具包,帮助开发者快速集成接入ID²开放平台. | 44 | C | 08/23 |
| 192 | [haidragon/pcPCHunter](https://github.com/haidragon/pcPCHunter) | x64 盗版pcPCHunter | 44 | C | 03/29 |
| 193 | [lightningminers/article](https://github.com/lightningminers/article) | ⚡️闪电矿工翻译组-前端(front end developer) | 44 | C | 07/01 |
| 194 | [Chentingz/SnifferUI](https://github.com/Chentingz/SnifferUI) | 基于MFC和WinPcap库开发的网络抓包和协议分析软件 | 43 | C | 07/19 |
| 195 | [ivanabc/RedisLV](https://github.com/ivanabc/RedisLV) | 利用LevelDB实时保存数据的Redis服务 | 43 | C | 01/12 |
| 196 | [liqiongfan/xaop](https://github.com/liqiongfan/xaop) | Xaop PHP高性能的AOP扩展 | 42 | C | 08/08 |
| 197 | [xiangshouding/node-pngcrush](https://github.com/xiangshouding/node-pngcrush) | node-pngcrush 一个进行png图片压缩的node native插件 | 42 | C | 02/15 |
| 198 | [Djangoogle/Module](https://github.com/Djangoogle/Module) | Android 通用模块封装 | 41 | C | 08/20 |
| 199 | [y123456yz/Reading-and-comprehense-memcached-1.4.22](https://github.com/y123456yz/Reading-and-comprehense-memcached-1.4.22) | memcached源码详细分析注释,带详尽中文注释及函数调用关系,更新完毕(源码学习交流QQ群:568892619) | 40 | C | 04/07 |
| 200 | [zencodex/CSipSimple](https://github.com/zencodex/CSipSimple) | CSipSimple 是个款通用的支持SIP协议的互联网电话软件,可以在支持andriod的平板,手机上使用。支持语音编码: G.711 aLaw/uLaw, G.722.1, G.722, SPEEX, SPEEX-WB, AMR-WB, GSM, iLBC, G.729. 支持STUN, Outbound proxy server, Qos,VAD,AEC,AGC,CNG等众多功能和标准。 | 40 | C | 08/15 |
⬆ [回到目录](#目录)
<br/>
## C++
| # | Repository | Description | Stars | Language | Updated |
| ---- | ------------------------------------------------------------ | ------------------------------------------------------------ | ----- | -------- | ------- |
| 1 | [PaddlePaddle/Paddle](https://github.com/PaddlePaddle/Paddle) | PArallel Distributed Deep LEarning (『飞桨』核心框架,高性能单机、分布式训练和跨平台部署) | 9.8k | C++ | 09/02 |
| 2 | [vnpy/vnpy](https://github.com/vnpy/vnpy) | 基于Python的开源量化交易平台开发框架 | 9.3k | C++ | 09/01 |
| 3 | [huihut/interview](https://github.com/huihut/interview) | 📚 C/C++ 技术面试基础知识总结,包括语言、程序库、数据结构、算法、系统、网络、链接装载库等知识及面试经验、招聘、内推等信息。 | 7.0k | C++ | 08/27 |
| 4 | [zhongyang219/TrafficMonitor](https://github.com/zhongyang219/TrafficMonitor) | 这是一个用于显示当前网速、CPU及内存利用率的桌面悬浮窗软件,并支持任务栏显示,支持更换皮肤。 | 5.1k | C++ | 06/07 |
| 5 | [PaddlePaddle/Paddle-Lite](https://github.com/PaddlePaddle/Paddle-Lite) | Multi-platform high performance deep learning inference engine (『飞桨』多平台高性能深度学习预测引擎) | 4.6k | C++ | 09/01 |
| 6 | [me115/design_patterns](https://github.com/me115/design_patterns) | 图说设计模式 | 3.7k | C++ | 07/30 |
| 7 | [lltcggie/waifu2x-caffe](https://github.com/lltcggie/waifu2x-caffe) | waifu2xのCaffe版 | 3.7k | C++ | 08/01 |
| 8 | [anyRTC/anyRTC-RTMP-OpenSource](https://github.com/anyRTC/anyRTC-RTMP-OpenSource) | RTMP 推流器,RTMP(HLS)秒开播放器,跨平台(Win,IOS,Android)开源代码 | 3.1k | C++ | 06/06 |
| 9 | [weolar/miniblink49](https://github.com/weolar/miniblink49) | a lighter, faster browser kernel of blink to integrate HTML UI in your app. 一个小巧、轻量的浏览器内核,用来取代wke和libcef | 3.1k | C++ | 08/29 |
| 10 | [Ewenwan/MVision](https://github.com/Ewenwan/MVision) | 机器人视觉 移动机器人 VS-SLAM ORB-SLAM2 深度学习目标检测 yolov3 行为检测 opencv PCL 机器学习 无人驾驶 | 2.9k | C++ | 08/27 |
| 11 | [zeusees/HyperLPR](https://github.com/zeusees/HyperLPR) | 基于深度学习高性能中文车牌识别 High Performance Chinese License Plate Recognition Framework. | 2.5k | C++ | 08/13 |
| 12 | [yedf/handy](https://github.com/yedf/handy) | 简洁易用的C++11网络库 / 支持单机千万并发连接 / a simple C++11 network server framework | 2.4k | C++ | 05/17 |
| 13 | [wang-bin/QtAV](https://github.com/wang-bin/QtAV) | A cross-platform multimedia framework based on Qt and FFmpeg(https://github.com/wang-bin/avbuild). High performance. User & developer friendly. Supports Android, iOS, Windows store and desktops. 基于Qt和FFmpeg的跨平台高性能音视频播放框架 | 2.1k | C++ | 07/11 |
| 14 | [anhkgg/SuperWeChatPC](https://github.com/anhkgg/SuperWeChatPC) | 超级微信电脑客户端,支持多开、防消息撤销、语音消息备份...开放WeChatSDK | 2.0k | C++ | 08/15 |
| 15 | [yanyiwu/nodejieba](https://github.com/yanyiwu/nodejieba) | "结巴"中文分词的Node.js版本 | 1.7k | C++ | 06/07 |
| 16 | [selfboot/CS_Offer](https://github.com/selfboot/CS_Offer) | 计算机学科基础知识和主流编程语言相关内容的总结 | 1.6k | C++ | 08/18 |
| 17 | [yanyiwu/cppjieba](https://github.com/yanyiwu/cppjieba) | "结巴"中文分词的C++版本 | 1.5k | C++ | 04/29 |
| 18 | [WrBug/dumpDex](https://github.com/WrBug/dumpDex) | 💯一款Android脱壳工具,需要xposed支持, 易开发已集成该项目: | 1.5k | C++ | 05/09 |
| 19 | [liuchuo/PAT](https://github.com/liuchuo/PAT) | 🍭 浙江大学PAT题解(C/C++/Java/Python) - 努力成为萌萌的程序媛~ | 1.5k | C++ | 09/01 |
| 20 | [cool2528/baiduCDP](https://github.com/cool2528/baiduCDP) | 百度网盘下载神器 | 1.4k | C++ | 07/21 |
| 21 | [TonyChen56/WeChatRobot](https://github.com/TonyChen56/WeChatRobot) | PC版微信机器人 | 1.3k | C++ | 08/29 |
| 22 | [huaxz1986/cplusplus-_Implementation_Of_Introduction_to_Algorithms](https://github.com/huaxz1986/cplusplus-_Implementation_Of_Introduction_to_Algorithms) | 《算法导论》第三版中算法的C++实现 | 1.3k | C++ | 01/25 |
| 23 | [balloonwj/flamingo](https://github.com/balloonwj/flamingo) | flamingo 一款高性能轻量级开源即时通讯软件 | 1.2k | C++ | 07/17 |
| 24 | [rime/weasel](https://github.com/rime/weasel) | 【小狼毫】Rime for Windows | 1.2k | C++ | 07/04 |
| 25 | [liuyubobobo/Play-Leetcode](https://github.com/liuyubobobo/Play-Leetcode) | My Solutions to Leetcode problems. All solutions support C++ language, some support Java and Python. Multiple solutions will be given by most problems. Enjoy:) 我的Leetcode解答。所有的问题都支持C++语言,一部分问题支持Java语言。近乎所有问题都会提供多个算法解决。大家加油!:) | 1.1k | C++ | 09/01 |
| 26 | [QuantBox/XAPI2](https://github.com/QuantBox/XAPI2) | 统一行情交易接口第2版 | 801 | C++ | 08/07 |
| 27 | [richardchien/coolq-http-api](https://github.com/richardchien/coolq-http-api) | CoolQ 插件实现通过 HTTP 上报事件信息及调用接口 | 799 | C++ | 07/16 |
| 28 | [bcosorg/bcos](https://github.com/bcosorg/bcos) | BCOS平台(Be Credible, Open & Secure) | 787 | C++ | 08/14 |
| 29 | [huangmingchuan/Cpp_Primer_Answers](https://github.com/huangmingchuan/Cpp_Primer_Answers) | 《C++ Primer》第五版中文版习题答案 | 784 | C++ | 08/29 |
| 30 | [arkingc/note](https://github.com/arkingc/note) | 学习笔记整理📚 | 771 | C++ | 06/19 |
| 31 | [qdtroy/DuiLib_Ultimate](https://github.com/qdtroy/DuiLib_Ultimate) | duilib 旗舰版-高清屏、多语言、样式表、资源管理器、异形窗口、窗口阴影、简单动画 | 740 | C++ | 08/12 |
| 32 | [tongtzeho/PKUCourse](https://github.com/tongtzeho/PKUCourse) | 北大计算机课程大作业 | 657 | C++ | 03/23 |
| 33 | [F8LEFT/FUPK3](https://github.com/F8LEFT/FUPK3) | 演示视频https://pan.baidu.com/s/1HH_-TQGca1NLoSqzvOPB3Q 密码:izm3 | 626 | C++ | 04/15 |
| 34 | [GoSSIP-SJTU/Armariris](https://github.com/GoSSIP-SJTU/Armariris) | 孤挺花(Armariris) -- 由上海交通大学密码与计算机安全实验室维护的LLVM混淆框架 | 609 | C++ | 06/03 |
| 35 | [codefollower/OpenJDK-Research](https://github.com/codefollower/OpenJDK-Research) | OpenJDK(HotSpot JVM、Javac)源代码学习研究(包括代码注释、文档、用于代码分析的测试用例) | 603 | C++ | 07/23 |
| 36 | [liuyubobobo/Play-with-Algorithm-Interview](https://github.com/liuyubobobo/Play-with-Algorithm-Interview) | Codes of my MOOC Course <Play with Algorithm Interviews>. Updated contents and practices are also included. 我在慕课网上的课程《玩儿转算法面试》示例代码。课程的更多更新内容及辅助练习也将逐步添加进这个代码仓。 | 590 | C++ | 06/09 |
| 37 | [fasiondog/hikyuu](https://github.com/fasiondog/hikyuu) | Hikyuu Quant Framework 基于C++/Python的开源量化交易研究框架 | 583 | C++ | 08/22 |
| 38 | [Greedysky/TTKMusicplayer](https://github.com/Greedysky/TTKMusicplayer) | TTKMusicPlayer that imitation Kugou music, the music player uses of qmmp core library based on Qt for windows and linux.(支持网易云音乐、QQ音乐、虾米音乐、酷我音乐、酷狗音乐、百度音乐等等) | 567 | C++ | 08/29 |
| 39 | [188080501/JQTools](https://github.com/188080501/JQTools) | 基于Qt开发的小工具包 | 563 | C++ | 08/22 |
| 40 | [aiyaapp/AiyaEffectsIOS](https://github.com/aiyaapp/AiyaEffectsIOS) | 宝宝特效Demo通过短视频SDK、直播SDK轻松实现特效与视频剪辑,为用户提供特效相机,拍摄辅助,自动美颜相机,抖音滤镜、直播礼物、直播贴纸等,超低占用空间,十秒大型场景仅100KB+, 精准人脸识别、人脸跟踪,支持3D特效,3D动画特效,2D特效、动画渲染、特效渲染等,visual effects IOS demo, support 3D effect, 3D Animation, 2D effect | 543 | C++ | 05/14 |
| 41 | [foxleezh/AOSP](https://github.com/foxleezh/AOSP) | 这是一个连载的博文系列,我将持续为大家提供尽可能透彻的Android源码分析 | 469 | C++ | 02/20 |
| 42 | [shuax/GreenChrome](https://github.com/shuax/GreenChrome) | 增强Chrome的工具 | 464 | C++ | 07/22 |
| 43 | [u0u0/Quick-Cocos2dx-Community](https://github.com/u0u0/Quick-Cocos2dx-Community) | Cocos2d-Lua 社区版 | 436 | C++ | 09/01 |
| 44 | [Mapaler/FastCopy-M](https://github.com/Mapaler/FastCopy-M) | FastCopy-Multilanguage,FastCopy完整支持多国语言版 | 435 | C++ | 06/11 |
| 45 | [binbibi/XTeamLView](https://github.com/binbibi/XTeamLView) | 每次启动Teamview都生成不一样的ID,让Teamview 不弹窗 疑似商业活动 | 428 | C++ | 08/13 |
| 46 | [zeusees/Zeusee-Face-Anti-spoofing](https://github.com/zeusees/Zeusee-Face-Anti-spoofing) | 开源配合型人脸活体检测 Open Source Face Anti-spoofing | 418 | C++ | 08/13 |
| 47 | [qicosmos/cosmos](https://github.com/qicosmos/cosmos) | c++11基础库 | 411 | C++ | 01/24 |
| 48 | [Jack-Cherish/LeetCode](https://github.com/Jack-Cherish/LeetCode) | :monkey:LeetCode、剑指Offer刷题笔记(C/C++、Python3实现) | 406 | C++ | 03/04 |
| 49 | [15172658790/Blog](https://github.com/15172658790/Blog) | 中国科学技术大学计算机学院课程资源(https://mbinary.xyz/ustc-cs/) | 404 | C++ | 02/27 |
| 50 | [EasyDarwin/EasyPusher](https://github.com/EasyDarwin/EasyPusher) | 免费组件:简单、高效、稳定、免费的一款标准RTSP/RTP协议直播推送库,支持将H.264/H.265/G.711/G.726/AAC等音视频数据推送到RTSP流媒体服务器(例如EasyDarwin)进行低延时直播或者视频通信,支持Windows、Linux、ARM、Android、iOS等平台,EasyPusher配套EasyDarwin流媒体服务器、EasyPlayer RTSP播放器适用于特殊行业的低延时应急指挥需求! Android迁移到了https://github.com/EasyDarwin/EasyPusher-Android , iOS迁移到了https://github.c ... | 398 | C++ | 07/01 |
| 51 | [SOUI2/soui](https://github.com/SOUI2/soui) | SOUI是目前为数不多的轻量级可快速开发window桌面程序开源DirectUI库.其前身为Duiengine,更早期则是源自于金山卫士开源版本UI库Bkwin.经过多年持续更新方得此库 | 391 | C++ | 08/23 |
| 52 | [lydrainbowcat/tedukuri](https://github.com/lydrainbowcat/tedukuri) | 《算法竞赛进阶指南》资源社区 | 387 | C++ | 08/23 |
| 53 | [smilehao/xlua-framework](https://github.com/smilehao/xlua-framework) | Unity游戏纯lua客户端完整框架---基于xlua,整合tolua的proto-gen-lua以及各个lua库和工具类 | 378 | C++ | 07/04 |
| 54 | [zlmediakit/ZLToolKit](https://github.com/zlmediakit/ZLToolKit) | 一个基于C++11的轻量级网络框架,基于线程池技术可以实现大并发网络IO | 374 | C++ | 08/20 |
| 55 | [barry-ran/QtScrcpy](https://github.com/barry-ran/QtScrcpy) | Android实时投屏控制软件 | 362 | C++ | 09/01 |
| 56 | [tome34/frameDemoMo2](https://github.com/tome34/frameDemoMo2) | Android组件化项目框架 | 359 | C++ | 02/18 |
| 57 | [didi/AoE](https://github.com/didi/AoE) | AoE (AI on Edge,终端智能,边缘计算) 是一个终端侧AI集成运行时环境 (IRE),帮助开发者提升效率。 | 358 | C++ | 08/30 |
| 58 | [Trinkle23897/Personal-Homework](https://github.com/Trinkle23897/Personal-Homework) | 大学期间的各种课程作业 | 345 | C++ | 06/29 |
| 59 | [Tencent/Teaf](https://github.com/Tencent/Teaf) | Tencent Easy ACE Framework,基于ACE的高性能服务框架,有完善的监控统计,数据库访问等功能 | 327 | C++ | 02/14 |
| 60 | [liuchuo/LeetCode](https://github.com/liuchuo/LeetCode) | 🍡 LeetCode Online Judge刷题题解(Java/C++/Python/Ruby/Swift) | 324 | C++ | 05/12 |
| 61 | [Ewenwan/ORB_SLAM2_SSD_Semantic](https://github.com/Ewenwan/ORB_SLAM2_SSD_Semantic) | 动态语义SLAM 目标检测+VSLAM+光流/多视角几何动态物体检测+octomap地图+目标数据库 | 319 | C++ | 04/10 |
| 62 | [Making-It/Code](https://github.com/Making-It/Code) | 面试高频算法题总结,个人博客 | 316 | C++ | 07/14 |
| 63 | [tencentyun/TRTCSDK](https://github.com/tencentyun/TRTCSDK) | 国内镜像地址 | 313 | C++ | 08/30 |
| 64 | [toby20130333/QtQuickExample](https://github.com/toby20130333/QtQuickExample) | 基于QtQuick的入门例子,方便大家入门学习 | 306 | C++ | 06/27 |
| 65 | [Chuyu-Team/CPPHelper](https://github.com/Chuyu-Team/CPPHelper) | C++基础辅助类库,比如异步进行-Thread,安全句柄-CHandle,资源守卫-Guard,XML解析-rapidxml,以及其他注册表、文件基础操作。用于更加高效、安全的进行C++开发。温馨提示:至少需要支持C++0x标准的编译器。 | 306 | C++ | 06/01 |
| 66 | [scarsty/kys-cpp](https://github.com/scarsty/kys-cpp) | 《金庸群侠传》c++复刻版,已完工 | 301 | C++ | 08/15 |
| 67 | [jing-interactive/DancingGaga](https://github.com/jing-interactive/DancingGaga) | AI 尬舞机 | 297 | C++ | 06/20 |
| 68 | [netease-im/NIM_Duilib_Framework](https://github.com/netease-im/NIM_Duilib_Framework) | 网易云信Windows应用界面开发框架(基于Duilib) | 287 | C++ | 08/26 |
| 69 | [itisyang/playerdemo](https://github.com/itisyang/playerdemo) | 一个视频播放器,开源版 potplayer ,用于总结播放器开发技术。 | 283 | C++ | 07/15 |
| 70 | [balloonwj/easyserverdev](https://github.com/balloonwj/easyserverdev) | 操作系统层面提供的 API 会在相当长的时间内保持接口不变,一旦学成,终生受用。理解和掌握这些基础 socket API 不仅可以最大化地去定制各种网络通信框架,更不用说使用市面上流行的网络通信库了,最重要的是,它会是你排查各种网络疑难杂症坚实的技术保障。 | 278 | C++ | 08/19 |
| 71 | [tsingsee/EasyIPCamera](https://github.com/tsingsee/EasyIPCamera) | RTSP Server:free, elegant, simple, high performance RTSP Server for smart-devices/desktop-application,such as Android-Camera/Windows-Desktop-LiveStreaming/ARM-IPCamera,also can run in Windows/Linux/ARM Platform,with flexible interface,u can use lots of video & audio source,very easy to use. 精炼、高效、稳定 ... | 274 | C++ | 08/02 |
| 72 | [openvanilla/McBopomofo](https://github.com/openvanilla/McBopomofo) | 小麥注音輸入法 | 265 | C++ | 07/31 |
| 73 | [qinwf/jiebaR](https://github.com/qinwf/jiebaR) | Chinese text segmentation with R. R语言中文分词 (文档已更新 🎉 :https://qinwenfeng.com/jiebaR/ ) | 259 | C++ | 03/11 |
| 74 | [district10/cmake-templates](https://github.com/district10/cmake-templates) | Some CMake Templates (examples). Qt, Boost, OpenCV, C++11, etc 一些栗子 | 256 | C++ | 04/04 |
| 75 | [XadillaX/nyaa-nodejs-demo](https://github.com/XadillaX/nyaa-nodejs-demo) | Source code of "Node.js: Let's Write a Dozen of C++ Add-ons". 《Node.js:来一打 C++ 扩展》随书源码。 | 255 | C++ | 06/25 |
| 76 | [KangLin/RabbitIm](https://github.com/KangLin/RabbitIm) | 玉兔即时通信。开源的跨平台的的即时通信系统。包括文本、音视频、白板、远程控制 | 253 | C++ | 08/06 |
| 77 | [hedada-hc/pc_wechat_hook](https://github.com/hedada-hc/pc_wechat_hook) | pc微信hook 课程例子源码 最新版pc微信hook全套课程尽在网易云课堂 搜索微信逆向即可 pcwx pcweichat 微信hook C语言开发 | 252 | C++ | 08/11 |
| 78 | [yuanyuanxiang/SimpleRemoter](https://github.com/yuanyuanxiang/SimpleRemoter) | 基于gh0st的远程控制器:实现了终端管理、进程管理、窗口管理、远程桌面、文件管理、语音管理、视频管理、服务管理、注册表管理等功能,优化全部代码及整理排版,修复内存泄漏缺陷,程序运行稳定。此项目初版见:https://github.com/zibility/Remote | 242 | C++ | 08/25 |
| 79 | [anhkgg/SuperDllHijack](https://github.com/anhkgg/SuperDllHijack) | SuperDllHijack:A general DLL hijack technology, don't need to manually export the same function interface of the DLL, so easy! 一种通用Dll劫持技术,不再需要手工导出Dll的函数接口了 | 231 | C++ | 02/15 |
| 80 | [yaocoder/HPNetServer](https://github.com/yaocoder/HPNetServer) | 高性能TCP网络服务器程序 | 226 | C++ | 04/04 |
| 81 | [solopointer/thunder-trader](https://github.com/solopointer/thunder-trader) | A industrial high-performance High Frequency Trading System by C++11, support CTP, Femas and so on. 基于C++11开发的量化交易平台,可实现CTP、飞马等平台的高频交易策略。 | 224 | C++ | 04/09 |
| 82 | [eecrazy/ACM](https://github.com/eecrazy/ACM) | ACM模板和一些题目的代码实现 | 222 | C++ | 06/14 |
| 83 | [sukhoeing/aoapc-bac2nd-keys](https://github.com/sukhoeing/aoapc-bac2nd-keys) | 算法竞赛入门经典第2版-习题选解 | 222 | C++ | 08/21 |
| 84 | [liuchuo/Lanqiao](https://github.com/liuchuo/Lanqiao) | 🍦 蓝桥杯竞赛练习题的题解(C/C++/Java)-努力成为萌萌的程序媛~ | 221 | C++ | 06/21 |
| 85 | [MKXJun/DirectX11-With-Windows-SDK](https://github.com/MKXJun/DirectX11-With-Windows-SDK) | 现代DX11系列教程:使用Windows SDK(C++)开发Direct3D 11.x | 220 | C++ | 05/31 |
| 86 | [rigaya/NVEnc](https://github.com/rigaya/NVEnc) | NVENCによる高速エンコードの性能実験 | 214 | C++ | 09/01 |
| 87 | [gloomyfish1998/opencv_tutorial](https://github.com/gloomyfish1998/opencv_tutorial) | 基于OpenCV4.0 C++/Python SDK的案例代码演示程序与效果图像 | 212 | C++ | 08/28 |
| 88 | [cc20110101/RedisView](https://github.com/cc20110101/RedisView) | RedisView implements open source, cross-platform and high performance Redis interface tools through self-written RESP protocol parsing, self-written tree model and thread pool. RedisView业余爱好通过自写RESP协议解析、自写树模型、线程池实现开源、跨平台、高性能Redis界面图形化工具 | 207 | C++ | 08/27 |
| 89 | [no5ix/realtime-server](https://github.com/no5ix/realtime-server) | A realtime dedicated game server ( FPS / MOBA ). 一个实时的专用游戏服务器. | 206 | C++ | 04/02 |
| 90 | [songbaoming/DouDiZhu](https://github.com/songbaoming/DouDiZhu) | AI斗地主游戏 | 186 | C++ | 07/30 |
| 91 | [hao14293/2020-Postgraduate-408](https://github.com/hao14293/2020-Postgraduate-408) | 💯✍备考2020年研究生-408 | 186 | C++ | 08/08 |
| 92 | [liu-jianhao/Cpp-Design-Patterns](https://github.com/liu-jianhao/Cpp-Design-Patterns) | C++设计模式 | 185 | C++ | 06/23 |
| 93 | [188080501/JQHttpServer](https://github.com/188080501/JQHttpServer) | 基于Qt开发的轻量级HTTP/HTTPS服务器 | 184 | C++ | 08/22 |
| 94 | [zeusees/HyperVID](https://github.com/zeusees/HyperVID) | 开源移动端车型识别 Mobile Plateform Vehicle Identification Model | 182 | C++ | 05/21 |
| 95 | [zc8424/LazzyQuant](https://github.com/zc8424/LazzyQuant) | 期货/期权量化交易系统 | 174 | C++ | 08/27 |
| 96 | [QingSimon/VINS-Mono-code-annotation](https://github.com/QingSimon/VINS-Mono-code-annotation) | VINS-Mono代码注释以及公式推导 | 170 | C++ | 01/27 |
| 97 | [gzc426/leetcode](https://github.com/gzc426/leetcode) | 每天一道leetcode | 170 | C++ | 04/05 |
| 98 | [cld378632668/leveldb_chinese_comments-Code_analysis](https://github.com/cld378632668/leveldb_chinese_comments-Code_analysis) | 图解leveldb源码和中文注释。抱歉,技术博客怕以生活中的内容举例子的内容被小人部分截图举报利用,已一键全部删帖。 | 167 | C++ | 02/13 |
| 99 | [eritpchy/Fingerprint-pay-magisk-wechat](https://github.com/eritpchy/Fingerprint-pay-magisk-wechat) | 微信指纹支付 (Fingerprint pay for WeChat) | 164 | C++ | 04/26 |
| 100 | [Greedysky/TTKWidgetTools](https://github.com/Greedysky/TTKWidgetTools) | QWidget 自定义控件集合 持续更新中...... | 164 | C++ | 08/28 |
| 101 | [xyzzy-022/xyzzy](https://github.com/xyzzy-022/xyzzy) | xyzzy 0.2.2 系列。有志により開発が継続中です。 | 163 | C++ | 08/14 |
| 102 | [TonyChen56/HackerTools](https://github.com/TonyChen56/HackerTools) | 使用MFC编写的病毒技术合集 | 163 | C++ | 07/27 |
| 103 | [ylmbtm/GameProject3](https://github.com/ylmbtm/GameProject3) | 跨平台的游戏服务器框架,支持多进程分布式部署,支持Lua脚本,还包含一个资源丰富U3D体验客户端,持续开发中。 | 160 | C++ | 08/19 |
| 104 | [TechBooster/C89-FirstStepReVIEW-v2](https://github.com/TechBooster/C89-FirstStepReVIEW-v2) | 技術書をかこう!はじめてのRe:VIEWは技術書の執筆ノウハウ本のリポジトリです | 159 | C++ | 02/12 |
| 105 | [shineframe/shineframe](https://github.com/shineframe/shineframe) | 高性能超轻量级C++开发库及服务器编程框架 | 154 | C++ | 07/30 |
| 106 | [woniu201/WnStock](https://github.com/woniu201/WnStock) | WnStock是个开源的查看股票行情软件,使用VC++/MFC开发,支持查看实时股票行情,分时走势,历史K线(日线,周线和月线),MACD指标线,5日10日20日均线,实时成交量,历史成交量,和量比等数据指标。 | 154 | C++ | 04/30 |
| 107 | [Meituan-Dianping/octo-ns](https://github.com/Meituan-Dianping/octo-ns) | OCTO-NS是美团OCTO服务治理体系服务注册发现功能的套件, 包括SDK(Java/C++)、本地服务治理代理(SgAgent), 服务缓存(NSC), 云端健康检查(Scanner)等基础组件,目前已经在全公司大规模使用 | 154 | C++ | 08/18 |
| 108 | [itleaks/eos-contract](https://github.com/itleaks/eos-contract) | Tutorial on writing smart contracts on EOS EOS智能合约教程,从零开始学习EOS智能合约, DApp安全漏洞(security)及攻击实践(EOS Contract)(Powered by Itleaks) | 152 | C++ | 01/17 |
| 109 | [moranzcw/LeetCode-NOTES](https://github.com/moranzcw/LeetCode-NOTES) | LeetCode 算法解答 | 146 | C++ | 01/20 |
| 110 | [esrrhs/fake](https://github.com/esrrhs/fake) | 嵌入式脚本语言 Lightweight embedded scripting language | 141 | C++ | 07/23 |
| 111 | [itas109/CSerialPort](https://github.com/itas109/CSerialPort) | 基于C++的轻量级跨平台串口类库Lightweight cross-platform serial port library based on C++ | 138 | C++ | 08/28 |
| 112 | [tuoxie007/play_with_llvm](https://github.com/tuoxie007/play_with_llvm) | A book about LLVM & Clang(中文开源书:玩转 LLVM) | 137 | C++ | 01/19 |
| 113 | [sylar-yin/sylar](https://github.com/sylar-yin/sylar) | C++高性能分布式服务器框架,webserver,websocket server,自定义tcp_server(包含日志模块,配置模块,线程模块,协程模块,协程调度模块,io协程调度模块,hook模块,socket模块,bytearray序列化,http模块,TcpServer模块,Websocket模块,Https模块等, Smtp邮件模块, MySQL, SQLite3, ORM,Redis,Zookeeper) | 136 | C++ | 08/23 |
| 114 | [FengGuanxi/HDU-Experience](https://github.com/FengGuanxi/HDU-Experience) | 用于向所有杭电学子分享在杭电的知识与经验 | 132 | C++ | 09/01 |
| 115 | [Beipy/Mac-Hackintosh-Clover](https://github.com/Beipy/Mac-Hackintosh-Clover) | PC主机黑苹果引导驱动文件 | 132 | C++ | 07/30 |
| 116 | [kevinlq/LQFramKit](https://github.com/kevinlq/LQFramKit) | c++ Qt5 implementation of some control(使用C++ Qt5封装的一些控件,以便后期项目中直接使用。这些控件有些是来自于网络有些属于个人封装,代码中都有出处) | 130 | C++ | 07/13 |
| 117 | [alrightchiu/SecondRound](https://github.com/alrightchiu/SecondRound) | 初學者寫給初學者的演算法教學 | 127 | C++ | 04/05 |
| 118 | [wanttobeno/AntiDebuggers](https://github.com/wanttobeno/AntiDebuggers) | 30种方法检测程序是否被调试 | 127 | C++ | 04/18 |
| 119 | [VelsonWang/QStudioSCADA](https://github.com/VelsonWang/QStudioSCADA) | QStudioSCADA是一款集HMI,数据采集于一体的软件。目前支持Modbus协议,JavaScript解析,画面功能编辑等。 QStudioSCADA is a software integrating HMI and data collection.Now it supports Modbus protocol, JavaScript explain, graphic control edit etc. | 125 | C++ | 08/20 |
| 120 | [babosa/EasyHLS](https://github.com/babosa/EasyHLS) | 简单、可靠、高效、稳定的HLS直播切片SDK,能够将实时的H.264视频和AAC音频流实时切片成可供WEB、Android、iOS、微信等全平台客户端观看的HLS(m3u8+ts)直播流,搭配EasyRTSPClient、EasyAACEncoder等项目,可将大部分的安防摄像机对外进行HLS直播发布,同时也可灵活集成在各种流媒体服务中! | 124 | C++ | 02/12 |
| 121 | [GoSSIP-SJTU/TripleDoggy](https://github.com/GoSSIP-SJTU/TripleDoggy) | 基于clang static analyzer的源码漏洞检测插件 | 122 | C++ | 05/08 |
| 122 | [renshan/game](https://github.com/renshan/game) | cocos2d-x 微信打飞机游戏、在Cocos2d-x中创建各种按钮 | 120 | C++ | 03/11 |
| 123 | [ZhouWeikuan/DouDiZhu](https://github.com/ZhouWeikuan/DouDiZhu) | 基于权重的斗地主游戏AI算法,AI algorithms for chinese landlord card game, based on weights | 120 | C++ | 06/03 |
| 124 | [zeusees/HyperLabelImg](https://github.com/zeusees/HyperLabelImg) | 开源可视化图像标注工具(支持人脸关键点/不规则四边形/多边形标注) | 120 | C++ | 08/30 |
| 125 | [zuoqing1988/ZQCNN-MTCNN-vs-libfacedetection](https://github.com/zuoqing1988/ZQCNN-MTCNN-vs-libfacedetection) | 对比ZQCNN-MTCNN与libfacedetection | 117 | C++ | 04/06 |
| 126 | [q191201771/libchef](https://github.com/q191201771/libchef) | 🍀 c++ standalone header-only basic library \|\| c++头文件实现无第三方依赖基础库 | 117 | C++ | 03/03 |
| 127 | [kb10uy/Seaurchin](https://github.com/kb10uy/Seaurchin) | 某スライドして手を跳ね上げる音ゲーシミュレーター | 116 | C++ | 04/28 |
| 128 | [BensonLaur/BesLyric](https://github.com/BensonLaur/BesLyric) | 本项目目的在制作一款 操作简单、功能实用的 专门用于制作网易云音乐滚动歌词的 歌词制作软件。 | 112 | C++ | 04/23 |
| 129 | [Protostars/KikoPlay](https://github.com/Protostars/KikoPlay) | KikoPlay - A Full-Featured Danmu Player 全功能弹幕播放器 | 112 | C++ | 09/01 |
| 130 | [tiny656/PAT](https://github.com/tiny656/PAT) | 浙江大学PAT题解 | 111 | C++ | 09/01 |
| 131 | [tsingsee/EasyPlayerPro-Win](https://github.com/tsingsee/EasyPlayerPro-Win) | EasyPlayerPro是一款全功能的流媒体播放器,支持RTSP、RTMP、HTTP、HLS、UDP、RTP、File等多种流媒体协议播放、支持本地文件播放,支持本地抓拍、本地录像、播放旋转、多屏播放、倍数播放等多种功能特性,核心基于ffmpeg,稳定、高效、可靠、可控,支持Windows、Android、iOS三个平台,目前在多家教育、安防、行业型公司,都得到的应用,广受好评! | 109 | C++ | 08/23 |
| 132 | [zero-rp/ZUI](https://github.com/zero-rp/ZUI) | 一个小巧但强大的C界面库 | 109 | C++ | 05/20 |
| 133 | [vorshen/landlord](https://github.com/vorshen/landlord) | Web在线斗地主游戏 | 107 | C++ | 07/31 |
| 134 | [richenyunqi/CCF-certification-exam-solution](https://github.com/richenyunqi/CCF-certification-exam-solution) | CCF认证考试题解(C++11代码) | 106 | C++ | 08/18 |
| 135 | [ksvc/KSYDiversityLive_iOS](https://github.com/ksvc/KSYDiversityLive_iOS) | 金山云SDK多样化接入方式,提供直播全链路数据开放,支持第三方连麦、录屏、美颜、贴纸、摄像头等多媒体处理方案提供商接入,共建移动直播大生态。 | 105 | C++ | 02/22 |
| 136 | [seahime/ImageQt](https://github.com/seahime/ImageQt) | 数字图像处理——基于Qt 5.8.0 | 103 | C++ | 07/13 |
| 137 | [wangzuohuai/WebRunLocal](https://github.com/wangzuohuai/WebRunLocal) | 牛插(PluginOK)中间件(原名:本网通)是一个实现浏览器网页(web page)与本地程序(local app)之间进行双向调用的强兼容、轻量级、易开发、低成本、安全可控、可扩展的插件开发框架。通过牛插中间件可实现JavaScript脚本无障碍访问本地电脑的硬件、调用本地系统API及相关组件,可彻底解决ActiveX组件在Chrome、FireFox、Opera、Edge等浏览器各版本中的兼容使用问题 | 102 | C++ | 08/20 |
| 138 | [pili-engineering/ipcam_sdk](https://github.com/pili-engineering/ipcam_sdk) | 七牛推出了一款适用于嵌入式 IP Camera 设备进行 RTMP 推流的 SDK 开发套件 | 102 | C++ | 01/24 |
| 139 | [jiafeng5513/Evision](https://github.com/jiafeng5513/Evision) | 计算机视觉实践和探索/Practice and explorations in computer vision. | 102 | C++ | 07/13 |
| 140 | [david-pzh/DoubiBot](https://github.com/david-pzh/DoubiBot) | 魔性机械臂小机器人 | 101 | C++ | 07/22 |
| 141 | [yychuyu/LeetCode](https://github.com/yychuyu/LeetCode) | 一起来刷LeetCode,一起学习,一起提高!欢迎点击 star ,欢迎在公众号「良许Linux」后台回复「leetcode」一起加入我们! | 101 | C++ | 08/01 |
| 142 | [tsingsee/EasyScreenLive](https://github.com/tsingsee/EasyScreenLive) | Streaming media sdk tool:EasyScreenLive是一款简单、高效、稳定的集采集,编码,组播,推流和流媒体RTSP服务于一身的同屏功能组件,具低延时,高效能,低丢包等特点。目前支持Windows,Android平台,通过EasyScreenLive我们就可以避免接触到稍显复杂的音视频源采集,编码和流媒体推送以及RTSP/RTP/RTCP/RTMP服务流程,只需要调用EasyScreenLive的几个API接口,就能轻松、稳定地把流媒体音视频数据RTMP推送给EasyDSS服务器以及发布RTSPServer服务,RTSP同屏服务支持组播和单播两种模式。 | 101 | C++ | 08/24 |
| 143 | [hongwenjun/WinKcp_Launcher](https://github.com/hongwenjun/WinKcp_Launcher) | Windows udp2raw+kcptun 加速tcp流量 简易工具 by 蘭雅sRGB | 100 | C++ | 07/16 |
| 144 | [wlgq2/uv-cpp](https://github.com/wlgq2/uv-cpp) | libuv wrapper in C++11. /libuv C++11封装。 | 99 | C++ | 08/05 |
| 145 | [Winnerhust/inifile2](https://github.com/Winnerhust/inifile2) | 一个轻量级的inifile文件解析库,支持解析、修改、保存ini文件 | 98 | C++ | 06/28 |
| 146 | [ReyzalX/nowcoder](https://github.com/ReyzalX/nowcoder) | 牛客网部分编程题参考代码。 | 97 | C++ | 01/06 |
| 147 | [kevinlq/SmartHome-Qt](https://github.com/kevinlq/SmartHome-Qt) | 基于zigbee和stm32的智能家居系统,上位机使用Qt编写,实现了基本的监控。主要包括监控室内温度、湿度、烟雾浓度,用led灯模拟控制家中的灯。界面良好。 | 97 | C++ | 07/14 |
| 148 | [php-extension-research/study](https://github.com/php-extension-research/study) | 手把手教你写PHP协程扩展 | 97 | C++ | 08/30 |
| 149 | [jdcloud-api/jdcloud-sdk-cpp-signer](https://github.com/jdcloud-api/jdcloud-sdk-cpp-signer) | C++ SDK签名库 | 96 | C++ | 06/06 |
| 150 | [czyt1988/sa](https://github.com/czyt1988/sa) | 信号分析及数据可视化软件 | 95 | C++ | 08/28 |
| 151 | [SummerGGift/EmbeddedSystem](https://github.com/SummerGGift/EmbeddedSystem) | :books: 嵌入式系统基础知识与主流编程语言相关内容总结 | 95 | C++ | 09/01 |
| 152 | [w4123/Dice](https://github.com/w4123/Dice) | QQ Dice Robot For TRPG QQ跑团掷骰机器人 | 94 | C++ | 08/18 |
| 153 | [summertian4/iOS-ObjectiveC](https://github.com/summertian4/iOS-ObjectiveC) | 用于存放博客中的 Demo 代码 | 93 | C++ | 04/02 |
| 154 | [ez8-co/yapi](https://github.com/ez8-co/yapi) | 💉 全能进程注入器 [Yet Another Process Injector] that reduce differences between x64, wow64 and x86 processes. | 93 | C++ | 05/30 |
| 155 | [zhongyang219/MusicPlayer2](https://github.com/zhongyang219/MusicPlayer2) | 这是一款可以播放常见音频格式的音频播放器。支持歌词显示、歌词卡拉OK样式显示、歌词在线下载、歌词编辑、歌曲标签识别、Win10小娜搜索显示歌词、频谱分析、音效设置、任务栏缩略图按钮、主题颜色等功能。 播放内核为BASS音频库(V2.4)。 | 93 | C++ | 08/15 |
| 156 | [HMBSbige/GetCNDomainsAndIPv4](https://github.com/HMBSbige/GetCNDomainsAndIPv4) | 获取国内 IP 和域名,生成路由表和 PAC 文件 | 92 | C++ | 04/03 |
| 157 | [pbghogehoge/ssg](https://github.com/pbghogehoge/ssg) | 秋霜玉 | 91 | C++ | 02/10 |
| 158 | [BensonLaur/Beslyric-for-X](https://github.com/BensonLaur/Beslyric-for-X) | 本项目目的在制作一款 操作简单、功能实用的 专门用于制作网易云音乐滚动歌词的 歌词制作软件。基于Qt实现,主打歌词制作功能,以网易云风格界面,力图为云村村名提供一个良好的歌词制作体验! | 91 | C++ | 07/15 |
| 159 | [wlgq2/eomaia](https://github.com/wlgq2/eomaia) | 一个基于reactor模式的Linux/C++网络库,支持one loop per thread机制。 | 90 | C++ | 03/03 |
| 160 | [ManiiXu/VINS-Mono-Learning](https://github.com/ManiiXu/VINS-Mono-Learning) | VINS-Mono代码注释,仅供学习 | 90 | C++ | 07/16 |
| 161 | [yzhu798/CodingInterviewsNotes](https://github.com/yzhu798/CodingInterviewsNotes) | 涵盖C++ Primer 5th、 effective C++ 、 STL api和demos C++ 基础知识与理论、 智能指针、C++11、 Git教程 Linux命令 Unix操作系统(进程、线程、内存管理、信号)计算机网络、 数据结构(排序、查找)、数据库、、C++对象模型、 设计模式、算法(《剑指offer》、leetcode、lintcode、hihocoder、《王道程序员求职宝典》)、面试题、嵌入式相关等 | 89 | C++ | 08/05 |
| 162 | [xuwening/libeventInterface](https://github.com/xuwening/libeventInterface) | C++实现,对libevent库二次开发,解决libevent和自有服务融合问题 | 88 | C++ | 06/24 |
| 163 | [xyz347/x2struct](https://github.com/xyz347/x2struct) | Convert between json string and c++ object. json字符串和c++结构体之间互相转换 | 85 | C++ | 07/05 |
| 164 | [netcan/2017-HUAWEI-Codecraft](https://github.com/netcan/2017-HUAWEI-Codecraft) | 2017华为软件精英挑战赛,上合赛区,围墙编队 | 84 | C++ | 01/03 |
| 165 | [starrtc/starrtc-windows-demo](https://github.com/starrtc/starrtc-windows-demo) | windows示例程序代码,免费IM即时通信消息系统(含一对一文字聊天,群聊,聊天室),免费一对一voip实时通话,免费直播连麦,免费在线会议,视频会议,✨万水千山总是情,来个star行不行✨,更多示例请访问: | 83 | C++ | 08/28 |
| 166 | [czs108/Cpp-Primer-5th-Notes-CN](https://github.com/czs108/Cpp-Primer-5th-Notes-CN) | 📚 《C++ Primer中文版(第5版)》笔记 | 83 | C++ | 08/10 |
| 167 | [ylcangel/crack_dexhelper](https://github.com/ylcangel/crack_dexhelper) | 梆梆企业加固详细逆向分析过程, 包含两种对该加固的脱壳机(直接解密classes0.jar和基于frida hook) | 83 | C++ | 07/25 |
| 168 | [jaredtao/DesignPattern](https://github.com/jaredtao/DesignPattern) | C++11全套设计模式-23种指针的用法(a full DesignPattern implement with c++11) | 82 | C++ | 08/03 |
| 169 | [kongroo/Huawei-CodeCraft-2019](https://github.com/kongroo/Huawei-CodeCraft-2019) | 2019华为软件精英挑战赛,杭夏赛区-咕咕咕,决赛冠军 | 82 | C++ | 05/10 |
| 170 | [Vitomy/RegularNotes](https://github.com/Vitomy/RegularNotes) | 记录cpp知识点,面试题,网络编程,多线程编程 | 80 | C++ | 08/18 |
| 171 | [li9chuan/BaseService](https://github.com/li9chuan/BaseService) | 微信小游戏服务器,facebook instant game server,房间及卡牌类游戏服务器。支持websocket,wss及tcp协议,lua编写游戏逻辑。C++底层已支持多款线上产品,跨平台。lua函数支持不停机热更新。包含一个斗地主游戏逻辑。 | 79 | C++ | 06/05 |
| 172 | [neuks/Indicator](https://github.com/neuks/Indicator) | 通达信缠论可视化分析插件 | 79 | C++ | 03/12 |
| 173 | [brookicv/FFMPEG-study](https://github.com/brookicv/FFMPEG-study) | 学习FFMPEG的一些代码示例 | 78 | C++ | 08/30 |
| 174 | [vipshop/rdp](https://github.com/vipshop/rdp) | MySQL Binlog增量同步管道 | 78 | C++ | 01/11 |
| 175 | [MegrezZhu/qmcdump](https://github.com/MegrezZhu/qmcdump) | 一个简单的QQ音乐解码(qmcflac/qmc0/qmc3 转 flac/mp3),仅为个人学习参考用。 | 77 | C++ | 08/30 |
| 176 | [eritpchy/Fingerprint-pay-magisk-alipay](https://github.com/eritpchy/Fingerprint-pay-magisk-alipay) | 支付宝指纹支付 (Fingerprint pay for Alipay) | 77 | C++ | 04/23 |
| 177 | [TonyChen56/ShellCodeFrame](https://github.com/TonyChen56/ShellCodeFrame) | 使用纯C/C++编写的ShellCode生成框架 | 77 | C++ | 05/25 |
| 178 | [miaoerduo/dlib-face-landmark-compression](https://github.com/miaoerduo/dlib-face-landmark-compression) | Dlib中的人脸landmark检测的模型压缩 | 76 | C++ | 05/24 |
| 179 | [pinorr/HuPaiMJ](https://github.com/pinorr/HuPaiMJ) | C++麻将胡牌算法 优点:1.速度快,900万次多赖子胡牌用时500ms左右。2.支持多个赖子。3.查错方便,直接查表就可知道 | 75 | C++ | 07/17 |
| 180 | [babyliynfg/cross](https://github.com/babyliynfg/cross) | 移动端跨平台引擎 | 75 | C++ | 08/28 |
| 181 | [Jack-Cherish/Algorithm](https://github.com/Jack-Cherish/Algorithm) | :art:冒泡排序;直接插入排序;希尔排序;快速排序;堆排序;归并排序;基数排序 | 74 | C++ | 03/04 |
| 182 | [yyrdl/libco-code-study](https://github.com/yyrdl/libco-code-study) | 腾讯libco协程库源码注解 | 73 | C++ | 04/02 |
| 183 | [shinnytech/open-trade-gateway](https://github.com/shinnytech/open-trade-gateway) | Diff协议中继网关, 支持 CTP / FEMAS / UFX 等交易系统 | 73 | C++ | 08/29 |
| 184 | [raintean/blink](https://github.com/raintean/blink) | 使用html来编写golang图形界面程序(only windows) | 73 | C++ | 04/05 |
| 185 | [fawdlstty/NetToolbox](https://github.com/fawdlstty/NetToolbox) | Net Toolbox for Master Yi (易大师网络工具箱) | 72 | C++ | 07/17 |
| 186 | [deadash/pbb_crack](https://github.com/deadash/pbb_crack) | PBB视频解密 | 72 | C++ | 04/06 |
| 187 | [button-chen/buttonrpc_cpp14](https://github.com/button-chen/buttonrpc_cpp14) | 几百行代码实现的modern c++ rpc library | 72 | C++ | 05/05 |
| 188 | [y123456yz/reading-and-annotate-mongodb-3.6.1](https://github.com/y123456yz/reading-and-annotate-mongodb-3.6.1) | 分布式文档数据库mongodb-3.6.1(mongos、mongod、wiredtiger存储引擎)源码中文注释分析,近期持续更新(mongodb及wiredtiger存储引擎源码学习交流QQ群:568892619) | 71 | C++ | 08/14 |
| 189 | [xiaoyanLG/Soft-keyboard](https://github.com/xiaoyanLG/Soft-keyboard) | 集成google输入法的嵌入式中文输入面板 | 71 | C++ | 05/14 |
| 190 | [netease-im/NIM_PC_Demo](https://github.com/netease-im/NIM_PC_Demo) | 云信Windows(PC) C/C++ Demo源码仓库 | 70 | C++ | 08/13 |
| 191 | [superman-t/PlaneGame](https://github.com/superman-t/PlaneGame) | 飞机大战源码(豪华版) | 70 | C++ | 06/25 |
| 192 | [Y1ran/Wandering-Earth--Chun-Jie-12-Bong](https://github.com/Y1ran/Wandering-Earth--Chun-Jie-12-Bong) | 🌏【流浪地球】春节十二响开源代码及苏拉威西三号转向发动机程序-李一一 | 70 | C++ | 04/22 |
| 193 | [chxuan/samples](https://github.com/chxuan/samples) | :hibiscus: 一些C/C++例程 | 69 | C++ | 08/30 |
| 194 | [2013fangwentao/Multi_Sensor_Fusion](https://github.com/2013fangwentao/Multi_Sensor_Fusion) | Multi-Sensor Fusion (GNSS, IMU, Camera and so on) 多源多传感器融合定位 GPS/INS组合导航 | 69 | C++ | 08/31 |
| 195 | [chiuchiuuu/programming-and-algorithm](https://github.com/chiuchiuuu/programming-and-algorithm) | 这是北京大学在coursera上开设的「程序设计与算法」专项课程 | 69 | C++ | 03/30 |
| 196 | [jadennn/flutter_ijk](https://github.com/jadennn/flutter_ijk) | flutter封装的ijkplayer,支持rtsp播放 | 68 | C++ | 08/08 |
| 197 | [plter/eoeFlappyBird](https://github.com/plter/eoeFlappyBird) | 一小时学会开发FlappyBird | 68 | C++ | 06/26 |
| 198 | [IronsDu/DBProxy](https://github.com/IronsDu/DBProxy) | redis proxy、ssdb proxy(使用脚本控制sharding) | 67 | C++ | 04/23 |
| 199 | [188080501/JQQRCode](https://github.com/188080501/JQQRCode) | Qt中的二维码的扫描与解析 | 66 | C++ | 01/31 |
| 200 | [TonyChen56/160-Crackme](https://github.com/TonyChen56/160-Crackme) | 对160个Crackme的详细分析记录 | 66 | C++ | 06/15 |
⬆ [回到目录](#目录)
<br/>
## C#
| # | Repository | Description | Stars | Language | Updated |
| ---- | ------------------------------------------------------------ | ------------------------------------------------------------ | ----- | -------- | ------- |
| 1 | [hoodiearon/w3-goto-world](https://github.com/hoodiearon/w3-goto-world) | 🍅冲出你的窗口,free ss/ssr/vmess分享、IPFS、暗网及蹭网教程、Git镜像等其他资源存储库 | 6.0k | C# | 09/01 |
| 2 | [JeffreySu/WeiXinMPSDK](https://github.com/JeffreySu/WeiXinMPSDK) | 微信公众平台SDK Senparc.Weixin for C#,支持.NET Framework及.NET Core。已支持微信公众号、小程序、小游戏、企业号、企业微信、开放平台、微信支付、JSSDK、微信周边等全平台。 WeChat SDK for C#. | 5.4k | C# | 08/30 |
| 3 | [dotnetcore/Util](https://github.com/dotnetcore/Util) | Util是一个.net core平台下的应用框架,旨在提升小型团队的开发输出能力,由常用公共操作类(工具类)、分层架构基类、Ui组件,第三方组件封装,第三方业务接口封装,配套代码生成模板,权限等组成。 | 2.8k | C# | 08/30 |
| 4 | [Jimmey-Jiang/Common.Utility](https://github.com/Jimmey-Jiang/Common.Utility) | 比较全面的c#帮助类,各种功能性代码。 | 2.8k | C# | 08/30 |
| 5 | [studyzy/imewlconverter](https://github.com/studyzy/imewlconverter) | 一款开源免费的输入法词库转换程序 | 1.8k | C# | 06/09 |
| 6 | [SeriaWei/ZKEACMS](https://github.com/SeriaWei/ZKEACMS) | ZKEACMS for .Net Core (.Net Core CMS)可视化设计在线编辑内容管理系统 | 1.8k | C# | 08/31 |
| 7 | [jarjin/LuaFramework_UGUI](https://github.com/jarjin/LuaFramework_UGUI) | [停止更新]请移步新版地址https://github.com/jarjin/LuaFramework_UGUI_V2 支持安卓ARM64 | 1.7k | C# | 06/05 |
| 8 | [siteserver/cms](https://github.com/siteserver/cms) | SiteServer CMS 基于.NET平台,能够以最低的成本、最少的人力投入在最短的时间内架设一个功能齐全、性能优异、规模庞大并易于维护的网站平台。 | 1.6k | C# | 09/01 |
| 9 | [QianMo/Unity-Design-Pattern](https://github.com/QianMo/Unity-Design-Pattern) | :tea: All Gang of Four Design Patterns written in Unity C# with many examples. And some Game Programming Patterns written in Unity C#. \| 各种设计模式的Unity3D C#版本实现 | 1.1k | C# | 01/31 |
| 10 | [geffzhang/NanoFabric](https://github.com/geffzhang/NanoFabric) | 基于Consul + .NET Core + Polly + Ocelot + Exceptionless + IdentityServer等开源项目的微服务开发框架 | 1.1k | C# | 02/05 |
| 11 | [NewLifeX/X](https://github.com/NewLifeX/X) | 新生命X组件,数据中间件XCode、日志、网络、RPC、序列化、缓存、Windows服务 | 934 | C# | 09/01 |
| 12 | [kenvix/USBCopyer](https://github.com/kenvix/USBCopyer) | 😉 用于在插上U盘后自动按需复制该U盘的文件。”备份&偷U盘文件的神器”(写作USBCopyer,读作USBCopier) | 932 | C# | 06/11 |
| 13 | [toolgood/ToolGood.Words](https://github.com/toolgood/ToolGood.Words) | 一款高性能敏感词(非法词/脏字)检测过滤组件,附带繁体简体互换,支持全角半角互换,汉字转拼音,模糊搜索等功能。 | 890 | C# | 07/29 |
| 14 | [dotnetcore/WTM](https://github.com/dotnetcore/WTM) | WTM框架是针对中小规模后台管理系统的开发利器。基于DotNetCore,实现0编码创建项目,0编码生成业务模块。框架严格遵循MVVM的开发模式,并深得MVVM的精髓。对于新手,可以快速上手搭建项目;对于高手,可以把那些繁琐重复的工作交给框架生成,专心攻克需求难点。框架经过数十个真实项目检测,可以极大提高开发效率,降低开发成本。 | 824 | C# | 09/02 |
| 15 | [zengzhan/qqzeng-ip](https://github.com/zengzhan/qqzeng-ip) | 最新IP地址数据库-多语言解析以及导入数据库脚本 | 783 | C# | 07/13 |
| 16 | [anjoy8/Blog.Core](https://github.com/anjoy8/Blog.Core) | ASP.NET Core 2.2 教程,前后端分离的后端接口,vue教程的姊妹篇 | 779 | C# | 08/26 |
| 17 | [944095635/DMSkin](https://github.com/944095635/DMSkin) | DMSkin WPF 样式 UI 框架 \| WPF Borderless Window \| Custom Controls & Styles \| MVVM Support | 738 | C# | 06/06 |
| 18 | [GaoKaiHaHa/MyUnityFrameWork](https://github.com/GaoKaiHaHa/MyUnityFrameWork) | 我的Unity框架,包含资源加载,配置加载,数据加载,UI管理,日志管理,动画系统,特效系统 | 656 | C# | 08/19 |
| 19 | [TheCGDF/SSD-Windows](https://github.com/TheCGDF/SSD-Windows) | 一个依附于shadowsocks-windows的项目,跟随上游更新 | 653 | C# | 08/01 |
| 20 | [lampo1024/DncZeus](https://github.com/lampo1024/DncZeus) | DncZeus 是一个基于ASP.NET Core 2 + Vue.js(iview-admin) 的前后端分离的通用后台权限(页面访问、操作按钮控制)管理系统框架。后端使用.NET Core 2 + Entity Framework Core构建,UI则是目前流行的基于Vue.js的iView(iview-admin)。项目实现了前后端的动态权限管理和控制以及基于JWT的用户令牌认证机制,让前后端的交互更流畅。码云镜像:https://gitee.com/rector/DncZeus 。演示地址(demo): | 622 | C# | 08/21 |
| 21 | [Varorbc/PaySharp](https://github.com/Varorbc/PaySharp) | PaySharp是一个支持多商户多种支付方式的跨平台网关处理类库,使用PaySharp可以简化订单的创建、查询、退款和接收网关返回的支付通知等操作。目前支持的支付网关有:支付宝(Alipay)、微信支付(Wechatpay)、银联支付(Unionpay)、QQ钱包支付(Qpay) | 606 | C# | 08/28 |
| 22 | [newbe36524/Newbe.Mahua.Framework](https://github.com/newbe36524/Newbe.Mahua.Framework) | 本SDK为实现QQ机器人平台的大一统,支持多种机器人平台:酷Q、MyPCQQ、CleverQQ、QQLight等 | 601 | C# | 07/19 |
| 23 | [dotnetcore/Alipay.AopSdk.Core](https://github.com/dotnetcore/Alipay.AopSdk.Core) | 支付宝(Alipay)服务端SDK,采用.NET Standard 2.0,支持.NET Core >=2.0,与官方SDK接口完全相同。完全可以按照官方文档进行开发。除了支持支付以外,官方SDK支持的功能本SDK全部支持,比如生活号、服务窗、行业合作等,且用法几乎一样,代码都可参考官方文档代码。 | 585 | C# | 07/31 |
| 24 | [yimengfan/BDFramework.Core](https://github.com/yimengfan/BDFramework.Core) | [中]Simple! Easy! Beautiful! This‘s a powerful Unity3d game workflow! [Unity3d framework] | 574 | C# | 08/26 |
| 25 | [xasset/xasset](https://github.com/xasset/xasset) | 一个简易轻量的Unity资源管理框架 | 561 | C# | 08/14 |
| 26 | [WWILLV/GodOfHacker](https://github.com/WWILLV/GodOfHacker) | 黑客神器 | 559 | C# | 01/12 |
| 27 | [essensoft/payment](https://github.com/essensoft/payment) | Payment 是基于 .NET Core / ASP.NET Core 开发,支持多商户的跨平台支付SDK集。简化了API调用及相关通知的处理流程。目前支持:支付宝(Alipay)、微信支付(WeChatPay)、QQ钱包(QPay)、京东支付(JDPay)、连连支付(LianLianPay)、银联支付(UnionPay) | 549 | C# | 08/25 |
| 28 | [phorcys/Taiwu_mods](https://github.com/phorcys/Taiwu_mods) | 太吾绘卷游戏Mod | 544 | C# | 09/02 |
| 29 | [spr1ngd/UnityCodes](https://github.com/spr1ngd/UnityCodes) | SpringGUI是对UGUI的拓展,提供十多种UI组件用于快速开发。 | 543 | C# | 01/09 |
| 30 | [XINCGer/Unity3DTraining](https://github.com/XINCGer/Unity3DTraining) | Unity3D的练习项目 | 542 | C# | 08/31 |
| 31 | [dncto/dnc](https://github.com/dncto/dnc) | dnc 去中心化 开源社区 轻联盟 dncto.com QQ群 779699538 | 538 | C# | 01/25 |
| 32 | [Shriek-Projects/shriek-fx](https://github.com/Shriek-Projects/shriek-fx) | 【WIP】️一个基于 .NET Core 2.0 开发的简单易用的快速开发框架,遵循领域驱动设计(DDD)规范约束,并结合CQRS架构提供实现事件驱动、事件回溯、响应式等特性的基础设施。让开发者享受到正真意义的面向对象设计模式来带的美感。 | 530 | C# | 09/01 |
| 33 | [zhaopeiym/quartzui](https://github.com/zhaopeiym/quartzui) | 基于Quartz.NET3.0的定时任务Web可视化管理。docker打包开箱即用、内置SQLite持久化、语言无关、业务代码零污染、支持 RESTful风格接口、傻瓜式配置 | 516 | C# | 08/15 |
| 34 | [dathlin/ClientServerProject](https://github.com/dathlin/ClientServerProject) | 一个C-S模版,该模版由三部分的程序组成,一个服务端运行的程序,一个客户端运行的程序,还有一个公共的组件,实现了基础的账户管理功能,版本控制,软件升级,公告管理,消息群发,共享文件上传下载,批量文件传送功能。具体的操作方法见演示就行。本项目的一个目标是:提供一个基础的中小型系统的C-S框架,客户端有三种模式,无缝集成访问,winform版本,wpf版本,asp.net mvc版本,方便企业进行中小型系统的二次开发和个人学习。同时网络组件方便的支持读写三菱和西门子PLC的数据,详细见Readme | 516 | C# | 02/07 |
| 35 | [Jimmey-Jiang/ABP-ASP.NET-Boilerplate-Project-CMS](https://github.com/Jimmey-Jiang/ABP-ASP.NET-Boilerplate-Project-CMS) | ABP module-zero +AdminLTE+Bootstrap Table+jQuery+Redis + sql server+quartz+hangfire权限管理系统 | 513 | C# | 07/25 |
| 36 | [HMBSbige/ShadowsocksR-Windows](https://github.com/HMBSbige/ShadowsocksR-Windows) | 【自用】Forked from shadowsocksr and shadowsocksrr | 509 | C# | 09/01 |
| 37 | [cyq1162/cyqdata](https://github.com/cyq1162/cyqdata) | cyq.data is a high-performance and the most powerful orm.(.NET 最好用的ORM数据层框架,木有之一!支持.NET Core)Support:Txt、Xml、Access、Sqlite、Mssql、Mysql、Oracle、Sybase、Postgres、Redis、MemCache。 | 509 | C# | 07/04 |
| 38 | [VictorTzeng/Zxw.Framework.NetCore](https://github.com/VictorTzeng/Zxw.Framework.NetCore) | 基于EF Core的Code First模式的DotNetCore快速开发框架,其中包括DBContext、IOC组件autofac和AspectCore.Injector、代码生成器(也支持DB First)、基于AspectCore的memcache和Redis缓存组件,以及基于ICanPay的支付库和一些日常用的方法和扩展,比如批量插入、更新、删除以及触发器支持,当然还有demo。欢迎提交各种建议、意见和pr~ | 492 | C# | 09/01 |
| 39 | [neil3d/excel2json](https://github.com/neil3d/excel2json) | 把Excel表转换成json对象,并保存到一个文本文件中。 | 488 | C# | 02/28 |
| 40 | [shack2/SNETCracker](https://github.com/shack2/SNETCracker) | 超级弱口令检查工具是一款Windows平台的弱口令审计工具,支持批量多线程检查,可快速发现弱密码、弱口令账号,密码支持和用户名结合进行检查,大大提高成功率,支持自定义服务端口和字典。 | 478 | C# | 08/01 |
| 41 | [ldqk/Masuit.Tools](https://github.com/ldqk/Masuit.Tools) | 包含一些常用的操作类,大都是静态类,加密解密,反射操作,动态编译,硬件信息,字符串扩展方法,日期时间扩展操作,大文件拷贝,图像裁剪,验证码,断点续传,实体映射等常用封装。 | 473 | C# | 08/30 |
| 42 | [RayTale/Ray](https://github.com/RayTale/Ray) | 基于Actor模型构建的最终一致性分布式事件朔源高性能框架。欢迎使用Ray,感受不一样的.Net Core编程体验。 | 453 | C# | 09/01 |
| 43 | [huiyadanli/PasteEx](https://github.com/huiyadanli/PasteEx) | :clipboard: Paste As File 把剪贴板的内容直接粘贴为文件 | 440 | C# | 08/11 |
| 44 | [bing-framework/Bing.NetCore](https://github.com/bing-framework/Bing.NetCore) | Bing是基于 .net core 2.0 的框架,旨在提升团队的开发输出能力,由常用公共操作类(工具类、帮助类)、分层架构基类,第三方组件封装,第三方业务接口封装等组成。 | 439 | C# | 09/01 |
| 45 | [Panuon/PanuonUI](https://github.com/Panuon/PanuonUI) | 一个好看精致、开源无限制使用的WPF控件库。 | 412 | C# | 08/08 |
| 46 | [tangzx/ABSystem](https://github.com/tangzx/ABSystem) | Unity3D AssetBundle 打包与管理系统 | 404 | C# | 07/08 |
| 47 | [zhangqi-ulua/XlsxToLua](https://github.com/zhangqi-ulua/XlsxToLua) | Excel表格数据导出为Lua table、csv、json形式的工具,兼带数据检查功能以及导出、导入MySQL数据库功能 | 400 | C# | 08/09 |
| 48 | [CHKZL/DDTV](https://github.com/CHKZL/DDTV) | 监控室老大爷多路直播监控——可进行B站直播自动录制,播放,视频下载。油管直播录制 | 398 | C# | 04/29 |
| 49 | [1217950746/Arthas-WPFUI](https://github.com/1217950746/Arthas-WPFUI) | WPF 控件库,支持 .Net Core 3.0 Preview & .Net 4.6.1 | 396 | C# | 01/27 |
| 50 | [yuzd/AntData.ORM](https://github.com/yuzd/AntData.ORM) | 特色:vs插件或者t4一键生成entity 支持配置非物理外键。分离linq转sql引擎(原生linq非扩展)和执行dal功能,支持异步,支持netcore2.0 | 381 | C# | 07/03 |
| 51 | [yilezhu/Czar.Cms](https://github.com/yilezhu/Czar.Cms) | .NET Core实战项目之CMS系列教程的源码,精简而又功能丰富的权限设计,内容管理设计让你轻松搭建一个ASP.NET Core2.2的网站系统.此项目准备用EFCore进行重构,敬请期待 | 375 | C# | 05/13 |
| 52 | [qq576067421/cshotfix](https://github.com/qq576067421/cshotfix) | C# HotFix C#热更新 unity3d 热更新 | 358 | C# | 08/25 |
| 53 | [shack2/SuperSQLInjectionV1](https://github.com/shack2/SuperSQLInjectionV1) | 超级SQL注入工具(SSQLInjection)是一款基于HTTP协议自组包的SQL注入工具,采用C#开发,直接操作TCP会话来进行HTTP交互,支持出现在HTTP协议任意位置的SQL注入,支持各种类型的SQL注入,支持HTTPS模式注入;支持以盲注、错误显示、Union注入等方式来获取数据;支持Access/MySQL/SQLServer/Oracle/PostgreSQL/DB2/SQLite/Informix等数据库;支持手动灵活的进行SQL注入绕过,可自定义进行字符替换等绕过注入防护。本工具为渗透测试人员、信息安全工程师等掌握SQL注入技能的人员设计,需要使用人员对SQL注入有一定了解 ... | 355 | C# | 09/02 |
| 54 | [huiyadanli/RevokeMsgPatcher](https://github.com/huiyadanli/RevokeMsgPatcher) | :trollface:PC微信防撤回补丁(我已经看到了,撤回也没用了) | 348 | C# | 08/18 |
| 55 | [kwonganding/winform.controls](https://github.com/kwonganding/winform.controls) | 分享几年前开发的一套winform控件库。当时主要为开发公司内部ERP系统,重新设计实现了所有用到的Winform组建,包括Form窗体组建6个(支持换肤),基础控件25个。其中有很多参考借鉴其他开源组件,也有几个是集成的别人的组件,然后做了些调整。 现在已经好几年不做Winform开发了,整理一下共享出来,希望能够给需要的朋友一些帮助。 | 344 | C# | 05/26 |
| 56 | [chengderen/Smartflow-Sharp](https://github.com/chengderen/Smartflow-Sharp) | 基于C#语言研发的Smartflow-Sharp工作流组件,该工作流组件的特点是简单易用、方便扩展、支持多种数据库访问、高度可定制化,支持用户按需求做功能的定制开发,节省用户的使用成本 | 339 | C# | 09/01 |
| 57 | [q315523275/FamilyBucket](https://github.com/q315523275/FamilyBucket) | 集合.net core、ocelot、consul、netty、grpc、eventbus、configserver、tracing、sqlsugar等构建的微服务一条龙应用 | 339 | C# | 08/28 |
| 58 | [coding2233/TextInlineSprite](https://github.com/coding2233/TextInlineSprite) | UGUI图文混排 unity version: 2017.2+ | 332 | C# | 08/28 |
| 59 | [dotnetcore/CanalSharp](https://github.com/dotnetcore/CanalSharp) | Alibaba mysql database binlog incremental subscription & consumer components Canal's .NET client. 阿里巴巴mysql数据库binlog的增量订阅&消费组件 Canal 的 .NET 客户端 | 332 | C# | 06/30 |
| 60 | [salamander-mh/SalamanderWnmp](https://github.com/salamander-mh/SalamanderWnmp) | A beautiful Nginx PHP Mysql environment for windows( windows下用WPF制作的nginx,php,mysql集成环境(免安装)) | 331 | C# | 01/29 |
| 61 | [night-king/weixinSDK](https://github.com/night-king/weixinSDK) | 微信SDK,一个轻量级的,极致简约的微信公众平台(服务号、订阅号)SDK.net版本,也支持dotnet core,作者QQ:2586662969,官方网站: | 329 | C# | 08/26 |
| 62 | [2881099/im](https://github.com/2881099/im) | .NETCore websocket 实现简易、高性能、集群即时通讯组件,支持点对点通讯、群聊通讯、上线下线事件消息等众多实用性功能. | 324 | C# | 08/06 |
| 63 | [wuxiongbin/XIL](https://github.com/wuxiongbin/XIL) | 使用ILRuntime实现的类似XLUA功能的Unity3D下热修复BUG的解决方案 | 303 | C# | 05/10 |
| 64 | [zs9024/quick_psd2ugui](https://github.com/zs9024/quick_psd2ugui) | parse psd file and auto generate ui prefab(解析psd文件,一键生成ugui面板) | 300 | C# | 03/12 |
| 65 | [ningxiaoxiao/NSGameDownloader](https://github.com/ningxiaoxiao/NSGameDownloader) | 从百度云查找游戏 | 300 | C# | 08/20 |
| 66 | [NewLifeX/NewLife.Redis](https://github.com/NewLifeX/NewLife.Redis) | 高性能Redis协议封装,支持.Net Core,经过一年多日均80亿调用量验证 | 295 | C# | 07/07 |
| 67 | [iccfish/FSLib.App.SimpleUpdater](https://github.com/iccfish/FSLib.App.SimpleUpdater) | A simple automatic update library for .net. 一个炒鸡简单但是足够好用的自动更新库。 | 291 | C# | 08/02 |
| 68 | [zsh2401/AutumnBox](https://github.com/zsh2401/AutumnBox) | 图形化ADB工具箱 | 289 | C# | 08/24 |
| 69 | [copyliu/bililive_dm](https://github.com/copyliu/bililive_dm) | B站直播彈幕工具 | 276 | C# | 09/01 |
| 70 | [daxnet/ByteartRetail](https://github.com/daxnet/ByteartRetail) | 一个演示.NET企业应用开发技术以及领域驱动设计的案例代码,业务背景是一个简单的在线零售系统。 | 275 | C# | 01/11 |
| 71 | [andanteyk/ElectronicObserver](https://github.com/andanteyk/ElectronicObserver) | 艦これ補助ツール「七四式電子観測儀」 | 274 | C# | 09/01 |
| 72 | [jm33-m0/kms-activate](https://github.com/jm33-m0/kms-activate) | Microsoft Windows/Office 一键激活工具,基于kms.jm33.me的KMS服务器 | 264 | C# | 08/07 |
| 73 | [Immortalt/imt-wanke-client](https://github.com/Immortalt/imt-wanke-client) | 不朽玩客云客户端(Immortalt Wanke Client) | 261 | C# | 06/05 |
| 74 | [tmoonlight/NSmartProxy](https://github.com/tmoonlight/NSmartProxy) | NSmartProxy是一款免费的内网穿透工具。采用.NET CORE的全异步模式打造。(NSmartProxy is a open source reverse proxy tool that creates a secure tunnel from a public endpoint to a locally service.) | 261 | C# | 09/01 |
| 75 | [KevinWG/OSS.PaySdk](https://github.com/KevinWG/OSS.PaySdk) | 开源支付SDK(标准库),主要打造微信支付,支付宝支付,标准库项目,同时支持.net framework和.net core | 259 | C# | 06/12 |
| 76 | [anjoy8/ChristDDD](https://github.com/anjoy8/ChristDDD) | ASP.NET Core 2.2 应用, 包含 DDD、CQRS、EDA 和事件回溯 | 257 | C# | 08/08 |
| 77 | [gemgin/WeChatTools](https://github.com/gemgin/WeChatTools) | 1、检测域名/网址是否被微信拦截("已停止访问该网页","网页包含诱导分享、诱导关注内容,被多人投诉,为维护绿色上网环境,已停止访问") 2、中转(微信公众号网页域名随机生成跳转,搭配1功能保证活动正常访问) 3、微信公众号图片url中转 4、微信域名防封系统 5、手机浏览器、QQ唤起微信指定页面 | 256 | C# | 08/22 |
| 78 | [mili-tan/AuroraDNS.GUI](https://github.com/mili-tan/AuroraDNS.GUI) | 纯净抗污染,简单轻量级 | 254 | C# | 09/01 |
| 79 | [dreamanlan/Cs2Lua](https://github.com/dreamanlan/Cs2Lua) | CSharp代码转lua,适用于使用lua实现热更新而又想有一个强类型检查的语言的场合 | 252 | C# | 08/07 |
| 80 | [Bililive/BililiveRecorder](https://github.com/Bililive/BililiveRecorder) | B站录播姬 \| BiliBili Stream Recorder | 251 | C# | 08/22 |
| 81 | [dotnetcore/Natasha](https://github.com/dotnetcore/Natasha) | 使用roslyn方案打造高性能动态代码,包括动态构建,运行时编译等。(Use Roslyn to create efficient dynamic code. Including dynamic build and so on.) | 249 | C# | 09/01 |
| 82 | [cyq1162/Taurus.MVC](https://github.com/cyq1162/Taurus.MVC) | Taurus.mvc is a high-performance mvc and webapi framework for asp.net or asp.net core(适合场景:对性能和并发有较高要求的电商、站点、WebAPI等系统,支持.Net Core) | 247 | C# | 06/05 |
| 83 | [xunki/RemoteDesktopManage](https://github.com/xunki/RemoteDesktopManage) | 基于 MSTSC 连接 Windows 远程桌面,并对其进行封装实现管理多个远程桌面配置的小工具 | 245 | C# | 07/11 |
| 84 | [zyzsdy/biliroku](https://github.com/zyzsdy/biliroku) | bilibili 生放送(直播)录制 | 241 | C# | 08/18 |
| 85 | [ixre/cms](https://github.com/ixre/cms) | DDD 开源.NET CMS、跨平台支持Docker容器 | 239 | C# | 08/19 |
| 86 | [IndieVisualLab/UnityGraphicsProgramming](https://github.com/IndieVisualLab/UnityGraphicsProgramming) | 書籍「UnityGraphicsProgramming vol.1」のサンプルコードリポジトリ | 239 | C# | 03/24 |
| 87 | [itdos/Dos.ORM](https://github.com/itdos/Dos.ORM) | Dos.ORM(原Hxj.Data)于2009年发布,2015年正式开源。在开发过程中参考了NBear与MySoft,吸取了他们的一些精华,加入新思想,同时参考EF的Lambda语法进行大量扩展。该组件已在数百个成熟项目中应用。官方网站:http://ITdos.com/Dos/ORM/Index.html 交流QQ群:60831381 | 238 | C# | 05/30 |
| 88 | [ctripcorp/apollo.net](https://github.com/ctripcorp/apollo.net) | Apollo配置中心.Net客户端 | 233 | C# | 08/29 |
| 89 | [Baidu-AIP/dotnet-sdk](https://github.com/Baidu-AIP/dotnet-sdk) | 百度AI开放平台 .Net SDK | 231 | C# | 02/01 |
| 90 | [kwonganding/wpf.controls](https://github.com/kwonganding/wpf.controls) | 在学习中和使用WPF中,学习、借鉴了很多网友的文章和开源的项目的知识。发现提供实际项目开发需要的基础控件、样式的文章大都比较散,不成系列。因此基于现在项目中使用开发了一个wpf基础UI库,并写了这个系列入门文章(http://www.cnblogs.com/anding/p/5018363.html),希望对有需要的人有所帮助。 | 229 | C# | 07/04 |
| 91 | [OpenTouryoProject/OpenTouryo](https://github.com/OpenTouryoProject/OpenTouryo) | ”Open棟梁”は、長年の.NETアプリケーション開発実績にて蓄積したノウハウに基づき開発した.NET用アプリケーション フレームワークです。 (”OpenTouryo” , is an application framework for .NET which was developed using the accumulated know-how with a long track record in .NET application development.) | 228 | C# | 08/21 |
| 92 | [monitor1394/unity-ugui-XCharts](https://github.com/monitor1394/unity-ugui-XCharts) | An ECharts style UGUI Charting Library \| 一款ECharts风格的UGUI图表库 | 220 | C# | 08/22 |
| 93 | [tylike/CIIP](https://github.com/tylike/CIIP) | CIIP用于快速开发ERP类信息系统的框架.由CIIP.Designer(业务模型设计器)和CIIP.Client客户端运行程序组成.包含报表设计器,Dashboard数据分析工具,支持验证规则,支持外观变化规则,内置权限模块,界面布局设计器,多国语言支持,支持14种常用数据库,如SqlServer,Oracle,MySql等。 | 219 | C# | 07/25 |
| 94 | [BladeMight/Mahou](https://github.com/BladeMight/Mahou) | Mahou(魔法) - The magic layout switcher. | 218 | C# | 08/09 |
| 95 | [yuyang9119/UnityExtensions](https://github.com/yuyang9119/UnityExtensions) | Unity 通用扩展,包括编辑器、运行时的即用扩展、API 扩展。目前含有 Tween(插值动画)、Path(样条路径)、FSM(状态机)、Save(存档)、Localization(本地化)等主要系统。 | 216 | C# | 04/13 |
| 96 | [JonneyDong/JocationRelease](https://github.com/JonneyDong/JocationRelease) | IOS免越狱虚拟定位修改 | 216 | C# | 05/03 |
| 97 | [xtqqksszml/zcode-AssetBundlePacker](https://github.com/xtqqksszml/zcode-AssetBundlePacker) | Unity的AssetBundle模块扩展插件,主要目的用于简化AssetBundle打包,提供AssetBundle管理,支持热更新、支持资源包下载、支持版本控制。 | 212 | C# | 01/07 |
| 98 | [Senparc/Senparc.CO2NET](https://github.com/Senparc/Senparc.CO2NET) | 支持 .NET Framework & .NET Core 的公共基础扩展库 | 210 | C# | 08/22 |
| 99 | [weixinbao/WeChatXY](https://github.com/weixinbao/WeChatXY) | 微信协议:微信ipad协议源码,可实现微信80%功能。支持62数据登录、扫码登录、收发朋友圈、查看朋友圈、微信建群、微信拉人进群、微信公众号阅读、微信消息收发、微信附近的人定位、微信添加好友、微信红包接收、微信防撤回、分享小程序、微信加粉、微信收藏、微信标签等。请联系qq:3226944661 | 201 | C# | 06/12 |
| 100 | [sugi-cho/Animation-Texture-Baker](https://github.com/sugi-cho/Animation-Texture-Baker) | 頂点の位置と法線を、Texture2Dに保存しておく。ARGBFloatとか、HDR Textureを使用したバージョン | 197 | C# | 04/11 |
| 101 | [sh-akira/VirtualMotionCapture](https://github.com/sh-akira/VirtualMotionCapture) | VRゲーム中にモデルをコントロール | 192 | C# | 09/01 |
| 102 | [MikeJinhua/UnitySocketProtobuf3Demo](https://github.com/MikeJinhua/UnitySocketProtobuf3Demo) | 主要实现了用Unity对接了Leaf服务器。其次带了些小工具。 | 189 | C# | 07/31 |
| 103 | [holdengong/EasyOffice](https://github.com/holdengong/EasyOffice) | a library to easy manipulate excel,word for .net core...一句调用代码即可实现常规的导入导出Excel,生成Word。 | 188 | C# | 05/31 |
| 104 | [stomakun/NeteaseReverseLadder](https://github.com/stomakun/NeteaseReverseLadder) | Play your favorite songs in Netease Cloud Music that are banned outside Mainland China. 解除网易云音乐海外播放限制。 | 185 | C# | 02/03 |
| 105 | [Viagi/LandlordsCore](https://github.com/Viagi/LandlordsCore) | ET斗地主Demo,ET开源链接:https://github.com/egametang/ET | 185 | C# | 04/15 |
| 106 | [dathlin/HslControlsDemo](https://github.com/dathlin/HslControlsDemo) | HslControls控件库的使用demo,HslControls是一个工业物联网的控件库,基于C#开发,配套HslCommunication组件可以实现工业上位机软件的快速开发,支持常用的工业图形化控件,快速的集成界面开发。 主要包含了按钮,开关,进度条,信号灯,数码管,时钟,曲线显示控件,仪表盘控件,管道控件,瓶子控件,饼图控件,传送带控件,温度计控件,鼓风机控件,阀门控件,电池控件等等。 | 185 | C# | 08/31 |
| 107 | [2881099/dotnetGen_mysql](https://github.com/2881099/dotnetGen_mysql) | .NETCore + Mysql 生成器 | 184 | C# | 05/16 |
| 108 | [qinyuanpei/HttpServer](https://github.com/qinyuanpei/HttpServer) | 一个使用C#编写的简易Web服务器 | 176 | C# | 03/04 |
| 109 | [yuzd/Hangfire.HttpJob](https://github.com/yuzd/Hangfire.HttpJob) | httpjob for Hangfire,restful api for Hangfire,job调度与业务分离 | 173 | C# | 08/08 |
| 110 | [dathlin/OpcUaHelper](https://github.com/dathlin/OpcUaHelper) | 一个通用的opc ua客户端类库,基于.net 4.6.1创建,基于官方opc ua基金会跨平台库创建,封装了节点读写,批量节点读写,引用读取,特性读取,历史数据读取,方法调用,节点订阅,批量订阅等操作。还提供了一个节点浏览器工具。 | 171 | C# | 07/27 |
| 111 | [NewLifeX/NewLife.Cube](https://github.com/NewLifeX/NewLife.Cube) | 魔方是一个基于 ASP.NET MVC 的 用户权限管理平台,可作为各种信息管理系统的基础框架。 | 170 | C# | 06/17 |
| 112 | [ccccccmd/ReCapcha](https://github.com/ccccccmd/ReCapcha) | 验证码识别 发票标号识别 图片识别 | 166 | C# | 05/26 |
| 113 | [linezero/jieba.NET](https://github.com/linezero/jieba.NET) | jieba中文分词.NET Core版 | 165 | C# | 03/08 |
| 114 | [anoyetta/ACT.Hojoring](https://github.com/anoyetta/ACT.Hojoring) | Advanced Combat Tracker の FFXIV向けプラグインです。トリガ、TTSの拡張、HUDの拡張など。 | 162 | C# | 08/31 |
| 115 | [zgcwkj/TestBaiduPassword](https://github.com/zgcwkj/TestBaiduPassword) | 百度网盘分享文件密码测试器 | 160 | C# | 08/19 |
| 116 | [china-live/QQConnect](https://github.com/china-live/QQConnect) | asp.net core2.0 QQ和微信登录 | 158 | C# | 05/27 |
| 117 | [trueai-org/module-shop](https://github.com/trueai-org/module-shop) | 一个基于 .NET Core构建的简单、跨平台、模块化的商城系统 | 157 | C# | 07/12 |
| 118 | [JeffreySu/WxOpen](https://github.com/JeffreySu/WxOpen) | 微信小程序 C# SDK,Senparc.Weixin.WxOpen.dll | 157 | C# | 08/19 |
| 119 | [yswenli/SAEA](https://github.com/yswenli/SAEA) | SAEA.Socket is a high-performance IOCP framework TCP based on dotnet standard 2.0; Src contains its application test scenarios, such as websocket,rpc, redis driver, MVC WebAPI, lightweight message server, ultra large file transmission, etc. SAEA.Socket是一个高性能IOCP框架的 TCP,基于dotnet standard 2.0;Src中含有其应 ... | 155 | C# | 08/28 |
| 120 | [yuzhengyang/Fork](https://github.com/yuzhengyang/Fork) | a c# utility library. C#工具包,C#工具类,常用方法,系统API,文件处理、加密解密、Winform美化(C# Tools) | 152 | C# | 08/15 |
| 121 | [Jie2GG/Native.Csharp.Frame](https://github.com/Jie2GG/Native.Csharp.Frame) | 完全由 C# 语言编写的 QQ机器人插件 SDK | 152 | C# | 08/15 |
| 122 | [liuhll/Surging.Sample](https://github.com/liuhll/Surging.Sample) | 微服务框架Surging案例 | 151 | C# | 06/26 |
| 123 | [xiaoyaocz/BiliAnimeDownload](https://github.com/xiaoyaocz/BiliAnimeDownload) | 使用Xamarin开发的哔哩哔哩下载工具,可以下载哔哩哔哩版权受限的番剧 | 151 | C# | 06/04 |
| 124 | [bobowire/Wireboy.Socket.P2PSocket](https://github.com/bobowire/Wireboy.Socket.P2PSocket) | P2P内网穿透,实现【公司】-【家】远程控制 | 150 | C# | 09/02 |
| 125 | [haifengat/hf_ctp_py_proxy](https://github.com/haifengat/hf_ctp_py_proxy) | 上期技术期货交易api之python封装,实现接口调用。支持windows linux. | 148 | C# | 07/15 |
| 126 | [liaozb/APIJSON.NET](https://github.com/liaozb/APIJSON.NET) | 后端接口自动化 .NET CORE版本 | 148 | C# | 09/01 |