forked from GrowingGit/GitHub-Chinese-Top-Charts
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathREADME-Part2.md
1667 lines (1619 loc) · 348 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等服务协议,支持订阅, 支持二维码,剪贴板导入,手动配置,二维码分享等 | 7.4k | Swift | 03/07 |
| 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 | 3.7k | Swift | 03/06 |
| 3 | [Lax/Learn-iOS-Swift-by-Examples](https://github.com/Lax/Learn-iOS-Swift-by-Examples) | 精心收集并分类整理的Swift开发学习资源,包括Apple官方提供的示例代码和文档,以及github上的项目和国内外开发者的技术博客。欢迎提交pull-request一起维护。https://t.me/SwiftCN QQ交流群 32958950 申请请注明开发经验 | 3.1k | Swift | 06/25 |
| 4 | [SwiftOldDriver/iOS-Weekly](https://github.com/SwiftOldDriver/iOS-Weekly) | 🇨🇳 老司机 iOS 周报 | 2.9k | Swift | 03/16 |
| 5 | [hrscy/TodayNews](https://github.com/hrscy/TodayNews) | Swift4 - 今日头条 | 2.1k | Swift | 07/03 |
| 6 | [tid-kijyun/Kanna](https://github.com/tid-kijyun/Kanna) | Kanna(鉋) is an XML/HTML parser for Swift. | 2.0k | Swift | 03/10 |
| 7 | [wxxsw/SwiftTheme](https://github.com/wxxsw/SwiftTheme) | 🎨 Powerful theme/skin manager for iOS 8+ 主题/换肤, 暗色模式 | 1.9k | Swift | 03/04 |
| 8 | [Danie1s/Tiercel](https://github.com/Danie1s/Tiercel) | 简单易用、功能丰富的纯 Swift 下载框架 | 1.6k | Swift | 02/28 |
| 9 | [MxABC/swiftScan](https://github.com/MxABC/swiftScan) | A barcode and qr code scanner( 二维码 各种码识别,生成,界面效果) | 1.2k | Swift | 09/21 |
| 10 | [ApolloZhu/Developing-iOS-11-Apps-with-Swift](https://github.com/ApolloZhu/Developing-iOS-11-Apps-with-Swift) | Stanford 公开课,Developing iOS 11 Apps with Swift 字幕翻译 | 1.2k | Swift | 01/01 |
| 11 | [pujiaxin33/JXSegmentedView](https://github.com/pujiaxin33/JXSegmentedView) | A powerful and easy to use segmented view (segmentedcontrol, pagingview, pagerview, pagecontrol, categoryview) (腾讯新闻、今日头条、QQ音乐、网易云音乐、京东、爱奇艺、腾讯视频、淘宝、天猫、简书、微博等所有主流APP分类切换滚动视图) | 1.0k | Swift | 03/11 |
| 12 | [dengzemiao/DZMeBookRead](https://github.com/dengzemiao/DZMeBookRead) | (支持项目使用)最完整小说阅读器Demo。(仿iReader(掌阅),QQ阅读等常用阅读器阅读页面),支持字体,翻页效果(无效果,覆盖,仿真,上下滚动),字体切换,书签功能,阅读记录,亮度调整,背景颜色切换 等等.. | 843 | Swift | 03/17 |
| 13 | [honghaoz/Ji](https://github.com/honghaoz/Ji) | Ji (戟) is an XML/HTML parser for Swift | 817 | Swift | 01/16 |
| 14 | [Harley-xk/MaLiang](https://github.com/Harley-xk/MaLiang) | iOS painting and drawing library based on Metal. 神笔马良有一支神笔(基于 Metal 的涂鸦绘图库) | 813 | Swift | 03/04 |
| 15 | [JiongXing/PhotoBrowser](https://github.com/JiongXing/PhotoBrowser) | Elegant photo browser in Swift. 图片与视频浏览器。 | 768 | Swift | 03/02 |
| 16 | [gltwy/LTScrollView](https://github.com/gltwy/LTScrollView) | ScrollView嵌套ScrolloView(UITableView 、UICollectionView)解决方案, 支持OC / Swift(持续更新中...)实现原理:http://blog.csdn.net/glt_code/article/details/78576628 | 752 | Swift | 01/03 |
| 17 | [L-Zephyr/Drafter](https://github.com/L-Zephyr/Drafter) | 在iOS项目中自动生成类图和方法调用图 - Generate call graph in iOS project | 742 | Swift | 06/01 |
| 18 | [jkpang/PPBadgeView](https://github.com/jkpang/PPBadgeView) | iOS Custom Badge, Support UIView, UITabBarItem, UIBarButtonItem ,Support Objective-C/Swift; iOS自定义Badge组件, 支持UIView, UITabBarItem, UIBarButtonItem, 支持Objective-C/Swift | 738 | Swift | 12/25 |
| 19 | [spicyShrimp/U17](https://github.com/spicyShrimp/U17) | 精仿有妖气漫画(Swift5) | 703 | Swift | 08/20 |
| 20 | [lb2281075105/LBXMLYFM-Swift](https://github.com/lb2281075105/LBXMLYFM-Swift) | Swift5项目仿写喜马拉雅App,采用MVC+MVVM设计模式,Moya+SwiftyJSON+HandyJSON网络框架和数据解析。数据来源抓包及部分本地json文件 | 630 | Swift | 07/07 |
| 21 | [zyphs21/HSStockChart](https://github.com/zyphs21/HSStockChart) | Stock Chart include CandleStickChart,TimeLineChart. 股票走势图,包括 K 线图,分时图,手势缩放,拖动 | 549 | Swift | 03/02 |
| 22 | [LeoMobileDeveloper/PullToRefreshKit](https://github.com/LeoMobileDeveloper/PullToRefreshKit) | Pull to refresh in Swift, easy to use, easy to customize(下拉刷新/QQ/淘宝/优酷/雅虎天气/大众点评) | 509 | Swift | 07/03 |
| 23 | [daomoer/XMLYFM](https://github.com/daomoer/XMLYFM) | swift项目仿写喜马拉雅App,采用MVC+MVVM设计模式,Moya+SwiftyJSON+HandyJSON网络框架和数据解析。数据来源抓包及部分本地json文件 | 430 | Swift | 01/22 |
| 24 | [zhiquan911/CHKLineChart](https://github.com/zhiquan911/CHKLineChart) | 纯Swift4.0代码编写的K线图表组件,支持:MA,EMA,BOLL,SAR,KDJ,MACD等技术指标显示。集成使用简单,二次开发扩展强大 | 384 | Swift | 07/16 |
| 25 | [MQZHot/ZLaunchAd](https://github.com/MQZHot/ZLaunchAd) | 快速集成启动广告,支持LaunchImage和LaunchScreen,支持GIF,支持本地图片,支持视图过渡动画 | 379 | Swift | 10/25 |
| 26 | [Danie1s/DNSPageView](https://github.com/Danie1s/DNSPageView) | 一个纯Swift的轻量级、灵活且易于使用的pageView | 372 | Swift | 12/12 |
| 27 | [mengxianliang/XLCardSwitch](https://github.com/mengxianliang/XLCardSwitch) | iOS 利用余弦函数特性实现可以居中放大的图片浏览工具 | 337 | Swift | 09/11 |
| 28 | [easyui/EZPlayer](https://github.com/easyui/EZPlayer) | 基于AVPlayer封装的视频播放器,功能丰富,快速集成,可定制性强,支持react-native。 | 329 | Swift | 03/10 |
| 29 | [MQZHot/ZCycleView](https://github.com/MQZHot/ZCycleView) | This is a picture/text infinite-scroll library with UICollectionView, It can be very easy to help you make the banner you want 使用UICollectionView实现常见图片/文字无限轮播,支持自定义cell,自定义pageControl,以及轮播样式 | 306 | Swift | 10/10 |
| 30 | [lixiang1994/AutoInch](https://github.com/lixiang1994/AutoInch) | 优雅的iPhone全尺寸/等比例精准适配工具 | 291 | Swift | 11/01 |
| 31 | [JavenZ/ZJTableViewManager](https://github.com/JavenZ/ZJTableViewManager) | 强大的数据驱动的TableView,构建复杂TableView从未如此轻松。 | 276 | Swift | 01/15 |
| 32 | [netyouli/WHC_Scan](https://github.com/netyouli/WHC_Scan) | 高效强大扫描分析iOS和Android项目里没有使用的类Mac开源工具,清理项目垃圾类,让项目结构干净清爽,升级维护得心应手. Efficient and powerful scanning analysis iOS and Android project no classes used in Mac open source tools, cleaning rubbish class project, make project structure clean and relaxed, upgrade maintenance | 274 | Swift | 11/29 |
| 33 | [LvJianfeng/LLCycleScrollView](https://github.com/LvJianfeng/LLCycleScrollView) | Swift - 轮播图,文本轮播,支持左右箭头 | 270 | Swift | 01/07 |
| 34 | [mythkiven/AD_Fastlane](https://github.com/mythkiven/AD_Fastlane) | iOS App 自动化上传 AppStore ,一键部署 App。自动上传蒲公英 | 268 | Swift | 07/25 |
| 35 | [mythkiven/DiffuseMenu_Swift](https://github.com/mythkiven/DiffuseMenu_Swift) | 点击菜单弹射选项的动画效果,Swift 语言版AwesomeMenu | 267 | Swift | 07/25 |
| 36 | [choiceyou/FWPopupView](https://github.com/choiceyou/FWPopupView) | 弹窗控件:支持AlertView、Sheet、自定义视图的PopupView。AlertView中可以嵌套自定义视图,各组件的显示隐藏可配置;Sheet仿微信样式;同时提供自定义弹出。更多配置请参考”可设置参数“,提供OC使用Demo。 | 264 | Swift | 03/09 |
| 37 | [DarielChen/iOSTips](https://github.com/DarielChen/iOSTips) | 记录iOS(Swift)开发中的一些知识点、小技巧 | 263 | Swift | 12/11 |
| 38 | [zqqf16/SYM](https://github.com/zqqf16/SYM) | A crash log symbolicating Mac app \| 一个图形化的崩溃日志符号化工具 | 253 | Swift | 01/17 |
| 39 | [xjbeta/iina-plus](https://github.com/xjbeta/iina-plus) | Extra danmaku support for iina. (iina 弹幕支持 | 251 | Swift | 01/18 |
| 40 | [manondidi/swiftArch](https://github.com/manondidi/swiftArch) | swift开发脚手架 | 235 | Swift | 12/28 |
| 41 | [Xinguang/WechatKit](https://github.com/Xinguang/WechatKit) | 一款快速实现微信第三方登录的框架(Swift版) SDK 1.8.5 | 234 | Swift | 02/24 |
| 42 | [treastrain/TRETJapanNFCReader](https://github.com/treastrain/TRETJapanNFCReader) | 日本の NFC、FeliCa カード向けリーダーライブラリ(iOS 13.0 以降)Suica、PASMOなどの交通系ICカード、楽天Edy、nanaco、WAON、運転免許証の読み取り(iOS 13 Core NFC) | 234 | Swift | 03/16 |
| 43 | [ZzzM/HostsToolforMac](https://github.com/ZzzM/HostsToolforMac) | HostsToolforMac是Mac平台下的一个简易工具,来获取最新的hosts更新。 | 217 | Swift | 12/31 |
| 44 | [Sunnyyoung/AppleReserver](https://github.com/Sunnyyoung/AppleReserver) | Apple 官方预约监控助手 | 201 | Swift | 09/21 |
| 45 | [geek5nan/FanFanSwift](https://github.com/geek5nan/FanFanSwift) | 翻翻看 Swift 版 | 201 | Swift | 12/13 |
| 46 | [andyRon/swift-algorithm-club-cn](https://github.com/andyRon/swift-algorithm-club-cn) | swift-algorithm-club的翻译。使用Swift学习算法和数据结构。 | 201 | Swift | 02/21 |
| 47 | [lb2281075105/LBU25-Swift](https://github.com/lb2281075105/LBU25-Swift) | Swift5 精仿漫画类App(有妖气漫画),Moya+SwiftyJSON+HandyJSON网络框架和数据解析。数据来源真实接口获得 | 199 | Swift | 12/18 |
| 48 | [SunshineBrother/SwiftTools](https://github.com/SunshineBrother/SwiftTools) | 技术不够,努力来凑;封装不了一个伟大的开源框架,但是仍然想要有一个自己的开源项目,所以就准备把一些项目中的常用工具类给打出来,省的每一次写项目的时候都要重写一遍 | 195 | Swift | 12/19 |
| 49 | [GTMYang/GTMRefresh](https://github.com/GTMYang/GTMRefresh) | Swift实现的下拉刷新和上拉加载组件 | 195 | Swift | 01/06 |
| 50 | [Coder-TanJX/JXBanner](https://github.com/Coder-TanJX/JXBanner) | 🚀🚀🚀 A super - custom multifunctional framework for banner unlimited rollover diagrams [一个超自定义多功能无限轮播图框架] | 188 | Swift | 03/12 |
| 51 | [pujiaxin33/JXTheme](https://github.com/pujiaxin33/JXTheme) | A powerful and lightweight and customization theme/skin library for iOS 9+ in swift. 主题、换肤、暗黑模式 | 178 | Swift | 11/22 |
| 52 | [iosyaowei/JSONConverter](https://github.com/iosyaowei/JSONConverter) | JSONConverter可以快速的把json数据转换生成OC/Swift/Flutter的属性,省去手动创建的麻烦,大大提高iOSer的开发效率 | 175 | Swift | 01/20 |
| 53 | [Noah37/zhuishushenqi](https://github.com/Noah37/zhuishushenqi) | 追书神器Swift版客户端(非官方)zhuishushenqi简版 [ZDReader](https://github.com/Noah37/ZDReader) ,缩减了大部分无用功能,项目仅10M,有需要的可前往 | 164 | Swift | 03/12 |
| 54 | [wxxsw/SwiftUI-WeChat](https://github.com/wxxsw/SwiftUI-WeChat) | 🇨🇳 Learn how to make WeChat with SwiftUI. 微信 7.0 🟢 | 145 | Swift | 03/08 |
| 55 | [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第三方客户端)的用户反馈信息 | 141 | Swift | 02/02 |
| 56 | [Light413/dctt](https://github.com/Light413/dctt) | xx头条【完整项目持续迭代中】(一款本地生活信息发布APP,分享新鲜事、找人找对象等生活服务)。已App Store上架,这里仅供学习交流 | 132 | Swift | 02/11 |
| 57 | [pujiaxin33/JXPatternLock](https://github.com/pujiaxin33/JXPatternLock) | An easy-to-use, powerful, customizable pattern lock view in swift. 图形解锁/手势解锁 / 手势密码 / 图案密码 / 九宫格密码 | 129 | Swift | 11/26 |
| 58 | [Coder-TanJX/JXPageControl](https://github.com/Coder-TanJX/JXPageControl) | 🚀🚀🚀 自定义pageControl指示器, 支持多种动画, 自定义布局. | 125 | Swift | 07/22 |
| 59 | [CoderLinLee/LLSegmentViewController](https://github.com/CoderLinLee/LLSegmentViewController) | 可添加header的多控制器列表,主流APP分类切换滚动视图(京东,网易新闻,爱奇艺,QQ弹性小球等,可高度自定义,项目结构清晰);UIScrollView 嵌套,可做个人详情页,商品详情页,页面多tableView滑动悬停 | 124 | Swift | 08/05 |
| 60 | [Darren-chenchen/CLImagePickerTool](https://github.com/Darren-chenchen/CLImagePickerTool) | 这是一个多图片选择的控件 | 124 | Swift | 11/08 |
| 61 | [we11cheng/WCPotatso](https://github.com/we11cheng/WCPotatso) | iOS Potatso源码(配置下自己的开发证书就能编译版本) | 121 | Swift | 01/17 |
| 62 | [huangboju/GesturePassword](https://github.com/huangboju/GesturePassword) | GesturePassword 是一个Swift的手势密码库 | 120 | Swift | 01/05 |
| 63 | [Tuluobo/Leiter](https://github.com/Tuluobo/Leiter) | 一个基于 NEKit 的网络 Proxy App。 | 120 | Swift | 02/11 |
| 64 | [yourtion/YXWaveView](https://github.com/yourtion/YXWaveView) | A water wave animation view (类似百度外卖的头像波浪效果) | 119 | Swift | 12/12 |
| 65 | [937447974/YJCocoa](https://github.com/937447974/YJCocoa) | YJ 系列 Pod 开源库 | 112 | Swift | 03/06 |
| 66 | [jasnig/UsefulPickerView](https://github.com/jasnig/UsefulPickerView) | 可以简单快速实现点击TextField或者按钮弹出单列, 多列, 多列关联,城市选择, 日期选择的pickerView | 112 | Swift | 11/14 |
| 67 | [Habit21D/SwiftHttpRequest](https://github.com/Habit21D/SwiftHttpRequest) | Swift5.0:基于Alamofire的网络封装及基于Codable的model解析 | 108 | Swift | 09/17 |
| 68 | [heyode/HEPhotoPicker](https://github.com/heyode/HEPhotoPicker) | 自由定制支持视频,图片的相册选择器 | 108 | Swift | 11/12 |
| 69 | [fengmingdev/SwiftWkWebView](https://github.com/fengmingdev/SwiftWkWebView) | Swift4.0 WkWebView 支持SB/XIB拖拽的 WkWebView | 106 | Swift | 07/11 |
| 70 | [ethanhuang13/blahker](https://github.com/ethanhuang13/blahker) | 巴拉剋 - Safari 蓋版廣告消除器 | 102 | Swift | 12/17 |
| 71 | [liucaide/CaamDau](https://github.com/liucaide/CaamDau) | iOS Swift 通用业务组件库 & Cocoa便利性扩展。Form流式模型化UI排版、Timer计时管理、AppDelegate解耦方案、HUD提示窗、Page分页导航、Indexes侧边索引、TopBar自定义导航栏、InputBox输入框扩展、Router组件化路由协议、IconFont阿里矢量图标管理、MJRefresh扩展、Alamofire扩展;附.功能组件、组件化示例、第三方库示例 | 94 | Swift | 03/06 |
| 72 | [tysqapp/tysq-ios](https://github.com/tysqapp/tysq-ios) | 天宇社区客户端APP开源 | 91 | Swift | 01/06 |
| 73 | [Darren-chenchen/IDealist](https://github.com/Darren-chenchen/IDealist) | IOS常用框架集合,避免重复造轮子 | 90 | Swift | 11/18 |
| 74 | [WangWenzhuang/ZKProgressHUD](https://github.com/WangWenzhuang/ZKProgressHUD) | iOS App 上极易于使用的 HUD | 88 | Swift | 01/30 |
| 75 | [pujiaxin33/JXPopupView](https://github.com/pujiaxin33/JXPopupView) | 一个轻量级的自定义视图弹出框架 | 87 | Swift | 06/19 |
| 76 | [pujiaxin33/JXScratchView](https://github.com/pujiaxin33/JXScratchView) | 一个万能的刮刮乐控件。无论是UILabel、UIImageView,还是自定义视图,只要是UIView都可以用来刮。代码简单,功能强大,你值得拥有! | 87 | Swift | 11/26 |
| 77 | [choiceyou/FWSideMenu](https://github.com/choiceyou/FWSideMenu) | 侧滑控件:支持左、右滑动的侧滑菜单,可配置单侧滑动,同时可配置菜单宽度等,更多配置请参考”可设置参数“。参考了QQ用户体验:支持边缘侧滑,解决手势冲突问题(边缘范围可设置)。提供OC使用Demo。 | 86 | Swift | 11/19 |
| 78 | [choiceyou/FWSegmentedControl](https://github.com/choiceyou/FWSegmentedControl) | 分段控件:支持纯文字、纯图片、文字图片混排等方式的Segment,文字、图片排布顺序可选,同时有多重可选下标,更多配置请参考”可设置参数“。提供OC使用Demo。 | 86 | Swift | 10/28 |
| 79 | [MoyaMapper/MoyaMapper](https://github.com/MoyaMapper/MoyaMapper) | 快速解析模型工具,支持RxSwift。同时支持缓存功能 【相关手册 https://MoyaMapper.github.io 】 | 84 | Swift | 07/06 |
| 80 | [Liaoworking/MoyaNetworkTool](https://github.com/Liaoworking/MoyaNetworkTool) | a robust networkTool based on Moya. Moya Demo 一个强健的基于moya二次封装的网络框架 | 75 | Swift | 03/09 |
| 81 | [parkingwang/vehicle-keyboard-ios](https://github.com/parkingwang/vehicle-keyboard-ios) | 停车王车牌号码专用键盘 - iOS | 74 | Swift | 11/27 |
| 82 | [ljchen1129/SecondsOpenH5](https://github.com/ljchen1129/SecondsOpenH5) | 秒开 H5 页面优化 | 74 | Swift | 10/17 |
| 83 | [miliPolo/SwiftUI_Jike](https://github.com/miliPolo/SwiftUI_Jike) | 用SwiftUI仿即刻App界面(Build Jike App UI with SwiftUI) | 72 | Swift | 06/18 |
| 84 | [windstormeye/SwiftGame](https://github.com/windstormeye/SwiftGame) | 我的小专栏《Swift 游戏开发》代码集合 | 71 | Swift | 03/07 |
| 85 | [saeipi/KSChart](https://github.com/saeipi/KSChart) | k线图/kline/kchart,已经集成MA/EMA/MACD/KDJ/RSI等指标,新增指标及其方便。适用于股票/区块链交易所等种类App。Swift5.1编写,数据处理能力优秀,60FPS稳定运行。示例集成websocket,并接入币安数据(需VPN)。 | 68 | Swift | 03/17 |
| 86 | [LinXunFeng/LXFProtocolTool](https://github.com/LinXunFeng/LXFProtocolTool) | 由swift中协议方式实现功能的实用工具库【Refreshable、EmptyDataSetable 支持 Rx 】 | 68 | Swift | 08/16 |
| 87 | [15617665365/Look](https://github.com/15617665365/Look) | 仿看了吗 | 66 | Swift | 08/18 |
| 88 | [lixiang1994/AttributedString](https://github.com/lixiang1994/AttributedString) | 基于Swift插值方式优雅的构建富文本 | 65 | Swift | 03/06 |
| 89 | [Harley-xk/Chrysan](https://github.com/Harley-xk/Chrysan) | Chrysan 是一个简单易用的 HUD 库,使用 iOS 自带的 UIBlurEffect 毛玻璃特效,支持自定义动画。 | 64 | Swift | 03/10 |
| 90 | [maltsugar/RollingNotice-Swift](https://github.com/maltsugar/RollingNotice-Swift) | 滚动公告、广告,支持灵活自定义cell。淘宝、口碑、京东、美团、天猫等等一切滚动广告 Roll Notice or Advertising, customize cell as UITableViewCell supported, Swift version is also ready | 64 | Swift | 10/24 |
| 91 | [ashen-zhao/baisiapp](https://github.com/ashen-zhao/baisiapp) | 模仿百思不得姐App,视频,音乐,图片,自定义文本高度,不定期更新 | 62 | Swift | 10/18 |
| 92 | [ming1016/MethodTraceAnalyze](https://github.com/ming1016/MethodTraceAnalyze) | 方法耗时分析 | 62 | Swift | 02/26 |
| 93 | [zhaofucheng1129/DouyinSwift](https://github.com/zhaofucheng1129/DouyinSwift) | 基于Swift5+Moya+RxSwift仿抖音App | 61 | Swift | 06/08 |
| 94 | [mengzhihun6/JGTaoMall](https://github.com/mengzhihun6/JGTaoMall) | 注:外接的N手项目,仅开源供大家学习使用,禁止从事商业活动,如出现一切法律问题自行承担!!! | 60 | Swift | 09/30 |
| 95 | [zhongjianfeipqy/VerificationCode](https://github.com/zhongjianfeipqy/VerificationCode) | 自定义多位验证码 | 59 | Swift | 07/25 |
| 96 | [Sepicat/Straycat](https://github.com/Sepicat/Straycat) | Sepicat Data Parser - 获取到更多的 GitHub 信息 | 58 | Swift | 10/12 |
| 97 | [trilliwon/JNaturalKorean](https://github.com/trilliwon/JNaturalKorean) | 한글 (조사, 助詞, postposition) | 57 | Swift | 12/26 |
| 98 | [fumiyasac/handMadeCalendarAdvance](https://github.com/fumiyasac/handMadeCalendarAdvance) | [ING]Swift版の日本の祝祭日判定コードとカレンダーサンプル(iOS Sample Study: Swift) | 55 | Swift | 06/26 |
| 99 | [choiceyou/FWCycleScrollView](https://github.com/choiceyou/FWCycleScrollView) | 轮播控件:支持本地图片、网络图片、自定义视图,轮播分页控件有多重可选方案,轮播次数、间隔时间也可设置,更多配置请参考”可设置参数“。提供OC使用Demo。 | 54 | Swift | 10/30 |
| 100 | [Jvaeyhcd/HcdSpecialField](https://github.com/Jvaeyhcd/HcdSpecialField) | A special field like mobike input bike number field.仿摩拜单车手动输入单车编号控件. | 54 | Swift | 01/16 |
| 101 | [netyouli/WHC_Layout](https://github.com/netyouli/WHC_Layout) | Swift iOS and Mac OS X platforms currently in use the fastest the simplest development to build the UI layout automatically open source library, strong dynamic layout constraint handling capacity,iOS/Mac OS X平台上目前使用最简单开发构建UI速度最快的自动布局开源库,强悍的动态布局约束处理能力 | 51 | Swift | 11/19 |
| 102 | [HJTXX/XXPerformanceMonitor](https://github.com/HJTXX/XXPerformanceMonitor) | Swift版轻量卡顿监控工具,支持主线程和子线程,一句代码即可轻松集成。 | 51 | Swift | 12/13 |
| 103 | [WangLiquan/EWAddressPicker-Swift](https://github.com/WangLiquan/EWAddressPicker-Swift) | A custom addressPicker.Swift.地址选择器,选择省市地区. | 50 | Swift | 07/11 |
| 104 | [iOSPrincekin/PrincekinKlineFrame](https://github.com/iOSPrincekin/PrincekinKlineFrame) | 一款用Swift开发的K线图和深度图组件,具有轻量、敏捷等特点,可供虚拟货币行业和金融行业使用 | 49 | Swift | 12/29 |
| 105 | [Hurdery/App-Store](https://github.com/Hurdery/App-Store) | 仿App-Store 基本框架 | 49 | Swift | 12/11 |
| 106 | [Insfgg99x/FGVideoEditor](https://github.com/Insfgg99x/FGVideoEditor) | swif版微信视屏裁剪,类似微信朋友圈视频裁剪方式的视频裁剪工具(video croping) | 49 | Swift | 03/16 |
| 107 | [lidong1665/Swift-BLE](https://github.com/lidong1665/Swift-BLE) | 本项目是通过Swift语言来实现IOS中蓝牙4.0的开发 | 49 | Swift | 09/06 |
| 108 | [CaiWanFeng/iOS_Storage](https://github.com/CaiWanFeng/iOS_Storage) | 收纳的艺术 | 48 | Swift | 02/24 |
| 109 | [TonyReet/AutoSQLite.swift](https://github.com/TonyReet/AutoSQLite.swift) | SQLite.swift的封装,Model直接存储.获取. 无需再转换,增删改查. 脱离sql语句 | 48 | Swift | 08/01 |
| 110 | [gl-lei/algorithm](https://github.com/gl-lei/algorithm) | 数据结构与算法之美代码 , 原始代码 https://github.com/wangzheng0822/algo | 47 | Swift | 06/10 |
| 111 | [sulioppa/ChineseChess](https://github.com/sulioppa/ChineseChess) | Chinese Chess(中国象棋) - A Free iOS App(C & Obj-C & Swift) | 46 | Swift | 08/23 |
| 112 | [HuaZao/TC1-NG](https://github.com/HuaZao/TC1-NG) | 斐讯TC1 DC1 A1 M1 iOS客户端 | 46 | Swift | 12/20 |
| 113 | [wxxsw/GSCaptchaButton](https://github.com/wxxsw/GSCaptchaButton) | 为普通按钮增加验证码倒计时功能,不影响按钮样式 | 45 | Swift | 08/29 |
| 114 | [xidian-rs/Ruisi_Ios](https://github.com/xidian-rs/Ruisi_Ios) | 西电睿思手机客户端[iOS]适用于discuz论坛 | 44 | Swift | 02/11 |
| 115 | [Allen0828/AEAlertView](https://github.com/Allen0828/AEAlertView) | Custom AlertView supports multiple modes 自定义AlertView 支持多种模式弹窗 | 44 | Swift | 12/19 |
| 116 | [shinnytech/shinny-futures-ios](https://github.com/shinnytech/shinny-futures-ios) | 一个开源的 ios 平台期货行情交易终端 | 43 | Swift | 02/29 |
| 117 | [RayJiang16/XYColor](https://github.com/RayJiang16/XYColor) | An easy way to adapter dark mode on CALayer. iOS 快速适配夜间模式 | 43 | Swift | 02/07 |
| 118 | [TangledHusky/SwiftPopMenu](https://github.com/TangledHusky/SwiftPopMenu) | swift语言实现的一款菜单弹出工具,适用于任何位置。 | 43 | Swift | 09/23 |
| 119 | [enums/Pjango](https://github.com/enums/Pjango) | 一款基于Swift 3.x的服务端框架,使用MVC设计你的服务端软件。 | 42 | Swift | 12/02 |
| 120 | [klbest1/MyIOSDemo](https://github.com/klbest1/MyIOSDemo) | 模仿探探图片切换,自定义折线图,图片裁剪,微信朋友圈图片视频浏览,图片下载缓存,数量标记,爆炸动画,autolayout,线程安全 | 43 | Swift | 02/14 |
| 121 | [FighterLightning/ZHFJDAddress](https://github.com/FighterLightning/ZHFJDAddress) | Swift 仿京东地址选择器,京东地址选择器(网络,本地数据。三级、四级、保证成功集成) | 41 | Swift | 08/24 |
| 122 | [enums/Calatrava](https://github.com/enums/Calatrava) | 基于 Pjango 的开源博客。 | 41 | Swift | 07/05 |
| 123 | [XanderXu/ARStack](https://github.com/XanderXu/ARStack) | 3步制作AR版堆方块游戏make ARStack in 3 steps | 41 | Swift | 08/09 |
| 124 | [V5zhou/ZZXcodeFormat](https://github.com/V5zhou/ZZXcodeFormat) | 支持OC与swift代码格式化 | 39 | Swift | 12/21 |
| 125 | [Harley-xk/Comet](https://github.com/Harley-xk/Comet) | iOS 项目的 Swift 基础库,提供常用组件、便利方法等。支持 Swift 3.x、Swift 4.x,iOS 8.0+ | 39 | Swift | 01/18 |
| 126 | [fcbox/Lantern](https://github.com/fcbox/Lantern) | 基于Swift的高可用视图框架 | 39 | Swift | 03/16 |
| 127 | [hite/YanxuanHD](https://github.com/hite/YanxuanHD) | 用 SwiftUI 实现的严选 HD | 38 | Swift | 08/04 |
| 128 | [TestEngineerFish/LoginSliderView](https://github.com/TestEngineerFish/LoginSliderView) | 滑动图形行为验证码 | 37 | Swift | 12/05 |
| 129 | [mancongiOS/MCPageViewController](https://github.com/mancongiOS/MCPageViewController) | 切换滚动视图,MCPageViewController, UIPageViewController | 36 | Swift | 10/10 |
| 130 | [hello-david/SwiftV2Ray](https://github.com/hello-david/SwiftV2Ray) | V2Ray-Core的iOS工具 | 36 | Swift | 03/05 |
| 131 | [Pircate/AlipayHomePageDemo](https://github.com/Pircate/AlipayHomePageDemo) | 仿支付宝首页 | 34 | Swift | 11/18 |
| 132 | [kinsunlu/KSMediaPicker](https://github.com/kinsunlu/KSMediaPicker) | KSMediaPicker小红书,Instagram的媒体选取器 | 34 | Swift | 06/05 |
| 133 | [gaoyanbin1314/GYPhotoAlbum](https://github.com/gaoyanbin1314/GYPhotoAlbum) | 打开相册的工具,通过获取相册数据,自定义相册的展示,类似朋友圈 | 34 | Swift | 07/09 |
| 134 | [gaoyanbin1314/GYPetalAnimation](https://github.com/gaoyanbin1314/GYPetalAnimation) | 使用CAKeyframeAnimation 实现花瓣特效 | 32 | Swift | 07/04 |
| 135 | [zonble/MRTSwift](https://github.com/zonble/MRTSwift) | iOS 台北捷運轉乘計算工具 | 31 | Swift | 06/14 |
| 136 | [Boxzhi/HZNavigationBar](https://github.com/Boxzhi/HZNavigationBar) | A very simple to use, can be completely customized navigation bar. 一款使用非常简单,可以完全自定义的导航栏。 | 30 | Swift | 01/14 |
| 137 | [YTiOSer/ScanCode_Swift](https://github.com/YTiOSer/ScanCode_Swift) | 二维码 VIN码扫描 支持拍照相册选择图片识别, 功能强大, UI漂亮, 集成简单! | 30 | Swift | 12/25 |
| 138 | [WangLiquan/EWDatePicker](https://github.com/WangLiquan/EWDatePicker) | A custom datePicker.基于ViewController的从下方弹出日期选择器 | 30 | Swift | 07/11 |
| 139 | [chquanquan/AreaPickerView](https://github.com/chquanquan/AreaPickerView) | areapicker in china, easy to use. 中国的地区选择器.简单易用. | 29 | Swift | 10/14 |
| 140 | [520/EasyWords](https://github.com/520/EasyWords) | 苹果商店上架项目, on app store, for MacOS, mac开源, mac open source, | 29 | Swift | 03/15 |
| 141 | [fengzhihao123/UI-Swift](https://github.com/fengzhihao123/UI-Swift) | swift搭建UI | 28 | Swift | 06/11 |
| 142 | [anonymity-du/DoubleSliderView-swift](https://github.com/anonymity-du/DoubleSliderView-swift) | 双向滑动,滑块可以重叠, 左边滑块不能移动到右边滑块的右边。Two slider can overlap, and the left slider can not be moved to right of the right slider | 28 | Swift | 06/25 |
| 143 | [InsectQY/GamerSky](https://github.com/InsectQY/GamerSky) | 高仿游民星空 App | 27 | Swift | 10/28 |
| 144 | [821385843/MGJRouter_Swift](https://github.com/821385843/MGJRouter_Swift) | MGJRouter_Swift 是蘑菇街 MGJRouter 的 Swift 版,完全实现 MGJRouter 所有功能。 | 27 | Swift | 06/18 |
| 145 | [LwqDeveloper/DLMusicWaveView](https://github.com/LwqDeveloper/DLMusicWaveView) | 仿抖音/音乐片段截取显示/可拖动 | 26 | Swift | 08/22 |
| 146 | [wubianxiaoxian/Algorithm-swift](https://github.com/wubianxiaoxian/Algorithm-swift) | 记录一下,算法学习 | 26 | Swift | 08/26 |
| 147 | [loveway/MarqueeLabel](https://github.com/loveway/MarqueeLabel) | 一个用swift封装的跑马灯效果 | 26 | Swift | 08/05 |
| 148 | [omochi/SwiftTypeInferenceHandsOn](https://github.com/omochi/SwiftTypeInferenceHandsOn) | Swiftc合宿 2019/09/28 | 25 | Swift | 10/17 |
| 149 | [tuxi/alpface](https://github.com/tuxi/alpface) | 学习抖音的iOS项目 | 25 | Swift | 08/19 |
| 150 | [JumeiRdGroup/JMRouter](https://github.com/JumeiRdGroup/JMRouter) | 一个轻量级,纯Swift,协议化的路由控件 | 24 | Swift | 02/09 |
| 151 | [ios-zhouyu/ZYCycleViewSwift](https://github.com/ios-zhouyu/ZYCycleViewSwift) | ZYCycleViewSwift版轮播图 | 24 | Swift | 09/25 |
| 152 | [even-cheng/ECSigner](https://github.com/even-cheng/ECSigner) | (iOS app signer, Support multi-file synchronization signature and auto create profile and certificate to sign)一键签名,网络地址直签,多文件同步签,自动区分企业签名和个人证书,一键Assets.car解压导出和替换,自动注册设备并更新下载签名证书和签名文件进行签名。支持Swift5和iOS13,macOS10.15并向下兼容。 | 24 | Swift | 03/13 |
| 153 | [smslit/timeGO](https://github.com/smslit/timeGO) | 一款 macOS 平台的倒计时 app,力求简洁快速 | 23 | Swift | 10/10 |
| 154 | [josercc/iPATools](https://github.com/josercc/iPATools) | 用于检索本地的数据来发布Plist到Github本地文件安装 利用Github的HTTPS实现ATO的安装方式 本地地址安装 安装便捷 | 23 | Swift | 09/05 |
| 155 | [SunshineBrother/LeetCodeStudy](https://github.com/SunshineBrother/LeetCodeStudy) | 算法学习 | 22 | Swift | 12/06 |
| 156 | [Weang/WLVideo](https://github.com/Weang/WLVideo) | 仿照微信拍照拍视频的功能 | 22 | Swift | 01/07 |
| 157 | [yiruchujian/modifyPositioning](https://github.com/yiruchujian/modifyPositioning) | 更改iOS定位 swift | 22 | Swift | 09/16 |
| 158 | [wh8817221/CoreML](https://github.com/wh8817221/CoreML) | 机器学习仿微信实现二维码扫描放大功能(CoreML) | 22 | Swift | 08/20 |
| 159 | [JasonWu1111/FaceAgingDemo](https://github.com/JasonWu1111/FaceAgingDemo) | 自己实现的一个人脸变老的方案,项目代码和算法相关均由 Swift 实现 | 21 | Swift | 06/12 |
| 160 | [developerjet/JetChat](https://github.com/developerjet/JetChat) | Swift5.0编写的简仿微信聊天应用,完美支持表情键盘、单聊、群聊、本地消息会话缓存。 | 21 | Swift | 01/04 |
| 161 | [yinjining/StarRateView](https://github.com/yinjining/StarRateView) | swift五星评分,星星评分控件,支持自定义数量、拖拽、0.1颗星等多种操作 | 21 | Swift | 10/25 |
| 162 | [jiangboLee/Refresh](https://github.com/jiangboLee/Refresh) | MJRefresh-swift版 | 21 | Swift | 11/29 |
| 163 | [yasasii-team/Stepippo-iOS](https://github.com/yasasii-team/Stepippo-iOS) | 初めての一歩を応援するアプリのiOS版 | 20 | Swift | 06/29 |
| 164 | [GesanTung/iOSTips](https://github.com/GesanTung/iOSTips) | iOS 开发的一些 Tips | 20 | Swift | 12/10 |
| 165 | [hxwxww/HXImagePickerController](https://github.com/hxwxww/HXImagePickerController) | 仿微信图片选择器 | 20 | Swift | 02/14 |
| 166 | [bestDew/ZKCycleScrollViewDemo](https://github.com/bestDew/ZKCycleScrollViewDemo) | A simple and useful automatic infinite scroll view, more elegant implementation and more friendly API. Support Objective-C and Swift. 一款简单实用的轮播图控件,更优雅的实现,更友好的API。支持 Objective-C 和 Swift。 | 20 | Swift | 11/22 |
| 167 | [jiangboLee/SwiftUIDemo](https://github.com/jiangboLee/SwiftUIDemo) | 用SwiftUI构建完整应用-DesignCode | 19 | Swift | 10/19 |
| 168 | [hirothings/iOS-DefaultUISampler](https://github.com/hirothings/iOS-DefaultUISampler) | iOS標準UIワークショップ用のRepository | 19 | Swift | 10/31 |
| 169 | [FighterLightning/ZHFSegment](https://github.com/FighterLightning/ZHFSegment) | Swift 自定义分段控制器和使用(可根据项目需求定制) | 19 | Swift | 06/13 |
| 170 | [pujiaxin33/JXExcel](https://github.com/pujiaxin33/JXExcel) | 一个轻量级的表视图 | 19 | Swift | 12/09 |
| 171 | [Nemocdz/ImageCompress-iOS](https://github.com/Nemocdz/ImageCompress-iOS) | 基于 ImageIO 支持动静态的图片压缩库 | 19 | Swift | 09/07 |
| 172 | [duanhai/Tun2socks-PacketTunnelDemo](https://github.com/duanhai/Tun2socks-PacketTunnelDemo) | go-tun2socks-mobile 生成的framework 使用demo | 19 | Swift | 09/04 |
| 173 | [nick6969/SQLManager](https://github.com/nick6969/SQLManager) | 將 FMDB 再封裝一層,更加簡潔的使用SQLite | 18 | Swift | 08/16 |
| 174 | [BoxDengJZ/AudioJz](https://github.com/BoxDengJZ/AudioJz) | 个人学过的,音频相关的技巧。从 ray wenderlich 开始 | 18 | Swift | 03/02 |
| 175 | [TangledHusky/TestSwift](https://github.com/TangledHusky/TestSwift) | 基于swift语言,测试着玩的 | 18 | Swift | 09/23 |
| 176 | [xaoxuu/ProHUD](https://github.com/xaoxuu/ProHUD) | 完全可定制化的HUD,包含顶部区域的Toast,中央区域的Alert和底部区域的ActionSheet。 | 18 | Swift | 08/29 |
| 177 | [hutmobile/iOS_YangMeng_TodayNews](https://github.com/hutmobile/iOS_YangMeng_TodayNews) | 此app是由杨蒙老师用swift4.1 开发的,并将整个开发过程制成视频教程,如下 https://ke.qq.com/course/281908#tuin=1c8f38f4 其本人的今日头条项目的GitHub网址是 https://github.com/hrscy/TodayNews 其仿写了今日头条这个比较有名的app, 当然啦,大多仿写的是今日头条2018年上半年的版本 不过较为可惜的是,或许是他较为繁忙,这个项目已经有一年没更新了 由于这个项目有较大的参考和学习的价值,本人稍稍对其进行了维护,让项目能运行起来。 | 17 | Swift | 08/12 |
| 178 | [eliudnis/swift-course](https://github.com/eliudnis/swift-course) | 极客时间《Swift 核心技术与实战》课件和代码 | 17 | Swift | 12/18 |
| 179 | [nenhall/NHAVEditor](https://github.com/nenhall/NHAVEditor) | (Objective-C) 基于 AVFoundation 框架封装的 iOS视频编辑工具 | 17 | Swift | 01/17 |
| 180 | [FranZhou/FZBuildingBlock](https://github.com/FranZhou/FZBuildingBlock) | 积木模块,提供最基础的功能支持 | 17 | Swift | 01/08 |
| 181 | [ZCLemo/MiaoShowSwift](https://github.com/ZCLemo/MiaoShowSwift) | 高仿喵播swift版本 | 16 | Swift | 07/12 |
| 182 | [xaoxuu/NoticeBoard](https://github.com/xaoxuu/NoticeBoard) | 请使用功能更强大的ProHUD: https://github.com/xaoxuu/ProHUD | 16 | Swift | 07/17 |
| 183 | [Ch0uti/ChouTi](https://github.com/Ch0uti/ChouTi) | 🗄 ChouTi (抽屉) - a framework for Swift development. | 16 | Swift | 02/15 |
| 184 | [WeMadeCode/CYLTabBarController-Swift](https://github.com/WeMadeCode/CYLTabBarController-Swift) | 流行框架CYLTabBarController(最低只需传两个数组即可完成主流App框架搭建)之Swift简单用法 | 16 | Swift | 06/14 |
| 185 | [ly918/SwiftUI-Chinese-Documents](https://github.com/ly918/SwiftUI-Chinese-Documents) | SwiftUI官方教程翻译,SwiftUI源码解析,实践应用,常见问题,欢迎讨论Issue | 16 | Swift | 01/03 |
| 186 | [wsl2ls/SwiftStudy](https://github.com/wsl2ls/SwiftStudy) | Swift学习之微博朋友圈列表功能实现 | 15 | Swift | 08/07 |
| 187 | [swiftclub/SwiftClub](https://github.com/swiftclub/SwiftClub) | Vapor 实现 Swift 开发者社区网站(Vapor3) | 14 | Swift | 09/03 |
| 188 | [yungfan/iOS-BasedOnSwift](https://github.com/yungfan/iOS-BasedOnSwift) | iOS开发教程案例代码 | 14 | Swift | 02/23 |
| 189 | [WangLiquan/EWTextField](https://github.com/WangLiquan/EWTextField) | Swift版自定制textfield,实现开始输入时placeholder上移效果. | 14 | Swift | 06/21 |
| 190 | [baozoudiudiu/CWSwiftPrint](https://github.com/baozoudiudiu/CWSwiftPrint) | 解决网络请求返回中文数据时,Xcode在控制台打印unicode编码问题 | 14 | Swift | 08/16 |
| 191 | [iosRober/BLoger](https://github.com/iosRober/BLoger) | CocoaLumberjack/Swift框架的扩展,一键接入日志系统,Debug模式下摇一摇即可查看日志 | 13 | Swift | 12/17 |
| 192 | [LiulietLee/BilibiliCD](https://github.com/LiulietLee/BilibiliCD) | 用来下载B站视频封面的 iOS App | 13 | Swift | 01/30 |
| 193 | [BearLatte/TIMFlowView](https://github.com/BearLatte/TIMFlowView) | Swift 模仿 UITableView 创建瀑布流视图 | 13 | Swift | 02/11 |
| 194 | [windstormeye/Masq-iOS](https://github.com/windstormeye/Masq-iOS) | Masq iOS 客户端 | 13 | Swift | 09/15 |
| 195 | [qyz777/swift-leetcode](https://github.com/qyz777/swift-leetcode) | 记录自己使用swift刷LeetCode的代码 | 13 | Swift | 08/24 |
| 196 | [yaoxp/DemoSwift](https://github.com/yaoxp/DemoSwift) | swift 学习demo | 13 | Swift | 10/31 |
| 197 | [liguoliangiOS/LGLBaseKit](https://github.com/liguoliangiOS/LGLBaseKit) | 快速搭建项目不可缺少的常用方法和属性集合的库(SWift) | 13 | Swift | 11/07 |
| 198 | [qyz777/Kaleidoscope](https://github.com/qyz777/Kaleidoscope) | 使用swift实现LLVM教程中“我的第一门玩具语言”Kaleidoscope | 13 | Swift | 08/10 |
| 199 | [gongjiehong/QMCDecode](https://github.com/gongjiehong/QMCDecode) | QQ音乐QMC格式转换为普通格式(qmcflac转flac,qmc0,qmc3转mp3),仅支持macOS,可自动识别到QQ音乐下载目录,默认转换结果存储到~/Music/QMCConvertOutput,可自定义需要转换的文件和输出路径 | 13 | Swift | 08/30 |
| 200 | [Sepicat/Curiouscat](https://github.com/Sepicat/Curiouscat) | GitHub Markdown 渲染器 | 12 | Swift | 10/12 |
⬆ [回到目录](#目录)
<br/>
## Jupyter Notebook
| # | Repository | Description | Stars | Language | Updated |
| ---- | ------------------------------------------------------------ | ------------------------------------------------------------ | ----- | ---------------- | ------- |
| 1 | [jackfrued/Python-100-Days](https://github.com/jackfrued/Python-100-Days) | Python - 100天从新手到大师 | 80.4k | Jupyter Notebook | 03/16 |
| 2 | [MLEveryday/100-Days-Of-ML-Code](https://github.com/MLEveryday/100-Days-Of-ML-Code) | 100-Days-Of-ML-Code中文版 | 15.2k | Jupyter Notebook | 02/18 |
| 3 | [zergtant/pytorch-handbook](https://github.com/zergtant/pytorch-handbook) | pytorch handbook是一本开源的书籍,目标是帮助那些希望和使用PyTorch进行深度学习开发和研究的朋友快速入门,其中包含的Pytorch教程全部通过测试保证可以成功运行 | 10.7k | Jupyter Notebook | 03/13 |
| 4 | [ShusenTang/Dive-into-DL-PyTorch](https://github.com/ShusenTang/Dive-into-DL-PyTorch) | 本项目将《动手学深度学习》(Dive into Deep Learning)原书中的MXNet实现改为PyTorch实现。 | 8.0k | Jupyter Notebook | 02/23 |
| 5 | [apachecn/Interview](https://github.com/apachecn/Interview) | Interview = 简历指南 + LeetCode + Kaggle | 5.6k | Jupyter Notebook | 03/08 |
| 6 | [lijin-THU/notes-python](https://github.com/lijin-THU/notes-python) | 中文 Python 笔记 | 5.5k | Jupyter Notebook | 11/29 |
| 7 | [czy36mengfei/tensorflow2_tutorials_chinese](https://github.com/czy36mengfei/tensorflow2_tutorials_chinese) | tensorflow2中文教程,持续更新(当前版本:tensorflow2.0),tag: tensorflow 2.0 tutorials | 5.0k | Jupyter Notebook | 02/07 |
| 8 | [xianhu/LearnPython](https://github.com/xianhu/LearnPython) | 以撸代码的形式学习Python | 4.7k | Jupyter Notebook | 12/03 |
| 9 | [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版入门实例代码,实战教程。 | 4.6k | Jupyter Notebook | 03/07 |
| 10 | [NLP-LOVE/ML-NLP](https://github.com/NLP-LOVE/ML-NLP) | 此项目是机器学习(Machine Learning)、深度学习(Deep Learning)、NLP面试中常考到的知识点和代码实现,也是作为一个算法工程师必会的理论基础知识。 | 4.0k | Jupyter Notebook | 02/04 |
| 11 | [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+页)和视频链接 | 3.7k | Jupyter Notebook | 01/27 |
| 12 | [xiaolai/regular-investing-in-box](https://github.com/xiaolai/regular-investing-in-box) | 定投改变命运 —— 让时间陪你慢慢变富 | 3.7k | Jupyter Notebook | 03/17 |
| 13 | [Alfred1984/interesting-python](https://github.com/Alfred1984/interesting-python) | 有趣的Python爬虫和Python数据分析小项目(Some interesting Python crawlers and data analysis projects) | 2.9k | Jupyter Notebook | 03/06 |
| 14 | [fengdu78/Data-Science-Notes](https://github.com/fengdu78/Data-Science-Notes) | 数据科学的笔记以及资料搜集 | 2.8k | Jupyter Notebook | 03/04 |
| 15 | [Mikoto10032/DeepLearning](https://github.com/Mikoto10032/DeepLearning) | 深度学习入门教程&&优秀文章&&Deep Learning Tutorial | 2.5k | Jupyter Notebook | 12/05 |
| 16 | [TrickyGo/Dive-into-DL-TensorFlow2.0](https://github.com/TrickyGo/Dive-into-DL-TensorFlow2.0) | 本项目将《动手学深度学习》(Dive into Deep Learning)原书中的MXNet实现改为TensorFlow 2.0实现,项目已得到李沐老师的同意 | 2.0k | Jupyter Notebook | 03/11 |
| 17 | [snowkylin/tensorflow-handbook](https://github.com/snowkylin/tensorflow-handbook) | 简单粗暴 TensorFlow 2.0 \| A Concise Handbook of TensorFlow 2.0 | 2.0k | Jupyter Notebook | 02/23 |
| 18 | [girls-in-ai/Girls-In-AI](https://github.com/girls-in-ai/Girls-In-AI) | 免费学代码系列:小白python入门、数据分析data analyst、机器学习machine learning、深度学习deep learning、kaggle实战 | 1.7k | Jupyter Notebook | 07/05 |
| 19 | [ypwhs/captcha_break](https://github.com/ypwhs/captcha_break) | 验证码识别 | 1.6k | Jupyter Notebook | 01/10 |
| 20 | [fengdu78/machine_learning_beginner](https://github.com/fengdu78/machine_learning_beginner) | 机器学习初学者公众号作品 | 1.1k | Jupyter Notebook | 01/02 |
| 21 | [hangsz/pandas-tutorial](https://github.com/hangsz/pandas-tutorial) | 适合初级到中级晋升者,有了体系之后就看熟练度了。 | 1.0k | Jupyter Notebook | 02/11 |
| 22 | [Rockyzsu/stock](https://github.com/Rockyzsu/stock) | 30天掌握量化交易 (持续更新) | 1.0k | Jupyter Notebook | 03/04 |
| 23 | [amusi/TensorFlow-From-Zero-To-One](https://github.com/amusi/TensorFlow-From-Zero-To-One) | TensorFlow 最佳学习资源大全(含课程、书籍、博客、公开课等内容) | 880 | Jupyter Notebook | 02/05 |
| 24 | [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 入门机器学习》示例代码。课程的更多更新内容及辅助练习也将逐步添加进这个代码仓。 | 809 | Jupyter Notebook | 02/24 |
| 25 | [xavier-zy/Awesome-pytorch-list-CNVersion](https://github.com/xavier-zy/Awesome-pytorch-list-CNVersion) | Awesome-pytorch-list 翻译工作进行中...... | 761 | Jupyter Notebook | 03/03 |
| 26 | [bighuang624/Andrew-Ng-Deep-Learning-notes](https://github.com/bighuang624/Andrew-Ng-Deep-Learning-notes) | 吴恩达《深度学习》系列课程笔记及代码 | 713 | Jupyter Notebook | 09/20 |
| 27 | [datawhalechina/competition-baseline](https://github.com/datawhalechina/competition-baseline) | 数据科学竞赛各种baseline代码、思路分享 | 680 | Jupyter Notebook | 03/15 |
| 28 | [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 篇 \| 行业应用 & 课程笔记 | 648 | Jupyter Notebook | 03/06 |
| 29 | [996refuse/zheye](https://github.com/996refuse/zheye) | 者也 - 知乎 倒立的文字 汉字验证码识别程序 | 646 | Jupyter Notebook | 01/29 |
| 30 | [huaweicloud/ModelArts-Lab](https://github.com/huaweicloud/ModelArts-Lab) | ModelArts-Lab是示例代码库。更多AI开发学习交流信息,请访问华为云AI开发者社区:https://developer.huaweicloud.com/techfield/ai.html | 591 | Jupyter Notebook | 03/17 |
| 31 | [chenghuige/wenzheng](https://github.com/chenghuige/wenzheng) | ai challenger 2018细粒度情感分类第一名解决方案, A training framework itegrating tensorflow and pytorch | 505 | Jupyter Notebook | 08/07 |
| 32 | [cedricporter/funcat](https://github.com/cedricporter/funcat) | Funcat 将同花顺、通达信、文华财经麦语言等的公式写法移植到了 Python 中。 | 490 | Jupyter Notebook | 08/04 |
| 33 | [dafish-ai/NTU-Machine-learning](https://github.com/dafish-ai/NTU-Machine-learning) | 台湾大学李宏毅老师机器学习 | 470 | Jupyter Notebook | 07/15 |
| 34 | [chocoluffy/deep-recommender-system](https://github.com/chocoluffy/deep-recommender-system) | 深度学习在推荐系统中的应用及论文小结。 | 466 | Jupyter Notebook | 06/14 |
| 35 | [aespresso/a_journey_into_math_of_ml](https://github.com/aespresso/a_journey_into_math_of_ml) | 汉语自然语言处理视频教程-开源学习资料 | 430 | Jupyter Notebook | 09/29 |
| 36 | [howl-anderson/Chinese_models_for_SpaCy](https://github.com/howl-anderson/Chinese_models_for_SpaCy) | SpaCy 中文模型 \| Models for SpaCy that support Chinese | 420 | Jupyter Notebook | 03/12 |
| 37 | [LinXueyuanStdio/PythonDataMining](https://github.com/LinXueyuanStdio/PythonDataMining) | :notebook_with_decorative_cover: 在学院的书架上发现了一本不带脑子就能看懂的书《Python数据挖掘与实战》 | 395 | Jupyter Notebook | 09/06 |
| 38 | [juwikuang/china_job_survey](https://github.com/juwikuang/china_job_survey) | stats of Chinese developers. 统计中国程序员的就业情况 | 363 | Jupyter Notebook | 03/03 |
| 39 | [yenlung/Python-3-Data-Analysis-Basics](https://github.com/yenlung/Python-3-Data-Analysis-Basics) | Python 3 與數據分析概要 | 331 | Jupyter Notebook | 10/19 |
| 40 | [Parker-Lyu/TensorFLow-Learning](https://github.com/Parker-Lyu/TensorFLow-Learning) | B站上炼数成金的公开课笔记 | 326 | Jupyter Notebook | 08/24 |
| 41 | [coldlarry/YOLOv3-complete-pruning](https://github.com/coldlarry/YOLOv3-complete-pruning) | 提供对YOLOv3及Tiny的多种剪枝版本,以适应不同的需求。 | 320 | Jupyter Notebook | 02/25 |
| 42 | [neolee/pilot](https://github.com/neolee/pilot) | 进入编程世界的第一课 | 312 | Jupyter Notebook | 03/16 |
| 43 | [finlay-liu/kaggle_public](https://github.com/finlay-liu/kaggle_public) | 阿水的数据竞赛开源分支 | 294 | Jupyter Notebook | 12/03 |
| 44 | [htygithub/machine-learning-python](https://github.com/htygithub/machine-learning-python) | 機器學習: Python | 290 | Jupyter Notebook | 02/16 |
| 45 | [shibing624/python-tutorial](https://github.com/shibing624/python-tutorial) | python教程,包括:python基础、python进阶;常用机器学习库:numpy、scipy、sklearn、xgboost;深度学习库:keras、tensorflow、paddle、pytorch。 | 282 | Jupyter Notebook | 12/19 |
| 46 | [geektutu/interview-questions](https://github.com/geektutu/interview-questions) | 机器学习深度学习面试题笔试题(Machine learning Deep Learning Interview Questions) | 275 | Jupyter Notebook | 08/06 |
| 47 | [liweimin1996/MachineLearning-DeepLearning-NLP-LeetCode-StatisticalLearningMethod-TensorFlow](https://github.com/liweimin1996/MachineLearning-DeepLearning-NLP-LeetCode-StatisticalLearningMethod-TensorFlow) | 最近在学习机器学习,深度学习,自然语言处理,统计学习方法等知识,理论学习主要根据readme的链接,在学习理论的同时,决定自己将学习的相关算法用Python实现一遍,并结合GitHub上相关大牛的代码进行改进,本项目会不断的更新相关算法,欢迎star,fork和关注。 主要包括: 1.吴恩达Andrew Ng老师的机器学习课程作业个人笔记 Python实现, 2.deeplearning.ai(吴恩达老师的深度学习课程笔记及资源) Python实现, 3.李航《统计学习方法》 Python代码实现, 4.自然语言处理NLP 牛津大学xDeepMind Python代码实现, ... | 255 | Jupyter Notebook | 07/02 |
| 48 | [zjunlp/deepke](https://github.com/zjunlp/deepke) | 基于深度学习的开源中文关系抽取框架 | 243 | Jupyter Notebook | 12/07 |
| 49 | [YutaroOgawa/pytorch_advanced](https://github.com/YutaroOgawa/pytorch_advanced) | 書籍「つくりながら学ぶ! PyTorchによる発展ディープラーニング」の実装コードを配置したリポジトリです | 229 | Jupyter Notebook | 03/16 |
| 50 | [DesertsX/gulius-projects](https://github.com/DesertsX/gulius-projects) | 收录古柳(DesertsX)的一些小项目 | 228 | Jupyter Notebook | 06/17 |
| 51 | [datawhalechina/team-learning](https://github.com/datawhalechina/team-learning) | Datawhale组队学习计划与课程内容 | 226 | Jupyter Notebook | 03/18 |
| 52 | [GreedyAIAcademy/Machine-Learning](https://github.com/GreedyAIAcademy/Machine-Learning) | 讲解常见的机器学习算法 | 224 | Jupyter Notebook | 08/19 |
| 53 | [chengstone/LotteryPredict](https://github.com/chengstone/LotteryPredict) | TensorFlow实战,使用LSTM预测彩票 | 212 | Jupyter Notebook | 06/11 |
| 54 | [aespresso/chinese_sentiment](https://github.com/aespresso/chinese_sentiment) | 用tensorflow进行中文自然语言处理的情感分析 | 212 | Jupyter Notebook | 06/10 |
| 55 | [yizt/numpy_neural_network](https://github.com/yizt/numpy_neural_network) | 仅使用numpy从头开始实现神经网络,包括反向传播公式推导过程; numpy构建全连接层、卷积层、池化层、Flatten层;以及图像分类案例及精调网络案例等,持续更新中... ... | 205 | Jupyter Notebook | 11/21 |
| 56 | [LinXueyuanStdio/LaTeX_OCR_PRO](https://github.com/LinXueyuanStdio/LaTeX_OCR_PRO) | :art: 数学公式识别增强版:中英文手写印刷公式、支持初级符号推导(数据结构基于 LaTeX 抽象语法树) | 203 | Jupyter Notebook | 02/22 |
| 57 | [zhouwei713/data_analysis](https://github.com/zhouwei713/data_analysis) | 一些爬虫和数据分析相关实战练习 | 202 | Jupyter Notebook | 01/14 |
| 58 | [hecongqing/2018-daguan-competition](https://github.com/hecongqing/2018-daguan-competition) | 2018年"达观杯"文本智能处理挑战赛-长文本分类-rank4 | 195 | Jupyter Notebook | 02/26 |
| 59 | [zpw1995/aotodata](https://github.com/zpw1995/aotodata) | 朱小五写文章涉及到的数据分析,爬虫,源数据 | 192 | Jupyter Notebook | 01/08 |
| 60 | [HadXu/ML-From-Scratch](https://github.com/HadXu/ML-From-Scratch) | 机器学习算法 基于西瓜书以及《统计学习方法》,当然包括DL。 | 189 | Jupyter Notebook | 08/17 |
| 61 | [applenob/rl_learn](https://github.com/applenob/rl_learn) | 我的强化学习笔记和学习材料:book: still updating ... ... | 185 | Jupyter Notebook | 06/09 |
| 62 | [GavinHacker/recsys_core](https://github.com/GavinHacker/recsys_core) | [电影推荐系统] Based on the movie scoring data set, the movie recommendation system is built with FM and LR as the core(基于爬取的电影评分数据集,构建以FM和LR为核心的电影推荐系统). | 182 | Jupyter Notebook | 10/10 |
| 63 | [19920625lsg/algorithms](https://github.com/19920625lsg/algorithms) | 慕课网刘宇波老师所有的算法视频教程在学习时自己的代码记录+加一些其他的算法书籍和课程的学习 | 182 | Jupyter Notebook | 03/17 |
| 64 | [makcyun/web_scraping_with_python](https://github.com/makcyun/web_scraping_with_python) | Python 入门爬虫和数据分析实战 | 177 | Jupyter Notebook | 09/01 |
| 65 | [allenlu2008/PythonDemo](https://github.com/allenlu2008/PythonDemo) | 虾神的Python示例代码库 | 169 | Jupyter Notebook | 01/20 |
| 66 | [AllanYiin/DeepBelief_Course4_Examples](https://github.com/AllanYiin/DeepBelief_Course4_Examples) | 深度學習課程(第四梯)所設計的課程實作 | 167 | Jupyter Notebook | 08/02 |
| 67 | [beader/tianchi_nl2sql](https://github.com/beader/tianchi_nl2sql) | 追一科技首届中文NL2SQL挑战赛决赛第3名方案+代码 | 166 | Jupyter Notebook | 11/22 |
| 68 | [monpa-team/monpa](https://github.com/monpa-team/monpa) | MONPA 罔拍是一個提供正體中文斷詞、詞性標註以及命名實體辨識的多任務模型 | 160 | Jupyter Notebook | 03/12 |
| 69 | [HuangCongQing/MachineLearning_Ng](https://github.com/HuangCongQing/MachineLearning_Ng) | 吴恩达机器学习coursera课程,学习代码(2017年秋) The Stanford Coursera course on MachineLearning with Andrew Ng | 157 | Jupyter Notebook | 02/23 |
| 70 | [canghailan/Wuhan-2019-nCoV](https://github.com/canghailan/Wuhan-2019-nCoV) | 2019-nCoV 新冠状病毒 2019-12-01至今国家、省、市三级每日统计数据(支持接口读取) | 157 | Jupyter Notebook | 03/18 |
| 71 | [fly51fly/Principle-of-Web-Search](https://github.com/fly51fly/Principle-of-Web-Search) | 北京邮电大学“网络搜索原理”课程资料(2019) | 155 | Jupyter Notebook | 12/18 |
| 72 | [nlpjoe/daguan-classify-2018](https://github.com/nlpjoe/daguan-classify-2018) | 2018达观杯长文本分类智能处理挑战赛 18解决方案 | 152 | Jupyter Notebook | 06/10 |
| 73 | [HuangCongQing/deeplearning.ai-note](https://github.com/HuangCongQing/deeplearning.ai-note) | 网易云课堂终于官方发布了吴恩达经过授权的汉化课程-“”深度学习专项课程“”,这是自己做的一些笔记以及代码。下为网易云学习链接 | 151 | Jupyter Notebook | 03/16 |
| 74 | [bobo0810/AnnotatedNetworkModelGit](https://github.com/bobo0810/AnnotatedNetworkModelGit) | 加注释的网络模型(便于理解) | 149 | Jupyter Notebook | 12/19 |
| 75 | [ShusenTang/Deep-Learning-with-PyTorch-Chinese](https://github.com/ShusenTang/Deep-Learning-with-PyTorch-Chinese) | 本仓库将PyTorch官方书籍《Deep learning with PyTorch》(基本摘录版)翻译成中文版并给出可运行的相关代码。 | 149 | Jupyter Notebook | 02/19 |
| 76 | [cxy229/BDCI2019-SENTIMENT-CLASSIFICATION](https://github.com/cxy229/BDCI2019-SENTIMENT-CLASSIFICATION) | CCF BDCI 2019 互联网新闻情感分析 复赛top1解决方案 | 145 | Jupyter Notebook | 01/25 |
| 77 | [LinXueyuanStdio/LaTeX_OCR](https://github.com/LinXueyuanStdio/LaTeX_OCR) | :gem: 数学公式识别 | 131 | Jupyter Notebook | 01/29 |
| 78 | [CrazyXiao/machine-learning](https://github.com/CrazyXiao/machine-learning) | python,机器学习笔记,machine learning,nlp | 128 | Jupyter Notebook | 09/02 |
| 79 | [fire717/Machine-Learning](https://github.com/fire717/Machine-Learning) | 机器学习&深度学习资料笔记&基本算法实现&资源整理(ML / CV / NLP / DM...) | 127 | Jupyter Notebook | 03/16 |
| 80 | [LemenChao/PythonFromDAToDS](https://github.com/LemenChao/PythonFromDAToDS) | 图书《Python编程:从数据分析到数据科学》的配套资源 | 124 | Jupyter Notebook | 01/01 |
| 81 | [loveunk/machine-learning-deep-learning-notes](https://github.com/loveunk/machine-learning-deep-learning-notes) | 机器学习、深度学习的学习路径及知识总结 | 115 | Jupyter Notebook | 11/24 |
| 82 | [zwq2018/AI_UAV](https://github.com/zwq2018/AI_UAV) | 在人工智能、机器视觉、高精度导航定位和多传感器融合等技术的助推下,众多行业迎来了前所未有的发展机遇,人工智能+无人机(AI+UAV)正是一个具有无限想象力的应用方向。 | 114 | Jupyter Notebook | 02/25 |
| 83 | [zhpmatrix/BERTem](https://github.com/zhpmatrix/BERTem) | 论文实现(ACL2019):《Matching the Blanks: Distributional Similarity for Relation Learning》 | 113 | Jupyter Notebook | 08/05 |
| 84 | [zake7749/Gossiping-Chinese-Corpus](https://github.com/zake7749/Gossiping-Chinese-Corpus) | PTT 八卦版問答中文語料 | 111 | Jupyter Notebook | 09/10 |
| 85 | [qulacs/quantum-native-dojo](https://github.com/qulacs/quantum-native-dojo) | 量子コンピュータ初学者のための自習教材 | 109 | Jupyter Notebook | 02/28 |
| 86 | [peiss/ant-learn-pandas](https://github.com/peiss/ant-learn-pandas) | pandas学习课程代码仓库 | 102 | Jupyter Notebook | 03/17 |
| 87 | [Relph1119/StatisticalLearningMethod-Camp](https://github.com/Relph1119/StatisticalLearningMethod-Camp) | 统计学习方法训练营课程作业及答案 | 97 | Jupyter Notebook | 11/18 |
| 88 | [LYuhang/GNN_Review](https://github.com/LYuhang/GNN_Review) | GNN综述阅读报告 | 96 | Jupyter Notebook | 02/13 |
| 89 | [lsh1994/tianchiorgame](https://github.com/lsh1994/tianchiorgame) | 天池比赛,kaggle等等(Keras/PyTorch实战) | 93 | Jupyter Notebook | 10/23 |
| 90 | [ShusenTang/BDC2019](https://github.com/ShusenTang/BDC2019) | 2019中国高校计算机大赛——大数据挑战赛 第三名解决方案 | 93 | Jupyter Notebook | 02/16 |
| 91 | [tsycnh/Keras-Tutorials](https://github.com/tsycnh/Keras-Tutorials) | 一个面向初学者的,友好的Keras入门教程 | 92 | Jupyter Notebook | 08/04 |
| 92 | [ztz818/Automatic-generation-of-text-summaries](https://github.com/ztz818/Automatic-generation-of-text-summaries) | 使用两种方法(抽取式Textrank和概要式seq2seq)自动提取文本摘要 | 88 | Jupyter Notebook | 07/16 |
| 93 | [geektutu/tensorflow2-docs-zh](https://github.com/geektutu/tensorflow2-docs-zh) | TF2.0 / TensorFlow 2.0 / TensorFlow2.0 官方文档中文版 | 90 | Jupyter Notebook | 08/08 |
| 94 | [Mryangkaitong/python-Machine-learning](https://github.com/Mryangkaitong/python-Machine-learning) | 机器学习算法项目 | 82 | Jupyter Notebook | 11/12 |
| 95 | [sailist/ASRFrame](https://github.com/sailist/ASRFrame) | An Automatic Speech Recognition Frame ,一个中文语音识别的完整框架, 提供了多个模型 | 82 | Jupyter Notebook | 01/23 |
| 96 | [FontTian/hyperopt-doc-zh](https://github.com/FontTian/hyperopt-doc-zh) | Github开源项目hyperopt系列的中文文档,以及学习教程等 | 81 | Jupyter Notebook | 03/13 |
| 97 | [CUHKSZ-TQL/WeiboSpider_SentimentAnalysis](https://github.com/CUHKSZ-TQL/WeiboSpider_SentimentAnalysis) | 借助Python抓取微博数据,并对抓取的数据进行情绪分析 | 80 | Jupyter Notebook | 10/31 |
| 98 | [peaceiris/emoji-ime-dictionary](https://github.com/peaceiris/emoji-ime-dictionary) | 日本語で絵文字入力をするための IME 追加辞書 📙 Google 日本語入力などで日本語から絵文字への変換を可能にする IME 拡張辞書です | 80 | Jupyter Notebook | 01/19 |
| 99 | [chargemyself/selfteaching-book-_python](https://github.com/chargemyself/selfteaching-book-_python) | 基于李笑来的那本自学是一门手艺的书,然后里面有自己修改的痕迹,以及更多的资料。 | 79 | Jupyter Notebook | 08/01 |
| 100 | [LiuChuang0059/100days-ML-code](https://github.com/LiuChuang0059/100days-ML-code) | 100天机器学习 (翻译+ 实操) | 79 | Jupyter Notebook | 10/04 |
| 101 | [ami66/ChineseTextClassifier](https://github.com/ami66/ChineseTextClassifier) | 中文商品评论短文本分类器,可用于情感分析 | 79 | Jupyter Notebook | 06/09 |
| 102 | [czczup/UrbanRegionFunctionClassification](https://github.com/czczup/UrbanRegionFunctionClassification) | 第五届百度西安交大大数据竞赛 城市区域功能分类 Baseline | 75 | Jupyter Notebook | 01/12 |
| 103 | [seaniezhao/torch_npss](https://github.com/seaniezhao/torch_npss) | pytorch implementation of Neural Parametric Singing Synthesizer 歌声合成 | 75 | Jupyter Notebook | 11/07 |
| 104 | [ZhangYikaii/NJUCS_Course_Material_JatHoiCheung](https://github.com/ZhangYikaii/NJUCS_Course_Material_JatHoiCheung) | 南京大学 NJU 计算机系 CS 课程资料 作业 代码 实验报告(数据挖掘 模式识别 机器学习导论 概率论与数理统计 计算机图形学 高级程序设计 数据库 计算机系统基础 操作系统 程设实验 数电 数电实验... ) 更新中, star! :star2: | 75 | Jupyter Notebook | 02/28 |
| 105 | [CNFeffery/DataScienceStudyNotes](https://github.com/CNFeffery/DataScienceStudyNotes) | 这个仓库保管从(数据科学学习手札69)开始的所有代码、数据等相关附件内容 | 73 | Jupyter Notebook | 03/12 |
| 106 | [airxiechao/simple-car-plate-recognition](https://github.com/airxiechao/simple-car-plate-recognition) | 简单车牌识别-Mask_RCNN定位车牌+手写方法分割字符+CNN单个字符识别 | 70 | Jupyter Notebook | 06/26 |
| 107 | [dsh0416/quantum-i-ching](https://github.com/dsh0416/quantum-i-ching) | A Quantum 爻 System Implementation for Divination | 69 | Jupyter Notebook | 03/15 |
| 108 | [PhilosopherZ/Meteorological-Books](https://github.com/PhilosopherZ/Meteorological-Books) | 气象相关书籍合集(持续更新) | 68 | Jupyter Notebook | 11/07 |
| 109 | [xuwening/blog](https://github.com/xuwening/blog) | 对过往做做总结 | 68 | Jupyter Notebook | 01/17 |
| 110 | [duoergun0729/adversarial_examples](https://github.com/duoergun0729/adversarial_examples) | 对抗样本 | 67 | Jupyter Notebook | 02/25 |
| 111 | [linguishi/chinese_sentiment](https://github.com/linguishi/chinese_sentiment) | 中文情感分析,CNN,BI-LSTM,文本分类 | 63 | Jupyter Notebook | 01/29 |
| 112 | [searobbersduck/CustomerServiceAI](https://github.com/searobbersduck/CustomerServiceAI) | 智能客服 | 62 | Jupyter Notebook | 07/03 |
| 113 | [peiss/ant-learn-python](https://github.com/peiss/ant-learn-python) | 蚂蚁学Python,微信公众号的代码仓库 | 60 | Jupyter Notebook | 02/29 |
| 114 | [fenghaotong/MachineLearning](https://github.com/fenghaotong/MachineLearning) | 机器学习有关算法和实例 | 58 | Jupyter Notebook | 11/11 |
| 115 | [yenlung/nccu-jupyter-math](https://github.com/yenlung/nccu-jupyter-math) | 這是政治大學應用數學系《數學軟體應用》課程的上課筆記。主要介紹 Python 程式語言, 目標是用 Python 做數據分析。 | 58 | Jupyter Notebook | 12/20 |
| 116 | [srtianxia/BDC2019_Top2](https://github.com/srtianxia/BDC2019_Top2) | 2019中国高校大数据挑战赛-第二名解决方案 | 58 | Jupyter Notebook | 09/30 |
| 117 | [cantjie/XJTU-Share](https://github.com/cantjie/XJTU-Share) | 西安交通大学课程资料共享计划 | 56 | Jupyter Notebook | 03/07 |
| 118 | [lightfate/XueLang-YOLOhasst](https://github.com/lightfate/XueLang-YOLOhasst) | 雪浪制造AI挑战赛—视觉计算辅助良品检测 test_a 952 test_b 953 | 56 | Jupyter Notebook | 06/16 |
| 119 | [yenlung/AI_Math](https://github.com/yenlung/AI_Math) | Python 數據分析與人工智慧課程網頁 | 56 | Jupyter Notebook | 10/01 |
| 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 | [ni1o1/pygeo-tutorial](https://github.com/ni1o1/pygeo-tutorial) | Tutorial of geospatial data processing using python 用python分析时空数据的教程(in Chinese and English ) | 55 | Jupyter Notebook | 03/13 |
| 122 | [Relph1119/MachineLearning-WatermelonBook](https://github.com/Relph1119/MachineLearning-WatermelonBook) | 周志华-机器学习 | 54 | Jupyter Notebook | 01/01 |
| 123 | [Rockyzsu/red_bag](https://github.com/Rockyzsu/red_bag) | 淘宝领喵币/雪球红包/苏宁易购/京东/淘宝自动签到 领取金币 | 52 | Jupyter Notebook | 11/04 |
| 124 | [ChuanyuXue/CIKM-2019-AnalytiCup](https://github.com/ChuanyuXue/CIKM-2019-AnalytiCup) | 2019-CIKM挑战赛,超大规模推荐之用户兴趣高效检索赛道 冠军解决方案 | 52 | Jupyter Notebook | 11/14 |
| 125 | [shiyanlou/louplus-ml](https://github.com/shiyanlou/louplus-ml) | 实验楼 《楼+ 机器学习实战》课程挑战作业参考答案 https://www.shiyanlou.com/louplus/ml | 51 | Jupyter Notebook | 01/09 |
| 126 | [ColaDrill/tx_competition](https://github.com/ColaDrill/tx_competition) | 2018腾讯广告算法大赛 | 49 | Jupyter Notebook | 07/16 |
| 127 | [JokerJohn/bilibli_notes2](https://github.com/JokerJohn/bilibli_notes2) | 攻城狮之家B站视频课程课件合集2,1号仓库https://github.com/JokerJohn/bilibili_notes.git | 48 | Jupyter Notebook | 02/02 |
| 128 | [tomo-makes/dl-in-a-sec](https://github.com/tomo-makes/dl-in-a-sec) | 2019年5月発刊『図解速習DEEP LEARNING』(シーアンドアール研究所)のサポートサイトです。 | 48 | Jupyter Notebook | 02/10 |
| 129 | [shiyanlou/louplus-dm](https://github.com/shiyanlou/louplus-dm) | 实验楼 《楼+ 数据分析与挖掘实战》课程挑战作业参考答案 | 47 | Jupyter Notebook | 12/27 |
| 130 | [goodchinas/pyquant](https://github.com/goodchinas/pyquant) | 学习技术(python),学习量化交易(quant) | 47 | Jupyter Notebook | 06/10 |
| 131 | [hudengjunai/DeepEmbeding](https://github.com/hudengjunai/DeepEmbeding) | 图像检索和向量搜索,similarity learning,compare deep metric and deep-hashing applying in image retrieval | 46 | Jupyter Notebook | 03/06 |
| 132 | [shikanon/MyPresentations](https://github.com/shikanon/MyPresentations) | this is my presentaion area .个人演讲稿展示区,主要展示一些平时的个人演讲稿或者心得之类的, | 46 | Jupyter Notebook | 02/12 |
| 133 | [jakezj/hidden_geometry_of_nCoV](https://github.com/jakezj/hidden_geometry_of_nCoV) | 建模nCov传播情况 | 46 | Jupyter Notebook | 01/30 |
| 134 | [azy1988/ML-CV](https://github.com/azy1988/ML-CV) | 机器学习实战 | 45 | Jupyter Notebook | 02/25 |
| 135 | [srf1986/easy_raspi_python_one](https://github.com/srf1986/easy_raspi_python_one) | 动手学树莓派——python上篇 | 45 | Jupyter Notebook | 10/18 |
| 136 | [beiciliang/intro2musictech](https://github.com/beiciliang/intro2musictech) | 公众号“无痛入门音乐科技”开源代码 | 44 | Jupyter Notebook | 08/19 |
| 137 | [pascal1129/cv_notes](https://github.com/pascal1129/cv_notes) | 深度学习/计算机视觉工程向笔记 | 44 | Jupyter Notebook | 08/20 |
| 138 | [xiaoxiaoyao/MyApp](https://github.com/xiaoxiaoyao/MyApp) | 随便写的各种,点链接可以进入我的知乎 | 44 | Jupyter Notebook | 01/25 |
| 139 | [jamess010/AIOpen](https://github.com/jamess010/AIOpen) | AIOpen是一个按人工智能三要素(数据、算法、算力)进行AI开源项目分类的汇集项目,项目致力于跟踪目前人工智能(AI)的深度学习(DL)开源项目,并尽可能地罗列目前的开源项目,同时加入了一些曾经研究过的代码。通过这些开源项目,使初次接触AI的人们对人工智能(深度学习)有更清晰和更全面的了解。 | 43 | Jupyter Notebook | 03/11 |
| 140 | [juwikuang/machine_learning_step_by_step](https://github.com/juwikuang/machine_learning_step_by_step) | machine_learning_step_by_step是一个python中文项目。在这个项目中,我会一步一步手写各种机器学习算法,并加以解释。.machine_learning_step_by_step is a python repo. I write machine learning algorithms step by step and explain each step. This is for education. | 42 | Jupyter Notebook | 02/29 |
| 141 | [blueapplehe/car_identify](https://github.com/blueapplehe/car_identify) | 汽车识别,汽车车型识别,汽车品牌识别,车辆识别,深度学习,神经网络 | 41 | Jupyter Notebook | 07/08 |
| 142 | [letylin/pyprogbook](https://github.com/letylin/pyprogbook) | 金融大數據首部曲 書名: Python 程式設計入門 — 金融商管實務案例 讀者可以在此下載教學資源含程式碼 | 40 | Jupyter Notebook | 03/06 |
| 143 | [JuliaCN/MeetUpMaterials](https://github.com/JuliaCN/MeetUpMaterials) | Julia中文社区活动的各种材料 Meetup Materials | 40 | Jupyter Notebook | 08/30 |
| 144 | [varyshare/easy_slam_tutorial](https://github.com/varyshare/easy_slam_tutorial) | 首个中文的简单从零开始实现视觉SLAM理论与实践教程,使用Python实现。包括:ORB特征点提取,对极几何,视觉里程计后端优化,实时三维重建地图。A easy SLAM practical tutorial (Python).图像处理、otsu二值化。更多其他教程我的CSDN博客 | 39 | Jupyter Notebook | 11/25 |
| 145 | [zc402/ChineseTrafficPolicePose](https://github.com/zc402/ChineseTrafficPolicePose) | Detects Chinese traffic police commanding poses 检测中国交警指挥手势 | 39 | Jupyter Notebook | 10/21 |
| 146 | [FLyingLSJ/Computer_Vision_Project](https://github.com/FLyingLSJ/Computer_Vision_Project) | 计算机视觉项目实战 | 39 | Jupyter Notebook | 02/27 |
| 147 | [wqw547243068/Python-learning](https://github.com/wqw547243068/Python-learning) | 好玩儿的Python:从数据挖掘到深度学习 | 39 | Jupyter Notebook | 02/06 |
| 148 | [music1353/pyHowFun](https://github.com/music1353/pyHowFun) | 🌻 提供一系列的 Python 教學,讓初學者或是有程式基礎的人,快速融入 Python 的世界 | 38 | Jupyter Notebook | 08/30 |
| 149 | [PandasCute/2018-ORANGE-FINANCIAL-BIG-DATA-top9](https://github.com/PandasCute/2018-ORANGE-FINANCIAL-BIG-DATA-top9) | 2018年甜橙金融杯大数据建模大赛-初赛第四-复赛线上11-决赛9-复现top1解决方案-【二分类,风控】 | 38 | Jupyter Notebook | 03/04 |
| 150 | [plouto-quants/FBDQA-2019A](https://github.com/plouto-quants/FBDQA-2019A) | 金融大数据量化分析 | 37 | Jupyter Notebook | 12/20 |
| 151 | [gunosy/Gunosy-Internship-Textbook](https://github.com/gunosy/Gunosy-Internship-Textbook) | Gunosy Summer Internship 機械学習コース向けの事前学習用のテキストです。 | 37 | Jupyter Notebook | 08/26 |
| 152 | [echohandsome/Machine_Learning_in_Action_for_smallwhite](https://github.com/echohandsome/Machine_Learning_in_Action_for_smallwhite) | 面向机器学习初学者的最全注释版本的机器学习实战的代码 | 37 | Jupyter Notebook | 08/01 |
| 153 | [jasonhavenD/DJH-Spider](https://github.com/jasonhavenD/DJH-Spider) | Python爬虫:基础,进阶,框架, csdn,糗事百科,百度贴吧.淘宝MM ,豆瓣电影排行榜 ,腾讯招聘网站,斗鱼主播,汽车网站,百度学术, 必应学术,百科 ,金融实体关系,微博(用户,微博,评论,社交网络),推特Twitter | 36 | Jupyter Notebook | 12/19 |
| 154 | [LiuChuang0059/Complex-Network](https://github.com/LiuChuang0059/Complex-Network) | 复杂网络研究资源整理和基础知识学习 | 35 | Jupyter Notebook | 03/14 |
| 155 | [yatengLG/Focal-Loss-Pytorch](https://github.com/yatengLG/Focal-Loss-Pytorch) | 全中文注释.(The loss function of retinanet based on pytorch).(You can use it on one-stage detection task or classifical task, to solve data imbalance influence).用于one-stage目标检测算法,提升检测效果.你也可以在分类任务中使用该损失函数,解决数据不平衡问题. | 35 | Jupyter Notebook | 11/22 |
| 156 | [08zhangyi/multi-factor-gm-wind-joinquant](https://github.com/08zhangyi/multi-factor-gm-wind-joinquant) | 基于掘金+万得+聚宽的多因子策略开发框架 | 35 | Jupyter Notebook | 03/18 |
| 157 | [yutiansut/QASTRATEGY101](https://github.com/yutiansut/QASTRATEGY101) | strategy 101 从今天开始 逐步开放101个基础策略的QA实现 包含5个大类 | 34 | Jupyter Notebook | 09/24 |
| 158 | [oubindo/cs231n-cnn](https://github.com/oubindo/cs231n-cnn) | 斯坦福的cs231n课程的assignments,非常好的课程,在这里也要强推 | 34 | Jupyter Notebook | 11/09 |
| 159 | [howl-anderson/MicroRegEx](https://github.com/howl-anderson/MicroRegEx) | 一个微型的正则表达式引擎 \| A micro regular expression engine | 34 | Jupyter Notebook | 09/22 |
| 160 | [makelove/Programer_Log](https://github.com/makelove/Programer_Log) | 最新动态在这里【我的程序员日志】 | 34 | Jupyter Notebook | 03/17 |
| 161 | [P01son6415/MatchModels](https://github.com/P01son6415/MatchModels) | 2019中国高校计算机大赛——大数据挑战赛 第15名 WriteUp | 33 | Jupyter Notebook | 08/31 |
| 162 | [DueapeCommon/kaggle](https://github.com/DueapeCommon/kaggle) | DueApe数据科学,Kaggle代码资源分享 | 32 | Jupyter Notebook | 07/06 |
| 163 | [makelove/True_Artificial_Intelligence](https://github.com/makelove/True_Artificial_Intelligence) | 真AI人工智能 | 32 | Jupyter Notebook | 02/25 |
| 164 | [gaozhanfire/BDC2019-rank24th](https://github.com/gaozhanfire/BDC2019-rank24th) | 中国高校计算机大赛-大数据挑战赛,Rank24 解决方案 | 32 | Jupyter Notebook | 08/19 |
| 165 | [Parker-Lyu/rscup2019_classifier](https://github.com/Parker-Lyu/rscup2019_classifier) | rscup2019,分类赛道 | 32 | Jupyter Notebook | 09/23 |
| 166 | [lmhgithi/SOHU-baseline](https://github.com/lmhgithi/SOHU-baseline) | :blush:搜狐算法大赛(实体+情感)简单baseline(比较容易理解)(使用lgb模型做二分类) | 31 | Jupyter Notebook | 06/10 |
| 167 | [yutiansut/QAStrategy](https://github.com/yutiansut/QAStrategy) | 策略基类/ 支持QIFI协议 | 31 | Jupyter Notebook | 02/25 |
| 168 | [lihanghang/Deep-learning-And-Paper](https://github.com/lihanghang/Deep-learning-And-Paper) | 机器智能--相关书目及经典论文包括AutoML、情感分类、语音识别、声纹识别、语音合成实验代码等 | 30 | Jupyter Notebook | 11/20 |
| 169 | [edu2act/course-PySCE](https://github.com/edu2act/course-PySCE) | 人工智能方向,《Python科学计算生态》课程仓库 | 30 | Jupyter Notebook | 02/16 |
| 170 | [Jie-Yuan/tql-Python](https://github.com/Jie-Yuan/tql-Python) | 思维误区: 用理想模型来思考复杂现实问题 | 30 | Jupyter Notebook | 01/13 |
| 171 | [ChileWang0228/DeepLearningTutorial](https://github.com/ChileWang0228/DeepLearningTutorial) | 深度学习代码 | 30 | Jupyter Notebook | 10/20 |
| 172 | [VoldeMortzzz/2019Baai-zhihu-Cup-findexp-4th](https://github.com/VoldeMortzzz/2019Baai-zhihu-Cup-findexp-4th) | 2019年知乎看山杯第四名 | 30 | Jupyter Notebook | 01/13 |
| 173 | [heucoder/ML-DL_book](https://github.com/heucoder/ML-DL_book) | 机器学习、深度学习一些个人认为不错的书籍。 | 29 | Jupyter Notebook | 02/25 |
| 174 | [jiayiwang5/Chinese-ChatBot](https://github.com/jiayiwang5/Chinese-ChatBot) | RNN+LSTM+seq2seq+Attention/Chinese中文聊天机器人 | 28 | Jupyter Notebook | 03/13 |
| 175 | [Dylanin1999/Tensorflow2.0](https://github.com/Dylanin1999/Tensorflow2.0) | 学习笔记代码 | 28 | Jupyter Notebook | 03/17 |
| 176 | [unlimitbladeworks/python-tools](https://github.com/unlimitbladeworks/python-tools) | python3日常小工具仓库 | 27 | Jupyter Notebook | 03/01 |
| 177 | [unclegem/Sentiment-analysis](https://github.com/unclegem/Sentiment-analysis) | 互联网新闻情感分析赛题baseline | 27 | Jupyter Notebook | 09/18 |
| 178 | [allenlu2008/PySparkDemo](https://github.com/allenlu2008/PySparkDemo) | PySpark算子及空间应用的各个Demo | 27 | Jupyter Notebook | 01/20 |
| 179 | [nmcdev/nmc_met_map](https://github.com/nmcdev/nmc_met_map) | 天气学诊断分析工具(Meteorological Diagnostic Tools, MetDig) | 28 | Jupyter Notebook | 03/04 |
| 180 | [FroyoZzz/CV-Papers-Codes](https://github.com/FroyoZzz/CV-Papers-Codes) | CV 方向论文阅读以及手写代码实现 | 26 | Jupyter Notebook | 12/07 |
| 181 | [howie6879/pylab](https://github.com/howie6879/pylab) | 和Python相关的学习笔记:机器学习、算法、进阶书籍、文档,博客地址:https://www.howie6879.cn | 26 | Jupyter Notebook | 02/10 |
| 182 | [BrikerMan/classic_chinese_punctuate](https://github.com/BrikerMan/classic_chinese_punctuate) | classic Chinese punctuate experiment with keras using daizhige(殆知阁古代文献藏书) dataset | 26 | Jupyter Notebook | 02/25 |
| 183 | [IBBD/IBBD.github.io](https://github.com/IBBD/IBBD.github.io) | IBBD技术博客 | 26 | Jupyter Notebook | 10/17 |
| 184 | [BrambleXu/KGQA_SG](https://github.com/BrambleXu/KGQA_SG) | 基于知识图谱的《三国演义》人物关系可视化及问答系统 | 26 | Jupyter Notebook | 10/22 |
| 185 | [mind/RMB](https://github.com/mind/RMB) | TinyMind人民币编码识别比赛赛后分享(含文档,模型,代码,视频)https://www.tinymind.cn/competitions/47 | 26 | Jupyter Notebook | 07/15 |
| 186 | [yhangf/DataCon](https://github.com/yhangf/DataCon) | :trophy:DataCon大数据安全分析大赛方向二冠军源码 | 26 | Jupyter Notebook | 12/06 |
| 187 | [searchlink/competition](https://github.com/searchlink/competition) | 比赛相关的实践 | 26 | Jupyter Notebook | 09/18 |
| 188 | [CodingChaozhang/Deep-Learning](https://github.com/CodingChaozhang/Deep-Learning) | 深度学习的实战项目 | 25 | Jupyter Notebook | 02/17 |
| 189 | [makaishi2/math_dl_book_info](https://github.com/makaishi2/math_dl_book_info) | 書籍「最短コースでわかる ディープラーニングの数学」用補足情報 | 25 | Jupyter Notebook | 03/10 |
| 190 | [saturn-lab/MEE-CC07](https://github.com/saturn-lab/MEE-CC07) | CC07-单元 | 25 | Jupyter Notebook | 03/17 |
| 191 | [chinapnr/python_study](https://github.com/chinapnr/python_study) | python 入门培训教材,实用、快速、清晰 | 25 | Jupyter Notebook | 03/01 |
| 192 | [htfhxx/nlp-beginner_solution](https://github.com/htfhxx/nlp-beginner_solution) | 复旦大学邱锡鹏老师推荐的nlp-beginner项目的实现代码 | 25 | Jupyter Notebook | 12/12 |
| 193 | [zhangjunhd/reading-notes](https://github.com/zhangjunhd/reading-notes) | 张俊的读书笔记 | 25 | Jupyter Notebook | 03/16 |
| 194 | [FroyoZzz/Deep-Learning-Homework](https://github.com/FroyoZzz/Deep-Learning-Homework) | 吴恩达 深度学习课程 课件与作业 | 24 | Jupyter Notebook | 07/18 |
| 195 | [jasonhavenD/weibo_analysis](https://github.com/jasonhavenD/weibo_analysis) | 能够采集微博博主,博文,评论,分析博主信息,博文话题等,构建社交网络,同时对数据和网络进行分析的工具. | 24 | Jupyter Notebook | 10/26 |
| 196 | [chenjian120918/-Using-Python-for-mathematical-modeling](https://github.com/chenjian120918/-Using-Python-for-mathematical-modeling) | 利用python进行数学建模 | 24 | Jupyter Notebook | 07/22 |
| 197 | [johnnychen94/Digital-Image-Processing-Gonzalez](https://github.com/johnnychen94/Digital-Image-Processing-Gonzalez) | Codes for examples in Digital Image Processing (Gonzalez) 冈萨雷斯《数字图像处理》 | 24 | Jupyter Notebook | 08/18 |
| 198 | [huanghao128/zh-nlp-demo](https://github.com/huanghao128/zh-nlp-demo) | 自然语言处理NLP在中文文本上的一些应用,如文本分类、情感分析、命名实体识别等 | 23 | Jupyter Notebook | 12/01 |
| 199 | [neolee/wop-ecnu-pub](https://github.com/neolee/wop-ecnu-pub) | 华东师范大学《数据思维与实践》课程主站 | 23 | Jupyter Notebook | 03/16 |
| 200 | [DataLoaderX/datasetsome](https://github.com/DataLoaderX/datasetsome) | 一些数据集处理相关的 API | 23 | Jupyter Notebook | 01/01 |
⬆ [回到目录](#目录)
<br/>
## Shell
| # | Repository | Description | Stars | Language | Updated |
| ---- | ------------------------------------------------------------ | ------------------------------------------------------------ | ----- | -------- | ------- |
| 1 | [taizilongxu/interview_python](https://github.com/taizilongxu/interview_python) | 关于Python的面试题 | 12.0k | Shell | 03/03 |
| 2 | [233boy/v2ray](https://github.com/233boy/v2ray) | 最好用的 V2Ray 一键安装脚本 & 管理脚本 | 10.7k | Shell | 03/09 |
| 3 | [rootsongjc/kubernetes-handbook](https://github.com/rootsongjc/kubernetes-handbook) | Kubernetes中文指南/云原生应用架构实践手册 - https://jimmysong.io/kubernetes-handbook | 6.8k | Shell | 03/10 |
| 4 | [skywind3000/awesome-cheatsheets](https://github.com/skywind3000/awesome-cheatsheets) | 超级速查表 - 编程语言、框架和开发工具的速查表,单个文件包含一切你需要知道的东西 :zap: | 5.6k | Shell | 02/02 |
| 5 | [opsnull/follow-me-install-kubernetes-cluster](https://github.com/opsnull/follow-me-install-kubernetes-cluster) | 和我一步步部署 kubernetes 集群 | 5.2k | Shell | 02/07 |
| 6 | [easzlab/kubeasz](https://github.com/easzlab/kubeasz) | 使用Ansible脚本安装K8S集群,介绍组件交互原理,方便直接,不受国内网络环境影响 | 4.9k | Shell | 03/05 |
| 7 | [HIT-Alibaba/interview](https://github.com/HIT-Alibaba/interview) | 笔试面试知识整理 | 4.0k | Shell | 11/03 |
| 8 | [ToyoDAdoubi/doubi](https://github.com/ToyoDAdoubi/doubi) | 一个逗比写的各种逗比脚本~ | 3.5k | Shell | 02/10 |
| 9 | [wulabing/V2Ray_ws-tls_bash_onekey](https://github.com/wulabing/V2Ray_ws-tls_bash_onekey) | V2Ray Nginx+vmess+ws+tls/ http2 over tls 一键安装脚本 | 3.4k | Shell | 03/16 |
| 10 | [gfw-breaker/ssr-accounts](https://github.com/gfw-breaker/ssr-accounts) | 一键部署Shadowsocks服务;免费Shadowsocks账号分享;免费SS账号分享; 翻墙;无界,自由门,SquirrelVPN | 3.4k | Shell | 12/17 |
| 11 | [softwaredownload/openwrt-fanqiang](https://github.com/softwaredownload/openwrt-fanqiang) | 最好的路由器翻墙、科学上网教程—OpenWrt—shadowsocks | 3.3k | Shell | 03/04 |
| 12 | [Medicean/VulApps](https://github.com/Medicean/VulApps) | 快速搭建各种漏洞环境(Various vulnerability environment) | 2.7k | Shell | 12/30 |
| 13 | [flyzy2005/ss-fly](https://github.com/flyzy2005/ss-fly) | 一键脚本搭建ss/ssr并开启bbr内核加速(Ubuntu/CentOS/Debian) | 2.2k | Shell | 10/23 |
| 14 | [wangdoc/javascript-tutorial](https://github.com/wangdoc/javascript-tutorial) | JavaScript 教程 https://wangdoc.com/javascript | 2.2k | Shell | 03/17 |
| 15 | [fengyuhetao/shell](https://github.com/fengyuhetao/shell) | Linux命令行与shell脚本编程大全案例 | 1.7k | Shell | 06/18 |
| 16 | [CyC2018/Job-Recommend](https://github.com/CyC2018/Job-Recommend) | 🔎 互联网内推信息(社招、校招、实习) | 1.6k | Shell | 03/09 |
| 17 | [LCTT/TranslateProject](https://github.com/LCTT/TranslateProject) | Linux中国翻译项目 | 1.5k | Shell | 03/18 |
| 18 | [apachecn/ai-roadmap](https://github.com/apachecn/ai-roadmap) | ApacheCN AI 路线图(知识树) | 1.5k | Shell | 08/06 |
| 19 | [zhuangbiaowei/learn-with-open-source](https://github.com/zhuangbiaowei/learn-with-open-source) | 借助开源项目,学习软件开发 | 1.5k | Shell | 11/05 |
| 20 | [lmk123/oh-my-wechat](https://github.com/lmk123/oh-my-wechat) | 微信小助手的安装 / 更新工具。 | 1.5k | Shell | 03/12 |
| 21 | [neoFelhz/neohosts](https://github.com/neoFelhz/neohosts) | 自由·负责·克制 去广告 Hosts 项目 | 1.1k | Shell | 03/12 |
| 22 | [studygolang/GCTT](https://github.com/studygolang/GCTT) | GCTT Go中文网翻译组。 | 1.1k | Shell | 03/16 |
| 23 | [zfl9/ss-tproxy](https://github.com/zfl9/ss-tproxy) | SS/SSR/V2Ray/Socks5 透明代理 for Linux | 1.0k | Shell | 03/16 |
| 24 | [P3TERX/Actions-OpenWrt](https://github.com/P3TERX/Actions-OpenWrt) | Build OpenWrt using GitHub Actions \| 使用 GitHub Actions 云编译 OpenWrt | 959 | Shell | 03/17 |
| 25 | [wind-liang/leetcode](https://github.com/wind-liang/leetcode) | leetcode 顺序刷题,详细通俗题解,with JAVA | 942 | Shell | 03/17 |
| 26 | [devdawei/libstdc-](https://github.com/devdawei/libstdc-) | Xcode 10 和 Xcode 11 中删除的 libstdc++ 库 | 888 | Shell | 01/07 |
| 27 | [aqzt/kjyw](https://github.com/aqzt/kjyw) | 快捷运维,代号kjyw,项目基于shell、python,运维脚本工具库,收集各类运维常用工具脚本,实现快速安装nginx、mysql、php、redis、nagios、运维经常使用的脚本等等... | 863 | Shell | 03/11 |
| 28 | [hellofwy/ss-bash](https://github.com/hellofwy/ss-bash) | Shadowsocks流量管理脚本 | 851 | Shell | 02/22 |
| 29 | [gaoyifan/china-operator-ip](https://github.com/gaoyifan/china-operator-ip) | 中国运营商IPv4/IPv6地址库-每日更新 | 844 | Shell | 03/17 |
| 30 | [duguying/parsing-techniques](https://github.com/duguying/parsing-techniques) | 📕 parsing techniques 中文译本——《解析技术》 | 830 | Shell | 10/21 |
| 31 | [maxlicheng/luci-app-unblockmusic](https://github.com/maxlicheng/luci-app-unblockmusic) | 用于解锁网易云灰色歌曲的OpenWRT/LEDE路由器插件 (openwrt/lede luci support for unblock neteasecloudmusic) | 825 | Shell | 03/05 |
| 32 | [gotok8s/k8s-docker-desktop-for-mac](https://github.com/gotok8s/k8s-docker-desktop-for-mac) | Docker Desktop for Mac 开启并使用 Kubernetes | 801 | Shell | 03/05 |
| 33 | [c0ny1/vulstudy](https://github.com/c0ny1/vulstudy) | 使用docker快速搭建各大漏洞学习平台,目前可以一键搭建13个平台。 | 800 | Shell | 03/16 |
| 34 | [liquanzhou/ops_doc](https://github.com/liquanzhou/ops_doc) | 运维简洁实用手册 | 683 | Shell | 03/06 |
| 35 | [sy618/hosts](https://github.com/sy618/hosts) | 已停更 | 672 | Shell | 09/01 |
| 36 | [sabersalv/freedom-routes](https://github.com/sabersalv/freedom-routes) | chnroutes改进版, 智能生成路由表, 大幅提升VPN浏览国内网页速度 | 653 | Shell | 06/04 |
| 37 | [goreliu/zshguide](https://github.com/goreliu/zshguide) | Zsh 开发指南 | 643 | Shell | 02/15 |
| 38 | [tinyclub/open-c-book](https://github.com/tinyclub/open-c-book) | 开源书籍:《C语言编程透视》,配套视频课程已全面上线,https://w.url.cn/s/AMcKZ3a | 636 | Shell | 12/04 |
| 39 | [monlor/Monlor-Tools](https://github.com/monlor/Monlor-Tools) | 小米路由器Shell工具箱,本人自用,主要参考了小米的Misstar Tools制作,仅学习之用!Telegram群组:https://t.me/joinchat/FMraA0lwzH9fzEW1wXdCFA | 634 | Shell | 01/06 |
| 40 | [xuexb/learn-nginx](https://github.com/xuexb/learn-nginx) | Nginx 入门指南 | 619 | Shell | 11/05 |
| 41 | [wppurking/ocserv-docker](https://github.com/wppurking/ocserv-docker) | 用于初始化 ocserv 的 Dockfile 脚本 | 547 | Shell | 03/09 |
| 42 | [Nick233333/phper-linux-gitbook](https://github.com/Nick233333/phper-linux-gitbook) | 💡PHPer 必知必会的 Linux 命令 | 531 | Shell | 03/11 |
| 43 | [monetking/AutoPacking-iOS](https://github.com/monetking/AutoPacking-iOS) | iOS自动打包脚本 多项选择 一行上传指定位置 | 512 | Shell | 11/22 |
| 44 | [P3TERX/aria2.conf](https://github.com/P3TERX/aria2.conf) | Aria2 配置文件 \| OneDrive、Google Drvive 离线下载解决方案 \| 百度网盘不限速转存解决方案 | 485 | Shell | 03/11 |
| 45 | [MvsCode/frps-onekey](https://github.com/MvsCode/frps-onekey) | Frps 一键安装脚本&管理脚本 A tool to auto-compile & install frps on Linux | 476 | Shell | 03/18 |
| 46 | [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. | 474 | Shell | 01/17 |
| 47 | [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 | 467 | Shell | 02/23 |
| 48 | [rust-lang-cn/rust-by-example-cn](https://github.com/rust-lang-cn/rust-by-example-cn) | Rust By Example 中文版(包含在线代码编辑器) | 447 | Shell | 03/08 |
| 49 | [HBLong/channel_v3_daily](https://github.com/HBLong/channel_v3_daily) | 每天定时更新channel_v3.json,解决 Sublime Text 3 拓展包源无法访问问题,fix the problem that can not access packagecontrol.io | 444 | Shell | 12/08 |
| 50 | [arloor/iptablesUtils](https://github.com/arloor/iptablesUtils) | iptables转发ddns域名 | 430 | Shell | 03/14 |
| 51 | [rime/plum](https://github.com/rime/plum) | 東風破 /plum/: Rime configuration manager and input schema repository | 430 | Shell | 02/14 |
| 52 | [clangcn/onekey-install-shell](https://github.com/clangcn/onekey-install-shell) | 一大坨一键安装脚本 | 424 | Shell | 06/08 |
| 53 | [skyline75489/Heart-First-JavaWeb](https://github.com/skyline75489/Heart-First-JavaWeb) | 一个走心的 Java Web 入门开发教程 | 418 | Shell | 11/03 |
| 54 | [al0ne/LinuxCheck](https://github.com/al0ne/LinuxCheck) | linux信息收集/应急响应/常见后门检测脚本 | 377 | Shell | 12/02 |
| 55 | [anrip/dnspod-shell](https://github.com/anrip/dnspod-shell) | 基于DNSPod用户API实现的纯Shell动态域名客户端 | 367 | Shell | 03/10 |
| 56 | [ctf-wiki/ctf-tools](https://github.com/ctf-wiki/ctf-tools) | CTF 工具集合 | 356 | Shell | 03/11 |
| 57 | [zhangguanzhang/Kubernetes-ansible](https://github.com/zhangguanzhang/Kubernetes-ansible) | :christmas_tree:ansible多网卡机器上一键部署高可用Kubernetes(systemd) | 337 | Shell | 02/20 |
| 58 | [csy512889371/learnDoc](https://github.com/csy512889371/learnDoc) | 🔥:rocket:架构师的成长之路-博客-导图 | 334 | Shell | 03/12 |
| 59 | [EtherDream/anti-portscan](https://github.com/EtherDream/anti-portscan) | 使用 iptables 防止端口扫描 | 325 | Shell | 01/20 |
| 60 | [venshine/decompile-apk](https://github.com/venshine/decompile-apk) | 🔥 Decompile APK(反编译APK) | 321 | Shell | 01/15 |
| 61 | [xzhih/ONMP](https://github.com/xzhih/ONMP) | 用于 Entware 库的 web 环境一键安装命令,适用于 LEDE、Padavan、梅林等固件 | 318 | Shell | 08/01 |
| 62 | [jkpang/PPAutoPackageScript](https://github.com/jkpang/PPAutoPackageScript) | Automatic packing script after Xcode8 - Xcode8以后的自动打包脚本 | 316 | Shell | 08/23 |
| 63 | [tonydeng/sdn-handbook](https://github.com/tonydeng/sdn-handbook) | SDN手册 | 303 | Shell | 03/10 |
| 64 | [eritpchy/Fingerprint-pay-magisk-wechat](https://github.com/eritpchy/Fingerprint-pay-magisk-wechat) | 微信指纹支付 (Fingerprint pay for WeChat) | 300 | Shell | 02/22 |
| 65 | [huan/docker-wechat](https://github.com/huan/docker-wechat) | DoChat is a Dockerized WeChat (盒装微信) PC Windows Client for Linux | 297 | Shell | 03/13 |
| 66 | [yangchuansheng/love-gfw](https://github.com/yangchuansheng/love-gfw) | 🔥以社会主义核心价值观为指导思想,实现 Linux 和 MacOS 设备的全局智能分流 | 293 | Shell | 06/22 |
| 67 | [jaywcjlove/docker-tutorial](https://github.com/jaywcjlove/docker-tutorial) | 🐳Docker入门学习笔记 | 283 | Shell | 03/13 |
| 68 | [haiwen/seafile-docs-cn](https://github.com/haiwen/seafile-docs-cn) | Seafile服务器用户手册 | 281 | Shell | 11/01 |
| 69 | [klever1988/nanopi-openwrt](https://github.com/klever1988/nanopi-openwrt) | Openwrt for Nanopi R1S R2S 固件编译 | 278 | Shell | 03/18 |
| 70 | [apachecn/ml-mastery-zh](https://github.com/apachecn/ml-mastery-zh) | :book: [译] MachineLearningMastery 博客文章 | 261 | Shell | 01/20 |
| 71 | [FeeiCN/autossh](https://github.com/FeeiCN/autossh) | Password-free automatic login SSH(免密登陆SSH) | 259 | Shell | 11/11 |
| 72 | [sprov065/sprov-ui](https://github.com/sprov065/sprov-ui) | 一个支持多协议多用户的v2ray Web面板 | 254 | Shell | 09/18 |
| 73 | [WangHL0927/grafana-chinese](https://github.com/WangHL0927/grafana-chinese) | grafana中文版本 | 242 | Shell | 01/10 |
| 74 | [suniceman/ss-fly](https://github.com/suniceman/ss-fly) | 一键脚本搭建ss/ssr并开启bbr内核加速(Ubuntu/CentOS/Debian) | 241 | Shell | 06/21 |
| 75 | [esirplayground/AutoBuild-OpenWrt](https://github.com/esirplayground/AutoBuild-OpenWrt) | Build OpenWrt using GitHub Actions \| 使用 GitHub Actions 编译 OpenWrt \| 感谢P3TERX的项目源码 | 240 | Shell | 03/18 |
| 76 | [Xu-Jian/VPS](https://github.com/Xu-Jian/VPS) | 个人笔记汇总 | 239 | Shell | 09/11 |
| 77 | [zfl9/gfwlist2privoxy](https://github.com/zfl9/gfwlist2privoxy) | 将 gfwlist.txt(Adblock Plus 规则)转换为 privoxy.action | 235 | Shell | 11/09 |
| 78 | [P3TERX/aria2.sh](https://github.com/P3TERX/aria2.sh) | Aria2 一键安装管理脚本 | 232 | Shell | 02/18 |
| 79 | [wallace5303/dnnmmp](https://github.com/wallace5303/dnnmmp) | 基于docker的开发者集成环境 (docker,nodejs,php,nginx,mongo,mysql,redis等) | 227 | Shell | 09/16 |
| 80 | [andyzhshg/syno-acme](https://github.com/andyzhshg/syno-acme) | 通过acme协议更新群晖HTTPS泛域名证书的自动脚本 | 224 | Shell | 03/14 |
| 81 | [233boy/ss](https://github.com/233boy/ss) | Shadowsocks-Go 一键安装脚本 & 管理脚本 | 219 | Shell | 01/15 |
| 82 | [SilenceHVK/blog](https://github.com/SilenceHVK/blog) | :books: :octocat: Github static blog post, experience the fun of using Issues.Welcome star( 静态博客文章,体验一下使用 Issues 的乐趣,欢迎 star )个人博客地址:hvkcoder.me | 219 | Shell | 03/17 |
| 83 | [cookcodeblog/k8s-deploy](https://github.com/cookcodeblog/k8s-deploy) | 使用kubeadm一键部署kubernetes集群 | 217 | Shell | 07/02 |
| 84 | [wang-bin/avbuild](https://github.com/wang-bin/avbuild) | ffmpeg花式编译. build tool for all platforms: iOS, android, raspberry pi, win32, uwp, linux, macOS etc. | 215 | Shell | 03/08 |
| 85 | [91yun/91yuntest](https://github.com/91yun/91yuntest) | 91云服务器一键测试包 | 209 | Shell | 01/10 |
| 86 | [aikuyun/iterm2-zmodem](https://github.com/aikuyun/iterm2-zmodem) | 在 Mac 下,实现与服务器进行便捷的文件上传和下载操作 | 209 | Shell | 11/07 |
| 87 | [lis912/Evaluation_tools](https://github.com/lis912/Evaluation_tools) | 测评工具 | 208 | Shell | 11/04 |
| 88 | [project-openwrt/luci-app-unblockneteasemusic](https://github.com/project-openwrt/luci-app-unblockneteasemusic) | [OpenWrt] 解除网易云音乐播放限制 | 207 | Shell | 03/08 |
| 89 | [woniuzfb/iptv](https://github.com/woniuzfb/iptv) | 一键管理 v2ray / IPTV 直播源脚本 hls <= mpegts rtmp ... => http-flv <=> hls | 204 | Shell | 03/16 |
| 90 | [jagerzhang/CCKiller](https://github.com/jagerzhang/CCKiller) | Linux轻量级CC攻击防御工具脚本 | 198 | Shell | 10/06 |
| 91 | [al0ne/nginx_log_check](https://github.com/al0ne/nginx_log_check) | Nginx日志安全分析脚本 | 189 | Shell | 12/25 |
| 92 | [felix-fly/v2ray-openwrt](https://github.com/felix-fly/v2ray-openwrt) | 路由器Openwrt安装V2ray简单流程 | 189 | Shell | 03/17 |
| 93 | [apachecn/awesome-cs-courses-zh](https://github.com/apachecn/awesome-cs-courses-zh) | 计算机公开课推荐 | 185 | Shell | 03/04 |
| 94 | [deyuhua/xv6-book-chinese](https://github.com/deyuhua/xv6-book-chinese) | MIT操作系统工程的教学操作系统Xv6的源码剖析中文翻译项目,使用ANSI标准C重新在riscv架构上实现Unix v6; | 183 | Shell | 02/26 |
| 95 | [guanguans/dnmp-plus](https://github.com/guanguans/dnmp-plus) | 🐳Docker的LNMP一键安装开发环境 + PHP非侵入式监控平台xhgui(优化系统性能、定位Bug神器) | 182 | Shell | 09/30 |
| 96 | [HyperledgerCN/hyperledgerDocs](https://github.com/HyperledgerCN/hyperledgerDocs) | Hyperledger文档 | 182 | Shell | 01/08 |
| 97 | [YangMame/Arch-Linux-Installer](https://github.com/YangMame/Arch-Linux-Installer) | Arch-Linux-Install-Script/Arch Linux 安装脚本 | 181 | Shell | 07/01 |
| 98 | [jaywcjlove/shell-tutorial](https://github.com/jaywcjlove/shell-tutorial) | Shell入门教程(Shell tutorial book) | 181 | Shell | 06/04 |
| 99 | [dunwu/linux-tutorial](https://github.com/dunwu/linux-tutorial) | :penguin: Linux教程,主要内容:Linux 命令、Linux 系统运维、软件运维、精选常用Shell脚本 | 182 | Shell | 03/10 |
| 100 | [diguage/mysql-notes](https://github.com/diguage/mysql-notes) | MySQL 学习笔记 | 179 | Shell | 06/25 |
| 101 | [wizardforcel/data-science-notebook](https://github.com/wizardforcel/data-science-notebook) | :book: 每一个伟大的思想和行动都有一个微不足道的开始 | 176 | Shell | 07/22 |
| 102 | [rachpt/AutoSeed](https://github.com/rachpt/AutoSeed) | 全自动发种姬 [流程图 https://www.processon.com/view/link/5c088855e4b0ca4b40c93a49 ] | 175 | Shell | 02/28 |
| 103 | [P3TERX/docker-aria2-pro](https://github.com/P3TERX/docker-aria2-pro) | Aria2 Pro \| A perfect Aria2 Docker image \| 更好用的 Aria2 Docker 容器镜像 | 174 | Shell | 02/20 |
| 104 | [hijkpw/scripts](https://github.com/hijkpw/scripts) | Shadowsocks/SS一键脚本、ShadowsocksR/SSR一键脚本、V2Ray一键脚本、VPS购买教程,以及各种资源教程 | 173 | Shell | 03/17 |
| 105 | [wi1dcard/laravel-deployment](https://github.com/wi1dcard/laravel-deployment) | 📗[WIP] 追求质量的 Laravel 应用部署上线课程。 | 171 | Shell | 07/04 |
| 106 | [shengqiangzhang/Drcom-GDUT-HC5661A-OpenWrt](https://github.com/shengqiangzhang/Drcom-GDUT-HC5661A-OpenWrt) | 在Dr.COM下使用路由器上校园网WIFI(以广东工业大学、极路由1S HC5661A、OpenWrt为例) | 169 | Shell | 12/08 |
| 107 | [printempw/live-stream-recorder](https://github.com/printempw/live-stream-recorder) | Monitor and record live streams from YouTube, OPENREC, TwitCasting, etc. Made for VTuber fans. (VTuber 直播自动录像脚本) | 169 | Shell | 09/09 |
| 108 | [xzhih/dell-7460-7560-hackintosh](https://github.com/xzhih/dell-7460-7560-hackintosh) | 戴尔燃7000系列黑苹果安装和日常使用EFI | 168 | Shell | 10/10 |
| 109 | [zwmscorm/sharealiddns](https://github.com/zwmscorm/sharealiddns) | 全功能阿里云域名解析脚本(支持IPV4, IPV6, 多域名等,同时支持asuswrt-merlin 、padavan、pandorabox、lede/openwrt固件) | 164 | Shell | 02/22 |
| 110 | [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) | 161 | Shell | 03/18 |
| 111 | [jgsrty/jgsrty.github.docs](https://github.com/jgsrty/jgsrty.github.docs) | :sunny: :feet: personal blog docs 项目预览:https://jgsrty.github.io 国内访问:https://rtyxmd.gitee.io | 160 | Shell | 03/14 |
| 112 | [tinyclub/elinux](https://github.com/tinyclub/elinux) | 嵌入式 Linux 知识库 (elinux.org) 中文翻译计划 | 156 | Shell | 11/15 |
| 113 | [V2RaySSR/Trojan](https://github.com/V2RaySSR/Trojan) | Trojan 一键安装脚本 | 156 | Shell | 03/09 |
| 114 | [aturl/awesome-anti-gfw](https://github.com/aturl/awesome-anti-gfw) | 突破网络审查和封锁的开源工具清单。 | 155 | Shell | 03/16 |
| 115 | [jiangxianli/SSHAutoLogin](https://github.com/jiangxianli/SSHAutoLogin) | 一个使用expect免输入密码自动登录ssh的shell脚本,方便好用,适用Mac、Linux | 152 | Shell | 10/29 |
| 116 | [QAX-A-Team/WeblogicEnvironment](https://github.com/QAX-A-Team/WeblogicEnvironment) | Weblogic环境搭建工具 | 151 | Shell | 11/10 |
| 117 | [minminmsn/k8s1.13](https://github.com/minminmsn/k8s1.13) | 微服务容器化持续交付总体流程:提交gitlab;walle构建镜像及上传到私有镜像库;持续部署到kubernetes集群上启动应用。 | 149 | Shell | 06/06 |
| 118 | [jardenliu/XPS15-9560-Catalina](https://github.com/jardenliu/XPS15-9560-Catalina) | XPS15-9560-Catalina, Q群:161385229 | 150 | Shell | 03/02 |
| 119 | [tinyclub/linux-doc](https://github.com/tinyclub/linux-doc) | Linux Documentation 中文翻译计划 | 148 | Shell | 07/28 |
| 120 | [vcheckzen/FamilyCloudSpeederInShell](https://github.com/vcheckzen/FamilyCloudSpeederInShell) | [ 天翼家庭云/天翼云盘提速 Shell 版 ] A Shell Implementation of FamilyCloudSpeeder, ESurfing | 145 | Shell | 06/06 |
| 121 | [hczhcz/the-elder-is-excited](https://github.com/hczhcz/the-elder-is-excited) | 暴力膜蛤 | 144 | Shell | 03/14 |
| 122 | [BE-Kits/chaos-scanner](https://github.com/BE-Kits/chaos-scanner) | Next Generation Distributed Web Security Scanner with Futuristic Architecture and UI :dizzy: 混沌守望者(扫描器),多策略(爬虫扫描&POC 扫描)、模块化、分布式的智能网络空间测绘、管理与安全探测 | 139 | Shell | 12/16 |
| 123 | [idoop/docker-apollo](https://github.com/idoop/docker-apollo) | docker image for Ctrip/Apollo(携程Apollo) | 139 | Shell | 11/18 |
| 124 | [cniPatch/NavicatPremium](https://github.com/cniPatch/NavicatPremium) | Navicat Premium 🦀简体中文版 | 138 | Shell | 12/30 |
| 125 | [pssss/Security-Baseline](https://github.com/pssss/Security-Baseline) | Linux/Windows 安全加固脚本 | 135 | Shell | 07/23 |
| 126 | [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. 一些无聊的脚本和配置文件 | 132 | Shell | 03/09 |
| 127 | [eritpchy/Fingerprint-pay-magisk-alipay](https://github.com/eritpchy/Fingerprint-pay-magisk-alipay) | 支付宝指纹支付 (Fingerprint pay for Alipay) | 131 | Shell | 03/06 |
| 128 | [wangdoc/webapi-tutorial](https://github.com/wangdoc/webapi-tutorial) | Web API 教程 | 130 | Shell | 09/09 |
| 129 | [A-BenMao/pure-bash-bible-zh_CN](https://github.com/A-BenMao/pure-bash-bible-zh_CN) | 📖 一个纯bash实现外部命令的脚本集合(中文版)【翻译自pure-bash-bible仓库】 | 129 | Shell | 12/29 |
| 130 | [lijianying10/FixLinux](https://github.com/lijianying10/FixLinux) | 记录我是如何解决一些问题的,公开我平时用的脚本,变量等。 | 128 | Shell | 03/09 |
| 131 | [smallmuou/xmlyfetcher](https://github.com/smallmuou/xmlyfetcher) | 喜马拉雅音频下载工具 | 123 | Shell | 09/29 |
| 132 | [wyx176/Socks5](https://github.com/wyx176/Socks5) | Socks5代理服务器搭建脚本/Socks5 shortcut creation script | 123 | Shell | 08/23 |
| 133 | [vbay/big-data](https://github.com/vbay/big-data) | 一个开源、成体系的大数据学习教程。spark学习 hadoop hive hbase flink教程 linux 从入门到精通 | 123 | Shell | 11/27 |
| 134 | [ben1234560/k8s_PaaS](https://github.com/ben1234560/k8s_PaaS) | 如何基于K8S部署成PaaS(一套完整的软件研发和部署平台)——教程/学习(实战代码/欢迎讨论/大量注释/操作配图),你将习得部署如:K8S、dashboard、Harbor、Jenkins、本地gitlab、Apollo框架、promtheus、grafana、spinnaker。 | 121 | Shell | 03/18 |
| 135 | [dylanbai8/frpspro](https://github.com/dylanbai8/frpspro) | Frps 一键安装脚本,Frpc Windows 便捷脚本!Frp 远程桌面! | 119 | Shell | 12/31 |
| 136 | [goldze/Anti-Android-KM](https://github.com/goldze/Anti-Android-KM) | 破解某猫社区VIP会员 | 117 | Shell | 09/12 |
| 137 | [rcmdnk/sentaku](https://github.com/rcmdnk/sentaku) | Utility to make sentaku (selection, 選択(sentaku)) window with shell command. | 115 | Shell | 10/31 |
| 138 | [zhonghuasheng/Tutorial](https://github.com/zhonghuasheng/Tutorial) | 这个Repository是我JAVA技术栈学习、工作、常见问题总结,欢迎点击右上角Star!如需技术栈思维导图源文件,请联系我,微信号 chenyong_smallant | 114 | Shell | 03/18 |
| 139 | [yomun/youdaodict_5.5](https://github.com/yomun/youdaodict_5.5) | 重新编译 DeepIn 的有道词典 DEB 包 (支持其它新的 Linux 分发版) | 113 | Shell | 06/07 |
| 140 | [nwcdlabs/kops-cn](https://github.com/nwcdlabs/kops-cn) | AWS中国宁夏区域/北京区域,快速Kops部署K8S集群 | 112 | Shell | 03/11 |
| 141 | [wangdoc/html-tutorial](https://github.com/wangdoc/html-tutorial) | HTML 语言教程 | 111 | Shell | 02/27 |
| 142 | [FantasticLBP/codesnippets](https://github.com/FantasticLBP/codesnippets) | iOS 代码规范、属性、方法、GCD、线程等代码块和控制器、单例、Model 类模版 | 109 | Shell | 03/05 |
| 143 | [clion007/dnsmasq](https://github.com/clion007/dnsmasq) | 全自动dnsmasq及hosts科学上网,防DNS劫持及全面广告屏蔽脚本 | 108 | Shell | 11/27 |
| 144 | [lovezzzxxx/liverecord](https://github.com/lovezzzxxx/liverecord) | 自动录播并自动备份,支持youtube频道、twitcast频道、twitch频道、openrec频道、niconico生放送、niconico社区、niconico频道、mirrativ频道、reality频道、17live频道、bilibili频道、streamlink支持的直播网址、ffmpeg支持的m3u8地址 | 108 | Shell | 02/29 |
| 145 | [apachecn/ml-book-100-zh](https://github.com/apachecn/ml-book-100-zh) | :book: [译] 百页机器学习小书 | 108 | Shell | 12/17 |
| 146 | [moooofly/MarkSomethingDown](https://github.com/moooofly/MarkSomethingDown) | 本仓库用于记录自 2016年6月1日起,在饿了么任职期间的各方面知识汇总~ | 107 | Shell | 12/24 |
| 147 | [bclswl0827/v2ray-heroku](https://github.com/bclswl0827/v2ray-heroku) | 用于在 Heroku 上部署 V2Ray Websocket,本项目不宜做为长期使用之对策。 | 105 | Shell | 03/11 |
| 148 | [fenglh/IPABuildShell](https://github.com/fenglh/IPABuildShell) | IPABuildShell 一个强大的、轻量的 iOS 自动打包工具,无需手动指定授权文件和证书 | 105 | Shell | 02/24 |
| 149 | [Toxic-Cat/Airport-toolkit](https://github.com/Toxic-Cat/Airport-toolkit) | 各類方便機場主進行安裝維護的shell腳本 | 105 | Shell | 02/20 |
| 150 | [Baiyuetribe/baiyue_onekey](https://github.com/Baiyuetribe/baiyue_onekey) | 佰阅部落一键脚本合集工具箱,集合25+优质开源项目,一步到位,全程中文交互提示,不懂代码也可以轻松搭建很多程序 | 104 | Shell | 12/31 |
| 151 | [52fancy/GooGle-BBR](https://github.com/52fancy/GooGle-BBR) | GooGle开源TCP加速算法 | 102 | Shell | 02/16 |
| 152 | [farsunset/lvxin-im](https://github.com/farsunset/lvxin-im) | 侣信是一款功能强大的IM(即时聊天)工具。具有丰富的功能,聊天,群组,部门组织,内部朋友圈等功能。它可以在局域网内使用保证沟通的信息安全,并且它是完全免费的,而且可以及时获得更新。 | 100 | Shell | 01/03 |
| 153 | [easy-swoole/doc](https://github.com/easy-swoole/doc) | easyswoole文档 | 100 | Shell | 02/11 |
| 154 | [levinit/itnotes](https://github.com/levinit/itnotes) | 个人笔记,IT相关。 | 97 | Shell | 03/14 |
| 155 | [giantbranch/pwn-env-init](https://github.com/giantbranch/pwn-env-init) | CTF PWN 做题环境一键搭建脚本 | 97 | Shell | 01/16 |
| 156 | [AndorChen/rbenv-china-mirror](https://github.com/AndorChen/rbenv-china-mirror) | 让 rbenv 使用 Ruby China 的镜像安装 Ruby | 95 | Shell | 01/27 |
| 157 | [mritd/shell_scripts](https://github.com/mritd/shell_scripts) | 常用的一些 shell 脚本 | 95 | Shell | 01/03 |
| 158 | [lgs3137/MR_S1-macOS](https://github.com/lgs3137/MR_S1-macOS) | 机械革命S1(MSI PS42 8RB) for macOS Catalina & Mojave | 95 | Shell | 02/21 |
| 159 | [whunt1/onekeymakemtg](https://github.com/whunt1/onekeymakemtg) | 编译安装最新版 mtproxy-go 一键脚本 | 94 | Shell | 03/16 |
| 160 | [yanhuacuo/98wubi-tables](https://github.com/yanhuacuo/98wubi-tables) | 98五笔基础码表 | 93 | Shell | 03/05 |
| 161 | [TheKingOfDuck/ApkAnalyser](https://github.com/TheKingOfDuck/ApkAnalyser) | 一键提取安卓应用中可能存在的敏感信息。 | 92 | Shell | 03/13 |
| 162 | [XIU2/SHELL](https://github.com/XIU2/SHELL) | 一些乱七八糟的脚本 🙄 | 92 | Shell | 02/20 |
| 163 | [i5ting/i5ting-mac-init](https://github.com/i5ting/i5ting-mac-init) | 自己 Mac + Node.js 电脑初始化开发环境的安装脚本 | 90 | Shell | 03/15 |
| 164 | [goodboy23/shell-script-collection](https://github.com/goodboy23/shell-script-collection) | shell脚本合集,地址:https://www.52wiki.cn/Doc/Read/id/641.html | 89 | Shell | 10/25 |
| 165 | [laubonghaudoi/Chinese_Rime](https://github.com/laubonghaudoi/Chinese_Rime) | 收集現代漢語方言和古漢語的中州韻輸入法拼音方案 Collection of phonetic spelling schemas for Sinitic languages and dialects | 88 | Shell | 03/17 |
| 166 | [liungkejin/Bash-Games](https://github.com/liungkejin/Bash-Games) | LINUX终端下的贪吃蛇(Snake), 屏保(ClockSaver), 俄罗斯方块(Tetris)游戏(使用Bash shell编写) | 87 | Shell | 10/16 |
| 167 | [athlonreg/AppleALC-ALCPlugFix](https://github.com/athlonreg/AppleALC-ALCPlugFix) | 简单制作AppleALC驱动声卡并解决耳机、外放切换以及麦克风无输入 | 87 | Shell | 09/01 |
| 168 | [analysys/argo-installer](https://github.com/analysys/argo-installer) | 方舟Argo安装工具 | 87 | Shell | 03/17 |
| 169 | [apachecn/interpretable-ml-book-zh](https://github.com/apachecn/interpretable-ml-book-zh) | interpretable-ml-book中文翻译 | 85 | Shell | 01/21 |
| 170 | [Binlogo/iOS-Practice-Checklist](https://github.com/Binlogo/iOS-Practice-Checklist) | iOS 精进与实践检查清单 | 85 | Shell | 03/17 |
| 171 | [daliansky/Lenovo-Air13-IWL-Hackintosh](https://github.com/daliansky/Lenovo-Air13-IWL-Hackintosh) | 联想小新Air 13 IWL笔记本EFI | 84 | Shell | 03/16 |
| 172 | [apachecn/stanford-cs234-notes-zh](https://github.com/apachecn/stanford-cs234-notes-zh) | 斯坦福 cs234 强化学习中文讲义 | 83 | Shell | 02/07 |
| 173 | [lightyearvpn/LightyearVPN](https://github.com/lightyearvpn/LightyearVPN) | LightyearVPN 光年VPN 科学上网 一键翻墙 无需配置 | 83 | Shell | 03/17 |
| 174 | [mark-logs-code-hub/trojan-wiz](https://github.com/mark-logs-code-hub/trojan-wiz) | trojan一键脚本 | 83 | Shell | 11/27 |
| 175 | [JaderH/GreenBox](https://github.com/JaderH/GreenBox) | :game_die: 娱乐项目,使用 Crontab 定时提交 Commits。点亮绿格子;对就是绿 | 82 | Shell | 03/18 |
| 176 | [bookfere/KindleEar-Uploader](https://github.com/bookfere/KindleEar-Uploader) | 适用于 GAE 云端 Shell 的 KindleEar上传脚本。 | 79 | Shell | 09/29 |
| 177 | [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 | 78 | Shell | 03/16 |
| 178 | [rockswang/alispot](https://github.com/rockswang/alispot) | 自动创建阿里云抢占式实例,并启用网络加速 | 77 | Shell | 11/07 |
| 179 | [primovist/snell.sh](https://github.com/primovist/snell.sh) | snell的一键安装脚本 | 74 | Shell | 10/01 |
| 180 | [huweihuang/kubernetes-notes](https://github.com/huweihuang/kubernetes-notes) | Kubernetes 学习笔记-https://www.huweihuang.com/kubernetes-notes/ | 74 | Shell | 03/16 |
| 181 | [idoop/zentao](https://github.com/idoop/zentao) | auto build docker image for zentao(禅道). | 74 | Shell | 03/04 |
| 182 | [MFrank2016/GotoSSH](https://github.com/MFrank2016/GotoSSH) | Automatic login SSH (一键登录SSH,可直接从跳板机登录到线上服务器) | 74 | Shell | 10/16 |
| 183 | [zq99299/note-book](https://github.com/zq99299/note-book) | 新笔记本,java、git、elasticsearch、mycat、设计模式、gradle、vue, 等 。vuepress 构建的 Markdown 笔记。 | 73 | Shell | 03/16 |
| 184 | [TimeBye/kubeadm-ha](https://github.com/TimeBye/kubeadm-ha) | kubeadm-ha 使用 kubeadm 进行高可用 kubernetes 集群搭建,利用 ansible-playbook 实现自动化安装,既提供一键安装脚本,也可以根据 playbook 分步执行安装各个组件。 | 72 | Shell | 02/23 |
| 185 | [apachecn/stanford-game-theory-notes-zh](https://github.com/apachecn/stanford-game-theory-notes-zh) | 📖斯坦福博弈论中文笔记 | 71 | Shell | 10/08 |
| 186 | [jinfeijie/yapi](https://github.com/jinfeijie/yapi) | Docker for YApi 一键部署YApi | 67 | Shell | 02/08 |
| 187 | [apachecn/awesome-article-recomm](https://github.com/apachecn/awesome-article-recomm) | 优质博文推荐计划 | 67 | Shell | 09/18 |
| 188 | [apachecn/beginnersbook-zh](https://github.com/apachecn/beginnersbook-zh) | :books: [译] BeginnersBook 中文系列教程 | 67 | Shell | 11/16 |
| 189 | [xyzmos/GeekDNS](https://github.com/xyzmos/GeekDNS) | GeekDNS配置文件 | 66 | Shell | 03/03 |
| 190 | [ibisheng/deploy](https://github.com/ibisheng/deploy) | onlyoffice 一键安装 :毕升文档包括drive和在线文件服务功能。其中drive实现文件的在线管理,组织结构权限,分享,团队协作等,文件的全文检索等功能;在线文件服务能够处理word,ppt,excel格式文件的带水印预览以及多人协同编辑,另外还能处理pdf,视频,音频文件的预览以及实现了100多种文本文件带语法高亮的预览 | 66 | Shell | 01/04 |
| 191 | [yejinlei/about-compiler](https://github.com/yejinlei/about-compiler) | 有关编译器 | 66 | Shell | 08/25 |
| 192 | [1265578519/kangle](https://github.com/1265578519/kangle) | kangle web server 最强网站性能服务器架设软件 | 65 | Shell | 03/17 |
| 193 | [mdrights/LiveSlak](https://github.com/mdrights/LiveSlak) | 中文化的隐私加强 GNU/Linux 系统 - Forked from Alien Bob's powerful building script for Slackware Live. | 65 | Shell | 02/02 |
| 194 | [orangbus/Tool](https://github.com/orangbus/Tool) | 收藏一些自己常用的东西。 | 65 | Shell | 03/13 |
| 195 | [cjybyjk/powercfg_generator](https://github.com/cjybyjk/powercfg_generator) | 用于CPU调度作者生成powercfg和卡刷包 | 64 | Shell | 08/28 |
| 196 | [xausky/ShadowsocksGostPlugin](https://github.com/xausky/ShadowsocksGostPlugin) | Gost 的 Shadowsocks 安卓插件,可以直接在 Shadowsocks 安卓客户端上连接 Gost 服务器 | 63 | Shell | 03/14 |
| 197 | [Lancger/opslinux](https://github.com/Lancger/opslinux) | Linux运维手册(基础+frp内网穿透+分布式锁+Redis+Kafka+安全+漏洞扫描+Docker+ELFK+LVM+监控+CI/CD+数据库+翻墙+LDAP+MQ+minio对象存储+命令录制审计+IP出口+gmail邮件安全校验等) | 63 | Shell | 03/15 |
| 198 | [felix-fly/v2ray-dnsmasq-dnscrypt](https://github.com/felix-fly/v2ray-dnsmasq-dnscrypt) | 路由器openwrt配置dnsmasq、doh,高性能v2ray解决方案。 | 63 | Shell | 03/03 |
| 199 | [lonecloud/ssh-tools](https://github.com/lonecloud/ssh-tools) | :sob:没找到好用的shell工具:v:自己实现类似Xshell的部分功能 | 62 | Shell | 07/30 |
| 200 | [yz19930826/shadowsocks-d](https://github.com/yz19930826/shadowsocks-d) | shadowsocks优质教程集锦 | 61 | Shell | 11/21 |
⬆ [回到目录](#目录)
<br/>
## C
| # | Repository | Description | Stars | Language | Updated |
| ---- | ------------------------------------------------------------ | ------------------------------------------------------------ | ----- | -------- | ------- |
| 1 | [julycoding/The-Art-Of-Programming-By-July](https://github.com/julycoding/The-Art-Of-Programming-By-July) | 本项目曾冲到全球第一,干货集锦见本页面最底部,另完整精致的纸质版《编程之法:面试和算法心得》已在京东/当当上销售 | 18.9k | C | 12/27 |
| 2 | [QSCTech/zju-icicles](https://github.com/QSCTech/zju-icicles) | 浙江大学课程攻略共享计划 | 15.8k | C | 03/02 |
| 3 | [Awesome-HarmonyOS/HarmonyOS](https://github.com/Awesome-HarmonyOS/HarmonyOS) | A curated list of awesome things related to HarmonyOS. 华为鸿蒙操作系统。 | 13.5k | C | 01/26 |
| 4 | [bingoogolapple/BGAQRCode-Android](https://github.com/bingoogolapple/BGAQRCode-Android) | QRCode 扫描二维码、扫描条形码、相册获取图片后识别、生成带 Logo 二维码、支持微博微信 QQ 二维码扫描样式 | 6.4k | C | 03/12 |
| 5 | [huangz1990/redis-3.0-annotated](https://github.com/huangz1990/redis-3.0-annotated) | 带有详细注释的 Redis 3.0 代码(annotated Redis 3.0 source code)。 | 6.0k | C | 10/16 |
| 6 | [EZLippi/Tinyhttpd](https://github.com/EZLippi/Tinyhttpd) | Tinyhttpd 是J. David Blackstone在1999年写的一个不到 500 行的超轻量型 Http Server,用来学习非常不错,可以帮助我们真正理解服务器程序的本质。官网:http://tinyhttpd.sourceforge.net | 4.7k | C | 06/13 |
| 7 | [nonstriater/Learn-Algorithms](https://github.com/nonstriater/Learn-Algorithms) | 算法学习笔记 | 4.5k | C | 01/14 |
| 8 | [Tencent/TencentOS-tiny](https://github.com/Tencent/TencentOS-tiny) | 腾讯物联网终端操作系统 | 4.1k | C | 03/18 |
| 9 | [SecWiki/windows-kernel-exploits](https://github.com/SecWiki/windows-kernel-exploits) | windows-kernel-exploits Windows平台提权漏洞集合 | 3.9k | C | 03/14 |
| 10 | [SecWiki/linux-kernel-exploits](https://github.com/SecWiki/linux-kernel-exploits) | linux-kernel-exploits Linux平台提权漏洞集合 | 3.2k | C | 02/16 |
| 11 | [miloyip/json-tutorial](https://github.com/miloyip/json-tutorial) | 从零开始的 JSON 库教程 | 3.2k | C | 02/28 |
| 12 | [mabeijianxi/small-video-record](https://github.com/mabeijianxi/small-video-record) | 利用FFmpeg视频录制微信小视频与其压缩处理 | 3.1k | C | 07/13 |
| 13 | [linw7/Skill-Tree](https://github.com/linw7/Skill-Tree) | 🐼 准备秋招,欢迎来树上取果实 | 2.8k | C | 03/04 |
| 14 | [y123456yz/reading-code-of-nginx-1.9.2](https://github.com/y123456yz/reading-code-of-nginx-1.9.2) | nginx-1.9.2源码通读分析注释,带详尽函数中文分析注释以及相关函数流程调用注释,最全面的nginx源码阅读分析中文注释,更新完毕(nginx源码学习交流QQ群:568892619) | 2.2k | C | 07/30 |
| 15 | [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.2k | C | 03/09 |
| 16 | [WizTeam/WizQTClient](https://github.com/WizTeam/WizQTClient) | 为知笔记跨平台客户端 | 2.1k | C | 03/06 |
| 17 | [huangz1990/annotated_redis_source](https://github.com/huangz1990/annotated_redis_source) | 带有详细注释的 Redis 2.6 源码 | 2.1k | C | 01/01 |
| 18 | [snooda/net-speeder](https://github.com/snooda/net-speeder) | net-speeder 在高延迟不稳定链路上优化单线程下载速度 | 2.1k | C | 07/12 |
| 19 | [Mzzopublic/C](https://github.com/Mzzopublic/C) | C语言 | 1.8k | C | 03/06 |
| 20 | [firmianay/CTF-All-In-One](https://github.com/firmianay/CTF-All-In-One) | CTF竞赛入门指南 | 1.7k | C | 02/03 |
| 21 | [microshow/RxFFmpeg](https://github.com/microshow/RxFFmpeg) | 🔥RxFFmpeg 是基于 ( FFmpeg 4.0 + X264 + mp3lame + fdk-aac ) 编译的适用于 Android 平台的音视频编辑、视频剪辑的快速处理框架,包含以下功能(视频拼接,转码,压缩,裁剪,片头片尾,分离音视频,变速,添加静态贴纸和gif动态贴纸,添加字幕,添加滤镜,添加背景音乐,加速减速视频,倒放音视频,音频裁剪,变声,混音,图片合成视频,视频解码图片等主流特色功能 | 1.7k | C | 03/13 |
| 22 | [chiakge/Linux-NetSpeed](https://github.com/chiakge/Linux-NetSpeed) | 将Linux现常用的网络加速集成在一起 | 1.7k | C | 03/11 |
| 23 | [zlgopen/awtk](https://github.com/zlgopen/awtk) | AWTK = Toolkit AnyWhere(为嵌入式、手机和PC打造的通用GUI系统) | 1.6k | C | 03/18 |
| 24 | [EZLippi/WebBench](https://github.com/EZLippi/WebBench) | Webbench是Radim Kolar在1997年写的一个在linux下使用的非常简单的网站压测工具。它使用fork()模拟多个客户端同时访问我们设定的URL,测试网站在压力下工作的性能,最多可以模拟3万个并发连接去测试网站的负载能力。官网地址:http://home.tiscali.cz/~cz210552/webbench.html | 1.6k | C | 02/14 |
| 25 | [guanzhi/GmSSL](https://github.com/guanzhi/GmSSL) | 支持国密SM2/SM3/SM4/SM9/ZUC/SSL的OpenSSL分支 | 1.6k | C | 02/17 |
| 26 | [yangchaojiang/yjPlay](https://github.com/yangchaojiang/yjPlay) | 一个支持自定义UI布局,流式API, 加密,直播 ,亮度,音量,快进等手势 ,广告视频预览,多种加载模式 ,多种分辨率切换 ,多种封面图, 自定义数据源,列表播放,倍数播放,边播变缓存<font color="red">不是使用AndroidVideoCache</font>,离线播放,神奇的播放器 | 1.6k | C | 08/30 |
| 27 | [yangjie10930/EpMedia](https://github.com/yangjie10930/EpMedia) | Android上基于FFmpeg开发的视频处理框架,简单易用,体积小,帮助使用者快速实现视频处理功能。包含以下功能:剪辑,裁剪,旋转,镜像,合并,分离,变速,添加LOGO,添加滤镜,添加背景音乐,加速减速视频,倒放音视频。 | 1.4k | C | 06/10 |
| 28 | [xufuji456/FFmpegAndroid](https://github.com/xufuji456/FFmpegAndroid) | android端基于FFmpeg实现音频剪切、拼接、转码、混音、编解码;视频剪切、水印、截图、转码、编解码、转Gif动图、画面拼接、视频倒播;音视频合成与分离;音视频解码、同步与播放;FFmpeg本地推流、H264与RTMP实时推流直播;OpenGL实时滤镜;FFmpeg滤镜:素描、色彩平衡、hue、lut、模糊、九宫格等;基于IjkPlayer修改支持RTSP超低延时直播(局域网1080P延时130ms)、暂停、静音,多路投屏直播 | 1.3k | C | 03/18 |
| 29 | [liexusong/php-beast](https://github.com/liexusong/php-beast) | PHP source code encrypt module (PHP源码加密模块) | 1.2k | C | 09/11 |
| 30 | [starrtc/starrtc-server](https://github.com/starrtc/starrtc-server) | 免费IM系统,IM即时通信消息系统(含一对一文字聊天,群聊,聊天室),免费一对一voip实时通话,录屏,webrtc服务端,免费直播连麦,互动直播,视频直播,RTSP拉流,RTMP推流,语音对讲,免费在线会议,视频会议等服务端程序,支持物联网平台,✨万水千山总是情,来个star行不行✨ | 1.2k | C | 12/27 |
| 31 | [quickjs-zh/QuickJS](https://github.com/quickjs-zh/QuickJS) | QuickJS是一个小型并且可嵌入的Javascript引擎,它支持ES2020规范,包括模块,异步生成器和代理器。 | 1.2k | C | 03/17 |
| 32 | [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.1k | C | 02/12 |
| 33 | [cetus-tools/cetus](https://github.com/cetus-tools/cetus) | 专注于稳定、性能和分布式事务的MySQL数据库中间件(其中性能测试在开源数据库中间件排名第一) | 1.1k | C | 03/13 |
| 34 | [cx9208/bbrplus](https://github.com/cx9208/bbrplus) | 编译了dog250大神的bbr修正版 | 1.0k | C | 07/10 |
| 35 | [Ewenwan/ShiYanLou](https://github.com/Ewenwan/ShiYanLou) | 学习C & C++ & python&汇编语言 LLVM编译器 数据结构 算法 操作系统 单片机 linux 面试 | 968 | C | 03/15 |
| 36 | [momotech/MLN](https://github.com/momotech/MLN) | 高性能、小巧、易上手的移动跨平台开发框架. A framework for building Mobile cross-platform apps with Lua | 963 | C | 03/17 |
| 37 | [armink/EasyFlash](https://github.com/armink/EasyFlash) | Lightweight IoT device information storage solution. Make the flash to be a small KV database. \| 轻量级物联网设备信息存储方案,让 Flash 成为小型 KV 数据库 | 933 | C | 01/14 |
| 38 | [gatieme/LDD-LinuxDeviceDrivers](https://github.com/gatieme/LDD-LinuxDeviceDrivers) | Linux内核与设备驱动程序学习笔记 | 817 | C | 10/27 |
| 39 | [cppla/ServerStatus](https://github.com/cppla/ServerStatus) | 云探针、多服务器探针、云监控、多服务器云监控,演示: https://tz.cloudcpp.com/ | 807 | C | 02/04 |
| 40 | [MRNIU/SimpleKernel](https://github.com/MRNIU/SimpleKernel) | Simple kernel for learning operating systems. 用于学习操作系统的简单内核 | 738 | C | 03/18 |
| 41 | [BruceWind/AESJniEncrypt](https://github.com/BruceWind/AESJniEncrypt) | Make the most secure code in Android. (ndk实现AES,key在native中,防止被二次打包){长期维护,请star,勿fork} | 735 | C | 02/14 |
| 42 | [netwarm007/GameEngineFromScratch](https://github.com/netwarm007/GameEngineFromScratch) | 配合我的知乎专栏写的项目 | 706 | C | 01/16 |
| 43 | [feiskyer/sdn-handbook](https://github.com/feiskyer/sdn-handbook) | SDN网络指南(SDN Handbook) | 661 | C | 02/16 |
| 44 | [yianwillis/vimcdoc](https://github.com/yianwillis/vimcdoc) | Vim 中文文档计划 | 632 | C | 03/08 |
| 45 | [hurley25/hurlex-doc](https://github.com/hurley25/hurlex-doc) | hurlex 小内核分章节代码和文档 | 631 | C | 11/05 |
| 46 | [armink/FreeModbus_Slave-Master-RTT-STM32](https://github.com/armink/FreeModbus_Slave-Master-RTT-STM32) | Add master mode to FreeModbus. \| 在 FreeModbus 中添加主机模式 | 623 | C | 06/18 |
| 47 | [rock-app/fabu.love](https://github.com/rock-app/fabu.love) | 应用发布平台类似fir.im/蒲公英,支持检查更新,灰度发布等等.Demo地址:https://fabu.apppills.com/ | 604 | C | 12/26 |
| 48 | [armink/CmBacktrace](https://github.com/armink/CmBacktrace) | Advanced fault backtrace library for ARM Cortex-M series MCU \| ARM Cortex-M 系列 MCU 错误追踪库 | 567 | C | 03/12 |
| 49 | [larryli/PuTTY](https://github.com/larryli/PuTTY) | PuTTY 中文版,原 http://code.google.com/p/puttycn 项目。 | 553 | C | 11/01 |
| 50 | [feiskyer/linux-perf-examples](https://github.com/feiskyer/linux-perf-examples) | 极客时间《Linux 性能优化实战》案例 | 514 | C | 01/31 |
| 51 | [lqian/light-LPR](https://github.com/lqian/light-LPR) | Light-LPR是一个瞄准可以在嵌入式设备、手机端和普通的x86平台上运行的车牌识别开源项目,旨在支持各种场景的车牌识别,车牌字符识别准确率超99.95%,综合识别准确率超过99%,支持目前国内所有的车牌识别,觉得好用的一定要加星哦。 | 504 | C | 02/23 |
| 52 | [LeechanX/Data-Structures-and-Algorithms-in-C](https://github.com/LeechanX/Data-Structures-and-Algorithms-in-C) | 所有基础数据结构和算法的纯C语言实现,如各自排序、链表、栈、队列、各种树以及应用、图算法、字符串匹配算法、回溯、并查集等,献丑了 | 475 | C | 10/13 |
| 53 | [u0u0/Quick-Cocos2dx-Community](https://github.com/u0u0/Quick-Cocos2dx-Community) | Cocos2d-Lua 社区版 | 470 | C | 03/11 |
| 54 | [Tencent/TencentOS-kernel](https://github.com/Tencent/TencentOS-kernel) | 腾讯针对云的场景研发的服务器操作系统 | 460 | C | 03/17 |
| 55 | [aliyun/iotkit-embedded](https://github.com/aliyun/iotkit-embedded) | 高速镜像: https://code.aliyun.com/linkkit/c-sdk | 422 | C | 03/13 |
| 56 | [lihancong/tonyenc](https://github.com/lihancong/tonyenc) | 高性能、跨平台的 PHP7 代码加密扩展 (A high performance and cross-platform encrypt extension for PHP source code) | 419 | C | 11/01 |
| 57 | [del-xiong/screw-plus](https://github.com/del-xiong/screw-plus) | 开源php加密运行扩展,基于screw二次开发,暂时只能在linux下运行 | 417 | C | 12/06 |
| 58 | [vimfung/LuaScriptCore](https://github.com/vimfung/LuaScriptCore) | 一款简单易用的多平台Lua桥接器,目前支持在iOS、Mac OS X、Android以及Unity3D中使用,让原生环境与Lua无障碍沟通。 | 411 | C | 11/20 |
| 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 ... | 399 | C | 02/25 |
| 60 | [mengzhidaren/Vlc-sdk-lib](https://github.com/mengzhidaren/Vlc-sdk-lib) | vlc-android The latest compilation video playback libraries 最新视频库支持录屏 欢迎star | 393 | C | 07/02 |
| 61 | [aliyun/rds_dbsync](https://github.com/aliyun/rds_dbsync) | 围绕 PostgreSQL Greenplum ,实现易用的数据的互迁功能项目 | 383 | C | 12/24 |
| 62 | [CasterWx/AntzOS](https://github.com/CasterWx/AntzOS) | :earth_asia: Develop an intelligent AI half terminal half graphical operating system Antz. 一个随心所欲制造的操作系统Antz。 | 367 | C | 03/12 |
| 63 | [wanliyang1990/wlplayer](https://github.com/wanliyang1990/wlplayer) | NDK+FFmpeg+OpenSL+OpenGL+Mediacodec 的视频播放SDK源码和实例APP,很适合学习ffmpeg解码流程和Android中NDK实战开发 | 367 | C | 12/06 |
| 64 | [CoderMJLee/MJCodeObfuscation](https://github.com/CoderMJLee/MJCodeObfuscation) | 一个用于代码混淆和字符串加密的Mac小Demo | 366 | C | 01/04 |
| 65 | [yaouser/C](https://github.com/yaouser/C) | linux下的C语言及关于kernel的介绍 | 360 | C | 10/01 |
| 66 | [chenall/grub4dos](https://github.com/chenall/grub4dos) | 外部命令和工具源码:https://github.com/chenall/grubutils 下载: | 360 | C | 03/04 |
| 67 | [nauxliu/opencc4php](https://github.com/nauxliu/opencc4php) | 简繁体转换 PHP 扩展 | 358 | C | 09/12 |
| 68 | [zsummer/breeze](https://github.com/zsummer/breeze) | 一个C++的轻量级的分布式服务器引擎, 架构思想为一切皆service. | 340 | C | 06/08 |
| 69 | [wenjun1055/c](https://github.com/wenjun1055/c) | C语言学习代码 | 321 | C | 10/16 |
| 70 | [picasso250/spring12](https://github.com/picasso250/spring12) | 春节十二响 | 316 | C | 03/14 |
| 71 | [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 结构体的序列化及反序列化 | 314 | C | 02/23 |
| 72 | [huangz1990/blog](https://github.com/huangz1990/blog) | 我的个人博客。 | 287 | C | 02/20 |
| 73 | [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) | 284 | C | 01/20 |
| 74 | [elarity/data-structure-php-clanguage](https://github.com/elarity/data-structure-php-clanguage) | 对于数据结构和算法类的东西,我工作有些年份了,大学也有所涉猎,积累了一些内容,不高产不母猪,打我自己脸 | 282 | C | 09/10 |
| 75 | [idealclover/NJU-Review-Materials](https://github.com/idealclover/NJU-Review-Materials) | 📝 南哪课程复习资料 Review materials for NJU | 281 | C | 07/18 |
| 76 | [david-pzh/X-Bot](https://github.com/david-pzh/X-Bot) | 一个自己设计的超迷你写字机器人,软件、电路、结构完全开源。 | 272 | C | 11/09 |
| 77 | [979451341/Audio-and-video-learning-materials](https://github.com/979451341/Audio-and-video-learning-materials) | 基于Android的音视频学习资料代码集合第一弹,这是第二弹https://github.com/979451341/AudioVideoStudyCodeTwo | 270 | C | 10/16 |
| 78 | [xausky/UnityModManager](https://github.com/xausky/UnityModManager) | 一个便捷的程序可以修改游戏内资源包括:Unity游戏资源,Wwise音频资源。 | 266 | C | 01/13 |
| 79 | [ma6174/fmpi](https://github.com/ma6174/fmpi) | 树莓派 FM发射台 | 256 | C | 07/09 |
| 80 | [byhook/ffmpeg4android](https://github.com/byhook/ffmpeg4android) | 音视频学习实践,从移植ffmpeg库到android平台,混合编译x264库以及fdk-aac库,到相机音频采集编码推流到RTMP服务器的学习记录 | 254 | C | 07/27 |
| 81 | [chronolaw/annotated_nginx](https://github.com/chronolaw/annotated_nginx) | Annotated Nginx Source(中文) | 252 | C | 03/05 |
| 82 | [fanchy/fflib](https://github.com/fanchy/fflib) | FFLib is a lightweight c++ framework.FFlib is mainly designed for game server developing. But some components in FFLib is in common use. For example socket&net module, log module, thread&lock, tools for performance & memory leak check.用于分布式程序的c++类库,封装了socket、rpc、lua、CQRS框架、算法等组件,适于SNS、WEBGAME、MMO后台程 ... | 247 | C | 08/20 |
| 83 | [chexiongsheng/build_xlua_with_libs](https://github.com/chexiongsheng/build_xlua_with_libs) | 为xLua集成几个常用库,方便使用 | 244 | C | 06/18 |
| 84 | [MiEcosystem/miio_open](https://github.com/MiEcosystem/miio_open) | 智能硬件接入文档 | 238 | C | 02/21 |
| 85 | [zerochl/FFMPEG-AAC-264-Android-32-64](https://github.com/zerochl/FFMPEG-AAC-264-Android-32-64) | android视频压缩,使用ffmpeg方案,集成fdk-aac与264编码,适用于32位系统与64位系统,支持ARM 32/64 cpu与x86 32/64 cpu,mips 32/64 cpu,即支持android7.0系统 | 228 | C | 10/14 |
| 86 | [loveuav/BlueSkyFlightControl](https://github.com/loveuav/BlueSkyFlightControl) | 天穹飞控:致力于打造中国最强大的多旋翼开源飞控! | 226 | C | 09/28 |
| 87 | [konosubakonoakua/Various_MCU_Debugger_DIY](https://github.com/konosubakonoakua/Various_MCU_Debugger_DIY) | 各种LInk大合集 | 224 | C | 06/09 |
| 88 | [QingdaoU/Judger](https://github.com/QingdaoU/Judger) | Online judge sandbox based on seccomp \| OnlineJudge 安全沙箱 | 224 | C | 07/30 |
| 89 | [shineframe/shineframe](https://github.com/shineframe/shineframe) | 高性能超轻量级C++开发库及服务器编程框架 | 222 | C | 03/18 |
| 90 | [wsbblyy/wechat-pc-hook-api](https://github.com/wsbblyy/wechat-pc-hook-api) | 微信 pc hook | 222 | C | 09/13 |
| 91 | [destan19/OpenAppFilter](https://github.com/destan19/OpenAppFilter) | 基于OpenWrt的App过滤(上网管控)模块,支持抖音、斗鱼、王者荣耀、腾讯视频等上百款App过滤 | 218 | C | 03/02 |
| 92 | [froghui/yolanda](https://github.com/froghui/yolanda) | 极客时间<网络编程实战>代码 | 215 | C | 03/08 |
| 93 | [zlgopen/ametal](https://github.com/zlgopen/ametal) | 芯片级裸机软件包,定义了一系列常用外设(如:UART、IIC、SPI、ADC等)的通用接口,基于通用接口的应用可以跨平台复用。 | 214 | C | 03/18 |
| 94 | [OliverLew/PAT](https://github.com/OliverLew/PAT) | PAT OJ exercises in C language 浙江大学PAT纯C语言题解,欢迎改进建议 | 207 | C | 03/05 |
| 95 | [dpull/skynet-mingw](https://github.com/dpull/skynet-mingw) | 对skynet无任何改动的windows版 | 207 | C | 03/04 |
| 96 | [ljrkernel/LearningLinuxKernel](https://github.com/ljrkernel/LearningLinuxKernel) | 和我一起学习Linux内核吧 | 203 | C | 11/30 |
| 97 | [gatieme/AderXCoding](https://github.com/gatieme/AderXCoding) | 介绍各类语言,库,系统编程以及算法的学习 | 203 | C | 06/23 |
| 98 | [murphyzhao/FlexibleButton](https://github.com/murphyzhao/FlexibleButton) | 灵活的按键处理库(Flexible Button)\| 按键驱动 \| 支持单击、双击、连击、长按、自动消抖 \| 灵活适配中断和低功耗 \| 按需实现组合按键 | 191 | C | 02/21 |
| 99 | [Philon/arts](https://github.com/Philon/arts) | 每周一道算法一本书 | 191 | C | 11/17 |
| 100 | [kingwang666/AppAddUpdate](https://github.com/kingwang666/AppAddUpdate) | Android app 增量更新 | 189 | C | 07/03 |
| 101 | [Baidu-AIP/speech-vad-demo](https://github.com/Baidu-AIP/speech-vad-demo) | 集成Webrtc的VAD,用于切分音频文件 | 188 | C | 09/27 |
| 102 | [EasyDarwin/EasyAACEncoder](https://github.com/EasyDarwin/EasyAACEncoder) | 开源项目:简单、高效、稳定的开源音频编码库,支持将各种音频数据(G.711A/PCMA、G.711U/PCMU、G726、PCM)转码成AAC(with adts)格式,其中aac编码部分采用的是业界公认的faac库,EasyAACEncoder支持Windows、Linux、ARM等多种平台,能够广泛应用于各种移动终端设备、嵌入式设备和流媒体转码服务器! | 188 | C | 08/19 |
| 103 | [chenyahui/AnnotatedCode](https://github.com/chenyahui/AnnotatedCode) | 知名开源代码库的注释版,包括libco、coroutine、muduo等 | 184 | C | 03/13 |
| 104 | [fanchy/h2engine](https://github.com/fanchy/h2engine) | H2服务器引擎架构是轻量级的,与其说是引擎,个人觉得称之为平台更为合适。因为它封装的功能少之又少,但是提供了非常简洁方便的扩展机制,使得可以用C++、python、lua、js、php来开发具体的服务器功能。H2引擎的灵感来源于web服务器Apache。 | 184 | C | 03/16 |
| 105 | [AngelKitty/review_the_national_post-graduate_entrance_examination](https://github.com/AngelKitty/review_the_national_post-graduate_entrance_examination) | 🌟复习考研的那些事儿(清华912考研)~~ | 179 | C | 01/01 |
| 106 | [zpoint/Redis-Internals](https://github.com/zpoint/Redis-Internals) | Analyze redis 5.0 source code through diagrams \| 图解 Redis 5.0 | 176 | C | 02/06 |
| 107 | [MustangYM/WeChatICU-ForMac](https://github.com/MustangYM/WeChatICU-ForMac) | Mac版企业微信消息防撤回, 聊天会话去水印 | 176 | C | 02/03 |
| 108 | [zmrbak/PcWeChatHooK](https://github.com/zmrbak/PcWeChatHooK) | 云课堂《2019 PC微信 探秘》示例代码 | 170 | C | 12/26 |
| 109 | [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. | 168 | C | 02/17 |
| 110 | [redknotmiaoyuqiao/Fractal](https://github.com/redknotmiaoyuqiao/Fractal) | 生成好看的Fractal图形 | 162 | C | 07/08 |
| 111 | [ljrkernel/linuxmooc](https://github.com/ljrkernel/linuxmooc) | 陈莉君教授《Linux内核分析与应用》课程课件、动手实践源代码、实验手册、实验源代码 | 156 | C | 10/03 |
| 112 | [eboxmaker/eBox_Framework](https://github.com/eboxmaker/eBox_Framework) | ebox是类似于arduino的一层api,简化stm32编程 | 154 | C | 03/07 |
| 113 | [wangbojing/NtyCo](https://github.com/wangbojing/NtyCo) | 纯c版本的协程实现,汇编切换,调度器实现,包含服务器端案例,客户端并发测试案例 | 151 | C | 06/24 |
| 114 | [UncP/aili](https://github.com/UncP/aili) | the fastest in-memory index in the East 东半球最快并发索引 | 151 | C | 11/08 |
| 115 | [PHZ76/DesktopSharing](https://github.com/PHZ76/DesktopSharing) | 桌面共享, 支持RTSP转发, RTSP推流, RTMP推流。 | 151 | C | 01/20 |
| 116 | [YJBeetle/unnpk](https://github.com/YJBeetle/unnpk) | 解包网易游戏NeoX引擎NPK文件,如阴阳师、魔法禁书目录。 | 142 | C | 12/22 |
| 117 | [dzxx36gyy/nali-ipip](https://github.com/dzxx36gyy/nali-ipip) | a fork of http://www.surfchen.org/nali using ipip ipdb (http://ipip.net) 基于nali修改支持ipip数据库, 欢迎使用 | 139 | C | 12/29 |
| 118 | [maxlicheng/stm32f4_ucosii_lwip_mqtt](https://github.com/maxlicheng/stm32f4_ucosii_lwip_mqtt) | 基于正点原子STM32F4开发板和阿里云物联网平台的MQTT项目 | 137 | C | 03/15 |
| 119 | [zkwlx/ADI](https://github.com/zkwlx/ADI) | ADI(Android Debug Intensive) 是通过 JVMTI 实现的 Android 应用开发调试的增强工具集,目前主要提供性能相关的监控能力。 | 132 | C | 02/13 |
| 120 | [armfly/H7-TOOL_STM32H7_App](https://github.com/armfly/H7-TOOL_STM32H7_App) | 单片机APP程序 | 132 | C | 03/12 |
| 121 | [tsingsee/EasyPlayer-RTSP-Win](https://github.com/tsingsee/EasyPlayer-RTSP-Win) | An elegant, simple, fast windows RTSP Player.EasyPlayer support RTSP(RTP over TCP/UDP),video support H.264/H.265,audio support G.711/G.726/AAC!EasyPlayer RTSP是一款精炼、高效、稳定的RTSP流媒体播放器,视频支持H.264/H.265,音频支持G.711/G.726/AAC,支持RTP over UDP/TCP两种模式! | 132 | C | 02/25 |
| 122 | [switch-iot/hin2n](https://github.com/switch-iot/hin2n) | n2n support for mobiles(n2n手机版) | 131 | C | 06/17 |
| 123 | [notrynohigh/BabyOS](https://github.com/notrynohigh/BabyOS) | 专为MCU项目开发提速的代码框架 | 130 | C | 03/18 |
| 124 | [xinyang-go/SJTU-RM-CV-2019](https://github.com/xinyang-go/SJTU-RM-CV-2019) | 上海交通大学 RoboMaster 2019赛季 视觉代码 | 129 | C | 01/02 |
| 125 | [NEWPLAN/SMx](https://github.com/NEWPLAN/SMx) | 国家商用加密算法 SMx(SM2,SM3,SM4) | 127 | C | 09/17 |
| 126 | [soffchen/NanoPi-R2S](https://github.com/soffchen/NanoPi-R2S) | 使用 Github Actions 在线编译内置 OpenClash 的 NanoPi-R2S 固件 | 126 | C | 03/12 |
| 127 | [kyzhouhzau/Clinical-NER](https://github.com/kyzhouhzau/Clinical-NER) | 面向中文电子病历的命名实体识别 | 124 | C | 08/27 |
| 128 | [shishujuan/data-structure-algorithms](https://github.com/shishujuan/data-structure-algorithms) | 数据结构与算法基础专栏 | 120 | C | 10/20 |
| 129 | [xiayuanquan/FFmpegDemo](https://github.com/xiayuanquan/FFmpegDemo) | 视频直播和播放转码器框架 | 117 | C | 01/06 |
| 130 | [miniLV/Interview-series](https://github.com/miniLV/Interview-series) | iOS从入门到进阶 - 技术合集 | 115 | C | 12/30 |
| 131 | [suxin1412/suos](https://github.com/suxin1412/suos) | 一个简陋的操作系统 | 113 | C | 12/06 |
| 132 | [havenxie/stm32-iap-uart-boot](https://github.com/havenxie/stm32-iap-uart-boot) | STM32 IAP(UART模式)的BOOT部分 | 111 | C | 08/29 |
| 133 | [guanshuicheng/invoice](https://github.com/guanshuicheng/invoice) | 增值税发票OCR识别,使用flask微服务架构,识别type:增值税电子普通发票,增值税普通发票,增值税专用发票;识别字段为:发票代码、发票号码、开票日期、校验码、税后金额等 | 111 | C | 01/29 |
| 134 | [EasyDarwin/EasyAudioDecoder](https://github.com/EasyDarwin/EasyAudioDecoder) | 开源项目:简单、高效、稳定的开源音频解码库,能够将G.711A/PCMA、G.711U/PCMU、G726、AAC等音频格式转码到Linear PCM,再提供给流媒体播放器进行音频播放,EasyAudioDecoder支持跨平台,支持Android & iOS,目前已稳定应用于EasyPlayer、EasyClient等多个开源及商业项目! | 108 | C | 07/01 |
| 135 | [nns779/px4_drv](https://github.com/nns779/px4_drv) | PLEX PX-W3U4/Q3U4/W3PE4/Q3PE4 用の非公式版Linuxドライバ | 108 | C | 03/08 |
| 136 | [YJLAugus/Inios](https://github.com/YJLAugus/Inios) | 从零开发一32位操作系统 | 105 | C | 01/02 |
| 137 | [iFindTA/PBGMService](https://github.com/iFindTA/PBGMService) | 国密算法 sm2/sm3/sm4 Objc封装!作者观点:重点不是算法而是密钥安全性! | 100 | C | 08/13 |
| 138 | [RunningGump/gsxt_captcha](https://github.com/RunningGump/gsxt_captcha) | 破解含语序问题的点击验证码 | 100 | C | 11/01 |
| 139 | [Chocolatl/qqlight-websocket](https://github.com/Chocolatl/qqlight-websocket) | QQLight机器人WebSocket-RPC插件,让你能够使用任何语言编写QQ机器人程序 | 98 | C | 03/05 |
| 140 | [grpc-nebula/grpc-nebula](https://github.com/grpc-nebula/grpc-nebula) | 微服务治理框架简介 | 97 | C | 10/18 |
| 141 | [alibaba/iot_remote_access](https://github.com/alibaba/iot_remote_access) | 阿里云IoT远程运维套装之远程访问设备侧源码 | 96 | C | 12/02 |
| 142 | [david-pzh/ONE-Robot](https://github.com/david-pzh/ONE-Robot) | 2015年做的一个基于IMU和STM32的独轮自平衡机器人 | 96 | C | 02/15 |
| 143 | [yhaolpz/FFmpegCmd](https://github.com/yhaolpz/FFmpegCmd) | Android端强大的音视频编辑App(FFmpeg 命令方式) | 92 | C | 06/16 |
| 144 | [Djangoogle/AndroidModule](https://github.com/Djangoogle/AndroidModule) | Android 通用模块封装 | 92 | C | 12/09 |
| 145 | [albuer/heapsnap](https://github.com/albuer/heapsnap) | HeapSnap 是一个定位内存泄露的工具,适用于Android平台。 | 90 | C | 12/02 |
| 146 | [rokid/docs](https://github.com/rokid/docs) | Rokid 语音开放平台,包含技能开发、语音设备接入及智能家居接入的文档、SDK 及示例代码 | 90 | C | 03/16 |
| 147 | [979451341/AudioVideoStudyCodeTwo](https://github.com/979451341/AudioVideoStudyCodeTwo) | 基于Android FFmpeg 音视频学习代码第二弹,这是第一弹https://github.com/979451341/Audio-and-video-learning-materials | 89 | C | 10/16 |
| 148 | [DingHe/unpv13e](https://github.com/DingHe/unpv13e) | UNIX网络编程 卷1:套接字联网API(第3版)源代码 | 89 | C | 06/04 |
| 149 | [zhuotong/Android_InlineHook](https://github.com/zhuotong/Android_InlineHook) | Android内联hook框架 | 86 | C | 01/08 |
| 150 | [wonderkun/CTFENV](https://github.com/wonderkun/CTFENV) | 为应对CTF比赛而搭建的各种环境 | 86 | C | 01/31 |
| 151 | [LGCooci/objc4_debug](https://github.com/LGCooci/objc4_debug) | 可编译苹果官方源码objc!现在有objc4-750,objc4-756.2,以及libmalloc-166.200.60等可编译版本,大家可以自由LLDB调试! | 84 | C | 03/05 |
| 152 | [userpro/MemoryPool](https://github.com/userpro/MemoryPool) | 一个极简内存池实现 | 84 | C | 10/14 |
| 153 | [AngelKitty/Computer-Virus](https://github.com/AngelKitty/Computer-Virus) | 👻计算机病毒以及相应的专杀工具的研发 | 83 | C | 08/06 |
| 154 | [timwhitez/Cobalt-Strike-Aggressor-Scripts](https://github.com/timwhitez/Cobalt-Strike-Aggressor-Scripts) | Cobalt Strike Aggressor 插件包 | 82 | C | 03/17 |
| 155 | [fujie-xiyou/chat_room](https://github.com/fujie-xiyou/chat_room) | 聊天室 -- 17年暑假项目(Linux C网络编程) | 82 | C | 01/09 |
| 156 | [zhouchangxun/ngx_healthcheck_module](https://github.com/zhouchangxun/ngx_healthcheck_module) | nginx module for upstream servers health check. support stream and http upstream. 该模块可以为Nginx提供主动式后端服务器健康检查的功能(同时支持四层和七层后端服务器的健康检测) | 81 | C | 09/21 |
| 157 | [chroblert/domainWeakPasswdCheck](https://github.com/chroblert/domainWeakPasswdCheck) | 内网安全·域账号弱口令审计 | 81 | C | 12/27 |
| 158 | [tidyjiang8/esp-idf-zh](https://github.com/tidyjiang8/esp-idf-zh) | ESP-IDF 中文文档 | 77 | C | 03/08 |
| 159 | [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++日志模块,其提供了高性能,异步,线程安全,进程安全的日志功能。 | 75 | C | 03/11 |
| 160 | [trumanzhao/luna](https://github.com/trumanzhao/luna) | 基于C++17的lua/C++绑定库,以及lua的二进制序列化等辅助代码 | 73 | C | 03/03 |
| 161 | [dodola/fbhookfork](https://github.com/dodola/fbhookfork) | 从 fb 的 profilo 项目里提取出来的hook 库,自己用 | 72 | C | 01/11 |
| 162 | [yundiantech/VideoPlayer](https://github.com/yundiantech/VideoPlayer) | Qt+ffmpeg实现的视频播放器 | 70 | C | 03/01 |
| 163 | [zl03jsj/mupdf](https://github.com/zl03jsj/mupdf) | 扩展mupdf 实现图像数字证书签名, 手写笔迹数字证书签名, 插入图片, 手写签名注释..改进手写批注,实现模拟真实手写的算法, annot自定义数据, annot插入,删除密码校验等功能...支持ios, windows, mac, linux, c++, java, android | 69 | C | 03/08 |
| 164 | [isrc-cas/pacific](https://github.com/isrc-cas/pacific) | 方舟编译器的Runtime参考实现。这不是华为官方项目,是PLCT实验室的培训项目。 | 68 | C | 01/09 |
| 165 | [stz2012/libarib25](https://github.com/stz2012/libarib25) | Linux用ARIB STD-B25ライブラリ(各録画ツールにarib25ソースを添付しなくとも、Makefile内で-larib25でコンパイルできる) | 66 | C | 07/29 |
| 166 | [Albert-Zhan/php-decrypt](https://github.com/Albert-Zhan/php-decrypt) | PHP Decrypt是一个跨平台用来解密PHP源码的扩展 | 65 | C | 12/29 |
| 167 | [nishuoshenme/FGOFPSUnlocker](https://github.com/nishuoshenme/FGOFPSUnlocker) | 为fgo、bgo和bgo(tw)提供在手机上解锁60FPS的模块 | 65 | C | 02/28 |
| 168 | [MissFreak/SI-2019-Spring](https://github.com/MissFreak/SI-2019-Spring) | 信息学院(School of Information)2019春入学的同学们,欢迎进入公共讨论区,你可以与本专业的老师和同学在这里交流。 | 64 | C | 12/29 |
| 169 | [dengfaheng/WeChatCode](https://github.com/dengfaheng/WeChatCode) | 微信公众号【程序猿声】的相关代码汇总 | 64 | C | 01/28 |
| 170 | [willianchanlovegithub/DIY_projects_base_on_RT-Thread](https://github.com/willianchanlovegithub/DIY_projects_base_on_RT-Thread) | 一些基于 RT-Thread 开发的 DIY 项目 | 63 | C | 10/06 |
| 171 | [foxclever/Modbus](https://github.com/foxclever/Modbus) | 一个Modbus通讯协议栈 | 63 | C | 10/22 |
| 172 | [BeginMan/PersonNotes](https://github.com/BeginMan/PersonNotes) | 个人笔记集中营,快糙猛的形式记录技术性Notes .. 📚☕️⌨️🎧 | 62 | C | 12/06 |
| 173 | [draveness/linux-archive](https://github.com/draveness/linux-archive) | Linux archive for studying the process scheduler. 调度系统设计精要 http://draveness.me/system-design-scheduler | 61 | C | 02/02 |
| 174 | [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两种模式! | 60 | C | 02/28 |
| 175 | [starrtc/starrtc-rpi-demo](https://github.com/starrtc/starrtc-rpi-demo) | Raspberry Pi 树莓派 树莓派小车 树莓派 摄像头 直播 推流 示例代码,更多示例请参见: | 60 | C | 08/29 |
| 176 | [ChangWinde/SouthEastUniversity](https://github.com/ChangWinde/SouthEastUniversity) | 东南大学软件学院课程资料 | 60 | C | 10/22 |
| 177 | [hanson-young/nniefacelib](https://github.com/hanson-young/nniefacelib) | nniefacelib是一个在海思35xx系列芯片上运行的人脸算法库 | 59 | C | 03/17 |
| 178 | [leleliu008/C](https://github.com/leleliu008/C) | C语言学习项目 | 59 | C | 11/02 |
| 179 | [wwptrdudu/Voice_Recognition_Control_Robot](https://github.com/wwptrdudu/Voice_Recognition_Control_Robot) | 树莓派上的语音控制语音聊天的智能机器人。利用树莓派的wiringPi,科大讯飞,图灵机器人,alsa等开发库实现。 | 59 | C | 09/18 |
| 180 | [qq4108863/himqtt](https://github.com/qq4108863/himqtt) | himqtt是首款完整源码的高性能MQTT物联网防火墙 - MQTT Application FireWall,采用epoll模式支持高并发连接。 | 59 | C | 01/01 |
| 181 | [hungtcs-lab/8051-examples](https://github.com/hungtcs-lab/8051-examples) | 基于SDCC编译器的8051单片机示例 | 57 | C | 03/09 |
| 182 | [labplus-cn/mpython](https://github.com/labplus-cn/mpython) | mpython掌控板文档和固件源码 | 57 | C | 03/18 |
| 183 | [guanhui07/blog](https://github.com/guanhui07/blog) | 把博客迁移到这了 | 57 | C | 10/17 |
| 184 | [chenrensong/ImageLib.UWP](https://github.com/chenrensong/ImageLib.UWP) | 支持Universal Windows Platform(UWP),基于微软最新的2d图形加速引擎Win2d,支持gif、jpg、png、webp等格式 | 57 | C | 06/29 |
| 185 | [rexbu/libGPU](https://github.com/rexbu/libGPU) | 类似GPUImage的开源跨平台的GPU处理图片及视频库(An cross-platform open source framework for GPU-based image and video processing like GPUImage) | 56 | C | 08/11 |
| 186 | [alibaba/id2_client_sdk](https://github.com/alibaba/id2_client_sdk) | ID²(Internet Device ID),是物联网设备的可信身份标识,具备不可篡改、不可伪造、全球唯一的安全属性,是实现万物互联、服务流转的关键基础设施。ID²支持多安全等级载体,合理地平衡物联网在安全、成本、功耗等各方面的诉求,为客户提供用得起、容易用、有保障的安全方案,适应物联网碎片化的市场需求。 ID² Client SDK是用于设备端开发的软件工具包,帮助开发者快速集成接入ID²开放平台. | 55 | C | 03/17 |
| 187 | [ixzzVing/SSR-VPN](https://github.com/ixzzVing/SSR-VPN) | Shadowsocks & ShadowsocksR & V2Ray & V2RayNG & VNET/酸酸乳节点及客户端 | 55 | C | 11/22 |
| 188 | [tongban/Learning-DIY-RTOS](https://github.com/tongban/Learning-DIY-RTOS) | 自己动手从0到1写嵌入式操作系统 课程的相关资料下载 | 55 | C | 03/08 |
| 189 | [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 数据库 | 54 | C | 11/27 |
| 190 | [TideSec/Peach_Fuzzing](https://github.com/TideSec/Peach_Fuzzing) | 在学习使用peach进行模糊测试时,搜集到的一些不错的资料,以及配套的一些软件或脚本。 | 53 | C | 11/29 |
| 191 | [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/ | 52 | C | 03/04 |
| 192 | [jmp19940829/WeChat](https://github.com/jmp19940829/WeChat) | 声明1:本源码是本人利用业余时间所写,《免费》 仅供逆向编程爱好者学习使用!本源码禁止用于商业非法用途! 声明2:本源码无任何恶意代码!但可能存在些许BUG 因此所造成的损失等概与本人无关 声明3:使用编译本源码即默认同意上述声明+ | 52 | C | 01/02 |
| 193 | [qq4108863/hihttps](https://github.com/qq4108863/hihttps) | hihttps是一款完整源码的高性能SSL WEB应用防火墙( SSL WAF),采用epoll模式支持高并发,并且兼容ModSecurity正则规则。 | 52 | C | 01/01 |
| 194 | [mengchaobbbigrui/Linux-0.11code](https://github.com/mengchaobbbigrui/Linux-0.11code) | :hourglass_flowing_sand:这是Linux0.11内核源代码 | 52 | C | 10/15 |
| 195 | [jntass/TASSL-1.1.1b](https://github.com/jntass/TASSL-1.1.1b) | 支持SM2 SM3 SM4国密算法和国密openssl协议的TASSL 基于openssl-1.1.1b版本 | 51 | C | 03/16 |
| 196 | [jiejieTop/TencentOS-Demo](https://github.com/jiejieTop/TencentOS-Demo) | 这是在野火stm32f103开发板上移植的TencentOS tiny 例程,带图文教程与视频教程 | 51 | C | 10/14 |
| 197 | [Sqdwr/HideDriver](https://github.com/Sqdwr/HideDriver) | 之前那份是7600的,每次编译搞得好麻烦。更新一个VS2017可以直接编译的。 | 50 | C | 06/05 |
| 198 | [Chentingz/SnifferUI](https://github.com/Chentingz/SnifferUI) | 基于MFC和WinPcap库开发的网络抓包和协议分析软件 | 50 | C | 07/19 |
| 199 | [w1nds/dll2shellcode](https://github.com/w1nds/dll2shellcode) | dll转shellcode工具 | 49 | C | 02/20 |
| 200 | [firestaradmin/WorldEdit-No.1](https://github.com/firestaradmin/WorldEdit-No.1) | 基于STM32,极度硬核DIY蓝牙机械键盘 | 50 | C | 01/06 |
⬆ [回到目录](#目录)
<br/>
## C++
| # | Repository | Description | Stars | Language | Updated |
| ---- | ------------------------------------------------------------ | ------------------------------------------------------------ | ----- | -------- | ------- |
| 1 | [vnpy/vnpy](https://github.com/vnpy/vnpy) | 基于Python的开源量化交易平台开发框架 | 11.2k | C++ | 03/18 |
| 2 | [huihut/interview](https://github.com/huihut/interview) | 📚 C/C++ 技术面试基础知识总结,包括语言、程序库、数据结构、算法、系统、网络、链接装载库等知识及面试经验、招聘、内推等信息。 | 9.7k | C++ | 03/11 |
| 3 | [zhongyang219/TrafficMonitor](https://github.com/zhongyang219/TrafficMonitor) | 这是一个用于显示当前网速、CPU及内存利用率的桌面悬浮窗软件,并支持任务栏显示,支持更换皮肤。 | 6.8k | C++ | 03/17 |
| 4 | [me115/design_patterns](https://github.com/me115/design_patterns) | 图说设计模式 | 4.2k | C++ | 01/21 |
| 5 | [Ewenwan/MVision](https://github.com/Ewenwan/MVision) | 机器人视觉 移动机器人 VS-SLAM ORB-SLAM2 深度学习目标检测 yolov3 行为检测 opencv PCL 机器学习 无人驾驶 | 4.1k | C++ | 03/13 |
| 6 | [weolar/miniblink49](https://github.com/weolar/miniblink49) | a lighter, faster browser kernel of blink to integrate HTML UI in your app. 一个小巧、轻量的浏览器内核,用来取代wke和libcef | 3.6k | C++ | 03/13 |
| 7 | [anyRTC/anyRTC-RTMP-OpenSource](https://github.com/anyRTC/anyRTC-RTMP-OpenSource) | RTMP 推流器,RTMP(HLS)秒开播放器,跨平台(Win,IOS,Android)开源代码 | 3.4k | C++ | 02/10 |
| 8 | [wuye9036/CppTemplateTutorial](https://github.com/wuye9036/CppTemplateTutorial) | 中文的C++ Template的教学指南。与知名书籍C++ Templates不同,该系列教程将C++ Templates作为一门图灵完备的语言来讲授,以求帮助读者对Meta-Programming融会贯通。(正在施工中) | 3.3k | C++ | 01/04 |
| 9 | [zeusees/HyperLPR](https://github.com/zeusees/HyperLPR) | 基于深度学习高性能中文车牌识别 High Performance Chinese License Plate Recognition Framework. | 3.1k | C++ | 03/09 |
| 10 | [anhkgg/SuperWeChatPC](https://github.com/anhkgg/SuperWeChatPC) | 超级微信电脑客户端,支持多开、防消息撤销、语音消息备份...开放WeChatSDK | 3.0k | C++ | 02/27 |
| 11 | [ouyanghuiyu/chineseocr_lite](https://github.com/ouyanghuiyu/chineseocr_lite) | 超轻量级中文ocr,支持竖排文字识别, 支持ncnn推理 , psenet(8.5M) + crnn(6.3M) + anglenet(1.5M) 总模型仅17M | 2.9k | C++ | 03/17 |
| 12 | [TonyChen56/WeChatRobot](https://github.com/TonyChen56/WeChatRobot) | PC版微信机器人 | 2.8k | C++ | 02/18 |
| 13 | [yedf/handy](https://github.com/yedf/handy) | 简洁易用的C++11网络库 / 支持单机千万并发连接 / a simple C++11 network server framework | 2.8k | C++ | 01/07 |
| 14 | [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.3k | C++ | 03/15 |
| 15 | [liuchuo/PAT](https://github.com/liuchuo/PAT) | 🍭 浙江大学PAT题解(C/C++/Java/Python) - 努力成为萌萌的程序媛~ | 1.9k | C++ | 03/07 |
| 16 | [selfboot/CS_Offer](https://github.com/selfboot/CS_Offer) | 计算机学科基础知识和主流编程语言相关内容的总结 | 1.8k | C++ | 08/18 |
| 17 | [HuTianQi/SmartOpenCV](https://github.com/HuTianQi/SmartOpenCV) | :fire: :fire: :fire: SmartOpenCV是一个OpenCV在Android端的增强库,解决了OpenCV Android SDK在图像预览方面存在的诸多问题,且无需修改OpenCV SDK源码,与OpenCV的SDK解耦 | 1.8k | C++ | 11/26 |
| 18 | [yanyiwu/cppjieba](https://github.com/yanyiwu/cppjieba) | "结巴"中文分词的C++版本 | 1.6k | C++ | 03/11 |
| 19 | [cool2528/baiduCDP](https://github.com/cool2528/baiduCDP) | 百度网盘下载神器 | 1.5k | C++ | 01/02 |
| 20 | [balloonwj/flamingo](https://github.com/balloonwj/flamingo) | flamingo 一款高性能轻量级开源即时通讯软件 | 1.5k | C++ | 01/10 |
| 21 | [JuncoJet/unlimited-landeng-for-win](https://github.com/JuncoJet/unlimited-landeng-for-win) | 无限流量灯,你懂的,我不解释 | 1.5k | C++ | 12/19 |
| 22 | [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.4k | C++ | 03/14 |
| 23 | [Qv2ray/Qv2ray](https://github.com/Qv2ray/Qv2ray) | :star2: Linux / Windows / macOS 跨平台 V2Ray GUI :hammer: 使用 C++17 ,支持订阅,扫描二维码,支持自定义路由编辑 :star2: | 1.3k | C++ | 03/18 |
| 24 | [richardchien/coolq-http-api](https://github.com/richardchien/coolq-http-api) | 为 酷Q 提供通过 HTTP 或 WebSocket 接收事件和调用 API 的能力 | 1.2k | C++ | 03/09 |
| 25 | [Tencent/plato](https://github.com/Tencent/plato) | 腾讯高性能分布式图计算框架Plato | 1.2k | C++ | 03/04 |
| 26 | [arkingc/note](https://github.com/arkingc/note) | 学习笔记整理📚 | 1.1k | C++ | 06/19 |
| 27 | [Dev-XYS/Algorithms](https://github.com/Dev-XYS/Algorithms) | 全面的算法代码仓库 | 913 | C++ | 11/01 |
| 28 | [QuantBox/XAPI2](https://github.com/QuantBox/XAPI2) | 统一行情交易接口第2版 | 873 | C++ | 01/12 |
| 29 | [qdtroy/DuiLib_Ultimate](https://github.com/qdtroy/DuiLib_Ultimate) | duilib 旗舰版-高分屏、多语言、样式表、资源管理器、异形窗口、窗口阴影、简单动画 | 843 | C++ | 03/17 |
| 30 | [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 | 837 | C++ | 03/12 |
| 31 | [bcosorg/bcos](https://github.com/bcosorg/bcos) | BCOS平台(Be Credible, Open & Secure) | 832 | C++ | 08/14 |
| 32 | [Tencent/Pebble](https://github.com/Tencent/Pebble) | Pebble分布式开发框架 | 794 | C++ | 10/24 |
| 33 | [yanyiwu/simhash](https://github.com/yanyiwu/simhash) | 中文文档simhash值计算 | 756 | C++ | 03/11 |
| 34 | [AnkerLeng/Cpp-0-1-Resource](https://github.com/AnkerLeng/Cpp-0-1-Resource) | C++ 匠心之作 从0到1入门资料 | 748 | C++ | 10/06 |
| 35 | [fasiondog/hikyuu](https://github.com/fasiondog/hikyuu) | Hikyuu Quant Framework 基于C++/Python的开源量化交易研究框架 | 706 | C++ | 03/13 |
| 36 | [GoSSIP-SJTU/Armariris](https://github.com/GoSSIP-SJTU/Armariris) | 孤挺花(Armariris) -- 由上海交通大学密码与计算机安全实验室维护的LLVM混淆框架 | 702 | C++ | 06/03 |
| 37 | [liuyubobobo/Play-with-Algorithm-Interview](https://github.com/liuyubobobo/Play-with-Algorithm-Interview) | Codes of my MOOC Course <Play with Algorithm Interviews>. Updated contents and practices are also included. 我在慕课网上的课程《玩儿转算法面试》示例代码。课程的更多更新内容及辅助练习也将逐步添加进这个代码仓。 | 692 | C++ | 06/09 |
| 38 | [188080501/JQTools](https://github.com/188080501/JQTools) | 基于Qt开发的小工具包 | 690 | C++ | 02/28 |
| 39 | [didi/AoE](https://github.com/didi/AoE) | AoE (AI on Edge,终端智能,边缘计算) 是一个终端侧AI集成运行时环境 (IRE),帮助开发者提升效率。 | 650 | C++ | 03/17 |
| 40 | [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音乐、虾米音乐、酷我音乐、酷狗音乐、百度音乐等等) | 643 | C++ | 03/17 |
| 41 | [Light-City/CPlusPlusThings](https://github.com/Light-City/CPlusPlusThings) | C++那些事 | 615 | C++ | 03/13 |
| 42 | [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 | 562 | C++ | 03/12 |
| 43 | [Making-It/Code](https://github.com/Making-It/Code) | 面试高频算法题总结,个人博客 | 549 | C++ | 02/04 |
| 44 | [shuax/GreenChrome](https://github.com/shuax/GreenChrome) | 增强Chrome的工具 | 547 | C++ | 07/22 |
| 45 | [xiongziliang/ZLToolKit](https://github.com/xiongziliang/ZLToolKit) | 一个基于C++11的轻量级网络框架,基于线程池技术可以实现大并发网络IO | 547 | C++ | 02/21 |
| 46 | [feiyangqingyun/QWidgetDemo](https://github.com/feiyangqingyun/QWidgetDemo) | Qt编写的一些开源的demo,预计会有100多个,一直持续更新完善,代码简洁易懂注释详细,每个都是独立项目,非常适合初学者,代码随意传播使用,拒绝打赏和捐赠,欢迎留言评论! | 478 | C++ | 03/16 |
| 47 | [SOUI2/soui](https://github.com/SOUI2/soui) | SOUI是目前为数不多的轻量级可快速开发window桌面程序开源DirectUI库.其前身为Duiengine,更早期则是源自于金山卫士开源版本UI库Bkwin.经过多年持续更新方得此库 | 475 | C++ | 12/21 |
| 48 | [applenob/Cpp_Primer_Practice](https://github.com/applenob/Cpp_Primer_Practice) | 搞定C++:punch:。C++ Primer 中文版第5版学习仓库,包括笔记和课后练习答案。 | 462 | C++ | 03/16 |
| 49 | [binbibi/XTeamLView](https://github.com/binbibi/XTeamLView) | 每次启动Teamview都生成不一样的ID,让Teamview 不弹窗 疑似商业活动 | 454 | C++ | 08/13 |
| 50 | [EasyDarwin/EasyPusher](https://github.com/EasyDarwin/EasyPusher) | 免费组件:简单、高效、稳定、免费的一款标准RTSP/RTP协议直播推送库,支持将H.264/H.265/G.711/G.726/AAC等音视频数据推送到RTSP流媒体服务器(例如EasyDarwin)进行低延时直播或者视频通信,支持Windows、Linux、ARM、Android、iOS等平台,EasyPusher配套EasyDarwin流媒体服务器、EasyPlayer RTSP播放器适用于特殊行业的低延时应急指挥需求! Android迁移到了https://github.com/EasyDarwin/EasyPusher-Android , iOS迁移到了https://github.c ... | 482 | C++ | 07/01 |
| 51 | [hedada-hc/pc_wechat_hook](https://github.com/hedada-hc/pc_wechat_hook) | pc微信hook 课程例子源码 最新版pc微信hook全套课程尽在网易云课堂 搜索微信逆向即可 pcwx pcweichat 微信hook C语言开发 | 414 | C++ | 01/21 |
| 52 | [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) | 398 | C++ | 03/17 |
| 53 | [MKXJun/DirectX11-With-Windows-SDK](https://github.com/MKXJun/DirectX11-With-Windows-SDK) | 现代DX11系列教程:使用Windows SDK(C++)开发Direct3D 11.x | 388 | C++ | 02/14 |
| 54 | [callmePicacho/Data-Structres](https://github.com/callmePicacho/Data-Structres) | 浙江大学《数据结构》上课笔记 + 数据结构实现 + 课后题题解 | 388 | C++ | 02/14 |
| 55 | [liuchuo/LeetCode](https://github.com/liuchuo/LeetCode) | 🍡 LeetCode Online Judge刷题题解(Java/C++/Python/Ruby/Swift) | 375 | C++ | 11/27 |
| 56 | [toby20130333/QtQuickExample](https://github.com/toby20130333/QtQuickExample) | 基于QtQuick的入门例子,方便大家入门学习 | 371 | C++ | 06/27 |
| 57 | [itisyang/playerdemo](https://github.com/itisyang/playerdemo) | 一个视频播放器,开源版 potplayer ,用于总结播放器开发技术。 | 363 | C++ | 07/15 |
| 58 | [ylmbtm/GameProject3](https://github.com/ylmbtm/GameProject3) | 游戏服务器框架,网络层分别用SocketAPI、Boost Asio、Libuv三种方式实现, 框架内使用共享内存,无锁队列,对象池,内存池来提高服务器性能。还包含一个不断完善的Unity 3D游戏,游戏包含大量完整资源,坐骑,宠物,伙伴,装备, 这些均己实现上阵和穿戴, 并可进入副本战斗,多人玩法也己实现, 持续开发中。 | 343 | C++ | 03/05 |
| 59 | [Chuyu-Team/CPPHelper](https://github.com/Chuyu-Team/CPPHelper) | C++基础辅助类库,比如异步进行-Thread,安全句柄-CHandle,资源守卫-Guard,XML解析-rapidxml,以及其他注册表、文件基础操作。用于更加高效、安全的进行C++开发。温馨提示:至少需要支持C++0x标准的编译器。 | 341 | C++ | 12/19 |
| 60 | [yuanyuanxiang/SimpleRemoter](https://github.com/yuanyuanxiang/SimpleRemoter) | 基于gh0st的远程控制器:实现了终端管理、进程管理、窗口管理、远程桌面、文件管理、语音管理、视频管理、服务管理、注册表管理等功能,优化全部代码及整理排版,修复内存泄漏缺陷,程序运行稳定。此项目初版见:https://github.com/zibility/Remote | 333 | C++ | 03/17 |
| 61 | [tsingsee/EasyIPCamera](https://github.com/tsingsee/EasyIPCamera) | RTSP Server:free, elegant, simple, high performance RTSP Server for smart-devices/desktop-application,such as Android-Camera/Windows-Desktop-LiveStreaming/ARM-IPCamera,also can run in Windows/Linux/ARM Platform,with flexible interface,u can use lots of video & audio source,very easy to use. 精炼、高效、稳定 ... | 325 | C++ | 08/02 |
| 62 | [Yuqi-Zest/Vehicle-License-Plate-Recognition](https://github.com/Yuqi-Zest/Vehicle-License-Plate-Recognition) | 基于数字图像处理和深度学习的车牌定位,字符分割和字符识别项目,包含项目收集数据集和cnn模型,以及项目的说明资料 | 321 | C++ | 09/03 |
| 63 | [sukhoeing/aoapc-bac2nd-keys](https://github.com/sukhoeing/aoapc-bac2nd-keys) | 算法竞赛入门经典第2版-习题选解 | 318 | C++ | 10/22 |
| 64 | [yzhu798/CodingInterviewsNotes](https://github.com/yzhu798/CodingInterviewsNotes) | 涵盖C++ Primer 5th、 effective C++ 、 STL api和demos C++ 基础知识与理论、 智能指针、C++11、 Git教程 Linux命令 Unix操作系统(进程、线程、内存管理、信号)计算机网络、 数据结构(排序、查找)、数据库、、C++对象模型、 设计模式、算法(《剑指offer》、leetcode、lintcode、hihocoder、《王道程序员求职宝典》)、面试题、嵌入式相关等 | 318 | C++ | 10/17 |
| 65 | [xiufengcheng/DATASTRUCTURE](https://github.com/xiufengcheng/DATASTRUCTURE) | 数据结构 | 315 | C++ | 09/20 |
| 66 | [gloomyfish1998/opencv_tutorial](https://github.com/gloomyfish1998/opencv_tutorial) | 基于OpenCV4.0 C++/Python SDK的案例代码演示程序与效果图像 | 312 | C++ | 02/03 |
| 67 | [silence1772/GreedySnake](https://github.com/silence1772/GreedySnake) | c++经典项目贪吃蛇游戏控制台版,详细注释 | 309 | C++ | 01/06 |
| 68 | [KangLin/RabbitIm](https://github.com/KangLin/RabbitIm) | 玉兔即时通讯。开源的跨平台的的即时通信系统。包括文本、音视频、白板、远程控制 | 305 | C++ | 03/06 |
| 69 | [jing-interactive/DancingGaga](https://github.com/jing-interactive/DancingGaga) | AI 尬舞机 | 303 | C++ | 06/20 |
| 70 | [liu-jianhao/Cpp-Design-Patterns](https://github.com/liu-jianhao/Cpp-Design-Patterns) | C++设计模式 | 298 | C++ | 06/23 |
| 71 | [zhongyang219/MusicPlayer2](https://github.com/zhongyang219/MusicPlayer2) | 这是一款可以播放常见音频格式的音频播放器。支持歌词显示、歌词卡拉OK样式显示、歌词在线下载、歌词编辑、歌曲标签识别、Win10小娜搜索显示歌词、频谱分析、音效设置、任务栏缩略图按钮、主题颜色等功能。 播放内核为BASS音频库(V2.4)。 | 294 | C++ | 03/14 |
| 72 | [AZE98/CQUPT-Study-Data](https://github.com/AZE98/CQUPT-Study-Data) | 在重邮本科阶段积累的实验报告、PPT等课程资料及课外学习资料。 | 294 | C++ | 12/22 |
| 73 | [cc20110101/RedisView](https://github.com/cc20110101/RedisView) | RedisView implements open source, cross-platform and high performance Redis interface tools through self-written RESP protocol parsing, self-written tree model and thread pool. RedisView业余爱好通过自写RESP协议解析、自写树模型、线程池实现开源、跨平台、高性能Redis界面图形化工具 | 292 | C++ | 09/08 |
| 74 | [cuitaixiang/LOAM_NOTED](https://github.com/cuitaixiang/LOAM_NOTED) | loam code noted in Chinese(loam中文注解版) | 290 | C++ | 10/09 |
| 75 | [chrisguo/beijing_fushengji](https://github.com/chrisguo/beijing_fushengji) | 北京浮生记PC版源代码 | 282 | C++ | 01/11 |
| 76 | [TonyChen56/HackerTools](https://github.com/TonyChen56/HackerTools) | 使用MFC编写的病毒技术合集 | 278 | C++ | 07/27 |
| 77 | [openvanilla/McBopomofo](https://github.com/openvanilla/McBopomofo) | 小麥注音輸入法 | 273 | C++ | 03/12 |
| 78 | [qinwf/jiebaR](https://github.com/qinwf/jiebaR) | Chinese text segmentation with R. R语言中文分词 (文档已更新 🎉 :https://qinwenfeng.com/jiebaR/ ) | 272 | C++ | 12/13 |
| 79 | [solopointer/thunder-trader](https://github.com/solopointer/thunder-trader) | A industrial high-performance High Frequency Trading System by C++11, support CTP, Femas and so on. 基于C++11开发的量化交易平台,可实现CTP、飞马等平台的高频交易策略。 | 270 | C++ | 11/09 |
| 80 | [liuchuo/Lanqiao](https://github.com/liuchuo/Lanqiao) | 🍦 蓝桥杯竞赛练习题的题解(C/C++/Java)-努力成为萌萌的程序媛~ | 269 | C++ | 10/27 |
| 81 | [Captain1986/CaptainBlackboard](https://github.com/Captain1986/CaptainBlackboard) | 船长关于机器学习、计算机视觉和工程技术的总结和分享 | 268 | C++ | 01/12 |
| 82 | [codeByDog/pcWechat](https://github.com/codeByDog/pcWechat) | windows PC微信逆向 | 262 | C++ | 03/04 |
| 83 | [eecrazy/ACM](https://github.com/eecrazy/ACM) | ACM模板和一些题目的代码实现 | 259 | C++ | 06/14 |
| 84 | [HuTianQi/JNIOOR](https://github.com/HuTianQi/JNIOOR) | 基于C++模板函数与Fluent API设计的JNI反射库,极大的简化JNI反射调用,提高JNI开发效率与稳定性 | 247 | C++ | 11/12 |
| 85 | [zeusees/HyperVID](https://github.com/zeusees/HyperVID) | 开源移动端车型识别 Mobile Plateform Vehicle Identification Model | 247 | C++ | 03/03 |
| 86 | [zc8424/LazzyQuant](https://github.com/zc8424/LazzyQuant) | 期货/期权量化交易系统 | 234 | C++ | 03/11 |
| 87 | [chatopera/clause](https://github.com/chatopera/clause) | :horse_racing: Chatopera语义理解系统 | 230 | C++ | 01/02 |
| 88 | [richenyunqi/CCF-CSP-and-PAT-solution](https://github.com/richenyunqi/CCF-CSP-and-PAT-solution) | CCF CSP和PAT考试题解(使用C++11语法) | 227 | C++ | 03/16 |
| 89 | [balloonwj/TeamTalk](https://github.com/balloonwj/TeamTalk) | 这是我维护的蘑菇街TeamTalk源码,一款 | 224 | C++ | 01/10 |
| 90 | [FengGuanxi/HDU-Experience](https://github.com/FengGuanxi/HDU-Experience) | 用于向所有杭电学子分享在杭电的知识与经验 | 219 | C++ | 01/09 |
| 91 | [188080501/JQHttpServer](https://github.com/188080501/JQHttpServer) | 基于Qt开发的轻量级HTTP/HTTPS服务器 | 216 | C++ | 02/28 |
| 92 | [Samuel-0-0/phicomm_dc1-esphome](https://github.com/Samuel-0-0/phicomm_dc1-esphome) | 斐讯DC1插座自制固件方式接入开源智能家居平台 | 214 | C++ | 02/25 |
| 93 | [Greedysky/TTKWidgetTools](https://github.com/Greedysky/TTKWidgetTools) | QWidget 自定义控件集合 持续更新中...... | 213 | C++ | 02/26 |
| 94 | [Beipy/Mac-Hackintosh-Clover](https://github.com/Beipy/Mac-Hackintosh-Clover) | PC主机黑苹果引导驱动文件 | 212 | C++ | 02/24 |
| 95 | [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. | 211 | C++ | 03/17 |
| 96 | [ylcangel/crack_dexhelper](https://github.com/ylcangel/crack_dexhelper) | 梆梆企业加固详细逆向分析过程, 包含两种对该加固的脱壳机(直接解密classes0.jar和基于frida hook) | 211 | C++ | 07/25 |
| 97 | [harvestlamb/Cpp_houjie](https://github.com/harvestlamb/Cpp_houjie) | 侯捷C++课程PPT及代码 | 211 | C++ | 12/12 |
| 98 | [david-pzh/DoubiBot](https://github.com/david-pzh/DoubiBot) | 魔性机械臂小机器人 | 208 | C++ | 07/22 |
| 99 | [songbaoming/DouDiZhu](https://github.com/songbaoming/DouDiZhu) | AI斗地主游戏 | 207 | C++ | 07/30 |
| 100 | [wangzuohuai/WebRunLocal](https://github.com/wangzuohuai/WebRunLocal) | 牛插(PluginOK)中间件(原名:本网通)是一个实现网页(Web Page)与本地程序(Local Exe)之间进行双向调用的低成本、强兼容、安全可控、轻量级、易集成、可扩展的浏览器小程序框架。通过中间件可实现JavaScript脚本无障碍访问本地电脑的硬件、调用本地系统API及相关组件,可彻底解决ActiveX组件在Chrome、360、FireFox、Opera、Edge等浏览器各版本中的兼容嵌入使用问题 | 203 | C++ | 03/03 |
| 101 | [Meituan-Dianping/octo-ns](https://github.com/Meituan-Dianping/octo-ns) | OCTO-NS是美团OCTO服务治理体系服务注册发现功能的套件, 包括SDK(Java/C++)、本地服务治理代理(SgAgent), 服务缓存(NSC), 云端健康检查(Scanner)等基础组件,目前已经在全公司大规模使用 | 202 | C++ | 03/05 |
| 102 | [wlgq2/uv-cpp](https://github.com/wlgq2/uv-cpp) | libuv wrapper in C++11 /libuv C++11网络库 | 200 | C++ | 03/17 |
| 103 | [gzc426/leetcode](https://github.com/gzc426/leetcode) | 每天一道leetcode | 192 | C++ | 03/03 |
| 104 | [itas109/CSerialPort](https://github.com/itas109/CSerialPort) | 基于C++的轻量级开源跨平台串口类库Lightweight cross-platform serial port library based on C++ | 189 | C++ | 03/15 |
| 105 | [SpriteOvO/Telegram-Anti-Revoke](https://github.com/SpriteOvO/Telegram-Anti-Revoke) | Telegram anti-revoke plugin. \| Telegram 防撤回插件。 | 182 | C++ | 03/18 |
| 106 | [oceancx/YZXY](https://github.com/oceancx/YZXY) | 原罪西游(YZXY)是一款MMORPG类型的2D回合制开源游戏,采用C++/lua开发 | 179 | C++ | 03/17 |
| 107 | [Yuxin-Alpha/Notes](https://github.com/Yuxin-Alpha/Notes) | 平时工作+学习 踩坑记录 | 178 | C++ | 12/16 |
| 108 | [php-extension-research/study](https://github.com/php-extension-research/study) | 手把手教你写PHP协程扩展(teach you to write php coroutine extension by hand) | 177 | C++ | 03/05 |
| 109 | [zeusees/HyperFT](https://github.com/zeusees/HyperFT) | 开源移动端快速视频人脸跟踪-移动端150FPS+ | 174 | C++ | 03/03 |
| 110 | [jaredtao/DesignPattern](https://github.com/jaredtao/DesignPattern) | C++11全套设计模式-23种指针的用法(a full DesignPattern implement with c++11) | 174 | C++ | 01/02 |
| 111 | [zeusees/HyperLabelImg](https://github.com/zeusees/HyperLabelImg) | 开源图像标注工具(支持人脸关键点/不规则四边形/多边形标注) | 172 | C++ | 09/05 |
| 112 | [ManiiXu/VINS-Mono-Learning](https://github.com/ManiiXu/VINS-Mono-Learning) | VINS-Mono代码注释,仅供学习 | 172 | C++ | 07/16 |
| 113 | [xyzzy-022/xyzzy](https://github.com/xyzzy-022/xyzzy) | xyzzy 0.2.2 系列。有志により開発が継続中です。 | 170 | C++ | 08/14 |
| 114 | [MegrezZhu/qmcdump](https://github.com/MegrezZhu/qmcdump) | 一个简单的QQ音乐解码(qmcflac/qmc0/qmc3 转 flac/mp3),仅为个人学习参考用。 | 167 | C++ | 08/30 |
| 115 | [dlunion/CC4.0](https://github.com/dlunion/CC4.0) | Caffe for CC4.0-Windows,简单的Caffe C++接口,方便简单 | 155 | C++ | 01/15 |
| 116 | [huoji120/Antivirus_R3_bypass_demo](https://github.com/huoji120/Antivirus_R3_bypass_demo) | 分别用R3的0day与R0的0day来干掉杀毒软件 | 154 | C++ | 12/04 |
| 117 | [2013fangwentao/Multi_Sensor_Fusion](https://github.com/2013fangwentao/Multi_Sensor_Fusion) | Multi-Sensor Fusion (GNSS, IMU, Camera and so on) 多源多传感器融合定位 GPS/INS组合导航 | 152 | C++ | 03/10 |
| 118 | [esrrhs/fake](https://github.com/esrrhs/fake) | 嵌入式脚本语言 Lightweight embedded scripting language | 150 | C++ | 01/08 |
| 119 | [dekuan/VwFirewall](https://github.com/dekuan/VwFirewall) | 微盾®VirtualWall®防火墙整套源代码 | 150 | C++ | 11/14 |
| 120 | [kevinlq/LQFramKit](https://github.com/kevinlq/LQFramKit) | c++ Qt5 implementation of some control(使用C++ Qt5封装的一些控件,以便后期项目中直接使用。这些控件有些是来自于网络有些属于个人封装,代码中都有出处) | 149 | C++ | 07/13 |
| 121 | [ZhouWeikuan/DouDiZhu](https://github.com/ZhouWeikuan/DouDiZhu) | 基于权重的斗地主游戏AI算法,AI algorithms for chinese landlord card game, based on weights | 149 | C++ | 06/03 |
| 122 | [lesliefish/Qt](https://github.com/lesliefish/Qt) | Qt相关知识总结。包括Qss,数据库,Excel,Model/View等操作demo。 | 147 | C++ | 01/06 |
| 123 | [Apriluestc/2020](https://github.com/Apriluestc/2020) | 2020 😀😁😀😁😀 秋招笔试面试合集,以及2019届公司真题模拟题集 & 附上自己的后端指南,💻🎓包括(C/C++基础、数据结构、算法、操作系统💻、计算机网络、MySQL、shell(ps:sed、awk、grep)) | 147 | C++ | 10/25 |
| 124 | [xyz347/x2struct](https://github.com/xyz347/x2struct) | Convert between json string and c++ object. json字符串和c++结构体之间互相转换 | 142 | C++ | 02/11 |
| 125 | [Protostars/KikoPlay](https://github.com/Protostars/KikoPlay) | KikoPlay - A Full-Featured Danmu Player 全功能弹幕播放器 | 142 | C++ | 02/02 |