forked from GrowingGit/GitHub-Chinese-Top-Charts
-
Notifications
You must be signed in to change notification settings - Fork 8
/
README-Part2.md
1667 lines (1619 loc) · 344 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等服务协议,支持订阅, 支持二维码,剪贴板导入,手动配置,二维码分享等 | 5.3k | Swift | 12/27 |
| 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.4k | Swift | 12/14 |
| 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.8k | Swift | 01/06 |
| 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. | 1.9k | Swift | 10/29 |
| 7 | [wxxsw/SwiftTheme](https://github.com/wxxsw/SwiftTheme) | 🎨 Powerful theme/skin manager for iOS 8+ 主题/换肤, 暗色模式 | 1.8k | Swift | 12/04 |
| 8 | [Danie1s/Tiercel](https://github.com/Danie1s/Tiercel) | 简单易用、功能丰富的纯 Swift 下载框架 | 1.5k | Swift | 12/25 |
| 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分类切换滚动视图) | 945 | Swift | 12/17 |
| 12 | [dengzemiao/DZMeBookRead](https://github.com/dengzemiao/DZMeBookRead) | (支持项目使用)最完整小说阅读器Demo。(仿iReader(掌阅),QQ阅读等常用阅读器阅读页面),支持字体,翻页效果(无效果,覆盖,仿真,上下滚动),字体切换,书签功能,阅读记录,亮度调整,背景颜色切换 等等.. | 824 | Swift | 09/10 |
| 13 | [honghaoz/Ji](https://github.com/honghaoz/Ji) | Ji (戟) is an XML/HTML parser for Swift | 817 | Swift | 09/22 |
| 14 | [Harley-xk/MaLiang](https://github.com/Harley-xk/MaLiang) | iOS painting and drawing library based on Metal. 神笔马良有一支神笔(基于 Metal 的涂鸦绘图库) | 788 | Swift | 11/05 |
| 15 | [JiongXing/PhotoBrowser](https://github.com/JiongXing/PhotoBrowser) | Elegant photo browser in Swift. 图片与视频浏览器。 | 734 | Swift | 12/25 |
| 16 | [gltwy/LTScrollView](https://github.com/gltwy/LTScrollView) | ScrollView嵌套ScrolloView(UITableView 、UICollectionView)解决方案, 支持OC / Swift(持续更新中...)实现原理:http://blog.csdn.net/glt_code/article/details/78576628 | 727 | Swift | 01/03 |
| 17 | [L-Zephyr/Drafter](https://github.com/L-Zephyr/Drafter) | 在iOS项目中自动生成类图和方法调用图 - Generate call graph in iOS project | 723 | 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 | 723 | Swift | 12/25 |
| 19 | [spicyShrimp/U17](https://github.com/spicyShrimp/U17) | 精仿有妖气漫画(Swift5) | 680 | Swift | 08/20 |
| 20 | [lb2281075105/LBXMLYFM-Swift](https://github.com/lb2281075105/LBXMLYFM-Swift) | Swift5项目仿写喜马拉雅App,采用MVC+MVVM设计模式,Moya+SwiftyJSON+HandyJSON网络框架和数据解析。数据来源抓包及部分本地json文件 | 592 | Swift | 07/07 |
| 21 | [SherlockQi/HeavenMemoirs](https://github.com/SherlockQi/HeavenMemoirs) | AR相册 Photo Album For AR | 571 | Swift | 05/06 |
| 22 | [zyphs21/HSStockChart](https://github.com/zyphs21/HSStockChart) | Stock Chart include CandleStickChart,TimeLineChart. 股票走势图,包括 K 线图,分时图,手势缩放,拖动 | 545 | Swift | 10/15 |
| 23 | [LeoMobileDeveloper/PullToRefreshKit](https://github.com/LeoMobileDeveloper/PullToRefreshKit) | Pull to refresh in Swift, easy to use, easy to customize(下拉刷新/QQ/淘宝/优酷/雅虎天气/大众点评) | 493 | Swift | 07/03 |
| 24 | [ApolloZhu/Developing-iOS-10-Apps-with-Swift](https://github.com/ApolloZhu/Developing-iOS-10-Apps-with-Swift) | Stanford 公开课,Developing iOS 10 Apps with Swift 字幕翻译 | 389 | Swift | 03/10 |
| 25 | [zhiquan911/CHKLineChart](https://github.com/zhiquan911/CHKLineChart) | 纯Swift4.0代码编写的K线图表组件,支持:MA,EMA,BOLL,SAR,KDJ,MACD等技术指标显示。集成使用简单,二次开发扩展强大 | 379 | Swift | 07/16 |
| 26 | [MQZHot/ZLaunchAd](https://github.com/MQZHot/ZLaunchAd) | 快速集成启动广告,支持LaunchImage和LaunchScreen,支持GIF,支持本地图片,支持视图过渡动画 | 377 | Swift | 10/25 |
| 27 | [Danie1s/DNSPageView](https://github.com/Danie1s/DNSPageView) | 一个纯Swift的轻量级、灵活且易于使用的pageView | 349 | Swift | 12/12 |
| 28 | [LinXunFeng/LXFFM](https://github.com/LinXunFeng/LXFFM) | 高仿喜马拉雅FM | 344 | Swift | 04/14 |
| 29 | [mengxianliang/XLCardSwitch](https://github.com/mengxianliang/XLCardSwitch) | iOS 利用余弦函数特性实现可以居中放大的图片浏览工具 | 324 | Swift | 09/11 |
| 30 | [Vegetarians/Lotusoot](https://github.com/Vegetarians/Lotusoot) | 灵活的 Swift 组件解耦和通信工具 | 310 | Swift | 05/11 |
| 31 | [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,以及轮播样式 | 301 | Swift | 10/10 |
| 32 | [dudongge/DDGScreenShot](https://github.com/dudongge/DDGScreenShot) | DDGScreenShot截屏图片处理,只需一句代码,复杂屏幕截屏(如view ScrollView webView wkwebView),图片后期处理,拼图,裁剪等 | 296 | Swift | 04/26 |
| 33 | [mrriddler/MicroKernel](https://github.com/mrriddler/MicroKernel) | MicroKernel是一个客户端微内核架构 | 295 | Swift | 03/16 |
| 34 | [lixiang1994/AutoInch](https://github.com/lixiang1994/AutoInch) | 优雅的iPhone全尺寸/等比例精准适配工具 | 289 | Swift | 11/01 |
| 35 | [liuyubobobo/Play-with-Swift-2](https://github.com/liuyubobobo/Play-with-Swift-2) | The code of my MOOC Course - <Play with Swift 2>(supporting for the newest Swift 2.2). 我在慕课网上的课程《玩儿转 Swift 2》示例代码及更新(支持最新的Swift2.2)。 | 273 | Swift | 03/09 |
| 36 | [mythkiven/DiffuseMenu_Swift](https://github.com/mythkiven/DiffuseMenu_Swift) | 点击菜单弹射选项的动画效果,Swift 语言版AwesomeMenu | 265 | Swift | 07/25 |
| 37 | [mythkiven/AD_Fastlane](https://github.com/mythkiven/AD_Fastlane) | iOS App 自动化上传 AppStore ,一键部署 App。自动上传蒲公英 | 263 | Swift | 07/25 |
| 38 | [JavenZ/ZJTableViewManager](https://github.com/JavenZ/ZJTableViewManager) | 强大的数据驱动的TableView,构建复杂TableView从未如此轻松。 | 263 | Swift | 10/25 |
| 39 | [LvJianfeng/LLCycleScrollView](https://github.com/LvJianfeng/LLCycleScrollView) | Swift - 轮播图,文本轮播,支持左右箭头 | 263 | Swift | 06/17 |
| 40 | [DarielChen/iOSTips](https://github.com/DarielChen/iOSTips) | 记录iOS(Swift)开发中的一些知识点、小技巧 | 257 | Swift | 12/11 |
| 41 | [chenjie1219/cartool](https://github.com/chenjie1219/cartool) | Mac上解压Assets.car文件的小工具(支持右键解压) | 257 | Swift | 01/14 |
| 42 | [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 | 256 | Swift | 11/29 |
| 43 | [choiceyou/FWPopupView](https://github.com/choiceyou/FWPopupView) | 弹窗控件:支持AlertView、Sheet、自定义视图的PopupView。AlertView中可以嵌套自定义视图,各组件的显示隐藏可配置;Sheet仿微信样式;同时提供自定义弹出。更多配置请参考”可设置参数“,提供OC使用Demo。 | 247 | Swift | 01/06 |
| 44 | [chenjie1219/SwiftScan](https://github.com/chenjie1219/SwiftScan) | A barcode and qr code scanner( 二维码/条形码扫描、生成,仿微信、支付宝) | 240 | Swift | 04/01 |
| 45 | [zqqf16/SYM](https://github.com/zqqf16/SYM) | A crash log symbolicating Mac app \| 一个图形化的崩溃日志符号化工具 | 235 | Swift | 11/22 |
| 46 | [Xinguang/WechatKit](https://github.com/Xinguang/WechatKit) | 一款快速实现微信第三方登录的框架(Swift版) SDK 1.8.5 | 227 | Swift | 08/19 |
| 47 | [treastrain/TRETJapanNFCReader](https://github.com/treastrain/TRETJapanNFCReader) | 日本の NFC、FeliCa カード向けリーダーライブラリ(iOS 13.0 以降)Suica、PASMOなどの交通系ICカード、楽天Edy、nanaco、WAON、運転免許証の読み取り | 224 | Swift | 01/03 |
| 48 | [xjbeta/iina-plus](https://github.com/xjbeta/iina-plus) | Extra danmaku support for iina. (iina 弹幕支持 | 212 | Swift | 12/05 |
| 49 | [ZzzM/HostsToolforMac](https://github.com/ZzzM/HostsToolforMac) | HostsToolforMac是Mac平台下的一个简易工具,来获取最新的hosts更新。 | 212 | Swift | 12/31 |
| 50 | [Code-T/salon-resources](https://github.com/Code-T/salon-resources) | 你可以在这里获取相关的资料。 | 208 | Swift | 04/26 |
| 51 | [Sunnyyoung/AppleReserver](https://github.com/Sunnyyoung/AppleReserver) | Apple 官方预约监控助手 | 199 | Swift | 09/21 |
| 52 | [geek5nan/FanFanSwift](https://github.com/geek5nan/FanFanSwift) | 翻翻看 Swift 版 | 198 | Swift | 12/13 |
| 53 | [SunshineBrother/SwiftTools](https://github.com/SunshineBrother/SwiftTools) | 技术不够,努力来凑;封装不了一个伟大的开源框架,但是仍然想要有一个自己的开源项目,所以就准备把一些项目中的常用工具类给打出来,省的每一次写项目的时候都要重写一遍 | 191 | Swift | 12/19 |
| 54 | [GTMYang/GTMRefresh](https://github.com/GTMYang/GTMRefresh) | Swift实现的下拉刷新和上拉加载组件 | 184 | Swift | 01/06 |
| 55 | [lb2281075105/LBU25-Swift](https://github.com/lb2281075105/LBU25-Swift) | Swift5 精仿漫画类App,Moya+SwiftyJSON+HandyJSON网络框架和数据解析。数据来源真实接口获得 | 182 | Swift | 12/18 |
| 56 | [imeiju/iMeiJu_Mac](https://github.com/imeiju/iMeiJu_Mac) | 爱美剧Mac客户端 | 181 | Swift | 04/15 |
| 57 | [andyRon/swift-algorithm-club-cn](https://github.com/andyRon/swift-algorithm-club-cn) | swift-algorithm-club的翻译。使用Swift学习算法和数据结构。 | 180 | Swift | 09/26 |
| 58 | [pujiaxin33/JXTheme](https://github.com/pujiaxin33/JXTheme) | A powerful and lightweight and customization theme/skin library for iOS 9+ in swift. 主题、换肤、暗黑模式 | 169 | Swift | 11/22 |
| 59 | [iosyaowei/JSONConverter](https://github.com/iosyaowei/JSONConverter) | JSONConverter可以快速的把json数据转换生成OC/Swift/Flutter的属性,省去手动创建的麻烦,大大提高iOSer的开发效率 | 166 | Swift | 12/02 |
| 60 | [Noah37/zhuishushenqi](https://github.com/Noah37/zhuishushenqi) | 追书神器Swift版客户端(非官方) | 156 | Swift | 01/06 |
| 61 | [wangrui460/WRCycleScrollView](https://github.com/wangrui460/WRCycleScrollView) | Swift 自动无限轮播用这个就够了 swift 4 | 151 | Swift | 01/25 |
| 62 | [Alexiuce/macOS-dev-basic-](https://github.com/Alexiuce/macOS-dev-basic-) | Mac osx 开发基础视频项目工程 | 148 | Swift | 04/30 |
| 63 | [Coder-TanJX/JXBanner](https://github.com/Coder-TanJX/JXBanner) | 🚀🚀🚀 A super - custom multifunctional framework for banner unlimited rollover diagrams [一个超自定义多功能无限轮播图框架] | 142 | Swift | 11/16 |
| 64 | [zlyBear/BearFree](https://github.com/zlyBear/BearFree) | iOS NetworkExtension ShadowSocket for iOS developer (swift 5) 支持系统小组件开关SS | 137 | Swift | 05/22 |
| 65 | [manondidi/swiftArch](https://github.com/manondidi/swiftArch) | swift开发脚手架 | 126 | Swift | 12/28 |
| 66 | [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第三方客户端)的用户反馈信息 | 125 | Swift | 12/10 |
| 67 | [Light413/dctt](https://github.com/Light413/dctt) | xx头条【完整项目持续迭代中】(一款本地生活信息发布APP,分享新鲜事、找人找对象等生活服务)。已App Store上架,这里仅供学习交流 | 125 | Swift | 10/08 |
| 68 | [Dzhijian/DouYuLive](https://github.com/Dzhijian/DouYuLive) | 仿斗鱼直播-Swift4.0,不断更新中。。。 | 124 | Swift | 01/12 |
| 69 | [Darren-chenchen/CLImagePickerTool](https://github.com/Darren-chenchen/CLImagePickerTool) | 这是一个多图片选择的控件 | 123 | Swift | 11/08 |
| 70 | [pujiaxin33/JXPatternLock](https://github.com/pujiaxin33/JXPatternLock) | An easy-to-use, powerful, customizable pattern lock view in swift. 图形解锁/手势解锁 / 手势密码 / 图案密码 / 九宫格密码 | 121 | Swift | 11/26 |
| 71 | [huangboju/GesturePassword](https://github.com/huangboju/GesturePassword) | GesturePassword 是一个Swift的手势密码库 | 120 | Swift | 01/05 |
| 72 | [cwwise/CWWeChat](https://github.com/cwwise/CWWeChat) | swift仿写WeChat | 119 | Swift | 03/09 |
| 73 | [CoderLinLee/LLSegmentViewController](https://github.com/CoderLinLee/LLSegmentViewController) | 可添加header的多控制器列表,主流APP分类切换滚动视图(京东,网易新闻,爱奇艺,QQ弹性小球等,可高度自定义,项目结构清晰);UIScrollView 嵌套,可做个人详情页,商品详情页,页面多tableView滑动悬停 | 118 | Swift | 08/05 |
| 74 | [AbuIOSDeveloper/Mac-Kline](https://github.com/AbuIOSDeveloper/Mac-Kline) | Swift 仿futu牛牛Mac版K线 | 118 | Swift | 01/07 |
| 75 | [yourtion/YXWaveView](https://github.com/yourtion/YXWaveView) | A water wave animation view (类似百度外卖的头像波浪效果) | 114 | Swift | 12/12 |
| 76 | [937447974/YJCocoa](https://github.com/937447974/YJCocoa) | YJ 系列 Pod 开源库 | 112 | Swift | 01/05 |
| 77 | [jasnig/UsefulPickerView](https://github.com/jasnig/UsefulPickerView) | 可以简单快速实现点击TextField或者按钮弹出单列, 多列, 多列关联,城市选择, 日期选择的pickerView | 112 | Swift | 11/14 |
| 78 | [Tuluobo/Leiter](https://github.com/Tuluobo/Leiter) | 一个基于 NEKit 的网络 Proxy App。 | 112 | Swift | 06/22 |
| 79 | [we11cheng/WCPotatso](https://github.com/we11cheng/WCPotatso) | iOS Potatso源码(配置下自己的开发证书就能编译版本) | 108 | Swift | 04/17 |
| 80 | [Habit21D/SwiftHttpRequest](https://github.com/Habit21D/SwiftHttpRequest) | Swift5.0:基于Alamofire的网络封装及基于Codable的model解析 | 105 | Swift | 09/17 |
| 81 | [fengmingdev/SwiftWkWebView](https://github.com/fengmingdev/SwiftWkWebView) | Swift4.0 WkWebView 支持SB/XIB拖拽的 WkWebView | 104 | Swift | 07/11 |
| 82 | [heyode/HEPhotoPicker](https://github.com/heyode/HEPhotoPicker) | 自由定制支持视频,图片的相册选择器 | 102 | Swift | 11/12 |
| 83 | [ethanhuang13/blahker](https://github.com/ethanhuang13/blahker) | 巴拉剋 - Safari 蓋版廣告消除器 | 101 | Swift | 12/17 |
| 84 | [CNKCQ/DigitalKeyboard](https://github.com/CNKCQ/DigitalKeyboard) | 手动实现简单的身份证数字键盘 | 100 | Swift | 01/05 |
| 85 | [Coder-TanJX/JXPageControl](https://github.com/Coder-TanJX/JXPageControl) | 🚀🚀🚀 自定义pageControl, 支持多种动画, 自定义布局. | 96 | Swift | 07/22 |
| 86 | [tysqapp/tysq-ios](https://github.com/tysqapp/tysq-ios) | 天宇社区客户端APP开源 | 94 | Swift | 01/06 |
| 87 | [Darren-chenchen/IDealist](https://github.com/Darren-chenchen/IDealist) | IOS常用框架集合,避免重复造轮子 | 87 | Swift | 11/18 |
| 88 | [WangWenzhuang/ZKProgressHUD](https://github.com/WangWenzhuang/ZKProgressHUD) | iOS App 上极易于使用的 HUD | 86 | Swift | 06/18 |
| 89 | [choiceyou/FWSideMenu](https://github.com/choiceyou/FWSideMenu) | 侧滑控件:支持左、右滑动的侧滑菜单,可配置单侧滑动,同时可配置菜单宽度等,更多配置请参考”可设置参数“。参考了QQ用户体验:支持边缘侧滑,解决手势冲突问题(边缘范围可设置)。提供OC使用Demo。 | 85 | Swift | 11/19 |
| 90 | [pujiaxin33/JXPopupView](https://github.com/pujiaxin33/JXPopupView) | 一个轻量级的自定义视图弹出框架 | 84 | Swift | 06/19 |
| 91 | [pujiaxin33/JXScratchView](https://github.com/pujiaxin33/JXScratchView) | 一个万能的刮刮乐控件。无论是UILabel、UIImageView,还是自定义视图,只要是UIView都可以用来刮。代码简单,功能强大,你值得拥有! | 84 | Swift | 11/26 |
| 92 | [choiceyou/FWSegmentedControl](https://github.com/choiceyou/FWSegmentedControl) | 分段控件:支持纯文字、纯图片、文字图片混排等方式的Segment,文字、图片排布顺序可选,同时有多重可选下标,更多配置请参考”可设置参数“。提供OC使用Demo。 | 83 | Swift | 10/28 |
| 93 | [MoyaMapper/MoyaMapper](https://github.com/MoyaMapper/MoyaMapper) | 快速解析模型工具,支持RxSwift。同时支持缓存功能 【相关手册 https://MoyaMapper.github.io 】 | 79 | Swift | 07/06 |
| 94 | [FighterLightning/ZHFAlertView](https://github.com/FighterLightning/ZHFAlertView) | SWift 自定义AlertView,自定义提示框,自定义弹窗,弹窗,AlertView,提示框,侧滑框 思路。 | 79 | Swift | 05/08 |
| 95 | [Binlogo/iOS-Practice-Checklist](https://github.com/Binlogo/iOS-Practice-Checklist) | iOS 实践检查清单 | 78 | Swift | 10/13 |
| 96 | [SilongLi/GuidePageView](https://github.com/SilongLi/GuidePageView) | 引导页,支持播放gif/png/jpg等类型的资源数组(Swift4.2),简书:https://www.jianshu.com/p/afde7b6abf68 | 78 | Swift | 04/07 |
| 97 | [TifaTsubasa/TTReflect](https://github.com/TifaTsubasa/TTReflect) | Swift Json-Model automatic mapping Swift版JsonModel自动映射 | 76 | Swift | 02/14 |
| 98 | [parkingwang/vehicle-keyboard-ios](https://github.com/parkingwang/vehicle-keyboard-ios) | 停车王车牌号码专用键盘 - iOS | 72 | Swift | 11/27 |
| 99 | [ljchen1129/SecondsOpenH5](https://github.com/ljchen1129/SecondsOpenH5) | 秒开 H5 页面优化 | 72 | Swift | 10/17 |
| 100 | [chenjie1219/ProcessDemo](https://github.com/chenjie1219/ProcessDemo) | 一个简单的克隆Git仓库的工程来熟悉NSOpenPanel和Process的使用 | 71 | Swift | 01/29 |
| 101 | [youmyc/PageDemo](https://github.com/youmyc/PageDemo) | 仿今日头条顶部分页效果 | 71 | Swift | 01/18 |
| 102 | [wxxsw/SwiftUI-WeChat](https://github.com/wxxsw/SwiftUI-WeChat) | 🇨🇳 Learn how to make WeChat with SwiftUI. 微信 7.0 🟢 | 70 | Swift | 01/05 |
| 103 | [miliPolo/SwiftUI_Jike](https://github.com/miliPolo/SwiftUI_Jike) | 用SwiftUI仿即刻App界面(Build Jike App UI with SwiftUI) | 69 | Swift | 06/18 |
| 104 | [chenjie1219/StarRate](https://github.com/chenjie1219/StarRate) | swift电商五星评价,星星评分控件,支持自定义数量、拖拽、间隔、设置最小星星数等操作 | 68 | Swift | 04/19 |
| 105 | [liucaide/CaamDau](https://github.com/liucaide/CaamDau) | iOS Swift 通用业务组件库 & Cocoa便利性扩展。Form流式模型化UI排版、Timer计时管理、AppDelegate解耦方案、HUD提示窗、Page分页导航、Indexes侧边索引、TopBar自定义导航栏、InputBox输入框扩展、Router组件化路由协议、IconFont阿里矢量图标管理、MJRefresh扩展、Alamofire扩展;附.功能组件、组件化示例、第三方库示例 | 68 | Swift | 01/02 |
| 106 | [anonymity-du/ThreeStage-PanGesture](https://github.com/anonymity-du/ThreeStage-PanGesture) | 常规的三段式拖拽手势动画,主要用于部分视图从底部拖拽到屏幕中央,再到屏幕顶部等场景。Conventional three-stage drag gesture animation is mainly used to drag the view from the bottom to the center of the screen, and then to the top of the screen and other scenes. | 68 | Swift | 04/11 |
| 107 | [windstormeye/SwiftGame](https://github.com/windstormeye/SwiftGame) | 我的小专栏《Swift 游戏开发》代码集合 | 66 | Swift | 01/06 |
| 108 | [15617665365/Look](https://github.com/15617665365/Look) | 仿看了吗 | 66 | Swift | 08/18 |
| 109 | [Liaoworking/MoyaNetworkTool](https://github.com/Liaoworking/MoyaNetworkTool) | a robust networkTool based on Moya. Moya Demo 一个强健的基于moya二次封装的网络框架 | 65 | Swift | 11/24 |
| 110 | [XanderXu/3D-iOS-Games-by-Tutorials-code](https://github.com/XanderXu/3D-iOS-Games-by-Tutorials-code) | <<3D iOS Games by Tutorials>>的配套代码 | 64 | Swift | 05/04 |
| 111 | [iCell/Mozi](https://github.com/iCell/Mozi) | Mozi(墨子) - Image compression extension for iOS, swift version of Luban(鲁班) | 64 | Swift | 01/16 |
| 112 | [Harley-xk/Chrysan](https://github.com/Harley-xk/Chrysan) | Chrysan 是一个简单易用的 HUD 库,使用 iOS 自带的 UIBlurEffect 毛玻璃特效,支持自定义动画。 | 63 | Swift | 07/23 |
| 113 | [LinXunFeng/LXFProtocolTool](https://github.com/LinXunFeng/LXFProtocolTool) | 由swift中协议方式实现功能的实用工具库【Refreshable、EmptyDataSetable 支持 Rx 】 | 62 | Swift | 08/16 |
| 114 | [maltsugar/RollingNotice-Swift](https://github.com/maltsugar/RollingNotice-Swift) | 滚动公告、广告,支持灵活自定义cell。淘宝、口碑、京东、美团、天猫等等一切滚动广告 Roll Notice or Advertising, customize cell as UITableViewCell supported, Swift version is also ready | 61 | Swift | 10/24 |
| 115 | [ashen-zhao/baisiapp](https://github.com/ashen-zhao/baisiapp) | 模仿百思不得姐App,视频,音乐,图片,自定义文本高度,不定期更新 | 60 | Swift | 10/18 |
| 116 | [lixiang1994/VideoTransitionDemo](https://github.com/lixiang1994/VideoTransitionDemo) | 视频过渡效果演示 | 60 | Swift | 05/24 |
| 117 | [qyfeng009/QTimePicker](https://github.com/qyfeng009/QTimePicker) | 日期选择器 | 60 | Swift | 05/28 |
| 118 | [Sepicat/Straycat](https://github.com/Sepicat/Straycat) | Sepicat Data Parser - 获取到更多的 GitHub 信息 | 58 | Swift | 10/12 |
| 119 | [lixiang1994/AttributedString](https://github.com/lixiang1994/AttributedString) | 基于Swift插值方式优雅的构建富文本 | 58 | Swift | 11/21 |
| 120 | [zhongjianfeipqy/VerificationCode](https://github.com/zhongjianfeipqy/VerificationCode) | 自定义多位验证码 | 56 | Swift | 07/25 |
| 121 | [ming1016/MethodTraceAnalyze](https://github.com/ming1016/MethodTraceAnalyze) | 方法耗时分析 | 56 | Swift | 01/05 |
| 122 | [trilliwon/JNaturalKorean](https://github.com/trilliwon/JNaturalKorean) | 한글 (조사, 助詞, postposition) | 56 | Swift | 12/26 |
| 123 | [mengzhihun6/JGTaoMall](https://github.com/mengzhihun6/JGTaoMall) | 注:外接的N手项目,仅开源供大家学习使用,禁止从事商业活动,如出现一切法律问题自行承担!!! | 55 | Swift | 09/30 |
| 124 | [Jvaeyhcd/HcdSpecialField](https://github.com/Jvaeyhcd/HcdSpecialField) | A special field like mobike input bike number field.仿摩拜单车手动输入单车编号控件. | 54 | Swift | 03/23 |
| 125 | [SeongBrave/Twilight](https://github.com/SeongBrave/Twilight) | 模块化主工程 | 54 | Swift | 04/14 |
| 126 | [fumiyasac/handMadeCalendarAdvance](https://github.com/fumiyasac/handMadeCalendarAdvance) | [ING]Swift版の日本の祝祭日判定コードとカレンダーサンプル(iOS Sample Study: Swift) | 54 | Swift | 06/26 |
| 127 | [HanQiGod/DYLive](https://github.com/HanQiGod/DYLive) | 🔥🔥🔥实战仿斗鱼TV(Swift版) - 帮助学习Swift基础语法 | 52 | Swift | 04/29 |
| 128 | [choiceyou/FWCycleScrollView](https://github.com/choiceyou/FWCycleScrollView) | 轮播控件:支持本地图片、网络图片、自定义视图,轮播分页控件有多重可选方案,轮播次数、间隔时间也可设置,更多配置请参考”可设置参数“。提供OC使用Demo。 | 52 | Swift | 10/30 |
| 129 | [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速度最快的自动布局开源库,强悍的动态布局约束处理能力 | 52 | Swift | 11/19 |
| 130 | [zhaofucheng1129/DouyinSwift](https://github.com/zhaofucheng1129/DouyinSwift) | 基于Swift5+Moya+RxSwift仿抖音App | 51 | Swift | 06/08 |
| 131 | [WangLiquan/EWAddressPicker-Swift](https://github.com/WangLiquan/EWAddressPicker-Swift) | A custom addressPicker.Swift.地址选择器,选择省市地区. | 50 | Swift | 07/11 |
| 132 | [lidong1665/Swift-BLE](https://github.com/lidong1665/Swift-BLE) | 本项目是通过Swift语言来实现IOS中蓝牙4.0的开发 | 49 | Swift | 09/06 |
| 133 | [GesanTung/iFanfou](https://github.com/GesanTung/iFanfou) | swift 版 iOS 饭否客户端 | 48 | Swift | 02/11 |
| 134 | [HJTXX/XXPerformanceMonitor](https://github.com/HJTXX/XXPerformanceMonitor) | Swift版轻量卡顿监控工具,支持主线程和子线程,一句代码即可轻松集成。 | 48 | Swift | 12/13 |
| 135 | [CaiWanFeng/iOS_Storage](https://github.com/CaiWanFeng/iOS_Storage) | 收纳的艺术 | 47 | Swift | 12/18 |
| 136 | [iOSPrincekin/PrincekinKlineFrame](https://github.com/iOSPrincekin/PrincekinKlineFrame) | 一款用Swift开发的K线图和深度图组件,具有轻量、敏捷等特点,可供虚拟货币行业和金融行业使用 | 47 | Swift | 12/29 |
| 137 | [Hurdery/App-Store](https://github.com/Hurdery/App-Store) | 仿App-Store 基本框架 | 47 | Swift | 12/11 |
| 138 | [SilongLi/AdvertisementView](https://github.com/SilongLi/AdvertisementView) | 一行代码搞定APP启动广告页,支持播放Gif和图片(Swift4.2)。简书:https://www.jianshu.com/p/f1a8b2409a84 | 45 | Swift | 03/21 |
| 139 | [hxwxww/HXSuspendViewManager](https://github.com/hxwxww/HXSuspendViewManager) | iOS仿微信的悬浮窗,自定义转场动画,使用超级简单 | 45 | Swift | 01/02 |
| 140 | [TonyReet/AutoSQLite.swift](https://github.com/TonyReet/AutoSQLite.swift) | SQLite.swift的封装,Model直接存储.获取. 无需再转换,增删改查. 脱离sql语句 | 45 | Swift | 08/01 |
| 141 | [Allen0828/AEAlertView](https://github.com/Allen0828/AEAlertView) | Custom AlertView supports multiple modes 自定义AlertView 支持多种模式弹窗 | 44 | Swift | 12/19 |
| 142 | [wxxsw/GSCaptchaButton](https://github.com/wxxsw/GSCaptchaButton) | 为普通按钮增加验证码倒计时功能,不影响按钮样式 | 44 | Swift | 08/29 |
| 143 | [hxwxww/HXNavigationController](https://github.com/hxwxww/HXNavigationController) | 仿微信导航栏平滑过渡 | 43 | Swift | 05/13 |
| 144 | [xidian-rs/Ruisi_Ios](https://github.com/xidian-rs/Ruisi_Ios) | 西电睿思手机客户端[iOS]适用于discuz论坛 | 42 | Swift | 12/28 |
| 145 | [enums/Pjango](https://github.com/enums/Pjango) | 一款基于Swift 3.x的服务端框架,使用MVC设计你的服务端软件。 | 42 | Swift | 12/02 |
| 146 | [sulioppa/ChineseChess](https://github.com/sulioppa/ChineseChess) | Chinese Chess(中国象棋) - A Free iOS App(C & Obj-C & Swift) | 41 | Swift | 08/23 |
| 147 | [enums/Calatrava](https://github.com/enums/Calatrava) | 基于 Pjango 的开源博客。 | 41 | Swift | 07/05 |
| 148 | [gl-lei/algorithm](https://github.com/gl-lei/algorithm) | 数据结构与算法之美代码 , 原始代码 https://github.com/wangzheng0822/algo | 41 | Swift | 06/10 |
| 149 | [FighterLightning/ZHFJDAddress](https://github.com/FighterLightning/ZHFJDAddress) | Swift 仿京东地址选择器,京东地址选择器(网络,本地数据。三级、四级、保证成功集成) | 40 | Swift | 08/24 |
| 150 | [XanderXu/ARStack](https://github.com/XanderXu/ARStack) | 3步制作AR版堆方块游戏make ARStack in 3 steps | 40 | Swift | 08/09 |
| 151 | [Insfgg99x/FGVideoEditor](https://github.com/Insfgg99x/FGVideoEditor) | swif版微信视屏裁剪,类似微信朋友圈视频裁剪方式的视频裁剪工具(video croping) | 40 | Swift | 02/14 |
| 152 | [HuaZao/TC1-NG](https://github.com/HuaZao/TC1-NG) | 斐讯TC1 DC1 A1 M1 iOS客户端 | 39 | Swift | 12/20 |
| 153 | [shinnytech/shinny-futures-ios](https://github.com/shinnytech/shinny-futures-ios) | 一个开源的 ios 平台期货行情交易终端 | 39 | Swift | 06/25 |
| 154 | [TangledHusky/SwiftPopMenu](https://github.com/TangledHusky/SwiftPopMenu) | swift语言实现的一款菜单弹出工具,适用于任何位置。 | 39 | Swift | 09/23 |
| 155 | [blurryssky/10000ui](https://github.com/blurryssky/10000ui) | 一些有意思的UI,大部分是swift写的 | 39 | Swift | 05/31 |
| 156 | [hite/YanxuanHD](https://github.com/hite/YanxuanHD) | 用 SwiftUI 实现的严选 HD | 38 | Swift | 08/04 |
| 157 | [TestEngineerFish/LoginSliderView](https://github.com/TestEngineerFish/LoginSliderView) | 滑动图形行为验证码 | 36 | Swift | 12/05 |
| 158 | [mancongiOS/MCPageViewController](https://github.com/mancongiOS/MCPageViewController) | 切换滚动视图,MCPageViewController, UIPageViewController | 36 | Swift | 10/10 |
| 159 | [RayJiang16/XYColor](https://github.com/RayJiang16/XYColor) | An easy way to adapter dark mode on CALayer. iOS 快速适配夜间模式 | 36 | Swift | 11/22 |
| 160 | [fengzhihao123/FZHKit](https://github.com/fengzhihao123/FZHKit) | iOS 常用的知识点总结 | 35 | Swift | 08/29 |
| 161 | [HsiangHo/Kaka](https://github.com/HsiangHo/Kaka) | 去掉了瑞星无用的杀毒和防火墙功能,只保留小狮子。Kaka for macOS | 34 | Swift | 01/05 |
| 162 | [GitHubZebra/JCyclePictureView](https://github.com/GitHubZebra/JCyclePictureView) | 用 UICollectionView 写的无限滚动轮播图,支持自定义 cell、滚动方向等。 | 34 | Swift | 02/13 |
| 163 | [RainManGO/ZYimagePickerPodDemo](https://github.com/RainManGO/ZYimagePickerPodDemo) | 微信选择图片 微信照片选择器 微信照片浏览 | 32 | Swift | 03/12 |
| 164 | [Pircate/AlipayHomePageDemo](https://github.com/Pircate/AlipayHomePageDemo) | 仿支付宝首页 | 31 | Swift | 11/18 |
| 165 | [kinsunlu/KSMediaPicker](https://github.com/kinsunlu/KSMediaPicker) | KSMediaPicker小红书,Instagram的媒体选取器 | 31 | Swift | 06/05 |
| 166 | [zonble/MRTSwift](https://github.com/zonble/MRTSwift) | iOS 台北捷運轉乘計算工具 | 31 | Swift | 06/14 |
| 167 | [gaoyanbin1314/GYPhotoAlbum](https://github.com/gaoyanbin1314/GYPhotoAlbum) | 打开相册的工具,通过获取相册数据,自定义相册的展示,类似朋友圈 | 30 | Swift | 07/09 |
| 168 | [gaoyanbin1314/GYPetalAnimation](https://github.com/gaoyanbin1314/GYPetalAnimation) | 使用CAKeyframeAnimation 实现花瓣特效 | 29 | Swift | 07/04 |
| 169 | [chquanquan/AreaPickerView](https://github.com/chquanquan/AreaPickerView) | areapicker in china, easy to use. 中国的地区选择器.简单易用. | 29 | Swift | 10/14 |
| 170 | [SherlockQi/HKTabBar_QQ](https://github.com/SherlockQi/HKTabBar_QQ) | 仿QQtabbar | 28 | Swift | 03/11 |
| 171 | [fengzhihao123/UI-Swift](https://github.com/fengzhihao123/UI-Swift) | swift搭建UI | 28 | Swift | 06/11 |
| 172 | [Boxzhi/HZNavigationBar](https://github.com/Boxzhi/HZNavigationBar) | A very simple to use, can be completely customized navigation bar. 一款使用非常简单,可以完全自定义的导航栏。 | 28 | Swift | 12/18 |
| 173 | [WangLiquan/EWDatePicker](https://github.com/WangLiquan/EWDatePicker) | A custom datePicker.基于ViewController的从下方弹出日期选择器 | 28 | Swift | 07/11 |
| 174 | [InsectQY/GamerSky](https://github.com/InsectQY/GamerSky) | 高仿游民星空 App | 27 | Swift | 10/28 |
| 175 | [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 | 27 | Swift | 06/25 |
| 176 | [William-Weng/Swift-4](https://github.com/William-Weng/Swift-4) | 一些Swift4的小小心得 | 27 | Swift | 03/26 |
| 177 | [LwqDeveloper/DLMusicWaveView](https://github.com/LwqDeveloper/DLMusicWaveView) | 仿抖音/音乐片段截取显示/可拖动 | 26 | Swift | 08/22 |
| 178 | [wubianxiaoxian/Algorithm-swift](https://github.com/wubianxiaoxian/Algorithm-swift) | 记录一下,算法学习 | 26 | Swift | 08/26 |
| 179 | [hjcapple/LayoutKit](https://github.com/hjcapple/LayoutKit) | 使用 swift 编写的 view 布局库 | 26 | Swift | 04/02 |
| 180 | [loveway/MarqueeLabel](https://github.com/loveway/MarqueeLabel) | 一个用swift封装的跑马灯效果 | 26 | Swift | 08/05 |
| 181 | [Alexiuce/macOStudy](https://github.com/Alexiuce/macOStudy) | MacOS 进阶课程项目 | 26 | Swift | 03/15 |
| 182 | [pcjbird/fbCharm](https://github.com/pcjbird/fbCharm) | iOS 上利用 fallback 机制为不同语言的文字 (script) 设定字体,从而使得文本混排更为优雅。 | 25 | Swift | 01/06 |
| 183 | [omochi/SwiftTypeInferenceHandsOn](https://github.com/omochi/SwiftTypeInferenceHandsOn) | Swiftc合宿 2019/09/28 | 25 | Swift | 10/17 |
| 184 | [tuxi/alpface](https://github.com/tuxi/alpface) | 学习抖音的iOS项目 | 25 | Swift | 08/19 |
| 185 | [ios-zhouyu/ZYCycleViewSwift](https://github.com/ios-zhouyu/ZYCycleViewSwift) | ZYCycleViewSwift版轮播图 | 24 | Swift | 09/25 |
| 186 | [shevakuilin/SKArchCutter-Swift](https://github.com/shevakuilin/SKArchCutter-Swift) | SKArchCutter-Swift是一个基于 Swift 的可自选切割角的圆角切割工具,同时支持UIView、UIImageView、UIButton和UILabel的单角切圆/选角拱形切圆/全角切圆,并且避免了UIImageView使用系统圆角所导致的离屏渲染的问题,以及确保layer对象的masksToBounds属性始终为NO,从而使得项目中大量使用圆角时的性能得到很大程度的优化, 最重要的是使用简单、方便。 | 24 | Swift | 01/31 |
| 187 | [GWesley/GWNewFile](https://github.com/GWesley/GWNewFile) | A Finder extention for add new file on Mac OS X (Finder新建文件扩展) | 24 | Swift | 03/24 |
| 188 | [821385843/MGJRouter_Swift](https://github.com/821385843/MGJRouter_Swift) | MGJRouter_Swift 是蘑菇街 MGJRouter 的 Swift 版,完全实现 MGJRouter 所有功能。 | 24 | Swift | 06/18 |
| 189 | [GTMYang/GTMBarcodeScanner](https://github.com/GTMYang/GTMBarcodeScanner) | Swift 实现的条码扫描组件库 | 23 | Swift | 05/20 |
| 190 | [JumeiRdGroup/JMRouter](https://github.com/JumeiRdGroup/JMRouter) | 一个轻量级,纯Swift,协议化的路由控件 | 23 | Swift | 04/30 |
| 191 | [nick6969/AutoLayout](https://github.com/nick6969/AutoLayout) | 便利的 Extension | 23 | Swift | 09/22 |
| 192 | [yinjining/StarRateView](https://github.com/yinjining/StarRateView) | swift五星评分,星星评分控件,支持自定义数量、拖拽、0.1颗星等多种操作 | 21 | Swift | 10/25 |
| 193 | [Weang/WLVideo](https://github.com/Weang/WLVideo) | 仿照微信拍照拍视频的功能 | 21 | Swift | 01/07 |
| 194 | [josercc/iPATools](https://github.com/josercc/iPATools) | 用于检索本地的数据来发布Plist到Github本地文件安装 利用Github的HTTPS实现ATO的安装方式 本地地址安装 安装便捷 | 21 | Swift | 09/05 |
| 195 | [wh8817221/CoreML](https://github.com/wh8817221/CoreML) | 机器学习仿微信实现二维码扫描放大功能(CoreML) | 21 | Swift | 08/20 |
| 196 | [1c7/CrashCourse-iOS-App](https://github.com/1c7/CrashCourse-iOS-App) | iOS App - 速成课:Crash Course 中文字幕视频【无法过审】 | 21 | Swift | 05/01 |
| 197 | [coinx123/coinx-ios](https://github.com/coinx123/coinx-ios) | 虚拟货币交易平台聚合APP coinx IOS端. bitmex,OKEX,huobi | 21 | Swift | 01/28 |
| 198 | [JasonWu1111/FaceAgingDemo](https://github.com/JasonWu1111/FaceAgingDemo) | 自己实现的一个人脸变老的方案,项目代码和算法相关均由 Swift 实现 | 20 | Swift | 06/12 |
| 199 | [SunshineBrother/LeetCodeStudy](https://github.com/SunshineBrother/LeetCodeStudy) | 算法学习 | 20 | Swift | 12/06 |
| 200 | [dudongge/DDGDataCache_Swift](https://github.com/dudongge/DDGDataCache_Swift) | 一句代码就可为你的数据添加一级和二级目录缓存,支持单独删除指定文件下的文件 | 20 | Swift | 04/26 |
⬆ [回到目录](#目录)
<br/>
## Jupyter Notebook
| # | Repository | Description | Stars | Language | Updated |
| ---- | ------------------------------------------------------------ | ------------------------------------------------------------ | ----- | ---------------- | ------- |
| 1 | [jackfrued/Python-100-Days](https://github.com/jackfrued/Python-100-Days) | Python - 100天从新手到大师 | 75.2k | Jupyter Notebook | 01/07 |
| 2 | [MLEveryday/100-Days-Of-ML-Code](https://github.com/MLEveryday/100-Days-Of-ML-Code) | 100-Days-Of-ML-Code中文版 | 14.9k | Jupyter Notebook | 08/22 |
| 3 | [zergtant/pytorch-handbook](https://github.com/zergtant/pytorch-handbook) | pytorch handbook是一本开源的书籍,目标是帮助那些希望和使用PyTorch进行深度学习开发和研究的朋友快速入门,其中包含的Pytorch教程全部通过测试保证可以成功运行 | 9.9k | Jupyter Notebook | 12/15 |
| 4 | [ShusenTang/Dive-into-DL-PyTorch](https://github.com/ShusenTang/Dive-into-DL-PyTorch) | 本项目将《动手学深度学习》(Dive into Deep Learning)原书中的MXNet实现改为PyTorch实现。 | 6.7k | Jupyter Notebook | 01/02 |
| 5 | [lijin-THU/notes-python](https://github.com/lijin-THU/notes-python) | 中文 Python 笔记 | 5.4k | Jupyter Notebook | 11/29 |
| 6 | [apachecn/Interview](https://github.com/apachecn/Interview) | Interview = 简历指南 + LeetCode + Kaggle | 5.1k | Jupyter Notebook | 12/13 |
| 7 | [xianhu/LearnPython](https://github.com/xianhu/LearnPython) | 以撸代码的形式学习Python | 4.5k | Jupyter Notebook | 12/03 |
| 8 | [czy36mengfei/tensorflow2_tutorials_chinese](https://github.com/czy36mengfei/tensorflow2_tutorials_chinese) | tensorflow2中文教程,持续更新(当前版本:tensorflow2.0),tag: tensorflow 2.0 tutorials | 4.4k | Jupyter Notebook | 10/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.2k | Jupyter Notebook | 12/24 |
| 10 | [xitu/tensorflow-docs](https://github.com/xitu/tensorflow-docs) | TensorFlow 最新官方文档中文版 | 3.6k | Jupyter Notebook | 04/17 |
| 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.6k | Jupyter Notebook | 12/24 |
| 12 | [NLP-LOVE/ML-NLP](https://github.com/NLP-LOVE/ML-NLP) | 此项目是机器学习(Machine Learning)、深度学习(Deep Learning)、NLP面试中常考到的知识点和代码实现,也是作为一个算法工程师必会的理论基础知识。 | 3.4k | Jupyter Notebook | 11/17 |
| 13 | [Alfred1984/interesting-python](https://github.com/Alfred1984/interesting-python) | 有趣的Python爬虫和Python数据分析小项目(Some interesting Python crawlers and data analysis projects) | 2.8k | Jupyter Notebook | 12/30 |
| 14 | [fengdu78/Data-Science-Notes](https://github.com/fengdu78/Data-Science-Notes) | 数据科学的笔记以及资料搜集 | 2.3k | Jupyter Notebook | 01/06 |
| 15 | [Mikoto10032/DeepLearning](https://github.com/Mikoto10032/DeepLearning) | 深度学习入门教程&&优秀文章&&Deep Learning Tutorial | 2.2k | Jupyter Notebook | 12/05 |
| 16 | [SophonPlus/ChineseNlpCorpus](https://github.com/SophonPlus/ChineseNlpCorpus) | 搜集、整理、发布 中文 自然语言处理 语料/数据集,与 有志之士 共同 促进 中文 自然语言处理 的 发展。 | 1.9k | Jupyter Notebook | 01/29 |
| 17 | [snowkylin/tensorflow-handbook](https://github.com/snowkylin/tensorflow-handbook) | 简单粗暴 TensorFlow 2.0 \| A Concise Handbook of TensorFlow 2.0 | 1.8k | Jupyter Notebook | 11/15 |
| 18 | [TrickyGo/Dive-into-DL-TensorFlow2.0](https://github.com/TrickyGo/Dive-into-DL-TensorFlow2.0) | 本项目将《动手学深度学习》(Dive into Deep Learning)原书中的MXNet实现改为TensorFlow 2.0实现,项目已得到李沐老师的同意 | 1.6k | Jupyter Notebook | 01/06 |
| 19 | [girls-in-ai/Girls-In-AI](https://github.com/girls-in-ai/Girls-In-AI) | 免费学代码系列:小白python入门、数据分析data analyst、机器学习machine learning、深度学习deep learning、kaggle实战 | 1.6k | Jupyter Notebook | 07/05 |
| 20 | [ypwhs/captcha_break](https://github.com/ypwhs/captcha_break) | 验证码识别 | 1.5k | Jupyter Notebook | 12/19 |
| 21 | [MLEveryday/practicalAI-cn](https://github.com/MLEveryday/practicalAI-cn) | AI实战-practicalAI 中文版 | 1.0k | Jupyter Notebook | 05/03 |
| 22 | [fengdu78/machine_learning_beginner](https://github.com/fengdu78/machine_learning_beginner) | 机器学习初学者公众号作品 | 997 | Jupyter Notebook | 01/02 |
| 23 | [MachineLP/Tensorflow-](https://github.com/MachineLP/Tensorflow-) | Tensorflow实战学习笔记、代码、机器学习进阶系列 | 961 | Jupyter Notebook | 05/10 |
| 24 | [hangsz/pandas-tutorial](https://github.com/hangsz/pandas-tutorial) | 适合初级到中级晋升者,有了体系之后就看熟练度了。 | 961 | Jupyter Notebook | 12/07 |
| 25 | [Rockyzsu/stock](https://github.com/Rockyzsu/stock) | 30天掌握量化交易 (持续更新) | 899 | Jupyter Notebook | 12/06 |
| 26 | [amusi/TensorFlow-From-Zero-To-One](https://github.com/amusi/TensorFlow-From-Zero-To-One) | TensorFlow 最佳学习资源大全(含课程、书籍、博客、公开课等内容) | 845 | Jupyter Notebook | 12/18 |
| 27 | [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 入门机器学习》示例代码。课程的更多更新内容及辅助练习也将逐步添加进这个代码仓。 | 749 | Jupyter Notebook | 11/09 |
| 28 | [bighuang624/Andrew-Ng-Deep-Learning-notes](https://github.com/bighuang624/Andrew-Ng-Deep-Learning-notes) | 吴恩达《深度学习》系列课程笔记及代码 | 680 | Jupyter Notebook | 09/20 |
| 29 | [chengstone/movie_recommender](https://github.com/chengstone/movie_recommender) | MovieLens based recommender system.使用MovieLens数据集训练的电影推荐系统。 | 674 | Jupyter Notebook | 03/31 |
| 30 | [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 篇 \| 行业应用 & 课程笔记 | 632 | Jupyter Notebook | 01/06 |
| 31 | [996refuse/zheye](https://github.com/996refuse/zheye) | 者也 - 知乎 倒立的文字 汉字验证码识别程序 | 632 | Jupyter Notebook | 12/17 |
| 32 | [maplezzz/NTU_ML2017_Hung-yi-Lee_HW](https://github.com/maplezzz/NTU_ML2017_Hung-yi-Lee_HW) | NTU ML2017 Spring and Fall Homework Hung-yi_Li 李宏毅老师 机器学习课程作业 | 606 | Jupyter Notebook | 03/15 |
| 33 | [Doraemonzzz/Learning-from-data](https://github.com/Doraemonzzz/Learning-from-data) | 记录Learning from data一书中的习题解答 | 593 | Jupyter Notebook | 05/15 |
| 34 | [huaweicloud/ModelArts-Lab](https://github.com/huaweicloud/ModelArts-Lab) | ModelArts开发者交流互动平台,@ModelArts服务官网:https://www.huaweicloud.com/product/modelarts.html | 562 | Jupyter Notebook | 01/06 |
| 35 | [datawhalechina/competition-baseline](https://github.com/datawhalechina/competition-baseline) | 数据科学竞赛各种baseline代码、思路分享 | 509 | Jupyter Notebook | 01/05 |
| 36 | [Honlan/fullstack-data-engineer](https://github.com/Honlan/fullstack-data-engineer) | 全栈数据工程师养成攻略 | 495 | Jupyter Notebook | 03/05 |
| 37 | [chenghuige/wenzheng](https://github.com/chenghuige/wenzheng) | ai challenger 2018细粒度情感分类第一名解决方案,统一使用tensorflow和pytorch的一个框架 | 490 | Jupyter Notebook | 08/07 |
| 38 | [cedricporter/funcat](https://github.com/cedricporter/funcat) | Funcat 将同花顺、通达信、文华财经麦语言等的公式写法移植到了 Python 中。 | 469 | Jupyter Notebook | 08/04 |
| 39 | [xiaomaxiao/keras_ocr](https://github.com/xiaomaxiao/keras_ocr) | 用keras实现OCR定位、识别 | 431 | Jupyter Notebook | 04/21 |
| 40 | [chocoluffy/deep-recommender-system](https://github.com/chocoluffy/deep-recommender-system) | 深度学习在推荐系统中的应用及论文小结。 | 426 | Jupyter Notebook | 06/14 |
| 41 | [Wasim37/deeplearning-assignment](https://github.com/Wasim37/deeplearning-assignment) | 吴恩达-深度学习-课后作业-答案与总结 | 405 | Jupyter Notebook | 05/11 |
| 42 | [dafish-ai/NTU-Machine-learning](https://github.com/dafish-ai/NTU-Machine-learning) | 台湾大学李宏毅老师机器学习 | 388 | Jupyter Notebook | 07/15 |
| 43 | [LinXueyuanStdio/PythonDataMining](https://github.com/LinXueyuanStdio/PythonDataMining) | :notebook_with_decorative_cover: 在学院的书架上发现了一本不带脑子就能看懂的书《Python数据挖掘与实战》 | 372 | Jupyter Notebook | 09/06 |
| 44 | [juwikuang/china_job_survey](https://github.com/juwikuang/china_job_survey) | stats of Chinese developers. 统计中国程序员的就业情况 | 329 | Jupyter Notebook | 10/18 |
| 45 | [yenlung/Python-3-Data-Analysis-Basics](https://github.com/yenlung/Python-3-Data-Analysis-Basics) | Python 3 與數據分析概要 | 311 | Jupyter Notebook | 10/19 |
| 46 | [Parker-Lyu/TensorFLow-Learning](https://github.com/Parker-Lyu/TensorFLow-Learning) | B站上炼数成金的公开课笔记 | 296 | Jupyter Notebook | 08/24 |
| 47 | [htygithub/machine-learning-python](https://github.com/htygithub/machine-learning-python) | 機器學習: Python | 285 | Jupyter Notebook | 02/01 |
| 48 | [finlay-liu/kaggle_public](https://github.com/finlay-liu/kaggle_public) | 阿水的数据竞赛开源分支 | 283 | Jupyter Notebook | 12/03 |
| 49 | [chengstone/kaggle_criteo_ctr_challenge-](https://github.com/chengstone/kaggle_criteo_ctr_challenge-) | This is a kaggle challenge project called Display Advertising Challenge by CriteoLabs at 2014.这是2014年由CriteoLabs在kaggle上发起的广告点击率预估挑战项目。 | 282 | Jupyter Notebook | 03/31 |
| 50 | [aespresso/a_journey_into_math_of_ml](https://github.com/aespresso/a_journey_into_math_of_ml) | 汉语自然语言处理视频教程-开源学习资料 | 282 | Jupyter Notebook | 09/29 |
| 51 | [MrLevo520/Mini-Python-Project](https://github.com/MrLevo520/Mini-Python-Project) | 用Python做些有趣的项目 | 281 | Jupyter Notebook | 03/01 |
| 52 | [wikke/Tianchi-Medical-LungTumorDetect](https://github.com/wikke/Tianchi-Medical-LungTumorDetect) | 天池医疗AI大赛[第一季]:肺部结节智能诊断 UNet/VGG/Inception/ResNet/DenseNet | 265 | Jupyter Notebook | 05/11 |
| 53 | [coldlarry/YOLOv3-complete-pruning](https://github.com/coldlarry/YOLOv3-complete-pruning) | 提供对YOLOv3及Tiny的多种剪枝版本,以适应不同的需求。 | 264 | Jupyter Notebook | 12/26 |
| 54 | [shibing624/python-tutorial](https://github.com/shibing624/python-tutorial) | python教程,包括:python基础、python进阶;常用机器学习库:numpy、scipy、sklearn、xgboost;深度学习库:keras、tensorflow、paddle、pytorch。 | 262 | Jupyter Notebook | 12/19 |
| 55 | [derekhe/mobike-crawler](https://github.com/derekhe/mobike-crawler) | 摩拜单车爬虫 | 261 | Jupyter Notebook | 04/22 |
| 56 | [huaxz1986/git_book](https://github.com/huaxz1986/git_book) | 教材对应的源码 | 259 | Jupyter Notebook | 01/25 |
| 57 | [geektutu/interview-questions](https://github.com/geektutu/interview-questions) | 机器学习深度学习面试题笔试题(Machine learning Deep Learning Interview Questions) | 253 | Jupyter Notebook | 08/06 |
| 58 | [neolee/pilot](https://github.com/neolee/pilot) | 进入编程世界的第一课 | 248 | Jupyter Notebook | 12/27 |
| 59 | [iphysresearch/TOP250movie_douban](https://github.com/iphysresearch/TOP250movie_douban) | TOP250豆瓣电影短评:Scrapy 爬虫+数据清理/分析+构建中文文本情感分析模型 | 243 | Jupyter Notebook | 04/12 |
| 60 | [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代码实现, ... | 234 | Jupyter Notebook | 07/02 |
| 61 | [Magic-Bubble/Zhihu](https://github.com/Magic-Bubble/Zhihu) | 知乎看山杯 第二名 解决方案 | 234 | Jupyter Notebook | 01/18 |
| 62 | [DesertsX/gulius-projects](https://github.com/DesertsX/gulius-projects) | 收录古柳(DesertsX)的一些小项目 | 216 | Jupyter Notebook | 06/17 |
| 63 | [AlbertHG/Coursera-Deep-Learning-deeplearning.ai](https://github.com/AlbertHG/Coursera-Deep-Learning-deeplearning.ai) | (完结)网易云课堂微专业《深度学习工程师》听课笔记,编程作业和课后练习 | 211 | Jupyter Notebook | 01/21 |
| 64 | [zjunlp/deepke](https://github.com/zjunlp/deepke) | 基于深度学习的开源中文关系抽取框架 | 211 | Jupyter Notebook | 12/07 |
| 65 | [GreedyAIAcademy/Machine-Learning](https://github.com/GreedyAIAcademy/Machine-Learning) | 讲解常见的机器学习算法 | 205 | Jupyter Notebook | 08/19 |
| 66 | [Doraemonzzz/ML-Foundation-and-ML-Techniques](https://github.com/Doraemonzzz/ML-Foundation-and-ML-Techniques) | 台大机器学习课程作业详解 | 202 | Jupyter Notebook | 05/20 |
| 67 | [chengstone/LotteryPredict](https://github.com/chengstone/LotteryPredict) | TensorFlow实战,使用LSTM预测彩票 | 198 | Jupyter Notebook | 06/11 |
| 68 | [yizt/numpy_neural_network](https://github.com/yizt/numpy_neural_network) | 仅使用numpy从头开始实现神经网络,包括反向传播公式推导过程; numpy构建全连接层、卷积层、池化层、Flatten层;以及图像分类案例及精调网络案例等,持续更新中... ... | 193 | Jupyter Notebook | 11/21 |
| 69 | [LianHaiMiao/pytorch-lesson-zh](https://github.com/LianHaiMiao/pytorch-lesson-zh) | pytorch 包教不包会 | 189 | Jupyter Notebook | 04/26 |
| 70 | [aespresso/chinese_sentiment](https://github.com/aespresso/chinese_sentiment) | 用tensorflow进行中文自然语言处理的情感分析 | 187 | Jupyter Notebook | 06/10 |
| 71 | [datawhalechina/team-learning](https://github.com/datawhalechina/team-learning) | Datawhale组队学习计划与课程内容 | 183 | Jupyter Notebook | 01/07 |
| 72 | [YutaroOgawa/pytorch_advanced](https://github.com/YutaroOgawa/pytorch_advanced) | 書籍「つくりながら学ぶ! PyTorchによる発展ディープラーニング」の実装コードを配置したリポジトリです | 178 | Jupyter Notebook | 12/07 |
| 73 | [HadXu/ML-From-Scratch](https://github.com/HadXu/ML-From-Scratch) | 机器学习算法 基于西瓜书以及《统计学习方法》,当然包括DL。 | 178 | Jupyter Notebook | 08/17 |
| 74 | [cloga/scipy-lecture-notes_cn](https://github.com/cloga/scipy-lecture-notes_cn) | Pytho科学计算生态介绍的中文翻译,英文原文地址: | 168 | Jupyter Notebook | 01/26 |
| 75 | [19920625lsg/algorithms](https://github.com/19920625lsg/algorithms) | 慕课网刘宇波老师所有的算法视频教程在学习时自己的代码记录+加一些其他的算法书籍和课程的学习 | 168 | Jupyter Notebook | 01/05 |
| 76 | [AllanYiin/DeepBelief_Course4_Examples](https://github.com/AllanYiin/DeepBelief_Course4_Examples) | 深度學習課程(第四梯)所設計的課程實作 | 167 | Jupyter Notebook | 08/02 |
| 77 | [applenob/rl_learn](https://github.com/applenob/rl_learn) | 我的强化学习笔记和学习材料:book: still updating ... ... | 167 | Jupyter Notebook | 06/09 |
| 78 | [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为核心的电影推荐系统). | 166 | Jupyter Notebook | 10/10 |
| 79 | [makcyun/web_scraping_with_python](https://github.com/makcyun/web_scraping_with_python) | Python 入门爬虫和数据分析实战 | 157 | Jupyter Notebook | 09/01 |
| 80 | [monpa-team/monpa](https://github.com/monpa-team/monpa) | MONPA 罔拍是一個提供正體中文斷詞、詞性標註以及命名實體辨識的多任務模型 | 156 | Jupyter Notebook | 09/19 |
| 81 | [zpw1995/aotodata](https://github.com/zpw1995/aotodata) | 朱小五写文章涉及到的数据分析,爬虫,源数据 | 154 | Jupyter Notebook | 12/10 |
| 82 | [nlpjoe/daguan-classify-2018](https://github.com/nlpjoe/daguan-classify-2018) | 2018达观杯长文本分类智能处理挑战赛 18解决方案 | 152 | Jupyter Notebook | 06/10 |
| 83 | [LinXueyuanStdio/LaTeX_OCR_PRO](https://github.com/LinXueyuanStdio/LaTeX_OCR_PRO) | :art: 数学公式识别增强版:中英文手写印刷公式、支持初级符号推导(数据结构基于 LaTeX 抽象语法树) | 149 | Jupyter Notebook | 12/17 |
| 84 | [fly51fly/Principle-of-Web-Search](https://github.com/fly51fly/Principle-of-Web-Search) | 北京邮电大学“网络搜索原理”课程资料(2019) | 149 | Jupyter Notebook | 12/18 |
| 85 | [HuangCongQing/MachineLearning_Ng](https://github.com/HuangCongQing/MachineLearning_Ng) | 吴恩达机器学习coursera课程,学习代码(2017年秋) The Stanford Coursera course on MachineLearning with Andrew Ng | 143 | Jupyter Notebook | 10/07 |
| 86 | [HuangCongQing/deeplearning.ai-note](https://github.com/HuangCongQing/deeplearning.ai-note) | 网易云课堂终于官方发布了吴恩达经过授权的汉化课程-“”深度学习专项课程“”,这是自己做的一些笔记以及代码。下为网易云学习链接 | 143 | Jupyter Notebook | 10/12 |
| 87 | [bobo0810/AnnotatedNetworkModelGit](https://github.com/bobo0810/AnnotatedNetworkModelGit) | 加注释的网络模型(便于理解) | 141 | Jupyter Notebook | 12/19 |
| 88 | [nladuo/THSTrader](https://github.com/nladuo/THSTrader) | 量化交易。最新版通用版同花顺客户端的python API。(Python3) | 139 | Jupyter Notebook | 03/14 |
| 89 | [nlpjoe/CCF-BDCI-Automotive-Field-ASC-2018](https://github.com/nlpjoe/CCF-BDCI-Automotive-Field-ASC-2018) | CCF-BDCI 2018年汽车行业用户观点主题及情感识别挑战赛 第6名解决方案 | 132 | Jupyter Notebook | 01/08 |
| 90 | [bupticybee/icyChessZero](https://github.com/bupticybee/icyChessZero) | 中国象棋alpha zero程序 | 129 | Jupyter Notebook | 01/02 |
| 91 | [kuhung/SSD_keras](https://github.com/kuhung/SSD_keras) | 简明 SSD 目标检测模型 keras version(交通标志识别 训练部分见 dev 分支) | 125 | Jupyter Notebook | 01/23 |
| 92 | [beader/ruijin_round2](https://github.com/beader/ruijin_round2) | 瑞金医院MMC人工智能辅助构建知识图谱大赛复赛 | 124 | Jupyter Notebook | 05/15 |
| 93 | [beader/tianchi_nl2sql](https://github.com/beader/tianchi_nl2sql) | 追一科技首届中文NL2SQL挑战赛决赛第3名方案+代码 | 121 | Jupyter Notebook | 11/22 |
| 94 | [LemenChao/PythonFromDAToDS](https://github.com/LemenChao/PythonFromDAToDS) | 图书《Python编程:从数据分析到数据科学》的配套资源 | 120 | Jupyter Notebook | 01/01 |
| 95 | [anch3or/Notes-on-Statistical-Learning-Methods](https://github.com/anch3or/Notes-on-Statistical-Learning-Methods) | 李航《统计学习方法》中机器学习模型的LaTeX公式笔记 | 120 | Jupyter Notebook | 02/05 |
| 96 | [CrazyXiao/machine-learning](https://github.com/CrazyXiao/machine-learning) | python,机器学习笔记,machine learning,nlp | 120 | Jupyter Notebook | 09/02 |
| 97 | [fire717/Machine-Learning](https://github.com/fire717/Machine-Learning) | 机器学习&深度学习资料笔记&基本算法实现&资源整理 / Everything about Machine Learning & Deep Learning | 118 | Jupyter Notebook | 12/30 |
| 98 | [LinXueyuanStdio/LaTeX_OCR](https://github.com/LinXueyuanStdio/LaTeX_OCR) | :gem: 数学公式识别 | 112 | Jupyter Notebook | 12/17 |
| 99 | [zwq2018/AI_UAV](https://github.com/zwq2018/AI_UAV) | 在人工智能、机器视觉、高精度导航定位和多传感器融合等技术的助推下,众多行业迎来了前所未有的发展机遇,人工智能+无人机(AI+UAV)正是一个具有无限想象力的应用方向。 | 108 | Jupyter Notebook | 12/17 |
| 100 | [loveunk/machine-learning-deep-learning-notes](https://github.com/loveunk/machine-learning-deep-learning-notes) | 机器学习、深度学习的学习路径及知识总结 | 106 | Jupyter Notebook | 11/24 |
| 101 | [fenglei110/Data-analysis](https://github.com/fenglei110/Data-analysis) | 主要是爬虫与数据分析项目总结,外加建模与机器学习,模型的评估。 | 105 | Jupyter Notebook | 03/02 |
| 102 | [zake7749/Gossiping-Chinese-Corpus](https://github.com/zake7749/Gossiping-Chinese-Corpus) | PTT 八卦版問答中文語料 | 103 | Jupyter Notebook | 09/10 |
| 103 | [zhpmatrix/BERTem](https://github.com/zhpmatrix/BERTem) | 论文实现(ACL2019):《Matching the Blanks: Distributional Similarity for Relation Learning》 | 99 | Jupyter Notebook | 08/05 |
| 104 | [qulacs/quantum-native-dojo](https://github.com/qulacs/quantum-native-dojo) | 量子コンピュータ初学者のための自習教材 | 98 | Jupyter Notebook | 12/10 |
| 105 | [AceCoooool/MLF-MLT](https://github.com/AceCoooool/MLF-MLT) | :books: 机器学习基石和机器学习技法作业 | 97 | Jupyter Notebook | 02/26 |
| 106 | [allenlu2008/PythonDemo](https://github.com/allenlu2008/PythonDemo) | 虾神的Python示例代码库 | 92 | Jupyter Notebook | 12/25 |
| 107 | [ShusenTang/BDC2019](https://github.com/ShusenTang/BDC2019) | 2019中国高校计算机大赛——大数据挑战赛 第三名解决方案 | 90 | Jupyter Notebook | 10/22 |
| 108 | [lsh1994/tianchiorgame](https://github.com/lsh1994/tianchiorgame) | 天池比赛,kaggle等等(Keras/PyTorch实战) | 88 | Jupyter Notebook | 10/23 |
| 109 | [tsycnh/Keras-Tutorials](https://github.com/tsycnh/Keras-Tutorials) | 一个面向初学者的,友好的Keras入门教程 | 88 | Jupyter Notebook | 08/04 |
| 110 | [YutaroOgawa/Deep-Reinforcement-Learning-Book](https://github.com/YutaroOgawa/Deep-Reinforcement-Learning-Book) | 書籍「つくりながら学ぶ!深層強化学習」のサポートリポジトリです | 88 | Jupyter Notebook | 03/24 |
| 111 | [bat67/Deep-Learning-with-PyTorch-A-60-Minute-Blitz-cn](https://github.com/bat67/Deep-Learning-with-PyTorch-A-60-Minute-Blitz-cn) | PyTorch1.0 深度学习:60分钟入门与实战(Deep Learning with PyTorch: A 60 Minute Blitz 中文翻译与学习) | 86 | Jupyter Notebook | 03/11 |
| 112 | [HumanomeLab/mlcourse](https://github.com/HumanomeLab/mlcourse) | 生命情報の機械学習入門(新学術領域「先進ゲノム支援」中級講習会資料) | 85 | Jupyter Notebook | 05/10 |
| 113 | [beader/ruijin_round1](https://github.com/beader/ruijin_round1) | 瑞金医院MMC人工智能辅助构建知识图谱大赛初赛 | 85 | Jupyter Notebook | 05/28 |
| 114 | [yenlung/Deep-Learning-MOOC](https://github.com/yenlung/Deep-Learning-MOOC) | 這是我在政治大學開設 Deep Learning MOOC 教學的相關檔案。 | 82 | Jupyter Notebook | 05/14 |
| 115 | [panluoluo/crawler-analysis](https://github.com/panluoluo/crawler-analysis) | 爬虫+数据分析实战项目 | 81 | Jupyter Notebook | 03/04 |
| 116 | [audier/my_deep_project](https://github.com/audier/my_deep_project) | 个人深度学习项目整理 | 80 | Jupyter Notebook | 01/10 |
| 117 | [ztz818/Automatic-generation-of-text-summaries](https://github.com/ztz818/Automatic-generation-of-text-summaries) | 使用两种方法(抽取式Textrank和概要式seq2seq)自动提取文本摘要 | 79 | Jupyter Notebook | 07/16 |
| 118 | [chargemyself/selfteaching-book-_python](https://github.com/chargemyself/selfteaching-book-_python) | 基于李笑来的那本自学是一门手艺的书,然后里面有自己修改的痕迹,以及更多的资料。 | 78 | Jupyter Notebook | 08/01 |
| 119 | [FontTian/hyperopt-doc-zh](https://github.com/FontTian/hyperopt-doc-zh) | Github开源项目hyperopt系列的中文文档,以及学习教程等 | 78 | Jupyter Notebook | 05/28 |
| 120 | [zhuanxuhit/nd101](https://github.com/zhuanxuhit/nd101) | 记录自己深度学习之路的点滴 | 78 | Jupyter Notebook | 04/03 |
| 121 | [Relph1119/StatisticalLearningMethod-Camp](https://github.com/Relph1119/StatisticalLearningMethod-Camp) | 统计学习方法训练营课程作业及答案 | 78 | Jupyter Notebook | 11/18 |
| 122 | [LiuChuang0059/100days-ML-code](https://github.com/LiuChuang0059/100days-ML-code) | 100天机器学习 (翻译+ 实操) | 76 | Jupyter Notebook | 10/04 |
| 123 | [atnlp/torchtext-summary](https://github.com/atnlp/torchtext-summary) | torchtext使用总结,从零开始逐步实现了torchtext文本预处理过程,包括截断补长,词表构建,使用预训练词向量,构建可用于PyTorch的可迭代数据等步骤。并结合Pytorch实现LSTM. | 75 | Jupyter Notebook | 05/25 |
| 124 | [czczup/UrbanRegionFunctionClassification](https://github.com/czczup/UrbanRegionFunctionClassification) | 第五届百度西安交大大数据竞赛 城市区域功能分类 Baseline | 74 | Jupyter Notebook | 05/05 |
| 125 | [wangvenn/Credit-Scoring-Regression](https://github.com/wangvenn/Credit-Scoring-Regression) | 消费者人群画像—信用智能评分比赛开源 | 73 | Jupyter Notebook | 02/02 |
| 126 | [Mryangkaitong/python-Machine-learning](https://github.com/Mryangkaitong/python-Machine-learning) | 机器学习算法项目 | 72 | Jupyter Notebook | 11/12 |
| 127 | [YJango/Tensorflow-eager-execution](https://github.com/YJango/Tensorflow-eager-execution) | 使用 tensorflow eager execution 的机器学习全新教程 | 70 | Jupyter Notebook | 03/23 |
| 128 | [Questions1/Rong360_2nd](https://github.com/Questions1/Rong360_2nd) | 第三届融360天机智能金融算法挑战赛-第二题:特征挖掘 | 70 | Jupyter Notebook | 04/03 |
| 129 | [dsh0416/quantum-i-ching](https://github.com/dsh0416/quantum-i-ching) | A Quantum 爻 System Implementation for Divination | 69 | Jupyter Notebook | 11/12 |
| 130 | [cxy229/BDCI2019-SENTIMENT-CLASSIFICATION](https://github.com/cxy229/BDCI2019-SENTIMENT-CLASSIFICATION) | CCF BDCI 2019 互联网新闻情感分析 复赛top1解决方案 | 68 | Jupyter Notebook | 12/24 |
| 131 | [xuwening/blog](https://github.com/xuwening/blog) | 对过往做做总结 | 68 | Jupyter Notebook | 12/13 |
| 132 | [ShawnyXiao/2018-Kaggle-AdTrackingFraud](https://github.com/ShawnyXiao/2018-Kaggle-AdTrackingFraud) | 2018 - Kaggle - TalkingData AdTracking Fraud Detection Challenge: Silver medal (银牌) | 67 | Jupyter Notebook | 01/12 |
| 133 | [ami66/ChineseTextClassifier](https://github.com/ami66/ChineseTextClassifier) | 中文商品评论短文本分类器,可用于情感分析 | 66 | Jupyter Notebook | 06/09 |
| 134 | [scrapingdance/DSpider](https://github.com/scrapingdance/DSpider) | DSpider = Daily Spider 一直更新平时外包爬虫项目,欢迎Star | 66 | Jupyter Notebook | 12/23 |
| 135 | [airxiechao/simple-car-plate-recognition](https://github.com/airxiechao/simple-car-plate-recognition) | 简单车牌识别-Mask_RCNN定位车牌+手写方法分割字符+CNN单个字符识别 | 66 | Jupyter Notebook | 06/26 |
| 136 | [songlei1994/ccks2018](https://github.com/songlei1994/ccks2018) | CCKS 2018 开放领域的中文问答任务 1st 解决方案 | 64 | Jupyter Notebook | 05/26 |
| 137 | [linxid/Competition](https://github.com/linxid/Competition) | 参加过的比赛记录,包括代码和经验和其他文件 | 63 | Jupyter Notebook | 03/20 |
| 138 | [geektutu/tensorflow2-docs-zh](https://github.com/geektutu/tensorflow2-docs-zh) | TF2.0 / TensorFlow 2.0 / TensorFlow2.0 官方文档中文版 | 63 | Jupyter Notebook | 08/08 |
| 139 | [peaceiris/emoji-ime-dictionary](https://github.com/peaceiris/emoji-ime-dictionary) | 日本語で絵文字入力をするための IME 追加辞書 📙 Google 日本語入力などで日本語から絵文字への変換を可能にする IME 拡張辞書です | 63 | Jupyter Notebook | 12/05 |
| 140 | [LYuhang/GNN_Review](https://github.com/LYuhang/GNN_Review) | GNN综述阅读报告 | 62 | Jupyter Notebook | 09/03 |
| 141 | [mantchs/machine_learning_model](https://github.com/mantchs/machine_learning_model) | 机器学习基本模型算法介绍(附加案例) | 61 | Jupyter Notebook | 05/09 |
| 142 | [PhilosopherZ/Meteorological-Books](https://github.com/PhilosopherZ/Meteorological-Books) | 气象相关书籍合集(持续更新) | 61 | Jupyter Notebook | 11/07 |
| 143 | [sailist/ASRFrame](https://github.com/sailist/ASRFrame) | An Automatic Speech Recognition Frame ,一个中文语音识别的完整框架, 提供了多个模型 | 61 | Jupyter Notebook | 10/25 |
| 144 | [duoergun0729/adversarial_examples](https://github.com/duoergun0729/adversarial_examples) | 对抗样本 | 58 | Jupyter Notebook | 12/17 |
| 145 | [searobbersduck/CustomerServiceAI](https://github.com/searobbersduck/CustomerServiceAI) | 智能客服 | 58 | Jupyter Notebook | 07/03 |
| 146 | [LemenChao/Introduction-to-Data-Science](https://github.com/LemenChao/Introduction-to-Data-Science) | 本Repository为中国人民大学朝乐门老师开源课程——《数据科学导论》 | 57 | Jupyter Notebook | 04/18 |
| 147 | [blmoistawinde/hello_world](https://github.com/blmoistawinde/hello_world) | 博客文章开源代码分享区 | 57 | Jupyter Notebook | 02/23 |
| 148 | [yenlung/nccu-jupyter-math](https://github.com/yenlung/nccu-jupyter-math) | 這是政治大學應用數學系《數學軟體應用》課程的上課筆記。主要介紹 Python 程式語言, 目標是用 Python 做數據分析。 | 55 | Jupyter Notebook | 12/20 |
| 149 | [lightfate/XueLang-YOLOhasst](https://github.com/lightfate/XueLang-YOLOhasst) | 雪浪制造AI挑战赛—视觉计算辅助良品检测 test_a 952 test_b 953 | 55 | Jupyter Notebook | 06/16 |
| 150 | [yenlung/AI_Math](https://github.com/yenlung/AI_Math) | Python 數據分析與人工智慧課程網頁 | 55 | Jupyter Notebook | 10/01 |
| 151 | [ShusenTang/Deep-Learning-with-PyTorch-Chinese](https://github.com/ShusenTang/Deep-Learning-with-PyTorch-Chinese) | 本仓库将PyTorch官方书籍《Deep learning with PyTorch》(基本摘录版)翻译成中文版并给出可运行的相关代码。 | 55 | Jupyter Notebook | 01/04 |
| 152 | [CUHKSZ-TQL/WeiboSpider_SentimentAnalysis](https://github.com/CUHKSZ-TQL/WeiboSpider_SentimentAnalysis) | 借助Python抓取微博数据,并对抓取的数据进行情绪分析 | 55 | Jupyter Notebook | 10/31 |
| 153 | [Rockyzsu/red_bag](https://github.com/Rockyzsu/red_bag) | 淘宝领喵币/雪球红包/苏宁易购/京东/淘宝自动签到 领取金币 | 51 | Jupyter Notebook | 11/04 |
| 154 | [Hellcatzm/TransforLearning_TensorFlow](https://github.com/Hellcatzm/TransforLearning_TensorFlow) | 使用预训练好的InceptionV3模型对自己的数据进行分类,用这个代码的同学希望可以给一个star | 51 | Jupyter Notebook | 01/24 |
| 155 | [shiyanlou/louplus-ml](https://github.com/shiyanlou/louplus-ml) | 实验楼 《楼+ 机器学习实战》课程挑战作业参考答案 https://www.shiyanlou.com/louplus/ml | 50 | Jupyter Notebook | 07/22 |
| 156 | [fenghaotong/MachineLearning](https://github.com/fenghaotong/MachineLearning) | 机器学习有关算法和实例 | 49 | Jupyter Notebook | 11/11 |
| 157 | [srtianxia/BDC2019_Top2](https://github.com/srtianxia/BDC2019_Top2) | 2019中国高校大数据挑战赛-第二名解决方案 | 48 | Jupyter Notebook | 09/30 |
| 158 | [cantjie/XJTU-Share](https://github.com/cantjie/XJTU-Share) | 西安交通大学课程资料共享计划 | 47 | Jupyter Notebook | 12/20 |
| 159 | [heilongjianguniversity/AI-Team](https://github.com/heilongjianguniversity/AI-Team) | 清华大学AI自强项目课件以及代码下载,黑龙江大学机器学习小组学习历程。@清华大学数据院,感谢他们的课件以及源码 | 47 | Jupyter Notebook | 04/19 |
| 160 | [mushroom-x/K210_Tutorial](https://github.com/mushroom-x/K210_Tutorial) | K210基础入门教程 edit by Kyle阿凯 | 46 | Jupyter Notebook | 05/13 |
| 161 | [ColaDrill/tx_competition](https://github.com/ColaDrill/tx_competition) | 2018腾讯广告算法大赛 | 46 | Jupyter Notebook | 07/16 |
| 162 | [tomo-makes/dl-in-a-sec](https://github.com/tomo-makes/dl-in-a-sec) | 2019年5月発刊『図解速習DEEP LEARNING』(シーアンドアール研究所)のサポートサイトです。 | 46 | Jupyter Notebook | 05/20 |
| 163 | [YQGong/NN_From_Scratch](https://github.com/YQGong/NN_From_Scratch) | B站视频系列-从零开始的神经网络 | 46 | Jupyter Notebook | 05/24 |
| 164 | [shikanon/MyPresentations](https://github.com/shikanon/MyPresentations) | this is my presentaion area .个人演讲稿展示区,主要展示一些平时的个人演讲稿或者心得之类的, | 45 | Jupyter Notebook | 01/17 |
| 165 | [shiyanlou/louplus-dm](https://github.com/shiyanlou/louplus-dm) | 实验楼 《楼+ 数据分析与挖掘实战》课程挑战作业参考答案 | 44 | Jupyter Notebook | 12/27 |
| 166 | [jamess010/AIOpen](https://github.com/jamess010/AIOpen) | AIOpen是一个按人工智能三要素(数据、算法、算力)进行AI开源项目分类的汇集项目,项目致力于跟踪目前人工智能(AI)的深度学习(DL)开源项目,并尽可能地罗列目前的开源项目,同时加入了一些曾经研究过的代码。通过这些开源项目,使初次接触AI的人们对人工智能(深度学习)有更清晰和更全面的了解。 | 42 | Jupyter Notebook | 08/03 |
| 167 | [azy1988/ML-CV](https://github.com/azy1988/ML-CV) | 机器学习实战 | 42 | Jupyter Notebook | 11/24 |
| 168 | [xiaoxiaoyao/MyApp](https://github.com/xiaoxiaoyao/MyApp) | 随便写的各种,点链接可以进入我的知乎 | 42 | Jupyter Notebook | 12/13 |
| 169 | [JuliaCN/MeetUpMaterials](https://github.com/JuliaCN/MeetUpMaterials) | Julia中文社区活动的各种材料 Meetup Materials | 41 | Jupyter Notebook | 08/30 |
| 170 | [hudengjunai/DeepEmbeding](https://github.com/hudengjunai/DeepEmbeding) | 图像检索和向量搜索,similarity learning,compare deep metric and deep-hashing applying in image retrieval | 41 | Jupyter Notebook | 12/16 |
| 171 | [beiciliang/intro2musictech](https://github.com/beiciliang/intro2musictech) | 公众号“无痛入门音乐科技”开源代码 | 40 | Jupyter Notebook | 08/19 |
| 172 | [yongbowin/pytorch-pretrained-BERT_annotation](https://github.com/yongbowin/pytorch-pretrained-BERT_annotation) | bert annotation, input and output for people from scratch, 代码注释, 有每一步的输入和输出, 适合初学者 | 40 | Jupyter Notebook | 04/12 |
| 173 | [letylin/pyprogbook](https://github.com/letylin/pyprogbook) | 金融大數據首部曲 書名: Python 程式設計入門 — 金融商管實務案例 讀者可以在此下載教學資源含程式碼 | 38 | Jupyter Notebook | 12/09 |
| 174 | [TensShinet/learn_statistical-learning-method](https://github.com/TensShinet/learn_statistical-learning-method) | 学习《统计学习方法》并实现其中的大部分算法 | 38 | Jupyter Notebook | 03/21 |
| 175 | [music1353/pyHowFun](https://github.com/music1353/pyHowFun) | 🌻 提供一系列的 Python 教學,讓初學者或是有程式基礎的人,快速融入 Python 的世界 | 38 | Jupyter Notebook | 08/30 |
| 176 | [YZHANG1270/Marvel_KnowledgeGraph](https://github.com/YZHANG1270/Marvel_KnowledgeGraph) | 漫威英雄的知识图谱 | 38 | Jupyter Notebook | 04/28 |
| 177 | [zc402/ChineseTrafficPolicePose](https://github.com/zc402/ChineseTrafficPolicePose) | Detects Chinese traffic police commanding poses 检测中国交警指挥手势 | 37 | Jupyter Notebook | 10/21 |
| 178 | [linguishi/chinese_sentiment](https://github.com/linguishi/chinese_sentiment) | 中文情感分析,CNN,BI-LSTM,文本分类 | 36 | Jupyter Notebook | 12/17 |
| 179 | [uncleban/2019_cmb_fintech](https://github.com/uncleban/2019_cmb_fintech) | 2019招行fintech精英训练营线上赛 基于收支记录判断借贷意愿 baseline(第1名) | 36 | Jupyter Notebook | 05/13 |
| 180 | [pascal1129/cv_notes](https://github.com/pascal1129/cv_notes) | 深度学习/计算机视觉工程向笔记 | 36 | Jupyter Notebook | 08/20 |
| 181 | [srf1986/easy_raspi_python_one](https://github.com/srf1986/easy_raspi_python_one) | 动手学树莓派——python上篇 | 36 | Jupyter Notebook | 10/18 |
| 182 | [ChuanyuXue/CIKM-2019-AnalytiCup](https://github.com/ChuanyuXue/CIKM-2019-AnalytiCup) | 2019-CIKM挑战赛,超大规模推荐之用户兴趣高效检索赛道 冠军解决方案 | 36 | Jupyter Notebook | 11/14 |
| 183 | [Relph1119/MachineLearning-WatermelonBook](https://github.com/Relph1119/MachineLearning-WatermelonBook) | 周志华-机器学习 | 36 | Jupyter Notebook | 01/01 |
| 184 | [gunosy/Gunosy-Internship-Textbook](https://github.com/gunosy/Gunosy-Internship-Textbook) | Gunosy Summer Internship 機械学習コース向けの事前学習用のテキストです。 | 36 | Jupyter Notebook | 08/26 |
| 185 | [wqw547243068/Python-learning](https://github.com/wqw547243068/Python-learning) | 好玩儿的Python:从数据挖掘到深度学习 | 36 | Jupyter Notebook | 08/06 |
| 186 | [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. | 36 | Jupyter Notebook | 12/14 |
| 187 | [echohandsome/Machine_Learning_in_Action_for_smallwhite](https://github.com/echohandsome/Machine_Learning_in_Action_for_smallwhite) | 面向机器学习初学者的最全注释版本的机器学习实战的代码 | 36 | Jupyter Notebook | 08/01 |
| 188 | [peiss/ant-learn-python](https://github.com/peiss/ant-learn-python) | 蚂蚁学Python,微信公众号的代码仓库 | 35 | Jupyter Notebook | 12/28 |
| 189 | [feng-li/Distributed-Statistical-Computing](https://github.com/feng-li/Distributed-Statistical-Computing) | Computer Code and Statistical Cases for book: Distributed Statistical Computing for Big Data (大数据分布式计算与案例——李丰著) | 35 | Jupyter Notebook | 01/04 |
| 190 | [renxingkai/Credit_Score_Baseline](https://github.com/renxingkai/Credit_Score_Baseline) | DCIC消费者人群画像-信用智能评分Baseline | 35 | Jupyter Notebook | 02/28 |
| 191 | [goodchinas/pyquant](https://github.com/goodchinas/pyquant) | 学习技术(python),学习量化交易(quant) | 35 | Jupyter Notebook | 06/10 |
| 192 | [bat67/pytorch-examples-cn](https://github.com/bat67/pytorch-examples-cn) | 用例子学习PyTorch1.0(Learning PyTorch with Examples 中文翻译与学习) | 34 | Jupyter Notebook | 03/11 |
| 193 | [blueapplehe/car_identify](https://github.com/blueapplehe/car_identify) | 汽车识别,汽车车型识别,汽车品牌识别,车辆识别,深度学习,神经网络 | 34 | Jupyter Notebook | 07/08 |
| 194 | [P01son6415/MatchModels](https://github.com/P01son6415/MatchModels) | 2019中国高校计算机大赛——大数据挑战赛 第15名 WriteUp | 33 | Jupyter Notebook | 08/31 |
| 195 | [gaozhanfire/BDC2019-rank24th](https://github.com/gaozhanfire/BDC2019-rank24th) | 中国高校计算机大赛-大数据挑战赛,Rank24 解决方案 | 33 | Jupyter Notebook | 08/19 |
| 196 | [howl-anderson/MicroRegEx](https://github.com/howl-anderson/MicroRegEx) | 一个微型的正则表达式引擎 \| A micro regular expression engine | 33 | Jupyter Notebook | 09/22 |
| 197 | [peiss/ant-learn-pandas](https://github.com/peiss/ant-learn-pandas) | pandas学习课程代码仓库 | 32 | Jupyter Notebook | 12/27 |
| 198 | [JokerJohn/bilibli_notes2](https://github.com/JokerJohn/bilibli_notes2) | 攻城狮之家B站视频课程课件合集2,1号仓库https://github.com/JokerJohn/bilibili_notes.git | 32 | Jupyter Notebook | 01/03 |
| 199 | [yutiansut/QASTRATEGY101](https://github.com/yutiansut/QASTRATEGY101) | strategy 101 从今天开始 逐步开放101个基础策略的QA实现 包含5个大类 | 32 | Jupyter Notebook | 09/24 |
| 200 | [Parker-Lyu/rscup2019_classifier](https://github.com/Parker-Lyu/rscup2019_classifier) | rscup2019,分类赛道 | 32 | Jupyter Notebook | 09/23 |
⬆ [回到目录](#目录)
<br/>
## Shell
| # | Repository | Description | Stars | Language | Updated |
| ---- | ------------------------------------------------------------ | ------------------------------------------------------------ | ----- | -------- | ------- |
| 1 | [shengxinjing/programmer-job-blacklist](https://github.com/shengxinjing/programmer-job-blacklist) | :see_no_evil:程序员找工作黑名单,换工作和当技术合伙人需谨慎啊 更新有赞 | 24.8k | Shell | 04/09 |
| 2 | [taizilongxu/interview_python](https://github.com/taizilongxu/interview_python) | 关于Python的面试题 | 11.6k | Shell | 10/25 |
| 3 | [233boy/v2ray](https://github.com/233boy/v2ray) | 最好用的 V2Ray 一键安装脚本 & 管理脚本 | 8.9k | Shell | 01/04 |
| 4 | [rootsongjc/kubernetes-handbook](https://github.com/rootsongjc/kubernetes-handbook) | Kubernetes中文指南/云原生应用架构实践手册 - https://jimmysong.io/kubernetes-handbook | 6.5k | Shell | 12/30 |
| 5 | [skywind3000/awesome-cheatsheets](https://github.com/skywind3000/awesome-cheatsheets) | 超级速查表 - 编程语言、框架和开发工具的速查表,单个文件包含一切你需要知道的东西 :zap: | 5.4k | Shell | 12/12 |
| 6 | [opsnull/follow-me-install-kubernetes-cluster](https://github.com/opsnull/follow-me-install-kubernetes-cluster) | 和我一步步部署 kubernetes 集群 | 5.0k | Shell | 01/06 |
| 7 | [easzlab/kubeasz](https://github.com/easzlab/kubeasz) | 使用Ansible脚本安装K8S集群,介绍组件交互原理,方便直接,不受国内网络环境影响 | 4.5k | Shell | 01/06 |
| 8 | [HIT-Alibaba/interview](https://github.com/HIT-Alibaba/interview) | 笔试面试知识整理 | 3.9k | Shell | 11/03 |
| 9 | [gfw-breaker/ssr-accounts](https://github.com/gfw-breaker/ssr-accounts) | 一键部署Shadowsocks服务;免费Shadowsocks账号分享;免费SS账号分享; 翻墙;无界,自由门,SquirrelVPN | 3.3k | Shell | 12/17 |
| 10 | [ToyoDAdoubi/doubi](https://github.com/ToyoDAdoubi/doubi) | 一个逗比写的各种逗比脚本~ | 3.2k | Shell | 12/13 |
| 11 | [softwaredownload/openwrt-fanqiang](https://github.com/softwaredownload/openwrt-fanqiang) | 最好的路由器翻墙、科学上网教程—OpenWrt—shadowsocks | 3.1k | Shell | 12/26 |
| 12 | [91yun/serverspeeder](https://github.com/91yun/serverspeeder) | 锐速破解版 | 2.9k | Shell | 01/04 |
| 13 | [Medicean/VulApps](https://github.com/Medicean/VulApps) | 快速搭建各种漏洞环境(Various vulnerability environment) | 2.6k | Shell | 12/30 |
| 14 | [wx-chevalier/Developer-Zero-To-Mastery](https://github.com/wx-chevalier/Developer-Zero-To-Mastery) | :books: To Be Professional Developer From Zero To Mastery, Interactive MindMap, RoadMap(Learning Path/Interview Questions), xCompass, Weekly for Developer, to Learn Everything in ITCS :dizzy: 程序员的技术视野、知识管理与职业规划,提高个人与团队的研发效能 | 2.4k | Shell | 01/06 |
| 15 | [wulabing/V2Ray_ws-tls_bash_onekey](https://github.com/wulabing/V2Ray_ws-tls_bash_onekey) | V2Ray Nginx+vmess+ws+tls/ http2 over tls 一键安装脚本 | 2.3k | Shell | 01/03 |
| 16 | [flyzy2005/ss-fly](https://github.com/flyzy2005/ss-fly) | 一键脚本搭建ss/ssr并开启bbr内核加速(Ubuntu/CentOS/Debian) | 2.1k | Shell | 10/23 |
| 17 | [wangdoc/javascript-tutorial](https://github.com/wangdoc/javascript-tutorial) | JavaScript 教程 https://wangdoc.com/javascript | 2.0k | Shell | 01/07 |
| 18 | [fengyuhetao/shell](https://github.com/fengyuhetao/shell) | Linux命令行与shell脚本编程大全案例 | 1.6k | Shell | 06/18 |
| 19 | [LCTT/TranslateProject](https://github.com/LCTT/TranslateProject) | Linux中国翻译项目 | 1.5k | Shell | 01/07 |
| 20 | [zhuangbiaowei/learn-with-open-source](https://github.com/zhuangbiaowei/learn-with-open-source) | 借助开源项目,学习软件开发 | 1.5k | Shell | 11/05 |
| 21 | [CyC2018/Job-Recommend](https://github.com/CyC2018/Job-Recommend) | 🔎 互联网内推信息(社招、校招、实习) | 1.5k | Shell | 11/15 |
| 22 | [apachecn/ai-roadmap](https://github.com/apachecn/ai-roadmap) | ApacheCN AI 路线图(知识树) | 1.4k | Shell | 08/06 |
| 23 | [lmk123/oh-my-wechat](https://github.com/lmk123/oh-my-wechat) | 微信小助手的安装 / 更新工具。 | 1.2k | Shell | 08/13 |
| 24 | [studygolang/GCTT](https://github.com/studygolang/GCTT) | GCTT Go中文网翻译组。 | 1.1k | Shell | 01/06 |
| 25 | [neoFelhz/neohosts](https://github.com/neoFelhz/neohosts) | 自由·负责·克制 去广告 Hosts 项目 | 1.0k | Shell | 01/07 |
| 26 | [zfl9/ss-tproxy](https://github.com/zfl9/ss-tproxy) | SS/SSR/V2Ray/Socks5 透明代理 for Linux | 870 | Shell | 01/01 |
| 27 | [liuyi01/kubernetes-starter](https://github.com/liuyi01/kubernetes-starter) | kubernetes入门,包括kubernetes概念,架构设计,集群环境搭建,认证授权等。 | 839 | Shell | 01/30 |
| 28 | [devdawei/libstdc-](https://github.com/devdawei/libstdc-) | Xcode 10 和 Xcode 11 中删除的 libstdc++ 库 | 824 | Shell | 01/07 |
| 29 | [aqzt/kjyw](https://github.com/aqzt/kjyw) | 快捷运维,代号kjyw,项目基于shell、python,运维脚本工具库,收集各类运维常用工具脚本,实现快速安装nginx、mysql、php、redis、nagios、运维经常使用的脚本等等... | 812 | Shell | 01/02 |
| 30 | [wind-liang/leetcode](https://github.com/wind-liang/leetcode) | leetcode 顺序刷题,详细通俗题解,with JAVA | 800 | Shell | 01/06 |
| 31 | [yakumioto/YaHei-Consolas-Hybrid-1.12](https://github.com/yakumioto/YaHei-Consolas-Hybrid-1.12) | YaHei Consolas Hybrid 字体 | 794 | Shell | 05/27 |
| 32 | [gaoyifan/china-operator-ip](https://github.com/gaoyifan/china-operator-ip) | 中国运营商IPv4/IPv6地址库-每日更新 | 794 | Shell | 01/07 |
| 33 | [duguying/parsing-techniques](https://github.com/duguying/parsing-techniques) | 📕 parsing techniques 中文译本——《解析技术》 | 780 | Shell | 10/21 |
| 34 | [gotok8s/k8s-docker-desktop-for-mac](https://github.com/gotok8s/k8s-docker-desktop-for-mac) | Docker Desktop for Mac 开启并使用 Kubernetes | 711 | Shell | 11/05 |
| 35 | [maxlicheng/luci-app-unblockmusic](https://github.com/maxlicheng/luci-app-unblockmusic) | 用于解锁网易云灰色歌曲的OpenWRT/LEDE路由器插件 (openwrt/lede luci support for unblock neteasecloudmusic) | 684 | Shell | 11/20 |
| 36 | [sy618/hosts](https://github.com/sy618/hosts) | 已停更 | 674 | Shell | 09/01 |
| 37 | [ToyoDAdoubiBackup/doubi](https://github.com/ToyoDAdoubiBackup/doubi) | 一个逗比写的各种逗比脚本~ | 655 | Shell | 03/28 |
| 38 | [liquanzhou/ops_doc](https://github.com/liquanzhou/ops_doc) | 运维简洁实用手册 | 654 | Shell | 03/22 |
| 39 | [sabersalv/freedom-routes](https://github.com/sabersalv/freedom-routes) | chnroutes改进版, 智能生成路由表, 大幅提升VPN浏览国内网页速度 | 646 | Shell | 06/04 |
| 40 | [goreliu/zshguide](https://github.com/goreliu/zshguide) | Zsh 开发指南 | 624 | Shell | 06/23 |
| 41 | [monlor/Monlor-Tools](https://github.com/monlor/Monlor-Tools) | 小米路由器Shell工具箱,本人自用,主要参考了小米的Misstar Tools制作,仅学习之用!Telegram群组:https://t.me/joinchat/FMraA0lwzH9fzEW1wXdCFA | 616 | Shell | 01/06 |
| 42 | [tinyclub/open-c-book](https://github.com/tinyclub/open-c-book) | 开源书籍:《C语言编程透视》,配套视频课程已全面上线,https://w.url.cn/s/AMcKZ3a | 612 | Shell | 12/04 |
| 43 | [xuexb/learn-nginx](https://github.com/xuexb/learn-nginx) | Nginx 入门指南 | 602 | Shell | 11/05 |
| 44 | [Nick233333/phper-linux-gitbook](https://github.com/Nick233333/phper-linux-gitbook) | 💡PHPer 必知必会的 Linux 命令 | 530 | Shell | 12/19 |
| 45 | [apachecn/awesome-indie-zh](https://github.com/apachecn/awesome-indie-zh) | 独立开发/自由职业/远程工作资源列表 | 529 | Shell | 03/06 |
| 46 | [monetking/AutoPacking-iOS](https://github.com/monetking/AutoPacking-iOS) | iOS自动打包脚本 多项选择 一行上传指定位置 | 505 | Shell | 11/22 |
| 47 | [Jactor-Sue/Deepin-Apps-Installation](https://github.com/Jactor-Sue/Deepin-Apps-Installation) | 本仓库介绍如何在基于Ubuntu的系统上安装Deepin移植的软件。This repo shows how to install apps packaged by Deepin. | 446 | Shell | 10/31 |
| 48 | [blademainer/miwifi-ss](https://github.com/blademainer/miwifi-ss) | 小米路由 ss | 428 | Shell | 03/05 |
| 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 | 428 | Shell | 12/08 |
| 50 | [clangcn/onekey-install-shell](https://github.com/clangcn/onekey-install-shell) | 一大坨一键安装脚本 | 408 | Shell | 06/08 |
| 51 | [rust-lang-cn/rust-by-example-cn](https://github.com/rust-lang-cn/rust-by-example-cn) | Rust By Example 中文版(包含在线代码编辑器) | 404 | Shell | 12/29 |
| 52 | [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 | 403 | Shell | 11/26 |
| 53 | [skyline75489/Heart-First-JavaWeb](https://github.com/skyline75489/Heart-First-JavaWeb) | 一个走心的 Java Web 入门开发教程 | 393 | Shell | 11/03 |
| 54 | [rime/plum](https://github.com/rime/plum) | 東風破 /plum/: Rime configuration manager and input schema repository | 393 | Shell | 09/12 |
| 55 | [MvsCode/frps-onekey](https://github.com/MvsCode/frps-onekey) | Frps 一键安装脚本&管理脚本 A tool to auto-compile & install frps on Linux | 363 | Shell | 01/06 |
| 56 | [al0ne/LinuxCheck](https://github.com/al0ne/LinuxCheck) | linux信息收集/应急响应/常见后门检测脚本 | 338 | Shell | 12/02 |
| 57 | [zhangguanzhang/Kubernetes-ansible](https://github.com/zhangguanzhang/Kubernetes-ansible) | :christmas_tree:ansible多网卡机器上一键部署高可用Kubernetes(systemd) | 334 | Shell | 12/20 |
| 58 | [anrip/dnspod-shell](https://github.com/anrip/dnspod-shell) | 基于DNSPod用户API实现的纯Shell动态域名客户端 | 333 | Shell | 01/03 |
| 59 | [P3TERX/Actions-OpenWrt](https://github.com/P3TERX/Actions-OpenWrt) | Build OpenWrt using GitHub Actions \| 使用 GitHub Actions 编译 OpenWrt | 328 | Shell | 01/05 |
| 60 | [QAX-A-Team/LuWu](https://github.com/QAX-A-Team/LuWu) | 红队基础设施自动化部署工具 | 322 | Shell | 04/17 |
| 61 | [EtherDream/anti-portscan](https://github.com/EtherDream/anti-portscan) | 使用 iptables 防止端口扫描 | 320 | Shell | 10/29 |
| 62 | [csy512889371/learnDoc](https://github.com/csy512889371/learnDoc) | 🔥:rocket:架构师的成长之路-博客-导图 | 314 | Shell | 01/04 |
| 63 | [jkpang/PPAutoPackageScript](https://github.com/jkpang/PPAutoPackageScript) | Automatic packing script after Xcode8 - Xcode8以后的自动打包脚本 | 313 | Shell | 08/23 |
| 64 | [helloxz/ccaa](https://github.com/helloxz/ccaa) | CentOS + Caddy + Aria2 + AriaNg一键安装离线下载、文件管理。 | 309 | Shell | 05/26 |
| 65 | [sirzdy/shadowsocks](https://github.com/sirzdy/shadowsocks) | 与 ShadowSocks 有关的教程、文件等 | 305 | Shell | 03/08 |
| 66 | [ctf-wiki/ctf-tools](https://github.com/ctf-wiki/ctf-tools) | CTF 工具集合 | 305 | Shell | 10/16 |
| 67 | [xzhih/ONMP](https://github.com/xzhih/ONMP) | 用于 Entware 库的 web 环境一键安装命令,适用于 LEDE、Padavan、梅林等固件 | 294 | Shell | 08/01 |
| 68 | [venshine/decompile-apk](https://github.com/venshine/decompile-apk) | 🔥 Decompile APK(反编译APK) | 285 | Shell | 12/02 |
| 69 | [haiwen/seafile-docs-cn](https://github.com/haiwen/seafile-docs-cn) | Seafile服务器用户手册 | 282 | Shell | 11/01 |
| 70 | [tonydeng/sdn-handbook](https://github.com/tonydeng/sdn-handbook) | SDN手册 | 273 | Shell | 12/09 |
| 71 | [yangchuansheng/love-gfw](https://github.com/yangchuansheng/love-gfw) | 🔥以社会主义核心价值观为指导思想,实现 Linux 和 MacOS 设备的全局智能分流 | 272 | Shell | 06/22 |
| 72 | [P3TERX/aria2.conf](https://github.com/P3TERX/aria2.conf) | Aria2 配置文件 \| Onedrive、Google Drvive 离线下载解决方案 \| 百度网盘不限速转存解决方案 | 271 | Shell | 01/07 |
| 73 | [jaywcjlove/docker-tutorial](https://github.com/jaywcjlove/docker-tutorial) | 🐳Docker入门学习笔记 | 256 | Shell | 08/22 |
| 74 | [sprov065/sprov-ui](https://github.com/sprov065/sprov-ui) | 一个支持多协议多用户的v2ray Web面板 | 255 | Shell | 09/18 |
| 75 | [FeeiCN/autossh](https://github.com/FeeiCN/autossh) | Password-free automatic login SSH(免密登陆SSH) | 251 | Shell | 11/11 |
| 76 | [chinanf-boy/react-beautiful-dnd-zh](https://github.com/chinanf-boy/react-beautiful-dnd-zh) | 🇨🇳翻译: react-beautiful-dnd 文档 ❤️ 更新 ✅ | 245 | Shell | 03/29 |
| 77 | [swoole/swoole-wiki](https://github.com/swoole/swoole-wiki) | 📖Swoole全量Markdown文档, Swoole-Doc, Swoole-Wiki | 241 | Shell | 05/05 |
| 78 | [dakkidaze/one-key-kms](https://github.com/dakkidaze/one-key-kms) | 在Linux上一键搭建KMS服务器 | 236 | Shell | 02/19 |
| 79 | [WangHL0927/grafana-chinese](https://github.com/WangHL0927/grafana-chinese) | grafana中文版本 | 232 | Shell | 12/16 |
| 80 | [apachecn/ml-mastery-zh](https://github.com/apachecn/ml-mastery-zh) | :book: [译] MachineLearningMastery 博客文章 | 224 | Shell | 12/16 |
| 81 | [T0xst/linux](https://github.com/T0xst/linux) | linux安全检查 | 224 | Shell | 05/15 |
| 82 | [Xu-Jian/VPS](https://github.com/Xu-Jian/VPS) | 个人笔记汇总 | 220 | Shell | 09/11 |
| 83 | [arloor/iptablesUtils](https://github.com/arloor/iptablesUtils) | iptables转发ddns域名 | 220 | Shell | 12/07 |
| 84 | [wallace5303/dnnmmp](https://github.com/wallace5303/dnnmmp) | 基于docker的开发者集成环境 (docker,nodejs,php,nginx,mongo,mysql,redis等) | 218 | Shell | 09/16 |
| 85 | [zfl9/gfwlist2privoxy](https://github.com/zfl9/gfwlist2privoxy) | 将 gfwlist.txt(Adblock Plus 规则)转换为 privoxy.action | 218 | Shell | 11/09 |
| 86 | [cookcodeblog/k8s-deploy](https://github.com/cookcodeblog/k8s-deploy) | 使用kubeadm一键部署kubernetes集群 | 211 | Shell | 07/02 |
| 87 | [lis912/Evaluation_tools](https://github.com/lis912/Evaluation_tools) | 测评工具 | 205 | Shell | 11/04 |
| 88 | [suniceman/ss-fly](https://github.com/suniceman/ss-fly) | 一键脚本搭建ss/ssr并开启bbr内核加速(Ubuntu/CentOS/Debian) | 201 | Shell | 06/21 |
| 89 | [wang-bin/avbuild](https://github.com/wang-bin/avbuild) | ffmpeg花式编译. build tool for all platforms: iOS, android, raspberry pi, win32, uwp, linux, macOS etc. | 199 | Shell | 12/20 |
| 90 | [ruoyu-chen/hadoop-docker](https://github.com/ruoyu-chen/hadoop-docker) | 基于Docker构建的Hadoop开发测试环境,包含Hadoop,Hive,HBase,Spark | 194 | Shell | 05/26 |
| 91 | [91yun/91yuntest](https://github.com/91yun/91yuntest) | 91云服务器一键测试包 | 194 | Shell | 10/24 |
| 92 | [OMGZui/bash-step-to-step](https://github.com/OMGZui/bash-step-to-step) | 👀bash命令和语法--带你升级打boss | 192 | Shell | 01/20 |
| 93 | [jagerzhang/CCKiller](https://github.com/jagerzhang/CCKiller) | Linux轻量级CC攻击防御工具脚本 | 191 | Shell | 10/06 |
| 94 | [innoob/netease-cloud-music](https://github.com/innoob/netease-cloud-music) | 可用于ubuntu 18.04的网易云音乐 | 188 | Shell | 04/23 |
| 95 | [andyzhshg/syno-acme](https://github.com/andyzhshg/syno-acme) | 通过acme协议更新群晖HTTPS泛域名证书的自动脚本 | 187 | Shell | 10/21 |
| 96 | [Biulink/ShadowsocksTutorials](https://github.com/Biulink/ShadowsocksTutorials) | Shadowsocks教程 | 187 | Shell | 04/29 |
| 97 | [233boy/ss](https://github.com/233boy/ss) | Shadowsocks-Go 一键安装脚本 & 管理脚本 | 184 | Shell | 05/15 |
| 98 | [diguage/mysql-notes](https://github.com/diguage/mysql-notes) | MySQL 学习笔记 | 176 | Shell | 06/25 |
| 99 | [YangMame/Arch-Linux-Installer](https://github.com/YangMame/Arch-Linux-Installer) | Arch-Linux-Install-Script/Arch Linux 安装脚本 | 175 | Shell | 07/01 |
| 100 | [HyperledgerCN/hyperledgerDocs](https://github.com/HyperledgerCN/hyperledgerDocs) | Hyperledger文档 | 175 | Shell | 01/21 |
| 101 | [guanguans/dnmp-plus](https://github.com/guanguans/dnmp-plus) | 🐳Docker的LNMP一键安装开发环境 + PHP非侵入式监控平台xhgui(优化系统性能、定位Bug神器) | 174 | Shell | 09/30 |
| 102 | [wizardforcel/data-science-notebook](https://github.com/wizardforcel/data-science-notebook) | :book: 每一个伟大的思想和行动都有一个微不足道的开始 | 174 | Shell | 07/22 |
| 103 | [jaywcjlove/shell-tutorial](https://github.com/jaywcjlove/shell-tutorial) | Shell入门教程(Shell tutorial book) | 170 | Shell | 06/04 |
| 104 | [cirosantilli/china-dictatorship](https://github.com/cirosantilli/china-dictatorship) | Chinese "Communist" "Dictatorship" "facts". 中国《共产主义》《独裁统治》的《事实》。Home to the mega-FAQ, news compilation, restaurant and music recommendations. 常见问答集,新闻集和饭店和音乐建议。Heil Xi 卐. 习万岁。 | 169 | Shell | 01/04 |
| 105 | [wi1dcard/laravel-deployment](https://github.com/wi1dcard/laravel-deployment) | 📗[WIP] 追求质量的 Laravel 应用部署上线课程。 | 167 | Shell | 07/04 |
| 106 | [shengqiangzhang/Drcom-GDUT-HC5661A-OpenWrt](https://github.com/shengqiangzhang/Drcom-GDUT-HC5661A-OpenWrt) | 在Dr.COM下使用路由器上校园网WIFI(以广东工业大学、极路由1S HC5661A、OpenWrt为例) | 165 | Shell | 12/08 |
| 107 | [aiyijing/familycloudaccelerate](https://github.com/aiyijing/familycloudaccelerate) | 安卓端家庭云提速破解脚本 | 161 | Shell | 05/19 |
| 108 | [al0ne/nginx_log_check](https://github.com/al0ne/nginx_log_check) | Nginx日志安全分析脚本 | 161 | Shell | 12/25 |
| 109 | [rachpt/AutoSeed](https://github.com/rachpt/AutoSeed) | 全自动发种姬 [流程图 https://www.processon.com/view/link/5c088855e4b0ca4b40c93a49 ] | 158 | Shell | 12/29 |
| 110 | [xzhih/dell-7460-7560-hackintosh](https://github.com/xzhih/dell-7460-7560-hackintosh) | 戴尔燃7000系列黑苹果安装和日常使用EFI | 153 | Shell | 10/10 |
| 111 | [jiangxianli/SSHAutoLogin](https://github.com/jiangxianli/SSHAutoLogin) | 一个使用expect免输入密码自动登录ssh的shell脚本,方便好用,适用Mac、Linux | 150 | Shell | 10/29 |
| 112 | [tianhao/alfred-mweb-workflow](https://github.com/tianhao/alfred-mweb-workflow) | 搜索、打开MWeb 内部文档和外部 Markdown 文档 | 149 | Shell | 03/06 |
| 113 | [tinyclub/elinux](https://github.com/tinyclub/elinux) | 嵌入式 Linux 知识库 (elinux.org) 中文翻译计划 | 148 | Shell | 11/15 |
| 114 | [aturl/awesome-anti-gfw](https://github.com/aturl/awesome-anti-gfw) | 突破网络审查和封锁的开源工具清单。 | 148 | Shell | 01/24 |
| 115 | [jgsrty/jgsrty.github.docs](https://github.com/jgsrty/jgsrty.github.docs) | :sunny: :feet: personal blog docs 项目预览:https://jgsrty.github.io 国内访问:https://rtyxmd.gitee.io | 147 | Shell | 12/29 |
| 116 | [apachecn/awesome-cs-courses-zh](https://github.com/apachecn/awesome-cs-courses-zh) | 计算机公开课推荐 | 145 | Shell | 08/08 |
| 117 | [tinyclub/linux-doc](https://github.com/tinyclub/linux-doc) | Linux Documentation 中文翻译计划 | 144 | Shell | 07/28 |
| 118 | [printempw/live-stream-recorder](https://github.com/printempw/live-stream-recorder) | Monitor and record live streams from YouTube, OPENREC, TwitCasting, etc. Made for VTuber fans. (VTuber 直播自动录像脚本) | 144 | Shell | 09/09 |
| 119 | [hczhcz/the-elder-is-excited](https://github.com/hczhcz/the-elder-is-excited) | 暴力膜蛤 | 142 | Shell | 01/04 |
| 120 | [minminmsn/k8s1.13](https://github.com/minminmsn/k8s1.13) | 微服务容器化持续交付总体流程:提交gitlab;walle构建镜像及上传到私有镜像库;持续部署到kubernetes集群上启动应用。 | 140 | Shell | 06/06 |
| 121 | [vcheckzen/FamilyCloudSpeederInShell](https://github.com/vcheckzen/FamilyCloudSpeederInShell) | [ 天翼家庭云/天翼云盘提速 Shell 版 ] A Shell Implementation of FamilyCloudSpeeder, ESurfing | 139 | Shell | 06/06 |
| 122 | [dunwu/linux-tutorial](https://github.com/dunwu/linux-tutorial) | :penguin: Linux教程,主要内容:Linux 命令、Linux 系统运维、软件运维、精选常用Shell脚本 | 137 | Shell | 01/03 |
| 123 | [felix-fly/v2ray-openwrt](https://github.com/felix-fly/v2ray-openwrt) | 路由器Openwrt安装V2ray简单流程 | 136 | Shell | 01/06 |
| 124 | [zxui/shell](https://github.com/zxui/shell) | :maple_leaf: Centos运维常用工具 | 134 | Shell | 03/31 |
| 125 | [jardenliu/XPS15-9560-Catalina](https://github.com/jardenliu/XPS15-9560-Catalina) | XPS15-9560-Catalina, Q群:161385229 | 134 | Shell | 12/25 |
| 126 | [project-openwrt/luci-app-unblockneteasemusic](https://github.com/project-openwrt/luci-app-unblockneteasemusic) | [OpenWrt] 解除网易云音乐播放限制 | 134 | Shell | 01/02 |
| 127 | [aikuyun/iterm2-zmodem](https://github.com/aikuyun/iterm2-zmodem) | 在 Mac 下,实现与服务器进行便捷的文件上传和下载操作 | 134 | Shell | 11/07 |
| 128 | [NewBee119/ssh-scanner](https://github.com/NewBee119/ssh-scanner) | ssh password guessing,ssh登录密码破解 | 133 | Shell | 01/09 |
| 129 | [idoop/docker-apollo](https://github.com/idoop/docker-apollo) | docker image for Ctrip/Apollo(携程Apollo) | 133 | Shell | 11/18 |
| 130 | [pssss/Security-Baseline](https://github.com/pssss/Security-Baseline) | Linux/Windows 安全加固脚本 | 130 | Shell | 07/23 |
| 131 | [BE-Kits/Chaos-Scanner](https://github.com/BE-Kits/Chaos-Scanner) | Next Generation Distributed Web Security Scanner with Futuristic Architecture and UI :dizzy: 混沌守望者(扫描器),多策略(爬虫扫描&POC 扫描)、模块化、分布式的智能网络空间测绘、管理与安全探测 | 129 | Shell | 12/16 |
| 132 | [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. 一些无聊的脚本和配置文件 | 127 | Shell | 12/06 |
| 133 | [P3TERX/aria2.sh](https://github.com/P3TERX/aria2.sh) | Aria2 一键安装管理脚本 | 127 | Shell | 01/01 |
| 134 | [wangdoc/webapi-tutorial](https://github.com/wangdoc/webapi-tutorial) | Web API 教程 | 126 | Shell | 09/09 |
| 135 | [lijianying10/FixLinux](https://github.com/lijianying10/FixLinux) | 记录我是如何解决一些问题的,公开我平时用的脚本,变量等。 | 126 | Shell | 09/30 |
| 136 | [guanpengchn/LeetCodeDrawing](https://github.com/guanpengchn/LeetCodeDrawing) | 力扣精选题解,画解算法合集 | 126 | Shell | 01/07 |
| 137 | [A-BenMao/pure-bash-bible-zh_CN](https://github.com/A-BenMao/pure-bash-bible-zh_CN) | 📖 一个纯bash实现外部命令的脚本集合(中文版)【翻译自pure-bash-bible仓库】 | 125 | Shell | 12/29 |
| 138 | [sensec/ddns-scripts_aliyun](https://github.com/sensec/ddns-scripts_aliyun) | OpenWrt/LEDE DDNS support for aliyun (阿里云) | 124 | Shell | 03/21 |
| 139 | [wulabing/SSR-manyuser_glzjin_shell](https://github.com/wulabing/SSR-manyuser_glzjin_shell) | sspanel v3 魔改版 后端一键安装配置管理脚本 | 123 | Shell | 01/19 |
| 140 | [cniPatch/NavicatPremium](https://github.com/cniPatch/NavicatPremium) | Navicat Premium 🦀简体中文版 | 122 | Shell | 12/30 |
| 141 | [zwmscorm/sharealiddns](https://github.com/zwmscorm/sharealiddns) | 全功能阿里云域名解析脚本(支持IPV4, IPV6, 多域名等,同时支持asuswrt-merlin 、padavan、pandorabox、lede/openwrt固件) | 121 | Shell | 06/11 |
| 142 | [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) | 119 | Shell | 01/03 |
| 143 | [QAX-A-Team/WeblogicEnvironment](https://github.com/QAX-A-Team/WeblogicEnvironment) | Weblogic环境搭建工具 | 116 | Shell | 11/10 |
| 144 | [vbay/big-data](https://github.com/vbay/big-data) | 一个开源、成体系的大数据学习教程。spark学习 hadoop hive hbase flink教程 linux 从入门到精通 | 116 | Shell | 11/27 |
| 145 | [gdut-yy/CSS-The-Definitive-Guide-4th-zh](https://github.com/gdut-yy/CSS-The-Definitive-Guide-4th-zh) | CSS权威指南第四版 中文翻译 | 111 | Shell | 01/02 |
| 146 | [rcmdnk/sentaku](https://github.com/rcmdnk/sentaku) | Utility to make sentaku (selection, 選択(sentaku)) window with shell command. | 110 | Shell | 10/31 |
| 147 | [goldze/Anti-Android-KM](https://github.com/goldze/Anti-Android-KM) | 破解某猫社区VIP会员 | 109 | Shell | 09/12 |
| 148 | [yomun/youdaodict_5.5](https://github.com/yomun/youdaodict_5.5) | 重新编译 DeepIn 的有道词典 DEB 包 (支持其它新的 Linux 分发版) | 105 | Shell | 06/07 |
| 149 | [dylanbai8/frpspro](https://github.com/dylanbai8/frpspro) | Frps 一键安装脚本,Frpc Windows 便捷脚本!Frp 远程桌面! | 104 | Shell | 12/31 |
| 150 | [smallmuou/xmlyfetcher](https://github.com/smallmuou/xmlyfetcher) | 喜马拉雅音频下载工具 | 104 | Shell | 09/29 |
| 151 | [apachecn/ml-book-100-zh](https://github.com/apachecn/ml-book-100-zh) | :book: [译] 百页机器学习小书 | 103 | Shell | 12/17 |
| 152 | [nwcdlabs/kops-cn](https://github.com/nwcdlabs/kops-cn) | AWS中国宁夏区域/北京区域,快速Kops部署K8S集群 | 103 | Shell | 12/27 |
| 153 | [fenglihai123/IPABuildShell](https://github.com/fenglihai123/IPABuildShell) | IPABuildShell 一个强大的、轻量的 iOS 自动打包工具,无需手动指定授权文件和证书 | 103 | Shell | 12/04 |
| 154 | [clion007/dnsmasq](https://github.com/clion007/dnsmasq) | 全自动dnsmasq及hosts科学上网,防DNS劫持及全面广告屏蔽脚本 | 97 | Shell | 11/27 |
| 155 | [moooofly/MarkSomethingDown](https://github.com/moooofly/MarkSomethingDown) | 本仓库用于记录自 2016年6月1日起,在饿了么任职期间的各方面知识汇总~ | 97 | Shell | 12/24 |
| 156 | [wangdoc/html-tutorial](https://github.com/wangdoc/html-tutorial) | HTML 语言教程 | 96 | Shell | 10/10 |
| 157 | [farsunset/lvxin-im](https://github.com/farsunset/lvxin-im) | 侣信是一款功能强大的IM(即时聊天)工具。具有丰富的功能,聊天,群组,部门组织,内部朋友圈等功能。它可以在局域网内使用保证沟通的信息安全,并且它是完全免费的,而且可以及时获得更新。 | 96 | Shell | 01/03 |
| 158 | [wyx176/Socks5](https://github.com/wyx176/Socks5) | Socks5代理服务器搭建脚本/Socks5 shortcut creation script | 96 | Shell | 08/23 |
| 159 | [easy-swoole/doc](https://github.com/easy-swoole/doc) | easyswoole文档 | 96 | Shell | 01/06 |
| 160 | [lgs3137/MR_S1-macOS](https://github.com/lgs3137/MR_S1-macOS) | 机械革命S1(MSI PS42 8RB) for macOS Catalina & Mojave | 94 | Shell | 12/28 |
| 161 | [FantasticLBP/codesnippets](https://github.com/FantasticLBP/codesnippets) | iOS 代码规范、Xcode 代码块和文件模版 | 92 | Shell | 09/02 |
| 162 | [esirplayground/AutoBuild-OpenWrt](https://github.com/esirplayground/AutoBuild-OpenWrt) | Build OpenWrt using GitHub Actions \| 使用 GitHub Actions 编译 OpenWrt \| 感谢P3TERX的项目源码 | 91 | Shell | 12/30 |
| 163 | [levinit/itnotes](https://github.com/levinit/itnotes) | 个人笔记,IT相关。 | 91 | Shell | 12/29 |
| 164 | [giantbranch/pwn-env-init](https://github.com/giantbranch/pwn-env-init) | CTF PWN 做题环境一键搭建脚本 | 91 | Shell | 08/28 |
| 165 | [mritd/shell_scripts](https://github.com/mritd/shell_scripts) | 常用的一些 shell 脚本 | 90 | Shell | 01/03 |
| 166 | [vcheckzen/XunleiKuainiaoInShell](https://github.com/vcheckzen/XunleiKuainiaoInShell) | [ 迅雷快鸟 Shell 版 ] A Shell Implementation of Kuainiao, Xunlei | 89 | Shell | 04/24 |
| 167 | [Aaron1989/CloudNativeNotes](https://github.com/Aaron1989/CloudNativeNotes) | 👍 👍 👍系统学习云原生 在线阅读地址https://aaron1989.github.io/CloudNativeNotes | 89 | Shell | 01/06 |
| 168 | [goodboy23/shell-script-collection](https://github.com/goodboy23/shell-script-collection) | shell脚本合集,地址:https://www.52wiki.cn/Doc/Read/id/641.html | 85 | Shell | 10/25 |
| 169 | [aoaoho/DEVONthink-Chinese](https://github.com/aoaoho/DEVONthink-Chinese) | DEVONthink 简体中文语言包(中文化/汉化/中文版) \| Chinese translation \| zh_CN.lproj | 85 | Shell | 05/07 |
| 170 | [woniuzfb/iptv](https://github.com/woniuzfb/iptv) | 看HBO直播 + 集各广电直播源 + 一键管理 IPTV 直播频道脚本 mpegts => hls | 84 | Shell | 01/07 |
| 171 | [jueying/docker-ngrok-server](https://github.com/jueying/docker-ngrok-server) | ngrok服务器的docker image,实现内网穿透。也可以下载附件中的ngrok客户端使用 | 84 | Shell | 03/26 |
| 172 | [zsenliao/shellMonitor](https://github.com/zsenliao/shellMonitor) | 一个 Linux 下基于 Bash 的文件和数据库监控及备份工具,可发送微信报警通知 | 83 | Shell | 05/07 |
| 173 | [laubonghaudoi/Chinese_Rime](https://github.com/laubonghaudoi/Chinese_Rime) | 收集現代漢語方言和古漢語的中州韻輸入法拼音方案 Collection of phonetic spelling schemas for Sinitic languages and dialects | 83 | Shell | 12/27 |
| 174 | [Toxic-Cat/Airport-toolkit](https://github.com/Toxic-Cat/Airport-toolkit) | 各類方便機場主進行安裝維護的shell腳本 | 83 | Shell | 01/05 |
| 175 | [liungkejin/Bash-Games](https://github.com/liungkejin/Bash-Games) | LINUX终端下的贪吃蛇(Snake), 屏保(ClockSaver), 俄罗斯方块(Tetris)游戏(使用Bash shell编写) | 82 | Shell | 10/16 |
| 176 | [jas502n/gitlab-SSRF-redis-RCE](https://github.com/jas502n/gitlab-SSRF-redis-RCE) | GitLab 11.4.7 SSRF配合redis远程执行代码 | 80 | Shell | 04/24 |
| 177 | [yanhuacuo/98wubi-tables](https://github.com/yanhuacuo/98wubi-tables) | 98五笔基础码表 | 80 | Shell | 01/06 |
| 178 | [YCF/Hackintosh-EFI-for-deskmini-310-i3-8100](https://github.com/YCF/Hackintosh-EFI-for-deskmini-310-i3-8100) | deskmini 310+i3-8100 的 hackintosh(黑苹果)EFI 配置 | 80 | Shell | 02/06 |
| 179 | [daliansky/Lenovo-Air13-IWL-Hackintosh](https://github.com/daliansky/Lenovo-Air13-IWL-Hackintosh) | 联想小新Air 13 IWL笔记本EFI | 78 | Shell | 01/03 |
| 180 | [cjy37/linux-install-script](https://github.com/cjy37/linux-install-script) | 自动安装 docker \| rancher \| k8s \| mysql \| redis \| haproxy \| mongodb \| nginx \| Node.js \| mosquitto (MQTT server) | 77 | Shell | 07/19 |
| 181 | [lovezzzxxx/liverecord](https://github.com/lovezzzxxx/liverecord) | 自动录播并自动备份,支持youtube频道、twitcast频道、twitch频道、openrec频道、niconico生放送、niconico社区、niconico频道、mirrativ频道、reality频道、17live频道、bilibili频道、streamlink支持的直播网址、ffmpeg支持的m3u8地址 | 75 | Shell | 01/07 |
| 182 | [athlonreg/AppleALC-ALCPlugFix](https://github.com/athlonreg/AppleALC-ALCPlugFix) | 简单制作AppleALC驱动声卡并解决耳机、外放切换以及麦克风无输入 | 74 | Shell | 09/01 |
| 183 | [MFrank2016/GotoSSH](https://github.com/MFrank2016/GotoSSH) | Automatic login SSH (一键登录SSH,可直接从跳板机登录到线上服务器) | 74 | Shell | 10/16 |
| 184 | [bookfere/KindleEar-Uploader](https://github.com/bookfere/KindleEar-Uploader) | 适用于 GAE 云端 Shell 的 KindleEar上传脚本。 | 71 | Shell | 09/29 |
| 185 | [analysys/argo-installer](https://github.com/analysys/argo-installer) | 方舟Argo安装工具 | 71 | Shell | 12/26 |
| 186 | [JaderH/GreenBox](https://github.com/JaderH/GreenBox) | :game_die: 娱乐项目,使用 Crontab 定时提交 Commits。点亮绿格子;对就是绿 | 70 | Shell | 01/07 |
| 187 | [primovist/snell.sh](https://github.com/primovist/snell.sh) | snell的一键安装脚本 | 69 | Shell | 10/01 |
| 188 | [huweihuang/kubernetes-notes](https://github.com/huweihuang/kubernetes-notes) | Kubernetes 学习笔记-https://www.huweihuang.com/kubernetes-notes/ | 68 | Shell | 12/11 |
| 189 | [idoop/zentao](https://github.com/idoop/zentao) | auto build docker image for zentao(禅道). | 68 | Shell | 12/02 |
| 190 | [darkhandz/XPS15-9550-Mojave](https://github.com/darkhandz/XPS15-9550-Mojave) | DELL XPS15 9550 10.14 黑苹果 配置 | 68 | Shell | 05/22 |
| 191 | [TimeBye/kubeadm-ha](https://github.com/TimeBye/kubeadm-ha) | kubeadm-ha 使用 kubeadm 进行高可用 kubernetes 集群搭建,利用 ansible-playbook 实现自动化安装,既提供一键安装脚本,也可以根据 playbook 分步执行安装各个组件。 | 66 | Shell | 01/06 |
| 192 | [ibisheng/onlyoffice-deploy](https://github.com/ibisheng/onlyoffice-deploy) | onlyoffice 一键安装 :毕升文档包括drive和在线文件服务功能。其中drive实现文件的在线管理,组织结构权限,分享,团队协作等,文件的全文检索等功能;在线文件服务能够处理word,ppt,excel格式文件的带水印预览以及多人协同编辑,另外还能处理pdf,视频,音频文件的预览以及实现了100多种文本文件带语法高亮的预览 | 65 | Shell | 01/04 |
| 193 | [cjybyjk/powercfg_generator](https://github.com/cjybyjk/powercfg_generator) | 用于CPU调度作者生成powercfg和卡刷包 | 65 | Shell | 08/28 |
| 194 | [zq99299/note-book](https://github.com/zq99299/note-book) | 新笔记本,java、git、elasticsearch、mycat、设计模式、gradle、vue, 等 。vuepress 构建的 Markdown 笔记。 | 64 | Shell | 09/26 |
| 195 | [mdrights/LiveSlak](https://github.com/mdrights/LiveSlak) | 中文化的隐私加强 GNU/Linux 系统 - Forked from Alien Bob's powerful building script for Slackware Live. | 64 | Shell | 01/01 |
| 196 | [apachecn/awesome-article-recomm](https://github.com/apachecn/awesome-article-recomm) | 优质博文推荐计划 | 63 | Shell | 09/18 |
| 197 | [apachecn/stanford-game-theory-notes-zh](https://github.com/apachecn/stanford-game-theory-notes-zh) | 📖斯坦福博弈论中文笔记 | 62 | Shell | 10/08 |
| 198 | [1265578519/kangle](https://github.com/1265578519/kangle) | kangle web server 最强网站性能服务器架设软件 | 62 | Shell | 01/03 |
| 199 | [WuOtto/MacImagesetGenerator](https://github.com/WuOtto/MacImagesetGenerator) | 2个脚本文件,帮助你在Mac上,生成Xcode可使用的APP图标和启动图。 | 61 | Shell | 04/28 |
| 200 | [BlockchainOne/WeChat](https://github.com/BlockchainOne/WeChat) | 区块链技术指北(ChainONE)社区微信群价值信息汇总。 | 61 | Shell | 01/05 |
⬆ [回到目录](#目录)
<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.5k | C | 12/27 |
| 2 | [QSCTech/zju-icicles](https://github.com/QSCTech/zju-icicles) | 浙江大学课程攻略共享计划 | 15.2k | C | 12/07 |
| 3 | [Awesome-HarmonyOS/HarmonyOS](https://github.com/Awesome-HarmonyOS/HarmonyOS) | A curated list of awesome things related to HarmonyOS. 华为鸿蒙操作系统。 | 13.4k | C | 09/09 |
| 4 | [bingoogolapple/BGAQRCode-Android](https://github.com/bingoogolapple/BGAQRCode-Android) | QRCode 扫描二维码、扫描条形码、相册获取图片后识别、生成带 Logo 二维码、支持微博微信 QQ 二维码扫描样式 | 6.3k | C | 11/02 |
| 5 | [huangz1990/redis-3.0-annotated](https://github.com/huangz1990/redis-3.0-annotated) | 带有详细注释的 Redis 3.0 代码(annotated Redis 3.0 source code)。 | 5.8k | C | 10/16 |
| 6 | [EZLippi/Tinyhttpd](https://github.com/EZLippi/Tinyhttpd) | Tinyhttpd 是J. David Blackstone在1999年写的一个不到 500 行的超轻量型 Http Server,用来学习非常不错,可以帮助我们真正理解服务器程序的本质。官网:http://tinyhttpd.sourceforge.net | 4.3k | C | 06/13 |
| 7 | [nonstriater/Learn-Algorithms](https://github.com/nonstriater/Learn-Algorithms) | 算法学习笔记 | 4.3k | C | 11/06 |
| 8 | [Meituan-Dianping/SQLAdvisor](https://github.com/Meituan-Dianping/SQLAdvisor) | 输入SQL,输出索引优化建议 | 4.1k | C | 04/10 |
| 9 | [SecWiki/windows-kernel-exploits](https://github.com/SecWiki/windows-kernel-exploits) | windows-kernel-exploits Windows平台提权漏洞集合 | 3.8k | C | 07/29 |
| 10 | [Tencent/TencentOS-tiny](https://github.com/Tencent/TencentOS-tiny) | 腾讯物联网终端操作系统 | 3.7k | C | 01/07 |
| 11 | [mabeijianxi/small-video-record](https://github.com/mabeijianxi/small-video-record) | 利用FFmpeg视频录制微信小视频与其压缩处理 | 3.1k | C | 07/13 |
| 12 | [SecWiki/linux-kernel-exploits](https://github.com/SecWiki/linux-kernel-exploits) | linux-kernel-exploits Linux平台提权漏洞集合 | 3.1k | C | 12/09 |
| 13 | [miloyip/json-tutorial](https://github.com/miloyip/json-tutorial) | 从零开始的 JSON 库教程 | 3.0k | C | 09/02 |
| 14 | [linw7/Skill-Tree](https://github.com/linw7/Skill-Tree) | 🐼 准备秋招,欢迎来树上取果实 | 2.6k | C | 02/26 |
| 15 | [Sunzxyong/Tiny](https://github.com/Sunzxyong/Tiny) | an image compression framework.(一个高保真、高压缩比的图片压缩框架) | 2.4k | C | 02/17 |
| 16 | [y123456yz/reading-code-of-nginx-1.9.2](https://github.com/y123456yz/reading-code-of-nginx-1.9.2) | nginx-1.9.2源码通读分析注释,带详尽函数中文分析注释以及相关函数流程调用注释,最全面的nginx源码阅读分析中文注释,更新完毕(nginx源码学习交流QQ群:568892619) | 2.2k | C | 07/30 |
| 17 | [huangz1990/annotated_redis_source](https://github.com/huangz1990/annotated_redis_source) | 带有详细注释的 Redis 2.6 源码 | 2.1k | C | 01/01 |
| 18 | [WizTeam/WizQTClient](https://github.com/WizTeam/WizQTClient) | 为知笔记跨平台客户端 | 2.1k | C | 11/29 |
| 19 | [snooda/net-speeder](https://github.com/snooda/net-speeder) | net-speeder 在高延迟不稳定链路上优化单线程下载速度 | 2.1k | C | 07/12 |
| 20 | [firmianay/CTF-All-In-One](https://github.com/firmianay/CTF-All-In-One) | CTF竞赛入门指南 | 1.6k | C | 10/12 |
| 21 | [yangchaojiang/yjPlay](https://github.com/yangchaojiang/yjPlay) | 一个支持自定义UI布局,流式API, 加密,直播 ,亮度,音量,快进等手势 ,广告视频预览,多种加载模式 ,多种分辨率切换 ,多种封面图, 自定义数据源,列表播放,倍数播放,边播变缓存<font color="red">不是使用AndroidVideoCache</font>,离线播放,神奇的播放器 | 1.5k | C | 08/30 |
| 22 | [pymumu/smartdns](https://github.com/pymumu/smartdns) | A local DNS server to obtain the fastest website IP for the best Internet experience, 一个本地DNS服务器,获取最快的网站IP,获得最佳上网体验。 | 1.5k | C | 12/29 |
| 23 | [zlgopen/awtk](https://github.com/zlgopen/awtk) | AWTK = Toolkit AnyWhere(为嵌入式、手机和PC打造的通用GUI系统) | 1.5k | C | 01/07 |
| 24 | [guanzhi/GmSSL](https://github.com/guanzhi/GmSSL) | 支持国密SM2/SM3/SM4/SM9/ZUC/SSL的OpenSSL分支 | 1.5k | C | 12/31 |
| 25 | [microshow/RxFFmpeg](https://github.com/microshow/RxFFmpeg) | 🔥RxFFmpeg 是基于 ( FFmpeg 4.0 + X264 + mp3lame + fdk-aac ) 编译的适用于 Android 平台的音视频编辑、视频剪辑的快速处理框架,包含以下功能(视频拼接,转码,压缩,裁剪,片头片尾,分离音视频,变速,添加静态贴纸和gif动态贴纸,添加字幕,添加滤镜,添加背景音乐,加速减速视频,倒放音视频,音频裁剪,变声,混音,图片合成视频,视频解码图片等主流特色功能 | 1.5k | C | 01/05 |
| 26 | [reactnativecn/react-native-pushy](https://github.com/reactnativecn/react-native-pushy) | ReactNative中文网推出的代码热更新服务 | 1.5k | C | 12/29 |
| 27 | [yangjie10930/EpMedia](https://github.com/yangjie10930/EpMedia) | Android上基于FFmpeg开发的视频处理框架,简单易用,体积小,帮助使用者快速实现视频处理功能。包含以下功能:剪辑,裁剪,旋转,镜像,合并,分离,变速,添加LOGO,添加滤镜,添加背景音乐,加速减速视频,倒放音视频。 | 1.3k | C | 06/10 |
| 28 | [ShadowsocksR-Live/shadowsocksr-native](https://github.com/ShadowsocksR-Live/shadowsocksr-native) | 从容翻越党国敏感日 ShadowsocksR (SSR) native implementation for all platforms, GFW terminator | 1.2k | C | 12/22 |
| 29 | [liexusong/php-beast](https://github.com/liexusong/php-beast) | PHP source code encrypt module (PHP源码加密模块) | 1.2k | C | 09/11 |
| 30 | [xufuji456/FFmpegAndroid](https://github.com/xufuji456/FFmpegAndroid) | android端基于FFmpeg实现音频剪切、拼接、转码、混音、编解码;视频剪切、水印、截图、转码、编解码、转Gif动图、画面拼接、视频倒播;音视频合成与分离;音视频解码、同步与播放;FFmpeg本地推流、H264与RTMP实时推流直播;OpenGL+GPUImage实时滤镜;FFmpeg滤镜:素描、色彩平衡、hue、lut、模糊、九宫格等;基于IjkPlayer修改支持RTSP超低延时直播(局域网1080P延时130ms)、暂停、静音,多路投屏直播 | 1.2k | C | 01/07 |
| 31 | [chiakge/Linux-NetSpeed](https://github.com/chiakge/Linux-NetSpeed) | 将Linux现常用的网络加速集成在一起 | 1.2k | C | 01/04 |
| 32 | [baoleiji/QilinBaoleiji](https://github.com/baoleiji/QilinBaoleiji) | 堡垒机-麒麟堡垒机,集堡垒机、SSLVPN-堡垒机内置、动态口令-堡垒机内置、应用审计-堡垒机内置、数据库审计-堡垒机内置、CA证书-堡垒机内置-堡垒机内置、云桌面-堡垒机内置、密码自动修改为一体的堡垒机系统 | 1.1k | C | 03/06 |
| 33 | [cetus-tools/cetus](https://github.com/cetus-tools/cetus) | 专注于稳定、性能和分布式事务的MySQL数据库中间件(其中性能测试在开源数据库中间件排名第一) | 1.1k | C | 12/25 |
| 34 | [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.0k | C | 11/30 |
| 35 | [quickjs-zh/QuickJS](https://github.com/quickjs-zh/QuickJS) | QuickJS是一个小型并且可嵌入的Javascript引擎,它支持ES2020规范,包括模块,异步生成器和代理器。 | 1.0k | C | 01/07 |
| 36 | [starrtc/starrtc-server](https://github.com/starrtc/starrtc-server) | 免费IM系统,IM即时通信消息系统(含一对一文字聊天,群聊,聊天室),免费一对一voip实时通话,录屏,webrtc服务端,免费直播连麦,互动直播,视频直播,RTSP拉流,RTMP推流,语音对讲,免费在线会议,视频会议等服务端程序,支持物联网平台,✨万水千山总是情,来个star行不行✨ | 919 | C | 12/27 |
| 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 数据库 | 884 | C | 12/30 |
| 38 | [cx9208/bbrplus](https://github.com/cx9208/bbrplus) | 编译了dog250大神的bbr修正版 | 854 | C | 07/10 |
| 39 | [Ewenwan/ShiYanLou](https://github.com/Ewenwan/ShiYanLou) | 学习C & C++ & python&汇编语言 数据结构 算法 操作系统 单片机 linux 面试 | 817 | C | 12/30 |
| 40 | [gatieme/LDD-LinuxDeviceDrivers](https://github.com/gatieme/LDD-LinuxDeviceDrivers) | Linux内核与设备驱动程序学习笔记 | 785 | C | 10/27 |
| 41 | [BruceWind/AESJniEncrypt](https://github.com/BruceWind/AESJniEncrypt) | Reach high security in Android. (ndk实现AES,key在native中,防止被二次打包){长期维护,请star,勿fork} | 710 | C | 09/12 |
| 42 | [netwarm007/GameEngineFromScratch](https://github.com/netwarm007/GameEngineFromScratch) | 配合我的知乎专栏写的项目 | 682 | C | 01/07 |
| 43 | [cppla/ServerStatus](https://github.com/cppla/ServerStatus) | 云探针、多服务器探针、云监控、多服务器云监控,演示: https://tz.cloudcpp.com/ | 680 | C | 12/31 |
| 44 | [y123456yz/Reading-and-comprehense-linux-Kernel-network-protocol-stack](https://github.com/y123456yz/Reading-and-comprehense-linux-Kernel-network-protocol-stack) | linux内核网络协议栈源码阅读分析注释--带详尽中文分析注释以及相关流程分析调用注释,对理解分析内核协议栈源码很有帮助(源码学习交流QQ群:568892619) | 635 | C | 04/07 |
| 45 | [feiskyer/sdn-handbook](https://github.com/feiskyer/sdn-handbook) | SDN网络指南(SDN Handbook) | 632 | C | 12/29 |
| 46 | [hurley25/hurlex-doc](https://github.com/hurley25/hurlex-doc) | hurlex 小内核分章节代码和文档 | 595 | C | 11/05 |
| 47 | [momotech/MLN](https://github.com/momotech/MLN) | 高性能、小巧、易上手的移动跨平台开发框架. A framework for building Mobile cross-platform apps with Lua | 590 | C | 01/07 |
| 48 | [jianfengye/nginx-1.0.14_comment](https://github.com/jianfengye/nginx-1.0.14_comment) | nginx源码中文注释版 | 583 | C | 01/14 |
| 49 | [armink/FreeModbus_Slave-Master-RTT-STM32](https://github.com/armink/FreeModbus_Slave-Master-RTT-STM32) | Add master mode to FreeModbus. \| 在 FreeModbus 中添加主机模式 | 580 | C | 06/18 |
| 50 | [yianwillis/vimcdoc](https://github.com/yianwillis/vimcdoc) | Vim 中文文档计划 | 552 | C | 01/07 |
| 51 | [rock-app/fabu.love](https://github.com/rock-app/fabu.love) | 应用发布平台类似fir.im/蒲公英,支持检查更新,灰度发布等等.Demo地址:https://fabu.apppills.com/ | 535 | C | 12/26 |
| 52 | [armink/CmBacktrace](https://github.com/armink/CmBacktrace) | Advanced fault backtrace library for ARM Cortex-M series MCU \| ARM Cortex-M 系列 MCU 错误追踪库 | 532 | C | 07/16 |
| 53 | [larryli/PuTTY](https://github.com/larryli/PuTTY) | PuTTY 中文版,原 http://code.google.com/p/puttycn 项目。 | 524 | C | 11/01 |
| 54 | [ustcwpz/USTC-CS-Courses-Resource](https://github.com/ustcwpz/USTC-CS-Courses-Resource) | USTC计算机学院课程资源 | 508 | C | 05/29 |
| 55 | [feiskyer/linux-perf-examples](https://github.com/feiskyer/linux-perf-examples) | 极客时间《Linux 性能优化实战》案例 | 484 | C | 03/24 |
| 56 | [lqian/light-LPR](https://github.com/lqian/light-LPR) | Light-LPR是一个瞄准可以在嵌入式设备、手机端和普通的x86平台上运行的车牌识别开源项目,旨在支持各种场景的车牌识别,车牌字符识别准确率超99.95%,综合识别准确率超过99%,支持目前国内所有的车牌识别,觉得好用的一定要加星哦。 | 476 | C | 12/05 |
| 57 | [wulijun/php-ext-trie-filter](https://github.com/wulijun/php-ext-trie-filter) | php extension for spam word filter based on Double-Array Trie tree, it can detect if a spam word exists in a text message. 关键词过滤扩展,用于检查一段文本中是否出现敏感词,基于Double-Array Trie 树实现。 | 472 | C | 02/13 |
| 58 | [Tassandar/OSASK](https://github.com/Tassandar/OSASK) | <30天自制操作系统>-----用GIT管理你的自制操作系统。 | 466 | C | 05/26 |
| 59 | [u0u0/Quick-Cocos2dx-Community](https://github.com/u0u0/Quick-Cocos2dx-Community) | Cocos2d-Lua 社区版 | 464 | C | 01/01 |
| 60 | [linyiqun/Redis-Code](https://github.com/linyiqun/Redis-Code) | redis键值数据库源码分析 | 463 | C | 04/23 |
| 61 | [LeechanX/Data-Structures-and-Algorithms-in-C](https://github.com/LeechanX/Data-Structures-and-Algorithms-in-C) | 所有基础数据结构和算法的纯C语言实现,如各自排序、链表、栈、队列、各种树以及应用、图算法、字符串匹配算法、回溯、并查集等,献丑了 | 456 | C | 10/13 |
| 62 | [aliyun/iotkit-embedded](https://github.com/aliyun/iotkit-embedded) | 高速镜像: https://code.aliyun.com/linkkit/c-sdk | 407 | C | 12/31 |
| 63 | [del-xiong/screw-plus](https://github.com/del-xiong/screw-plus) | 开源php加密运行扩展,基于screw二次开发,暂时只能在linux下运行 | 405 | C | 12/06 |
| 64 | [lihancong/tonyenc](https://github.com/lihancong/tonyenc) | 高性能、跨平台的 PHP7 代码加密扩展 (A high performance and cross-platform encrypt extension for PHP source code) | 399 | C | 11/01 |
| 65 | [vimfung/LuaScriptCore](https://github.com/vimfung/LuaScriptCore) | 一款简单易用的多平台Lua桥接器,目前支持在iOS、Mac OS X、Android以及Unity3D中使用,让原生环境与Lua无障碍沟通。 | 396 | C | 11/20 |
| 66 | [mengzhidaren/Vlc-sdk-lib](https://github.com/mengzhidaren/Vlc-sdk-lib) | vlc-android The latest compilation video playback libraries 最新视频库支持录屏 欢迎star | 382 | C | 07/02 |
| 67 | [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 ... | 382 | C | 01/02 |
| 68 | [armink/SFUD](https://github.com/armink/SFUD) | An using JEDEC's SFDP standard serial (SPI) flash universal driver library \| 一款使用 JEDEC SFDP 标准的串行 (SPI) Flash 通用驱动库 | 368 | C | 05/30 |
| 69 | [CasterWx/AntzOS](https://github.com/CasterWx/AntzOS) | :earth_asia: Develop an intelligent AI half terminal half graphical operating system Antz. 一个随心所欲制造的操作系统Antz。 | 365 | C | 10/14 |
| 70 | [wanliyang1990/wlplayer](https://github.com/wanliyang1990/wlplayer) | NDK+FFmpeg+OpenSL+OpenGL+Mediacodec 的视频播放SDK源码和实例APP,很适合学习ffmpeg解码流程和Android中NDK实战开发 | 360 | C | 12/06 |
| 71 | [osgochina/donkeyid](https://github.com/osgochina/donkeyid) | php扩展,64位自增id生成器 | 357 | C | 01/22 |
| 72 | [CoderMJLee/MJCodeObfuscation](https://github.com/CoderMJLee/MJCodeObfuscation) | 一个用于代码混淆和字符串加密的Mac小Demo | 354 | C | 01/04 |
| 73 | [yaouser/C](https://github.com/yaouser/C) | linux下的C语言及关于kernel的介绍 | 348 | C | 10/01 |
| 74 | [nauxliu/opencc4php](https://github.com/nauxliu/opencc4php) | 简繁体转换 PHP 扩展 | 347 | C | 09/12 |
| 75 | [chenall/grub4dos](https://github.com/chenall/grub4dos) | 外部命令和工具源码:https://github.com/chenall/grubutils 下载: | 344 | C | 12/30 |
| 76 | [zsummer/breeze](https://github.com/zsummer/breeze) | 一个C++的轻量级的分布式服务器引擎, 架构思想为一切皆service. | 335 | C | 06/08 |
| 77 | [wenjun1055/c](https://github.com/wenjun1055/c) | C语言学习代码 | 316 | C | 10/16 |
| 78 | [czqasngit/objc_msgSend_hook](https://github.com/czqasngit/objc_msgSend_hook) | objc_msgSend之精简且完整的hook核心功能,并且还有详细注释 | 308 | C | 04/29 |
| 79 | [hurley25/Hurlex-II](https://github.com/hurley25/Hurlex-II) | 第二版重新设计和构思,参考一些优秀的实现进行补充设计和编码。 | 307 | C | 04/22 |
| 80 | [picasso250/spring12](https://github.com/picasso250/spring12) | 春节十二响 | 307 | C | 06/27 |
| 81 | [tangsilian/android-vuln](https://github.com/tangsilian/android-vuln) | 安卓内核提权漏洞分析 | 290 | C | 04/27 |
| 82 | [huangz1990/blog](https://github.com/huangz1990/blog) | 我的个人博客。 | 281 | C | 12/31 |
| 83 | [elarity/data-structure-php-clanguage](https://github.com/elarity/data-structure-php-clanguage) | 对于数据结构和算法类的东西,我工作有些年份了,大学也有所涉猎,积累了一些内容,不高产不母猪,打我自己脸 | 279 | C | 09/10 |
| 84 | [979451341/Audio-and-video-learning-materials](https://github.com/979451341/Audio-and-video-learning-materials) | 基于Android的音视频学习资料代码集合第一弹,这是第二弹https://github.com/979451341/AudioVideoStudyCodeTwo | 264 | C | 10/16 |
| 85 | [idealclover/NJU-Review-Materials](https://github.com/idealclover/NJU-Review-Materials) | 📝 南哪课程复习资料 Review materials for NJU | 260 | C | 07/18 |
| 86 | [xausky/UnityModManager](https://github.com/xausky/UnityModManager) | 一个便捷的程序可以修改游戏内资源包括:Unity游戏资源,Wwise音频资源。 | 260 | C | 01/06 |
| 87 | [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) | 254 | C | 12/11 |
| 88 | [ma6174/fmpi](https://github.com/ma6174/fmpi) | 树莓派 FM发射台 | 251 | C | 07/09 |
| 89 | [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后台程 ... | 248 | C | 08/20 |
| 90 | [updateing/minieap](https://github.com/updateing/minieap) | 可扩展的 802.1x 客户端,带有锐捷 v3 (v4) 算法插件支持 | 245 | C | 05/18 |
| 91 | [lichuang/Lua-5.1.4-codedump](https://github.com/lichuang/Lua-5.1.4-codedump) | Lua 5.1.4版本代码注释 | 242 | C | 05/12 |
| 92 | [chronolaw/annotated_nginx](https://github.com/chronolaw/annotated_nginx) | Annotated Nginx Source(中文) | 240 | C | 12/27 |
| 93 | [chankeh/net-lenrning-reference](https://github.com/chankeh/net-lenrning-reference) | TCP/IP网络编程笔记 | 233 | C | 03/11 |
| 94 | [byhook/ffmpeg4android](https://github.com/byhook/ffmpeg4android) | 音视频学习实践,从移植ffmpeg库到android平台,混合编译x264库以及fdk-aac库,到相机音频采集编码推流到RTMP服务器的学习记录 | 231 | C | 07/27 |
| 95 | [MiEcosystem/miio_open](https://github.com/MiEcosystem/miio_open) | 智能硬件接入文档 | 227 | C | 12/26 |
| 96 | [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系统 | 223 | C | 10/14 |
| 97 | [chexiongsheng/build_xlua_with_libs](https://github.com/chexiongsheng/build_xlua_with_libs) | 为xLua集成几个常用库,方便使用 | 219 | C | 06/18 |
| 98 | [zhangqhn/mybase](https://github.com/zhangqhn/mybase) | 一个极简的数据库Demo | 212 | C | 05/04 |
| 99 | [QingdaoU/Judger](https://github.com/QingdaoU/Judger) | Online judge sandbox based on seccomp \| OnlineJudge 安全沙箱 | 211 | C | 07/30 |
| 100 | [shineframe/shineframe](https://github.com/shineframe/shineframe) | 高性能超轻量级C++开发库及服务器编程框架 | 206 | C | 12/28 |
| 101 | [loveuav/BlueSkyFlightControl](https://github.com/loveuav/BlueSkyFlightControl) | 天穹飞控:致力于打造中国最强大的多旋翼开源飞控! | 205 | C | 09/28 |
| 102 | [dpull/skynet-mingw](https://github.com/dpull/skynet-mingw) | 对skynet无任何改动的windows版 | 204 | C | 12/31 |
| 103 | [konosubakonoakua/Various_MCU_Debugger_DIY](https://github.com/konosubakonoakua/Various_MCU_Debugger_DIY) | 各种LInk大合集 | 203 | C | 06/09 |
| 104 | [gatieme/AderXCoding](https://github.com/gatieme/AderXCoding) | 介绍各类语言,库,系统编程以及算法的学习 | 193 | C | 06/23 |
| 105 | [wsbblyy/wechat-pc-hook-api](https://github.com/wsbblyy/wechat-pc-hook-api) | 微信 pc hook | 190 | C | 09/13 |
| 106 | [Philon/arts](https://github.com/Philon/arts) | 每周一道算法一本书 | 189 | C | 11/17 |
| 107 | [OliverLew/PAT](https://github.com/OliverLew/PAT) | PAT OJ exercises in C language 浙江大学PAT纯C语言题解,欢迎改进建议 | 187 | C | 11/24 |
| 108 | [kingwang666/AppAddUpdate](https://github.com/kingwang666/AppAddUpdate) | Android app 增量更新 | 187 | C | 07/03 |
| 109 | [david-pzh/X-Bot](https://github.com/david-pzh/X-Bot) | 一个自己设计的超迷你写字机器人,软件、电路、结构完全开源。 | 186 | C | 11/09 |
| 110 | [ljrkernel/LearningLinuxKernel](https://github.com/ljrkernel/LearningLinuxKernel) | 和我一起学习Linux内核吧 | 184 | C | 11/30 |
| 111 | [hecongqing/2018-daguan-competition](https://github.com/hecongqing/2018-daguan-competition) | 2018年"达观杯"文本智能处理挑战赛-长文本分类-rank4 | 178 | C | 07/22 |
| 112 | [Baidu-AIP/speech-vad-demo](https://github.com/Baidu-AIP/speech-vad-demo) | 集成Webrtc的VAD,用于切分音频文件 | 178 | C | 09/27 |
| 113 | [EasyDarwin/EasyAACEncoder](https://github.com/EasyDarwin/EasyAACEncoder) | 开源项目:简单、高效、稳定的开源音频编码库,支持将各种音频数据(G.711A/PCMA、G.711U/PCMU、G726、PCM)转码成AAC(with adts)格式,其中aac编码部分采用的是业界公认的faac库,EasyAACEncoder支持Windows、Linux、ARM等多种平台,能够广泛应用于各种移动终端设备、嵌入式设备和流媒体转码服务器! | 178 | C | 08/19 |
| 114 | [wangbojing/NtyTcp](https://github.com/wangbojing/NtyTcp) | 单线程用户态TCP/IP协议栈,epoll实现,包含服务器案例,并发测试案例 | 177 | C | 03/28 |
| 115 | [fanchy/h2engine](https://github.com/fanchy/h2engine) | H2服务器引擎架构是轻量级的,与其说是引擎,个人觉得称之为平台更为合适。因为它封装的功能少之又少,但是提供了非常简洁方便的扩展机制,使得可以用C++、python、lua、js、php来开发具体的服务器功能。H2引擎的灵感来源于web服务器Apache。 | 177 | C | 11/26 |
| 116 | [hui6075/mosquitto-cluster](https://github.com/hui6075/mosquitto-cluster) | a built-in, autonomous Mosquitto Cluster implementation. MQTT集群. | 174 | C | 02/14 |
| 117 | [y123456yz/Reading-and-comprehense-redis-cluster](https://github.com/y123456yz/Reading-and-comprehense-redis-cluster) | 分布式NOSQL redis源码阅读中文分析注释,带详尽注释以及相关流程调用注释,提出改造点,redis cluster集群功能、节点扩容、槽位迁移、failover故障切换、一致性选举完整分析,对理解redis源码很有帮助,解决了source insight中文注释乱码问题,更新完毕(redis源码学习交流QQ群:568892619) | 174 | C | 04/10 |
| 118 | [golaced/Oldx_fly_controller](https://github.com/golaced/Oldx_fly_controller) | 多旋翼开源飞控 更新中 请Star支持一下 | 174 | C | 03/31 |
| 119 | [jntass/TASSL](https://github.com/jntass/TASSL) | 支持SM2 SM3 SM4国密算法和国密openssl协议的TASSL 新版基于openssl-1.1.1b版本已经更新到tassl-1.1.1b_R_0.8版本:https://github.com/jntass/TASSL-1.1.1b | 174 | C | 03/26 |
| 120 | [zlgopen/ametal](https://github.com/zlgopen/ametal) | 芯片级裸机软件包,定义了一系列常用外设(如:UART、IIC、SPI、ADC等)的通用接口,基于通用接口的应用可以跨平台复用。 | 174 | C | 12/30 |
| 121 | [redknotmiaoyuqiao/Fractal](https://github.com/redknotmiaoyuqiao/Fractal) | 生成好看的Fractal图形 | 160 | C | 07/08 |
| 122 | [zpoint/Redis-Internals](https://github.com/zpoint/Redis-Internals) | Analyze redis 5.0 source code through diagrams \| 图解 Redis 5.0 | 159 | C | 01/06 |
| 123 | [usbxyz/CAN-Bootloader](https://github.com/usbxyz/CAN-Bootloader) | 使用USB2XXX实现的CAN Bootloader功能,实现CAN节点固件远程升级 | 158 | C | 02/24 |
| 124 | [froghui/yolanda](https://github.com/froghui/yolanda) | 极客时间<网络编程实战>代码 | 157 | C | 12/08 |
| 125 | [eboxmaker/eBox_Framework](https://github.com/eboxmaker/eBox_Framework) | ebox是类似于arduino的一层api,简化stm32编程 | 151 | C | 12/10 |
| 126 | [codeqian/ffmpegCLDemo](https://github.com/codeqian/ffmpegCLDemo) | 在android中使用ffmpeg库合成图片及音视频 | 150 | C | 01/15 |
| 127 | [AngelKitty/review_the_national_post-graduate_entrance_examination](https://github.com/AngelKitty/review_the_national_post-graduate_entrance_examination) | 🌟复习考研的那些事儿(清华912考研)~~ | 148 | C | 01/01 |
| 128 | [ljrkernel/linuxmooc](https://github.com/ljrkernel/linuxmooc) | 陈莉君教授《Linux内核分析与应用》课程课件、动手实践源代码、实验手册、实验源代码 | 144 | C | 10/03 |
| 129 | [ksvc/KSYDiversityLive_Android](https://github.com/ksvc/KSYDiversityLive_Android) | 金山云SDK多样化接入方式,提供直播全链路数据开放,兼容美颜、连麦、贴纸、多种摄像头输入,共建移动直播大生态。 | 143 | C | 02/25 |
| 130 | [AngelLiang/ESP8266-Demos](https://github.com/AngelLiang/ESP8266-Demos) | ESP8266示例工程集合 | 143 | C | 02/26 |
| 131 | [pannzh/Airkiss](https://github.com/pannzh/Airkiss) | A source code implementation of Wechat(微信) Airkiss protocol | 140 | C | 01/02 |
| 132 | [murphyzhao/FlexibleButton](https://github.com/murphyzhao/FlexibleButton) | 灵活的按键处理库(Flexible Button)\| 按键驱动 \| 支持单击、双击、连击、长按、自动消抖 \| 灵活适配中断和低功耗 \| 按需实现组合按键 | 140 | C | 12/27 |
| 133 | [YJBeetle/unnpk](https://github.com/YJBeetle/unnpk) | 解包网易游戏NeoX引擎NPK文件,如阴阳师、魔法禁书目录。 | 137 | C | 12/22 |
| 134 | [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. | 135 | C | 09/25 |
| 135 | [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数据库, 欢迎使用 | 135 | C | 12/29 |
| 136 | [wangbojing/NtyCo](https://github.com/wangbojing/NtyCo) | 纯c版本的协程实现,汇编切换,调度器实现,包含服务器端案例,客户端并发测试案例 | 134 | C | 06/24 |
| 137 | [zmrbak/PcWeChatHooK](https://github.com/zmrbak/PcWeChatHooK) | 云课堂《2019 PC微信 探秘》示例代码 | 134 | C | 12/26 |
| 138 | [chenyahui/AnnotatedCode](https://github.com/chenyahui/AnnotatedCode) | 知名开源代码库的注释版,包括libco、coroutine、muduo等 | 133 | C | 01/03 |
| 139 | [HX-IoT/ESP32-Developer-Guide](https://github.com/HX-IoT/ESP32-Developer-Guide) | 开源一小步之ESP32开发指南 | 131 | C | 10/10 |
| 140 | [Shies/PHP7-forp](https://github.com/Shies/PHP7-forp) | 用c语言编写forp PHP分析器是一个轻量级的PHP扩展提供脚本的调用堆栈,CPU和内存使用 | 131 | C | 01/22 |
| 141 | [ha-excited/BigNews](https://github.com/ha-excited/BigNews) | Android增量更新框架差分包升级 | 131 | C | 04/09 |
| 142 | [UncP/aili](https://github.com/UncP/aili) | the fastest in-memory index in the East 东半球最快并发索引 | 128 | C | 11/08 |
| 143 | [wuxx/nanoDAP](https://github.com/wuxx/nanoDAP) | 建议大家star此仓库,仓库会持续更新。由于部分淘宝卖家“借鉴”实验室出品的nanoDAP详情及描述,请大家认准实验室官方链接 | 123 | C | 12/28 |
| 144 | [PHZ76/DesktopSharing](https://github.com/PHZ76/DesktopSharing) | 桌面共享, 支持RTSP转发, RTSP推流, RTMP推流。 | 122 | C | 10/25 |
| 145 | [NEWPLAN/SMx](https://github.com/NEWPLAN/SMx) | 国家商用加密算法 SMx(SM2,SM3,SM4) | 121 | C | 09/17 |
| 146 | [shishujuan/data-structure-algorithms](https://github.com/shishujuan/data-structure-algorithms) | 数据结构与算法基础专栏 | 117 | C | 10/20 |
| 147 | [xiayuanquan/FFmpegDemo](https://github.com/xiayuanquan/FFmpegDemo) | 视频直播和播放转码器框架 | 117 | C | 01/06 |
| 148 | [kyzhouhzau/Clinical-NER](https://github.com/kyzhouhzau/Clinical-NER) | 面向中文电子病历的命名实体识别 | 116 | C | 08/27 |
| 149 | [switch-iot/hin2n](https://github.com/switch-iot/hin2n) | n2n support for mobiles(n2n手机版) | 116 | C | 06/17 |
| 150 | [miniLV/Interview-series](https://github.com/miniLV/Interview-series) | iOS从入门到进阶 - 技术合集 | 115 | C | 12/30 |
| 151 | [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两种模式! | 115 | C | 01/02 |
| 152 | [dustpg/StepFC](https://github.com/dustpg/StepFC) | Make FC(NES) Emulator Step-by-Step 一步一步模拟红白机 | 115 | C | 01/03 |
| 153 | [QAX-A-Team/ptrace](https://github.com/QAX-A-Team/ptrace) | a PoC for Linux to get around agents that log commands being executed, without root privilege. Linux低权限模糊化执行的程序名和参数,避开基于execve系统调用监控的命令日志 | 114 | C | 05/08 |
| 154 | [maxlicheng/stm32f4_ucosii_lwip_mqtt](https://github.com/maxlicheng/stm32f4_ucosii_lwip_mqtt) | 基于正点原子STM32F4开发板和阿里云物联网平台的MQTT项目 | 110 | C | 11/12 |
| 155 | [armfly/H7-TOOL_STM32H7_App](https://github.com/armfly/H7-TOOL_STM32H7_App) | 单片机APP程序 | 106 | C | 12/29 |
| 156 | [havenxie/stm32-iap-uart-boot](https://github.com/havenxie/stm32-iap-uart-boot) | STM32 IAP(UART模式)的BOOT部分 | 105 | C | 08/29 |
| 157 | [EasyDarwin/EasyAudioDecoder](https://github.com/EasyDarwin/EasyAudioDecoder) | 开源项目:简单、高效、稳定的开源音频解码库,能够将G.711A/PCMA、G.711U/PCMU、G726、AAC等音频格式转码到Linear PCM,再提供给流媒体播放器进行音频播放,EasyAudioDecoder支持跨平台,支持Android & iOS,目前已稳定应用于EasyPlayer、EasyClient等多个开源及商业项目! | 104 | C | 07/01 |
| 158 | [zxystd/IntelBluetoothFirmware](https://github.com/zxystd/IntelBluetoothFirmware) | 尝试加载Intel蓝牙驱动固件 | 102 | C | 01/02 |
| 159 | [nns779/px4_drv](https://github.com/nns779/px4_drv) | PLEX PX-W3U4/Q3U4/W3PE4/Q3PE4 用の非公式版Linuxドライバ | 99 | C | 01/01 |
| 160 | [iFindTA/PBGMService](https://github.com/iFindTA/PBGMService) | 国密算法 sm2/sm3/sm4 Objc封装!作者观点:重点不是算法而是密钥安全性! | 98 | C | 08/13 |
| 161 | [suxin1412/suos](https://github.com/suxin1412/suos) | 一个简陋的操作系统 | 98 | C | 12/06 |
| 162 | [RunningGump/gsxt_captcha](https://github.com/RunningGump/gsxt_captcha) | 破解含语序问题的点击验证码 | 97 | C | 11/01 |
| 163 | [liu2guang/LittlevGL2RTT](https://github.com/liu2guang/LittlevGL2RTT) | The littlevgl graphics library for RT-Thread. \| 基于 RT-Thread 移植的littlevgl图形库. | 96 | C | 05/22 |
| 164 | [alibaba/iot_remote_access](https://github.com/alibaba/iot_remote_access) | 阿里云IoT远程运维套装之远程访问设备侧源码 | 92 | C | 12/02 |
| 165 | [grpc-nebula/grpc-nebula](https://github.com/grpc-nebula/grpc-nebula) | 微服务治理框架简介 | 92 | C | 10/18 |
| 166 | [y123456yz/tcprstat](https://github.com/y123456yz/tcprstat) | 服务器时延统计工具,在原有功能基础上,增加时延阈值统计,记录超过阈值的包个数,并把数据包时间戳记录到日志文件,这样可以根据时间戳快速定位到抓包文件中对应的包,从而可以快速定位到大时延包,避免了人肉搜索抓包文件,提高问题排查效率,所有参数可配置。可以以在线方式和离线方式分析redis、memcached、mysql、nginx等请求应答系统的时延,并定位慢响应数据报文。(源码学习交流QQ群:568892619) | 91 | C | 03/18 |
| 167 | [mrpre/atls](https://github.com/mrpre/atls) | A light TLS implementation used for learning: TLS 1.0 TLS 1.1 TLS 1.2 TLS 1.3 GMSSL 1.1(国密SSL) based on libcrypto.so. | 90 | C | 05/21 |
| 168 | [Chocolatl/qqlight-websocket](https://github.com/Chocolatl/qqlight-websocket) | QQLight机器人WebSocket-RPC插件,让你能够使用任何语言编写QQ机器人程序 | 90 | C | 12/14 |
| 169 | [979451341/AudioVideoStudyCodeTwo](https://github.com/979451341/AudioVideoStudyCodeTwo) | 基于Android FFmpeg 音视频学习代码第二弹,这是第一弹https://github.com/979451341/Audio-and-video-learning-materials | 89 | C | 10/16 |
| 170 | [rokid/docs](https://github.com/rokid/docs) | Rokid 语音开放平台,包含技能开发、语音设备接入及智能家居接入的文档、SDK 及示例代码 | 89 | C | 01/05 |
| 171 | [MRdoulestar/whatMiner](https://github.com/MRdoulestar/whatMiner) | 整理和收集遇见的各种恶意挖矿样本以供研究和学习(欢迎小伙伴们一起维护) | 89 | C | 02/23 |
| 172 | [vulhub/redis-rogue-getshell](https://github.com/vulhub/redis-rogue-getshell) | 利用redis 4.x/5.x master/slave 模式getshell | 89 | C | 07/11 |
| 173 | [wonderkun/CTFENV](https://github.com/wonderkun/CTFENV) | 为应对CTF比赛而搭建的各种环境 | 86 | C | 11/11 |
| 174 | [DingHe/unpv13e](https://github.com/DingHe/unpv13e) | UNIX网络编程 卷1:套接字联网API(第3版)源代码 | 85 | C | 06/04 |
| 175 | [YJLAugus/Inios](https://github.com/YJLAugus/Inios) | 从零开发一32位操作系统 | 83 | C | 01/02 |
| 176 | [albuer/heapsnap](https://github.com/albuer/heapsnap) | HeapSnap 是一个定位内存泄露的工具,适用于Android平台。 | 82 | C | 12/02 |
| 177 | [Djangoogle/AndroidModule](https://github.com/Djangoogle/AndroidModule) | Android 通用模块封装 | 81 | C | 12/09 |
| 178 | [AngelKitty/Computer-Virus](https://github.com/AngelKitty/Computer-Virus) | 👻计算机病毒以及相应的专杀工具的研发 | 80 | C | 08/06 |
| 179 | [lmnos/lmosem](https://github.com/lmnos/lmosem) | 支持ARM,x86平台的嵌入式操作系统内核 | 79 | C | 03/28 |
| 180 | [userpro/MemoryPool](https://github.com/userpro/MemoryPool) | 一个极简内存池实现 | 78 | C | 10/14 |
| 181 | [tidyjiang8/esp-idf-zh](https://github.com/tidyjiang8/esp-idf-zh) | ESP-IDF 中文文档 | 75 | C | 10/17 |
| 182 | [wanliyang1990/FFmpeg-Android](https://github.com/wanliyang1990/FFmpeg-Android) | FFmpeg(3.3.2)移植Android平台-例子 | 74 | C | 05/03 |
| 183 | [jiejieTop/ButtonDrive](https://github.com/jiejieTop/ButtonDrive) | 纯C语言实现的一个按键驱动,可移植性强,支持单双击、连按、连按释放、长按;采用回调处理按键事件(自定义消抖时间),使用只需3步,1:创建按键,2:按键事件与回调处理函数链接映射。然后周期检查按键。 | 73 | C | 04/28 |
| 184 | [zhouchangxun/ngx_healthcheck_module](https://github.com/zhouchangxun/ngx_healthcheck_module) | nginx module for upstream servers health check. support stream and http upstream. 该模块可以为Nginx提供主动式后端服务器健康检查的功能(同时支持四层和七层后端服务器的健康检测) | 71 | C | 09/21 |
| 185 | [heidsoft/devops](https://github.com/heidsoft/devops) | 系统架构实践 | 70 | C | 01/22 |
| 186 | [xuliker/kde](https://github.com/xuliker/kde) | 记录我的内核成长贡献之路。kernel-dev-environment | 70 | C | 01/07 |
| 187 | [chroblert/domainWeakPasswdCheck](https://github.com/chroblert/domainWeakPasswdCheck) | 内网安全·域账号弱口令审计 | 70 | C | 12/27 |
| 188 | [AntSwordProject/ant_php_extension](https://github.com/AntSwordProject/ant_php_extension) | PHP 扩展, 用于 PHP-FPM、FastCGI、LD_PRELOAD等模式下突破 disabled_functions | 69 | C | 04/25 |
| 189 | [no5ix/kcpp](https://github.com/no5ix/kcpp) | A single-header-only kcp session implementation (dynamic redundancy + reliable udp/unreliable channel) & A annotated kcp. 一个单头文件的kcp会话实现(动态冗余+可靠udp/非可靠双通道), 另附一个注释版kcp. | 69 | C | 03/21 |
| 190 | [trumanzhao/luna](https://github.com/trumanzhao/luna) | 基于C++17的lua/C++绑定库,以及lua的二进制序列化等辅助代码 | 69 | C | 12/19 |
| 191 | [MustangYM/WeChatICU-ForMac](https://github.com/MustangYM/WeChatICU-ForMac) | Mac版企业微信消息防撤回, 聊天会话去水印 | 69 | C | 12/17 |
| 192 | [ExtremeMart/dev-docs](https://github.com/ExtremeMart/dev-docs) | 服务于极市平台开发者的项目,提供SDK接口文件规范与常见问题示例代码。欢迎所有开发者一起参与示例代码编写。 | 68 | C | 01/02 |
| 193 | [bolanlaike/Linux-0.01](https://github.com/bolanlaike/Linux-0.01) | Linux 0.01源码及注释 | 68 | C | 01/15 |
| 194 | [guanshuicheng/invoice](https://github.com/guanshuicheng/invoice) | 增值税发票OCR识别,使用flask微服务架构,识别type:增值税电子普通发票,增值税普通发票,增值税专用发票;识别字段为:发票代码、发票号码、开票日期、校验码、税后金额等 | 67 | C | 12/17 |
| 195 | [yhaolpz/FFmpegCmd](https://github.com/yhaolpz/FFmpegCmd) | Android端强大的音视频编辑App(FFmpeg 命令方式) | 67 | C | 06/16 |
| 196 | [phonegapX/AirPlay](https://github.com/phonegapX/AirPlay) | 关于AirPlay的一些逆向研究成果。 | 65 | C | 03/11 |
| 197 | [haidragon/pcPCHunter](https://github.com/haidragon/pcPCHunter) | x64 盗版pcPCHunter | 65 | C | 03/29 |
| 198 | [iyakexi/app-pay-demo](https://github.com/iyakexi/app-pay-demo) | iOS集成支付宝&微信支付Demo (Swift版) | 65 | C | 01/14 |
| 199 | [zl03jsj/mupdf](https://github.com/zl03jsj/mupdf) | 扩展mupdf 实现图像数字证书签名, 手写笔迹数字证书签名, 插入图片, 手写签名注释..改进手写批注,实现模拟真实手写的算法, annot自定义数据, annot插入,删除密码校验等功能...支持ios, windows, mac, linux, c++, java, android | 65 | C | 12/08 |
| 200 | [isrc-cas/pacific](https://github.com/isrc-cas/pacific) | 方舟编译器的Runtime参考实现。这不是华为官方项目,是PLCT实验室的培训项目。 | 65 | C | 10/23 |
⬆ [回到目录](#目录)
<br/>
## C++
| # | Repository | Description | Stars | Language | Updated |
| ---- | ------------------------------------------------------------ | ------------------------------------------------------------ | ----- | -------- | ------- |
| 1 | [vnpy/vnpy](https://github.com/vnpy/vnpy) | 基于Python的开源量化交易平台开发框架 | 10.6k | C++ | 01/09 |
| 2 | [huihut/interview](https://github.com/huihut/interview) | 📚 C/C++ 技术面试基础知识总结,包括语言、程序库、数据结构、算法、系统、网络、链接装载库等知识及面试经验、招聘、内推等信息。 | 8.9k | C++ | 01/02 |
| 3 | [zhongyang219/TrafficMonitor](https://github.com/zhongyang219/TrafficMonitor) | 这是一个用于显示当前网速、CPU及内存利用率的桌面悬浮窗软件,并支持任务栏显示,支持更换皮肤。 | 6.1k | C++ | 12/28 |
| 4 | [me115/design_patterns](https://github.com/me115/design_patterns) | 图说设计模式 | 4.1k | C++ | 09/05 |
| 5 | [Ewenwan/MVision](https://github.com/Ewenwan/MVision) | 机器人视觉 移动机器人 VS-SLAM ORB-SLAM2 深度学习目标检测 yolov3 行为检测 opencv PCL 机器学习 无人驾驶 | 3.8k | C++ | 10/19 |
| 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.5k | C++ | 01/01 |
| 7 | [anyRTC/anyRTC-RTMP-OpenSource](https://github.com/anyRTC/anyRTC-RTMP-OpenSource) | RTMP 推流器,RTMP(HLS)秒开播放器,跨平台(Win,IOS,Android)开源代码 | 3.3k | C++ | 06/06 |
| 8 | [wuye9036/CppTemplateTutorial](https://github.com/wuye9036/CppTemplateTutorial) | 中文的C++ Template的教学指南。与知名书籍C++ Templates不同,该系列教程将C++ Templates作为一门图灵完备的语言来讲授,以求帮助读者对Meta-Programming融会贯通。(正在施工中) | 3.2k | C++ | 01/04 |
| 9 | [zeusees/HyperLPR](https://github.com/zeusees/HyperLPR) | 基于深度学习高性能中文车牌识别 High Performance Chinese License Plate Recognition Framework. | 2.9k | C++ | 01/03 |
| 10 | [anhkgg/SuperWeChatPC](https://github.com/anhkgg/SuperWeChatPC) | 超级微信电脑客户端,支持多开、防消息撤销、语音消息备份...开放WeChatSDK | 2.8k | C++ | 11/04 |
| 11 | [yedf/handy](https://github.com/yedf/handy) | 简洁易用的C++11网络库 / 支持单机千万并发连接 / a simple C++11 network server framework | 2.6k | C++ | 01/07 |
| 12 | [TonyChen56/WeChatRobot](https://github.com/TonyChen56/WeChatRobot) | PC版微信机器人 | 2.5k | C++ | 12/26 |
| 13 | [wang-bin/QtAV](https://github.com/wang-bin/QtAV) | A cross-platform multimedia framework based on Qt and FFmpeg(https://github.com/wang-bin/avbuild). High performance. User & developer friendly. Supports Android, iOS, Windows store and desktops. 基于Qt和FFmpeg的跨平台高性能音视频播放框架 | 2.2k | C++ | 01/03 |
| 14 | [liuchuo/PAT](https://github.com/liuchuo/PAT) | 🍭 浙江大学PAT题解(C/C++/Java/Python) - 努力成为萌萌的程序媛~ | 1.7k | C++ | 12/02 |
| 15 | [yanyiwu/cppjieba](https://github.com/yanyiwu/cppjieba) | "结巴"中文分词的C++版本 | 1.6k | C++ | 10/24 |
| 16 | [cool2528/baiduCDP](https://github.com/cool2528/baiduCDP) | 百度网盘下载神器 | 1.5k | C++ | 01/02 |
| 17 | [balloonwj/flamingo](https://github.com/balloonwj/flamingo) | flamingo 一款高性能轻量级开源即时通讯软件 | 1.4k | C++ | 11/18 |
| 18 | [JuncoJet/unlimited-landeng-for-win](https://github.com/JuncoJet/unlimited-landeng-for-win) | 无限流量灯,你懂的,我不解释 | 1.4k | C++ | 12/19 |
| 19 | [Tencent/plato](https://github.com/Tencent/plato) | 腾讯高性能分布式图计算框架Plato | 1.1k | C++ | 12/25 |
| 20 | [arkingc/note](https://github.com/arkingc/note) | 学习笔记整理📚 | 1.0k | C++ | 06/19 |
| 21 | [richardchien/coolq-http-api](https://github.com/richardchien/coolq-http-api) | CoolQ 插件实现通过 HTTP 上报事件信息及调用接口 | 1.0k | C++ | 01/06 |
| 22 | [tongtzeho/PKUCourse](https://github.com/tongtzeho/PKUCourse) | 北大计算机课程大作业 | 997 | C++ | 03/23 |
| 23 | [QuantBox/XAPI2](https://github.com/QuantBox/XAPI2) | 统一行情交易接口第2版 | 846 | C++ | 12/06 |
| 24 | [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 | 820 | C++ | 11/04 |
| 25 | [bcosorg/bcos](https://github.com/bcosorg/bcos) | BCOS平台(Be Credible, Open & Secure) | 820 | C++ | 08/14 |
| 26 | [qdtroy/DuiLib_Ultimate](https://github.com/qdtroy/DuiLib_Ultimate) | duilib 旗舰版-高分屏、多语言、样式表、资源管理器、异形窗口、窗口阴影、简单动画 | 814 | C++ | 12/23 |
| 27 | [Tencent/Pebble](https://github.com/Tencent/Pebble) | Pebble分布式开发框架 | 787 | C++ | 10/24 |
| 28 | [lhy0403/Qv2ray](https://github.com/lhy0403/Qv2ray) | :star2: Linux/Windows/macOS 跨平台 v2ray GUI :hammer: 使用 c++ 编写,支持订阅,扫描二维码,支持自定义路由编辑 :star2: | 709 | C++ | 01/09 |
| 29 | [GoSSIP-SJTU/Armariris](https://github.com/GoSSIP-SJTU/Armariris) | 孤挺花(Armariris) -- 由上海交通大学密码与计算机安全实验室维护的LLVM混淆框架 | 680 | C++ | 06/03 |
| 30 | [F8LEFT/FUPK3](https://github.com/F8LEFT/FUPK3) | 演示视频https://pan.baidu.com/s/1HH_-TQGca1NLoSqzvOPB3Q 密码:izm3 | 675 | C++ | 04/15 |
| 31 | [fasiondog/hikyuu](https://github.com/fasiondog/hikyuu) | Hikyuu Quant Framework 基于C++/Python的开源量化交易研究框架 | 666 | C++ | 01/09 |
| 32 | [188080501/JQTools](https://github.com/188080501/JQTools) | 基于Qt开发的小工具包 | 649 | C++ | 12/17 |
| 33 | [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. 我在慕课网上的课程《玩儿转算法面试》示例代码。课程的更多更新内容及辅助练习也将逐步添加进这个代码仓。 | 646 | C++ | 06/09 |
| 34 | [didi/AoE](https://github.com/didi/AoE) | AoE (AI on Edge,终端智能,边缘计算) 是一个终端侧AI集成运行时环境 (IRE),帮助开发者提升效率。 | 627 | C++ | 01/09 |
| 35 | [AnkerLeng/Cpp-0-1-Resource](https://github.com/AnkerLeng/Cpp-0-1-Resource) | C++ 匠心之作 从0到1入门资料 | 567 | C++ | 10/06 |
| 36 | [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 | 557 | C++ | 12/17 |
| 37 | [foxleezh/AOSP](https://github.com/foxleezh/AOSP) | 这是一个连载的博文系列,我将持续为大家提供尽可能透彻的Android源码分析 | 524 | C++ | 02/20 |
| 38 | [shuax/GreenChrome](https://github.com/shuax/GreenChrome) | 增强Chrome的工具 | 522 | C++ | 07/22 |
| 39 | [xiongziliang/ZLToolKit](https://github.com/xiongziliang/ZLToolKit) | 一个基于C++11的轻量级网络框架,基于线程池技术可以实现大并发网络IO | 497 | C++ | 01/07 |
| 40 | [qicosmos/cosmos](https://github.com/qicosmos/cosmos) | c++11基础库 | 458 | C++ | 01/24 |
| 41 | [SOUI2/soui](https://github.com/SOUI2/soui) | SOUI是目前为数不多的轻量级可快速开发window桌面程序开源DirectUI库.其前身为Duiengine,更早期则是源自于金山卫士开源版本UI库Bkwin.经过多年持续更新方得此库 | 453 | C++ | 12/21 |
| 42 | [binbibi/XTeamLView](https://github.com/binbibi/XTeamLView) | 每次启动Teamview都生成不一样的ID,让Teamview 不弹窗 疑似商业活动 | 444 | C++ | 08/13 |
| 43 | [netease-im/NIM_Duilib_Framework](https://github.com/netease-im/NIM_Duilib_Framework) | 网易云信Windows应用界面开发框架(基于Duilib) | 438 | C++ | 12/17 |
| 44 | [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 ... | 461 | C++ | 07/01 |
| 45 | [Ewenwan/ORB_SLAM2_SSD_Semantic](https://github.com/Ewenwan/ORB_SLAM2_SSD_Semantic) | 动态语义SLAM 目标检测+VSLAM+光流/多视角几何动态物体检测+octomap地图+目标数据库 | 461 | C++ | 11/09 |
| 46 | [tencentyun/TRTCSDK](https://github.com/tencentyun/TRTCSDK) | 腾讯云TRTC音视频服务,国内下载镜像: | 420 | C++ | 01/09 |
| 47 | [Making-It/Code](https://github.com/Making-It/Code) | 面试高频算法题总结,个人博客 | 384 | C++ | 07/14 |
| 48 | [tome34/frameDemoMo2](https://github.com/tome34/frameDemoMo2) | Android组件化项目框架 | 375 | C++ | 02/18 |
| 49 | [liuchuo/LeetCode](https://github.com/liuchuo/LeetCode) | 🍡 LeetCode Online Judge刷题题解(Java/C++/Python/Ruby/Swift) | 359 | C++ | 11/27 |
| 50 | [hedada-hc/pc_wechat_hook](https://github.com/hedada-hc/pc_wechat_hook) | pc微信hook 课程例子源码 最新版pc微信hook全套课程尽在网易云课堂 搜索微信逆向即可 pcwx pcweichat 微信hook C语言开发 | 356 | C++ | 09/16 |
| 51 | [toby20130333/QtQuickExample](https://github.com/toby20130333/QtQuickExample) | 基于QtQuick的入门例子,方便大家入门学习 | 355 | C++ | 06/27 |
| 52 | [itisyang/playerdemo](https://github.com/itisyang/playerdemo) | 一个视频播放器,开源版 potplayer ,用于总结播放器开发技术。 | 348 | C++ | 07/15 |
| 53 | [Chuyu-Team/CPPHelper](https://github.com/Chuyu-Team/CPPHelper) | C++基础辅助类库,比如异步进行-Thread,安全句柄-CHandle,资源守卫-Guard,XML解析-rapidxml,以及其他注册表、文件基础操作。用于更加高效、安全的进行C++开发。温馨提示:至少需要支持C++0x标准的编译器。 | 330 | C++ | 12/19 |
| 54 | [feiyangqingyun/QWidgetDemo](https://github.com/feiyangqingyun/QWidgetDemo) | Qt编写的一些开源的demo,预计会有100多个,一直持续更新完善,代码简洁易懂注释详细,每个都是独立项目,非常适合初学者,代码随意传播使用,拒绝打赏和捐赠,欢迎留言评论! | 330 | C++ | 01/08 |
| 55 | [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. 精炼、高效、稳定 ... | 317 | C++ | 08/02 |
| 56 | [Yuqi-Zest/Vehicle-License-Plate-Recognition](https://github.com/Yuqi-Zest/Vehicle-License-Plate-Recognition) | 基于数字图像处理和深度学习的车牌定位,字符分割和字符识别项目,包含项目收集数据集和cnn模型,以及项目的说明资料 | 313 | C++ | 09/03 |
| 57 | [anhkgg/SuperDllHijack](https://github.com/anhkgg/SuperDllHijack) | SuperDllHijack:A general DLL hijack technology, don't need to manually export the same function interface of the DLL, so easy! 一种通用Dll劫持技术,不再需要手工导出Dll的函数接口了 | 307 | C++ | 11/08 |
| 58 | [jing-interactive/DancingGaga](https://github.com/jing-interactive/DancingGaga) | AI 尬舞机 | 303 | C++ | 06/20 |
| 59 | [yuanyuanxiang/SimpleRemoter](https://github.com/yuanyuanxiang/SimpleRemoter) | 基于gh0st的远程控制器:实现了终端管理、进程管理、窗口管理、远程桌面、文件管理、语音管理、视频管理、服务管理、注册表管理等功能,优化全部代码及整理排版,修复内存泄漏缺陷,程序运行稳定。此项目初版见:https://github.com/zibility/Remote | 299 | C++ | 09/07 |
| 60 | [AZE98/CQUPT-Study-Data](https://github.com/AZE98/CQUPT-Study-Data) | 在重邮本科阶段积累的实验报告、PPT等课程资料及课外学习资料。 | 299 | C++ | 12/22 |
| 61 | [xiufengcheng/DATASTRUCTURE](https://github.com/xiufengcheng/DATASTRUCTURE) | 数据结构 | 298 | C++ | 09/20 |
| 62 | [KangLin/RabbitIm](https://github.com/KangLin/RabbitIm) | 玉兔即时通讯。开源的跨平台的的即时通信系统。包括文本、音视频、白板、远程控制 | 294 | C++ | 12/18 |
| 63 | [MKXJun/DirectX11-With-Windows-SDK](https://github.com/MKXJun/DirectX11-With-Windows-SDK) | 现代DX11系列教程:使用Windows SDK(C++)开发Direct3D 11.x | 293 | C++ | 01/09 |
| 64 | [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) | 288 | C++ | 01/06 |
| 65 | [gloomyfish1998/opencv_tutorial](https://github.com/gloomyfish1998/opencv_tutorial) | 基于OpenCV4.0 C++/Python SDK的案例代码演示程序与效果图像 | 287 | C++ | 12/09 |
| 66 | [ylmbtm/GameProject3](https://github.com/ylmbtm/GameProject3) | 游戏服务器框架,网络层分别用SocketAPI、Boost Asio、Libuv三种方式实现, 框架内使用共享内存,无锁队列,对象池,内存池来提高服务器性能。还包含一个不断完善的Unity 3D游戏,游戏包含大量完整资源,坐骑,宠物,伙伴,装备, 这些均己实现上阵和穿戴, 并可进入副本战斗,多人玩法也己实现, 持续开发中。 | 284 | C++ | 12/26 |
| 67 | [district10/cmake-templates](https://github.com/district10/cmake-templates) | Some CMake Templates (examples). Qt, Boost, OpenCV, C++11, etc 一些栗子 | 282 | C++ | 04/04 |
| 68 | [sukhoeing/aoapc-bac2nd-keys](https://github.com/sukhoeing/aoapc-bac2nd-keys) | 算法竞赛入门经典第2版-习题选解 | 271 | C++ | 10/22 |
| 69 | [openvanilla/McBopomofo](https://github.com/openvanilla/McBopomofo) | 小麥注音輸入法 | 271 | C++ | 10/29 |
| 70 | [qinwf/jiebaR](https://github.com/qinwf/jiebaR) | Chinese text segmentation with R. R语言中文分词 (文档已更新 🎉 :https://qinwenfeng.com/jiebaR/ ) | 270 | C++ | 12/13 |
| 71 | [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界面图形化工具 | 270 | C++ | 09/08 |
| 72 | [cuitaixiang/LOAM_NOTED](https://github.com/cuitaixiang/LOAM_NOTED) | loam code noted in Chinese(loam中文注解版) | 265 | C++ | 10/09 |
| 73 | [silence1772/GreedySnake](https://github.com/silence1772/GreedySnake) | c++经典项目贪吃蛇游戏控制台版,详细注释 | 263 | C++ | 01/06 |
| 74 | [TonyChen56/HackerTools](https://github.com/TonyChen56/HackerTools) | 使用MFC编写的病毒技术合集 | 259 | C++ | 07/27 |
| 75 | [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、飞马等平台的高频交易策略。 | 258 | C++ | 11/09 |
| 76 | [liu-jianhao/Cpp-Design-Patterns](https://github.com/liu-jianhao/Cpp-Design-Patterns) | C++设计模式 | 254 | C++ | 06/23 |
| 77 | [callmePicacho/Data-Structres](https://github.com/callmePicacho/Data-Structres) | 浙江大学《数据结构》上课笔记 + 数据结构实现 + 课后题题解 | 252 | C++ | 09/04 |
| 78 | [eritpchy/Fingerprint-pay-magisk-wechat](https://github.com/eritpchy/Fingerprint-pay-magisk-wechat) | 微信指纹支付 (Fingerprint pay for WeChat) | 251 | C++ | 12/24 |
| 79 | [eecrazy/ACM](https://github.com/eecrazy/ACM) | ACM模板和一些题目的代码实现 | 250 | C++ | 06/14 |
| 80 | [liuchuo/Lanqiao](https://github.com/liuchuo/Lanqiao) | 🍦 蓝桥杯竞赛练习题的题解(C/C++/Java)-努力成为萌萌的程序媛~ | 250 | C++ | 10/27 |
| 81 | [yaocoder/HPNetServer](https://github.com/yaocoder/HPNetServer) | 高性能TCP网络服务器程序 | 246 | C++ | 04/04 |
| 82 | [no5ix/realtime-server](https://github.com/no5ix/realtime-server) | A realtime dedicated game server ( FPS / MOBA ). 一个实时的专用游戏服务器. | 245 | C++ | 04/02 |
| 83 | [HuTianQi/JNIOOR](https://github.com/HuTianQi/JNIOOR) | 基于C++模板函数与Fluent API设计的JNI反射库,极大的简化JNI反射调用,提高JNI开发效率与稳定性 | 240 | C++ | 11/12 |
| 84 | [iostalks/Algorithms](https://github.com/iostalks/Algorithms) | 数据结构和算法专项训练营。✍️✍️✍️ | 232 | C++ | 10/31 |
| 85 | [zeusees/HyperVID](https://github.com/zeusees/HyperVID) | 开源移动端车型识别 Mobile Plateform Vehicle Identification Model | 231 | C++ | 01/05 |
| 86 | [zhongyang219/MusicPlayer2](https://github.com/zhongyang219/MusicPlayer2) | 这是一款可以播放常见音频格式的音频播放器。支持歌词显示、歌词卡拉OK样式显示、歌词在线下载、歌词编辑、歌曲标签识别、Win10小娜搜索显示歌词、频谱分析、音效设置、任务栏缩略图按钮、主题颜色等功能。 播放内核为BASS音频库(V2.4)。 | 220 | C++ | 01/09 |
| 87 | [chatopera/clause](https://github.com/chatopera/clause) | :horse_racing: Chatopera语义理解系统 | 214 | C++ | 01/02 |
| 88 | [QingSimon/VINS-Mono-code-annotation](https://github.com/QingSimon/VINS-Mono-code-annotation) | VINS-Mono代码注释以及公式推导 | 208 | C++ | 01/27 |
| 89 | [FengGuanxi/HDU-Experience](https://github.com/FengGuanxi/HDU-Experience) | 用于向所有杭电学子分享在杭电的知识与经验 | 208 | C++ | 01/09 |
| 90 | [songbaoming/DouDiZhu](https://github.com/songbaoming/DouDiZhu) | AI斗地主游戏 | 204 | C++ | 07/30 |
| 91 | [zc8424/LazzyQuant](https://github.com/zc8424/LazzyQuant) | 期货/期权量化交易系统 | 203 | C++ | 01/05 |
| 92 | [Beipy/Mac-Hackintosh-Clover](https://github.com/Beipy/Mac-Hackintosh-Clover) | PC主机黑苹果引导驱动文件 | 200 | C++ | 07/30 |
| 93 | [Captain1986/CaptainBlackboard](https://github.com/Captain1986/CaptainBlackboard) | 船长关于机器学习、计算机视觉和工程技术的总结和分享 | 199 | C++ | 10/27 |
| 94 | [Meituan-Dianping/octo-ns](https://github.com/Meituan-Dianping/octo-ns) | OCTO-NS是美团OCTO服务治理体系服务注册发现功能的套件, 包括SDK(Java/C++)、本地服务治理代理(SgAgent), 服务缓存(NSC), 云端健康检查(Scanner)等基础组件,目前已经在全公司大规模使用 | 194 | C++ | 11/13 |
| 95 | [Samuel-0-0/phicomm_dc1-esphome](https://github.com/Samuel-0-0/phicomm_dc1-esphome) | 斐讯DC1插座自制固件方式接入开源智能家居平台 | 193 | C++ | 01/07 |
| 96 | [Greedysky/TTKWidgetTools](https://github.com/Greedysky/TTKWidgetTools) | QWidget 自定义控件集合 持续更新中...... | 193 | C++ | 01/04 |
| 97 | [gzc426/leetcode](https://github.com/gzc426/leetcode) | 每天一道leetcode | 185 | C++ | 04/05 |
| 98 | [richenyunqi/CCF-CSP-and-PAT-solution](https://github.com/richenyunqi/CCF-CSP-and-PAT-solution) | CCF CSP和PAT考试题解(使用C++11语法) | 185 | C++ | 12/12 |
| 99 | [ylcangel/crack_dexhelper](https://github.com/ylcangel/crack_dexhelper) | 梆梆企业加固详细逆向分析过程, 包含两种对该加固的脱壳机(直接解密classes0.jar和基于frida hook) | 181 | C++ | 07/25 |
| 100 | [Yuxin-Alpha/Notes](https://github.com/Yuxin-Alpha/Notes) | 平时工作+学习 踩坑记录 | 180 | C++ | 12/16 |
| 101 | [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. | 179 | C++ | 01/09 |
| 102 | [wangzuohuai/WebRunLocal](https://github.com/wangzuohuai/WebRunLocal) | 牛插(PluginOK)中间件(原名:本网通)是一个实现浏览器网页(web page)与本地程序(local app)之间进行双向调用的强兼容、轻量级、易开发、低成本、安全可控、可扩展的插件开发框架。通过牛插中间件可实现JavaScript脚本无障碍访问本地电脑的硬件、调用本地系统API及相关组件,可彻底解决ActiveX组件在Chrome、FireFox、Opera、Edge等浏览器各版本中的兼容使用问题 | 177 | C++ | 12/12 |
| 103 | [wlgq2/uv-cpp](https://github.com/wlgq2/uv-cpp) | libuv wrapper in C++11 /libuv C++11网络库 | 175 | C++ | 01/09 |
| 104 | [itas109/CSerialPort](https://github.com/itas109/CSerialPort) | 基于C++的轻量级跨平台串口类库Lightweight cross-platform serial port library based on C++ | 175 | C++ | 01/08 |
| 105 | [david-pzh/DoubiBot](https://github.com/david-pzh/DoubiBot) | 魔性机械臂小机器人 | 173 | C++ | 07/22 |
| 106 | [woniu201/WnStock](https://github.com/woniu201/WnStock) | WnStock是个开源的查看股票行情软件,使用VC++/MFC开发,支持查看实时股票行情,分时走势,历史K线(日线,周线和月线),MACD指标线,5日10日20日均线,实时成交量,历史成交量,和量比等数据指标。 | 171 | C++ | 04/30 |
| 107 | [xyzzy-022/xyzzy](https://github.com/xyzzy-022/xyzzy) | xyzzy 0.2.2 系列。有志により開発が継続中です。 | 168 | C++ | 08/14 |
| 108 | [TechBooster/C89-FirstStepReVIEW-v2](https://github.com/TechBooster/C89-FirstStepReVIEW-v2) | 技術書をかこう!はじめてのRe:VIEWは技術書の執筆ノウハウ本のリポジトリです | 167 | C++ | 02/12 |
| 109 | [php-extension-research/study](https://github.com/php-extension-research/study) | 手把手教你写PHP协程扩展 | 167 | C++ | 12/02 |
| 110 | [zeusees/HyperLabelImg](https://github.com/zeusees/HyperLabelImg) | 开源图像标注工具(支持人脸关键点/不规则四边形/多边形标注) | 165 | C++ | 09/05 |
| 111 | [itleaks/eos-contract](https://github.com/itleaks/eos-contract) | Tutorial on writing smart contracts on EOS EOS智能合约教程,从零开始学习EOS智能合约, DApp安全漏洞(security)及攻击实践(EOS Contract)(Powered by Itleaks) | 161 | C++ | 01/17 |
| 112 | [ManiiXu/VINS-Mono-Learning](https://github.com/ManiiXu/VINS-Mono-Learning) | VINS-Mono代码注释,仅供学习 | 152 | C++ | 07/16 |
| 113 | [moranzcw/LeetCode-NOTES](https://github.com/moranzcw/LeetCode-NOTES) | LeetCode 算法解答 | 151 | C++ | 01/20 |
| 114 | [dekuan/VwFirewall](https://github.com/dekuan/VwFirewall) | 微盾®VirtualWall®防火墙整套源代码 | 149 | C++ | 11/14 |
| 115 | [esrrhs/fake](https://github.com/esrrhs/fake) | 嵌入式脚本语言 Lightweight embedded scripting language | 148 | C++ | 01/08 |
| 116 | [jaredtao/DesignPattern](https://github.com/jaredtao/DesignPattern) | C++11全套设计模式-23种指针的用法(a full DesignPattern implement with c++11) | 148 | C++ | 01/02 |
| 117 | [zeusees/HyperFT](https://github.com/zeusees/HyperFT) | 开源移动端快速视频人脸跟踪-移动端150FPS+ | 146 | C++ | 11/07 |
| 118 | [MegrezZhu/qmcdump](https://github.com/MegrezZhu/qmcdump) | 一个简单的QQ音乐解码(qmcflac/qmc0/qmc3 转 flac/mp3),仅为个人学习参考用。 | 146 | C++ | 08/30 |
| 119 | [kevinlq/LQFramKit](https://github.com/kevinlq/LQFramKit) | c++ Qt5 implementation of some control(使用C++ Qt5封装的一些控件,以便后期项目中直接使用。这些控件有些是来自于网络有些属于个人封装,代码中都有出处) | 144 | C++ | 07/13 |
| 120 | [tuoxie007/play_with_llvm](https://github.com/tuoxie007/play_with_llvm) | A book about LLVM & Clang(中文开源书:玩转 LLVM) | 142 | C++ | 01/19 |
| 121 | [alrightchiu/SecondRound](https://github.com/alrightchiu/SecondRound) | 初學者寫給初學者的演算法教學 | 141 | C++ | 04/05 |
| 122 | [wanttobeno/AntiDebuggers](https://github.com/wanttobeno/AntiDebuggers) | 30种方法检测程序是否被调试 | 139 | C++ | 04/18 |
| 123 | [ZhouWeikuan/DouDiZhu](https://github.com/ZhouWeikuan/DouDiZhu) | 基于权重的斗地主游戏AI算法,AI algorithms for chinese landlord card game, based on weights | 135 | C++ | 06/03 |
| 124 | [zuoqing1988/ZQCNN-MTCNN-vs-libfacedetection](https://github.com/zuoqing1988/ZQCNN-MTCNN-vs-libfacedetection) | 对比ZQCNN-MTCNN与libfacedetection | 134 | C++ | 04/06 |
| 125 | [q191201771/libchef](https://github.com/q191201771/libchef) | 🍀 c++ standalone header-only basic library. \|\| c++头文件实现无第三方依赖基础库 | 134 | C++ | 10/27 |