forked from GrowingGit/GitHub-Chinese-Top-Charts
-
Notifications
You must be signed in to change notification settings - Fork 0
/
README-Part2.md
1667 lines (1619 loc) · 349 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等服务协议,支持订阅, 支持二维码,剪贴板导入,手动配置,二维码分享等 | 8.3k | Swift | 04/14 |
| 2 | [Caldis/Mos](https://github.com/Caldis/Mos) | 一个用于在 MacOS 上平滑你的鼠标滚动效果或单独设置滚动方向的小工具, 让你的滚轮爽如触控板 \| A lightweight tool used to smooth scrolling and set scroll direction independently for your mouse on MacOS | 4.0k | Swift | 04/13 |
| 3 | [SwiftOldDriver/iOS-Weekly](https://github.com/SwiftOldDriver/iOS-Weekly) | 🇨🇳 老司机 iOS 周报 | 3.0k | Swift | 04/27 |
| 4 | [tid-kijyun/Kanna](https://github.com/tid-kijyun/Kanna) | Kanna(鉋) is an XML/HTML parser for Swift. | 2.0k | Swift | 04/19 |
| 5 | [wxxsw/SwiftTheme](https://github.com/wxxsw/SwiftTheme) | 🎨 Powerful theme/skin manager for iOS 8+ 主题/换肤, 暗色模式 | 1.9k | Swift | 03/04 |
| 6 | [Danie1s/Tiercel](https://github.com/Danie1s/Tiercel) | 简单易用、功能丰富的纯 Swift 下载框架 | 1.7k | Swift | 03/19 |
| 7 | [pujiaxin33/JXSegmentedView](https://github.com/pujiaxin33/JXSegmentedView) | A powerful and easy to use segmented view (segmentedcontrol, pagingview, pagerview, pagecontrol, categoryview) (腾讯新闻、今日头条、QQ音乐、网易云音乐、京东、爱奇艺、腾讯视频、淘宝、天猫、简书、微博等所有主流APP分类切换滚动视图) | 1.1k | Swift | 04/09 |
| 8 | [netyouli/WHC_ConfuseSoftware](https://github.com/netyouli/WHC_ConfuseSoftware) | u3d、cocos2dx、iOS代码混淆、自动翻新专家(WHC_ConfuseSoftware)是一款新一代运行在MAC OS平台的App、完美支持Objc和Swift、U3D、Cocos2dx项目代码的自动翻新(混淆)、支持文件夹名称、文件名、修改资源文件hash值、类名、方法名、属性名、添加混淆函数方法体、添加混淆属性、自动调用生成的混淆方法、字符串混淆加密等。。。功能强大而稳定。 | 937 | Swift | 04/19 |
| 9 | [dengzemiao/DZMeBookRead](https://github.com/dengzemiao/DZMeBookRead) | (支持项目使用)最完整小说阅读器Demo。(仿iReader(掌阅),QQ阅读等常用阅读器阅读页面),支持字体,翻页效果(无效果,覆盖,仿真,上下滚动),字体切换,书签功能,阅读记录,亮度调整,背景颜色切换 等等.. | 865 | Swift | 04/20 |
| 10 | [Harley-xk/MaLiang](https://github.com/Harley-xk/MaLiang) | iOS painting and drawing library based on Metal. 神笔马良有一支神笔(基于 Metal 的涂鸦绘图库) | 837 | Swift | 04/02 |
| 11 | [honghaoz/Ji](https://github.com/honghaoz/Ji) | Ji (戟) is an XML/HTML parser for Swift | 821 | Swift | 01/16 |
| 12 | [JiongXing/PhotoBrowser](https://github.com/JiongXing/PhotoBrowser) | Elegant photo browser in Swift. 图片与视频浏览器。 | 793 | Swift | 03/02 |
| 13 | [gltwy/LTScrollView](https://github.com/gltwy/LTScrollView) | ScrollView嵌套ScrolloView(UITableView 、UICollectionView)解决方案, 支持OC / Swift(持续更新中...)实现原理:http://blog.csdn.net/glt_code/article/details/78576628 | 770 | Swift | 01/03 |
| 14 | [saeipi/KSChart](https://github.com/saeipi/KSChart) | k线图/kline/kchart,已经集成MA/EMA/MACD/KDJ/BOLL/RSI/WR/AVG等指标,新增指标及其方便。适用于股票/区块链交易所等种类App。Swift5编写,数据处理能力优秀,60FPS稳定运行。示例集成websocket,并接入币安数据(需VPN)。 | 667 | Swift | 04/27 |
| 15 | [lb2281075105/LBXMLYFM-Swift](https://github.com/lb2281075105/LBXMLYFM-Swift) | Swift5项目仿写喜马拉雅App,采用MVC+MVVM设计模式,Moya+SwiftyJSON+HandyJSON网络框架和数据解析。数据来源抓包及部分本地json文件 | 665 | Swift | 03/31 |
| 16 | [SherlockQi/HeavenMemoirs](https://github.com/SherlockQi/HeavenMemoirs) | AR相册 Photo Album For AR | 581 | Swift | 03/20 |
| 17 | [zyphs21/HSStockChart](https://github.com/zyphs21/HSStockChart) | Stock Chart include CandleStickChart,TimeLineChart. 股票走势图,包括 K 线图,分时图,手势缩放,拖动 | 561 | Swift | 03/19 |
| 18 | [daomoer/XMLYFM](https://github.com/daomoer/XMLYFM) | swift项目仿写喜马拉雅App,采用MVC+MVVM设计模式,Moya+SwiftyJSON+HandyJSON网络框架和数据解析。数据来源抓包及部分本地json文件 | 439 | Swift | 01/22 |
| 19 | [easyui/EZPlayer](https://github.com/easyui/EZPlayer) | 基于AVPlayer封装的视频播放器,功能丰富,快速集成,可定制性强,支持react-native。 | 336 | Swift | 03/10 |
| 20 | [xjbeta/iina-plus](https://github.com/xjbeta/iina-plus) | Extra danmaku support for iina. (iina 弹幕支持 | 283 | Swift | 04/04 |
| 21 | [DarielChen/iOSTips](https://github.com/DarielChen/iOSTips) | 记录iOS(Swift)开发中的一些知识点、小技巧 | 281 | Swift | 04/10 |
| 22 | [LvJianfeng/LLCycleScrollView](https://github.com/LvJianfeng/LLCycleScrollView) | Swift - 轮播图,文本轮播,支持左右箭头 | 278 | Swift | 01/07 |
| 23 | [choiceyou/FWPopupView](https://github.com/choiceyou/FWPopupView) | 弹窗控件:支持AlertView、Sheet、自定义视图的PopupView。AlertView中可以嵌套自定义视图,各组件的显示隐藏可配置;Sheet仿微信样式;同时提供自定义弹出。更多配置请参考”可设置参数“,提供OC使用Demo。 | 276 | Swift | 03/30 |
| 24 | [zqqf16/SYM](https://github.com/zqqf16/SYM) | A crash log symbolicating Mac app \| 一个图形化的崩溃日志符号化工具 | 270 | Swift | 04/17 |
| 25 | [Xinguang/WechatKit](https://github.com/Xinguang/WechatKit) | 一款快速实现微信第三方登录的框架(Swift版) SDK 1.8.5 | 235 | Swift | 02/24 |
| 26 | [andyRon/swift-algorithm-club-cn](https://github.com/andyRon/swift-algorithm-club-cn) | swift-algorithm-club的翻译。使用Swift学习算法和数据结构。 | 228 | Swift | 02/21 |
| 27 | [lb2281075105/LBU25-Swift](https://github.com/lb2281075105/LBU25-Swift) | Swift5 精仿漫画类App(有妖气漫画),Moya+SwiftyJSON+HandyJSON网络框架和数据解析。数据来源真实接口获得 | 227 | Swift | 03/31 |
| 28 | [ZzzM/HostsToolforMac](https://github.com/ZzzM/HostsToolforMac) | HostsToolforMac是Mac平台下的一个简易工具,来获取最新的hosts更新。 | 219 | Swift | 04/15 |
| 29 | [Coder-TanJX/JXBanner](https://github.com/Coder-TanJX/JXBanner) | 🚀🚀🚀 A super - custom multifunctional framework for banner unlimited rollover diagrams [一个超自定义多功能无限轮播图框架] | 213 | Swift | 03/12 |
| 30 | [SunshineBrother/SwiftTools](https://github.com/SunshineBrother/SwiftTools) | Swift学习 | 207 | Swift | 04/14 |
| 31 | [GTMYang/GTMRefresh](https://github.com/GTMYang/GTMRefresh) | Swift实现的下拉刷新和上拉加载组件 | 199 | Swift | 01/06 |
| 32 | [iosyaowei/JSONConverter](https://github.com/iosyaowei/JSONConverter) | JSONConverter可以快速的把json数据转换生成OC/Swift/Flutter的属性,省去手动创建的麻烦,大大提高iOSer的开发效率 | 189 | Swift | 01/20 |
| 33 | [wxxsw/SwiftUI-WeChat](https://github.com/wxxsw/SwiftUI-WeChat) | 🇨🇳 Learn how to make WeChat with SwiftUI. 微信 7.0 🟢 | 184 | Swift | 04/19 |
| 34 | [Noah37/zhuishushenqi](https://github.com/Noah37/zhuishushenqi) | 追书神器Swift版客户端(非官方)zhuishushenqi简版 [ZDReader](https://github.com/Noah37/ZDReader) ,缩减了大部分无用功能,项目仅10M,有需要的可前往 | 167 | Swift | 03/12 |
| 35 | [zlyBear/BearFree](https://github.com/zlyBear/BearFree) | iOS NetworkExtension ShadowSocket for iOS developer (swift 5) 支持系统小组件开关SS | 166 | Swift | 04/20 |
| 36 | [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第三方客户端)的用户反馈信息 | 146 | Swift | 03/25 |
| 37 | [Liaoworking/Advanced-Swift](https://github.com/Liaoworking/Advanced-Swift) | Notes of Advanced Swift. 《swift进阶》学习笔记 swift 5.1 | 146 | Swift | 04/24 |
| 38 | [Light413/dctt](https://github.com/Light413/dctt) | xx头条【完整项目持续迭代中】(一款本地生活信息发布APP,分享新鲜事、找人找对象等生活服务)。已App Store上架,这里仅供学习交流 | 144 | Swift | 04/22 |
| 39 | [Darren-chenchen/CLImagePickerTool](https://github.com/Darren-chenchen/CLImagePickerTool) | 这是一个多图片选择的控件 | 127 | Swift | 03/27 |
| 40 | [we11cheng/WCPotatso](https://github.com/we11cheng/WCPotatso) | iOS Potatso源码(配置下自己的开发证书就能编译版本) | 125 | Swift | 01/17 |
| 41 | [Tuluobo/Leiter](https://github.com/Tuluobo/Leiter) | 一个基于 NEKit 的网络 Proxy App。 | 124 | Swift | 02/11 |
| 42 | [huangboju/GesturePassword](https://github.com/huangboju/GesturePassword) | GesturePassword 是一个Swift的手势密码库 | 120 | Swift | 01/05 |
| 43 | [heyode/HEPhotoPicker](https://github.com/heyode/HEPhotoPicker) | 自由定制支持视频,图片的相册选择器 | 119 | Swift | 04/09 |
| 44 | [937447974/YJCocoa](https://github.com/937447974/YJCocoa) | YJ 系列 Pod 开源库 | 113 | Swift | 04/01 |
| 45 | [Habit21D/SwiftHttpRequest](https://github.com/Habit21D/SwiftHttpRequest) | Swift5.0:基于Alamofire的网络封装及基于Codable的model解析 | 113 | Swift | 03/26 |
| 46 | [liucaide/CaamDau](https://github.com/liucaide/CaamDau) | iOS Swift 通用业务组件库 & Cocoa便利性扩展。Form流式模型化UI排版、Timer计时管理、AppDelegate解耦方案、HUD提示窗、Page分页导航、Indexes侧边索引、TopBar自定义导航栏、InputBox输入框扩展、Router组件化路由协议、IconFont阿里矢量图标管理、MJRefresh扩展、Alamofire扩展;附.功能组件、组件化示例、第三方库示例 | 105 | Swift | 04/27 |
| 47 | [tysqapp/tysq-ios](https://github.com/tysqapp/tysq-ios) | 天宇社区客户端APP开源 | 92 | Swift | 01/06 |
| 48 | [WangWenzhuang/ZKProgressHUD](https://github.com/WangWenzhuang/ZKProgressHUD) | iOS App 上极易于使用的 HUD | 90 | Swift | 01/30 |
| 49 | [wxxsw/VideoPlayer](https://github.com/wxxsw/VideoPlayer) | 📽 A video player for SwiftUI, support for caching, preload and custom control view. SwiftUI 视频播放器,支持边下边播、预加载、自定义控制层 | 87 | Swift | 03/29 |
| 50 | [Liaoworking/MoyaNetworkTool](https://github.com/Liaoworking/MoyaNetworkTool) | a robust networkTool based on Moya. Moya Demo 一个强健的基于moya二次封装的网络框架 | 84 | Swift | 04/20 |
| 51 | [windstormeye/SwiftGame](https://github.com/windstormeye/SwiftGame) | 我的小专栏《Swift 游戏开发》代码集合 | 72 | Swift | 03/07 |
| 52 | [lixiang1994/AttributedString](https://github.com/lixiang1994/AttributedString) | 基于Swift插值方式优雅的构建富文本 | 70 | Swift | 04/10 |
| 53 | [520/EasyWords](https://github.com/520/EasyWords) | 苹果商店上架项目, 周更 update weekly, on app store, for MacOS, mac开源, mac open source | 70 | Swift | 04/08 |
| 54 | [ming1016/MethodTraceAnalyze](https://github.com/ming1016/MethodTraceAnalyze) | 方法耗时分析 | 69 | Swift | 02/26 |
| 55 | [maltsugar/RollingNotice-Swift](https://github.com/maltsugar/RollingNotice-Swift) | 滚动公告、广告,支持灵活自定义cell。淘宝、口碑、京东、美团、天猫等等一切滚动广告 Roll Notice or Advertising, customize cell as UITableViewCell supported, Swift version is also ready | 67 | Swift | 04/15 |
| 56 | [Harley-xk/Chrysan](https://github.com/Harley-xk/Chrysan) | Chrysan 是一个简单易用的 HUD 库,使用 iOS 自带的 UIBlurEffect 毛玻璃特效,支持自定义动画。 | 64 | Swift | 03/26 |
| 57 | [LYM-mg/MGDYZB](https://github.com/LYM-mg/MGDYZB) | Xcode8以上版本,已升级为Swift3.x语法。 斗鱼- 每个人的直播平台提供高清、快捷、流畅的视频直播和游戏赛事直播服务,包含英雄联盟lol直播、穿越火线cf直播、dota2直播、美女直播等各类热门游戏赛事直播和各种.. | 64 | Swift | 03/20 |
| 58 | [zhongjianfeipqy/VerificationCode](https://github.com/zhongjianfeipqy/VerificationCode) | 自定义多位验证码 | 63 | Swift | 04/15 |
| 59 | [hello-david/SwiftV2Ray](https://github.com/hello-david/SwiftV2Ray) | V2Ray-Core的iOS工具 | 55 | Swift | 04/16 |
| 60 | [Insfgg99x/FGVideoEditor](https://github.com/Insfgg99x/FGVideoEditor) | swif版微信视屏裁剪,类似微信朋友圈视频裁剪方式的视频裁剪工具(video croping) | 55 | Swift | 03/16 |
| 61 | [Jvaeyhcd/HcdSpecialField](https://github.com/Jvaeyhcd/HcdSpecialField) | A special field like mobike input bike number field.仿摩拜单车手动输入单车编号控件. | 54 | Swift | 01/16 |
| 62 | [wxxsw/GSPlayer](https://github.com/wxxsw/GSPlayer) | ⏯ Video player, support for caching, preload, fullscreen transition and custom control view. 视频播放器,支持边下边播、预加载、全屏转场和自定义控制层 | 53 | Swift | 02/29 |
| 63 | [TonyReet/AutoSQLite.swift](https://github.com/TonyReet/AutoSQLite.swift) | SQLite.swift的封装,Model直接存储.获取,无需再转换,增删改查,脱离sql语句 | 51 | Swift | 04/14 |
| 64 | [RayJiang16/XYColor](https://github.com/RayJiang16/XYColor) | An easy way to adapter dark mode on CALayer. iOS 快速适配夜间模式 | 51 | Swift | 02/07 |
| 65 | [CaiWanFeng/iOS_Storage](https://github.com/CaiWanFeng/iOS_Storage) | 收纳的艺术 | 50 | Swift | 04/25 |
| 66 | [xidian-rs/Ruisi_Ios](https://github.com/xidian-rs/Ruisi_Ios) | 西电睿思手机客户端[iOS]适用于discuz论坛 | 46 | Swift | 04/06 |
| 67 | [klbest1/MyIOSDemo](https://github.com/klbest1/MyIOSDemo) | 模仿探探图片切换,自定义折线图,图片裁剪,微信朋友圈图片视频浏览,图片下载缓存,数量标记,爆炸动画,autolayout,线程安全 | 44 | Swift | 02/14 |
| 68 | [fcbox/Lantern](https://github.com/fcbox/Lantern) | 基于Swift的高可用视图框架 | 44 | Swift | 03/16 |
| 69 | [Harley-xk/Comet](https://github.com/Harley-xk/Comet) | iOS 项目的 Swift 基础库,提供常用组件、便利方法等。支持 Swift 3.x、Swift 4.x,iOS 8.0+ | 41 | Swift | 04/07 |
| 70 | [Pircate/AlipayHomePageDemo](https://github.com/Pircate/AlipayHomePageDemo) | 仿支付宝首页 | 35 | Swift | 04/15 |
| 71 | [xindong/anti-addiction-kit](https://github.com/xindong/anti-addiction-kit) | 📱手机游戏防沉迷系统 SDK,支持 iOS+Android+Unity,快速接入! | 33 | Swift | 04/21 |
| 72 | [even-cheng/ECSigner](https://github.com/even-cheng/ECSigner) | (iOS app signer, Support multi-file synchronization signature and auto create profile and certificate to sign)一键签名,网络地址直签,多文件同步签,自动区分企业签名和个人证书,一键Assets.car解压导出和替换,自动注册设备并更新下载签名证书和签名文件进行签名。支持Swift5和iOS13,macOS10.15并向下兼容。 | 33 | Swift | 03/13 |
| 73 | [liujunliuhong/YHDragContainer](https://github.com/liujunliuhong/YHDragContainer) | 高度还原类似探探等社交应用的滑牌、卡牌交互效果(兼容OC) | 32 | Swift | 04/26 |
| 74 | [Boxzhi/HZNavigationBar](https://github.com/Boxzhi/HZNavigationBar) | A very simple to use, can be completely customized navigation bar. 一款使用非常简单,可以完全自定义的导航栏。 | 32 | Swift | 01/14 |
| 75 | [lou-lan/SmartConfig](https://github.com/lou-lan/SmartConfig) | SmartConfig ESP8266 with Swift language(Swift 语言编写的 Smart Config UDP 广播给 ESP WiFi 芯片入网程序) | 28 | Swift | 04/27 |
| 76 | [xiaoyouxinqing/PostDemo](https://github.com/xiaoyouxinqing/PostDemo) | BBCo - iOS开发入门教程 SwiftUI 微博App项目实战 零基础学习Swift编程 | 26 | Swift | 04/03 |
| 77 | [developerjet/JetChat](https://github.com/developerjet/JetChat) | Swift5.0编写的简仿微信聊天应用,完美支持表情键盘、单聊、群聊、本地消息会话缓存。 | 25 | Swift | 01/04 |
| 78 | [JumeiRdGroup/JMRouter](https://github.com/JumeiRdGroup/JMRouter) | 一个轻量级,纯Swift,协议化的路由控件 | 24 | Swift | 02/09 |
| 79 | [BoxDengJZ/AudioJz](https://github.com/BoxDengJZ/AudioJz) | 个人学过的,音频相关的技巧。从 ray wenderlich 开始 | 24 | Swift | 03/02 |
| 80 | [SunshineBrother/LeetCodeStudy](https://github.com/SunshineBrother/LeetCodeStudy) | 算法学习 | 23 | Swift | 04/10 |
| 81 | [hxwxww/HXImagePickerController](https://github.com/hxwxww/HXImagePickerController) | 仿微信图片选择器 | 23 | Swift | 02/14 |
| 82 | [Weang/WLVideo](https://github.com/Weang/WLVideo) | 仿照微信拍照拍视频的功能 | 22 | Swift | 01/07 |
| 83 | [mojimomo/PlanIt](https://github.com/mojimomo/PlanIt) | 一个iOS平台上自我计划App | 21 | Swift | 03/18 |
| 84 | [nenhall/NHAVEditor](https://github.com/nenhall/NHAVEditor) | (Objective-C) 基于 AVFoundation 框架封装的 iOS视频编辑工具 | 19 | Swift | 01/17 |
| 85 | [FranZhou/FZBuildingBlock](https://github.com/FranZhou/FZBuildingBlock) | 积木模块,提供最基础的功能支持 | 18 | Swift | 01/08 |
| 86 | [ly918/SwiftUI-Chinese-Documents](https://github.com/ly918/SwiftUI-Chinese-Documents) | SwiftUI官方教程翻译,SwiftUI源码解析,实践应用,常见问题,欢迎讨论Issue | 17 | Swift | 01/03 |
| 87 | [Xianlau/SwiftProject](https://github.com/Xianlau/SwiftProject) | swfit整合项目, 项目里面有整个swift应用框架, (alamofire + moya )网络请求框架 + Swiftyjson + HandyJson的实际应用, DSBridge原生与H5交互的用法, 反射知识的使用, WCDB数据库的封装使用, WebRTC音视频直播demo, socket的使用, socket协议的封装使用等等知识点. 希望对大家有用 | 16 | Swift | 04/20 |
| 88 | [Ch0uti/ChouTi](https://github.com/Ch0uti/ChouTi) | 🗄 ChouTi (抽屉) - a framework for Swift development. | 16 | Swift | 02/15 |
| 89 | [yungfan/iOS-BasedOnSwift](https://github.com/yungfan/iOS-BasedOnSwift) | iOS开发教程案例代码 | 15 | Swift | 02/23 |
| 90 | [BearLatte/TIMFlowView](https://github.com/BearLatte/TIMFlowView) | Swift 模仿 UITableView 创建瀑布流视图 | 15 | Swift | 02/11 |
| 91 | [ZClee128/RXSwift-](https://github.com/ZClee128/RXSwift-) | RXSwift入门学习 | 15 | Swift | 03/12 |
| 92 | [Light413/SwiftTTPageController](https://github.com/Light413/SwiftTTPageController) | 最常见的标签控制器,仿今日头条首页、网易新闻首页 ,实现多个ViewController列表切换(更新适配Swift5) | 16 | Swift | 04/22 |
| 93 | [hxwxww/HXPageViewController](https://github.com/hxwxww/HXPageViewController) | 管理子控制器生命周期的PageViewController | 15 | Swift | 04/21 |
| 94 | [sjjvenu/guanggoo-iOS](https://github.com/sjjvenu/guanggoo-iOS) | 光谷社区iOS版 | 14 | Swift | 04/04 |
| 95 | [baozoudiudiu/CWSwiftPrint](https://github.com/baozoudiudiu/CWSwiftPrint) | 解决网络请求返回中文数据时,Xcode在控制台打印unicode编码问题 | 14 | Swift | 04/14 |
| 96 | [iosRober/BLoger](https://github.com/iosRober/BLoger) | CocoaLumberjack/Swift框架的扩展,一键接入日志系统,Debug模式下摇一摇即可查看日志 | 13 | Swift | 04/15 |
| 97 | [davewang/open_nsfw_ios](https://github.com/davewang/open_nsfw_ios) | 🔥🔥🔥色情图片离线识别(离线鉴黄),基于TensorFlow实现。识别只需200ms,可断网测试,成功率99%,调用只要一行代码,从雅虎的开源项目open_nsfw移植,tflite(6M)为训练好的模型(已量化),该模型文件可用于iOS、java、C++等平台,Python使用生成的tfLite文件检测图片的速度远远快于实用原模型 | 13 | Swift | 02/11 |
| 98 | [LiulietLee/BilibiliCD](https://github.com/LiulietLee/BilibiliCD) | 用来下载B站视频封面的 iOS App | 13 | Swift | 04/27 |
| 99 | [vincent111000/VCSticker](https://github.com/vincent111000/VCSticker) | 文字、图片便签效果(旋转、拖拽、放大) | 13 | Swift | 01/08 |
| 100 | [Lang-FZ/MetalEasyFoundation](https://github.com/Lang-FZ/MetalEasyFoundation) | Metal 练手 | 12 | Swift | 01/04 |
| 101 | [josercc/LocalizedCSV](https://github.com/josercc/LocalizedCSV) | 从CSV读取进行设置本地化文件 | 12 | Swift | 02/26 |
| 102 | [zhouyudk/ZYNavigationBar](https://github.com/zhouyudk/ZYNavigationBar) | 定制navigationBar,解决push/pop造成不同效果bar突变问题 | 11 | Swift | 03/26 |
| 103 | [birdmichael/app-version-swift](https://github.com/birdmichael/app-version-swift) | 配合APP版本管理是一套多应用更新发版的管理平台。iOS弹窗提示升级 | 10 | Swift | 03/23 |
| 104 | [BearLatte/TIMProgressHUD](https://github.com/BearLatte/TIMProgressHUD) | Swift 非常好用的指示器小控件,支持自定义动画 | 10 | Swift | 01/11 |
| 105 | [AboutCXJ/30ProjectsOfSwift](https://github.com/AboutCXJ/30ProjectsOfSwift) | 30天30个Swift小项目 | 10 | Swift | 03/13 |
| 106 | [QaQAdrian/monitor](https://github.com/QaQAdrian/monitor) | mac 实时网速监控 bandwidh monitor | 9 | Swift | 03/13 |
| 107 | [lixiang1994/Router](https://github.com/lixiang1994/Router) | 基于URLNavigator抽象的外部URL路由组件 支持任意类型配置 插件机制 | 9 | Swift | 03/24 |
| 108 | [al1020119/iCocosListGrid](https://github.com/al1020119/iCocosListGrid) | 一种布局模式的切换(CollectionView&TableView),支持单选,多选,全选,长按,编辑等操作,支持iPad屏幕旋转操作 | 9 | Swift | 04/23 |
| 109 | [wave2588/AttributedText](https://github.com/wave2588/AttributedText) | 富文本渲染工具, 支持 UITextView UILabel | 9 | Swift | 04/07 |
| 110 | [yungfan/Swift-learning](https://github.com/yungfan/Swift-learning) | Swift语法学习 | 9 | Swift | 02/23 |
| 111 | [ljcoder2015/LJTool](https://github.com/ljcoder2015/LJTool) | 开发中常用的工具方法 | 9 | Swift | 03/05 |
| 112 | [hi-zhouyn/ZHLinkageChart-swift](https://github.com/hi-zhouyn/ZHLinkageChart-swift) | ZHLinkageChart-swift,一款可多级联动的表格,可上下左右联动,支持行列展示任意拓展和上下表格任意合并!这里提供了一个多联动表格的实现方式之一楼盘表,其它也可根据自身需求情况拓展为课程表、配置表等等。 | 8 | Swift | 01/08 |
| 113 | [yuetsin/electsys-utility](https://github.com/yuetsin/electsys-utility) | 上海交通大学教务处实用程序。 | 8 | Swift | 01/03 |
| 114 | [Teacher-Fu/FQScreenshot](https://github.com/Teacher-Fu/FQScreenshot) | 一句代码保存截图,将View及其子视图相关的页面保存为图片. | 8 | Swift | 01/14 |
| 115 | [anselPeng/ANXMLY](https://github.com/anselPeng/ANXMLY) | Swift5完整项目喜马拉雅 | 8 | Swift | 01/11 |
| 116 | [wsj2012/EasyNavigationbar](https://github.com/wsj2012/EasyNavigationbar) | 定制UINavigationBar样式,可全局统一设置默认样式,在各页面灵活定制自己的样式。 | 8 | Swift | 01/02 |
| 117 | [LYM-mg/DemoTest](https://github.com/LYM-mg/DemoTest) | 集合业余功能,值得一看 | 8 | Swift | 04/09 |
| 118 | [kingjiajie/JJCollectionViewRoundFlowLayout_Swift](https://github.com/kingjiajie/JJCollectionViewRoundFlowLayout_Swift) | JJCollectionViewRoundFlowLayout_Swift是JJCollectionViewRoundFlowLayout(OC:https://github.com/kingjiajie/JJCollectionViewRoundFlowLayout)的Swift版本,JJCollectionViewRoundFlowLayout可设置CollectionView的BackgroundColor,可根据用户Cell个数计算背景图尺寸,可自定义是否包括计算CollectionViewHeaderView、CollectionViewFootererView或只计算Cells。设 ... | 8 | Swift | 04/09 |
| 119 | [1035901787/react-native-s-baidumap](https://github.com/1035901787/react-native-s-baidumap) | 百度地图 React Native ,同时支持ios和android | 8 | Swift | 04/07 |
| 120 | [wxxsw/Refresh](https://github.com/wxxsw/Refresh) | 🎈 Great SwiftUI drop-down refresh and scroll up to load more. 下拉刷新、上拉加载 | 7 | Swift | 03/29 |
| 121 | [Danie1s/TiercelObjCBridge](https://github.com/Danie1s/TiercelObjCBridge) | Tiercel 的 Objective-C 桥接扩展 | 7 | Swift | 01/10 |
| 122 | [whde/ResumeFromBreakPoint](https://github.com/whde/ResumeFromBreakPoint) | Swift实现断点续传,Demo简单易懂,没有太多复杂模块和逻辑,完整体现断点续传的原理 | 7 | Swift | 03/14 |
| 123 | [LIXIANGXLee/LXPhotosManagerModule](https://github.com/LIXIANGXLee/LXPhotosManagerModule) | 功能:1.最完美最轻量级的图片浏览器,图片加载支持本地网络图片、加载图片方式任你选(支持图片放大缩小及手势拖拽效果),功能:2.九宫格布局(类似微信朋友圈), 功能:3.可以选择添加本地图片或者网络图片 | 7 | Swift | 04/20 |
| 124 | [350541732/SwiftLeeTools](https://github.com/350541732/SwiftLeeTools) | SwiftLeeTools使用swift语言,结合公司的项目封装了一些基础通用的使用工具,包括 字符串 日期 校验 http请求 网格菜单 列表菜单 钥匙串 本地图片浏览 在线图片浏览 设备信息 基础控制器封装(tableview scrollview collectionview wkwebview) 本地推送 基础视图(根据提供key value,生成view) 选择器 分页视图 seachcontroller+tableview AVPlayer 弹出的筛选框。 | 7 | Swift | 04/14 |
| 125 | [tangjianfengVS/WisdomRouterKit](https://github.com/tangjianfengVS/WisdomRouterKit) | 1:一个强大的iOS路由器SDK。 2:针对处理组件化模块之间的调用,WisdomRouterKit可以帮你进行页面之间的属性参数和回调Block传递赋值,并且支持大量化的属性参数和大量化的回调Block传递赋值,无需各个子模块之间进行任何引用,也无需定义公共协议文件进行各个子模块之间关联,真正做到完全解偶,真正做到顶天立地。 3:无论项目将来功能或者业务代码快速的扩展叠加,无需人员维护,无需维护成本。 4:API的优势是调用方便,使用灵活,实现了简洁的追加注册调用,只需要数行注册代码,我们就可以展开接下来的Router功能。 5:WisdomRouterKit SDK是纯swift代 ... | 7 | Swift | 04/23 |
| 126 | [CodeOcenS/SwiftJSONModeler](https://github.com/CodeOcenS/SwiftJSONModeler) | Xcode Extension that convert json to Swift model. 转换json为Swift模型的Xcode插件,还支持YApi接口平台自动添加注释哟 | 7 | Swift | 04/02 |
| 127 | [Tliens/SpeedyAV](https://github.com/Tliens/SpeedyAV) | video and audio processed by AVFoundation 音视频拼接,播放,裁剪Demo合集 | 7 | Swift | 04/14 |
| 128 | [niunaruto/DeDaoAppSwift](https://github.com/niunaruto/DeDaoAppSwift) | Use the swift3.0 syntax to mimic most of DeDao app's functionality使用swift3.0语法模仿得到app的大部分功能(coding) | 7 | Swift | 03/11 |
| 129 | [iHTCboy/iWuBi](https://github.com/iHTCboy/iWuBi) | iWuBi 是一款五笔输入法相关知识的学习App,目的是为了方便初学者学习和快速查询拆字等,防止老司机翻车~ | 6 | Swift | 04/19 |
| 130 | [wayone/WOPageControl-Swift](https://github.com/wayone/WOPageControl-Swift) | 小圆点 / PageControl | 6 | Swift | 03/27 |
| 131 | [TannerJin/Lock](https://github.com/TannerJin/Lock) | Lock (用Swift实现的各种锁) | 6 | Swift | 03/04 |
| 132 | [Rayer/CurrencyConverter](https://github.com/Rayer/CurrencyConverter) | 匯率轉換器Safari Plugin | 6 | Swift | 02/20 |
| 133 | [chenfengfeng/S5NEKit](https://github.com/chenfengfeng/S5NEKit) | 修改版本的NEKit,支持socks5的udp转发 | 6 | Swift | 04/17 |
| 134 | [dr19900920/DRNetworkDemo](https://github.com/dr19900920/DRNetworkDemo) | 使用Alamofire+ObjectMapper实现网络层的封装,把网络层分为Parse(数据解析器),Request(请求入口),Client(请求工具)三个模块进行网络解耦. | 6 | Swift | 04/13 |
| 135 | [PandaABC-iOS/A-Question-A-Day](https://github.com/PandaABC-iOS/A-Question-A-Day) | 潘哒小分队iOS 技术壁垒攻坚归档 | 6 | Swift | 04/27 |
| 136 | [yungfan/SwiftUI-learning](https://github.com/yungfan/SwiftUI-learning) | SwiftUI实用教程配套代码 | 6 | Swift | 04/13 |
| 137 | [shiliujiejie/SwiftAdView](https://github.com/shiliujiejie/SwiftAdView) | 仿抖音播放器 支持 图片 + gif + 视频 的启动广告 | 6 | Swift | 04/13 |
| 138 | [huanglins/VHLNavigation_Swift](https://github.com/huanglins/VHLNavigation_Swift) | 导航栏切换之颜色过渡切换,导航栏背景图片切换,微信红包两种不同颜色切换,导航栏透明度,有无导航栏切换 | 6 | Swift | 04/21 |
| 139 | [miniLV/MNWeibo](https://github.com/miniLV/MNWeibo) | Swift5 + MVVM + 文艺复兴微博(纯代码 + 纯Swift),可作为第一个上手的Swift项目. | 6 | Swift | 04/27 |
| 140 | [Boxzhi/HZPlaceHolder](https://github.com/Boxzhi/HZPlaceHolder) | Quickly create a null data placeholder view(一个方法完成空数据占位图展示,一行代码完成MJRefresh的封装调用) | 6 | Swift | 01/16 |
| 141 | [rztime/RZColorfulSwift](https://github.com/rztime/RZColorfulSwift) | NSAttributedString 富文本方法 (图文混排、多样式文本) (RZColorful Swift版) | 6 | Swift | 03/11 |
| 142 | [TonyLianLong/weChatStickerExtractor](https://github.com/TonyLianLong/weChatStickerExtractor) | Mac微信表情包提取工具,提取动态的表情包成为gif图片~ | 6 | Swift | 01/21 |
| 143 | [iOS-container/SwiftBeginner](https://github.com/iOS-container/SwiftBeginner) | swift 初学者 | 5 | Swift | 01/15 |
| 144 | [biangou/BQBluetooth](https://github.com/biangou/BQBluetooth) | swift写的蓝牙工具类 | 5 | Swift | 04/18 |
| 145 | [DamonHu/HDWindowLoggerSwift](https://github.com/DamonHu/HDWindowLoggerSwift) | iOS端将输出日志log悬浮显示在屏幕上,可以生成日志文件分享,便于在真机没有连接xcode的情况下调试信息。 The iOS side displays the output log log on the screen, and can generate log file sharing, which is convenient for debugging information when the real machine is not connected to xcode. | 5 | Swift | 04/02 |
| 146 | [Z-JaDe/AppExtension](https://github.com/Z-JaDe/AppExtension) | iOS框架 | 5 | Swift | 04/20 |
| 147 | [cp3hnu/DeviceType](https://github.com/cp3hnu/DeviceType) | 用Swift语言判断设备类型 | 5 | Swift | 04/22 |
| 148 | [happy-yuxuan/ARPuttingGoods](https://github.com/happy-yuxuan/ARPuttingGoods) | AR方式放置和缩放商品,并进行数据收集操作 | 5 | Swift | 03/05 |
| 149 | [kkkelicheng/RestrictTextField](https://github.com/kkkelicheng/RestrictTextField) | 有限制输入功能的输入框 Swift & Objective-C | 5 | Swift | 03/30 |
| 150 | [walkertop/SwiftDeepLearning](https://github.com/walkertop/SwiftDeepLearning) | swift的高级语法以及深度探究用例 | 5 | Swift | 04/16 |
| 151 | [SmartPear/SwiftRefresh](https://github.com/SmartPear/SwiftRefresh) | swift语言开发的轻量级下拉刷新框架,使用简单方便。 | 5 | Swift | 03/22 |
| 152 | [liujunliuhong/SwiftTool](https://github.com/liujunliuhong/SwiftTool) | Swift版本的开发工具,旨在帮助开发人员快速开发,未完,持续更新中... | 5 | Swift | 04/21 |
| 153 | [gaozichen2012/SwiftUI-notes](https://github.com/gaozichen2012/SwiftUI-notes) | 苹果swift开发笔记 | 5 | Swift | 04/14 |
| 154 | [pozi119/SQLiteORM](https://github.com/pozi119/SQLiteORM) | 数据库模型映射,自动建表, 自动更新表,数据增删改查, FTS全文搜索, 支持自定义fts3,4,5分词器,可拼音分词. sql,fmdb,wcdb,sqlite3,orm,fts,fts3,fts4,fts5. VVSequelize的swift版本 | 5 | Swift | 04/26 |
| 155 | [chenhaigang888/CHGAdapter_swift](https://github.com/chenhaigang888/CHGAdapter_swift) | 主要解决UITableView 在每个controller中都需要设置dataSource和delegate的烦恼,并UITableViewCell与DataSource tableView界耦合 | 5 | Swift | 01/11 |
| 156 | [MichaelLynx/MNetwork](https://github.com/MichaelLynx/MNetwork) | swift网络请求封装示例,使用Alamofire及HandyJSON。 | 5 | Swift | 04/03 |
| 157 | [nlnlnull/OpenFile](https://github.com/nlnlnull/OpenFile) | macOS 上的快捷启动工具 | 5 | Swift | 01/16 |
| 158 | [dongxiexidu/SPAlertController](https://github.com/dongxiexidu/SPAlertController) | 提醒对话框,风格和微信原生几乎零误差,Swift版本 | 5 | Swift | 02/24 |
| 159 | [lmf12/MFPaintView](https://github.com/lmf12/MFPaintView) | 基于 Quartz2D 实现的画板。 | 5 | Swift | 01/04 |
| 160 | [Binlogo/LeetCode-Swift-Track](https://github.com/Binlogo/LeetCode-Swift-Track) | LeetCode 💖 Swift,攻克数据结构与算法。 | 4 | Swift | 01/29 |
| 161 | [DeveloperJx/JXAutoEncoder](https://github.com/DeveloperJx/JXAutoEncoder) | Swift 3.0 自动编解码--致敬MJ大神的MJExtension | 4 | Swift | 02/25 |
| 162 | [Shanesun/Programming-book](https://github.com/Shanesun/Programming-book) | 总结数据结构与算法 | 4 | Swift | 03/07 |
| 163 | [Bruce-pac/SlideDrawer](https://github.com/Bruce-pac/SlideDrawer) | A lightweight, no intrusion,one line code to use, Slide Drawer written Swift 5. 一行代码实现侧滑抽屉。 | 4 | Swift | 04/22 |
| 164 | [jeromexiong/cover-moments](https://github.com/jeromexiong/cover-moments) | 高帧率仿朋友圈滑动 | 4 | Swift | 04/17 |
| 165 | [cezres/Files](https://github.com/cezres/Files) | iOS 端文件管理 App。支持视频播放、音频播放、图片浏览、压缩/解压缩,并且可以通过浏览器下载上传文件。 | 4 | Swift | 03/16 |
| 166 | [zhuhao528/KSCircleProgressView](https://github.com/zhuhao528/KSCircleProgressView) | 圆形进度条 | 4 | Swift | 03/24 |
| 167 | [casatwy/CTUniversalModel](https://github.com/casatwy/CTUniversalModel) | 工程在去model化的进程中,用于过渡的model | 4 | Swift | 03/26 |
| 168 | [tangjianfengVS/WisdomScanKit](https://github.com/tangjianfengVS/WisdomScanKit) | 推荐一个强大,好用的摄像,扫描器框架: WisdomScanKit 。 WisdomScanKit 最低支持 iOS 8.0 / Swift 4 编写,SDK处理了系统兼容性问题,并且完全兼容OC项目调用。 WisdomScanKit 目前支持四大功能: 一:系统相册图片选择器; 二:全屏摄像功能; 三:扫二维码功能; 四:图片浏览器功能; | 4 | Swift | 03/25 |
| 169 | [lumanmann/design-pattern-study-jam](https://github.com/lumanmann/design-pattern-study-jam) | Swift Design Pattern 讀書會 | 4 | Swift | 02/16 |
| 170 | [XiAnRuFeng/YXPickerViewDemo](https://github.com/XiAnRuFeng/YXPickerViewDemo) | Swift5.1仿京东城市选择View、可无限选择、支持本地或者网络数据、使用简单两三行代码解决问题 | 4 | Swift | 01/17 |
| 171 | [jiangleligejiang/TimeTask](https://github.com/jiangleligejiang/TimeTask) | 基于时间轮片方式处理超时任务 | 4 | Swift | 03/19 |
| 172 | [CaryZheng/Vapor4-Tutorial](https://github.com/CaryZheng/Vapor4-Tutorial) | Vapor4速成指南 | 4 | Swift | 04/21 |
| 173 | [gw-yj/GWSwiftModel](https://github.com/gw-yj/GWSwiftModel) | json和model互转的简单工具 | 3 | Swift | 01/06 |
| 174 | [DamonHu/vapor-HDJGPushTool](https://github.com/DamonHu/vapor-HDJGPushTool) | Vapor framework uses JiGuang push notifications。Vapor框架的极光推送工具 | 3 | Swift | 03/15 |
| 175 | [RocketsChen/CDDGroupAvatarSwift](https://github.com/RocketsChen/CDDGroupAvatarSwift) | iOS 群头像(Swift) / Easy to use | 3 | Swift | 03/31 |
| 176 | [HDCodePractice/SwiftPracticeResult](https://github.com/HDCodePractice/SwiftPracticeResult) | Swift代码练习参考 | 3 | Swift | 04/27 |
| 177 | [peng1207/ZPhoto](https://github.com/peng1207/ZPhoto) | 视频录制和处理 | 3 | Swift | 01/15 |
| 178 | [zesicus/SNYKit](https://github.com/zesicus/SNYKit) | 便利开发工具库 | 3 | Swift | 04/27 |
| 179 | [yunhai0417/YHAsynDisplayKit](https://github.com/yunhai0417/YHAsynDisplayKit) | 基于Swift异步渲染框架 | 3 | Swift | 04/26 |
| 180 | [ApterKing/SwiftX](https://github.com/ApterKing/SwiftX) | iOS Swift开源框架、Http、Cache、JSON 等等 | 3 | Swift | 01/08 |
| 181 | [hankRu/ThemeDemoForSwiftGirls](https://github.com/hankRu/ThemeDemoForSwiftGirls) | 2017/09/18 Swift Girls 範例程式 | 3 | Swift | 01/20 |
| 182 | [wooseng/ScanKit](https://github.com/wooseng/ScanKit) | Swift封装的二维码扫描框架 | 3 | Swift | 03/18 |
| 183 | [duanruiying/DryAliyunOSS-iOS](https://github.com/duanruiying/DryAliyunOSS-iOS) | iOS: 简化阿里云OSS | 3 | Swift | 04/15 |
| 184 | [yscode001/YSCategoryView](https://github.com/yscode001/YSCategoryView) | 常用分类视图 | 3 | Swift | 04/01 |
| 185 | [ProjectLion/Alert](https://github.com/ProjectLion/Alert) | 这是一个可以完全自定义的Alert、Sheet。 | 3 | Swift | 02/17 |
| 186 | [liuyik/LYConvenienceKit](https://github.com/liuyik/LYConvenienceKit) | swift链式编程创建UI和一些常用的方法函数 | 3 | Swift | 04/01 |
| 187 | [yscode001/YSCircleView](https://github.com/yscode001/YSCircleView) | 圆形视图(带圆角的视图) | 3 | Swift | 04/01 |
| 188 | [MichaelLynx/MCircleBoard](https://github.com/MichaelLynx/MCircleBoard) | 环形刻度图、环形进度条、环形比例图、环形刻度比例图。圆环型的刻度比例图(Circular Scale Chart),可以自行设置刻度的数量及其颜色,可随时更新样式,内置默认图片且有多种图片样式传入方式,支持iOS端的oc和swift两种语言。[objective-c/swift]Circular scale chart which allow users to set the number and color of the scales. | 3 | Swift | 02/21 |
| 189 | [iHTCboy/iPomodoro-macOS](https://github.com/iHTCboy/iPomodoro-macOS) | iPomodoro(爱番茄)。🍅 番茄工作法是一种时间管理法方法,在上世纪八十年代由Francesco Cirillo创立。 该方法使用一个定时器来分割出一个一般为25分钟的工作时间和5分钟的休息时间,而那些时间段被称为pomodori,为意大利语单词pomodoro之复数。 | 3 | Swift | 04/21 |
| 190 | [XiAnRuFeng/AlbumTool](https://github.com/XiAnRuFeng/AlbumTool) | 一行代码保存照片或者视频到自己创建的相册中 | 3 | Swift | 02/25 |
| 191 | [yscode001/YSExt](https://github.com/yscode001/YSExt) | Swift常用类的扩展 | 3 | Swift | 03/17 |
| 192 | [fallpine/QSExtensions](https://github.com/fallpine/QSExtensions) | 项目常用类扩展 | 3 | Swift | 03/31 |
| 193 | [dgynfi/Swift-study](https://github.com/dgynfi/Swift-study) | Swift 是一门开发 iOS, macOS, watchOS 和 tvOS 应用的新语言。本仓库包涵了Swift的基础部分、基本运算符、字符串和字符、集合类型、控制流、函数、闭包、枚举、类和结构体、属性、方法、下标、继承、构造过程、析构过程、可选链、错误处理、类型转换、嵌套类型、扩展、协议、泛型、自动引用计数、内存安全、访问控制和高级运算符等教程。 | 3 | Swift | 03/31 |
| 194 | [philCc/URLNavigatorExt](https://github.com/philCc/URLNavigatorExt) | 使用注解自动生成Router以及Router相关参数 | 3 | Swift | 03/19 |
| 195 | [fengyunjue/MANetWork](https://github.com/fengyunjue/MANetWork) | Swift网络请求模块封装 | 3 | Swift | 04/14 |
| 196 | [Insfgg99x/GeekMadeBySwiftUI](https://github.com/Insfgg99x/GeekMadeBySwiftUI) | 简单干货集中营的SwiftUI版本。网络请求用的Moya/RxSwift,网络请求回来的数据通过SwiftUI展示,SwiftUI网格视图用的第三方实现的。学习完官网的SwiftUI tutorials后的第一个实践项目 | 3 | Swift | 01/14 |
| 197 | [taixw2/rmini](https://github.com/taixw2/rmini) | 小程序运行时 | 3 | Swift | 01/04 |
| 198 | [Rogue24/JPFloatingWindow](https://github.com/Rogue24/JPFloatingWindow) | 使用Runtime优雅实现微信滑动返回生成浮窗的效果 | 3 | Swift | 03/18 |
| 199 | [SWING1993/CoolTV](https://github.com/SWING1993/CoolTV) | 酷TV是为AppleTV用户打造的专业视频应用,简洁流畅的界面设计、丰富多元的影视内容,从影视剧、TVB、综艺、少儿动漫等热门内容,到新闻资讯、纪录片、游戏体育等应有尽有,海量内容畅快看。锁定酷TV,点一下,看世界! | 3 | Swift | 01/16 |
| 200 | [haikerapples/swift-BaseProject](https://github.com/haikerapples/swift-BaseProject) | swift标准版壳子 | 3 | Swift | 04/25 |
⬆ [回到目录](#目录)
<br/>
## Jupyter Notebook
| # | Repository | Description | Stars | Language | Updated |
| ---- | ------------------------------------------------------------ | ------------------------------------------------------------ | ----- | ---------------- | ------- |
| 1 | [jackfrued/Python-100-Days](https://github.com/jackfrued/Python-100-Days) | Python - 100天从新手到大师 | 83.8k | Jupyter Notebook | 04/27 |
| 2 | [MLEveryday/100-Days-Of-ML-Code](https://github.com/MLEveryday/100-Days-Of-ML-Code) | 100-Days-Of-ML-Code中文版 | 15.4k | Jupyter Notebook | 02/18 |
| 3 | [zergtant/pytorch-handbook](https://github.com/zergtant/pytorch-handbook) | pytorch handbook是一本开源的书籍,目标是帮助那些希望和使用PyTorch进行深度学习开发和研究的朋友快速入门,其中包含的Pytorch教程全部通过测试保证可以成功运行 | 11.2k | Jupyter Notebook | 04/22 |
| 4 | [fengdu78/lihang-code](https://github.com/fengdu78/lihang-code) | 《统计学习方法》的代码实现 | 10.0k | Jupyter Notebook | 04/17 |
| 5 | [ShusenTang/Dive-into-DL-PyTorch](https://github.com/ShusenTang/Dive-into-DL-PyTorch) | 本项目将《动手学深度学习》(Dive into Deep Learning)原书中的MXNet实现改为PyTorch实现。 | 8.6k | Jupyter Notebook | 02/23 |
| 6 | [dragen1860/Deep-Learning-with-TensorFlow-book](https://github.com/dragen1860/Deep-Learning-with-TensorFlow-book) | 深度学习入门开源书,基于TensorFlow 2.0案例实战。Open source Deep Learning book, based on TensorFlow 2.0 framework. | 7.9k | Jupyter Notebook | 04/20 |
| 7 | [chenyuntc/pytorch-book](https://github.com/chenyuntc/pytorch-book) | PyTorch tutorials and fun projects including neural talk, neural style, poem writing, anime generation (《深度学习框架PyTorch:入门与实战》) | 7.2k | Jupyter Notebook | 01/06 |
| 8 | [apachecn/Interview](https://github.com/apachecn/Interview) | Interview = 简历指南 + LeetCode + Kaggle | 5.8k | Jupyter Notebook | 04/23 |
| 9 | [czy36mengfei/tensorflow2_tutorials_chinese](https://github.com/czy36mengfei/tensorflow2_tutorials_chinese) | tensorflow2中文教程,持续更新(当前版本:tensorflow2.0),tag: tensorflow 2.0 tutorials | 5.4k | Jupyter Notebook | 02/07 |
| 10 | [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.9k | Jupyter Notebook | 04/11 |
| 11 | [NLP-LOVE/ML-NLP](https://github.com/NLP-LOVE/ML-NLP) | 此项目是机器学习(Machine Learning)、深度学习(Deep Learning)、NLP面试中常考到的知识点和代码实现,也是作为一个算法工程师必会的理论基础知识。 | 4.7k | Jupyter Notebook | 04/20 |
| 12 | [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.8k | Jupyter Notebook | 01/27 |
| 13 | [xiaolai/regular-investing-in-box](https://github.com/xiaolai/regular-investing-in-box) | 定投改变命运 —— 让时间陪你慢慢变富 https://onregularinvesting.com | 3.8k | Jupyter Notebook | 04/27 |
| 14 | [fengdu78/Data-Science-Notes](https://github.com/fengdu78/Data-Science-Notes) | 数据科学的笔记以及资料搜集 | 3.2k | Jupyter Notebook | 04/24 |
| 15 | [Alfred1984/interesting-python](https://github.com/Alfred1984/interesting-python) | 有趣的Python爬虫和Python数据分析小项目(Some interesting Python crawlers and data analysis projects) | 3.0k | Jupyter Notebook | 03/06 |
| 16 | [snowkylin/tensorflow-handbook](https://github.com/snowkylin/tensorflow-handbook) | 简单粗暴 TensorFlow 2 \| A Concise Handbook of TensorFlow 2 | 2.3k | Jupyter Notebook | 04/27 |
| 17 | [TrickyGo/Dive-into-DL-TensorFlow2.0](https://github.com/TrickyGo/Dive-into-DL-TensorFlow2.0) | 本项目将《动手学深度学习》(Dive into Deep Learning)原书中的MXNet实现改为TensorFlow 2.0实现,项目已得到李沐老师的同意 | 2.2k | Jupyter Notebook | 04/25 |
| 18 | [ypwhs/captcha_break](https://github.com/ypwhs/captcha_break) | 验证码识别 | 1.7k | Jupyter Notebook | 04/19 |
| 19 | [wangshub/RL-Stock](https://github.com/wangshub/RL-Stock) | 📈 如何用深度强化学习自动炒股 | 1.2k | Jupyter Notebook | 03/31 |
| 20 | [fengdu78/machine_learning_beginner](https://github.com/fengdu78/machine_learning_beginner) | 机器学习初学者公众号作品 | 1.2k | Jupyter Notebook | 04/24 |
| 21 | [Rockyzsu/stock](https://github.com/Rockyzsu/stock) | 30天掌握量化交易 (持续更新) | 1.1k | Jupyter Notebook | 03/04 |
| 22 | [datawhalechina/joyful-pandas](https://github.com/datawhalechina/joyful-pandas) | Pandas中文教程 | 1.1k | Jupyter Notebook | 04/23 |
| 23 | [hangsz/pandas-tutorial](https://github.com/hangsz/pandas-tutorial) | 适合初级到中级晋升者,有了体系之后就看熟练度了。 | 1.0k | Jupyter Notebook | 02/11 |
| 24 | [amusi/TensorFlow-From-Zero-To-One](https://github.com/amusi/TensorFlow-From-Zero-To-One) | TensorFlow 最佳学习资源大全(含课程、书籍、博客、公开课等内容) | 902 | Jupyter Notebook | 04/04 |
| 25 | [xavier-zy/Awesome-pytorch-list-CNVersion](https://github.com/xavier-zy/Awesome-pytorch-list-CNVersion) | Awesome-pytorch-list 翻译工作进行中...... | 868 | Jupyter Notebook | 04/16 |
| 26 | [liuyubobobo/Play-with-Machine-Learning-Algorithms](https://github.com/liuyubobobo/Play-with-Machine-Learning-Algorithms) | Code of my MOOC Course <Play with Machine Learning Algorithms>. Updated contents and practices are also included. 我在慕课网上的课程《Python3 入门机器学习》示例代码。课程的更多更新内容及辅助练习也将逐步添加进这个代码仓。 | 853 | Jupyter Notebook | 02/24 |
| 27 | [datawhalechina/competition-baseline](https://github.com/datawhalechina/competition-baseline) | 数据科学竞赛各种baseline代码、思路分享 | 814 | Jupyter Notebook | 03/15 |
| 28 | [bighuang624/Andrew-Ng-Deep-Learning-notes](https://github.com/bighuang624/Andrew-Ng-Deep-Learning-notes) | 吴恩达《深度学习》系列课程笔记及代码 \| Notes in Chinese for Andrew Ng Deep Learning Course | 732 | Jupyter Notebook | 04/16 |
| 29 | [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 篇 \| 行业应用 & 课程笔记 | 666 | Jupyter Notebook | 03/29 |
| 30 | [996refuse/zheye](https://github.com/996refuse/zheye) | 者也 - 知乎 倒立的文字 汉字验证码识别程序 | 662 | Jupyter Notebook | 01/29 |
| 31 | [huaweicloud/ModelArts-Lab](https://github.com/huaweicloud/ModelArts-Lab) | ModelArts-Lab是示例代码库。更多AI开发学习交流信息,请访问华为云AI开发者社区:https://developer.huaweicloud.com/techfield/ai.html | 636 | Jupyter Notebook | 04/27 |
| 32 | [datawhalechina/team-learning](https://github.com/datawhalechina/team-learning) | Datawhale组队学习计划与课程内容 | 593 | Jupyter Notebook | 04/24 |
| 33 | [howl-anderson/Chinese_models_for_SpaCy](https://github.com/howl-anderson/Chinese_models_for_SpaCy) | SpaCy 中文模型 \| Models for SpaCy that support Chinese | 456 | Jupyter Notebook | 03/12 |
| 34 | [yuanxiaosc/Machine-Learning-Book](https://github.com/yuanxiaosc/Machine-Learning-Book) | 《机器学习宝典》包含:谷歌机器学习速成课程(招式)+机器学习术语表(口诀)+机器学习规则(心得)+机器学习中的常识性问题 (内功)。该资源适用于机器学习、深度学习研究人员和爱好者参考! | 408 | Jupyter Notebook | 01/16 |
| 35 | [EricWebsmith/china_job_survey](https://github.com/EricWebsmith/china_job_survey) | stats of Chinese developers. 统计中国程序员的就业情况 | 384 | Jupyter Notebook | 04/03 |
| 36 | [coldlarry/YOLOv3-complete-pruning](https://github.com/coldlarry/YOLOv3-complete-pruning) | 提供对YOLOv3及Tiny的多种剪枝版本,以适应不同的需求。 | 378 | Jupyter Notebook | 02/25 |
| 37 | [neolee/pilot](https://github.com/neolee/pilot) | 进入编程世界的第一课 | 333 | Jupyter Notebook | 04/23 |
| 38 | [shibing624/python-tutorial](https://github.com/shibing624/python-tutorial) | python教程,包括:python基础、python进阶;常用机器学习库:numpy、scipy、sklearn、xgboost;深度学习库:keras、tensorflow、paddle、pytorch。 | 301 | Jupyter Notebook | 04/20 |
| 39 | [htygithub/machine-learning-python](https://github.com/htygithub/machine-learning-python) | 機器學習: Python | 298 | Jupyter Notebook | 02/16 |
| 40 | [DjangoPeng/tensorflow-101](https://github.com/DjangoPeng/tensorflow-101) | 《TensorFlow 快速入门与实战》课件与参考代码 | 286 | Jupyter Notebook | 04/25 |
| 41 | [fly51fly/Practical_Python_Programming](https://github.com/fly51fly/Practical_Python_Programming) | 北邮《Python编程与实践》课程资料 | 272 | Jupyter Notebook | 04/23 |
| 42 | [panxl6/cc150](https://github.com/panxl6/cc150) | 《程序员面试金典》(cc150) | 240 | Jupyter Notebook | 03/08 |
| 43 | [yizt/numpy_neural_network](https://github.com/yizt/numpy_neural_network) | 仅使用numpy从头开始实现神经网络,包括反向传播公式推导过程; numpy构建全连接层、卷积层、池化层、Flatten层;以及图像分类案例及精调网络案例等,持续更新中... ... | 239 | Jupyter Notebook | 04/26 |
| 44 | [canghailan/Wuhan-2019-nCoV](https://github.com/canghailan/Wuhan-2019-nCoV) | 2019-nCoV 新冠状病毒 2019-12-01至今国家、省、市三级每日统计数据(支持接口读取) | 237 | Jupyter Notebook | 04/28 |
| 45 | [FighterLYL/GraphNeuralNetwork](https://github.com/FighterLYL/GraphNeuralNetwork) | 《深入浅出图神经网络:GNN原理解析》配套代码 | 221 | Jupyter Notebook | 04/15 |
| 46 | [zhouwei713/data_analysis](https://github.com/zhouwei713/data_analysis) | 一些爬虫和数据分析相关实战练习 | 221 | Jupyter Notebook | 03/23 |
| 47 | [LinXueyuanStdio/LaTeX_OCR_PRO](https://github.com/LinXueyuanStdio/LaTeX_OCR_PRO) | :art: 数学公式识别增强版:中英文手写印刷公式、支持初级符号推导(数据结构基于 LaTeX 抽象语法树) | 221 | Jupyter Notebook | 02/22 |
| 48 | [hecongqing/2018-daguan-competition](https://github.com/hecongqing/2018-daguan-competition) | 2018年"达观杯"文本智能处理挑战赛-长文本分类-rank4 | 207 | Jupyter Notebook | 04/07 |
| 49 | [zpw1995/aotodata](https://github.com/zpw1995/aotodata) | 朱小五写文章涉及到的数据分析,爬虫,源数据 | 205 | Jupyter Notebook | 01/08 |
| 50 | [19920625lsg/algorithms](https://github.com/19920625lsg/algorithms) | 慕课网刘宇波老师所有的算法视频教程在学习时自己的代码记录+加一些其他的算法书籍和课程的学习 | 193 | Jupyter Notebook | 04/23 |
| 51 | [YiranJing/Coronavirus-Epidemic-2019-nCov](https://github.com/YiranJing/Coronavirus-Epidemic-2019-nCov) | 👩🏻⚕️Covid-19 estimation and forecast using statistical model; 新型冠状病毒武汉肺炎统计模型预测 | 190 | Jupyter Notebook | 02/23 |
| 52 | [ShusenTang/Deep-Learning-with-PyTorch-Chinese](https://github.com/ShusenTang/Deep-Learning-with-PyTorch-Chinese) | 本仓库将PyTorch官方书籍《Deep learning with PyTorch》(基本摘录版)翻译成中文版并给出可运行的相关代码。 | 188 | Jupyter Notebook | 02/19 |
| 53 | [nladuo/THSTrader](https://github.com/nladuo/THSTrader) | 量化交易。同花顺免费模拟炒股软件客户端的python API。(Python3) | 184 | Jupyter Notebook | 03/19 |
| 54 | [allenlu2008/PythonDemo](https://github.com/allenlu2008/PythonDemo) | 虾神的Python示例代码库 | 179 | Jupyter Notebook | 01/20 |
| 55 | [cxy229/BDCI2019-SENTIMENT-CLASSIFICATION](https://github.com/cxy229/BDCI2019-SENTIMENT-CLASSIFICATION) | CCF BDCI 2019 互联网新闻情感分析 复赛top1解决方案 | 173 | Jupyter Notebook | 01/25 |
| 56 | [AllanYiin/DeepBelief_Course4_Examples](https://github.com/AllanYiin/DeepBelief_Course4_Examples) | 深度學習課程(第四梯)所設計的課程實作 | 171 | Jupyter Notebook | 04/13 |
| 57 | [HuangCongQing/MachineLearning_Ng](https://github.com/HuangCongQing/MachineLearning_Ng) | 吴恩达机器学习coursera课程,学习代码(2017年秋) The Stanford Coursera course on MachineLearning with Andrew Ng | 162 | Jupyter Notebook | 03/26 |
| 58 | [peiss/ant-learn-pandas](https://github.com/peiss/ant-learn-pandas) | pandas学习课程代码仓库 | 161 | Jupyter Notebook | 04/01 |
| 59 | [HuangCongQing/deeplearning.ai-note](https://github.com/HuangCongQing/deeplearning.ai-note) | 网易云课堂终于官方发布了吴恩达经过授权的汉化课程-“”深度学习专项课程“”,这是自己做的一些笔记以及代码。下为网易云学习链接 | 157 | Jupyter Notebook | 03/26 |
| 60 | [zkywsg/Daily-DeepLearning](https://github.com/zkywsg/Daily-DeepLearning) | 🔥机器学习/深度学习/Python/算法面试/自然语言处理教程/剑指offer/machine learning/deeplearning/Python/Algorithm interview/NLP Tutorial | 149 | Jupyter Notebook | 04/13 |
| 61 | [LinXueyuanStdio/LaTeX_OCR](https://github.com/LinXueyuanStdio/LaTeX_OCR) | :gem: 数学公式识别 | 141 | Jupyter Notebook | 01/29 |
| 62 | [fire717/Machine-Learning](https://github.com/fire717/Machine-Learning) | 机器学习&深度学习资料笔记&基本算法实现&资源整理(ML / CV / NLP / DM...) | 133 | Jupyter Notebook | 04/20 |
| 63 | [kuhung/SSD_keras](https://github.com/kuhung/SSD_keras) | 简明 SSD 目标检测模型 keras version(交通标志识别 训练部分见 dev 分支) | 133 | Jupyter Notebook | 03/28 |
| 64 | [LemenChao/PythonFromDAToDS](https://github.com/LemenChao/PythonFromDAToDS) | 图书《Python编程:从数据分析到数据科学》的配套资源 | 130 | Jupyter Notebook | 01/01 |
| 65 | [LYuhang/GNN_Review](https://github.com/LYuhang/GNN_Review) | GNN综述阅读报告 | 127 | Jupyter Notebook | 04/08 |
| 66 | [loveunk/machine-learning-deep-learning-notes](https://github.com/loveunk/machine-learning-deep-learning-notes) | 机器学习、深度学习的学习路径及知识总结 | 124 | Jupyter Notebook | 04/17 |
| 67 | [Relph1119/statistical-learning-method-camp](https://github.com/Relph1119/statistical-learning-method-camp) | 统计学习方法训练营课程作业及答案,视频笔记在线阅读地址:https://relph1119.github.io/statistical-learning-method-camp | 122 | Jupyter Notebook | 04/20 |
| 68 | [zwq2018/AI_UAV](https://github.com/zwq2018/AI_UAV) | 在人工智能、机器视觉、高精度导航定位和多传感器融合等技术的助推下,众多行业迎来了前所未有的发展机遇,人工智能+无人机(AI+UAV)正是一个具有无限想象力的应用方向。 | 119 | Jupyter Notebook | 03/31 |
| 69 | [ZhangYikaii/NJUCS_Course_Material_JatHoiCheung](https://github.com/ZhangYikaii/NJUCS_Course_Material_JatHoiCheung) | 南京大学 NJU 计算机系 CS 课程资料 作业 代码 实验报告(数据挖掘 模式识别 机器学习导论 概率论与数理统计 计算机图形学 高级程序设计 数据库 计算机系统基础 操作系统 程设实验 数电 数电实验... ) 更新中, star! :star2: | 118 | Jupyter Notebook | 04/07 |
| 70 | [CNFeffery/DataScienceStudyNotes](https://github.com/CNFeffery/DataScienceStudyNotes) | 这个仓库保管从(数据科学学习手札69)开始的所有代码、数据等相关附件内容 | 111 | Jupyter Notebook | 04/02 |
| 71 | [qiguming/MLAPP_CN_CODE](https://github.com/qiguming/MLAPP_CN_CODE) | 《Machine Learning: A Probabilistic Perspective》(Kevin P. Murphy)中文翻译和书中算法的Python实现。 | 107 | Jupyter Notebook | 04/11 |
| 72 | [sailist/ASRFrame](https://github.com/sailist/ASRFrame) | An Automatic Speech Recognition Frame ,一个中文语音识别的完整框架, 提供了多个模型 | 99 | Jupyter Notebook | 01/23 |
| 73 | [ShusenTang/BDC2019](https://github.com/ShusenTang/BDC2019) | 2019中国高校计算机大赛——大数据挑战赛 第三名解决方案 | 97 | Jupyter Notebook | 02/16 |
| 74 | [GenTang/intro_ds_wy_course](https://github.com/GenTang/intro_ds_wy_course) | 《精通数据科学:从线性回归到深度学习》视频课程的配套资料 | 96 | Jupyter Notebook | 02/16 |
| 75 | [Dylanin1999/Tensorflow2.0](https://github.com/Dylanin1999/Tensorflow2.0) | 学习笔记代码 | 88 | Jupyter Notebook | 03/25 |
| 76 | [FontTian/hyperopt-doc-zh](https://github.com/FontTian/hyperopt-doc-zh) | Github开源项目hyperopt系列的中文文档,以及学习教程等 | 88 | Jupyter Notebook | 03/13 |
| 77 | [peiss/ant-learn-python](https://github.com/peiss/ant-learn-python) | 蚂蚁学Python,微信公众号的代码仓库 | 80 | Jupyter Notebook | 04/15 |
| 78 | [linguishi/chinese_sentiment](https://github.com/linguishi/chinese_sentiment) | 中文情感分析,CNN,BI-LSTM,文本分类 | 78 | Jupyter Notebook | 01/29 |
| 79 | [Relph1119/MachineLearning-WatermelonBook](https://github.com/Relph1119/MachineLearning-WatermelonBook) | 周志华-机器学习 | 78 | Jupyter Notebook | 04/16 |
| 80 | [sangyx/d2l-torch](https://github.com/sangyx/d2l-torch) | 《动手学深度学习》 PyTorch 版本 | 76 | Jupyter Notebook | 02/09 |
| 81 | [czczup/UrbanRegionFunctionClassification](https://github.com/czczup/UrbanRegionFunctionClassification) | 第五届百度西安交大大数据竞赛 城市区域功能分类 Baseline | 76 | Jupyter Notebook | 01/12 |
| 82 | [duoergun0729/adversarial_examples](https://github.com/duoergun0729/adversarial_examples) | 对抗样本 | 73 | Jupyter Notebook | 03/31 |
| 83 | [batermj/data_sciences_campaign](https://github.com/batermj/data_sciences_campaign) | 【数据科学家系列课程】 | 73 | Jupyter Notebook | 04/27 |
| 84 | [kingname/SourceCodeofMongoRedis](https://github.com/kingname/SourceCodeofMongoRedis) | 《左手MongoDB,右手Redis——从入门到商业实战》书籍配套源代码。 | 72 | Jupyter Notebook | 04/22 |
| 85 | [dsh0416/quantum-i-ching](https://github.com/dsh0416/quantum-i-ching) | A Quantum 爻 System Implementation for Divination | 72 | Jupyter Notebook | 03/31 |
| 86 | [xuwening/blog](https://github.com/xuwening/blog) | 对过往做做总结 | 70 | Jupyter Notebook | 03/23 |
| 87 | [ni1o1/pygeo-tutorial](https://github.com/ni1o1/pygeo-tutorial) | Tutorial of geospatial data processing using python 用python分析时空数据的教程(in Chinese and English ) | 63 | Jupyter Notebook | 04/27 |
| 88 | [Relph1119/deeplearning-with-tensorflow-notes](https://github.com/Relph1119/deeplearning-with-tensorflow-notes) | 《TensorFlow深度学习》学习笔记及代码,采用TensorFlow2.0.0版本 | 63 | Jupyter Notebook | 04/18 |
| 89 | [cantjie/XJTU-Share](https://github.com/cantjie/XJTU-Share) | 西安交通大学课程资料共享计划 | 61 | Jupyter Notebook | 04/24 |
| 90 | [JokerJohn/bilibli_notes2](https://github.com/JokerJohn/bilibli_notes2) | 攻城狮之家B站视频课程课件合集2,1号仓库https://github.com/JokerJohn/bilibili_notes.git | 61 | Jupyter Notebook | 02/02 |
| 91 | [yenlung/nccu-jupyter-math](https://github.com/yenlung/nccu-jupyter-math) | 這是政治大學應用數學系《數學軟體應用》課程的上課筆記。主要介紹 Python 程式語言, 目標是用 Python 做數據分析。 | 61 | Jupyter Notebook | 04/20 |
| 92 | [monkeyDemon/Learn_Dive-into-DL-PyTorch](https://github.com/monkeyDemon/Learn_Dive-into-DL-PyTorch) | Datawhale第10期组队学习活动:《动手学深度学习》Pytorch版的练习代码 | 61 | Jupyter Notebook | 04/15 |
| 93 | [LemenChao/Introduction-to-Data-Science](https://github.com/LemenChao/Introduction-to-Data-Science) | 本Repository为中国人民大学朝乐门老师开源课程——《数据科学导论》 | 60 | Jupyter Notebook | 04/05 |
| 94 | [qiwsir/DataAnalysis](https://github.com/qiwsir/DataAnalysis) | 《跟老齐学Python系列》图书之《数据分析》www.itdiffer.com | 60 | Jupyter Notebook | 01/12 |
| 95 | [neolee/pilot-student](https://github.com/neolee/pilot-student) | “进入编程世界的第一课” 的学习用书 | 60 | Jupyter Notebook | 04/23 |
| 96 | [makelove/Programer_Log](https://github.com/makelove/Programer_Log) | 最新动态在这里【我的程序员日志】 | 59 | Jupyter Notebook | 04/23 |
| 97 | [JackonYang/paper-reading](https://github.com/JackonYang/paper-reading) | 深度学习论文阅读、数据仓库实践体验。比做算法的懂工程落地,比做工程的懂算法模型。 | 58 | Jupyter Notebook | 04/14 |
| 98 | [jt120/tianchi_ship_2019](https://github.com/jt120/tianchi_ship_2019) | 天池智慧海洋 2019 https://tianchi.aliyun.com/competition/entrance/231768/introduction?spm=5176.12281949.1003.1.493e5cfde2Jbke | 57 | Jupyter Notebook | 01/12 |
| 99 | [YQGong/NN_From_Scratch](https://github.com/YQGong/NN_From_Scratch) | B站视频系列-从零开始的神经网络 | 55 | Jupyter Notebook | 03/02 |
| 100 | [shiyanlou/louplus-ml](https://github.com/shiyanlou/louplus-ml) | 实验楼 《楼+ 机器学习实战》课程挑战作业参考答案 https://www.shiyanlou.com/louplus/ml | 53 | Jupyter Notebook | 01/09 |
| 101 | [hudengjunai/DeepEmbeding](https://github.com/hudengjunai/DeepEmbeding) | 图像检索和向量搜索,similarity learning,compare deep metric and deep-hashing applying in image retrieval | 53 | Jupyter Notebook | 04/10 |
| 102 | [azy1988/ML-CV](https://github.com/azy1988/ML-CV) | 机器学习实战 | 53 | Jupyter Notebook | 03/31 |
| 103 | [ChileWang0228/Deep-Learning-With-Python](https://github.com/ChileWang0228/Deep-Learning-With-Python) | 《Python深度学习》书籍代码 | 52 | Jupyter Notebook | 02/22 |
| 104 | [jamess010/AIOpen](https://github.com/jamess010/AIOpen) | AIOpen是一个按人工智能三要素(数据、算法、算力)进行AI开源项目分类的汇集项目,项目致力于跟踪目前人工智能(AI)的深度学习(DL)开源项目,并尽可能地罗列目前的开源项目,同时加入了一些曾经研究过的代码。通过这些开源项目,使初次接触AI的人们对人工智能(深度学习)有更清晰和更全面的了解。 | 51 | Jupyter Notebook | 03/11 |
| 105 | [jakezj/hidden_geometry_of_nCoV](https://github.com/jakezj/hidden_geometry_of_nCoV) | 建模nCov传播情况 | 51 | Jupyter Notebook | 01/30 |
| 106 | [jiayiwang5/Chinese-ChatBot](https://github.com/jiayiwang5/Chinese-ChatBot) | 中文聊天机器人,基于10万组对白训练而成,采用注意力机制,对一般问题都会生成一个有意义的答复。已上传模型,可直接运行,跑不起来直播吃键盘。 | 50 | Jupyter Notebook | 04/24 |
| 107 | [shikanon/MyPresentations](https://github.com/shikanon/MyPresentations) | this is my presentaion area .个人演讲稿展示区,主要展示一些平时的个人演讲稿或者心得之类的, | 48 | Jupyter Notebook | 02/12 |
| 108 | [FLyingLSJ/Computer_Vision_Project](https://github.com/FLyingLSJ/Computer_Vision_Project) | 计算机视觉项目实战 | 45 | Jupyter Notebook | 02/27 |
| 109 | [yutiansut/QAStrategy](https://github.com/yutiansut/QAStrategy) | 策略基类/ 支持QIFI协议 | 45 | Jupyter Notebook | 04/07 |
| 110 | [xiaoxiaoyao/MyApp](https://github.com/xiaoxiaoyao/MyApp) | 随便写的各种,点链接可以进入我的知乎 | 45 | Jupyter Notebook | 04/02 |
| 111 | [PandasCute/2018-ORANGE-FINANCIAL-BIG-DATA-top9](https://github.com/PandasCute/2018-ORANGE-FINANCIAL-BIG-DATA-top9) | 2018年甜橙金融杯大数据建模大赛-初赛第四-复赛线上11-决赛9-复现top1解决方案-【二分类,风控】 | 44 | Jupyter Notebook | 03/04 |
| 112 | [wqw547243068/Python-learning](https://github.com/wqw547243068/Python-learning) | 好玩儿的Python:从数据挖掘到深度学习 | 43 | Jupyter Notebook | 02/06 |
| 113 | [plouto-quants/FBDQA-2019A](https://github.com/plouto-quants/FBDQA-2019A) | 金融大数据量化分析 | 42 | Jupyter Notebook | 04/26 |
| 114 | [letylin/pyprogbook](https://github.com/letylin/pyprogbook) | 金融大數據首部曲 書名: Python 程式設計入門 — 金融商管實務案例 讀者可以在此下載教學資源含程式碼 | 41 | Jupyter Notebook | 04/07 |
| 115 | [LiuChuang0059/Complex-Network](https://github.com/LiuChuang0059/Complex-Network) | 复杂网络研究资源整理和基础知识学习 | 40 | Jupyter Notebook | 04/27 |
| 116 | [AlvinAi96/match_rcnn](https://github.com/AlvinAi96/match_rcnn) | Tianchi New Product Laboratory - Taobao Live Product Identification 天池大赛项目:天池新品实验室 - 淘宝直播商品识别 | 39 | Jupyter Notebook | 03/11 |
| 117 | [Harry3W/readata](https://github.com/Harry3W/readata) | Python数据分析实战项目汇总~ | 38 | Jupyter Notebook | 04/02 |
| 118 | [oubindo/cs231n-cnn](https://github.com/oubindo/cs231n-cnn) | 斯坦福的cs231n课程的assignments,非常好的课程,在这里也要强推 | 38 | Jupyter Notebook | 04/19 |
| 119 | [08zhangyi/multi-factor-gm-wind-joinquant](https://github.com/08zhangyi/multi-factor-gm-wind-joinquant) | 基于掘金+万得+聚宽的多因子策略开发框架 | 38 | Jupyter Notebook | 04/27 |
| 120 | [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 (大数据分布式计算与案例——李丰著) | 37 | Jupyter Notebook | 04/23 |
| 121 | [heucoder/ML-DL_book](https://github.com/heucoder/ML-DL_book) | 机器学习、深度学习一些个人认为不错的书籍。 | 35 | Jupyter Notebook | 03/31 |
| 122 | [Fafa-DL/Tensorflow2.0-](https://github.com/Fafa-DL/Tensorflow2.0-) | bilibili:啥都会一点的研究生 | 33 | Jupyter Notebook | 03/15 |
| 123 | [makelove/True_Artificial_Intelligence](https://github.com/makelove/True_Artificial_Intelligence) | 真AI人工智能 | 32 | Jupyter Notebook | 03/31 |
| 124 | [edu2act/course-PySCE](https://github.com/edu2act/course-PySCE) | 人工智能方向,《Python科学计算生态》课程仓库 | 32 | Jupyter Notebook | 02/16 |
| 125 | [Jie-Yuan/tql-Python](https://github.com/Jie-Yuan/tql-Python) | 思维误区: 用理想模型来思考复杂现实问题 | 32 | Jupyter Notebook | 03/25 |
| 126 | [howie6879/pylab](https://github.com/howie6879/pylab) | 和Python相关的学习笔记:机器学习、算法、进阶书籍、文档,博客地址:https://www.howie6879.cn | 32 | Jupyter Notebook | 03/30 |
| 127 | [zhanlaoban/CCF_BDCI_2019_datafountain350](https://github.com/zhanlaoban/CCF_BDCI_2019_datafountain350) | CCF BDCI 2019 互联网新闻情感分析 复赛top8 代码 | 31 | Jupyter Notebook | 01/07 |
| 128 | [VoldeMortzzz/2019Baai-zhihu-Cup-findexp-4th](https://github.com/VoldeMortzzz/2019Baai-zhihu-Cup-findexp-4th) | 2019年知乎看山杯第四名 | 30 | Jupyter Notebook | 01/13 |
| 129 | [CodingChaozhang/Deep-Learning](https://github.com/CodingChaozhang/Deep-Learning) | 深度学习的实战项目 | 29 | Jupyter Notebook | 02/17 |
| 130 | [neolee/wop-ecnu-pub](https://github.com/neolee/wop-ecnu-pub) | 华东师范大学《数据思维与实践》课程主站 | 29 | Jupyter Notebook | 04/23 |
| 131 | [Travisgogogo/2019-ABC-Athena](https://github.com/Travisgogogo/2019-ABC-Athena) | 2019 农业银行雅典娜杯数据挖掘大赛高校 Top2 Solution | 29 | Jupyter Notebook | 01/12 |
| 132 | [allenlu2008/PySparkDemo](https://github.com/allenlu2008/PySparkDemo) | PySpark算子及空间应用的各个Demo | 29 | Jupyter Notebook | 01/20 |
| 133 | [unlimitbladeworks/python-tools](https://github.com/unlimitbladeworks/python-tools) | python3日常小工具仓库 | 28 | Jupyter Notebook | 04/07 |
| 134 | [IBBD/IBBD.github.io](https://github.com/IBBD/IBBD.github.io) | IBBD技术博客 | 28 | Jupyter Notebook | 04/12 |
| 135 | [chinapnr/python_study](https://github.com/chinapnr/python_study) | python 入门培训教材,实用、快速、清晰 | 28 | Jupyter Notebook | 04/28 |
| 136 | [PandasCute/Provide-Banks-with-precision-marketing-solutions-Provide-Banks-with-precision-marketing-solutions](https://github.com/PandasCute/Provide-Banks-with-precision-marketing-solutions-Provide-Banks-with-precision-marketing-solutions) | 「二分类算法」提供银行精准营销解决方案 \| 练习赛-0.93984283-【二分类,特征组】 | 27 | Jupyter Notebook | 03/04 |
| 137 | [saturn-lab/MEE-CC07](https://github.com/saturn-lab/MEE-CC07) | CC07-单元 | 27 | Jupyter Notebook | 04/28 |
| 138 | [zhulei227/ML_Notes](https://github.com/zhulei227/ML_Notes) | 机器学习算法的公式推导以及numpy实现 | 27 | Jupyter Notebook | 04/26 |
| 139 | [leovan/data-science-introduction-with-r](https://github.com/leovan/data-science-introduction-with-r) | R 语言数据科学导论 \| Data Science Introduction with R | 27 | Jupyter Notebook | 04/07 |
| 140 | [zhangjunhd/reading-notes](https://github.com/zhangjunhd/reading-notes) | 张俊的读书笔记 | 27 | Jupyter Notebook | 04/27 |
| 141 | [ultimatejoe/rul_of_cutter](https://github.com/ultimatejoe/rul_of_cutter) | 刀具剩余寿命预测 | 26 | Jupyter Notebook | 04/17 |
| 142 | [LogicJake/tuling-video-click-top3](https://github.com/LogicJake/tuling-video-click-top3) | 图灵联邦视频点击预测大赛线上第三-【ctr, embedding, 穿越特征】 | 25 | Jupyter Notebook | 03/04 |
| 143 | [DataLoaderX/datasetsome](https://github.com/DataLoaderX/datasetsome) | 一些数据集处理相关的 API | 25 | Jupyter Notebook | 01/01 |
| 144 | [derekhe/crawler-book](https://github.com/derekhe/crawler-book) | 《爬虫实战:从数据到产品》一书源代码 | 25 | Jupyter Notebook | 04/01 |
| 145 | [Travisgogogo/BAAI-ZHIHU-2019](https://github.com/Travisgogogo/BAAI-ZHIHU-2019) | Top3 Solution for 2019 BAAI-Zhihu-Cup 知乎看山杯 | 25 | Jupyter Notebook | 01/12 |
| 146 | [wererLinC/Machine_Learning](https://github.com/wererLinC/Machine_Learning) | 参考了西瓜书,sklearn源码,李航统计学,机器学习实战、机器学习中的数学 | 24 | Jupyter Notebook | 03/27 |
| 147 | [dengxiuqi/WeiboSentiment](https://github.com/dengxiuqi/WeiboSentiment) | 基于FastText/SVM/贝叶斯/神经网络的中文微博情感分析 | 23 | Jupyter Notebook | 03/24 |
| 148 | [mengjiexu/OCR_CNN_-CTC](https://github.com/mengjiexu/OCR_CNN_-CTC) | 使用CNN全卷积神经网络进行整行汉字识别,正确率90-94%,后来有朋友改成densenet做主网络,做到99%以上正确率 | 23 | Jupyter Notebook | 01/19 |
| 149 | [computational-class/ccrbook](https://github.com/computational-class/ccrbook) | 《计算传播学导论》Python代码和PPT | 23 | Jupyter Notebook | 03/09 |
| 150 | [StdioA/fluent-python-notes](https://github.com/StdioA/fluent-python-notes) | 《流畅的 Python》阅读笔记 | 22 | Jupyter Notebook | 03/31 |
| 151 | [MachineLP/Spark-](https://github.com/MachineLP/Spark-) | Spark学习笔记 | 22 | Jupyter Notebook | 02/10 |
| 152 | [cumtcssuld/RSP_of_CUMTCS](https://github.com/cumtcssuld/RSP_of_CUMTCS) | 【矿大计算机学院资源共享计划(Resource SharingPlan of CUMTCS)】本仓库由矿大计算机学院学生会学习部牵头维护,由计算机学院全体同学共建共享。欢迎大家积极的参加到本资源库的建设中来吧!(每当有重大更新,我们都会将整个库克隆到码云,点击下边链接,到我们的码云仓库可以获得更好的下载体验) | 22 | Jupyter Notebook | 04/25 |
| 153 | [yinizhilian/NLP_Share](https://github.com/yinizhilian/NLP_Share) | 自然语言处理NLP(自然语言生成NLG、自然语言理解NLU)、自然语言学术会议大盘点、自然语言大佬介绍、NLP研究机构、NLP资料分享、NLP学习资源分享、NLP学术论文介绍 | 21 | Jupyter Notebook | 01/14 |
| 154 | [xushengyuan/Fastsinging](https://github.com/xushengyuan/Fastsinging) | 一个基于Fastspeech的开源歌声合成系统 | 20 | Jupyter Notebook | 03/27 |
| 155 | [Light2077/QA-Abstract-And-Reasoning](https://github.com/Light2077/QA-Abstract-And-Reasoning) | 问答摘要与推理 | 20 | Jupyter Notebook | 04/17 |
| 156 | [wybert/open-wuhan-ncov-illness-data](https://github.com/wybert/open-wuhan-ncov-illness-data) | 这个项目有关有关 武汉肺炎 2019-ncov的相关病例数据的分享。从gitlab迁移过来。发布页这里 | 20 | Jupyter Notebook | 01/31 |
| 157 | [jiye-ML/math_study](https://github.com/jiye-ML/math_study) | 数学相关知识 包括 高数 概率 线性代数 | 20 | Jupyter Notebook | 04/19 |
| 158 | [oldratlee/data-science-practice](https://github.com/oldratlee/data-science-practice) | 数据科学实践 \| data science practice | 19 | Jupyter Notebook | 01/03 |
| 159 | [Rockyzsu/convertible_bond](https://github.com/Rockyzsu/convertible_bond) | 低风险投资之可转债 | 19 | Jupyter Notebook | 03/29 |
| 160 | [ywchiu/tibamedl](https://github.com/ywchiu/tibamedl) | Python深度學習實戰- 邁向A.I.的第一步 | 19 | Jupyter Notebook | 04/18 |
| 161 | [nmcdev/meteva](https://github.com/nmcdev/meteva) | 提供气象产品检验相关程序 | 18 | Jupyter Notebook | 04/26 |
| 162 | [Flyfoxs/xf_tag](https://github.com/Flyfoxs/xf_tag) | 大数据应用分类标注挑战赛(NLP),亚军🥈 | 18 | Jupyter Notebook | 01/29 |
| 163 | [wangyingsm/Python-Data-Science-Handbook](https://github.com/wangyingsm/Python-Data-Science-Handbook) | A Chinese translation of Jake Vanderplas' "Python Data Science Handbook". 《Python数据科学手册》在线Jupyter notebook中文翻译 | 17 | Jupyter Notebook | 04/27 |
| 164 | [JoshuaQYH/TIDIBEI](https://github.com/JoshuaQYH/TIDIBEI) | 基于机器学习方法构建多因子选股模型:RandomForest, GBDT, Adaboots, xgboost,MLP, Linear Model, LSTM | 17 | Jupyter Notebook | 04/10 |
| 165 | [watermelon-lee/NLP-practice-with-Tensorflow2](https://github.com/watermelon-lee/NLP-practice-with-Tensorflow2) | 使用tensorflow2完成一些常见的NLP任务 | 17 | Jupyter Notebook | 03/25 |
| 166 | [thunderhit/DaDengAndHisPython](https://github.com/thunderhit/DaDengAndHisPython) | 【微信公众号:大邓和他的python】, Python语法快速入门https://www.bilibili.com/video/av44384851 Python网络爬虫快速入门https://www.bilibili.com/video/av72010301, 我的联系邮箱thunderhit@qq.com | 17 | Jupyter Notebook | 04/25 |
| 167 | [GrayXu/Virtual-Try-On-Flask](https://github.com/GrayXu/Virtual-Try-On-Flask) | Virtual Try-on Network on Flask 基于深度学习的虚拟试衣 | 17 | Jupyter Notebook | 02/27 |
| 168 | [DataXujing/DIoU_YOLO_V3](https://github.com/DataXujing/DIoU_YOLO_V3) | :chart_with_upwards_trend::chart_with_upwards_trend::chart_with_upwards_trend:【口罩佩戴检测数据训练 \| 开源口罩检测数据集和预训练模型】Train D/CIoU_YOLO_V3 by darknet for object detection | 17 | Jupyter Notebook | 04/03 |
| 169 | [mepeichun/Efficient-Neural-Network-Bilibili](https://github.com/mepeichun/Efficient-Neural-Network-Bilibili) | B站Efficient-Neural-Network学习分享的配套代码 | 17 | Jupyter Notebook | 03/09 |
| 170 | [DjangoPeng/keras-101](https://github.com/DjangoPeng/keras-101) | 快速入门 Keras 深度学习 | 15 | Jupyter Notebook | 04/23 |
| 171 | [ChuanyuXue/The-Purchase-and-Redemption-Forecast-Challenge-baseline](https://github.com/ChuanyuXue/The-Purchase-and-Redemption-Forecast-Challenge-baseline) | 天池“资金流入流出预测——挑战baseline”的解决方案,线上效果143.5 | 15 | Jupyter Notebook | 04/20 |
| 172 | [Microstrong0305/Python2AI](https://github.com/Microstrong0305/Python2AI) | 从零开始学习人工智能 | 15 | Jupyter Notebook | 03/18 |
| 173 | [LiaoPan/MNE-Cookbook](https://github.com/LiaoPan/MNE-Cookbook) | 使用MNE-python过程中的小技巧,即如何处理MEG/EEG信号数据. | 15 | Jupyter Notebook | 01/10 |
| 174 | [wgwang/ccks2020-baseline](https://github.com/wgwang/ccks2020-baseline) | CCKS 2020: 基于本体的金融知识图谱自动化构建技术评测 | 14 | Jupyter Notebook | 04/23 |
| 175 | [wmpscc/CNN-Series-Getting-Started-and-PyTorch-Implementation](https://github.com/wmpscc/CNN-Series-Getting-Started-and-PyTorch-Implementation) | 我的笔记和Demo,包含分类,检测、分割、知识蒸馏。 | 14 | Jupyter Notebook | 01/25 |
| 176 | [xzl524/football_data_analysis](https://github.com/xzl524/football_data_analysis) | 利用数学和数据来理解足球(Use Math and Data to Understand Football) | 14 | Jupyter Notebook | 04/14 |
| 177 | [fire717/Python-Learner](https://github.com/fire717/Python-Learner) | 轮子/ 常用库/ 书籍笔记/ 小程序 | 13 | Jupyter Notebook | 04/27 |
| 178 | [aaron1aaron2/Class_DSA-2019](https://github.com/aaron1aaron2/Class_DSA-2019) | algorithms & data-structures Learning Note \| 這是 2019 三上 的資料結構與演算法課程紀錄 | 13 | Jupyter Notebook | 04/17 |
| 179 | [maoyunyao/MOTS_SiamMask](https://github.com/maoyunyao/MOTS_SiamMask) | 2019悉尼大学暑期研究课题, 在MOTS数据集上, 利用单目标跟踪的工作 SiamMask 结合目标检测工作 Mask RCNN 实现多目标跟踪与分割任务 | 13 | Jupyter Notebook | 01/29 |
| 180 | [0809zheng/CS231n-assignment2019](https://github.com/0809zheng/CS231n-assignment2019) | CS231n 2019年春季学期课程作业 | 13 | Jupyter Notebook | 03/31 |
| 181 | [GiantPandaCV/yolov3-point](https://github.com/GiantPandaCV/yolov3-point) | 从零开始学习YOLOv3教程解读代码+注意力模块(SE,SPP,RFB etc) | 13 | Jupyter Notebook | 04/24 |
| 182 | [starhou/One-dimensional-GAN](https://github.com/starhou/One-dimensional-GAN) | 用GAN生成一维数据 | 13 | Jupyter Notebook | 03/08 |
| 183 | [zhangqizky/ManTra_Net_Test_Demo](https://github.com/zhangqizky/ManTra_Net_Test_Demo) | 🌹2019年CVPR论文:ManTra-Net: Manipulation Tracing Network For Detection And Localization of Image Forgeries With Anomalous Features | 12 | Jupyter Notebook | 04/14 |
| 184 | [YuleZhang/JDComment_Spider](https://github.com/YuleZhang/JDComment_Spider) | 京东评论爬虫,包含对数据的采集、清洗、可视化、分析等过程,作为数据库课程设计项目 | 12 | Jupyter Notebook | 03/12 |
| 185 | [OUCTheoryGroup/colab_demo](https://github.com/OUCTheoryGroup/colab_demo) | 中国海洋大学视觉实验室前沿理论小组 pytorch 学习 | 12 | Jupyter Notebook | 04/24 |
| 186 | [PySEE/Practices](https://github.com/PySEE/Practices) | 行是知之始,知是行之成 - 陶行知 | 12 | Jupyter Notebook | 04/15 |
| 187 | [Harrison-Ho/Analysis-of-2019-nCoV-propagation-based-on-Model](https://github.com/Harrison-Ho/Analysis-of-2019-nCoV-propagation-based-on-Model) | 通过建模分析了本次新型冠状病毒的传播机理及各种预防策略对病毒传播的影响 | 12 | Jupyter Notebook | 02/16 |
| 188 | [lcan520/BankCardRecognition](https://github.com/lcan520/BankCardRecognition) | 基于python3.6+opencv3+tensorflow+cnn的银行卡识别 | 12 | Jupyter Notebook | 01/14 |
| 189 | [Officeyutong/Countdown-Bot](https://github.com/Officeyutong/Countdown-Bot) | QQ群多功能Bot 。 | 12 | Jupyter Notebook | 04/06 |
| 190 | [udacity/AIPND_P1_Robot_Controller](https://github.com/udacity/AIPND_P1_Robot_Controller) | nd089-cn-p1,针对Udacity CN AIPND P1项目 | 12 | Jupyter Notebook | 02/06 |
| 191 | [JokerJohn/bilibli_notes3](https://github.com/JokerJohn/bilibli_notes3) | 攻城狮之家B站课件合集3 | 11 | Jupyter Notebook | 01/03 |
| 192 | [Amberlan1001/eat_tensorflow2_in_30_days_ipynb](https://github.com/Amberlan1001/eat_tensorflow2_in_30_days_ipynb) | 30天掌握Tensorflow2.1 Jupyter Notebook 版 | 11 | Jupyter Notebook | 04/10 |
| 193 | [LIANGQINGYUAN/NLP-Notebook](https://github.com/LIANGQINGYUAN/NLP-Notebook) | NLP学习笔记的Notebook,包含经典模型的理解与相关实践。 | 11 | Jupyter Notebook | 04/06 |
| 194 | [ljyslyc/Book-KnowledgeGraph-Recommendation](https://github.com/ljyslyc/Book-KnowledgeGraph-Recommendation) | 书籍知识图谱推荐系统 | 11 | Jupyter Notebook | 03/18 |
| 195 | [Baymax94/children-python](https://github.com/Baymax94/children-python) | 少儿编程教育 | 11 | Jupyter Notebook | 03/03 |
| 196 | [EuphoriaYan/pkuss-nlp-pytorch](https://github.com/EuphoriaYan/pkuss-nlp-pytorch) | 自然语言处理导论实验课课件 | 11 | Jupyter Notebook | 04/21 |
| 197 | [Fan-Meng/DM-Python-MOOC](https://github.com/Fan-Meng/DM-Python-MOOC) | 此项目提供在中国大学慕课《数据挖掘与python实践》在线课程的代码及相关资料。课程链接如下:https://www.icourse163.org/course/CUFE-1207262801 | 10 | Jupyter Notebook | 04/18 |
| 198 | [RussWong/JudicialSale](https://github.com/RussWong/JudicialSale) | 司法拍卖项目源代码 | 10 | Jupyter Notebook | 04/14 |
| 199 | [voidful/Phraseg](https://github.com/voidful/Phraseg) | Phraseg - 一言:新詞發現工具包 | 10 | Jupyter Notebook | 04/10 |
| 200 | [Karmenzind/mfw](https://github.com/Karmenzind/mfw) | 马蜂窝游记、景点信息爬虫,热门景点热力图 | 10 | Jupyter Notebook | 04/01 |
⬆ [回到目录](#目录)
<br/>
## Shell
| # | Repository | Description | Stars | Language | Updated |
| ---- | ------------------------------------------------------------ | ------------------------------------------------------------ | ----- | -------- | ------- |
| 1 | [taizilongxu/interview_python](https://github.com/taizilongxu/interview_python) | 关于Python的面试题 | 12.3k | Shell | 03/03 |
| 2 | [233boy/v2ray](https://github.com/233boy/v2ray) | 最好用的 V2Ray 一键安装脚本 & 管理脚本 | 11.5k | Shell | 04/18 |
| 3 | [EtherDream/jsproxy](https://github.com/EtherDream/jsproxy) | 一个基于浏览器端 JS 实现的在线代理 | 7.5k | Shell | 04/09 |
| 4 | [judasn/Linux-Tutorial](https://github.com/judasn/Linux-Tutorial) | 《Java 程序员眼中的 Linux》 | 7.0k | Shell | 01/09 |
| 5 | [rootsongjc/kubernetes-handbook](https://github.com/rootsongjc/kubernetes-handbook) | Kubernetes中文指南/云原生应用架构实践手册 - https://jimmysong.io/kubernetes-handbook | 6.9k | Shell | 04/27 |
| 6 | [skywind3000/awesome-cheatsheets](https://github.com/skywind3000/awesome-cheatsheets) | 超级速查表 - 编程语言、框架和开发工具的速查表,单个文件包含一切你需要知道的东西 :zap: | 5.8k | Shell | 04/18 |
| 7 | [opsnull/follow-me-install-kubernetes-cluster](https://github.com/opsnull/follow-me-install-kubernetes-cluster) | 和我一步步部署 kubernetes 集群 | 5.4k | Shell | 02/07 |
| 8 | [easzlab/kubeasz](https://github.com/easzlab/kubeasz) | 使用Ansible脚本安装K8S集群,介绍组件交互原理,方便直接,不受国内网络环境影响 | 5.2k | Shell | 04/19 |
| 9 | [HIT-Alibaba/interview](https://github.com/HIT-Alibaba/interview) | 笔试面试知识整理 | 4.1k | Shell | 03/20 |
| 10 | [wulabing/V2Ray_ws-tls_bash_onekey](https://github.com/wulabing/V2Ray_ws-tls_bash_onekey) | V2Ray Nginx+vmess+ws+tls/ http2 over tls 一键安装脚本 | 3.9k | Shell | 04/28 |
| 11 | [ToyoDAdoubi/doubi](https://github.com/ToyoDAdoubi/doubi) | 一个逗比写的各种逗比脚本~ | 3.6k | Shell | 02/10 |
| 12 | [softwaredownload/openwrt-fanqiang](https://github.com/softwaredownload/openwrt-fanqiang) | 最好的路由器翻墙、科学上网教程—OpenWrt—shadowsocks | 3.4k | Shell | 03/23 |
| 13 | [Medicean/VulApps](https://github.com/Medicean/VulApps) | 快速搭建各种漏洞环境(Various vulnerability environment) | 2.8k | Shell | 04/15 |
| 14 | [wangdoc/javascript-tutorial](https://github.com/wangdoc/javascript-tutorial) | JavaScript 教程 https://wangdoc.com/javascript | 2.3k | Shell | 04/27 |
| 15 | [CyC2018/Job-Recommend](https://github.com/CyC2018/Job-Recommend) | 🔎 互联网内推信息(社招、校招、实习) | 1.7k | Shell | 04/26 |
| 16 | [lmk123/oh-my-wechat](https://github.com/lmk123/oh-my-wechat) | 微信小助手的安装 / 更新工具。 | 1.7k | Shell | 04/19 |
| 17 | [licess/lnmp](https://github.com/licess/lnmp) | LNMP一键安装包是一个用Linux Shell编写的可以为CentOS/RHEL/Fedora/Aliyun/Amazon、Debian/Ubuntu/Raspbian/Deepin/Mint Linux VPS或独立主机安装LNMP(Nginx/MySQL/PHP)、LNMPA(Nginx/MySQL/PHP/Apache)、LAMP(Apache/MySQL/PHP)生产环境的Shell程序。 | 1.7k | Shell | 04/27 |
| 18 | [LCTT/TranslateProject](https://github.com/LCTT/TranslateProject) | Linux中国翻译项目 | 1.6k | Shell | 04/28 |
| 19 | [wangdoc/bash-tutorial](https://github.com/wangdoc/bash-tutorial) | Bash 教程 | 1.5k | Shell | 04/25 |
| 20 | [P3TERX/Actions-OpenWrt](https://github.com/P3TERX/Actions-OpenWrt) | Build OpenWrt using GitHub Actions \| 使用 GitHub Actions 云编译 OpenWrt | 1.3k | Shell | 04/28 |
| 21 | [neoFelhz/neohosts](https://github.com/neoFelhz/neohosts) | 自由·负责·克制 去广告 Hosts 项目 | 1.2k | Shell | 03/12 |
| 22 | [studygolang/GCTT](https://github.com/studygolang/GCTT) | GCTT Go中文网翻译组。 | 1.1k | Shell | 04/28 |
| 23 | [zfl9/ss-tproxy](https://github.com/zfl9/ss-tproxy) | 搭建 SS/SSR/V2Ray/Socks5 透明代理环境的简陋脚本 | 1.1k | Shell | 03/22 |
| 24 | [wind-liang/leetcode](https://github.com/wind-liang/leetcode) | leetcode 顺序刷题,详细通俗题解,with JAVA | 1.0k | Shell | 04/27 |
| 25 | [devdawei/libstdc-](https://github.com/devdawei/libstdc-) | Xcode 10 和 Xcode 11 中删除的 libstdc++ 库 | 931 | Shell | 01/07 |
| 26 | [maxlicheng/luci-app-unblockmusic](https://github.com/maxlicheng/luci-app-unblockmusic) | 用于解锁网易云灰色歌曲的OpenWRT/LEDE路由器插件 (openwrt/lede luci support for unblock neteasecloudmusic) | 910 | Shell | 04/20 |
| 27 | [aqzt/kjyw](https://github.com/aqzt/kjyw) | 快捷运维,代号kjyw,项目基于shell、python,运维脚本工具库,收集各类运维常用工具脚本,实现快速安装nginx、mysql、php、redis、nagios、运维经常使用的脚本等等... | 906 | Shell | 03/21 |
| 28 | [gaoyifan/china-operator-ip](https://github.com/gaoyifan/china-operator-ip) | 中国运营商IPv4/IPv6地址库-每日更新 | 905 | Shell | 04/28 |
| 29 | [c0ny1/vulstudy](https://github.com/c0ny1/vulstudy) | 使用docker快速搭建各大漏洞靶场,目前可以一键搭建17个靶场。 | 865 | Shell | 03/25 |
| 30 | [gotok8s/k8s-docker-desktop-for-mac](https://github.com/gotok8s/k8s-docker-desktop-for-mac) | Docker Desktop for Mac 开启并使用 Kubernetes | 859 | Shell | 04/28 |
| 31 | [hellofwy/ss-bash](https://github.com/hellofwy/ss-bash) | Shadowsocks流量管理脚本 | 853 | Shell | 02/22 |
| 32 | [liquanzhou/ops_doc](https://github.com/liquanzhou/ops_doc) | 运维简洁实用手册 | 701 | Shell | 03/06 |
| 33 | [klever1988/nanopi-openwrt](https://github.com/klever1988/nanopi-openwrt) | Openwrt for Nanopi R1S R2S 固件编译 | 663 | Shell | 04/28 |
| 34 | [goreliu/zshguide](https://github.com/goreliu/zshguide) | Zsh 开发指南 | 658 | Shell | 02/15 |
| 35 | [monlor/Monlor-Tools](https://github.com/monlor/Monlor-Tools) | 小米路由器Shell工具箱,本人自用,主要参考了小米的Misstar Tools制作,仅学习之用!Telegram群组:https://t.me/joinchat/FMraA0lwzH9fzEW1wXdCFA | 640 | Shell | 01/06 |
| 36 | [xuexb/learn-nginx](https://github.com/xuexb/learn-nginx) | Nginx 入门指南 | 633 | Shell | 03/18 |
| 37 | [P3TERX/aria2.conf](https://github.com/P3TERX/aria2.conf) | Aria2 配置文件 \| OneDrive、Google Drvive 离线下载解决方案 \| 百度网盘不限速转存解决方案 | 619 | Shell | 04/16 |
| 38 | [MvsCode/frps-onekey](https://github.com/MvsCode/frps-onekey) | Frps 一键安装脚本&管理脚本 A tool to auto-compile & install frps on Linux | 562 | Shell | 04/28 |
| 39 | [wppurking/ocserv-docker](https://github.com/wppurking/ocserv-docker) | 用于初始化 ocserv 的 Dockfile 脚本 | 554 | Shell | 03/09 |
| 40 | [Nick233333/phper-linux-gitbook](https://github.com/Nick233333/phper-linux-gitbook) | 💡PHPer 必知必会的 Linux 命令 | 533 | Shell | 04/03 |
| 41 | [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 | 505 | Shell | 02/23 |
| 42 | [arloor/iptablesUtils](https://github.com/arloor/iptablesUtils) | iptables转发ddns域名 | 485 | Shell | 04/21 |
| 43 | [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. | 482 | Shell | 01/17 |
| 44 | [rust-lang-cn/rust-by-example-cn](https://github.com/rust-lang-cn/rust-by-example-cn) | Rust By Example 中文版(包含在线代码编辑器) | 471 | Shell | 04/06 |
| 45 | [rime/plum](https://github.com/rime/plum) | 東風破 /plum/: Rime configuration manager and input schema repository | 458 | Shell | 04/01 |
| 46 | [skyline75489/Heart-First-JavaWeb](https://github.com/skyline75489/Heart-First-JavaWeb) | 一个走心的 Java Web 入门开发教程 | 437 | Shell | 03/20 |
| 47 | [huan/docker-wechat](https://github.com/huan/docker-wechat) | DoChat is a Dockerized WeChat (盒装微信) PC Windows Client for Linux | 402 | Shell | 04/27 |
| 48 | [ctf-wiki/ctf-tools](https://github.com/ctf-wiki/ctf-tools) | CTF 工具集合 | 392 | Shell | 03/11 |
| 49 | [anrip/dnspod-shell](https://github.com/anrip/dnspod-shell) | 基于DNSPod用户API实现的纯Shell动态域名客户端 | 391 | Shell | 03/10 |
| 50 | [hijkpw/scripts](https://github.com/hijkpw/scripts) | Shadowsocks/SS一键脚本、ShadowsocksR/SSR一键脚本、V2Ray一键脚本、trojan一键脚本、VPS购买教程,以及各种资源教程 | 373 | Shell | 04/27 |
| 51 | [csy512889371/learnDoc](https://github.com/csy512889371/learnDoc) | 🔥:rocket:架构师的成长之路-博客-导图 | 353 | Shell | 03/12 |
| 52 | [zhangguanzhang/Kubernetes-ansible](https://github.com/zhangguanzhang/Kubernetes-ansible) | :christmas_tree:ansible多网卡机器上一键部署高可用Kubernetes(systemd) | 347 | Shell | 02/20 |
| 53 | [EtherDream/anti-portscan](https://github.com/EtherDream/anti-portscan) | 使用 iptables 防止端口扫描 | 347 | Shell | 01/20 |
| 54 | [venshine/decompile-apk](https://github.com/venshine/decompile-apk) | 🔥 Decompile APK(反编译APK) | 340 | Shell | 01/15 |
| 55 | [tonydeng/sdn-handbook](https://github.com/tonydeng/sdn-handbook) | SDN手册 | 339 | Shell | 03/10 |
| 56 | [ben1234560/k8s_PaaS](https://github.com/ben1234560/k8s_PaaS) | 如何基于K8S部署成PaaS(一套完整的软件研发和部署平台)——教程/学习(实战代码/欢迎讨论/大量注释/操作配图),你将习得部署如:K8S、dashboard、Harbor、Jenkins、本地gitlab、Apollo框架、promtheus、grafana、spinnaker。 | 337 | Shell | 04/21 |
| 57 | [P3TERX/aria2.sh](https://github.com/P3TERX/aria2.sh) | Aria2 一键安装管理脚本 增强版 | 336 | Shell | 04/19 |
| 58 | [eritpchy/Fingerprint-pay-magisk-wechat](https://github.com/eritpchy/Fingerprint-pay-magisk-wechat) | 微信指纹支付 (Fingerprint pay for WeChat) | 316 | Shell | 02/22 |
| 59 | [jaywcjlove/docker-tutorial](https://github.com/jaywcjlove/docker-tutorial) | 🐳Docker入门学习笔记 | 305 | Shell | 04/28 |
| 60 | [esirplayground/AutoBuild-OpenWrt](https://github.com/esirplayground/AutoBuild-OpenWrt) | Build OpenWrt using GitHub Actions \| 使用 GitHub Actions 编译 OpenWrt \| 感谢P3TERX的项目源码 | 298 | Shell | 04/24 |
| 61 | [apachecn/ml-mastery-zh](https://github.com/apachecn/ml-mastery-zh) | :book: [译] MachineLearningMastery 博客文章 | 283 | Shell | 01/20 |
| 62 | [meetbill/op_practice_book](https://github.com/meetbill/op_practice_book) | 📚 《运维实践指南》持续更新中,推荐大牛干货博客 https://me.csdn.net/g2V13ah | 279 | Shell | 04/27 |
| 63 | [V2RaySSR/Trojan](https://github.com/V2RaySSR/Trojan) | Trojan 一键安装脚本 | 268 | Shell | 04/27 |
| 64 | [bclswl0827/v2ray-heroku](https://github.com/bclswl0827/v2ray-heroku) | 用于在 Heroku 上部署 V2Ray Websocket,本项目不宜做为长期使用之对策。 | 265 | Shell | 04/13 |
| 65 | [P3TERX/docker-aria2-pro](https://github.com/P3TERX/docker-aria2-pro) | Aria2 Pro \| A perfect Aria2 Docker image \| 更好用的 Aria2 Docker 容器镜像 | 265 | Shell | 04/17 |
| 66 | [WangHL0927/grafana-chinese](https://github.com/WangHL0927/grafana-chinese) | grafana中文版本 | 253 | Shell | 01/10 |
| 67 | [233boy/ss](https://github.com/233boy/ss) | Shadowsocks-Go 一键安装脚本 & 管理脚本 | 251 | Shell | 01/15 |
| 68 | [andyzhshg/syno-acme](https://github.com/andyzhshg/syno-acme) | 通过acme协议更新群晖HTTPS泛域名证书的自动脚本 | 250 | Shell | 04/14 |
| 69 | [woniuzfb/iptv](https://github.com/woniuzfb/iptv) | 一键管理 [ IPTV / v2ray / Nginx ] 脚本 youtube, mpegts, 直播源... => hls <=> http-flv <= ... A [ ffmpeg / v2ray / Nginx ] wrapper | 247 | Shell | 04/22 |
| 70 | [IOTQQ/IOTQQ](https://github.com/IOTQQ/IOTQQ) | 跨平台 QQ机器人 框架 原生 高效 迸发 Lua Plugin 只有你想不到 | 240 | Shell | 04/28 |
| 71 | [project-openwrt/luci-app-unblockneteasemusic](https://github.com/project-openwrt/luci-app-unblockneteasemusic) | [OpenWrt] 解除网易云音乐播放限制 | 233 | Shell | 04/25 |
| 72 | [wang-bin/avbuild](https://github.com/wang-bin/avbuild) | ffmpeg花式编译. build tool for all platforms: iOS, android, raspberry pi, win32, uwp, linux, macOS etc. | 231 | Shell | 04/24 |
| 73 | [apachecn/awesome-cs-courses-zh](https://github.com/apachecn/awesome-cs-courses-zh) | 计算机公开课推荐 | 227 | Shell | 04/24 |
| 74 | [gdut-yy/Domain-Driven-Design-zh](https://github.com/gdut-yy/Domain-Driven-Design-zh) | 《领域驱动设计》中文翻译 | 223 | Shell | 03/29 |
| 75 | [felix-fly/v2ray-openwrt](https://github.com/felix-fly/v2ray-openwrt) | 路由器Openwrt安装V2ray简单流程 | 220 | Shell | 03/30 |
| 76 | [91yun/91yuntest](https://github.com/91yun/91yuntest) | 91云服务器一键测试包 | 218 | Shell | 04/12 |
| 77 | [dunwu/linux-tutorial](https://github.com/dunwu/linux-tutorial) | :penguin: Linux教程,主要内容:Linux 命令、Linux 系统运维、软件运维、精选常用Shell脚本 | 215 | Shell | 04/28 |
| 78 | [QAX-A-Team/WeblogicEnvironment](https://github.com/QAX-A-Team/WeblogicEnvironment) | Weblogic环境搭建工具 | 205 | Shell | 04/23 |
| 79 | [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) | 198 | Shell | 04/28 |
| 80 | [guanguans/dnmp-plus](https://github.com/guanguans/dnmp-plus) | 🐳Docker的LNMP一键安装开发环境 + PHP非侵入式监控平台xhgui(优化系统性能、定位Bug神器) | 194 | Shell | 04/20 |
| 81 | [deyuhua/xv6-book-chinese](https://github.com/deyuhua/xv6-book-chinese) | MIT操作系统工程的教学操作系统Xv6的源码剖析中文翻译项目,使用ANSI标准C重新在riscv架构上实现Unix v6; | 190 | Shell | 02/26 |
| 82 | [godbasin/vue-ebook](https://github.com/godbasin/vue-ebook) | 《深入理解Vue.js实战》- 介绍Vue.js框架的出现、设计和使用,结合实战让读者更深入理解Vue.js框架,掌握使用方法。 | 187 | Shell | 03/30 |
| 83 | [soffchen/NanoPi-R2S](https://github.com/soffchen/NanoPi-R2S) | 使用 Github Actions 在线编译内置 OpenClash 的 NanoPi-R2S 固件 | 186 | Shell | 04/20 |
| 84 | [zwmscorm/sharealiddns](https://github.com/zwmscorm/sharealiddns) | 全功能阿里云域名解析脚本(支持IPV4, IPV6, 多域名等,同时支持asuswrt-merlin 、padavan、pandorabox、lede/openwrt固件) | 186 | Shell | 02/22 |
| 85 | [HyperledgerCN/hyperledgerDocs](https://github.com/HyperledgerCN/hyperledgerDocs) | Hyperledger文档 | 186 | Shell | 01/08 |
| 86 | [diguage/mysql-notes](https://github.com/diguage/mysql-notes) | MySQL 学习笔记 | 184 | Shell | 04/09 |
| 87 | [rachpt/AutoSeed](https://github.com/rachpt/AutoSeed) | 全自动发种姬 [流程图 https://www.processon.com/view/link/5c088855e4b0ca4b40c93a49 ] | 183 | Shell | 02/28 |
| 88 | [gdut-yy/CSS-The-Definitive-Guide-4th-zh](https://github.com/gdut-yy/CSS-The-Definitive-Guide-4th-zh) | 《CSS权威指南第四版》中文翻译 | 181 | Shell | 03/24 |
| 89 | [wangdoc/es6-tutorial](https://github.com/wangdoc/es6-tutorial) | 一本开源的 JavaScript 语言教程,全面介绍 ECMAScript 6 新引入的语法特性。 | 177 | Shell | 04/25 |
| 90 | [aturl/awesome-anti-gfw](https://github.com/aturl/awesome-anti-gfw) | 突破网络审查和封锁的开源工具清单。 | 171 | Shell | 04/02 |
| 91 | [tianhao/alfred-mweb-workflow](https://github.com/tianhao/alfred-mweb-workflow) | 搜索、打开MWeb 内部文档和外部 Markdown 文档 | 168 | Shell | 04/27 |
| 92 | [DeppWang/Java-Books](https://github.com/DeppWang/Java-Books) | 📚 Java 程序员必读高分神作(非扫描版) | 168 | Shell | 03/28 |
| 93 | [jardenliu/XPS15-9560-Catalina](https://github.com/jardenliu/XPS15-9560-Catalina) | XPS15-9560-Catalina, Q群:161385229 | 162 | Shell | 04/21 |
| 94 | [jgsrty/jgsrty.github.docs](https://github.com/jgsrty/jgsrty.github.docs) | :sunny: 英语学习 :feet: 项目预览:https://jgsrty.github.io 国内访问:https://rtyxmd.gitee.io | 161 | Shell | 04/28 |
| 95 | [hczhcz/the-elder-is-excited](https://github.com/hczhcz/the-elder-is-excited) | 暴力膜蛤 | 152 | Shell | 04/26 |
| 96 | [idoop/docker-apollo](https://github.com/idoop/docker-apollo) | docker image for Ctrip/Apollo(携程Apollo) | 151 | Shell | 04/23 |
| 97 | [TheKingOfDuck/ApkAnalyser](https://github.com/TheKingOfDuck/ApkAnalyser) | 一键提取安卓应用中可能存在的敏感信息。 | 148 | Shell | 04/03 |
| 98 | [eritpchy/Fingerprint-pay-magisk-alipay](https://github.com/eritpchy/Fingerprint-pay-magisk-alipay) | 支付宝指纹支付 (Fingerprint pay for Alipay) | 146 | Shell | 03/06 |
| 99 | [wangdoc/webapi-tutorial](https://github.com/wangdoc/webapi-tutorial) | Web API 教程 | 138 | Shell | 03/21 |
| 100 | [openwrtcompileshell/OpenwrtCompileScript](https://github.com/openwrtcompileshell/OpenwrtCompileScript) | Openwrt编译辅助脚本可以帮助你更快的搭建openwrt环境,但不会帮你完成整个编译过程 | 138 | Shell | 04/28 |
| 101 | [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. 一些无聊的脚本和配置文件 | 135 | Shell | 03/09 |
| 102 | [lovezzzxxx/liverecord](https://github.com/lovezzzxxx/liverecord) | 自动录播并自动备份,支持youtube频道、twitcast频道、twitch频道、openrec频道、niconico生放送、niconico社区、niconico频道、mirrativ频道、reality频道、17live频道、bilibili频道、streamlink支持的直播网址、ffmpeg支持的m3u8地址 | 133 | Shell | 02/29 |
| 103 | [lijianying10/FixLinux](https://github.com/lijianying10/FixLinux) | 记录我是如何解决一些问题的,公开我平时用的脚本,变量等。 | 129 | Shell | 03/09 |
| 104 | [whunt1/onekeymakemtg](https://github.com/whunt1/onekeymakemtg) | 编译安装最新版 mtproxy-go 一键脚本 | 125 | Shell | 04/27 |
| 105 | [wangdoc/html-tutorial](https://github.com/wangdoc/html-tutorial) | HTML 语言教程 | 123 | Shell | 02/27 |
| 106 | [Toxic-Cat/Airport-toolkit](https://github.com/Toxic-Cat/Airport-toolkit) | 各類方便機場主進行安裝維護的shell腳本 | 119 | Shell | 04/28 |
| 107 | [FantasticLBP/codesnippets](https://github.com/FantasticLBP/codesnippets) | iOS 代码规范、属性、方法、GCD、线程等代码块和控制器、单例、Model 类模版 | 116 | Shell | 03/05 |
| 108 | [nwcdlabs/kops-cn](https://github.com/nwcdlabs/kops-cn) | AWS中国宁夏区域/北京区域,快速Kops部署K8S集群 | 115 | Shell | 04/27 |
| 109 | [giantbranch/pwn-env-init](https://github.com/giantbranch/pwn-env-init) | CTF PWN 做题环境一键搭建脚本 | 113 | Shell | 03/18 |
| 110 | [farsunset/lvxin-im](https://github.com/farsunset/lvxin-im) | 侣信是一款功能强大的IM(即时聊天)工具。具有丰富的功能,聊天,群组,部门组织,内部朋友圈等功能。它可以在局域网内使用保证沟通的信息安全,并且它是完全免费的,而且可以及时获得更新。 | 112 | Shell | 04/21 |
| 111 | [fenglh/IPABuildShell](https://github.com/fenglh/IPABuildShell) | IPABuildShell 一个强大的、轻量的 iOS 自动打包工具,无需手动指定授权文件和证书 | 110 | Shell | 02/24 |
| 112 | [XIU2/SHELL](https://github.com/XIU2/SHELL) | 🤪 一些乱七八糟的脚本 | 106 | Shell | 04/28 |
| 113 | [levinit/itnotes](https://github.com/levinit/itnotes) | 个人笔记,IT相关。 | 105 | Shell | 04/22 |
| 114 | [primovist/snell.sh](https://github.com/primovist/snell.sh) | snell的一键安装脚本 | 104 | Shell | 04/12 |
| 115 | [yanhuacuo/98wubi-tables](https://github.com/yanhuacuo/98wubi-tables) | 98五笔基础码表 | 102 | Shell | 04/25 |
| 116 | [52fancy/GooGle-BBR](https://github.com/52fancy/GooGle-BBR) | GooGle开源TCP加速算法 | 102 | Shell | 02/16 |
| 117 | [lgs3137/MR_S1-macOS](https://github.com/lgs3137/MR_S1-macOS) | 机械革命S1(MSI PS42 8RB) for macOS Catalina & Mojave | 100 | Shell | 04/01 |
| 118 | [easy-swoole/doc](https://github.com/easy-swoole/doc) | easyswoole文档 | 100 | Shell | 03/19 |
| 119 | [apachecn/stanford-cs234-notes-zh](https://github.com/apachecn/stanford-cs234-notes-zh) | 斯坦福 cs234 强化学习中文讲义 | 98 | Shell | 02/07 |
| 120 | [AndorChen/rbenv-china-mirror](https://github.com/AndorChen/rbenv-china-mirror) | 让 rbenv 使用 Ruby China 的镜像安装 Ruby | 97 | Shell | 01/27 |
| 121 | [xiaohouzivpn/xiaohouzi](https://github.com/xiaohouzivpn/xiaohouzi) | 小猴子最新后台网站 www.xiaohouzilaaa.site 小猴子安卓版https://raw.githubusercontent.com/xiaohouzivpn/xiaohouzi/master/xiaohouzijiasuqi.apk 小猴子 pc版本 https://raw.githubusercontent.com/xiaohouzivpn/xiaohouzi/master/xiaohouzipc.rar | 96 | Shell | 04/18 |
| 122 | [laubonghaudoi/Chinese_Rime](https://github.com/laubonghaudoi/Chinese_Rime) | 收集現代漢語方言和古漢語的中州韻輸入法拼音方案 Collection of phonetic spelling schemas for Sinitic languages and dialects | 96 | Shell | 04/27 |
| 123 | [mritd/shell_scripts](https://github.com/mritd/shell_scripts) | 常用的一些 shell 脚本 | 95 | Shell | 04/07 |
| 124 | [goodboy23/shell-script-collection](https://github.com/goodboy23/shell-script-collection) | shell小框架,地址:http://www.linkops.cn/363.htm | 93 | Shell | 04/15 |
| 125 | [analysys/argo-installer](https://github.com/analysys/argo-installer) | 方舟Argo安装工具 | 93 | Shell | 04/24 |
| 126 | [daliansky/Lenovo-Air13-IWL-Hackintosh](https://github.com/daliansky/Lenovo-Air13-IWL-Hackintosh) | 联想小新Air 13 IWL笔记本EFI | 93 | Shell | 04/17 |
| 127 | [Lancenas/actions-openwrt-helloworld](https://github.com/Lancenas/actions-openwrt-helloworld) | Actions使用Lean's lede源码编译含helloworld服务固件 | 92 | Shell | 04/28 |
| 128 | [apachecn/interpretable-ml-book-zh](https://github.com/apachecn/interpretable-ml-book-zh) | interpretable-ml-book中文翻译 | 91 | Shell | 01/21 |
| 129 | [gdut-yy/Clean-Architecture-zh](https://github.com/gdut-yy/Clean-Architecture-zh) | 《架构整洁之道》中文翻译 | 91 | Shell | 04/28 |
| 130 | [b1f6c1c4/learn-git-the-super-hard-way](https://github.com/b1f6c1c4/learn-git-the-super-hard-way) | 不走寻常路的Git教程 | 89 | Shell | 04/15 |
| 131 | [i5ting/i5ting-mac-init](https://github.com/i5ting/i5ting-mac-init) | 自己 Mac + Node.js 电脑初始化开发环境的安装脚本 | 89 | Shell | 04/12 |
| 132 | [JinjunHan/iOSDeviceSupport](https://github.com/JinjunHan/iOSDeviceSupport) | 各个版本的iOS Device Support | 88 | Shell | 04/21 |
| 133 | [lightyearvpn/LightyearVPN](https://github.com/lightyearvpn/LightyearVPN) | LightyearVPN 光年VPN 科学上网 一键翻墙 无需配置 | 88 | Shell | 04/28 |
| 134 | [Binlogo/iOS-Practice-Checklist](https://github.com/Binlogo/iOS-Practice-Checklist) | iOS 精进与实践检查清单 | 87 | Shell | 03/17 |
| 135 | [JaderH/GreenBox](https://github.com/JaderH/GreenBox) | :game_die: 娱乐项目,使用 Crontab 定时提交 Commits。点亮绿格子;对就是绿 | 87 | Shell | 04/28 |
| 136 | [xyzmos/GeekDNS](https://github.com/xyzmos/GeekDNS) | GeekDNS配置文件 | 84 | Shell | 03/03 |
| 137 | [zq99299/note-book](https://github.com/zq99299/note-book) | 新笔记本,java、git、elasticsearch、mycat、设计模式、gradle、vue, 等 。vuepress 构建的 Markdown 笔记。 | 83 | Shell | 04/26 |
| 138 | [jinfeijie/yapi](https://github.com/jinfeijie/yapi) | Docker for YApi 一键部署YApi | 82 | Shell | 04/16 |
| 139 | [Lancger/opslinux](https://github.com/Lancger/opslinux) | Linux运维手册(基础+frp内网穿透+分布式锁+Redis+Kafka+安全+漏洞扫描+Docker+ELFK+LVM+监控+CI/CD+数据库+翻墙+LDAP+MQ+minio对象存储+命令录制审计+IP出口+gmail邮件安全校验+Jaeger 分布式追踪+苹果app安全审核等) | 82 | Shell | 04/24 |
| 140 | [TimeBye/kubeadm-ha](https://github.com/TimeBye/kubeadm-ha) | kubeadm-ha 使用 kubeadm 进行高可用 kubernetes 集群搭建,利用 ansible-playbook 实现自动化安装,既提供一键安装脚本,也可以根据 playbook 分步执行安装各个组件。 | 80 | Shell | 04/24 |
| 141 | [bookfere/KindleEar-Uploader](https://github.com/bookfere/KindleEar-Uploader) | 适用于 GAE 云端 Shell 的 KindleEar上传脚本。 | 79 | Shell | 04/24 |
| 142 | [imroc/kubernetes-practice-guide](https://github.com/imroc/kubernetes-practice-guide) | Kubernetes Practice Guide (Kubernetes 实践指南) | 78 | Shell | 04/27 |
| 143 | [huweihuang/kubernetes-notes](https://github.com/huweihuang/kubernetes-notes) | Kubernetes 学习笔记-https://www.huweihuang.com/kubernetes-notes/ | 78 | Shell | 04/04 |
| 144 | [MFrank2016/GotoSSH](https://github.com/MFrank2016/GotoSSH) | Automatic login SSH (一键登录SSH,可直接从跳板机登录到线上服务器) | 78 | Shell | 03/19 |
| 145 | [Messiahhh/blog](https://github.com/Messiahhh/blog) | Web前端博客,求推广求Star! | 77 | Shell | 04/19 |
| 146 | [idoop/zentao](https://github.com/idoop/zentao) | auto build docker image for zentao(禅道). | 76 | Shell | 04/23 |
| 147 | [orangbus/Tool](https://github.com/orangbus/Tool) | 收藏一些自己常用的东西。 | 75 | Shell | 03/28 |
| 148 | [felix-fly/v2ray-dnsmasq-dnscrypt](https://github.com/felix-fly/v2ray-dnsmasq-dnscrypt) | 路由器openwrt配置dnsmasq、doh,高性能v2ray解决方案。 | 73 | Shell | 04/20 |
| 149 | [xausky/ShadowsocksGostPlugin](https://github.com/xausky/ShadowsocksGostPlugin) | Gost 的 Shadowsocks 安卓插件,可以直接在 Shadowsocks 安卓客户端上连接 Gost 服务器 | 69 | Shell | 03/14 |
| 150 | [ibisheng/deploy](https://github.com/ibisheng/deploy) | onlyoffice 一键安装 :毕升文档包括drive和在线文件服务功能。其中drive实现文件的在线管理,组织结构权限,分享,团队协作等,文件的全文检索等功能;在线文件服务能够处理word,ppt,excel格式文件的带水印预览以及多人协同编辑,另外还能处理pdf,视频,音频文件的预览以及实现了100多种文本文件带语法高亮的预览 | 69 | Shell | 04/07 |
| 151 | [mdrights/LiveSlak](https://github.com/mdrights/LiveSlak) | 中文化的隐私加强 GNU/Linux 系统 - Forked from Alien Bob's powerful building script for Slackware Live. | 68 | Shell | 02/02 |
| 152 | [Vonng/adcode](https://github.com/Vonng/adcode) | 中国行政区划代码,包括五级行政区划详细代码,县级以上区划地理围栏。 | 68 | Shell | 03/12 |
| 153 | [kkkgo/DSM_Login_BingWallpaper](https://github.com/kkkgo/DSM_Login_BingWallpaper) | 群晖登录壁纸自动换 | 67 | Shell | 02/20 |
| 154 | [veip007/dd](https://github.com/veip007/dd) | 萌咖大佬的Linux 一键DD脚本 | 66 | Shell | 04/25 |
| 155 | [1265578519/kangle](https://github.com/1265578519/kangle) | kangle web server 最强网站性能服务器架设软件 | 66 | Shell | 04/23 |
| 156 | [Ljohn001/ljohn_ops](https://github.com/Ljohn001/ljohn_ops) | Linux运维工作中常用的shell脚本 | 65 | Shell | 03/20 |
| 157 | [Lancger/opsfull](https://github.com/Lancger/opsfull) | k8s集群资料合集(高可用安装部署+应用部署+redis+mysql+kafak等各个组件生产环境使用技巧以及高可用) | 64 | Shell | 04/24 |
| 158 | [lxchuan12/blog](https://github.com/lxchuan12/blog) | 若川的博客—前端视野-资源和源代码vuepress 博客 | 64 | Shell | 04/26 |
| 159 | [abcfyk/impatriot](https://github.com/abcfyk/impatriot) | 科学上网,理性爱国 | 63 | Shell | 04/09 |
| 160 | [rime/rime-cantonese](https://github.com/rime/rime-cantonese) | Rime Cantonese input schema \| 粵語拼音輸入方案 | 62 | Shell | 04/28 |
| 161 | [BlockchainOne/WeChat](https://github.com/BlockchainOne/WeChat) | 区块链技术指北(ChainONE)社区微信群价值信息汇总。 | 61 | Shell | 04/26 |
| 162 | [hepyu/k8s-app-config](https://github.com/hepyu/k8s-app-config) | 提供kubernetes容器化生产级实践,包含配置,参数,流程,架构等。 | 60 | Shell | 02/27 |
| 163 | [songchenwen/nanopi-r2s](https://github.com/songchenwen/nanopi-r2s) | Openwrt for Nanopi R2S 固件编译 | 59 | Shell | 04/28 |
| 164 | [shenuiuin/LXD_GPU_SERVER](https://github.com/shenuiuin/LXD_GPU_SERVER) | 实验室GPU服务器的LXD虚拟化 | 59 | Shell | 04/24 |
| 165 | [mack-a/v2ray-agent](https://github.com/mack-a/v2ray-agent) | 本项目旨在寻找更加自由的网络环境,享受更好的生活。采用CDN+TLS+Nginx+v2ray、Trojan进行模拟正常网站并突破防火墙,同时包含优化方法,以及简单的原理讲解,欢迎加入TG群讨论。 | 58 | Shell | 04/28 |
| 166 | [rootsongjc/serverless-handbook](https://github.com/rootsongjc/serverless-handbook) | Serverless Handbook 无服务架构实践手册 - https://jimmysong.io/serverless-handbook | 57 | Shell | 04/10 |
| 167 | [hegphegp/docker-learning](https://github.com/hegphegp/docker-learning) | docker和一些软件学习笔记 | 57 | Shell | 04/26 |
| 168 | [meishixiu/note](https://github.com/meishixiu/note) | 笔记 | 55 | Shell | 03/27 |
| 169 | [alicfeng/AShell](https://github.com/alicfeng/AShell) | 开发者常用脚本shell | 55 | Shell | 03/15 |
| 170 | [cloud-op/monitor](https://github.com/cloud-op/monitor) | 云产品功能监控 | 54 | Shell | 04/28 |
| 171 | [nicejade/vuepress-web-app](https://github.com/nicejade/vuepress-web-app) | 📝 采用 VuePress 构建的 Web 应用程序,支持 Pwa、Github Issues 评论、Prettier Markdown 等。 | 53 | Shell | 04/07 |
| 172 | [KingFalse/ohmyiterm2](https://github.com/KingFalse/ohmyiterm2) | 快速安装一个漂亮且强大的iterm2 | 51 | Shell | 04/26 |
| 173 | [helloxz/nginx-cdn](https://github.com/helloxz/nginx-cdn) | CentOS一键安装Nginx | 51 | Shell | 04/25 |
| 174 | [zealotCE/AmericaOpposeAmerica](https://github.com/zealotCE/AmericaOpposeAmerica) | 《美国反对美国》是王沪宁先生在上世纪80年代末赴美观察写作的。我们知道在那个年代中国对西方特别是美国的追捧有多高,所以突然看到一个学者在80年代就有如此清楚的认识,十分钦佩。由于网上只有效果很差的PDF扫描版,所以我想利用OCR技术和肉眼(人体OCR)来转成现代化的文本格式。目前已经全部完成。 | 51 | Shell | 04/28 |
| 175 | [neroxps/hassio_install](https://github.com/neroxps/hassio_install) | hassio 一键脚本,适配国内网络环境目前兼容(Debian Ubuntu Raspbian) | 51 | Shell | 04/10 |
| 176 | [lihaoyun6/macOS-Displays-icon](https://github.com/lihaoyun6/macOS-Displays-icon) | Show the real Displays Icon in "About This Mac > Displays" / 在"关于本机 > 显示器"中显示真实的显示器外观图标 | 49 | Shell | 04/20 |
| 177 | [jiangtao/blog](https://github.com/jiangtao/blog) | 深入基础,沉淀下来。欢迎watch或star. 更多信息关注: 公众号 前端进制 | 48 | Shell | 03/30 |
| 178 | [project-openwrt/luci-app-unblockneteasemusic-mini](https://github.com/project-openwrt/luci-app-unblockneteasemusic-mini) | [OpenWrt] 解除网易云音乐播放限制 [Mini Ver] | 47 | Shell | 04/23 |
| 179 | [musistudio/wukong-robot-install-script](https://github.com/musistudio/wukong-robot-install-script) | wukong-robot的一键安装脚本. | 47 | Shell | 04/13 |
| 180 | [zdwork/k8s-install](https://github.com/zdwork/k8s-install) | kubernetes集群安装脚本 | 47 | Shell | 01/09 |
| 181 | [wangtunan/blog](https://github.com/wangtunan/blog) | :memo: 记录个人博客,见证成长之路 https://wangtunan.github.io/blog/ | 47 | Shell | 03/30 |
| 182 | [koolshare/synology-easyexplorer](https://github.com/koolshare/synology-easyexplorer) | EasyExplorer 跨设备、点对点文件传输同步工具 http://koolshare.cn/thread-129199-1-1.html | 46 | Shell | 02/06 |
| 183 | [hotmop/ssrmu](https://github.com/hotmop/ssrmu) | 逗比SSR魔改版本 | 46 | Shell | 03/02 |
| 184 | [HuaZhuangNan/actions-build-padavan-openwrt](https://github.com/HuaZhuangNan/actions-build-padavan-openwrt) | GitHub Action 学习实例 - 自动编译 padavan 和 openWrt | 46 | Shell | 04/26 |
| 185 | [al0ne/MacCheck](https://github.com/al0ne/MacCheck) | 一个Mac下信息搜集小脚本 主要用于信息搜集/应急响应/检测挖矿进程/异常进程/异常启动项 | 45 | Shell | 02/25 |
| 186 | [fwh1990/react-native-upload](https://github.com/fwh1990/react-native-upload) | ( MacOs ) 一键打包部署 android/ios APP到各个测试平台和App Store。ci/cd神器,拒绝繁琐 | 45 | Shell | 04/11 |
| 187 | [ellermister/mtproxy](https://github.com/ellermister/mtproxy) | MTProxyTLS一键安装绿色脚本 | 44 | Shell | 04/25 |
| 188 | [KubeOperator/k8s-package](https://github.com/KubeOperator/k8s-package) | Kubernetes 离线安装包工程,一个分支对应一个版本,每个分支会构建成一个容器交付给 KubeOperator 使用。 | 44 | Shell | 04/10 |
| 189 | [sean-liang/PHICOMM-N1-OpenWRT-Image-Builder](https://github.com/sean-liang/PHICOMM-N1-OpenWRT-Image-Builder) | 斐讯N1盒子OpenWRT镜像自动构建脚本 | 43 | Shell | 01/17 |
| 190 | [multicoresysu/multicore_sysu_slides](https://github.com/multicoresysu/multicore_sysu_slides) | 多核程序设计与实践-2018年第二学期课件 | 43 | Shell | 04/14 |
| 191 | [esrrhs/docker-thunder-xware](https://github.com/esrrhs/docker-thunder-xware) | 迅雷离线下载 docker 镜像 采用centos镜像和最新的xware 修复了大文件会挂掉的bug | 41 | Shell | 01/01 |
| 192 | [nsk4762jp/OxygenNotIncluded-Japanese](https://github.com/nsk4762jp/OxygenNotIncluded-Japanese) | Oxygen Not Included 日本語化 | 41 | Shell | 03/08 |
| 193 | [xiaoyunjie/Shell_Script](https://github.com/xiaoyunjie/Shell_Script) | Linux系统的安全,通过脚本对Linux系统进行一键检测和一键加固 | 41 | Shell | 04/28 |
| 194 | [Pinming/Dell-Inspiron-7590-Hackintosh-Opencore](https://github.com/Pinming/Dell-Inspiron-7590-Hackintosh-Opencore) | OpenCore EFI for Dell Inspiron 7590 / 7591. 国内用户也可以去 Gitee,下载速度更快→ | 40 | Shell | 04/18 |
| 195 | [easonjim/centos-shell](https://github.com/easonjim/centos-shell) | CentOS常用Shell | 39 | Shell | 01/07 |
| 196 | [klionsec/MotooScanner](https://github.com/klionsec/MotooScanner) | 一款就地取材实现的,廉价资产搜集工具 | 39 | Shell | 02/19 |
| 197 | [snow-sprite/rzsz](https://github.com/snow-sprite/rzsz) | lrzsz上传下载mac配置 及两个必要的.sh文件 iterm2-recv-zmodem.sh 和 iterm2-send-zmodem.sh | 38 | Shell | 04/04 |
| 198 | [kirin10000/V2Ray-WebSocket-TLS-Web-setup-script](https://github.com/kirin10000/V2Ray-WebSocket-TLS-Web-setup-script) | v2ray ws tls 1.3 web nginx 搭建脚本 | 38 | Shell | 04/27 |
| 199 | [eritpchy/Fingerprint-pay-magisk-qq](https://github.com/eritpchy/Fingerprint-pay-magisk-qq) | QQ指纹支付 (Fingerprint pay for QQ) | 37 | Shell | 01/11 |
| 200 | [riverscn/openwrt-iptvhelper](https://github.com/riverscn/openwrt-iptvhelper) | 方便地使用 Openwrt 融合IPTV到家庭局域网。Watching IPTV with Openwrt becomes easy. | 36 | Shell | 04/27 |
⬆ [回到目录](#目录)
<br/>
## C
| # | Repository | Description | Stars | Language | Updated |
| ---- | ------------------------------------------------------------ | ------------------------------------------------------------ | ----- | -------- | ------- |
| 1 | [QSCTech/zju-icicles](https://github.com/QSCTech/zju-icicles) | 浙江大学课程攻略共享计划 | 17.4k | C | 04/23 |
| 2 | [Awesome-HarmonyOS/HarmonyOS](https://github.com/Awesome-HarmonyOS/HarmonyOS) | A curated list of awesome things related to HarmonyOS. 华为鸿蒙操作系统。 | 13.6k | C | 01/26 |
| 3 | [skywind3000/kcp](https://github.com/skywind3000/kcp) | KCP - A Fast and Reliable ARQ Protocol (快速可靠传输协议) | 8.0k | C | 04/24 |
| 4 | [bingoogolapple/BGAQRCode-Android](https://github.com/bingoogolapple/BGAQRCode-Android) | QRCode 扫描二维码、扫描条形码、相册获取图片后识别、生成带 Logo 二维码、支持微博微信 QQ 二维码扫描样式 | 6.6k | C | 03/12 |
| 5 | [huangz1990/redis-3.0-annotated](https://github.com/huangz1990/redis-3.0-annotated) | 带有详细注释的 Redis 3.0 代码(annotated Redis 3.0 source code)。 | 6.1k | C | 04/23 |
| 6 | [nonstriater/Learn-Algorithms](https://github.com/nonstriater/Learn-Algorithms) | 算法学习笔记 | 4.6k | C | 01/14 |
| 7 | [Tencent/TencentOS-tiny](https://github.com/Tencent/TencentOS-tiny) | 腾讯物联网终端操作系统 | 4.2k | C | 04/28 |
| 8 | [SecWiki/windows-kernel-exploits](https://github.com/SecWiki/windows-kernel-exploits) | windows-kernel-exploits Windows平台提权漏洞集合 | 4.1k | C | 03/31 |
| 9 | [miloyip/json-tutorial](https://github.com/miloyip/json-tutorial) | 从零开始的 JSON 库教程 | 3.4k | C | 02/28 |
| 10 | [SecWiki/linux-kernel-exploits](https://github.com/SecWiki/linux-kernel-exploits) | linux-kernel-exploits Linux平台提权漏洞集合 | 3.3k | C | 03/30 |
| 11 | [linw7/Skill-Tree](https://github.com/linw7/Skill-Tree) | 🐼 准备秋招,欢迎来树上取果实 | 2.9k | C | 03/04 |
| 12 | [pymumu/smartdns](https://github.com/pymumu/smartdns) | A local DNS server to obtain the fastest website IP for the best Internet experience, 一个本地DNS服务器,获取最快的网站IP,获得最佳上网体验。 | 2.4k | C | 04/19 |
| 13 | [WizTeam/WizQTClient](https://github.com/WizTeam/WizQTClient) | 为知笔记跨平台客户端 | 2.2k | C | 04/22 |
| 14 | [huangz1990/annotated_redis_source](https://github.com/huangz1990/annotated_redis_source) | 带有详细注释的 Redis 2.6 源码 | 2.1k | C | 01/01 |
| 15 | [chiakge/Linux-NetSpeed](https://github.com/chiakge/Linux-NetSpeed) | 将Linux现常用的网络加速集成在一起 | 1.9k | C | 03/11 |
| 16 | [Mzzopublic/C](https://github.com/Mzzopublic/C) | C语言 | 1.9k | C | 03/06 |
| 17 | [microshow/RxFFmpeg](https://github.com/microshow/RxFFmpeg) | 🔥RxFFmpeg 是基于 ( FFmpeg 4.0 + X264 + mp3lame + fdk-aac ) 编译的适用于 Android 平台的音视频编辑、视频剪辑的快速处理框架,包含以下功能(视频拼接,转码,压缩,裁剪,片头片尾,分离音视频,变速,添加静态贴纸和gif动态贴纸,添加字幕,添加滤镜,添加背景音乐,加速减速视频,倒放音视频,音频裁剪,变声,混音,图片合成视频,视频解码图片,抖音首页,视频播放器等主流特色功能 | 1.9k | C | 04/28 |
| 18 | [firmianay/CTF-All-In-One](https://github.com/firmianay/CTF-All-In-One) | CTF竞赛入门指南 | 1.8k | C | 04/08 |
| 19 | [guanzhi/GmSSL](https://github.com/guanzhi/GmSSL) | 支持国密SM2/SM3/SM4/SM9/ZUC/SSL的OpenSSL分支 | 1.7k | C | 02/17 |
| 20 | [EZLippi/WebBench](https://github.com/EZLippi/WebBench) | Webbench是Radim Kolar在1997年写的一个在linux下使用的非常简单的网站压测工具。它使用fork()模拟多个客户端同时访问我们设定的URL,测试网站在压力下工作的性能,最多可以模拟3万个并发连接去测试网站的负载能力。官网地址:http://home.tiscali.cz/~cz210552/webbench.html | 1.7k | C | 02/14 |
| 21 | [ShadowsocksR-Live/shadowsocksr-native](https://github.com/ShadowsocksR-Live/shadowsocksr-native) | 从容翻越党国敏感日 ShadowsocksR (SSR) native implementation for all platforms, GFW terminator | 1.5k | C | 04/28 |
| 22 | [xufuji456/FFmpegAndroid](https://github.com/xufuji456/FFmpegAndroid) | android端基于FFmpeg实现音频剪切、拼接、转码、混音、编解码;视频剪切、水印、截图、转码、编解码、转Gif动图、画面拼接、视频倒播;音视频合成与分离;音视频解码、同步与播放;FFmpeg本地推流、H264与RTMP实时推流直播;OpenGL实时滤镜;FFmpeg滤镜:素描、色彩平衡、hue、lut、模糊、九宫格等;基于IjkPlayer修改支持RTSP超低延时直播(局域网1080P延时130ms)、暂停、静音,多路投屏直播 | 1.5k | C | 04/25 |
| 23 | [TheWanderingCoel/Trojan-Qt5](https://github.com/TheWanderingCoel/Trojan-Qt5) | A cross-platform trojan GUI client based on Shadowsocks-qt. 有问题请加tg群反馈 | 1.5k | C | 04/28 |
| 24 | [reactnativecn/react-native-pushy](https://github.com/reactnativecn/react-native-pushy) | ReactNative中文网推出的代码热更新服务 | 1.5k | C | 04/14 |
| 25 | [loyinglin/LearnOpenGLES](https://github.com/loyinglin/LearnOpenGLES) | OpenGL ES的各种尝试,有详细的博客。 | 1.3k | C | 03/17 |
| 26 | [quickjs-zh/QuickJS](https://github.com/quickjs-zh/QuickJS) | QuickJS是一个小型并且可嵌入的Javascript引擎,它支持ES2020规范,包括模块,异步生成器和代理器。 | 1.3k | C | 04/13 |
| 27 | [armink/EasyLogger](https://github.com/armink/EasyLogger) | A ultra-lightweight(ROM<1.6K, RAM<0.3k), high-performance C/C++ log library. \| 一款超轻量级(ROM<1.6K, RAM<0.3k)、高性能的 C/C++ 日志库 | 1.1k | C | 04/07 |
| 28 | [cetus-tools/cetus](https://github.com/cetus-tools/cetus) | 专注于稳定、性能和分布式事务的MySQL数据库中间件(其中性能测试在开源数据库中间件排名第一) | 1.1k | C | 03/13 |
| 29 | [Ewenwan/ShiYanLou](https://github.com/Ewenwan/ShiYanLou) | 学习C & C++ & python&汇编语言 LLVM编译器 数据结构 算法 操作系统 单片机 linux 面试 | 1.1k | C | 04/28 |
| 30 | [momotech/MLN](https://github.com/momotech/MLN) | 高性能、小巧、易上手的移动跨平台开发框架. A framework for building Mobile cross-platform apps with Lua | 1.0k | C | 04/28 |
| 31 | [armink/EasyFlash](https://github.com/armink/EasyFlash) | Lightweight IoT device information storage solution. Make the flash to be a small KV database. \| 轻量级物联网设备信息存储方案,让 Flash 成为小型 KV 数据库 | 986 | C | 04/21 |
| 32 | [kangjianwei/Data-Structure](https://github.com/kangjianwei/Data-Structure) | 《数据结构》-严蔚敏.吴伟民-教材源码与习题解析 | 966 | C | 04/25 |
| 33 | [cppla/ServerStatus](https://github.com/cppla/ServerStatus) | 云探针、多服务器探针、云监控、多服务器云监控,演示: https://tz.cloudcpp.com/ | 874 | C | 04/17 |
| 34 | [MRNIU/SimpleKernel](https://github.com/MRNIU/SimpleKernel) | Simple kernel for learning operating systems. 用于学习操作系统的简单内核 | 768 | C | 04/24 |
| 35 | [BruceWind/AESJniEncrypt](https://github.com/BruceWind/AESJniEncrypt) | Make the most secure code in Android. (ndk实现AES,key在native中,防止被二次打包){长期维护,请star,勿fork} | 753 | C | 02/14 |
| 36 | [netwarm007/GameEngineFromScratch](https://github.com/netwarm007/GameEngineFromScratch) | 配合我的知乎专栏写的项目 | 723 | C | 04/28 |
| 37 | [feiskyer/sdn-handbook](https://github.com/feiskyer/sdn-handbook) | SDN网络指南(SDN Handbook) | 676 | C | 04/08 |
| 38 | [yianwillis/vimcdoc](https://github.com/yianwillis/vimcdoc) | Vim 中文文档计划 | 675 | C | 04/24 |
| 39 | [armink/FreeModbus_Slave-Master-RTT-STM32](https://github.com/armink/FreeModbus_Slave-Master-RTT-STM32) | Add master mode to FreeModbus. \| 在 FreeModbus 中添加主机模式 | 649 | C | 03/26 |
| 40 | [rock-app/fabu.love](https://github.com/rock-app/fabu.love) | 应用发布平台类似fir.im/蒲公英,支持检查更新,灰度发布等等.Demo地址:https://fabu.apppills.com/ | 629 | C | 04/17 |
| 41 | [feiyangqingyun/QWidgetDemo](https://github.com/feiyangqingyun/QWidgetDemo) | Qt编写的一些开源的demo,预计会有100多个,一直持续更新完善,代码简洁易懂注释详细,每个都是独立项目,非常适合初学者,代码随意传播使用,拒绝打赏和捐赠,欢迎留言评论! | 628 | C | 04/22 |
| 42 | [armink/CmBacktrace](https://github.com/armink/CmBacktrace) | Advanced fault backtrace library for ARM Cortex-M series MCU \| ARM Cortex-M 系列 MCU 错误追踪库 | 594 | C | 03/30 |
| 43 | [feiskyer/linux-perf-examples](https://github.com/feiskyer/linux-perf-examples) | 极客时间《Linux 性能优化实战》案例 | 539 | C | 01/31 |
| 44 | [Tencent/TencentOS-kernel](https://github.com/Tencent/TencentOS-kernel) | 腾讯针对云的场景研发的服务器操作系统 | 495 | C | 04/02 |
| 45 | [u0u0/Quick-Cocos2dx-Community](https://github.com/u0u0/Quick-Cocos2dx-Community) | Cocos2d-Lua 社区版 | 480 | C | 04/25 |
| 46 | [wuzhouhui/misc](https://github.com/wuzhouhui/misc) | 学习与工作中收集的一些资料 | 452 | C | 03/22 |
| 47 | [lihancong/tonyenc](https://github.com/lihancong/tonyenc) | 高性能、跨平台的 PHP7 代码加密扩展 (A high performance and cross-platform encrypt extension for PHP source code) | 444 | C | 04/24 |
| 48 | [aliyun/iotkit-embedded](https://github.com/aliyun/iotkit-embedded) | 高速镜像: https://code.aliyun.com/linkkit/c-sdk | 433 | C | 04/23 |
| 49 | [vonzhou/CSAPP](https://github.com/vonzhou/CSAPP) | CSAPP,《深入理解计算机系统结构》2nd ,阅读与实践! | 430 | C | 04/25 |
| 50 | [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 ... | 422 | C | 02/25 |
| 51 | [rime/ibus-rime](https://github.com/rime/ibus-rime) | 【中州韻】Rime for Linux/IBus | 413 | C | 02/07 |
| 52 | [CokeMine/ServerStatus-Hotaru](https://github.com/CokeMine/ServerStatus-Hotaru) | 云探针、多服务器探针、云监控、多服务器云监控 | 388 | C | 03/30 |
| 53 | [aqi00/android2](https://github.com/aqi00/android2) | 《Android Studio开发实战:从零基础到App上线》随书源码(全面添加注释版) | 382 | C | 04/07 |
| 54 | [ChenLittlePing/LearningVideo](https://github.com/ChenLittlePing/LearningVideo) | 【Android 音视频开发打怪升级】系列文章示例代码(A demo to introduce how to develop android video)。本项目将从MediaCodec硬解,FFmpeg软解,OpenGL等方面,全方位讲解如何在Android上进行音视频编辑开发。 | 380 | C | 03/26 |
| 55 | [CasterWx/AntzOS](https://github.com/CasterWx/AntzOS) | :earth_asia: Develop an intelligent AI half terminal half graphical operating system Antz. 一个随心所欲制造的操作系统Antz。 | 376 | C | 03/12 |
| 56 | [CoderMJLee/MJCodeObfuscation](https://github.com/CoderMJLee/MJCodeObfuscation) | 一个用于代码混淆和字符串加密的Mac小Demo | 376 | C | 01/04 |
| 57 | [chenall/grub4dos](https://github.com/chenall/grub4dos) | 外部命令和工具源码:https://github.com/chenall/grubutils 下载: | 371 | C | 04/02 |
| 58 | [dlxg/Linux-NetSpeed](https://github.com/dlxg/Linux-NetSpeed) | BBR+BBR魔改+Lotsever(锐速)一键脚本 for Centos/Debian/Ubuntu | 362 | C | 04/23 |
| 59 | [osgochina/donkeyid](https://github.com/osgochina/donkeyid) | php扩展,64位自增id生成器 | 359 | C | 04/08 |
| 60 | [hurley25/Hurlex-II](https://github.com/hurley25/Hurlex-II) | 第二版重新设计和构思,参考一些优秀的实现进行补充设计和编码。 | 333 | C | 04/09 |
| 61 | [destan19/OpenAppFilter](https://github.com/destan19/OpenAppFilter) | 基于OpenWrt的App过滤(上网管控)模块,支持抖音、斗鱼、王者荣耀、腾讯视频等上百款App过滤 | 328 | C | 04/06 |
| 62 | [armink/struct2json](https://github.com/armink/struct2json) | A fast convert library between the JSON and C structure. Implement structure serialization and deserialization for C. \| C 结构体与 JSON 快速互转库,快速实现 C 结构体的序列化及反序列化 | 324 | C | 02/23 |
| 63 | [picasso250/spring12](https://github.com/picasso250/spring12) | 春节十二响 | 318 | C | 03/14 |
| 64 | [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) | 302 | C | 01/20 |
| 65 | [YunYang1994/yynet](https://github.com/YunYang1994/yynet) | 📚 自己写的一个深度学习框架(c/c++ 实现, 不依赖于任何第三方库,含中文注释) | 297 | C | 04/28 |
| 66 | [huangz1990/blog](https://github.com/huangz1990/blog) | 我的个人博客。 | 292 | C | 04/22 |
| 67 | [figozhang/runninglinuxkernel_4.0](https://github.com/figozhang/runninglinuxkernel_4.0) | 《奔跑吧Linux内核》配套实验平台和代码,白色入门酱香篇,蓝色进阶浓香篇 | 276 | C | 02/02 |
| 68 | [chronolaw/annotated_nginx](https://github.com/chronolaw/annotated_nginx) | Annotated Nginx Source(中文) | 267 | C | 04/22 |
| 69 | [xausky/UnityModManager](https://github.com/xausky/UnityModManager) | 一个便捷的程序可以修改游戏内资源包括:Unity游戏资源,Wwise音频资源。 | 267 | C | 01/13 |
| 70 | [froghui/yolanda](https://github.com/froghui/yolanda) | 极客时间<网络编程实战>代码 | 257 | C | 04/25 |
| 71 | [MiEcosystem/miio_open](https://github.com/MiEcosystem/miio_open) | 智能硬件接入文档 | 247 | C | 03/20 |
| 72 | [shineframe/shineframe](https://github.com/shineframe/shineframe) | 高性能超轻量级C++开发库及服务器编程框架 | 247 | C | 03/24 |
| 73 | [chenyahui/AnnotatedCode](https://github.com/chenyahui/AnnotatedCode) | 知名开源代码库的注释版,包括libco、coroutine、muduo等 | 241 | C | 04/03 |
| 74 | [MustangYM/WeChatICU-ForMac](https://github.com/MustangYM/WeChatICU-ForMac) | Mac版企业微信消息防撤回, 聊天会话去水印 | 231 | C | 02/03 |
| 75 | [murphyzhao/FlexibleButton](https://github.com/murphyzhao/FlexibleButton) | 灵活的按键处理库(Flexible Button)\| 按键驱动 \| 支持单击、双击、连击、长按、自动消抖 \| 灵活适配中断和低功耗 \| 按需实现组合按键 | 230 | C | 04/12 |
| 76 | [zlgopen/ametal](https://github.com/zlgopen/ametal) | 芯片级裸机软件包,定义了一系列常用外设(如:UART、IIC、SPI、ADC等)的通用接口,基于通用接口的应用可以跨平台复用。 | 229 | C | 04/26 |
| 77 | [OliverLew/PAT](https://github.com/OliverLew/PAT) | PAT OJ exercises in C language 浙江大学PAT纯C语言题解,欢迎改进建议 | 213 | C | 04/28 |
| 78 | [dpull/skynet-mingw](https://github.com/dpull/skynet-mingw) | 对skynet无任何改动的windows版 | 210 | C | 04/26 |
| 79 | [AngelKitty/review_the_national_post-graduate_entrance_examination](https://github.com/AngelKitty/review_the_national_post-graduate_entrance_examination) | 🌟复习考研的那些事儿(清华912考研)~~ | 202 | C | 01/01 |
| 80 | [fanchy/h2engine](https://github.com/fanchy/h2engine) | H2服务器引擎架构是轻量级的,与其说是引擎,个人觉得称之为平台更为合适。因为它封装的功能少之又少,但是提供了非常简洁方便的扩展机制,使得可以用C++、python、lua、js、php来开发具体的服务器功能。H2引擎的灵感来源于web服务器Apache。 | 189 | C | 04/13 |
| 81 | [zpoint/Redis-Internals](https://github.com/zpoint/Redis-Internals) | Analyze redis 5.0 source code through diagrams \| 图解 Redis 5.0 | 189 | C | 04/26 |
| 82 | [wuxx/nanoDAP](https://github.com/wuxx/nanoDAP) | 建议大家star此仓库,仓库会持续更新。由于部分淘宝卖家“借鉴”实验室出品的nanoDAP详情及描述,请大家认准实验室官方链接 | 186 | C | 04/27 |
| 83 | [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. | 184 | C | 02/17 |
| 84 | [PHZ76/DesktopSharing](https://github.com/PHZ76/DesktopSharing) | 桌面共享, 支持RTSP转发, RTSP推流, RTMP推流。 | 174 | C | 04/14 |
| 85 | [zxystd/AppleIntelWifiAdapter](https://github.com/zxystd/AppleIntelWifiAdapter) | 苹果IO80211Controller调用 | 172 | C | 04/22 |
| 86 | [LGCooci/objc4_debug](https://github.com/LGCooci/objc4_debug) | 可编译苹果官方源码objc!现在有objc4-750,objc4-756.2,objc4-779.1,以及libmalloc-166.200.60等可编译版本,大家可以自由LLDB调试! | 161 | C | 03/05 |
| 87 | [depthlove/FFmpeg-X264-Encode-for-iOS](https://github.com/depthlove/FFmpeg-X264-Encode-for-iOS) | 利用FFmpeg+x264将iOS摄像头实时视频流编码为h264文件 | 157 | C | 03/15 |
| 88 | [eboxmaker/eBox_Framework](https://github.com/eboxmaker/eBox_Framework) | ebox是类似于arduino的一层api,简化stm32编程 | 155 | C | 04/06 |
| 89 | [maxlicheng/stm32f4_ucosii_lwip_mqtt](https://github.com/maxlicheng/stm32f4_ucosii_lwip_mqtt) | 基于正点原子STM32F4开发板和阿里云物联网平台的MQTT项目 | 155 | C | 03/15 |
| 90 | [lcodecorex/KeepAlive](https://github.com/lcodecorex/KeepAlive) | Fighting against force-stop kill process on Android with binder ioctl / Android高级保活 | 153 | C | 03/30 |
| 91 | [Wangzhike/HIT-Linux-0.11](https://github.com/Wangzhike/HIT-Linux-0.11) | 网易云课堂选的操作系统课实验的代码及相关记录 | 152 | C | 04/14 |
| 92 | [armfly/H7-TOOL_STM32H7_App](https://github.com/armfly/H7-TOOL_STM32H7_App) | 单片机APP程序 | 151 | C | 04/08 |
| 93 | [david-pzh/ONE-Robot](https://github.com/david-pzh/ONE-Robot) | 2015年做的一个基于IMU和STM32的独轮自平衡机器人 | 151 | C | 02/15 |
| 94 | [hanson-young/nniefacelib](https://github.com/hanson-young/nniefacelib) | nniefacelib是一个在海思35xx系列芯片上运行的人脸算法库 | 149 | C | 04/28 |
| 95 | [notrynohigh/BabyOS](https://github.com/notrynohigh/BabyOS) | 专为MCU项目开发提速的代码框架 | 147 | C | 04/28 |
| 96 | [scriptiot/evm](https://github.com/scriptiot/evm) | 超轻量级物联网虚拟机 | 146 | C | 04/28 |
| 97 | [xuhongv/StudyInEsp32](https://github.com/xuhongv/StudyInEsp32) | 【深度开源】wiif+bt模块esp32学习之旅(持续更新,欢迎 Star...) | 143 | C | 03/31 |
| 98 | [FantasticLBP/knowledge-kit](https://github.com/FantasticLBP/knowledge-kit) | iOS、Web前端、后端、数据库、计算机网络、设计模式经验总结 | 138 | C | 04/11 |
| 99 | [guanshuicheng/invoice](https://github.com/guanshuicheng/invoice) | 增值税发票OCR识别,使用flask微服务架构,识别type:增值税电子普通发票,增值税普通发票,增值税专用发票;识别字段为:发票代码、发票号码、开票日期、校验码、税后金额等 | 139 | C | 01/29 |
| 100 | [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两种模式! | 137 | C | 02/25 |
| 101 | [xinyang-go/SJTU-RM-CV-2019](https://github.com/xinyang-go/SJTU-RM-CV-2019) | 上海交通大学 RoboMaster 2019赛季 视觉代码 | 136 | C | 01/02 |
| 102 | [zkwlx/ADI](https://github.com/zkwlx/ADI) | ADI(Android Debug Intensive) 是通过 JVMTI 实现的 Android 应用开发调试的增强工具集,目前主要提供性能相关的监控能力。 | 135 | C | 02/13 |
| 103 | [switch-iot/hin2n](https://github.com/switch-iot/hin2n) | n2n support for mobiles(n2n手机版) | 135 | C | 04/21 |
| 104 | [kyzhouhzau/Clinical-NER](https://github.com/kyzhouhzau/Clinical-NER) | 面向中文电子病历的命名实体识别 | 129 | C | 04/08 |
| 105 | [luoweipeter/C](https://github.com/luoweipeter/C) | c/c++ 学习记录 | 125 | C | 04/12 |
| 106 | [xiayuanquan/FFmpegDemo](https://github.com/xiayuanquan/FFmpegDemo) | 视频直播和播放转码器框架 | 119 | C | 01/06 |
| 107 | [gnbdev/gnb](https://github.com/gnbdev/gnb) | GNB is open source de-centralized VPN to achieve layer3 network via p2p with the ultimate capability of NAT Traversal.GNB是一个开源的去中心化的具有极致内网穿透能力的通过P2P进行三层网络交换的VPN。 | 112 | C | 04/20 |
| 108 | [YJLAugus/Inios](https://github.com/YJLAugus/Inios) | 从零开发一32位操作系统 | 108 | C | 01/02 |
| 109 | [jiejieTop/ButtonDrive](https://github.com/jiejieTop/ButtonDrive) | 纯C语言实现的一个按键驱动,可移植性强,支持单双击、连按、连按释放、长按;采用回调处理按键事件(自定义消抖时间),使用只需3步,1:创建按键,2:按键事件与回调处理函数链接映射。然后周期检查按键。 | 108 | C | 03/21 |
| 110 | [404name/winter](https://github.com/404name/winter) | 答辩作品0(2020上半年C程序) | 107 | C | 04/20 |
| 111 | [timwhitez/Cobalt-Strike-Aggressor-Scripts](https://github.com/timwhitez/Cobalt-Strike-Aggressor-Scripts) | Cobalt Strike Aggressor 插件包 | 105 | C | 04/23 |
| 112 | [Chocolatl/qqlight-websocket](https://github.com/Chocolatl/qqlight-websocket) | QQLight机器人WebSocket-RPC插件,让你能够使用任何语言编写QQ机器人程序 | 102 | C | 03/05 |
| 113 | [fujie-xiyou/chat_room](https://github.com/fujie-xiyou/chat_room) | 聊天室 -- 17年暑假项目(Linux C网络编程) | 101 | C | 01/09 |
| 114 | [zhuotong/Android_InlineHook](https://github.com/zhuotong/Android_InlineHook) | Android内联hook框架 | 98 | C | 01/08 |
| 115 | [rokid/docs](https://github.com/rokid/docs) | Rokid 语音开放平台,包含技能开发、语音设备接入及智能家居接入的文档、SDK 及示例代码 | 90 | C | 04/27 |
| 116 | [doctording/os](https://github.com/doctording/os) | 《操作系统真相还原》笔记 | 90 | C | 03/25 |
| 117 | [wonderkun/CTFENV](https://github.com/wonderkun/CTFENV) | 为应对CTF比赛而搭建的各种环境 | 89 | C | 01/31 |
| 118 | [MissFreak/SI-2019-Spring](https://github.com/MissFreak/SI-2019-Spring) | 信息学院(School of Information)2019春入学的同学们,欢迎进入公共讨论区,你可以与本专业的老师和同学在这里交流。 | 84 | C | 04/20 |
| 119 | [MeiK2333/apue](https://github.com/MeiK2333/apue) | 《UNIX环境高级编程》随书代码与课后习题 | 82 | C | 02/24 |
| 120 | [tidyjiang8/esp-idf-zh](https://github.com/tidyjiang8/esp-idf-zh) | ESP-IDF 中文文档 | 81 | C | 03/08 |
| 121 | [yundiantech/VideoPlayer](https://github.com/yundiantech/VideoPlayer) | Qt+ffmpeg实现的视频播放器 | 80 | C | 04/14 |
| 122 | [trumanzhao/luna](https://github.com/trumanzhao/luna) | 基于C++17的lua/C++绑定库,以及lua的二进制序列化等辅助代码 | 80 | C | 04/15 |
| 123 | [yangfei963158659/nnie](https://github.com/yangfei963158659/nnie) | 重构海思sample中的NNIE模块 | 79 | C | 04/01 |
| 124 | [pymumu/tinylog](https://github.com/pymumu/tinylog) | A lightweight c,c++ log component developed for Linux, It is designed with high performance, asynchronized, thread-safe and process-safe; tinylog是一个专为UNIX设计的轻量级的C/C++日志模块,其提供了高性能,异步,线程安全,进程安全的日志功能。 | 78 | C | 03/31 |
| 125 | [dodola/fbhookfork](https://github.com/dodola/fbhookfork) | 从 fb 的 profilo 项目里提取出来的hook 库,自己用 | 76 | C | 01/11 |
| 126 | [zl03jsj/mupdf](https://github.com/zl03jsj/mupdf) | 扩展mupdf 实现图像数字证书签名, 手写笔迹数字证书签名, 插入图片, 手写签名注释..改进手写批注,实现模拟真实手写的算法, annot自定义数据, annot插入,删除密码校验等功能...支持ios, windows, mac, linux, c++, java, android | 75 | C | 03/28 |
| 127 | [ultraji/linux-0.12](https://github.com/ultraji/linux-0.12) | 《Linux内核完全剖析》linux0.12源码及实验环境 | 74 | C | 01/24 |
| 128 | [Embedfire/embed_linux_tutorial](https://github.com/Embedfire/embed_linux_tutorial) | 野火《i.MX Linux开发实战指南》书籍及代码 | 74 | C | 04/28 |
| 129 | [foxclever/Modbus](https://github.com/foxclever/Modbus) | 一个Modbus通讯协议栈 | 70 | C | 03/29 |
| 130 | [dengfaheng/WeChatCode](https://github.com/dengfaheng/WeChatCode) | 微信公众号【程序猿声】的相关代码汇总 | 70 | C | 01/28 |
| 131 | [isrc-cas/pacific](https://github.com/isrc-cas/pacific) | 方舟编译器的Runtime参考实现。这不是华为官方项目,是PLCT实验室的培训项目。 | 70 | C | 01/09 |
| 132 | [jiejieTop/mqttclient](https://github.com/jiejieTop/mqttclient) | 一个基于socket API之上的跨平台MQTT客户端,拥有非常简洁的API接口,以极少的资源实现QOS2的服务质量,并且无缝衔接了mbedtls加密库,稳定性极好,欢迎star与fork。 | 64 | C | 04/28 |
| 133 | [draveness/linux-archive](https://github.com/draveness/linux-archive) | Linux archive for studying the process scheduler. 调度系统设计精要 http://draveness.me/system-design-scheduler | 64 | C | 02/02 |
| 134 | [tsingsee/EasyPlayer-RTSP-iOS](https://github.com/tsingsee/EasyPlayer-RTSP-iOS) | An elegant, simple, fast windows RTSP Player.EasyPlayer support RTSP(RTP over TCP/UDP),video support H.264/H.265,audio support G.711/G.726/AAC!EasyPlayer RTSP是一款精炼、高效、稳定的RTSP流媒体播放器,视频支持H.264/H.265,音频支持G.711/G.726/AAC,支持RTP over UDP/TCP两种模式! | 64 | C | 04/28 |
| 135 | [blindpirate/no2-linggong-road](https://github.com/blindpirate/no2-linggong-road) | 战棋类RPG游戏:凌工路2号 | 64 | C | 01/20 |
| 136 | [firestaradmin/WorldEdit-No.1](https://github.com/firestaradmin/WorldEdit-No.1) | 基于STM32,极度硬核DIY蓝牙机械键盘 | 63 | C | 03/30 |
| 137 | [PaddlePaddle/Fleet](https://github.com/PaddlePaddle/Fleet) | 飞桨分布式训练API-基线-示例-算法包 | 62 | C | 04/21 |
| 138 | [qq4108863/himqtt](https://github.com/qq4108863/himqtt) | himqtt是首款完整源码的高性能MQTT物联网防火墙 - MQTT Application FireWall,采用epoll模式支持高并发连接。 | 61 | C | 04/23 |
| 139 | [armink-rtt-pkgs/EasyFlash](https://github.com/armink-rtt-pkgs/EasyFlash) | Lightweight embedded flash memory library. Make flash to be a small KV database. \| 嵌入式 Flash 存储器库,让 Flash 成为小型 KV 数据库 | 61 | C | 04/12 |
| 140 | [hungtcs-lab/8051-examples](https://github.com/hungtcs-lab/8051-examples) | 基于SDCC编译器的8051单片机示例 | 60 | C | 03/09 |
| 141 | [leleliu008/C](https://github.com/leleliu008/C) | C语言学习项目 | 61 | C | 04/18 |
| 142 | [qq4108863/hihttps](https://github.com/qq4108863/hihttps) | hihttps是一款完整源码的高性能SSL WEB应用防火墙( SSL WAF),采用epoll模式支持高并发,并且兼容ModSecurity正则规则。 | 60 | C | 04/23 |
| 143 | [labplus-cn/mpython](https://github.com/labplus-cn/mpython) | mpython掌控板文档和固件源码 | 59 | C | 04/27 |
| 144 | [tongban/Learning-DIY-RTOS](https://github.com/tongban/Learning-DIY-RTOS) | 自己动手从0到1写嵌入式操作系统 课程的相关资料下载 | 59 | C | 03/08 |
| 145 | [nengm/Tinyhttpd](https://github.com/nengm/Tinyhttpd) | 一次对Tinyhttpd完整的精读,注释,测试 | 58 | C | 04/14 |
| 146 | [alibaba/id2_client_sdk](https://github.com/alibaba/id2_client_sdk) | ID²(Internet Device ID),是物联网设备的可信身份标识,具备不可篡改、不可伪造、全球唯一的安全属性,是实现万物互联、服务流转的关键基础设施。ID²支持多安全等级载体,合理地平衡物联网在安全、成本、功耗等各方面的诉求,为客户提供用得起、容易用、有保障的安全方案,适应物联网碎片化的市场需求。 ID² Client SDK是用于设备端开发的软件工具包,帮助开发者快速集成接入ID²开放平台. | 57 | C | 03/19 |
| 147 | [jntass/TASSL-1.1.1b](https://github.com/jntass/TASSL-1.1.1b) | 支持SM2 SM3 SM4国密算法和国密openssl协议的TASSL 基于openssl-1.1.1b版本 | 57 | C | 03/28 |
| 148 | [zhayujie/C-Primer-Plus](https://github.com/zhayujie/C-Primer-Plus) | C Primer Plus第六版中文版习题答案 | 56 | C | 04/11 |
| 149 | [Car-eye-team/Car-eye-RTMP-server](https://github.com/Car-eye-team/Car-eye-RTMP-server) | Car-eye-RTMP-server 是基于Nginx开发的一个开源服务器,稳定高效。可应用于安防,移动终端,医疗,教育等行业。配合car-eye-server 实现对设备的管理,配合视频后台实现直播和点播功能。流媒体服务器后台设备管理平台网站:www.liveoss.com 视频直播测试网站:http://www.car-eye.cn:8080/ | 54 | C | 03/04 |
| 150 | [Niyunfeng/PID](https://github.com/Niyunfeng/PID) | 增量式PID算法C语言实现 | 54 | C | 04/18 |
| 151 | [ZJ-TEK/ZJ-SDK-RT-Thread-NORDIC](https://github.com/ZJ-TEK/ZJ-SDK-RT-Thread-NORDIC) | 基于RT-Thread操作系统在子敬电子ZJ-TEK系列开发板的软件开发包 | 54 | C | 03/08 |
| 152 | [kernelbin/BOIT](https://github.com/kernelbin/BOIT) | BOT for OIers. /*BOIT = BOT + OI; yh蒟蒻写的给OIers用的一个bot,Made by kernel.bin with ❤*/ | 53 | C | 04/25 |
| 153 | [jmp19940829/WeChat](https://github.com/jmp19940829/WeChat) | 声明1:本源码是本人利用业余时间所写,《免费》 仅供逆向编程爱好者学习使用!本源码禁止用于商业非法用途! 声明2:本源码无任何恶意代码!但可能存在些许BUG 因此所造成的损失等概与本人无关 声明3:使用编译本源码即默认同意上述声明+ | 53 | C | 01/02 |
| 154 | [BBuf/Darknet](https://github.com/BBuf/Darknet) | AlexeyAB-DarkNet源码解析 | 53 | C | 03/29 |
| 155 | [al1020119/iCocosPay](https://github.com/al1020119/iCocosPay) | 第三方支付:支付宝,微信,银联封装 | 52 | C | 04/23 |
| 156 | [w1nds/dll2shellcode](https://github.com/w1nds/dll2shellcode) | dll转shellcode工具 | 51 | C | 02/20 |
| 157 | [LiHe0308/algo](https://github.com/LiHe0308/algo) | 常用的算法和数据结构 | 50 | C | 04/28 |
| 158 | [hongmingjian/epos](https://github.com/hongmingjian/epos) | 《操作系统原理》实验操作系统 | 49 | C | 04/11 |
| 159 | [4kingRAS/CSstudy](https://github.com/4kingRAS/CSstudy) | 自己收集的一些计算机/数学/Linux/分布式的资料,收藏夹不够用了! | 48 | C | 02/02 |
| 160 | [openLuat/LuatOS](https://github.com/openLuat/LuatOS) | 合宙LuatOS -- Lua base RTOS, build for many embedded systems. LuatOS是运行在嵌入式硬件的实时操作系统 | 47 | C | 04/27 |
| 161 | [zhichao281/duilib-MiniBlinkBrowser](https://github.com/zhichao281/duilib-MiniBlinkBrowser) | 用duilib做的miniblink的浏览器 | 46 | C | 04/26 |
| 162 | [Zero-Free/nrf52832-nimble](https://github.com/Zero-Free/nrf52832-nimble) | NimBLE Stack 基于 RT-Thread 在 nRF52832 上的开发 | 46 | C | 03/08 |
| 163 | [jiejieTop/DoraOS](https://github.com/jiejieTop/DoraOS) | DoraOS 是我个人所写的RTOS内核,结合FreeRTOS、uCOS, RT-Thread, LiteOS 的特性所写,取其精华,去其糟粕,本项目将持续维护,欢迎大家fork与star。 | 46 | C | 03/22 |
| 164 | [balanceTWK/LidarCar](https://github.com/balanceTWK/LidarCar) | 激光雷达小车,基于国产 RT-Thread 实时操作系统. | 46 | C | 03/07 |
| 165 | [jixiuf/vmacs](https://github.com/jixiuf/vmacs) | 基于evil-mode 提供一个适合vim emacs双修者,下载即可用的emacs配置集 | 45 | C | 04/26 |
| 166 | [CasterWx/AntzGameOS](https://github.com/CasterWx/AntzGameOS) | 基于AntzOS的一个游戏操作系统,重现我记忆中的一款RPG冒险游戏,以后玩游戏先关机,再进入AGOS. | 44 | C | 03/12 |
| 167 | [Manistein/dummylua-tutorial](https://github.com/Manistein/dummylua-tutorial) | 这是一个仿制lua解释器的项目,我希望通过逐步实现lua解释器的各个部分,更加深刻地掌握lua的基本结构和运作原理。 | 44 | C | 03/27 |
| 168 | [zlgopen/awtk-stm32f103ze-raw](https://github.com/zlgopen/awtk-stm32f103ze-raw) | awtk在stm32f103ze平台上的移植。 | 44 | C | 04/07 |
| 169 | [guoweilkd/lkdGui](https://github.com/guoweilkd/lkdGui) | 一款简单实用的单色Gui | 43 | C | 03/29 |
| 170 | [houjixin/mosquitto-1.4.11-opt](https://github.com/houjixin/mosquitto-1.4.11-opt) | 这里是我对mosquitto的优化版本,并增加了查询在线状态等功能。 | 43 | C | 04/02 |
| 171 | [knight-rider/ptx](https://github.com/knight-rider/ptx) | Earthsoft PT3 & Plex PX-Q3PE 玉手箱 | 40 | C | 03/11 |
| 172 | [PearInc/FogConnect](https://github.com/PearInc/FogConnect) | 提供企业级网络设备之间数据的快速,安全,可靠的P2P传输协议 | 40 | C | 03/04 |
| 173 | [zlgopen/awtk-examples](https://github.com/zlgopen/awtk-examples) | AWTK 演示例子 | 39 | C | 03/03 |
| 174 | [Manistein/SparkServer](https://github.com/Manistein/SparkServer) | SparkServer是一个参照skynet设计的C#服务端框架,能够无缝整合到skynet集群机制中,也能自行组网,构建只有SparkServer节点的集群 | 38 | C | 04/23 |
| 175 | [Nightmare-MY/flutter_toolkit](https://github.com/Nightmare-MY/flutter_toolkit) | Flutter编写的Android工具箱 | 38 | C | 04/17 |
| 176 | [antiwar3/py](https://github.com/antiwar3/py) | 飘云ark(pyark) | 38 | C | 04/03 |
| 177 | [Jackarain/socks_server](https://github.com/Jackarain/socks_server) | 一个socks服务器的实现. | 37 | C | 04/18 |
| 178 | [Zo3i/OCS](https://github.com/Zo3i/OCS) | 一键脚本(One-click script) | 37 | C | 04/11 |
| 179 | [happyCoding1024/National-College-Student-Intelligent-Car-Competition](https://github.com/happyCoding1024/National-College-Student-Intelligent-Car-Competition) | 全国大学生智能汽车竞赛二等奖(Nation College Student Intelligent Car Competition Second Prize) | 37 | C | 04/21 |
| 180 | [leonsimple/ApiCrypt](https://github.com/leonsimple/ApiCrypt) | Android JNI加密项目,目前集合DES,AES两种加密算法 | 36 | C | 03/19 |
| 181 | [poemdistance/ScreenTranslation](https://github.com/poemdistance/ScreenTranslation) | Linux屏幕取词翻译(适用于如Gnome等基于X server的桌面发行版) -- 含界面 | 36 | C | 04/17 |
| 182 | [oiuv/mud](https://github.com/oiuv/mud) | 炎黄MUD,请使用 fluffos v2019 驱动 | 35 | C | 04/26 |
| 183 | [aliyun/linkedge-thing-access-sdk-c](https://github.com/aliyun/linkedge-thing-access-sdk-c) | Link IoT Edge提供的设备接入驱动开发SDK,帮助用户在Link IoT Edge上快速开发自定义协议设备接入驱动。 | 35 | C | 04/27 |
| 184 | [brucewangzhihua/GPSTracker](https://github.com/brucewangzhihua/GPSTracker) | GPS定位器全套源码、原理图、PCB、BOM等,万物在线: | 35 | C | 04/21 |
| 185 | [shangzongyu/source-code](https://github.com/shangzongyu/source-code) | 收集一些书的源码,方便自己查找 | 34 | C | 03/20 |
| 186 | [1265578519/OpenTracker](https://github.com/1265578519/OpenTracker) | 一个linux中开源和免费的BitTorrent Tracker | 34 | C | 01/17 |
| 187 | [yangzigy/yz_keyboard](https://github.com/yangzigy/yz_keyboard) | diy机械键盘 | 34 | C | 04/17 |
| 188 | [vllogic/vllink_lite](https://github.com/vllogic/vllink_lite) | 低成本CMSIS-DAP V2调试器,IO时序SPI优化,速度级别200KB/S至450KB/S | 33 | C | 04/06 |
| 189 | [Scavenges/CheckEmulatorByNative](https://github.com/Scavenges/CheckEmulatorByNative) | Check if device is an emulator by native code. (security/cracking)检查当运行的设备是否是模拟器.#安全/破解 | 33 | C | 01/19 |
| 190 | [hujianzhe/util](https://github.com/hujianzhe/util) | 纯C的跨平台基础库与网络库,提供list/hashtable/rbtree数据结构,封装各OS API,对使用者屏蔽诸如IO多路复用下的并发可靠UDP/TCP的传输与监听,断线重连,基于协程/回调的RPC调度核心机制等实现细节.内部还包括一个3D碰撞检测. | 31 | C | 04/28 |
| 191 | [theanarkh/read-linux-0.11](https://github.com/theanarkh/read-linux-0.11) | linux0.11源码解析 | 31 | C | 03/23 |
| 192 | [emptyhua/bash-pinyin-completion](https://github.com/emptyhua/bash-pinyin-completion) | 给bash增加拼音补齐功能 | 31 | C | 03/20 |
| 193 | [i1mT/C-Snake](https://github.com/i1mT/C-Snake) | C++实现的简单贪吃蛇游戏 | 31 | C | 03/10 |
| 194 | [renhui/Thinking-in-AV](https://github.com/renhui/Thinking-in-AV) | 音视频开发知识库 | 31 | C | 04/10 |
| 195 | [sasou/gene](https://github.com/sasou/gene) | Grace, fastest, flexibility, simple PHP extension framework!优雅、极速、灵活、简单的PHP扩展框架! | 28 | C | 04/20 |
| 196 | [zjh171/RuntimeSample](https://github.com/zjh171/RuntimeSample) | 小专栏【iOS开发之深入理解runtime】(https://xiaozhuanlan.com/runtime) 的配套Demo | 28 | C | 03/04 |
| 197 | [theanarkh/read-linux-1.2.13-net-code](https://github.com/theanarkh/read-linux-1.2.13-net-code) | linux网络源码分析 | 28 | C | 03/13 |
| 198 | [Nrusher/nr_micro_shell](https://github.com/Nrusher/nr_micro_shell) | shell for MCU. 单片机命令行交互。 | 28 | C | 02/15 |
| 199 | [frapples/fulfs-filesystem](https://github.com/frapples/fulfs-filesystem) | 我的操作系统课程设计,实现一个类似unix的文件系统。 | 27 | C | 03/25 |
| 200 | [Ai-Thinker-Open/Telink_SIG_Mesh](https://github.com/Ai-Thinker-Open/Telink_SIG_Mesh) | Telink 蓝牙芯片SIG Mesh SDK,可对接天猫精灵,小爱同学等 | 27 | C | 04/28 |
⬆ [回到目录](#目录)
<br/>
## C++
| # | Repository | Description | Stars | Language | Updated |
| ---- | ------------------------------------------------------------ | ------------------------------------------------------------ | ----- | -------- | ------- |
| 1 | [vnpy/vnpy](https://github.com/vnpy/vnpy) | 基于Python的开源量化交易平台开发框架 | 11.6k | C++ | 04/28 |
| 2 | [huihut/interview](https://github.com/huihut/interview) | 📚 C/C++ 技术面试基础知识总结,包括语言、程序库、数据结构、算法、系统、网络、链接装载库等知识及面试经验、招聘、内推等信息。This repository is a summary of the basic knowledge of recruiting job seekers and beginners in the direction of C/C++ technology, including language, program library, data structure, algorithm, system, network, link loading library, in ... | 11.4k | C++ | 04/19 |
| 3 | [PaddlePaddle/Paddle](https://github.com/PaddlePaddle/Paddle) | PArallel Distributed Deep LEarning: Machine Learning Framework from Industrial Practice (『飞桨』核心框架,深度学习&机器学习高性能单机、分布式训练和跨平台部署) | 11.2k | C++ | 04/28 |
| 4 | [USTC-Resource/USTC-Course](https://github.com/USTC-Resource/USTC-Course) | :heart:中国科学技术大学课程资源 | 8.8k | C++ | 04/25 |
| 5 | [zhongyang219/TrafficMonitor](https://github.com/zhongyang219/TrafficMonitor) | 这是一个用于显示当前网速、CPU及内存利用率的桌面悬浮窗软件,并支持任务栏显示,支持更换皮肤。 | 7.5k | C++ | 04/04 |
| 6 | [hoochanlon/w3-goto-world](https://github.com/hoochanlon/w3-goto-world) | 🍅冲出你的窗口,Git镜像、Clone 及AWS下载加速、FREE SS/SSR/VMESS、WireGuard配置分享、IPFS、暗网等其他资源存储库 | 7.3k | C++ | 04/27 |
| 7 | [PaddlePaddle/Paddle-Lite](https://github.com/PaddlePaddle/Paddle-Lite) | Multi-platform high performance deep learning inference engine (『飞桨』多平台高性能深度学习预测引擎) | 4.9k | C++ | 04/28 |
| 8 | [Ewenwan/MVision](https://github.com/Ewenwan/MVision) | 机器人视觉 移动机器人 VS-SLAM ORB-SLAM2 深度学习目标检测 yolov3 行为检测 opencv PCL 机器学习 无人驾驶 | 4.4k | C++ | 04/19 |
| 9 | [me115/design_patterns](https://github.com/me115/design_patterns) | 图说设计模式 | 4.4k | C++ | 01/21 |
| 10 | [ouyanghuiyu/chineseocr_lite](https://github.com/ouyanghuiyu/chineseocr_lite) | 超轻量级中文ocr,支持竖排文字识别, 支持ncnn推理 , psenet(8.5M) + crnn(6.3M) + anglenet(1.5M) 总模型仅17M | 4.2k | C++ | 04/22 |
| 11 | [weolar/miniblink49](https://github.com/weolar/miniblink49) | a lighter, faster browser kernel of blink to integrate HTML UI in your app. 一个小巧、轻量的浏览器内核,用来取代wke和libcef | 3.8k | C++ | 04/02 |
| 12 | [wuye9036/CppTemplateTutorial](https://github.com/wuye9036/CppTemplateTutorial) | 中文的C++ Template的教学指南。与知名书籍C++ Templates不同,该系列教程将C++ Templates作为一门图灵完备的语言来讲授,以求帮助读者对Meta-Programming融会贯通。(正在施工中) | 3.5k | C++ | 04/26 |
| 13 | [anyRTC/anyRTC-RTMP-OpenSource](https://github.com/anyRTC/anyRTC-RTMP-OpenSource) | RTMP 推流器,RTMP(HLS)秒开播放器,跨平台(Win,IOS,Android)开源代码 | 3.4k | C++ | 02/10 |
| 14 | [zhedahht/CodingInterviewChinese2](https://github.com/zhedahht/CodingInterviewChinese2) | 《剑指Offer》第二版源代码 | 3.4k | C++ | 01/02 |
| 15 | [zeusees/HyperLPR](https://github.com/zeusees/HyperLPR) | 基于深度学习高性能中文车牌识别 High Performance Chinese License Plate Recognition Framework. | 3.2k | C++ | 04/18 |
| 16 | [anhkgg/SuperWeChatPC](https://github.com/anhkgg/SuperWeChatPC) | 超级微信电脑客户端,支持多开、防消息撤销、语音消息备份...开放WeChatSDK | 3.1k | C++ | 02/27 |
| 17 | [TonyChen56/WeChatRobot](https://github.com/TonyChen56/WeChatRobot) | PC版微信机器人 | 3.0k | C++ | 02/18 |
| 18 | [yedf/handy](https://github.com/yedf/handy) | 简洁易用的C++11网络库 / 支持单机千万并发连接 / a simple C++11 network server framework | 2.9k | C++ | 01/07 |
| 19 | [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.4k | C++ | 04/06 |
| 20 | [Qv2ray/Qv2ray](https://github.com/Qv2ray/Qv2ray) | :star2: 支持 V2Ray/Trojan/SSR 的 Linux/Windows/macOS 跨平台 GUI :hammer: C++17/Qt5 ,支持订阅,自定义路由编辑,插件式设计 :star2: | 2.3k | C++ | 04/28 |
| 21 | [WrBug/dumpDex](https://github.com/WrBug/dumpDex) | 💯一款Android脱壳工具,需要xposed支持, 易开发已集成该项目: | 2.0k | C++ | 03/26 |
| 22 | [MegEngine/MegEngine](https://github.com/MegEngine/MegEngine) | MegEngine 是一个快速、可拓展、易于使用且支持自动求导的深度学习框架 | 2.0k | C++ | 04/24 |
| 23 | [liuchuo/PAT](https://github.com/liuchuo/PAT) | 🍭 浙江大学PAT题解(C/C++/Java/Python) - 努力成为萌萌的程序媛~ | 2.0k | C++ | 04/14 |
| 24 | [HuTianQi/SmartOpenCV](https://github.com/HuTianQi/SmartOpenCV) | :fire: :fire: :fire: SmartOpenCV是一个OpenCV在Android端的增强库,解决了OpenCV Android SDK在图像预览方面存在的诸多问题,且无需修改OpenCV SDK源码,与OpenCV的SDK解耦 | 1.8k | C++ | 04/08 |
| 25 | [zlgopen/awtk](https://github.com/zlgopen/awtk) | AWTK = Toolkit AnyWhere(为嵌入式、手机和PC打造的通用GUI系统) | 1.7k | C++ | 04/28 |
| 26 | [yanyiwu/cppjieba](https://github.com/yanyiwu/cppjieba) | "结巴"中文分词的C++版本 | 1.7k | C++ | 03/19 |
| 27 | [balloonwj/flamingo](https://github.com/balloonwj/flamingo) | flamingo 一款高性能轻量级开源即时通讯软件 | 1.6k | C++ | 04/19 |
| 28 | [cool2528/baiduCDP](https://github.com/cool2528/baiduCDP) | 百度网盘下载神器 | 1.6k | C++ | 01/02 |
| 29 | [Light-City/CPlusPlusThings](https://github.com/Light-City/CPlusPlusThings) | C++那些事 | 1.5k | C++ | 04/27 |
| 30 | [liuyubobobo/Play-Leetcode](https://github.com/liuyubobobo/Play-Leetcode) | My Solutions to Leetcode problems. All solutions support C++ language, some support Java and Python. Multiple solutions will be given by most problems. Enjoy:) 我的Leetcode解答。所有的问题都支持C++语言,一部分问题支持Java语言。近乎所有问题都会提供多个算法解决。大家加油!:) | 1.5k | C++ | 04/28 |
| 31 | [rime/weasel](https://github.com/rime/weasel) | 【小狼毫】Rime for Windows | 1.4k | C++ | 04/24 |
| 32 | [richardchien/coolq-http-api](https://github.com/richardchien/coolq-http-api) | 为 酷Q 提供通过 HTTP 或 WebSocket 接收事件和调用 API 的能力 | 1.4k | C++ | 04/24 |
| 33 | [Tencent/plato](https://github.com/Tencent/plato) | 腾讯高性能分布式图计算框架Plato | 1.2k | C++ | 04/03 |
| 34 | [huangmingchuan/Cpp_Primer_Answers](https://github.com/huangmingchuan/Cpp_Primer_Answers) | 《C++ Primer》第五版中文版习题答案 | 1.2k | C++ | 04/08 |
| 35 | [knightsj/awesome-algorithm-question-solution](https://github.com/knightsj/awesome-algorithm-question-solution) | LeetCode,《剑指offer》中的算法题的题目和解法以及常见算法的实现 | 897 | C++ | 03/24 |
| 36 | [QuantBox/XAPI2](https://github.com/QuantBox/XAPI2) | 统一行情交易接口第2版 | 886 | C++ | 01/12 |
| 37 | [qdtroy/DuiLib_Ultimate](https://github.com/qdtroy/DuiLib_Ultimate) | duilib 旗舰版-高分屏、多语言、样式表、资源管理器、异形窗口、窗口阴影、简单动画 | 868 | C++ | 04/14 |
| 38 | [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 | 850 | C++ | 03/12 |
| 39 | [yanyiwu/simhash](https://github.com/yanyiwu/simhash) | 中文文档simhash值计算 | 765 | C++ | 03/11 |
| 40 | [applenob/Cpp_Primer_Practice](https://github.com/applenob/Cpp_Primer_Practice) | 搞定C++:punch:。C++ Primer 中文版第5版学习仓库,包括笔记和课后练习答案。 | 740 | C++ | 04/05 |
| 41 | [fasiondog/hikyuu](https://github.com/fasiondog/hikyuu) | Hikyuu Quant Framework 基于C++/Python的开源量化交易研究框架 | 725 | C++ | 04/28 |
| 42 | [188080501/JQTools](https://github.com/188080501/JQTools) | 基于Qt开发的小工具包 | 717 | C++ | 04/11 |
| 43 | [didi/AoE](https://github.com/didi/AoE) | AoE (AI on Edge,终端智能,边缘计算) 是一个终端侧AI集成运行时环境 (IRE),帮助开发者提升效率。 | 670 | C++ | 04/03 |
| 44 | [Jack-Cherish/LeetCode](https://github.com/Jack-Cherish/LeetCode) | :monkey:LeetCode、剑指Offer刷题笔记(C/C++、Python3实现) | 663 | C++ | 04/08 |
| 45 | [Greedysky/TTKMusicplayer](https://github.com/Greedysky/TTKMusicplayer) | TTKMusicPlayer that imitation Kugou music, the music player uses of qmmp core library based on Qt for windows and linux.(支持网易云音乐、QQ音乐、虾米音乐、酷我音乐、酷狗音乐、百度音乐等等) | 658 | C++ | 04/26 |
| 46 | [Making-It/Code](https://github.com/Making-It/Code) | 面试高频算法题总结,个人博客 | 615 | C++ | 02/04 |
| 47 | [xiongziliang/ZLToolKit](https://github.com/xiongziliang/ZLToolKit) | 一个基于C++11的轻量级网络框架,基于线程池技术可以实现大并发网络IO | 593 | C++ | 04/24 |
| 48 | [shuax/GreenChrome](https://github.com/shuax/GreenChrome) | 增强Chrome的工具 | 564 | C++ | 03/22 |
| 49 | [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 | 563 | C++ | 03/12 |
| 50 | [tencentyun/TRTCSDK](https://github.com/tencentyun/TRTCSDK) | 腾讯云TRTC音视频服务,国内下载镜像: | 554 | C++ | 04/23 |
| 51 | [netease-im/NIM_Duilib_Framework](https://github.com/netease-im/NIM_Duilib_Framework) | 网易云信Windows应用界面开发框架(基于Duilib)。招人搞事情,windows/mac/duilib/qt/electron/爱好造车轮的速来 http://mobile.bole.netease.com/bole/boleDetail?id=19904&employeeId=510064bce318835c&key=all&type=2&from=timeline | 553 | C++ | 04/26 |
| 52 | [Marukon/Microsoft-Hosts](https://github.com/Marukon/Microsoft-Hosts) | Microsoft Hosts和PAC | 536 | C++ | 04/26 |
| 53 | [Ewenwan/ORB_SLAM2_SSD_Semantic](https://github.com/Ewenwan/ORB_SLAM2_SSD_Semantic) | 动态语义SLAM 目标检测+VSLAM+光流/多视角几何动态物体检测+octomap地图+目标数据库 | 536 | C++ | 03/22 |
| 54 | [Mapaler/FastCopy-M](https://github.com/Mapaler/FastCopy-M) | FastCopy-Multilanguage,FastCopy完整支持多国语言版 | 505 | C++ | 04/20 |
| 55 | [SOUI2/soui](https://github.com/SOUI2/soui) | SOUI是目前为数不多的轻量级可快速开发window桌面程序开源DirectUI库.其前身为Duiengine,更早期则是源自于金山卫士开源版本UI库Bkwin.经过多年持续更新方得此库 | 490 | C++ | 04/24 |
| 56 | [callmePicacho/Data-Structres](https://github.com/callmePicacho/Data-Structres) | 浙江大学《数据结构》上课笔记 + 数据结构实现 + 课后题题解 | 469 | C++ | 04/02 |
| 57 | [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) | 466 | C++ | 04/23 |
| 58 | [hedada-hc/pc_wechat_hook](https://github.com/hedada-hc/pc_wechat_hook) | pc微信hook 课程例子源码 最新版pc微信hook全套课程尽在网易云课堂 搜索微信逆向即可 pcwx pcweichat 微信hook C语言开发 | 441 | C++ | 01/21 |
| 59 | [hao14293/2021-Postgraduate-408](https://github.com/hao14293/2021-Postgraduate-408) | 💯✍备考2020年研究生-408 | 415 | C++ | 03/16 |
| 60 | [MKXJun/DirectX11-With-Windows-SDK](https://github.com/MKXJun/DirectX11-With-Windows-SDK) | 现代DX11系列教程:使用Windows SDK(C++)开发Direct3D 11.x | 412 | C++ | 02/14 |
| 61 | [qinguoyi/TinyWebServer](https://github.com/qinguoyi/TinyWebServer) | :fire: Linux下C++轻量级Web服务器 :penguin: | 387 | C++ | 04/21 |
| 62 | [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的函数接口了 | 385 | C++ | 04/04 |
| 63 | [scarsty/kys-cpp](https://github.com/scarsty/kys-cpp) | 《金庸群侠传》c++复刻版,已完工 | 383 | C++ | 04/23 |
| 64 | [ylmbtm/GameProject3](https://github.com/ylmbtm/GameProject3) | 游戏服务器框架,网络层分别用SocketAPI、Boost Asio、Libuv三种方式实现, 框架内使用共享内存,无锁队列,对象池,内存池来提高服务器性能。还包含一个不断完善的Unity 3D游戏,游戏包含大量完整资源,坐骑,宠物,伙伴,装备, 这些均己实现上阵和穿戴, 并可进入副本战斗,多人玩法也己实现, 持续开发中。 | 383 | C++ | 04/15 |
| 65 | [yuanyuanxiang/SimpleRemoter](https://github.com/yuanyuanxiang/SimpleRemoter) | 基于gh0st的远程控制器:实现了终端管理、进程管理、窗口管理、远程桌面、文件管理、语音管理、视频管理、服务管理、注册表管理等功能,优化全部代码及整理排版,修复内存泄漏缺陷,程序运行稳定。此项目初版见:https://github.com/zibility/Remote | 376 | C++ | 03/17 |
| 66 | [zhongyang219/MusicPlayer2](https://github.com/zhongyang219/MusicPlayer2) | 这是一款可以播放常见音频格式的音频播放器。支持歌词显示、歌词卡拉OK样式显示、歌词在线下载、歌词编辑、歌曲标签识别、Win10小娜搜索显示歌词、频谱分析、音效设置、任务栏缩略图按钮、主题颜色等功能。 播放内核为BASS音频库(V2.4)。 | 353 | C++ | 04/21 |
| 67 | [silence1772/GreedySnake](https://github.com/silence1772/GreedySnake) | c++经典项目贪吃蛇游戏控制台版,详细注释 | 347 | C++ | 01/06 |
| 68 | [codeByDog/pcWechat](https://github.com/codeByDog/pcWechat) | windows PC微信逆向 | 332 | C++ | 03/04 |
| 69 | [gloomyfish1998/opencv_tutorial](https://github.com/gloomyfish1998/opencv_tutorial) | 基于OpenCV4.0 C++/Python SDK的案例代码演示程序与效果图像 | 331 | C++ | 02/03 |
| 70 | [Captain1986/CaptainBlackboard](https://github.com/Captain1986/CaptainBlackboard) | 船长关于机器学习、计算机视觉和工程技术的总结和分享 | 319 | C++ | 04/13 |
| 71 | [KangLin/RabbitIm](https://github.com/KangLin/RabbitIm) | 玉兔即时通讯。开源的跨平台的的即时通信系统。包括文本、音视频、白板、远程控制 | 312 | C++ | 03/06 |
| 72 | [wlgq2/uv-cpp](https://github.com/wlgq2/uv-cpp) | libuv wrapper in C++11 /libuv C++11网络库 | 285 | C++ | 04/21 |
| 73 | [chrisguo/beijing_fushengji](https://github.com/chrisguo/beijing_fushengji) | 北京浮生记PC版源代码 | 285 | C++ | 01/11 |
| 74 | [openvanilla/McBopomofo](https://github.com/openvanilla/McBopomofo) | 小麥注音輸入法 | 276 | C++ | 04/01 |
| 75 | [xiangweizeng/mobile-lpr](https://github.com/xiangweizeng/mobile-lpr) | Mobile-LPR 是一个面向移动端的准商业级车牌识别库,以NCNN作为推理后端,使用DNN作为算法核心,支持多种车牌检测算法,支持车牌识别和车牌颜色识别。 | 273 | C++ | 03/23 |
| 76 | [zeusees/HyperVID](https://github.com/zeusees/HyperVID) | 开源移动端车型识别 Mobile Plateform Vehicle Identification Model | 256 | C++ | 03/03 |
| 77 | [FengGuanxi/HDU-Experience](https://github.com/FengGuanxi/HDU-Experience) | 用于向所有杭电学子分享在杭电的知识与经验 | 253 | C++ | 01/09 |
| 78 | [richenyunqi/CCF-CSP-and-PAT-solution](https://github.com/richenyunqi/CCF-CSP-and-PAT-solution) | CCF CSP和PAT考试题解(使用C++11语法) | 252 | C++ | 03/29 |
| 79 | [zc8424/LazzyQuant](https://github.com/zc8424/LazzyQuant) | 期货/期权量化交易系统 | 252 | C++ | 04/16 |
| 80 | [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. | 246 | C++ | 04/28 |
| 81 | [balloonwj/TeamTalk](https://github.com/balloonwj/TeamTalk) | 这是我维护的蘑菇街TeamTalk源码版本。 | 244 | C++ | 01/10 |
| 82 | [SpriteOvO/Telegram-Anti-Revoke](https://github.com/SpriteOvO/Telegram-Anti-Revoke) | Telegram anti-revoke plugin - Telegram 防撤回插件 | 240 | C++ | 04/24 |
| 83 | [chatopera/clause](https://github.com/chatopera/clause) | :horse_racing: Chatopera语义理解系统 | 239 | C++ | 03/27 |
| 84 | [188080501/JQHttpServer](https://github.com/188080501/JQHttpServer) | 基于Qt开发的轻量级HTTP/HTTPS服务器 | 233 | C++ | 04/19 |
| 85 | [czs108/Cpp-Primer-5th-Notes-CN](https://github.com/czs108/Cpp-Primer-5th-Notes-CN) | 📚 《C++ Primer中文版(第5版)》笔记 | 232 | C++ | 04/11 |
| 86 | [Samuel-0-0/phicomm_dc1-esphome](https://github.com/Samuel-0-0/phicomm_dc1-esphome) | 斐讯DC1插座自制固件方式接入开源智能家居平台 | 231 | C++ | 02/25 |
| 87 | [Beipy/Mac-Hackintosh-Clover](https://github.com/Beipy/Mac-Hackintosh-Clover) | PC主机黑苹果引导驱动文件 | 231 | C++ | 03/28 |
| 88 | [Greedysky/TTKWidgetTools](https://github.com/Greedysky/TTKWidgetTools) | QWidget 自定义控件集合 持续更新中...... | 228 | C++ | 04/22 |
| 89 | [wangzuohuai/WebRunLocal](https://github.com/wangzuohuai/WebRunLocal) | 牛插(PluginOK)中间件(原名:本网通)是一个实现网页浏览器(Web Browser)与本地程序(Local App)之间进行双向调用的低成本、强兼容、安全可控、轻量级、易集成、可扩展的浏览器小程序框架。通过本中间件可实现网页前端JS脚本无障碍操作本地电脑各种硬件、调用本地系统API及相关组件功能,可彻底解决ActiveX组件在Chrome、Edge、360、FireFox、IE、Opera等浏览器各版本中的嵌入使用问题,媲美原Java Applet的效果 | 228 | C++ | 04/25 |
| 90 | [Meituan-Dianping/octo-ns](https://github.com/Meituan-Dianping/octo-ns) | OCTO-NS是美团OCTO服务治理体系服务注册发现功能的套件, 包括SDK(Java/C++)、本地服务治理代理(SgAgent), 服务缓存(NSC), 云端健康检查(Scanner)等基础组件,目前已经在全公司大规模使用 | 204 | C++ | 03/05 |
| 91 | [yangyangFeng/TTPatch](https://github.com/yangyangFeng/TTPatch) | 热修复、热更新、JS代码动态下发、动态创建类 | 203 | C++ | 04/27 |
| 92 | [itas109/CSerialPort](https://github.com/itas109/CSerialPort) | 基于C++的轻量级开源跨平台串口类库Lightweight cross-platform serial port library based on C++ | 201 | C++ | 04/25 |
| 93 | [jaredtao/DesignPattern](https://github.com/jaredtao/DesignPattern) | C++11全套设计模式-23种指针的用法(a full DesignPattern implement with c++11) | 196 | C++ | 01/02 |
| 94 | [oceancx/YZXY](https://github.com/oceancx/YZXY) | 原罪西游(YZXY)是一款MMORPG类型的2D回合制开源游戏,采用C++/lua开发 | 195 | C++ | 03/27 |
| 95 | [gzc426/leetcode](https://github.com/gzc426/leetcode) | 每天一道leetcode | 193 | C++ | 03/03 |
| 96 | [zeusees/HyperFT](https://github.com/zeusees/HyperFT) | 开源移动端快速视频人脸跟踪-移动端150FPS+ | 192 | C++ | 03/03 |
| 97 | [open-speech/speech-aligner](https://github.com/open-speech/speech-aligner) | speech-aligner,是一个从“人声语音”及其“语言文本”,产生音素级别时间对齐标注的工具。speech-aligner, is a tool that generate phoneme-level alignment between human speech and its transcription | 192 | C++ | 04/08 |
| 98 | [php-extension-research/study](https://github.com/php-extension-research/study) | 手把手教你写PHP协程扩展(teach you to write php coroutine extension by hand) | 183 | C++ | 03/05 |
| 99 | [lesliefish/Qt](https://github.com/lesliefish/Qt) | Qt相关知识总结。包括Qss,数据库,Excel,Model/View等操作demo。 | 182 | C++ | 04/06 |
| 100 | [2013fangwentao/Multi_Sensor_Fusion](https://github.com/2013fangwentao/Multi_Sensor_Fusion) | Multi-Sensor Fusion (GNSS, IMU, Camera) 多源多传感器融合定位 GPS/INS组合导航 PPP/INS紧组合 | 173 | C++ | 04/24 |
| 101 | [jiafeng5513/Evision](https://github.com/jiafeng5513/Evision) | 计算机视觉实践和探索/Practice and explorations in computer vision. | 171 | C++ | 04/24 |
| 102 | [Protostars/KikoPlay](https://github.com/Protostars/KikoPlay) | KikoPlay - A Full-Featured Danmu Player 全功能弹幕播放器 | 161 | C++ | 04/26 |
| 103 | [Dr-Incognito/V2Ray-Desktop](https://github.com/Dr-Incognito/V2Ray-Desktop) | 最优雅的跨平台代理客户端,支持Shadowsocks,V2Ray和Trojan协议。The most elegant cross-platform proxy GUI client that supports Shadowsocks, V2Ray, and Trojan. Built with Qt5 and QML2. | 162 | C++ | 04/20 |
| 104 | [tsingsee/EasyPlayerPro-Win](https://github.com/tsingsee/EasyPlayerPro-Win) | EasyPlayerPro是一款全功能的流媒体播放器,支持RTSP、RTMP、HTTP、HLS、UDP、RTP、File等多种流媒体协议播放、支持本地文件播放,支持本地抓拍、本地录像、播放旋转、多屏播放、倍数播放等多种功能特性,核心基于ffmpeg,稳定、高效、可靠、可控,支持Windows、Android、iOS三个平台,目前在多家教育、安防、行业型公司,都得到的应用,广受好评! | 159 | C++ | 02/25 |
| 105 | [dlunion/CC4.0](https://github.com/dlunion/CC4.0) | Caffe for CC4.0-Windows,简单的Caffe C++接口,方便简单 | 156 | C++ | 01/15 |
| 106 | [esrrhs/fake](https://github.com/esrrhs/fake) | 嵌入式脚本语言 Lightweight embedded scripting language | 156 | C++ | 01/08 |
| 107 | [xyz347/x2struct](https://github.com/xyz347/x2struct) | Convert between json string and c++ object. json字符串和c++结构体之间互相转换 | 154 | C++ | 02/11 |
| 108 | [BesLyric-for-X/BesLyric-for-X](https://github.com/BesLyric-for-X/BesLyric-for-X) | 本项目是 BesLyric 的全平台版本。BesLyric 是一款 操作简单、功能实用的 专门用于制作网易云音乐滚动歌词的 歌词制作软件。基于Qt实现,主打歌词制作功能,以网易云风格界面,力图为云村村民提供一个良好的歌词制作体验! | 151 | C++ | 03/11 |
| 109 | [tiny656/PAT](https://github.com/tiny656/PAT) | 浙江大学PAT题解 | 149 | C++ | 04/19 |
| 110 | [kevinlq/SmartHome-Qt](https://github.com/kevinlq/SmartHome-Qt) | 基于zigbee和stm32的智能家居系统,上位机使用Qt编写,实现了基本的监控。主要包括监控室内温度、湿度、烟雾浓度,用led灯模拟控制家中的灯。界面良好。 | 149 | C++ | 03/11 |
| 111 | [tsingsee/EasyScreenLive](https://github.com/tsingsee/EasyScreenLive) | Streaming media sdk tool:EasyScreenLive是一款简单、高效、稳定的集采集,编码,组播,推流和流媒体RTSP服务于一身的同屏功能组件,具低延时,高效能,低丢包等特点。目前支持Windows,Android平台,通过EasyScreenLive我们就可以避免接触到稍显复杂的音视频源采集,编码和流媒体推送以及RTSP/RTP/RTCP/RTMP服务流程,只需要调用EasyScreenLive的几个API接口,就能轻松、稳定地把流媒体音视频数据RTMP推送给EasyDSS服务器以及发布RTSPServer服务,RTSP同屏服务支持组播和单播两种模式。 | 149 | C++ | 01/09 |
| 112 | [tuoxie007/play_with_llvm](https://github.com/tuoxie007/play_with_llvm) | A book about LLVM & Clang(中文开源书:玩转 LLVM) | 147 | C++ | 04/11 |
| 113 | [czyt1988/sa](https://github.com/czyt1988/sa) | 信号分析及数据可视化软件 | 147 | C++ | 04/16 |
| 114 | [q191201771/libchef](https://github.com/q191201771/libchef) | 🍀 c++ standalone header-only basic library. \|\| c++头文件实现无第三方依赖基础库 | 143 | C++ | 04/24 |
| 115 | [seahime/ImageQt](https://github.com/seahime/ImageQt) | 数字图像处理——基于Qt 5.8.0 | 141 | C++ | 04/12 |
| 116 | [HMBSbige/GetCNDomainsAndIPv4](https://github.com/HMBSbige/GetCNDomainsAndIPv4) | 获取国内 IP 和域名,生成路由表和 PAC 文件 | 140 | C++ | 04/25 |
| 117 | [zeusees/HyperNSFW](https://github.com/zeusees/HyperNSFW) | 基于深度学习图片鉴黄 Caffe implementation of Not Suitable for Work (NSFW) | 138 | C++ | 03/03 |
| 118 | [DreamWaterFound/self_commit_ORB-SLAM2](https://github.com/DreamWaterFound/self_commit_ORB-SLAM2) | ORB-SLAM2 源码注释, 基于泡泡机器人的注释版本 | 137 | C++ | 01/21 |
| 119 | [huqinghua/pyui4win](https://github.com/huqinghua/pyui4win) | 一个用python实现业务逻辑、用xml和html/css/js描述界面的windows程序的快速开发框架。该框架将duilib运行时和python运行时结合到一起,实现用xml快速构建界面的同时,利用python及其众多久经考验的库编写业务逻辑,极大地缩短开发周期。 | 134 | C++ | 04/22 |
| 120 | [houpengfei88/Play-with-Data-Structures](https://github.com/houpengfei88/Play-with-Data-Structures) | 波波老师的数据结构课程的C++代码实现,和波波老师的代码库目录一样:) | 132 | C++ | 03/07 |
| 121 | [wlgq2/eomaia](https://github.com/wlgq2/eomaia) | 一个基于reactor模式的Linux/C++网络库,支持one loop per thread机制。 | 132 | C++ | 04/14 |
| 122 | [imistyrain/EasyPR4Android](https://github.com/imistyrain/EasyPR4Android) | 最强大的开源车牌识别 | 131 | C++ | 04/18 |
| 123 | [profthecopyright/Thunder_Class](https://github.com/profthecopyright/Thunder_Class) | 雷课堂大作业 | 128 | C++ | 04/27 |
| 124 | [mobizt/Firebase-ESP8266](https://github.com/mobizt/Firebase-ESP8266) | 武汉加油, 中国加油, 我爱你中国. | 127 | C++ | 04/17 |
| 125 | [LeechanX/Easy-Reactor](https://github.com/LeechanX/Easy-Reactor) | Easy-Reactor是一个Linux C++高性能TCP服务框架,基于Reactor模式,支持单线程、多线程Reactor,也支持UDP服务 | 126 | C++ | 03/03 |