forked from GrowingGit/GitHub-Chinese-Top-Charts
-
Notifications
You must be signed in to change notification settings - Fork 0
/
README-Part2.md
1480 lines (1439 loc) · 267 KB
/
README-Part2.md
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
# 一个README容纳不下,第二个README接上
<br/>
## 目录
- 总榜
- [All Language](https://github.com/kon9chunkit/GitHub-Chinese-Top-Charts#All-Language)
- 分榜
- [Java](https://github.com/kon9chunkit/GitHub-Chinese-Top-Charts#Java)
- [Python](https://github.com/kon9chunkit/GitHub-Chinese-Top-Charts#Python)
- [Go](https://github.com/kon9chunkit/GitHub-Chinese-Top-Charts#Go)
- [PHP](https://github.com/kon9chunkit/GitHub-Chinese-Top-Charts#PHP)
- [JavaScript](https://github.com/kon9chunkit/GitHub-Chinese-Top-Charts#JavaScript)
- [Vue](https://github.com/kon9chunkit/GitHub-Chinese-Top-Charts#Vue)
- [CSS](https://github.com/kon9chunkit/GitHub-Chinese-Top-Charts#CSS)
- [HTML](https://github.com/kon9chunkit/GitHub-Chinese-Top-Charts#HTML)
- [Objective-C](https://github.com/kon9chunkit/GitHub-Chinese-Top-Charts#Objective-C)
- [Swift](#Swift)
- [Jupyter Notebook](#Jupyter-Notebook)
- [Shell](#Shell)
- [C](#C)
- [C++](#C-1)
- [C#](#C-2)
- [Dart](#Dart)
- [TeX](#TeX)
- [Vim script](#Vim-script)
<br/>
## Swift
|#|Repository|Description|Stars|Language|Updated|
|:-|:-|:-|:-|:-|:-|
|1|[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|6.8k|Swift|06/05|
|2|[longitachi/ZLPhotoBrowser](https://github.com/longitachi/ZLPhotoBrowser)|Wechat-like image picker. Support select normal photos, videos, gif and livePhoto. Support edit image and crop video. 微信样式的图片选择器,支持预览/相册内拍照及录视频、拖拽/滑动选择,编辑图片/视频,支持多语言国际化等功能; |3.8k|Swift|07/08|
|3|[SwiftOldDriver/iOS-Weekly](https://github.com/SwiftOldDriver/iOS-Weekly)|🇨🇳 老司机 iOS 周报|3.7k|Swift|07/05|
|4|[Lax/Learn-iOS-Swift-by-Examples](https://github.com/Lax/Learn-iOS-Swift-by-Examples)|精心收集并分类整理的Swift开发学习资源,包括Apple官方提供的示例代码和文档,以及github上的项目和国内外开发者的技术博客。欢迎提交pull-request一起维护。https://t.me/SwiftCN QQ交流群 32958950 申请请注明开发经验|3.4k|Swift|02/03|
|5|[wxxsw/SwiftTheme](https://github.com/wxxsw/SwiftTheme)|🎨 Powerful theme/skin manager for iOS 9+ 主题/换肤, 暗色模式|2.2k|Swift|03/01|
|6|[tid-kijyun/Kanna](https://github.com/tid-kijyun/Kanna)|Kanna(鉋) is an XML/HTML parser for Swift.|2.2k|Swift|06/26|
|7|[Danie1s/Tiercel](https://github.com/Danie1s/Tiercel)|简单易用、功能丰富的纯 Swift 下载框架|2.1k|Swift|06/18|
|8|[WillieWangWei/SwiftUI-Tutorials](https://github.com/WillieWangWei/SwiftUI-Tutorials)|A code example and translation project of SwiftUI. / 一个 SwiftUI 的示例、翻译的教程项目。|1.9k|Swift|02/10|
|9|[pujiaxin33/JXSegmentedView](https://github.com/pujiaxin33/JXSegmentedView)|A powerful and easy to use segmented view (segmentedcontrol, pagingview, pagerview, pagecontrol, categoryview) (腾讯新闻、今日头条、QQ音乐、网易云音乐、京东、爱奇艺、腾讯视频、淘宝、天猫、简书、微博等所有主流APP分类切换滚动视图)|1.7k|Swift|06/30|
|10|[MxABC/swiftScan](https://github.com/MxABC/swiftScan)|A barcode and qr code scanner( 二维码 各种码识别,生成,界面效果)|1.4k|Swift|05/24|
|11|[Apollonyan/Developing-iOS-11-Apps-with-Swift](https://github.com/Apollonyan/Developing-iOS-11-Apps-with-Swift)|Stanford 公开课,Developing iOS 11 Apps with Swift 字幕翻译|1.2k|Swift|05/21|
|12|[Harley-xk/MaLiang](https://github.com/Harley-xk/MaLiang)|iOS painting and drawing library based on Metal. 神笔马良有一支神笔(基于 Metal 的涂鸦绘图库)|1.2k|Swift|12/16|
|13|[netyouli/WHC_ConfuseSoftware](https://github.com/netyouli/WHC_ConfuseSoftware)|iOS代码混淆工具,iOS代码混淆助手,过机器审核,过4.3审核,过other审核,u3d、cocos2dx、flutter、自动代码翻新(WHC_ConfuseSoftware)是一款新一代运行在MAC OS平台的App、完美支持Objc和Swift、U3D、Flutter、Cocos2dx项目代码的自动翻新(混淆)、支持文件夹名称、文件名、修改资源文件hash值、类名、方法名、属性名、添加混淆函数方法体、添加混淆属性、自动调用生成的混淆方法、字符串混淆加密等。。。功能强大而稳定。|1.1k|Swift|03/21|
|14|[JiongXing/PhotoBrowser](https://github.com/JiongXing/PhotoBrowser)| Elegant photo browser in Swift. 图片与视频浏览器。|1.0k|Swift|06/19|
|15|[dengzemiao/DZMeBookRead](https://github.com/dengzemiao/DZMeBookRead)|支持项目使用!最完整小说阅读器Demo!仿iReader(掌阅),QQ阅读 ... 常用阅读器阅读页面,支持 翻页效果(仿真,覆盖,平移,滚动,无效果)、字体切换、书签功能、阅读记录、亮度调整、背景颜色切换 ...|997|Swift|04/14|
|16|[saeipi/KSChart](https://github.com/saeipi/KSChart)|k线图/kline/kchart,已经集成MA/EMA/MACD/KDJ/BOLL/RSI/WR/AVG等指标,新增指标及其方便。适用于股票/区块链交易所等种类App。Swift5编写,CPU/内存占用率极低,60FPS稳定运行。示例集成websocket,并接入币安数据(需VPN)。|933|Swift|05/23|
|17|[gltwy/LTScrollView](https://github.com/gltwy/LTScrollView)|ScrollView嵌套ScrolloView(UITableView 、UICollectionView)解决方案, 支持OC / Swift(持续更新中...)实现原理:http://blog.csdn.net/glt_code/article/details/78576628|930|Swift|08/22|
|18|[spicyShrimp/U17](https://github.com/spicyShrimp/U17)|精仿有妖气漫画(Swift5)|882|Swift|01/29|
|19|[lb2281075105/LBXMLYFM-Swift](https://github.com/lb2281075105/LBXMLYFM-Swift)|Swift5项目仿写喜马拉雅App,采用MVC+MVVM设计模式,Moya+SwiftyJSON+HandyJSON网络框架和数据解析。数据来源抓包及部分本地json文件|811|Swift|05/14|
|20|[SherlockQi/HeavenMemoirs](https://github.com/SherlockQi/HeavenMemoirs)|AR相册 Photo Album For AR |638|Swift|03/20|
|21|[wxxsw/SwiftUI-WeChat](https://github.com/wxxsw/SwiftUI-WeChat)|🇨🇳 Learn how to make WeChat with SwiftUI. 微信 7.0 🟢|628|Swift|02/17|
|22|[zyphs21/HSStockChart](https://github.com/zyphs21/HSStockChart)|Stock Chart include CandleStickChart,TimeLineChart. 股票走势图,包括 K 线图,分时图,手势缩放,拖动|619|Swift|04/03|
|23|[xjbeta/iina-plus](https://github.com/xjbeta/iina-plus)|Extra danmaku support for iina. (iina 弹幕支持|565|Swift|06/27|
|24|[Danie1s/DNSPageView](https://github.com/Danie1s/DNSPageView)|一个纯 Swift 的轻量级、灵活且易于使用的 pageView|477|Swift|01/11|
|25|[lixiang1994/AutoInch](https://github.com/lixiang1994/AutoInch)|优雅的iPhone全尺寸/等比例精准适配工具|406|Swift|12/04|
|26|[Fnoz/FNMatchPull](https://github.com/Fnoz/FNMatchPull)|Swift实现的火柴图案&火柴文字下拉刷新动效(超炫酷下拉刷新),Swift&加强版本CBStoreHouseRefreshControl.|401|Swift|05/20|
|27|[Coder-TanJX/JXBanner](https://github.com/Coder-TanJX/JXBanner)|🚀🚀🚀 A super - custom multifunctional framework for banner unlimited rollover diagrams [一个超自定义多功能无限轮播图框架]|397|Swift|07/01|
|28|[easyui/EZPlayer](https://github.com/easyui/EZPlayer)|基于AVPlayer封装的视频播放器,功能丰富,快速集成,可定制性强,支持react-native。|392|Swift|06/27|
|29|[DarielChen/iOSTips](https://github.com/DarielChen/iOSTips)|记录iOS(Swift)开发中的一些知识点、小技巧|390|Swift|10/19|
|30|[zqqf16/SYM](https://github.com/zqqf16/SYM)|A crash log symbolicating Mac app 一个图形化的崩溃日志符号化工具|377|Swift|06/15|
|31|[lixiang1994/AttributedString](https://github.com/lixiang1994/AttributedString)|基于Swift插值方式优雅的构建富文本, 支持点击长按事件, 支持不同类型过滤, 支持自定义视图等.|376|Swift|05/01|
|32|[choiceyou/FWPopupView](https://github.com/choiceyou/FWPopupView)|弹窗控件:支持AlertView、Sheet、自定义视图的PopupView。AlertView中可以嵌套自定义视图,各组件的显示隐藏可配置;Sheet仿微信样式;同时提供自定义弹出。更多配置请参考”可设置参数“,提供OC使用Demo。|372|Swift|06/23|
|33|[dudongge/DDGScreenShot](https://github.com/dudongge/DDGScreenShot)|DDGScreenShot截屏图片处理,只需一句代码,复杂屏幕截屏(如view ScrollView webView wkwebView),图片后期处理,拼图,裁剪等|361|Swift|05/24|
|34|[MQZHot/DaisyNet](https://github.com/MQZHot/DaisyNet)|1. - Alamofire与Cache封装 , 更容易存储请求数据. 2. - 封装Alamofire下载,使用更方便|338|Swift|04/27|
|35|[andyRon/swift-algorithm-club-cn](https://github.com/andyRon/swift-algorithm-club-cn)|swift-algorithm-club的翻译。使用Swift学习算法和数据结构。|336|Swift|01/15|
|36|[MQZHot/ZCycleView](https://github.com/MQZHot/ZCycleView)|使用UICollectionView实现常见图片无限轮播,支持自定义cell,自定义pageControl,以及轮播样式|336|Swift|04/06|
|37|[LvJianfeng/LLCycleScrollView](https://github.com/LvJianfeng/LLCycleScrollView)|Swift - 轮播图,文本轮播,支持左右箭头|332|Swift|07/27|
|38|[Tliens/SpeedySwift](https://github.com/Tliens/SpeedySwift)|这是一个app开发的加速库。This is an accelerated library for app development|323|Swift|06/01|
|39|[xiaoyouxinqing/PostDemo](https://github.com/xiaoyouxinqing/PostDemo)|BBCo - iOS开发入门教程 SwiftUI 微博App项目实战 零基础学习Swift编程|322|Swift|07/11|
|40|[JmoVxia/CLDemo](https://github.com/JmoVxia/CLDemo)|这是一个Demo空间,持续更新|314|Swift|06/25|
|41|[lb2281075105/LBU25-Swift](https://github.com/lb2281075105/LBU25-Swift)| Swift5 精仿漫画类App(有妖气漫画),Moya+SwiftyJSON+HandyJSON网络框架和数据解析。数据来源真实接口获得|304|Swift|05/14|
|42|[chenjie1219/SwiftScan](https://github.com/chenjie1219/SwiftScan)|A barcode and qr code scanner( 二维码/条形码扫描、生成,仿微信、支付宝)|299|Swift|11/07|
|43|[fcbox/Lantern](https://github.com/fcbox/Lantern)|基于Swift的高可用视图框架|285|Swift|05/09|
|44|[Liaoworking/Advanced-Swift](https://github.com/Liaoworking/Advanced-Swift)|Notes of Advanced Swift. 《swift进阶》学习笔记 swift 5.3|281|Swift|04/26|
|45|[wxxsw/VideoPlayer](https://github.com/wxxsw/VideoPlayer)|📽 A video player for SwiftUI, support for caching, preload and custom control view. SwiftUI 视频播放器,支持边下边播、预加载、自定义控制层|264|Swift|02/17|
|46|[Allen0828/AEAlertView](https://github.com/Allen0828/AEAlertView)|Custom AlertView supports multiple modes 自定义AlertView 支持多种模式弹窗|256|Swift|03/05|
|47|[zhangzhao4444/Fastmonkey](https://github.com/zhangzhao4444/Fastmonkey)|非插桩 iOS Monkey, 支持控件,每秒4-5 action事件|255|Swift|08/28|
|48|[Xinguang/WechatKit](https://github.com/Xinguang/WechatKit)|一款快速实现微信第三方登录的框架(Swift版) SDK 1.8.5|255|Swift|02/24|
|49|[ZzzM/HostsToolforMac](https://github.com/ZzzM/HostsToolforMac)|一款轻量级本地 hosts 更新工具。|250|Swift|12/22|
|50|[Sunnyyoung/AppleReserver](https://github.com/Sunnyyoung/AppleReserver)|Apple 官方预约监控助手|246|Swift|11/08|
|51|[manondidi/swiftArch](https://github.com/manondidi/swiftArch)|swift开发脚手架|241|Swift|07/01|
|52|[Light413/dctt](https://github.com/Light413/dctt)|xx头条【完整项目持续迭代中】(一款本地生活信息发布APP,分享新鲜事、找人找对象等生活服务)。已App Store上架,这里仅供学习交流|231|Swift|01/13|
|53|[zlyBear/BearFree](https://github.com/zlyBear/BearFree)|iOS NetworkExtension ShadowSocket for iOS developer (swift 5) 支持系统小组件开关SS|224|Swift|04/20|
|54|[SunshineBrother/SwiftTools](https://github.com/SunshineBrother/SwiftTools)|Swift学习|215|Swift|05/08|
|55|[XiongJoJo/OFO](https://github.com/XiongJoJo/OFO)|OFO共享单车(Swift版)|213|Swift|04/29|
|56|[Noah37/zhuishushenqi](https://github.com/Noah37/zhuishushenqi)|追书神器Swift版客户端(非官方)。 不断更新中......|207|Swift|06/13|
|57|[miniLV/MNWeibo](https://github.com/miniLV/MNWeibo)|Swift5 + MVVM + 文艺复兴微博(纯代码 + 纯Swift),可作为第一个上手的Swift项目.|201|Swift|12/24|
|58|[imeiju/iMeiJu_Mac](https://github.com/imeiju/iMeiJu_Mac)|爱美剧Mac客户端|198|Swift|06/21|
|59|[CoderLinLee/LLSegmentViewController](https://github.com/CoderLinLee/LLSegmentViewController)|可添加header的多控制器列表,主流APP分类切换滚动视图(京东,网易新闻,爱奇艺,QQ弹性小球等,可高度自定义,项目结构清晰);UIScrollView 嵌套,可做个人详情页,商品详情页,页面多tableView滑动悬停|191|Swift|06/28|
|60|[CaamDau/CaamDau](https://github.com/CaamDau/CaamDau)|CaamDau 系列组件组合! iOS Swift 通用业务组件库 & Cocoa便利性扩展。Form流式模型化UI排版、Timer计时管理、AppDelegate解耦方案、HUD提示窗、Page分页导航、Indexes侧边索引、TopBar自定义导航栏、InputBox输入框扩展、Router组件化路由协议、IconFont阿里矢量图标管理、MJRefresh扩展、Alamofire扩展;附.功能组件、组件化示例、第三方库示例|189|Swift|06/17|
|61|[longsirhero/iOS-Extended-Knowledge](https://github.com/longsirhero/iOS-Extended-Knowledge)|iOS开发知识|179|Swift|08/26|
|62|[lizelu/DataStruct-Swift](https://github.com/lizelu/DataStruct-Swift)|数据结构相关Swift示例,相关博客地址:|174|Swift|12/11|
|63|[pujiaxin33/JXPatternLock](https://github.com/pujiaxin33/JXPatternLock)|An easy-to-use, powerful, customizable pattern lock view in swift. 图形解锁/手势解锁 / 手势密码 / 图案密码 / 九宫格密码|174|Swift|06/23|
|64|[wxxsw/GSPlayer](https://github.com/wxxsw/GSPlayer)|⏯ Video player, support for caching, preload, fullscreen transition and custom control view. 视频播放器,支持边下边播、预加载、全屏转场和自定义控制层|170|Swift|07/07|
|65|[hui-z/image_gallery_saver](https://github.com/hui-z/image_gallery_saver)|flutter中用于保存图片到相册的Plugin|159|Swift|06/07|
|66|[wangrui460/WRCycleScrollView](https://github.com/wangrui460/WRCycleScrollView)|Swift 自动无限轮播用这个就够了 swift 4|158|Swift|06/30|
|67|[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第三方客户端)的用户反馈信息|157|Swift|07/26|
|68|[hello-david/SwiftV2Ray](https://github.com/hello-david/SwiftV2Ray)|V2Ray-Core的iOS工具|157|Swift|04/16|
|69|[heyode/HEPhotoPicker](https://github.com/heyode/HEPhotoPicker)|自由定制支持视频,图片的相册选择器|152|Swift|04/09|
|70|[04zhujunjie/ZJJPopup](https://github.com/04zhujunjie/ZJJPopup)|选择器,弹框|150|Swift|05/13|
|71|[Habit21D/SwiftHttpRequest](https://github.com/Habit21D/SwiftHttpRequest)|Swift5.0:基于Alamofire的网络封装及基于Codable的model解析|144|Swift|10/12|
|72|[Dzhijian/DouYuLive](https://github.com/Dzhijian/DouYuLive)|仿斗鱼直播-Swift4.0,不断更新中。。。|142|Swift|09/13|
|73|[Darren-chenchen/CLImagePickerTool](https://github.com/Darren-chenchen/CLImagePickerTool)|这是一个多图片选择的控件|142|Swift|03/27|
|74|[Tuluobo/Leiter](https://github.com/Tuluobo/Leiter)|一个基于 NEKit 的网络 Proxy App。|138|Swift|08/10|
|75|[cmushroom/redis-pro](https://github.com/cmushroom/redis-pro)|redis-pro redis 桌面管理工具|135|Swift|07/08|
|76|[huzhiqin/U17](https://github.com/huzhiqin/U17)|仿最新V5.0有妖气漫画:Swift5(Moya+Alamofire/HandyJSON/Kingfisher/SnapKit/MJRefresh)|134|Swift|03/22|
|77|[Liaoworking/MoyaNetworkTool](https://github.com/Liaoworking/MoyaNetworkTool)|a robust networkTool based on Moya. Moya Demo 一个强健的基于moya二次封装的网络框架|127|Swift|03/21|
|78|[even-cheng/ECSigner](https://github.com/even-cheng/ECSigner)|iOS签名Mac客户端,一键签名,网络地址直签,多文件同步签,自动区分企业签名和个人证书,一键Assets.car生成、解压导出和替换,自动注册设备并更新下载签名证书和签名文件进行签名,支持动态库注入。支持Swift5和iOS14,macOS10.15并向下兼容。|126|Swift|04/16|
|79|[pujiaxin33/JXPopupView](https://github.com/pujiaxin33/JXPopupView)|一个轻量级的自定义视图弹出框架|120|Swift|07/24|
|80|[520/EasyWords](https://github.com/520/EasyWords)|苹果商店上架项目, on app store, for MacOS, mac开源, mac open source |119|Swift|04/08|
|81|[xindong/anti-addiction-kit](https://github.com/xindong/anti-addiction-kit)|📱手机游戏防沉迷系统 SDK,支持 iOS+Android+Unity,快速接入!|118|Swift|06/22|
|82|[spicyShrimp/SnapKitExtend](https://github.com/spicyShrimp/SnapKitExtend)|SnapKit的扩展,SnapKit类似于Masonry,但是其没有对Arry的设置和对等间距排列的布局等,此扩展是类似Masonry的写法对SnapKit的补充,同时补充九宫格布局方式|117|Swift|01/19|
|83|[MoyaMapper/MoyaMapper](https://github.com/MoyaMapper/MoyaMapper)|快速解析模型工具,支持RxSwift。同时支持缓存功能 【相关手册 https://MoyaMapper.github.io 】|117|Swift|02/04|
|84|[937447974/YJCocoa](https://github.com/937447974/YJCocoa)|YJ 系列 Pod 开源库|116|Swift|02/18|
|85|[FlutterTaoBaoKe/flutter_alibc](https://github.com/FlutterTaoBaoKe/flutter_alibc)|flutter版本的阿里百川插件|114|Swift|06/04|
|86|[TAEYANGXU/HDCP](https://github.com/TAEYANGXU/HDCP)|微菜谱(Swift5.0) 新增功能:菜谱视频播放|110|Swift|10/19|
|87|[ethanhuang13/blahker](https://github.com/ethanhuang13/blahker)|巴拉剋 - Safari 蓋版廣告消除器|108|Swift|06/25|
|88|[swiftui-from-zero/SwiftUIViews](https://github.com/swiftui-from-zero/SwiftUIViews)|SwiftUI 所有基本视图用例和讲解|104|Swift|03/02|
|89|[ming1016/MethodTraceAnalyze](https://github.com/ming1016/MethodTraceAnalyze)|方法耗时分析|102|Swift|02/26|
|90|[choiceyou/FWSideMenu](https://github.com/choiceyou/FWSideMenu)|侧滑控件:支持左、右滑动的侧滑菜单,可配置单侧滑动,同时可配置菜单宽度等,更多配置请参考”可设置参数“。参考了QQ用户体验:支持边缘侧滑,解决手势冲突问题(边缘范围可设置)。提供OC使用Demo。|101|Swift|03/23|
|91|[gl-lei/algorithm](https://github.com/gl-lei/algorithm)|《数据结构与算法之美》学习笔记以及 Swift 代码实现 ,原始仓库 https://github.com/wangzheng0822/algo|100|Swift|07/08|
|92|[parkingwang/vehicle-keyboard-ios](https://github.com/parkingwang/vehicle-keyboard-ios)|停车王车牌号码专用键盘 - iOS|99|Swift|12/05|
|93|[maltsugar/RollingNotice-Swift](https://github.com/maltsugar/RollingNotice-Swift)|滚动公告、广告,支持灵活自定义cell。淘宝、口碑、京东、美团、天猫等等一切滚动广告 Roll Notice or Advertising, customize cell as UITableViewCell supported, Swift version is also ready|96|Swift|04/15|
|94|[windstormeye/SwiftGame](https://github.com/windstormeye/SwiftGame)|小专栏《Swift 游戏开发》代码集合|94|Swift|03/07|
|95|[WangWenzhuang/ZKProgressHUD](https://github.com/WangWenzhuang/ZKProgressHUD)|iOS App 上极易于使用的 HUD|93|Swift|02/25|
|96|[JoanKing/JKSwiftExtension](https://github.com/JoanKing/JKSwiftExtension)|Swift常用扩展、组件、协议,方便项目快速搭建,提供完整清晰的Demo示例,不断的完善中...... |91|Swift|07/01|
|97|[choiceyou/FWSegmentedControl](https://github.com/choiceyou/FWSegmentedControl)|分段控件:支持纯文字、纯图片、文字图片混排等方式的Segment,文字、图片排布顺序可选,同时有多重可选下标,更多配置请参考”可设置参数“。提供OC使用Demo。|90|Swift|10/29|
|98|[kingsic/PagingViewKit](https://github.com/kingsic/PagingViewKit)|A powerful and easy to use segment view 【QQ、淘宝、微博、腾讯、网易新闻、今日头条等标题滚动视图】|89|Swift|01/12|
|99|[LinXunFeng/LXFProtocolTool](https://github.com/LinXunFeng/LXFProtocolTool)|由Swift中协议方式实现功能的实用工具库【Refreshable、EmptyDataSetable 支持 Rx 】|87|Swift|03/09|
|100|[zhongjianfeipqy/VerificationCode](https://github.com/zhongjianfeipqy/VerificationCode)|自定义多位验证码|85|Swift|01/22|
⬆ [回到目录](#目录)
<br/>
## Jupyter Notebook
|#|Repository|Description|Stars|Language|Updated|
|:-|:-|:-|:-|:-|:-|
|1|[MLEveryday/100-Days-Of-ML-Code](https://github.com/MLEveryday/100-Days-Of-ML-Code)|100-Days-Of-ML-Code中文版|16.5k|Jupyter Notebook|03/30|
|2|[zergtant/pytorch-handbook](https://github.com/zergtant/pytorch-handbook)|pytorch handbook是一本开源的书籍,目标是帮助那些希望和使用PyTorch进行深度学习开发和研究的朋友快速入门,其中包含的Pytorch教程全部通过测试保证可以成功运行|14.8k|Jupyter Notebook|05/25|
|3|[fengdu78/lihang-code](https://github.com/fengdu78/lihang-code)|《统计学习方法》的代码实现|14.2k|Jupyter Notebook|05/31|
|4|[ShusenTang/Dive-into-DL-PyTorch](https://github.com/ShusenTang/Dive-into-DL-PyTorch)|本项目将《动手学深度学习》(Dive into Deep Learning)原书中的MXNet实现改为PyTorch实现。|13.0k|Jupyter Notebook|04/10|
|5|[dragen1860/Deep-Learning-with-TensorFlow-book](https://github.com/dragen1860/Deep-Learning-with-TensorFlow-book)|深度学习入门开源书,基于TensorFlow 2.0案例实战。Open source Deep Learning book, based on TensorFlow 2.0 framework.|11.7k|Jupyter Notebook|05/16|
|6|[NLP-LOVE/ML-NLP](https://github.com/NLP-LOVE/ML-NLP)|此项目是机器学习(Machine Learning)、深度学习(Deep Learning)、NLP面试中常考到的知识点和代码实现,也是作为一个算法工程师必会的理论基础知识。|9.4k|Jupyter Notebook|06/26|
|7|[chenyuntc/pytorch-book](https://github.com/chenyuntc/pytorch-book)|PyTorch tutorials and fun projects including neural talk, neural style, poem writing, anime generation (《深度学习框架PyTorch:入门与实战》)|9.0k|Jupyter Notebook|03/14|
|8|[czy36mengfei/tensorflow2_tutorials_chinese](https://github.com/czy36mengfei/tensorflow2_tutorials_chinese)|tensorflow2中文教程,持续更新(当前版本:tensorflow2.0),tag: tensorflow 2.0 tutorials|7.0k|Jupyter Notebook|12/09|
|9|[apachecn/Interview](https://github.com/apachecn/Interview)|Interview = 简历指南 + LeetCode + Kaggle|7.0k|Jupyter Notebook|01/02|
|10|[MorvanZhou/PyTorch-Tutorial](https://github.com/MorvanZhou/PyTorch-Tutorial)|Build your neural network easy and fast, 莫烦Python中文教学|6.1k|Jupyter Notebook|04/01|
|11|[lijin-THU/notes-python](https://github.com/lijin-THU/notes-python)|中文 Python 笔记|6.0k|Jupyter Notebook|10/01|
|12|[dragen1860/TensorFlow-2.x-Tutorials](https://github.com/dragen1860/TensorFlow-2.x-Tutorials)|TensorFlow 2.x version's Tutorials and Examples, including CNN, RNN, GAN, Auto-Encoders, FasterRCNN, GPT, BERT examples, etc. TF 2.0版入门实例代码,实战教程。|6.0k|Jupyter Notebook|09/23|
|13|[xianhu/LearnPython](https://github.com/xianhu/LearnPython)|以撸代码的形式学习Python|5.8k|Jupyter Notebook|05/26|
|14|[fengdu78/Data-Science-Notes](https://github.com/fengdu78/Data-Science-Notes)|数据科学的笔记以及资料搜集|5.4k|Jupyter Notebook|02/17|
|15|[Mikoto10032/DeepLearning](https://github.com/Mikoto10032/DeepLearning)|深度学习入门教程, 优秀文章, Deep Learning Tutorial|5.4k|Jupyter Notebook|01/18|
|16|[roboticcam/machine-learning-notes](https://github.com/roboticcam/machine-learning-notes)|My continuously updated Machine Learning, Probabilistic Models and Deep Learning notes and demos (2000+ slides) 我不间断更新的机器学习,概率模型和深度学习的讲义(2000+页)和视频链接|5.0k|Jupyter Notebook|06/23|
|17|[Alfred1984/interesting-python](https://github.com/Alfred1984/interesting-python)|有趣的Python爬虫和Python数据分析小项目(Some interesting Python crawlers and data analysis projects)|3.8k|Jupyter Notebook|07/06|
|18|[snowkylin/tensorflow-handbook](https://github.com/snowkylin/tensorflow-handbook)|简单粗暴 TensorFlow 2 A Concise Handbook of TensorFlow 2 一本简明的 TensorFlow 2 入门指导教程|3.4k|Jupyter Notebook|06/17|
|19|[TrickyGo/Dive-into-DL-TensorFlow2.0](https://github.com/TrickyGo/Dive-into-DL-TensorFlow2.0)|本项目将《动手学深度学习》(Dive into Deep Learning)原书中的MXNet实现改为TensorFlow 2.0实现,项目已得到李沐老师的认可|3.2k|Jupyter Notebook|11/02|
|20|[PaddlePaddle/book](https://github.com/PaddlePaddle/book)|Deep Learning 101 with PaddlePaddle (『飞桨』深度学习框架入门教程)|2.6k|Jupyter Notebook|07/06|
|21|[datawhalechina/joyful-pandas](https://github.com/datawhalechina/joyful-pandas)|pandas中文教程|2.5k|Jupyter Notebook|03/31|
|22|[zlotus/notes-linear-algebra](https://github.com/zlotus/notes-linear-algebra)|线性代数笔记|2.3k|Jupyter Notebook|12/16|
|23|[datawhalechina/competition-baseline](https://github.com/datawhalechina/competition-baseline)|数据科学竞赛知识、代码、思路|2.2k|Jupyter Notebook|07/07|
|24|[datawhalechina/easy-rl](https://github.com/datawhalechina/easy-rl)|强化学习中文教程,在线阅读地址:https://datawhalechina.github.io/easy-rl/|2.1k|Jupyter Notebook|07/04|
|25|[ypwhs/captcha_break](https://github.com/ypwhs/captcha_break)|验证码识别|2.1k|Jupyter Notebook|05/17|
|26|[wangshub/RL-Stock](https://github.com/wangshub/RL-Stock)|📈 如何用深度强化学习自动炒股|1.9k|Jupyter Notebook|06/09|
|27|[szcf-weiya/ESL-CN](https://github.com/szcf-weiya/ESL-CN)|The Elements of Statistical Learning (ESL)的中文翻译、代码实现及其习题解答。|1.7k|Jupyter Notebook|06/20|
|28|[fengdu78/machine_learning_beginner](https://github.com/fengdu78/machine_learning_beginner)|机器学习初学者公众号作品|1.7k|Jupyter Notebook|03/21|
|29|[AIZOOTech/FaceMaskDetection](https://github.com/AIZOOTech/FaceMaskDetection)|开源人脸口罩检测模型和数据 Detect faces and determine whether people are wearing mask.|1.5k|Jupyter Notebook|03/24|
|30|[xavier-zy/Awesome-pytorch-list-CNVersion](https://github.com/xavier-zy/Awesome-pytorch-list-CNVersion)|Awesome-pytorch-list 翻译工作进行中......|1.4k|Jupyter Notebook|03/27|
|31|[wowchemy/starter-hugo-academic](https://github.com/wowchemy/starter-hugo-academic)|🎓 创建一个学术网站. Easily create a beautiful academic résumé or educational website using Hugo, GitHub, and Netlify.|1.4k|Jupyter Notebook|07/09|
|32|[hangsz/pandas-tutorial](https://github.com/hangsz/pandas-tutorial)|适合初级到中级晋升者,有了体系之后就看熟练度了。|1.3k|Jupyter Notebook|10/11|
|33|[jm199504/Financial-Knowledge-Graphs](https://github.com/jm199504/Financial-Knowledge-Graphs)|小型金融知识图谱构建流程|1.2k|Jupyter Notebook|05/09|
|34|[MachineLP/Tensorflow-](https://github.com/MachineLP/Tensorflow-)|Tensorflow实战学习笔记、代码、机器学习进阶系列|1.1k|Jupyter Notebook|09/30|
|35|[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 入门机器学习》示例代码。课程的更多更新内容及辅助练习也将逐步添加进这个代码仓。|1.1k|Jupyter Notebook|11/10|
|36|[amusi/TensorFlow-From-Zero-To-One](https://github.com/amusi/TensorFlow-From-Zero-To-One)|TensorFlow 最佳学习资源大全(含课程、书籍、博客、公开课等内容)|1.1k|Jupyter Notebook|07/05|
|37|[Charmve/computer-vision-in-action](https://github.com/Charmve/computer-vision-in-action)|《计算机视觉实战演练:算法与应用》中文电子书、源码、读者交流社区(更新中,可以先 star)|937|Jupyter Notebook|07/08|
|38|[FighterLYL/GraphNeuralNetwork](https://github.com/FighterLYL/GraphNeuralNetwork)|《深入浅出图神经网络:GNN原理解析》配套代码|880|Jupyter Notebook|02/24|
|39|[huaweicloud/ModelArts-Lab](https://github.com/huaweicloud/ModelArts-Lab)|ModelArts-Lab是示例代码库。更多AI开发学习交流信息,请访问华为云AI开发者社区:huaweicloud.ai|847|Jupyter Notebook|07/08|
|40|[Rgveda/996Quant](https://github.com/Rgveda/996Quant)|35岁程序员退路之量化投资学习笔记|831|Jupyter Notebook|01/31|
|41|[bighuang624/Andrew-Ng-Deep-Learning-notes](https://github.com/bighuang624/Andrew-Ng-Deep-Learning-notes)|吴恩达《深度学习》系列课程笔记及代码 Notes in Chinese for Andrew Ng Deep Learning Course|830|Jupyter Notebook|04/16|
|42|[zhulei227/ML_Notes](https://github.com/zhulei227/ML_Notes)|机器学习算法的公式推导以及numpy实现|721|Jupyter Notebook|01/11|
|43|[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 篇 行业应用 & 课程笔记|711|Jupyter Notebook|05/10|
|44|[chocoluffy/deep-recommender-system](https://github.com/chocoluffy/deep-recommender-system)|深度学习在推荐系统中的应用及论文小结。|690|Jupyter Notebook|10/05|
|45|[datawhalechina/team-learning-data-mining](https://github.com/datawhalechina/team-learning-data-mining)|主要存储Datawhale组队学习中“数据挖掘/机器学习”方向的资料。|685|Jupyter Notebook|06/27|
|46|[yuanxiaosc/Machine-Learning-Book](https://github.com/yuanxiaosc/Machine-Learning-Book)|《机器学习宝典》包含:谷歌机器学习速成课程(招式)+机器学习术语表(口诀)+机器学习规则(心得)+机器学习中的常识性问题 (内功)。该资源适用于机器学习、深度学习研究人员和爱好者参考!|638|Jupyter Notebook|06/07|
|47|[Wasim37/deeplearning-assignment](https://github.com/Wasim37/deeplearning-assignment)|深度学习笔记|638|Jupyter Notebook|12/19|
|48|[coldlarry/YOLOv3-complete-pruning](https://github.com/coldlarry/YOLOv3-complete-pruning)|提供对YOLOv3及Tiny的多种剪枝版本,以适应不同的需求。|634|Jupyter Notebook|02/25|
|49|[zjunlp/deepke](https://github.com/zjunlp/deepke)|基于深度学习的开源中文关系抽取框架|624|Jupyter Notebook|07/02|
|50|[eastmountyxz/ImageProcessing-Python](https://github.com/eastmountyxz/ImageProcessing-Python)|该资源为作者在CSDN的撰写Python图像处理文章的支撑,主要是Python实现图像处理、图像识别、图像分类等算法代码实现,希望该资源对您有所帮助,一起加油。|612|Jupyter Notebook|06/22|
|51|[fly51fly/Practical_Python_Programming](https://github.com/fly51fly/Practical_Python_Programming)|北邮《Python编程与实践》课程资料|609|Jupyter Notebook|06/09|
|52|[ypwhs/dogs_vs_cats](https://github.com/ypwhs/dogs_vs_cats)|猫狗大战|580|Jupyter Notebook|09/22|
|53|[zhouyanasd/or-pandas](https://github.com/zhouyanasd/or-pandas)|【运筹OR帷幄 数据科学】pandas教程系列电子书|573|Jupyter Notebook|06/06|
|54|[ShusenTang/Deep-Learning-with-PyTorch-Chinese](https://github.com/ShusenTang/Deep-Learning-with-PyTorch-Chinese)|本仓库将PyTorch官方书籍《Deep learning with PyTorch》(基本摘录版)翻译成中文版并给出可运行的相关代码。|571|Jupyter Notebook|11/25|
|55|[howl-anderson/Chinese_models_for_SpaCy](https://github.com/howl-anderson/Chinese_models_for_SpaCy)|SpaCy 中文模型 Models for SpaCy that support Chinese|556|Jupyter Notebook|06/29|
|56|[geektutu/interview-questions](https://github.com/geektutu/interview-questions)|机器学习/深度学习/Python/Go语言面试题笔试题(Machine learning Deep Learning Python and Golang Interview Questions)|554|Jupyter Notebook|06/12|
|57|[lxztju/pytorch_classification](https://github.com/lxztju/pytorch_classification)|利用pytorch实现图像分类的一个完整的代码,训练,预测,TTA,模型融合,模型部署,cnn提取特征,svm或者随机森林等进行分类,模型蒸馏,一个完整的代码|551|Jupyter Notebook|04/13|
|58|[CNFeffery/DataScienceStudyNotes](https://github.com/CNFeffery/DataScienceStudyNotes)|这个仓库保管从(数据科学学习手札69)开始的所有代码、数据等相关附件内容|538|Jupyter Notebook|05/25|
|59|[marsggbo/deeplearning.ai_JupyterNotebooks](https://github.com/marsggbo/deeplearning.ai_JupyterNotebooks)|DeepLearning.ai课程学习Jupyter Notebook作业|531|Jupyter Notebook|11/08|
|60|[Fafa-DL/Lhy_Machine_Learning](https://github.com/Fafa-DL/Lhy_Machine_Learning)|李宏毅2021春季机器学习课程课件及作业|528|Jupyter Notebook|06/23|
|61|[DataXujing/YOLO-v5](https://github.com/DataXujing/YOLO-v5)|:art: Pytorch YOLO v5 训练自己的数据集超详细教程!!! :art: (提供PDF训练教程下载)|481|Jupyter Notebook|06/23|
|62|[LYuhang/GNN_Review](https://github.com/LYuhang/GNN_Review)|GNN综述阅读报告|478|Jupyter Notebook|04/08|
|63|[MemorialCheng/deep-learning-from-scratch](https://github.com/MemorialCheng/deep-learning-from-scratch)|深度学习入门-基于Python的理论与实现》,包含源代码和高清PDF(带书签);慕课网imooc《深度学习之神经网络(CNN-RNN-GAN)算法原理-实战》|469|Jupyter Notebook|11/18|
|64|[EricWebsmith/china_job_survey](https://github.com/EricWebsmith/china_job_survey)|stats of Chinese developers. 统计中国程序员的就业情况|439|Jupyter Notebook|01/05|
|65|[neolee/pilot](https://github.com/neolee/pilot)|进入编程世界的第一课|439|Jupyter Notebook|02/12|
|66|[LinXueyuanStdio/LaTeX_OCR_PRO](https://github.com/LinXueyuanStdio/LaTeX_OCR_PRO)|:art: 数学公式识别增强版:中英文手写印刷公式、支持初级符号推导(数据结构基于 LaTeX 抽象语法树)|437|Jupyter Notebook|06/11|
|67|[shibing624/python-tutorial](https://github.com/shibing624/python-tutorial)|python教程,包括:python基础、python进阶;常用机器学习库:numpy、scipy、sklearn、xgboost;深度学习库:keras、tensorflow、paddle、pytorch。|434|Jupyter Notebook|06/28|
|68|[yenlung/Python-3-Data-Analysis-Basics](https://github.com/yenlung/Python-3-Data-Analysis-Basics)|Python 3 與數據分析概要|433|Jupyter Notebook|07/20|
|69|[iphysresearch/TOP250movie_douban](https://github.com/iphysresearch/TOP250movie_douban)|TOP250豆瓣电影短评:Scrapy 爬虫+数据清理/分析+构建中文文本情感分析模型|432|Jupyter Notebook|06/29|
|70|[ChileWang0228/Deep-Learning-With-Python](https://github.com/ChileWang0228/Deep-Learning-With-Python)|《Python深度学习》书籍代码|422|Jupyter Notebook|05/13|
|71|[PaddlePaddle/awesome-DeepLearning](https://github.com/PaddlePaddle/awesome-DeepLearning)|深度学习入门课、资深课、特色课、学术案例、产业实践案例、深度学习知识百科及面试题库The course, case and knowledge of Deep Learning and AI|414|Jupyter Notebook|07/08|
|72|[zkywsg/Daily-DeepLearning](https://github.com/zkywsg/Daily-DeepLearning)|🔥机器学习/深度学习/Python/算法面试/自然语言处理教程/剑指offer/machine learning/deeplearning/Python/Algorithm interview/NLP Tutorial|411|Jupyter Notebook|05/06|
|73|[datawhalechina/team-learning-program](https://github.com/datawhalechina/team-learning-program)|主要存储Datawhale组队学习中“编程、数据结构与算法”方向的资料。|411|Jupyter Notebook|07/08|
|74|[gengyanlei/fire-smoke-detect-yolov4](https://github.com/gengyanlei/fire-smoke-detect-yolov4)|fire-smoke-detect-yolov4-yolov5 and fire-smoke-detection-dataset 火灾检测,烟雾检测|407|Jupyter Notebook|07/08|
|75|[DjangoPeng/tensorflow-101](https://github.com/DjangoPeng/tensorflow-101)|《TensorFlow 快速入门与实战》和《TensorFlow 2 项目进阶实战》课程代码与课件|404|Jupyter Notebook|05/07|
|76|[bat67/pytorch-tutorials-examples-and-books](https://github.com/bat67/pytorch-tutorials-examples-and-books)|PyTorch1.x tutorials, examples and some books I found 【不定期更新】整理的PyTorch 1.x 最新版教程、例子和书籍|375|Jupyter Notebook|11/23|
|77|[ben1234560/AiLearning-Theory-Applying](https://github.com/ben1234560/AiLearning-Theory-Applying)|快速上手Ai理论及应用实战:基础知识Basic knowledge、机器学习MachineLearning、深度学习DeepLearning2、自然语言处理BERT,持续更新中。含大量注释及数据集,力求每一位能看懂并复现。|373|Jupyter Notebook|06/02|
|78|[bobo0810/PytorchNetHub](https://github.com/bobo0810/PytorchNetHub)|项目注释+论文复现+算法竞赛+Pytorch指北|371|Jupyter Notebook|07/05|
|79|[yizt/numpy_neural_network](https://github.com/yizt/numpy_neural_network)|仅使用numpy从头开始实现神经网络,包括反向传播公式推导过程; numpy构建全连接层、卷积层、池化层、Flatten层;以及图像分类案例及精调网络案例等,持续更新中... ...|364|Jupyter Notebook|11/28|
|80|[qcymkxyc/RecSys](https://github.com/qcymkxyc/RecSys)|项亮的《推荐系统实践》的代码实现|351|Jupyter Notebook|10/30|
|81|[datawhalechina/hands-on-data-analysis](https://github.com/datawhalechina/hands-on-data-analysis)|动手学数据分析以项目为主线,知识点孕育其中,通过边学、边做、边引导来得到更好的学习效果|345|Jupyter Notebook|06/30|
|82|[cliuxinxin/TX-WORD2VEC-SMALL](https://github.com/cliuxinxin/TX-WORD2VEC-SMALL)|腾讯word2vec模型缩小版|345|Jupyter Notebook|04/20|
|83|[panxl6/cc150](https://github.com/panxl6/cc150)|《程序员面试金典》(cc150)|340|Jupyter Notebook|03/08|
|84|[fengdu78/WZU-machine-learning-course](https://github.com/fengdu78/WZU-machine-learning-course)|温州大学《机器学习》课程资料(代码、课件等)|336|Jupyter Notebook|06/28|
|85|[nladuo/THSTrader](https://github.com/nladuo/THSTrader)|量化交易。同花顺免费模拟炒股软件客户端的python API。(Python3)|332|Jupyter Notebook|09/11|
|86|[aespresso/chinese_sentiment](https://github.com/aespresso/chinese_sentiment)|用tensorflow进行中文自然语言处理的情感分析|332|Jupyter Notebook|11/25|
|87|[Syencil/mobile-yolov5-pruning-distillation](https://github.com/Syencil/mobile-yolov5-pruning-distillation)|mobilev2-yolov5s剪枝、蒸馏,支持ncnn,tensorRT部署。ultra-light but better performence!|319|Jupyter Notebook|02/03|
|88|[htygithub/machine-learning-python](https://github.com/htygithub/machine-learning-python)|機器學習: Python|317|Jupyter Notebook|03/06|
|89|[familyld/Machine_Learning](https://github.com/familyld/Machine_Learning)|周志华《机器学习》阅读笔记|315|Jupyter Notebook|10/18|
|90|[datawhalechina/statistical-learning-method-solutions-manual](https://github.com/datawhalechina/statistical-learning-method-solutions-manual)|《统计学习方法》(第一版)习题解答,在线阅读地址:https://datawhalechina.github.io/statistical-learning-method-solutions-manual|303|Jupyter Notebook|06/09|
|91|[DonaldDai/Bokeh-CN](https://github.com/DonaldDai/Bokeh-CN)|Bokeh中文文档(翻译中)|292|Jupyter Notebook|03/11|
|92|[Wilnk/Google-Drive-Online-Decompression](https://github.com/Wilnk/Google-Drive-Online-Decompression)|使用Google Colab对Google Drive里面的压缩包进行操作,支持7z和rar以及zip等格式,引擎采用unrar和unzip以及7z|292|Jupyter Notebook|07/28|
|93|[SummerLife/EmbeddedSystem](https://github.com/SummerLife/EmbeddedSystem)|:books: 计算机体系架构、嵌入式系统基础与主流编程语言相关内容总结|288|Jupyter Notebook|07/07|
|94|[zhouwei713/data_analysis](https://github.com/zhouwei713/data_analysis)|一些爬虫和数据分析相关实战练习|287|Jupyter Notebook|03/07|
|95|[linguishi/chinese_sentiment](https://github.com/linguishi/chinese_sentiment)|中文情感分析,CNN,BI-LSTM,文本分类|274|Jupyter Notebook|05/21|
|96|[tsuirak/skills](https://github.com/tsuirak/skills)|个人的技能树仓库,主要包含个人机器学习以及深度学习的笔记|269|Jupyter Notebook|04/01|
|97|[liuhuanshuo/zaoqi-Python](https://github.com/liuhuanshuo/zaoqi-Python)|公众号:早起Python|269|Jupyter Notebook|06/02|
|98|[GreedyAIAcademy/Machine-Learning](https://github.com/GreedyAIAcademy/Machine-Learning)|讲解常见的机器学习算法|269|Jupyter Notebook|08/04|
|99|[hktxt/Learn-Statistical-Learning-Method](https://github.com/hktxt/Learn-Statistical-Learning-Method)|Implementation of Statistical Learning Method, Second Edition.《统计学习方法》第二版,算法实现。|269|Jupyter Notebook|02/09|
|100|[hecongqing/2018-daguan-competition](https://github.com/hecongqing/2018-daguan-competition)|2018年"达观杯"文本智能处理挑战赛-长文本分类-rank4|258|Jupyter Notebook|08/05|
|101|[GavinHacker/recsys_core](https://github.com/GavinHacker/recsys_core)|[电影推荐系统] Based on the movie scoring data set, the movie recommendation system is built with FM and LR as the core(基于爬取的电影评分数据集,构建以FM和LR为核心的电影推荐系统). |256|Jupyter Notebook|11/24|
|102|[qiguming/MLAPP_CN_CODE](https://github.com/qiguming/MLAPP_CN_CODE)|《Machine Learning: A Probabilistic Perspective》(Kevin P. Murphy)中文翻译和书中算法的Python实现。|253|Jupyter Notebook|06/30|
|103|[LiuChuang0059/Complex-Network](https://github.com/LiuChuang0059/Complex-Network)|复杂网络研究资源整理和基础知识学习|247|Jupyter Notebook|05/14|
|104|[datawhalechina/team-learning-nlp](https://github.com/datawhalechina/team-learning-nlp)|主要存储Datawhale组队学习中“自然语言处理”方向的资料。|240|Jupyter Notebook|07/02|
|105|[YiranJing/Coronavirus-Epidemic-COVID-19](https://github.com/YiranJing/Coronavirus-Epidemic-COVID-19)|👩🏻⚕️Covid-19 estimation and forecast using statistical model; 新型冠状病毒肺炎统计模型预测 (Jan 2020)|237|Jupyter Notebook|02/23|
|106|[JustDoPython/python-examples](https://github.com/JustDoPython/python-examples)|Python技术 公众号文章代码实例|234|Jupyter Notebook|06/30|
|107|[LinXueyuanStdio/LaTeX_OCR](https://github.com/LinXueyuanStdio/LaTeX_OCR)|:gem: 数学公式识别|233|Jupyter Notebook|06/09|
|108|[ga642381/ML2021-Spring](https://github.com/ga642381/ML2021-Spring)|李宏毅 (Hung-Yi Lee) 機器學習 Machine Learning 2021 Spring|229|Jupyter Notebook|06/18|
|109|[tsuirak/deeplearning.ai](https://github.com/tsuirak/deeplearning.ai)|该存储库包含由deeplearning.ai提供的相关课程的个人的笔记和实现代码。|229|Jupyter Notebook|01/26|
|110|[Qinbf/Deep-Learning-Tensorflow2](https://github.com/Qinbf/Deep-Learning-Tensorflow2)|基于Tensorflow2的深度学习开源书籍|227|Jupyter Notebook|09/07|
|111|[allenlu2008/PythonDemo](https://github.com/allenlu2008/PythonDemo)|虾神的Python示例代码库|224|Jupyter Notebook|01/08|
|112|[SharkFin-top/Statistics_Python_Codes](https://github.com/SharkFin-top/Statistics_Python_Codes)|《统计学原理实验教程(Python)》书中代码实现。尽可能加注释,力求代码的可复用性。|219|Jupyter Notebook|08/13|
|113|[ni1o1/pygeo-tutorial](https://github.com/ni1o1/pygeo-tutorial)|Tutorial of geospatial data processing using python 用python分析时空数据的教程(in Chinese and English )|218|Jupyter Notebook|03/21|
|114|[loveunk/machine-learning-deep-learning-notes](https://github.com/loveunk/machine-learning-deep-learning-notes)|机器学习、深度学习的学习路径及知识总结|208|Jupyter Notebook|01/10|
|115|[hecongqing/TensorFlow2.0-Notes](https://github.com/hecongqing/TensorFlow2.0-Notes)|Tensorflow 2.0 Notes 提供了TF2.0案例实战以及TF2.0基础实战,目标是帮助那些希望和使用Tensorflow 2.0进行深度学习开发和研究的朋友快速入门,其中包含的Tensorflow 2.0教程基本通过测试保证可以成功运行(有问题的可以提issue,笔记网站正在建设中)。|206|Jupyter Notebook|10/07|
|116|[CUHKSZ-TQL/WeiboSpider_SentimentAnalysis](https://github.com/CUHKSZ-TQL/WeiboSpider_SentimentAnalysis)|借助Python抓取微博数据,并对抓取的数据进行情绪分析|205|Jupyter Notebook|06/09|
|117|[wzy6642/Dive-Into-Deep-Learning-PyTorch-PDF](https://github.com/wzy6642/Dive-Into-Deep-Learning-PyTorch-PDF)|本项目对中文版《动手学深度学习》中的代码进行了PyTorch实现并整理为PDF版本供下载|200|Jupyter Notebook|05/19|
|118|[yanqiangmiffy/NLP-Interview-Notes](https://github.com/yanqiangmiffy/NLP-Interview-Notes)|:books: 专门为自然语言处理(NLP)面试准备的学习笔记与资料|198|Jupyter Notebook|11/22|
|119|[LogicJake/competition_baselines](https://github.com/LogicJake/competition_baselines)|开源的各大比赛baseline|195|Jupyter Notebook|05/18|
|120|[geektutu/tensorflow2-docs-zh](https://github.com/geektutu/tensorflow2-docs-zh)|TF2.0 / TensorFlow 2.0 / TensorFlow2.0 官方文档中文版|193|Jupyter Notebook|01/08|
|121|[jarodHAN/Python-100-Days-master](https://github.com/jarodHAN/Python-100-Days-master)|python100天学习资料|190|Jupyter Notebook|06/02|
|122|[Relph1119/statistical-learning-method-camp](https://github.com/Relph1119/statistical-learning-method-camp)|统计学习方法训练营课程作业及答案,视频笔记在线阅读地址:https://relph1119.github.io/statistical-learning-method-camp|189|Jupyter Notebook|06/09|
|123|[AllanYiin/DeepBelief_Course4_Examples](https://github.com/AllanYiin/DeepBelief_Course4_Examples)|深度學習課程(第四梯)所設計的課程實作|188|Jupyter Notebook|04/13|
|124|[HuangCongQing/MachineLearning_Ng](https://github.com/HuangCongQing/MachineLearning_Ng)|吴恩达机器学习coursera课程,学习代码(2017年秋) The Stanford Coursera course on MachineLearning with Andrew Ng|188|Jupyter Notebook|05/11|
|125|[yunwei37/ZJU-CS-GIS-ClassNotes](https://github.com/yunwei37/ZJU-CS-GIS-ClassNotes)|一个浙江大学本科生的计算机、地理信息科学知识库 包含课程资料 学习笔记 大作业等( 数据结构与算法、人工智能、地理空间数据库、计算机组成、计算机网络、图形学、编译原理等课程)|186|Jupyter Notebook|02/09|
|126|[yutiansut/QAStrategy](https://github.com/yutiansut/QAStrategy)|策略基类/ 支持QIFI协议|185|Jupyter Notebook|02/16|
|127|[peiss/ant-learn-python](https://github.com/peiss/ant-learn-python)|蚂蚁学Python,微信公众号的代码仓库|184|Jupyter Notebook|12/04|
|128|[sailist/ASRFrame](https://github.com/sailist/ASRFrame)|An Automatic Speech Recognition Frame ,一个中文语音识别的完整框架, 提供了多个模型|184|Jupyter Notebook|01/06|
|129|[HuangCongQing/deeplearning.ai-note](https://github.com/HuangCongQing/deeplearning.ai-note)|网易云课堂终于官方发布了吴恩达经过授权的汉化课程-“”深度学习专项课程“”,这是自己做的一些笔记以及代码。下为网易云学习链接|181|Jupyter Notebook|04/29|
|130|[ethan-sui/AI-algorithm-engineer-knowledge](https://github.com/ethan-sui/AI-algorithm-engineer-knowledge)|努力成为一名合格有水平的AI算法工程师|176|Jupyter Notebook|01/13|
|131|[wolfparticle/machineLearningDeepLearning](https://github.com/wolfparticle/machineLearningDeepLearning)|李宏毅2021机器学习深度学习笔记PPT作业|172|Jupyter Notebook|06/14|
|132|[brain-zhang/xianglong](https://github.com/brain-zhang/xianglong)|资产配置方案|169|Jupyter Notebook|05/26|
|133|[zwq2018/AI_UAV](https://github.com/zwq2018/AI_UAV)|在人工智能、机器视觉、高精度导航定位和多传感器融合等技术的助推下,众多行业迎来了前所未有的发展机遇,人工智能+无人机(AI+UAV)正是一个具有无限想象力的应用方向。|168|Jupyter Notebook|06/09|
|134|[yatengLG/Focal-Loss-Pytorch](https://github.com/yatengLG/Focal-Loss-Pytorch)|全中文注释.(The loss function of retinanet based on pytorch).(You can use it on one-stage detection task or classifical task, to solve data imbalance influence).用于one-stage目标检测算法,提升检测效果.你也可以在分类任务中使用该损失函数,解决数据不平衡问题.|166|Jupyter Notebook|09/29|
|135|[Relph1119/MachineLearning-WatermelonBook](https://github.com/Relph1119/MachineLearning-WatermelonBook)|周志华-机器学习|164|Jupyter Notebook|04/16|
|136|[fire717/Machine-Learning](https://github.com/fire717/Machine-Learning)|机器学习&深度学习资料笔记&基本算法实现&资源整理(ML / CV / NLP / DM...)|158|Jupyter Notebook|06/28|
|137|[hhaAndroid/yolov5-comment](https://github.com/hhaAndroid/yolov5-comment)|yolov5的注释版本|156|Jupyter Notebook|12/25|
|138|[kuhung/SSD_keras](https://github.com/kuhung/SSD_keras)|简明 SSD 目标检测模型 keras version(交通标志识别 训练部分见 dev 分支)|154|Jupyter Notebook|03/28|
|139|[datawhalechina/fantastic-matplotlib](https://github.com/datawhalechina/fantastic-matplotlib)|Matplotlib中文教程,在线阅读地址:敬请期待全新网站|154|Jupyter Notebook|06/29|
|140|[jiayiwang5/Chinese-ChatBot](https://github.com/jiayiwang5/Chinese-ChatBot)|中文聊天机器人,基于10万组对白训练而成,采用注意力机制,对一般问题都会生成一个有意义的答复。已上传模型,可直接运行,跑不起来直播吃键盘。|150|Jupyter Notebook|06/09|
|141|[Harry3W/readata](https://github.com/Harry3W/readata)|Python数据分析实战项目汇总~|148|Jupyter Notebook|04/02|
|142|[Mryangkaitong/python-Machine-learning](https://github.com/Mryangkaitong/python-Machine-learning)|机器学习算法项目|148|Jupyter Notebook|05/13|
|143|[jlff/tf2_notes](https://github.com/jlff/tf2_notes)|(Unoffical)人工智能实践:Tensorflow笔记|146|Jupyter Notebook|05/08|
|144|[kingname/SourceCodeofMongoRedis](https://github.com/kingname/SourceCodeofMongoRedis)|《左手MongoDB,右手Redis——从入门到商业实战》书籍配套源代码。|146|Jupyter Notebook|03/20|
|145|[PhilosopherZ/Meteorological-Books](https://github.com/PhilosopherZ/Meteorological-Books)|气象相关书籍合集(持续更新)|145|Jupyter Notebook|04/25|
|146|[lsh1994/tianchiorgame](https://github.com/lsh1994/tianchiorgame)|天池比赛,kaggle等等(Keras/PyTorch实战)|144|Jupyter Notebook|08/09|
|147|[zhongqiangwu960812/AI-RecommenderSystem](https://github.com/zhongqiangwu960812/AI-RecommenderSystem)|该仓库尝试整理推荐系统领域的一些经典算法模型|144|Jupyter Notebook|07/03|
|148|[zake7749/Gossiping-Chinese-Corpus](https://github.com/zake7749/Gossiping-Chinese-Corpus)|PTT 八卦版問答中文語料|143|Jupyter Notebook|01/18|
|149|[Wakinguup/Underwater_detection](https://github.com/Wakinguup/Underwater_detection)|2020年全国水下机器人(湛江)大赛|140|Jupyter Notebook|04/14|
|150|[wangyingsm/Python-Data-Science-Handbook](https://github.com/wangyingsm/Python-Data-Science-Handbook)|A Chinese translation of Jake Vanderplas' "Python Data Science Handbook". 《Python数据科学手册》在线Jupyter notebook中文翻译|137|Jupyter Notebook|05/18|
|151|[duoergun0729/adversarial_examples](https://github.com/duoergun0729/adversarial_examples)|对抗样本|136|Jupyter Notebook|06/09|
|152|[gengyanlei/reflective-clothes-detect-yolov5](https://github.com/gengyanlei/reflective-clothes-detect-yolov5)|reflective-clothes-detect-dataset、helemet detection yolov5、工作服(反光衣)检测数据集、安全帽检测、施工人员穿戴检测|136|Jupyter Notebook|07/02|
|153|[wererLinC/Machine_Learning](https://github.com/wererLinC/Machine_Learning)|参考了西瓜书,sklearn源码,李航统计学,机器学习实战、机器学习中的数学|133|Jupyter Notebook|03/27|
|154|[GiantPandaCV/yolov3-point](https://github.com/GiantPandaCV/yolov3-point)|从零开始学习YOLOv3教程解读代码+注意力模块(SE,SPP,RFB etc)|133|Jupyter Notebook|12/10|
|155|[Relph1119/deeplearning-with-tensorflow-notes](https://github.com/Relph1119/deeplearning-with-tensorflow-notes)|龙曲良《TensorFlow深度学习》学习笔记及代码,采用TensorFlow2.0.0版本|131|Jupyter Notebook|04/18|
|156|[seaniezhao/torch_npss](https://github.com/seaniezhao/torch_npss)|pytorch implementation of Neural Parametric Singing Synthesizer 歌声合成|124|Jupyter Notebook|03/25|
|157|[d2l-ai/d2l-zh-pytorch-slides](https://github.com/d2l-ai/d2l-zh-pytorch-slides)|Pytorch版代码幻灯片|124|Jupyter Notebook|07/09|
|158|[mepeichun/Efficient-Neural-Network-Bilibili](https://github.com/mepeichun/Efficient-Neural-Network-Bilibili)|B站Efficient-Neural-Network学习分享的配套代码|123|Jupyter Notebook|11/27|
|159|[makelove/Programer_Log](https://github.com/makelove/Programer_Log)|最新动态在这里【我的程序员日志】|122|Jupyter Notebook|07/04|
|160|[FontTian/hyperopt-doc-zh](https://github.com/FontTian/hyperopt-doc-zh)|Github开源项目hyperopt系列的中文文档,以及学习教程等|120|Jupyter Notebook|03/13|
|161|[dengxiuqi/WeiboSentiment](https://github.com/dengxiuqi/WeiboSentiment)|基于各种机器学习和深度学习的中文微博情感分析|118|Jupyter Notebook|06/07|
|162|[airxiechao/simple-car-plate-recognition](https://github.com/airxiechao/simple-car-plate-recognition)|简单车牌识别-Mask_RCNN定位车牌+手写方法分割字符+CNN单个字符识别|117|Jupyter Notebook|11/21|
|163|[GenTang/intro_ds_wy_course](https://github.com/GenTang/intro_ds_wy_course)|《精通数据科学:从线性回归到深度学习》视频课程的配套资料|116|Jupyter Notebook|02/16|
|164|[datawhalechina/team-learning-cv](https://github.com/datawhalechina/team-learning-cv)|主要存储Datawhale组队学习中“计算机视觉”方向的资料。|114|Jupyter Notebook|02/23|
|165|[aipredict/ai-deployment](https://github.com/aipredict/ai-deployment)|关注AI模型上线、模型部署|113|Jupyter Notebook|07/02|
|166|[peiss/ant-learn-recsys](https://github.com/peiss/ant-learn-recsys)|推荐系统从入门到实战|112|Jupyter Notebook|08/06|
|167|[sangyx/d2l-torch](https://github.com/sangyx/d2l-torch)|《动手学深度学习》 PyTorch 版本|112|Jupyter Notebook|02/09|
|168|[d2l-ai/courses-zh-v2](https://github.com/d2l-ai/courses-zh-v2)|中文版 v2 课程|111|Jupyter Notebook|05/14|
|169|[ShusenTang/BDC2019](https://github.com/ShusenTang/BDC2019)|2019中国高校计算机大赛——大数据挑战赛 第三名解决方案|111|Jupyter Notebook|02/16|
|170|[fancyerii/deep_learning_theory_and_practice](https://github.com/fancyerii/deep_learning_theory_and_practice)|《深度学习理论与实战:基础篇》代码|110|Jupyter Notebook|06/08|
|171|[BackyardofAbela/EnsembleLearning](https://github.com/BackyardofAbela/EnsembleLearning)|包括决策树和随机森林进行离职人员预测,Xgboost和lightGBM的应用|109|Jupyter Notebook|04/17|
|172|[Dylanin1999/Tensorflow2.0](https://github.com/Dylanin1999/Tensorflow2.0)|学习笔记代码|108|Jupyter Notebook|03/25|
|173|[BraveY/AI-with-code](https://github.com/BraveY/AI-with-code)|AI学习过程中的实操代码|108|Jupyter Notebook|07/18|
|174|[liuhuanshuo/zaoqi-data](https://github.com/liuhuanshuo/zaoqi-data)|公众号:可视化图鉴|107|Jupyter Notebook|05/17|
|175|[JokerJohn/bilibli_notes2](https://github.com/JokerJohn/bilibli_notes2)|攻城狮之家B站视频课程课件合集2,1号仓库https://github.com/JokerJohn/bilibili_notes.git|107|Jupyter Notebook|10/14|
|176|[nmcdev/meteva](https://github.com/nmcdev/meteva)|提供气象产品检验相关程序|106|Jupyter Notebook|07/07|
|177|[huanghao128/zh-nlp-demo](https://github.com/huanghao128/zh-nlp-demo)|自然语言处理NLP在中文文本上的一些应用,如文本分类、情感分析、命名实体识别等|105|Jupyter Notebook|04/30|
|178|[JackonYang/paper-reading](https://github.com/JackonYang/paper-reading)|比做算法的懂工程落地,比做工程的懂算法模型。|103|Jupyter Notebook|06/09|
|179|[azy1988/ML-CV](https://github.com/azy1988/ML-CV)|机器学习实战|100|Jupyter Notebook|06/09|
|180|[hudengjunai/DeepEmbeding](https://github.com/hudengjunai/DeepEmbeding)|图像检索和向量搜索,similarity learning,compare deep metric and deep-hashing applying in image retrieval|94|Jupyter Notebook|05/03|
|181|[fly51fly/Principle_of_Web_Search_2020](https://github.com/fly51fly/Principle_of_Web_Search_2020)|北邮《网络搜索原理》课程(2020)|94|Jupyter Notebook|12/16|
|182|[wanyueli/DeepLizard-pytorch-](https://github.com/wanyueli/DeepLizard-pytorch-)|自己总结的DeepLizard的pytorch神经网络编程系列视频的笔记(非官方)|93|Jupyter Notebook|05/08|
|183|[Bil369/MaskDetect-YOLOv4-PyTorch](https://github.com/Bil369/MaskDetect-YOLOv4-PyTorch)|基于PyTorch&YOLOv4实现的口罩佩戴检测 :star: 自建口罩数据集分享|92|Jupyter Notebook|12/02|
|184|[dsh0416/quantum-i-ching](https://github.com/dsh0416/quantum-i-ching)|A Quantum 爻 System Implementation for Divination |92|Jupyter Notebook|05/18|
|185|[Wasim37/machine_learning_code](https://github.com/Wasim37/machine_learning_code)|机器学习与深度学习算法示例|91|Jupyter Notebook|07/07|
|186|[0809zheng/CS231n-assignment2019](https://github.com/0809zheng/CS231n-assignment2019)|CS231n 2019年春季学期课程作业|90|Jupyter Notebook|06/09|
|187|[plouto-quants/FBDQA-2019A](https://github.com/plouto-quants/FBDQA-2019A)|金融大数据量化分析|89|Jupyter Notebook|04/26|
|188|[yinizhilian/nlp-materials-share](https://github.com/yinizhilian/nlp-materials-share)|自然语言处理NLP(自然语言生成NLG、自然语言理解NLU)、自然语言学术会议大盘点、自然语言大佬介绍、NLP研究机构、NLP资料分享、NLP学习资源分享、NLP学术论文介绍|86|Jupyter Notebook|08/15|
|189|[blmoistawinde/hello_world](https://github.com/blmoistawinde/hello_world)|博客文章开源代码分享区|85|Jupyter Notebook|01/16|
|190|[YQGong/NN_From_Scratch](https://github.com/YQGong/NN_From_Scratch)|B站视频系列-从零开始的神经网络|83|Jupyter Notebook|03/02|
|191|[kangyishuai/NEWS-TEXT-CLASSIFICATION](https://github.com/kangyishuai/NEWS-TEXT-CLASSIFICATION)|零基础入门NLP - 新闻文本分类 正式赛第一名方案|82|Jupyter Notebook|09/10|
|192|[czczup/UrbanRegionFunctionClassification](https://github.com/czczup/UrbanRegionFunctionClassification)|第五届百度西安交大大数据竞赛 城市区域功能分类 Baseline|81|Jupyter Notebook|06/20|
|193|[fenghaotong/MachineLearning](https://github.com/fenghaotong/MachineLearning)|机器学习有关算法和实例|80|Jupyter Notebook|12/12|
|194|[batermj/data_sciences_campaign](https://github.com/batermj/data_sciences_campaign)|【数据科学家系列课程】|80|Jupyter Notebook|07/08|
|195|[CodingChaozhang/Deep-Learning](https://github.com/CodingChaozhang/Deep-Learning)|深度学习的实战项目|79|Jupyter Notebook|07/27|
|196|[xuwening/blog](https://github.com/xuwening/blog)|对过往做做总结|77|Jupyter Notebook|07/05|
|197|[zhuyuanxiang/NLTK-Python-CN](https://github.com/zhuyuanxiang/NLTK-Python-CN)|创建《Python自然语言处理》学习代码的中文注释版本。|76|Jupyter Notebook|05/21|
|198|[s974534426/easytorch](https://github.com/s974534426/easytorch)| 基于Python的numpy实现的简易深度学习框架,包括自动求导、优化器、layer等的实现。|76|Jupyter Notebook|04/17|
|199|[FLyingLSJ/Computer_Vision_Project](https://github.com/FLyingLSJ/Computer_Vision_Project)|计算机视觉项目实战|75|Jupyter Notebook|02/27|
|200|[GitLanx/Python-note](https://github.com/GitLanx/Python-note)|《Python 学习手册》(第四版 + 第五版)笔记|75|Jupyter Notebook|09/21|
⬆ [回到目录](#目录)
<br/>
## Shell
|#|Repository|Description|Stars|Language|Updated|
|:-|:-|:-|:-|:-|:-|
|1|[shengxinjing/programmer-job-blacklist](https://github.com/shengxinjing/programmer-job-blacklist)|:see_no_evil:程序员找工作黑名单,换工作和当技术合伙人需谨慎啊 更新有赞|27.1k|Shell|12/23|
|2|[233boy/v2ray](https://github.com/233boy/v2ray)|最好用的 V2Ray 一键安装脚本 & 管理脚本|14.4k|Shell|07/03|
|3|[taizilongxu/interview_python](https://github.com/taizilongxu/interview_python)|关于Python的面试题|14.2k|Shell|03/03|
|4|[rootsongjc/kubernetes-handbook](https://github.com/rootsongjc/kubernetes-handbook)|Kubernetes中文指南/云原生应用架构实践手册 - https://jimmysong.io/kubernetes-handbook|8.7k|Shell|07/08|
|5|[EtherDream/jsproxy](https://github.com/EtherDream/jsproxy)|一个基于浏览器端 JS 实现的在线代理|8.4k|Shell|03/24|
|6|[judasn/Linux-Tutorial](https://github.com/judasn/Linux-Tutorial)|《Java 程序员眼中的 Linux》|7.6k|Shell|07/05|
|7|[skywind3000/awesome-cheatsheets](https://github.com/skywind3000/awesome-cheatsheets)|超级速查表 - 编程语言、框架和开发工具的速查表,单个文件包含一切你需要知道的东西 :zap:|7.3k|Shell|07/07|
|8|[wulabing/Xray_onekey](https://github.com/wulabing/Xray_onekey)|Xray 基于 Nginx 的 VLESS + XTLS 一键安装脚本 |6.6k|Shell|07/08|
|9|[opsnull/follow-me-install-kubernetes-cluster](https://github.com/opsnull/follow-me-install-kubernetes-cluster)|和我一步步部署 kubernetes 集群|6.4k|Shell|06/04|
|10|[HIT-Alibaba/interview](https://github.com/HIT-Alibaba/interview)|笔试面试知识整理|4.7k|Shell|08/31|
|11|[ToyoDAdoubi/doubi](https://github.com/ToyoDAdoubi/doubi)|一个逗比写的各种逗比脚本~|4.1k|Shell|10/20|
|12|[softwaredownload/openwrt-fanqiang](https://github.com/softwaredownload/openwrt-fanqiang)|最好的路由器翻墙、科学上网教程—OpenWrt—shadowsocks|4.0k|Shell|10/23|
|13|[P3TERX/Actions-OpenWrt](https://github.com/P3TERX/Actions-OpenWrt)|A template for building OpenWrt with GitHub Actions 使用 GitHub Actions 云编译 OpenWrt|3.9k|Shell|07/08|
|14|[gfw-breaker/ssr-accounts](https://github.com/gfw-breaker/ssr-accounts)|V2Ray, 免费V2Ray账号分享, 翻墙,无界, 自由门, SquirrelVPN, SS账号, 机场|3.7k|Shell|06/28|
|15|[Medicean/VulApps](https://github.com/Medicean/VulApps)|快速搭建各种漏洞环境(Various vulnerability environment)|3.2k|Shell|10/27|
|16|[wangdoc/javascript-tutorial](https://github.com/wangdoc/javascript-tutorial)|JavaScript 教程 https://wangdoc.com/javascript|2.9k|Shell|06/24|
|17|[wangdoc/bash-tutorial](https://github.com/wangdoc/bash-tutorial)|Bash 教程|2.9k|Shell|06/30|
|18|[mack-a/v2ray-agent](https://github.com/mack-a/v2ray-agent)|(VLESS+TCP+TLS/VLESS+TCP+XTLS/VLESS+gRPC+TLS/VLESS+WS+TLS/VMess+TCP+TLS/VMess+WS+TLS/Trojan+TCP+TLS/Trojan+gRPC+TLS/Trojan+TCP+XTLS)+伪装站点、八合一共存脚本,支持多内核安装|2.8k|Shell|07/04|
|19|[lmk123/oh-my-wechat](https://github.com/lmk123/oh-my-wechat)|微信小助手的安装 / 更新工具。|2.7k|Shell|06/29|
|20|[klever1988/nanopi-openwrt](https://github.com/klever1988/nanopi-openwrt)|Openwrt for Nanopi R1S R2S R4S 香橙派 R1 Plus 固件编译 纯净版与大杂烩|2.5k|Shell|07/08|
|21|[fengyuhetao/shell](https://github.com/fengyuhetao/shell)|Linux命令行与shell脚本编程大全案例|2.5k|Shell|12/07|
|22|[CyC2018/Job-Recommend](https://github.com/CyC2018/Job-Recommend)|🔎 互联网内推信息(社招、校招、实习)|2.3k|Shell|11/04|
|23|[hoochanlon/fq-book](https://github.com/hoochanlon/fq-book)|📖《这本书能让你连接互联网》详细阐述代理、隧道、VPN运作过程,并对GFW策略如:地址端口封锁、服务器缓存投毒、数字验证攻击、SSL连接阻断做相关的原理说明|2.3k|Shell|03/13|
|24|[wind-liang/leetcode](https://github.com/wind-liang/leetcode)|leetcode 顺序刷题,详细通俗题解,with JAVA|2.1k|Shell|07/07|
|25|[licess/lnmp](https://github.com/licess/lnmp)|LNMP一键安装包是一个用Linux Shell编写的可以为CentOS/RHEL/Fedora/Aliyun/Amazon、Debian/Ubuntu/Raspbian/Deepin/Mint Linux VPS或独立主机安装LNMP(Nginx/MySQL/PHP)、LNMPA(Nginx/MySQL/PHP/Apache)、LAMP(Apache/MySQL/PHP)生产环境的Shell程序。|2.0k|Shell|07/06|
|26|[looly/elasticsearch-definitive-guide-cn](https://github.com/looly/elasticsearch-definitive-guide-cn)|Elasticsearch权威指南中文版|2.0k|Shell|07/14|
|27|[hijkpw/scripts](https://github.com/hijkpw/scripts)|Shadowsocks/SS一键脚本、ShadowsocksR/SSR一键脚本、V2Ray一键脚本、trojan一键脚本、VPS教程|1.9k|Shell|06/23|
|28|[apachecn/ai-roadmap](https://github.com/apachecn/ai-roadmap)|ApacheCN AI 路线图(知识树)|1.8k|Shell|01/02|
|29|[LCTT/TranslateProject](https://github.com/LCTT/TranslateProject)|Linux中国翻译项目|1.8k|Shell|07/09|
|30|[neoFelhz/neohosts](https://github.com/neoFelhz/neohosts)|自由·负责·克制 去广告 Hosts 项目|1.5k|Shell|06/14|
|31|[P3TERX/aria2.conf](https://github.com/P3TERX/aria2.conf)|Aria2 配置文件 OneDrive & Google Drvive 离线下载 百度网盘转存|1.5k|Shell|07/04|
|32|[P3TERX/aria2.sh](https://github.com/P3TERX/aria2.sh)|Aria2 一键安装管理脚本 增强版|1.5k|Shell|12/26|
|33|[zfl9/ss-tproxy](https://github.com/zfl9/ss-tproxy)|搭建 SS/SSR/V2Ray/Socks5 透明代理环境的简易脚本|1.5k|Shell|04/25|
|34|[bclswl0827/v2ray-heroku](https://github.com/bclswl0827/v2ray-heroku)|用于在 Heroku 上部署 V2Ray WebSocket。|1.4k|Shell|07/08|
|35|[c0ny1/vulstudy](https://github.com/c0ny1/vulstudy)|使用docker快速搭建各大漏洞靶场,目前可以一键搭建17个靶场。|1.4k|Shell|03/25|
|36|[gaoyifan/china-operator-ip](https://github.com/gaoyifan/china-operator-ip)|中国运营商IPv4/IPv6地址库-每日更新|1.4k|Shell|06/09|
|37|[maxlicheng/luci-app-unblockmusic](https://github.com/maxlicheng/luci-app-unblockmusic)|用于解锁网易云灰色歌曲的OpenWRT/LEDE路由器插件 (openwrt/lede luci support for unblock neteasecloudmusic)|1.3k|Shell|05/01|
|38|[studygolang/GCTT](https://github.com/studygolang/GCTT)|GCTT Go中文网翻译组。|1.3k|Shell|06/07|
|39|[devdawei/libstdc-](https://github.com/devdawei/libstdc-)|Xcode 10、11 和 12 中删除的 libstdc++ 库|1.3k|Shell|02/18|
|40|[aqzt/kjyw](https://github.com/aqzt/kjyw)|快捷运维,代号kjyw,项目基于shell、python,运维脚本工具库,收集各类运维常用工具脚本,实现快速安装nginx、mysql、php、redis、nagios、运维经常使用的脚本等等...|1.2k|Shell|11/08|
|41|[duguying/parsing-techniques](https://github.com/duguying/parsing-techniques)|📕 parsing techniques 中文译本——《解析技术》|1.2k|Shell|02/05|
|42|[MvsCode/frps-onekey](https://github.com/MvsCode/frps-onekey)| Frps 一键安装脚本&管理脚本 A tool to auto-compile & install frps on Linux|1.2k|Shell|06/03|
|43|[johnrosen1/vpstoolbox](https://github.com/johnrosen1/vpstoolbox)|最强一键脚本,一键安装Trojan-GFW代理,Hexo博客,Nextcloud等應用程式。|1.2k|Shell|07/08|
|44|[lan-tianxiang/JS_TOOL](https://github.com/lan-tianxiang/JS_TOOL)|Node网页开发工具|1.1k|Shell|07/09|
|45|[liuyi01/kubernetes-starter](https://github.com/liuyi01/kubernetes-starter)|kubernetes入门,包括kubernetes概念,架构设计,集群环境搭建,认证授权等。|1.1k|Shell|05/07|
|46|[huan/docker-wechat](https://github.com/huan/docker-wechat)|DoChat is a Dockerized WeChat (盒装微信) PC Windows Client for Linux|1.1k|Shell|04/13|
|47|[yakumioto/YaHei-Consolas-Hybrid-1.12](https://github.com/yakumioto/YaHei-Consolas-Hybrid-1.12)|YaHei Consolas Hybrid 字体|1.0k|Shell|09/23|
|48|[jinwyp/one_click_script](https://github.com/jinwyp/one_click_script)|一键安装 trojan v2ray xray. Install v2ray / xray (VLESS) and trojan (trojan-go) script|1.0k|Shell|07/01|
|49|[ben1234560/k8s_PaaS](https://github.com/ben1234560/k8s_PaaS)|如何基于K8s(Kubernetes)部署成PaaS/DevOps(一套完整的软件研发和部署平台)--教程/学习(实战代码/欢迎讨论/大量注释/操作配图),你将习得部署如:K8S(Kubernetes)、dashboard、Harbor、Jenkins、本地gitlab、Apollo框架、promtheus、grafana、spinnaker等。|950|Shell|05/20|
|50|[ToyoDAdoubiBackup/doubi](https://github.com/ToyoDAdoubiBackup/doubi)|一个逗比写的各种逗比脚本~|875|Shell|05/18|
|51|[liquanzhou/ops_doc](https://github.com/liquanzhou/ops_doc)|运维简洁实用手册|861|Shell|06/02|
|52|[hellofwy/ss-bash](https://github.com/hellofwy/ss-bash)|Shadowsocks流量管理脚本|858|Shell|02/22|
|53|[arloor/iptablesUtils](https://github.com/arloor/iptablesUtils)|iptables转发ddns域名|855|Shell|12/15|
|54|[goreliu/zshguide](https://github.com/goreliu/zshguide)|Zsh 开发指南|803|Shell|06/02|
|55|[gfw-breaker/nogfw](https://github.com/gfw-breaker/nogfw)|一键翻墙软件,包含自由门、无界、Shadowsocks等 翻墙教程|795|Shell|06/11|
|56|[xiaoZ-hc/redtool](https://github.com/xiaoZ-hc/redtool)|日常积累的一些红队工具及自己写的脚本,更偏向于一些diy的好用的工具,并不是一些比较常用的msf/awvs/xray这种|784|Shell|06/01|
|57|[xuexb/learn-nginx](https://github.com/xuexb/learn-nginx)|Nginx 入门指南|737|Shell|08/10|
|58|[tinyclub/open-c-book](https://github.com/tinyclub/open-c-book)|开源书籍:《C语言编程透视》,配套视频课程《360° 剖析 Linux ELF》已上线,视频讲解更为系统和深入,欢迎订阅:https://www.cctalk.com/m/group/88089283|726|Shell|03/10|
|59|[esirplayground/AutoBuild-OpenWrt](https://github.com/esirplayground/AutoBuild-OpenWrt)|Build OpenWrt using GitHub Actions 使用 GitHub Actions 编译 OpenWrt 感谢P3TERX的项目源码 感谢KFERMercer的项目源码|710|Shell|07/07|
|60|[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|699|Shell|08/22|
|61|[hongwenjun/vps_setup](https://github.com/hongwenjun/vps_setup)|linux vim bash 脚本学习笔记 by 蘭雅sRGB https://262235.xyz/|697|Shell|07/06|
|62|[aikuyun/iterm2-zmodem](https://github.com/aikuyun/iterm2-zmodem)|在 Mac 下,实现与服务器进行便捷的文件上传和下载操作|680|Shell|11/17|
|63|[godbasin/vue-ebook](https://github.com/godbasin/vue-ebook)|《深入理解Vue.js实战》- 介绍Vue.js框架的出现、设计和使用,结合实战让读者更深入理解Vue.js框架,掌握使用方法。|678|Shell|04/19|
|64|[insightglacier/Dictionary-Of-Pentesting](https://github.com/insightglacier/Dictionary-Of-Pentesting)|Dictionary collection project such as Pentesing, Fuzzing, Bruteforce and BugBounty. 渗透测试、SRC漏洞挖掘、爆破、Fuzzing等字典收集项目。|662|Shell|06/24|
|65|[tonydeng/sdn-handbook](https://github.com/tonydeng/sdn-handbook)|SDN手册|655|Shell|06/26|
|66|[IvanSolis1989/OpenWrt-DIY](https://github.com/IvanSolis1989/OpenWrt-DIY)| 多设备 OpenWrt Aciton 固件云编译——X86、竞斗云、极路由 B70、K2T、K2P、K3、N1、红米 AC2100、Newifi D2、树莓派、小娱 C5、R2S、R4S、小米 R3G、小米 R3P、小米 Mini、网件 R7800、星际宝盒 CM520、Amlogic S905X3、OrangePi Zero Plus、网件 3800、Linksys Wrt1900acs、Linksys Wrt3200acm、Linksys Wrt32x——(QQ群:1130190364)|652|Shell|07/04|
|67|[rime/plum](https://github.com/rime/plum)|東風破 /plum/: Rime configuration manager and input schema repository|649|Shell|03/11|
|68|[al0ne/LinuxCheck](https://github.com/al0ne/LinuxCheck)|linux系统自动化应急响应工具,支持基础配置/网络流量/任务计划/环境变量/用户信息/Services/bash/恶意文件/内核Rootkit/SSH/Webshell/挖矿文件/挖矿进程检查等12类70项检查|637|Shell|06/22|
|69|[YG-tsj/CFWarp-Pro](https://github.com/YG-tsj/CFWarp-Pro)|仅支持"内核集成"模式的WARP多功能脚本(支持ARM/X86):纯IPV4、纯IPV6、双栈IPV4+IPV6 各种VPS都可用。目前已测试通过oracle(甲骨文云),gpc(谷歌云),buyvm,racknerd,virmach,vultr,aws(亚马逊云),azure(微软云),bandwagonhost(搬瓦工)……欢迎大家补充反馈!|617|Shell|07/08|
|70|[skyline75489/Heart-First-JavaWeb](https://github.com/skyline75489/Heart-First-JavaWeb)|一个走心的 Java Web 入门开发教程|616|Shell|03/20|
|71|[dunwu/linux-tutorial](https://github.com/dunwu/linux-tutorial)|:penguin: Linux教程,主要内容:Linux 命令、Linux 系统运维、软件运维、精选常用Shell脚本|609|Shell|05/13|
|72|[apachecn/awesome-indie-zh](https://github.com/apachecn/awesome-indie-zh)|独立开发/自由职业/远程工作资源列表|604|Shell|09/17|
|73|[rehiy/dnspod-shell](https://github.com/rehiy/dnspod-shell)|基于DNSPod用户API实现的纯Shell动态域名客户端|604|Shell|06/29|
|74|[bytesking/AutoPacking-iOS](https://github.com/bytesking/AutoPacking-iOS)|iOS自动打包脚本 多项选择 一行上传指定位置|598|Shell|10/13|
|75|[phlinhng/v2ray-tcp-tls-web](https://github.com/phlinhng/v2ray-tcp-tls-web)|VLESS / Trojan-Go / Shadowsocks 脚本 支持純 IPv6|597|Shell|05/25|
|76|[snail007/proxy_admin_free](https://github.com/snail007/proxy_admin_free)|Proxy是高性能全功能的http代理、https代理、socks5代理、内网穿透、内网穿透p2p、内网穿透代理、内网穿透反向代理、内网穿透服务器、Websocket代理、TCP代理、UDP代理、DNS代理、DNS加密代理,代理API认证,全能跨平台代理服务器。|590|Shell|07/06|
|77|[ctf-wiki/ctf-tools](https://github.com/ctf-wiki/ctf-tools)|CTF 工具集合|579|Shell|02/25|
|78|[wppurking/ocserv-docker](https://github.com/wppurking/ocserv-docker)|用于初始化 ocserv 的 Dockfile 脚本|576|Shell|03/09|
|79|[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.|564|Shell|10/26|
|80|[shgopher/GOFamily](https://github.com/shgopher/GOFamily)|🔥 大厂 BAT 面试高频知识点,后端技术体系。包含了 C GO Python, 网络,Redis ,MySQL ,消息队列 ,高并发,微服务,缓存,操作系统,算法,LeetCode 刷题等知识|545|Shell|07/06|
|81|[V2RaySSR/Trojan](https://github.com/V2RaySSR/Trojan)|Trojan 一键安装脚本|544|Shell|11/23|
|82|[zhonghuasheng/Tutorial](https://github.com/zhonghuasheng/Tutorial)|Java全栈知识架构体系总结|543|Shell|07/09|
|83|[Nick233333/phper-linux-gitbook](https://github.com/Nick233333/phper-linux-gitbook)|💡PHPer 必知必会的 Linux 命令|541|Shell|04/21|
|84|[woniuzfb/iptv](https://github.com/woniuzfb/iptv)|一键安装管理 FFmpeg / nginx / openresty / xray / v2ray / armbian / proxmox ve / cloudflare partner,workers / ibm cloud foundry 脚本|540|Shell|06/16|
|85|[EtherDream/anti-portscan](https://github.com/EtherDream/anti-portscan)|使用 iptables 防止端口扫描|502|Shell|10/22|
|86|[Hagb/docker-easyconnect](https://github.com/Hagb/docker-easyconnect)|使深信服(Sangfor)开发的非自由的代理软件 EasyConnect 运行在 docker 中,并提供 socks5 服务|487|Shell|07/04|
|87|[colourful987/bytedance-alibaba-interview](https://github.com/colourful987/bytedance-alibaba-interview)|阿里、字节 一套高效的iOS面试题解答|476|Shell|07/07|
|88|[HBLong/channel_v3_daily](https://github.com/HBLong/channel_v3_daily)|每天定时更新channel_v3.json,解决 Sublime Text 3 拓展包源无法访问问题,fix the problem that can not access packagecontrol.io|472|Shell|08/26|
|89|[EternalPain/ZJL](https://github.com/EternalPain/ZJL)|ZJL 免流防跳脚本|472|Shell|06/08|
|90|[immortalwrt/luci-app-unblockneteasemusic](https://github.com/immortalwrt/luci-app-unblockneteasemusic)|[OpenWrt] 解除网易云音乐播放限制|472|Shell|07/05|
|91|[TheKingOfDuck/ApkAnalyser](https://github.com/TheKingOfDuck/ApkAnalyser)|一键提取安卓应用中可能存在的敏感信息。|460|Shell|01/05|
|92|[kirin10000/Xray-script](https://github.com/kirin10000/Xray-script)|Xray:(VLESS/VMess)-(TCP/gRPC/WebSocket)-(XTLS/TLS)+Web 搭建/管理脚本|449|Shell|07/07|
|93|[QAX-A-Team/WeblogicEnvironment](https://github.com/QAX-A-Team/WeblogicEnvironment)|Weblogic环境搭建工具|446|Shell|04/23|
|94|[jaywcjlove/docker-tutorial](https://github.com/jaywcjlove/docker-tutorial)|🐳Docker入门学习笔记|443|Shell|05/10|
|95|[felix-fly/v2ray-openwrt](https://github.com/felix-fly/v2ray-openwrt)|路由器Openwrt手工/脚本/ipk包安装V2ray简单流程|437|Shell|06/25|
|96|[apachecn/awesome-cs-courses-zh](https://github.com/apachecn/awesome-cs-courses-zh)|计算机公开课推荐|422|Shell|09/17|
|97|[wangdoc/es6-tutorial](https://github.com/wangdoc/es6-tutorial)|一本开源的 JavaScript 语言教程,全面介绍 ECMAScript 6 新引入的语法特性。|414|Shell|05/24|
|98|[zhangguanzhang/Kubernetes-ansible](https://github.com/zhangguanzhang/Kubernetes-ansible)|:christmas_tree:ansible多网卡机器上一键部署高可用Kubernetes(systemd)|412|Shell|08/18|
|99|[andyzhshg/syno-acme](https://github.com/andyzhshg/syno-acme)|通过acme协议更新群晖HTTPS泛域名证书的自动脚本|410|Shell|01/08|
|100|[neodevpro/neodevhost](https://github.com/neodevpro/neodevhost)| The Powerful Friendly Uptodate AD Blocking Hosts 最新强大而友善的去广告|405|Shell|06/08|
|101|[sprov065/soga](https://github.com/sprov065/soga)|soga 后端,支持 VMess、VLESS、Trojan、ss、ssr,大幅优化内存占用,支持sspanel-uim、v2board、VNetPanel、WHMCS、ProxyPanel 等面板|403|Shell|07/07|
|102|[ffffffff0x/f8x](https://github.com/ffffffff0x/f8x)|红/蓝队环境自动化部署工具|403|Shell|07/05|
|103|[1orz/My-action](https://github.com/1orz/My-action)|自动编译-无人值守Auto release base on Github actions|402|Shell|06/17|
|104|[lightyearvpn/LightyearVPN](https://github.com/lightyearvpn/LightyearVPN)|翻墙,科学上网,梯子,VPN,加速器,外网,代理,路由,防火墙,GFW,VPN下载。支持UDP,游戏必备。免费VPN试用,全球部署Trojan节点,Shadowsocks节点,V2ray节点。提供免费SS节点和。|400|Shell|06/27|
|105|[csy512889371/learnDoc](https://github.com/csy512889371/learnDoc)|🔥:rocket:架构师的成长之路-博客-导图|400|Shell|08/13|
|106|[rootsongjc/istio-handbook](https://github.com/rootsongjc/istio-handbook)|Istio Handbook(Istio 服务网格进阶实战)- https://jimmysong.io/istio-handbook|393|Shell|04/30|
|107|[lovezzzxxx/liverecord](https://github.com/lovezzzxxx/liverecord)|自动录播并自动备份,支持youtube频道、twitcast频道、twitch频道、openrec频道、niconico生放送、niconico社区、niconico频道、mirrativ频道、reality频道、17live频道、bilibili频道、streamlink支持的直播网址、ffmpeg支持的m3u8地址|391|Shell|06/23|
|108|[laishulu/Sarasa-Mono-SC-Nerd](https://github.com/laishulu/Sarasa-Mono-SC-Nerd)|简体中文等距更纱黑体+Nerd图标字体库。中英文宽度完美2:1,图标长宽经过调整,不会出现对齐问题,尤其适合作为终端字体。|376|Shell|01/08|
|109|[songchenwen/nanopi-r2s](https://github.com/songchenwen/nanopi-r2s)|Openwrt for Nanopi R2S 固件编译|373|Shell|09/15|
|110|[JinjunHan/iOSDeviceSupport](https://github.com/JinjunHan/iOSDeviceSupport)|各个版本的iOS Device Support|364|Shell|06/10|
|111|[KyleBing/rime-wubi86-jidian](https://github.com/KyleBing/rime-wubi86-jidian)|86五笔极点码表 for Rime (鼠须管 - macOS)(小狼毫 - Windows)五笔输入法|347|Shell|06/23|
|112|[veip007/dd](https://github.com/veip007/dd)|萌咖大佬的Linux 一键DD脚本|346|Shell|06/14|
|113|[yangchuansheng/love-gfw](https://github.com/yangchuansheng/love-gfw)|🔥以社会主义核心价值观为指导思想,实现 Linux 和 MacOS 设备的全局智能分流|338|Shell|08/11|
|114|[CoiaPrant/MediaUnlock_Test](https://github.com/CoiaPrant/MediaUnlock_Test)|流媒体解锁检测|338|Shell|06/16|
|115|[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)|337|Shell|05/29|
|116|[wang-bin/avbuild](https://github.com/wang-bin/avbuild)|ffmpeg花式编译. build tool for all platforms: iOS, android, raspberry pi, win32, uwp, linux, macOS etc.|332|Shell|07/05|
|117|[meetbill/op_practice_book](https://github.com/meetbill/op_practice_book)|📚 《运维实践指南》持续更新中,推荐大牛干货博客 https://me.csdn.net/g2V13ah|328|Shell|06/01|
|118|[h31105/deployX.sh](https://github.com/h31105/deployX.sh)|基于 Docker 容器架构的 Trojan/VLESS/VMess TCP/WS TLS 分流部署&管理脚本|326|Shell|02/04|
|119|[llitfkitfk/docker-tutorial-cn](https://github.com/llitfkitfk/docker-tutorial-cn)|docker 教程 |326|Shell|11/23|
|120|[starnightcyber/Miscellaneous](https://github.com/starnightcyber/Miscellaneous)|百宝箱|321|Shell|12/16|
|121|[ellermister/mtproxy](https://github.com/ellermister/mtproxy)|MTProxyTLS一键安装绿色脚本|320|Shell|05/27|
|122|[WangHL0927/grafana-chinese](https://github.com/WangHL0927/grafana-chinese)|grafana中文版本|314|Shell|07/31|
|123|[zwmscorm/sharealiddns](https://github.com/zwmscorm/sharealiddns)|全功能阿里云域名解析脚本(支持IPV4, IPV6, 多域名等,同时支持asuswrt-merlin 、padavan、pandorabox、lede/openwrt固件)|308|Shell|02/22|
|124|[YG-tsj/EUserv-warp](https://github.com/YG-tsj/EUserv-warp)|EUserv德鸡IPV6 VPS添加WARP双栈IPV6+IPV4、WARP单IPV4一键脚本,针对OpenVZ、LXC架构的IPV6 only VPS|303|Shell|07/06|
|125|[ericwang2006/docker_ttnode](https://github.com/ericwang2006/docker_ttnode)|甜糖星愿|294|Shell|06/26|
|126|[haiwen/seafile-docs-cn](https://github.com/haiwen/seafile-docs-cn)|Seafile服务器用户手册|292|Shell|05/05|
|127|[lxchuan12/blog](https://github.com/lxchuan12/blog)|若川的博客—学习源码整体架构系列多篇,前端面试高频源码,微信搜索「若川视野」关注我,长期交流学习~|288|Shell|06/18|
|128|[cdk8s/cdk8s-team-style](https://github.com/cdk8s/cdk8s-team-style)|寻找志同道合的人,引发自身的思考|285|Shell|07/09|
|129|[cookcodeblog/k8s-deploy](https://github.com/cookcodeblog/k8s-deploy)|使用kubeadm一键部署kubernetes集群|282|Shell|11/09|
|130|[Baiyuetribe/baiyue_onekey](https://github.com/Baiyuetribe/baiyue_onekey)|佰阅部落一键脚本合集工具箱,集合25+优质开源项目,一步到位,全程中文交互提示,不懂代码也可以轻松搭建很多程序|277|Shell|06/17|
|131|[mixool/HiCnUnicom](https://github.com/mixool/HiCnUnicom)|登录 签到 会员任务|276|Shell|04/28|
|132|[2moe/tmoe-linux](https://github.com/2moe/tmoe-linux)|🍭Without any basic knowledge of linux shell,you can easily install and configure a GNU/Linux graphical desktop environment on 📱Android termux and 💻WSL .🍰You can also run VSCode on your android phone.🍹Graphical qemu manager,🐋support running docker on Android.配置WSL和安卓手机的linux容器,桌面环境,主题美化,远程桌面,音频服务,镜像源 ...|270|Shell|07/07|
|133|[shengqiangzhang/Drcom-GDUT-HC5661A-OpenWrt](https://github.com/shengqiangzhang/Drcom-GDUT-HC5661A-OpenWrt)|在Dr.COM下使用路由器上校园网WIFI(以广东工业大学、极路由1S HC5661A、OpenWrt为例)|269|Shell|10/17|
|134|[al0ne/nginx_log_check](https://github.com/al0ne/nginx_log_check)|Nginx日志安全分析脚本|266|Shell|12/25|
|135|[wallace5303/dnnmmp](https://github.com/wallace5303/dnnmmp)|基于docker的开发者集成环境 (docker,nodejs,php,nginx,mongo,mysql,redis等)|263|Shell|08/14|
|136|[swoole/swoole-wiki](https://github.com/swoole/swoole-wiki)|📖Swoole全量Markdown文档, Swoole-Doc, Swoole-Wiki|262|Shell|08/17|
|137|[A-BenMao/pure-bash-bible-zh_CN](https://github.com/A-BenMao/pure-bash-bible-zh_CN)|📖 一个纯bash实现外部命令的脚本集合(中文版)【翻译自pure-bash-bible仓库】|259|Shell|05/06|
|138|[lework/kainstall](https://github.com/lework/kainstall)|Use shell scripts to install kubernetes(k8s) high availability clusters and addon components based on kubeadmin with one click.使用shell脚本基于kubeadmin一键安装kubernetes 高可用集群和addon组件。|258|Shell|06/21|
|139|[guanguans/dnmp-plus](https://github.com/guanguans/dnmp-plus)|🐳Docker的LNMP一键安装开发环境 + PHP非侵入式监控平台xhgui(优化系统性能、定位Bug神器)|254|Shell|06/26|
|140|[Hyy2001X/AutoBuild-Actions](https://github.com/Hyy2001X/AutoBuild-Actions)|使用 Github Actions 编译 Openwrt 在线更新固件|252|Shell|07/08|
|141|[KANIKIG/Multi-EasyGost](https://github.com/KANIKIG/Multi-EasyGost)|致力于最简单好用的GOST小白脚本|249|Shell|04/10|
|142|[a244573118/WeChatIntercept](https://github.com/a244573118/WeChatIntercept)|微信防撤回插件,一键安装,仅MAC可用,支持新版3.0微信|247|Shell|04/30|
|143|[91yun/91yuntest](https://github.com/91yun/91yuntest)|91云服务器一键测试包|245|Shell|05/19|
|144|[whunt1/onekeymakemtg](https://github.com/whunt1/onekeymakemtg)|编译安装最新版 mtproxy-go 一键脚本|244|Shell|06/22|
|145|[openwrtcompileshell/OpenwrtCompileScript](https://github.com/openwrtcompileshell/OpenwrtCompileScript)|Openwrt编译辅助脚本可以帮助你更快的搭建openwrt环境,但不会帮你完成整个编译过程|242|Shell|06/22|
|146|[sensec/ddns-scripts_aliyun](https://github.com/sensec/ddns-scripts_aliyun)|OpenWrt/LEDE DDNS support for aliyun (阿里云)|241|Shell|04/09|
|147|[deyuhua/xv6-book-chinese](https://github.com/deyuhua/xv6-book-chinese)|MIT操作系统工程的教学操作系统Xv6的源码剖析中文翻译项目,使用ANSI标准C重新在riscv架构上实现Unix v6;|239|Shell|02/26|
|148|[diguage/mysql-notes](https://github.com/diguage/mysql-notes)|MySQL 学习笔记|233|Shell|12/17|
|149|[lis912/Evaluation_tools](https://github.com/lis912/Evaluation_tools)|测评工具|230|Shell|03/25|
|150|[Lancenas/actions-openwrt-helloworld](https://github.com/Lancenas/actions-openwrt-helloworld)|Actions使用Lean's lede源码编译含helloworld服务固件|230|Shell|07/07|
|151|[rachpt/AutoSeed](https://github.com/rachpt/AutoSeed)|全自动发种姬 [流程图 https://www.processon.com/view/link/5c088855e4b0ca4b40c93a49 ]|229|Shell|02/28|
|152|[Messiahhh/blog](https://github.com/Messiahhh/blog)|akara的前端笔记|226|Shell|07/07|
|153|[isecret/sspanel-autocheckin](https://github.com/isecret/sspanel-autocheckin)|🚀 SSPanel 流量自动签到脚本|222|Shell|07/02|
|154|[XIU2/Shell](https://github.com/XIU2/Shell)|🐧 自用的一些乱七八糟 Linux 脚本|221|Shell|05/19|
|155|[jgsrty/jgsrty.github.io](https://github.com/jgsrty/jgsrty.github.io)|:sunny: 英语学习 :feet: 项目预览:https://jgsrty.github.io 国内访问:https://rtyxmd.gitee.io|214|Shell|06/29|
|156|[HyperledgerCN/hyperledgerDocs](https://github.com/HyperledgerCN/hyperledgerDocs)|Hyperledger文档|212|Shell|08/28|
|157|[aturl/awesome-anti-gfw](https://github.com/aturl/awesome-anti-gfw)|突破网络审查和封锁的开源工具清单。|212|Shell|04/02|
|158|[PaddlePaddle/FleetX](https://github.com/PaddlePaddle/FleetX)|Paddle Distributed Training Extended. 飞桨分布式训练扩展包|211|Shell|07/08|
|159|[wsydxiangwang/Note](https://github.com/wsydxiangwang/Note)|☔️ 前端学习笔记,JavaScript,TypeScript,Vue,React,CSS,设计模式,数据结构,NodeJS等等。记录只是为了更好的摸鱼,从入门到放弃。|209|Shell|04/13|
|160|[rime/rime-cantonese](https://github.com/rime/rime-cantonese)|Rime Cantonese input schema 粵語拼音輸入方案|209|Shell|07/09|
|161|[Lancger/opslinux](https://github.com/Lancger/opslinux)|Linux运维手册(基础+frp内网穿透+分布式锁+Redis+Kafka+安全+漏洞扫描+Docker+ELFK+LVM+监控+CI/CD+数据库+翻墙+LDAP+MQ+minio对象存储+命令录制审计+IP出口+gmail邮件安全校验+Jaeger 分布式追踪+苹果app安全审核+pps包转发率+网卡多队列均衡等)|205|Shell|06/23|
|162|[tinyclub/elinux](https://github.com/tinyclub/elinux)|嵌入式 Linux 知识库 (elinux.org) 中文翻译计划;本项目发起人发布了《360° 剖析 Linux ELF》视频课程,欢迎订阅:https://www.cctalk.com/m/group/88089283|200|Shell|01/22|
|163|[collabH/repository](https://github.com/collabH/repository)|个人学习知识库涉及到数据仓库建模、实时计算、大数据、Java、算法等。|199|Shell|07/08|
|164|[chusiang/automate-with-ansible](https://github.com/chusiang/automate-with-ansible)|《現代 IT 人一定要知道的 Ansible 自動化組態技巧》|199|Shell|08/28|
|165|[BlueSkyXN/SKY-BOX](https://github.com/BlueSkyXN/SKY-BOX)|BlueSkyXN 综合工具箱 Linux Supported ONLY|198|Shell|06/16|
|166|[V2RaySSR/Tools](https://github.com/V2RaySSR/Tools)|波仔常用的一些工具包|196|Shell|10/10|
|167|[DHDAXCW/NanoPi-R4S-2021](https://github.com/DHDAXCW/NanoPi-R4S-2021)|基于 Lean&Lienol 源码的 NanoPi R4S 的 OpenWrt 固件。每天自动更新插件和内核,Fusion编译法|196|Shell|07/08|
|168|[tianhao/alfred-mweb-workflow](https://github.com/tianhao/alfred-mweb-workflow)|搜索、打开MWeb 内部文档和外部 Markdown 文档|194|Shell|04/27|
|169|[orangbus/Tool](https://github.com/orangbus/Tool)|Manjaro从入门到爱不释手.|191|Shell|06/10|
|170|[Biulink/ShadowsocksTutorials](https://github.com/Biulink/ShadowsocksTutorials)|Shadowsocks教程|191|Shell|08/30|
|171|[h46incon/AliDDNSBash](https://github.com/h46incon/AliDDNSBash)|阿里云域名解析动态更新(DDNS)的 Shell 脚本|188|Shell|07/18|
|172|[tinyclub/cloud-lab](https://github.com/tinyclub/cloud-lab)|Docker based Cloud Lab Center, with noVNC and Gateone attachable LXDE Desktop and SSH Terminal. 本项目作者发布了《360° 剖析 Linux ELF》视频课程,欢迎订阅:https://www.cctalk.com/m/group/88089283|187|Shell|06/03|
|173|[hoochanlon/helpdesk-guide](https://github.com/hoochanlon/helpdesk-guide)|📖《桌维网管实典》主机与程控终端信息安全运维,IT方向速成就业入职|186|Shell|07/09|
|174|[pssss/Security-Baseline](https://github.com/pssss/Security-Baseline)|Linux/Windows 安全加固脚本|185|Shell|01/07|
|175|[zq99299/note-book](https://github.com/zq99299/note-book)|新笔记本,java、git、elasticsearch、mycat、设计模式、gradle、vue, 等 。vuepress 构建的 Markdown 笔记。|185|Shell|06/23|
|176|[ineo6/homebrew-install](https://github.com/ineo6/homebrew-install)|homebrew安装使用中科大镜像|183|Shell|06/25|
|177|[xiaohouzivpn/xiaohouzi](https://github.com/xiaohouzivpn/xiaohouzi)|小猴子最新后台网站 www.xiaohouzilaaa.site 小猴子安卓版https://raw.githubusercontent.com/xiaohouzivpn/xiaohouzi/master/xiaohouzijiasuqi.apk 小猴子 pc版本 https://raw.githubusercontent.com/xiaohouzivpn/xiaohouzi/master/xiaohouzipc.rar|182|Shell|05/17|
|178|[wangdoc/html-tutorial](https://github.com/wangdoc/html-tutorial)|HTML 语言教程|181|Shell|05/11|
|179|[shenuiuin/LXD_GPU_SERVER](https://github.com/shenuiuin/LXD_GPU_SERVER)|实验室GPU服务器的LXD虚拟化|181|Shell|06/23|
|180|[jinfeijie/yapi](https://github.com/jinfeijie/yapi)|Docker for YApi 一键部署YApi|179|Shell|04/30|
|181|[V2RaySSR/Trojan_panel_web](https://github.com/V2RaySSR/Trojan_panel_web)|一键更改 Trojan-Panel 面板端口并设置伪装站点|178|Shell|09/01|
|182|[yanhuacuo/98wubi-tables](https://github.com/yanhuacuo/98wubi-tables)|98五笔基础码表|175|Shell|06/17|
|183|[idoop/docker-apollo](https://github.com/idoop/docker-apollo)|docker image for Ctrip/Apollo(携程Apollo) |174|Shell|01/27|
|184|[minminmsn/k8s1.13](https://github.com/minminmsn/k8s1.13)|微服务容器化持续交付总体流程:开发代码提交到Gitlab;Rahcher设置代码库为Gitlab;Rahcher流水线配置编译源码;Rahcher流水线Build Docker镜像;Rancher流水线Push Docker镜像到私有镜像库Harbor;Rancher流水线根据k8s yaml部署文件部署容器。|170|Shell|09/10|
|185|[tinyclub/linux-doc](https://github.com/tinyclub/linux-doc)|Linux Documentation 中文翻译计划|167|Shell|01/22|
|186|[hczhcz/the-elder-is-excited](https://github.com/hczhcz/the-elder-is-excited)|暴力膜蛤|166|Shell|06/18|
|187|[wangdoc/webapi-tutorial](https://github.com/wangdoc/webapi-tutorial)|Web API 教程|166|Shell|04/09|
|188|[iKubernetes/Kubernetes_Advanced_Practical](https://github.com/iKubernetes/Kubernetes_Advanced_Practical)|《kubernetes进阶实战》随书代码。另外,该书的第2版已经正式发售。|163|Shell|03/10|
|189|[kirin10000/V2Ray-WebSocket-TLS-Web-setup-script](https://github.com/kirin10000/V2Ray-WebSocket-TLS-Web-setup-script)|V2Ray-WebSocket ws +TLS 1.3 +Web 搭建/管理脚本|163|Shell|12/20|
|190|[P3TERX/warp.sh](https://github.com/P3TERX/warp.sh)|Cloudflare WARP configuration script Cloudflare WARP 一键配置脚本|162|Shell|07/08|
|191|[NJUPT-ISL/login-shell](https://github.com/NJUPT-ISL/login-shell)|SSH登陆显示脚本|161|Shell|08/14|
|192|[maybe1229/jd-base](https://github.com/maybe1229/jd-base)|京东薅羊毛利器|157|-|02/07|
|193|[analysys/argo-installer](https://github.com/analysys/argo-installer)|方舟Argo安装工具|157|Shell|05/26|
|194|[M1Screw/Airport-toolkit](https://github.com/M1Screw/Airport-toolkit)|各類方便機場主進行安裝維護的shell腳本|157|Shell|06/14|
|195|[imroc/kubernetes-practice-guide](https://github.com/imroc/kubernetes-practice-guide)|Kubernetes Practice Guide (Kubernetes 实践指南)|154|Shell|12/21|
|196|[vcheckzen/FamilyCloudSpeederInShell](https://github.com/vcheckzen/FamilyCloudSpeederInShell)|[ 天翼家庭云/天翼云盘提速 Shell 版 ] A Shell Implementation of FamilyCloudSpeeder, ESurfing|154|Shell|05/31|
|197|[fanck0605/openwrt-nanopi-r2s](https://github.com/fanck0605/openwrt-nanopi-r2s)|基于原生 OpenWrt 的 NanoPi R2s 固件|152|Shell|07/07|
|198|[xiaoyunjie/Shell_Script](https://github.com/xiaoyunjie/Shell_Script)|Linux系统的安全,通过脚本对Linux系统进行一键检测和一键加固|151|Shell|05/06|
|199|[KingFalse/ohmyiterm2](https://github.com/KingFalse/ohmyiterm2)|快速安装一个漂亮且强大的iterm2|150|Shell|06/29|
|200|[wangtunan/blog](https://github.com/wangtunan/blog)|:memo: 记录个人博客,见证成长之路 https://wangtunan.github.io/blog/|149|Shell|07/08|
⬆ [回到目录](#目录)
<br/>
## C
|#|Repository|Description|Stars|Language|Updated|
|:-|:-|:-|:-|:-|:-|
|1|[QSCTech/zju-icicles](https://github.com/QSCTech/zju-icicles)|浙江大学课程攻略共享计划|21.8k|C|07/08|
|2|[julycoding/The-Art-Of-Programming-By-July](https://github.com/julycoding/The-Art-Of-Programming-By-July)|本项目曾冲到全球第一,干货集锦见本页面最底部,另完整精致的纸质版《编程之法:面试和算法心得》已在京东/当当上销售|19.9k|C|07/03|
|3|[Awesome-HarmonyOS/HarmonyOS](https://github.com/Awesome-HarmonyOS/HarmonyOS)|A curated list of awesome things related to HarmonyOS. 华为鸿蒙操作系统。|18.1k|C|06/17|
|4|[huangz1990/redis-3.0-annotated](https://github.com/huangz1990/redis-3.0-annotated)|带有详细注释的 Redis 3.0 代码(annotated Redis 3.0 source code)。|7.6k|C|04/23|
|5|[bingoogolapple/BGAQRCode-Android](https://github.com/bingoogolapple/BGAQRCode-Android)|QRCode 扫描二维码、扫描条形码、相册获取图片后识别、生成带 Logo 二维码、支持微博微信 QQ 二维码扫描样式|7.3k|C|04/05|
|6|[EZLippi/Tinyhttpd](https://github.com/EZLippi/Tinyhttpd)|Tinyhttpd 是J. David Blackstone在1999年写的一个不到 500 行的超轻量型 Http Server,用来学习非常不错,可以帮助我们真正理解服务器程序的本质。官网:http://tinyhttpd.sourceforge.net|7.0k|C|01/26|
|7|[sparklemotion/nokogiri](https://github.com/sparklemotion/nokogiri)|Nokogiri (鋸) makes it easy and painless to work with XML and HTML from Ruby.|5.6k|C|07/08|
|8|[nonstriater/Learn-Algorithms](https://github.com/nonstriater/Learn-Algorithms)|算法学习笔记|5.6k|C|04/29|
|9|[SecWiki/windows-kernel-exploits](https://github.com/SecWiki/windows-kernel-exploits)|windows-kernel-exploits Windows平台提权漏洞集合|5.5k|C|06/12|
|10|[Tencent/TencentOS-tiny](https://github.com/Tencent/TencentOS-tiny)|腾讯物联网终端操作系统|5.1k|C|07/06|
|11|[miloyip/json-tutorial](https://github.com/miloyip/json-tutorial)|从零开始的 JSON 库教程|4.9k|C|06/29|
|12|[SecWiki/linux-kernel-exploits](https://github.com/SecWiki/linux-kernel-exploits)|linux-kernel-exploits Linux平台提权漏洞集合|4.0k|C|07/13|
|13|[pymumu/smartdns](https://github.com/pymumu/smartdns)|A local DNS server to obtain the fastest website IP for the best Internet experience, 一个本地DNS服务器,获取最快的网站IP,获得最佳上网体验。|3.8k|C|05/22|
|14|[yourtion/30dayMakeOS](https://github.com/yourtion/30dayMakeOS)|《30天自制操作系统》源码中文版。自己制作一个操作系统(OSASK)的过程|3.8k|C|08/10|
|15|[peng-zhihui/HDMI-PI](https://github.com/peng-zhihui/HDMI-PI)|我设计的一个HDMI转MIPI模块,可以用于驱动各种手机屏幕当显示器用。|3.7k|C|02/15|
|16|[ming1016/study](https://github.com/ming1016/study)|学习记录|3.6k|C|06/29|
|17|[mabeijianxi/small-video-record](https://github.com/mabeijianxi/small-video-record)|利用FFmpeg视频录制微信小视频与其压缩处理|3.4k|C|06/13|
|18|[linw7/Skill-Tree](https://github.com/linw7/Skill-Tree)|🐼 准备秋招,欢迎来树上取果实|3.3k|C|03/04|
|19|[microshow/RxFFmpeg](https://github.com/microshow/RxFFmpeg)|🔥💥RxFFmpeg 是基于 ( FFmpeg 4.0 + X264 + mp3lame + fdk-aac + opencore-amr + openssl ) 编译的适用于 Android 平台的音视频编辑、视频剪辑的快速处理框架,包含以下功能:视频拼接,转码,压缩,裁剪,片头片尾,分离音视频,变速,添加静态贴纸和gif动态贴纸,添加字幕,添加滤镜,添加背景音乐,加速减速视频,倒放音视频,音频裁剪,变声,混音,图片合成视频,视频解码图片,抖音首页,视频播放器及支持 OpenSSL https 等主流特色功能|3.1k|C|06/04|
|20|[y123456yz/reading-code-of-nginx-1.9.2](https://github.com/y123456yz/reading-code-of-nginx-1.9.2)|nginx-1.9.2源码通读分析注释,带详尽函数中文分析注释以及相关函数流程调用注释,最全面的nginx源码阅读分析中文注释,更新完毕|3.1k|C|03/27|
|21|[chiakge/Linux-NetSpeed](https://github.com/chiakge/Linux-NetSpeed)|将Linux现常用的网络加速集成在一起|2.9k|C|07/10|
|22|[xufuji456/FFmpegAndroid](https://github.com/xufuji456/FFmpegAndroid)|android端基于FFmpeg实现音频剪切、拼接、转码、编解码;视频剪切、水印、截图、转码、编解码、转Gif动图;音视频合成与分离;音视频解码、同步与播放;FFmpeg本地推流、H264与RTMP实时推流直播;FFmpeg滤镜:素描、色彩平衡、hue、lut、模糊、九宫格等;基于IjkPlayer修改支持RTSP超低延时直播;歌词解析与显示|2.6k|C|07/09|
|23|[firmianay/CTF-All-In-One](https://github.com/firmianay/CTF-All-In-One)|CTF竞赛权威指南|2.6k|C|03/29|
|24|[ithewei/libhv](https://github.com/ithewei/libhv)|🔥 比libevent、libuv更易用的国产网络库。A c/c++ network library for developing TCP/UDP/SSL/HTTP/WebSocket client/server.|2.5k|C|07/05|
|25|[Sunzxyong/Tiny](https://github.com/Sunzxyong/Tiny)|an image compression framework.(一个高保真、高压缩比的图片压缩框架)|2.5k|C|10/07|
|26|[guanzhi/GmSSL](https://github.com/guanzhi/GmSSL)|支持国密SM2/SM3/SM4/SM9/ZUC/SSL的OpenSSL分支|2.4k|C|05/20|
|27|[Mzzopublic/C](https://github.com/Mzzopublic/C)|C语言|2.4k|C|10/30|
|28|[WizTeam/WizQTClient](https://github.com/WizTeam/WizQTClient)|为知笔记跨平台客户端|2.4k|C|05/26|
|29|[badafans/better-cloudflare-ip](https://github.com/badafans/better-cloudflare-ip)|查找适合自己当前网络环境的优选cloudflare anycast IP|2.3k|C|07/03|
|30|[peng-zhihui/HoloCubic](https://github.com/peng-zhihui/HoloCubic)|带网络功能的伪全息透明显示桌面站|2.2k|C|06/08|
|31|[ShadowsocksR-Live/shadowsocksr-native](https://github.com/ShadowsocksR-Live/shadowsocksr-native)|翻墙 从容穿越党国敏感日 ShadowsocksR (SSR) native implementation for all platforms, GFW terminator|2.2k|C|07/07|
|32|[zlgopen/awtk](https://github.com/zlgopen/awtk)|AWTK = Toolkit AnyWhere(为嵌入式、手机和PC打造的通用GUI系统)|2.2k|C|07/09|
|33|[snooda/net-speeder](https://github.com/snooda/net-speeder)|net-speeder 在高延迟不稳定链路上优化单线程下载速度 |2.2k|C|11/22|
|34|[zuoqing1988/ZQCNN](https://github.com/zuoqing1988/ZQCNN)|一款比mini-caffe更快的Forward库,觉得好用请点星啊,400星公布快速人脸检测模型,500星公布106点landmark,600星公布人头检测模型,700星公布人脸检测套餐(六种pnet,两种rnet随意混合使用满足各种速度/精度要求),800星公布更准的106点模型|2.1k|C|06/03|
|35|[EZLippi/WebBench](https://github.com/EZLippi/WebBench)|Webbench是Radim Kolar在1997年写的一个在linux下使用的非常简单的网站压测工具。它使用fork()模拟多个客户端同时访问我们设定的URL,测试网站在压力下工作的性能,最多可以模拟3万个并发连接去测试网站的负载能力。官网地址:http://home.tiscali.cz/~cz210552/webbench.html|2.0k|C|06/19|
|36|[feiyangqingyun/QWidgetDemo](https://github.com/feiyangqingyun/QWidgetDemo)|Qt编写的一些开源的demo,预计会有100多个,一直持续更新完善,代码简洁易懂注释详细,每个都是独立项目,非常适合初学者,代码随意传播使用,拒绝打赏和捐赠,欢迎留言评论!|2.0k|C|07/08|
|37|[quickjs-zh/QuickJS](https://github.com/quickjs-zh/QuickJS)|QuickJS是一个小型并且可嵌入的Javascript引擎,它支持ES2020规范,包括模块,异步生成器和代理器。|2.0k|C|04/06|
|38|[kangjianwei/Data-Structure](https://github.com/kangjianwei/Data-Structure)|《数据结构》-严蔚敏.吴伟民-教材源码与习题解析|1.9k|C|03/07|
|39|[yangjie10930/EpMedia](https://github.com/yangjie10930/EpMedia)|Android上基于FFmpeg开发的视频处理框架,简单易用,体积小,帮助使用者快速实现视频处理功能。包含以下功能:剪辑,裁剪,旋转,镜像,合并,分离,变速,添加LOGO,添加滤镜,添加背景音乐,加速减速视频,倒放音视频。 The video processing framework based on FFmpeg developed on Android is simple, easy to use, and small in size, helping users quickly realize video processing functions. Contains the follow ...|1.8k|C|05/23|
|40|[armink/EasyLogger](https://github.com/armink/EasyLogger)|An ultra-lightweight(ROM<1.6K, RAM<0.3k), high-performance C/C++ log library. 一款超轻量级(ROM<1.6K, RAM<0.3k)、高性能的 C/C++ 日志库|1.7k|C|04/10|
|41|[monyhar/monyhar-lite](https://github.com/monyhar/monyhar-lite)|梦弘浏览器 自主研发版本 - 完全自主研发,打破国外垄断,比 Chrome 快 600%。缺少上网功能。|1.7k|C|06/30|
|42|[Ewenwan/ShiYanLou](https://github.com/Ewenwan/ShiYanLou)|学习C & C++ & python&汇编语言 LLVM编译器 数据结构 算法 操作系统 单片机 linux 面试|1.7k|C|02/15|
|43|[yangchaojiang/yjPlay](https://github.com/yangchaojiang/yjPlay)|一个支持自定义UI布局,流式API, 加密,直播 ,亮度,音量,快进等手势 ,广告视频预览,多种加载模式 ,多种分辨率切换 ,多种封面图, 自定义数据源,列表播放,倍数播放,边播变缓存<font color="red">不是使用AndroidVideoCache</font>,离线播放,神奇的播放器 |1.7k|C|08/24|
|44|[alibaba/GCanvas](https://github.com/alibaba/GCanvas)|A lightweight cross-platform graphics rendering engine. (超轻量的跨平台图形引擎) https://alibaba.github.io/GCanvas|1.6k|C|02/23|
|45|[Tencent/puerts](https://github.com/Tencent/puerts)|Write your game with TypeScript in UE4 or Unity. Puerts can be pronounced as pu-erh TS(普洱TS)|1.6k|C|07/09|
|46|[loyinglin/LearnOpenGLES](https://github.com/loyinglin/LearnOpenGLES)|OpenGL ES的各种尝试,有详细的博客。|1.5k|C|03/17|
|47|[liexusong/php-beast](https://github.com/liexusong/php-beast)|PHP source code encrypt module (PHP源码加密扩展)|1.4k|C|04/21|
|48|[momotech/MLN](https://github.com/momotech/MLN)|高性能、小巧、易上手的移动跨平台开发框架. A framework for building Mobile cross-platform apps with Lua|1.4k|C|06/03|
|49|[cppla/ServerStatus](https://github.com/cppla/ServerStatus)|云探针、多服务器探针、云监控、多服务器云监控,演示: https://tz.cloudcpp.com/|1.4k|C|07/05|
|50|[Ascotbe/Kernelhub](https://github.com/Ascotbe/Kernelhub)|:palm_tree:Windows Kernel privilege escalation vulnerability collection, with compilation environment, demo GIF map, vulnerability details, executable file (Windows提权漏洞合集) http://kernelhub.ascotbe.com/|1.3k|C|06/27|
|51|[armink/EasyFlash](https://github.com/armink/EasyFlash)|Lightweight IoT device information storage solution: KV/IAP/LOG. 轻量级物联网设备信息存储方案:参数存储、在线升级及日志存储 ,全新一代版本请移步至 https://github.com/armink/FlashDB|1.3k|C|04/21|
|52|[ChenLittlePing/LearningVideo](https://github.com/ChenLittlePing/LearningVideo)|【Android 音视频开发打怪升级】系列文章示例代码(A demo to introduce how to develop android video)。本项目将从MediaCodec硬解,FFmpeg软解,OpenGL等方面,全方位讲解如何在Android上进行音视频编辑开发。|1.2k|C|05/16|
|53|[gatieme/LDD-LinuxDeviceDrivers](https://github.com/gatieme/LDD-LinuxDeviceDrivers)|Linux内核与设备驱动程序学习笔记|1.2k|C|07/07|
|54|[hoverwinter/HIT-OSLab](https://github.com/hoverwinter/HIT-OSLab)|S - 哈工大《操作系统》实验|1.2k|C|07/05|
|55|[chentao0707/QrCodeScan](https://github.com/chentao0707/QrCodeScan)|Android手机客户端二维码扫描|1.1k|C|12/14|
|56|[yianwillis/vimcdoc](https://github.com/yianwillis/vimcdoc)|Vim 中文文档计划|1.1k|C|04/22|
|57|[cokemine/ServerStatus-Hotaru](https://github.com/cokemine/ServerStatus-Hotaru)|云探针、多服务器探针、云监控、多服务器云监控|1.0k|C|07/04|
|58|[feiskyer/sdn-handbook](https://github.com/feiskyer/sdn-handbook)|SDN网络指南(SDN Handbook)|910|C|12/08|
|59|[armink/FreeModbus_Slave-Master-RTT-STM32](https://github.com/armink/FreeModbus_Slave-Master-RTT-STM32)|Add master mode to FreeModbus. 在 FreeModbus 中添加主机模式|908|C|04/11|
|60|[armink/CmBacktrace](https://github.com/armink/CmBacktrace)|Advanced fault backtrace library for ARM Cortex-M series MCU ARM Cortex-M 系列 MCU 错误追踪库|893|C|02/03|
|61|[Exely/CSAPP-Labs](https://github.com/Exely/CSAPP-Labs)|Solutions and Notes for Labs of Computer Systems: A Programmer's Perspective 3rd Editon // 《深入理解计算机系统》第三版的实验文件、解答与笔记|891|C|03/22|
|62|[destan19/OpenAppFilter](https://github.com/destan19/OpenAppFilter)|基于OpenWrt的App过滤(家长控制)模块,支持抖音、斗鱼、王者荣耀、腾讯视频等上百款App过滤|890|C|07/08|
|63|[hurley25/hurlex-doc](https://github.com/hurley25/hurlex-doc)|hurlex 小内核分章节代码和文档|887|C|06/15|
|64|[Tencent/TencentOS-kernel](https://github.com/Tencent/TencentOS-kernel)|腾讯针对云的场景研发的服务器操作系统|876|C|07/08|
|65|[BruceWind/AESJniEncrypt](https://github.com/BruceWind/AESJniEncrypt)|Make safest code in Android. (基于libsodium实现chacha20算法,key在native中,防止被二次打包){长期维护,请star,勿fork}|870|C|06/28|
|66|[y123456yz/Reading-and-comprehense-linux-Kernel-network-protocol-stack](https://github.com/y123456yz/Reading-and-comprehense-linux-Kernel-network-protocol-stack)|linux内核网络协议栈源码阅读分析注释--带详尽中文分析注释以及相关流程分析调用注释,对理解分析内核协议栈源码很有帮助|849|C|12/24|
|67|[kiukotsu/ucore](https://github.com/kiukotsu/ucore)|清华大学操作系统课程实验 (OS Kernel Labs)|844|C|08/30|
|68|[vonzhou/CSAPP](https://github.com/vonzhou/CSAPP)|CSAPP,《深入理解计算机系统结构》2nd ,阅读与实践!|843|C|04/25|
|69|[rock-app/fabu.love](https://github.com/rock-app/fabu.love)|应用发布平台类似fir.im/蒲公英,支持检查更新,灰度发布等等.Demo地址:https://fabu.apppills.com/|829|C|05/12|
|70|[ustcwpz/USTC-CS-Courses-Resource](https://github.com/ustcwpz/USTC-CS-Courses-Resource)|USTC计算机学院课程资源|798|C|12/13|
|71|[chenyahui/AnnotatedCode](https://github.com/chenyahui/AnnotatedCode)|知名开源代码库的注释版:C++、Golang等|749|C|03/17|
|72|[ADD-SP/ngx_waf](https://github.com/ADD-SP/ngx_waf)|Handy, High performance Nginx firewall module & 方便且高性能的 Nginx 防火墙模块|696|C|07/09|
|73|[armink/SFUD](https://github.com/armink/SFUD)|An using JEDEC's SFDP standard serial (SPI) flash universal driver library 一款使用 JEDEC SFDP 标准的串行 (SPI) Flash 通用驱动库|666|C|03/06|
|74|[yourtion/LearningMasteringAlgorithms-C](https://github.com/yourtion/LearningMasteringAlgorithms-C)|Mastering Algorithms with C 《算法精解:C语言描述》源码及Xcode工程、Linux工程|636|C|06/01|
|75|[huaiyukeji/verification_code](https://github.com/huaiyukeji/verification_code)|验证码研究破解心得记录。包含网易易盾,阿里云验证码,极验验证码,通用汉字识别,梦幻西游验证等主流验证码破解。包含点按验证码、点选验证、语序点选等等。已更新极验验证码、企业公示网/工商/文书采集系统、极验打码接口。|632|C|04/08|
|76|[jianfengye/nginx-1.0.14_comment](https://github.com/jianfengye/nginx-1.0.14_comment)|nginx源码中文注释版|626|C|12/16|
|77|[lihancong/tonyenc](https://github.com/lihancong/tonyenc)|高性能、跨平台的 PHP7 代码加密扩展 (A high performance and cross-platform encrypt extension for PHP source code)|609|C|07/01|
|78|[wuzhouhui/misc](https://github.com/wuzhouhui/misc)|学习与工作中收集的一些资料|597|C|06/20|
|79|[LGCooci/objc4_debug](https://github.com/LGCooci/objc4_debug)|🌈可编译苹果官方源码objc!现在有objc4底层源码,以及libmalloc等可编译版本,大家可以自由LLDB调试!|594|C|04/26|
|80|[daoluan/decode-memcached](https://github.com/daoluan/decode-memcached)|memcached 源码剖析注释|581|C|05/25|
|81|[froghui/yolanda](https://github.com/froghui/yolanda)|极客时间<网络编程实战>代码|569|C|07/16|
|82|[lvming6816077/LMVideoTest](https://github.com/lvming6816077/LMVideoTest)|iOS采集音视频数据流并通过rtmp上传到nginx完整示例|566|C|07/23|
|83|[cos120/captcha_crack](https://github.com/cos120/captcha_crack)|选字验证码破解,试验过网易和极验,破解率99|557|C|12/17|
|84|[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 ...|552|C|06/04|
|85|[RainbowRoad1/Cgame](https://github.com/RainbowRoad1/Cgame)|一些用C编写的小游戏, 14行贪吃蛇 22行2048 22行俄罗斯方块 25行扫雷...以及各种小玩意|540|C|06/21|
|86|[linyiqun/Redis-Code](https://github.com/linyiqun/Redis-Code)|redis键值数据库源码分析|540|C|12/17|
|87|[FantasticLBP/knowledge-kit](https://github.com/FantasticLBP/knowledge-kit)|iOS、Web前端、后端、数据库、计算机网络、设计模式经验总结|539|C|06/24|
|88|[aqi00/android2](https://github.com/aqi00/android2)|《Android Studio开发实战:从零基础到App上线》随书源码(全面添加注释版)|533|C|06/02|
|89|[rime/ibus-rime](https://github.com/rime/ibus-rime)|【中州韻】Rime for Linux/IBus|519|C|01/24|
|90|[del-xiong/screw-plus](https://github.com/del-xiong/screw-plus)|开源php加密运行扩展,基于screw二次开发,暂时只能在linux下运行|518|C|07/02|
|91|[wuxx/nanoDAP](https://github.com/wuxx/nanoDAP)|建议大家star此仓库,仓库会持续更新。由于部分淘宝卖家“借鉴”实验室出品的nanoDAP详情描述和资料,请大家认准实验室官方链接|507|C|06/24|
|92|[u0u0/Quick-Cocos2dx-Community](https://github.com/u0u0/Quick-Cocos2dx-Community)|Cocos2d-Lua 社区版|505|C|06/05|
|93|[y123456yz/middleware_development_learning](https://github.com/y123456yz/middleware_development_learning)|中间件、高性能服务器、分布式存储等(redis、memcache、nginx、大容量redis pika、rocksdb、mongodb、wiredtiger存储引擎、高性能代理中间件)二次开发、性能优化,逐步整理文档说明并配合demo指导--每周末定时更新2-3篇技术文章及程序demo|502|C|03/25|
|94|[dlxg/Linux-NetSpeed](https://github.com/dlxg/Linux-NetSpeed)|BBR+BBR魔改+Lotsever(锐速)一键脚本 for Centos/Debian/Ubuntu|495|C|04/04|
|95|[Echocipher/AUTO-EARN](https://github.com/Echocipher/AUTO-EARN)|一个利用OneForAll进行子域收集、Shodan API端口扫描、Xray漏洞Fuzz、Server酱的自动化漏洞扫描、即时通知提醒的漏洞挖掘辅助工具|492|C|06/02|
|96|[cirosantilli/cpp-cheat](https://github.com/cirosantilli/cpp-cheat)|MOVING TO: https://github.com/cirosantilli/linux-kernel-module-cheat#userland-content SEE README. C, C++, POSIX and Linux system programming minimal examples. Asserts used wherever possible. Hello worlds for cool third party libraries and build systems. Cheatsheets, tutorials and mini-projects. 移至:h ...|489|C|12/19|
|97|[li-xiaojun/AndroidKTX](https://github.com/li-xiaojun/AndroidKTX)|🔥Some very useful kotlin extensions for speed android development!好用到爆的Kotlin扩展,加速你的Android开发!|480|C|07/07|
|98|[vimfung/LuaScriptCore](https://github.com/vimfung/LuaScriptCore)|一款简单易用的多平台Lua桥接器,目前支持在iOS、Mac OS X、Android以及Unity3D中使用,让原生环境与Lua无障碍沟通。|472|C|12/19|
|99|[aliyun/iotkit-embedded](https://github.com/aliyun/iotkit-embedded)|高速镜像: https://code.aliyun.com/linkkit/c-sdk|469|C|05/12|
|100|[yaouser/C](https://github.com/yaouser/C)|linux下的C语言及关于kernel的介绍|466|C|10/02|
|101|[aliyun/rds_dbsync](https://github.com/aliyun/rds_dbsync)|围绕 PostgreSQL Greenplum ,实现易用的数据的互迁功能项目|462|C|10/24|
|102|[armink/FlashDB](https://github.com/armink/FlashDB)|An ultra-lightweight database that supports key-value and time series data 一款支持 KV 数据和时序数据的超轻量级数据库|461|C|05/15|
|103|[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 结构体的序列化及反序列化|451|C|03/24|
|104|[chenall/grub4dos](https://github.com/chenall/grub4dos)|外部命令和工具源码:https://github.com/chenall/grubutils 下载:|442|C|06/19|
|105|[guanshuicheng/invoice](https://github.com/guanshuicheng/invoice)|增值税发票OCR识别,使用flask微服务架构,识别type:增值税电子普通发票,增值税普通发票,增值税专用发票;识别字段为:发票代码、发票号码、开票日期、校验码、税后金额等|441|C|05/21|
|106|[timwhitez/Cobalt-Strike-Aggressor-Scripts](https://github.com/timwhitez/Cobalt-Strike-Aggressor-Scripts)|Cobalt Strike Aggressor 插件包|440|C|03/29|
|107|[mengzhidaren/Vlc-sdk-lib](https://github.com/mengzhidaren/Vlc-sdk-lib)|vlc-android The latest compilation video playback libraries 最新视频库支持录屏 欢迎star|437|C|09/25|
|108|[konosubakonoakua/Various_MCU_Debugger_DIY](https://github.com/konosubakonoakua/Various_MCU_Debugger_DIY)|各种LInk大合集|426|C|04/30|
|109|[czqasngit/objc_msgSend_hook](https://github.com/czqasngit/objc_msgSend_hook)|objc_msgSend之精简且完整的hook核心功能,并且还有详细注释|419|C|04/11|
|110|[hanson-young/nniefacelib](https://github.com/hanson-young/nniefacelib)|nniefacelib是一个在海思35xx系列芯片上运行的人脸算法库|416|C|05/15|
|111|[lcodecorex/KeepAlive](https://github.com/lcodecorex/KeepAlive)|Fighting against force-stop kill process on Android with binder ioctl / Android高级保活|411|C|05/30|
|112|[hurley25/Hurlex-II](https://github.com/hurley25/Hurlex-II)|第二版重新设计和构思,参考一些优秀的实现进行补充设计和编码。|411|C|04/09|
|113|[Lojii/Knot](https://github.com/Lojii/Knot)|一款iOS端基于MITM(中间人攻击技术)实现的HTTPS抓包工具,完整的App,核心代码使用SwiftNIO实现|410|C|12/23|
|114|[idealclover/NJU-Review-Materials](https://github.com/idealclover/NJU-Review-Materials)|📝 南哪课程复习资料 Review materials for NJU|408|C|11/19|
|115|[figozhang/runninglinuxkernel_4.0](https://github.com/figozhang/runninglinuxkernel_4.0)|《奔跑吧Linux内核》配套实验平台和代码,白色入门酱香篇,蓝色进阶浓香篇|402|C|06/22|
|116|[nauxliu/opencc4php](https://github.com/nauxliu/opencc4php)|简繁体转换 PHP 扩展|399|C|12/11|
|117|[chronolaw/annotated_nginx](https://github.com/chronolaw/annotated_nginx)|Annotated Nginx Source(中文)|396|C|07/08|
|118|[zsummer/breeze](https://github.com/zsummer/breeze)|一个C++的轻量级的分布式服务器引擎, 架构思想为一切皆service.|391|C|12/20|
|119|[CasterWx/AntzOS](https://github.com/CasterWx/AntzOS)|:earth_asia: Develop an intelligent AI half terminal half graphical operating system Antz. 一个随心所欲制造的操作系统Antz。|391|C|03/12|
|120|[ksyun-kenc/liuguang](https://github.com/ksyun-kenc/liuguang)|鎏光云游戏引擎|390|C|07/08|
|121|[breakstring/eInkCalendarOfToxicSoul](https://github.com/breakstring/eInkCalendarOfToxicSoul)|毒鸡汤墨水屏日历|386|C|03/28|
|122|[langhuihui/jessibuca](https://github.com/langhuihui/jessibuca)|Jessibuca是一款开源的纯H5直播流播放器|381|C|07/08|
|123|[peng-zhihui/ONE-Robot](https://github.com/peng-zhihui/ONE-Robot)|2015年做的一个基于IMU和STM32的独轮自平衡机器人|380|C|02/15|
|124|[mabDc/eso](https://github.com/mabDc/eso)|亦搜,亦看,亦闻 manga&novel reader, audio&video player in one app developed by flutter|375|C|04/12|
|125|[osgochina/donkeyid](https://github.com/osgochina/donkeyid)|php扩展,64位自增id生成器|375|C|11/13|
|126|[y123456yz/Reading-and-comprehense-redis-cluster](https://github.com/y123456yz/Reading-and-comprehense-redis-cluster)|分布式NOSQL redis源码阅读中文分析注释,带详尽注释以及相关流程调用注释,提出改造点,redis cluster集群功能、节点扩容、槽位迁移、failover故障切换、一致性选举完整分析,对理解redis源码很有帮助,解决了source insight中文注释乱码问题,更新完毕|375|C|12/24|
|127|[chexiongsheng/build_xlua_with_libs](https://github.com/chexiongsheng/build_xlua_with_libs)|为xLua集成几个常用库,方便使用|374|C|06/17|
|128|[woai3c/MIT6.828](https://github.com/woai3c/MIT6.828)|实现一个操作系统内核|373|C|03/28|
|129|[CreativeLau/Mini-DSO](https://github.com/CreativeLau/Mini-DSO)|用STC单片机制作的简易示波器 / DIY Mini Digital Storage Oscilloscopes(DSO) with STC MCU|367|C|05/16|
|130|[scriptiot/evm](https://github.com/scriptiot/evm)|超轻量级物联网虚拟机|364|C|06/24|
|131|[wangbojing/NtyTcp](https://github.com/wangbojing/NtyTcp)|单线程用户态TCP/IP协议栈,epoll实现,包含服务器案例,并发测试案例|356|C|07/04|
|132|[yifengyou/learn-kvm](https://github.com/yifengyou/learn-kvm)|Qemu KVM(Kernel Virtual Machine)学习笔记|350|C|02/07|
|133|[fanyuan/MyMp3Convert](https://github.com/fanyuan/MyMp3Convert)|mp3转码,把wav转换成mp3格式|348|C|05/23|
|134|[picasso250/spring12](https://github.com/picasso250/spring12)|春节十二响|341|C|04/21|
|135|[murphyzhao/FlexibleButton](https://github.com/murphyzhao/FlexibleButton)|灵活的按键处理库(Flexible Button) 按键驱动 支持单击、双击、连击、长按、自动消抖 灵活适配中断和低功耗 按需实现组合按键|340|C|04/12|
|136|[hzcx998/xbook2](https://github.com/hzcx998/xbook2)|xbook2是一个基于x86处理器的32位操作系统,实现了大量的基础功能,可以拿来学习操作系统知识。|339|C|06/11|
|137|[mai1zhi2/ShellCodeFramework](https://github.com/mai1zhi2/ShellCodeFramework)|绕3环的shellcode免杀框架|338|C|03/19|
|138|[zlgopen/ametal](https://github.com/zlgopen/ametal)|芯片级裸机软件包,定义了一系列常用外设(如:UART、IIC、SPI、ADC等)的通用接口,基于通用接口的应用可以跨平台复用。|338|C|03/22|
|139|[updateing/minieap](https://github.com/updateing/minieap)|可扩展的 802.1x 客户端,带有锐捷 v3 (v4) 算法插件支持|333|C|09/26|
|140|[wangbojing/NtyCo](https://github.com/wangbojing/NtyCo)|纯c版本的协程实现,汇编切换,调度器实现,包含服务器端案例,客户端并发测试案例|332|C|07/25|
|141|[QingdaoU/Judger](https://github.com/QingdaoU/Judger)|Online judge sandbox based on seccomp OnlineJudge 安全沙箱|318|C|08/14|
|142|[Greedysky/TTKWidgetTools](https://github.com/Greedysky/TTKWidgetTools)|QWidget 自定义控件集合 持续更新中......|308|C|07/07|
|143|[elarity/data-structure-php-clanguage](https://github.com/elarity/data-structure-php-clanguage)|对于数据结构和算法类的东西,我工作有些年份了,大学也有所涉猎,积累了一些内容,不高产不母猪,打我自己脸|299|C|05/07|
|144|[wondertrader/wondertrader](https://github.com/wondertrader/wondertrader)|WonderTrader——量化研发交易一站式框架|292|C|07/08|
|145|[zmrbak/PcWeChatHooK](https://github.com/zmrbak/PcWeChatHooK)|云课堂《2019 PC微信 探秘》示例代码|288|C|06/03|
|146|[YJLAugus/Inios](https://github.com/YJLAugus/Inios)|从零开发一32位操作系统|286|C|07/09|
|147|[shineframe/shineframe](https://github.com/shineframe/shineframe)|高性能超轻量级C++开发库及服务器编程框架|284|C|11/27|
|148|[renhui/Thinking-in-AV](https://github.com/renhui/Thinking-in-AV)|音视频开发知识库|284|C|04/23|
|149|[UncP/aili](https://github.com/UncP/aili)|the fastest in-memory index in the East 东半球最快并发索引|283|C|02/04|
|150|[y123456yz/reading-and-annotate-quic](https://github.com/y123456yz/reading-and-annotate-quic)|quic、prot_quic、goquic、libquic源码中文注释分析,增加C++ quic-client和quic-server example 程序,便于快速掌握学习谷歌quic库源码和学习quic协议,作为新的网络加速协议,可以根据实际需要应用于自己的工程项目中。把google quic源码和goquic合并到一个工程编译安装|280|C|12/24|
|151|[qq4108863/hihttps](https://github.com/qq4108863/hihttps)|hihttps是一款完整源码的高性能web应用防火墙,既支持传统WAF的所有功能如SQL注入、XSS、恶意漏洞扫描、密码暴力破解、CC、DDOS等ModSecurity正则规则,又支持无监督机器学习,自主对抗未知攻击。|275|C|01/02|
|152|[SkewwG/domainTools](https://github.com/SkewwG/domainTools)|内网域渗透小工具|274|C|04/20|
|153|[gnbdev/opengnb](https://github.com/gnbdev/opengnb)|GNB is open source de-centralized VPN to achieve layer3 network via p2p with the ultimate capability of NAT Traversal.GNB是一个开源的去中心化的具有极致内网穿透能力的通过P2P进行三层网络交换的VPN。|272|C|05/26|
|154|[Baidu-AIP/speech-vad-demo](https://github.com/Baidu-AIP/speech-vad-demo)|集成Webrtc的VAD,用于切分音频文件|270|C|08/26|
|155|[MiEcosystem/miio_open](https://github.com/MiEcosystem/miio_open)|智能硬件接入文档|267|C|03/20|
|156|[Al1ex/WindowsElevation](https://github.com/Al1ex/WindowsElevation)|Windows Elevation(持续更新)|266|C|04/19|
|157|[hairrrrr/C-CrashCourse](https://github.com/hairrrrr/C-CrashCourse)|C语言教程+博客+代码演示+课程设计。 帮助初学者更好的理解 C 难点,提升代码量! For beginners:C tuition/self-learning|262|C|04/25|
|158|[OliverLew/PAT](https://github.com/OliverLew/PAT)|PAT OJ exercises in C language 浙江大学PAT纯C语言题解|260|C|04/01|
|159|[AlexFanw/HUSTER-CS](https://github.com/AlexFanw/HUSTER-CS)|华中科技大学 计算机科学与技术学院 学习资料💯 以及 实验资料💾|257|C|02/04|
|160|[gatieme/AderXCoding](https://github.com/gatieme/AderXCoding)|介绍各类语言,库,系统编程以及算法的学习|257|C|05/09|
|161|[yangkun19921001/AVSample](https://github.com/yangkun19921001/AVSample)|0 基础音视频进阶路线 (MediaCodec、FFmpeg、OpenCV、OpenGL、短视频 SDK、音视频播放器、webrtc)|256|C|08/30|
|162|[hewei2001/HITSZ-OpenCS](https://github.com/hewei2001/HITSZ-OpenCS)|哈尔滨工业大学(深圳)计算机专业课程攻略 Guidance for courses in Department of Computer Science, Harbin Institute of Technology (Shenzhen)|255|C|07/07|
|163|[BBuf/Darknet](https://github.com/BBuf/Darknet)|AlexeyAB-DarkNet源码解析|255|C|03/29|
|164|[dustpg/StepFC](https://github.com/dustpg/StepFC)|Make FC(NES) Emulator Step-by-Step 一步一步模拟红白机|255|C|05/21|
|165|[KeyAlgo/AlgoPlus](https://github.com/KeyAlgo/AlgoPlus)|AlgoPlus 2.0是使用c++语言开发的用于全市场交易的SDK,提供c++/python/java接口。|255|C|07/03|
|166|[riba2534/TCP-IP-NetworkNote](https://github.com/riba2534/TCP-IP-NetworkNote)|📘《TCP/IP网络编程》(韩-尹圣雨)学习笔记|251|C|04/29|
|167|[alipay/mPaaS](https://github.com/alipay/mPaaS)|mPaaS Demo 合集,mPaaS 是源自于支付宝的移动开发平台。The collection of demos for mPaaS components. mPaaS is the Mobile Development Platform which oriented from Alipay.|247|C|02/17|
|168|[dpull/skynet-mingw](https://github.com/dpull/skynet-mingw)|对skynet无任何改动的windows版|247|C|07/02|
|169|[Wangzhike/HIT-Linux-0.11](https://github.com/Wangzhike/HIT-Linux-0.11)|网易云课堂选的操作系统课实验的代码及相关记录|241|C|04/14|
|170|[dreamsxin/cphalcon7](https://github.com/dreamsxin/cphalcon7)|Dao7 - Web framework for PHP7.x,QQ群 9970484|240|C|06/29|
|171|[fool2fish/the-c-programming-language-exercise-answers](https://github.com/fool2fish/the-c-programming-language-exercise-answers)|The C programming language exercise answers. C 程序设计语言(第2版)习题答案.|237|C|10/01|
|172|[xuhongv/StudyInEsp32](https://github.com/xuhongv/StudyInEsp32)|【深度开源】wiif+bt模块esp32学习之旅(持续更新,欢迎 Star...)|233|C|06/04|
|173|[yangkun19921001/AVEditor](https://github.com/yangkun19921001/AVEditor)|这是一款短视频编辑 SDK,仿 DouYin 音视频处理。功能包含有美颜、滤镜、贴纸、特效、录制、分段录制、速率录制、变声、配乐、rtmp 直播推流、图片转视频、剪辑,mp4/flv 格式封装等功能。动态库用的我另一个项目编译好的 https://github.com/yangkun19921001/AVFFmpegLib|232|C|10/12|
|174|[usbxyz/CAN-Bootloader](https://github.com/usbxyz/CAN-Bootloader)|使用USB2XXX实现的CAN Bootloader功能,实现CAN节点固件远程升级|231|C|06/29|
|175|[notrynohigh/BabyOS](https://github.com/notrynohigh/BabyOS)|专为MCU项目开发提速的代码框架|231|C|06/27|
|176|[maxlicheng/stm32f4_ucosii_lwip_mqtt](https://github.com/maxlicheng/stm32f4_ucosii_lwip_mqtt)|基于正点原子STM32F4开发板和阿里云物联网平台的MQTT项目|230|C|08/06|
|177|[MeiK2333/apue](https://github.com/MeiK2333/apue)|《UNIX环境高级编程》随书代码与课后习题|229|C|02/24|
|178|[MarioCrane/LeagueLobby](https://github.com/MarioCrane/LeagueLobby)|英雄联盟自定义房间创建工具,包括5V5训练营,(血月杀等轮换模式已被官方关闭)|227|C|05/29|
|179|[fanchy/h2engine](https://github.com/fanchy/h2engine)|H2服务器引擎架构是轻量级的,与其说是引擎,个人觉得称之为平台更为合适。因为它封装的功能少之又少,但是提供了非常简洁方便的扩展机制,使得可以用C++、python、lua、js、php来开发具体的服务器功能。H2引擎的灵感来源于web服务器Apache。|225|C|11/12|
|180|[fenwii/OpenHarmony](https://github.com/fenwii/OpenHarmony)|华为鸿蒙分布式操作系统(Huawei OpenHarmony)开发技术交流,鸿蒙技术资料,手册,指南,共建国产操作系统万物互联新生态。|224|C|06/09|
|181|[rexbu/VisioninSDK](https://github.com/rexbu/VisioninSDK)|类似faceu的移动端视频美颜、视频滤镜、人脸实时关键点追踪、实时整形(瘦脸大眼睛等)、动态贴纸|223|C|11/10|
|182|[yundiantech/VideoPlayer](https://github.com/yundiantech/VideoPlayer)|Qt+ffmpeg实现的视频播放器|221|C|05/11|
|183|[kenzok8/small](https://github.com/kenzok8/small)|passwall基本依赖!|219|C|06/29|
|184|[Kevincoooool/KS_DAP_Wireless](https://github.com/Kevincoooool/KS_DAP_Wireless)|STM32F103C8T6 无线有线DAP下载器,脱机(离线)烧录器,脱机下载器|217|C|07/02|
|185|[yitter/IdGenerator](https://github.com/yitter/IdGenerator)|💎迄今为止最全面的分布式主键ID生成器。 💎优化的雪花算法(SnowFlake)——雪花漂移算法,在缩短ID长度的同时,具备极高瞬时并发处理能力(50W/0.1s)。 💎原生支持 C#/Java/Go/Rust/C/SQL 等多语言,且提供 PHP 扩展及 Python、Node.js、Ruby 多线程安全调用动态库(FFI)。💎支持容器环境自动扩容(自动注册 WorkerId ),单机或分布式唯一IdGenerator。💎顶尖优化,超强效能。|212|C|07/07|
|186|[deepwzh/sdust-examination-materials](https://github.com/deepwzh/sdust-examination-materials)|山东科技大学课程资源共享计划|211|C|01/03|
|187|[imengyu/JiYuTrainer](https://github.com/imengyu/JiYuTrainer)|极域电子教室防控制软件, StudenMain.exe 破解|211|C|04/30|
|188|[jashking/UnrealPakViewer](https://github.com/jashking/UnrealPakViewer)|查看 UE4 Pak 文件的图形化工具,类似 UnrealPak.exe|210|C|02/01|
|189|[fujie-xiyou/chat_room](https://github.com/fujie-xiyou/chat_room)|聊天室 -- 17年暑假项目(Linux C网络编程)|210|C|05/01|
|190|[xinyang-go/SJTU-RM-CV-2019](https://github.com/xinyang-go/SJTU-RM-CV-2019)|上海交通大学 RoboMaster 2019赛季 视觉代码|209|C|03/16|
|191|[gk969/stm32-speech-recognition](https://github.com/gk969/stm32-speech-recognition)|基于STM32的孤立词语音识别|203|C|07/30|
|192|[zkwlx/ADI](https://github.com/zkwlx/ADI)|ADI(Android Debug Intensive) 是通过 JVMTI 实现的 Android 应用开发调试的增强工具集,目前主要提供性能相关的监控能力。|202|C|02/13|
|193|[ultraji/linux-0.12](https://github.com/ultraji/linux-0.12)|《Linux内核完全剖析》linux0.12源码及实验环境|201|C|12/09|
|194|[404name/winter](https://github.com/404name/winter)|2020上半年超长寒假呆家学习了半年C语言(大一下)的时候写的一些小游戏/小程序,那时候觉得用C从零开始模拟一些东西挺有趣,就没有参考其他教程或者游戏,通过自己思考用基础语法写出了这些写代码,规范性只能说是相当于我大一的标准,欢迎分享,学习和交流|199|C|05/19|
|195|[microshow/AiSound](https://github.com/microshow/AiSound)|🔥💥AiSound AI魔法声音 是一个结合AI的变声器,基于fmod实现,使用fmod来处理音频的变声效果, 支持试听和保存音效文件|197|C|10/26|
|196|[DayBreak-u/darknet_face_with_landmark](https://github.com/DayBreak-u/darknet_face_with_landmark)|加入关键点的darknet训练框架,轻量级的人脸检测,支持ncnn推理|196|C|07/29|
|197|[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两种模式!|195|C|06/04|
|198|[zxystd/AppleIntelWifiAdapter](https://github.com/zxystd/AppleIntelWifiAdapter)|苹果IO80211Controller调用|195|C|04/22|
|199|[forthespada/MyPoorWebServer](https://github.com/forthespada/MyPoorWebServer)|基于tinyhttpd和《Linux高性能服务器编程》改编的个人破产版HTTP WebServer服务器,哈哈~|190|C|08/28|
|200|[Embedfire/embed_linux_tutorial](https://github.com/Embedfire/embed_linux_tutorial)|野火《i.MX Linux开发实战指南》书籍及代码|185|C|04/25|
⬆ [回到目录](#目录)
<br/>
## C++
|#|Repository|Description|Stars|Language|Updated|
|:-|:-|:-|:-|:-|:-|
|1|[huihut/interview](https://github.com/huihut/interview)|📚 C/C++ 技术面试基础知识总结,包括语言、程序库、数据结构、算法、系统、网络、链接装载库等知识及面试经验、招聘、内推等信息。This repository is a summary of the basic knowledge of recruiting job seekers and beginners in the direction of C/C++ technology, including language, program library, data structure, algorithm, system, network, link loading library, in ...|19.3k|C++|04/14|
|2|[vnpy/vnpy](https://github.com/vnpy/vnpy)|基于Python的开源量化交易平台开发框架|15.4k|C++|07/08|
|3|[Light-City/CPlusPlusThings](https://github.com/Light-City/CPlusPlusThings)|C++那些事|13.5k|C++|07/06|
|4|[zhongyang219/TrafficMonitor](https://github.com/zhongyang219/TrafficMonitor)|这是一个用于显示当前网速、CPU及内存利用率的桌面悬浮窗软件,并支持任务栏显示,支持更换皮肤。|12.5k|C++|06/22|
|5|[Qv2ray/Qv2ray](https://github.com/Qv2ray/Qv2ray)|:star: Linux / Windows / macOS 跨平台 V2Ray 客户端 支持 VMess / VLESS / SSR / Trojan / Trojan-Go / NaiveProxy / HTTP / HTTPS / SOCKS5 使用 C++ / Qt 开发 可拓展插件式设计 :star:|11.2k|C++|07/05|
|6|[USTC-Resource/USTC-Course](https://github.com/USTC-Resource/USTC-Course)|:heart:中国科学技术大学课程资源|10.4k|C++|01/18|
|7|[ChenYilong/iOSInterviewQuestions](https://github.com/ChenYilong/iOSInterviewQuestions)|iOS interview questions;iOS面试题集锦(附答案)--学习qq群或 Telegram 群交流 https://github.com/ChenYilong/iOSBlog/issues/21|8.7k|C++|05/21|
|8|[DayBreak-u/chineseocr_lite](https://github.com/DayBreak-u/chineseocr_lite)|超轻量级中文ocr,支持竖排文字识别, 支持ncnn、mnn、tnn推理 ( dbnet(1.8M) + crnn(2.5M) + anglenet(378KB)) 总模型仅4.7M |6.9k|C++|06/15|
|9|[Ewenwan/MVision](https://github.com/Ewenwan/MVision)|机器人视觉 移动机器人 VS-SLAM ORB-SLAM2 深度学习目标检测 yolov3 行为检测 opencv PCL 机器学习 无人驾驶|5.7k|C++|12/13|
|10|[PaddlePaddle/Paddle-Lite](https://github.com/PaddlePaddle/Paddle-Lite)|Multi-platform high performance deep learning inference engine (『飞桨』多平台高性能深度学习预测引擎)|5.6k|C++|07/09|
|11|[me115/design_patterns](https://github.com/me115/design_patterns)|图说设计模式|5.3k|C++|07/06|
|12|[weolar/miniblink49](https://github.com/weolar/miniblink49)|a lighter, faster browser kernel of blink to integrate HTML UI in your app. 一个小巧、轻量的浏览器内核,用来取代wke和libcef|5.1k|C++|05/27|
|13|[wuye9036/CppTemplateTutorial](https://github.com/wuye9036/CppTemplateTutorial)|中文的C++ Template的教学指南。与知名书籍C++ Templates不同,该系列教程将C++ Templates作为一门图灵完备的语言来讲授,以求帮助读者对Meta-Programming融会贯通。(正在施工中)|5.0k|C++|07/08|
|14|[gatieme/CodingInterviews](https://github.com/gatieme/CodingInterviews)|剑指Offer——名企面试官精讲典型编程题|4.2k|C++|02/20|
|15|[szad670401/HyperLPR](https://github.com/szad670401/HyperLPR)|基于深度学习高性能中文车牌识别 High Performance Chinese License Plate Recognition Framework.|4.0k|C++|06/17|
|16|[MegEngine/MegEngine](https://github.com/MegEngine/MegEngine)|MegEngine 是一个快速、可拓展、易于使用且支持自动求导的深度学习框架|3.9k|C++|07/08|
|17|[anyrtcIO-Community/anyRTC-RTMP-OpenSource](https://github.com/anyrtcIO-Community/anyRTC-RTMP-OpenSource)|RTMP 推流器,RTMP(HLS)秒开播放器,跨平台(Win,IOS,Android)开源代码|3.8k|C++|03/16|
|18|[TonyChen56/WeChatRobot](https://github.com/TonyChen56/WeChatRobot)|PC版微信机器人|3.8k|C++|02/03|
|19|[anhkgg/SuperWeChatPC](https://github.com/anhkgg/SuperWeChatPC)|超级微信电脑客户端,支持多开、防消息撤销、语音消息备份...开放WeChatSDK|3.7k|C++|02/27|
|20|[yedf/handy](https://github.com/yedf/handy)|🔥简洁易用的C++11网络库 / 支持单机千万并发连接 / a simple C++11 network server framework|3.6k|C++|07/09|
|21|[qinguoyi/TinyWebServer](https://github.com/qinguoyi/TinyWebServer)|:fire: Linux下C++轻量级Web服务器|3.0k|C++|11/21|
|22|[CtripMobile/DynamicAPK](https://github.com/CtripMobile/DynamicAPK)|Solution to implement multi apk dynamic loading and hot fixing for Android App. (实现Android App多apk插件化和动态加载,支持资源分包和热修复)|3.0k|C++|05/11|
|23|[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.9k|C++|04/27|
|24|[applenob/Cpp_Primer_Practice](https://github.com/applenob/Cpp_Primer_Practice)|搞定C++:punch:。C++ Primer 中文版第5版学习仓库,包括笔记和课后练习答案。|2.6k|C++|07/05|
|25|[liuchuo/PAT](https://github.com/liuchuo/PAT)|🍭 浙江大学PAT题解(C/C++/Java/Python) - 努力成为萌萌的程序媛~|2.6k|C++|05/12|
|26|[WrBug/dumpDex](https://github.com/WrBug/dumpDex)|💯一款Android脱壳工具,需要xposed支持, 易开发已集成该项目:|2.6k|C++|05/15|
|27|[balloonwj/flamingo](https://github.com/balloonwj/flamingo)|flamingo 一款高性能轻量级开源即时通讯软件|2.5k|C++|07/02|
|28|[baidu/lac](https://github.com/baidu/lac)|百度NLP:分词,词性标注,命名实体识别,词重要性|2.5k|C++|05/25|
|29|[huaxz1986/cplusplus-_Implementation_Of_Introduction_to_Algorithms](https://github.com/huaxz1986/cplusplus-_Implementation_Of_Introduction_to_Algorithms)|《算法导论》第三版中算法的C++实现|2.3k|C++|06/17|
|30|[AnkerLeng/Cpp-0-1-Resource](https://github.com/AnkerLeng/Cpp-0-1-Resource)|C++ 匠心之作 从0到1入门资料|2.0k|C++|10/02|
|31|[yanyiwu/cppjieba](https://github.com/yanyiwu/cppjieba)|"结巴"中文分词的C++版本|2.0k|C++|02/21|
|32|[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语言。近乎所有问题都会提供多个算法解决。大家加油!:)|2.0k|C++|07/09|
|33|[HuTianQi/SmartOpenCV](https://github.com/HuTianQi/SmartOpenCV)|:fire: :fire: :fire: SmartOpenCV是一个OpenCV在Android端的增强库,解决了OpenCV Android SDK在图像预览方面存在的诸多问题,且无需修改OpenCV SDK源码,与OpenCV的SDK解耦|1.8k|C++|04/28|
|34|[kyubotics/coolq-http-api](https://github.com/kyubotics/coolq-http-api)|为 酷Q 提供通过 HTTP 或 WebSocket 接收事件和调用 API 的能力|1.8k|C++|08/02|
|35|[huangmingchuan/Cpp_Primer_Answers](https://github.com/huangmingchuan/Cpp_Primer_Answers)|《C++ Primer》第五版中文版习题答案|1.8k|C++|10/19|
|36|[Tencent/plato](https://github.com/Tencent/plato)|腾讯高性能分布式图计算框架Plato|1.6k|C++|07/09|
|37|[Simple-XX/SimpleKernel](https://github.com/Simple-XX/SimpleKernel)|Simple kernel for learning operating systems. 用于学习操作系统的简单内核|1.6k|C++|06/02|
|38|[Jack-Cherish/LeetCode](https://github.com/Jack-Cherish/LeetCode)|:monkey:LeetCode、剑指Offer刷题笔记(C/C++、Python3实现)|1.5k|C++|11/22|
|39|[scarsty/kys-cpp](https://github.com/scarsty/kys-cpp)|《金庸群侠传》c++复刻版,已完工|1.3k|C++|07/05|
|40|[callmePicacho/Data-Structres](https://github.com/callmePicacho/Data-Structres)|浙江大学《数据结构》上课笔记 + 数据结构实现 + 课后题题解|1.2k|C++|04/02|
|41|[km1994/nlp_paper_study](https://github.com/km1994/nlp_paper_study)|研读顶会论文,复现论文相关代码|1.2k|C++|07/01|
|42|[senlinuc/caffe_ocr](https://github.com/senlinuc/caffe_ocr)|主流ocr算法研究实验性的项目,目前实现了CNN+BLSTM+CTC架构|1.2k|C++|06/13|
|43|[19PDP/Bilibili-plus](https://github.com/19PDP/Bilibili-plus)|课程视频、PPT和源代码:侯捷C++系列;台大郭彦甫MATLAB|1.2k|C++|06/26|
|44|[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)|1.1k|C++|07/02|
|45|[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|1.1k|C++|07/01|
|46|[No-Github/1earn](https://github.com/No-Github/1earn)|个人维护的安全知识框架,内容包括不仅限于 web安全、工控安全、取证、应急、蓝队设施部署、后渗透、Linux安全、各类靶机writup|1.1k|C++|05/16|
|47|[qdtroy/DuiLib_Ultimate](https://github.com/qdtroy/DuiLib_Ultimate)|duilib 旗舰版-高分屏、多语言、样式表、资源管理器、异形窗口、窗口阴影、简单动画|1.0k|C++|06/28|
|48|[Dev-XYS/Algorithms](https://github.com/Dev-XYS/Algorithms)|全面的算法代码仓库|1.0k|C++|10/04|
|49|[githubhaohao/NDK_OpenGLES_3_0](https://github.com/githubhaohao/NDK_OpenGLES_3_0)|Android OpenGL ES 3.0 从入门到精通系统性学习教程|1.0k|C++|07/08|
|50|[zhongyang219/MusicPlayer2](https://github.com/zhongyang219/MusicPlayer2)|这是一款可以播放常见音频格式的音频播放器。支持歌词显示、歌词卡拉OK样式显示、歌词在线下载、歌词编辑、歌曲标签识别、Win10小娜搜索显示歌词、频谱分析、音效设置、任务栏缩略图按钮、主题颜色等功能。 播放内核为BASS音频库(V2.4)。|1.0k|C++|07/08|
|51|[netwarm007/GameEngineFromScratch](https://github.com/netwarm007/GameEngineFromScratch)|配合我的知乎专栏写的项目|1.0k|C++|05/24|
|52|[knightsj/awesome-algorithm-question-solution](https://github.com/knightsj/awesome-algorithm-question-solution)|LeetCode,《剑指offer》中的算法题的题目和解法以及常见算法的实现|1.0k|C++|03/24|
|53|[fasiondog/hikyuu](https://github.com/fasiondog/hikyuu)|Hikyuu Quant Framework 基于C++/Python的开源量化交易研究框架|1.0k|C++|07/01|
|54|[188080501/JQTools](https://github.com/188080501/JQTools)|基于Qt开发的小工具包|990|C++|04/22|
|55|[tencentyun/TRTCSDK](https://github.com/tencentyun/TRTCSDK)|腾讯云TRTC音视频服务,国内下载镜像:|974|C++|07/08|
|56|[ZLMediaKit/ZLToolKit](https://github.com/ZLMediaKit/ZLToolKit)|一个基于C++11的轻量级网络框架,基于线程池技术可以实现大并发网络IO|923|C++|07/08|
|57|[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|917|C++|07/09|
|58|[CodePanda66/CSPostgraduate-408](https://github.com/CodePanda66/CSPostgraduate-408)|💯 CSPostgraduate 计算机考研 408 专业课资料及真题资源~✍🏻 更新中~欢迎Star!⭐️|914|C++|07/05|
|59|[Making-It/Code](https://github.com/Making-It/Code)|面试高频算法题总结,个人博客|912|C++|02/04|
|60|[yanyiwu/simhash](https://github.com/yanyiwu/simhash)|中文文档simhash值计算|897|C++|03/11|
|61|[tkchu/Game-Programming-Patterns-CN](https://github.com/tkchu/Game-Programming-Patterns-CN)|《游戏编程模式》中文版|876|C++|11/25|
|62|[bcosorg/bcos](https://github.com/bcosorg/bcos)|BCOS平台(Be Credible, Open & Secure)|873|C++|09/14|
|63|[liu-jianhao/Cpp-Design-Patterns](https://github.com/liu-jianhao/Cpp-Design-Patterns)|C++设计模式|870|C++|02/01|
|64|[hao14293/2021-Postgraduate-408](https://github.com/hao14293/2021-Postgraduate-408)|💯✍备考2021年研究生-408 |858|C++|01/04|
|65|[Ewenwan/ORB_SLAM2_SSD_Semantic](https://github.com/Ewenwan/ORB_SLAM2_SSD_Semantic)|动态语义SLAM 目标检测+VSLAM+光流/多视角几何动态物体检测+octomap地图+目标数据库|831|C++|08/14|
|66|[Walton1128/CPP-Templates-2nd--](https://github.com/Walton1128/CPP-Templates-2nd--)|《C++ Templates 第二版》中文翻译,和原书排版一致,第一部分(1至11章)以及第18,19,20,21、22、23、24、25章已完成,其余内容逐步更新中。 个人爱好,发现错误请指正|824|C++|03/22|
|67|[codefollower/OpenJDK-Research](https://github.com/codefollower/OpenJDK-Research)|OpenJDK(HotSpot JVM、Javac)源代码学习研究(包括代码注释、文档、用于代码分析的测试用例) |803|C++|10/03|
|68|[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音乐、酷我音乐、酷狗音乐等等)|803|C++|07/08|
|69|[Dr-Incognito/V2Ray-Desktop](https://github.com/Dr-Incognito/V2Ray-Desktop)|最优雅的跨平台代理客户端,支持Shadowsocks(R),V2Ray和Trojan协议。The most elegant cross-platform proxy GUI client that supports Shadowsocks(R), V2Ray, and Trojan. Built with Qt5 and QML2.|786|C++|06/02|
|70|[smilehao/xlua-framework](https://github.com/smilehao/xlua-framework)|Unity游戏纯lua客户端完整框架---基于xlua,整合tolua的proto-gen-lua以及各个lua库和工具类|785|C++|10/13|
|71|[Captain1986/CaptainBlackboard](https://github.com/Captain1986/CaptainBlackboard)|船长关于机器学习、计算机视觉和工程技术的总结和分享|783|C++|06/15|
|72|[nwpuhq/AwesomeCpp](https://github.com/nwpuhq/AwesomeCpp)|---AWESOME--- C++学习笔记和常见面试知识点,C++11特性,包括智能指针、四种强制转换、function和bind、移动语义、完美转发、tuple、多态原理、虚表、友元函数、符号重载、函数指针、深浅拷贝、struct内存对齐、volatile以及union\static等各种关键字的用法等等,还新添了其他算法和计算机基础的难点,力求简洁清晰|774|C++|06/26|
|73|[didi/AoE](https://github.com/didi/AoE)|AoE (AI on Edge,终端智能,边缘计算) 是一个终端侧AI集成运行时环境 (IRE),帮助开发者提升效率。|773|C++|05/20|
|74|[SFUMECJF/cmake-examples-Chinese](https://github.com/SFUMECJF/cmake-examples-Chinese)|快速入门CMake,通过例程学习语法。在线阅读地址:https://sfumecjf.github.io/cmake-examples-Chinese/|769|C++|06/22|
|75|[Tencent/GameAISDK](https://github.com/Tencent/GameAISDK)|基于图像的游戏AI自动化框架|737|C++|05/17|
|76|[limingfan2016/game_service_system](https://github.com/limingfan2016/game_service_system)|从0开始开发 基础库(配置文件读写、日志、多线程、多进程、锁、对象引用计数、内存池、免锁消息队列、免锁数据缓冲区、进程信号、共享内存、定时器等等基础功能组件),网络库(socket、TCP、UDP、epoll机制、连接自动收发消息等等),数据库操作库(mysql,redis、memcache API 封装可直接调用),开发框架库(消息调度处理、自动连接管理、服务开发、游戏框架、服务间消息收发、消息通信等等),消息中间件服务(不同网络节点间自动传递收发消息)等多个功能组件、服务,最后完成一套完整的服务器引擎,基于该框架引擎可开发任意的网络服务。 主体架构:N网关+N服务+N数据库代理+内存DB ...|732|C++|05/25|
|77|[MKXJun/DirectX11-With-Windows-SDK](https://github.com/MKXJun/DirectX11-With-Windows-SDK)|现代DX11系列教程:使用Windows SDK(C++)开发Direct3D 11.x|723|C++|12/08|
|78|[ylmbtm/GameProject3](https://github.com/ylmbtm/GameProject3)|游戏服务器框架,网络层分别用SocketAPI、Boost Asio、Libuv三种方式实现, 框架内使用共享内存,无锁队列,对象池,内存池来提高服务器性能。还包含一个不断完善的Unity 3D客户端,客户端含大量完整资源,坐骑,宠物,伙伴,装备, 这些均己实现上阵和穿戴, 并可进入副本战斗,多人玩法也己实现, 持续开发中。|722|C++|07/02|
|79|[xmuli/QtExamples](https://github.com/xmuli/QtExamples)|Qt 的 GUI 控件使用和网络;DTK 重绘控件方式的框架架构解析;Qt 原理/运行机制理解;QtCrator 使用和一些小技巧;系列文章教程|693|C++|07/08|
|80|[cmdbug/YOLOv5_NCNN](https://github.com/cmdbug/YOLOv5_NCNN)|🍅 Deploy NCNN on mobile phones. Support Android and iOS. 移动端NCNN部署,支持Android与iOS。|692|C++|04/25|
|81|[zeusees/License-Plate-Detector](https://github.com/zeusees/License-Plate-Detector)|基于Retinaface车牌检测,全新模型仅1.8MB.|678|C++|06/17|
|82|[Tencent/flare](https://github.com/Tencent/flare)| Flare是广泛投产于腾讯广告后台的现代化C++开发框架,包含了基础库、RPC、各种客户端等。主要特点为易用性强、长尾延迟低。 |647|C++|07/06|
|83|[shuax/GreenChrome](https://github.com/shuax/GreenChrome)|增强Chrome的工具|617|C++|03/22|
|84|[SOUI2/soui](https://github.com/SOUI2/soui)|SOUI是目前为数不多的轻量级可快速开发window桌面程序开源DirectUI库.其前身为Duiengine,更早期则是源自于金山卫士开源版本UI库Bkwin.经过多年持续更新方得此库|603|C++|07/02|
|85|[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|586|C++|02/02|
|86|[KongKong20/WeChatPCHook](https://github.com/KongKong20/WeChatPCHook)|微信 电脑 机器人 入门教程 基于HOOK |571|C++|07/06|
|87|[Mapaler/FastCopy-M](https://github.com/Mapaler/FastCopy-M)|FastCopy-Multilanguage,FastCopy完整支持多国语言版|570|C++|04/20|
|88|[Rvn0xsy/Cooolis-ms](https://github.com/Rvn0xsy/Cooolis-ms)|Cooolis-ms是一个包含了Metasploit Payload Loader、Cobalt Strike External C2 Loader、Reflective DLL injection的代码执行工具,它的定位在于能够在静态查杀上规避一些我们将要执行且含有特征的代码,帮助红队人员更方便快捷的从Web容器环境切换到C2环境进一步进行工作。|557|C++|06/02|
|89|[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的函数接口了|557|C++|04/04|
|90|[skywind3000/RenderHelp](https://github.com/skywind3000/RenderHelp)|:zap: 可编程渲染管线实现,帮助初学者学习渲染 |545|C++|09/01|
|91|[eritpchy/Fingerprint-pay-magisk-wechat](https://github.com/eritpchy/Fingerprint-pay-magisk-wechat)|微信指纹支付 (Fingerprint pay for WeChat)|540|C++|12/04|
|92|[downdemo/Cpp-Templates-2ed](https://github.com/downdemo/Cpp-Templates-2ed)|📚 C++ Templates 2ed 笔记:C++11/14/17 模板技术|538|C++|05/09|
|93|[Waleon/DesignPatterns](https://github.com/Waleon/DesignPatterns)|趣味设计模式,小朋友也能学得会!|533|C++|03/17|
|94|[wlgq2/uv-cpp](https://github.com/wlgq2/uv-cpp)|libuv wrapper in C++11 /libuv C++11网络库|533|C++|06/05|
|95|[OAID/AutoKernel](https://github.com/OAID/AutoKernel)|AutoKernel 是一个简单易用,低门槛的自动算子优化工具,提高深度学习算法部署效率。|527|C++|07/08|
|96|[yuanyuanxiang/SimpleRemoter](https://github.com/yuanyuanxiang/SimpleRemoter)|基于gh0st的远程控制器:实现了终端管理、进程管理、窗口管理、远程桌面、文件管理、语音管理、视频管理、服务管理、注册表管理等功能,优化全部代码及整理排版,修复内存泄漏缺陷,程序运行稳定。项目代码仅限于学习和交流用途。|527|C++|03/14|
|97|[aixiangfei/jack-compiler](https://github.com/aixiangfei/jack-compiler)|jack语言编译器|524|C++|09/15|
|98|[szza/LearningNote](https://github.com/szza/LearningNote)|C++和Linux学习笔记|518|C++|03/26|
|99|[czs108/Cpp-Primer-5th-Notes-CN](https://github.com/czs108/Cpp-Primer-5th-Notes-CN)|📚 《C++ Primer中文版(第5版)》笔记|518|C++|05/08|
|100|[downdemo/Cpp-Concurrency-in-Action-2ed](https://github.com/downdemo/Cpp-Concurrency-in-Action-2ed)|📚 C++ Concurrency in Action 2ed 笔记:C++11/14/17 多线程技术|512|C++|05/12|
|101|[xiangweizeng/mobile-lpr](https://github.com/xiangweizeng/mobile-lpr)|Mobile-LPR 是一个面向移动端的准商业级车牌识别库,以NCNN作为推理后端,使用DNN作为算法核心,支持多种车牌检测算法,支持车牌识别和车牌颜色识别。|486|C++|02/24|
|102|[markparticle/WebServer](https://github.com/markparticle/WebServer)|C++ Linux WebServer服务器|462|C++|10/26|
|103|[PaddlePaddle/Serving](https://github.com/PaddlePaddle/Serving)|A flexible, high-performance carrier for machine learning models(『飞桨』服务化部署框架)|458|C++|07/07|
|104|[YYC572652645/QCoolPage](https://github.com/YYC572652645/QCoolPage)|Qt炫酷界面|453|C++|07/03|
|105|[Salensoft/thu-cst-cracker](https://github.com/Salensoft/thu-cst-cracker)|清华大学计算机系课程攻略|448|C++|02/28|
|106|[sukhoeing/aoapc-bac2nd-keys](https://github.com/sukhoeing/aoapc-bac2nd-keys)|算法竞赛入门经典第2版-习题选解|444|C++|07/10|
|107|[Apriluestc/2020](https://github.com/Apriluestc/2020)|2020 😀😁😀😁😀 秋招笔试面试合集,以及2019届公司真题模拟题集 & 附上自己的后端指南,💻🎓包括(C/C++基础、数据结构、算法、操作系统💻、计算机网络、MySQL、shell(ps:sed、awk、grep))|443|C++|12/16|
|108|[richenyunqi/CCF-CSP-and-PAT-solution](https://github.com/richenyunqi/CCF-CSP-and-PAT-solution)|CCF CSP和PAT考试题解(使用C++14语法)|441|C++|06/17|
|109|[wangzuohuai/WebRunLocal](https://github.com/wangzuohuai/WebRunLocal)|PluginOK(牛插)中间件是一个实现网页浏览器(Web Browser)与本地程序(Local App)之间进行双向调用的低成本、强兼容、安全可控、轻量级、易集成、可扩展、跨浏览器的原生小程序系统。通过此中间件可实现网页前端JS脚本无障碍操作本地电脑各种硬件、调用本地系统API及相关组件功能,可彻底解决DLL模块、ActiveX控件及自动化程序(如微软Office、金山WPS、AutoCAD等)在Chrome、Edge、360、FireFox、IE、Opera、QQ、搜狗等浏览器各版本中的嵌入使用问题,媲美原Java Applet的效果|439|C++|06/10|
|110|[ethan-li-coding/SemiGlobalMatching](https://github.com/ethan-li-coding/SemiGlobalMatching)|SGM,立体匹配最经典应用最广泛算法,4000+引用,兼顾效率和效果。完整实现,代码规范,注释清晰,博客教学,欢迎star!|433|C++|04/20|
|111|[jaredtao/DesignPattern](https://github.com/jaredtao/DesignPattern)|C++11全套设计模式-23种指针的用法(a full DesignPattern implement with c++11)|430|C++|06/19|
|112|[gloomyfish1998/opencv_tutorial](https://github.com/gloomyfish1998/opencv_tutorial)|基于OpenCV4.0 C++/Python SDK的案例代码演示程序与效果图像|430|C++|06/23|
|113|[githubhaohao/OpenGLCamera2](https://github.com/githubhaohao/OpenGLCamera2)|🔥 Android OpenGL Camera 2.0 实现 30 种滤镜和抖音特效|421|C++|06/01|
|114|[Gality369/CS-Loader](https://github.com/Gality369/CS-Loader)|CS免杀|419|C++|06/27|
|115|[lesliefish/Qt](https://github.com/lesliefish/Qt)|Qt开发知识、经验总结。包括Qss,数据库,Excel,Model/View等。|418|C++|04/06|
|116|[USTC-Hackergame/hackergame2020-writeups](https://github.com/USTC-Hackergame/hackergame2020-writeups)|中国科学技术大学第七届信息安全大赛的官方与非官方题解|411|C++|05/11|
|117|[FengGuanxi/HDU-Experience](https://github.com/FengGuanxi/HDU-Experience)|用于向所有杭电学子分享在杭电的知识与经验|405|C++|07/01|
|118|[KangLin/RabbitIm](https://github.com/KangLin/RabbitIm)|玉兔即时通讯。开源的跨平台的的即时通信系统。包括文本、音视频、白板、远程控制|401|C++|06/21|
|119|[2013fangwentao/Multi_Sensor_Fusion](https://github.com/2013fangwentao/Multi_Sensor_Fusion)|Multi-Sensor Fusion (GNSS, IMU, Camera) 多源多传感器融合定位 GPS/INS组合导航 PPP/INS紧组合|398|C++|12/29|
|120|[district10/cmake-templates](https://github.com/district10/cmake-templates)|Some CMake Templates (examples). Qt, Boost, OpenCV, C++11, etc 一些栗子|388|C++|08/05|
|121|[BrightXiaoHan/CMakeTutorial](https://github.com/BrightXiaoHan/CMakeTutorial)|CMake中文实战教程|387|C++|09/23|
|122|[twomonkeyclub/BackEnd](https://github.com/twomonkeyclub/BackEnd)|后台开发相关知识|383|C++|05/06|
|123|[imistyrain/MTCNN](https://github.com/imistyrain/MTCNN)|全平台实时人脸检测和姿态估计,提供无需任何框架实现Realtime Face Detection and Head pose estimation on Windows、Ubuntu、Mac、Android and iOS|383|C++|01/06|
|124|[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.|381|C++|02/25|
|125|[AngelMonica126/GraphicAlgorithm](https://github.com/AngelMonica126/GraphicAlgorithm)|:octopus: :octopus:图形学论文实现|379|C++|07/08|
|126|[188080501/JQHttpServer](https://github.com/188080501/JQHttpServer)|基于Qt开发的轻量级HTTP/HTTPS服务器|378|C++|07/07|
|127|[cc20110101/RedisView](https://github.com/cc20110101/RedisView)|RedisView implements open source, cross-platform and high performance Redis interface tools through self-written RESP protocol parsing, self-written tree model and thread pool. RedisView业余爱好通过自写RESP协议解析、自写树模型、线程池实现开源、跨平台、高性能Redis界面图形化工具|378|C++|06/24|
|128|[KikoPlayProject/KikoPlay](https://github.com/KikoPlayProject/KikoPlay)|KikoPlay - NOT ONLY A Full-Featured Danmu Player 不仅仅是全功能弹幕播放器|373|C++|06/18|
|129|[Syencil/tensorRT](https://github.com/Syencil/tensorRT)|TensorRT-7 Network Lib 包括常用目标检测、关键点检测、人脸检测、OCR等 可训练自己数据|366|C++|01/26|
|130|[balloonwj/TeamTalk](https://github.com/balloonwj/TeamTalk)|这是我维护的蘑菇街TeamTalk源码版本。|363|C++|07/05|
|131|[liuchuo/Lanqiao](https://github.com/liuchuo/Lanqiao)|🍦 蓝桥杯竞赛练习题的题解(C/C++/Java)-努力成为萌萌的程序媛~|359|C++|05/22|
|132|[githubhaohao/LearnFFmpeg](https://github.com/githubhaohao/LearnFFmpeg)|Android FFmpeg 音视频开发教程|352|C++|06/24|
|133|[huoji120/DuckMemoryScan](https://github.com/huoji120/DuckMemoryScan)|检测绝大部分所谓的内存免杀马|352|C++|02/26|
|134|[zeusees/HyperVID](https://github.com/zeusees/HyperVID)|开源移动端车型识别 Mobile Plateform Vehicle Identification Model|345|C++|07/09|
|135|[VitoChueng/RegularNotes](https://github.com/VitoChueng/RegularNotes)|记录cpp知识点,面试题,网络编程,多线程编程|345|C++|05/23|
|136|[chatopera/clause](https://github.com/chatopera/clause)|:horse_racing: 聊天机器人,自然语言理解,语义理解|344|C++|02/10|
|137|[ray-cast/RabbitToolbox](https://github.com/ray-cast/RabbitToolbox)|🤸🏾♀️👗开源的动画渲染软件,提倡以简单、易用,高质量的物理演算以及渲染质量和性能,为喜爱二次元动画的用户降低视频制作门槛|331|C++|04/07|
|138|[BlueMatthew/WechatExporter](https://github.com/BlueMatthew/WechatExporter)|Wechat Chat History Exporter 微信聊天记录导出程序|330|C++|06/30|
|139|[openvanilla/McBopomofo](https://github.com/openvanilla/McBopomofo)|小麥注音輸入法|329|C++|04/10|
|140|[feiyangqingyun/qucsdk](https://github.com/feiyangqingyun/qucsdk)|Qt编写的自定义控件插件的sdk集合,包括了各个操作系统的动态库文件以及控件的头文件和sdk使用demo。心中有坐标,万物皆painter,欢迎各位咨询、购买、定制控件,QQ:517216493 微信:feiyangqingyun。|327|C++|04/16|
|141|[itas109/CSerialPort](https://github.com/itas109/CSerialPort)|基于C++的轻量级开源跨平台串口类库Lightweight cross-platform serial port library based on C++|326|C++|06/10|
|142|[lizhenghn123/zl_threadpool](https://github.com/lizhenghn123/zl_threadpool)|Linux平台下C++(C++98、C++03、C++11)实现的线程池|324|C++|05/01|
|143|[XadillaX/nyaa-nodejs-demo](https://github.com/XadillaX/nyaa-nodejs-demo)|Source code of "Node.js: Let's Write a Dozen of C++ Add-ons". 《Node.js:来一打 C++ 扩展》随书源码。|322|C++|12/31|
|144|[tearshark/librf](https://github.com/tearshark/librf)|基于C++ Coroutines编写的无栈协程库|317|C++|01/09|
|145|[Rvn0xsy/BadCode](https://github.com/Rvn0xsy/BadCode)|恶意代码逃逸源代码 http://payloads.online|315|C++|02/08|
|146|[zeusees/HyperFT](https://github.com/zeusees/HyperFT)|开源移动端快速视频人脸跟踪-移动端150FPS+|314|C++|06/30|
|147|[y123456yz/reading-and-annotate-mongodb-3.6](https://github.com/y123456yz/reading-and-annotate-mongodb-3.6)|分布式文档数据库mongodb-3.6(mongos、mongod、wiredtiger存储引擎)源码中文注释分析,近期持续更新|312|C++|07/08|
|148|[WallBreaker2/op](https://github.com/WallBreaker2/op)|Windows消息模拟,gdi,dx,opengl截图,找图,找字(OCR)等功能|307|C++|07/08|
|149|[qinwf/jiebaR](https://github.com/qinwf/jiebaR)| Chinese text segmentation with R. R语言中文分词 (文档已更新 🎉 :https://qinwenfeng.com/jiebaR/ )|306|C++|07/13|
|150|[BADBADBADBOY/pytorchOCR](https://github.com/BADBADBADBOY/pytorchOCR)|基于pytorch的ocr算法库,包括 psenet, pan, dbnet, sast , crnn|296|C++|05/19|
|151|[php-extension-research/study](https://github.com/php-extension-research/study)|手把手教你写PHP协程扩展(teach you to write php coroutine extension by hand)|296|C++|01/20|
|152|[Project-LemonLime/Project_LemonLime](https://github.com/Project-LemonLime/Project_LemonLime)|为了 OI 比赛而生的基于 Lemon + LemonPlus 的轻量评测系统 三大桌面系统支持|293|C++|07/08|
|153|[lihangleo2/RichEditTextCopyToutiao](https://github.com/lihangleo2/RichEditTextCopyToutiao)|android高仿今日头条富文本编辑|291|C++|09/22|
|154|[anbingxu666/WangDao-DataStructure](https://github.com/anbingxu666/WangDao-DataStructure)|王道《数据结构》2020考研算法代码|291|C++|06/22|
|155|[Meituan-Dianping/octo-ns](https://github.com/Meituan-Dianping/octo-ns)|OCTO-NS是美团OCTO服务治理体系服务注册发现功能的套件, 包括SDK(Java/C++)、本地服务治理代理(SgAgent), 服务缓存(NSC), 云端健康检查(Scanner)等基础组件,目前已经在全公司大规模使用|290|C++|03/13|
|156|[jiafeng5513/Evision](https://github.com/jiafeng5513/Evision)|计算机视觉实践和探索/Practice and explorations in computer vision.|289|C++|04/14|
|157|[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|287|C++|04/08|
|158|[Beipy/Mac-Hackintosh-Clover](https://github.com/Beipy/Mac-Hackintosh-Clover)|PC主机黑苹果引导驱动文件|285|C++|03/28|
|159|[ethan-li-coding/PatchMatchStereo](https://github.com/ethan-li-coding/PatchMatchStereo)|PatchMatchStereo,倾斜窗口经典,效果极佳,OpenMVS&Colmap稠密匹配算法。完整实现,代码规范,注释清晰,博客教学,欢迎star!|280|C++|02/26|
|160|[MegrezZhu/qmcdump](https://github.com/MegrezZhu/qmcdump)|一个简单的QQ音乐解码(qmcflac/qmc0/qmc3 转 flac/mp3),仅为个人学习参考用。|280|C++|02/20|
|161|[Samuel-0-0/phicomm_dc1-esphome](https://github.com/Samuel-0-0/phicomm_dc1-esphome)|斐讯DC1插座自制固件方式接入开源智能家居平台|275|C++|02/25|
|162|[czyt1988/sa](https://github.com/czyt1988/sa)|信号分析及数据可视化软件|275|C++|04/01|
|163|[pegasusTrader/PandoraTrader](https://github.com/pegasusTrader/PandoraTrader)|CTP 高频量化交易平台 C++ Trade Platform for quant developer |275|C++|06/05|
|164|[Dice-Developer-Team/Dice](https://github.com/Dice-Developer-Team/Dice)|QQ Dice Robot For TRPG QQ跑团掷骰机器人|274|C++|07/08|
|165|[physercoe/starquant](https://github.com/physercoe/starquant)|a light-weighted, integrated trading/backtesting system/platform(综合量化交易回测系统/平台)|273|C++|12/14|
|166|[mayerui/sudoku](https://github.com/mayerui/sudoku)|C++实现的跨平台数独游戏,命令行操作易上手,可以在开发间隙用来放松身心。数百行代码,初学者也可以轻松掌握。|270|C++|05/28|
|167|[iUIShop/LibUIDK](https://github.com/iUIShop/LibUIDK)|mfc skin ui,not directui。视频教程:https://v.youku.com/v_show/id_XNTczMzg5MDky.html 简单来说,LibUIDK是用来开发QQ、360安全卫士那样的漂亮软件界面的。 LibUIDK原来是商业界面库,2019年9月8号开源。是专业开发Windows平台下图形用户界面的开发包,该开发包基于Microsoft的MFC库。使用此开发工具包可轻易把美工制作的精美界面用Visual C++实现,由于LibUIDK采用所见即所得的方式创建产品界面,所以极大的提高了产品的开发速度,并大大增强图形用户界面(GUI)的亲和力。LibUIDK还 ...|263|C++|03/15|
|168|[Tencent/deepx_core](https://github.com/Tencent/deepx_core)|deepx_core是一个专注于张量计算/深度学习的基础库|262|C++|07/06|
|169|[GengGode/GenshinImpact_AutoMap](https://github.com/GengGode/GenshinImpact_AutoMap)|原神,基于小地图的自动标记资源地图|257|C++|07/06|
|170|[xyz347/x2struct](https://github.com/xyz347/x2struct)|Convert between json string and c++ object. json字符串和c++结构体之间互相转换|256|C++|12/21|
|171|[Cc28256/CcRemote](https://github.com/Cc28256/CcRemote)|这是一个基于gh0st远程控制的项目,使自己更深入了解远控的原理,采用VS2017,默认分支hijack还在修改不能执行,master分支的项目可以正常的运行的,你可以切换到该分支查看可以执行的代码|256|C++|10/14|
|172|[CandyConfident/HighPerformanceConcurrentServer](https://github.com/CandyConfident/HighPerformanceConcurrentServer)|基于C++11、部分C++14/17特性的一个高性能并发httpserver,包括日志、线程池、内存池、定时器、网络io、http、数据库连接等模块。模块间低耦合高内聚,可作为整体也可单独提供服务。对各模块提供单元测试,对httpserver整体提供性能测试。|254|C++|09/09|
|173|[Qv2ray/QvPlugin-Trojan](https://github.com/Qv2ray/QvPlugin-Trojan)|在 Qv2ray 中使用 Trojan, 感谢 Trojan-Qt5 0.x|253|C++|01/27|
|174|[eritpchy/Fingerprint-pay-magisk-alipay](https://github.com/eritpchy/Fingerprint-pay-magisk-alipay)|支付宝指纹支付 (Fingerprint pay for Alipay)|252|C++|02/02|
|175|[ImSjt/RtspServer](https://github.com/ImSjt/RtspServer)|RTSP服务器,支持传输H.264和AAC格式的音视频|251|C++|01/16|
|176|[armfly/H7-TOOL_STM32H7_App](https://github.com/armfly/H7-TOOL_STM32H7_App)|单片机APP程序|248|C++|03/25|
|177|[oceancx/CXEngine](https://github.com/oceancx/CXEngine)|CXEngine是一个方便大家使用lua+imgui做游戏的游戏引擎,目前主要整合了vscode lua调试器,网络库,还有lua imgui,以及2D回合制MMORPG的框架|247|C++|03/23|
|178|[tsingsee/EasyPlayerPro-Win](https://github.com/tsingsee/EasyPlayerPro-Win)|EasyPlayerPro是一款全功能的流媒体播放器,支持RTSP、RTMP、HTTP、HLS、UDP、RTP、File等多种流媒体协议播放、支持本地文件播放,支持本地抓拍、本地录像、播放旋转、多屏播放、倍数播放等多种功能特性,核心基于ffmpeg,稳定、高效、可靠、可控,支持Windows、Android、iOS三个平台,目前在多家教育、安防、行业型公司,都得到的应用,广受好评!|242|C++|06/04|
|179|[AmazingPP/subVerison_GTAV_Hack](https://github.com/AmazingPP/subVerison_GTAV_Hack)|subVerison重置版——GTA5外置修改器|241|C++|04/10|
|180|[kevinlq/SmartHome-Qt](https://github.com/kevinlq/SmartHome-Qt)|基于zigbee和stm32的智能家居系统,上位机使用Qt编写,实现了基本的监控。主要包括监控室内温度、湿度、烟雾浓度,用led灯模拟控制家中的灯。界面良好。|241|C++|06/24|
|181|[SequoiaDB/SequoiaDB](https://github.com/SequoiaDB/SequoiaDB)|SequoiaDB 巨杉数据库是一款金融级分布式关系型数据库。 自研的原生分布式存储引擎支持完整 ACID,具备弹性扩展、高并发和高可用特性,支持 MySQL、PostgreSQL 和 SparkSQL 等多种 SQL 访问形式,适用于核心交易、数据中台、内容管理等应用场景。 |241|C++|06/08|
|182|[Qv2ray/QvPlugin-SSR](https://github.com/Qv2ray/QvPlugin-SSR)|适用于 Qv2ray 的 ShadowSocksR 插件,使用此插件在 Qv2ray 中启用 SSR 功能|240|C++|12/14|
|183|[chengyangkj/Ros_Qt5_Gui_App](https://github.com/chengyangkj/Ros_Qt5_Gui_App)|ROS human computer interface based on Qt5(基于Qt5的ROS人机交互界面)|239|C++|06/20|
|184|[jing332/xmly-downloader-qt5](https://github.com/jing332/xmly-downloader-qt5)|喜马拉雅FM专辑下载器. 支持VIP与付费专辑. 使用Go+Qt5编写(Not Qt Binding).|234|C++|11/15|
|185|[BesLyric-for-X/BesLyric-for-X](https://github.com/BesLyric-for-X/BesLyric-for-X)|本项目是 BesLyric 的跨平台版本。BesLyric 是一款 操作简单、功能实用的 专门用于制作网易云音乐滚动歌词的 歌词制作软件。基于Qt实现,主打歌词制作功能,以网易云风格界面,力图为云村村民提供一个良好的歌词制作体验!|233|C++|06/07|
|186|[zhujisheng/Home-Assistant-DIY](https://github.com/zhujisheng/Home-Assistant-DIY)|Home Assistant智能家居实践篇|231|C++|06/26|
|187|[acm-clan/algorithm-stone](https://github.com/acm-clan/algorithm-stone)|ACM/LeetCode算法竞赛路线图,最全的算法学习地图!|227|C++|07/02|
|188|[TJ-CSCCG/TJCS-Course](https://github.com/TJ-CSCCG/TJCS-Course)|:bulb: 同济大学计算机科学与技术、信息安全专业课程资源共享仓库。含部分科目介绍、报告模板、实验工具等内容。期待更多课程加入……|225|C++|06/27|
|189|[youngyangyang04/Skiplist-CPP](https://github.com/youngyangyang04/Skiplist-CPP)|A tiny KV storage based on skiplist written in C++ language 使用C++开发,基于跳表实现的轻量级键值数据库🔥🔥 🚀|222|C++|07/06|
|190|[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同屏服务支持组播和单播两种模式。|220|C++|06/09|
|191|[unlir/XDrive](https://github.com/unlir/XDrive)|Stepper motor with multi-function interface and closed loop function. 具有多功能接口和闭环功能的步进电机。|220|C++|04/14|
|192|[LeechanX/Ring-Log](https://github.com/LeechanX/Ring-Log)|Ring-Log是一个高效简洁的C++异步日志, 其特点是效率高(每秒支持至少125万+日志写入)、易拓展,尤其适用于频繁写日志的场景|217|C++|06/27|
|193|[Ubpa/Utopia](https://github.com/Ubpa/Utopia)|Utopia Game Engine 无境游戏引擎|216|C++|06/28|
|194|[anyRTC-UseCase/SipRtcProxy](https://github.com/anyRTC-UseCase/SipRtcProxy)|网关服务:Sip与Rtc互通,实现Web,Android,iOS,小程序,SIP座机,PSTN电话,手机互通。|215|C++|12/04|
|195|[Winnerhust/uthread](https://github.com/Winnerhust/uthread)|一个简单的用户级线程库|215|C++|09/29|
|196|[ChunelFeng/caiss](https://github.com/ChunelFeng/caiss)|跨平台/多语言的 相似向量/相似词/相似句 高性能检索引擎。功能强大,使用方便。欢迎star & fork。Build together! Power another !|213|C++|05/19|
|197|[EmyWong/PersonalUITech](https://github.com/EmyWong/PersonalUITech)|个人学习的一些技术Demo|212|C++|07/30|
|198|[lengjibo/NetUser](https://github.com/lengjibo/NetUser)|使用windows api添加用户,可用于net无法使用时.分为nim版,c++版本,RDI版,BOF版。|211|C++|05/28|
|199|[chengciming/wechatPc](https://github.com/chengciming/wechatPc)|PC微信hook源码,PC微信注入,逆向编程,可以制作微信机器人玩玩,仅供学习,请不要用于商业、违法途径,本人不对此源码造成的违法负责!|210|C++|07/08|
|200|[FiYHer/EASY-HWID-SPOOFER](https://github.com/FiYHer/EASY-HWID-SPOOFER)|基于内核模式的硬件信息欺骗工具|208|C++|02/09|
⬆ [回到目录](#目录)
<br/>
## C#
|#|Repository|Description|Stars|Language|Updated|
|:-|:-|:-|:-|:-|:-|
|1|[huiyadanli/RevokeMsgPatcher](https://github.com/huiyadanli/RevokeMsgPatcher)|:trollface: A hex editor for WeChat/QQ/TIM - PC版微信/QQ/TIM防撤回补丁(我已经看到了,撤回也没用了)|10.4k|C#|07/08|
|2|[JeffreySu/WeiXinMPSDK](https://github.com/JeffreySu/WeiXinMPSDK)|微信全平台 SDK Senparc.Weixin for C#,支持 .NET Framework 及 .NET Core、.NET 6.0。已支持微信公众号、小程序、小游戏、企业号、企业微信、开放平台、微信支付、JSSDK、微信周边等全平台。 WeChat SDK for C#.|6.9k|C#|07/06|
|3|[TGSAN/CMWTAT_Digital_Edition](https://github.com/TGSAN/CMWTAT_Digital_Edition)|CloudMoe Windows 10 Activation Toolkit get digital license, the best open source Win 10 activator in GitHub. GitHub 上最棒的开源 Win10 数字权利(数字许可证)激活工具!|5.3k|C#|06/16|
|4|[nilaoda/N_m3u8DL-CLI](https://github.com/nilaoda/N_m3u8DL-CLI)|[.NET] m3u8 downloader 开源的命令行m3u8/HLS/dash下载器,支持普通AES-128-CBC解密,多线程,自定义请求头等. 支持简体中文,繁体中文和英文. English Supported.|5.1k|C#|07/04|
|5|[studyzy/imewlconverter](https://github.com/studyzy/imewlconverter)|一款开源免费的输入法词库转换程序|4.1k|C#|07/04|
|6|[dotnetcore/Util](https://github.com/dotnetcore/Util)|Util是一个.net core平台下的应用框架,旨在提升小型团队的开发输出能力,由常用公共操作类(工具类)、分层架构基类、Ui组件,第三方组件封装,第三方业务接口封装,配套代码生成模板,权限等组成。|3.8k|C#|07/01|
|7|[donet5/SqlSugar](https://github.com/donet5/SqlSugar)|Best ORM Fastest ORM Simple Easy Sqlite orm Oracle ORM Mysql Orm postgresql ORm SqlServer oRm 达梦 人大金仓|3.5k|C#|07/04|
|8|[anjoy8/Blog.Core](https://github.com/anjoy8/Blog.Core)|💖 ASP.NET Core 5.0 全家桶教程,前后端分离后端接口,vue教程姊妹篇,官方文档:|3.2k|C#|06/28|
|9|[SteamTools-Team/SteamTools](https://github.com/SteamTools-Team/SteamTools)| 🛠「Steam++」是一个包含多种Steam工具功能的工具箱。|3.1k|C#|07/08|
|10|[proxysu/ProxySU](https://github.com/proxysu/ProxySU)|Xray,V2ray,Trojan,NaiveProxy, Trojan-Go, ShadowsocksR(SSR),Shadowsocks-libev及相关插件,MTProto+TLS 一键安装工具,windows下用(一键科学上网)|2.9k|C#|07/08|
|11|[dotnetcore/FreeSql](https://github.com/dotnetcore/FreeSql)|🦄 .NET orm, Mysql orm, Postgresql orm, SqlServer orm, Oracle orm, Sqlite orm, Firebird orm, 达梦 orm, 人大金仓 orm, 神通 orm, 翰高 orm, 华为GaussDB orm, MsAccess orm.|2.9k|C#|07/06|
|12|[Accelerider/BaiduPanDownloadWinform](https://github.com/Accelerider/BaiduPanDownloadWinform)|百度网盘不限速下载工具|2.9k|C#|01/30|
|13|[siteserver/cms](https://github.com/siteserver/cms)|SS CMS 基于 .NET Core,能够以最低的成本、最少的人力投入在最短的时间内架设一个功能齐全、性能优异、规模庞大并易于维护的网站平台。|2.8k|C#|06/16|
|14|[k8gege/Ladon](https://github.com/k8gege/Ladon)|大型内网渗透扫描器&Cobalt Strike,Ladon7.2内置94个模块,包含信息收集/存活主机/端口扫描/服务识别/密码爆破/漏洞检测/漏洞利用。漏洞检测含MS17010/SMBGhost/Weblogic/ActiveMQ/Tomcat/Struts2,密码口令爆破(Mysql/Oracle/MSSQL)/FTP/SSH(Linux)/VNC/Windows(IPC/WMI/SMB/Netbios/LDAP/SmbHash/WmiHash/Winrm),远程执行命令(wmiexe/psexec/atexec/sshexec/webshell),降权提权Runas、GetSystem, ...|2.6k|C#|06/06|
|15|[SeriaWei/ZKEACMS](https://github.com/SeriaWei/ZKEACMS)|ZKEACMS build with .Net 5 (.Net CMS)可视化设计在线编辑内容管理系统|2.5k|C#|07/04|
|16|[BluePointLilac/ContextMenuManager](https://github.com/BluePointLilac/ContextMenuManager)|Windows右键菜单管理程序|2.5k|C#|07/08|
|17|[XINCGer/Unity3DTraining](https://github.com/XINCGer/Unity3DTraining)|Unity的练习项目|2.2k|C#|07/08|
|18|[QianMo/Unity-Design-Pattern](https://github.com/QianMo/Unity-Design-Pattern)|:tea: All Gang of Four Design Patterns written in Unity C# with many examples. And some Game Programming Patterns written in Unity C#. 各种设计模式的Unity3D C#版本实现|2.2k|C#|02/06|
|19|[ldqk/Masuit.Tools](https://github.com/ldqk/Masuit.Tools)|包含一些常用的操作类,大都是静态类,加密解密,反射操作,Excel简单导出,权重随机筛选算法,分布式短id,表达式树,linq扩展,文件压缩,多线程下载和FTP客户端,硬件信息,字符串扩展方法,日期时间扩展操作,中国农历,大文件拷贝,图像裁剪,验证码,断点续传,集合扩展等常用封装。任何性质的外包公司或996公司需要使用本类库,请联系作者进行商业授权,版权所有,违者必究!|2.1k|C#|07/08|