forked from GrowingGit/GitHub-Chinese-Top-Charts
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathREADME-Part2.md
More file actions
1667 lines (1619 loc) · 346 KB
/
README-Part2.md
File metadata and controls
1667 lines (1619 loc) · 346 KB
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.0k | Swift | 04/02 |
| 2 | [Caldis/Mos](https://github.com/Caldis/Mos) | 一个用于在 MacOS 上平滑你的鼠标滚动效果或单独设置滚动方向的小工具, 让你的滚轮爽如触控板 \| A lightweight tool used to smooth scrolling and set scroll direction independently for your mouse on MacOS | 3.9k | Swift | 04/13 |
| 3 | [SwiftOldDriver/iOS-Weekly](https://github.com/SwiftOldDriver/iOS-Weekly) | 🇨🇳 老司机 iOS 周报 | 3.0k | Swift | 04/12 |
| 4 | [tid-kijyun/Kanna](https://github.com/tid-kijyun/Kanna) | Kanna(鉋) is an XML/HTML parser for Swift. | 2.0k | Swift | 03/29 |
| 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 | [dengzemiao/DZMeBookRead](https://github.com/dengzemiao/DZMeBookRead) | (支持项目使用)最完整小说阅读器Demo。(仿iReader(掌阅),QQ阅读等常用阅读器阅读页面),支持字体,翻页效果(无效果,覆盖,仿真,上下滚动),字体切换,书签功能,阅读记录,亮度调整,背景颜色切换 等等.. | 860 | Swift | 03/17 |
| 9 | [Harley-xk/MaLiang](https://github.com/Harley-xk/MaLiang) | iOS painting and drawing library based on Metal. 神笔马良有一支神笔(基于 Metal 的涂鸦绘图库) | 829 | Swift | 04/02 |
| 10 | [honghaoz/Ji](https://github.com/honghaoz/Ji) | Ji (戟) is an XML/HTML parser for Swift | 820 | Swift | 01/16 |
| 11 | [JiongXing/PhotoBrowser](https://github.com/JiongXing/PhotoBrowser) | Elegant photo browser in Swift. 图片与视频浏览器。 | 783 | Swift | 03/02 |
| 12 | [gltwy/LTScrollView](https://github.com/gltwy/LTScrollView) | ScrollView嵌套ScrolloView(UITableView 、UICollectionView)解决方案, 支持OC / Swift(持续更新中...)实现原理:http://blog.csdn.net/glt_code/article/details/78576628 | 767 | Swift | 01/03 |
| 13 | [lb2281075105/LBXMLYFM-Swift](https://github.com/lb2281075105/LBXMLYFM-Swift) | Swift5项目仿写喜马拉雅App,采用MVC+MVVM设计模式,Moya+SwiftyJSON+HandyJSON网络框架和数据解析。数据来源抓包及部分本地json文件 | 656 | Swift | 03/31 |
| 14 | [SherlockQi/HeavenMemoirs](https://github.com/SherlockQi/HeavenMemoirs) | AR相册 Photo Album For AR | 581 | Swift | 03/20 |
| 15 | [zyphs21/HSStockChart](https://github.com/zyphs21/HSStockChart) | Stock Chart include CandleStickChart,TimeLineChart. 股票走势图,包括 K 线图,分时图,手势缩放,拖动 | 560 | Swift | 03/19 |
| 16 | [daomoer/XMLYFM](https://github.com/daomoer/XMLYFM) | swift项目仿写喜马拉雅App,采用MVC+MVVM设计模式,Moya+SwiftyJSON+HandyJSON网络框架和数据解析。数据来源抓包及部分本地json文件 | 437 | Swift | 01/22 |
| 17 | [saeipi/KSChart](https://github.com/saeipi/KSChart) | k线图/kline/kchart,已经集成MA/EMA/MACD/KDJ/BOLL/RSI等指标,新增指标及其方便。适用于股票/区块链交易所等种类App。Swift5.1编写,数据处理能力优秀,60FPS稳定运行。示例集成websocket,并接入币安数据(需VPN)。 | 361 | Swift | 04/12 |
| 18 | [easyui/EZPlayer](https://github.com/easyui/EZPlayer) | 基于AVPlayer封装的视频播放器,功能丰富,快速集成,可定制性强,支持react-native。 | 334 | Swift | 03/10 |
| 19 | [JavenZ/ZJTableViewManager](https://github.com/JavenZ/ZJTableViewManager) | 强大的数据驱动的TableView,构建复杂TableView从未如此轻松。 | 282 | Swift | 04/10 |
| 20 | [LvJianfeng/LLCycleScrollView](https://github.com/LvJianfeng/LLCycleScrollView) | Swift - 轮播图,文本轮播,支持左右箭头 | 277 | Swift | 01/07 |
| 21 | [xjbeta/iina-plus](https://github.com/xjbeta/iina-plus) | Extra danmaku support for iina. (iina 弹幕支持 | 274 | Swift | 04/04 |
| 22 | [DarielChen/iOSTips](https://github.com/DarielChen/iOSTips) | 记录iOS(Swift)开发中的一些知识点、小技巧 | 273 | Swift | 04/10 |
| 23 | [choiceyou/FWPopupView](https://github.com/choiceyou/FWPopupView) | 弹窗控件:支持AlertView、Sheet、自定义视图的PopupView。AlertView中可以嵌套自定义视图,各组件的显示隐藏可配置;Sheet仿微信样式;同时提供自定义弹出。更多配置请参考”可设置参数“,提供OC使用Demo。 | 271 | Swift | 03/30 |
| 24 | [zqqf16/SYM](https://github.com/zqqf16/SYM) | A crash log symbolicating Mac app \| 一个图形化的崩溃日志符号化工具 | 262 | Swift | 01/17 |
| 25 | [treastrain/TRETJapanNFCReader](https://github.com/treastrain/TRETJapanNFCReader) | 日本の NFC、FeliCa カード向けリーダーライブラリ(iOS 13.0 以降)Suica、PASMOなどの交通系ICカード、楽天Edy、nanaco、WAON、運転免許証の読み取り(iOS 13 Core NFC) | 239 | Swift | 03/22 |
| 26 | [Xinguang/WechatKit](https://github.com/Xinguang/WechatKit) | 一款快速实现微信第三方登录的框架(Swift版) SDK 1.8.5 | 234 | Swift | 02/24 |
| 27 | [lb2281075105/LBU25-Swift](https://github.com/lb2281075105/LBU25-Swift) | Swift5 精仿漫画类App(有妖气漫画),Moya+SwiftyJSON+HandyJSON网络框架和数据解析。数据来源真实接口获得 | 219 | Swift | 03/31 |
| 28 | [andyRon/swift-algorithm-club-cn](https://github.com/andyRon/swift-algorithm-club-cn) | swift-algorithm-club的翻译。使用Swift学习算法和数据结构。 | 218 | Swift | 02/21 |
| 29 | [Coder-TanJX/JXBanner](https://github.com/Coder-TanJX/JXBanner) | 🚀🚀🚀 A super - custom multifunctional framework for banner unlimited rollover diagrams [一个超自定义多功能无限轮播图框架] | 201 | Swift | 03/12 |
| 30 | [SunshineBrother/SwiftTools](https://github.com/SunshineBrother/SwiftTools) | Swift学习 | 200 | Swift | 04/10 |
| 31 | [GTMYang/GTMRefresh](https://github.com/GTMYang/GTMRefresh) | Swift实现的下拉刷新和上拉加载组件 | 196 | Swift | 01/06 |
| 32 | [iosyaowei/JSONConverter](https://github.com/iosyaowei/JSONConverter) | JSONConverter可以快速的把json数据转换生成OC/Swift/Flutter的属性,省去手动创建的麻烦,大大提高iOSer的开发效率 | 179 | Swift | 01/20 |
| 33 | [wxxsw/SwiftUI-WeChat](https://github.com/wxxsw/SwiftUI-WeChat) | 🇨🇳 Learn how to make WeChat with SwiftUI. 微信 7.0 🟢 | 169 | Swift | 04/12 |
| 34 | [Noah37/zhuishushenqi](https://github.com/Noah37/zhuishushenqi) | 追书神器Swift版客户端(非官方)zhuishushenqi简版 [ZDReader](https://github.com/Noah37/ZDReader) ,缩减了大部分无用功能,项目仅10M,有需要的可前往 | 167 | Swift | 03/12 |
| 35 | [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 |
| 36 | [Light413/dctt](https://github.com/Light413/dctt) | xx头条【完整项目持续迭代中】(一款本地生活信息发布APP,分享新鲜事、找人找对象等生活服务)。已App Store上架,这里仅供学习交流 | 139 | Swift | 02/11 |
| 37 | [Darren-chenchen/CLImagePickerTool](https://github.com/Darren-chenchen/CLImagePickerTool) | 这是一个多图片选择的控件 | 126 | Swift | 03/27 |
| 38 | [we11cheng/WCPotatso](https://github.com/we11cheng/WCPotatso) | iOS Potatso源码(配置下自己的开发证书就能编译版本) | 125 | Swift | 01/17 |
| 39 | [Tuluobo/Leiter](https://github.com/Tuluobo/Leiter) | 一个基于 NEKit 的网络 Proxy App。 | 123 | Swift | 02/11 |
| 40 | [huangboju/GesturePassword](https://github.com/huangboju/GesturePassword) | GesturePassword 是一个Swift的手势密码库 | 120 | Swift | 01/05 |
| 41 | [heyode/HEPhotoPicker](https://github.com/heyode/HEPhotoPicker) | 自由定制支持视频,图片的相册选择器 | 115 | Swift | 04/09 |
| 42 | [937447974/YJCocoa](https://github.com/937447974/YJCocoa) | YJ 系列 Pod 开源库 | 113 | Swift | 04/01 |
| 43 | [Habit21D/SwiftHttpRequest](https://github.com/Habit21D/SwiftHttpRequest) | Swift5.0:基于Alamofire的网络封装及基于Codable的model解析 | 111 | Swift | 03/26 |
| 44 | [liucaide/CaamDau](https://github.com/liucaide/CaamDau) | iOS Swift 通用业务组件库 & Cocoa便利性扩展。Form流式模型化UI排版、Timer计时管理、AppDelegate解耦方案、HUD提示窗、Page分页导航、Indexes侧边索引、TopBar自定义导航栏、InputBox输入框扩展、Router组件化路由协议、IconFont阿里矢量图标管理、MJRefresh扩展、Alamofire扩展;附.功能组件、组件化示例、第三方库示例 | 100 | Swift | 04/11 |
| 45 | [tysqapp/tysq-ios](https://github.com/tysqapp/tysq-ios) | 天宇社区客户端APP开源 | 91 | Swift | 01/06 |
| 46 | [WangWenzhuang/ZKProgressHUD](https://github.com/WangWenzhuang/ZKProgressHUD) | iOS App 上极易于使用的 HUD | 88 | Swift | 01/30 |
| 47 | [Liaoworking/MoyaNetworkTool](https://github.com/Liaoworking/MoyaNetworkTool) | a robust networkTool based on Moya. Moya Demo 一个强健的基于moya二次封装的网络框架 | 79 | Swift | 03/19 |
| 48 | [windstormeye/SwiftGame](https://github.com/windstormeye/SwiftGame) | 我的小专栏《Swift 游戏开发》代码集合 | 70 | Swift | 03/07 |
| 49 | [520/EasyWords](https://github.com/520/EasyWords) | 苹果商店上架项目, 周更 update weekly, on app store, for MacOS, mac开源, mac open source | 70 | Swift | 04/08 |
| 50 | [wxxsw/VideoPlayer](https://github.com/wxxsw/VideoPlayer) | 📽 A video player for SwiftUI, support for caching, preload and custom control view. SwiftUI 视频播放器,支持边下边播、预加载、自定义控制层 | 70 | Swift | 03/29 |
| 51 | [lixiang1994/AttributedString](https://github.com/lixiang1994/AttributedString) | 基于Swift插值方式优雅的构建富文本 | 66 | Swift | 04/10 |
| 52 | [Harley-xk/Chrysan](https://github.com/Harley-xk/Chrysan) | Chrysan 是一个简单易用的 HUD 库,使用 iOS 自带的 UIBlurEffect 毛玻璃特效,支持自定义动画。 | 64 | Swift | 03/26 |
| 53 | [ming1016/MethodTraceAnalyze](https://github.com/ming1016/MethodTraceAnalyze) | 方法耗时分析 | 64 | Swift | 02/26 |
| 54 | [LYM-mg/MGDYZB](https://github.com/LYM-mg/MGDYZB) | Xcode8以上版本,已升级为Swift3.x语法。 斗鱼- 每个人的直播平台提供高清、快捷、流畅的视频直播和游戏赛事直播服务,包含英雄联盟lol直播、穿越火线cf直播、dota2直播、美女直播等各类热门游戏赛事直播和各种.. | 64 | Swift | 03/20 |
| 55 | [Insfgg99x/FGVideoEditor](https://github.com/Insfgg99x/FGVideoEditor) | swif版微信视屏裁剪,类似微信朋友圈视频裁剪方式的视频裁剪工具(video croping) | 55 | Swift | 03/16 |
| 56 | [Jvaeyhcd/HcdSpecialField](https://github.com/Jvaeyhcd/HcdSpecialField) | A special field like mobike input bike number field.仿摩拜单车手动输入单车编号控件. | 54 | Swift | 01/16 |
| 57 | [hello-david/SwiftV2Ray](https://github.com/hello-david/SwiftV2Ray) | V2Ray-Core的iOS工具 | 51 | Swift | 03/05 |
| 58 | [RayJiang16/XYColor](https://github.com/RayJiang16/XYColor) | An easy way to adapter dark mode on CALayer. iOS 快速适配夜间模式 | 51 | Swift | 02/07 |
| 59 | [CaiWanFeng/iOS_Storage](https://github.com/CaiWanFeng/iOS_Storage) | 收纳的艺术 | 49 | Swift | 04/11 |
| 60 | [TonyReet/AutoSQLite.swift](https://github.com/TonyReet/AutoSQLite.swift) | SQLite.swift的封装,Model直接存储.获取. 无需再转换,增删改查. 脱离sql语句 | 49 | Swift | 04/01 |
| 61 | [xidian-rs/Ruisi_Ios](https://github.com/xidian-rs/Ruisi_Ios) | 西电睿思手机客户端[iOS]适用于discuz论坛 | 46 | Swift | 04/06 |
| 62 | [klbest1/MyIOSDemo](https://github.com/klbest1/MyIOSDemo) | 模仿探探图片切换,自定义折线图,图片裁剪,微信朋友圈图片视频浏览,图片下载缓存,数量标记,爆炸动画,autolayout,线程安全 | 44 | Swift | 02/14 |
| 63 | [fcbox/Lantern](https://github.com/fcbox/Lantern) | 基于Swift的高可用视图框架 | 42 | Swift | 03/16 |
| 64 | [Harley-xk/Comet](https://github.com/Harley-xk/Comet) | iOS 项目的 Swift 基础库,提供常用组件、便利方法等。支持 Swift 3.x、Swift 4.x,iOS 8.0+ | 41 | Swift | 04/07 |
| 65 | [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并向下兼容。 | 32 | Swift | 03/13 |
| 66 | [Boxzhi/HZNavigationBar](https://github.com/Boxzhi/HZNavigationBar) | A very simple to use, can be completely customized navigation bar. 一款使用非常简单,可以完全自定义的导航栏。 | 31 | Swift | 01/14 |
| 67 | [xindong/anti-addiction-kit](https://github.com/xindong/anti-addiction-kit) | 📱手机游戏防沉迷系统 SDK,支持 iOS+Android+Unity,快速接入! | 25 | Swift | 04/07 |
| 68 | [JumeiRdGroup/JMRouter](https://github.com/JumeiRdGroup/JMRouter) | 一个轻量级,纯Swift,协议化的路由控件 | 24 | Swift | 02/09 |
| 69 | [developerjet/JetChat](https://github.com/developerjet/JetChat) | Swift5.0编写的简仿微信聊天应用,完美支持表情键盘、单聊、群聊、本地消息会话缓存。 | 24 | Swift | 01/04 |
| 70 | [SunshineBrother/LeetCodeStudy](https://github.com/SunshineBrother/LeetCodeStudy) | 算法学习 | 22 | Swift | 04/10 |
| 71 | [Weang/WLVideo](https://github.com/Weang/WLVideo) | 仿照微信拍照拍视频的功能 | 22 | Swift | 01/07 |
| 72 | [BoxDengJZ/AudioJz](https://github.com/BoxDengJZ/AudioJz) | 个人学过的,音频相关的技巧。从 ray wenderlich 开始 | 22 | Swift | 03/02 |
| 73 | [mojimomo/PlanIt](https://github.com/mojimomo/PlanIt) | 一个iOS平台上自我计划App | 21 | Swift | 03/18 |
| 74 | [xiaoyouxinqing/PostDemo](https://github.com/xiaoyouxinqing/PostDemo) | BBCo - iOS开发入门教程 SwiftUI 微博App项目实战 零基础学习Swift编程 | 21 | Swift | 04/03 |
| 75 | [hxwxww/HXImagePickerController](https://github.com/hxwxww/HXImagePickerController) | 仿微信图片选择器 | 21 | Swift | 02/14 |
| 76 | [nenhall/NHAVEditor](https://github.com/nenhall/NHAVEditor) | (Objective-C) 基于 AVFoundation 框架封装的 iOS视频编辑工具 | 18 | Swift | 01/17 |
| 77 | [FranZhou/FZBuildingBlock](https://github.com/FranZhou/FZBuildingBlock) | 积木模块,提供最基础的功能支持 | 17 | Swift | 01/08 |
| 78 | [Ch0uti/ChouTi](https://github.com/Ch0uti/ChouTi) | 🗄 ChouTi (抽屉) - a framework for Swift development. | 16 | Swift | 02/15 |
| 79 | [ly918/SwiftUI-Chinese-Documents](https://github.com/ly918/SwiftUI-Chinese-Documents) | SwiftUI官方教程翻译,SwiftUI源码解析,实践应用,常见问题,欢迎讨论Issue | 16 | Swift | 01/03 |
| 80 | [ZClee128/RXSwift-](https://github.com/ZClee128/RXSwift-) | RXSwift入门学习 | 15 | Swift | 03/12 |
| 81 | [yungfan/iOS-BasedOnSwift](https://github.com/yungfan/iOS-BasedOnSwift) | iOS开发教程案例代码 | 14 | Swift | 02/23 |
| 82 | [sjjvenu/guanggoo-iOS](https://github.com/sjjvenu/guanggoo-iOS) | 光谷社区iOS版 | 14 | Swift | 04/04 |
| 83 | [LiulietLee/BilibiliCD](https://github.com/LiulietLee/BilibiliCD) | 用来下载B站视频封面的 iOS App | 13 | Swift | 04/01 |
| 84 | [BearLatte/TIMFlowView](https://github.com/BearLatte/TIMFlowView) | Swift 模仿 UITableView 创建瀑布流视图 | 13 | Swift | 02/11 |
| 85 | [Lang-FZ/MetalEasyFoundation](https://github.com/Lang-FZ/MetalEasyFoundation) | Metal 练手 | 12 | Swift | 01/04 |
| 86 | [josercc/LocalizedCSV](https://github.com/josercc/LocalizedCSV) | 从CSV读取进行设置本地化文件 | 12 | Swift | 02/26 |
| 87 | [vincent111000/VCSticker](https://github.com/vincent111000/VCSticker) | 文字、图片便签效果(旋转、拖拽、放大) | 12 | Swift | 01/08 |
| 88 | [yimajo/VIPERBook1Samples](https://github.com/yimajo/VIPERBook1Samples) | VIPER研究読本のためのサンプルコード案 | 12 | Swift | 01/06 |
| 89 | [jezzmemo/JJSwiftLog](https://github.com/jezzmemo/JJSwiftLog) | High performance swift log library(高性能自定义日志) | 11 | Swift | 04/08 |
| 90 | [davewang/open_nsfw_ios](https://github.com/davewang/open_nsfw_ios) | 🔥🔥🔥色情图片离线识别(离线鉴黄),基于TensorFlow实现。识别只需200ms,可断网测试,成功率99%,调用只要一行代码,从雅虎的开源项目open_nsfw移植,tflite(6M)为训练好的模型(已量化),该模型文件可用于iOS、java、C++等平台,Python使用生成的tfLite文件检测图片的速度远远快于实用原模型 | 11 | Swift | 02/11 |
| 91 | [BearLatte/TIMProgressHUD](https://github.com/BearLatte/TIMProgressHUD) | Swift 非常好用的指示器小控件,支持自定义动画 | 10 | Swift | 01/11 |
| 92 | [zhouyudk/ZYNavigationBar](https://github.com/zhouyudk/ZYNavigationBar) | 定制navigationBar,解决push/pop造成不同效果bar突变问题 | 10 | Swift | 03/26 |
| 93 | [birdmichael/app-version-swift](https://github.com/birdmichael/app-version-swift) | 配合APP版本管理是一套多应用更新发版的管理平台。iOS弹窗提示升级 | 9 | Swift | 03/23 |
| 94 | [lixiang1994/Router](https://github.com/lixiang1994/Router) | 基于URLNavigator抽象的外部URL路由组件 支持任意类型配置 插件机制 | 9 | Swift | 03/24 |
| 95 | [wave2588/AttributedText](https://github.com/wave2588/AttributedText) | 富文本渲染工具, 支持 UITextView UILabel | 9 | Swift | 04/07 |
| 96 | [AboutCXJ/30ProjectsOfSwift](https://github.com/AboutCXJ/30ProjectsOfSwift) | 30天30个Swift小项目 | 9 | Swift | 03/13 |
| 97 | [yungfan/Swift-learning](https://github.com/yungfan/Swift-learning) | Swift语法学习 | 9 | Swift | 02/23 |
| 98 | [QaQAdrian/monitor](https://github.com/QaQAdrian/monitor) | mac 实时网速监控 bandwidh monitor | 8 | Swift | 03/13 |
| 99 | [yuetsin/electsys-utility](https://github.com/yuetsin/electsys-utility) | 上海交通大学教务处实用程序。 | 8 | Swift | 01/03 |
| 100 | [Teacher-Fu/FQScreenshot](https://github.com/Teacher-Fu/FQScreenshot) | 一句代码保存截图,将View及其子视图相关的页面保存为图片. | 8 | Swift | 01/14 |
| 101 | [anselPeng/ANXMLY](https://github.com/anselPeng/ANXMLY) | Swift5完整项目喜马拉雅 | 8 | Swift | 01/11 |
| 102 | [ljcoder2015/LJTool](https://github.com/ljcoder2015/LJTool) | 开发中常用的工具方法 | 8 | Swift | 03/05 |
| 103 | [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 |
| 104 | [1035901787/react-native-s-baidumap](https://github.com/1035901787/react-native-s-baidumap) | 百度地图 React Native ,同时支持ios和android | 8 | Swift | 04/07 |
| 105 | [hi-zhouyn/ZHLinkageChart-swift](https://github.com/hi-zhouyn/ZHLinkageChart-swift) | ZHLinkageChart-swift,一款可多级联动的表格,可上下左右联动,支持行列展示任意拓展和上下表格任意合并!这里提供了一个多联动表格的实现方式之一楼盘表,其它也可根据自身需求情况拓展为课程表、配置表等等。 | 7 | Swift | 01/08 |
| 106 | [Danie1s/TiercelObjCBridge](https://github.com/Danie1s/TiercelObjCBridge) | Tiercel 的 Objective-C 桥接扩展 | 7 | Swift | 01/10 |
| 107 | [whde/ResumeFromBreakPoint](https://github.com/whde/ResumeFromBreakPoint) | Swift实现断点续传,Demo简单易懂,没有太多复杂模块和逻辑,完整体现断点续传的原理 | 7 | Swift | 03/14 |
| 108 | [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/07 |
| 109 | [350541732/SwiftLeeTools](https://github.com/350541732/SwiftLeeTools) | SwiftLeeTools使用swift语言,结合公司的项目封装了一些基础通用的使用工具,包括 字符串 日期 校验 http请求 网格菜单 列表菜单 钥匙串 本地图片浏览 在线图片浏览 设备信息 基础控制器封装(tableview scrollview collectionview wkwebview) 本地推送 基础视图(根据提供key value,生成view) 选择器 分页视图 seachcontroller+tableview AVPlayer 弹出的筛选框。 | 7 | Swift | 03/28 |
| 110 | [wsj2012/EasyNavigationbar](https://github.com/wsj2012/EasyNavigationbar) | 定制UINavigationBar样式,可全局统一设置默认样式,在各页面灵活定制自己的样式。 | 7 | Swift | 01/02 |
| 111 | [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 |
| 112 | [LYM-mg/DemoTest](https://github.com/LYM-mg/DemoTest) | 集合业余功能,值得一看 | 7 | Swift | 04/09 |
| 113 | [iHTCboy/iWuBi](https://github.com/iHTCboy/iWuBi) | iWuBi 是一款五笔输入法相关知识的学习App,目的是为了方便初学者学习和快速查询拆字等,防止老司机翻车~ | 6 | Swift | 04/12 |
| 114 | [wayone/WOPageControl-Swift](https://github.com/wayone/WOPageControl-Swift) | 小圆点 / PageControl | 6 | Swift | 03/27 |
| 115 | [Rayer/CurrencyConverter](https://github.com/Rayer/CurrencyConverter) | 匯率轉換器Safari Plugin | 6 | Swift | 02/20 |
| 116 | [yungfan/SwiftUI-learning](https://github.com/yungfan/SwiftUI-learning) | SwiftUI实用教程配套代码 | 6 | Swift | 04/12 |
| 117 | [shiliujiejie/SwiftAdView](https://github.com/shiliujiejie/SwiftAdView) | 仿抖音播放器 支持 图片 + gif + 视频 的启动广告 | 6 | Swift | 04/08 |
| 118 | [yumengqing/SwiftJSONModeler](https://github.com/yumengqing/SwiftJSONModeler) | Xcode Extension that convert json to Swift model. 转换json为Swift模型的Xcode插件,还支持YApi接口平台自动添加注释哟 | 6 | Swift | 04/02 |
| 119 | [Boxzhi/HZPlaceHolder](https://github.com/Boxzhi/HZPlaceHolder) | Quickly create a null data placeholder view(一个方法完成空数据占位图展示,一行代码完成MJRefresh的封装调用) | 6 | Swift | 01/16 |
| 120 | [rztime/RZColorfulSwift](https://github.com/rztime/RZColorfulSwift) | NSAttributedString 富文本方法 (图文混排、多样式文本) (RZColorful Swift版) | 6 | Swift | 03/11 |
| 121 | [TonyLianLong/weChatStickerExtractor](https://github.com/TonyLianLong/weChatStickerExtractor) | Mac微信表情包提取工具,提取动态的表情包成为gif图片~ | 6 | Swift | 01/21 |
| 122 | [iOS-container/SwiftBeginner](https://github.com/iOS-container/SwiftBeginner) | swift 初学者 | 5 | Swift | 01/15 |
| 123 | [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 |
| 124 | [chenfengfeng/S5NEKit](https://github.com/chenfengfeng/S5NEKit) | 修改版本的NEKit,支持socks5的udp转发 | 5 | Swift | 04/09 |
| 125 | [Z-JaDe/AppExtension](https://github.com/Z-JaDe/AppExtension) | iOS框架 | 5 | Swift | 03/31 |
| 126 | [PandaABC-iOS/A-Question-A-Day](https://github.com/PandaABC-iOS/A-Question-A-Day) | 潘哒小分队iOS 技术壁垒攻坚归档 | 5 | Swift | 04/12 |
| 127 | [kkkelicheng/RestrictTextField](https://github.com/kkkelicheng/RestrictTextField) | 有限制输入功能的输入框 Swift & Objective-C | 5 | Swift | 03/30 |
| 128 | [happy-yuxuan/ARPuttingGoods](https://github.com/happy-yuxuan/ARPuttingGoods) | AR方式放置和缩放商品,并进行数据收集操作 | 5 | Swift | 03/05 |
| 129 | [walkertop/SwiftDeepLearning](https://github.com/walkertop/SwiftDeepLearning) | swift的高级语法以及深度探究用例 | 5 | Swift | 03/12 |
| 130 | [SmartPear/SwiftRefresh](https://github.com/SmartPear/SwiftRefresh) | swift语言开发的轻量级下拉刷新框架,使用简单方便。 | 5 | Swift | 03/22 |
| 131 | [gaozichen2012/SwiftUI-notes](https://github.com/gaozichen2012/SwiftUI-notes) | 苹果swift开发笔记 | 5 | Swift | 04/05 |
| 132 | [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/08 |
| 133 | [chenhaigang888/CHGAdapter_swift](https://github.com/chenhaigang888/CHGAdapter_swift) | 主要解决UITableView 在每个controller中都需要设置dataSource和delegate的烦恼,并UITableViewCell与DataSource tableView界耦合 | 5 | Swift | 01/11 |
| 134 | [nlnlnull/OpenFile](https://github.com/nlnlnull/OpenFile) | macOS 上的快捷启动工具 | 5 | Swift | 01/16 |
| 135 | [lmf12/MFPaintView](https://github.com/lmf12/MFPaintView) | 基于 Quartz2D 实现的画板。 | 5 | Swift | 01/04 |
| 136 | [DeveloperJx/JXAutoEncoder](https://github.com/DeveloperJx/JXAutoEncoder) | Swift 3.0 自动编解码--致敬MJ大神的MJExtension | 4 | Swift | 02/25 |
| 137 | [Shanesun/Programming-book](https://github.com/Shanesun/Programming-book) | 总结数据结构与算法 | 4 | Swift | 03/07 |
| 138 | [cezres/Files](https://github.com/cezres/Files) | iOS 端文件管理 App。支持视频播放、音频播放、图片浏览、压缩/解压缩,并且可以通过浏览器下载上传文件。 | 4 | Swift | 03/16 |
| 139 | [tangjianfengVS/WisdomScanKit](https://github.com/tangjianfengVS/WisdomScanKit) | 推荐一个强大,好用的摄像,扫描器框架: WisdomScanKit 。 WisdomScanKit 最低支持 iOS 8.0 / Swift 4 编写,SDK处理了系统兼容性问题,并且完全兼容OC项目调用。 WisdomScanKit 目前支持四大功能: 一:系统相册图片选择器; 二:全屏摄像功能; 三:扫二维码功能; 四:图片浏览器功能; | 4 | Swift | 03/25 |
| 140 | [casatwy/CTUniversalModel](https://github.com/casatwy/CTUniversalModel) | 工程在去model化的进程中,用于过渡的model | 4 | Swift | 03/26 |
| 141 | [zhuhao528/KSCircleProgressView](https://github.com/zhuhao528/KSCircleProgressView) | 圆形进度条 | 4 | Swift | 03/24 |
| 142 | [lumanmann/design-pattern-study-jam](https://github.com/lumanmann/design-pattern-study-jam) | Swift Design Pattern 讀書會 | 4 | Swift | 02/16 |
| 143 | [liujunliuhong/SwiftTool](https://github.com/liujunliuhong/SwiftTool) | Swift版本的开发工具,旨在帮助开发人员快速开发,未完,持续更新中... | 4 | Swift | 03/30 |
| 144 | [XiAnRuFeng/YXPickerViewDemo](https://github.com/XiAnRuFeng/YXPickerViewDemo) | Swift5.1仿京东城市选择View、可无限选择、支持本地或者网络数据、使用简单两三行代码解决问题 | 4 | Swift | 01/17 |
| 145 | [jiangleligejiang/TimeTask](https://github.com/jiangleligejiang/TimeTask) | 基于时间轮片方式处理超时任务 | 4 | Swift | 03/19 |
| 146 | [iHTCboy/iEnglish](https://github.com/iHTCboy/iEnglish) | iEnglish is English Beginner Tools, AppStore DownLoad:https://itunes.apple.com/cn/app/ienglish-初学者必备词汇/id1236558125?l=zh&ls=1&mt=8 | 4 | Swift | 04/12 |
| 147 | [gw-yj/GWSwiftModel](https://github.com/gw-yj/GWSwiftModel) | json和model互转的简单工具 | 3 | Swift | 01/06 |
| 148 | [Binlogo/LeetCode-Swift-Track](https://github.com/Binlogo/LeetCode-Swift-Track) | LeetCode 💖 Swift,攻克数据结构与算法。 | 3 | Swift | 01/29 |
| 149 | [RocketsChen/CDDGroupAvatarSwift](https://github.com/RocketsChen/CDDGroupAvatarSwift) | iOS 群头像(Swift) / Easy to use | 3 | Swift | 03/31 |
| 150 | [wxxsw/Refresh](https://github.com/wxxsw/Refresh) | 🎈 Great SwiftUI drop-down refresh and scroll up to load more. 下拉刷新、上拉加载 | 3 | Swift | 03/29 |
| 151 | [zesicus/SNYKit](https://github.com/zesicus/SNYKit) | 便利开发工具库 | 3 | Swift | 01/29 |
| 152 | [peng1207/ZPhoto](https://github.com/peng1207/ZPhoto) | 视频录制和处理 | 3 | Swift | 01/15 |
| 153 | [ApterKing/SwiftX](https://github.com/ApterKing/SwiftX) | iOS Swift开源框架、Http、Cache、JSON 等等 | 3 | Swift | 01/08 |
| 154 | [hankRu/ThemeDemoForSwiftGirls](https://github.com/hankRu/ThemeDemoForSwiftGirls) | 2017/09/18 Swift Girls 範例程式 | 3 | Swift | 01/20 |
| 155 | [wooseng/ScanKit](https://github.com/wooseng/ScanKit) | Swift封装的二维码扫描框架 | 3 | Swift | 03/18 |
| 156 | [yscode001/YSCategoryView](https://github.com/yscode001/YSCategoryView) | 常用分类视图 | 3 | Swift | 04/01 |
| 157 | [ProjectLion/Alert](https://github.com/ProjectLion/Alert) | 这是一个可以完全自定义的Alert、Sheet。 | 3 | Swift | 02/17 |
| 158 | [yscode001/YSCircleView](https://github.com/yscode001/YSCircleView) | 圆形视图(带圆角的视图) | 3 | Swift | 04/01 |
| 159 | [liuyik/LYConvenienceKit](https://github.com/liuyik/LYConvenienceKit) | swift链式编程创建UI和一些常用的方法函数 | 3 | Swift | 04/01 |
| 160 | [huanglins/VHLNavigation_Swift](https://github.com/huanglins/VHLNavigation_Swift) | 导航栏切换之颜色过渡切换,导航栏背景图片切换,微信红包两种不同颜色切换,导航栏透明度,有无导航栏切换 | 4 | Swift | 03/04 |
| 161 | [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 |
| 162 | [XiAnRuFeng/AlbumTool](https://github.com/XiAnRuFeng/AlbumTool) | 一行代码保存照片或者视频到自己创建的相册中 | 3 | Swift | 02/25 |
| 163 | [yscode001/YSExt](https://github.com/yscode001/YSExt) | Swift常用类的扩展 | 3 | Swift | 03/17 |
| 164 | [fallpine/QSExtensions](https://github.com/fallpine/QSExtensions) | 项目常用类扩展 | 3 | Swift | 03/31 |
| 165 | [dgynfi/Swift-study](https://github.com/dgynfi/Swift-study) | Swift 是一门开发 iOS, macOS, watchOS 和 tvOS 应用的新语言。本仓库包涵了Swift的基础部分、基本运算符、字符串和字符、集合类型、控制流、函数、闭包、枚举、类和结构体、属性、方法、下标、继承、构造过程、析构过程、可选链、错误处理、类型转换、嵌套类型、扩展、协议、泛型、自动引用计数、内存安全、访问控制和高级运算符等教程。 | 3 | Swift | 03/31 |
| 166 | [Insfgg99x/GeekMadeBySwiftUI](https://github.com/Insfgg99x/GeekMadeBySwiftUI) | 简单干货集中营的SwiftUI版本。网络请求用的Moya/RxSwift,网络请求回来的数据通过SwiftUI展示,SwiftUI网格视图用的第三方实现的。学习完官网的SwiftUI tutorials后的第一个实践项目 | 3 | Swift | 01/14 |
| 167 | [touyou/FFMultiply](https://github.com/touyou/FFMultiply) | 某教授「九九じゃなくてFFを覚えましょう」 | 3 | Swift | 03/21 |
| 168 | [taixw2/rmini](https://github.com/taixw2/rmini) | 小程序运行时 | 3 | Swift | 01/04 |
| 169 | [MichaelLynx/MNetwork](https://github.com/MichaelLynx/MNetwork) | swift网络请求封装示例,使用Alamofire及HandyJSON。 | 3 | Swift | 04/03 |
| 170 | [make1a/PickerTableViewCell](https://github.com/make1a/PickerTableViewCell) | 封装弹出选择试图的tableviewcell(Swift&OC) | 3 | Swift | 03/19 |
| 171 | [CaryZheng/Vapor4-Tutorial](https://github.com/CaryZheng/Vapor4-Tutorial) | Vapor4速成指南 | 3 | Swift | 04/12 |
| 172 | [haikerapples/swift-BaseProject](https://github.com/haikerapples/swift-BaseProject) | swift标准版壳子 | 3 | Swift | 03/30 |
| 173 | [SWING1993/CoolTV](https://github.com/SWING1993/CoolTV) | 酷TV是为AppleTV用户打造的专业视频应用,简洁流畅的界面设计、丰富多元的影视内容,从影视剧、TVB、综艺、少儿动漫等热门内容,到新闻资讯、纪录片、游戏体育等应有尽有,海量内容畅快看。锁定酷TV,点一下,看世界! | 3 | Swift | 01/16 |
| 174 | [yscode001/YSRefreshControl](https://github.com/yscode001/YSRefreshControl) | 下拉刷新控件 | 2 | Swift | 03/06 |
| 175 | [lynnx4869/LYAutoUtils](https://github.com/lynnx4869/LYAutoUtils) | Swift 工具库 | 2 | Swift | 02/20 |
| 176 | [yanhaiqiang/HQPraiseAnimaite](https://github.com/yanhaiqiang/HQPraiseAnimaite) | 点赞动画,随机展示多张图片 | 2 | Swift | 02/18 |
| 177 | [dengchaojie/algorithm](https://github.com/dengchaojie/algorithm) | 每日一练,用swift求解Leetcode算法题 | 2 | Swift | 04/07 |
| 178 | [biangou/BQBluetooth](https://github.com/biangou/BQBluetooth) | swift写的蓝牙工具类 | 2 | Swift | 04/08 |
| 179 | [CSUpengyuyan/IOS_er](https://github.com/CSUpengyuyan/IOS_er) | 记录学习知识的项目与笔记 | 2 | Swift | 04/08 |
| 180 | [HDCodePractice/SwiftPracticeResult](https://github.com/HDCodePractice/SwiftPracticeResult) | Swift代码练习参考 | 2 | Swift | 04/12 |
| 181 | [yscode001/YSType](https://github.com/yscode001/YSType) | 自定义类型 | 2 | Swift | 03/06 |
| 182 | [jhsyydmz/ios-coreanimation](https://github.com/jhsyydmz/ios-coreanimation) | IOS动画核心技术与案例实战 | 2 | Swift | 01/15 |
| 183 | [MacOMNI/Algorithm-About-LeetCode](https://github.com/MacOMNI/Algorithm-About-LeetCode) | 学习 swift - golang 并写点小算法 | 2 | Swift | 04/09 |
| 184 | [Neilfly/QPikachu](https://github.com/Neilfly/QPikachu) | 游泳信息分析软件 | 2 | Swift | 02/24 |
| 185 | [goodideas-studio/iOS-HelperKit](https://github.com/goodideas-studio/iOS-HelperKit) | 好想工作室 iOS Camp 共同建立的 HelperKit。 | 2 | Swift | 02/11 |
| 186 | [wanliming11/MurlocThinking](https://github.com/wanliming11/MurlocThinking) | 虚化的外表不足以探索到最真实的本源,只有最裸露的才是最值得深入的! | 2 | Swift | 01/05 |
| 187 | [ifanrx/hydrogen-ios-sdk](https://github.com/ifanrx/hydrogen-ios-sdk) | 知晓云是一个实时的后端云服务。使用它后,开发人员只需简单地在 App 中接入 SDK,而无需管理服务器或编写后端代码,即可轻松构建功能丰富的 App。 | 2 | Swift | 03/25 |
| 188 | [ruiyuad/MDAd](https://github.com/ruiyuad/MDAd) | mobdatas 广告 SDK iOS 版. 支持的广告类型包括: 横幅, 信息流, 开屏, 插屏, 浮标和激励视频. | 2 | Swift | 03/17 |
| 189 | [guzhenhuaGitHub/GZHKitSwift](https://github.com/guzhenhuaGitHub/GZHKitSwift) | 个人开发swift所用的工具包 | 2 | Swift | 03/24 |
| 190 | [Coder-Star/LTXiOSUtils](https://github.com/Coder-Star/LTXiOSUtils) | iOS Swift常用扩展、常用组件,方便项目快速搭建,提供完整清晰的Demo示例 | 2 | Swift | 04/10 |
| 191 | [mg459046365/BYImagePreview](https://github.com/mg459046365/BYImagePreview) | 简易图片浏览器 | 2 | Swift | 03/11 |
| 192 | [yscode001/YSSerializable](https://github.com/yscode001/YSSerializable) | 封装codable协议,实现快速序列化/反序列化 | 2 | Swift | 03/06 |
| 193 | [jackiehu/SwiftMediator](https://github.com/jackiehu/SwiftMediator) | Swift组件化解耦中间件,router,SceneDelegate解耦,AppDelegate解耦 | 2 | Swift | 04/01 |
| 194 | [ReverseScale/BarTools](https://github.com/ReverseScale/BarTools) | 自适应的选词条,类型搜狗输入法的选词条效果 | 2 | Swift | 04/09 |
| 195 | [yangxina/NicooNetwork](https://github.com/yangxina/NicooNetwork) | swift5.0 基于 Alamofire 封装的网络请求框架 | 2 | Swift | 04/10 |
| 196 | [Insfgg99x/FGSwiftUIImage](https://github.com/Insfgg99x/FGSwiftUIImage) | SwiftUI显示网络图片(SwiftUI web image likes SDWebImage) | 2 | Swift | 01/09 |
| 197 | [XiAnRuFeng/designModelDemo](https://github.com/XiAnRuFeng/designModelDemo) | 设计模式Swift 版 | 2 | Swift | 01/09 |
| 198 | [ysCharles/TLCommon](https://github.com/ysCharles/TLCommon) | iOS 基础库,包含常用扩展,方法,常量 | 2 | Swift | 03/03 |
| 199 | [zhouyudk/ZYShimmering](https://github.com/zhouyudk/ZYShimmering) | 为View添加闪烁流光的效果 | 2 | Swift | 03/26 |
| 200 | [HanleyLee/LeetCode-Swift](https://github.com/HanleyLee/LeetCode-Swift) | 使用 Swift 语言在 Playground 中解答 LeetCode 题目 | 2 | Swift | 02/25 |
⬆ [回到目录](#目录)
<br/>
## Jupyter Notebook
| # | Repository | Description | Stars | Language | Updated |
| ---- | ------------------------------------------------------------ | ------------------------------------------------------------ | ----- | ---------------- | ------- |
| 1 | [jackfrued/Python-100-Days](https://github.com/jackfrued/Python-100-Days) | Python - 100天从新手到大师 | 82.3k | Jupyter Notebook | 04/12 |
| 2 | [MLEveryday/100-Days-Of-ML-Code](https://github.com/MLEveryday/100-Days-Of-ML-Code) | 100-Days-Of-ML-Code中文版 | 15.3k | Jupyter Notebook | 02/18 |
| 3 | [zergtant/pytorch-handbook](https://github.com/zergtant/pytorch-handbook) | pytorch handbook是一本开源的书籍,目标是帮助那些希望和使用PyTorch进行深度学习开发和研究的朋友快速入门,其中包含的Pytorch教程全部通过测试保证可以成功运行 | 11.0k | Jupyter Notebook | 04/03 |
| 4 | [ShusenTang/Dive-into-DL-PyTorch](https://github.com/ShusenTang/Dive-into-DL-PyTorch) | 本项目将《动手学深度学习》(Dive into Deep Learning)原书中的MXNet实现改为PyTorch实现。 | 8.4k | Jupyter Notebook | 02/23 |
| 5 | [apachecn/Interview](https://github.com/apachecn/Interview) | Interview = 简历指南 + LeetCode + Kaggle | 5.7k | Jupyter Notebook | 03/08 |
| 6 | [czy36mengfei/tensorflow2_tutorials_chinese](https://github.com/czy36mengfei/tensorflow2_tutorials_chinese) | tensorflow2中文教程,持续更新(当前版本:tensorflow2.0),tag: tensorflow 2.0 tutorials | 5.2k | Jupyter Notebook | 02/07 |
| 7 | [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.8k | Jupyter Notebook | 04/11 |
| 8 | [NLP-LOVE/ML-NLP](https://github.com/NLP-LOVE/ML-NLP) | 此项目是机器学习(Machine Learning)、深度学习(Deep Learning)、NLP面试中常考到的知识点和代码实现,也是作为一个算法工程师必会的理论基础知识。 | 4.4k | Jupyter Notebook | 03/26 |
| 9 | [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 |
| 10 | [xiaolai/regular-investing-in-box](https://github.com/xiaolai/regular-investing-in-box) | 定投改变命运 —— 让时间陪你慢慢变富 https://onregularinvesting.com | 3.7k | Jupyter Notebook | 04/12 |
| 11 | [fengdu78/Data-Science-Notes](https://github.com/fengdu78/Data-Science-Notes) | 数据科学的笔记以及资料搜集 | 3.0k | Jupyter Notebook | 03/04 |
| 12 | [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 |
| 13 | [snowkylin/tensorflow-handbook](https://github.com/snowkylin/tensorflow-handbook) | 简单粗暴 TensorFlow 2.0 \| A Concise Handbook of TensorFlow 2.0 | 2.3k | Jupyter Notebook | 04/13 |
| 14 | [TrickyGo/Dive-into-DL-TensorFlow2.0](https://github.com/TrickyGo/Dive-into-DL-TensorFlow2.0) | 本项目将《动手学深度学习》(Dive into Deep Learning)原书中的MXNet实现改为TensorFlow 2.0实现,项目已得到李沐老师的同意 | 2.1k | Jupyter Notebook | 04/10 |
| 15 | [ypwhs/captcha_break](https://github.com/ypwhs/captcha_break) | 验证码识别 | 1.6k | Jupyter Notebook | 01/10 |
| 16 | [wangshub/RL-Stock](https://github.com/wangshub/RL-Stock) | 📈 如何用深度强化学习自动炒股 | 1.2k | Jupyter Notebook | 03/31 |
| 17 | [fengdu78/machine_learning_beginner](https://github.com/fengdu78/machine_learning_beginner) | 机器学习初学者公众号作品 | 1.1k | Jupyter Notebook | 01/02 |
| 18 | [Rockyzsu/stock](https://github.com/Rockyzsu/stock) | 30天掌握量化交易 (持续更新) | 1.1k | Jupyter Notebook | 03/04 |
| 19 | [hangsz/pandas-tutorial](https://github.com/hangsz/pandas-tutorial) | 适合初级到中级晋升者,有了体系之后就看熟练度了。 | 1.0k | Jupyter Notebook | 02/11 |
| 20 | [amusi/TensorFlow-From-Zero-To-One](https://github.com/amusi/TensorFlow-From-Zero-To-One) | TensorFlow 最佳学习资源大全(含课程、书籍、博客、公开课等内容) | 896 | Jupyter Notebook | 04/04 |
| 21 | [xavier-zy/Awesome-pytorch-list-CNVersion](https://github.com/xavier-zy/Awesome-pytorch-list-CNVersion) | Awesome-pytorch-list 翻译工作进行中...... | 840 | Jupyter Notebook | 03/31 |
| 22 | [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 入门机器学习》示例代码。课程的更多更新内容及辅助练习也将逐步添加进这个代码仓。 | 838 | Jupyter Notebook | 02/24 |
| 23 | [datawhalechina/competition-baseline](https://github.com/datawhalechina/competition-baseline) | 数据科学竞赛各种baseline代码、思路分享 | 763 | Jupyter Notebook | 03/15 |
| 24 | [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 篇 \| 行业应用 & 课程笔记 | 662 | Jupyter Notebook | 03/29 |
| 25 | [996refuse/zheye](https://github.com/996refuse/zheye) | 者也 - 知乎 倒立的文字 汉字验证码识别程序 | 656 | Jupyter Notebook | 01/29 |
| 26 | [huaweicloud/ModelArts-Lab](https://github.com/huaweicloud/ModelArts-Lab) | ModelArts-Lab是示例代码库。更多AI开发学习交流信息,请访问华为云AI开发者社区:https://developer.huaweicloud.com/techfield/ai.html | 603 | Jupyter Notebook | 04/09 |
| 27 | [howl-anderson/Chinese_models_for_SpaCy](https://github.com/howl-anderson/Chinese_models_for_SpaCy) | SpaCy 中文模型 \| Models for SpaCy that support Chinese | 445 | Jupyter Notebook | 03/12 |
| 28 | [EricWebsmith/china_job_survey](https://github.com/EricWebsmith/china_job_survey) | stats of Chinese developers. 统计中国程序员的就业情况 | 383 | Jupyter Notebook | 04/03 |
| 29 | [datawhalechina/team-learning](https://github.com/datawhalechina/team-learning) | Datawhale组队学习计划与课程内容 | 383 | Jupyter Notebook | 04/08 |
| 30 | [coldlarry/YOLOv3-complete-pruning](https://github.com/coldlarry/YOLOv3-complete-pruning) | 提供对YOLOv3及Tiny的多种剪枝版本,以适应不同的需求。 | 363 | Jupyter Notebook | 02/25 |
| 31 | [neolee/pilot](https://github.com/neolee/pilot) | 进入编程世界的第一课 | 331 | Jupyter Notebook | 03/16 |
| 32 | [htygithub/machine-learning-python](https://github.com/htygithub/machine-learning-python) | 機器學習: Python | 297 | Jupyter Notebook | 02/16 |
| 33 | [shibing624/python-tutorial](https://github.com/shibing624/python-tutorial) | python教程,包括:python基础、python进阶;常用机器学习库:numpy、scipy、sklearn、xgboost;深度学习库:keras、tensorflow、paddle、pytorch。 | 296 | Jupyter Notebook | 04/08 |
| 34 | [YutaroOgawa/pytorch_advanced](https://github.com/YutaroOgawa/pytorch_advanced) | 書籍「つくりながら学ぶ! PyTorchによる発展ディープラーニング」の実装コードを配置したリポジトリです | 252 | Jupyter Notebook | 03/16 |
| 35 | [fly51fly/Practical_Python_Programming](https://github.com/fly51fly/Practical_Python_Programming) | 北邮《Python编程与实践》课程资料 | 223 | Jupyter Notebook | 04/11 |
| 36 | [LinXueyuanStdio/LaTeX_OCR_PRO](https://github.com/LinXueyuanStdio/LaTeX_OCR_PRO) | :art: 数学公式识别增强版:中英文手写印刷公式、支持初级符号推导(数据结构基于 LaTeX 抽象语法树) | 217 | Jupyter Notebook | 02/22 |
| 37 | [zhouwei713/data_analysis](https://github.com/zhouwei713/data_analysis) | 一些爬虫和数据分析相关实战练习 | 212 | Jupyter Notebook | 03/23 |
| 38 | [hecongqing/2018-daguan-competition](https://github.com/hecongqing/2018-daguan-competition) | 2018年"达观杯"文本智能处理挑战赛-长文本分类-rank4 | 205 | Jupyter Notebook | 04/07 |
| 39 | [canghailan/Wuhan-2019-nCoV](https://github.com/canghailan/Wuhan-2019-nCoV) | 2019-nCoV 新冠状病毒 2019-12-01至今国家、省、市三级每日统计数据(支持接口读取) | 203 | Jupyter Notebook | 04/13 |
| 40 | [zpw1995/aotodata](https://github.com/zpw1995/aotodata) | 朱小五写文章涉及到的数据分析,爬虫,源数据 | 196 | Jupyter Notebook | 01/08 |
| 41 | [19920625lsg/algorithms](https://github.com/19920625lsg/algorithms) | 慕课网刘宇波老师所有的算法视频教程在学习时自己的代码记录+加一些其他的算法书籍和课程的学习 | 190 | Jupyter Notebook | 04/06 |
| 42 | [nladuo/THSTrader](https://github.com/nladuo/THSTrader) | 量化交易。同花顺免费模拟炒股软件客户端的python API。(Python3) | 179 | Jupyter Notebook | 03/19 |
| 43 | [allenlu2008/PythonDemo](https://github.com/allenlu2008/PythonDemo) | 虾神的Python示例代码库 | 177 | Jupyter Notebook | 01/20 |
| 44 | [ShusenTang/Deep-Learning-with-PyTorch-Chinese](https://github.com/ShusenTang/Deep-Learning-with-PyTorch-Chinese) | 本仓库将PyTorch官方书籍《Deep learning with PyTorch》(基本摘录版)翻译成中文版并给出可运行的相关代码。 | 177 | Jupyter Notebook | 02/19 |
| 45 | [cxy229/BDCI2019-SENTIMENT-CLASSIFICATION](https://github.com/cxy229/BDCI2019-SENTIMENT-CLASSIFICATION) | CCF BDCI 2019 互联网新闻情感分析 复赛top1解决方案 | 166 | Jupyter Notebook | 01/25 |
| 46 | [monpa-team/monpa](https://github.com/monpa-team/monpa) | MONPA 罔拍是一個提供正體中文斷詞、詞性標註以及命名實體辨識的多任務模型 | 166 | Jupyter Notebook | 03/23 |
| 47 | [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 |
| 48 | [HuangCongQing/deeplearning.ai-note](https://github.com/HuangCongQing/deeplearning.ai-note) | 网易云课堂终于官方发布了吴恩达经过授权的汉化课程-“”深度学习专项课程“”,这是自己做的一些笔记以及代码。下为网易云学习链接 | 154 | Jupyter Notebook | 03/26 |
| 49 | [peiss/ant-learn-pandas](https://github.com/peiss/ant-learn-pandas) | pandas学习课程代码仓库 | 148 | Jupyter Notebook | 04/01 |
| 50 | [LinXueyuanStdio/LaTeX_OCR](https://github.com/LinXueyuanStdio/LaTeX_OCR) | :gem: 数学公式识别 | 138 | Jupyter Notebook | 01/29 |
| 51 | [zkywsg/Daily-DeepLearning](https://github.com/zkywsg/Daily-DeepLearning) | 🔥机器学习/深度学习/Python/算法面试/自然语言处理教程/剑指offer/machine learning/deeplearning/Python/Algorithm interview/NLP Tutorial | 136 | Jupyter Notebook | 04/02 |
| 52 | [kuhung/SSD_keras](https://github.com/kuhung/SSD_keras) | 简明 SSD 目标检测模型 keras version(交通标志识别 训练部分见 dev 分支) | 132 | Jupyter Notebook | 03/28 |
| 53 | [fire717/Machine-Learning](https://github.com/fire717/Machine-Learning) | 机器学习&深度学习资料笔记&基本算法实现&资源整理(ML / CV / NLP / DM...) | 130 | Jupyter Notebook | 04/11 |
| 54 | [LemenChao/PythonFromDAToDS](https://github.com/LemenChao/PythonFromDAToDS) | 图书《Python编程:从数据分析到数据科学》的配套资源 | 128 | Jupyter Notebook | 01/01 |
| 55 | [loveunk/machine-learning-deep-learning-notes](https://github.com/loveunk/machine-learning-deep-learning-notes) | 机器学习、深度学习的学习路径及知识总结 | 120 | Jupyter Notebook | 04/08 |
| 56 | [zwq2018/AI_UAV](https://github.com/zwq2018/AI_UAV) | 在人工智能、机器视觉、高精度导航定位和多传感器融合等技术的助推下,众多行业迎来了前所未有的发展机遇,人工智能+无人机(AI+UAV)正是一个具有无限想象力的应用方向。 | 118 | Jupyter Notebook | 03/31 |
| 57 | [LYuhang/GNN_Review](https://github.com/LYuhang/GNN_Review) | GNN综述阅读报告 | 116 | Jupyter Notebook | 04/08 |
| 58 | [qulacs/quantum-native-dojo](https://github.com/qulacs/quantum-native-dojo) | 量子コンピュータ初学者のための自習教材 | 113 | Jupyter Notebook | 03/31 |
| 59 | [Relph1119/StatisticalLearningMethod-Camp](https://github.com/Relph1119/StatisticalLearningMethod-Camp) | 统计学习方法训练营课程作业及答案 | 111 | Jupyter Notebook | 03/26 |
| 60 | [ZhangYikaii/NJUCS_Course_Material_JatHoiCheung](https://github.com/ZhangYikaii/NJUCS_Course_Material_JatHoiCheung) | 南京大学 NJU 计算机系 CS 课程资料 作业 代码 实验报告(数据挖掘 模式识别 机器学习导论 概率论与数理统计 计算机图形学 高级程序设计 数据库 计算机系统基础 操作系统 程设实验 数电 数电实验... ) 更新中, star! :star2: | 102 | Jupyter Notebook | 04/07 |
| 61 | [CNFeffery/DataScienceStudyNotes](https://github.com/CNFeffery/DataScienceStudyNotes) | 这个仓库保管从(数据科学学习手札69)开始的所有代码、数据等相关附件内容 | 98 | Jupyter Notebook | 04/02 |
| 62 | [ShusenTang/BDC2019](https://github.com/ShusenTang/BDC2019) | 2019中国高校计算机大赛——大数据挑战赛 第三名解决方案 | 97 | Jupyter Notebook | 02/16 |
| 63 | [sailist/ASRFrame](https://github.com/sailist/ASRFrame) | An Automatic Speech Recognition Frame ,一个中文语音识别的完整框架, 提供了多个模型 | 87 | Jupyter Notebook | 01/23 |
| 64 | [FontTian/hyperopt-doc-zh](https://github.com/FontTian/hyperopt-doc-zh) | Github开源项目hyperopt系列的中文文档,以及学习教程等 | 86 | Jupyter Notebook | 03/13 |
| 65 | [peaceiris/emoji-ime-dictionary](https://github.com/peaceiris/emoji-ime-dictionary) | 日本語で絵文字入力をするための IME 追加辞書 📙 Google 日本語入力などで日本語から絵文字への変換を可能にする IME 拡張辞書です | 86 | Jupyter Notebook | 04/12 |
| 66 | [Dylanin1999/Tensorflow2.0](https://github.com/Dylanin1999/Tensorflow2.0) | 学习笔记代码 | 85 | Jupyter Notebook | 03/25 |
| 67 | [czczup/UrbanRegionFunctionClassification](https://github.com/czczup/UrbanRegionFunctionClassification) | 第五届百度西安交大大数据竞赛 城市区域功能分类 Baseline | 76 | Jupyter Notebook | 01/12 |
| 68 | [peiss/ant-learn-python](https://github.com/peiss/ant-learn-python) | 蚂蚁学Python,微信公众号的代码仓库 | 73 | Jupyter Notebook | 04/03 |
| 69 | [linguishi/chinese_sentiment](https://github.com/linguishi/chinese_sentiment) | 中文情感分析,CNN,BI-LSTM,文本分类 | 72 | Jupyter Notebook | 01/29 |
| 70 | [dsh0416/quantum-i-ching](https://github.com/dsh0416/quantum-i-ching) | A Quantum 爻 System Implementation for Divination | 72 | Jupyter Notebook | 03/31 |
| 71 | [Relph1119/MachineLearning-WatermelonBook](https://github.com/Relph1119/MachineLearning-WatermelonBook) | 周志华-机器学习 | 72 | Jupyter Notebook | 01/01 |
| 72 | [xuwening/blog](https://github.com/xuwening/blog) | 对过往做做总结 | 70 | Jupyter Notebook | 03/23 |
| 73 | [duoergun0729/adversarial_examples](https://github.com/duoergun0729/adversarial_examples) | 对抗样本 | 68 | Jupyter Notebook | 03/31 |
| 74 | [LemenChao/Introduction-to-Data-Science](https://github.com/LemenChao/Introduction-to-Data-Science) | 本Repository为中国人民大学朝乐门老师开源课程——《数据科学导论》 | 60 | Jupyter Notebook | 04/05 |
| 75 | [yenlung/nccu-jupyter-math](https://github.com/yenlung/nccu-jupyter-math) | 這是政治大學應用數學系《數學軟體應用》課程的上課筆記。主要介紹 Python 程式語言, 目標是用 Python 做數據分析。 | 60 | Jupyter Notebook | 04/03 |
| 76 | [cantjie/XJTU-Share](https://github.com/cantjie/XJTU-Share) | 西安交通大学课程资料共享计划 | 59 | Jupyter Notebook | 03/07 |
| 77 | [ni1o1/pygeo-tutorial](https://github.com/ni1o1/pygeo-tutorial) | Tutorial of geospatial data processing using python 用python分析时空数据的教程(in Chinese and English ) | 59 | Jupyter Notebook | 04/10 |
| 78 | [monkeyDemon/Learn_Dive-into-DL-PyTorch](https://github.com/monkeyDemon/Learn_Dive-into-DL-PyTorch) | Datawhale第10期组队学习活动:《动手学深度学习》Pytorch版的练习代码 | 59 | Jupyter Notebook | 04/07 |
| 79 | [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 |
| 80 | [JokerJohn/bilibli_notes2](https://github.com/JokerJohn/bilibli_notes2) | 攻城狮之家B站视频课程课件合集2,1号仓库https://github.com/JokerJohn/bilibili_notes.git | 54 | Jupyter Notebook | 02/02 |
| 81 | [shiyanlou/louplus-ml](https://github.com/shiyanlou/louplus-ml) | 实验楼 《楼+ 机器学习实战》课程挑战作业参考答案 https://www.shiyanlou.com/louplus/ml | 53 | Jupyter Notebook | 01/09 |
| 82 | [YQGong/NN_From_Scratch](https://github.com/YQGong/NN_From_Scratch) | B站视频系列-从零开始的神经网络 | 53 | Jupyter Notebook | 03/02 |
| 83 | [JackonYang/paper-reading](https://github.com/JackonYang/paper-reading) | 深度学习论文阅读、数据仓库实践体验。比做算法的懂工程落地,比做工程的懂算法模型。 | 52 | Jupyter Notebook | 04/08 |
| 84 | [azy1988/ML-CV](https://github.com/azy1988/ML-CV) | 机器学习实战 | 51 | Jupyter Notebook | 03/31 |
| 85 | [jakezj/hidden_geometry_of_nCoV](https://github.com/jakezj/hidden_geometry_of_nCoV) | 建模nCov传播情况 | 51 | Jupyter Notebook | 01/30 |
| 86 | [makelove/Programer_Log](https://github.com/makelove/Programer_Log) | 最新动态在这里【我的程序员日志】 | 50 | Jupyter Notebook | 04/10 |
| 87 | [jamess010/AIOpen](https://github.com/jamess010/AIOpen) | AIOpen是一个按人工智能三要素(数据、算法、算力)进行AI开源项目分类的汇集项目,项目致力于跟踪目前人工智能(AI)的深度学习(DL)开源项目,并尽可能地罗列目前的开源项目,同时加入了一些曾经研究过的代码。通过这些开源项目,使初次接触AI的人们对人工智能(深度学习)有更清晰和更全面的了解。 | 49 | Jupyter Notebook | 03/11 |
| 88 | [hudengjunai/DeepEmbeding](https://github.com/hudengjunai/DeepEmbeding) | 图像检索和向量搜索,similarity learning,compare deep metric and deep-hashing applying in image retrieval | 49 | Jupyter Notebook | 04/10 |
| 89 | [tomo-makes/dl-in-a-sec](https://github.com/tomo-makes/dl-in-a-sec) | 2019年5月発刊『図解速習DEEP LEARNING』(シーアンドアール研究所)のサポートサイトです。 | 49 | Jupyter Notebook | 02/10 |
| 90 | [shikanon/MyPresentations](https://github.com/shikanon/MyPresentations) | this is my presentaion area .个人演讲稿展示区,主要展示一些平时的个人演讲稿或者心得之类的, | 47 | Jupyter Notebook | 02/12 |
| 91 | [xiaoxiaoyao/MyApp](https://github.com/xiaoxiaoyao/MyApp) | 随便写的各种,点链接可以进入我的知乎 | 45 | Jupyter Notebook | 04/02 |
| 92 | [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 |
| 93 | [FLyingLSJ/Computer_Vision_Project](https://github.com/FLyingLSJ/Computer_Vision_Project) | 计算机视觉项目实战 | 43 | Jupyter Notebook | 02/27 |
| 94 | [letylin/pyprogbook](https://github.com/letylin/pyprogbook) | 金融大數據首部曲 書名: Python 程式設計入門 — 金融商管實務案例 讀者可以在此下載教學資源含程式碼 | 41 | Jupyter Notebook | 04/07 |
| 95 | [wqw547243068/Python-learning](https://github.com/wqw547243068/Python-learning) | 好玩儿的Python:从数据挖掘到深度学习 | 41 | Jupyter Notebook | 02/06 |
| 96 | [jiayiwang5/Chinese-ChatBot](https://github.com/jiayiwang5/Chinese-ChatBot) | 中文聊天机器人,基于10万组对白训练而成,采用注意力机制,对一般问题都会生成一个有意义的答复。已上传模型,可直接运行,跑不起来直播吃键盘。 | 40 | Jupyter Notebook | 04/07 |
| 97 | [yutiansut/QAStrategy](https://github.com/yutiansut/QAStrategy) | 策略基类/ 支持QIFI协议 | 38 | Jupyter Notebook | 04/07 |
| 98 | [LiuChuang0059/Complex-Network](https://github.com/LiuChuang0059/Complex-Network) | 复杂网络研究资源整理和基础知识学习 | 37 | Jupyter Notebook | 03/30 |
| 99 | [08zhangyi/multi-factor-gm-wind-joinquant](https://github.com/08zhangyi/multi-factor-gm-wind-joinquant) | 基于掘金+万得+聚宽的多因子策略开发框架 | 37 | Jupyter Notebook | 04/02 |
| 100 | [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/11 |
| 101 | [nmcdev/nmc_met_map](https://github.com/nmcdev/nmc_met_map) | 天气学诊断分析工具(Meteorological Diagnostic Tools, MetDig) | 35 | Jupyter Notebook | 03/31 |
| 102 | [makelove/True_Artificial_Intelligence](https://github.com/makelove/True_Artificial_Intelligence) | 真AI人工智能 | 33 | Jupyter Notebook | 03/31 |
| 103 | [edu2act/course-PySCE](https://github.com/edu2act/course-PySCE) | 人工智能方向,《Python科学计算生态》课程仓库 | 32 | Jupyter Notebook | 02/16 |
| 104 | [Jie-Yuan/tql-Python](https://github.com/Jie-Yuan/tql-Python) | 思维误区: 用理想模型来思考复杂现实问题 | 32 | Jupyter Notebook | 03/25 |
| 105 | [heucoder/ML-DL_book](https://github.com/heucoder/ML-DL_book) | 机器学习、深度学习一些个人认为不错的书籍。 | 32 | Jupyter Notebook | 03/31 |
| 106 | [AlvinAi96/match_rcnn](https://github.com/AlvinAi96/match_rcnn) | Tianchi New Product Laboratory - Taobao Live Product Identification 天池大赛项目:天池新品实验室 - 淘宝直播商品识别 | 31 | Jupyter Notebook | 03/11 |
| 107 | [Fafa-DL/Tensorflow2.0-](https://github.com/Fafa-DL/Tensorflow2.0-) | bilibili:啥都会一点的研究生 | 31 | Jupyter Notebook | 03/15 |
| 108 | [VoldeMortzzz/2019Baai-zhihu-Cup-findexp-4th](https://github.com/VoldeMortzzz/2019Baai-zhihu-Cup-findexp-4th) | 2019年知乎看山杯第四名 | 30 | Jupyter Notebook | 01/13 |
| 109 | [unlimitbladeworks/python-tools](https://github.com/unlimitbladeworks/python-tools) | python3日常小工具仓库 | 29 | Jupyter Notebook | 04/07 |
| 110 | [howie6879/pylab](https://github.com/howie6879/pylab) | 和Python相关的学习笔记:机器学习、算法、进阶书籍、文档,博客地址:https://www.howie6879.cn | 29 | Jupyter Notebook | 03/30 |
| 111 | [zhanlaoban/CCF_BDCI_2019_datafountain350](https://github.com/zhanlaoban/CCF_BDCI_2019_datafountain350) | CCF BDCI 2019 互联网新闻情感分析 复赛top8 代码 | 29 | Jupyter Notebook | 01/07 |
| 112 | [Travisgogogo/2019-ABC-Athena](https://github.com/Travisgogogo/2019-ABC-Athena) | 2019 农业银行雅典娜杯数据挖掘大赛高校 Top2 Solution | 29 | Jupyter Notebook | 01/12 |
| 113 | [IBBD/IBBD.github.io](https://github.com/IBBD/IBBD.github.io) | IBBD技术博客 | 28 | Jupyter Notebook | 04/12 |
| 114 | [allenlu2008/PySparkDemo](https://github.com/allenlu2008/PySparkDemo) | PySpark算子及空间应用的各个Demo | 28 | Jupyter Notebook | 01/20 |
| 115 | [CodingChaozhang/Deep-Learning](https://github.com/CodingChaozhang/Deep-Learning) | 深度学习的实战项目 | 27 | Jupyter Notebook | 02/17 |
| 116 | [neolee/wop-ecnu-pub](https://github.com/neolee/wop-ecnu-pub) | 华东师范大学《数据思维与实践》课程主站 | 27 | Jupyter Notebook | 04/11 |
| 117 | [saturn-lab/MEE-CC07](https://github.com/saturn-lab/MEE-CC07) | CC07-单元 | 27 | Jupyter Notebook | 04/09 |
| 118 | [makaishi2/math_dl_book_info](https://github.com/makaishi2/math_dl_book_info) | 書籍「最短コースでわかる ディープラーニングの数学」用補足情報 | 26 | Jupyter Notebook | 04/07 |
| 119 | [chinapnr/python_study](https://github.com/chinapnr/python_study) | python 入门培训教材,实用、快速、清晰 | 26 | Jupyter Notebook | 04/12 |
| 120 | [zhangjunhd/reading-notes](https://github.com/zhangjunhd/reading-notes) | 张俊的读书笔记 | 26 | Jupyter Notebook | 04/12 |
| 121 | [leovan/data-science-introduction-with-r](https://github.com/leovan/data-science-introduction-with-r) | R 语言数据科学导论 \| Data Science Introduction with R \| https://ds-r.leovan.tech | 25 | Jupyter Notebook | 04/07 |
| 122 | [DataLoaderX/datasetsome](https://github.com/DataLoaderX/datasetsome) | 一些数据集处理相关的 API | 24 | Jupyter Notebook | 01/01 |
| 123 | [Travisgogogo/BAAI-ZHIHU-2019](https://github.com/Travisgogogo/BAAI-ZHIHU-2019) | Top3 Solution for 2019 BAAI-Zhihu-Cup 知乎看山杯 | 24 | Jupyter Notebook | 01/12 |
| 124 | [ultimatejoe/rul_of_cutter](https://github.com/ultimatejoe/rul_of_cutter) | 刀具剩余寿命预测 | 24 | Jupyter Notebook | 04/11 |
| 125 | [LogicJake/tuling-video-click-top3](https://github.com/LogicJake/tuling-video-click-top3) | 图灵联邦视频点击预测大赛线上第三-【ctr, embedding, 穿越特征】 | 22 | Jupyter Notebook | 03/04 |
| 126 | [dengxiuqi/WeiboSentiment](https://github.com/dengxiuqi/WeiboSentiment) | 基于FastText/SVM/贝叶斯/神经网络的中文微博情感分析 | 22 | Jupyter Notebook | 03/24 |
| 127 | [mengjiexu/OCR_CNN_-CTC](https://github.com/mengjiexu/OCR_CNN_-CTC) | 使用CNN全卷积神经网络进行整行汉字识别,正确率90-94%,后来有朋友改成densenet做主网络,做到99%以上正确率 | 22 | Jupyter Notebook | 01/19 |
| 128 | [datawhalechina/joyful-pandas](https://github.com/datawhalechina/joyful-pandas) | Pandas中文教程 | 21 | Jupyter Notebook | 04/10 |
| 129 | [TeamAidemy/AIMathBook](https://github.com/TeamAidemy/AIMathBook) | 石川 聡彦 著『人工知能プログラミングのための数学がわかる本』(2018年2月/KADOKAWA社)の実践編で取り扱ったPythonコードです。 | 20 | Jupyter Notebook | 03/31 |
| 130 | [wybert/open-wuhan-ncov-illness-data](https://github.com/wybert/open-wuhan-ncov-illness-data) | 这个项目有关有关 武汉肺炎 2019-ncov的相关病例数据的分享。从gitlab迁移过来。发布页这里 | 20 | Jupyter Notebook | 01/31 |
| 131 | [ywchiu/tibamedl](https://github.com/ywchiu/tibamedl) | Python深度學習實戰- 邁向A.I.的第一步 | 19 | Jupyter Notebook | 04/11 |
| 132 | [jiye-ML/math_study](https://github.com/jiye-ML/math_study) | 数学相关知识 包括 高数 概率 线性代数 | 19 | Jupyter Notebook | 03/08 |
| 133 | [yinizhilian/NLP_Share](https://github.com/yinizhilian/NLP_Share) | 自然语言处理NLP(自然语言生成NLG、自然语言理解NLU)、自然语言学术会议大盘点、自然语言大佬介绍、NLP研究机构、NLP资料分享、NLP学习资源分享、NLP学术论文介绍 | 18 | Jupyter Notebook | 01/14 |
| 134 | [shimitaku/MachineLearning-Book](https://github.com/shimitaku/MachineLearning-Book) | 書籍 AIエンジニアを目指す人のための機械学習入門(清水琢也・小川雄太郎、技術評論社、20/04/13) のサポートリポジトリ | 18 | Jupyter Notebook | 03/27 |
| 135 | [oldratlee/data-science-practice](https://github.com/oldratlee/data-science-practice) | 数据科学实践 \| data science practice | 17 | Jupyter Notebook | 01/03 |
| 136 | [Rockyzsu/convertible_bond](https://github.com/Rockyzsu/convertible_bond) | 低风险投资之可转债 | 17 | Jupyter Notebook | 03/29 |
| 137 | [Flyfoxs/xf_tag](https://github.com/Flyfoxs/xf_tag) | 大数据应用分类标注挑战赛(NLP),亚军🥈 | 17 | Jupyter Notebook | 01/29 |
| 138 | [MachineLP/Spark-](https://github.com/MachineLP/Spark-) | Spark学习笔记 | 17 | Jupyter Notebook | 02/10 |
| 139 | [wererLinC/Machine_Learning](https://github.com/wererLinC/Machine_Learning) | 参考了西瓜书,sklearn源码,李航统计学,机器学习实战、机器学习中的数学 | 16 | Jupyter Notebook | 03/27 |
| 140 | [JoshuaQYH/TIDIBEI](https://github.com/JoshuaQYH/TIDIBEI) | 基于机器学习方法构建多因子选股模型:RandomForest, GBDT, Adaboots, xgboost,MLP, Linear Model, LSTM | 16 | Jupyter Notebook | 04/10 |
| 141 | [Light2077/QA-Abstract-And-Reasoning](https://github.com/Light2077/QA-Abstract-And-Reasoning) | 问答摘要与推理 | 15 | Jupyter Notebook | 01/05 |
| 142 | [nmcdev/meteva](https://github.com/nmcdev/meteva) | 提供气象产品检验相关程序 | 15 | Jupyter Notebook | 04/10 |
| 143 | [GrayXu/Virtual-Try-On-Flask](https://github.com/GrayXu/Virtual-Try-On-Flask) | Virtual Try-on Network on Flask 基于深度学习的虚拟试衣 | 14 | Jupyter Notebook | 02/27 |
| 144 | [LiaoPan/MNE-Cookbook](https://github.com/LiaoPan/MNE-Cookbook) | 使用MNE-python过程中的小技巧,即如何处理MEG/EEG信号数据. | 14 | Jupyter Notebook | 01/10 |
| 145 | [aaron1aaron2/Class_DSA-2019](https://github.com/aaron1aaron2/Class_DSA-2019) | algorithms & data-structures Learning Note \| 這是 2019 三上 的資料結構與演算法課程紀錄 | 13 | Jupyter Notebook | 03/26 |
| 146 | [maoyunyao/MOTS_SiamMask](https://github.com/maoyunyao/MOTS_SiamMask) | 2019悉尼大学暑期研究课题, 在MOTS数据集上, 利用单目标跟踪的工作 SiamMask 结合目标检测工作 Mask RCNN 实现多目标跟踪与分割任务 | 13 | Jupyter Notebook | 01/29 |
| 147 | [wmpscc/CNN-Series-Getting-Started-and-PyTorch-Implementation](https://github.com/wmpscc/CNN-Series-Getting-Started-and-PyTorch-Implementation) | 我的笔记和Demo,包含分类,检测、分割、知识蒸馏。 | 13 | Jupyter Notebook | 01/25 |
| 148 | [mepeichun/Efficient-Neural-Network-Bilibili](https://github.com/mepeichun/Efficient-Neural-Network-Bilibili) | B站Efficient-Neural-Network学习分享的配套代码 | 13 | Jupyter Notebook | 03/09 |
| 149 | [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 | 02/07 |
| 150 | [fire717/Python-Learner](https://github.com/fire717/Python-Learner) | 轮子/ 常用库/ 书籍笔记/ 小程序 | 12 | Jupyter Notebook | 04/09 |
| 151 | [xushengyuan/Fastsinging](https://github.com/xushengyuan/Fastsinging) | 一个基于Fastspeech的开源歌声合成系统 | 13 | Jupyter Notebook | 03/27 |
| 152 | [PySEE/Practices](https://github.com/PySEE/Practices) | 行是知之始,知是行之成 - 陶行知 | 12 | Jupyter Notebook | 03/15 |
| 153 | [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 |
| 154 | [lcan520/BankCardRecognition](https://github.com/lcan520/BankCardRecognition) | 基于python3.6+opencv3+tensorflow+cnn的银行卡识别 | 12 | Jupyter Notebook | 01/14 |
| 155 | [Officeyutong/Countdown-Bot](https://github.com/Officeyutong/Countdown-Bot) | QQ群多功能Bot 。 | 12 | Jupyter Notebook | 04/06 |
| 156 | [starhou/One-dimensional-GAN](https://github.com/starhou/One-dimensional-GAN) | 用GAN生成一维数据 | 12 | Jupyter Notebook | 03/08 |
| 157 | [Microstrong0305/Python2AI](https://github.com/Microstrong0305/Python2AI) | 从零开始学习人工智能 | 12 | Jupyter Notebook | 03/18 |
| 158 | [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 |
| 159 | [Kokensha/book-ml](https://github.com/Kokensha/book-ml) | 書籍「今すぐ試したい!機械学習・深層学習(ディープラーニング)画像認識プログラミングレシピ」のソースコードを配布するレポジトリです。 | 11 | Jupyter Notebook | 02/01 |
| 160 | [YuleZhang/JDComment_Spider](https://github.com/YuleZhang/JDComment_Spider) | 京东评论爬虫,包含对数据的采集、清洗、可视化、分析等过程,作为数据库课程设计项目 | 11 | Jupyter Notebook | 03/12 |
| 161 | [OUCTheoryGroup/colab_demo](https://github.com/OUCTheoryGroup/colab_demo) | 中国海洋大学视觉实验室前沿理论小组 pytorch 学习 | 11 | Jupyter Notebook | 03/11 |
| 162 | [watermelon-lee/NLP-practice-with-Tensorflow2](https://github.com/watermelon-lee/NLP-practice-with-Tensorflow2) | 使用tensorflow2完成一些常见的NLP任务 | 11 | Jupyter Notebook | 03/25 |
| 163 | [DjangoPeng/keras-101](https://github.com/DjangoPeng/keras-101) | 快速入门 Keras 深度学习 | 11 | Jupyter Notebook | 04/02 |
| 164 | [Baymax94/children-python](https://github.com/Baymax94/children-python) | 少儿编程教育 | 11 | Jupyter Notebook | 03/03 |
| 165 | [Karmenzind/mfw](https://github.com/Karmenzind/mfw) | 马蜂窝游记、景点信息爬虫,热门景点热力图 | 10 | Jupyter Notebook | 04/01 |
| 166 | [aipredict/ai-deployment](https://github.com/aipredict/ai-deployment) | 关注AI模型上线、模型部署 | 10 | Jupyter Notebook | 02/15 |
| 167 | [ljyslyc/Book-KnowledgeGraph-Recommendation](https://github.com/ljyslyc/Book-KnowledgeGraph-Recommendation) | 书籍知识图谱推荐系统 | 10 | Jupyter Notebook | 03/18 |
| 168 | [GiantPandaCV/yolov3-point](https://github.com/GiantPandaCV/yolov3-point) | 从零开始学习YOLOv3教程解读代码+注意力模块(SE,SPP,RFB etc) | 10 | Jupyter Notebook | 04/11 |
| 169 | [czw90130/AO3_DataAnalyze](https://github.com/czw90130/AO3_DataAnalyze) | 对于AO3中文文章的爬取和分析 | 10 | Jupyter Notebook | 04/02 |
| 170 | [sty945/news_spider](https://github.com/sty945/news_spider) | 以中国新闻网社会新闻板块为抓取对象,通过关键词来分析新闻热点事件 | 9 | Jupyter Notebook | 03/08 |
| 171 | [DrDavidS/basic_Machine_Learning](https://github.com/DrDavidS/basic_Machine_Learning) | 机器学习和深度学习入门教程 | 9 | Jupyter Notebook | 04/10 |
| 172 | [JokerJohn/bilibli_notes3](https://github.com/JokerJohn/bilibli_notes3) | 攻城狮之家B站课件合集3 | 10 | Jupyter Notebook | 01/03 |
| 173 | [hanx316/Tech-Notes](https://github.com/hanx316/Tech-Notes) | 📒 技术学习笔记,好记性不如 Markdown | 9 | Jupyter Notebook | 03/31 |
| 174 | [SixGreen/small-programs](https://github.com/SixGreen/small-programs) | 记录平时在学习或工作中随手写的代码。 | 9 | Jupyter Notebook | 01/13 |
| 175 | [OneStepAndTwoSteps/Data_Analysis_notes](https://github.com/OneStepAndTwoSteps/Data_Analysis_notes) | 📖 data-analysis 数据分析、machine-learning 机器学习、项目实战 | 9 | Jupyter Notebook | 04/09 |
| 176 | [Rockyzsu/base_function](https://github.com/Rockyzsu/base_function) | python开发之路 | 8 | Jupyter Notebook | 04/07 |
| 177 | [Harry3W/readata](https://github.com/Harry3W/readata) | Python数据分析实战项目汇总~ | 8 | Jupyter Notebook | 04/02 |
| 178 | [Fan-Meng/DM-Python-MOOC](https://github.com/Fan-Meng/DM-Python-MOOC) | 此项目提供在中国大学慕课《数据挖掘与python实践》在线课程的代码及相关资料。课程链接如下:https://www.icourse163.org/course/CUFE-1207262801 | 8 | Jupyter Notebook | 04/06 |
| 179 | [NealChalmers/Stanford-CS229-ML-AndrewNg](https://github.com/NealChalmers/Stanford-CS229-ML-AndrewNg) | Coursera Machine Learning (Andrew Ng) implements in Python 吴恩达ML课程答案Python版本(持续更新) | 8 | Jupyter Notebook | 03/31 |
| 180 | [jinbooooom/Programming-Checking-for-Missing](https://github.com/jinbooooom/Programming-Checking-for-Missing) | python/C/C++基础知识查漏补缺 | 8 | Jupyter Notebook | 01/05 |
| 181 | [nickliqian/keep_learning](https://github.com/nickliqian/keep_learning) | 学习过程中的代码和笔记(Collection some demo during learning ) | 8 | Jupyter Notebook | 03/30 |
| 182 | [Arctanxy/learning_notes](https://github.com/Arctanxy/learning_notes) | 机器学习等算法学习笔记 | 8 | Jupyter Notebook | 02/22 |
| 183 | [edu2act/course-deep-learning-advanced](https://github.com/edu2act/course-deep-learning-advanced) | 人工智能方向,《深度学习进阶》课程仓库 | 8 | Jupyter Notebook | 02/16 |
| 184 | [whzecomjm/AppsNotes](https://github.com/whzecomjm/AppsNotes) | 乱七八糟的笔记 | 8 | Jupyter Notebook | 01/05 |
| 185 | [zhhu1996/Coursera-Deep-Learning-Specialization](https://github.com/zhhu1996/Coursera-Deep-Learning-Specialization) | Andrew Ng(吴恩达) | 8 | Jupyter Notebook | 03/03 |
| 186 | [FangChao1086/Machine_Learning](https://github.com/FangChao1086/Machine_Learning) | 机器学习深度学习知识点 | 8 | Jupyter Notebook | 03/14 |
| 187 | [ZanyFun9/2019-BAAI-zhihu-2nd](https://github.com/ZanyFun9/2019-BAAI-zhihu-2nd) | 2019-智源-看山杯-专家发现算法大赛-第二名-代码,文档,ppt | 8 | Jupyter Notebook | 01/14 |
| 188 | [wly000/toutiao-project](https://github.com/wly000/toutiao-project) | 个性化文章推荐系统 | 8 | Jupyter Notebook | 01/13 |
| 189 | [lankning/bilibili](https://github.com/lankning/bilibili) | 哔哩哔哩视频的程序文档 | 7 | Jupyter Notebook | 03/26 |
| 190 | [voidful/Phraseg](https://github.com/voidful/Phraseg) | Phraseg - 一言:新詞發現工具包 | 7 | Jupyter Notebook | 04/10 |
| 191 | [JoeShi/rasa-chinese-workshop](https://github.com/JoeShi/rasa-chinese-workshop) | 利用 RASA 构建智能对话机器人 | 7 | Jupyter Notebook | 01/01 |
| 192 | [0809zheng/CS231n-assignment2019](https://github.com/0809zheng/CS231n-assignment2019) | CS231n 2019年春季学期课程作业 | 7 | Jupyter Notebook | 03/31 |
| 193 | [codewithzichao/NLP_Programs](https://github.com/codewithzichao/NLP_Programs) | 本repo使用tensorflow2实现NLP中常见的模型:文本相似度分析、文本摘要、文本生成、机器翻译......(持续更新中) | 7 | Jupyter Notebook | 03/19 |
| 194 | [ShanYonggang/spider_list](https://github.com/ShanYonggang/spider_list) | python爬虫及数据分析实战案例 | 7 | Jupyter Notebook | 04/02 |
| 195 | [Amberlan1001/eat_tensorflow2_in_30_days_ipynb](https://github.com/Amberlan1001/eat_tensorflow2_in_30_days_ipynb) | 30天掌握Tensorflow2.1 Jupyter Notebook 版 | 7 | Jupyter Notebook | 04/10 |
| 196 | [JeremiahZhang/gopython](https://github.com/JeremiahZhang/gopython) | 人生苦短, Python当歌. | 7 | Jupyter Notebook | 04/05 |
| 197 | [NMC-DAVE/dk_notebooks](https://github.com/NMC-DAVE/dk_notebooks) | 日常进行天气诊断、数据分析、科学研究等方面的Python, R等Jupyter文件. | 7 | Jupyter Notebook | 03/31 |
| 198 | [Rockyzsu/CodePool](https://github.com/Rockyzsu/CodePool) | 代码池 | 7 | Jupyter Notebook | 03/02 |
| 199 | [onolab-tmu/audio-processing-100-knocks](https://github.com/onolab-tmu/audio-processing-100-knocks) | 音響信号処理100本ノック - Learn audio signal processing in a 100 problems. | 7 | Jupyter Notebook | 01/16 |
| 200 | [anxiang1836/query_similar_tianchi_2020](https://github.com/anxiang1836/query_similar_tianchi_2020) | 天池2020-新冠疫情相似句对判定大赛 | 7 | Jupyter Notebook | 03/07 |
⬆ [回到目录](#目录)
<br/>
## Shell
| # | Repository | Description | Stars | Language | Updated |
| ---- | ------------------------------------------------------------ | ------------------------------------------------------------ | ----- | -------- | ------- |
| 1 | [taizilongxu/interview_python](https://github.com/taizilongxu/interview_python) | 关于Python的面试题 | 12.2k | Shell | 03/03 |
| 2 | [233boy/v2ray](https://github.com/233boy/v2ray) | 最好用的 V2Ray 一键安装脚本 & 管理脚本 | 11.3k | Shell | 04/01 |
| 3 | [rootsongjc/kubernetes-handbook](https://github.com/rootsongjc/kubernetes-handbook) | Kubernetes中文指南/云原生应用架构实践手册 - https://jimmysong.io/kubernetes-handbook | 6.9k | Shell | 04/10 |
| 4 | [skywind3000/awesome-cheatsheets](https://github.com/skywind3000/awesome-cheatsheets) | 超级速查表 - 编程语言、框架和开发工具的速查表,单个文件包含一切你需要知道的东西 :zap: | 5.7k | Shell | 04/09 |
| 5 | [opsnull/follow-me-install-kubernetes-cluster](https://github.com/opsnull/follow-me-install-kubernetes-cluster) | 和我一步步部署 kubernetes 集群 | 5.4k | Shell | 02/07 |
| 6 | [easzlab/kubeasz](https://github.com/easzlab/kubeasz) | 使用Ansible脚本安装K8S集群,介绍组件交互原理,方便直接,不受国内网络环境影响 | 5.0k | Shell | 04/06 |
| 7 | [HIT-Alibaba/interview](https://github.com/HIT-Alibaba/interview) | 笔试面试知识整理 | 4.1k | Shell | 03/20 |
| 8 | [wulabing/V2Ray_ws-tls_bash_onekey](https://github.com/wulabing/V2Ray_ws-tls_bash_onekey) | V2Ray Nginx+vmess+ws+tls/ http2 over tls 一键安装脚本 | 3.8k | Shell | 04/10 |
| 9 | [ToyoDAdoubi/doubi](https://github.com/ToyoDAdoubi/doubi) | 一个逗比写的各种逗比脚本~ | 3.6k | Shell | 02/10 |
| 10 | [softwaredownload/openwrt-fanqiang](https://github.com/softwaredownload/openwrt-fanqiang) | 最好的路由器翻墙、科学上网教程—OpenWrt—shadowsocks | 3.4k | Shell | 03/23 |
| 11 | [wangdoc/javascript-tutorial](https://github.com/wangdoc/javascript-tutorial) | JavaScript 教程 https://wangdoc.com/javascript | 2.2k | Shell | 04/07 |
| 12 | [lmk123/oh-my-wechat](https://github.com/lmk123/oh-my-wechat) | 微信小助手的安装 / 更新工具。 | 1.6k | Shell | 04/01 |
| 13 | [LCTT/TranslateProject](https://github.com/LCTT/TranslateProject) | Linux中国翻译项目 | 1.6k | Shell | 04/13 |
| 14 | [P3TERX/Actions-OpenWrt](https://github.com/P3TERX/Actions-OpenWrt) | Build OpenWrt using GitHub Actions \| 使用 GitHub Actions 云编译 OpenWrt | 1.2k | Shell | 04/13 |
| 15 | [neoFelhz/neohosts](https://github.com/neoFelhz/neohosts) | 自由·负责·克制 去广告 Hosts 项目 | 1.2k | Shell | 03/12 |
| 16 | [studygolang/GCTT](https://github.com/studygolang/GCTT) | GCTT Go中文网翻译组。 | 1.1k | Shell | 04/12 |
| 17 | [zfl9/ss-tproxy](https://github.com/zfl9/ss-tproxy) | 搭建 SS/SSR/V2Ray/Socks5 透明代理环境的简陋脚本 | 1.1k | Shell | 03/22 |
| 18 | [wind-liang/leetcode](https://github.com/wind-liang/leetcode) | leetcode 顺序刷题,详细通俗题解,with JAVA | 1.0k | Shell | 04/12 |
| 19 | [devdawei/libstdc-](https://github.com/devdawei/libstdc-) | Xcode 10 和 Xcode 11 中删除的 libstdc++ 库 | 912 | Shell | 01/07 |
| 20 | [aqzt/kjyw](https://github.com/aqzt/kjyw) | 快捷运维,代号kjyw,项目基于shell、python,运维脚本工具库,收集各类运维常用工具脚本,实现快速安装nginx、mysql、php、redis、nagios、运维经常使用的脚本等等... | 890 | Shell | 03/21 |
| 21 | [gaoyifan/china-operator-ip](https://github.com/gaoyifan/china-operator-ip) | 中国运营商IPv4/IPv6地址库-每日更新 | 887 | Shell | 04/12 |
| 22 | [maxlicheng/luci-app-unblockmusic](https://github.com/maxlicheng/luci-app-unblockmusic) | 用于解锁网易云灰色歌曲的OpenWRT/LEDE路由器插件 (openwrt/lede luci support for unblock neteasecloudmusic) | 876 | Shell | 04/11 |
| 23 | [hellofwy/ss-bash](https://github.com/hellofwy/ss-bash) | Shadowsocks流量管理脚本 | 854 | Shell | 02/22 |
| 24 | [c0ny1/vulstudy](https://github.com/c0ny1/vulstudy) | 使用docker快速搭建各大漏洞靶场,目前可以一键搭建17个靶场。 | 840 | Shell | 03/25 |
| 25 | [gotok8s/k8s-docker-desktop-for-mac](https://github.com/gotok8s/k8s-docker-desktop-for-mac) | Docker Desktop for Mac 开启并使用 Kubernetes | 835 | Shell | 03/05 |
| 26 | [liquanzhou/ops_doc](https://github.com/liquanzhou/ops_doc) | 运维简洁实用手册 | 699 | Shell | 03/06 |
| 27 | [goreliu/zshguide](https://github.com/goreliu/zshguide) | Zsh 开发指南 | 655 | Shell | 02/15 |
| 28 | [monlor/Monlor-Tools](https://github.com/monlor/Monlor-Tools) | 小米路由器Shell工具箱,本人自用,主要参考了小米的Misstar Tools制作,仅学习之用!Telegram群组:https://t.me/joinchat/FMraA0lwzH9fzEW1wXdCFA | 639 | Shell | 01/06 |
| 29 | [xuexb/learn-nginx](https://github.com/xuexb/learn-nginx) | Nginx 入门指南 | 632 | Shell | 03/18 |
| 30 | [P3TERX/aria2.conf](https://github.com/P3TERX/aria2.conf) | Aria2 配置文件 \| OneDrive、Google Drvive 离线下载解决方案 \| 百度网盘不限速转存解决方案 | 564 | Shell | 04/12 |
| 31 | [wppurking/ocserv-docker](https://github.com/wppurking/ocserv-docker) | 用于初始化 ocserv 的 Dockfile 脚本 | 551 | Shell | 03/09 |
| 32 | [MvsCode/frps-onekey](https://github.com/MvsCode/frps-onekey) | Frps 一键安装脚本&管理脚本 A tool to auto-compile & install frps on Linux | 537 | Shell | 04/03 |
| 33 | [Nick233333/phper-linux-gitbook](https://github.com/Nick233333/phper-linux-gitbook) | 💡PHPer 必知必会的 Linux 命令 | 532 | Shell | 04/03 |
| 34 | [klever1988/nanopi-openwrt](https://github.com/klever1988/nanopi-openwrt) | Openwrt for Nanopi R1S R2S 固件编译 | 502 | Shell | 04/12 |
| 35 | [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 | 485 | Shell | 02/23 |
| 36 | [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. | 478 | Shell | 01/17 |
| 37 | [arloor/iptablesUtils](https://github.com/arloor/iptablesUtils) | iptables转发ddns域名 | 471 | Shell | 04/08 |
| 38 | [rust-lang-cn/rust-by-example-cn](https://github.com/rust-lang-cn/rust-by-example-cn) | Rust By Example 中文版(包含在线代码编辑器) | 468 | Shell | 04/06 |
| 39 | [rime/plum](https://github.com/rime/plum) | 東風破 /plum/: Rime configuration manager and input schema repository | 446 | Shell | 04/01 |
| 40 | [skyline75489/Heart-First-JavaWeb](https://github.com/skyline75489/Heart-First-JavaWeb) | 一个走心的 Java Web 入门开发教程 | 433 | Shell | 03/20 |
| 41 | [anrip/dnspod-shell](https://github.com/anrip/dnspod-shell) | 基于DNSPod用户API实现的纯Shell动态域名客户端 | 385 | Shell | 03/10 |
| 42 | [ctf-wiki/ctf-tools](https://github.com/ctf-wiki/ctf-tools) | CTF 工具集合 | 374 | Shell | 03/11 |
| 43 | [huan/docker-wechat](https://github.com/huan/docker-wechat) | DoChat is a Dockerized WeChat (盒装微信) PC Windows Client for Linux | 354 | Shell | 04/12 |
| 44 | [csy512889371/learnDoc](https://github.com/csy512889371/learnDoc) | 🔥:rocket:架构师的成长之路-博客-导图 | 349 | Shell | 03/12 |
| 45 | [zhangguanzhang/Kubernetes-ansible](https://github.com/zhangguanzhang/Kubernetes-ansible) | :christmas_tree:ansible多网卡机器上一键部署高可用Kubernetes(systemd) | 344 | Shell | 02/20 |
| 46 | [EtherDream/anti-portscan](https://github.com/EtherDream/anti-portscan) | 使用 iptables 防止端口扫描 | 340 | Shell | 01/20 |
| 47 | [venshine/decompile-apk](https://github.com/venshine/decompile-apk) | 🔥 Decompile APK(反编译APK) | 331 | Shell | 01/15 |
| 48 | [tonydeng/sdn-handbook](https://github.com/tonydeng/sdn-handbook) | SDN手册 | 321 | Shell | 03/10 |
| 49 | [eritpchy/Fingerprint-pay-magisk-wechat](https://github.com/eritpchy/Fingerprint-pay-magisk-wechat) | 微信指纹支付 (Fingerprint pay for WeChat) | 310 | Shell | 02/22 |
| 50 | [jaywcjlove/docker-tutorial](https://github.com/jaywcjlove/docker-tutorial) | 🐳Docker入门学习笔记 | 294 | Shell | 03/25 |
| 51 | [ben1234560/k8s_PaaS](https://github.com/ben1234560/k8s_PaaS) | 如何基于K8S部署成PaaS(一套完整的软件研发和部署平台)——教程/学习(实战代码/欢迎讨论/大量注释/操作配图),你将习得部署如:K8S、dashboard、Harbor、Jenkins、本地gitlab、Apollo框架、promtheus、grafana、spinnaker。 | 292 | Shell | 04/12 |
| 52 | [P3TERX/aria2.sh](https://github.com/P3TERX/aria2.sh) | Aria2 一键安装管理脚本 增强版 | 283 | Shell | 02/18 |
| 53 | [hijkpw/scripts](https://github.com/hijkpw/scripts) | Shadowsocks/SS一键脚本、ShadowsocksR/SSR一键脚本、V2Ray一键脚本、trojan一键脚本、VPS购买教程,以及各种资源教程 | 282 | Shell | 04/12 |
| 54 | [esirplayground/AutoBuild-OpenWrt](https://github.com/esirplayground/AutoBuild-OpenWrt) | Build OpenWrt using GitHub Actions \| 使用 GitHub Actions 编译 OpenWrt \| 感谢P3TERX的项目源码 | 276 | Shell | 04/08 |
| 55 | [apachecn/ml-mastery-zh](https://github.com/apachecn/ml-mastery-zh) | :book: [译] MachineLearningMastery 博客文章 | 272 | Shell | 01/20 |
| 56 | [WangHL0927/grafana-chinese](https://github.com/WangHL0927/grafana-chinese) | grafana中文版本 | 247 | Shell | 01/10 |
| 57 | [andyzhshg/syno-acme](https://github.com/andyzhshg/syno-acme) | 通过acme协议更新群晖HTTPS泛域名证书的自动脚本 | 246 | Shell | 04/07 |
| 58 | [wangdoc/bash-tutorial](https://github.com/wangdoc/bash-tutorial) | Bash 教程 | 241 | Shell | 04/11 |
| 59 | [233boy/ss](https://github.com/233boy/ss) | Shadowsocks-Go 一键安装脚本 & 管理脚本 | 237 | Shell | 01/15 |
| 60 | [V2RaySSR/Trojan](https://github.com/V2RaySSR/Trojan) | Trojan 一键安装脚本 | 237 | Shell | 04/10 |
| 61 | [woniuzfb/iptv](https://github.com/woniuzfb/iptv) | 一键管理 v2ray / IPTV 直播源脚本 hls <= mpegts rtmp ... => http-flv <=> hls | 233 | Shell | 04/12 |
| 62 | [P3TERX/docker-aria2-pro](https://github.com/P3TERX/docker-aria2-pro) | Aria2 Pro \| A perfect Aria2 Docker image \| 更好用的 Aria2 Docker 容器镜像 | 231 | Shell | 04/12 |
| 63 | [wang-bin/avbuild](https://github.com/wang-bin/avbuild) | ffmpeg花式编译. build tool for all platforms: iOS, android, raspberry pi, win32, uwp, linux, macOS etc. | 229 | Shell | 04/01 |
| 64 | [bclswl0827/v2ray-heroku](https://github.com/bclswl0827/v2ray-heroku) | 用于在 Heroku 上部署 V2Ray Websocket,本项目不宜做为长期使用之对策。 | 227 | Shell | 04/07 |
| 65 | [project-openwrt/luci-app-unblockneteasemusic](https://github.com/project-openwrt/luci-app-unblockneteasemusic) | [OpenWrt] 解除网易云音乐播放限制 | 221 | Shell | 03/08 |
| 66 | [IOTQQ/IOTQQ](https://github.com/IOTQQ/IOTQQ) | 跨平台 QQ机器人 框架 原生 高效 迸发 Lua Plugin 只有你想不到 | 218 | Shell | 04/11 |
| 67 | [91yun/91yuntest](https://github.com/91yun/91yuntest) | 91云服务器一键测试包 | 216 | Shell | 04/12 |
| 68 | [apachecn/awesome-cs-courses-zh](https://github.com/apachecn/awesome-cs-courses-zh) | 计算机公开课推荐 | 212 | Shell | 04/08 |
| 69 | [felix-fly/v2ray-openwrt](https://github.com/felix-fly/v2ray-openwrt) | 路由器Openwrt安装V2ray简单流程 | 207 | Shell | 03/30 |
| 70 | [dunwu/linux-tutorial](https://github.com/dunwu/linux-tutorial) | :penguin: Linux教程,主要内容:Linux 命令、Linux 系统运维、软件运维、精选常用Shell脚本 | 197 | Shell | 04/03 |
| 71 | [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) | 189 | Shell | 03/26 |
| 72 | [deyuhua/xv6-book-chinese](https://github.com/deyuhua/xv6-book-chinese) | MIT操作系统工程的教学操作系统Xv6的源码剖析中文翻译项目,使用ANSI标准C重新在riscv架构上实现Unix v6; | 186 | Shell | 02/26 |
| 73 | [HyperledgerCN/hyperledgerDocs](https://github.com/HyperledgerCN/hyperledgerDocs) | Hyperledger文档 | 185 | Shell | 01/08 |
| 74 | [rachpt/AutoSeed](https://github.com/rachpt/AutoSeed) | 全自动发种姬 [流程图 https://www.processon.com/view/link/5c088855e4b0ca4b40c93a49 ] | 183 | Shell | 02/28 |
| 75 | [diguage/mysql-notes](https://github.com/diguage/mysql-notes) | MySQL 学习笔记 | 183 | Shell | 04/09 |
| 76 | [zwmscorm/sharealiddns](https://github.com/zwmscorm/sharealiddns) | 全功能阿里云域名解析脚本(支持IPV4, IPV6, 多域名等,同时支持asuswrt-merlin 、padavan、pandorabox、lede/openwrt固件) | 181 | Shell | 02/22 |
| 77 | [aturl/awesome-anti-gfw](https://github.com/aturl/awesome-anti-gfw) | 突破网络审查和封锁的开源工具清单。 | 165 | Shell | 04/02 |
| 78 | [DeppWang/Java-Books](https://github.com/DeppWang/Java-Books) | 📚 Java 程序员必读高分神作(非扫描版) | 165 | Shell | 03/28 |
| 79 | [jgsrty/jgsrty.github.docs](https://github.com/jgsrty/jgsrty.github.docs) | :sunny: :feet: personal blog docs 项目预览:https://jgsrty.github.io 国内访问:https://rtyxmd.gitee.io | 162 | Shell | 04/10 |
| 80 | [jardenliu/XPS15-9560-Catalina](https://github.com/jardenliu/XPS15-9560-Catalina) | XPS15-9560-Catalina, Q群:161385229 | 158 | Shell | 04/09 |
| 81 | [hczhcz/the-elder-is-excited](https://github.com/hczhcz/the-elder-is-excited) | 暴力膜蛤 | 151 | Shell | 04/12 |
| 82 | [eritpchy/Fingerprint-pay-magisk-alipay](https://github.com/eritpchy/Fingerprint-pay-magisk-alipay) | 支付宝指纹支付 (Fingerprint pay for Alipay) | 139 | Shell | 03/06 |
| 83 | [TheKingOfDuck/ApkAnalyser](https://github.com/TheKingOfDuck/ApkAnalyser) | 一键提取安卓应用中可能存在的敏感信息。 | 137 | Shell | 04/03 |
| 84 | [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. 一些无聊的脚本和配置文件 | 136 | Shell | 03/09 |
| 85 | [wangdoc/webapi-tutorial](https://github.com/wangdoc/webapi-tutorial) | Web API 教程 | 132 | Shell | 03/21 |
| 86 | [openwrtcompileshell/OpenwrtCompileScript](https://github.com/openwrtcompileshell/OpenwrtCompileScript) | Openwrt编译辅助脚本可以帮助你更快的搭建openwrt环境,但不会帮你完成整个编译过程 | 132 | Shell | 04/11 |
| 87 | [lijianying10/FixLinux](https://github.com/lijianying10/FixLinux) | 记录我是如何解决一些问题的,公开我平时用的脚本,变量等。 | 129 | Shell | 03/09 |
| 88 | [lovezzzxxx/liverecord](https://github.com/lovezzzxxx/liverecord) | 自动录播并自动备份,支持youtube频道、twitcast频道、twitch频道、openrec频道、niconico生放送、niconico社区、niconico频道、mirrativ频道、reality频道、17live频道、bilibili频道、streamlink支持的直播网址、ffmpeg支持的m3u8地址 | 128 | Shell | 02/29 |
| 89 | [FantasticLBP/codesnippets](https://github.com/FantasticLBP/codesnippets) | iOS 代码规范、属性、方法、GCD、线程等代码块和控制器、单例、Model 类模版 | 115 | Shell | 03/05 |
| 90 | [nwcdlabs/kops-cn](https://github.com/nwcdlabs/kops-cn) | AWS中国宁夏区域/北京区域,快速Kops部署K8S集群 | 115 | Shell | 03/11 |
| 91 | [Toxic-Cat/Airport-toolkit](https://github.com/Toxic-Cat/Airport-toolkit) | 各類方便機場主進行安裝維護的shell腳本 | 115 | Shell | 04/05 |
| 92 | [wangdoc/html-tutorial](https://github.com/wangdoc/html-tutorial) | HTML 语言教程 | 114 | Shell | 02/27 |
| 93 | [fenglh/IPABuildShell](https://github.com/fenglh/IPABuildShell) | IPABuildShell 一个强大的、轻量的 iOS 自动打包工具,无需手动指定授权文件和证书 | 108 | Shell | 02/24 |
| 94 | [whunt1/onekeymakemtg](https://github.com/whunt1/onekeymakemtg) | 编译安装最新版 mtproxy-go 一键脚本 | 105 | Shell | 04/06 |
| 95 | [giantbranch/pwn-env-init](https://github.com/giantbranch/pwn-env-init) | CTF PWN 做题环境一键搭建脚本 | 103 | Shell | 03/18 |
| 96 | [primovist/snell.sh](https://github.com/primovist/snell.sh) | snell的一键安装脚本 | 102 | Shell | 04/12 |
| 97 | [farsunset/lvxin-im](https://github.com/farsunset/lvxin-im) | 侣信是一款功能强大的IM(即时聊天)工具。具有丰富的功能,聊天,群组,部门组织,内部朋友圈等功能。它可以在局域网内使用保证沟通的信息安全,并且它是完全免费的,而且可以及时获得更新。 | 102 | Shell | 01/03 |
| 98 | [52fancy/GooGle-BBR](https://github.com/52fancy/GooGle-BBR) | GooGle开源TCP加速算法 | 102 | Shell | 02/16 |
| 99 | [XIU2/SHELL](https://github.com/XIU2/SHELL) | 一些乱七八糟的脚本 🙄 | 101 | Shell | 04/05 |
| 100 | [levinit/itnotes](https://github.com/levinit/itnotes) | 个人笔记,IT相关。 | 101 | Shell | 03/27 |
| 101 | [easy-swoole/doc](https://github.com/easy-swoole/doc) | easyswoole文档 | 100 | Shell | 03/19 |
| 102 | [yanhuacuo/98wubi-tables](https://github.com/yanhuacuo/98wubi-tables) | 98五笔基础码表 | 99 | Shell | 04/11 |
| 103 | [lgs3137/MR_S1-macOS](https://github.com/lgs3137/MR_S1-macOS) | 机械革命S1(MSI PS42 8RB) for macOS Catalina & Mojave | 99 | Shell | 04/01 |
| 104 | [AndorChen/rbenv-china-mirror](https://github.com/AndorChen/rbenv-china-mirror) | 让 rbenv 使用 Ruby China 的镜像安装 Ruby | 96 | Shell | 01/27 |
| 105 | [laubonghaudoi/Chinese_Rime](https://github.com/laubonghaudoi/Chinese_Rime) | 收集現代漢語方言和古漢語的中州韻輸入法拼音方案 Collection of phonetic spelling schemas for Sinitic languages and dialects | 95 | Shell | 04/09 |
| 106 | [apachecn/stanford-cs234-notes-zh](https://github.com/apachecn/stanford-cs234-notes-zh) | 斯坦福 cs234 强化学习中文讲义 | 94 | Shell | 02/07 |
| 107 | [mritd/shell_scripts](https://github.com/mritd/shell_scripts) | 常用的一些 shell 脚本 | 94 | Shell | 04/07 |
| 108 | [goodboy23/shell-script-collection](https://github.com/goodboy23/shell-script-collection) | shell脚本合集,地址:https://www.52wiki.cn/Doc/Read/id/641.html | 92 | Shell | 03/27 |
| 109 | [analysys/argo-installer](https://github.com/analysys/argo-installer) | 方舟Argo安装工具 | 92 | Shell | 04/12 |
| 110 | [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 | 90 | Shell | 03/30 |
| 111 | [i5ting/i5ting-mac-init](https://github.com/i5ting/i5ting-mac-init) | 自己 Mac + Node.js 电脑初始化开发环境的安装脚本 | 89 | Shell | 04/12 |
| 112 | [daliansky/Lenovo-Air13-IWL-Hackintosh](https://github.com/daliansky/Lenovo-Air13-IWL-Hackintosh) | 联想小新Air 13 IWL笔记本EFI | 89 | Shell | 04/09 |
| 113 | [apachecn/interpretable-ml-book-zh](https://github.com/apachecn/interpretable-ml-book-zh) | interpretable-ml-book中文翻译 | 88 | Shell | 01/21 |
| 114 | [lightyearvpn/LightyearVPN](https://github.com/lightyearvpn/LightyearVPN) | LightyearVPN 光年VPN 科学上网 一键翻墙 无需配置 | 88 | Shell | 04/11 |
| 115 | [JinjunHan/iOSDeviceSupport](https://github.com/JinjunHan/iOSDeviceSupport) | 各个版本的iOS Device Support | 87 | Shell | 03/30 |
| 116 | [Binlogo/iOS-Practice-Checklist](https://github.com/Binlogo/iOS-Practice-Checklist) | iOS 精进与实践检查清单 | 85 | Shell | 03/17 |
| 117 | [JaderH/GreenBox](https://github.com/JaderH/GreenBox) | :game_die: 娱乐项目,使用 Crontab 定时提交 Commits。点亮绿格子;对就是绿 | 85 | Shell | 04/13 |
| 118 | [zq99299/note-book](https://github.com/zq99299/note-book) | 新笔记本,java、git、elasticsearch、mycat、设计模式、gradle、vue, 等 。vuepress 构建的 Markdown 笔记。 | 81 | Shell | 04/12 |
| 119 | [Lancenas/actions-openwrt-passwall](https://github.com/Lancenas/actions-openwrt-passwall) | Actions使用Lienol-OpenWrt源码编译含passwall服务固件 | 81 | Shell | 04/02 |
| 120 | [xyzmos/GeekDNS](https://github.com/xyzmos/GeekDNS) | GeekDNS配置文件 | 80 | Shell | 03/03 |
| 121 | [MFrank2016/GotoSSH](https://github.com/MFrank2016/GotoSSH) | Automatic login SSH (一键登录SSH,可直接从跳板机登录到线上服务器) | 78 | Shell | 03/19 |
| 122 | [huweihuang/kubernetes-notes](https://github.com/huweihuang/kubernetes-notes) | Kubernetes 学习笔记-https://www.huweihuang.com/kubernetes-notes/ | 77 | Shell | 04/04 |
| 123 | [idoop/zentao](https://github.com/idoop/zentao) | auto build docker image for zentao(禅道). | 75 | Shell | 03/04 |
| 124 | [Lancger/opslinux](https://github.com/Lancger/opslinux) | Linux运维手册(基础+frp内网穿透+分布式锁+Redis+Kafka+安全+漏洞扫描+Docker+ELFK+LVM+监控+CI/CD+数据库+翻墙+LDAP+MQ+minio对象存储+命令录制审计+IP出口+gmail邮件安全校验+Jaeger 分布式追踪等) | 75 | Shell | 03/24 |
| 125 | [TimeBye/kubeadm-ha](https://github.com/TimeBye/kubeadm-ha) | kubeadm-ha 使用 kubeadm 进行高可用 kubernetes 集群搭建,利用 ansible-playbook 实现自动化安装,既提供一键安装脚本,也可以根据 playbook 分步执行安装各个组件。 | 74 | Shell | 04/11 |
| 126 | [jinfeijie/yapi](https://github.com/jinfeijie/yapi) | Docker for YApi 一键部署YApi | 73 | Shell | 04/10 |
| 127 | [felix-fly/v2ray-dnsmasq-dnscrypt](https://github.com/felix-fly/v2ray-dnsmasq-dnscrypt) | 路由器openwrt配置dnsmasq、doh,高性能v2ray解决方案。 | 69 | Shell | 03/30 |
| 128 | [ibisheng/deploy](https://github.com/ibisheng/deploy) | onlyoffice 一键安装 :毕升文档包括drive和在线文件服务功能。其中drive实现文件的在线管理,组织结构权限,分享,团队协作等,文件的全文检索等功能;在线文件服务能够处理word,ppt,excel格式文件的带水印预览以及多人协同编辑,另外还能处理pdf,视频,音频文件的预览以及实现了100多种文本文件带语法高亮的预览 | 68 | Shell | 04/07 |
| 129 | [mdrights/LiveSlak](https://github.com/mdrights/LiveSlak) | 中文化的隐私加强 GNU/Linux 系统 - Forked from Alien Bob's powerful building script for Slackware Live. | 68 | Shell | 02/02 |
| 130 | [1265578519/kangle](https://github.com/1265578519/kangle) | kangle web server 最强网站性能服务器架设软件 | 67 | Shell | 03/17 |
| 131 | [imroc/kubernetes-practice-guide](https://github.com/imroc/kubernetes-practice-guide) | Kubernetes Practice Guide (Kubernetes 实践指南) | 66 | Shell | 04/06 |
| 132 | [orangbus/Tool](https://github.com/orangbus/Tool) | 收藏一些自己常用的东西。 | 66 | Shell | 03/28 |
| 133 | [xausky/ShadowsocksGostPlugin](https://github.com/xausky/ShadowsocksGostPlugin) | Gost 的 Shadowsocks 安卓插件,可以直接在 Shadowsocks 安卓客户端上连接 Gost 服务器 | 65 | Shell | 03/14 |
| 134 | [Vonng/adcode](https://github.com/Vonng/adcode) | 中国行政区划代码,包括五级行政区划详细代码,县级以上区划地理围栏。 | 65 | Shell | 03/12 |
| 135 | [kkkgo/DSM_Login_BingWallpaper](https://github.com/kkkgo/DSM_Login_BingWallpaper) | 群晖登录壁纸自动换 | 64 | Shell | 02/20 |
| 136 | [BlockchainOne/WeChat](https://github.com/BlockchainOne/WeChat) | 区块链技术指北(ChainONE)社区微信群价值信息汇总。 | 61 | Shell | 04/12 |
| 137 | [Ljohn001/ljohn_ops](https://github.com/Ljohn001/ljohn_ops) | Linux运维工作中常用的shell脚本 | 61 | Shell | 03/20 |
| 138 | [abcfyk/impatriot](https://github.com/abcfyk/impatriot) | 科学上网,理性爱国 | 61 | Shell | 04/09 |
| 139 | [lxchuan12/blog](https://github.com/lxchuan12/blog) | 若川的博客—前端视野-资源和源代码vuepress 博客 | 61 | Shell | 04/08 |
| 140 | [Lancger/opsfull](https://github.com/Lancger/opsfull) | k8s集群资料合集(高可用安装部署+应用部署+redis+mysql+kafak等各个组件生产环境使用技巧以及高可用) | 60 | Shell | 03/18 |
| 141 | [hepyu/k8s-app-config](https://github.com/hepyu/k8s-app-config) | 提供kubernetes容器化生产级实践,包含配置,参数,流程,架构等。 | 57 | Shell | 02/27 |
| 142 | [shenuiuin/LXD_GPU_SERVER](https://github.com/shenuiuin/LXD_GPU_SERVER) | 实验室GPU服务器的LXD虚拟化 | 56 | Shell | 03/31 |
| 143 | [alicfeng/AShell](https://github.com/alicfeng/AShell) | 开发者常用脚本shell | 55 | Shell | 03/15 |
| 144 | [cloud-op/monitor](https://github.com/cloud-op/monitor) | 云产品功能监控 | 54 | Shell | 04/09 |
| 145 | [rootsongjc/serverless-handbook](https://github.com/rootsongjc/serverless-handbook) | Serverless Handbook 无服务架构实践手册 - https://jimmysong.io/serverless-handbook | 53 | Shell | 04/10 |
| 146 | [hegphegp/docker-learning](https://github.com/hegphegp/docker-learning) | docker和一些软件学习笔记 | 53 | Shell | 03/30 |
| 147 | [mack-a/v2ray-agent](https://github.com/mack-a/v2ray-agent) | 本项目旨在更好的学习新知识,采用CDN+TLS+Nginx+v2ray进行伪装并突破防火墙。 | 53 | Shell | 04/09 |
| 148 | [nicejade/vuepress-web-app](https://github.com/nicejade/vuepress-web-app) | 📝 采用 VuePress 构建的 Web 应用程序,支持 Pwa、Github Issues 评论、Prettier Markdown 等。 | 52 | Shell | 04/07 |
| 149 | [meishixiu/note](https://github.com/meishixiu/note) | 笔记 | 52 | Shell | 03/27 |
| 150 | [neroxps/hassio_install](https://github.com/neroxps/hassio_install) | hassio 一键脚本,适配国内网络环境目前兼容(Debian Ubuntu Raspbian) | 51 | Shell | 04/10 |
| 151 | [lihaoyun6/macOS-Displays-icon](https://github.com/lihaoyun6/macOS-Displays-icon) | Show the real Displays Icon in "About This Mac > Displays" / 在"关于本机 > 显示器"中显示真实的显示器外观图标 | 48 | Shell | 03/25 |
| 152 | [jiangtao/blog](https://github.com/jiangtao/blog) | 深入基础,沉淀下来。欢迎watch或star. 更多信息关注: 公众号 前端进制 | 48 | Shell | 03/30 |
| 153 | [hotmop/ssrmu](https://github.com/hotmop/ssrmu) | 逗比SSR魔改版本 | 47 | Shell | 03/02 |
| 154 | [zdwork/k8s-install](https://github.com/zdwork/k8s-install) | kubernetes集群安装脚本 | 47 | Shell | 01/09 |
| 155 | [koolshare/synology-easyexplorer](https://github.com/koolshare/synology-easyexplorer) | EasyExplorer 跨设备、点对点文件传输同步工具 http://koolshare.cn/thread-129199-1-1.html | 46 | Shell | 02/06 |
| 156 | [wangtunan/blog](https://github.com/wangtunan/blog) | :memo: 记录个人博客,见证成长之路 https://wangtunan.github.io/blog/ | 46 | Shell | 03/30 |
| 157 | [al0ne/MacCheck](https://github.com/al0ne/MacCheck) | 一个Mac下信息搜集小脚本 主要用于信息搜集/应急响应/检测挖矿进程/异常进程/异常启动项 | 45 | Shell | 02/25 |
| 158 | [project-openwrt/luci-app-unblockneteasemusic-mini](https://github.com/project-openwrt/luci-app-unblockneteasemusic-mini) | [OpenWrt] 解除网易云音乐播放限制 [Mini Ver] | 44 | Shell | 03/05 |
| 159 | [Messiahhh/blog](https://github.com/Messiahhh/blog) | 前端博客,求Star! | 44 | Shell | 04/12 |
| 160 | [fwh1990/react-native-upload](https://github.com/fwh1990/react-native-upload) | ( MacOs ) 一键打包部署 android/ios APP到各个测试平台和App Store,拒绝繁琐 | 42 | Shell | 04/11 |
| 161 | [nsk4762jp/OxygenNotIncluded-Japanese](https://github.com/nsk4762jp/OxygenNotIncluded-Japanese) | Oxygen Not Included 日本語化 | 41 | Shell | 03/08 |
| 162 | [sean-liang/PHICOMM-N1-OpenWRT-Image-Builder](https://github.com/sean-liang/PHICOMM-N1-OpenWRT-Image-Builder) | 斐讯N1盒子OpenWRT镜像自动构建脚本 | 40 | Shell | 01/17 |
| 163 | [ellermister/mtproxy](https://github.com/ellermister/mtproxy) | MTProxyTLS一键安装绿色脚本 | 40 | Shell | 02/29 |
| 164 | [esrrhs/docker-thunder-xware](https://github.com/esrrhs/docker-thunder-xware) | 迅雷离线下载 docker 镜像 采用centos镜像和最新的xware 修复了大文件会挂掉的bug | 39 | Shell | 01/01 |
| 165 | [easonjim/centos-shell](https://github.com/easonjim/centos-shell) | CentOS常用Shell | 39 | Shell | 01/07 |
| 166 | [KubeOperator/k8s-package](https://github.com/KubeOperator/k8s-package) | Kubernetes 离线安装包工程,一个分支对应一个版本,每个分支会构建成一个容器交付给 KubeOperator 使用。 | 39 | Shell | 04/10 |
| 167 | [klionsec/MotooScanner](https://github.com/klionsec/MotooScanner) | 一款就地取材实现的,廉价资产搜集工具 | 37 | Shell | 02/19 |
| 168 | [eritpchy/Fingerprint-pay-magisk-qq](https://github.com/eritpchy/Fingerprint-pay-magisk-qq) | QQ指纹支付 (Fingerprint pay for QQ) | 37 | Shell | 01/11 |
| 169 | [xiaoyunjie/Shell_Script](https://github.com/xiaoyunjie/Shell_Script) | Linux系统的安全,通过脚本对Linux系统进行一键检测和一键加固 | 36 | Shell | 04/02 |
| 170 | [bugparty/byebye-aegis](https://github.com/bugparty/byebye-aegis) | one click uninstall aegis 一键删除阿里云安骑士 | 35 | Shell | 03/05 |
| 171 | [snow-sprite/rzsz](https://github.com/snow-sprite/rzsz) | lrzsz上传下载mac配置 及两个必要的.sh文件 iterm2-recv-zmodem.sh 和 iterm2-send-zmodem.sh | 35 | Shell | 04/04 |
| 172 | [kirin10000/V2Ray-WebSocket-TLS-Web-setup-script](https://github.com/kirin10000/V2Ray-WebSocket-TLS-Web-setup-script) | v2ray ws tls 1.3 web nginx 搭建脚本 | 35 | Shell | 04/06 |
| 173 | [leoatchina/leoatchina-datasci](https://github.com/leoatchina/leoatchina-datasci) | 基于rstudio、code-server、jupyter-lab的dockerfile,用于快速搭建数据分析环境。 | 35 | Shell | 04/11 |
| 174 | [HuaZhuangNan/actions-build-padavan-openwrt](https://github.com/HuaZhuangNan/actions-build-padavan-openwrt) | GitHub Action 学习实例 - 自动编译 padavan 和 openWrt | 34 | Shell | 04/11 |
| 175 | [yuanlam/clash1step_dlercloud](https://github.com/yuanlam/clash1step_dlercloud) | Clash for Linux一键安装脚本(支持订阅) | 33 | Shell | 03/29 |
| 176 | [SuperNG6/docker-aria2](https://github.com/SuperNG6/docker-aria2) | Docker Aria2的最佳实践 | 32 | Shell | 03/24 |
| 177 | [GiGaFotress/Vtuber-recorder](https://github.com/GiGaFotress/Vtuber-recorder) | VTB多平台全自动录制 | 32 | Shell | 03/21 |
| 178 | [ifuture-pro/developer-notes](https://github.com/ifuture-pro/developer-notes) | 开发者笔记。包含:DevOps,微服务,分布式,高可用,区块链,白皮书,算法,黑客,设计模式,面试题 | 31 | Shell | 04/12 |
| 179 | [eritpchy/Fingerprint-pay-magisk-taobao](https://github.com/eritpchy/Fingerprint-pay-magisk-taobao) | 淘宝指纹支付 (Fingerprint pay for Taobao) | 31 | Shell | 01/11 |
| 180 | [mixool/HiCnUnicom](https://github.com/mixool/HiCnUnicom) | 中国联通APP登录 签到 金币 任务 俱乐部 解流量封顶 | 30 | Shell | 04/03 |
| 181 | [ooxoop/gost-install](https://github.com/ooxoop/gost-install) | gost一键安装配置脚本 | 30 | Shell | 03/28 |
| 182 | [cimhealth/git-toolkit](https://github.com/cimhealth/git-toolkit) | Git工具集 | 30 | Shell | 04/02 |
| 183 | [guohuadeng/odoo_install_script_cn](https://github.com/guohuadeng/odoo_install_script_cn) | odoo 无人值守快速安装脚本,以odoo12版本为基础 | 29 | Shell | 01/15 |
| 184 | [ourfor/Mibook-air](https://github.com/ourfor/Mibook-air) | 让你的小米笔记本吃上苹果🍎 | 28 | Shell | 03/25 |
| 185 | [BigMangos/speedtest-go-script](https://github.com/BigMangos/speedtest-go-script) | speedtest go 版本一键安装脚本 | 28 | Shell | 04/06 |
| 186 | [gmt-china/GMT_docs](https://github.com/gmt-china/GMT_docs) | GMT中文手册 | 28 | Shell | 04/03 |
| 187 | [OKit-Scripts-Projects/DSM.Customizations](https://github.com/OKit-Scripts-Projects/DSM.Customizations) | Customize DSM6.[1/2].(群晖DSM6.1或2 魔改库) | 28 | Shell | 03/25 |
| 188 | [ehaut/WebServerAutoBackup](https://github.com/ehaut/WebServerAutoBackup) | AutoBackupWebServer(Web directory + MySQL) - WEB 服务器自动备份脚本 | 28 | Shell | 04/10 |
| 189 | [1orz/My-action](https://github.com/1orz/My-action) | 自动编译-无人值守Auto release base on Github actions | 27 | Shell | 04/11 |
| 190 | [GetuiLaboratory/getui-sdk-ios-cocoapods](https://github.com/GetuiLaboratory/getui-sdk-ios-cocoapods) | 个推官方提供的推送SDK CocoaPods 集成库(iOS平台 ) | 27 | Shell | 03/31 |
| 191 | [l2642235863/ReduceMIUI](https://github.com/l2642235863/ReduceMIUI) | MIUI精简计划 | 27 | Shell | 02/27 |
| 192 | [wltos/ssip](https://github.com/wltos/ssip) | ssip是“shadowsocks server install packet”的缩写,它是shadowsocks(影梭,以下简称ss)的服务端一键安装包。本包附带windows,android,mac和iphone等主流平台的客户端程序文件。关于各客户端的程序文件,详见本包utils文件夹。 | 26 | Shell | 03/28 |
| 193 | [gdut-yy/OnJava8-zh](https://github.com/gdut-yy/OnJava8-zh) | OnJava8 中文翻译,又名《Java编程思想》 第5版 | 26 | Shell | 03/17 |
| 194 | [Leif160519/centos-script](https://github.com/Leif160519/centos-script) | centos下工具安装脚本,包含基础环境配置,gitlab、supervisor、rabbitmq、docker安装等 | 26 | Shell | 04/11 |
| 195 | [khs1994-docker/ci](https://github.com/khs1994-docker/ci) | Gogs( GitHub )+Drone+Docker Registry \| 私有化的 CI/CD & DevOps 解决方案 | 26 | Shell | 04/07 |
| 196 | [zhangguanzhang/bash](https://github.com/zhangguanzhang/bash) | :sunglasses:记录我写的bash shell | 25 | Shell | 04/12 |
| 197 | [wuyumin/tutorial](https://github.com/wuyumin/tutorial) | 一些笔记 · 一些教程· Some tutorials | 25 | Shell | 03/27 |
| 198 | [doublechaintech/daas-start-kit](https://github.com/doublechaintech/daas-start-kit) | React/Java 技术栈,代码和数据云端生成,本地部署低代码平台,手写代码和生成代码目录分离,适合专业开发人员开发长期维护的软件。 | 24 | Shell | 03/18 |
| 199 | [xiaoluoboding/monthly](https://github.com/xiaoluoboding/monthly) | 聚焦前端,记录过去一个月看到的优秀的文章、工具,丰富前端技术栈。 | 24 | Shell | 03/28 |
| 200 | [seisman/SAC_Docs_zh](https://github.com/seisman/SAC_Docs_zh) | SAC参考手册中文版 | 24 | Shell | 02/20 |
⬆ [回到目录](#目录)
<br/>
## C
| # | Repository | Description | Stars | Language | Updated |
| ---- | ------------------------------------------------------------ | ------------------------------------------------------------ | ----- | -------- | ------- |
| 1 | [QSCTech/zju-icicles](https://github.com/QSCTech/zju-icicles) | 浙江大学课程攻略共享计划 | 17.1k | C | 04/05 |
| 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 | [bingoogolapple/BGAQRCode-Android](https://github.com/bingoogolapple/BGAQRCode-Android) | QRCode 扫描二维码、扫描条形码、相册获取图片后识别、生成带 Logo 二维码、支持微博微信 QQ 二维码扫描样式 | 6.5k | C | 03/12 |
| 4 | [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 | 03/18 |
| 5 | [nonstriater/Learn-Algorithms](https://github.com/nonstriater/Learn-Algorithms) | 算法学习笔记 | 4.5k | C | 01/14 |
| 6 | [Tencent/TencentOS-tiny](https://github.com/Tencent/TencentOS-tiny) | 腾讯物联网终端操作系统 | 4.2k | C | 04/12 |
| 7 | [SecWiki/windows-kernel-exploits](https://github.com/SecWiki/windows-kernel-exploits) | windows-kernel-exploits Windows平台提权漏洞集合 | 4.0k | C | 03/31 |
| 8 | [miloyip/json-tutorial](https://github.com/miloyip/json-tutorial) | 从零开始的 JSON 库教程 | 3.3k | C | 02/28 |
| 9 | [SecWiki/linux-kernel-exploits](https://github.com/SecWiki/linux-kernel-exploits) | linux-kernel-exploits Linux平台提权漏洞集合 | 3.2k | C | 03/30 |
| 10 | [linw7/Skill-Tree](https://github.com/linw7/Skill-Tree) | 🐼 准备秋招,欢迎来树上取果实 | 2.8k | C | 03/04 |
| 11 | [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.3k | C | 04/10 |
| 12 | [WizTeam/WizQTClient](https://github.com/WizTeam/WizQTClient) | 为知笔记跨平台客户端 | 2.1k | C | 04/10 |
| 13 | [huangz1990/annotated_redis_source](https://github.com/huangz1990/annotated_redis_source) | 带有详细注释的 Redis 2.6 源码 | 2.1k | C | 01/01 |
| 14 | [Mzzopublic/C](https://github.com/Mzzopublic/C) | C语言 | 1.9k | C | 03/06 |
| 15 | [chiakge/Linux-NetSpeed](https://github.com/chiakge/Linux-NetSpeed) | 将Linux现常用的网络加速集成在一起 | 1.8k | C | 03/11 |
| 16 | [microshow/RxFFmpeg](https://github.com/microshow/RxFFmpeg) | 🔥RxFFmpeg 是基于 ( FFmpeg 4.0 + X264 + mp3lame + fdk-aac ) 编译的适用于 Android 平台的音视频编辑、视频剪辑的快速处理框架,包含以下功能(视频拼接,转码,压缩,裁剪,片头片尾,分离音视频,变速,添加静态贴纸和gif动态贴纸,添加字幕,添加滤镜,添加背景音乐,加速减速视频,倒放音视频,音频裁剪,变声,混音,图片合成视频,视频解码图片,抖音首页,视频播放器等主流特色功能 | 1.8k | C | 04/12 |
| 17 | [firmianay/CTF-All-In-One](https://github.com/firmianay/CTF-All-In-One) | CTF竞赛入门指南 | 1.7k | C | 04/08 |
| 18 | [zlgopen/awtk](https://github.com/zlgopen/awtk) | AWTK = Toolkit AnyWhere(为嵌入式、手机和PC打造的通用GUI系统) | 1.7k | C | 04/11 |
| 19 | [guanzhi/GmSSL](https://github.com/guanzhi/GmSSL) | 支持国密SM2/SM3/SM4/SM9/ZUC/SSL的OpenSSL分支 | 1.6k | 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.6k | 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 | 01/20 |
| 22 | [reactnativecn/react-native-pushy](https://github.com/reactnativecn/react-native-pushy) | ReactNative中文网推出的代码热更新服务 | 1.5k | C | 04/07 |
| 23 | [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/11 |
| 24 | [loyinglin/LearnOpenGLES](https://github.com/loyinglin/LearnOpenGLES) | OpenGL ES的各种尝试,有详细的博客。 | 1.3k | C | 03/17 |
| 25 | [quickjs-zh/QuickJS](https://github.com/quickjs-zh/QuickJS) | QuickJS是一个小型并且可嵌入的Javascript引擎,它支持ES2020规范,包括模块,异步生成器和代理器。 | 1.3k | C | 03/17 |
| 26 | [TheWanderingCoel/Trojan-Qt5](https://github.com/TheWanderingCoel/Trojan-Qt5) | A cross-platform trojan GUI client based on Shadowsocks-qt. 有问题请加tg群反馈 | 1.2k | C | 04/10 |
| 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.0k | C | 04/12 |
| 30 | [momotech/MLN](https://github.com/momotech/MLN) | 高性能、小巧、易上手的移动跨平台开发框架. A framework for building Mobile cross-platform apps with Lua | 999 | C | 04/10 |
| 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 数据库 | 961 | C | 04/12 |
| 32 | [cppla/ServerStatus](https://github.com/cppla/ServerStatus) | 云探针、多服务器探针、云监控、多服务器云监控,演示: https://tz.cloudcpp.com/ | 844 | C | 04/07 |
| 33 | [MRNIU/SimpleKernel](https://github.com/MRNIU/SimpleKernel) | Simple kernel for learning operating systems. 用于学习操作系统的简单内核 | 760 | C | 04/07 |
| 34 | [BruceWind/AESJniEncrypt](https://github.com/BruceWind/AESJniEncrypt) | Make the most secure code in Android. (ndk实现AES,key在native中,防止被二次打包){长期维护,请star,勿fork} | 743 | C | 02/14 |
| 35 | [netwarm007/GameEngineFromScratch](https://github.com/netwarm007/GameEngineFromScratch) | 配合我的知乎专栏写的项目 | 720 | C | 04/09 |
| 36 | [feiskyer/sdn-handbook](https://github.com/feiskyer/sdn-handbook) | SDN网络指南(SDN Handbook) | 669 | C | 04/08 |
| 37 | [yianwillis/vimcdoc](https://github.com/yianwillis/vimcdoc) | Vim 中文文档计划 | 659 | C | 04/12 |
| 38 | [armink/FreeModbus_Slave-Master-RTT-STM32](https://github.com/armink/FreeModbus_Slave-Master-RTT-STM32) | Add master mode to FreeModbus. \| 在 FreeModbus 中添加主机模式 | 636 | C | 03/26 |
| 39 | [armink/CmBacktrace](https://github.com/armink/CmBacktrace) | Advanced fault backtrace library for ARM Cortex-M series MCU \| ARM Cortex-M 系列 MCU 错误追踪库 | 586 | C | 03/30 |
| 40 | [lqian/light-LPR](https://github.com/lqian/light-LPR) | Light-LPR是一个瞄准可以在嵌入式设备、手机端和普通的x86平台上运行的车牌识别开源项目,旨在支持各种场景的车牌识别,车牌字符识别准确率超99.95%,综合识别准确率超过99%,支持目前国内所有的车牌识别,觉得好用的一定要加星哦。 | 553 | C | 02/23 |
| 41 | [feiskyer/linux-perf-examples](https://github.com/feiskyer/linux-perf-examples) | 极客时间《Linux 性能优化实战》案例 | 534 | C | 01/31 |
| 42 | [Tencent/TencentOS-kernel](https://github.com/Tencent/TencentOS-kernel) | 腾讯针对云的场景研发的服务器操作系统 | 481 | C | 04/02 |
| 43 | [u0u0/Quick-Cocos2dx-Community](https://github.com/u0u0/Quick-Cocos2dx-Community) | Cocos2d-Lua 社区版 | 477 | C | 04/12 |
| 44 | [wuzhouhui/misc](https://github.com/wuzhouhui/misc) | 学习与工作中收集的一些资料 | 444 | C | 03/22 |
| 45 | [aliyun/iotkit-embedded](https://github.com/aliyun/iotkit-embedded) | 高速镜像: https://code.aliyun.com/linkkit/c-sdk | 430 | C | 04/07 |
| 46 | [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 ... | 416 | C | 02/25 |
| 47 | [CasterWx/AntzOS](https://github.com/CasterWx/AntzOS) | :earth_asia: Develop an intelligent AI half terminal half graphical operating system Antz. 一个随心所欲制造的操作系统Antz。 | 373 | C | 03/12 |
| 48 | [CoderMJLee/MJCodeObfuscation](https://github.com/CoderMJLee/MJCodeObfuscation) | 一个用于代码混淆和字符串加密的Mac小Demo | 370 | C | 01/04 |
| 49 | [chenall/grub4dos](https://github.com/chenall/grub4dos) | 外部命令和工具源码:https://github.com/chenall/grubutils 下载: | 368 | C | 04/02 |
| 50 | [osgochina/donkeyid](https://github.com/osgochina/donkeyid) | php扩展,64位自增id生成器 | 359 | C | 04/08 |
| 51 | [CokeMine/ServerStatus-Hotaru](https://github.com/CokeMine/ServerStatus-Hotaru) | 云探针、多服务器探针、云监控、多服务器云监控 | 353 | C | 03/30 |
| 52 | [hurley25/Hurlex-II](https://github.com/hurley25/Hurlex-II) | 第二版重新设计和构思,参考一些优秀的实现进行补充设计和编码。 | 330 | C | 04/09 |
| 53 | [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 结构体的序列化及反序列化 | 322 | C | 02/23 |
| 54 | [picasso250/spring12](https://github.com/picasso250/spring12) | 春节十二响 | 319 | C | 03/14 |
| 55 | [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) | 300 | C | 01/20 |
| 56 | [YunYang1994/yynet](https://github.com/YunYang1994/yynet) | 📚 自己写的一个深度学习框架(c/c++ 实现, 不依赖于任何第三方库,含中文注释) | 295 | C | 04/12 |
| 57 | [destan19/OpenAppFilter](https://github.com/destan19/OpenAppFilter) | 基于OpenWrt的App过滤(上网管控)模块,支持抖音、斗鱼、王者荣耀、腾讯视频等上百款App过滤 | 294 | C | 04/06 |
| 58 | [huangz1990/blog](https://github.com/huangz1990/blog) | 我的个人博客。 | 290 | C | 04/12 |
| 59 | [xausky/UnityModManager](https://github.com/xausky/UnityModManager) | 一个便捷的程序可以修改游戏内资源包括:Unity游戏资源,Wwise音频资源。 | 266 | C | 01/13 |
| 60 | [chronolaw/annotated_nginx](https://github.com/chronolaw/annotated_nginx) | Annotated Nginx Source(中文) | 261 | C | 03/05 |
| 61 | [MiEcosystem/miio_open](https://github.com/MiEcosystem/miio_open) | 智能硬件接入文档 | 245 | C | 03/20 |
| 62 | [shineframe/shineframe](https://github.com/shineframe/shineframe) | 高性能超轻量级C++开发库及服务器编程框架 | 243 | C | 03/24 |
| 63 | [froghui/yolanda](https://github.com/froghui/yolanda) | 极客时间<网络编程实战>代码 | 239 | C | 04/05 |
| 64 | [zlgopen/ametal](https://github.com/zlgopen/ametal) | 芯片级裸机软件包,定义了一系列常用外设(如:UART、IIC、SPI、ADC等)的通用接口,基于通用接口的应用可以跨平台复用。 | 224 | C | 04/07 |
| 65 | [murphyzhao/FlexibleButton](https://github.com/murphyzhao/FlexibleButton) | 灵活的按键处理库(Flexible Button)\| 按键驱动 \| 支持单击、双击、连击、长按、自动消抖 \| 灵活适配中断和低功耗 \| 按需实现组合按键 | 221 | C | 04/12 |
| 66 | [chenyahui/AnnotatedCode](https://github.com/chenyahui/AnnotatedCode) | 知名开源代码库的注释版,包括libco、coroutine、muduo等 | 219 | C | 04/03 |
| 67 | [MustangYM/WeChatICU-ForMac](https://github.com/MustangYM/WeChatICU-ForMac) | Mac版企业微信消息防撤回, 聊天会话去水印 | 212 | C | 02/03 |
| 68 | [OliverLew/PAT](https://github.com/OliverLew/PAT) | PAT OJ exercises in C language 浙江大学PAT纯C语言题解,欢迎改进建议 | 211 | C | 03/19 |
| 69 | [dpull/skynet-mingw](https://github.com/dpull/skynet-mingw) | 对skynet无任何改动的windows版 | 208 | C | 03/31 |
| 70 | [AngelKitty/review_the_national_post-graduate_entrance_examination](https://github.com/AngelKitty/review_the_national_post-graduate_entrance_examination) | 🌟复习考研的那些事儿(清华912考研)~~ | 192 | C | 01/01 |
| 71 | [fanchy/h2engine](https://github.com/fanchy/h2engine) | H2服务器引擎架构是轻量级的,与其说是引擎,个人觉得称之为平台更为合适。因为它封装的功能少之又少,但是提供了非常简洁方便的扩展机制,使得可以用C++、python、lua、js、php来开发具体的服务器功能。H2引擎的灵感来源于web服务器Apache。 | 185 | C | 04/03 |
| 72 | [zpoint/Redis-Internals](https://github.com/zpoint/Redis-Internals) | Analyze redis 5.0 source code through diagrams \| 图解 Redis 5.0 | 184 | C | 03/31 |
| 73 | [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. | 179 | C | 02/17 |
| 74 | [PHZ76/DesktopSharing](https://github.com/PHZ76/DesktopSharing) | 桌面共享, 支持RTSP转发, RTSP推流, RTMP推流。 | 167 | C | 04/12 |
| 75 | [wuxx/nanoDAP](https://github.com/wuxx/nanoDAP) | 建议大家star此仓库,仓库会持续更新。由于部分淘宝卖家“借鉴”实验室出品的nanoDAP详情及描述,请大家认准实验室官方链接 | 165 | C | 04/09 |
| 76 | [soffchen/NanoPi-R2S](https://github.com/soffchen/NanoPi-R2S) | 使用 Github Actions 在线编译内置 OpenClash 的 NanoPi-R2S 固件 | 161 | C | 04/03 |
| 77 | [eboxmaker/eBox_Framework](https://github.com/eboxmaker/eBox_Framework) | ebox是类似于arduino的一层api,简化stm32编程 | 155 | C | 04/06 |
| 78 | [armfly/H7-TOOL_STM32H7_App](https://github.com/armfly/H7-TOOL_STM32H7_App) | 单片机APP程序 | 146 | C | 04/08 |
| 79 | [maxlicheng/stm32f4_ucosii_lwip_mqtt](https://github.com/maxlicheng/stm32f4_ucosii_lwip_mqtt) | 基于正点原子STM32F4开发板和阿里云物联网平台的MQTT项目 | 144 | C | 03/15 |
| 80 | [notrynohigh/BabyOS](https://github.com/notrynohigh/BabyOS) | 专为MCU项目开发提速的代码框架 | 141 | C | 04/11 |
| 81 | [scriptiot/evm](https://github.com/scriptiot/evm) | 超轻量级物联网虚拟机 | 139 | C | 04/07 |
| 82 | [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两种模式! | 134 | C | 02/25 |
| 83 | [zkwlx/ADI](https://github.com/zkwlx/ADI) | ADI(Android Debug Intensive) 是通过 JVMTI 实现的 Android 应用开发调试的增强工具集,目前主要提供性能相关的监控能力。 | 133 | C | 02/13 |
| 84 | [david-pzh/ONE-Robot](https://github.com/david-pzh/ONE-Robot) | 2015年做的一个基于IMU和STM32的独轮自平衡机器人 | 133 | C | 02/15 |
| 85 | [switch-iot/hin2n](https://github.com/switch-iot/hin2n) | n2n support for mobiles(n2n手机版) | 132 | C | 04/09 |
| 86 | [xinyang-go/SJTU-RM-CV-2019](https://github.com/xinyang-go/SJTU-RM-CV-2019) | 上海交通大学 RoboMaster 2019赛季 视觉代码 | 130 | C | 01/02 |
| 87 | [kyzhouhzau/Clinical-NER](https://github.com/kyzhouhzau/Clinical-NER) | 面向中文电子病历的命名实体识别 | 127 | C | 04/08 |
| 88 | [guanshuicheng/invoice](https://github.com/guanshuicheng/invoice) | 增值税发票OCR识别,使用flask微服务架构,识别type:增值税电子普通发票,增值税普通发票,增值税专用发票;识别字段为:发票代码、发票号码、开票日期、校验码、税后金额等 | 124 | C | 01/29 |
| 89 | [LGCooci/objc4_debug](https://github.com/LGCooci/objc4_debug) | 可编译苹果官方源码objc!现在有objc4-750,objc4-756.2,objc4-779.1,以及libmalloc-166.200.60等可编译版本,大家可以自由LLDB调试! | 124 | C | 03/05 |
| 90 | [lcodecorex/KeepAlive](https://github.com/lcodecorex/KeepAlive) | Fighting against force-stop kill process on Android with binder ioctl / Android高级保活 | 118 | C | 03/30 |
| 91 | [xiayuanquan/FFmpegDemo](https://github.com/xiayuanquan/FFmpegDemo) | 视频直播和播放转码器框架 | 118 | C | 01/06 |
| 92 | [nns779/px4_drv](https://github.com/nns779/px4_drv) | PLEX PX-W3U4/Q3U4/W3PE4/Q3PE4 用の非公式版Linuxドライバ | 115 | C | 04/06 |
| 93 | [hanson-young/nniefacelib](https://github.com/hanson-young/nniefacelib) | nniefacelib是一个在海思35xx系列芯片上运行的人脸算法库 | 113 | C | 04/10 |
| 94 | [YJLAugus/Inios](https://github.com/YJLAugus/Inios) | 从零开发一32位操作系统 | 108 | C | 01/02 |
| 95 | [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。 | 104 | C | 04/10 |
| 96 | [jiejieTop/ButtonDrive](https://github.com/jiejieTop/ButtonDrive) | 纯C语言实现的一个按键驱动,可移植性强,支持单双击、连按、连按释放、长按;采用回调处理按键事件(自定义消抖时间),使用只需3步,1:创建按键,2:按键事件与回调处理函数链接映射。然后周期检查按键。 | 102 | C | 03/21 |
| 97 | [Chocolatl/qqlight-websocket](https://github.com/Chocolatl/qqlight-websocket) | QQLight机器人WebSocket-RPC插件,让你能够使用任何语言编写QQ机器人程序 | 100 | C | 03/05 |
| 98 | [timwhitez/Cobalt-Strike-Aggressor-Scripts](https://github.com/timwhitez/Cobalt-Strike-Aggressor-Scripts) | Cobalt Strike Aggressor 插件包 | 99 | C | 03/17 |
| 99 | [fujie-xiyou/chat_room](https://github.com/fujie-xiyou/chat_room) | 聊天室 -- 17年暑假项目(Linux C网络编程) | 93 | C | 01/09 |
| 100 | [rokid/docs](https://github.com/rokid/docs) | Rokid 语音开放平台,包含技能开发、语音设备接入及智能家居接入的文档、SDK 及示例代码 | 90 | C | 04/12 |
| 101 | [zhuotong/Android_InlineHook](https://github.com/zhuotong/Android_InlineHook) | Android内联hook框架 | 89 | C | 01/08 |
| 102 | [wonderkun/CTFENV](https://github.com/wonderkun/CTFENV) | 为应对CTF比赛而搭建的各种环境 | 86 | C | 01/31 |
| 103 | [tidyjiang8/esp-idf-zh](https://github.com/tidyjiang8/esp-idf-zh) | ESP-IDF 中文文档 | 80 | C | 03/08 |
| 104 | [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++日志模块,其提供了高性能,异步,线程安全,进程安全的日志功能。 | 77 | C | 03/31 |
| 105 | [dodola/fbhookfork](https://github.com/dodola/fbhookfork) | 从 fb 的 profilo 项目里提取出来的hook 库,自己用 | 76 | C | 01/11 |
| 106 | [trumanzhao/luna](https://github.com/trumanzhao/luna) | 基于C++17的lua/C++绑定库,以及lua的二进制序列化等辅助代码 | 76 | C | 03/03 |
| 107 | [yundiantech/VideoPlayer](https://github.com/yundiantech/VideoPlayer) | Qt+ffmpeg实现的视频播放器 | 74 | C | 04/11 |
| 108 | [zl03jsj/mupdf](https://github.com/zl03jsj/mupdf) | 扩展mupdf 实现图像数字证书签名, 手写笔迹数字证书签名, 插入图片, 手写签名注释..改进手写批注,实现模拟真实手写的算法, annot自定义数据, annot插入,删除密码校验等功能...支持ios, windows, mac, linux, c++, java, android | 73 | C | 03/28 |
| 109 | [isrc-cas/pacific](https://github.com/isrc-cas/pacific) | 方舟编译器的Runtime参考实现。这不是华为官方项目,是PLCT实验室的培训项目。 | 69 | C | 01/09 |
| 110 | [dengfaheng/WeChatCode](https://github.com/dengfaheng/WeChatCode) | 微信公众号【程序猿声】的相关代码汇总 | 68 | C | 01/28 |
| 111 | [foxclever/Modbus](https://github.com/foxclever/Modbus) | 一个Modbus通讯协议栈 | 67 | C | 03/29 |
| 112 | [nishuoshenme/FGOFPSUnlocker](https://github.com/nishuoshenme/FGOFPSUnlocker) | 为fgo、bgo和bgo(tw)提供在手机上解锁60FPS的模块 | 66 | C | 04/07 |
| 113 | [Embedfire/embed_linux_tutorial](https://github.com/Embedfire/embed_linux_tutorial) | 野火《i.MX Linux开发实战指南》书籍及代码 | 65 | C | 04/11 |
| 114 | [draveness/linux-archive](https://github.com/draveness/linux-archive) | Linux archive for studying the process scheduler. 调度系统设计精要 http://draveness.me/system-design-scheduler | 63 | C | 02/02 |
| 115 | [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两种模式! | 61 | C | 04/12 |
| 116 | [yangfei963158659/nnie](https://github.com/yangfei963158659/nnie) | 重构海思sample中的NNIE模块 | 61 | C | 04/01 |
| 117 | [hungtcs-lab/8051-examples](https://github.com/hungtcs-lab/8051-examples) | 基于SDCC编译器的8051单片机示例 | 60 | C | 03/09 |
| 118 | [qq4108863/himqtt](https://github.com/qq4108863/himqtt) | himqtt是首款完整源码的高性能MQTT物联网防火墙 - MQTT Application FireWall,采用epoll模式支持高并发连接。 | 59 | C | 04/05 |
| 119 | [leleliu008/C](https://github.com/leleliu008/C) | C语言学习项目 | 59 | C | 04/11 |
| 120 | [firestaradmin/WorldEdit-No.1](https://github.com/firestaradmin/WorldEdit-No.1) | 基于STM32,极度硬核DIY蓝牙机械键盘 | 59 | C | 03/30 |
| 121 | [labplus-cn/mpython](https://github.com/labplus-cn/mpython) | mpython掌控板文档和固件源码 | 58 | C | 04/10 |
| 122 | [qq4108863/hihttps](https://github.com/qq4108863/hihttps) | hihttps是一款完整源码的高性能SSL WEB应用防火墙( SSL WAF),采用epoll模式支持高并发,并且兼容ModSecurity正则规则。 | 57 | C | 04/05 |
| 123 | [tongban/Learning-DIY-RTOS](https://github.com/tongban/Learning-DIY-RTOS) | 自己动手从0到1写嵌入式操作系统 课程的相关资料下载 | 57 | C | 03/08 |
| 124 | [alibaba/id2_client_sdk](https://github.com/alibaba/id2_client_sdk) | ID²(Internet Device ID),是物联网设备的可信身份标识,具备不可篡改、不可伪造、全球唯一的安全属性,是实现万物互联、服务流转的关键基础设施。ID²支持多安全等级载体,合理地平衡物联网在安全、成本、功耗等各方面的诉求,为客户提供用得起、容易用、有保障的安全方案,适应物联网碎片化的市场需求。 ID² Client SDK是用于设备端开发的软件工具包,帮助开发者快速集成接入ID²开放平台. | 56 | C | 03/19 |
| 125 | [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 数据库 | 56 | C | 04/12 |
| 126 | [blindpirate/no2-linggong-road](https://github.com/blindpirate/no2-linggong-road) | 战棋类RPG游戏:凌工路2号 | 55 | C | 01/20 |
| 127 | [jntass/TASSL-1.1.1b](https://github.com/jntass/TASSL-1.1.1b) | 支持SM2 SM3 SM4国密算法和国密openssl协议的TASSL 基于openssl-1.1.1b版本 | 54 | C | 03/28 |
| 128 | [zhayujie/C-Primer-Plus](https://github.com/zhayujie/C-Primer-Plus) | C Primer Plus第六版中文版习题答案 | 54 | C | 04/11 |
| 129 | [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/ | 53 | C | 03/04 |
| 130 | [jmp19940829/WeChat](https://github.com/jmp19940829/WeChat) | 声明1:本源码是本人利用业余时间所写,《免费》 仅供逆向编程爱好者学习使用!本源码禁止用于商业非法用途! 声明2:本源码无任何恶意代码!但可能存在些许BUG 因此所造成的损失等概与本人无关 声明3:使用编译本源码即默认同意上述声明+ | 53 | C | 01/02 |
| 131 | [ZJ-TEK/ZJ-SDK-RT-Thread-NORDIC](https://github.com/ZJ-TEK/ZJ-SDK-RT-Thread-NORDIC) | 基于RT-Thread操作系统在子敬电子ZJ-TEK系列开发板的软件开发包 | 53 | C | 03/08 |
| 132 | [w1nds/dll2shellcode](https://github.com/w1nds/dll2shellcode) | dll转shellcode工具 | 51 | C | 02/20 |
| 133 | [kernelbin/BOIT](https://github.com/kernelbin/BOIT) | BOT for OIers. /*BOIT = BOT + OI; yh蒟蒻写的给OIers用的一个bot,OI Bot的第二版。*/ | 50 | C | 04/10 |
| 134 | [4kingRAS/CSstudy](https://github.com/4kingRAS/CSstudy) | 自己收集的一些计算机/数学/Linux/分布式的资料,收藏夹不够用了! | 48 | C | 02/02 |
| 135 | [jiejieTop/mqttclient](https://github.com/jiejieTop/mqttclient) | 一个基于socket API之上的跨平台MQTT客户端,拥有非常简洁的API接口,以极少的资源实现QOS2的服务质量,并且无缝衔接了mbedtls加密库。 | 46 | C | 04/05 |
| 136 | [jiejieTop/DoraOS](https://github.com/jiejieTop/DoraOS) | DoraOS 是我个人所写的RTOS内核,结合FreeRTOS、uCOS, RT-Thread, LiteOS 的特性所写,取其精华,去其糟粕,本项目将持续维护,欢迎大家fork与star。 | 45 | C | 03/22 |
| 137 | [balanceTWK/LidarCar](https://github.com/balanceTWK/LidarCar) | 激光雷达小车,基于国产 RT-Thread 实时操作系统. | 45 | C | 03/07 |
| 138 | [jixiuf/vmacs](https://github.com/jixiuf/vmacs) | 基于evil-mode 提供一个适合vim emacs双修者,下载即可用的emacs配置集 | 45 | C | 04/11 |
| 139 | [Zero-Free/nrf52832-nimble](https://github.com/Zero-Free/nrf52832-nimble) | NimBLE Stack 基于 RT-Thread 在 nRF52832 上的开发 | 44 | C | 03/08 |
| 140 | [houjixin/mosquitto-1.4.11-opt](https://github.com/houjixin/mosquitto-1.4.11-opt) | 这里是我对mosquitto的优化版本,并增加了查询在线状态等功能。 | 43 | C | 04/02 |
| 141 | [CasterWx/AntzGameOS](https://github.com/CasterWx/AntzGameOS) | 基于AntzOS的一个游戏操作系统,重现我记忆中的一款RPG冒险游戏,以后玩游戏先关机,再进入AGOS. | 42 | C | 03/12 |
| 142 | [openLuat/LuatOS](https://github.com/openLuat/LuatOS) | LuatOS -- Lua base RTOS, build for many embedded systems. LuatOS是运行在嵌入式硬件的实时操作系统 | 41 | C | 04/03 |
| 143 | [BBuf/Darknet](https://github.com/BBuf/Darknet) | AlexeyAB-DarkNet源码解析 | 41 | C | 03/29 |
| 144 | [zlgopen/awtk-stm32f103ze-raw](https://github.com/zlgopen/awtk-stm32f103ze-raw) | awtk在stm32f103ze平台上的移植。 | 41 | C | 04/07 |
| 145 | [knight-rider/ptx](https://github.com/knight-rider/ptx) | Earthsoft PT3 & Plex PX-Q3PE 玉手箱 | 40 | C | 03/11 |
| 146 | [Manistein/dummylua-tutorial](https://github.com/Manistein/dummylua-tutorial) | 这是一个仿制lua解释器的项目,我希望通过逐步实现lua解释器的各个部分,更加深刻地掌握lua的基本结构和运作原理。 | 40 | C | 03/27 |
| 147 | [PearInc/FogConnect](https://github.com/PearInc/FogConnect) | 提供企业级网络设备之间数据的快速,安全,可靠的P2P传输协议 | 40 | C | 03/04 |
| 148 | [zlgopen/awtk-examples](https://github.com/zlgopen/awtk-examples) | AWTK 演示例子 | 38 | C | 03/03 |
| 149 | [antiwar3/py](https://github.com/antiwar3/py) | 飘云ark(pyark) | 38 | C | 04/03 |
| 150 | [Zo3i/OCS](https://github.com/Zo3i/OCS) | 一键脚本(One-click script) | 37 | C | 04/11 |
| 151 | [Jackarain/socks_server](https://github.com/Jackarain/socks_server) | 一个socks服务器的实现. | 36 | C | 04/10 |
| 152 | [Nightmare-MY/flutter_toolkit](https://github.com/Nightmare-MY/flutter_toolkit) | Flutter编写的Android工具箱 | 36 | C | 04/07 |
| 153 | [aliyun/linkedge-thing-access-sdk-c](https://github.com/aliyun/linkedge-thing-access-sdk-c) | Link IoT Edge提供的设备接入驱动开发SDK,帮助用户在Link IoT Edge上快速开发自定义协议设备接入驱动。 | 35 | C | 02/28 |
| 154 | [poemdistance/ScreenTranslation](https://github.com/poemdistance/ScreenTranslation) | Linux屏幕取词翻译(适用于如Gnome等基于X server的桌面发行版) -- 含界面 | 35 | C | 04/09 |
| 155 | [shangzongyu/source-code](https://github.com/shangzongyu/source-code) | 收集一些书的源码,方便自己查找 | 34 | C | 03/20 |
| 156 | [oiuv/mud](https://github.com/oiuv/mud) | 炎黄MUD,请使用 fluffos v2019 驱动 | 34 | C | 04/01 |
| 157 | [Scavenges/CheckEmulatorByNative](https://github.com/Scavenges/CheckEmulatorByNative) | Check if device is an emulator by native code. (security/cracking)检查当运行的设备是否是模拟器.#安全/破解 | 34 | C | 01/19 |
| 158 | [1265578519/OpenTracker](https://github.com/1265578519/OpenTracker) | 一个linux中开源和免费的BitTorrent Tracker | 34 | C | 01/17 |
| 159 | [leonsimple/ApiCrypt](https://github.com/leonsimple/ApiCrypt) | Android JNI加密项目,目前集合DES,AES两种加密算法 | 34 | C | 03/19 |
| 160 | [brucewangzhihua/GPSTracker](https://github.com/brucewangzhihua/GPSTracker) | GPS定位器全套源码、原理图、PCB、BOM等,万物在线: | 32 | C | 03/27 |
| 161 | [theanarkh/read-linux-0.11](https://github.com/theanarkh/read-linux-0.11) | linux0.11源码解析 | 31 | C | 03/23 |
| 162 | [i1mT/C-Snake](https://github.com/i1mT/C-Snake) | C++实现的简单贪吃蛇游戏 | 30 | C | 03/10 |
| 163 | [emptyhua/bash-pinyin-completion](https://github.com/emptyhua/bash-pinyin-completion) | 给bash增加拼音补齐功能 | 29 | C | 03/20 |
| 164 | [zjh171/RuntimeSample](https://github.com/zjh171/RuntimeSample) | 小专栏【iOS开发之深入理解runtime】(https://xiaozhuanlan.com/runtime) 的配套Demo | 27 | C | 03/04 |
| 165 | [vllogic/vllink_lite](https://github.com/vllogic/vllink_lite) | 低成本CMSIS-DAP V2调试器,IO时序SPI优化,速度级别200KB/S至450KB/S | 27 | C | 04/06 |
| 166 | [hujianzhe/util](https://github.com/hujianzhe/util) | 纯C的跨平台基础库与网络库,提供list/hashtable/rbtree数据结构,封装各OS API,对使用者屏蔽诸如IO多路复用下的并发可靠UDP/TCP的传输与监听,断线重连,基于协程/回调的RPC调度核心机制等实现细节.内部还包括一个3D碰撞检测. | 27 | C | 04/13 |
| 167 | [renhui/Thinking-in-AV](https://github.com/renhui/Thinking-in-AV) | 音视频开发知识库 | 27 | C | 04/10 |
| 168 | [LuoZhongYao/webrtcaecm](https://github.com/LuoZhongYao/webrtcaecm) | webRTC aec模块 ,单独编译,相关头文件都已经整理 | 26 | C | 03/12 |
| 169 | [seisman/seisman.info.posts](https://github.com/seisman/seisman.info.posts) | SeisMan博客的内容部分,引擎部分见 https://github.com/seisman/blog.seisman.info | 26 | C | 03/24 |
| 170 | [E-Neo/scel2pyim](https://github.com/E-Neo/scel2pyim) | 将搜狗输入法细胞词库转换为 Emacs chinese-pyim 文本词库的小工具 | 26 | C | 03/06 |
| 171 | [theanarkh/read-linux-1.2.13-net-code](https://github.com/theanarkh/read-linux-1.2.13-net-code) | linux网络源码分析 | 26 | C | 03/13 |
| 172 | [shuai132/BalanceCar](https://github.com/shuai132/BalanceCar) | 平衡小车源码 包含完整的Android、STM32和PCB工程以及文档 | 25 | C | 01/07 |
| 173 | [CHN-beta/xmurp-ua](https://github.com/CHN-beta/xmurp-ua) | 在 OpenWrt 上修改 HTTP 流量的 UA | 25 | C | 02/04 |
| 174 | [Nrusher/nr_micro_shell](https://github.com/Nrusher/nr_micro_shell) | shell for MCU. 单片机命令行交互。 | 25 | C | 02/15 |
| 175 | [frapples/fulfs-filesystem](https://github.com/frapples/fulfs-filesystem) | 我的操作系统课程设计,实现一个类似unix的文件系统。 | 24 | C | 03/25 |
| 176 | [zlgopen/awtk-stm32f429igtx-raw](https://github.com/zlgopen/awtk-stm32f429igtx-raw) | awtk在stm32f429igtx平台上的移植。 | 24 | C | 04/07 |
| 177 | [XinLiGH/RingBuffer](https://github.com/XinLiGH/RingBuffer) | 模仿 kfifo 实现的环形缓冲区 | 24 | C | 03/06 |
| 178 | [tsingsee/EasyPlayer-RTMP-Win](https://github.com/tsingsee/EasyPlayer-RTMP-Win) | An elegant, simple, fast windows RTMP Player.EasyPlayer-RTMP support RTMP,video support H.264/H.265,audio support AAC!EasyPlayer RTMP是一款精炼、高效、稳定、灵活的RTMP流媒体播放器,视频支持H.264,可以扩展H.265,音频支持AAC,可以扩展更多音频格式,底层全部自主研发,非常灵活使用! | 24 | C | 02/25 |
| 179 | [novelinux/android](https://github.com/novelinux/android) | Android笔记 | 23 | C | 03/20 |
| 180 | [Ai-Thinker-Open/Telink_SIG_Mesh](https://github.com/Ai-Thinker-Open/Telink_SIG_Mesh) | Telink 蓝牙芯片SIG Mesh SDK,可对接天猫精灵,小爱同学等 | 23 | C | 04/10 |
| 181 | [yifengyou/learn-kvm](https://github.com/yifengyou/learn-kvm) | Qemu KVM(Kernel Virtual Machine)学习笔记 | 23 | C | 02/07 |
| 182 | [imuncle/RobotDog](https://github.com/imuncle/RobotDog) | 小型四足机器人源码 | 23 | C | 03/18 |
| 183 | [haidragon/study_firewall](https://github.com/haidragon/study_firewall) | 主动防御-网络过滤器(firewall) | 22 | C | 04/03 |
| 184 | [mattn/mruby-onig-regexp](https://github.com/mattn/mruby-onig-regexp) | mrbgem of 鬼雲's Regular Expression | 22 | C | 03/04 |
| 185 | [wonderspig/Unix-Net](https://github.com/wonderspig/Unix-Net) | Unix网络编程源代码添加注释 | 22 | C | 03/12 |
| 186 | [geph-official/geph-android](https://github.com/geph-official/geph-android) | Geph Android 迷霧通Android界面 | 22 | C | 04/03 |
| 187 | [jiejieTop/cmd-parser](https://github.com/jiejieTop/cmd-parser) | 一个非常简单好用的命令解析器,占用资源极少极少,采用哈希算法超快匹配命令! | 22 | C | 04/02 |
| 188 | [guoweilkd/lkdGui](https://github.com/guoweilkd/lkdGui) | 一款简单实用的单色Gui | 22 | C | 03/29 |
| 189 | [imengyu/JiYuTrainer](https://github.com/imengyu/JiYuTrainer) | 极域电子教室防控制软件, StudenMain.exe 破解 | 22 | C | 04/06 |
| 190 | [Mushroom0709/video_player](https://github.com/Mushroom0709/video_player) | 基于FFmpeg+SDL2 实现的视频文件播放 | 22 | C | 03/28 |
| 191 | [sundm75/Loongson-Smartloong-V2.0](https://github.com/sundm75/Loongson-Smartloong-V2.0) | 龙芯1C 智龙开发板V2 Linux 内核源码、开发例程 | 22 | C | 02/01 |
| 192 | [jingweizhanghuai/Morn](https://github.com/jingweizhanghuai/Morn) | Morn是一个C语言的基础工具和基础算法库,包括数据结构、图像处理、音频处理、机器学习等,具有简单、通用、高效的特点。 | 21 | C | 03/22 |
| 193 | [RyanBernX/par2018](https://github.com/RyanBernX/par2018) | 2018 并行计算课程 repo | 21 | C | 03/07 |
| 194 | [district10/neo_keyboard_layout](https://github.com/district10/neo_keyboard_layout) | 我的键盘布局。Neo keyboard layout variants, for Qwerty, Dvorak, Programmer Dvorak users. English ! Not German, and without greek letters. | 21 | C | 03/15 |
| 195 | [neoliang/cocos2d-qrsprite](https://github.com/neoliang/cocos2d-qrsprite) | 在cocos2d-x中绘制二维码 | 20 | C | 02/29 |
| 196 | [scutliyizhen/NvWaPatch](https://github.com/scutliyizhen/NvWaPatch) | 基于JS的热更新. | 20 | C | 04/05 |
| 197 | [yippeesoft/NotifyTools](https://github.com/yippeesoft/NotifyTools) | 3guoheros:三国游戏复刻;AI-FACES:人脸检测 lfw;C10K:netty/nodejs websocket/socketio长连接;SeetaFaceEngine:源码集成编译;android:联系人备份、天气、进程清理、万年历、行政区划、录音截屏;KOTLIN:BING壁纸;C++C#:COM组件事件回调;JAVA:sqlite数据库转greendao bean;china-pome:唐宋诗词;1bpp-monochrome-bitmap:android bitmap转存单色位图; face-detection:opencv人脸检测;iptools:nodejs/types ... | 20 | C | 04/03 |
| 198 | [chai2010/tinylang](https://github.com/chai2010/tinylang) | Tiny玩具语言(包含Tiny编译器/CASL汇编器/COMET虚拟机/调试器) | 20 | C | 03/30 |
| 199 | [tt67wq/euler_project](https://github.com/tt67wq/euler_project) | 欧拉计划&经典数据结构与算法 \| euler project and some classical algorithm | 20 | C | 04/10 |
| 200 | [mengning/net](https://github.com/mengning/net) | 互联网体系结构/庖丁解牛Linux网络协议栈 | 20 | C | 01/08 |
⬆ [回到目录](#目录)
<br/>
## C++
| # | Repository | Description | Stars | Language | Updated |
| ---- | ------------------------------------------------------------ | ------------------------------------------------------------ | ----- | -------- | ------- |
| 1 | [vnpy/vnpy](https://github.com/vnpy/vnpy) | 基于Python的开源量化交易平台开发框架 | 11.4k | C++ | 04/11 |
| 2 | [huihut/interview](https://github.com/huihut/interview) | 📚 C/C++ 技术面试基础知识总结,包括语言、程序库、数据结构、算法、系统、网络、链接装载库等知识及面试经验、招聘、内推等信息。 | 10.5k | C++ | 03/19 |
| 3 | [zhongyang219/TrafficMonitor](https://github.com/zhongyang219/TrafficMonitor) | 这是一个用于显示当前网速、CPU及内存利用率的桌面悬浮窗软件,并支持任务栏显示,支持更换皮肤。 | 7.2k | C++ | 04/04 |
| 4 | [me115/design_patterns](https://github.com/me115/design_patterns) | 图说设计模式 | 4.3k | C++ | 01/21 |
| 5 | [Ewenwan/MVision](https://github.com/Ewenwan/MVision) | 机器人视觉 移动机器人 VS-SLAM ORB-SLAM2 深度学习目标检测 yolov3 行为检测 opencv PCL 机器学习 无人驾驶 | 4.3k | C++ | 04/10 |
| 6 | [ouyanghuiyu/chineseocr_lite](https://github.com/ouyanghuiyu/chineseocr_lite) | 超轻量级中文ocr,支持竖排文字识别, 支持ncnn推理 , psenet(8.5M) + crnn(6.3M) + anglenet(1.5M) 总模型仅17M | 4.0k | C++ | 04/12 |
| 7 | [weolar/miniblink49](https://github.com/weolar/miniblink49) | a lighter, faster browser kernel of blink to integrate HTML UI in your app. 一个小巧、轻量的浏览器内核,用来取代wke和libcef | 3.7k | C++ | 04/02 |
| 8 | [anyRTC/anyRTC-RTMP-OpenSource](https://github.com/anyRTC/anyRTC-RTMP-OpenSource) | RTMP 推流器,RTMP(HLS)秒开播放器,跨平台(Win,IOS,Android)开源代码 | 3.4k | C++ | 02/10 |
| 9 | [wuye9036/CppTemplateTutorial](https://github.com/wuye9036/CppTemplateTutorial) | 中文的C++ Template的教学指南。与知名书籍C++ Templates不同,该系列教程将C++ Templates作为一门图灵完备的语言来讲授,以求帮助读者对Meta-Programming融会贯通。(正在施工中) | 3.4k | C++ | 04/10 |
| 10 | [zeusees/HyperLPR](https://github.com/zeusees/HyperLPR) | 基于深度学习高性能中文车牌识别 High Performance Chinese License Plate Recognition Framework. | 3.2k | C++ | 04/08 |
| 11 | [anhkgg/SuperWeChatPC](https://github.com/anhkgg/SuperWeChatPC) | 超级微信电脑客户端,支持多开、防消息撤销、语音消息备份...开放WeChatSDK | 3.0k | C++ | 02/27 |
| 12 | [TonyChen56/WeChatRobot](https://github.com/TonyChen56/WeChatRobot) | PC版微信机器人 | 2.9k | C++ | 02/18 |
| 13 | [yedf/handy](https://github.com/yedf/handy) | 简洁易用的C++11网络库 / 支持单机千万并发连接 / a simple C++11 network server framework | 2.8k | C++ | 01/07 |
| 14 | [wang-bin/QtAV](https://github.com/wang-bin/QtAV) | A cross-platform multimedia framework based on Qt and FFmpeg(https://github.com/wang-bin/avbuild). High performance. User & developer friendly. Supports Android, iOS, Windows store and desktops. 基于Qt和FFmpeg的跨平台高性能音视频播放框架 | 2.3k | C++ | 04/06 |
| 15 | [WrBug/dumpDex](https://github.com/WrBug/dumpDex) | 💯一款Android脱壳工具,需要xposed支持, 易开发已集成该项目: | 2.0k | C++ | 03/26 |
| 16 | [MegEngine/MegEngine](https://github.com/MegEngine/MegEngine) | MegEngine 是一个快速、可拓展、易于使用且支持自动求导的深度学习框架 | 2.0k | C++ | 04/04 |
| 17 | [liuchuo/PAT](https://github.com/liuchuo/PAT) | 🍭 浙江大学PAT题解(C/C++/Java/Python) - 努力成为萌萌的程序媛~ | 1.9k | C++ | 04/07 |
| 18 | [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 |
| 19 | [Qv2ray/Qv2ray](https://github.com/Qv2ray/Qv2ray) | :star2: V2ray Linux / Windows / macOS 跨平台 GUI :hammer: 使用 C++17 / Qt5 ,支持订阅,扫描二维码,支持自定义路由编辑 :star2: | 1.8k | C++ | 04/12 |
| 20 | [yanyiwu/cppjieba](https://github.com/yanyiwu/cppjieba) | "结巴"中文分词的C++版本 | 1.7k | C++ | 03/19 |
| 21 | [balloonwj/flamingo](https://github.com/balloonwj/flamingo) | flamingo 一款高性能轻量级开源即时通讯软件 | 1.6k | C++ | 04/10 |
| 22 | [cool2528/baiduCDP](https://github.com/cool2528/baiduCDP) | 百度网盘下载神器 | 1.6k | C++ | 01/02 |
| 23 | [liuyubobobo/Play-Leetcode](https://github.com/liuyubobobo/Play-Leetcode) | My Solutions to Leetcode problems. All solutions support C++ language, some support Java and Python. Multiple solutions will be given by most problems. Enjoy:) 我的Leetcode解答。所有的问题都支持C++语言,一部分问题支持Java语言。近乎所有问题都会提供多个算法解决。大家加油!:) | 1.4k | C++ | 04/12 |
| 24 | [richardchien/coolq-http-api](https://github.com/richardchien/coolq-http-api) | 为 酷Q 提供通过 HTTP 或 WebSocket 接收事件和调用 API 的能力 | 1.3k | C++ | 03/31 |
| 25 | [Tencent/plato](https://github.com/Tencent/plato) | 腾讯高性能分布式图计算框架Plato | 1.2k | C++ | 04/03 |
| 26 | [QuantBox/XAPI2](https://github.com/QuantBox/XAPI2) | 统一行情交易接口第2版 | 883 | C++ | 01/12 |
| 27 | [qdtroy/DuiLib_Ultimate](https://github.com/qdtroy/DuiLib_Ultimate) | duilib 旗舰版-高分屏、多语言、样式表、资源管理器、异形窗口、窗口阴影、简单动画 | 860 | C++ | 03/17 |
| 28 | [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 | 847 | C++ | 03/12 |
| 29 | [Light-City/CPlusPlusThings](https://github.com/Light-City/CPlusPlusThings) | C++那些事 | 832 | C++ | 04/10 |
| 30 | [yanyiwu/simhash](https://github.com/yanyiwu/simhash) | 中文文档simhash值计算 | 761 | C++ | 03/11 |
| 31 | [fasiondog/hikyuu](https://github.com/fasiondog/hikyuu) | Hikyuu Quant Framework 基于C++/Python的开源量化交易研究框架 | 719 | C++ | 04/12 |
| 32 | [188080501/JQTools](https://github.com/188080501/JQTools) | 基于Qt开发的小工具包 | 709 | C++ | 04/11 |
| 33 | [didi/AoE](https://github.com/didi/AoE) | AoE (AI on Edge,终端智能,边缘计算) 是一个终端侧AI集成运行时环境 (IRE),帮助开发者提升效率。 | 668 | C++ | 04/03 |
| 34 | [applenob/Cpp_Primer_Practice](https://github.com/applenob/Cpp_Primer_Practice) | 搞定C++:punch:。C++ Primer 中文版第5版学习仓库,包括笔记和课后练习答案。 | 663 | C++ | 04/05 |
| 35 | [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音乐、虾米音乐、酷我音乐、酷狗音乐、百度音乐等等) | 655 | C++ | 04/12 |
| 36 | [Making-It/Code](https://github.com/Making-It/Code) | 面试高频算法题总结,个人博客 | 596 | C++ | 02/04 |
| 37 | [xiongziliang/ZLToolKit](https://github.com/xiongziliang/ZLToolKit) | 一个基于C++11的轻量级网络框架,基于线程池技术可以实现大并发网络IO | 580 | C++ | 04/10 |
| 38 | [feiyangqingyun/QWidgetDemo](https://github.com/feiyangqingyun/QWidgetDemo) | Qt编写的一些开源的demo,预计会有100多个,一直持续更新完善,代码简洁易懂注释详细,每个都是独立项目,非常适合初学者,代码随意传播使用,拒绝打赏和捐赠,欢迎留言评论! | 571 | C++ | 03/16 |
| 39 | [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 |
| 40 | [shuax/GreenChrome](https://github.com/shuax/GreenChrome) | 增强Chrome的工具 | 556 | C++ | 03/22 |
| 41 | [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 | 536 | C++ | 04/03 |
| 42 | [tencentyun/TRTCSDK](https://github.com/tencentyun/TRTCSDK) | 腾讯云TRTC音视频服务,国内下载镜像: | 530 | C++ | 04/10 |
| 43 | [Ewenwan/ORB_SLAM2_SSD_Semantic](https://github.com/Ewenwan/ORB_SLAM2_SSD_Semantic) | 动态语义SLAM 目标检测+VSLAM+光流/多视角几何动态物体检测+octomap地图+目标数据库 | 524 | C++ | 03/22 |
| 44 | [alibaba/pipcook](https://github.com/alibaba/pipcook) | 基于 tfjs-node 的前端算法工程框架 front-end algorithm engineer platform based on tfjs-node | 455 | C++ | 04/11 |
| 45 | [callmePicacho/Data-Structres](https://github.com/callmePicacho/Data-Structres) | 浙江大学《数据结构》上课笔记 + 数据结构实现 + 课后题题解 | 443 | C++ | 04/02 |
| 46 | [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) | 439 | C++ | 04/10 |
| 47 | [hedada-hc/pc_wechat_hook](https://github.com/hedada-hc/pc_wechat_hook) | pc微信hook 课程例子源码 最新版pc微信hook全套课程尽在网易云课堂 搜索微信逆向即可 pcwx pcweichat 微信hook C语言开发 | 432 | C++ | 01/21 |
| 48 | [MKXJun/DirectX11-With-Windows-SDK](https://github.com/MKXJun/DirectX11-With-Windows-SDK) | 现代DX11系列教程:使用Windows SDK(C++)开发Direct3D 11.x | 403 | C++ | 02/14 |
| 49 | [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的函数接口了 | 369 | C++ | 04/04 |
| 50 | [yuanyuanxiang/SimpleRemoter](https://github.com/yuanyuanxiang/SimpleRemoter) | 基于gh0st的远程控制器:实现了终端管理、进程管理、窗口管理、远程桌面、文件管理、语音管理、视频管理、服务管理、注册表管理等功能,优化全部代码及整理排版,修复内存泄漏缺陷,程序运行稳定。此项目初版见:https://github.com/zibility/Remote | 362 | C++ | 03/17 |
| 51 | [ylmbtm/GameProject3](https://github.com/ylmbtm/GameProject3) | 游戏服务器框架,网络层分别用SocketAPI、Boost Asio、Libuv三种方式实现, 框架内使用共享内存,无锁队列,对象池,内存池来提高服务器性能。还包含一个不断完善的Unity 3D游戏,游戏包含大量完整资源,坐骑,宠物,伙伴,装备, 这些均己实现上阵和穿戴, 并可进入副本战斗,多人玩法也己实现, 持续开发中。 | 360 | C++ | 04/11 |
| 52 | [silence1772/GreedySnake](https://github.com/silence1772/GreedySnake) | c++经典项目贪吃蛇游戏控制台版,详细注释 | 332 | C++ | 01/06 |
| 53 | [gloomyfish1998/opencv_tutorial](https://github.com/gloomyfish1998/opencv_tutorial) | 基于OpenCV4.0 C++/Python SDK的案例代码演示程序与效果图像 | 327 | C++ | 02/03 |
| 54 | [zhongyang219/MusicPlayer2](https://github.com/zhongyang219/MusicPlayer2) | 这是一款可以播放常见音频格式的音频播放器。支持歌词显示、歌词卡拉OK样式显示、歌词在线下载、歌词编辑、歌曲标签识别、Win10小娜搜索显示歌词、频谱分析、音效设置、任务栏缩略图按钮、主题颜色等功能。 播放内核为BASS音频库(V2.4)。 | 324 | C++ | 04/12 |
| 55 | [KangLin/RabbitIm](https://github.com/KangLin/RabbitIm) | 玉兔即时通讯。开源的跨平台的的即时通信系统。包括文本、音视频、白板、远程控制 | 310 | C++ | 03/06 |
| 56 | [codeByDog/pcWechat](https://github.com/codeByDog/pcWechat) | windows PC微信逆向 | 301 | C++ | 03/04 |
| 57 | [Captain1986/CaptainBlackboard](https://github.com/Captain1986/CaptainBlackboard) | 船长关于机器学习、计算机视觉和工程技术的总结和分享 | 296 | C++ | 04/12 |
| 58 | [chrisguo/beijing_fushengji](https://github.com/chrisguo/beijing_fushengji) | 北京浮生记PC版源代码 | 284 | C++ | 01/11 |
| 59 | [openvanilla/McBopomofo](https://github.com/openvanilla/McBopomofo) | 小麥注音輸入法 | 275 | C++ | 04/01 |
| 60 | [xiangweizeng/mobile-lpr](https://github.com/xiangweizeng/mobile-lpr) | Mobile-LPR 是一个面向移动端的准商业级车牌识别库,以NCNN作为推理后端,使用DNN作为算法核心,支持多种车牌检测算法,支持车牌识别和车牌颜色识别。 | 261 | C++ | 03/23 |
| 61 | [zeusees/HyperVID](https://github.com/zeusees/HyperVID) | 开源移动端车型识别 Mobile Plateform Vehicle Identification Model | 253 | C++ | 03/03 |
| 62 | [zc8424/LazzyQuant](https://github.com/zc8424/LazzyQuant) | 期货/期权量化交易系统 | 246 | C++ | 04/11 |
| 63 | [richenyunqi/CCF-CSP-and-PAT-solution](https://github.com/richenyunqi/CCF-CSP-and-PAT-solution) | CCF CSP和PAT考试题解(使用C++11语法) | 241 | C++ | 03/29 |
| 64 | [balloonwj/TeamTalk](https://github.com/balloonwj/TeamTalk) | 这是我维护的蘑菇街TeamTalk源码版本。 | 239 | C++ | 01/10 |
| 65 | [FengGuanxi/HDU-Experience](https://github.com/FengGuanxi/HDU-Experience) | 用于向所有杭电学子分享在杭电的知识与经验 | 237 | C++ | 01/09 |
| 66 | [chatopera/clause](https://github.com/chatopera/clause) | :horse_racing: Chatopera语义理解系统 | 236 | C++ | 03/27 |
| 67 | [Samuel-0-0/phicomm_dc1-esphome](https://github.com/Samuel-0-0/phicomm_dc1-esphome) | 斐讯DC1插座自制固件方式接入开源智能家居平台 | 226 | C++ | 02/25 |
| 68 | [Beipy/Mac-Hackintosh-Clover](https://github.com/Beipy/Mac-Hackintosh-Clover) | PC主机黑苹果引导驱动文件 | 226 | C++ | 03/28 |
| 69 | [188080501/JQHttpServer](https://github.com/188080501/JQHttpServer) | 基于Qt开发的轻量级HTTP/HTTPS服务器 | 224 | C++ | 04/11 |
| 70 | [Greedysky/TTKWidgetTools](https://github.com/Greedysky/TTKWidgetTools) | QWidget 自定义控件集合 持续更新中...... | 224 | C++ | 02/26 |
| 71 | [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. | 222 | C++ | 04/12 |
| 72 | [wlgq2/uv-cpp](https://github.com/wlgq2/uv-cpp) | libuv wrapper in C++11 /libuv C++11网络库 | 220 | C++ | 04/06 |
| 73 | [wangzuohuai/WebRunLocal](https://github.com/wangzuohuai/WebRunLocal) | 牛插(PluginOK)中间件(原名:本网通)是一个实现网页(Web Page)与本地程序(Local Exe)之间进行双向调用的低成本、强兼容、安全可控、轻量级、易集成、可扩展的浏览器小程序框架。通过中间件可实现JavaScript脚本无障碍访问本地电脑的硬件、调用本地系统API及相关组件,可彻底解决ActiveX组件在Chrome、360、FireFox、Opera、Edge等浏览器各版本中的兼容嵌入使用问题 | 215 | C++ | 03/31 |
| 74 | [SpriteOvO/Telegram-Anti-Revoke](https://github.com/SpriteOvO/Telegram-Anti-Revoke) | Telegram anti-revoke plugin. \| Telegram 防撤回插件。 | 211 | C++ | 04/10 |
| 75 | [Meituan-Dianping/octo-ns](https://github.com/Meituan-Dianping/octo-ns) | OCTO-NS是美团OCTO服务治理体系服务注册发现功能的套件, 包括SDK(Java/C++)、本地服务治理代理(SgAgent), 服务缓存(NSC), 云端健康检查(Scanner)等基础组件,目前已经在全公司大规模使用 | 204 | C++ | 03/05 |
| 76 | [itas109/CSerialPort](https://github.com/itas109/CSerialPort) | 基于C++的轻量级开源跨平台串口类库Lightweight cross-platform serial port library based on C++ | 198 | C++ | 04/12 |
| 77 | [oceancx/YZXY](https://github.com/oceancx/YZXY) | 原罪西游(YZXY)是一款MMORPG类型的2D回合制开源游戏,采用C++/lua开发 | 194 | C++ | 03/27 |
| 78 | [gzc426/leetcode](https://github.com/gzc426/leetcode) | 每天一道leetcode | 193 | C++ | 03/03 |
| 79 | [jaredtao/DesignPattern](https://github.com/jaredtao/DesignPattern) | C++11全套设计模式-23种指针的用法(a full DesignPattern implement with c++11) | 187 | C++ | 01/02 |
| 80 | [zeusees/HyperFT](https://github.com/zeusees/HyperFT) | 开源移动端快速视频人脸跟踪-移动端150FPS+ | 186 | C++ | 03/03 |
| 81 | [php-extension-research/study](https://github.com/php-extension-research/study) | 手把手教你写PHP协程扩展(teach you to write php coroutine extension by hand) | 181 | C++ | 03/05 |
| 82 | [qinguoyi/TinyWebServer](https://github.com/qinguoyi/TinyWebServer) | Linux下C++轻量级Web服务器 && A C++ lightweight WebServer under Linux | 180 | C++ | 04/12 |
| 83 | [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 | 178 | C++ | 04/08 |
| 84 | [lesliefish/Qt](https://github.com/lesliefish/Qt) | Qt相关知识总结。包括Qss,数据库,Excel,Model/View等操作demo。 | 168 | C++ | 04/06 |
| 85 | [2013fangwentao/Multi_Sensor_Fusion](https://github.com/2013fangwentao/Multi_Sensor_Fusion) | Multi-Sensor Fusion (GNSS, IMU, Camera and so on) 多源多传感器融合定位 GPS/INS组合导航 | 166 | C++ | 03/10 |
| 86 | [jiafeng5513/Evision](https://github.com/jiafeng5513/Evision) | 计算机视觉实践和探索/Practice and explorations in computer vision. | 164 | C++ | 03/24 |
| 87 | [dlunion/CC4.0](https://github.com/dlunion/CC4.0) | Caffe for CC4.0-Windows,简单的Caffe C++接口,方便简单 | 155 | C++ | 01/15 |
| 88 | [tsingsee/EasyPlayerPro-Win](https://github.com/tsingsee/EasyPlayerPro-Win) | EasyPlayerPro是一款全功能的流媒体播放器,支持RTSP、RTMP、HTTP、HLS、UDP、RTP、File等多种流媒体协议播放、支持本地文件播放,支持本地抓拍、本地录像、播放旋转、多屏播放、倍数播放等多种功能特性,核心基于ffmpeg,稳定、高效、可靠、可控,支持Windows、Android、iOS三个平台,目前在多家教育、安防、行业型公司,都得到的应用,广受好评! | 154 | C++ | 02/25 |
| 89 | [Protostars/KikoPlay](https://github.com/Protostars/KikoPlay) | KikoPlay - A Full-Featured Danmu Player 全功能弹幕播放器 | 154 | C++ | 02/02 |
| 90 | [zxystd/AppleIntelWifiAdapter](https://github.com/zxystd/AppleIntelWifiAdapter) | 苹果IO80211Controller调用 | 154 | C++ | 02/21 |
| 91 | [esrrhs/fake](https://github.com/esrrhs/fake) | 嵌入式脚本语言 Lightweight embedded scripting language | 150 | C++ | 01/08 |
| 92 | [xyz347/x2struct](https://github.com/xyz347/x2struct) | Convert between json string and c++ object. json字符串和c++结构体之间互相转换 | 150 | C++ | 02/11 |
| 93 | [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 |
| 94 | [tuoxie007/play_with_llvm](https://github.com/tuoxie007/play_with_llvm) | A book about LLVM & Clang(中文开源书:玩转 LLVM) | 147 | C++ | 04/11 |
| 95 | [kevinlq/SmartHome-Qt](https://github.com/kevinlq/SmartHome-Qt) | 基于zigbee和stm32的智能家居系统,上位机使用Qt编写,实现了基本的监控。主要包括监控室内温度、湿度、烟雾浓度,用led灯模拟控制家中的灯。界面良好。 | 146 | C++ | 03/11 |
| 96 | [tiny656/PAT](https://github.com/tiny656/PAT) | 浙江大学PAT题解 | 145 | C++ | 02/09 |
| 97 | [czyt1988/sa](https://github.com/czyt1988/sa) | 信号分析及数据可视化软件 | 144 | C++ | 04/03 |
| 98 | [BesLyric-for-X/BesLyric-for-X](https://github.com/BesLyric-for-X/BesLyric-for-X) | 本项目是 BesLyric 的全平台版本。BesLyric 是一款 操作简单、功能实用的 专门用于制作网易云音乐滚动歌词的 歌词制作软件。基于Qt实现,主打歌词制作功能,以网易云风格界面,力图为云村村名提供一个良好的歌词制作体验! | 143 | C++ | 03/11 |
| 99 | [zeusees/HyperNSFW](https://github.com/zeusees/HyperNSFW) | 基于深度学习图片鉴黄 Caffe implementation of Not Suitable for Work (NSFW) | 138 | C++ | 03/03 |
| 100 | [seahime/ImageQt](https://github.com/seahime/ImageQt) | 数字图像处理——基于Qt 5.8.0 | 133 | C++ | 04/12 |
| 101 | [DreamWaterFound/self_commit_ORB-SLAM2](https://github.com/DreamWaterFound/self_commit_ORB-SLAM2) | ORB-SLAM2 源码注释, 基于泡泡机器人的注释版本 | 130 | C++ | 01/21 |
| 102 | [yangyangFeng/TTPatch](https://github.com/yangyangFeng/TTPatch) | 热修复、热更新、JS代码动态下发、动态创建类 | 130 | C++ | 04/09 |
| 103 | [huqinghua/pyui4win](https://github.com/huqinghua/pyui4win) | 一个用python实现业务逻辑、用xml和html/css/js描述界面的windows程序的快速开发框架 | 130 | C++ | 03/22 |
| 104 | [houpengfei88/Play-with-Data-Structures](https://github.com/houpengfei88/Play-with-Data-Structures) | 波波老师的数据结构课程的C++代码实现,和波波老师的代码库目录一样:) | 129 | C++ | 03/07 |
| 105 | [wlgq2/eomaia](https://github.com/wlgq2/eomaia) | 一个基于reactor模式的Linux/C++网络库,支持one loop per thread机制。 | 126 | C++ | 03/18 |
| 106 | [LeechanX/Easy-Reactor](https://github.com/LeechanX/Easy-Reactor) | Easy-Reactor是一个Linux C++高性能TCP服务框架,基于Reactor模式,支持单线程、多线程Reactor,也支持UDP服务 | 122 | C++ | 03/03 |
| 107 | [chiuchiuuu/programming-and-algorithm](https://github.com/chiuchiuuu/programming-and-algorithm) | 这是北京大学在coursera上开设的「程序设计与算法」专项课程 | 121 | C++ | 03/02 |
| 108 | [atcoder-live/library](https://github.com/atcoder-live/library) | 解説放送で作ったライブラリ集です。コメントに該当放送へのURLを貼ります。 | 120 | C++ | 04/05 |
| 109 | [mobizt/Firebase-ESP8266](https://github.com/mobizt/Firebase-ESP8266) | 武汉加油, 中国加油, 我爱你中国. | 119 | C++ | 04/11 |
| 110 | [Salensoft/thu-cst-cracker](https://github.com/Salensoft/thu-cst-cracker) | 清华大学计算机系课程攻略 | 114 | C++ | 02/28 |
| 111 | [y123456yz/reading-and-annotate-mongodb-3.6.1](https://github.com/y123456yz/reading-and-annotate-mongodb-3.6.1) | 分布式文档数据库mongodb-3.6(mongos、mongod、wiredtiger存储引擎)源码中文注释分析,近期持续更新(码学习交流QQ群:568892619) | 112 | C++ | 04/12 |
| 112 | [mobizt/Firebase-ESP32](https://github.com/mobizt/Firebase-ESP32) | 武汉加油 | 112 | C++ | 04/11 |
| 113 | [shinnytech/open-trade-gateway](https://github.com/shinnytech/open-trade-gateway) | Diff协议中继网关, 支持 CTP / FEMAS / UFX 等交易系统 | 110 | C++ | 03/05 |
| 114 | [Rvn0xsy/BadCode](https://github.com/Rvn0xsy/BadCode) | 恶意代码逃逸源代码 http://payloads.online | 110 | C++ | 01/16 |
| 115 | [BigPig0/RelayLive](https://github.com/BigPig0/RelayLive) | 视频服务中继,转换传输协议。将rtsp、gb28181转为html5可以直接播放的协议。 | 109 | C++ | 03/30 |
| 116 | [hzl123456/LibyuvDemo](https://github.com/hzl123456/LibyuvDemo) | 使用libyuv对yuv数据进行缩放,旋转,镜像,裁剪等操作 | 108 | C++ | 01/16 |
| 117 | [netease-im/NIM_PC_Demo](https://github.com/netease-im/NIM_PC_Demo) | 云信Windows(PC) C/C++ Demo源码仓库 | 105 | C++ | 03/31 |
| 118 | [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. | 103 | C++ | 04/09 |
| 119 | [iotang/Project_LemonLime](https://github.com/iotang/Project_LemonLime) | 为了 OI 比赛而生的基于 Lemon + LemonPlus 的轻量评测系统 \| 三大桌面系统支持 | 99 | C++ | 03/28 |
| 120 | [flexih/Snake](https://github.com/flexih/Snake) | Yet Another Mach-O Unused ObjC Selector/Class/Protocol Detector. 检测ObjC无用方法、无用类、无用协议。 | 98 | C++ | 03/30 |
| 121 | [liuyanghejerry/painttyWidget](https://github.com/liuyanghejerry/painttyWidget) | This is client of Mr.Paint, 茶绘君, located at http://mrspaint.com | 94 | C++ | 04/11 |
| 122 | [404name/winter](https://github.com/404name/winter) | 答辩作品0(2020上半年C程序) | 94 | C++ | 04/12 |
| 123 | [jdcloud-api/jdcloud-sdk-cpp-signer](https://github.com/jdcloud-api/jdcloud-sdk-cpp-signer) | C++ SDK签名库 | 93 | C++ | 01/09 |
| 124 | [raintean/blink](https://github.com/raintean/blink) | 使用html来编写golang图形界面程序(only windows) | 93 | C++ | 01/18 |
| 125 | [WallBreaker2/op](https://github.com/WallBreaker2/op) | op插件(类似大漠插件),Windows消息模拟,gdi,dx,opengl截图,找图,找字(OCR),其他实用算法 | 90 | C++ | 04/06 |