forked from GrowingGit/GitHub-Chinese-Top-Charts
-
Notifications
You must be signed in to change notification settings - Fork 0
/
README-Part2.md
1487 lines (1439 loc) · 315 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](https://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](#Swift)
- [Jupyter Notebook](#Jupyter-Notebook)
- [Shell](#Shell)
- [C](#C)
- [C++](#C-1)
- [C#](#C-2)
- [Dart](#Dart)
- [TeX](#TeX)
- [Vim script](#Vim-script)
<br/>
## Swift
| # | Repository | Description | Stars | Language | Updated |
| ---- | ------------------------------------------------------------ | ------------------------------------------------------------ | ----- | -------- | ------- |
| 1 | [yanue/V2rayU](https://github.com/yanue/V2rayU) | V2rayU,基于v2ray核心的mac版客户端,用于科学上网,使用swift编写,支持vmess,shadowsocks,socks5等服务协议,支持订阅, 支持二维码,剪贴板导入,手动配置,二维码分享等 | 9.6k | Swift | 06/10 |
| 2 | [Caldis/Mos](https://github.com/Caldis/Mos) | 一个用于在 MacOS 上平滑你的鼠标滚动效果或单独设置滚动方向的小工具, 让你的滚轮爽如触控板 \| A lightweight tool used to smooth scrolling and set scroll direction independently for your mouse on MacOS | 4.4k | Swift | 05/13 |
| 3 | [SwiftOldDriver/iOS-Weekly](https://github.com/SwiftOldDriver/iOS-Weekly) | 🇨🇳 老司机 iOS 周报 | 3.1k | Swift | 06/22 |
| 4 | [tid-kijyun/Kanna](https://github.com/tid-kijyun/Kanna) | Kanna(鉋) is an XML/HTML parser for Swift. | 2.0k | Swift | 04/19 |
| 5 | [wxxsw/SwiftTheme](https://github.com/wxxsw/SwiftTheme) | 🎨 Powerful theme/skin manager for iOS 8+ 主题/换肤, 暗色模式 | 1.9k | Swift | 06/26 |
| 6 | [Danie1s/Tiercel](https://github.com/Danie1s/Tiercel) | 简单易用、功能丰富的纯 Swift 下载框架 | 1.8k | Swift | 03/19 |
| 7 | [MxABC/swiftScan](https://github.com/MxABC/swiftScan) | A barcode and qr code scanner( 二维码 各种码识别,生成,界面效果) | 1.2k | Swift | 06/16 |
| 8 | [Apollonyan/Developing-iOS-11-Apps-with-Swift](https://github.com/Apollonyan/Developing-iOS-11-Apps-with-Swift) | Stanford 公开课,Developing iOS 11 Apps with Swift 字幕翻译 | 1.2k | Swift | 05/21 |
| 9 | [pujiaxin33/JXSegmentedView](https://github.com/pujiaxin33/JXSegmentedView) | A powerful and easy to use segmented view (segmentedcontrol, pagingview, pagerview, pagecontrol, categoryview) (腾讯新闻、今日头条、QQ音乐、网易云音乐、京东、爱奇艺、腾讯视频、淘宝、天猫、简书、微博等所有主流APP分类切换滚动视图) | 1.2k | Swift | 07/06 |
| 10 | [netyouli/WHC_ConfuseSoftware](https://github.com/netyouli/WHC_ConfuseSoftware) | u3d、cocos2dx、iOS代码混淆、自动翻新专家(WHC_ConfuseSoftware)是一款新一代运行在MAC OS平台的App、完美支持Objc和Swift、U3D、Cocos2dx项目代码的自动翻新(混淆)、支持文件夹名称、文件名、修改资源文件hash值、类名、方法名、属性名、添加混淆函数方法体、添加混淆属性、自动调用生成的混淆方法、字符串混淆加密等。。。功能强大而稳定。 | 960 | Swift | 05/24 |
| 11 | [Harley-xk/MaLiang](https://github.com/Harley-xk/MaLiang) | iOS painting and drawing library based on Metal. 神笔马良有一支神笔(基于 Metal 的涂鸦绘图库) | 907 | Swift | 06/02 |
| 12 | [dengzemiao/DZMeBookRead](https://github.com/dengzemiao/DZMeBookRead) | 支持项目使用!最完整小说阅读器Demo!仿iReader(掌阅),QQ阅读 ... 常用阅读器阅读页面,支持 翻页效果(仿真,覆盖,平移,滚动,无效果)、字体切换、书签功能、阅读记录、亮度调整、背景颜色切换 ... | 892 | Swift | 06/17 |
| 13 | [JiongXing/PhotoBrowser](https://github.com/JiongXing/PhotoBrowser) | Elegant photo browser in Swift. 图片与视频浏览器。 | 834 | Swift | 06/15 |
| 14 | [honghaoz/Ji](https://github.com/honghaoz/Ji) | Ji (戟) is an XML/HTML parser for Swift | 821 | Swift | 01/16 |
| 15 | [gltwy/LTScrollView](https://github.com/gltwy/LTScrollView) | ScrollView嵌套ScrolloView(UITableView 、UICollectionView)解决方案, 支持OC / Swift(持续更新中...)实现原理:http://blog.csdn.net/glt_code/article/details/78576628 | 786 | Swift | 01/03 |
| 16 | [saeipi/KSChart](https://github.com/saeipi/KSChart) | k线图/kline/kchart,已经集成MA/EMA/MACD/KDJ/BOLL/RSI/WR/AVG等指标,新增指标及其方便。适用于股票/区块链交易所等种类App。Swift5编写,CPU/内存占用率极低,60FPS稳定运行。示例集成websocket,并接入币安数据(需VPN)。 | 750 | Swift | 05/23 |
| 17 | [lb2281075105/LBXMLYFM-Swift](https://github.com/lb2281075105/LBXMLYFM-Swift) | Swift5项目仿写喜马拉雅App,采用MVC+MVVM设计模式,Moya+SwiftyJSON+HandyJSON网络框架和数据解析。数据来源抓包及部分本地json文件 | 706 | Swift | 05/14 |
| 18 | [SherlockQi/HeavenMemoirs](https://github.com/SherlockQi/HeavenMemoirs) | AR相册 Photo Album For AR | 595 | Swift | 03/20 |
| 19 | [zyphs21/HSStockChart](https://github.com/zyphs21/HSStockChart) | Stock Chart include CandleStickChart,TimeLineChart. 股票走势图,包括 K 线图,分时图,手势缩放,拖动 | 584 | Swift | 05/04 |
| 20 | [daomoer/XMLYFM](https://github.com/daomoer/XMLYFM) | swift项目仿写喜马拉雅App,采用MVC+MVVM设计模式,Moya+SwiftyJSON+HandyJSON网络框架和数据解析。数据来源抓包及部分本地json文件 | 443 | Swift | 01/22 |
| 21 | [Danie1s/DNSPageView](https://github.com/Danie1s/DNSPageView) | 一个纯Swift的轻量级、灵活且易于使用的pageView | 408 | Swift | 06/16 |
| 22 | [Fnoz/FNMatchPull](https://github.com/Fnoz/FNMatchPull) | Swift实现的火柴图案&火柴文字下拉刷新动效(超炫酷下拉刷新),Swift&加强版本CBStoreHouseRefreshControl. | 402 | Swift | 05/20 |
| 23 | [easyui/EZPlayer](https://github.com/easyui/EZPlayer) | 基于AVPlayer封装的视频播放器,功能丰富,快速集成,可定制性强,支持react-native。 | 342 | Swift | 03/10 |
| 24 | [xjbeta/iina-plus](https://github.com/xjbeta/iina-plus) | Extra danmaku support for iina. (iina 弹幕支持 | 321 | Swift | 07/03 |
| 25 | [DarielChen/iOSTips](https://github.com/DarielChen/iOSTips) | 记录iOS(Swift)开发中的一些知识点、小技巧 | 311 | Swift | 05/19 |
| 26 | [choiceyou/FWPopupView](https://github.com/choiceyou/FWPopupView) | 弹窗控件:支持AlertView、Sheet、自定义视图的PopupView。AlertView中可以嵌套自定义视图,各组件的显示隐藏可配置;Sheet仿微信样式;同时提供自定义弹出。更多配置请参考”可设置参数“,提供OC使用Demo。 | 306 | Swift | 05/29 |
| 27 | [zqqf16/SYM](https://github.com/zqqf16/SYM) | A crash log symbolicating Mac app \| 一个图形化的崩溃日志符号化工具 | 295 | Swift | 04/17 |
| 28 | [LvJianfeng/LLCycleScrollView](https://github.com/LvJianfeng/LLCycleScrollView) | Swift - 轮播图,文本轮播,支持左右箭头 | 292 | Swift | 01/07 |
| 29 | [iosyaowei/JSONConverter](https://github.com/iosyaowei/JSONConverter) | JSONConverter可以快速的把json数据转换生成OC/Swift/Flutter的属性,省去手动创建的麻烦,大大提高iOSer的开发效率 | 271 | Swift | 01/20 |
| 30 | [andyRon/swift-algorithm-club-cn](https://github.com/andyRon/swift-algorithm-club-cn) | swift-algorithm-club的翻译。使用Swift学习算法和数据结构。 | 253 | Swift | 02/21 |
| 31 | [lb2281075105/LBU25-Swift](https://github.com/lb2281075105/LBU25-Swift) | Swift5 精仿漫画类App(有妖气漫画),Moya+SwiftyJSON+HandyJSON网络框架和数据解析。数据来源真实接口获得 | 248 | Swift | 05/14 |
| 32 | [Coder-TanJX/JXBanner](https://github.com/Coder-TanJX/JXBanner) | 🚀🚀🚀 A super - custom multifunctional framework for banner unlimited rollover diagrams [一个超自定义多功能无限轮播图框架] | 240 | Swift | 03/12 |
| 33 | [Xinguang/WechatKit](https://github.com/Xinguang/WechatKit) | 一款快速实现微信第三方登录的框架(Swift版) SDK 1.8.5 | 237 | Swift | 02/24 |
| 34 | [manondidi/swiftArch](https://github.com/manondidi/swiftArch) | swift开发脚手架 | 232 | Swift | 07/01 |
| 35 | [wxxsw/SwiftUI-WeChat](https://github.com/wxxsw/SwiftUI-WeChat) | 🇨🇳 Learn how to make WeChat with SwiftUI. 微信 7.0 🟢 | 222 | Swift | 06/30 |
| 36 | [ZzzM/HostsToolforMac](https://github.com/ZzzM/HostsToolforMac) | HostsToolforMac是macOS下的一个简易工具,来获取最新的hosts更新。 | 221 | Swift | 07/06 |
| 37 | [SunshineBrother/SwiftTools](https://github.com/SunshineBrother/SwiftTools) | Swift学习 | 209 | Swift | 06/10 |
| 38 | [GTMYang/GTMRefresh](https://github.com/GTMYang/GTMRefresh) | Swift实现的下拉刷新和上拉加载组件 | 208 | Swift | 01/06 |
| 39 | [XiongJoJo/OFO](https://github.com/XiongJoJo/OFO) | OFO共享单车(Swift版) | 208 | Swift | 04/29 |
| 40 | [ifanrx/hydrogen-demo](https://github.com/ifanrx/hydrogen-demo) | 微信小程序 demo for 知晓云 Serverless SDK | 194 | Swift | 07/06 |
| 41 | [zlyBear/BearFree](https://github.com/zlyBear/BearFree) | iOS NetworkExtension ShadowSocket for iOS developer (swift 5) 支持系统小组件开关SS | 182 | Swift | 04/20 |
| 42 | [Noah37/zhuishushenqi](https://github.com/Noah37/zhuishushenqi) | 追书神器Swift版客户端(非官方)。 不断更新中...... | 179 | Swift | 07/06 |
| 43 | [Liaoworking/Advanced-Swift](https://github.com/Liaoworking/Advanced-Swift) | Notes of Advanced Swift. 《swift进阶》学习笔记 swift 5.1 | 177 | Swift | 06/28 |
| 44 | [Light413/dctt](https://github.com/Light413/dctt) | xx头条【完整项目持续迭代中】(一款本地生活信息发布APP,分享新鲜事、找人找对象等生活服务)。已App Store上架,这里仅供学习交流 | 165 | Swift | 05/13 |
| 45 | [longsirhero/iOS-Extended-Knowledge](https://github.com/longsirhero/iOS-Extended-Knowledge) | 本仓库收录Swift&Object-C相关资料 | 151 | Swift | 06/16 |
| 46 | [PPHubApp/PPHub-Feedback](https://github.com/PPHubApp/PPHub-Feedback) | This repository is used to collect user feedback from PPHub (GitHub third-party client) - 此仓库用于收集PPHub(GitHub第三方客户端)的用户反馈信息 | 150 | Swift | 06/25 |
| 47 | [CoderLinLee/LLSegmentViewController](https://github.com/CoderLinLee/LLSegmentViewController) | 可添加header的多控制器列表,主流APP分类切换滚动视图(京东,网易新闻,爱奇艺,QQ弹性小球等,可高度自定义,项目结构清晰);UIScrollView 嵌套,可做个人详情页,商品详情页,页面多tableView滑动悬停 | 145 | Swift | 06/09 |
| 48 | [pujiaxin33/JXPatternLock](https://github.com/pujiaxin33/JXPatternLock) | An easy-to-use, powerful, customizable pattern lock view in swift. 图形解锁/手势解锁 / 手势密码 / 图案密码 / 九宫格密码 | 145 | Swift | 06/23 |
| 49 | [CaamDau/CaamDau](https://github.com/CaamDau/CaamDau) | CaamDau 系列组件组合! iOS Swift 通用业务组件库 & Cocoa便利性扩展。Form流式模型化UI排版、Timer计时管理、AppDelegate解耦方案、HUD提示窗、Page分页导航、Indexes侧边索引、TopBar自定义导航栏、InputBox输入框扩展、Router组件化路由协议、IconFont阿里矢量图标管理、MJRefresh扩展、Alamofire扩展;附.功能组件、组件化示例、第三方库示例 | 142 | Swift | 06/17 |
| 50 | [we11cheng/WCPotatso](https://github.com/we11cheng/WCPotatso) | iOS Potatso源码(配置下自己的开发证书就能编译版本) | 136 | Swift | 06/28 |
| 51 | [Darren-chenchen/CLImagePickerTool](https://github.com/Darren-chenchen/CLImagePickerTool) | 这是一个多图片选择的控件 | 128 | Swift | 03/27 |
| 52 | [Tuluobo/Leiter](https://github.com/Tuluobo/Leiter) | 一个基于 NEKit 的网络 Proxy App。 | 128 | Swift | 02/11 |
| 53 | [heyode/HEPhotoPicker](https://github.com/heyode/HEPhotoPicker) | 自由定制支持视频,图片的相册选择器 | 125 | Swift | 04/09 |
| 54 | [Habit21D/SwiftHttpRequest](https://github.com/Habit21D/SwiftHttpRequest) | Swift5.0:基于Alamofire的网络封装及基于Codable的model解析 | 122 | Swift | 04/29 |
| 55 | [huangboju/GesturePassword](https://github.com/huangboju/GesturePassword) | GesturePassword 是一个Swift的手势密码库 | 120 | Swift | 01/05 |
| 56 | [lixiang1994/AttributedString](https://github.com/lixiang1994/AttributedString) | 基于Swift插值方式优雅的构建富文本, 支持点击按住事件, 支持不同类型过滤等. | 115 | Swift | 07/07 |
| 57 | [937447974/YJCocoa](https://github.com/937447974/YJCocoa) | YJ 系列 Pod 开源库 | 112 | Swift | 07/07 |
| 58 | [wxxsw/VideoPlayer](https://github.com/wxxsw/VideoPlayer) | 📽 A video player for SwiftUI, support for caching, preload and custom control view. SwiftUI 视频播放器,支持边下边播、预加载、自定义控制层 | 109 | Swift | 05/17 |
| 59 | [MoyaMapper/MoyaMapper](https://github.com/MoyaMapper/MoyaMapper) | 快速解析模型工具,支持RxSwift。同时支持缓存功能 【相关手册 https://MoyaMapper.github.io 】 | 97 | Swift | 05/10 |
| 60 | [miniLV/MNWeibo](https://github.com/miniLV/MNWeibo) | Swift5 + MVVM + 文艺复兴微博(纯代码 + 纯Swift),可作为第一个上手的Swift项目. | 97 | Swift | 05/06 |
| 61 | [xiaoyouxinqing/PostDemo](https://github.com/xiaoyouxinqing/PostDemo) | BBCo - iOS开发入门教程 SwiftUI 微博App项目实战 零基础学习Swift编程 | 95 | Swift | 06/25 |
| 62 | [pujiaxin33/JXPopupView](https://github.com/pujiaxin33/JXPopupView) | 一个轻量级的自定义视图弹出框架 | 93 | Swift | 06/28 |
| 63 | [WangWenzhuang/ZKProgressHUD](https://github.com/WangWenzhuang/ZKProgressHUD) | iOS App 上极易于使用的 HUD | 92 | Swift | 01/30 |
| 64 | [tysqapp/tysq-ios](https://github.com/tysqapp/tysq-ios) | 天宇社区客户端APP开源 | 92 | Swift | 01/06 |
| 65 | [Liaoworking/MoyaNetworkTool](https://github.com/Liaoworking/MoyaNetworkTool) | a robust networkTool based on Moya. Moya Demo 一个强健的基于moya二次封装的网络框架 | 91 | Swift | 04/20 |
| 66 | [hello-david/SwiftV2Ray](https://github.com/hello-david/SwiftV2Ray) | V2Ray-Core的iOS工具 | 91 | Swift | 04/16 |
| 67 | [choiceyou/FWSegmentedControl](https://github.com/choiceyou/FWSegmentedControl) | 分段控件:支持纯文字、纯图片、文字图片混排等方式的Segment,文字、图片排布顺序可选,同时有多重可选下标,更多配置请参考”可设置参数“。提供OC使用Demo。 | 89 | Swift | 06/29 |
| 68 | [520/EasyWords](https://github.com/520/EasyWords) | 苹果商店上架项目, 周更 update weekly, on app store, for MacOS, mac开源, mac open source | 83 | Swift | 04/08 |
| 69 | [ming1016/MethodTraceAnalyze](https://github.com/ming1016/MethodTraceAnalyze) | 方法耗时分析 | 77 | Swift | 02/26 |
| 70 | [windstormeye/SwiftGame](https://github.com/windstormeye/SwiftGame) | 小专栏《Swift 游戏开发》代码集合 | 75 | Swift | 03/07 |
| 71 | [LinXunFeng/LXFProtocolTool](https://github.com/LinXunFeng/LXFProtocolTool) | 由swift中协议方式实现功能的实用工具库【Refreshable、EmptyDataSetable 支持 Rx 】 | 74 | Swift | 05/10 |
| 72 | [zhongjianfeipqy/VerificationCode](https://github.com/zhongjianfeipqy/VerificationCode) | 自定义多位验证码 | 73 | Swift | 04/15 |
| 73 | [maltsugar/RollingNotice-Swift](https://github.com/maltsugar/RollingNotice-Swift) | 滚动公告、广告,支持灵活自定义cell。淘宝、口碑、京东、美团、天猫等等一切滚动广告 Roll Notice or Advertising, customize cell as UITableViewCell supported, Swift version is also ready | 73 | Swift | 04/15 |
| 74 | [ChaosTong/RainReminder](https://github.com/ChaosTong/RainReminder) | SwiftWeather--简洁的Swift天气应用 | 68 | Swift | 07/04 |
| 75 | [wxxsw/GSPlayer](https://github.com/wxxsw/GSPlayer) | ⏯ Video player, support for caching, preload, fullscreen transition and custom control view. 视频播放器,支持边下边播、预加载、全屏转场和自定义控制层 | 67 | Swift | 07/01 |
| 76 | [Insfgg99x/FGVideoEditor](https://github.com/Insfgg99x/FGVideoEditor) | swif版微信视屏裁剪,类似微信朋友圈视频裁剪方式的视频裁剪工具(video croping) | 67 | Swift | 03/16 |
| 77 | [chatwyn/WBBaiSiDemo](https://github.com/chatwyn/WBBaiSiDemo) | 百思不得姐 Swift版 | 67 | Swift | 04/02 |
| 78 | [Harley-xk/Chrysan](https://github.com/Harley-xk/Chrysan) | Chrysan 是一个简单易用的 HUD 库,使用 iOS 自带的 UIBlurEffect 毛玻璃特效,支持自定义动画。 | 66 | Swift | 06/16 |
| 79 | [lixiang1994/VideoTransitionDemo](https://github.com/lixiang1994/VideoTransitionDemo) | 视频过渡效果演示 | 65 | Swift | 05/25 |
| 80 | [LYM-mg/MGDYZB](https://github.com/LYM-mg/MGDYZB) | Xcode8以上版本,已升级为Swift3.x语法。 斗鱼- 每个人的直播平台提供高清、快捷、流畅的视频直播和游戏赛事直播服务,包含英雄联盟lol直播、穿越火线cf直播、dota2直播、美女直播等各类热门游戏赛事直播和各种.. | 64 | Swift | 03/20 |
| 81 | [gl-lei/algorithm](https://github.com/gl-lei/algorithm) | 《数据结构与算法之美》代码 , 原始代码 https://github.com/wangzheng0822/algo | 62 | Swift | 07/05 |
| 82 | [CaiWanFeng/iOS_Storage](https://github.com/CaiWanFeng/iOS_Storage) | 收纳的艺术 | 57 | Swift | 07/07 |
| 83 | [RayJiang16/XYColor](https://github.com/RayJiang16/XYColor) | An easy way to adapter dark mode on CALayer. iOS 快速适配夜间模式 | 57 | Swift | 02/07 |
| 84 | [choiceyou/FWCycleScrollView](https://github.com/choiceyou/FWCycleScrollView) | 轮播控件:支持本地图片、网络图片、自定义视图,轮播分页控件有多重可选方案,轮播次数、间隔时间也可设置,更多配置请参考”可设置参数“。提供OC使用Demo。 | 55 | Swift | 05/28 |
| 85 | [Jvaeyhcd/HcdSpecialField](https://github.com/Jvaeyhcd/HcdSpecialField) | A special field like mobike input bike number field.仿摩拜单车手动输入单车编号控件. | 54 | Swift | 01/16 |
| 86 | [HuaZao/TC1-NG](https://github.com/HuaZao/TC1-NG) | 斐讯TC1 DC1 A1 M1 iOS客户端 | 54 | Swift | 05/23 |
| 87 | [TonyReet/AutoSQLite.swift](https://github.com/TonyReet/AutoSQLite.swift) | SQLite.swift的封装,Model直接存储.获取,无需再转换,增删改查,脱离sql语句 | 51 | Swift | 04/14 |
| 88 | [even-cheng/ECSigner](https://github.com/even-cheng/ECSigner) | (Support multi-file synchronization signature and auto create profile and certificate to sign, support insert dynamic lib in app)一键签名,网络地址直签,多文件同步签,自动区分企业签名和个人证书,一键Assets.car解压导出和替换,自动注册设备并更新下载签名证书和签名文件进行签名,支持动态库注入。支持Swift5和iOS13,macOS10.15并向下兼容。 | 51 | Swift | 05/14 |
| 89 | [huzhiqin/U17](https://github.com/huzhiqin/U17) | 仿最新V5.0有妖气漫画:Swift5(Moya+Alamofire/HandyJSON/Kingfisher/SnapKit/MJRefresh) | 50 | Swift | 06/16 |
| 90 | [xindong/anti-addiction-kit](https://github.com/xindong/anti-addiction-kit) | 📱手机游戏防沉迷系统 SDK,支持 iOS+Android+Unity,快速接入! | 50 | Swift | 05/22 |
| 91 | [xidian-rs/Ruisi_Ios](https://github.com/xidian-rs/Ruisi_Ios) | 西电睿思手机客户端[iOS]适用于discuz论坛 | 48 | Swift | 05/17 |
| 92 | [klbest1/MyIOSDemo](https://github.com/klbest1/MyIOSDemo) | 模仿探探图片切换,自定义折线图,图片裁剪,微信朋友圈图片视频浏览,图片下载缓存,数量标记,爆炸动画,autolayout,线程安全 | 45 | Swift | 02/14 |
| 93 | [fcbox/Lantern](https://github.com/fcbox/Lantern) | 基于Swift的高可用视图框架 | 45 | Swift | 03/16 |
| 94 | [shinnytech/shinny-futures-ios](https://github.com/shinnytech/shinny-futures-ios) | 一个开源的 ios 平台期货行情交易终端 | 44 | Swift | 02/29 |
| 95 | [FighterLightning/ZHFJDAddress](https://github.com/FighterLightning/ZHFJDAddress) | Swift 仿京东地址选择器,京东地址选择器(网络,本地数据。三级、四级、保证成功集成) | 43 | Swift | 04/28 |
| 96 | [BoxDengJZ/AudioJz](https://github.com/BoxDengJZ/AudioJz) | 个人学过的,音频相关的技巧。从 ray wenderlich 开始 | 42 | Swift | 03/02 |
| 97 | [Harley-xk/Comet](https://github.com/Harley-xk/Comet) | iOS 项目的 Swift 基础库,提供常用组件、便利方法等。支持 Swift 3.x、Swift 4.x,iOS 8.0+ | 41 | Swift | 06/24 |
| 98 | [Xianlau/SwiftProject](https://github.com/Xianlau/SwiftProject) | swfit整合项目, 项目里面有整个swift应用框架, (alamofire + moya )网络请求框架 + Swiftyjson + HandyJson的实际应用, DSBridge原生与H5交互的用法, 反射知识的使用, WCDB数据库的封装使用, WebRTC音视频直播demo, socket的使用, socket协议的封装使用等等知识点. 希望对大家有用 | 40 | Swift | 06/12 |
| 99 | [Pircate/AlipayHomePageDemo](https://github.com/Pircate/AlipayHomePageDemo) | 仿支付宝首页 | 38 | Swift | 06/03 |
| 100 | [Boxzhi/HZNavigationBar](https://github.com/Boxzhi/HZNavigationBar) | A very simple to use, can be completely customized navigation bar. 一款使用非常简单,可以完全自定义的导航栏。 | 38 | Swift | 01/14 |
⬆ [回到目录](#目录)
<br/>
## Jupyter Notebook
| # | Repository | Description | Stars | Language | Updated |
| ---- | ------------------------------------------------------------ | ------------------------------------------------------------ | ----- | ---------------- | ------- |
| 1 | [jackfrued/Python-100-Days](https://github.com/jackfrued/Python-100-Days) | Python - 100天从新手到大师 | 89.2k | Jupyter Notebook | 07/07 |
| 2 | [MLEveryday/100-Days-Of-ML-Code](https://github.com/MLEveryday/100-Days-Of-ML-Code) | 100-Days-Of-ML-Code中文版 | 15.6k | Jupyter Notebook | 02/18 |
| 3 | [zergtant/pytorch-handbook](https://github.com/zergtant/pytorch-handbook) | pytorch handbook是一本开源的书籍,目标是帮助那些希望和使用PyTorch进行深度学习开发和研究的朋友快速入门,其中包含的Pytorch教程全部通过测试保证可以成功运行 | 11.9k | Jupyter Notebook | 06/28 |
| 4 | [fengdu78/lihang-code](https://github.com/fengdu78/lihang-code) | 《统计学习方法》的代码实现 | 11.5k | Jupyter Notebook | 06/07 |
| 5 | [ShusenTang/Dive-into-DL-PyTorch](https://github.com/ShusenTang/Dive-into-DL-PyTorch) | 本项目将《动手学深度学习》(Dive into Deep Learning)原书中的MXNet实现改为PyTorch实现。 | 9.6k | Jupyter Notebook | 06/26 |
| 6 | [dragen1860/Deep-Learning-with-TensorFlow-book](https://github.com/dragen1860/Deep-Learning-with-TensorFlow-book) | 深度学习入门开源书,基于TensorFlow 2.0案例实战。Open source Deep Learning book, based on TensorFlow 2.0 framework. | 9.4k | Jupyter Notebook | 06/09 |
| 7 | [chenyuntc/pytorch-book](https://github.com/chenyuntc/pytorch-book) | PyTorch tutorials and fun projects including neural talk, neural style, poem writing, anime generation (《深度学习框架PyTorch:入门与实战》) | 7.6k | Jupyter Notebook | 01/06 |
| 8 | [apachecn/Interview](https://github.com/apachecn/Interview) | Interview = 简历指南 + LeetCode + Kaggle | 6.2k | Jupyter Notebook | 05/26 |
| 9 | [czy36mengfei/tensorflow2_tutorials_chinese](https://github.com/czy36mengfei/tensorflow2_tutorials_chinese) | tensorflow2中文教程,持续更新(当前版本:tensorflow2.0),tag: tensorflow 2.0 tutorials | 5.8k | Jupyter Notebook | 06/11 |
| 10 | [lijin-THU/notes-python](https://github.com/lijin-THU/notes-python) | 中文 Python 笔记 | 5.6k | Jupyter Notebook | 05/15 |
| 11 | [NLP-LOVE/ML-NLP](https://github.com/NLP-LOVE/ML-NLP) | 此项目是机器学习(Machine Learning)、深度学习(Deep Learning)、NLP面试中常考到的知识点和代码实现,也是作为一个算法工程师必会的理论基础知识。 | 5.5k | Jupyter Notebook | 04/20 |
| 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版入门实例代码,实战教程。 | 5.2k | Jupyter Notebook | 06/09 |
| 13 | [xianhu/LearnPython](https://github.com/xianhu/LearnPython) | 以撸代码的形式学习Python | 5.1k | Jupyter Notebook | 06/24 |
| 14 | [roboticcam/machine-learning-notes](https://github.com/roboticcam/machine-learning-notes) | My continuously updated Machine Learning, Probabilistic Models and Deep Learning notes and demos (1500+ slides) 我不间断更新的机器学习,概率模型和深度学习的讲义(1500+页)和视频链接 | 4.0k | Jupyter Notebook | 01/27 |
| 15 | [xiaolai/regular-investing-in-box](https://github.com/xiaolai/regular-investing-in-box) | 定投改变命运 —— 让时间陪你慢慢变富 https://onregularinvesting.com | 3.9k | Jupyter Notebook | 07/06 |
| 16 | [fengdu78/Data-Science-Notes](https://github.com/fengdu78/Data-Science-Notes) | 数据科学的笔记以及资料搜集 | 3.6k | Jupyter Notebook | 07/07 |
| 17 | [Mikoto10032/DeepLearning](https://github.com/Mikoto10032/DeepLearning) | 深度学习入门教程, 优秀文章, Deep Learning Tutorial | 3.2k | Jupyter Notebook | 06/23 |
| 18 | [Alfred1984/interesting-python](https://github.com/Alfred1984/interesting-python) | 有趣的Python爬虫和Python数据分析小项目(Some interesting Python crawlers and data analysis projects) | 3.2k | Jupyter Notebook | 03/06 |
| 19 | [snowkylin/tensorflow-handbook](https://github.com/snowkylin/tensorflow-handbook) | 简单粗暴 TensorFlow 2 \| A Concise Handbook of TensorFlow 2 \| 一本简明的 TensorFlow 2 入门指导教程 | 2.5k | Jupyter Notebook | 07/07 |
| 20 | [TrickyGo/Dive-into-DL-TensorFlow2.0](https://github.com/TrickyGo/Dive-into-DL-TensorFlow2.0) | 本项目将《动手学深度学习》(Dive into Deep Learning)原书中的MXNet实现改为TensorFlow 2.0实现,项目已得到李沐老师的同意 | 2.4k | Jupyter Notebook | 06/30 |
| 21 | [ypwhs/captcha_break](https://github.com/ypwhs/captcha_break) | 验证码识别 | 1.7k | Jupyter Notebook | 05/17 |
| 22 | [datawhalechina/joyful-pandas](https://github.com/datawhalechina/joyful-pandas) | Pandas中文教程 | 1.7k | Jupyter Notebook | 07/04 |
| 23 | [wangshub/RL-Stock](https://github.com/wangshub/RL-Stock) | 📈 如何用深度强化学习自动炒股 | 1.3k | Jupyter Notebook | 03/31 |
| 24 | [fengdu78/machine_learning_beginner](https://github.com/fengdu78/machine_learning_beginner) | 机器学习初学者公众号作品 | 1.3k | Jupyter Notebook | 05/06 |
| 25 | [Rockyzsu/stock](https://github.com/Rockyzsu/stock) | 30天掌握量化交易 (持续更新) | 1.2k | Jupyter Notebook | 03/04 |
| 26 | [hangsz/pandas-tutorial](https://github.com/hangsz/pandas-tutorial) | 适合初级到中级晋升者,有了体系之后就看熟练度了。 | 1.1k | Jupyter Notebook | 02/11 |
| 27 | [xavier-zy/Awesome-pytorch-list-CNVersion](https://github.com/xavier-zy/Awesome-pytorch-list-CNVersion) | Awesome-pytorch-list 翻译工作进行中...... | 1.1k | Jupyter Notebook | 06/28 |
| 28 | [AIZOOTech/FaceMaskDetection](https://github.com/AIZOOTech/FaceMaskDetection) | 开源人脸口罩检测模型和数据 Detect faces and determine whether people are wearing mask. | 1.0k | Jupyter Notebook | 05/21 |
| 29 | [datawhalechina/competition-baseline](https://github.com/datawhalechina/competition-baseline) | 数据科学竞赛各种baseline代码、思路分享 | 963 | Jupyter Notebook | 03/15 |
| 30 | [amusi/TensorFlow-From-Zero-To-One](https://github.com/amusi/TensorFlow-From-Zero-To-One) | TensorFlow 最佳学习资源大全(含课程、书籍、博客、公开课等内容) | 923 | Jupyter Notebook | 07/05 |
| 31 | [datawhalechina/team-learning](https://github.com/datawhalechina/team-learning) | Datawhale组队学习计划与课程内容 | 920 | Jupyter Notebook | 06/20 |
| 32 | [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 入门机器学习》示例代码。课程的更多更新内容及辅助练习也将逐步添加进这个代码仓。 | 912 | Jupyter Notebook | 02/24 |
| 33 | [bighuang624/Andrew-Ng-Deep-Learning-notes](https://github.com/bighuang624/Andrew-Ng-Deep-Learning-notes) | 吴恩达《深度学习》系列课程笔记及代码 \| Notes in Chinese for Andrew Ng Deep Learning Course | 758 | Jupyter Notebook | 04/16 |
| 34 | [huaweicloud/ModelArts-Lab](https://github.com/huaweicloud/ModelArts-Lab) | ModelArts-Lab是示例代码库。更多AI开发学习交流信息,请访问华为云AI开发者社区:huaweicloud.ai | 714 | Jupyter Notebook | 07/07 |
| 35 | [996refuse/zheye](https://github.com/996refuse/zheye) | 者也 - 知乎 倒立的文字 汉字验证码识别程序 | 696 | Jupyter Notebook | 01/29 |
| 36 | [wx-chevalier/AI-Series](https://github.com/wx-chevalier/AI-Series) | :books: [.md & .ipynb] Series of Artificial Intelligence & Deep Learning, including Mathematics Fundamentals, Python Practices, NLP Application, etc. 💫 人工智能与深度学习实战,数理统计篇 \| 机器学习篇 \| 深度学习篇 \| 自然语言处理篇 \| 工具实践 Scikit & Tensoflow & PyTorch 篇 \| 行业应用 & 课程笔记 | 672 | Jupyter Notebook | 06/13 |
| 37 | [howl-anderson/Chinese_models_for_SpaCy](https://github.com/howl-anderson/Chinese_models_for_SpaCy) | SpaCy 中文模型 \| Models for SpaCy that support Chinese | 501 | Jupyter Notebook | 06/29 |
| 38 | [yuanxiaosc/Machine-Learning-Book](https://github.com/yuanxiaosc/Machine-Learning-Book) | 《机器学习宝典》包含:谷歌机器学习速成课程(招式)+机器学习术语表(口诀)+机器学习规则(心得)+机器学习中的常识性问题 (内功)。该资源适用于机器学习、深度学习研究人员和爱好者参考! | 478 | Jupyter Notebook | 06/07 |
| 39 | [coldlarry/YOLOv3-complete-pruning](https://github.com/coldlarry/YOLOv3-complete-pruning) | 提供对YOLOv3及Tiny的多种剪枝版本,以适应不同的需求。 | 432 | Jupyter Notebook | 02/25 |
| 40 | [EricWebsmith/china_job_survey](https://github.com/EricWebsmith/china_job_survey) | stats of Chinese developers. 统计中国程序员的就业情况 | 421 | Jupyter Notebook | 05/01 |
| 41 | [fly51fly/Practical_Python_Programming](https://github.com/fly51fly/Practical_Python_Programming) | 北邮《Python编程与实践》课程资料 | 413 | Jupyter Notebook | 07/02 |
| 42 | [yenlung/Python-3-Data-Analysis-Basics](https://github.com/yenlung/Python-3-Data-Analysis-Basics) | Python 3 與數據分析概要 | 368 | Jupyter Notebook | 05/25 |
| 43 | [FighterLYL/GraphNeuralNetwork](https://github.com/FighterLYL/GraphNeuralNetwork) | 《深入浅出图神经网络:GNN原理解析》配套代码 | 361 | Jupyter Notebook | 07/02 |
| 44 | [neolee/pilot](https://github.com/neolee/pilot) | 进入编程世界的第一课 | 355 | Jupyter Notebook | 06/23 |
| 45 | [zjunlp/deepke](https://github.com/zjunlp/deepke) | 基于深度学习的开源中文关系抽取框架 | 339 | Jupyter Notebook | 06/04 |
| 46 | [DjangoPeng/tensorflow-101](https://github.com/DjangoPeng/tensorflow-101) | 《TensorFlow 快速入门与实战》和《TensorFlow 2 项目进阶实战》课程代码与课件 | 330 | Jupyter Notebook | 07/06 |
| 47 | [shibing624/python-tutorial](https://github.com/shibing624/python-tutorial) | python教程,包括:python基础、python进阶;常用机器学习库:numpy、scipy、sklearn、xgboost;深度学习库:keras、tensorflow、paddle、pytorch。 | 322 | Jupyter Notebook | 07/06 |
| 48 | [geektutu/interview-questions](https://github.com/geektutu/interview-questions) | 机器学习深度学习面试题笔试题(Machine learning Deep Learning Interview Questions) | 314 | Jupyter Notebook | 05/16 |
| 49 | [iphysresearch/TOP250movie_douban](https://github.com/iphysresearch/TOP250movie_douban) | TOP250豆瓣电影短评:Scrapy 爬虫+数据清理/分析+构建中文文本情感分析模型 | 313 | Jupyter Notebook | 06/29 |
| 50 | [htygithub/machine-learning-python](https://github.com/htygithub/machine-learning-python) | 機器學習: Python | 306 | Jupyter Notebook | 02/16 |
| 51 | [yizt/numpy_neural_network](https://github.com/yizt/numpy_neural_network) | 仅使用numpy从头开始实现神经网络,包括反向传播公式推导过程; numpy构建全连接层、卷积层、池化层、Flatten层;以及图像分类案例及精调网络案例等,持续更新中... ... | 256 | Jupyter Notebook | 05/10 |
| 52 | [panxl6/cc150](https://github.com/panxl6/cc150) | 《程序员面试金典》(cc150) | 255 | Jupyter Notebook | 03/08 |
| 53 | [LinXueyuanStdio/LaTeX_OCR_PRO](https://github.com/LinXueyuanStdio/LaTeX_OCR_PRO) | :art: 数学公式识别增强版:中英文手写印刷公式、支持初级符号推导(数据结构基于 LaTeX 抽象语法树) | 249 | Jupyter Notebook | 06/06 |
| 54 | [program-in-chinese/overview](https://github.com/program-in-chinese/overview) | 中文编程的历史, 现状和展望. issue中进行中文编程普遍问题的讨论. | 242 | Jupyter Notebook | 07/07 |
| 55 | [ShusenTang/Deep-Learning-with-PyTorch-Chinese](https://github.com/ShusenTang/Deep-Learning-with-PyTorch-Chinese) | 本仓库将PyTorch官方书籍《Deep learning with PyTorch》(基本摘录版)翻译成中文版并给出可运行的相关代码。 | 242 | Jupyter Notebook | 02/19 |
| 56 | [zkywsg/Daily-DeepLearning](https://github.com/zkywsg/Daily-DeepLearning) | 🔥机器学习/深度学习/Python/算法面试/自然语言处理教程/剑指offer/machine learning/deeplearning/Python/Algorithm interview/NLP Tutorial | 240 | Jupyter Notebook | 07/05 |
| 57 | [zhouwei713/data_analysis](https://github.com/zhouwei713/data_analysis) | 一些爬虫和数据分析相关实战练习 | 232 | Jupyter Notebook | 03/23 |
| 58 | [peiss/ant-learn-pandas](https://github.com/peiss/ant-learn-pandas) | pandas学习课程代码仓库 | 229 | Jupyter Notebook | 06/23 |
| 59 | [nladuo/THSTrader](https://github.com/nladuo/THSTrader) | 量化交易。同花顺免费模拟炒股软件客户端的python API。(Python3) | 227 | Jupyter Notebook | 03/19 |
| 60 | [hecongqing/2018-daguan-competition](https://github.com/hecongqing/2018-daguan-competition) | 2018年"达观杯"文本智能处理挑战赛-长文本分类-rank4 | 224 | Jupyter Notebook | 06/27 |
| 61 | [YiranJing/Coronavirus-Epidemic-2019-nCov](https://github.com/YiranJing/Coronavirus-Epidemic-2019-nCov) | 👩🏻⚕️Covid-19 estimation and forecast using statistical model; 新型冠状病毒肺炎统计模型预测 | 213 | Jupyter Notebook | 02/23 |
| 62 | [zpw1995/aotodata](https://github.com/zpw1995/aotodata) | 朱小五写文章涉及到的数据分析,爬虫,源数据 | 212 | Jupyter Notebook | 01/08 |
| 63 | [bobo0810/PytorchNetHub](https://github.com/bobo0810/PytorchNetHub) | 加注释的网络模型(便于理解) | 211 | Jupyter Notebook | 06/18 |
| 64 | [SummerLife/EmbeddedSystem](https://github.com/SummerLife/EmbeddedSystem) | :books: 嵌入式系统基础知识与主流编程语言相关内容总结 | 208 | Jupyter Notebook | 07/06 |
| 65 | [cxy229/BDCI2019-SENTIMENT-CLASSIFICATION](https://github.com/cxy229/BDCI2019-SENTIMENT-CLASSIFICATION) | CCF BDCI 2019 互联网新闻情感分析 复赛top1解决方案 | 205 | Jupyter Notebook | 01/25 |
| 66 | [19920625lsg/algorithms](https://github.com/19920625lsg/algorithms) | 算法学习与总结 | 204 | Jupyter Notebook | 07/04 |
| 67 | [ZhangYikaii/NJUCS-Course-Material-from-YikaiZhang](https://github.com/ZhangYikaii/NJUCS-Course-Material-from-YikaiZhang) | 南京大学 NJU 计算机系 CS 课程资料 作业 代码 实验报告(数据挖掘 模式识别 机器学习导论 概率论与数理统计 计算机图形学 高级程序设计 数据库 计算机系统基础 操作系统 程设实验 数电 数电实验... ) 更新中, star! :star2: | 193 | Jupyter Notebook | 06/28 |
| 68 | [allenlu2008/PythonDemo](https://github.com/allenlu2008/PythonDemo) | 虾神的Python示例代码库 | 191 | Jupyter Notebook | 06/04 |
| 69 | [CarryChang/Customer_Satisfaction_Analysis](https://github.com/CarryChang/Customer_Satisfaction_Analysis) | 基于在线民宿UGC数据的意见挖掘项目,包含数据挖掘和NLP相关的处理,负责数据采集、主题抽取、情感分析等任务。目的是克服用户打分和评论不一致,实时对在线民宿的满意度评测,包含在线评论采集和情感可视化分析。搭建了百度地图POI查询入口,可以进行自动化的批量查询POI信息的功能;构建了基于在线民宿语料的Word2vec主题聚类模型,利用主题中心词能找出对应的主题属性字典;以用户打分作为标注,然后通过字符级和词级别分别在Text-CNN、BiLSTM、GRU等分类模型实验,考虑时间和准确率,最后选用C-CNN进行情感分析,将情感分类概率分布作为情感趋势,最后通过POI热力图的方式对不同地域的民宿满意 ... | 186 | Jupyter Notebook | 06/29 |
| 70 | [kuhung/SSD_keras](https://github.com/kuhung/SSD_keras) | 简明 SSD 目标检测模型 keras version(交通标志识别 训练部分见 dev 分支) | 140 | Jupyter Notebook | 03/28 |
| 71 | [qiguming/MLAPP_CN_CODE](https://github.com/qiguming/MLAPP_CN_CODE) | 《Machine Learning: A Probabilistic Perspective》(Kevin P. Murphy)中文翻译和书中算法的Python实现。 | 137 | Jupyter Notebook | 06/06 |
| 72 | [loveunk/machine-learning-deep-learning-notes](https://github.com/loveunk/machine-learning-deep-learning-notes) | 机器学习、深度学习的学习路径及知识总结 | 136 | Jupyter Notebook | 04/17 |
| 73 | [ChuanyuXue/CIKM-2019-AnalytiCup](https://github.com/ChuanyuXue/CIKM-2019-AnalytiCup) | 2019-CIKM挑战赛,超大规模推荐之用户兴趣高效检索赛道 冠军解决方案 | 130 | Jupyter Notebook | 06/17 |
| 74 | [zwq2018/AI_UAV](https://github.com/zwq2018/AI_UAV) | 在人工智能、机器视觉、高精度导航定位和多传感器融合等技术的助推下,众多行业迎来了前所未有的发展机遇,人工智能+无人机(AI+UAV)正是一个具有无限想象力的应用方向。 | 130 | Jupyter Notebook | 03/31 |
| 75 | [sailist/ASRFrame](https://github.com/sailist/ASRFrame) | An Automatic Speech Recognition Frame ,一个中文语音识别的完整框架, 提供了多个模型 | 119 | Jupyter Notebook | 01/23 |
| 76 | [ChileWang0228/Deep-Learning-With-Python](https://github.com/ChileWang0228/Deep-Learning-With-Python) | 《Python深度学习》书籍代码 | 117 | Jupyter Notebook | 02/22 |
| 77 | [geektutu/tensorflow2-docs-zh](https://github.com/geektutu/tensorflow2-docs-zh) | TF2.0 / TensorFlow 2.0 / TensorFlow2.0 官方文档中文版 | 116 | Jupyter Notebook | 05/16 |
| 78 | [hktxt/Learn-Statistical-Learning-Method](https://github.com/hktxt/Learn-Statistical-Learning-Method) | Implementation of Statistical Learning Method, Second Edition.《统计学习方法》第二版,算法实现。 | 114 | Jupyter Notebook | 05/20 |
| 79 | [Dylanin1999/Tensorflow2.0](https://github.com/Dylanin1999/Tensorflow2.0) | 学习笔记代码 | 102 | Jupyter Notebook | 03/25 |
| 80 | [linguishi/chinese_sentiment](https://github.com/linguishi/chinese_sentiment) | 中文情感分析,CNN,BI-LSTM,文本分类 | 101 | Jupyter Notebook | 01/29 |
| 81 | [peiss/ant-learn-python](https://github.com/peiss/ant-learn-python) | 蚂蚁学Python,微信公众号的代码仓库 | 101 | Jupyter Notebook | 05/24 |
| 82 | [ShusenTang/BDC2019](https://github.com/ShusenTang/BDC2019) | 2019中国高校计算机大赛——大数据挑战赛 第三名解决方案 | 101 | Jupyter Notebook | 02/16 |
| 83 | [Mryangkaitong/python-Machine-learning](https://github.com/Mryangkaitong/python-Machine-learning) | 机器学习算法项目 | 98 | Jupyter Notebook | 05/13 |
| 84 | [GenTang/intro_ds_wy_course](https://github.com/GenTang/intro_ds_wy_course) | 《精通数据科学:从线性回归到深度学习》视频课程的配套资料 | 98 | Jupyter Notebook | 02/16 |
| 85 | [FontTian/hyperopt-doc-zh](https://github.com/FontTian/hyperopt-doc-zh) | Github开源项目hyperopt系列的中文文档,以及学习教程等 | 96 | Jupyter Notebook | 03/13 |
| 86 | [ni1o1/pygeo-tutorial](https://github.com/ni1o1/pygeo-tutorial) | Tutorial of geospatial data processing using python 用python分析时空数据的教程(in Chinese and English ) | 95 | Jupyter Notebook | 06/27 |
| 87 | [Relph1119/MachineLearning-WatermelonBook](https://github.com/Relph1119/MachineLearning-WatermelonBook) | 周志华-机器学习 | 94 | Jupyter Notebook | 04/16 |
| 88 | [kingname/SourceCodeofMongoRedis](https://github.com/kingname/SourceCodeofMongoRedis) | 《左手MongoDB,右手Redis——从入门到商业实战》书籍配套源代码。 | 87 | Jupyter Notebook | 06/28 |
| 89 | [datawhalechina/dive-into-cv-pytorch](https://github.com/datawhalechina/dive-into-cv-pytorch) | 动手学CV-Pytorch版 | 87 | Jupyter Notebook | 05/30 |
| 90 | [PhilosopherZ/Meteorological-Books](https://github.com/PhilosopherZ/Meteorological-Books) | 气象相关书籍合集(持续更新) | 84 | Jupyter Notebook | 05/07 |
| 91 | [dsh0416/quantum-i-ching](https://github.com/dsh0416/quantum-i-ching) | A Quantum 爻 System Implementation for Divination | 83 | Jupyter Notebook | 03/31 |
| 92 | [Relph1119/deeplearning-with-tensorflow-notes](https://github.com/Relph1119/deeplearning-with-tensorflow-notes) | 《TensorFlow深度学习》学习笔记及代码,采用TensorFlow2.0.0版本 | 83 | Jupyter Notebook | 04/18 |
| 93 | [airxiechao/simple-car-plate-recognition](https://github.com/airxiechao/simple-car-plate-recognition) | 简单车牌识别-Mask_RCNN定位车牌+手写方法分割字符+CNN单个字符识别 | 83 | Jupyter Notebook | 05/16 |
| 94 | [sangyx/d2l-torch](https://github.com/sangyx/d2l-torch) | 《动手学深度学习》 PyTorch 版本 | 82 | Jupyter Notebook | 02/09 |
| 95 | [JokerJohn/bilibli_notes2](https://github.com/JokerJohn/bilibli_notes2) | 攻城狮之家B站视频课程课件合集2,1号仓库https://github.com/JokerJohn/bilibili_notes.git | 81 | Jupyter Notebook | 02/02 |
| 96 | [Wasim37/machine_learning_code](https://github.com/Wasim37/machine_learning_code) | 机器学习与深度学习算法示例 | 80 | Jupyter Notebook | 07/07 |
| 97 | [duoergun0729/adversarial_examples](https://github.com/duoergun0729/adversarial_examples) | 对抗样本 | 79 | Jupyter Notebook | 03/31 |
| 98 | [JackonYang/paper-reading](https://github.com/JackonYang/paper-reading) | 深度学习论文阅读、数据仓库实践体验。比做算法的懂工程落地,比做工程的懂算法模型。 | 77 | Jupyter Notebook | 04/14 |
| 99 | [makelove/Programer_Log](https://github.com/makelove/Programer_Log) | 最新动态在这里【我的程序员日志】 | 77 | Jupyter Notebook | 06/22 |
| 100 | [czczup/UrbanRegionFunctionClassification](https://github.com/czczup/UrbanRegionFunctionClassification) | 第五届百度西安交大大数据竞赛 城市区域功能分类 Baseline | 76 | Jupyter Notebook | 06/20 |
| 101 | [hecongqing/TensorFlow2.0-Notes](https://github.com/hecongqing/TensorFlow2.0-Notes) | Tensorflow 2.0 个人笔记 | 76 | Jupyter Notebook | 07/02 |
| 102 | [batermj/data_sciences_campaign](https://github.com/batermj/data_sciences_campaign) | 【数据科学家系列课程】 | 75 | Jupyter Notebook | 07/06 |
| 103 | [jiayiwang5/Chinese-ChatBot](https://github.com/jiayiwang5/Chinese-ChatBot) | 中文聊天机器人,基于10万组对白训练而成,采用注意力机制,对一般问题都会生成一个有意义的答复。已上传模型,可直接运行,跑不起来直播吃键盘。 | 74 | Jupyter Notebook | 06/09 |
| 104 | [cantjie/XJTU-Share](https://github.com/cantjie/XJTU-Share) | 西安交通大学课程资料共享计划 | 71 | Jupyter Notebook | 07/07 |
| 105 | [xuwening/blog](https://github.com/xuwening/blog) | 对过往做做总结 | 70 | Jupyter Notebook | 03/23 |
| 106 | [yenlung/nccu-jupyter-math](https://github.com/yenlung/nccu-jupyter-math) | 這是政治大學應用數學系《數學軟體應用》課程的上課筆記。主要介紹 Python 程式語言, 目標是用 Python 做數據分析。 | 66 | Jupyter Notebook | 04/20 |
| 107 | [Wakinguup/Underwater_detection](https://github.com/Wakinguup/Underwater_detection) | 2020年全国水下机器人(湛江)大赛 | 66 | Jupyter Notebook | 04/14 |
| 108 | [monkeyDemon/Learn_Dive-into-DL-PyTorch](https://github.com/monkeyDemon/Learn_Dive-into-DL-PyTorch) | Datawhale第10期组队学习活动:《动手学深度学习》Pytorch版的练习代码 | 65 | Jupyter Notebook | 04/15 |
| 109 | [LiuChuang0059/Complex-Network](https://github.com/LiuChuang0059/Complex-Network) | 复杂网络研究资源整理和基础知识学习 | 64 | Jupyter Notebook | 06/02 |
| 110 | [yutiansut/QAStrategy](https://github.com/yutiansut/QAStrategy) | 策略基类/ 支持QIFI协议 | 63 | Jupyter Notebook | 05/22 |
| 111 | [neolee/pilot-student](https://github.com/neolee/pilot-student) | “进入编程世界的第一课” 的学习用书 | 63 | Jupyter Notebook | 06/09 |
| 112 | [LemenChao/Introduction-to-Data-Science](https://github.com/LemenChao/Introduction-to-Data-Science) | 本Repository为中国人民大学朝乐门老师开源课程——《数据科学导论》 | 62 | Jupyter Notebook | 04/05 |
| 113 | [qiwsir/DataAnalysis](https://github.com/qiwsir/DataAnalysis) | 《跟老齐学Python系列》图书之《数据分析》www.itdiffer.com | 62 | Jupyter Notebook | 01/12 |
| 114 | [YQGong/NN_From_Scratch](https://github.com/YQGong/NN_From_Scratch) | B站视频系列-从零开始的神经网络 | 60 | Jupyter Notebook | 03/02 |
| 115 | [hudengjunai/DeepEmbeding](https://github.com/hudengjunai/DeepEmbeding) | 图像检索和向量搜索,similarity learning,compare deep metric and deep-hashing applying in image retrieval | 59 | Jupyter Notebook | 05/03 |
| 116 | [azy1988/ML-CV](https://github.com/azy1988/ML-CV) | 机器学习实战 | 58 | Jupyter Notebook | 04/29 |
| 117 | [FLyingLSJ/Computer_Vision_Project](https://github.com/FLyingLSJ/Computer_Vision_Project) | 计算机视觉项目实战 | 57 | Jupyter Notebook | 02/27 |
| 118 | [jakezj/hidden_geometry_of_nCoV](https://github.com/jakezj/hidden_geometry_of_nCoV) | 建模nCov传播情况 | 56 | Jupyter Notebook | 01/30 |
| 119 | [shiyanlou/louplus-ml](https://github.com/shiyanlou/louplus-ml) | 实验楼 《楼+ 机器学习实战》课程挑战作业参考答案 https://www.shiyanlou.com/louplus/ml | 55 | Jupyter Notebook | 01/09 |
| 120 | [jt120/tianchi_ship_2019](https://github.com/jt120/tianchi_ship_2019) | 天池智慧海洋 2019 https://tianchi.aliyun.com/competition/entrance/231768/introduction?spm=5176.12281949.1003.1.493e5cfde2Jbke | 55 | Jupyter Notebook | 01/12 |
| 121 | [jamess010/AIOpen](https://github.com/jamess010/AIOpen) | AIOpen是一个按人工智能三要素(数据、算法、算力)进行AI开源项目分类的汇集项目,项目致力于跟踪目前人工智能(AI)的深度学习(DL)开源项目,并尽可能地罗列目前的开源项目,同时加入了一些曾经研究过的代码。通过这些开源项目,使初次接触AI的人们对人工智能(深度学习)有更清晰和更全面的了解。 | 54 | Jupyter Notebook | 03/11 |
| 122 | [Harry3W/readata](https://github.com/Harry3W/readata) | Python数据分析实战项目汇总~ | 53 | Jupyter Notebook | 04/02 |
| 123 | [shiyanlou/louplus-dm](https://github.com/shiyanlou/louplus-dm) | 实验楼 《楼+ 数据分析与挖掘实战》课程挑战作业参考答案 | 51 | Jupyter Notebook | 07/01 |
| 124 | [plouto-quants/FBDQA-2019A](https://github.com/plouto-quants/FBDQA-2019A) | 金融大数据量化分析 | 51 | Jupyter Notebook | 04/26 |
| 125 | [jasonhavenD/DJH-Spider](https://github.com/jasonhavenD/DJH-Spider) | Python爬虫:基础,进阶,框架, csdn,糗事百科,百度贴吧.淘宝MM ,豆瓣电影排行榜 ,腾讯招聘网站,斗鱼主播,汽车网站,百度学术, 必应学术,百科 ,金融实体关系,微博(用户,微博,评论,社交网络),推特Twitter | 50 | Jupyter Notebook | 06/17 |
| 126 | [shikanon/MyPresentations](https://github.com/shikanon/MyPresentations) | this is my presentaion area .个人演讲稿展示区,主要展示一些平时的个人演讲稿或者心得之类的, | 49 | Jupyter Notebook | 02/12 |
| 127 | [PandasCute/2018-ORANGE-FINANCIAL-BIG-DATA-top9](https://github.com/PandasCute/2018-ORANGE-FINANCIAL-BIG-DATA-top9) | 2018年甜橙金融杯大数据建模大赛-初赛第四-复赛线上11-决赛9-复现top1解决方案-【二分类,风控】 | 47 | Jupyter Notebook | 03/04 |
| 128 | [wererLinC/Machine_Learning](https://github.com/wererLinC/Machine_Learning) | 参考了西瓜书,sklearn源码,李航统计学,机器学习实战、机器学习中的数学 | 46 | Jupyter Notebook | 03/27 |
| 129 | [xiaoxiaoyao/MyApp](https://github.com/xiaoxiaoyao/MyApp) | 随便写的各种,点链接可以进入我的知乎 | 46 | Jupyter Notebook | 07/01 |
| 130 | [wqw547243068/Python-learning](https://github.com/wqw547243068/Python-learning) | 好玩儿的Python:从数据挖掘到深度学习 | 46 | Jupyter Notebook | 02/06 |
| 131 | [0809zheng/CS231n-assignment2019](https://github.com/0809zheng/CS231n-assignment2019) | CS231n 2019年春季学期课程作业 | 45 | Jupyter Notebook | 03/31 |
| 132 | [08zhangyi/multi-factor-gm-wind-joinquant](https://github.com/08zhangyi/multi-factor-gm-wind-joinquant) | 基于掘金+万得+聚宽的多因子策略开发框架 | 45 | Jupyter Notebook | 07/02 |
| 133 | [huanghao128/zh-nlp-demo](https://github.com/huanghao128/zh-nlp-demo) | 自然语言处理NLP在中文文本上的一些应用,如文本分类、情感分析、命名实体识别等 | 43 | Jupyter Notebook | 06/01 |
| 134 | [nmcdev/nmc_met_map](https://github.com/nmcdev/nmc_met_map) | 天气学诊断分析工具(Meteorological Diagnostic Tools, MetDig) | 43 | Jupyter Notebook | 07/06 |
| 135 | [DataXujing/YOLO-v5](https://github.com/DataXujing/YOLO-v5) | :art: Pytorch YOLO v5 训练自己的数据集超详细教程!!! :art: (提供PDF训练教程下载) | 42 | Jupyter Notebook | 06/15 |
| 136 | [LogicJake/2020_KDD_Debiasing_TOP13](https://github.com/LogicJake/2020_KDD_Debiasing_TOP13) | KDD Cup 2020 Challenges for Modern E-Commerce Platform: Debiasing Full榜15 Half榜13 | 42 | Jupyter Notebook | 06/28 |
| 137 | [letylin/pyprogbook](https://github.com/letylin/pyprogbook) | 金融大數據首部曲 書名: Python 程式設計入門 — 金融商管實務案例 讀者可以在此下載教學資源含程式碼 | 41 | Jupyter Notebook | 04/07 |
| 138 | [mepeichun/Efficient-Neural-Network-Bilibili](https://github.com/mepeichun/Efficient-Neural-Network-Bilibili) | B站Efficient-Neural-Network学习分享的配套代码 | 41 | Jupyter Notebook | 03/09 |
| 139 | [feng-li/Distributed-Statistical-Computing](https://github.com/feng-li/Distributed-Statistical-Computing) | Teaching Materials for Distributed Statistical Computing (大数据分布式计算教学材料) | 40 | Jupyter Notebook | 05/05 |
| 140 | [CodingChaozhang/Deep-Learning](https://github.com/CodingChaozhang/Deep-Learning) | 深度学习的实战项目 | 39 | Jupyter Notebook | 02/17 |
| 141 | [oubindo/cs231n-cnn](https://github.com/oubindo/cs231n-cnn) | 斯坦福的cs231n课程的assignments,非常好的课程,在这里也要强推 | 39 | Jupyter Notebook | 04/19 |
| 142 | [leo6033/CSU_CS_Experiment](https://github.com/leo6033/CSU_CS_Experiment) | 上过的课的课程实验与课设代码,以及 Wiki https://leo6033.github.io/CSU_CS_Experiment/ | 38 | Jupyter Notebook | 07/07 |
| 143 | [heucoder/ML-DL_book](https://github.com/heucoder/ML-DL_book) | 机器学习、深度学习一些个人认为不错的书籍。 | 38 | Jupyter Notebook | 03/31 |
| 144 | [Jie-Yuan/tql-Python](https://github.com/Jie-Yuan/tql-Python) | 思维误区: 用理想模型来思考复杂现实问题 | 37 | Jupyter Notebook | 03/25 |
| 145 | [watermelon-lee/NLP-practice-with-Tensorflow2](https://github.com/watermelon-lee/NLP-practice-with-Tensorflow2) | 使用tensorflow2完成一些常见的NLP任务 | 38 | Jupyter Notebook | 03/25 |
| 146 | [nmcdev/meteva](https://github.com/nmcdev/meteva) | 提供气象产品检验相关程序 | 37 | Jupyter Notebook | 07/02 |
| 147 | [dengxiuqi/WeiboSentiment](https://github.com/dengxiuqi/WeiboSentiment) | 基于各种机器学习和深度学习的中文微博情感分析 | 36 | Jupyter Notebook | 06/04 |
| 148 | [neolee/wop-ecnu-pub](https://github.com/neolee/wop-ecnu-pub) | 华东师范大学《数据思维与实践》课程主站 | 36 | Jupyter Notebook | 06/23 |
| 149 | [wgwang/ccks2020-baseline](https://github.com/wgwang/ccks2020-baseline) | CCKS 2020: 基于本体的金融知识图谱自动化构建技术评测 | 35 | Jupyter Notebook | 04/23 |
| 150 | [edu2act/course-PySCE](https://github.com/edu2act/course-PySCE) | 人工智能方向,《Python科学计算生态》课程仓库 | 35 | Jupyter Notebook | 02/16 |
| 151 | [Fafa-DL/Tensorflow2.0-](https://github.com/Fafa-DL/Tensorflow2.0-) | bilibili:啥都会一点的研究生 | 35 | Jupyter Notebook | 03/15 |
| 152 | [zhanlaoban/CCF_BDCI_2019_datafountain350](https://github.com/zhanlaoban/CCF_BDCI_2019_datafountain350) | CCF BDCI 2019 互联网新闻情感分析 复赛top8 代码 | 34 | Jupyter Notebook | 01/07 |
| 153 | [makelove/True_Artificial_Intelligence](https://github.com/makelove/True_Artificial_Intelligence) | 真AI人工智能 | 33 | Jupyter Notebook | 06/06 |
| 154 | [howie6879/pylab](https://github.com/howie6879/pylab) | 和Python相关的学习笔记:机器学习、算法、进阶书籍、文档,博客地址:https://www.howie6879.cn | 33 | Jupyter Notebook | 05/11 |
| 155 | [jiajiewang0326/KG_Based_Recommendation_with_GNNs](https://github.com/jiajiewang0326/KG_Based_Recommendation_with_GNNs) | 利用知识图谱信息的图神经网络健康饮食推荐 | 33 | Jupyter Notebook | 07/02 |
| 156 | [VoldeMortzzz/2019Baai-zhihu-Cup-findexp-4th](https://github.com/VoldeMortzzz/2019Baai-zhihu-Cup-findexp-4th) | 2019年知乎看山杯第四名 | 33 | Jupyter Notebook | 01/13 |
| 157 | [allenlu2008/PySparkDemo](https://github.com/allenlu2008/PySparkDemo) | PySpark算子及空间应用的各个Demo | 33 | Jupyter Notebook | 01/20 |
| 158 | [GiantPandaCV/yolov3-point](https://github.com/GiantPandaCV/yolov3-point) | 从零开始学习YOLOv3教程解读代码+注意力模块(SE,SPP,RFB etc) | 32 | Jupyter Notebook | 06/07 |
| 159 | [unlimitbladeworks/python-tools](https://github.com/unlimitbladeworks/python-tools) | python3日常小工具仓库 | 31 | Jupyter Notebook | 05/25 |
| 160 | [PandasCute/Provide-Banks-with-precision-marketing-solutions-Provide-Banks-with-precision-marketing-solutions](https://github.com/PandasCute/Provide-Banks-with-precision-marketing-solutions-Provide-Banks-with-precision-marketing-solutions) | 「二分类算法」提供银行精准营销解决方案 \| 练习赛-0.93984283-【二分类,特征组】 | 31 | Jupyter Notebook | 03/04 |
| 161 | [DjangoPeng/keras-101](https://github.com/DjangoPeng/keras-101) | Keras 快速入门与实战 | 31 | Jupyter Notebook | 05/30 |
| 162 | [chinapnr/python_study](https://github.com/chinapnr/python_study) | python 入门培训教材,实用、快速、清晰 | 31 | Jupyter Notebook | 07/02 |
| 163 | [ultimatejoe/rul_of_cutter](https://github.com/ultimatejoe/rul_of_cutter) | 刀具剩余寿命预测 | 31 | Jupyter Notebook | 04/17 |
| 164 | [wangyingsm/Python-Data-Science-Handbook](https://github.com/wangyingsm/Python-Data-Science-Handbook) | A Chinese translation of Jake Vanderplas' "Python Data Science Handbook". 《Python数据科学手册》在线Jupyter notebook中文翻译 | 30 | Jupyter Notebook | 05/18 |
| 165 | [jm199504/Financial-Knowledge-Graphs](https://github.com/jm199504/Financial-Knowledge-Graphs) | 小型金融知识图谱构建流程 | 30 | Jupyter Notebook | 06/07 |
| 166 | [xushengyuan/Fastsinging](https://github.com/xushengyuan/Fastsinging) | 一个基于Fastspeech的开源歌声合成系统 | 30 | Jupyter Notebook | 03/27 |
| 167 | [Travisgogogo/2019-ABC-Athena](https://github.com/Travisgogogo/2019-ABC-Athena) | 2019 农业银行雅典娜杯数据挖掘大赛高校 Top2 Solution | 30 | Jupyter Notebook | 01/12 |
| 168 | [IBBD/IBBD.github.io](https://github.com/IBBD/IBBD.github.io) | IBBD技术博客 | 29 | Jupyter Notebook | 05/06 |
| 169 | [wanyueli/DeepLizard-pytorch-](https://github.com/wanyueli/DeepLizard-pytorch-) | 自己总结的DeepLizard的pytorch神经网络编程系列视频的笔记(非官方) | 29 | Jupyter Notebook | 05/08 |
| 170 | [leovan/data-science-introduction-with-r](https://github.com/leovan/data-science-introduction-with-r) | R 语言数据科学导论 \| Data Science Introduction with R | 29 | Jupyter Notebook | 06/16 |
| 171 | [LogicJake/tuling-video-click-top3](https://github.com/LogicJake/tuling-video-click-top3) | 图灵联邦视频点击预测大赛线上第三-【ctr, embedding, 穿越特征】 | 28 | Jupyter Notebook | 03/04 |
| 172 | [Amberlan1001/eat_tensorflow2_in_30_days_ipynb](https://github.com/Amberlan1001/eat_tensorflow2_in_30_days_ipynb) | 30天掌握Tensorflow2.1 Jupyter Notebook 版 | 28 | Jupyter Notebook | 04/10 |
| 173 | [derekhe/crawler-book](https://github.com/derekhe/crawler-book) | 《爬虫实战:从数据到产品》一书源代码 | 28 | Jupyter Notebook | 04/01 |
| 174 | [computational-class/ccrbook](https://github.com/computational-class/ccrbook) | 《计算传播学导论》Python代码和PPT | 28 | Jupyter Notebook | 03/09 |
| 175 | [zhangjunhd/reading-notes](https://github.com/zhangjunhd/reading-notes) | 张俊的读书笔记 | 28 | Jupyter Notebook | 07/07 |
| 176 | [DataLoaderX/datasetsome](https://github.com/DataLoaderX/datasetsome) | 一些数据集处理相关的 API | 27 | Jupyter Notebook | 01/01 |
| 177 | [BrikerMan/classic_chinese_punctuate](https://github.com/BrikerMan/classic_chinese_punctuate) | classic Chinese punctuate experiment with keras using daizhige(殆知阁古代文献藏书) dataset | 27 | Jupyter Notebook | 03/31 |
| 178 | [saturn-lab/MEE-CC07](https://github.com/saturn-lab/MEE-CC07) | CC07-单元 | 27 | Jupyter Notebook | 06/11 |
| 179 | [Travisgogogo/BAAI-ZHIHU-2019](https://github.com/Travisgogogo/BAAI-ZHIHU-2019) | Top3 Solution for 2019 BAAI-Zhihu-Cup 知乎看山杯 | 27 | Jupyter Notebook | 01/12 |
| 180 | [BraveY/AI-with-code](https://github.com/BraveY/AI-with-code) | AI学习过程中的实操代码 | 26 | Jupyter Notebook | 05/12 |
| 181 | [ChuanyuXue/The-Purchase-and-Redemption-Forecast-Challenge-baseline](https://github.com/ChuanyuXue/The-Purchase-and-Redemption-Forecast-Challenge-baseline) | 天池“资金流入流出预测——挑战baseline”的解决方案,线上效果143.5 | 26 | Jupyter Notebook | 06/17 |
| 182 | [MachineLP/Spark-](https://github.com/MachineLP/Spark-) | Spark学习笔记 | 26 | Jupyter Notebook | 05/16 |
| 183 | [StdioA/fluent-python-notes](https://github.com/StdioA/fluent-python-notes) | 《流畅的 Python》阅读笔记 | 25 | Jupyter Notebook | 03/31 |
| 184 | [mengjiexu/OCR_CNN_-CTC](https://github.com/mengjiexu/OCR_CNN_-CTC) | 使用CNN全卷积神经网络进行整行汉字识别,正确率90-94%,后来有朋友改成densenet做主网络,做到99%以上正确率 | 25 | Jupyter Notebook | 05/18 |
| 185 | [Light2077/QA-Abstract-And-Reasoning](https://github.com/Light2077/QA-Abstract-And-Reasoning) | 问答摘要与推理 | 25 | Jupyter Notebook | 04/17 |
| 186 | [SamaelChen/hexo-practice-code](https://github.com/SamaelChen/hexo-practice-code) | hexo里练习的源码 | 25 | Jupyter Notebook | 05/23 |
| 187 | [yinizhilian/NLP_Share](https://github.com/yinizhilian/NLP_Share) | 自然语言处理NLP(自然语言生成NLG、自然语言理解NLU)、自然语言学术会议大盘点、自然语言大佬介绍、NLP研究机构、NLP资料分享、NLP学习资源分享、NLP学术论文介绍 | 24 | Jupyter Notebook | 01/14 |
| 188 | [cumtcssuld/RSP_of_CUMTCS](https://github.com/cumtcssuld/RSP_of_CUMTCS) | 【矿大计算机学院资源共享计划(Resource SharingPlan of CUMTCS)】本仓库由矿大计算机学院学生会学习部牵头维护,由计算机学院全体同学共建共享。欢迎大家积极的参加到本资源库的建设中来吧!(每当有重大更新,我们都会将整个库克隆到码云,点击下边链接,到我们的码云仓库可以获得更好的下载体验) | 24 | Jupyter Notebook | 06/18 |
| 189 | [BackyardofAbela/EnsembleLearning](https://github.com/BackyardofAbela/EnsembleLearning) | 包括决策树和随机森林进行离职人员预测,Xgboost和lightGBM的应用 | 24 | Jupyter Notebook | 04/17 |
| 190 | [DataXujing/DIoU_YOLO_V3](https://github.com/DataXujing/DIoU_YOLO_V3) | :chart_with_upwards_trend::chart_with_upwards_trend::chart_with_upwards_trend:【口罩佩戴检测数据训练 \| 开源口罩检测数据集和预训练模型】Train D/CIoU_YOLO_V3 by darknet for object detection | 23 | Jupyter Notebook | 04/03 |
| 191 | [EuphoriaYan/pkuss-nlp-pytorch](https://github.com/EuphoriaYan/pkuss-nlp-pytorch) | 自然语言处理导论实验课课件 | 23 | Jupyter Notebook | 05/25 |
| 192 | [Rockyzsu/convertible_bond](https://github.com/Rockyzsu/convertible_bond) | 低风险投资之可转债 | 22 | Jupyter Notebook | 03/29 |
| 193 | [oldratlee/data-science-practice](https://github.com/oldratlee/data-science-practice) | 数据科学实践 \| data science practice | 21 | Jupyter Notebook | 01/03 |
| 194 | [Masterchiefm/Thirdparty-huawei-Share-OneHop](https://github.com/Masterchiefm/Thirdparty-huawei-Share-OneHop) | 制作第三方华为一碰传标签/已完成历史使命,擦除标签的方案已整合入@汉客儿 最新工具。 | 21 | Jupyter Notebook | 06/17 |
| 195 | [thunderhit/DaDengAndHisPython](https://github.com/thunderhit/DaDengAndHisPython) | 【微信公众号:大邓和他的python】, Python语法快速入门https://www.bilibili.com/video/av44384851 Python网络爬虫快速入门https://www.bilibili.com/video/av72010301, 我的联系邮箱thunderhit@qq.com | 21 | Jupyter Notebook | 06/14 |
| 196 | [starhou/One-dimensional-GAN](https://github.com/starhou/One-dimensional-GAN) | 用GAN生成一维数据 | 21 | Jupyter Notebook | 03/08 |
| 197 | [jiye-ML/math_study](https://github.com/jiye-ML/math_study) | 数学相关知识 包括 高数 概率 线性代数 | 21 | Jupyter Notebook | 05/29 |
| 198 | [YuleZhang/JDComment_Spider](https://github.com/YuleZhang/JDComment_Spider) | 京东评论爬虫,包含对数据的采集、清洗、可视化、分析等过程,作为数据库课程设计项目 | 20 | Jupyter Notebook | 03/12 |
| 199 | [GrayXu/Virtual-Try-On-Flask](https://github.com/GrayXu/Virtual-Try-On-Flask) | Virtual Try-on Network on Flask 基于深度学习的虚拟试衣 | 20 | Jupyter Notebook | 02/27 |
| 200 | [wybert/open-wuhan-ncov-illness-data](https://github.com/wybert/open-wuhan-ncov-illness-data) | 这个项目有关有关 武汉肺炎 2019-ncov的相关病例数据的分享。从gitlab迁移过来。发布页这里 | 20 | Jupyter Notebook | 01/31 |
⬆ [回到目录](#目录)
<br/>
## Shell
| # | Repository | Description | Stars | Language | Updated |
| ---- | ------------------------------------------------------------ | ------------------------------------------------------------ | ----- | -------- | ------- |
| 1 | [shengxinjing/programmer-job-blacklist](https://github.com/shengxinjing/programmer-job-blacklist) | :see_no_evil:程序员找工作黑名单,换工作和当技术合伙人需谨慎啊 更新有赞 | 25.4k | Shell | 07/03 |
| 2 | [taizilongxu/interview_python](https://github.com/taizilongxu/interview_python) | 关于Python的面试题 | 12.7k | Shell | 05/31 |
| 3 | [233boy/v2ray](https://github.com/233boy/v2ray) | 最好用的 V2Ray 一键安装脚本 & 管理脚本 | 12.3k | Shell | 06/20 |
| 4 | [EtherDream/jsproxy](https://github.com/EtherDream/jsproxy) | 一个基于浏览器端 JS 实现的在线代理 | 7.8k | Shell | 05/08 |
| 5 | [rootsongjc/kubernetes-handbook](https://github.com/rootsongjc/kubernetes-handbook) | Kubernetes中文指南/云原生应用架构实践手册 - https://jimmysong.io/kubernetes-handbook | 7.3k | Shell | 07/03 |
| 6 | [judasn/Linux-Tutorial](https://github.com/judasn/Linux-Tutorial) | 《Java 程序员眼中的 Linux》 | 7.2k | Shell | 06/05 |
| 7 | [skywind3000/awesome-cheatsheets](https://github.com/skywind3000/awesome-cheatsheets) | 超级速查表 - 编程语言、框架和开发工具的速查表,单个文件包含一切你需要知道的东西 :zap: | 6.0k | Shell | 06/29 |
| 8 | [opsnull/follow-me-install-kubernetes-cluster](https://github.com/opsnull/follow-me-install-kubernetes-cluster) | 和我一步步部署 kubernetes 集群 | 5.6k | Shell | 02/07 |
| 9 | [easzlab/kubeasz](https://github.com/easzlab/kubeasz) | 使用Ansible脚本安装K8S集群,介绍组件交互原理,方便直接,不受国内网络环境影响 | 5.6k | Shell | 06/20 |
| 10 | [wulabing/V2Ray_ws-tls_bash_onekey](https://github.com/wulabing/V2Ray_ws-tls_bash_onekey) | V2Ray Nginx+vmess+ws+tls/ http2 over tls 一键安装脚本 | 4.6k | Shell | 06/11 |
| 11 | [HIT-Alibaba/interview](https://github.com/HIT-Alibaba/interview) | 笔试面试知识整理 | 4.3k | Shell | 03/20 |
| 12 | [ToyoDAdoubi/doubi](https://github.com/ToyoDAdoubi/doubi) | 一个逗比写的各种逗比脚本~ | 3.7k | Shell | 02/10 |
| 13 | [softwaredownload/openwrt-fanqiang](https://github.com/softwaredownload/openwrt-fanqiang) | 最好的路由器翻墙、科学上网教程—OpenWrt—shadowsocks | 3.5k | Shell | 07/03 |
| 14 | [Medicean/VulApps](https://github.com/Medicean/VulApps) | 快速搭建各种漏洞环境(Various vulnerability environment) | 2.9k | Shell | 04/15 |
| 15 | [wangdoc/javascript-tutorial](https://github.com/wangdoc/javascript-tutorial) | JavaScript 教程 https://wangdoc.com/javascript | 2.4k | Shell | 06/24 |
| 16 | [wangdoc/bash-tutorial](https://github.com/wangdoc/bash-tutorial) | Bash 教程 | 2.0k | Shell | 07/04 |
| 17 | [lmk123/oh-my-wechat](https://github.com/lmk123/oh-my-wechat) | 微信小助手的安装 / 更新工具。 | 1.9k | Shell | 07/03 |
| 18 | [hoochanlon/fq-book](https://github.com/hoochanlon/fq-book) | :open_book: 《这本书能让你连接互联网》科学上网Freestyle,了解网络基础知识与实践蹭网操作 | 1.9k | Shell | 06/16 |
| 19 | [CyC2018/Job-Recommend](https://github.com/CyC2018/Job-Recommend) | 🔎 互联网内推信息(社招、校招、实习) | 1.9k | Shell | 06/15 |
| 20 | [licess/lnmp](https://github.com/licess/lnmp) | LNMP一键安装包是一个用Linux Shell编写的可以为CentOS/RHEL/Fedora/Aliyun/Amazon、Debian/Ubuntu/Raspbian/Deepin/Mint Linux VPS或独立主机安装LNMP(Nginx/MySQL/PHP)、LNMPA(Nginx/MySQL/PHP/Apache)、LAMP(Apache/MySQL/PHP)生产环境的Shell程序。 | 1.8k | Shell | 07/06 |
| 21 | [P3TERX/Actions-OpenWrt](https://github.com/P3TERX/Actions-OpenWrt) | Build OpenWrt using GitHub Actions \| 使用 GitHub Actions 云编译 OpenWrt | 1.7k | Shell | 06/28 |
| 22 | [LCTT/TranslateProject](https://github.com/LCTT/TranslateProject) | Linux中国翻译项目 | 1.6k | Shell | 07/07 |
| 23 | [wind-liang/leetcode](https://github.com/wind-liang/leetcode) | leetcode 顺序刷题,详细通俗题解,with JAVA | 1.5k | Shell | 06/22 |
| 24 | [neoFelhz/neohosts](https://github.com/neoFelhz/neohosts) | 自由·负责·克制 去广告 Hosts 项目 | 1.3k | Shell | 03/12 |
| 25 | [zfl9/ss-tproxy](https://github.com/zfl9/ss-tproxy) | 搭建 SS/SSR/V2Ray/Socks5 透明代理环境的简陋脚本 | 1.2k | Shell | 07/02 |
| 26 | [studygolang/GCTT](https://github.com/studygolang/GCTT) | GCTT Go中文网翻译组。 | 1.1k | Shell | 07/05 |
| 27 | [gotok8s/k8s-docker-desktop-for-mac](https://github.com/gotok8s/k8s-docker-desktop-for-mac) | Docker Desktop for Mac 开启并使用 Kubernetes | 1.0k | Shell | 06/29 |
| 28 | [maxlicheng/luci-app-unblockmusic](https://github.com/maxlicheng/luci-app-unblockmusic) | 用于解锁网易云灰色歌曲的OpenWRT/LEDE路由器插件 (openwrt/lede luci support for unblock neteasecloudmusic) | 1.0k | Shell | 05/01 |
| 29 | [devdawei/libstdc-](https://github.com/devdawei/libstdc-) | Xcode 10、11 和 12 中删除的 libstdc++ 库 | 987 | Shell | 06/30 |
| 30 | [liuyi01/kubernetes-starter](https://github.com/liuyi01/kubernetes-starter) | kubernetes入门,包括kubernetes概念,架构设计,集群环境搭建,认证授权等。 | 980 | Shell | 05/07 |
| 31 | [gaoyifan/china-operator-ip](https://github.com/gaoyifan/china-operator-ip) | 中国运营商IPv4/IPv6地址库-每日更新 | 971 | Shell | 07/07 |
| 32 | [aqzt/kjyw](https://github.com/aqzt/kjyw) | 快捷运维,代号kjyw,项目基于shell、python,运维脚本工具库,收集各类运维常用工具脚本,实现快速安装nginx、mysql、php、redis、nagios、运维经常使用的脚本等等... | 954 | Shell | 06/07 |
| 33 | [duguying/parsing-techniques](https://github.com/duguying/parsing-techniques) | 📕 parsing techniques 中文译本——《解析技术》 | 935 | Shell | 06/12 |
| 34 | [klever1988/nanopi-openwrt](https://github.com/klever1988/nanopi-openwrt) | Openwrt for Nanopi R1S R2S 固件编译 | 917 | Shell | 07/07 |
| 35 | [c0ny1/vulstudy](https://github.com/c0ny1/vulstudy) | 使用docker快速搭建各大漏洞靶场,目前可以一键搭建17个靶场。 | 913 | Shell | 03/25 |
| 36 | [hellofwy/ss-bash](https://github.com/hellofwy/ss-bash) | Shadowsocks流量管理脚本 | 856 | Shell | 02/22 |
| 37 | [P3TERX/aria2.conf](https://github.com/P3TERX/aria2.conf) | Aria2 配置文件 \| OneDrive & Google Drvive 离线下载 \| 百度网盘转存 | 810 | Shell | 07/05 |
| 38 | [liquanzhou/ops_doc](https://github.com/liquanzhou/ops_doc) | 运维简洁实用手册 | 738 | Shell | 03/06 |
| 39 | [goreliu/zshguide](https://github.com/goreliu/zshguide) | Zsh 开发指南 | 686 | Shell | 06/04 |
| 40 | [MvsCode/frps-onekey](https://github.com/MvsCode/frps-onekey) | Frps 一键安装脚本&管理脚本 A tool to auto-compile & install frps on Linux | 679 | Shell | 07/07 |
| 41 | [xuexb/learn-nginx](https://github.com/xuexb/learn-nginx) | Nginx 入门指南 | 658 | Shell | 06/06 |
| 42 | [hijkpw/scripts](https://github.com/hijkpw/scripts) | Shadowsocks/SS一键脚本、ShadowsocksR/SSR一键脚本、V2Ray一键脚本、trojan一键脚本、VPS购买教程,各种网络资源和网络教程 | 652 | Shell | 07/02 |
| 43 | [monlor/Monlor-Tools](https://github.com/monlor/Monlor-Tools) | 小米路由器Shell工具箱,本人自用,主要参考了小米的Misstar Tools制作,仅学习之用!Telegram群组:https://t.me/joinchat/FMraA0lwzH9fzEW1wXdCFA | 646 | Shell | 01/06 |
| 44 | [apachecn/awesome-indie-zh](https://github.com/apachecn/awesome-indie-zh) | 独立开发/自由职业/远程工作资源列表 | 574 | Shell | 05/07 |
| 45 | [wppurking/ocserv-docker](https://github.com/wppurking/ocserv-docker) | 用于初始化 ocserv 的 Dockfile 脚本 | 558 | Shell | 03/09 |
| 46 | [arloor/iptablesUtils](https://github.com/arloor/iptablesUtils) | iptables转发ddns域名 | 558 | Shell | 07/05 |
| 47 | [P3TERX/aria2.sh](https://github.com/P3TERX/aria2.sh) | Aria2 一键安装管理脚本 增强版 | 555 | Shell | 06/27 |
| 48 | [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 | 551 | Shell | 02/23 |
| 49 | [huan/docker-wechat](https://github.com/huan/docker-wechat) | DoChat is a Dockerized WeChat (盒装微信) PC Windows Client for Linux | 540 | Shell | 06/18 |
| 50 | [Nick233333/phper-linux-gitbook](https://github.com/Nick233333/phper-linux-gitbook) | 💡PHPer 必知必会的 Linux 命令 | 535 | Shell | 05/13 |
| 51 | [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. | 509 | Shell | 01/17 |
| 52 | [rust-lang-cn/rust-by-example-cn](https://github.com/rust-lang-cn/rust-by-example-cn) | Rust By Example 中文版(包含在线代码编辑器) | 500 | Shell | 07/04 |
| 53 | [rime/plum](https://github.com/rime/plum) | 東風破 /plum/: Rime configuration manager and input schema repository | 496 | Shell | 04/01 |
| 54 | [skyline75489/Heart-First-JavaWeb](https://github.com/skyline75489/Heart-First-JavaWeb) | 一个走心的 Java Web 入门开发教程 | 462 | Shell | 03/20 |
| 55 | [al0ne/LinuxCheck](https://github.com/al0ne/LinuxCheck) | linux信息收集/应急响应/常见后门/挖矿检测/webshell检测脚本 | 445 | Shell | 06/22 |
| 56 | [ctf-wiki/ctf-tools](https://github.com/ctf-wiki/ctf-tools) | CTF 工具集合 | 417 | Shell | 03/11 |
| 57 | [anrip/dnspod-shell](https://github.com/anrip/dnspod-shell) | 基于DNSPod用户API实现的纯Shell动态域名客户端 | 409 | Shell | 06/19 |
| 58 | [tonydeng/sdn-handbook](https://github.com/tonydeng/sdn-handbook) | SDN手册 | 382 | Shell | 06/26 |
| 59 | [V2RaySSR/Trojan](https://github.com/V2RaySSR/Trojan) | Trojan 一键安装脚本 | 382 | Shell | 06/21 |
| 60 | [venshine/decompile-apk](https://github.com/venshine/decompile-apk) | 🔥 Decompile APK(反编译APK) | 375 | Shell | 01/15 |
| 61 | [zhangguanzhang/Kubernetes-ansible](https://github.com/zhangguanzhang/Kubernetes-ansible) | :christmas_tree:ansible多网卡机器上一键部署高可用Kubernetes(systemd) | 368 | Shell | 05/11 |
| 62 | [eritpchy/Fingerprint-pay-magisk-wechat](https://github.com/eritpchy/Fingerprint-pay-magisk-wechat) | 微信指纹支付 (Fingerprint pay for WeChat) | 365 | Shell | 05/12 |
| 63 | [csy512889371/learnDoc](https://github.com/csy512889371/learnDoc) | 🔥:rocket:架构师的成长之路-博客-导图 | 365 | Shell | 06/02 |
| 64 | [bclswl0827/v2ray-heroku](https://github.com/bclswl0827/v2ray-heroku) | 用于在 Heroku 上部署 V2Ray Websocket,本项目不宜做为长期使用之对策。 | 359 | Shell | 06/03 |
| 65 | [EtherDream/anti-portscan](https://github.com/EtherDream/anti-portscan) | 使用 iptables 防止端口扫描 | 355 | Shell | 01/20 |
| 66 | [esirplayground/AutoBuild-OpenWrt](https://github.com/esirplayground/AutoBuild-OpenWrt) | Build OpenWrt using GitHub Actions \| 使用 GitHub Actions 编译 OpenWrt \| 感谢P3TERX的项目源码 | 344 | Shell | 06/22 |
| 67 | [IOTQQ/IOTQQ](https://github.com/IOTQQ/IOTQQ) | 跨平台 QQ机器人 框架 原生 高效 迸发 Lua Plugin 只有你想不到 | 329 | Shell | 07/06 |
| 68 | [jaywcjlove/docker-tutorial](https://github.com/jaywcjlove/docker-tutorial) | 🐳Docker入门学习笔记 | 325 | Shell | 06/01 |
| 69 | [apachecn/ml-mastery-zh](https://github.com/apachecn/ml-mastery-zh) | :book: [译] MachineLearningMastery 博客文章 | 305 | Shell | 01/20 |
| 70 | [snail007/proxy_admin_free](https://github.com/snail007/proxy_admin_free) | Proxy是高性能全功能的http代理、https代理、socks5代理、内网穿透、内网穿透p2p、内网穿透代理、内网穿透反向代理、内网穿透服务器、Websocket代理、TCP代理、UDP代理、DNS代理、DNS加密代理,代理API认证,全能跨平台代理服务器。 | 304 | Shell | 07/01 |
| 71 | [woniuzfb/iptv](https://github.com/woniuzfb/iptv) | 一键安装管理 [ IPTV / v2ray / Nginx / OpenResty / cloudflare partner cname ] 脚本 youtube, mpegts, 直播源... => hls <=> http-flv <= ... A [ ffmpeg / v2ray / Nginx / OpenResty ] wrapper | 294 | Shell | 07/07 |
| 72 | [meetbill/op_practice_book](https://github.com/meetbill/op_practice_book) | 📚 《运维实践指南》持续更新中,推荐大牛干货博客 https://me.csdn.net/g2V13ah | 294 | Shell | 06/09 |
| 73 | [haiwen/seafile-docs-cn](https://github.com/haiwen/seafile-docs-cn) | Seafile服务器用户手册 | 287 | Shell | 05/05 |
| 74 | [colourful987/bytedance-alibaba-interview](https://github.com/colourful987/bytedance-alibaba-interview) | 阿里、字节 一套高效的iOS面试题解答 | 287 | Shell | 07/07 |
| 75 | [andyzhshg/syno-acme](https://github.com/andyzhshg/syno-acme) | 通过acme协议更新群晖HTTPS泛域名证书的自动脚本 | 276 | Shell | 05/11 |
| 76 | [ben1234560/k8s_PaaS](https://github.com/ben1234560/k8s_PaaS) | 如何基于K8S部署成PaaS/DevOps(一套完整的软件研发和部署平台)——教程/学习(实战代码/欢迎讨论/大量注释/操作配图),你将习得部署如:K8S、dashboard、Harbor、Jenkins、本地gitlab、Apollo框架、promtheus、grafana、spinnaker。 | 272 | Shell | 06/09 |
| 77 | [WangHL0927/grafana-chinese](https://github.com/WangHL0927/grafana-chinese) | grafana中文版本 | 267 | Shell | 05/07 |
| 78 | [project-openwrt/luci-app-unblockneteasemusic](https://github.com/project-openwrt/luci-app-unblockneteasemusic) | [OpenWrt] 解除网易云音乐播放限制 | 264 | Shell | 07/04 |
| 79 | [gfw-breaker/open-proxy](https://github.com/gfw-breaker/open-proxy) | 一键部署被墙网站反向代理; 免翻墙访问被禁网站 | 262 | Shell | 06/17 |
| 80 | [gdut-yy/CSS-The-Definitive-Guide-4th-zh](https://github.com/gdut-yy/CSS-The-Definitive-Guide-4th-zh) | 《CSS权威指南第四版》中文翻译 | 263 | Shell | 05/12 |
| 81 | [felix-fly/v2ray-openwrt](https://github.com/felix-fly/v2ray-openwrt) | 路由器Openwrt安装V2ray简单流程 | 260 | Shell | 07/07 |
| 82 | [233boy/ss](https://github.com/233boy/ss) | Shadowsocks-Go 一键安装脚本 & 管理脚本 | 259 | Shell | 01/15 |
| 83 | [dunwu/linux-tutorial](https://github.com/dunwu/linux-tutorial) | :penguin: Linux教程,主要内容:Linux 命令、Linux 系统运维、软件运维、精选常用Shell脚本 | 256 | Shell | 06/24 |
| 84 | [apachecn/awesome-cs-courses-zh](https://github.com/apachecn/awesome-cs-courses-zh) | 计算机公开课推荐 | 253 | Shell | 04/24 |
| 85 | [wang-bin/avbuild](https://github.com/wang-bin/avbuild) | ffmpeg花式编译. build tool for all platforms: iOS, android, raspberry pi, win32, uwp, linux, macOS etc. | 244 | Shell | 07/03 |
| 86 | [QAX-A-Team/WeblogicEnvironment](https://github.com/QAX-A-Team/WeblogicEnvironment) | Weblogic环境搭建工具 | 243 | Shell | 04/23 |
| 87 | [gdut-yy/Domain-Driven-Design-zh](https://github.com/gdut-yy/Domain-Driven-Design-zh) | DDD《领域驱动设计》中文翻译 | 240 | Shell | 05/02 |
| 88 | [91yun/91yuntest](https://github.com/91yun/91yuntest) | 91云服务器一键测试包 | 236 | Shell | 05/19 |
| 89 | [JACK-THINK/SCRIPTS-BOOTLOADER-FOR-ASUS-ROUTER](https://github.com/JACK-THINK/SCRIPTS-BOOTLOADER-FOR-ASUS-ROUTER) | 用于华硕路由器官方固件和梅林固件的自启动脚本系统(Self-starting scripts that can be used in both Asuswrt and Asuswrt-Merlin) | 227 | Shell | 06/02 |
| 90 | [godbasin/vue-ebook](https://github.com/godbasin/vue-ebook) | 《深入理解Vue.js实战》- 介绍Vue.js框架的出现、设计和使用,结合实战让读者更深入理解Vue.js框架,掌握使用方法。 | 224 | Shell | 06/29 |
| 91 | [guanguans/dnmp-plus](https://github.com/guanguans/dnmp-plus) | 🐳Docker的LNMP一键安装开发环境 + PHP非侵入式监控平台xhgui(优化系统性能、定位Bug神器) | 217 | Shell | 06/26 |
| 92 | [wangdoc/es6-tutorial](https://github.com/wangdoc/es6-tutorial) | 一本开源的 JavaScript 语言教程,全面介绍 ECMAScript 6 新引入的语法特性。 | 209 | Shell | 07/07 |
| 93 | [zwmscorm/sharealiddns](https://github.com/zwmscorm/sharealiddns) | 全功能阿里云域名解析脚本(支持IPV4, IPV6, 多域名等,同时支持asuswrt-merlin 、padavan、pandorabox、lede/openwrt固件) | 206 | Shell | 02/22 |
| 94 | [deyuhua/xv6-book-chinese](https://github.com/deyuhua/xv6-book-chinese) | MIT操作系统工程的教学操作系统Xv6的源码剖析中文翻译项目,使用ANSI标准C重新在riscv架构上实现Unix v6; | 196 | Shell | 02/26 |
| 95 | [TheKingOfDuck/ApkAnalyser](https://github.com/TheKingOfDuck/ApkAnalyser) | 一键提取安卓应用中可能存在的敏感信息。 | 195 | Shell | 04/03 |
| 96 | [rachpt/AutoSeed](https://github.com/rachpt/AutoSeed) | 全自动发种姬 [流程图 https://www.processon.com/view/link/5c088855e4b0ca4b40c93a49 ] | 192 | Shell | 02/28 |
| 97 | [jardenliu/XPS15-9560-Catalina](https://github.com/jardenliu/XPS15-9560-Catalina) | XPS15-9560-Catalina, Q群:161385229 | 192 | Shell | 06/07 |
| 98 | [diguage/mysql-notes](https://github.com/diguage/mysql-notes) | MySQL 学习笔记 | 191 | Shell | 06/09 |
| 99 | [HyperledgerCN/hyperledgerDocs](https://github.com/HyperledgerCN/hyperledgerDocs) | Hyperledger文档 | 190 | Shell | 01/08 |
| 100 | [aturl/awesome-anti-gfw](https://github.com/aturl/awesome-anti-gfw) | 突破网络审查和封锁的开源工具清单。 | 182 | Shell | 04/02 |
| 101 | [whunt1/onekeymakemtg](https://github.com/whunt1/onekeymakemtg) | 编译安装最新版 mtproxy-go 一键脚本 | 178 | Shell | 06/22 |
| 102 | [tianhao/alfred-mweb-workflow](https://github.com/tianhao/alfred-mweb-workflow) | 搜索、打开MWeb 内部文档和外部 Markdown 文档 | 175 | Shell | 04/27 |
| 103 | [lovezzzxxx/liverecord](https://github.com/lovezzzxxx/liverecord) | 自动录播并自动备份,支持youtube频道、twitcast频道、twitch频道、openrec频道、niconico生放送、niconico社区、niconico频道、mirrativ频道、reality频道、17live频道、bilibili频道、streamlink支持的直播网址、ffmpeg支持的m3u8地址 | 173 | Shell | 07/03 |
| 104 | [DeppWang/Java-Books](https://github.com/DeppWang/Java-Books) | 📚 Java 程序员必读高分神作(非扫描版) | 170 | Shell | 03/28 |
| 105 | [jgsrty/jgsrty.github.docs](https://github.com/jgsrty/jgsrty.github.docs) | :sunny: 英语学习 :feet: 项目预览:https://jgsrty.github.io 国内访问:https://rtyxmd.gitee.io | 165 | Shell | 07/05 |
| 106 | [A-BenMao/pure-bash-bible-zh_CN](https://github.com/A-BenMao/pure-bash-bible-zh_CN) | 📖 一个纯bash实现外部命令的脚本集合(中文版)【翻译自pure-bash-bible仓库】 | 165 | Shell | 05/06 |
| 107 | [eritpchy/Fingerprint-pay-magisk-alipay](https://github.com/eritpchy/Fingerprint-pay-magisk-alipay) | 支付宝指纹支付 (Fingerprint pay for Alipay) | 162 | Shell | 05/12 |
| 108 | [songchenwen/nanopi-r2s](https://github.com/songchenwen/nanopi-r2s) | Openwrt for Nanopi R2S 固件编译 | 158 | Shell | 07/04 |
| 109 | [vcheckzen/FamilyCloudSpeederInShell](https://github.com/vcheckzen/FamilyCloudSpeederInShell) | [ 天翼家庭云/天翼云盘提速 Shell 版 ] A Shell Implementation of FamilyCloudSpeeder, ESurfing | 158 | Shell | 05/31 |
| 110 | [idoop/docker-apollo](https://github.com/idoop/docker-apollo) | docker image for Ctrip/Apollo(携程Apollo) | 157 | Shell | 04/23 |
| 111 | [Baiyuetribe/baiyue_onekey](https://github.com/Baiyuetribe/baiyue_onekey) | 佰阅部落一键脚本合集工具箱,集合25+优质开源项目,一步到位,全程中文交互提示,不懂代码也可以轻松搭建很多程序 | 156 | Shell | 06/17 |
| 112 | [openwrtcompileshell/OpenwrtCompileScript](https://github.com/openwrtcompileshell/OpenwrtCompileScript) | Openwrt编译辅助脚本可以帮助你更快的搭建openwrt环境,但不会帮你完成整个编译过程 | 155 | Shell | 07/06 |
| 113 | [hczhcz/the-elder-is-excited](https://github.com/hczhcz/the-elder-is-excited) | 暴力膜蛤 | 151 | Shell | 06/28 |
| 114 | [starnightcyber/Miscellaneous](https://github.com/starnightcyber/Miscellaneous) | 百宝箱 | 151 | Shell | 06/30 |
| 115 | [Lancenas/actions-openwrt-helloworld](https://github.com/Lancenas/actions-openwrt-helloworld) | Actions使用Lean's lede源码编译含helloworld服务固件 | 143 | Shell | 06/30 |
| 116 | [wangdoc/webapi-tutorial](https://github.com/wangdoc/webapi-tutorial) | Web API 教程 | 141 | Shell | 05/02 |
| 117 | [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. 一些无聊的脚本和配置文件 | 138 | Shell | 06/16 |
| 118 | [XIU2/SHELL](https://github.com/XIU2/SHELL) | 🤪 一些乱七八糟的脚本 | 131 | Shell | 06/17 |
| 119 | [wangdoc/html-tutorial](https://github.com/wangdoc/html-tutorial) | HTML 语言教程 | 130 | Shell | 07/04 |
| 120 | [lijianying10/FixLinux](https://github.com/lijianying10/FixLinux) | 记录我是如何解决一些问题的,公开我平时用的脚本,变量等。 | 129 | Shell | 03/09 |
| 121 | [hoochanlon/helpdesk-guide](https://github.com/hoochanlon/helpdesk-guide) | 📖培训机构PUA手法运营剖析、中小外包公司业务解构、换位思考解读HR;反欺骗研究,社会工程学入门实践,IT方向速成就业入职 | 130 | Shell | 07/06 |
| 122 | [Toxic-Cat/Airport-toolkit](https://github.com/Toxic-Cat/Airport-toolkit) | 各類方便機場主進行安裝維護的shell腳本 | 127 | Shell | 05/17 |
| 123 | [gdut-yy/Clean-Architecture-zh](https://github.com/gdut-yy/Clean-Architecture-zh) | 《架构整洁之道》中文翻译 | 126 | Shell | 07/05 |
| 124 | [clion007/dnsmasq](https://github.com/clion007/dnsmasq) | 全自动dnsmasq及hosts科学上网,防DNS劫持及全面广告屏蔽脚本(ADSI) | 122 | Shell | 06/08 |
| 125 | [apachecn/stanford-cs234-notes-zh](https://github.com/apachecn/stanford-cs234-notes-zh) | 斯坦福 cs234 强化学习中文讲义 | 120 | Shell | 02/07 |
| 126 | [primovist/snell.sh](https://github.com/primovist/snell.sh) | snell的一键安装脚本 | 116 | Shell | 04/12 |
| 127 | [FantasticLBP/codesnippets](https://github.com/FantasticLBP/codesnippets) | iOS 代码规范、属性、方法、GCD、线程等代码块和控制器、单例、Model 类模版 | 116 | Shell | 03/05 |
| 128 | [V2RaySSR/Tools](https://github.com/V2RaySSR/Tools) | 波仔常用的一些工具包 | 116 | Shell | 06/16 |
| 129 | [giantbranch/pwn-env-init](https://github.com/giantbranch/pwn-env-init) | CTF PWN 做题环境一键搭建脚本 | 116 | Shell | 03/18 |
| 130 | [nwcdlabs/kops-cn](https://github.com/nwcdlabs/kops-cn) | AWS中国宁夏区域/北京区域,快速Kops部署K8S集群 | 115 | Shell | 04/27 |
| 131 | [fenglh/IPABuildShell](https://github.com/fenglh/IPABuildShell) | IPABuildShell 一个强大的、轻量的 iOS 自动打包工具,无需手动指定授权文件和证书 | 113 | Shell | 06/12 |
| 132 | [yanhuacuo/98wubi-tables](https://github.com/yanhuacuo/98wubi-tables) | 98五笔基础码表 | 112 | Shell | 06/24 |
| 133 | [JinjunHan/iOSDeviceSupport](https://github.com/JinjunHan/iOSDeviceSupport) | 各个版本的iOS Device Support | 111 | Shell | 06/23 |
| 134 | [lxchuan12/blog](https://github.com/lxchuan12/blog) | 若川的博客—前端视野-资源和源代码vuepress 博客 | 111 | Shell | 06/28 |
| 135 | [s1oz/embyonekey](https://github.com/s1oz/embyonekey) | 群辉emby套件版服务端一点五键白嫖 | 109 | Shell | 05/08 |
| 136 | [levinit/itnotes](https://github.com/levinit/itnotes) | 个人笔记,IT相关。 | 108 | Shell | 06/21 |
| 137 | [lgs3137/MR_S1-macOS](https://github.com/lgs3137/MR_S1-macOS) | 机械革命S1(MSI PS42 8RB) for macOS Catalina & Mojave | 108 | Shell | 06/08 |
| 138 | [Lancger/opslinux](https://github.com/Lancger/opslinux) | Linux运维手册(基础+frp内网穿透+分布式锁+Redis+Kafka+安全+漏洞扫描+Docker+ELFK+LVM+监控+CI/CD+数据库+翻墙+LDAP+MQ+minio对象存储+命令录制审计+IP出口+gmail邮件安全校验+Jaeger 分布式追踪+苹果app安全审核+pps包转发率+网卡多队列均衡等) | 107 | Shell | 07/06 |
| 139 | [goodboy23/shell-script-collection](https://github.com/goodboy23/shell-script-collection) | shell小框架,地址:http://www.linkops.cn/363.htm | 104 | Shell | 04/15 |
| 140 | [xiaohouzivpn/xiaohouzi](https://github.com/xiaohouzivpn/xiaohouzi) | 小猴子最新后台网站 www.xiaohouzilaaa.site 小猴子安卓版https://raw.githubusercontent.com/xiaohouzivpn/xiaohouzi/master/xiaohouzijiasuqi.apk 小猴子 pc版本 https://raw.githubusercontent.com/xiaohouzivpn/xiaohouzi/master/xiaohouzipc.rar | 104 | Shell | 04/18 |
| 141 | [laubonghaudoi/Chinese_Rime](https://github.com/laubonghaudoi/Chinese_Rime) | 收集現代漢語方言和古漢語的中州韻輸入法拼音方案 Collection of phonetic spelling schemas for Sinitic languages and dialects | 104 | Shell | 07/05 |
| 142 | [veip007/dd](https://github.com/veip007/dd) | 萌咖大佬的Linux 一键DD脚本 | 103 | Shell | 04/25 |
| 143 | [analysys/argo-installer](https://github.com/analysys/argo-installer) | 方舟Argo安装工具 | 103 | Shell | 07/03 |
| 144 | [52fancy/GooGle-BBR](https://github.com/52fancy/GooGle-BBR) | GooGle开源TCP加速算法 | 103 | Shell | 02/16 |
| 145 | [apachecn/interpretable-ml-book-zh](https://github.com/apachecn/interpretable-ml-book-zh) | interpretable-ml-book中文翻译 | 102 | Shell | 06/12 |
| 146 | [mritd/shell_scripts](https://github.com/mritd/shell_scripts) | 常用的一些 shell 脚本 | 101 | Shell | 06/29 |
| 147 | [rime/rime-cantonese](https://github.com/rime/rime-cantonese) | Rime Cantonese input schema \| 粵語拼音輸入方案 | 101 | Shell | 07/07 |
| 148 | [easy-swoole/doc-old](https://github.com/easy-swoole/doc-old) | easyswoole文档 | 101 | Shell | 05/07 |
| 149 | [daliansky/Lenovo-Air13-IWL-Hackintosh](https://github.com/daliansky/Lenovo-Air13-IWL-Hackintosh) | 联想小新Air 13 IWL笔记本EFI | 101 | Shell | 06/03 |
| 150 | [1orz/My-action](https://github.com/1orz/My-action) | 自动编译-无人值守Auto release base on Github actions | 100 | Shell | 07/04 |
| 151 | [AndorChen/rbenv-china-mirror](https://github.com/AndorChen/rbenv-china-mirror) | 让 rbenv 使用 Ruby China 的镜像安装 Ruby | 99 | Shell | 01/27 |
| 152 | [TimeBye/kubeadm-ha](https://github.com/TimeBye/kubeadm-ha) | kubeadm-ha 使用 kubeadm 进行高可用 kubernetes 集群搭建,利用 ansible-playbook 实现自动化安装,既提供一键安装脚本,也可以根据 playbook 分步执行安装各个组件。 | 99 | Shell | 07/03 |
| 153 | [lightyearvpn/LightyearVPN](https://github.com/lightyearvpn/LightyearVPN) | LightyearVPN - Visit global internet without boundary. 光年VPN | 89 | Shell | 07/07 |
| 154 | [phlinhng/v2ray-tcp-tls-web](https://github.com/phlinhng/v2ray-tcp-tls-web) | V2Ray TCP+TLS+Web , V2Ray WSS+CDN , Trojan-Go 三合一脚本 | 89 | Shell | 06/25 |
| 155 | [i5ting/i5ting-mac-init](https://github.com/i5ting/i5ting-mac-init) | 自己 Mac + Node.js 电脑初始化开发环境的安装脚本 | 89 | Shell | 04/12 |
| 156 | [Binlogo/iOS-Practice-Checklist](https://github.com/Binlogo/iOS-Practice-Checklist) | iOS 精进与实践检查清单 | 88 | Shell | 03/17 |
| 157 | [mack-a/v2ray-agent](https://github.com/mack-a/v2ray-agent) | V2Ray+Websocket +TLS+Nginx+CDN+伪装博客+优选Cloudflare IP 一键脚本 | 87 | Shell | 07/07 |
| 158 | [felix-fly/v2ray-dnsmasq-dnscrypt](https://github.com/felix-fly/v2ray-dnsmasq-dnscrypt) | 路由器openwrt配置dnsmasq、doh,高性能v2ray解决方案。 | 86 | Shell | 07/03 |
| 159 | [JaderH/GreenBox](https://github.com/JaderH/GreenBox) | :game_die: 娱乐项目,使用 Crontab 定时提交 Commits。点亮绿格子;对就是绿 | 86 | Shell | 07/07 |
| 160 | [huweihuang/kubernetes-notes](https://github.com/huweihuang/kubernetes-notes) | Kubernetes 学习笔记-https://www.huweihuang.com/kubernetes-notes/ | 85 | Shell | 04/04 |
| 161 | [sprov065/soga](https://github.com/sprov065/soga) | soga v2ray 后端、trojan后端,C语言优化内存占用,支持sspanel-v3-mod-uim、v2board 等多种前端面板 | 91 | Shell | 07/06 |
| 162 | [kepuna/archiveScript](https://github.com/kepuna/archiveScript) | iOS自动打包上传到Fir平台和Appstore的脚本文件 | 87 | Shell | 07/05 |
| 163 | [orangbus/Tool](https://github.com/orangbus/Tool) | 收藏一些自己常用的东西。 | 85 | Shell | 06/25 |
| 164 | [idoop/zentao](https://github.com/idoop/zentao) | auto build docker image for zentao(禅道). | 84 | Shell | 07/06 |
| 165 | [MFrank2016/GotoSSH](https://github.com/MFrank2016/GotoSSH) | Automatic login SSH (一键登录SSH,可直接从跳板机登录到线上服务器) | 83 | Shell | 03/19 |
| 166 | [bookfere/KindleEar-Uploader](https://github.com/bookfere/KindleEar-Uploader) | 适用于 GAE 云端 Shell 的 KindleEar上传脚本。 | 81 | Shell | 04/24 |
| 167 | [kkkgo/DSM_Login_BingWallpaper](https://github.com/kkkgo/DSM_Login_BingWallpaper) | 群晖登录壁纸自动换 | 81 | Shell | 05/18 |
| 168 | [liujianping/job](https://github.com/liujianping/job) | JOB, make your short-term command as a long-term job. 将命令行规划成任务的工具 | 79 | Shell | 06/30 |
| 169 | [klionsec/SpoofWeb](https://github.com/klionsec/SpoofWeb) | 一键部署HTTPS钓鱼站 | 78 | Shell | 06/06 |
| 170 | [CloudNativeIndustryAlliance/whitepaper2020](https://github.com/CloudNativeIndustryAlliance/whitepaper2020) | 中国信息通信研究院(CAICT)云原生发展白皮书(2020)- https://cloudnativeindustryalliance.github.io/whitepaper2020/ | 77 | Shell | 07/05 |
| 171 | [xausky/ShadowsocksGostPlugin](https://github.com/xausky/ShadowsocksGostPlugin) | Gost 的 Shadowsocks 安卓插件,可以直接在 Shadowsocks 安卓客户端上连接 Gost 服务器 | 76 | Shell | 03/14 |
| 172 | [Vonng/adcode](https://github.com/Vonng/adcode) | 中国行政区划代码,包括五级行政区划详细代码,县级以上区划地理围栏。 | 75 | Shell | 03/12 |
| 173 | [rootsongjc/serverless-handbook](https://github.com/rootsongjc/serverless-handbook) | Serverless Handbook 无服务架构实践手册 - https://jimmysong.io/serverless-handbook | 74 | Shell | 04/10 |
| 174 | [HuaZhuangNan/actions-build-padavan-openwrt](https://github.com/HuaZhuangNan/actions-build-padavan-openwrt) | GitHub Action 学习实例 - 自动编译 padavan 和 openWrt | 74 | Shell | 06/23 |
| 175 | [shenuiuin/LXD_GPU_SERVER](https://github.com/shenuiuin/LXD_GPU_SERVER) | 实验室GPU服务器的LXD虚拟化 | 74 | Shell | 06/11 |
| 176 | [kirin10000/V2Ray-WebSocket-TLS-Web-setup-script](https://github.com/kirin10000/V2Ray-WebSocket-TLS-Web-setup-script) | v2ray ws tls 1.3 web nginx 搭建脚本 | 74 | Shell | 07/03 |
| 177 | [ibisheng/deploy](https://github.com/ibisheng/deploy) | onlyoffice 一键安装 :毕升文档包括drive和在线文件服务功能。其中drive实现文件的在线管理,组织结构权限,分享,团队协作等,文件的全文检索等功能;在线文件服务能够处理word,ppt,excel格式文件的带水印预览以及多人协同编辑,另外还能处理pdf,视频,音频文件的预览以及实现了100多种文本文件带语法高亮的预览 | 73 | Shell | 05/19 |
| 178 | [yejinlei/about-compiler](https://github.com/yejinlei/about-compiler) | 有关编译器 | 73 | Shell | 06/05 |
| 179 | [mdrights/LiveSlak](https://github.com/mdrights/LiveSlak) | 中文化的隐私加强 GNU/Linux 系统 - Forked from Alien Bob's powerful building script for Slackware Live. | 73 | Shell | 07/03 |
| 180 | [Lancger/opsfull](https://github.com/Lancger/opsfull) | k8s集群资料合集(高可用安装部署+应用部署+redis+mysql+kafak等各个组件生产环境使用技巧以及高可用) | 72 | Shell | 05/20 |
| 181 | [hepyu/k8s-app-config](https://github.com/hepyu/k8s-app-config) | 提供kubernetes容器化生产级实践,包含配置,参数,流程,架构等。 | 71 | Shell | 02/27 |
| 182 | [1265578519/kangle](https://github.com/1265578519/kangle) | kangle web server 最强网站性能服务器架设软件 | 71 | Shell | 06/20 |
| 183 | [snail007/goproxy-heroku](https://github.com/snail007/goproxy-heroku) | goproxy heroku 一键部署套装,把heroku变为免费的http(s)\socks5代理,搜索学习资料。 | 70 | Shell | 06/08 |
| 184 | [jinwyp/one_click_script](https://github.com/jinwyp/one_click_script) | install v2ray and trojan (trojan-go) script 一键安装 trojan 和 v2ray | 70 | Shell | 07/02 |
| 185 | [ellermister/mtproxy](https://github.com/ellermister/mtproxy) | MTProxyTLS一键安装绿色脚本 | 70 | Shell | 07/05 |
| 186 | [Hagb/docker-easyconnect](https://github.com/Hagb/docker-easyconnect) | 使深信服(Sangfor)开发的非自由的代理软件 EasyConnect 运行在 docker 中,并提供 socks5 服务 | 69 | Shell | 06/27 |
| 187 | [zealotCE/AmericaOpposeAmerica](https://github.com/zealotCE/AmericaOpposeAmerica) | 《美国反对美国》是王沪宁先生在上世纪80年代末赴美观察写作的。我们知道在那个年代中国对西方特别是美国的追捧有多高,所以突然看到一个学者在80年代就有如此清楚的认识,十分钦佩。由于网上只有效果很差的PDF扫描版,所以我想利用OCR技术和肉眼(人体OCR)来转成现代化的文本格式。目前已经全部完成。 | 67 | Shell | 04/28 |
| 188 | [Ljohn001/ljohn_ops](https://github.com/Ljohn001/ljohn_ops) | Linux运维工作中常用的shell脚本 | 67 | Shell | 03/20 |
| 189 | [abcfyk/impatriot](https://github.com/abcfyk/impatriot) | 科学上网,理性爱国 | 67 | Shell | 05/13 |
| 190 | [KingFalse/ohmyiterm2](https://github.com/KingFalse/ohmyiterm2) | 快速安装一个漂亮且强大的iterm2 | 66 | Shell | 06/19 |
| 191 | [fanck0605/nanopi-r2s](https://github.com/fanck0605/nanopi-r2s) | 使用 Github Actions 在线编译 NanoPi-R2s 固件 | 66 | Shell | 07/06 |
| 192 | [Pinming/Dell-Inspiron-7590-Hackintosh-Opencore](https://github.com/Pinming/Dell-Inspiron-7590-Hackintosh-Opencore) | OpenCore EFI for Dell Inspiron 7590 / 7591. 【期末将近,7/5 前除出现重大 Bug 不再更新;issue 暂时不做解答,敬请谅解!部分容易解决的问题请善用搜索。】国内用户也可以去 Gitee,下载速度更快→ | 65 | Shell | 06/03 |
| 193 | [V2RaySSR/Trojan_panel_web](https://github.com/V2RaySSR/Trojan_panel_web) | 一键更改 Trojan-Panel 面板端口并设置伪装站点 | 63 | Shell | 05/29 |
| 194 | [klionsec/PhishingInstall](https://github.com/klionsec/PhishingInstall) | 发信平台自动化部署 | 63 | Shell | 06/13 |
| 195 | [BlockchainOne/WeChat](https://github.com/BlockchainOne/WeChat) | 区块链技术指北(ChainONE)社区微信群价值信息汇总。 | 61 | Shell | 07/05 |
| 196 | [hegphegp/docker-learning](https://github.com/hegphegp/docker-learning) | docker学习笔记 | 60 | Shell | 06/26 |
| 197 | [neroxps/hassio_install](https://github.com/neroxps/hassio_install) | hassio 一键脚本,适配国内网络环境目前兼容(Debian Ubuntu Raspbian) | 59 | Shell | 05/27 |
| 198 | [cloud-op/monitor](https://github.com/cloud-op/monitor) | 云产品功能监控 | 59 | Shell | 06/03 |
| 199 | [klionsec/VpsEnvInstall](https://github.com/klionsec/VpsEnvInstall) | 一键部署VPS渗透环境 | 57 | Shell | 06/13 |
| 200 | [gdut-yy/Clean-Code-zh](https://github.com/gdut-yy/Clean-Code-zh) | 《代码整洁之道》中文翻译 | 57 | Shell | 06/25 |
⬆ [回到目录](#目录)
<br/>
## C
| # | Repository | Description | Stars | Language | Updated |
| ---- | ------------------------------------------------------------ | ------------------------------------------------------------ | ----- | -------- | ------- |
| 1 | [QSCTech/zju-icicles](https://github.com/QSCTech/zju-icicles) | 浙江大学课程攻略共享计划 | 18.3k | C | 07/07 |
| 2 | [Awesome-HarmonyOS/HarmonyOS](https://github.com/Awesome-HarmonyOS/HarmonyOS) | A curated list of awesome things related to HarmonyOS. 华为鸿蒙操作系统。 | 13.7k | C | 01/26 |
| 3 | [skywind3000/kcp](https://github.com/skywind3000/kcp) | KCP - A Fast and Reliable ARQ Protocol (快速可靠传输协议) | 8.3k | C | 04/24 |
| 4 | [bingoogolapple/BGAQRCode-Android](https://github.com/bingoogolapple/BGAQRCode-Android) | QRCode 扫描二维码、扫描条形码、相册获取图片后识别、生成带 Logo 二维码、支持微博微信 QQ 二维码扫描样式 | 6.7k | C | 07/03 |
| 5 | [huangz1990/redis-3.0-annotated](https://github.com/huangz1990/redis-3.0-annotated) | 带有详细注释的 Redis 3.0 代码(annotated Redis 3.0 source code)。 | 6.4k | C | 04/23 |
| 6 | [EZLippi/Tinyhttpd](https://github.com/EZLippi/Tinyhttpd) | Tinyhttpd 是J. David Blackstone在1999年写的一个不到 500 行的超轻量型 Http Server,用来学习非常不错,可以帮助我们真正理解服务器程序的本质。官网:http://tinyhttpd.sourceforge.net | 5.5k | C | 06/16 |
| 7 | [nonstriater/Learn-Algorithms](https://github.com/nonstriater/Learn-Algorithms) | 算法学习笔记 | 4.7k | C | 05/28 |
| 8 | [Tencent/TencentOS-tiny](https://github.com/Tencent/TencentOS-tiny) | 腾讯物联网终端操作系统 | 4.4k | C | 07/03 |
| 9 | [SecWiki/windows-kernel-exploits](https://github.com/SecWiki/windows-kernel-exploits) | windows-kernel-exploits Windows平台提权漏洞集合 | 4.4k | C | 06/16 |
| 10 | [miloyip/json-tutorial](https://github.com/miloyip/json-tutorial) | 从零开始的 JSON 库教程 | 3.5k | C | 05/26 |
| 11 | [SecWiki/linux-kernel-exploits](https://github.com/SecWiki/linux-kernel-exploits) | linux-kernel-exploits Linux平台提权漏洞集合 | 3.4k | C | 03/30 |
| 12 | [mabeijianxi/small-video-record](https://github.com/mabeijianxi/small-video-record) | 利用FFmpeg视频录制微信小视频与其压缩处理 | 3.2k | C | 06/13 |
| 13 | [linw7/Skill-Tree](https://github.com/linw7/Skill-Tree) | 🐼 准备秋招,欢迎来树上取果实 | 3.0k | C | 03/04 |
| 14 | [pymumu/smartdns](https://github.com/pymumu/smartdns) | A local DNS server to obtain the fastest website IP for the best Internet experience, 一个本地DNS服务器,获取最快的网站IP,获得最佳上网体验。 | 2.7k | C | 05/10 |
| 15 | [WizTeam/WizQTClient](https://github.com/WizTeam/WizQTClient) | 为知笔记跨平台客户端 | 2.2k | C | 06/24 |
| 16 | [huangz1990/annotated_redis_source](https://github.com/huangz1990/annotated_redis_source) | 带有详细注释的 Redis 2.6 源码 | 2.2k | C | 01/01 |
| 17 | [microshow/RxFFmpeg](https://github.com/microshow/RxFFmpeg) | 🔥RxFFmpeg 是基于 ( FFmpeg 4.0 + X264 + mp3lame + fdk-aac ) 编译的适用于 Android 平台的音视频编辑、视频剪辑的快速处理框架,包含以下功能:视频拼接,转码,压缩,裁剪,片头片尾,分离音视频,变速,添加静态贴纸和gif动态贴纸,添加字幕,添加滤镜,添加背景音乐,加速减速视频,倒放音视频,音频裁剪,变声,混音,图片合成视频,视频解码图片,抖音首页,视频播放器及支持 OpenSSL https 等主流特色功能 | 2.2k | C | 07/04 |
| 18 | [chiakge/Linux-NetSpeed](https://github.com/chiakge/Linux-NetSpeed) | 将Linux现常用的网络加速集成在一起 | 2.1k | C | 03/11 |
| 19 | [Mzzopublic/C](https://github.com/Mzzopublic/C) | C语言 | 2.0k | C | 03/06 |
| 20 | [firmianay/CTF-All-In-One](https://github.com/firmianay/CTF-All-In-One) | CTF竞赛入门指南 | 1.9k | C | 06/10 |
| 21 | [guanzhi/GmSSL](https://github.com/guanzhi/GmSSL) | 支持国密SM2/SM3/SM4/SM9/ZUC/SSL的OpenSSL分支 | 1.8k | C | 07/07 |
| 22 | [xufuji456/FFmpegAndroid](https://github.com/xufuji456/FFmpegAndroid) | android端基于FFmpeg实现音频剪切、拼接、转码、混音、编解码;视频剪切、水印、截图、转码、编解码、转Gif动图、画面拼接、视频倒播;音视频合成与分离;音视频解码、同步与播放;FFmpeg本地推流、H264与RTMP实时推流直播;OpenGL实时滤镜;FFmpeg滤镜:素描、色彩平衡、hue、lut、模糊、九宫格等;基于IjkPlayer修改支持RTSP超低延时直播(局域网1080P延时130ms)、暂停、静音,多路投屏直播 | 1.7k | C | 06/18 |
| 23 | [EZLippi/WebBench](https://github.com/EZLippi/WebBench) | Webbench是Radim Kolar在1997年写的一个在linux下使用的非常简单的网站压测工具。它使用fork()模拟多个客户端同时访问我们设定的URL,测试网站在压力下工作的性能,最多可以模拟3万个并发连接去测试网站的负载能力。官网地址:http://home.tiscali.cz/~cz210552/webbench.html | 1.7k | C | 02/14 |
| 24 | [ShadowsocksR-Live/shadowsocksr-native](https://github.com/ShadowsocksR-Live/shadowsocksr-native) | 从容翻越党国敏感日 ShadowsocksR (SSR) native implementation for all platforms, GFW terminator | 1.7k | C | 07/04 |
| 25 | [yangchaojiang/yjPlay](https://github.com/yangchaojiang/yjPlay) | 一个支持自定义UI布局,流式API, 加密,直播 ,亮度,音量,快进等手势 ,广告视频预览,多种加载模式 ,多种分辨率切换 ,多种封面图, 自定义数据源,列表播放,倍数播放,边播变缓存<font color="red">不是使用AndroidVideoCache</font>,离线播放,神奇的播放器 | 1.6k | C | 05/22 |
| 26 | [loyinglin/LearnOpenGLES](https://github.com/loyinglin/LearnOpenGLES) | OpenGL ES的各种尝试,有详细的博客。 | 1.4k | C | 03/17 |
| 27 | [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++ 日志库 | 1.3k | C | 06/27 |
| 28 | [Ewenwan/ShiYanLou](https://github.com/Ewenwan/ShiYanLou) | 学习C & C++ & python&汇编语言 LLVM编译器 数据结构 算法 操作系统 单片机 linux 面试 | 1.1k | C | 07/07 |
| 29 | [session-replay-tools/cetus](https://github.com/session-replay-tools/cetus) | 专注于稳定、性能和分布式事务的MySQL数据库中间件(其中性能测试在开源数据库中间件排名第一) | 1.1k | C | 06/17 |
| 30 | [kangjianwei/Data-Structure](https://github.com/kangjianwei/Data-Structure) | 《数据结构》-严蔚敏.吴伟民-教材源码与习题解析 | 1.1k | C | 04/29 |
| 31 | [momotech/MLN](https://github.com/momotech/MLN) | 高性能、小巧、易上手的移动跨平台开发框架. A framework for building Mobile cross-platform apps with Lua | 1.1k | C | 07/07 |
| 32 | [armink/EasyFlash](https://github.com/armink/EasyFlash) | Lightweight IoT device information storage solution: KV/IAP/LOG. \| 轻量级物联网设备信息存储方案:参数存储、在线升级及日志存储 ,全新一代版本请移步至 https://github.com/armink/FlashDB | 1.1k | C | 05/24 |
| 33 | [cppla/ServerStatus](https://github.com/cppla/ServerStatus) | 云探针、多服务器探针、云监控、多服务器云监控,演示: https://tz.cloudcpp.com/ | 934 | C | 06/29 |
| 34 | [feiyangqingyun/QWidgetDemo](https://github.com/feiyangqingyun/QWidgetDemo) | Qt编写的一些开源的demo,预计会有100多个,一直持续更新完善,代码简洁易懂注释详细,每个都是独立项目,非常适合初学者,代码随意传播使用,拒绝打赏和捐赠,欢迎留言评论! | 934 | C | 07/04 |
| 35 | [gatieme/LDD-LinuxDeviceDrivers](https://github.com/gatieme/LDD-LinuxDeviceDrivers) | Linux内核与设备驱动程序学习笔记 | 884 | C | 07/05 |
| 36 | [SunshineBrother/JHBlog](https://github.com/SunshineBrother/JHBlog) | iOS开发:我的初级到中级的晋级之路 | 840 | C | 06/30 |
| 37 | [netwarm007/GameEngineFromScratch](https://github.com/netwarm007/GameEngineFromScratch) | 配合我的知乎专栏写的项目 | 826 | C | 06/28 |
| 38 | [Simple-XX/SimpleKernel](https://github.com/Simple-XX/SimpleKernel) | Simple kernel for learning operating systems. 用于学习操作系统的简单内核 | 786 | C | 07/07 |
| 39 | [BruceWind/AESJniEncrypt](https://github.com/BruceWind/AESJniEncrypt) | Make the most secure code in Android. (ndk实现AES,key在native中,防止被二次打包){长期维护,请star,勿fork} | 772 | C | 02/14 |
| 40 | [yianwillis/vimcdoc](https://github.com/yianwillis/vimcdoc) | Vim 中文文档计划 | 736 | C | 07/06 |
| 41 | [feiskyer/sdn-handbook](https://github.com/feiskyer/sdn-handbook) | SDN网络指南(SDN Handbook) | 711 | C | 05/22 |
| 42 | [hurley25/hurlex-doc](https://github.com/hurley25/hurlex-doc) | hurlex 小内核分章节代码和文档 | 708 | C | 06/15 |
| 43 | [rock-app/fabu.love](https://github.com/rock-app/fabu.love) | 应用发布平台类似fir.im/蒲公英,支持检查更新,灰度发布等等.Demo地址:https://fabu.apppills.com/ | 704 | C | 07/02 |
| 44 | [armink/FreeModbus_Slave-Master-RTT-STM32](https://github.com/armink/FreeModbus_Slave-Master-RTT-STM32) | Add master mode to FreeModbus. \| 在 FreeModbus 中添加主机模式 | 693 | C | 05/19 |
| 45 | [armink/CmBacktrace](https://github.com/armink/CmBacktrace) | Advanced fault backtrace library for ARM Cortex-M series MCU \| ARM Cortex-M 系列 MCU 错误追踪库 | 676 | C | 03/30 |
| 46 | [hoverwinter/HIT-OSLab](https://github.com/hoverwinter/HIT-OSLab) | S - 哈工大《操作系统》实验 | 618 | C | 07/05 |
| 47 | [feiskyer/linux-perf-examples](https://github.com/feiskyer/linux-perf-examples) | 极客时间《Linux 性能优化实战》案例 | 589 | C | 01/31 |
| 48 | [Tencent/TencentOS-kernel](https://github.com/Tencent/TencentOS-kernel) | 腾讯针对云的场景研发的服务器操作系统 | 570 | C | 07/07 |
| 49 | [yourtion/LearningMasteringAlgorithms-C](https://github.com/yourtion/LearningMasteringAlgorithms-C) | Mastering Algorithms with C 《算法精解:C语言描述》源码及Xcode工程、Linux工程 | 562 | C | 06/01 |
| 50 | [daoluan/decode-memcached](https://github.com/daoluan/decode-memcached) | memcached 源码剖析注释 | 558 | C | 05/25 |
| 51 | [ChenLittlePing/LearningVideo](https://github.com/ChenLittlePing/LearningVideo) | 【Android 音视频开发打怪升级】系列文章示例代码(A demo to introduce how to develop android video)。本项目将从MediaCodec硬解,FFmpeg软解,OpenGL等方面,全方位讲解如何在Android上进行音视频编辑开发。 | 525 | C | 06/08 |
| 52 | [u0u0/Quick-Cocos2dx-Community](https://github.com/u0u0/Quick-Cocos2dx-Community) | Cocos2d-Lua 社区版 | 491 | C | 07/07 |
| 53 | [lihancong/tonyenc](https://github.com/lihancong/tonyenc) | 高性能、跨平台的 PHP7 代码加密扩展 (A high performance and cross-platform encrypt extension for PHP source code) | 491 | C | 07/01 |
| 54 | [vonzhou/CSAPP](https://github.com/vonzhou/CSAPP) | CSAPP,《深入理解计算机系统结构》2nd ,阅读与实践! | 482 | C | 04/25 |
| 55 | [CokeMine/ServerStatus-Hotaru](https://github.com/CokeMine/ServerStatus-Hotaru) | 云探针、多服务器探针、云监控、多服务器云监控 | 479 | C | 06/24 |
| 56 | [wuzhouhui/misc](https://github.com/wuzhouhui/misc) | 学习与工作中收集的一些资料 | 479 | C | 03/22 |
| 57 | [armink/SFUD](https://github.com/armink/SFUD) | An using JEDEC's SFDP standard serial (SPI) flash universal driver library \| 一款使用 JEDEC SFDP 标准的串行 (SPI) Flash 通用驱动库 | 470 | C | 06/14 |
| 58 | [del-xiong/screw-plus](https://github.com/del-xiong/screw-plus) | 开源php加密运行扩展,基于screw二次开发,暂时只能在linux下运行 | 445 | C | 07/02 |
| 59 | [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 ... | 442 | C | 07/06 |
| 60 | [aliyun/iotkit-embedded](https://github.com/aliyun/iotkit-embedded) | 高速镜像: https://code.aliyun.com/linkkit/c-sdk | 441 | C | 07/07 |
| 61 | [vimfung/LuaScriptCore](https://github.com/vimfung/LuaScriptCore) | 一款简单易用的多平台Lua桥接器,目前支持在iOS、Mac OS X、Android以及Unity3D中使用,让原生环境与Lua无障碍沟通。 | 435 | C | 05/10 |
| 62 | [rime/ibus-rime](https://github.com/rime/ibus-rime) | 【中州韻】Rime for Linux/IBus | 425 | C | 07/07 |
| 63 | [destan19/OpenAppFilter](https://github.com/destan19/OpenAppFilter) | 基于OpenWrt的App过滤(家长控制)模块,支持抖音、斗鱼、王者荣耀、腾讯视频等上百款App过滤 | 414 | C | 07/03 |
| 64 | [aqi00/android2](https://github.com/aqi00/android2) | 《Android Studio开发实战:从零基础到App上线》随书源码(全面添加注释版) | 413 | C | 06/09 |
| 65 | [aliyun/rds_dbsync](https://github.com/aliyun/rds_dbsync) | 围绕 PostgreSQL Greenplum ,实现易用的数据的互迁功能项目 | 405 | C | 06/15 |
| 66 | [dlxg/Linux-NetSpeed](https://github.com/dlxg/Linux-NetSpeed) | BBR+BBR魔改+Lotsever(锐速)一键脚本 for Centos/Debian/Ubuntu | 396 | C | 04/23 |
| 67 | [CoderMJLee/MJCodeObfuscation](https://github.com/CoderMJLee/MJCodeObfuscation) | 一个用于代码混淆和字符串加密的Mac小Demo | 392 | C | 01/04 |
| 68 | [chenall/grub4dos](https://github.com/chenall/grub4dos) | 外部命令和工具源码:https://github.com/chenall/grubutils 下载: | 380 | C | 04/02 |
| 69 | [CasterWx/AntzOS](https://github.com/CasterWx/AntzOS) | :earth_asia: Develop an intelligent AI half terminal half graphical operating system Antz. 一个随心所欲制造的操作系统Antz。 | 379 | C | 03/12 |
| 70 | [nauxliu/opencc4php](https://github.com/nauxliu/opencc4php) | 简繁体转换 PHP 扩展 | 367 | C | 06/04 |
| 71 | [osgochina/donkeyid](https://github.com/osgochina/donkeyid) | php扩展,64位自增id生成器 | 361 | C | 06/03 |
| 72 | [zsummer/breeze](https://github.com/zsummer/breeze) | 一个C++的轻量级的分布式服务器引擎, 架构思想为一切皆service. | 361 | C | 06/15 |
| 73 | [armink/struct2json](https://github.com/armink/struct2json) | A fast convert library between the JSON and C structure. Implement structure serialization and deserialization for C. \| C 结构体与 JSON 快速互转库,快速实现 C 结构体的序列化及反序列化 | 346 | C | 02/23 |
| 74 | [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) | 345 | C | 06/03 |
| 75 | [hurley25/Hurlex-II](https://github.com/hurley25/Hurlex-II) | 第二版重新设计和构思,参考一些优秀的实现进行补充设计和编码。 | 345 | C | 04/09 |
| 76 | [Exely/CSAPP-Labs](https://github.com/Exely/CSAPP-Labs) | Solutions and Notes for Labs of Computer Systems: A Programmer's Perspective 3rd Editon // 《深入理解计算机系统》第三版的实验文件、解答与笔记 | 335 | C | 06/07 |
| 77 | [froghui/yolanda](https://github.com/froghui/yolanda) | 极客时间<网络编程实战>代码 | 327 | C | 05/24 |
| 78 | [picasso250/spring12](https://github.com/picasso250/spring12) | 春节十二响 | 322 | C | 03/14 |
| 79 | [FantasticLBP/knowledge-kit](https://github.com/FantasticLBP/knowledge-kit) | iOS、Web前端、后端、数据库、计算机网络、设计模式经验总结 | 313 | C | 07/06 |
| 80 | [MustangYM/WeChatICU-ForMac](https://github.com/MustangYM/WeChatICU-ForMac) | Mac版企业微信消息防撤回, 聊天会话去水印 | 311 | C | 02/03 |
| 81 | [figozhang/runninglinuxkernel_4.0](https://github.com/figozhang/runninglinuxkernel_4.0) | 《奔跑吧Linux内核》配套实验平台和代码,白色入门酱香篇,蓝色进阶浓香篇 | 302 | C | 06/22 |
| 82 | [chenyahui/AnnotatedCode](https://github.com/chenyahui/AnnotatedCode) | 知名开源代码库的注释版,包括libco、coroutine、muduo等 | 302 | C | 06/23 |
| 83 | [huangz1990/blog](https://github.com/huangz1990/blog) | 我的个人博客。 | 301 | C | 07/02 |
| 84 | [chronolaw/annotated_nginx](https://github.com/chronolaw/annotated_nginx) | Annotated Nginx Source(中文) | 291 | C | 07/07 |
| 85 | [elarity/data-structure-php-clanguage](https://github.com/elarity/data-structure-php-clanguage) | 对于数据结构和算法类的东西,我工作有些年份了,大学也有所涉猎,积累了一些内容,不高产不母猪,打我自己脸 | 290 | C | 05/07 |
| 86 | [konosubakonoakua/Various_MCU_Debugger_DIY](https://github.com/konosubakonoakua/Various_MCU_Debugger_DIY) | 各种LInk大合集 | 282 | C | 04/30 |
| 87 | [xausky/UnityModManager](https://github.com/xausky/UnityModManager) | 一个便捷的程序可以修改游戏内资源包括:Unity游戏资源,Wwise音频资源。 | 271 | C | 01/13 |
| 88 | [shineframe/shineframe](https://github.com/shineframe/shineframe) | 高性能超轻量级C++开发库及服务器编程框架 | 262 | C | 05/11 |
| 89 | [Greedysky/TTKWidgetTools](https://github.com/Greedysky/TTKWidgetTools) | QWidget 自定义控件集合 持续更新中...... | 254 | C | 07/07 |
| 90 | [MiEcosystem/miio_open](https://github.com/MiEcosystem/miio_open) | 智能硬件接入文档 | 250 | C | 03/20 |
| 91 | [AngelKitty/review_the_national_post-graduate_entrance_examination](https://github.com/AngelKitty/review_the_national_post-graduate_entrance_examination) | 🌟复习考研的那些事儿(清华912考研)~~ | 249 | C | 01/01 |
| 92 | [zlgopen/ametal](https://github.com/zlgopen/ametal) | 芯片级裸机软件包,定义了一系列常用外设(如:UART、IIC、SPI、ADC等)的通用接口,基于通用接口的应用可以跨平台复用。 | 248 | C | 07/01 |
| 93 | [murphyzhao/FlexibleButton](https://github.com/murphyzhao/FlexibleButton) | 灵活的按键处理库(Flexible Button)\| 按键驱动 \| 支持单击、双击、连击、长按、自动消抖 \| 灵活适配中断和低功耗 \| 按需实现组合按键 | 244 | C | 04/12 |
| 94 | [QingdaoU/Judger](https://github.com/QingdaoU/Judger) | Online judge sandbox based on seccomp \| OnlineJudge 安全沙箱 | 243 | C | 07/06 |
| 95 | [guanshuicheng/invoice](https://github.com/guanshuicheng/invoice) | 增值税发票OCR识别,使用flask微服务架构,识别type:增值税电子普通发票,增值税普通发票,增值税专用发票;识别字段为:发票代码、发票号码、开票日期、校验码、税后金额等 | 238 | C | 01/29 |
| 96 | [wuxx/nanoDAP](https://github.com/wuxx/nanoDAP) | 建议大家star此仓库,仓库会持续更新。由于部分淘宝卖家“借鉴”实验室出品的nanoDAP详情及描述,请大家认准实验室官方链接 | 238 | C | 06/09 |
| 97 | [wangbojing/NtyTcp](https://github.com/wangbojing/NtyTcp) | 单线程用户态TCP/IP协议栈,epoll实现,包含服务器案例,并发测试案例 | 237 | C | 07/04 |
| 98 | [OliverLew/PAT](https://github.com/OliverLew/PAT) | PAT OJ exercises in C language 浙江大学PAT纯C语言题解,欢迎改进建议 | 224 | C | 05/25 |
| 99 | [lcodecorex/KeepAlive](https://github.com/lcodecorex/KeepAlive) | Fighting against force-stop kill process on Android with binder ioctl / Android高级保活 | 223 | C | 05/30 |
| 100 | [dpull/skynet-mingw](https://github.com/dpull/skynet-mingw) | 对skynet无任何改动的windows版 | 223 | C | 06/25 |
| 101 | [hanson-young/nniefacelib](https://github.com/hanson-young/nniefacelib) | nniefacelib是一个在海思35xx系列芯片上运行的人脸算法库 | 220 | C | 05/15 |
| 102 | [LGCooci/objc4_debug](https://github.com/LGCooci/objc4_debug) | 可编译苹果官方源码objc!现在有objc4-750,objc4-756.2,objc4-779.1,以及libmalloc-166.200.60等可编译版本,大家可以自由LLDB调试! | 219 | C | 03/05 |
| 103 | [wangbojing/NtyCo](https://github.com/wangbojing/NtyCo) | 纯c版本的协程实现,汇编切换,调度器实现,包含服务器端案例,客户端并发测试案例 | 208 | C | 07/04 |
| 104 | [scriptiot/evm](https://github.com/scriptiot/evm) | 超轻量级物联网虚拟机 | 205 | C | 06/26 |
| 105 | [notrynohigh/BabyOS](https://github.com/notrynohigh/BabyOS) | 专为MCU项目开发提速的代码框架 | 199 | C | 06/27 |
| 106 | [zpoint/Redis-Internals](https://github.com/zpoint/Redis-Internals) | Analyze redis 5.0 source code through diagrams \| 图解 Redis 5.0 | 198 | C | 07/04 |
| 107 | [fanchy/h2engine](https://github.com/fanchy/h2engine) | H2服务器引擎架构是轻量级的,与其说是引擎,个人觉得称之为平台更为合适。因为它封装的功能少之又少,但是提供了非常简洁方便的扩展机制,使得可以用C++、python、lua、js、php来开发具体的服务器功能。H2引擎的灵感来源于web服务器Apache。 | 197 | C | 06/18 |
| 108 | [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. | 197 | C | 02/17 |
| 109 | [peng-zhihui/ONE-Robot](https://github.com/peng-zhihui/ONE-Robot) | 2015年做的一个基于IMU和STM32的独轮自平衡机器人 | 197 | C | 02/15 |
| 110 | [PHZ76/DesktopSharing](https://github.com/PHZ76/DesktopSharing) | 桌面共享, 支持RTSP转发, RTSP推流, RTMP推流。 | 196 | C | 07/07 |
| 111 | [zxystd/AppleIntelWifiAdapter](https://github.com/zxystd/AppleIntelWifiAdapter) | 苹果IO80211Controller调用 | 194 | C | 04/22 |
| 112 | [usbxyz/CAN-Bootloader](https://github.com/usbxyz/CAN-Bootloader) | 使用USB2XXX实现的CAN Bootloader功能,实现CAN节点固件远程升级 | 190 | C | 05/11 |
| 113 | [UncP/aili](https://github.com/UncP/aili) | the fastest in-memory index in the East 东半球最快并发索引 | 187 | C | 07/01 |
| 114 | [maxlicheng/stm32f4_ucosii_lwip_mqtt](https://github.com/maxlicheng/stm32f4_ucosii_lwip_mqtt) | 基于正点原子STM32F4开发板和阿里云物联网平台的MQTT项目 | 171 | C | 03/15 |
| 115 | [Wangzhike/HIT-Linux-0.11](https://github.com/Wangzhike/HIT-Linux-0.11) | 网易云课堂选的操作系统课实验的代码及相关记录 | 170 | C | 04/14 |
| 116 | [deepwzh/sdust-examination-materials](https://github.com/deepwzh/sdust-examination-materials) | 山东科技大学课程资源共享计划 | 166 | C | 07/01 |
| 117 | [armfly/H7-TOOL_STM32H7_App](https://github.com/armfly/H7-TOOL_STM32H7_App) | 单片机APP程序 | 165 | C | 06/04 |
| 118 | [Echocipher/AUTO-EARN](https://github.com/Echocipher/AUTO-EARN) | 一个利用OneForAll进行子域收集、Shodan API端口扫描、Xray漏洞Fuzz、Server酱的自动化漏洞扫描、即时通知提醒的漏洞挖掘辅助工具 | 161 | C | 05/25 |
| 119 | [depthlove/FFmpeg-X264-Encode-for-iOS](https://github.com/depthlove/FFmpeg-X264-Encode-for-iOS) | 利用FFmpeg+x264将iOS摄像头实时视频流编码为h264文件 | 158 | C | 03/15 |
| 120 | [eboxmaker/eBox_Framework](https://github.com/eboxmaker/eBox_Framework) | ebox是类似于arduino的一层api,简化stm32编程 | 158 | C | 06/18 |
| 121 | [xuhongv/StudyInEsp32](https://github.com/xuhongv/StudyInEsp32) | 【深度开源】wiif+bt模块esp32学习之旅(持续更新,欢迎 Star...) | 152 | C | 06/14 |
| 122 | [ouyanghuiyu/darknet_face_with_landmark](https://github.com/ouyanghuiyu/darknet_face_with_landmark) | 加入关键点的darknet训练框架,轻量级的人脸检测,支持ncnn推理 | 150 | C | 06/15 |
| 123 | [Lojii/Knot](https://github.com/Lojii/Knot) | 一款iOS端基于MITM(中间人攻击技术)实现的HTTPS抓包工具,完整的App | 149 | C | 06/18 |
| 124 | [CreativeLau/Mini-DSO](https://github.com/CreativeLau/Mini-DSO) | 用STC单片机制作的简易示波器 / DIY Mini Digital Storage Oscilloscopes(DSO) with STC MCU | 148 | C | 05/16 |
| 125 | [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两种模式! | 146 | C | 07/06 |
| 126 | [switch-iot/hin2n](https://github.com/switch-iot/hin2n) | n2n support for mobiles(n2n手机版) | 146 | C | 07/06 |
| 127 | [dustpg/StepFC](https://github.com/dustpg/StepFC) | Make FC(NES) Emulator Step-by-Step 一步一步模拟红白机 | 145 | C | 07/02 |
| 128 | [timwhitez/Cobalt-Strike-Aggressor-Scripts](https://github.com/timwhitez/Cobalt-Strike-Aggressor-Scripts) | Cobalt Strike Aggressor 插件包 | 144 | C | 04/23 |
| 129 | [xinyang-go/SJTU-RM-CV-2019](https://github.com/xinyang-go/SJTU-RM-CV-2019) | 上海交通大学 RoboMaster 2019赛季 视觉代码 | 142 | C | 01/02 |
| 130 | [zkwlx/ADI](https://github.com/zkwlx/ADI) | ADI(Android Debug Intensive) 是通过 JVMTI 实现的 Android 应用开发调试的增强工具集,目前主要提供性能相关的监控能力。 | 140 | C | 02/13 |
| 131 | [kyzhouhzau/Clinical-NER](https://github.com/kyzhouhzau/Clinical-NER) | 面向中文电子病历的命名实体识别 | 138 | C | 05/19 |
| 132 | [zhuotong/Android_InlineHook](https://github.com/zhuotong/Android_InlineHook) | Android内联hook框架 | 137 | C | 01/08 |
| 133 | [gnbdev/gnb](https://github.com/gnbdev/gnb) | GNB is open source de-centralized VPN to achieve layer3 network via p2p with the ultimate capability of NAT Traversal.GNB是一个开源的去中心化的具有极致内网穿透能力的通过P2P进行三层网络交换的VPN。 | 134 | C | 07/04 |
| 134 | [luoweipeter/C](https://github.com/luoweipeter/C) | c/c++ 学习记录 | 133 | C | 04/12 |
| 135 | [sky-big/Linux-0.12](https://github.com/sky-big/Linux-0.12) | Linux0.12内核代码中文注释+在高版本GCC 5.4.0 + Ubuntu 16.04中编译成功并在Bochs正常测试运行 | 129 | C | 07/07 |
| 136 | [404name/winter](https://github.com/404name/winter) | 答辩作品0(2020上半年C程序) | 127 | C | 06/22 |
| 137 | [fujie-xiyou/chat_room](https://github.com/fujie-xiyou/chat_room) | 聊天室 -- 17年暑假项目(Linux C网络编程) | 124 | C | 01/09 |
| 138 | [wonderkun/CTFENV](https://github.com/wonderkun/CTFENV) | 为应对CTF比赛而搭建的各种环境 | 122 | C | 05/09 |
| 139 | [jiejieTop/ButtonDrive](https://github.com/jiejieTop/ButtonDrive) | 纯C语言实现的一个按键驱动,可移植性强,支持单双击、连按、连按释放、长按;采用回调处理按键事件(自定义消抖时间),使用只需3步,1:创建按键,2:按键事件与回调处理函数链接映射。然后周期检查按键。 | 121 | C | 06/08 |
| 140 | [xiayuanquan/FFmpegDemo](https://github.com/xiayuanquan/FFmpegDemo) | 视频直播和播放转码器框架 | 120 | C | 01/06 |
| 141 | [RainbowRoad1/Cgame](https://github.com/RainbowRoad1/Cgame) | 一些用C编写的小游戏,14行贪吃蛇 30行俄罗斯方块 28行2048 25行扫雷...以及各种小玩意 | 115 | C | 07/05 |
| 142 | [yangfei963158659/nnie](https://github.com/yangfei963158659/nnie) | 重构海思sample中的NNIE模块 | 113 | C | 04/01 |
| 143 | [YJLAugus/Inios](https://github.com/YJLAugus/Inios) | 从零开发一32位操作系统 | 111 | C | 01/02 |
| 144 | [MeiK2333/apue](https://github.com/MeiK2333/apue) | 《UNIX环境高级编程》随书代码与课后习题 | 111 | C | 02/24 |
| 145 | [qq4108863/hihttps](https://github.com/qq4108863/hihttps) | hihttps是一款完整源码的高性能web应用防火墙,既支持传统WAF的所有功能如SQL注入、XSS、恶意漏洞扫描、密码暴力破解、CC、DDOS等ModSecurity正则规则,又支持无监督机器学习,自主对抗未知攻击。 | 108 | C | 06/12 |
| 146 | [doctording/os](https://github.com/doctording/os) | 《操作系统真相还原》笔记 | 108 | C | 03/25 |
| 147 | [MarioCrane/LeaueLobby](https://github.com/MarioCrane/LeaueLobby) | 英雄联盟自定义房间创建工具,包括5V5训练营,血月杀等模式 | 107 | C | 06/20 |
| 148 | [Chocolatl/qqlight-websocket](https://github.com/Chocolatl/qqlight-websocket) | QQLight机器人WebSocket-RPC插件,让你能够使用任何语言编写QQ机器人程序 | 105 | C | 03/05 |
| 149 | [uknowsec/getSystem](https://github.com/uknowsec/getSystem) | webshell下提权执行命令 Reference:https://github.com/yusufqk/SystemToken | 103 | C | 04/23 |
| 150 | [Embedfire/embed_linux_tutorial](https://github.com/Embedfire/embed_linux_tutorial) | 野火《i.MX Linux开发实战指南》书籍及代码 | 101 | C | 07/07 |
| 151 | [yundiantech/VideoPlayer](https://github.com/yundiantech/VideoPlayer) | Qt+ffmpeg实现的视频播放器 | 100 | C | 05/08 |
| 152 | [zhouchangxun/ngx_healthcheck_module](https://github.com/zhouchangxun/ngx_healthcheck_module) | nginx module for upstream servers health check. support stream and http upstream. 该模块可以为Nginx提供主动式后端服务器健康检查的功能(同时支持四层和七层后端服务器的健康检测) | 96 | C | 07/02 |
| 153 | [armink/FlashDB](https://github.com/armink/FlashDB) | A lightweight database that supports key-value and time series data \| 一款支持 KV 数据和时序数据的轻量级数据库 | 95 | C | 07/07 |
| 154 | [xyzmos/GeekDNS](https://github.com/xyzmos/GeekDNS) | GeekDNS配置文件 | 93 | C | 05/01 |
| 155 | [rokid/docs](https://github.com/rokid/docs) | Rokid 语音开放平台,包含技能开发、语音设备接入及智能家居接入的文档、SDK 及示例代码 | 89 | C | 06/29 |
| 156 | [xuliker/kde](https://github.com/xuliker/kde) | 记录我的内核成长贡献之路。kernel-dev-environment | 88 | C | 07/07 |
| 157 | [BBuf/Darknet](https://github.com/BBuf/Darknet) | AlexeyAB-DarkNet源码解析 | 87 | C | 03/29 |
| 158 | [trumanzhao/luna](https://github.com/trumanzhao/luna) | 基于C++17的lua/C++绑定库,以及lua的二进制序列化等辅助代码 | 87 | C | 04/15 |
| 159 | [MissFreak/SI-2019-Spring](https://github.com/MissFreak/SI-2019-Spring) | 信息学院(School of Information)2019春入学的同学们,欢迎进入公共讨论区,你可以与本专业的老师和同学在这里交流。 | 86 | C | 05/16 |
| 160 | [dodola/fbhookfork](https://github.com/dodola/fbhookfork) | 从 fb 的 profilo 项目里提取出来的hook 库,自己用 | 84 | C | 01/11 |
| 161 | [tidyjiang8/esp-idf-zh](https://github.com/tidyjiang8/esp-idf-zh) | ESP-IDF 中文文档 | 83 | C | 03/08 |
| 162 | [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++日志模块,其提供了高性能,异步,线程安全,进程安全的日志功能。 | 83 | C | 05/06 |
| 163 | [foxclever/Modbus](https://github.com/foxclever/Modbus) | 一个Modbus通讯协议栈 | 82 | C | 03/29 |
| 164 | [ultraji/linux-0.12](https://github.com/ultraji/linux-0.12) | 《Linux内核完全剖析》linux0.12源码及实验环境 | 80 | C | 01/24 |
| 165 | [dengfaheng/WeChatCode](https://github.com/dengfaheng/WeChatCode) | 微信公众号【程序猿声】的相关代码汇总 | 80 | C | 01/28 |
| 166 | [zl03jsj/mupdf](https://github.com/zl03jsj/mupdf) | 扩展mupdf 实现图像数字证书签名, 手写笔迹数字证书签名, 插入图片, 手写签名注释..改进手写批注,实现模拟真实手写的算法, annot自定义数据, annot插入,删除密码校验等功能...支持ios, windows, mac, linux, c++, java, android | 78 | C | 03/28 |
| 167 | [firestaradmin/WorldEdit-No.1](https://github.com/firestaradmin/WorldEdit-No.1) | 基于STM32,极度硬核DIY蓝牙机械键盘 | 78 | C | 03/30 |
| 168 | [nishuoshenme/FGOFPSUnlocker](https://github.com/nishuoshenme/FGOFPSUnlocker) | 为fgo和fgo.en提供在手机上解锁60FPS的模块 | 77 | C | 06/23 |
| 169 | [qq4108863/himqtt](https://github.com/qq4108863/himqtt) | himqtt是首款完整源码的高性能MQTT物联网防火墙 - MQTT Application FireWall,采用epoll模式支持高并发连接。 | 74 | C | 04/23 |
| 170 | [jiejieTop/cmd-parser](https://github.com/jiejieTop/cmd-parser) | 一个非常简单好用的命令解析器,占用资源极少极少,采用哈希算法超快匹配命令! | 74 | C | 05/29 |
| 171 | [PaddlePaddle/Fleet](https://github.com/PaddlePaddle/Fleet) | 飞桨分布式训练API-基线-示例-算法包 | 74 | C | 07/06 |
| 172 | [isrc-cas/pacific](https://github.com/isrc-cas/pacific) | 方舟编译器的Runtime参考实现。这不是华为官方项目,是PLCT实验室的培训项目。 | 73 | C | 01/09 |
| 173 | [Albert-Zhan/php-decrypt](https://github.com/Albert-Zhan/php-decrypt) | PHP Decrypt是一个跨平台用来解密PHP源码的扩展 | 72 | C | 04/29 |
| 174 | [renhui/Thinking-in-AV](https://github.com/renhui/Thinking-in-AV) | 音视频开发知识库 | 72 | C | 05/28 |
| 175 | [blindpirate/no2-linggong-road](https://github.com/blindpirate/no2-linggong-road) | 战棋类RPG游戏:凌工路2号 | 70 | C | 01/20 |
| 176 | [zhayujie/C-Primer-Plus](https://github.com/zhayujie/C-Primer-Plus) | C Primer Plus第六版中文版习题答案 | 70 | C | 04/11 |
| 177 | [JingYang1124/Acoustic-controlled-Mini-Racer-Beat-Magnum](https://github.com/JingYang1124/Acoustic-controlled-Mini-Racer-Beat-Magnum) | 本项目是一款声控的迷你赛车--“跃动冲锋”,可通过语音指令控制车子的运动,还原了动画片“四驱兄弟”中的场景。 | 69 | C | 04/17 |
| 178 | [nengm/Tinyhttpd](https://github.com/nengm/Tinyhttpd) | 一次对Tinyhttpd完整的精读,注释,测试 | 69 | C | 04/14 |
| 179 | [armink-rtt-pkgs/EasyFlash](https://github.com/armink-rtt-pkgs/EasyFlash) | Lightweight embedded flash memory library. Make flash to be a small KV database. \| 嵌入式 Flash 存储器库,让 Flash 成为小型 KV 数据库 | 69 | C | 04/12 |
| 180 | [hungtcs-lab/8051-examples](https://github.com/hungtcs-lab/8051-examples) | 基于SDCC编译器的8051单片机示例 | 68 | C | 06/25 |
| 181 | [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两种模式! | 68 | C | 07/04 |
| 182 | [zhangboyang/PAL3patch](https://github.com/zhangboyang/PAL3patch) | 《仙剑奇侠传三》《仙剑奇侠传三外传·问情篇》分辨率补丁 | 67 | C | 06/01 |
| 183 | [jntass/TASSL-1.1.1b](https://github.com/jntass/TASSL-1.1.1b) | 支持SM2 SM3 SM4国密算法和国密openssl协议的TASSL 基于openssl-1.1.1b版本 | 67 | C | 06/07 |
| 184 | [draveness/linux-archive](https://github.com/draveness/linux-archive) | Linux archive for studying the process scheduler. 调度系统设计精要 http://draveness.me/system-design-scheduler | 66 | C | 02/02 |
| 185 | [openLuat/LuatOS](https://github.com/openLuat/LuatOS) | 合宙LuatOS -- Lua base RTOS, build for many embedded systems. LuatOS是运行在嵌入式硬件的实时操作系统 | 65 | C | 07/07 |
| 186 | [leleliu008/C](https://github.com/leleliu008/C) | C语言学习项目 | 65 | C | 05/05 |
| 187 | [tongban/Learning-DIY-RTOS](https://github.com/tongban/Learning-DIY-RTOS) | 自己动手从0到1写嵌入式操作系统 课程的相关资料下载 | 65 | C | 03/08 |
| 188 | [wwptrdudu/Voice_Recognition_Control_Robot](https://github.com/wwptrdudu/Voice_Recognition_Control_Robot) | 树莓派上的语音控制语音聊天的智能机器人。利用树莓派的wiringPi,科大讯飞,图灵机器人,alsa等开发库实现。 | 63 | C | 05/10 |
| 189 | [antiwar3/py](https://github.com/antiwar3/py) | 飘云ark(pyark) | 62 | C | 07/07 |
| 190 | [alibaba/id2_client_sdk](https://github.com/alibaba/id2_client_sdk) | ID²(Internet Device ID),是物联网设备的可信身份标识,具备不可篡改、不可伪造、全球唯一的安全属性,是实现万物互联、服务流转的关键基础设施。ID²支持多安全等级载体,合理地平衡物联网在安全、成本、功耗等各方面的诉求,为客户提供用得起、容易用、有保障的安全方案,适应物联网碎片化的市场需求。 ID² Client SDK是用于设备端开发的软件工具包,帮助开发者快速集成接入ID²开放平台. | 60 | C | 03/19 |
| 191 | [jiejieTop/DoraOS](https://github.com/jiejieTop/DoraOS) | DoraOS 是我个人所写的RTOS内核,结合FreeRTOS、uCOS, RT-Thread, LiteOS 的特性所写,取其精华,去其糟粕,本项目将持续维护,欢迎大家fork与star。 | 60 | C | 03/22 |
| 192 | [Niyunfeng/PID](https://github.com/Niyunfeng/PID) | 增量式PID算法C语言实现 | 60 | C | 04/18 |
| 193 | [labplus-cn/mpython](https://github.com/labplus-cn/mpython) | mpython掌控板文档和固件源码 | 59 | C | 06/22 |
| 194 | [Car-eye-team/Car-eye-RTMP-server](https://github.com/Car-eye-team/Car-eye-RTMP-server) | Car-eye-RTMP-server 是基于Nginx开发的一个开源服务器,稳定高效。可应用于安防,移动终端,医疗,教育等行业。配合car-eye-server 实现对设备的管理,配合视频后台实现直播和点播功能。流媒体服务器后台设备管理平台网站:www.liveoss.com 视频直播测试网站:http://www.car-eye.cn:8080/ | 58 | C | 03/04 |
| 195 | [potterhe/nginx](https://github.com/potterhe/nginx) | 分析nginx的设计 | 58 | C | 07/01 |
| 196 | [zhichao281/duilib-MiniBlinkBrowser](https://github.com/zhichao281/duilib-MiniBlinkBrowser) | 用duilib做的miniblink的浏览器 | 58 | C | 06/29 |
| 197 | [w1nds/dll2shellcode](https://github.com/w1nds/dll2shellcode) | dll转shellcode工具 | 57 | C | 02/20 |
| 198 | [kernelbin/BOIT](https://github.com/kernelbin/BOIT) | BOT for OIers. /*BOIT = BOT + OI; yh蒟蒻写的给OIers用的一个bot,Made by kernel.bin with ❤*/ | 57 | C | 06/24 |
| 199 | [hujianzhe/util](https://github.com/hujianzhe/util) | 纯C的跨平台基础库与网络库,提供list/hashtable/rbtree数据结构,封装各OS API,对使用者屏蔽诸如IO多路复用下的并发可靠UDP/TCP的传输与监听,断线重连,基于协程/回调的RPC调度核心机制等实现细节.内部还包括一个3D碰撞检测. | 57 | C | 06/29 |
| 200 | [xiaoliang314/libatask](https://github.com/xiaoliang314/libatask) | 纯C语言高性能异步多任务多事件驱动的协程库\| Pure C language high-performance asynchronous multi-task multi-event driven coroutine library. | 57 | C | 06/24 |
⬆ [回到目录](#目录)
<br/>
## C++
| # | Repository | Description | Stars | Language | Updated |
| ---- | ------------------------------------------------------------ | ------------------------------------------------------------ | ----- | -------- | ------- |
| 1 | [huihut/interview](https://github.com/huihut/interview) | 📚 C/C++ 技术面试基础知识总结,包括语言、程序库、数据结构、算法、系统、网络、链接装载库等知识及面试经验、招聘、内推等信息。This repository is a summary of the basic knowledge of recruiting job seekers and beginners in the direction of C/C++ technology, including language, program library, data structure, algorithm, system, network, link loading library, in ... | 12.9k | C++ | 04/19 |
| 2 | [vnpy/vnpy](https://github.com/vnpy/vnpy) | 基于Python的开源量化交易平台开发框架 | 12.2k | C++ | 07/06 |
| 3 | [PaddlePaddle/Paddle](https://github.com/PaddlePaddle/Paddle) | PArallel Distributed Deep LEarning: Machine Learning Framework from Industrial Practice (『飞桨』核心框架,深度学习&机器学习高性能单机、分布式训练和跨平台部署) | 11.8k | C++ | 07/08 |
| 4 | [USTC-Resource/USTC-Course](https://github.com/USTC-Resource/USTC-Course) | :heart:中国科学技术大学课程资源 | 9.1k | C++ | 06/24 |
| 5 | [ChenYilong/iOSInterviewQuestions](https://github.com/ChenYilong/iOSInterviewQuestions) | iOS interview questions;iOS面试题集锦(附答案)--学习qq群或 Telegram 群交流 https://github.com/ChenYilong/iOSBlog/issues/21 | 8.4k | C++ | 06/08 |
| 6 | [zhongyang219/TrafficMonitor](https://github.com/zhongyang219/TrafficMonitor) | 这是一个用于显示当前网速、CPU及内存利用率的桌面悬浮窗软件,并支持任务栏显示,支持更换皮肤。 | 8.3k | C++ | 07/07 |
| 7 | [Light-City/CPlusPlusThings](https://github.com/Light-City/CPlusPlusThings) | C++那些事 | 5.7k | C++ | 07/06 |
| 8 | [ouyanghuiyu/chineseocr_lite](https://github.com/ouyanghuiyu/chineseocr_lite) | 超轻量级中文ocr,支持竖排文字识别, 支持ncnn推理 , dbnet(1.7M) + crnn(6.3M) + anglenet(1.5M) 总模型仅10M | 5.1k | C++ | 07/02 |
| 9 | [PaddlePaddle/Paddle-Lite](https://github.com/PaddlePaddle/Paddle-Lite) | Multi-platform high performance deep learning inference engine (『飞桨』多平台高性能深度学习预测引擎) | 5.0k | C++ | 07/07 |
| 10 | [Ewenwan/MVision](https://github.com/Ewenwan/MVision) | 机器人视觉 移动机器人 VS-SLAM ORB-SLAM2 深度学习目标检测 yolov3 行为检测 opencv PCL 机器学习 无人驾驶 | 4.6k | C++ | 07/07 |
| 11 | [me115/design_patterns](https://github.com/me115/design_patterns) | 图说设计模式 | 4.5k | C++ | 05/26 |
| 12 | [weolar/miniblink49](https://github.com/weolar/miniblink49) | a lighter, faster browser kernel of blink to integrate HTML UI in your app. 一个小巧、轻量的浏览器内核,用来取代wke和libcef | 4.3k | C++ | 06/14 |
| 13 | [Qv2ray/Qv2ray](https://github.com/Qv2ray/Qv2ray) | :star: Linux/Windows/macOS 跨平台 V2ray 客户端 \| 支持 SSR/Trojan/NaiveProxy \| 使用 C++/Qt5 开发 \| 可拓展插件式设计 :star: | 4.2k | C++ | 07/07 |
| 14 | [wuye9036/CppTemplateTutorial](https://github.com/wuye9036/CppTemplateTutorial) | 中文的C++ Template的教学指南。与知名书籍C++ Templates不同,该系列教程将C++ Templates作为一门图灵完备的语言来讲授,以求帮助读者对Meta-Programming融会贯通。(正在施工中) | 3.7k | C++ | 05/25 |
| 15 | [zhedahht/CodingInterviewChinese2](https://github.com/zhedahht/CodingInterviewChinese2) | 《剑指Offer》第二版源代码 | 3.6k | C++ | 01/02 |
| 16 | [anyRTC/anyRTC-RTMP-OpenSource](https://github.com/anyRTC/anyRTC-RTMP-OpenSource) | RTMP 推流器,RTMP(HLS)秒开播放器,跨平台(Win,IOS,Android)开源代码 | 3.5k | C++ | 02/10 |
| 17 | [zeusees/HyperLPR](https://github.com/zeusees/HyperLPR) | 基于深度学习高性能中文车牌识别 High Performance Chinese License Plate Recognition Framework. | 3.5k | C++ | 06/05 |
| 18 | [TonyChen56/WeChatRobot](https://github.com/TonyChen56/WeChatRobot) | PC版微信机器人 | 3.2k | C++ | 05/12 |
| 19 | [anhkgg/SuperWeChatPC](https://github.com/anhkgg/SuperWeChatPC) | 超级微信电脑客户端,支持多开、防消息撤销、语音消息备份...开放WeChatSDK | 3.2k | C++ | 02/27 |
| 20 | [yedf/handy](https://github.com/yedf/handy) | 简洁易用的C++11网络库 / 支持单机千万并发连接 / a simple C++11 network server framework | 3.0k | C++ | 01/07 |
| 21 | [CtripMobile/DynamicAPK](https://github.com/CtripMobile/DynamicAPK) | Solution to implement multi apk dynamic loading and hot fixing for Android App. (实现Android App多apk插件化和动态加载,支持资源分包和热修复) | 2.9k | C++ | 05/11 |
| 22 | [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.5k | C++ | 06/17 |
| 23 | [WrBug/dumpDex](https://github.com/WrBug/dumpDex) | 💯一款Android脱壳工具,需要xposed支持, 易开发已集成该项目: | 2.2k | C++ | 05/15 |
| 24 | [MegEngine/MegEngine](https://github.com/MegEngine/MegEngine) | MegEngine 是一个快速、可拓展、易于使用且支持自动求导的深度学习框架 | 2.1k | C++ | 07/07 |
| 25 | [liuchuo/PAT](https://github.com/liuchuo/PAT) | 🍭 浙江大学PAT题解(C/C++/Java/Python) - 努力成为萌萌的程序媛~ | 2.1k | C++ | 06/18 |
| 26 | [HuTianQi/SmartOpenCV](https://github.com/HuTianQi/SmartOpenCV) | :fire: :fire: :fire: SmartOpenCV是一个OpenCV在Android端的增强库,解决了OpenCV Android SDK在图像预览方面存在的诸多问题,且无需修改OpenCV SDK源码,与OpenCV的SDK解耦 | 1.8k | C++ | 04/28 |
| 27 | [balloonwj/flamingo](https://github.com/balloonwj/flamingo) | flamingo 一款高性能轻量级开源即时通讯软件 | 1.8k | C++ | 07/06 |
| 28 | [zlgopen/awtk](https://github.com/zlgopen/awtk) | AWTK = Toolkit AnyWhere(为嵌入式、手机和PC打造的通用GUI系统) | 1.8k | C++ | 07/07 |
| 29 | [yanyiwu/cppjieba](https://github.com/yanyiwu/cppjieba) | "结巴"中文分词的C++版本 | 1.7k | C++ | 06/23 |
| 30 | [richardchien/coolq-http-api](https://github.com/richardchien/coolq-http-api) | 为 酷Q 提供通过 HTTP 或 WebSocket 接收事件和调用 API 的能力 | 1.6k | C++ | 07/04 |
| 31 | [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.6k | C++ | 07/03 |
| 32 | [cool2528/baiduCDP](https://github.com/cool2528/baiduCDP) | 百度网盘下载神器 | 1.6k | C++ | 01/02 |
| 33 | [rime/weasel](https://github.com/rime/weasel) | 【小狼毫】Rime for Windows | 1.5k | C++ | 07/03 |
| 34 | [Tencent/TNN](https://github.com/Tencent/TNN) | TNN:由腾讯优图实验室打造,移动端高性能、轻量级推理框架,同时拥有跨平台、高性能、模型压缩、代码裁剪等众多突出优势。TNN框架在原有Rapidnet、ncnn框架的基础上进一步加强了移动端设备的支持以及性能优化,同时也借鉴了业界主流开源框架高性能和良好拓展性的优点。目前TNN已经在手Q、微视、P图等应用中落地,欢迎大家参与协同共建,促进TNN推理框架进一步完善。 | 1.5k | C++ | 07/07 |
| 35 | [baidu/lac](https://github.com/baidu/lac) | 百度NLP:分词,词性标注,命名实体识别 | 1.5k | C++ | 07/07 |
| 36 | [senlinuc/caffe_ocr](https://github.com/senlinuc/caffe_ocr) | 主流ocr算法研究实验性的项目,目前实现了CNN+BLSTM+CTC架构 | 1.1k | C++ | 06/13 |
| 37 | [qinguoyi/TinyWebServer](https://github.com/qinguoyi/TinyWebServer) | :fire: Linux下C++轻量级Web服务器 | 1.0k | C++ | 07/01 |
| 38 | [applenob/Cpp_Primer_Practice](https://github.com/applenob/Cpp_Primer_Practice) | 搞定C++:punch:。C++ Primer 中文版第5版学习仓库,包括笔记和课后练习答案。 | 994 | C++ | 05/05 |
| 39 | [knightsj/awesome-algorithm-question-solution](https://github.com/knightsj/awesome-algorithm-question-solution) | LeetCode,《剑指offer》中的算法题的题目和解法以及常见算法的实现 | 916 | C++ | 03/24 |
| 40 | [QuantBox/XAPI2](https://github.com/QuantBox/XAPI2) | 统一行情交易接口第2版 | 912 | C++ | 05/18 |
| 41 | [qdtroy/DuiLib_Ultimate](https://github.com/qdtroy/DuiLib_Ultimate) | duilib 旗舰版-高分屏、多语言、样式表、资源管理器、异形窗口、窗口阴影、简单动画 | 896 | C++ | 06/30 |
| 42 | [aiyaapp/AiyaEffectsAndroid](https://github.com/aiyaapp/AiyaEffectsAndroid) | 宝宝特效Demo通过短视频SDK、直播SDK轻松实现特效与视频剪辑,为用户提供特效相机,拍摄辅助,自动美颜相机,抖音滤镜、直播礼物、直播贴纸等,超低占用空间,十秒大型场景仅100KB+, 精准人脸识别、人脸跟踪,支持3D特效,3D动画特效,2D特效、动画渲染、特效渲染等, visual effects IOS demo, support 3D effect, 3D Animation, 2D effect | 870 | C++ | 06/25 |
| 43 | [yanyiwu/simhash](https://github.com/yanyiwu/simhash) | 中文文档simhash值计算 | 799 | C++ | 03/11 |
| 44 | [fasiondog/hikyuu](https://github.com/fasiondog/hikyuu) | Hikyuu Quant Framework 基于C++/Python的开源量化交易研究框架 | 770 | C++ | 07/07 |
| 45 | [188080501/JQTools](https://github.com/188080501/JQTools) | 基于Qt开发的小工具包 | 765 | C++ | 07/07 |
| 46 | [PaddlePaddle/PaddleOCR](https://github.com/PaddlePaddle/PaddleOCR) | OCR toolkit based on PaddlePaddle (基于飞桨的OCR工具库,包含总模型仅8.6M的超轻量级中文OCR,同时支持多种文本检测、文本识别的训练算法。) | 726 | C++ | 07/07 |
| 47 | [Jack-Cherish/LeetCode](https://github.com/Jack-Cherish/LeetCode) | :monkey:LeetCode、剑指Offer刷题笔记(C/C++、Python3实现) | 701 | C++ | 06/18 |
| 48 | [Making-It/Code](https://github.com/Making-It/Code) | 面试高频算法题总结,个人博客 | 693 | C++ | 02/04 |
| 49 | [didi/AoE](https://github.com/didi/AoE) | AoE (AI on Edge,终端智能,边缘计算) 是一个终端侧AI集成运行时环境 (IRE),帮助开发者提升效率。 | 687 | C++ | 07/07 |
| 50 | [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音乐、虾米音乐、酷我音乐、酷狗音乐、百度音乐等等) | 682 | C++ | 07/07 |
| 51 | [netease-im/NIM_Duilib_Framework](https://github.com/netease-im/NIM_Duilib_Framework) | 网易云信Windows应用界面开发框架(基于Duilib)。招人搞事情,windows/mac/duilib/qt/electron/爱好造车轮的速来 http://mobile.bole.netease.com/bole/boleDetail?id=19904&employeeId=510064bce318835c&key=all&type=2&from=timeline | 639 | C++ | 07/02 |
| 52 | [xiongziliang/ZLToolKit](https://github.com/xiongziliang/ZLToolKit) | 一个基于C++11的轻量级网络框架,基于线程池技术可以实现大并发网络IO | 637 | C++ | 07/02 |
| 53 | [tencentyun/TRTCSDK](https://github.com/tencentyun/TRTCSDK) | 腾讯云TRTC音视频服务,国内下载镜像: | 633 | C++ | 07/07 |
| 54 | [Ewenwan/ORB_SLAM2_SSD_Semantic](https://github.com/Ewenwan/ORB_SLAM2_SSD_Semantic) | 动态语义SLAM 目标检测+VSLAM+光流/多视角几何动态物体检测+octomap地图+目标数据库 | 592 | C++ | 03/22 |
| 55 | [shuax/GreenChrome](https://github.com/shuax/GreenChrome) | 增强Chrome的工具 | 585 | C++ | 03/22 |
| 56 | [smilehao/xlua-framework](https://github.com/smilehao/xlua-framework) | Unity游戏纯lua客户端完整框架---基于xlua,整合tolua的proto-gen-lua以及各个lua库和工具类 | 578 | C++ | 05/09 |
| 57 | [callmePicacho/Data-Structres](https://github.com/callmePicacho/Data-Structres) | 浙江大学《数据结构》上课笔记 + 数据结构实现 + 课后题题解 | 572 | C++ | 04/02 |
| 58 | [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 | 569 | C++ | 03/12 |
| 59 | [limingfan2016/game_service_system](https://github.com/limingfan2016/game_service_system) | 从0开始开发 基础库(配置文件读写、日志、多线程、多进程、锁、对象引用计数、内存池、免锁消息队列、免锁数据缓冲区、进程信号、共享内存、定时器等等基础功能组件),网络库(socket、TCP、UDP、epoll机制、连接自动收发消息等等),数据库操作库(mysql,redis、memcache API 封装可直接调用),开发框架库(消息调度处理、自动连接管理、服务开发、游戏框架、服务间消息收发、消息通信等等),消息中间件服务(不同网络节点间自动传递收发消息)等多个功能组件、服务,最后完成一套完整的服务器引擎,基于该框架引擎可开发任意的网络服务。 主体架构:N网关+N服务+N数据库代理+内存DB ... | 566 | C++ | 05/25 |
| 60 | [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) | 551 | C++ | 05/22 |
| 61 | [Mapaler/FastCopy-M](https://github.com/Mapaler/FastCopy-M) | FastCopy-Multilanguage,FastCopy完整支持多国语言版 | 523 | C++ | 04/20 |
| 62 | [SOUI2/soui](https://github.com/SOUI2/soui) | SOUI是目前为数不多的轻量级可快速开发window桌面程序开源DirectUI库.其前身为Duiengine,更早期则是源自于金山卫士开源版本UI库Bkwin.经过多年持续更新方得此库 | 511 | C++ | 06/16 |
| 63 | [hao14293/2021-Postgraduate-408](https://github.com/hao14293/2021-Postgraduate-408) | 💯✍备考2020年研究生-408 | 482 | C++ | 03/16 |
| 64 | [hedada-hc/pc_wechat_hook](https://github.com/hedada-hc/pc_wechat_hook) | pc微信hook 课程例子源码 最新版pc微信hook全套课程尽在网易云课堂 搜索微信逆向即可 pcwx pcweichat 微信hook C语言开发 | 473 | C++ | 01/21 |
| 65 | [MKXJun/DirectX11-With-Windows-SDK](https://github.com/MKXJun/DirectX11-With-Windows-SDK) | 现代DX11系列教程:使用Windows SDK(C++)开发Direct3D 11.x | 471 | C++ | 07/06 |
| 66 | [ylmbtm/GameProject3](https://github.com/ylmbtm/GameProject3) | 游戏服务器框架,网络层分别用SocketAPI、Boost Asio、Libuv三种方式实现, 框架内使用共享内存,无锁队列,对象池,内存池来提高服务器性能。还包含一个不断完善的Unity 3D客户端,客户端含大量完整资源,坐骑,宠物,伙伴,装备, 这些均己实现上阵和穿戴, 并可进入副本战斗,多人玩法也己实现, 持续开发中。 | 458 | C++ | 07/07 |
| 67 | [zhongyang219/MusicPlayer2](https://github.com/zhongyang219/MusicPlayer2) | 这是一款可以播放常见音频格式的音频播放器。支持歌词显示、歌词卡拉OK样式显示、歌词在线下载、歌词编辑、歌曲标签识别、Win10小娜搜索显示歌词、频谱分析、音效设置、任务栏缩略图按钮、主题颜色等功能。 播放内核为BASS音频库(V2.4)。 | 451 | C++ | 06/16 |
| 68 | [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的函数接口了 | 420 | C++ | 04/04 |
| 69 | [scarsty/kys-cpp](https://github.com/scarsty/kys-cpp) | 《金庸群侠传》c++复刻版,已完工 | 412 | C++ | 05/11 |
| 70 | [Captain1986/CaptainBlackboard](https://github.com/Captain1986/CaptainBlackboard) | 船长关于机器学习、计算机视觉和工程技术的总结和分享 | 404 | C++ | 04/13 |
| 71 | [yuanyuanxiang/SimpleRemoter](https://github.com/yuanyuanxiang/SimpleRemoter) | 基于gh0st的远程控制器:实现了终端管理、进程管理、窗口管理、远程桌面、文件管理、语音管理、视频管理、服务管理、注册表管理等功能,优化全部代码及整理排版,修复内存泄漏缺陷,程序运行稳定。此项目初版见:https://github.com/zibility/Remote | 401 | C++ | 03/17 |
| 72 | [SpriteOvO/Telegram-Anti-Revoke](https://github.com/SpriteOvO/Telegram-Anti-Revoke) | Telegram anti-revoke plugin - Telegram 防撤回插件 | 398 | C++ | 07/05 |
| 73 | [silence1772/GreedySnake](https://github.com/silence1772/GreedySnake) | c++经典项目贪吃蛇游戏控制台版,详细注释 | 392 | C++ | 01/06 |
| 74 | [gloomyfish1998/opencv_tutorial](https://github.com/gloomyfish1998/opencv_tutorial) | 基于OpenCV4.0 C++/Python SDK的案例代码演示程序与效果图像 | 363 | C++ | 02/03 |
| 75 | [chrisguo/beijing_fushengji](https://github.com/chrisguo/beijing_fushengji) | 北京浮生记PC版源代码 | 352 | C++ | 01/11 |
| 76 | [KangLin/RabbitIm](https://github.com/KangLin/RabbitIm) | 玉兔即时通讯。开源的跨平台的的即时通信系统。包括文本、音视频、白板、远程控制 | 336 | C++ | 07/07 |
| 77 | [xiangweizeng/mobile-lpr](https://github.com/xiangweizeng/mobile-lpr) | Mobile-LPR 是一个面向移动端的准商业级车牌识别库,以NCNN作为推理后端,使用DNN作为算法核心,支持多种车牌检测算法,支持车牌识别和车牌颜色识别。 | 337 | C++ | 03/23 |
| 78 | [wlgq2/uv-cpp](https://github.com/wlgq2/uv-cpp) | libuv wrapper in C++11 /libuv C++11网络库 | 319 | C++ | 06/28 |
| 79 | [Dr-Incognito/V2Ray-Desktop](https://github.com/Dr-Incognito/V2Ray-Desktop) | 最优雅的跨平台代理客户端,支持Shadowsocks,V2Ray和Trojan协议。The most elegant cross-platform proxy GUI client that supports Shadowsocks, V2Ray, and Trojan. Built with Qt5 and QML2. | 311 | C++ | 07/06 |
| 80 | [liuchuo/Lanqiao](https://github.com/liuchuo/Lanqiao) | 🍦 蓝桥杯竞赛练习题的题解(C/C++/Java)-努力成为萌萌的程序媛~ | 293 | C++ | 05/22 |
| 81 | [githubhaohao/NDK_OpenGLES_3_0](https://github.com/githubhaohao/NDK_OpenGLES_3_0) | Android OpenGL ES 3.0 开发极简教程 | 287 | C++ | 06/06 |
| 82 | [openvanilla/McBopomofo](https://github.com/openvanilla/McBopomofo) | 小麥注音輸入法 | 283 | C++ | 05/10 |
| 83 | [FengGuanxi/HDU-Experience](https://github.com/FengGuanxi/HDU-Experience) | 用于向所有杭电学子分享在杭电的知识与经验 | 277 | C++ | 07/02 |
| 84 | [czs108/Cpp-Primer-5th-Notes-CN](https://github.com/czs108/Cpp-Primer-5th-Notes-CN) | 📚 《C++ Primer中文版(第5版)》笔记 | 277 | C++ | 05/28 |
| 85 | [zc8424/LazzyQuant](https://github.com/zc8424/LazzyQuant) | 期货/期权量化交易系统 | 274 | C++ | 06/28 |
| 86 | [richenyunqi/CCF-CSP-and-PAT-solution](https://github.com/richenyunqi/CCF-CSP-and-PAT-solution) | CCF CSP和PAT考试题解(使用C++11语法) | 273 | C++ | 03/29 |
| 87 | [VelsonWang/HmiFuncDesigner](https://github.com/VelsonWang/HmiFuncDesigner) | HmiFuncDesigner是一款集HMI,数据采集于一体的软件。目前支持Modbus协议,JavaScript解析,画面功能编辑等。HmiFuncDesigner is a software integrating HMI and data collection.Now it supports Modbus protocol, JavaScript explain, graphic control edit etc. | 270 | C++ | 07/04 |
| 88 | [zeusees/HyperVID](https://github.com/zeusees/HyperVID) | 开源移动端车型识别 Mobile Plateform Vehicle Identification Model | 270 | C++ | 05/11 |
| 89 | [188080501/JQHttpServer](https://github.com/188080501/JQHttpServer) | 基于Qt开发的轻量级HTTP/HTTPS服务器 | 265 | C++ | 07/07 |
| 90 | [wangzuohuai/WebRunLocal](https://github.com/wangzuohuai/WebRunLocal) | 牛插(PluginOK)中间件(原名:本网通)是一个实现网页浏览器(Web Browser)与本地程序(Local App)之间进行双向调用的低成本、强兼容、安全可控、轻量级、易集成、可扩展的浏览器小程序框架。通过本中间件可实现网页前端JS脚本无障碍操作本地电脑各种硬件、调用本地系统API及相关组件功能,可彻底解决ActiveX组件在Chrome、Edge、360、FireFox、IE、Opera等浏览器各版本中的嵌入使用问题,媲美原Java Applet的效果 | 257 | C++ | 07/05 |
| 91 | [balloonwj/TeamTalk](https://github.com/balloonwj/TeamTalk) | 这是我维护的蘑菇街TeamTalk源码版本。 | 256 | C++ | 07/05 |
| 92 | [chatopera/clause](https://github.com/chatopera/clause) | :horse_racing: Chatopera语义理解系统 | 255 | C++ | 06/29 |
| 93 | [jaredtao/DesignPattern](https://github.com/jaredtao/DesignPattern) | C++11全套设计模式-23种指针的用法(a full DesignPattern implement with c++11) | 255 | C++ | 06/19 |
| 94 | [Beipy/Mac-Hackintosh-Clover](https://github.com/Beipy/Mac-Hackintosh-Clover) | PC主机黑苹果引导驱动文件 | 251 | C++ | 03/28 |
| 95 | [Samuel-0-0/phicomm_dc1-esphome](https://github.com/Samuel-0-0/phicomm_dc1-esphome) | 斐讯DC1插座自制固件方式接入开源智能家居平台 | 247 | C++ | 02/25 |
| 96 | [yangyangFeng/TTPatch](https://github.com/yangyangFeng/TTPatch) | 热修复、热更新、JS代码动态下发、动态创建类 | 243 | C++ | 06/05 |
| 97 | [Meituan-Dianping/octo-ns](https://github.com/Meituan-Dianping/octo-ns) | OCTO-NS是美团OCTO服务治理体系服务注册发现功能的套件, 包括SDK(Java/C++)、本地服务治理代理(SgAgent), 服务缓存(NSC), 云端健康检查(Scanner)等基础组件,目前已经在全公司大规模使用 | 234 | C++ | 07/02 |
| 98 | [lesliefish/Qt](https://github.com/lesliefish/Qt) | Qt相关知识总结。包括Qss,数据库,Excel,Model/View等操作demo。 | 228 | C++ | 04/06 |
| 99 | [php-extension-research/study](https://github.com/php-extension-research/study) | 手把手教你写PHP协程扩展(teach you to write php coroutine extension by hand) | 223 | C++ | 03/05 |
| 100 | [PaddlePaddle/Serving](https://github.com/PaddlePaddle/Serving) | A flexible, high-performance carrier for machine learning models(『飞桨』服务化部署框架) | 222 | C++ | 07/07 |
| 101 | [zeusees/HyperFT](https://github.com/zeusees/HyperFT) | 开源移动端快速视频人脸跟踪-移动端150FPS+ | 221 | C++ | 06/30 |
| 102 | [oceancx/YZXY](https://github.com/oceancx/YZXY) | 原罪西游(YZXY)是一款MMORPG类型的2D回合制开源游戏,采用C++/lua开发 | 219 | C++ | 06/28 |
| 103 | [itas109/CSerialPort](https://github.com/itas109/CSerialPort) | 基于C++的轻量级开源跨平台串口类库Lightweight cross-platform serial port library based on C++ | 217 | C++ | 06/11 |
| 104 | [MrTrans/RegularNotes](https://github.com/MrTrans/RegularNotes) | 记录cpp知识点,面试题,网络编程,多线程编程 | 215 | C++ | 05/23 |
| 105 | [2013fangwentao/Multi_Sensor_Fusion](https://github.com/2013fangwentao/Multi_Sensor_Fusion) | Multi-Sensor Fusion (GNSS, IMU, Camera) 多源多传感器融合定位 GPS/INS组合导航 PPP/INS紧组合 | 213 | C++ | 04/24 |
| 106 | [open-speech/speech-aligner](https://github.com/open-speech/speech-aligner) | speech-aligner,是一个从“人声语音”及其“语言文本”,产生音素级别时间对齐标注的工具。speech-aligner, is a tool that generate phoneme-level alignment between human speech and its transcription | 208 | C++ | 04/08 |
| 107 | [twomonkeyclub/BackEnd](https://github.com/twomonkeyclub/BackEnd) | 后台开发相关知识 | 204 | C++ | 05/06 |
| 108 | [gzc426/leetcode](https://github.com/gzc426/leetcode) | 每天一道leetcode | 193 | C++ | 03/03 |
| 109 | [jiafeng5513/Evision](https://github.com/jiafeng5513/Evision) | 计算机视觉实践和探索/Practice and explorations in computer vision. | 193 | C++ | 07/06 |
| 110 | [Protostars/KikoPlay](https://github.com/Protostars/KikoPlay) | KikoPlay - NOT ONLY A Full-Featured Danmu Player 不仅仅是全功能弹幕播放器 | 183 | C++ | 07/07 |
| 111 | [xyz347/x2struct](https://github.com/xyz347/x2struct) | Convert between json string and c++ object. json字符串和c++结构体之间互相转换 | 178 | C++ | 02/11 |
| 112 | [lengjibo/RedTeamTools](https://github.com/lengjibo/RedTeamTools) | 记录自己写的部分工具 | 177 | C++ | 06/01 |
| 113 | [KongKong20/WeChatPCHook](https://github.com/KongKong20/WeChatPCHook) | 微信 电脑 机器人 入门教程 基于HOOK | 177 | C++ | 07/06 |
| 114 | [tsingsee/EasyPlayerPro-Win](https://github.com/tsingsee/EasyPlayerPro-Win) | EasyPlayerPro是一款全功能的流媒体播放器,支持RTSP、RTMP、HTTP、HLS、UDP、RTP、File等多种流媒体协议播放、支持本地文件播放,支持本地抓拍、本地录像、播放旋转、多屏播放、倍数播放等多种功能特性,核心基于ffmpeg,稳定、高效、可靠、可控,支持Windows、Android、iOS三个平台,目前在多家教育、安防、行业型公司,都得到的应用,广受好评! | 176 | C++ | 07/06 |
| 115 | [czyt1988/sa](https://github.com/czyt1988/sa) | 信号分析及数据可视化软件 | 176 | C++ | 07/07 |
| 116 | [physercoe/starquant](https://github.com/physercoe/starquant) | a light-weighted, integrated trading/backtesting system/platform(综合量化交易回测系统/平台) | 171 | C++ | 05/02 |
| 117 | [Dice-Developer-Team/Dice](https://github.com/Dice-Developer-Team/Dice) | QQ Dice Robot For TRPG QQ跑团掷骰机器人 | 171 | C++ | 07/04 |
| 118 | [BesLyric-for-X/BesLyric-for-X](https://github.com/BesLyric-for-X/BesLyric-for-X) | 本项目是 BesLyric 的跨平台版本。BesLyric 是一款 操作简单、功能实用的 专门用于制作网易云音乐滚动歌词的 歌词制作软件。基于Qt实现,主打歌词制作功能,以网易云风格界面,力图为云村村民提供一个良好的歌词制作体验! | 171 | C++ | 07/06 |
| 119 | [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同屏服务支持组播和单播两种模式。 | 170 | C++ | 05/21 |
| 120 | [downdemo/Cpp-Templates-2ed](https://github.com/downdemo/Cpp-Templates-2ed) | 📚 C++ Templates 2ed 笔记:C++11/14/17 模板技术 | 167 | C++ | 06/25 |
| 121 | [kevinlq/SmartHome-Qt](https://github.com/kevinlq/SmartHome-Qt) | 基于zigbee和stm32的智能家居系统,上位机使用Qt编写,实现了基本的监控。主要包括监控室内温度、湿度、烟雾浓度,用led灯模拟控制家中的灯。界面良好。 | 165 | C++ | 06/24 |
| 122 | [profthecopyright/Thunder_Class](https://github.com/profthecopyright/Thunder_Class) | 雷课堂大作业 | 165 | C++ | 04/30 |
| 123 | [esrrhs/fake](https://github.com/esrrhs/fake) | 嵌入式脚本语言 Lightweight embedded scripting language | 161 | C++ | 04/28 |
| 124 | [dlunion/CC4.0](https://github.com/dlunion/CC4.0) | Caffe for CC4.0-Windows,简单的Caffe C++接口,方便简单 | 157 | C++ | 01/15 |
| 125 | [tiny656/PAT](https://github.com/tiny656/PAT) | 浙江大学PAT题解 | 157 | C++ | 04/19 |
| 126 | [SequoiaDB/SequoiaDB](https://github.com/SequoiaDB/SequoiaDB) | SequoiaDB 巨杉数据库是一款金融级分布式关系型数据库。 自研的原生分布式存储引擎支持完整 ACID,具备弹性扩展、高并发和高可用特性,支持 MySQL、PostgreSQL 和 SparkSQL 等多种 SQL 访问形式,适用于核心交易、数据中台、内容管理等应用场景。 | 156 | C++ | 06/16 |
| 127 | [Salensoft/thu-cst-cracker](https://github.com/Salensoft/thu-cst-cracker) | 清华大学计算机系课程攻略 | 155 | C++ | 02/28 |
| 128 | [tuoxie007/play_with_llvm](https://github.com/tuoxie007/play_with_llvm) | A book about LLVM & Clang(中文开源书:玩转 LLVM) | 153 | C++ | 07/03 |
| 129 | [iotang/Project_LemonLime](https://github.com/iotang/Project_LemonLime) | 为了 OI 比赛而生的基于 Lemon + LemonPlus 的轻量评测系统 \| 三大桌面系统支持 | 151 | C++ | 06/10 |
| 130 | [HMBSbige/GetCNDomainsAndIPv4](https://github.com/HMBSbige/GetCNDomainsAndIPv4) | 获取国内 IP 和域名,生成路由表和 PAC 文件 | 151 | C++ | 04/25 |
| 131 | [q191201771/libchef](https://github.com/q191201771/libchef) | 🍀 c++ standalone header-only basic library. \|\| c++头文件实现无第三方依赖基础库 | 150 | C++ | 04/24 |
| 132 | [DreamWaterFound/self_commit_ORB-SLAM2](https://github.com/DreamWaterFound/self_commit_ORB-SLAM2) | ORB-SLAM2 源码注释, 基于泡泡机器人的注释版本 | 149 | C++ | 01/21 |
| 133 | [huqinghua/pyui4win](https://github.com/huqinghua/pyui4win) | 一个用python实现业务逻辑、用xml和html/css/js描述界面的windows程序的快速开发框架。该框架将duilib运行时和python运行时结合到一起,实现用xml快速构建界面的同时,利用python及其众多久经考验的库编写业务逻辑,极大地缩短开发周期。 | 149 | C++ | 04/22 |
| 134 | [seahime/ImageQt](https://github.com/seahime/ImageQt) | 数字图像处理——基于Qt 5.8.0 | 146 | C++ | 04/12 |
| 135 | [edvardHua/Articles](https://github.com/edvardHua/Articles) | :notebook_with_decorative_cover: 简书文章中的材料 | 145 | C++ | 06/11 |
| 136 | [wlgq2/eomaia](https://github.com/wlgq2/eomaia) | 一个基于reactor模式的Linux/C++网络库,支持one loop per thread机制。 | 144 | C++ | 04/14 |
| 137 | [zeusees/HyperNSFW](https://github.com/zeusees/HyperNSFW) | 基于深度学习图片鉴黄 Caffe implementation of Not Suitable for Work (NSFW) | 143 | C++ | 03/03 |
| 138 | [houpengfei88/Play-with-Data-Structures](https://github.com/houpengfei88/Play-with-Data-Structures) | 波波老师的数据结构课程的C++代码实现,和波波老师的代码库目录一样:) | 140 | C++ | 03/07 |
| 139 | [LeechanX/Easy-Reactor](https://github.com/LeechanX/Easy-Reactor) | Easy-Reactor是一个Linux C++高性能TCP服务框架,基于Reactor模式,支持单线程、多线程Reactor,也支持UDP服务 | 139 | C++ | 03/03 |
| 140 | [anbingxu666/WangDao-DataStructure](https://github.com/anbingxu666/WangDao-DataStructure) | 王道《数据结构》2020考研算法代码 | 135 | C++ | 06/22 |
| 141 | [mobizt/Firebase-ESP32](https://github.com/mobizt/Firebase-ESP32) | 武汉加油 | 134 | C++ | 06/26 |
| 142 | [WallBreaker2/op](https://github.com/WallBreaker2/op) | op插件(类似大漠插件),Windows消息模拟,gdi,dx,opengl截图,找图,找字(OCR),其他实用算法 | 133 | C++ | 06/20 |
| 143 | [hongwenjun/WinKcp_Launcher](https://github.com/hongwenjun/WinKcp_Launcher) | Windows udp2raw+kcptun 加速tcp流量 简易工具 by 蘭雅sRGB | 131 | C++ | 06/04 |
| 144 | [chiuchiuuu/programming-and-algorithm](https://github.com/chiuchiuuu/programming-and-algorithm) | 这是北京大学在coursera上开设的「程序设计与算法」专项课程 | 131 | C++ | 03/02 |
| 145 | [Rvn0xsy/BadCode](https://github.com/Rvn0xsy/BadCode) | 恶意代码逃逸源代码 http://payloads.online | 128 | C++ | 01/16 |
| 146 | [cbwang505/CVE-2020-1066-EXP](https://github.com/cbwang505/CVE-2020-1066-EXP) | CVE-2020-1066-EXP支持Windows 7和Windows Server 2008 R2操作系统 | 128 | C++ | 06/17 |
| 147 | [JelinYao/HttpInterface](https://github.com/JelinYao/HttpInterface) | Windows上C++封装的HTTP库,包含三种实现模式(WinInet、WinHttp、socket) | 126 | C++ | 05/20 |
| 148 | [shinnytech/open-trade-gateway](https://github.com/shinnytech/open-trade-gateway) | Diff协议中继网关, 支持 CTP / FEMAS / UFX 等交易系统 | 125 | C++ | 05/24 |
| 149 | [y123456yz/reading-and-annotate-mongodb-3.6.1](https://github.com/y123456yz/reading-and-annotate-mongodb-3.6.1) | 分布式文档数据库mongodb-3.6(mongos、mongod、wiredtiger存储引擎)源码中文注释分析,近期持续更新(码学习交流QQ群:568892619) | 124 | C++ | 06/03 |
| 150 | [hzl123456/LibyuvDemo](https://github.com/hzl123456/LibyuvDemo) | 使用libyuv对yuv数据进行缩放,旋转,镜像,裁剪等操作 | 124 | C++ | 01/16 |
| 151 | [BigPig0/RelayLive](https://github.com/BigPig0/RelayLive) | 视频服务中继,转换传输协议。将rtsp、gb28181转为html5可以直接播放的协议。 | 123 | C++ | 06/30 |
| 152 | [bitdata/ocrtable](https://github.com/bitdata/ocrtable) | Recognize tables and text from scanned images that contain tables. 从包含表格的扫描图片中识别表格和文字 | 122 | C++ | 04/24 |
| 153 | [xmuli/QtExamples](https://github.com/xmuli/QtExamples) | Qt 的 GUI 控件使用和网络;DTK 重绘控件方式的框架架构解析;Qt 原理/运行机制理解;QtCrator 使用和一些小技巧;及此系列文章教程 | 121 | C++ | 05/26 |
| 154 | [flexih/Snake](https://github.com/flexih/Snake) | Yet Another Mach-O Unused ObjC Selector/Class/Protocol Detector. 检测ObjC无用方法、无用类、无用协议。 | 120 | C++ | 05/16 |
| 155 | [YYC572652645/QCoolPage](https://github.com/YYC572652645/QCoolPage) | Qt炫酷界面 | 118 | C++ | 05/02 |
| 156 | [netease-im/NIM_PC_Demo](https://github.com/netease-im/NIM_PC_Demo) | 云信Windows(PC) C/C++ Demo源码仓库 | 117 | C++ | 06/12 |
| 157 | [Winnerhust/uthread](https://github.com/Winnerhust/uthread) | 一个简单的用户级线程库 | 114 | C++ | 04/23 |
| 158 | [MRwangmaomao/semantic_slam_nav_ros](https://github.com/MRwangmaomao/semantic_slam_nav_ros) | 针对带有RGBD相机的服务机器人,物流机器人等。具有:语义地图构建、定位导航、三维重构、重定位、动态物体识别、移动避障、手势识别、人脸识别、语音合成与识别等功能 | 112 | C++ | 01/16 |
| 159 | [Jack-Cherish/Algorithm](https://github.com/Jack-Cherish/Algorithm) | :art:冒泡排序;直接插入排序;希尔排序;快速排序;堆排序;归并排序;基数排序 | 107 | C++ | 05/13 |
| 160 | [ethan-li-coding/SemiGlobalMatching](https://github.com/ethan-li-coding/SemiGlobalMatching) | SGM双目立体匹配算法完整实现,代码规范,注释丰富且清晰,CSDN同步教学 | 107 | C++ | 06/29 |
| 161 | [dustpg/LongUI](https://github.com/dustpg/LongUI) | Lightweight C++ GUI Library 轻量级C++图形界面库 | 107 | C++ | 07/05 |
| 162 | [ouyanghuiyu/yolo-face-with-landmark](https://github.com/ouyanghuiyu/yolo-face-with-landmark) | yoloface大礼包 使用pytroch实现的基于yolov3的轻量级人脸检测(包含关键点) | 107 | C++ | 06/18 |
| 163 | [A2kaid/Get-WeChat-DB](https://github.com/A2kaid/Get-WeChat-DB) | 获取目标机器的微信数据库和密钥,但是有很多bug需要解决,需要继续完善 | 106 | C++ | 06/22 |
| 164 | [mayerui/sudoku](https://github.com/mayerui/sudoku) | C++实现的跨平台数独游戏,命令行操作易上手,可以在开发间隙用来放松身心。数百行代码,初学者也可以轻松掌握。 | 104 | C++ | 06/22 |
| 165 | [qaz734913414/Ncnn_FaceTrack](https://github.com/qaz734913414/Ncnn_FaceTrack) | 开源视频人脸跟踪算法,基于mtcnn人脸检测+onet人脸跟踪,在i7-9700k的cpu检测速度可高达250fps | 103 | C++ | 03/23 |
| 166 | [ziqiangxu/words-picker](https://github.com/ziqiangxu/words-picker) | 希望成为一款好的取词应用 | 102 | C++ | 06/30 |
| 167 | [nwpuhq/AwesomeCpp](https://github.com/nwpuhq/AwesomeCpp) | ---AWESOME--- C++学习笔记和常见面试知识点,C++11特性,包括多态、虚表、移动语义、友元函数、符号重载、完美转发、智能指针、const和static、数组指针和指针数组、struct内存对齐、enum和union关键字等等 | 100 | C++ | 02/16 |
| 168 | [XimalayaCloud/xcache](https://github.com/XimalayaCloud/xcache) | 喜马拉雅xcache缓存系统 | 99 | C++ | 06/10 |
| 169 | [raintean/blink](https://github.com/raintean/blink) | 使用html来编写golang图形界面程序(only windows) | 98 | C++ | 05/29 |
| 170 | [tsingsee/EasyRTSPLive](https://github.com/tsingsee/EasyRTSPLive) | Streaming media middleware:RTSP to RTMP,拉流IPC摄像机或者NVR硬盘录像机RTSP流转成RTMP推送到阿里云CDN/腾讯云CDN/RTMP流媒体服务器,支持多路RTSP流同时拉取并以RTMP协议推送发布,EasyRTSPLive我们支持任何平台,包括但不限于Windows/Linux/Android/ARM | 96 | C++ | 07/06 |
| 171 | [liuyanghejerry/painttyWidget](https://github.com/liuyanghejerry/painttyWidget) | This is client of Mr.Paint, 茶绘君, located at http://mrspaint.com | 95 | C++ | 05/31 |
| 172 | [YelCode/GIGABYTE-B360M-AORUS-PRO-8400-EFI-Hackintosh](https://github.com/YelCode/GIGABYTE-B360M-AORUS-PRO-8400-EFI-Hackintosh) | 技嘉b360m aorus pro 小雕 8400 黑苹果 EFI 10.13/10.14/10.15 | 94 | C++ | 03/29 |
| 173 | [zhujisheng/Home-Assistant-DIY](https://github.com/zhujisheng/Home-Assistant-DIY) | Home Assistant智能家居实践篇 | 93 | C++ | 05/21 |
| 174 | [lidaohang/ceph_study](https://github.com/lidaohang/ceph_study) | ceph学习资料整理 | 93 | C++ | 04/11 |
| 175 | [DGuco/shmqueue](https://github.com/DGuco/shmqueue) | 基于c++内存池,共享内存和信号量实现高速的进程间通信队列,单进程读单进程写无需加锁,多进程读多进程写用信号量集实现读写锁保证读写安全 | 93 | C++ | 05/18 |
| 176 | [fly8888/pubg-mobile-esp](https://github.com/fly8888/pubg-mobile-esp) | 刺激战场腾讯模拟器透视+磁性自瞄 | 92 | C++ | 03/12 |
| 177 | [jdcloud-api/jdcloud-sdk-cpp-signer](https://github.com/jdcloud-api/jdcloud-sdk-cpp-signer) | C++ SDK签名库 | 92 | C++ | 01/09 |
| 178 | [codeplutos/MySQL-JDBC-Deserialization-Payload](https://github.com/codeplutos/MySQL-JDBC-Deserialization-Payload) | MySQL JDBC Deserialization Payload / MySQL客户端jdbc反序列化漏洞payload | 91 | C++ | 02/08 |
| 179 | [xiaoyanLG/Soft-keyboard](https://github.com/xiaoyanLG/Soft-keyboard) | 集成google输入法的嵌入式中文输入面板 | 91 | C++ | 01/13 |
| 180 | [qingkouwei/oarplayer](https://github.com/qingkouwei/oarplayer) | Android Rtmp播放器,基于MediaCodec与srs-librtmp,不依赖ffmpeg | 91 | C++ | 05/26 |
| 181 | [yuangu/sxtwl_cpp](https://github.com/yuangu/sxtwl_cpp) | 寿星天文历的C++实现版本 | 91 | C++ | 07/03 |
| 182 | [chxuan/cpp-utils](https://github.com/chxuan/cpp-utils) | :hibiscus: 一些C/C++常用封装例子 | 90 | C++ | 03/30 |
| 183 | [ExtremeMart/dev-docs](https://github.com/ExtremeMart/dev-docs) | 服务于极市平台开发者的项目,提供SDK接口文件规范与常见问题示例代码。欢迎所有开发者一起参与示例代码编写。 | 89 | C++ | 06/08 |
| 184 | [changfeng1050/SerialWizard](https://github.com/changfeng1050/SerialWizard) | 使用C++ 20 & Qt 编写的跨平台多功能串口调试工具 | 89 | C++ | 06/07 |
| 185 | [778477/iOS-LinkMapAnalyzer](https://github.com/778477/iOS-LinkMapAnalyzer) | 解析iOS工程中的linkmap文件,方便分析各个模块占用的包大小 | 88 | C++ | 02/20 |
| 186 | [liuyubobobo/Play-Leetcode-Explore](https://github.com/liuyubobobo/Play-Leetcode-Explore) | My Solutions to Leetcode Explore problems(Learn & Interview). All solutions support C++, some support Java. Multiple solutions will be given by most problems. 我的Leetcode Explore解答(包括Interview & Learn两部分)。所有的问题都支持C++语言,一部分问题支持Java语言。近乎所有问题都会提供多个算法解决。大家加油!:) | 88 | C++ | 03/08 |
| 187 | [KangLin/FaceRecognizer](https://github.com/KangLin/FaceRecognizer) | 人脸识别应用 | 87 | C++ | 07/02 |
| 188 | [fawdlstty/FawCourse_FFmpeg](https://github.com/fawdlstty/FawCourse_FFmpeg) | ffmpeg教程,非命令行模式 | 87 | C++ | 04/27 |
| 189 | [szza/LearningNote](https://github.com/szza/LearningNote) | C++和Linux学习笔记 | 86 | C++ | 06/21 |
| 190 | [Rvn0xsy/Linco2](https://github.com/Rvn0xsy/Linco2) | 模拟Cobalt Strike的Beacon与C2通信过程,实现了基于HTTP协议的Linux C2 | 85 | C++ | 06/26 |
| 191 | [188080501/JQQmlImage](https://github.com/188080501/JQQmlImage) | QML中Image控件升级版,利用预解码和预读取,提升图片加载速度 | 85 | C++ | 06/24 |
| 192 | [qlwz/esp_dc1](https://github.com/qlwz/esp_dc1) | DC1插线板固件 | 84 | C++ | 04/04 |
| 193 | [zakheav/automatic-differentiation-framework](https://github.com/zakheav/automatic-differentiation-framework) | an automatic differentiation framework with dynamic graph/支持动态图的自动求导框架 | 83 | C++ | 03/01 |
| 194 | [downdemo/Cpp-Concurrency-in-Action-2ed](https://github.com/downdemo/Cpp-Concurrency-in-Action-2ed) | 📚 C++ Concurrency in Action 2ed 笔记:C++11/14/17 多线程技术 | 83 | C++ | 06/25 |
| 195 | [iceCream1997/muduo_server_learn](https://github.com/iceCream1997/muduo_server_learn) | 大并发服务器课程源代码 | 80 | C++ | 06/26 |
| 196 | [ZanderChang/anti-sandbox](https://github.com/ZanderChang/anti-sandbox) | Windows对抗沙箱和虚拟机的方法总结 | 80 | C++ | 04/22 |
| 197 | [Konano/Ingress-Field-Design](https://github.com/Konano/Ingress-Field-Design) | Ingress 多重规划 | 78 | C++ | 04/01 |
| 198 | [freezestudio/hana.zh](https://github.com/freezestudio/hana.zh) | Boost.Hana中文文档 | 77 | C++ | 03/19 |
| 199 | [fawdlstty/NetToolbox](https://github.com/fawdlstty/NetToolbox) | Net Toolbox for Master Yi (易大师网络工具箱) | 77 | C++ | 02/19 |
| 200 | [ART-Robot-Release/racecar](https://github.com/ART-Robot-Release/racecar) | 第十四届全国大学生智能汽车竞赛室外光电竞速创意赛,ART-Racecar | 76 | C++ | 04/01 |
⬆ [回到目录](#目录)
<br/>
## C#
| # | Repository | Description | Stars | Language | Updated |
| ---- | ------------------------------------------------------------ | ------------------------------------------------------------ | ----- | -------- | ------- |
| 1 | [JeffreySu/WeiXinMPSDK](https://github.com/JeffreySu/WeiXinMPSDK) | 微信公众平台SDK Senparc.Weixin for C#,支持.NET Framework及.NET Core。已支持微信公众号、小程序、小游戏、企业号、企业微信、开放平台、微信支付、JSSDK、微信周边等全平台。 WeChat SDK for C#. | 6.3k | C# | 06/29 |
| 2 | [huiyadanli/RevokeMsgPatcher](https://github.com/huiyadanli/RevokeMsgPatcher) | :trollface: A hex editor for WeChat/QQ/TIM - PC版微信/QQ/TIM防撤回补丁(我已经看到了,撤回也没用了) | 4.7k | C# | 06/30 |
| 3 | [HMBSbige/ShadowsocksR-Windows](https://github.com/HMBSbige/ShadowsocksR-Windows) | 【自用】Bug-Oriented Programming | 3.4k | C# | 05/09 |
| 4 | [dotnetcore/Util](https://github.com/dotnetcore/Util) | Util是一个.net core平台下的应用框架,旨在提升小型团队的开发输出能力,由常用公共操作类(工具类)、分层架构基类、Ui组件,第三方组件封装,第三方业务接口封装,配套代码生成模板,权限等组成。 | 3.3k | C# | 06/21 |
| 5 | [studyzy/imewlconverter](https://github.com/studyzy/imewlconverter) | 一款开源免费的输入法词库转换程序 | 2.9k | C# | 06/08 |
| 6 | [siteserver/cms](https://github.com/siteserver/cms) | SS CMS 基于 .NET Core,能够以最低的成本、最少的人力投入在最短的时间内架设一个功能齐全、性能优异、规模庞大并易于维护的网站平台。 | 2.3k | C# | 07/03 |
| 7 | [anjoy8/Blog.Core](https://github.com/anjoy8/Blog.Core) | 💖 ASP.NET Core 3.1 全家桶教程,前后端分离后端接口,vue教程姊妹篇,官方文档 | 2.2k | C# | 07/07 |
| 8 | [nilaoda/N_m3u8DL-CLI](https://github.com/nilaoda/N_m3u8DL-CLI) | [.NET] m3u8 downloader 开源的命令行m3u8/HLS下载器,支持普通AES-128-CBC解密,多线程,自定义请求头等. | 2.1k | C# | 04/17 |
| 9 | [dotnetcore/FreeSql](https://github.com/dotnetcore/FreeSql) | 🦄 dotnet ORM, Mysql orm, Postgresql orm, SqlServer orm, Oracle orm, Sqlite orm, Odbc orm, 达梦 orm, 人大金仓 orm, 神通 orm, MsAccess orm. | 1.7k | C# | 07/06 |
| 10 | [k8gege/Ladon](https://github.com/k8gege/Ladon) | 大型内网渗透扫描器&Cobalt Strike,Ladon6.6内置74个模块,包含信息收集/存活主机/IP扫描/端口扫描/服务识别/网络资产/密码爆破/漏洞检测/漏洞利用。漏洞检测含MS17010、SMBGhost、Weblogic、ActiveMQ、Tomcat、Struts2系列,密码口令爆破(Mysql、Oracle、MSSQL)、FTP、SSH(Linux)、VNC、Windows(IPC、WMI、SMB、LDAP、SmbHash、WmiHash、Winrm),远程执行命令(wmiexe/psexec/atexec/sshexec/webshell),降权提权Runas、GetSys ... | 1.7k | C# | 07/07 |
| 11 | [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.6k | C# | 02/06 |
| 12 | [dotnetcore/OSharp](https://github.com/dotnetcore/OSharp) | OSharp是一个基于.NetCore的快速开发框架,框架对 AspNetCore 的配置、依赖注入、日志、缓存、实体框架、Mvc(WebApi)、身份认证、功能权限、数据权限等模块进行更高一级的自动化封装,并规范了一套业务实现的代码结构与操作流程,使 .Net Core 框架更易于应用到实际项目开发中。 | 1.3k | C# | 06/16 |
| 13 | [geffzhang/NanoFabric](https://github.com/geffzhang/NanoFabric) | 基于Consul + .NET Core + Polly + Ocelot + Exceptionless + IdentityServer等开源项目的微服务开发框架 | 1.3k | C# | 03/13 |
| 14 | [XINCGer/Unity3DTraining](https://github.com/XINCGer/Unity3DTraining) | Unity的练习项目 | 1.3k | C# | 07/07 |
| 15 | [cq-panda/Vue.NetCore](https://github.com/cq-panda/Vue.NetCore) | .NetCore+Vue,前后端分离,支持前后端业务代码扩展的快速开发框架,Vol.Vue为前端项目,Vue.Net后台项目 | 1.2k | C# | 06/26 |