forked from GrowingGit/GitHub-Chinese-Top-Charts
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathREADME-Part2.md
1480 lines (1439 loc) · 263 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-PART.2
<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|7.4k|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.9k|Swift|10/25|
|3|[SwiftOldDriver/iOS-Weekly](https://github.com/SwiftOldDriver/iOS-Weekly)|🇨🇳 老司机 iOS 周报|3.9k|Swift|10/25|
|4|[100mango/zen](https://github.com/100mango/zen)|iOS, macOS, Swift, Objective-C 心得|2.8k|Swift|09/10|
|5|[wxxsw/SwiftTheme](https://github.com/wxxsw/SwiftTheme)|🎨 Powerful theme/skin manager for iOS 9+ 主题/换肤, 暗色模式|2.2k|Swift|10/15|
|6|[Danie1s/Tiercel](https://github.com/Danie1s/Tiercel)|简单易用、功能丰富的纯 Swift 下载框架|2.2k|Swift|10/25|
|7|[tid-kijyun/Kanna](https://github.com/tid-kijyun/Kanna)|Kanna(鉋) is an XML/HTML parser for Swift.|2.2k|Swift|10/06|
|8|[pujiaxin33/JXSegmentedView](https://github.com/pujiaxin33/JXSegmentedView)|A powerful and easy to use segmented view (segmentedcontrol, pagingview, pagerview, pagecontrol, categoryview) (腾讯新闻、今日头条、QQ音乐、网易云音乐、京东、爱奇艺、腾讯视频、淘宝、天猫、简书、微博等所有主流APP分类切换滚动视图)|1.9k|Swift|08/18|
|9|[MxABC/swiftScan](https://github.com/MxABC/swiftScan)|A barcode and qr code scanner( 二维码 各种码识别,生成,界面效果)|1.4k|Swift|05/24|
|10|[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.2k|Swift|10/20|
|11|[JiongXing/PhotoBrowser](https://github.com/JiongXing/PhotoBrowser)| Elegant photo browser in Swift. 图片与视频浏览器。|1.1k|Swift|09/20|
|12|[dengzemiao/DZMeBookRead](https://github.com/dengzemiao/DZMeBookRead)|支持项目使用!最完整小说阅读器Demo!仿iReader(掌阅),QQ阅读 ... 常用阅读器阅读页面,支持 翻页效果(仿真,覆盖,平移,滚动,无效果)、字体切换、书签功能、阅读记录、亮度调整、背景颜色切换 ...|1.0k|Swift|04/14|
|13|[spicyShrimp/U17](https://github.com/spicyShrimp/U17)|精仿有妖气漫画(Swift5)|916|Swift|10/25|
|14|[xjbeta/iina-plus](https://github.com/xjbeta/iina-plus)|Extra danmaku support for iina. (iina 弹幕支持|639|Swift|10/28|
|15|[zyphs21/HSStockChart](https://github.com/zyphs21/HSStockChart)|Stock Chart include CandleStickChart,TimeLineChart. 股票走势图,包括 K 线图,分时图,手势缩放,拖动|625|Swift|04/03|
|16|[lixiang1994/AttributedString](https://github.com/lixiang1994/AttributedString)|基于Swift插值方式优雅的构建富文本, 支持点击长按事件, 支持不同类型过滤, 支持自定义视图等.|444|Swift|09/03|
|17|[Coder-TanJX/JXBanner](https://github.com/Coder-TanJX/JXBanner)|🚀🚀🚀 A super - custom multifunctional framework for banner unlimited rollover diagrams [一个超自定义多功能无限轮播图框架]|443|Swift|09/22|
|18|[Cay-Zhang/RSSBud](https://github.com/Cay-Zhang/RSSBud)|RSSHub 的辅助 iOS App,和 RSSHub Radar 类似,他可以帮助你快速发现和订阅网站的 RSS。现已在 App Store 上架。|440|Swift|10/18|
|19|[lixiang1994/AutoInch](https://github.com/lixiang1994/AutoInch)|优雅的iPhone全尺寸/等比例精准适配工具|422|Swift|10/11|
|20|[easyui/EZPlayer](https://github.com/easyui/EZPlayer)|基于AVPlayer封装的视频播放器,功能丰富,快速集成,可定制性强,支持react-native。|408|Swift|06/27|
|21|[zqqf16/SYM](https://github.com/zqqf16/SYM)|A crash log symbolicating Mac app 一个图形化的崩溃日志符号化工具|407|Swift|06/15|
|22|[cmushroom/redis-pro](https://github.com/cmushroom/redis-pro)|redis-pro redis 桌面管理工具|397|Swift|08/06|
|23|[choiceyou/FWPopupView](https://github.com/choiceyou/FWPopupView)|弹窗控件:支持AlertView、Sheet、自定义视图的PopupView。AlertView中可以嵌套自定义视图,各组件的显示隐藏可配置;Sheet仿微信样式;同时提供自定义弹出。更多配置请参考”可设置参数“,提供OC使用Demo。|390|Swift|07/14|
|24|[mengxianliang/XLCardSwitch](https://github.com/mengxianliang/XLCardSwitch)|iOS 利用余弦函数特性实现可以居中放大的图片浏览工具|371|Swift|10/26|
|25|[Tliens/SpeedySwift](https://github.com/Tliens/SpeedySwift)|这是一个app开发的加速库。This is an accelerated library for app development|368|Swift|10/17|
|26|[dudongge/DDGScreenShot](https://github.com/dudongge/DDGScreenShot)|DDGScreenShot截屏图片处理,只需一句代码,复杂屏幕截屏(如view ScrollView webView wkwebView),图片后期处理,拼图,裁剪等|368|Swift|05/24|
|27|[MQZHot/ZCycleView](https://github.com/MQZHot/ZCycleView)|使用UICollectionView实现常见图片无限轮播,支持自定义cell,自定义pageControl,以及轮播样式|353|Swift|07/23|
|28|[MQZHot/DaisyNet](https://github.com/MQZHot/DaisyNet)|1. - Alamofire与Cache封装 , 更容易存储请求数据. 2. - 封装Alamofire下载,使用更方便|348|Swift|04/27|
|29|[pro648/BasicDemos-iOS](https://github.com/pro648/BasicDemos-iOS)|iOS学习进程中的demo汇总|346|Swift|10/15|
|30|[Sunnyyoung/AppleReserver](https://github.com/Sunnyyoung/AppleReserver)|Apple 官方预约命令行监控助手|342|Swift|10/19|
|31|[LvJianfeng/LLCycleScrollView](https://github.com/LvJianfeng/LLCycleScrollView)|Swift - 轮播图,文本轮播,支持左右箭头|339|Swift|10/27|
|32|[JmoVxia/CLDemo](https://github.com/JmoVxia/CLDemo)|这是一个Demo空间,持续更新|337|Swift|10/26|
|33|[fcbox/Lantern](https://github.com/fcbox/Lantern)|基于Swift的高可用视图框架|337|Swift|08/31|
|34|[Liaoworking/Advanced-Swift](https://github.com/Liaoworking/Advanced-Swift)|Notes of Advanced Swift. 《swift进阶》学习笔记 swift 5.3|303|Swift|07/15|
|35|[Coder-TanJX/JXPageControl](https://github.com/Coder-TanJX/JXPageControl)|🚀🚀🚀 自定义pageControl指示器, 支持多种动画, 自定义布局.|280|Swift|09/20|
|36|[Allen0828/AEAlertView](https://github.com/Allen0828/AEAlertView)|Custom AlertView supports multiple modes 自定义AlertView 支持多种模式弹窗|253|Swift|09/23|
|37|[Light413/dctt](https://github.com/Light413/dctt)|xx头条【完整项目持续迭代中】(一款本地生活信息发布APP,分享新鲜事、找人找对象等生活服务)。已App Store上架,这里仅供学习交流|244|Swift|09/23|
|38|[pujiaxin33/JXTheme](https://github.com/pujiaxin33/JXTheme)|A powerful and lightweight and customization theme/skin library for iOS 9+ in swift. 主题、换肤、暗黑模式|230|Swift|08/27|
|39|[04zhujunjie/ZJJPopup](https://github.com/04zhujunjie/ZJJPopup)|选择器 弹框|228|Swift|05/13|
|40|[04zhujunjie/ZJJForm](https://github.com/04zhujunjie/ZJJForm)|TableView 表单|227|Swift|05/17|
|41|[Code-T/salon-resources](https://github.com/Code-T/salon-resources)|你可以在这里获取相关的资料。|216|Swift|07/21|
|42|[SunshineBrother/SwiftTools](https://github.com/SunshineBrother/SwiftTools)|一个基于BeeHive实现的组件化方案|215|Swift|09/27|
|43|[Noah37/zhuishushenqi](https://github.com/Noah37/zhuishushenqi)|追书神器Swift版客户端(非官方)。 不断更新中......|211|Swift|06/13|
|44|[CoderLinLee/LLSegmentViewController](https://github.com/CoderLinLee/LLSegmentViewController)|可添加header的多控制器列表,主流APP分类切换滚动视图(京东,网易新闻,爱奇艺,QQ弹性小球等,可高度自定义,项目结构清晰);UIScrollView 嵌套,可做个人详情页,商品详情页,页面多tableView滑动悬停|205|Swift|06/28|
|45|[wxxsw/GSPlayer](https://github.com/wxxsw/GSPlayer)|⏯ Video player, support for caching, preload, fullscreen transition and custom control view. 视频播放器,支持边下边播、预加载、全屏转场和自定义控制层|205|Swift|07/20|
|46|[imeiju/iMeiJu_Mac](https://github.com/imeiju/iMeiJu_Mac)|爱美剧Mac客户端|201|Swift|06/21|
|47|[JoanKing/JKSwiftExtension](https://github.com/JoanKing/JKSwiftExtension)|Swift常用扩展、组件、协议,方便项目快速搭建,提供完整清晰的Demo示例,不断的完善中...... |171|Swift|10/23|
|48|[hui-z/image_gallery_saver](https://github.com/hui-z/image_gallery_saver)|flutter中用于保存图片到相册的Plugin|168|Swift|10/13|
|49|[wangrui460/WRCycleScrollView](https://github.com/wangrui460/WRCycleScrollView)|Swift 自动无限轮播用这个就够了 swift 4|159|Swift|07/19|
|50|[Liaoworking/MoyaNetworkTool](https://github.com/Liaoworking/MoyaNetworkTool)|a robust networkTool based on Moya. Moya Demo 一个强健的基于moya二次封装的网络框架|146|Swift|10/13|
|51|[xindong/anti-addiction-kit](https://github.com/xindong/anti-addiction-kit)|📱手机游戏防沉迷系统 SDK,支持 iOS+Android+Unity,快速接入!|146|Swift|09/17|
|52|[even-cheng/ECSigner](https://github.com/even-cheng/ECSigner)|iOS签名Mac客户端,一键签名,网络地址直签,多文件同步签,自动区分企业签名和个人证书,一键Assets.car生成、解压导出和替换,自动注册设备并更新下载签名证书和签名文件进行签名,支持动态库注入。支持Swift5和iOS14,macOS10.15并向下兼容。|133|Swift|04/16|
|53|[pujiaxin33/JXPopupView](https://github.com/pujiaxin33/JXPopupView)|一个轻量级的自定义视图弹出框架|126|Swift|10/12|
|54|[FlutterTaoBaoKe/flutter_alibc](https://github.com/FlutterTaoBaoKe/flutter_alibc)|flutter版本的阿里百川插件|121|Swift|08/03|
|55|[937447974/YJCocoa](https://github.com/937447974/YJCocoa)|YJ 系列 Pod 开源库|118|Swift|10/18|
|56|[gl-lei/algorithm](https://github.com/gl-lei/algorithm)|《数据结构与算法之美》学习笔记以及 Swift 代码实现 ,原始仓库 https://github.com/wangzheng0822/algo|112|Swift|08/24|
|57|[ethanhuang13/blahker](https://github.com/ethanhuang13/blahker)|巴拉剋 - Safari 蓋版廣告消除器|110|Swift|07/13|
|58|[qyz777/DanmakuKit](https://github.com/qyz777/DanmakuKit)|高性能弹幕框架 DanmakuKit is a high performance library that provides the basic functions of danmaku.|103|Swift|09/05|
|59|[parkingwang/vehicle-keyboard-ios](https://github.com/parkingwang/vehicle-keyboard-ios)|停车王车牌号码专用键盘 - iOS|102|Swift|07/27|
|60|[kingsic/PagingViewKit](https://github.com/kingsic/PagingViewKit)|A powerful and easy to use segment view 【QQ、淘宝、微博、腾讯、网易新闻、今日头条等标题滚动视图】|95|Swift|10/23|
|61|[LinXunFeng/LXFProtocolTool](https://github.com/LinXunFeng/LXFProtocolTool)|由Swift中协议方式实现功能的实用工具库【Refreshable、EmptyDataSetable 支持 Rx 】|94|Swift|10/19|
|62|[wxxsw/Refresh](https://github.com/wxxsw/Refresh)|🎈 Great SwiftUI drop-down refresh and scroll up to load more. 下拉刷新、上拉加载|89|Swift|09/13|
|63|[JWAutumn/ACarousel](https://github.com/JWAutumn/ACarousel)|A carousel view for SwiftUI SwiftUI 旋转木马效果|75|Swift|10/12|
|64|[sulioppa/ChineseChess](https://github.com/sulioppa/ChineseChess)|Chinese Chess(中国象棋) - A Free iOS App(C & Obj-C & Swift)|73|Swift|09/12|
|65|[BoxDengJZ/AudioJz](https://github.com/BoxDengJZ/AudioJz)|个人学过的,音频相关的技巧。从 ray wenderlich 开始|69|Swift|06/11|
|66|[HuaZao/TC1-NG](https://github.com/HuaZao/TC1-NG)|斐讯TC1 DC1 A1 M1 iOS客户端|64|Swift|06/30|
|67|[Allen0828/GPUImage2-Swift](https://github.com/Allen0828/GPUImage2-Swift)|使用GPUImage2时常见的问题。常用滤镜组合的参考。|63|Swift|07/15|
|68|[Tao93/NetTool](https://github.com/Tao93/NetTool)|macOS 状态栏小工具实时显示网速. macOS menubar tool to monitor network speed.|59|Swift|08/28|
|69|[WangLiquan/EWAddressPicker-Swift](https://github.com/WangLiquan/EWAddressPicker-Swift)|A custom addressPicker.Swift.地址选择器,选择省市地区.|59|Swift|05/18|
|70|[xaoxuu/ProHUD](https://github.com/xaoxuu/ProHUD)|完全可定制化的HUD,包含顶部区域的Toast,中央区域的Alert和底部区域的ActionSheet。|59|Swift|08/16|
|71|[YTiOSer/YTAnimation](https://github.com/YTiOSer/YTAnimation)|iOS动画集锦, swift, 核心动画, 基础动画,关键帧动画, 组动画, 过渡动画, 进度条,项目案例.|57|Swift|10/06|
|72|[shinnytech/shinny-futures-ios](https://github.com/shinnytech/shinny-futures-ios)|一个开源的 ios 平台期货行情交易终端|53|Swift|07/13|
|73|[yuldong/iOS-interviews](https://github.com/yuldong/iOS-interviews)|尝试解答 -> 阿里、字节:一套高效的iOS面试题|46|Swift|05/16|
|74|[V5zhou/ZZXcodeFormat](https://github.com/V5zhou/ZZXcodeFormat)|支持OC与swift代码格式化|46|Swift|05/19|
|75|[Boxzhi/HZNavigationBar](https://github.com/Boxzhi/HZNavigationBar)|A very simple to use, can be completely customized navigation bar. 一款使用非常简单,可以完全自定义的导航栏。 |46|Swift|05/13|
|76|[pcjbird/fbCharm](https://github.com/pcjbird/fbCharm)|The fallback mechanism with iOS is used to set fonts for different languages (script), thereby making text mixing typography more elegant. iOS 上利用 fallback 机制为不同语言的文字 (script) 设定字体,从而使得文本混排更为优雅。|43|Swift|04/15|
|77|[yungfan/SwiftUI-learning](https://github.com/yungfan/SwiftUI-learning)|SwiftUI教程配套代码(SwiftUI+SwiftUI 2.0+SwiftUI 3.0)|43|Swift|10/14|
|78|[liujunliuhong/DragCardContainer](https://github.com/liujunliuhong/DragCardContainer)|高度还原类似探探等社交应用的滑牌、卡牌交互效果|43|Swift|10/22|
|79|[simon9211/privacyInsight](https://github.com/simon9211/privacyInsight)|读取app「记录App活动」文件,展示app访问权限及网络记录|42|Swift|10/28|
|80|[CoderHuiYu/MMAdvertScrollView](https://github.com/CoderHuiYu/MMAdvertScrollView)|一个简单、轻量级的swift版公告轮播框架|41|Swift|09/15|
|81|[seasonZhu/RxStudy](https://github.com/seasonZhu/RxStudy)|RxSwift/RxCocoa框架,MVVM模式编写wanandroid客户端|41|Swift|10/25|
|82|[WangLiquan/EWDatePicker](https://github.com/WangLiquan/EWDatePicker)|A custom datePicker.基于ViewController的从下方弹出日期选择器|40|Swift|05/18|
|83|[ChinaArJun/shopping-cart-Demo](https://github.com/ChinaArJun/shopping-cart-Demo)|IOS购物车: 用Swift 写的购物车Demo, shopping cart , swift 4.0|37|Swift|09/16|
|84|[Nemocdz/ImageCompress-iOS](https://github.com/Nemocdz/ImageCompress-iOS)|基于 ImageIO 支持动静态的图片压缩库|36|Swift|10/20|
|85|[SketchK/ImportSanitizer](https://github.com/SketchK/ImportSanitizer)|一款能够帮助开发者自动解决工程中各类头文件引用问题的 CLI 工具,简单,高效,全能的它会让你爱不释手!|35|Swift|05/11|
|86|[jaywcjlove/swiftui-example](https://github.com/jaywcjlove/swiftui-example)|SwiftUI 示例,技巧和技术集合,帮助我构建应用程序,解决问题以及了解SwiftUI的实际工作方式。|32|Swift|10/24|
|87|[isHYE/HYPlayerDemo](https://github.com/isHYE/HYPlayerDemo)|音视频播放器|31|Swift|07/06|
|88|[FreeYXY/SwiftProject](https://github.com/FreeYXY/SwiftProject)|swift项目实战|31|Swift|10/08|
|89|[BugenZhao/MNGA](https://github.com/BugenZhao/MNGA)|💬 A refreshing NGA Forum App in SwiftUI. Make NGA Great Again! aka "NGA 论坛 iOS 开源客户端"|30|Swift|10/27|
|90|[ilobos/DeviceSupport](https://github.com/ilobos/DeviceSupport)|iOS真机调试支持文件,支持iOS9-15,已支持最新的iOS14.7,iOS15.1;解决【Your Xcode version may be too old for your iOS version.】、无法识别设备等问题。|29|Swift|06/08|
|91|[ZhongshanHuang/PoReader](https://github.com/ZhongshanHuang/PoReader)|本地小说阅读器,支持深色模式,Wifi传书,代码简洁有注释(local text reader, support dark modal, upload text by wifi)|29|Swift|10/20|
|92|[yungfan/iOS-BasedOnSwift](https://github.com/yungfan/iOS-BasedOnSwift)|iOS开发教程案例代码|27|Swift|09/22|
|93|[Tliens/SSPlan](https://github.com/Tliens/SSPlan)|《今日计划》源代码(open source for the app:今日计划)|26|Swift|10/07|
|94|[CodeOcenS/SwiftJSONModeler](https://github.com/CodeOcenS/SwiftJSONModeler)|Xcode Extension that convert json to Swift model. 转换json为Swift模型的Xcode插件,还支持YApi接口平台自动添加注释哟|26|Swift|04/29|
|95|[jialongsu/react-native-s-baidumap](https://github.com/jialongsu/react-native-s-baidumap)|百度地图 React Native ,同时支持ios和android|25|Swift|09/22|
|96|[iHTCboy/iWuBi](https://github.com/iHTCboy/iWuBi)|iWuBi 是一款五笔输入法相关知识的学习App,目的是为了方便初学者学习和快速查询拆字等,防止老司机翻车~|24|Swift|04/10|
|97|[QiYuTechOrg/QiYuTkiOS](https://github.com/QiYuTechOrg/QiYuTkiOS)|奇遇淘客 iOS 客户端|24|Swift|05/06|
|98|[sfldzh/SRAlbum](https://github.com/sfldzh/SRAlbum)|自定义相册,带拍照、录像,图片处理(GPUImage)|23|Swift|10/21|
|99|[swiftdo/design-patterns](https://github.com/swiftdo/design-patterns)|设计模式,经典样例|23|Swift|06/08|
|100|[KelvinQQ/SpiderCard](https://github.com/KelvinQQ/SpiderCard)|蜘蛛纸牌 for mac|22|Swift|08/24|
⬆ [回到目录](#目录)
<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.7k|Jupyter Notebook|08/11|
|2|[zergtant/pytorch-handbook](https://github.com/zergtant/pytorch-handbook)|pytorch handbook是一本开源的书籍,目标是帮助那些希望和使用PyTorch进行深度学习开发和研究的朋友快速入门,其中包含的Pytorch教程全部通过测试保证可以成功运行|15.5k|Jupyter Notebook|10/25|
|3|[fengdu78/lihang-code](https://github.com/fengdu78/lihang-code)|《统计学习方法》的代码实现|14.7k|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.9k|Jupyter Notebook|10/14|
|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.|12.0k|Jupyter Notebook|08/30|
|6|[NLP-LOVE/ML-NLP](https://github.com/NLP-LOVE/ML-NLP)|此项目是机器学习(Machine Learning)、深度学习(Deep Learning)、NLP面试中常考到的知识点和代码实现,也是作为一个算法工程师必会的理论基础知识。|10.4k|Jupyter Notebook|06/26|
|7|[apachecn/Interview](https://github.com/apachecn/Interview)|Interview = 简历指南 + LeetCode + Kaggle|7.2k|Jupyter Notebook|09/25|
|8|[MorvanZhou/PyTorch-Tutorial](https://github.com/MorvanZhou/PyTorch-Tutorial)|Build your neural network easy and fast, 莫烦Python中文教学|6.3k|Jupyter Notebook|04/01|
|9|[Mikoto10032/DeepLearning](https://github.com/Mikoto10032/DeepLearning)|深度学习入门教程, 优秀文章, Deep Learning Tutorial|6.1k|Jupyter Notebook|10/21|
|10|[xianhu/LearnPython](https://github.com/xianhu/LearnPython)|以撸代码的形式学习Python|6.0k|Jupyter Notebook|09/26|
|11|[fengdu78/Data-Science-Notes](https://github.com/fengdu78/Data-Science-Notes)|数据科学的笔记以及资料搜集|5.9k|Jupyter Notebook|08/16|
|12|[roboticcam/machine-learning-notes](https://github.com/roboticcam/machine-learning-notes)|My continuously updated Machine Learning, Probabilistic Models and Deep Learning notes and demos (2000+ slides) 我不间断更新的机器学习,概率模型和深度学习的讲义(2000+页)和视频链接|5.3k|Jupyter Notebook|10/13|
|13|[Alfred1984/interesting-python](https://github.com/Alfred1984/interesting-python)|有趣的Python爬虫和Python数据分析小项目(Some interesting Python crawlers and data analysis projects)|3.9k|Jupyter Notebook|07/06|
|14|[snowkylin/tensorflow-handbook](https://github.com/snowkylin/tensorflow-handbook)|简单粗暴 TensorFlow 2 A Concise Handbook of TensorFlow 2 一本简明的 TensorFlow 2 入门指导教程|3.6k|Jupyter Notebook|09/04|
|15|[TrickyGo/Dive-into-DL-TensorFlow2.0](https://github.com/TrickyGo/Dive-into-DL-TensorFlow2.0)|本项目将《动手学深度学习》(Dive into Deep Learning)原书中的MXNet实现改为TensorFlow 2.0实现,项目已得到李沐老师的认可|3.3k|Jupyter Notebook|08/31|
|16|[datawhalechina/easy-rl](https://github.com/datawhalechina/easy-rl)|强化学习中文教程,在线阅读地址:https://datawhalechina.github.io/easy-rl/|2.7k|Jupyter Notebook|10/09|
|17|[datawhalechina/joyful-pandas](https://github.com/datawhalechina/joyful-pandas)|pandas中文教程|2.7k|Jupyter Notebook|10/05|
|18|[PaddlePaddle/book](https://github.com/PaddlePaddle/book)|Deep Learning 101 with PaddlePaddle (『飞桨』深度学习框架入门教程)|2.6k|Jupyter Notebook|09/04|
|19|[datawhalechina/competition-baseline](https://github.com/datawhalechina/competition-baseline)|数据科学竞赛知识、代码、思路|2.4k|Jupyter Notebook|09/29|
|20|[wangshub/RL-Stock](https://github.com/wangshub/RL-Stock)|📈 如何用深度强化学习自动炒股|2.1k|Jupyter Notebook|09/08|
|21|[szcf-weiya/ESL-CN](https://github.com/szcf-weiya/ESL-CN)|The Elements of Statistical Learning (ESL)的中文翻译、代码实现及其习题解答。|1.8k|Jupyter Notebook|10/17|
|22|[wowchemy/starter-hugo-academic](https://github.com/wowchemy/starter-hugo-academic)|🎓 Hugo Academic Theme 创建一个学术网站. Easily create a beautiful academic résumé or educational website using Hugo, GitHub, and Netlify.|1.6k|Jupyter Notebook|10/24|
|23|[FinMind/FinMind](https://github.com/FinMind/FinMind)|Open Data, more than 50 financial data. 提供超過 50 個金融資料(台股為主),每天更新 https://finmind.github.io/|1.6k|Jupyter Notebook|10/06|
|24|[xavier-zy/Awesome-pytorch-list-CNVersion](https://github.com/xavier-zy/Awesome-pytorch-list-CNVersion)|Awesome-pytorch-list 翻译工作进行中......|1.5k|Jupyter Notebook|07/26|
|25|[jm199504/Financial-Knowledge-Graphs](https://github.com/jm199504/Financial-Knowledge-Graphs)|小型金融知识图谱构建流程|1.5k|Jupyter Notebook|05/09|
|26|[Charmve/computer-vision-in-action](https://github.com/Charmve/computer-vision-in-action)|《计算机视觉实战演练:算法与应用》中文电子书、源码、读者交流社区(持续更新中 ...) 📘 在线电子书 https://charmve.github.io/computer-vision-in-action/ 👇项目主页|1.2k|Jupyter Notebook|10/15|
|27|[Fafa-DL/Lhy_Machine_Learning](https://github.com/Fafa-DL/Lhy_Machine_Learning)|李宏毅2021春季机器学习课程课件及作业|1.1k|Jupyter Notebook|06/23|
|28|[ben1234560/AiLearning-Theory-Applying](https://github.com/ben1234560/AiLearning-Theory-Applying)|快速上手Ai理论及应用实战:基础知识Basic knowledge、机器学习MachineLearning、深度学习DeepLearning2、自然语言处理BERT,持续更新中。含大量注释及数据集,力求每一位能看懂并复现。|936|Jupyter Notebook|10/27|
|29|[PaddlePaddle/awesome-DeepLearning](https://github.com/PaddlePaddle/awesome-DeepLearning)|深度学习入门课、资深课、特色课、学术案例、产业实践案例、深度学习知识百科及面试题库The course, case and knowledge of Deep Learning and AI|914|Jupyter Notebook|10/29|
|30|[huaweicloud/ModelArts-Lab](https://github.com/huaweicloud/ModelArts-Lab)|ModelArts-Lab是示例代码库。更多AI开发学习交流信息,请访问华为云AI开发者社区:huaweicloud.ai|875|Jupyter Notebook|10/09|
|31|[datawhalechina/team-learning-data-mining](https://github.com/datawhalechina/team-learning-data-mining)|主要存储Datawhale组队学习中“数据挖掘/机器学习”方向的资料。|838|Jupyter Notebook|10/13|
|32|[eastmountyxz/ImageProcessing-Python](https://github.com/eastmountyxz/ImageProcessing-Python)|该资源为作者在CSDN的撰写Python图像处理文章的支撑,主要是Python实现图像处理、图像识别、图像分类等算法代码实现,希望该资源对您有所帮助,一起加油。|739|Jupyter Notebook|09/14|
|33|[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 篇 行业应用 & 课程笔记|712|Jupyter Notebook|10/11|
|34|[lxztju/pytorch_classification](https://github.com/lxztju/pytorch_classification)|利用pytorch实现图像分类的一个完整的代码,训练,预测,TTA,模型融合,模型部署,cnn提取特征,svm或者随机森林等进行分类,模型蒸馏,一个完整的代码|673|Jupyter Notebook|04/13|
|35|[fengdu78/WZU-machine-learning-course](https://github.com/fengdu78/WZU-machine-learning-course)|温州大学《机器学习》课程资料(代码、课件等)|651|Jupyter Notebook|10/29|
|36|[zhouyanasd/or-pandas](https://github.com/zhouyanasd/or-pandas)|【运筹OR帷幄 数据科学】pandas教程系列电子书|639|Jupyter Notebook|10/17|
|37|[CNFeffery/DataScienceStudyNotes](https://github.com/CNFeffery/DataScienceStudyNotes)|这个仓库保管从(数据科学学习手札69)开始的所有代码、数据等相关附件内容|637|Jupyter Notebook|10/27|
|38|[geektutu/interview-questions](https://github.com/geektutu/interview-questions)|机器学习/深度学习/Python/Go语言面试题笔试题(Machine learning Deep Learning Python and Golang Interview Questions)|628|Jupyter Notebook|06/12|
|39|[fly51fly/Practical_Python_Programming](https://github.com/fly51fly/Practical_Python_Programming)|北邮《Python编程与实践》课程资料|627|Jupyter Notebook|06/09|
|40|[MemorialCheng/deep-learning-from-scratch](https://github.com/MemorialCheng/deep-learning-from-scratch)|深度学习入门-基于Python的理论与实现》,包含源代码和高清PDF(带书签);慕课网imooc《深度学习之神经网络(CNN-RNN-GAN)算法原理-实战》|577|Jupyter Notebook|09/11|
|41|[DataXujing/YOLO-v5](https://github.com/DataXujing/YOLO-v5)|:art: Pytorch YOLO v5 训练自己的数据集超详细教程!!! :art: (提供PDF训练教程下载)|556|Jupyter Notebook|08/26|
|42|[gengyanlei/fire-smoke-detect-yolov4](https://github.com/gengyanlei/fire-smoke-detect-yolov4)|fire-smoke-detect-yolov4-yolov5 and fire-smoke-detection-dataset 火灾检测,烟雾检测|538|Jupyter Notebook|10/28|
|43|[LYuhang/GNN_Review](https://github.com/LYuhang/GNN_Review)|GNN综述阅读报告|521|Jupyter Notebook|08/17|
|44|[shibing624/python-tutorial](https://github.com/shibing624/python-tutorial)|Python实用教程,包括:Python基础,Python高级特性,面向对象编程,多线程,数据库,数据科学,Flask,爬虫开发教程。|509|Jupyter Notebook|10/12|
|45|[datawhalechina/team-learning-program](https://github.com/datawhalechina/team-learning-program)|主要存储Datawhale组队学习中“编程、数据结构与算法”方向的资料。|496|Jupyter Notebook|10/18|
|46|[LinXueyuanStdio/LaTeX_OCR_PRO](https://github.com/LinXueyuanStdio/LaTeX_OCR_PRO)|:art: 数学公式识别增强版:中英文手写印刷公式、支持初级符号推导(数据结构基于 LaTeX 抽象语法树)|485|Jupyter Notebook|10/20|
|47|[datawhalechina/statistical-learning-method-solutions-manual](https://github.com/datawhalechina/statistical-learning-method-solutions-manual)|《统计学习方法》(第二版)习题解答,在线阅读地址:https://datawhalechina.github.io/statistical-learning-method-solutions-manual|470|Jupyter Notebook|10/25|
|48|[ChileWang0228/Deep-Learning-With-Python](https://github.com/ChileWang0228/Deep-Learning-With-Python)|《Python深度学习》书籍代码|469|Jupyter Notebook|05/13|
|49|[datawhalechina/hands-on-data-analysis](https://github.com/datawhalechina/hands-on-data-analysis)|动手学数据分析以项目为主线,知识点孕育其中,通过边学、边做、边引导来得到更好的学习效果|457|Jupyter Notebook|09/09|
|50|[zkywsg/Daily-DeepLearning](https://github.com/zkywsg/Daily-DeepLearning)|🔥机器学习/深度学习/Python/算法面试/自然语言处理教程/剑指offer/machine learning/deeplearning/Python/Algorithm interview/NLP Tutorial|436|Jupyter Notebook|07/13|
|51|[DjangoPeng/tensorflow-101](https://github.com/DjangoPeng/tensorflow-101)|《TensorFlow 快速入门与实战》和《TensorFlow 2 项目进阶实战》课程代码与课件|413|Jupyter Notebook|05/07|
|52|[Syencil/mobile-yolov5-pruning-distillation](https://github.com/Syencil/mobile-yolov5-pruning-distillation)|mobilev2-yolov5s剪枝、蒸馏,支持ncnn,tensorRT部署。ultra-light but better performence!|410|Jupyter Notebook|07/10|
|53|[bobo0810/PytorchNetHub](https://github.com/bobo0810/PytorchNetHub)|项目注释+论文复现+算法竞赛+Pytorch指北|395|Jupyter Notebook|09/17|
|54|[cliuxinxin/TX-WORD2VEC-SMALL](https://github.com/cliuxinxin/TX-WORD2VEC-SMALL)|腾讯word2vec模型缩小版|377|Jupyter Notebook|04/20|
|55|[isee15/Card-Ocr](https://github.com/isee15/Card-Ocr)|身份证识别OCR|368|Jupyter Notebook|09/22|
|56|[ga642381/ML2021-Spring](https://github.com/ga642381/ML2021-Spring)|**Official** 李宏毅 (Hung-yi Lee) 機器學習 Machine Learning 2021 Spring|364|Jupyter Notebook|06/18|
|57|[datawhalechina/team-learning-nlp](https://github.com/datawhalechina/team-learning-nlp)|主要存储Datawhale组队学习中“自然语言处理”方向的资料。|341|Jupyter Notebook|09/17|
|58|[linguishi/chinese_sentiment](https://github.com/linguishi/chinese_sentiment)|中文情感分析,CNN,BI-LSTM,文本分类|310|Jupyter Notebook|08/25|
|59|[wolfparticle/machineLearningDeepLearning](https://github.com/wolfparticle/machineLearningDeepLearning)|李宏毅2021机器学习深度学习笔记PPT作业|305|Jupyter Notebook|06/14|
|60|[SummerLife/EmbeddedSystem](https://github.com/SummerLife/EmbeddedSystem)|:books: 计算机体系架构、嵌入式系统基础与主流编程语言相关内容总结|305|Jupyter Notebook|10/25|
|61|[LiuChuang0059/Complex-Network](https://github.com/LiuChuang0059/Complex-Network)|复杂网络研究资源整理和基础知识学习|296|Jupyter Notebook|05/14|
|62|[tsuirak/skills](https://github.com/tsuirak/skills)|个人的技能树仓库,主要包含个人机器学习以及深度学习的笔记|295|Jupyter Notebook|04/01|
|63|[zhouwei713/data_analysis](https://github.com/zhouwei713/data_analysis)|一些爬虫和数据分析相关实战练习|295|Jupyter Notebook|08/29|
|64|[liuhuanshuo/zaoqi-Python](https://github.com/liuhuanshuo/zaoqi-Python)|公众号:早起Python|292|Jupyter Notebook|10/20|
|65|[qiguming/MLAPP_CN_CODE](https://github.com/qiguming/MLAPP_CN_CODE)|《Machine Learning: A Probabilistic Perspective》(Kevin P. Murphy)中文翻译和书中算法的Python实现。|287|Jupyter Notebook|07/14|
|66|[derekhe/mobike-crawler](https://github.com/derekhe/mobike-crawler)|摩拜单车爬虫|262|Jupyter Notebook|07/26|
|67|[LinXueyuanStdio/LaTeX_OCR](https://github.com/LinXueyuanStdio/LaTeX_OCR)|:gem: 数学公式识别|248|Jupyter Notebook|09/08|
|68|[zhongqiangwu960812/AI-RecommenderSystem](https://github.com/zhongqiangwu960812/AI-RecommenderSystem)|该仓库尝试整理推荐系统领域的一些经典算法模型|237|Jupyter Notebook|10/09|
|69|[LogicJake/competition_baselines](https://github.com/LogicJake/competition_baselines)|开源的各大比赛baseline|236|Jupyter Notebook|10/12|
|70|[wzy6642/Dive-Into-Deep-Learning-PyTorch-PDF](https://github.com/wzy6642/Dive-Into-Deep-Learning-PyTorch-PDF)|本项目对中文版《动手学深度学习》中的代码进行了PyTorch实现并整理为PDF版本供下载|226|Jupyter Notebook|05/19|
|71|[CUHKSZ-TQL/WeiboSpider_SentimentAnalysis](https://github.com/CUHKSZ-TQL/WeiboSpider_SentimentAnalysis)|借助Python抓取微博数据,并对抓取的数据进行情绪分析|222|Jupyter Notebook|10/07|
|72|[jarodHAN/Python-100-Days-master](https://github.com/jarodHAN/Python-100-Days-master)|python100天学习资料|206|Jupyter Notebook|06/02|
|73|[yutiansut/QAStrategy](https://github.com/yutiansut/QAStrategy)|策略基类/ 支持QIFI协议|200|Jupyter Notebook|09/01|
|74|[PhilosopherZ/Meteorological-Books](https://github.com/PhilosopherZ/Meteorological-Books)|气象相关书籍合集(持续更新)|193|Jupyter Notebook|04/25|
|75|[datawhalechina/fantastic-matplotlib](https://github.com/datawhalechina/fantastic-matplotlib)|Matplotlib中文教程,在线阅读地址:https://datawhalechina.github.io/fantastic-matplotlib/|191|Jupyter Notebook|08/09|
|76|[d2l-ai/d2l-zh-pytorch-slides](https://github.com/d2l-ai/d2l-zh-pytorch-slides)|Pytorch版代码幻灯片|190|Jupyter Notebook|10/29|
|77|[Relph1119/statistical-learning-method-camp](https://github.com/Relph1119/statistical-learning-method-camp)|统计学习方法训练营课程作业及答案,视频笔记在线阅读地址:https://relph1119.github.io/statistical-learning-method-camp|189|Jupyter Notebook|09/08|
|78|[Mryangkaitong/python-Machine-learning](https://github.com/Mryangkaitong/python-Machine-learning)|机器学习算法项目|187|Jupyter Notebook|10/15|
|79|[d2l-ai/courses-zh-v2](https://github.com/d2l-ai/courses-zh-v2)|中文版 v2 课程|183|Jupyter Notebook|09/14|
|80|[LemenChao/PythonFromDAToDS](https://github.com/LemenChao/PythonFromDAToDS)|图书《Python编程:从数据分析到数据科学》的配套资源|181|Jupyter Notebook|10/10|
|81|[zwq2018/AI_UAV](https://github.com/zwq2018/AI_UAV)|在人工智能、机器视觉、高精度导航定位和多传感器融合等技术的助推下,众多行业迎来了前所未有的发展机遇,人工智能+无人机(AI+UAV)正是一个具有无限想象力的应用方向。|179|Jupyter Notebook|10/13|
|82|[brain-zhang/xianglong](https://github.com/brain-zhang/xianglong)|资产配置方案|174|Jupyter Notebook|09/07|
|83|[gengyanlei/reflective-clothes-detect-yolov5](https://github.com/gengyanlei/reflective-clothes-detect-yolov5)|reflective-clothes-detect-dataset、helemet detection yolov5、工作服(反光衣)检测数据集、安全帽检测、施工人员穿戴检测|173|Jupyter Notebook|07/02|
|84|[44670/SourceHanSans-Pixel](https://github.com/44670/SourceHanSans-Pixel)|基于思源黑体的开源像素字体|170|Jupyter Notebook|08/20|
|85|[fire717/Machine-Learning](https://github.com/fire717/Machine-Learning)|机器学习&深度学习资料笔记&基本算法实现&资源整理(ML / CV / NLP / DM...)|161|Jupyter Notebook|10/28|
|86|[kingname/SourceCodeofMongoRedis](https://github.com/kingname/SourceCodeofMongoRedis)|《左手MongoDB,右手Redis——从入门到商业实战》书籍配套源代码。|160|Jupyter Notebook|08/19|
|87|[datawhalechina/team-learning-cv](https://github.com/datawhalechina/team-learning-cv)|主要存储Datawhale组队学习中“计算机视觉”方向的资料。|154|Jupyter Notebook|09/06|
|88|[duoergun0729/adversarial_examples](https://github.com/duoergun0729/adversarial_examples)|对抗样本|146|Jupyter Notebook|10/28|
|89|[dengxiuqi/WeiboSentiment](https://github.com/dengxiuqi/WeiboSentiment)|基于各种机器学习和深度学习的中文微博情感分析|144|Jupyter Notebook|06/07|
|90|[huangtinglin/Linear-Algebra-and-Its-Applications-notes](https://github.com/huangtinglin/Linear-Algebra-and-Its-Applications-notes)|《线性代数及其应用》笔记|140|Jupyter Notebook|09/17|
|91|[makelove/Programer_Log](https://github.com/makelove/Programer_Log)|最新动态在这里【我的程序员日志】|135|Jupyter Notebook|09/03|
|92|[liuhuanshuo/zaoqi-data](https://github.com/liuhuanshuo/zaoqi-data)|公众号:可视化图鉴|134|Jupyter Notebook|05/17|
|93|[yenlung/Deep-Learning-MOOC](https://github.com/yenlung/Deep-Learning-MOOC)|這是我在政治大學開設 Deep Learning MOOC 教學的相關檔案。|133|Jupyter Notebook|07/09|
|94|[aipredict/ai-deployment](https://github.com/aipredict/ai-deployment)|关注AI模型上线、模型部署|126|Jupyter Notebook|07/15|
|95|[huanghao128/zh-nlp-demo](https://github.com/huanghao128/zh-nlp-demo)|自然语言处理NLP在中文文本上的一些应用,如文本分类、情感分析、命名实体识别等|120|Jupyter Notebook|04/30|
|96|[hugo2046/Quantitative-analysis](https://github.com/hugo2046/Quantitative-analysis)|量化研究-券商金工研报复现|119|Jupyter Notebook|09/24|
|97|[nmcdev/meteva](https://github.com/nmcdev/meteva)|提供气象产品检验相关程序|119|Jupyter Notebook|07/07|
|98|[liuhuanshuo/Pandas_Advanced_Exercise](https://github.com/liuhuanshuo/Pandas_Advanced_Exercise)|Pandas进阶修炼300题|116|Jupyter Notebook|09/22|
|99|[fancyerii/deep_learning_theory_and_practice](https://github.com/fancyerii/deep_learning_theory_and_practice)|《深度学习理论与实战:基础篇》代码|116|Jupyter Notebook|06/08|
|100|[JackonYang/paper-reading](https://github.com/JackonYang/paper-reading)|比做算法的懂工程落地,比做工程的懂算法模型。|114|Jupyter Notebook|09/08|
|101|[datamonday/Time-Series-Analysis-Tutorial](https://github.com/datamonday/Time-Series-Analysis-Tutorial)|时间序列分析教程|112|Jupyter Notebook|06/02|
|102|[chansonZ/book-ml-sem](https://github.com/chansonZ/book-ml-sem)|《机器学习:软件工程方法与实现》Method and implementation of machine learning software engineering|111|Jupyter Notebook|09/12|
|103|[azy1988/ML-CV](https://github.com/azy1988/ML-CV)|机器学习实战|105|Jupyter Notebook|09/08|
|104|[excelsimon/AI](https://github.com/excelsimon/AI)|机器学习、深度学习、自然语言处理、计算机视觉等AI领域相关技术的算法推导及应用|104|Jupyter Notebook|08/05|
|105|[miracleyoo/pytorch-lightning-template](https://github.com/miracleyoo/pytorch-lightning-template)|An easy/swift-to-adapt PyTorch-Lighting template. 套壳模板,简单易用,稍改原来Pytorch代码,即可适配Lightning。You can translate your previous Pytorch code much easier using this template, and keep your freedom to edit all the functions as well. Big-project-friendly as well.|98|Jupyter Notebook|05/15|
|106|[oldratlee/software-practice-thoughts](https://github.com/oldratlee/software-practice-thoughts)|📚 🐣 软件实践文集。主题不限,思考讨论有趣有料就好,包含如 系统的模型分析/量化分析、开源漫游者指南、软件可靠性设计实践…… 🥤|94|Jupyter Notebook|09/18|
|107|[dsh0416/quantum-i-ching](https://github.com/dsh0416/quantum-i-ching)|A Quantum 爻 System Implementation for Divination |93|Jupyter Notebook|05/18|
|108|[0809zheng/CS231n-assignment2019](https://github.com/0809zheng/CS231n-assignment2019)|CS231n 2019年春季学期课程作业|92|Jupyter Notebook|09/08|
|109|[kevinfu1717/SuperInterstellarTerminal](https://github.com/kevinfu1717/SuperInterstellarTerminal)|【X世纪星际终端】A Wechat Social and AR Game: 基于微信聊天,结合增强现实技术AR+LBS(基于图像位置)的轻社交星际漂流瓶游戏。向外太空发送漂流信息,看看AI预测的外星人是长什么样的,寻找身边的外星人,逗逗外星生物,看看外星植物及外星建筑。Send the message to the outer space, find the aliens in the earth. Let`s see what they look like from LSGAN`s prediction. Also, Have a look at the aliens' pets and ...|88|Jupyter Notebook|10/13|
|110|[xuwening/blog](https://github.com/xuwening/blog)|对过往做做总结|85|Jupyter Notebook|09/16|
|111|[batermj/data_sciences_campaign](https://github.com/batermj/data_sciences_campaign)|【数据科学家系列课程】|82|Jupyter Notebook|10/28|
|112|[datamonday/Face-Recognition-Class-Attendance-System](https://github.com/datamonday/Face-Recognition-Class-Attendance-System)|基于人脸识别的课堂考勤系统v2.0|81|Jupyter Notebook|08/10|
|113|[zhuyuanxiang/NLTK-Python-CN](https://github.com/zhuyuanxiang/NLTK-Python-CN)|创建《Python自然语言处理》学习代码的中文注释版本。|80|Jupyter Notebook|05/21|
|114|[PaddlePaddle/InterpretDL](https://github.com/PaddlePaddle/InterpretDL)|InterpretDL: Interpretation of Deep Learning Models,基于『飞桨』的模型可解释性算法库。https://interpretdl.readthedocs.io/en/latest/index.html|79|Jupyter Notebook|10/28|
|115|[sherlcok314159/ML](https://github.com/sherlcok314159/ML)|此仓库将介绍Deep Learning 所需要的基础知识以及NLP方面的模型原理到项目实操 : )|78|Jupyter Notebook|10/19|
|116|[s974534426/easytorch](https://github.com/s974534426/easytorch)| 基于Python的numpy实现的简易深度学习框架,包括自动求导、优化器、layer等的实现。|77|Jupyter Notebook|04/17|
|117|[andy6804tw/2020-12th-ironman](https://github.com/andy6804tw/2020-12th-ironman)|[全民瘋AI系列] 第12屆iT邦幫忙鐵人賽 影片教學組 |75|Jupyter Notebook|09/27|
|118|[feng-li/Distributed-Statistical-Computing](https://github.com/feng-li/Distributed-Statistical-Computing)|Teaching Materials for Distributed Statistical Computing (大数据分布式计算教学材料)|74|Jupyter Notebook|09/06|
|119|[zhangzhiqiangccm/NLP-project](https://github.com/zhangzhiqiangccm/NLP-project)|自然语言处理中的基础任务,包含但不限于文本表示,文本分类,命名实体识别,关系抽取,文本生成,文本摘要等,基于tensorflow2或Pytorch,所有代码均经过测试,项目中也包含相关数据。|73|Jupyter Notebook|10/22|
|120|[ZitongLu1996/Python-EEG-Handbook](https://github.com/ZitongLu1996/Python-EEG-Handbook)|Python脑电数据处理中文手册 - A Chinese handbook for EEG data analysis based on Python|72|Jupyter Notebook|09/23|
|121|[China-ChallengeHub/ChallengeHub-Baselines](https://github.com/China-ChallengeHub/ChallengeHub-Baselines)|ChallengeHub开源的各大比赛baseline集合|72|Jupyter Notebook|09/24|
|122|[Estom/notes](https://github.com/Estom/notes)|一个码农的毕生所学.考研,就业,上学.语言篇,Android,C++,Java,JavaScript,Latex,MATLAB,NodeJS,PHP,Python,技术篇,docker,git,Linux,Maven,office,Spark,Spring,SVN,基础篇,编译原理,操作系统,单片机,计算机网络,计算机网络实验,架构模式,软件文档写作,设计模式,数据结构,数据库,算法,UML建模,Windows程序设计,数学篇,概率论与数理统计,微积分,线性代数,张量,机器学习篇,机器学习,pytorch,sklearn,TensorFlow|71|Jupyter Notebook|05/28|
|123|[zhulei227/ML_Skills](https://github.com/zhulei227/ML_Skills)|对ML建模中的数据清洗、特征工程、数据增强、模型集成、类别不平衡学习等方面内容做梳理|64|Jupyter Notebook|04/25|
|124|[davidfrz/yolov5_distance_count](https://github.com/davidfrz/yolov5_distance_count)|使用yolov5,双目摄像头进行测距|64|Jupyter Notebook|07/16|
|125|[qingyujean/Magic-NLPer](https://github.com/qingyujean/Magic-NLPer)|关于机器学习,深度学习,自然语言处理等各种算法的实现、示例,与博客文章配套,论文复现等|63|Jupyter Notebook|04/06|
|126|[shiyanlou/louplus-dm](https://github.com/shiyanlou/louplus-dm)|实验楼 《楼+ 数据分析与挖掘实战》课程挑战作业参考答案|60|Jupyter Notebook|08/16|
|127|[ZhiningLiu1998/mesa](https://github.com/ZhiningLiu1998/mesa)|NeurIPS’20 Build powerful ensemble class-imbalanced learning models via meta-knowledge-powered resampler. 设计元知识驱动的采样器解决类别不平衡问题|58|Jupyter Notebook|08/19|
|128|[datawhalechina/machine-learning-toy-code](https://github.com/datawhalechina/machine-learning-toy-code)|《机器学习》(西瓜书)代码实战|57|Jupyter Notebook|10/27|
|129|[1165048017/BlogLearning](https://github.com/1165048017/BlogLearning)|自己的学习历程,重点包括各种好玩的图像处理算法、运动捕捉、机器学习|56|Jupyter Notebook|10/26|
|130|[CNFeffery/FefferyViz](https://github.com/CNFeffery/FefferyViz)|这个仓库存放(在模仿中精进数据可视化)系列文章代码及数据附件内容|55|Jupyter Notebook|06/29|
|131|[dota2heqiuzhi/dota2_data_analysis_tutorial](https://github.com/dota2heqiuzhi/dota2_data_analysis_tutorial)|《数据分析入门课程》配套代码|55|Jupyter Notebook|10/25|
|132|[vvlink/SIoT](https://github.com/vvlink/SIoT)|SIoT为一个为中小学STEM教育定制的跨平台的开源MQTT服务器程序,S指科学(Science)、简单(Simple)的意思。SIoT支持Win10、Win7、Mac、Linux等操作系统,支持虚谷号、树莓派等迷你电脑,一键启动,无需注册和设置即可使用。|55|Jupyter Notebook|05/29|
|133|[xiaolai/apple-computer-literacy](https://github.com/xiaolai/apple-computer-literacy)|个人电脑使用(以苹果产品为例)|55|Jupyter Notebook|10/20|
|134|[xinychen/latex-cookbook](https://github.com/xinychen/latex-cookbook)|LaTeX论文写作教程 (中文版)|55|Jupyter Notebook|10/27|
|135|[JuliaCN/MeetUpMaterials](https://github.com/JuliaCN/MeetUpMaterials)|Julia中文社区活动的各种材料 Meetup Materials |52|Jupyter Notebook|05/01|
|136|[heucoder/ML-DL_book](https://github.com/heucoder/ML-DL_book)|机器学习、深度学习一些个人认为不错的书籍。|52|Jupyter Notebook|09/30|
|137|[HuangCongQing/3D-Point-Clouds](https://github.com/HuangCongQing/3D-Point-Clouds)|🔥3D点云目标检测&语义分割-SOTA方法,代码,论文,数据集等|49|Jupyter Notebook|10/13|
|138|[cumtcssuld/RSP_of_CUMTCS](https://github.com/cumtcssuld/RSP_of_CUMTCS)|【矿大计算机学院资源共享计划(Resource SharingPlan of CUMTCS)】本仓库由矿大计算机学院学生会学习部牵头维护,由计算机学院全体同学共建共享。欢迎大家积极的参加到本资源库的建设中来吧!(每当有重大更新,我们都会将整个库克隆到码云,点击下边链接,到我们的码云仓库可以获得更好的下载体验)|49|Jupyter Notebook|09/08|
|139|[jm199504/Financial-Time-Series](https://github.com/jm199504/Financial-Time-Series)|金融数据预测分析(Random Forest; LSTM; CNN)|48|Jupyter Notebook|05/27|
|140|[wmpscc/CNN-Series-Getting-Started-and-PyTorch-Implementation](https://github.com/wmpscc/CNN-Series-Getting-Started-and-PyTorch-Implementation)|我的笔记和Demo,包含分类,检测、分割、知识蒸馏。|47|Jupyter Notebook|10/27|
|141|[zhangjunhd/reading-notes](https://github.com/zhangjunhd/reading-notes)|张俊的读书笔记|47|Jupyter Notebook|10/28|
|142|[shibing624/nlp-tutorial](https://github.com/shibing624/nlp-tutorial)|自然语言处理(NLP)教程,包括:词向量,词法分析,预训练语言模型,文本分类,文本语义匹配,信息抽取,翻译,对话。|46|Jupyter Notebook|10/21|
|143|[OUCTheoryGroup/colab_demo](https://github.com/OUCTheoryGroup/colab_demo)|中国海洋大学视觉实验室前沿理论小组 pytorch 学习|45|Jupyter Notebook|10/16|
|144|[lvjianjin/crnn](https://github.com/lvjianjin/crnn)|一个基于TensorFlow2的CRNN项目|43|Jupyter Notebook|04/14|
|145|[BrambleXu/KGQA_SG](https://github.com/BrambleXu/KGQA_SG)|基于知识图谱的《三国演义》人物关系可视化及问答系统|42|Jupyter Notebook|06/02|
|146|[chinapnr/python_study](https://github.com/chinapnr/python_study)|python 入门培训教材,实用、快速、清晰|41|Jupyter Notebook|06/24|
|147|[zipzou/captcha-recognition](https://github.com/zipzou/captcha-recognition)|验证码OCR识别|40|Jupyter Notebook|09/08|
|148|[SocratesAcademy/css](https://github.com/SocratesAcademy/css)|《计算社会科学》课程|39|Jupyter Notebook|09/11|
|149|[makelove/True_Artificial_Intelligence](https://github.com/makelove/True_Artificial_Intelligence)|真AI人工智能|39|Jupyter Notebook|10/07|
|150|[hidadeng/DaDengAndHisPython](https://github.com/hidadeng/DaDengAndHisPython)|【微信公众号:大邓和他的python】, Python语法快速入门https://www.bilibili.com/video/av44384851 Python网络爬虫快速入门https://www.bilibili.com/video/av72010301, 我的联系邮箱[email protected]|39|Jupyter Notebook|10/28|
|151|[skywateryang/timeseries101](https://github.com/skywateryang/timeseries101)|本教程独立网站已上线|39|Jupyter Notebook|08/29|
|152|[oubindo/cs231n-cnn](https://github.com/oubindo/cs231n-cnn)|斯坦福的cs231n课程的assignments,非常好的课程,在这里也要强推|38|Jupyter Notebook|09/08|
|153|[Valuebai/Text-Auto-Summarization](https://github.com/Valuebai/Text-Auto-Summarization)|文本自动摘要|36|Jupyter Notebook|09/08|
|154|[howie6879/pylab](https://github.com/howie6879/pylab)|和Python相关的学习笔记:机器学习、算法、进阶书籍、文档,博客地址:https://www.howie6879.cn|36|Jupyter Notebook|10/10|
|155|[zengwb-lx/yolov5-deepsort-pedestrian-counting](https://github.com/zengwb-lx/yolov5-deepsort-pedestrian-counting)|yolov5 + deepsort实现了行人计数功能, 统计摄像头内出现过的总人数,以及对穿越自定义黄线行人计数效果如下|36|Jupyter Notebook|09/04|
|156|[IBBD/IBBD.github.io](https://github.com/IBBD/IBBD.github.io)|IBBD技术博客|35|Jupyter Notebook|07/17|
|157|[aialgorithm/Blog](https://github.com/aialgorithm/Blog)|“算法进阶”公众号文章及源码, 欢迎点亮Star收藏 ~|34|Jupyter Notebook|10/28|
|158|[lukewys/SunXiaoChuan-spider](https://github.com/lukewys/SunXiaoChuan-spider)|A scrapper and analyze result on weibos of SunXiaoChuan. 孙笑川微博的爬虫与分析|34|Jupyter Notebook|10/07|
|159|[DataLoaderX/datasetsome](https://github.com/DataLoaderX/datasetsome)|一些数据集处理相关的 API|33|Jupyter Notebook|04/22|
|160|[BohriumKwong/Deep_learning_in_WSI](https://github.com/BohriumKwong/Deep_learning_in_WSI)|将深度学习用于病理图像分析以及Openslide和OpenCV使用入門資料|33|Jupyter Notebook|10/13|
|161|[liangyimingcom/Use-SageMaker_XGBoost-convert-Time-Series-into-Supervised-Learning-for-predictive-maintenance](https://github.com/liangyimingcom/Use-SageMaker_XGBoost-convert-Time-Series-into-Supervised-Learning-for-predictive-maintenance)|使用SageMaker+XGBoost,将时间序列转换为监督学习,完成预测性维护的实践|33|Jupyter Notebook|05/09|
|162|[ZhangXinNan/DL-with-Python-and-PyTorch](https://github.com/ZhangXinNan/DL-with-Python-and-PyTorch)|《Python深度学习基于PyTorch》 Deep Learning with Python and PyTorch 作者:吴茂贵 郁明敏 杨本法 李涛 张粤磊 等|32|Jupyter Notebook|08/08|
|163|[cacolola/python-LEC](https://github.com/cacolola/python-LEC)|python数据分析基础|32|Jupyter Notebook|09/14|
|164|[zillionare/AI-trading-tutorial](https://github.com/zillionare/AI-trading-tutorial)|实战AI量化交易|31|Jupyter Notebook|05/17|
|165|[xiaohuiduan/dcgan_anime_avatars](https://github.com/xiaohuiduan/dcgan_anime_avatars)|基于keras使用dcgan自动生成动漫头像|31|Jupyter Notebook|08/15|
|166|[Sharpiless/yolov5-distillation-5.0](https://github.com/Sharpiless/yolov5-distillation-5.0)|yolov5 5.0 version distillation yolov5 5.0版本知识蒸馏,yolov5l >> yolov5s|30|Jupyter Notebook|07/29|
|167|[bcmi/RL-Solutions](https://github.com/bcmi/RL-Solutions)|强化学习第二版习题解答与代码案例 Solutions and codes for Reinforcement Learning second edition|30|Jupyter Notebook|04/01|
|168|[saturn-lab/MEE-CC07](https://github.com/saturn-lab/MEE-CC07)|CC07-单元|30|Jupyter Notebook|04/21|
|169|[sunyingjian/AI-in-well-logging](https://github.com/sunyingjian/AI-in-well-logging)|人工智能在石油测井上的应用包括采用机器学习,深度学习等相关方法进行岩性识别与相关测井曲线的回归。The application of artificial intelligence in well logging includes the use of machine learning, deep learning and other related methods for lithology identification and regression of related well logging data.|30|Jupyter Notebook|04/09|
|170|[HuichuanLI/Recommand-Algorithme](https://github.com/HuichuanLI/Recommand-Algorithme)|推荐算法实战(Recommend algorithm)|30|Jupyter Notebook|09/09|
|171|[fly51fly/Principle_of_Web_Search_2021](https://github.com/fly51fly/Principle_of_Web_Search_2021)|北邮《网络搜索引擎原理》课程(2021)|29|Jupyter Notebook|10/22|
|172|[PolarisRisingWar/cs224w-2021-winter-colab](https://github.com/PolarisRisingWar/cs224w-2021-winter-colab)|cs224w(图机器学习)2021冬季课程的colab|29|Jupyter Notebook|07/09|
|173|[WHUFT/WHU_FinTech_Workshop](https://github.com/WHUFT/WHU_FinTech_Workshop)|武汉大学金融科技研讨班|29|Jupyter Notebook|10/24|
|174|[big-bombom/Python-100-Days](https://github.com/big-bombom/Python-100-Days)|python100天从新手到大师|28|Jupyter Notebook|06/02|
|175|[BrikerMan/classic_chinese_punctuate](https://github.com/BrikerMan/classic_chinese_punctuate)|classic Chinese punctuate experiment with keras using daizhige(殆知阁古代文献藏书) dataset|28|Jupyter Notebook|08/25|
|176|[cador/Python_Predict_Analysis_Algorithm_Book_Codes](https://github.com/cador/Python_Predict_Analysis_Algorithm_Book_Codes)|《Python预测之美:数据分析与算法实战》书籍代码维护|28|Jupyter Notebook|08/26|
|177|[01ly/Codes](https://github.com/01ly/Codes)|不可能不会系列|27|Jupyter Notebook|09/08|
|178|[Fan-Meng/DM-Python-MOOC](https://github.com/Fan-Meng/DM-Python-MOOC)|此项目提供在中国大学慕课《数据挖掘与python实践》在线课程的代码及相关资料。课程链接如下:https://www.icourse163.org/course/CUFE-1207262801|27|Jupyter Notebook|04/12|
|179|[zhangqizky/ManTra_Net_Test_Demo](https://github.com/zhangqizky/ManTra_Net_Test_Demo)|🌹2019年CVPR论文:ManTra-Net: Manipulation Tracing Network For Detection And Localization of Image Forgeries With Anomalous Features |27|Jupyter Notebook|08/25|
|180|[wine99/hfut-cs-assignments](https://github.com/wine99/hfut-cs-assignments)|合肥工业大学 计算机科学与技术专业 专业课作业和实验(大二下 - 大三下)|27|Jupyter Notebook|10/24|
|181|[RuifMaxx/Multidimensional-time-series-with-transformer](https://github.com/RuifMaxx/Multidimensional-time-series-with-transformer)|transformer/self-attention for Multidimensional time series forecasting 使用transformer架构实现多维时间预测|26|Jupyter Notebook|08/10|
|182|[sijichun/PythonTutor](https://github.com/sijichun/PythonTutor)|Python教学|26|Jupyter Notebook|06/18|
|183|[ni1o1/plot_map](https://github.com/ni1o1/plot_map)|Python时空大数据处理工具包,可实现:matplotlib地图底图加载、坐标转换距离计算、栅格渔网划分与对应、点与点、点与线最近邻匹配|26|Jupyter Notebook|10/21|
|184|[victorgau/MultiStrategies](https://github.com/victorgau/MultiStrategies)|多策略回測比較|25|Jupyter Notebook|06/02|
|185|[lures2019/lures2020-demos](https://github.com/lures2019/lures2020-demos)|lures2020年写的一些项目和程序|25|Jupyter Notebook|09/11|
|186|[ywchiu/tibamedl](https://github.com/ywchiu/tibamedl)|Python深度學習實戰-
邁向A.I.的第一步|25|Jupyter Notebook|04/24|
|187|[voidful/Phraseg](https://github.com/voidful/Phraseg)|Phraseg - 一言:新詞發現工具包|24|Jupyter Notebook|09/23|
|188|[muzishen/VIPriors-Object-Detection-Challenge](https://github.com/muzishen/VIPriors-Object-Detection-Challenge)|2020 ECCV VIPirios 目标检测冠军|24|Jupyter Notebook|04/19|
|189|[xieliaing/Data_Science_Industrial_Practice](https://github.com/xieliaing/Data_Science_Industrial_Practice)|《数据科学工程实践》一书的Jupyter Notebook库,以及交流园地。|23|Jupyter Notebook|06/18|
|190|[lotapp/BaseCode](https://github.com/lotapp/BaseCode)|即是代码练习库,也是文章案例库(NetCore、Python、Node.js、Go)公众号:逸鹏说道|23|Jupyter Notebook|05/26|
|191|[ljyslyc/Book-KnowledgeGraph-Recommendation](https://github.com/ljyslyc/Book-KnowledgeGraph-Recommendation)|书籍知识图谱推荐系统|23|Jupyter Notebook|07/21|
|192|[jinhualee/datashine](https://github.com/jinhualee/datashine)|《Python统计与数据分析实战》课程代码,包含了大部分统计与非参数统计和数据分析的模型、算法。回归分析、方差分析、点估计、假设检验、主成分分析、因子分析、聚类分析、判别分析、对数线性模型、分位回归模型以及列联表分析、非参数平滑、非参数密度估计等各种非参数统计方法。|23|Jupyter Notebook|08/16|
|193|[PanJinquan/python-learning-notes](https://github.com/PanJinquan/python-learning-notes)|代码|23|Jupyter Notebook|10/13|
|194|[wolf-bailang/AI-Projects](https://github.com/wolf-bailang/AI-Projects)|AI项目(强化学习、深度学习、计算机视觉、推荐系统、自然语言处理、机器导航、医学影像处理)|22|Jupyter Notebook|10/13|
|195|[yenlung/Deep-Learning-Basics](https://github.com/yenlung/Deep-Learning-Basics)|使用 TensorFlow 2 的 Deep Learning 基本程式寫法示範。|22|Jupyter Notebook|08/12|
|196|[hzcforever/Something](https://github.com/hzcforever/Something)|面试知识点 + 笔试刷题总结。|22|Jupyter Notebook|09/15|
|197|[sunnyswag/StockRL](https://github.com/sunnyswag/StockRL)|在A股(股票)市场上训练强化学习交易智能体|22|Jupyter Notebook|08/28|
|198|[anxiang1836/query_similar_tianchi_2020](https://github.com/anxiang1836/query_similar_tianchi_2020)|天池2020-新冠疫情相似句对判定大赛|22|Jupyter Notebook|08/25|
|199|[tsaac/Python](https://github.com/tsaac/Python)|YINUXY的python脚本分享|22|Jupyter Notebook|09/20|
|200|[linbang/Metapath2vec](https://github.com/linbang/Metapath2vec)|使用DGL和pytorch实现metapath2vec|21|Jupyter Notebook|09/17|
⬆ [回到目录](#目录)
<br/>
## Shell
|#|Repository|Description|Stars|Language|Updated|
|:-|:-|:-|:-|:-|:-|
|1|[shengxinjing/programmer-job-blacklist](https://github.com/shengxinjing/programmer-job-blacklist)|:see_no_evil:程序员找工作黑名单,换工作和当技术合伙人需谨慎啊 更新有赞|27.4k|Shell|08/10|
|2|[233boy/v2ray](https://github.com/233boy/v2ray)|最好用的 V2Ray 一键安装脚本 & 管理脚本|14.8k|Shell|08/24|
|3|[rootsongjc/kubernetes-handbook](https://github.com/rootsongjc/kubernetes-handbook)|Kubernetes中文指南/云原生应用架构实践手册 - https://jimmysong.io/kubernetes-handbook|9.1k|Shell|10/20|
|4|[skywind3000/awesome-cheatsheets](https://github.com/skywind3000/awesome-cheatsheets)|超级速查表 - 编程语言、框架和开发工具的速查表,单个文件包含一切你需要知道的东西 :zap:|7.7k|Shell|09/13|
|5|[judasn/Linux-Tutorial](https://github.com/judasn/Linux-Tutorial)|《Java 程序员眼中的 Linux》|7.7k|Shell|07/05|
|6|[wulabing/Xray_onekey](https://github.com/wulabing/Xray_onekey)|Xray 基于 Nginx 的 VLESS + XTLS 一键安装脚本 |6.8k|Shell|10/09|
|7|[opsnull/follow-me-install-kubernetes-cluster](https://github.com/opsnull/follow-me-install-kubernetes-cluster)|和我一步步部署 kubernetes 集群|6.6k|Shell|06/04|
|8|[P3TERX/Actions-OpenWrt](https://github.com/P3TERX/Actions-OpenWrt)|A template for building OpenWrt with GitHub Actions 使用 GitHub Actions 云编译 OpenWrt|4.5k|Shell|10/20|
|9|[softwaredownload/openwrt-fanqiang](https://github.com/softwaredownload/openwrt-fanqiang)|最好的路由器翻墙、科学上网教程—OpenWrt—shadowsocks|4.1k|Shell|08/14|
|10|[gfw-breaker/ssr-accounts](https://github.com/gfw-breaker/ssr-accounts)|V2Ray, 免费V2Ray账号分享, 翻墙,无界, 自由门, SquirrelVPN, SS账号, 机场|3.8k|Shell|10/09|
|11|[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)+伪装站点、八合一共存脚本,支持多内核安装|3.6k|Shell|10/24|
|12|[wangdoc/bash-tutorial](https://github.com/wangdoc/bash-tutorial)|Bash 教程|3.2k|Shell|10/24|
|13|[wangdoc/javascript-tutorial](https://github.com/wangdoc/javascript-tutorial)|JavaScript 教程 https://wangdoc.com/javascript|3.1k|Shell|10/29|
|14|[klever1988/nanopi-openwrt](https://github.com/klever1988/nanopi-openwrt)|Openwrt for Nanopi R1S R2S R4S 香橙派 R1 Plus 固件编译 纯净版与大杂烩|2.9k|Shell|10/28|
|15|[lmk123/oh-my-wechat](https://github.com/lmk123/oh-my-wechat)|微信小助手的安装 / 更新工具。|2.7k|Shell|10/15|
|16|[CyC2018/Job-Recommend](https://github.com/CyC2018/Job-Recommend)|🔎 互联网内推信息(社招、校招、实习)|2.4k|Shell|10/09|
|17|[wind-liang/leetcode](https://github.com/wind-liang/leetcode)|leetcode 顺序刷题,详细通俗题解,with JAVA|2.2k|Shell|09/02|
|18|[hijkpw/scripts](https://github.com/hijkpw/scripts)|Shadowsocks/SS一键脚本、ShadowsocksR/SSR一键脚本、V2Ray一键脚本、trojan一键脚本、VPS教程|2.1k|Shell|09/01|
|19|[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.1k|Shell|07/06|
|20|[LCTT/TranslateProject](https://github.com/LCTT/TranslateProject)|Linux中国翻译项目|1.8k|Shell|10/29|
|21|[P3TERX/aria2.conf](https://github.com/P3TERX/aria2.conf)|Aria2 配置文件 OneDrive & Google Drvive 离线下载 百度网盘转存|1.8k|Shell|10/23|
|22|[bclswl0827/v2ray-heroku](https://github.com/bclswl0827/v2ray-heroku)|用于在 Heroku 上部署 V2Ray WebSocket。|1.7k|Shell|08/15|
|23|[neoFelhz/neohosts](https://github.com/neoFelhz/neohosts)|自由·负责·克制 去广告 Hosts 项目|1.6k|Shell|06/14|
|24|[zfl9/ss-tproxy](https://github.com/zfl9/ss-tproxy)|搭建 SS/SSR/V2Ray/Socks5 透明代理环境的简易脚本|1.5k|Shell|04/25|
|25|[gaoyifan/china-operator-ip](https://github.com/gaoyifan/china-operator-ip)|中国运营商IPv4/IPv6地址库-每日更新|1.5k|Shell|10/28|
|26|[MvsCode/frps-onekey](https://github.com/MvsCode/frps-onekey)| Frps 一键安装脚本&管理脚本 A tool to auto-compile & install frps on Linux|1.3k|Shell|10/28|
|27|[studygolang/GCTT](https://github.com/studygolang/GCTT)|GCTT Go中文网翻译组。|1.3k|Shell|10/20|
|28|[jinwyp/one_click_script](https://github.com/jinwyp/one_click_script)|一键安装 trojan v2ray xray. Install v2ray / xray (VLESS) and trojan (trojan-go) script|1.3k|Shell|10/21|
|29|[huan/docker-wechat](https://github.com/huan/docker-wechat)|DoChat is a Dockerized WeChat (盒装微信) PC Windows Client for Linux|1.3k|Shell|10/13|
|30|[johnrosen1/vpstoolbox](https://github.com/johnrosen1/vpstoolbox)|厌倦了总是需要手动输入命令安装博客,代理,网盘了吗?VPSToolBox提供了一种全自动化的解决方案,解放双手,从今天开始!|1.2k|Shell|10/26|
|31|[duguying/parsing-techniques](https://github.com/duguying/parsing-techniques)|📕 parsing techniques 中文译本——《解析技术》|1.2k|Shell|10/18|
|32|[ben1234560/k8s_PaaS](https://github.com/ben1234560/k8s_PaaS)|如何基于K8s(Kubernetes)部署成PaaS/DevOps(一套完整的软件研发和部署平台)--教程/学习(实战代码/欢迎讨论/大量注释/操作配图),你将习得部署如:K8S(Kubernetes)、dashboard、Harbor、Jenkins、本地gitlab、Apollo框架、promtheus、grafana、spinnaker等。|1.2k|Shell|10/24|
|33|[Sitoi/dailycheckin](https://github.com/Sitoi/dailycheckin)|基于【腾讯云函数】/【Docker】/【青龙面板】/【elecV2P】/【群晖】的每日签到脚本(支持多账号使用)签到列表: |爱奇艺|全民K歌|腾讯视频|有道云笔记|网易云音乐|一加手机社区官方论坛|百度贴吧|Bilibili|V2EX|咔叽网单|什么值得买|AcFun|天翼云盘|吾爱破解|芒果TV|Fa米家|小米运动|百度搜索资源平台|时光相册|哔咔漫画|联通营业厅||1.1k|Shell|10/13|
|34|[insightglacier/Dictionary-Of-Pentesting](https://github.com/insightglacier/Dictionary-Of-Pentesting)|Dictionary collection project such as Pentesing, Fuzzing, Bruteforce and BugBounty. 渗透测试、SRC漏洞挖掘、爆破、Fuzzing等字典收集项目。|917|Shell|10/24|
|35|[ToyoDAdoubiBackup/doubi](https://github.com/ToyoDAdoubiBackup/doubi)|一个逗比写的各种逗比脚本~|911|Shell|05/18|
|36|[liquanzhou/ops_doc](https://github.com/liquanzhou/ops_doc)|运维简洁实用手册|899|Shell|06/02|
|37|[goreliu/zshguide](https://github.com/goreliu/zshguide)|Zsh 开发指南|856|Shell|08/05|
|38|[gfw-breaker/nogfw](https://github.com/gfw-breaker/nogfw)|一键翻墙软件,包含自由门、无界、Shadowsocks等 翻墙教程|843|Shell|10/17|
|39|[xiaoZ-hc/redtool](https://github.com/xiaoZ-hc/redtool)|日常积累的一些红队工具及自己写的脚本,更偏向于一些diy的好用的工具,并不是一些比较常用的msf/awvs/xray这种|842|Shell|06/01|
|40|[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)|827|Shell|10/22|
|41|[esirplayground/AutoBuild-OpenWrt](https://github.com/esirplayground/AutoBuild-OpenWrt)|Build OpenWrt using GitHub Actions 使用 GitHub Actions 编译 OpenWrt 感谢P3TERX的项目源码 感谢KFERMercer的项目源码|808|Shell|10/22|
|42|[tonydeng/sdn-handbook](https://github.com/tonydeng/sdn-handbook)|SDN手册|771|Shell|07/23|
|43|[al0ne/LinuxCheck](https://github.com/al0ne/LinuxCheck)|Linux应急处置/信息搜集/漏洞检测工具,支持基础配置/网络流量/任务计划/环境变量/用户信息/Services/bash/恶意文件/内核Rootkit/SSH/Webshell/挖矿文件/挖矿进程/供应链/服务器风险等13类70+项检查|763|Shell|10/19|
|44|[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|746|Shell|09/29|
|45|[godbasin/vue-ebook](https://github.com/godbasin/vue-ebook)|《深入理解Vue.js实战》- 介绍Vue.js框架的出现、设计和使用,结合实战让读者更深入理解Vue.js框架,掌握使用方法。|741|Shell|09/18|
|46|[hongwenjun/vps_setup](https://github.com/hongwenjun/vps_setup)|linux vim bash 脚本学习笔记 by 蘭雅sRGB https://262235.xyz/|725|Shell|10/12|
|47|[dunwu/linux-tutorial](https://github.com/dunwu/linux-tutorial)|:penguin: Linux教程,主要内容:Linux 命令、Linux 系统运维、软件运维、精选常用Shell脚本|713|Shell|05/13|
|48|[EternalPain/ZJL](https://github.com/EternalPain/ZJL)|ZJL 免流防跳脚本|710|Shell|06/08|
|49|[Hagb/docker-easyconnect](https://github.com/Hagb/docker-easyconnect)|使深信服(Sangfor)开发的非自由的代理软件 EasyConnect 运行在 docker 中,并提供 socks5 服务|686|Shell|10/02|
|50|[rime/plum](https://github.com/rime/plum)|東風破 /plum/: Rime configuration manager and input schema repository|683|Shell|10/02|
|51|[snail007/proxy_admin_free](https://github.com/snail007/proxy_admin_free)|Proxy是高性能全功能的http代理、https代理、socks5代理、内网穿透、内网穿透p2p、内网穿透代理、内网穿透反向代理、内网穿透服务器、Websocket代理、TCP代理、UDP代理、DNS代理、DNS加密代理,代理API认证,全能跨平台代理服务器。|672|Shell|10/18|
|52|[ctf-wiki/ctf-tools](https://github.com/ctf-wiki/ctf-tools)|CTF 工具集合|663|Shell|08/14|
|53|[rehiy/dnspod-shell](https://github.com/rehiy/dnspod-shell)|基于DNSPod用户API实现的纯Shell动态域名客户端|659|Shell|09/18|
|54|[zhonghuasheng/Tutorial](https://github.com/zhonghuasheng/Tutorial)|Java全栈知识架构体系总结|642|Shell|10/29|
|55|[phlinhng/v2ray-tcp-tls-web](https://github.com/phlinhng/v2ray-tcp-tls-web)|VLESS / Trojan-Go / Shadowsocks 脚本 支持纯 IPv6|614|Shell|08/14|
|56|[woniuzfb/iptv](https://github.com/woniuzfb/iptv)|一键安装管理 FFmpeg / nginx / openresty / xray / v2ray / armbian / proxmox ve / cloudflare partner,workers / ibm cloud foundry 脚本|595|Shell|10/28|
|57|[ffffffff0x/f8x](https://github.com/ffffffff0x/f8x)|红/蓝队环境自动化部署工具 Red/Blue team environment automation deployment tool|588|Shell|10/22|
|58|[UnblockNeteaseMusic/luci-app-unblockneteasemusic](https://github.com/UnblockNeteaseMusic/luci-app-unblockneteasemusic)|[OpenWrt] 解除网易云音乐播放限制|586|Shell|10/28|
|59|[koolshare/armsoft](https://github.com/koolshare/armsoft)|梅林384软件中心 for armv7l架构机型|585|Shell|10/28|
|60|[wppurking/ocserv-docker](https://github.com/wppurking/ocserv-docker)|用于初始化 ocserv 的 Dockfile 脚本|581|Shell|08/11|
|61|[kirin10000/Xray-script](https://github.com/kirin10000/Xray-script)|Xray:(VLESS/VMess)-(TCP/gRPC/WebSocket)-(XTLS/TLS)+Web 搭建/管理脚本|570|Shell|10/28|
|62|[Nick233333/phper-linux-gitbook](https://github.com/Nick233333/phper-linux-gitbook)|💡PHPer 必知必会的 Linux 命令|539|Shell|08/28|
|63|[wangdoc/es6-tutorial](https://github.com/wangdoc/es6-tutorial)|一本开源的 JavaScript 语言教程,全面介绍 ECMAScript 6 新引入的语法特性。|535|Shell|10/21|
|64|[TheKingOfDuck/ApkAnalyser](https://github.com/TheKingOfDuck/ApkAnalyser)|一键提取安卓应用中可能存在的敏感信息。|527|Shell|10/21|
|65|[P3TERX/warp.sh](https://github.com/P3TERX/warp.sh)|Cloudflare WARP configuration script Cloudflare WARP 一键配置脚本|515|Shell|10/29|
|66|[learnhard-cn/free_proxy_ss](https://github.com/learnhard-cn/free_proxy_ss)|分享来自互联网上免费的shadowsocks(SS)/ShadowsocksR(SSR)/V2ray(vmess)代理 每15分钟更新一次,每次各分享4个临时可用代理。 及时订阅、及时更新。|493|Shell|10/29|
|67|[felix-fly/v2ray-openwrt](https://github.com/felix-fly/v2ray-openwrt)|路由器Openwrt手工/脚本/ipk包安装V2ray简单流程|486|Shell|10/22|
|68|[jaywcjlove/docker-tutorial](https://github.com/jaywcjlove/docker-tutorial)|🐳Docker入门学习笔记|469|Shell|10/22|
|69|[CoiaPrant/MediaUnlock_Test](https://github.com/CoiaPrant/MediaUnlock_Test)|流媒体解锁检测|467|Shell|07/17|
|70|[JinjunHan/iOSDeviceSupport](https://github.com/JinjunHan/iOSDeviceSupport)|各个版本的iOS Device Support|463|Shell|09/16|
|71|[laishulu/Sarasa-Mono-SC-Nerd](https://github.com/laishulu/Sarasa-Mono-SC-Nerd)|简体中文等距更纱黑体+Nerd图标字体库。中英文宽度完美2:1,图标长宽经过调整,不会出现对齐问题,尤其适合作为终端字体。|460|Shell|10/20|
|72|[1orz/My-action](https://github.com/1orz/My-action)|自动编译-无人值守Auto release base on Github actions|446|Shell|08/02|
|73|[neodevpro/neodevhost](https://github.com/neodevpro/neodevhost)| The Powerful Friendly Uptodate AD Blocking Hosts 最新强大而友善的去广告|446|Shell|10/17|
|74|[andyzhshg/syno-acme](https://github.com/andyzhshg/syno-acme)|通过acme协议更新群晖HTTPS泛域名证书的自动脚本|441|Shell|10/25|
|75|[lovezzzxxx/liverecord](https://github.com/lovezzzxxx/liverecord)|自动录播并自动备份,支持youtube频道、twitcast频道、twitch频道、openrec频道、niconico生放送、niconico社区、niconico频道、mirrativ频道、reality频道、17live频道、bilibili频道、streamlink支持的直播网址、ffmpeg支持的m3u8地址|437|Shell|10/11|
|76|[veip007/dd](https://github.com/veip007/dd)|萌咖大佬的Linux 一键DD脚本|421|Shell|08/24|
|77|[rootsongjc/istio-handbook](https://github.com/rootsongjc/istio-handbook)|Istio 服务网格 —— 后 Kubernetes 时代的应用网络 - https://jimmysong.io/istio-handbook|419|Shell|08/06|
|78|[lightyearvpn/LightyearVPN](https://github.com/lightyearvpn/LightyearVPN)|翻墙,科学上网,梯子,VPN,加速器,外网,代理,路由,防火墙,GFW,VPN下载。支持UDP,游戏必备。免费VPN试用,全球部署Trojan节点,Shadowsocks节点,V2ray节点。提供免费SS节点和。|401|Shell|06/27|
|79|[KyleBing/rime-wubi86-jidian](https://github.com/KyleBing/rime-wubi86-jidian)|86五笔极点码表 for Rime (鼠须管-macOS)(小狼毫-Windows)(中州韵-Linux)五笔输入法|386|Shell|10/25|
|80|[KANIKIG/Multi-EasyGost](https://github.com/KANIKIG/Multi-EasyGost)|致力于最简单好用的GOST小白脚本|384|Shell|08/17|
|81|[rootsongjc/kubernetes-hardening-guidance](https://github.com/rootsongjc/kubernetes-hardening-guidance)|《Kubernetes 加固手册》(美国国家安全局出品)- https://jimmysong.io/kubernetes-hardening-guidance|372|Shell|10/13|
|82|[ellermister/mtproxy](https://github.com/ellermister/mtproxy)|MTProxyTLS一键安装绿色脚本|371|Shell|05/27|
|83|[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)|357|Shell|09/24|
|84|[Hyy2001X/AutoBuild-Actions](https://github.com/Hyy2001X/AutoBuild-Actions)|在线编译 Openwrt 一键在线更新固件 Dev|355|Shell|10/28|
|85|[wang-bin/avbuild](https://github.com/wang-bin/avbuild)|ffmpeg花式编译. build tool for all platforms: iOS, android, raspberry pi, win32, uwp, linux, macOS etc.|351|Shell|10/24|
|86|[esrrhs/spp](https://github.com/esrrhs/spp)|简单强大的多协议双向代理工具 A simple and powerful proxy|350|Shell|10/11|
|87|[ericwang2006/docker_ttnode](https://github.com/ericwang2006/docker_ttnode)|甜糖星愿|346|Shell|09/10|
|88|[starnightcyber/Miscellaneous](https://github.com/starnightcyber/Miscellaneous)|百宝箱|344|Shell|08/13|
|89|[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组件。|341|Shell|09/16|
|90|[lxchuan12/blog](https://github.com/lxchuan12/blog)|若川的博客—学习源码整体架构系列多篇,前端面试高频源码,微信搜索「若川视野」关注我,长期交流学习~|339|Shell|10/28|
|91|[meetbill/op_practice_book](https://github.com/meetbill/op_practice_book)|📚 《运维实践指南》持续更新中,推荐大牛干货博客 https://me.csdn.net/g2V13ah|337|Shell|08/02|
|92|[cloudnativeto/academy](https://github.com/cloudnativeto/academy)|云原生学院 直播 活动 - https://cloudnative.to/academy/|336|Shell|10/26|
|93|[DHDAXCW/NanoPi-R4S-2021](https://github.com/DHDAXCW/NanoPi-R4S-2021)|基于 Lean&Lienol 源码的 NanoPi R4S 的 OpenWrt 固件。每天自动更新插件和内核,Fusion编译法|327|Shell|10/28|
|94|[a244573118/WeChatIntercept](https://github.com/a244573118/WeChatIntercept)|微信防撤回插件,一键安装,仅MAC可用,支持新版3.2.0微信|326|Shell|09/02|
|95|[SuperManito/LinuxMirrors](https://github.com/SuperManito/LinuxMirrors)|GNU/Linux 一键更换国内软件源脚本|313|Shell|10/24|
|96|[cdk8s/cdk8s-team-style](https://github.com/cdk8s/cdk8s-team-style)|寻找志同道合的人,引发自身的思考|301|Shell|10/28|
|97|[mixool/HiCnUnicom](https://github.com/mixool/HiCnUnicom)|登录 签到 会员任务|300|Shell|08/08|
|98|[collabH/repository](https://github.com/collabH/repository)|个人学习知识库涉及到数据仓库建模、实时计算、大数据、Java、算法等。|293|Shell|10/28|
|99|[YAWAsau/backup_script](https://github.com/YAWAsau/backup_script)|備份數據腳本|284|Shell|10/28|
|100|[BlueSkyXN/SKY-BOX](https://github.com/BlueSkyXN/SKY-BOX)|BlueSkyXN 综合工具箱 Linux Supported ONLY|271|Shell|10/23|
|101|[guanguans/dnmp-plus](https://github.com/guanguans/dnmp-plus)|🐳Docker的LNMP一键安装开发环境 + PHP非侵入式监控平台xhgui(优化系统性能、定位Bug神器)|264|Shell|09/08|
|102|[jgsrty/jgsrty.github.io](https://github.com/jgsrty/jgsrty.github.io)|:sunny: 英语学习 :feet: 项目预览:https://jgsrty.github.io 国内访问:https://rtyxmd.gitee.io|262|Shell|10/21|
|103|[sensec/ddns-scripts_aliyun](https://github.com/sensec/ddns-scripts_aliyun)|OpenWrt/LEDE DDNS support for aliyun (阿里云)|260|Shell|04/09|
|104|[openwrtcompileshell/OpenwrtCompileScript](https://github.com/openwrtcompileshell/OpenwrtCompileScript)|Openwrt编译辅助脚本可以帮助你更快的搭建openwrt环境,但不会帮你完成整个编译过程|256|Shell|09/13|
|105|[DHDAXCW/NanoPi-R2S-2021](https://github.com/DHDAXCW/NanoPi-R2S-2021)|基于 Lean&Lienol 源码的 NanoPi R2S 的 OpenWrt 固件。每天自动更新插件和内核,Fusion编译法|255|Shell|10/26|
|106|[Lancenas/actions-openwrt-helloworld](https://github.com/Lancenas/actions-openwrt-helloworld)|Actions使用Lean's lede源码编译含helloworld服务固件|252|Shell|08/21|
|107|[whunt1/onekeymakemtg](https://github.com/whunt1/onekeymakemtg)|编译安装最新版 mtproxy-go 一键脚本|250|Shell|06/22|
|108|[jaywcjlove/shell-tutorial](https://github.com/jaywcjlove/shell-tutorial)|Shell入门教程(Shell tutorial book)|247|Shell|10/03|
|109|[wyx176/Socks5](https://github.com/wyx176/Socks5)|Socks5代理服务器搭建脚本/Socks5 shortcut creation script|243|Shell|09/20|
|110|[lxhao61/integrated-examples](https://github.com/lxhao61/integrated-examples)|以Xray或v2ray、trojan-go或trojan、naiveproxy或hysteria等打造科学上网的优化配置及最优组合示例,分享给大家食用及备份。|243|Shell|10/09|
|111|[rime/rime-cantonese](https://github.com/rime/rime-cantonese)|Rime Cantonese input schema 粵語拼音輸入方案|241|Shell|10/29|
|112|[Messiahhh/blog](https://github.com/Messiahhh/blog)|akara的前端笔记|241|Shell|09/21|
|113|[XIU2/Shell](https://github.com/XIU2/Shell)|🐧 自用的一些乱七八糟 Linux 脚本~|236|Shell|09/29|
|114|[zq99299/note-book](https://github.com/zq99299/note-book)|新笔记本,java、git、elasticsearch、mycat、设计模式、gradle、vue, 等 。vuepress 构建的 Markdown 笔记。|235|Shell|06/23|
|115|[fscarmen/warp](https://github.com/fscarmen/warp)|WARP 一键脚本。专为 VPS 添加 IPv4、IPv6或者双栈的 CloudFlare WARP 网络接口|234|Shell|10/27|
|116|[PaddlePaddle/FleetX](https://github.com/PaddlePaddle/FleetX)|Paddle Distributed Training Extended. 飞桨分布式训练扩展包|223|Shell|10/27|
|117|[rootsongjc/migrating-to-cloud-native-application-architectures](https://github.com/rootsongjc/migrating-to-cloud-native-application-architectures)|《迁移到云原生应用架构》中文版 https://jimmysong.io/migrating-to-cloud-native-application-architectures/|223|Shell|10/22|
|118|[Netflixxp/jcnf-box](https://github.com/Netflixxp/jcnf-box)|这是个人常用的服务器指令和一键脚本|219|Shell|10/04|
|119|[wsydxiangwang/Note](https://github.com/wsydxiangwang/Note)|☔️ 前端学习笔记,JavaScript,TypeScript,Vue,React,CSS,设计模式,数据结构,NodeJS等等。记录只是为了更好的摸鱼,从入门到放弃。|218|Shell|04/13|
|120|[Lancger/opslinux](https://github.com/Lancger/opslinux)|Linux运维手册(基础+frp内网穿透+分布式锁+Redis+Kafka+安全+漏洞扫描+Docker+ELFK+LVM+监控+CI/CD+数据库+翻墙+LDAP+MQ+minio对象存储+命令录制审计+IP出口+gmail邮件安全校验+Jaeger 分布式追踪+苹果app安全审核+pps包转发率+网卡多队列均衡等)|217|Shell|06/23|
|121|[maybe1229/jd-base](https://github.com/maybe1229/jd-base)|京东薅羊毛利器|216|-|10/28|
|122|[orangbus/Tool](https://github.com/orangbus/Tool)|Manjaro从入门到爱不释手.|216|Shell|06/10|
|123|[eryajf/magic-of-sysuse-scripts](https://github.com/eryajf/magic-of-sysuse-scripts)|运维外挂小工具|213|Shell|10/09|
|124|[shenuiuin/LXD_GPU_SERVER](https://github.com/shenuiuin/LXD_GPU_SERVER)|实验室GPU服务器的LXD虚拟化|211|Shell|06/23|
|125|[ineo6/homebrew-install](https://github.com/ineo6/homebrew-install)|homebrew安装使用中科大镜像|204|Shell|10/11|
|126|[ameizi/vagrant-kubernetes-cluster](https://github.com/ameizi/vagrant-kubernetes-cluster)|Vagrant一键安装Kubernetes集群。符合中国国情,具有社会主义特色。安装 MetricsServer 、Kuboard 、KubernetesDashboard等|201|Shell|10/22|
|127|[wangdoc/html-tutorial](https://github.com/wangdoc/html-tutorial)|HTML 语言教程|200|Shell|09/23|
|128|[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|200|Shell|08/13|
|129|[project-lede/luci-app-godproxy](https://github.com/project-lede/luci-app-godproxy)|重新整理的KoolProxy,为了区分,且叫GodProxy。最新规则版本号,请查看rulesupdate.log.每3天升级一次规则!|199|Shell|10/01|
|130|[yanhuacuo/98wubi-tables](https://github.com/yanhuacuo/98wubi-tables)|98五笔基础码表|198|Shell|10/26|
|131|[tianhao/alfred-mweb-workflow](https://github.com/tianhao/alfred-mweb-workflow)|搜索、打开MWeb 内部文档和外部 Markdown 文档|198|Shell|10/06|
|132|[jinfeijie/yapi](https://github.com/jinfeijie/yapi)|Docker for YApi 一键部署YApi|193|Shell|10/19|
|133|[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|192|Shell|10/13|
|134|[hoochanlon/helpdesk-guide](https://github.com/hoochanlon/helpdesk-guide)|📖《桌维网管实典》主机与程控终端信息安全运维,IT方向速成就业入职|187|Shell|08/25|
|135|[levie-vans/WeChatAssistant-ForMac](https://github.com/levie-vans/WeChatAssistant-ForMac)|Mac微信功能拓展/微信插件/微信小助手(A plugin for Mac WeChat)独立加载版。微信双开助手。|183|Shell|08/08|
|136|[kenzok8/openwrt_Build](https://github.com/kenzok8/openwrt_Build)|一键多编译固件|178|Shell|10/29|
|137|[xiaoyunjie/Shell_Script](https://github.com/xiaoyunjie/Shell_Script)|Linux系统的安全,通过脚本对Linux系统进行一键检测和一键加固|177|Shell|08/02|
|138|[Oreomeow/VIP](https://github.com/Oreomeow/VIP)|DONOT FORK!!!别 Fork 了!超过一定数量就跑路!🏃💨 Gone|177|Shell|10/29|
|139|[idoop/docker-apollo](https://github.com/idoop/docker-apollo)|docker image for Ctrip/Apollo(携程Apollo) |177|Shell|09/28|
|140|[wangdoc/webapi-tutorial](https://github.com/wangdoc/webapi-tutorial)|Web API 教程|176|Shell|09/05|
|141|[risfeng/aliyun-ddns-shell](https://github.com/risfeng/aliyun-ddns-shell)|阿里云域名解析动态更新IP Shell脚本|172|Shell|09/06|
|142|[hczhcz/the-elder-is-excited](https://github.com/hczhcz/the-elder-is-excited)|暴力膜蛤|170|Shell|10/23|
|143|[huweihuang/kubernetes-notes](https://github.com/huweihuang/kubernetes-notes)|Kubernetes 学习笔记-https://www.huweihuang.com/kubernetes-notes/|170|Shell|09/17|
|144|[wangtunan/blog](https://github.com/wangtunan/blog)|:memo: 记录个人博客,见证成长之路 https://wangtunan.github.io/blog/|170|Shell|10/28|
|145|[P3TERX/Aria2-Pro-Core](https://github.com/P3TERX/Aria2-Pro-Core)|Aria2 static binaries for GNU/Linux with some powerful feature patches. 破解无限线程 防掉线程优化 静态编译 二进制文件 增强版|168|Shell|08/22|
|146|[liqianggh/blog](https://github.com/liqianggh/blog)|简洁至上|166|Shell|08/19|
|147|[fanck0605/openwrt-nanopi-r2s](https://github.com/fanck0605/openwrt-nanopi-r2s)|自制 NanoPi R2s OpenWrt 固件|166|Shell|08/11|
|148|[analysys/argo-installer](https://github.com/analysys/argo-installer)|方舟Argo安装工具|164|Shell|05/26|
|149|[kalasutra/Clash_For_Magisk](https://github.com/kalasutra/Clash_For_Magisk)|使用shell启动clash内核,以及创建iptables tproxy规则,以此在Android上达到透明代理的目的.|162|Shell|08/07|
|150|[imroc/kubernetes-practice-guide](https://github.com/imroc/kubernetes-practice-guide)|Kubernetes Practice Guide (Kubernetes 实践指南)|161|Shell|08/19|
|151|[SuperNG6/docker-bilibili-helper](https://github.com/SuperNG6/docker-bilibili-helper)|docker bilibili助手|161|Shell|10/14|
|152|[M1Screw/Airport-toolkit](https://github.com/M1Screw/Airport-toolkit)|各類方便機場主進行安裝維護的shell腳本|159|Shell|06/14|
|153|[FantasticLBP/codesnippets](https://github.com/FantasticLBP/codesnippets)|iOS 代码规范、属性、方法、GCD、线程等代码块和控制器、单例、Model 类模版|158|Shell|10/08|
|154|[tal-tech/alarm-dog](https://github.com/tal-tech/alarm-dog)|哮天犬是一个通用的统一告警平台,提供配置化、流程化、标准化的能力,支持多种告警通知渠道,支持告警收敛、过滤、升级、工作流、自动恢复等功能,实现统一输入、不同输出。可以对接Grafana、阿里云Arms、实时计算等监控能力,各业务也可以直接在代码中埋点上报告警,也可以定制化开发,实现监控告警全场景覆盖。https://tal-tech.github.io/alarm-dog-docs|158|Shell|07/12|
|155|[KingFalse/ohmyiterm2](https://github.com/KingFalse/ohmyiterm2)|快速安装一个漂亮且强大的iterm2|157|Shell|06/29|
|156|[felix-fly/v2ray-dnsmasq-dnscrypt](https://github.com/felix-fly/v2ray-dnsmasq-dnscrypt)|路由器openwrt配置dnsmasq、doh,高性能v2ray解决方案。|157|Shell|09/27|
|157|[paniy/Xray_bash_onekey](https://github.com/paniy/Xray_bash_onekey)|Xray+Nginx 包含 VLESS WebSocket/gPRC+TLS / XTLS+TCP 协议的一键安装脚本|157|Shell|10/29|
|158|[yanbuyu/XiaomiCTSPass](https://github.com/yanbuyu/XiaomiCTSPass)|强制小米设备通过谷歌CTS测试|157|Shell|10/05|
|159|[WangWenBin2017/OpenWrt-SSRPLUS](https://github.com/WangWenBin2017/OpenWrt-SSRPLUS)|包含ShadowsocksR Plus+、Passwall和Clash/OpenClash IPK文件的GitHub云编译(x86_64架构专用,包含依赖)。最后一个编译的版本已经支持Xray。详见Release页面。|156|Shell|10/20|
|160|[primovist/snell.sh](https://github.com/primovist/snell.sh)|snell的一键安装脚本|153|Shell|10/04|
|161|[yuyicai/update-kube-cert](https://github.com/yuyicai/update-kube-cert)|K8s集群证书过期处理,更新kubeadm生成的证书有效期为10年。针对旧版集群(小于v1.15),当然大于等于v1.15也是可以用这个脚本更新,新版可直接kubeadm alpha certs renew <cert_name>更新 (deal with K8s cluster certificate expired)|153|Shell|09/26|
|162|[Lbingyi/HerokuXray](https://github.com/Lbingyi/HerokuXray)|使用Heroku部署Xray高性能代理服务,通过ws传输的 (vmess、vless、trojan shadowsocks、socks)等协议|150|Shell|09/22|
|163|[nanhantianyi/rpi-backup](https://github.com/nanhantianyi/rpi-backup)|raspberry pi backup,树莓派系统备份,最小镜像备份|150|Shell|05/29|
|164|[Karmenzind/dotfiles-and-scripts](https://github.com/Karmenzind/dotfiles-and-scripts)|:fishing_pole_and_fish: Dotfiles and scripts providing cumbersome configure details and other senseless stuff. 一些无聊的脚本和配置文件|149|Shell|07/19|
|165|[kumakichi/easy_rust_chs](https://github.com/kumakichi/easy_rust_chs)|https://github.com/Dhghomon/easy_rust 简体中文翻译|146|Shell|09/29|
|166|[stilleshan/frpc](https://github.com/stilleshan/frpc)|基于原版 frp 内网穿透客户端 frpc 的一键安装卸载脚本和 docker 镜像.支持群晖NAS,Linux 服务器和 docker 等多种环境安装部署.|144|Shell|10/26|
|167|[Senorsen/netease-cloud-music-rpm](https://github.com/Senorsen/netease-cloud-music-rpm)|网易云音乐 rpm 打包 Fedora Linux / openSUSE / etc.|142|Shell|05/14|
|168|[cloudnativeto/community](https://github.com/cloudnativeto/community)|云原生社区资料库 - https://cloudnative.to/community/|142|Shell|09/03|
|169|[Masterchiefm/Aria2Dash](https://github.com/Masterchiefm/Aria2Dash)|快速部署Aria2的脚本。具有剩余容量显示监控及显示功能。本脚本会一同安装文件管理器|139|Shell|10/03|
|170|[riverscn/openwrt-iptvhelper](https://github.com/riverscn/openwrt-iptvhelper)|方便地使用 Openwrt 融合IPTV到家庭局域网。Watching IPTV with Openwrt becomes easy. |138|Shell|08/27|
|171|[esrrhs/xiaohuangji](https://github.com/esrrhs/xiaohuangji)|小黄鸡表情收集|136|Shell|10/25|
|172|[clion007/dnsmasq](https://github.com/clion007/dnsmasq)|全自动dnsmasq防DNS劫持及全面广告屏蔽脚本(ADSI),项目搬迁至coding,此处已停止维护!|136|Shell|05/08|
|173|[Netflixxp/N1HK1dabao](https://github.com/Netflixxp/N1HK1dabao)|项目为自动打包N1和HK1(s905x3)盒子的固件,请勿fork,因为fork无法获取最新的固件,请收藏短网址https://jcnf.xyz/gj 获取最新固件版本;如需只要插件,可收藏另一个短网址 https://jcnf.xyz/ipk|135|Shell|10/28|
|174|[SuperNG6/docker-aria2](https://github.com/SuperNG6/docker-aria2)|Docker Aria2的最佳实践|134|Shell|10/25|
|175|[qxzg/Actions](https://github.com/qxzg/Actions)|每日自动更新fancyss规则|132|Shell|10/29|
|176|[ustclug/Linux101-docs](https://github.com/ustclug/Linux101-docs)|Linux 101 学生课程教材与讲义|132|Shell|09/22|
|177|[TomAPU/poc_and_exp](https://github.com/TomAPU/poc_and_exp)|搜集的或者自己写的poc或者exp|130|Shell|08/31|
|178|[DavidPisces/ReduceMIUI](https://github.com/DavidPisces/ReduceMIUI)|MIUI精简计划|127|Shell|10/08|
|179|[kkkyg/CFwarp](https://github.com/kkkyg/CFwarp)|Cloudflare WARP 多功能一键脚本,支持添加WARP+PLUS账户及无限刷WARP+流量功能 ,支持纯IPV4/纯IPV6/双栈V4V6的VPS共9种情况。支持X86/ARM,支持KVM,openvz,lxc等主流架构,实时显示当前WARP状态及IP,IP自动显示中文国家名称,已测试:hax纯v6站,Euserv(德鸡),oracle(甲骨文云),gpc(谷歌云),buyvm,racknerd,aws(亚马逊云),virmach,vultr,azure(微软云),bandwagonhost(搬瓦工)…………功能更新增加中…|126|Shell|10/29|
|180|[lgs3137/MR_S1-macOS](https://github.com/lgs3137/MR_S1-macOS)|机械革命S1(MSI PS42 8RB) for macOS Big Sur & Catalina|126|Shell|07/27|
|181|[daliansky/Lenovo-Air13-IWL-Hackintosh](https://github.com/daliansky/Lenovo-Air13-IWL-Hackintosh)|联想小新Air 13 IWL笔记本EFI|125|Shell|06/23|
|182|[sunpma/mtp](https://github.com/sunpma/mtp)|MTProxy TLS 绿色版一键安装脚本|124|Shell|09/14|
|183|[snow-sprite/rzsz](https://github.com/snow-sprite/rzsz)|lrzsz上传下载mac配置 及两个必要的.sh文件 iterm2-recv-zmodem.sh 和 iterm2-send-zmodem.sh|123|Shell|05/13|
|184|[VergilGao/docker-avdc](https://github.com/VergilGao/docker-avdc)|https://github.com/yoshiko2/AV_Data_Capture 的 docker镜像,帮助你更优雅的管理硬盘中的大姐姐们。|120|Shell|09/27|
|185|[idoop/zentao](https://github.com/idoop/zentao)|auto build docker image for zentao(禅道).|115|Shell|09/28|
|186|[rootsongjc/serverless-handbook](https://github.com/rootsongjc/serverless-handbook)|Serverless Handbook 无服务架构实践手册 - https://jimmysong.io/serverless-handbook|108|Shell|10/28|
|187|[Leif160519/centos-script](https://github.com/Leif160519/centos-script)|🎉centos下工具安装脚本,包含基础环境配置,Gitlab、Docker、LDAP、MongoDB、MySQL、RabbitMQ、Supervisor、Node、Python、zsh、rar、zabbix、k8s、prometheus、grafana等🎉|106|Shell|10/09|
|188|[hepyu/k8s-app-config](https://github.com/hepyu/k8s-app-config)|提供kubernetes容器化生产级实践,包含配置,参数,流程,架构等。|105|Shell|06/15|
|189|[cornjosh/Aminer](https://github.com/cornjosh/Aminer)|⛏️ Mining with Android devices. 使用 Android 设备来挖矿.|105|Shell|05/08|
|190|[E7KMbb/UnblockNeteaseMusic_for_Magisk](https://github.com/E7KMbb/UnblockNeteaseMusic_for_Magisk)|这是用于Magisk的UnblockNeteaseMusic|104|Shell|06/14|
|191|[neroxps/hassio_install](https://github.com/neroxps/hassio_install)|hassio 一键脚本,适配国内网络环境目前兼容(Debian Ubuntu Raspbian)|103|Shell|06/01|
|192|[i5ting/i5ting-mac-init](https://github.com/i5ting/i5ting-mac-init)|自己 Mac + Node.js 电脑初始化开发环境的安装脚本|101|Shell|04/06|
|193|[aitlp/docker-v2ray](https://github.com/aitlp/docker-v2ray)|使用docker-compose以ws+tls方式一键部署v2ray。|99|Shell|06/06|
|194|[kepuna/archiveScript](https://github.com/kepuna/archiveScript)|iOS自动打包上传到Fir平台和Appstore的脚本文件|97|Shell|06/13|
|195|[Petit-Abba/backup_script_zh-CN](https://github.com/Petit-Abba/backup_script_zh-CN)|数据备份脚本 简体中文版|97|Shell|10/29|
|196|[CloudNativeIndustryAlliance/whitepaper2020](https://github.com/CloudNativeIndustryAlliance/whitepaper2020)|中国信息通信研究院(CAICT)云原生发展白皮书(2020)- https://cloudnativeindustryalliance.github.io/whitepaper2020/|97|Shell|08/12|
|197|[pzcn/MIUI-Adapted-Icons-Complement-Project](https://github.com/pzcn/MIUI-Adapted-Icons-Complement-Project)|MIUI 完美图标补全计划|96|Shell|10/28|
|198|[RainbowEngineer/taiwan_love_wins](https://github.com/RainbowEngineer/taiwan_love_wins)|資訊界連署挺同婚|96|Shell|05/16|
|199|[zszdevelop/java-study-gitbook](https://github.com/zszdevelop/java-study-gitbook)|java学习gitbook笔记 http://java.isture.com|95|Shell|10/27|
|200|[LovelyHaochi/StreamUnlockTest](https://github.com/LovelyHaochi/StreamUnlockTest)|沙雕流媒体测试|95|Shell|08/18|
⬆ [回到目录](#目录)
<br/>
## C
|#|Repository|Description|Stars|Language|Updated|
|:-|:-|:-|:-|:-|:-|
|1|[QSCTech/zju-icicles](https://github.com/QSCTech/zju-icicles)|浙江大学课程攻略共享计划|23.1k|C|10/16|
|2|[julycoding/The-Art-Of-Programming-By-July](https://github.com/julycoding/The-Art-Of-Programming-By-July)|本项目曾冲到全球第一,干货集锦见本页面最底部,另完整精致的纸质版《编程之法:面试和算法心得》已在京东/当当上销售|20.1k|C|07/03|
|3|[Awesome-HarmonyOS/HarmonyOS](https://github.com/Awesome-HarmonyOS/HarmonyOS)|A curated list of awesome things related to HarmonyOS. 华为鸿蒙操作系统。|18.3k|C|06/17|
|4|[EZLippi/Tinyhttpd](https://github.com/EZLippi/Tinyhttpd)|Tinyhttpd 是J. David Blackstone在1999年写的一个不到 500 行的超轻量型 Http Server,用来学习非常不错,可以帮助我们真正理解服务器程序的本质。官网:http://tinyhttpd.sourceforge.net|7.5k|C|10/08|
|5|[bingoogolapple/BGAQRCode-Android](https://github.com/bingoogolapple/BGAQRCode-Android)|QRCode 扫描二维码、扫描条形码、相册获取图片后识别、生成带 Logo 二维码、支持微博微信 QQ 二维码扫描样式|7.4k|C|04/05|
|6|[nonstriater/Learn-Algorithms](https://github.com/nonstriater/Learn-Algorithms)|算法学习笔记|6.0k|C|10/28|
|7|[SecWiki/windows-kernel-exploits](https://github.com/SecWiki/windows-kernel-exploits)|windows-kernel-exploits Windows平台提权漏洞集合|5.8k|C|06/12|
|8|[sparklemotion/nokogiri](https://github.com/sparklemotion/nokogiri)|Nokogiri (鋸) makes it easy and painless to work with XML and HTML from Ruby.|5.7k|C|10/29|
|9|[miloyip/json-tutorial](https://github.com/miloyip/json-tutorial)|从零开始的 JSON 库教程|5.4k|C|10/21|
|10|[OpenAtomFoundation/TencentOS-tiny](https://github.com/OpenAtomFoundation/TencentOS-tiny)|腾讯物联网终端操作系统|5.2k|C|09/29|
|11|[peng-zhihui/Dummy-Robot](https://github.com/peng-zhihui/Dummy-Robot)|我的超迷你机械臂机器人项目。|4.6k|C|10/27|
|12|[pymumu/smartdns](https://github.com/pymumu/smartdns)|A local DNS server to obtain the fastest website IP for the best Internet experience, 一个本地DNS服务器,获取最快的网站IP,获得最佳上网体验。|4.1k|C|10/28|
|13|[ming1016/study](https://github.com/ming1016/study)|学习记录|3.6k|C|09/21|
|14|[y123456yz/reading-code-of-nginx-1.9.2](https://github.com/y123456yz/reading-code-of-nginx-1.9.2)|nginx-1.9.2源码通读分析注释,带详尽函数中文分析注释以及相关函数流程调用注释,最全面的nginx源码阅读分析中文注释,更新完毕|3.4k|C|07/26|
|15|[microshow/RxFFmpeg](https://github.com/microshow/RxFFmpeg)|🔥💥RxFFmpeg 是基于 ( FFmpeg 4.0 + X264 + mp3lame + fdk-aac + opencore-amr + openssl ) 编译的适用于 Android 平台的音视频编辑、视频剪辑的快速处理框架,包含以下功能:视频拼接,转码,压缩,裁剪,片头片尾,分离音视频,变速,添加静态贴纸和gif动态贴纸,添加字幕,添加滤镜,添加背景音乐,加速减速视频,倒放音视频,音频裁剪,变声,混音,图片合成视频,视频解码图片,抖音首页,视频播放器及支持 OpenSSL https 等主流特色功能|3.3k|C|08/03|
|16|[ithewei/libhv](https://github.com/ithewei/libhv)|🔥 比libevent、libuv更易用的国产网络库。A c/c++ network library for developing TCP/UDP/SSL/HTTP/WebSocket client/server.|3.1k|C|10/28|
|17|[peng-zhihui/HoloCubic](https://github.com/peng-zhihui/HoloCubic)|带网络功能的伪全息透明显示桌面站|2.8k|C|10/16|
|18|[xufuji456/FFmpegAndroid](https://github.com/xufuji456/FFmpegAndroid)|android端基于FFmpeg实现音频剪切、拼接、转码、编解码;视频剪切、水印、截图、转码、编解码、转Gif动图;音视频合成与分离;音视频解码、同步与播放;FFmpeg本地推流、H264与RTMP实时推流直播;FFmpeg滤镜:素描、色彩平衡、hue、lut、模糊、九宫格等;歌词解析与显示|2.8k|C|10/29|
|19|[firmianay/CTF-All-In-One](https://github.com/firmianay/CTF-All-In-One)|CTF竞赛权威指南|2.7k|C|10/16|
|20|[badafans/better-cloudflare-ip](https://github.com/badafans/better-cloudflare-ip)|查找适合自己当前网络环境的优选cloudflare anycast IP|2.7k|C|09/03|
|21|[guanzhi/GmSSL](https://github.com/guanzhi/GmSSL)|支持国密SM2/SM3/SM4/SM9/ZUC/SSL的OpenSSL分支|2.6k|C|08/21|
|22|[Mzzopublic/C](https://github.com/Mzzopublic/C)|C语言|2.6k|C|10/15|
|23|[feiyangqingyun/QWidgetDemo](https://github.com/feiyangqingyun/QWidgetDemo)|Qt编写的一些开源的demo,预计会有100多个,一直持续更新完善,代码简洁易懂注释详细,每个都是独立项目,非常适合初学者,代码随意传播使用,拒绝打赏和捐赠,欢迎留言评论!|2.6k|C|10/16|
|24|[WizTeam/WizQTClient](https://github.com/WizTeam/WizQTClient)|为知笔记跨平台客户端|2.4k|C|05/26|
|25|[zlgopen/awtk](https://github.com/zlgopen/awtk)|AWTK = Toolkit AnyWhere(为嵌入式、手机和PC打造的通用GUI系统)|2.3k|C|10/27|
|26|[ShadowsocksR-Live/shadowsocksr-native](https://github.com/ShadowsocksR-Live/shadowsocksr-native)|翻墙 从容穿越党国敏感日 ShadowsocksR (SSR) native implementation for all platforms, GFW terminator|2.3k|C|10/13|
|27|[EZLippi/WebBench](https://github.com/EZLippi/WebBench)|Webbench是Radim Kolar在1997年写的一个在linux下使用的非常简单的网站压测工具。它使用fork()模拟多个客户端同时访问我们设定的URL,测试网站在压力下工作的性能,最多可以模拟3万个并发连接去测试网站的负载能力。官网地址:http://home.tiscali.cz/~cz210552/webbench.html|2.1k|C|06/19|
|28|[quickjs-zh/QuickJS](https://github.com/quickjs-zh/QuickJS)|QuickJS是一个小型并且可嵌入的Javascript引擎,它支持ES2020规范,包括模块,异步生成器和代理器。|2.1k|C|04/06|
|29|[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|
|30|[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)|2.0k|C|10/29|
|31|[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.9k|C|08/09|
|32|[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.9k|C|08/04|
|33|[monyhar/monyhar-lite](https://github.com/monyhar/monyhar-lite)|梦弘浏览器 自主研发版本 - 完全自主研发,打破国外垄断,比 Chrome 快 600%。缺少上网功能。|1.8k|C|08/19|
|34|[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提权漏洞合集) |1.5k|C|10/27|
|35|[cppla/ServerStatus](https://github.com/cppla/ServerStatus)|云探针、多服务器探针、云监控、多服务器云监控,演示: https://tz.cloudcpp.com/|1.5k|C|10/22|
|36|[momotech/MLN](https://github.com/momotech/MLN)|高性能、小巧、易上手的移动跨平台开发框架. A framework for building Mobile cross-platform apps with Lua|1.5k|C|08/30|
|37|[liexusong/php-beast](https://github.com/liexusong/php-beast)|PHP source code encrypt module (PHP源码加密扩展)|1.5k|C|08/16|
|38|[armink/EasyFlash](https://github.com/armink/EasyFlash)|Lightweight IoT device information storage solution: KV/IAP/LOG. 轻量级物联网设备信息存储方案:参数存储、在线升级及日志存储 ,全新一代版本请移步至 https://github.com/armink/FlashDB|1.4k|C|10/28|
|39|[nining377/dolby_beta](https://github.com/nining377/dolby_beta)|杜比大喇叭的β版迎来了重大的革新,合并了UnblockMusic Pro的所有功能且更加强大,同时UnblockMusicPro_Xposed项目将会停止维护,让我们欢送这位老朋友!|1.3k|C|10/27|
|40|[ChenLittlePing/LearningVideo](https://github.com/ChenLittlePing/LearningVideo)|【Android 音视频开发打怪升级】系列文章示例代码(A demo to introduce how to develop android video)。本项目将从MediaCodec硬解,FFmpeg软解,OpenGL等方面,全方位讲解如何在Android上进行音视频编辑开发。|1.3k|C|05/16|
|41|[cokemine/ServerStatus-Hotaru](https://github.com/cokemine/ServerStatus-Hotaru)|云探针、多服务器探针、云监控、多服务器云监控|1.3k|C|10/25|
|42|[gatieme/LDD-LinuxDeviceDrivers](https://github.com/gatieme/LDD-LinuxDeviceDrivers)|Linux内核与设备驱动程序学习笔记|1.3k|C|10/27|
|43|[yianwillis/vimcdoc](https://github.com/yianwillis/vimcdoc)|Vim 中文文档计划|1.2k|C|08/23|
|44|[Tencent/TencentOS-kernel](https://github.com/Tencent/TencentOS-kernel)|腾讯针对云的场景研发的服务器操作系统|1.0k|C|10/28|
|45|[armink/FreeModbus_Slave-Master-RTT-STM32](https://github.com/armink/FreeModbus_Slave-Master-RTT-STM32)|Add master mode to FreeModbus. 在 FreeModbus 中添加主机模式|955|C|04/11|
|46|[hurley25/hurlex-doc](https://github.com/hurley25/hurlex-doc)|hurlex 小内核分章节代码和文档|908|C|08/09|
|47|[BruceWind/AESJniEncrypt](https://github.com/BruceWind/AESJniEncrypt)|Make safest code in Android. (基于libsodium实现chacha20算法,key在native中,防止被二次打包){长期维护,请star,勿fork}|896|C|10/28|
|48|[rock-app/fabu.love](https://github.com/rock-app/fabu.love)|应用发布平台类似fir.im/蒲公英,支持检查更新,灰度发布等等.Demo地址:https://fabu.apppills.com/|854|C|09/03|
|49|[chenyahui/AnnotatedCode](https://github.com/chenyahui/AnnotatedCode)|知名开源代码库的注释版:C++、Golang等|838|C|10/22|
|50|[ADD-SP/ngx_waf](https://github.com/ADD-SP/ngx_waf)|Handy, High performance, ModSecurity compatible Nginx firewall module & 方便、高性能、兼容 ModSecurity 的 Nginx 防火墙模块|794|C|10/27|
|51|[armink/SFUD](https://github.com/armink/SFUD)|An using JEDEC's SFDP standard serial (SPI) flash universal driver library 一款使用 JEDEC SFDP 标准的串行 (SPI) Flash 通用驱动库|717|C|07/25|
|52|[huaiyukeji/verification_code](https://github.com/huaiyukeji/verification_code)|验证码研究破解心得记录。包含网易易盾,阿里云验证码,极验验证码,通用汉字识别,梦幻西游验证等主流验证码破解。包含点按验证码、点选验证、语序点选等等。已更新极验验证码、企业公示网/工商/文书采集系统、极验打码接口。|681|C|04/08|
|53|[guanshuicheng/invoice](https://github.com/guanshuicheng/invoice)|增值税发票OCR识别,使用flask微服务架构,识别type:增值税电子普通发票,增值税普通发票,增值税专用发票;识别字段为:发票代码、发票号码、开票日期、校验码、税后金额等|678|C|08/25|
|54|[LGCooci/KCCbjc4_debug](https://github.com/LGCooci/KCCbjc4_debug)|🌈可编译苹果官方源码objc!现在有objc4底层源码,以及libmalloc等可编译版本,大家可以自由LLDB调试!|671|C|09/26|
|55|[froghui/yolanda](https://github.com/froghui/yolanda)|极客时间<网络编程实战>代码|645|C|10/12|
|56|[wuzhouhui/misc](https://github.com/wuzhouhui/misc)|学习与工作中收集的一些资料|637|C|10/12|
|57|[FantasticLBP/knowledge-kit](https://github.com/FantasticLBP/knowledge-kit)|iOS、Web前端、后端、数据库、计算机网络、设计模式经验总结|609|C|10/08|
|58|[RainbowRoad1/Cgame](https://github.com/RainbowRoad1/Cgame)|一些用C编写的小游戏, 14行贪吃蛇 22行2048 22行俄罗斯方块 25行扫雷...以及各种小玩意|605|C|07/10|
|59|[wuxx/nanoDAP](https://github.com/wuxx/nanoDAP)|建议大家star此仓库,仓库会持续更新。由于部分淘宝卖家“借鉴”实验室出品的nanoDAP详情描述和资料,请大家认准实验室官方链接|579|C|06/24|
|60|[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 ...|575|C|06/04|
|61|[aqi00/android2](https://github.com/aqi00/android2)|《Android Studio开发实战:从零基础到App上线》随书源码(全面添加注释版)|552|C|09/14|
|62|[Echocipher/AUTO-EARN](https://github.com/Echocipher/AUTO-EARN)|一个利用OneForAll进行子域收集、Shodan API端口扫描、Xray漏洞Fuzz、Server酱的自动化漏洞扫描、即时通知提醒的漏洞挖掘辅助工具|551|C|06/02|
|63|[Lojii/Knot](https://github.com/Lojii/Knot)|一款iOS端基于MITM(中间人攻击技术)实现的HTTPS抓包工具,完整的App,核心代码使用SwiftNIO实现|544|C|10/15|
|64|[armink/FlashDB](https://github.com/armink/FlashDB)|An ultra-lightweight database that supports key-value and time series data 一款支持 KV 数据和时序数据的超轻量级数据库|527|C|10/07|
|65|[li-xiaojun/AndroidKTX](https://github.com/li-xiaojun/AndroidKTX)|🔥Some very useful kotlin extensions for speed android development!好用到爆的Kotlin扩展,加速你的Android开发!|524|C|10/22|
|66|[langhuihui/jessibuca](https://github.com/langhuihui/jessibuca)|Jessibuca是一款开源的纯H5直播流播放器|524|C|10/27|
|67|[timwhitez/Cobalt-Strike-Aggressor-Scripts](https://github.com/timwhitez/Cobalt-Strike-Aggressor-Scripts)|Cobalt Strike Aggressor 插件包|512|C|08/31|
|68|[dlxg/Linux-NetSpeed](https://github.com/dlxg/Linux-NetSpeed)|BBR+BBR魔改+Lotsever(锐速)一键脚本 for Centos/Debian/Ubuntu|512|C|04/04|
|69|[u0u0/Quick-Cocos2dx-Community](https://github.com/u0u0/Quick-Cocos2dx-Community)|Cocos2d-Lua 社区版|512|C|09/28|
|70|[byhook/ffmpeg4android](https://github.com/byhook/ffmpeg4android)|音视频学习实践,从移植ffmpeg库到android平台,混合编译x264库以及fdk-aac库,到相机音频采集编码推流到RTMP服务器的学习记录|504|C|10/10|
|71|[y123456yz/Reading-and-comprehense-redis-cluster](https://github.com/y123456yz/Reading-and-comprehense-redis-cluster)|分布式NOSQL redis源码阅读中文分析注释,带详尽注释以及相关流程调用注释,提出改造点,redis cluster集群功能、节点扩容、槽位迁移、failover故障切换、一致性选举完整分析,对理解redis源码很有帮助,解决了source insight中文注释乱码问题,更新完毕|489|C|08/23|
|72|[aliyun/rds_dbsync](https://github.com/aliyun/rds_dbsync)|围绕 PostgreSQL Greenplum ,实现易用的数据的互迁功能项目|481|C|08/20|
|73|[aliyun/iotkit-embedded](https://github.com/aliyun/iotkit-embedded)|高速镜像: https://code.aliyun.com/linkkit/c-sdk|473|C|05/12|
|74|[chenall/grub4dos](https://github.com/chenall/grub4dos)|外部命令和工具源码:https://github.com/chenall/grubutils 下载:|472|C|10/22|
|75|[hanson-young/nniefacelib](https://github.com/hanson-young/nniefacelib)|nniefacelib是一个在海思35xx系列芯片上运行的人脸算法库|448|C|10/13|
|76|[czqasngit/objc_msgSend_hook](https://github.com/czqasngit/objc_msgSend_hook)|objc_msgSend之精简且完整的hook核心功能,并且还有详细注释|438|C|04/11|
|77|[ksyun-kenc/liuguang](https://github.com/ksyun-kenc/liuguang)|鎏光云游戏引擎|426|C|10/26|
|78|[chronolaw/annotated_nginx](https://github.com/chronolaw/annotated_nginx)|Annotated Nginx Source(中文)|415|C|09/08|
|79|[mabDc/eso](https://github.com/mabDc/eso)|亦搜,亦看,亦闻 manga&novel reader, audio&video player in one app developed by flutter|410|C|04/12|
|80|[chexiongsheng/build_xlua_with_libs](https://github.com/chexiongsheng/build_xlua_with_libs)|为xLua集成几个常用库,方便使用|409|C|06/17|
|81|[scriptiot/evm](https://github.com/scriptiot/evm)|超轻量级物联网虚拟机|403|C|06/24|
|82|[wangbojing/NtyTcp](https://github.com/wangbojing/NtyTcp)|单线程用户态TCP/IP协议栈,epoll实现,包含服务器案例,并发测试案例|395|C|07/30|
|83|[wenjun1055/c](https://github.com/wenjun1055/c)|C语言学习代码|394|C|10/02|
|84|[hairrrrr/C-CrashCourse](https://github.com/hairrrrr/C-CrashCourse)|C语言教程+博客+代码演示+课程设计。 帮助初学者更好的理解 C 难点,提升代码量! For beginners:C tuition/self-learning|389|C|10/01|
|85|[0voice/algorithm-structure](https://github.com/0voice/algorithm-structure)|2021年最新总结 500个常用数据结构,算法,算法导论,面试常用,大厂高级工程师整理总结|388|C|08/27|
|86|[riba2534/TCP-IP-NetworkNote](https://github.com/riba2534/TCP-IP-NetworkNote)|📘《TCP/IP网络编程》(韩-尹圣雨)学习笔记|382|C|10/07|
|87|[chankeh/net-lenrning-reference](https://github.com/chankeh/net-lenrning-reference)|TCP/IP网络编程笔记|379|C|08/31|
|88|[hewei2001/HITSZ-OpenCS](https://github.com/hewei2001/HITSZ-OpenCS)|哈尔滨工业大学(深圳)计算机专业课程攻略 Guidance for courses in Department of Computer Science, Harbin Institute of Technology (Shenzhen)|376|C|10/19|
|89|[wondertrader/wondertrader](https://github.com/wondertrader/wondertrader)|WonderTrader——量化研发交易一站式框架|370|C|10/24|
|90|[hzcx998/xbook2](https://github.com/hzcx998/xbook2)|xbook2是一个基于x86处理器的32位操作系统,实现了大量的基础功能,可以拿来学习操作系统知识。|357|C|07/31|
|91|[renhui/Thinking-in-AV](https://github.com/renhui/Thinking-in-AV)|音视频开发知识库|353|C|04/23|
|92|[fanyuan/MyMp3Convert](https://github.com/fanyuan/MyMp3Convert)|mp3转码,把wav转换成mp3格式|349|C|05/23|
|93|[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。💎顶尖优化,超强效能。|346|C|10/27|
|94|[picasso250/spring12](https://github.com/picasso250/spring12)|春节十二响|344|C|04/21|
|95|[QingdaoU/Judger](https://github.com/QingdaoU/Judger)|Online judge sandbox based on seccomp OnlineJudge 安全沙箱|335|C|09/28|
|96|[Greedysky/TTKWidgetTools](https://github.com/Greedysky/TTKWidgetTools)|QWidget 自定义控件集合 持续更新中......|330|C|10/27|
|97|[SkewwG/domainTools](https://github.com/SkewwG/domainTools)|内网域渗透小工具|325|C|04/20|
|98|[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。|310|C|10/25|
|99|[fenwii/OpenHarmony](https://github.com/fenwii/OpenHarmony)|华为鸿蒙分布式操作系统(Huawei OpenHarmony)开发技术交流,鸿蒙技术资料,手册,指南,共建国产操作系统万物互联新生态。|305|C|10/28|
|100|[pegasusTrader/PandoraTrader](https://github.com/pegasusTrader/PandoraTrader)|CTP 高频量化交易平台 C++ Trade Platform for quant developer |303|C|09/30|
|101|[zmrbak/PcWeChatHooK](https://github.com/zmrbak/PcWeChatHooK)|云课堂《2019 PC微信 探秘》示例代码|302|C|06/03|
|102|[Al1ex/WindowsElevation](https://github.com/Al1ex/WindowsElevation)|Windows Elevation(持续更新)|301|C|04/19|
|103|[kenzok8/small](https://github.com/kenzok8/small)|passwall基本依赖!|294|C|10/25|
|104|[OliverLew/PAT](https://github.com/OliverLew/PAT)|PAT OJ exercises in C language 浙江大学PAT纯C语言题解。|287|C|10/05|
|105|[forthespada/MyPoorWebServer](https://github.com/forthespada/MyPoorWebServer)|一款可运行的基于C++ 实现的HTTP服务器,基于《TCPIP网络编程》和《Linux高性能服务器编程》实现的服务器项目。|279|C|10/15|
|106|[imengyu/JiYuTrainer](https://github.com/imengyu/JiYuTrainer)|极域电子教室防控制软件, StudenMain.exe 破解|276|C|08/18|
|107|[dustpg/StepFC](https://github.com/dustpg/StepFC)|Make FC(NES) Emulator Step-by-Step 一步一步模拟红白机|270|C|05/21|
|108|[gatieme/AderXCoding](https://github.com/gatieme/AderXCoding)|介绍各类语言,库,系统编程以及算法的学习|268|C|05/09|
|109|[xuhongv/StudyInEsp32](https://github.com/xuhongv/StudyInEsp32)|【深度开源】wiif+bt模块esp32学习之旅(持续更新,欢迎 Star...)|266|C|10/21|
|110|[Kevincoooool/KS_DAP_Wireless](https://github.com/Kevincoooool/KS_DAP_Wireless)|STM32F103C8T6 无线有线DAP下载器,脱机(离线)烧录器,脱机下载器|254|C|07/02|
|111|[notrynohigh/BabyOS](https://github.com/notrynohigh/BabyOS)|专为MCU项目开发提速的代码框架|249|C|10/29|
|112|[dpull/skynet-mingw](https://github.com/dpull/skynet-mingw)|对skynet无任何改动的windows版|247|C|10/28|
|113|[yundiantech/VideoPlayer](https://github.com/yundiantech/VideoPlayer)|Qt+ffmpeg实现的视频播放器|246|C|05/11|
|114|[dreamsxin/cphalcon7](https://github.com/dreamsxin/cphalcon7)|Dao7 - Web framework for PHP7.x,QQ群 9970484|241|C|06/29|
|115|[usbxyz/CAN-Bootloader](https://github.com/usbxyz/CAN-Bootloader)|使用USB2XXX实现的CAN Bootloader功能,实现CAN节点固件远程升级|239|C|06/29|
|116|[riscv2os/riscv2os](https://github.com/riscv2os/riscv2os)|從 RISC-V 處理器到 UNIX 作業系統|237|C|08/27|
|117|[MarioCrane/LeagueLobby](https://github.com/MarioCrane/LeagueLobby)|英雄联盟自定义房间创建工具,包括5V5训练营,(血月杀等轮换模式已被官方关闭)|236|C|05/29|
|118|[NEWPLAN/SMx](https://github.com/NEWPLAN/SMx)|国家商用加密算法 SMx(SM2,SM3,SM4)|230|C|09/27|
|119|[fujie-xiyou/chat_room](https://github.com/fujie-xiyou/chat_room)|聊天室 -- 17年暑假项目(Linux C网络编程)|229|C|05/01|
|120|[deepwzh/sdust-examination-materials](https://github.com/deepwzh/sdust-examination-materials)|山东科技大学课程资源共享计划|219|C|10/07|
|121|[tsingsee/EasyPlayer-RTSP-Win](https://github.com/tsingsee/EasyPlayer-RTSP-Win)|An free, 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两种模式!|215|C|07/19|
|122|[404name/winter](https://github.com/404name/winter)|2020上半年超长寒假呆家学习了半年C语言(大一下)的时候写的一些小游戏/小程序,那时候觉得用C从零开始模拟一些东西挺有趣,就没有参考其他教程或者游戏,通过自己思考用基础语法写出了这些写代码,规范性只能说是相当于我大一的标准,欢迎分享,学习和交流|211|C|10/18|
|123|[numberwolf/FFmpeg-Plus-OpenGL](https://github.com/numberwolf/FFmpeg-Plus-OpenGL)|🔥 OpenGL Filter for FFmpeg: Support Effects/Transition/Picture-in-Picture/LUT, Render video by your shaders(GLSL) . 🔥 FFmpeg Filter支持特效/转场/画中画、特效/LUT贴纸能力, 支持OpenGL Shader。|210|C|10/22|
|124|[Hansimov/csapp](https://github.com/Hansimov/csapp)|个人整理的《深入理解计算机系统》中文电子版(原书第 3 版)与实验材料:https://hansimov.gitbook.io/csapp/|206|C|08/12|
|125|[Embedfire/embed_linux_tutorial](https://github.com/Embedfire/embed_linux_tutorial)|野火《i.MX Linux开发实战指南》书籍及代码|199|C|04/25|
|126|[yourtion/YOS](https://github.com/yourtion/YOS)|YourtionOS 基于 30dayMakeOS (OSASK) 构建你自己的操作系统|196|C|05/24|
|127|[yujunjiex/behavior_captcha_cracker](https://github.com/yujunjiex/behavior_captcha_cracker)|基于深度学习的行为式验证码研究及破解。类型包括滑块式/点选式,平台包括极验/易盾/云片|195|C|09/08|
|128|[XeiTongXueFlyMe/J1939](https://github.com/XeiTongXueFlyMe/J1939)|基于SAE J1939协议,开源可移植的J1939驱动。技术支持群: 264864184 @使用说明书:|188|C|08/06|
|129|[zhouchangxun/ngx_healthcheck_module](https://github.com/zhouchangxun/ngx_healthcheck_module)|nginx module for upstream servers health check. support stream and http upstream. 该模块可以为Nginx提供主动式后端服务器健康检查的功能(同时支持四层和七层后端服务器的健康检测)|172|C|06/04|
|130|[jiejieTop/cmd-parser](https://github.com/jiejieTop/cmd-parser)|一个非常简单好用的命令解析器,占用资源极少极少,采用哈希算法超快匹配命令!|172|C|07/23|
|131|[eboxmaker/eBox_Framework](https://github.com/eboxmaker/eBox_Framework)|ebox是类似于arduino的一层api,简化stm32编程|178|C|10/10|
|132|[foxclever/Modbus](https://github.com/foxclever/Modbus)|一个Modbus通讯协议栈|174|C|08/27|
|133|[Al1ex/LinuxEelvation](https://github.com/Al1ex/LinuxEelvation)|Linux Eelvation(持续更新)|172|C|04/20|
|134|[dwj0/Remote-management](https://github.com/dwj0/Remote-management)|远程桌面、RADMIN、SSH、VNC集中管理器|167|C|06/25|
|135|[Kiprey/Skr_Learning](https://github.com/Kiprey/Skr_Learning)|天问之路 - 学习笔记&学习周报。内容包括但不限于C++ STL、编译原理、LLVM IR Pass代码优化、CSAPP Lab、uCore操作系统等等。持续更新ing...|163|C|10/17|
|136|[wonderkun/go-packer](https://github.com/wonderkun/go-packer)|golang打包二进制进行免杀|162|C|04/07|
|137|[crosg/idCreator](https://github.com/crosg/idCreator)|这是一个id生成器,主要为互联网的各种业务生成id(也就是数据库主键)。该id生成器生成的id主要被用来做数据路由之用。和Albianj2配合,可以快速而简单的搭建完整的分布式业务系统!|162|C|07/22|
|138|[we11cheng/WCPotatso](https://github.com/we11cheng/WCPotatso)|iOS Potatso源码(配置下自己的开发证书就能编译版本)|159|C|05/19|
|139|[liuqun/njit8021xclient](https://github.com/liuqun/njit8021xclient)|南京工程学院802.1X客户端(Linux版兼容H3C/iNode V2.40-F0335)|154|C|04/23|
|140|[openLuat/LuatOS](https://github.com/openLuat/LuatOS)|合宙LuatOS -- Lua base RTOS, build for many embedded systems. LuatOS是运行在嵌入式硬件的实时操作系统|153|C|10/28|
|141|[bilibilifmk/wifi_link_tool](https://github.com/bilibilifmk/wifi_link_tool)|这是一个为esp8266设计的通用配网加集群库https://keai.icu/wifilinktool|153|C|10/05|
|142|[lintingbin2009/C-language](https://github.com/lintingbin2009/C-language)|C语言练习代码|153|C|09/05|
|143|[kuangyufei/kernel_liteos_a_note](https://github.com/kuangyufei/kernel_liteos_a_note)|精读鸿蒙内核源码,百万汉字注解分析;百篇博客深入解剖,挖透内核地基工程.注解同步官方,工具文档齐全,多站点发布 . weharmonyos.com|151|C|10/28|
|144|[holdyeah/wechat-pc-hook-python](https://github.com/holdyeah/wechat-pc-hook-python)|微信 pc hook|148|C|08/31|
|145|[g0dA/linuxStack](https://github.com/g0dA/linuxStack)|Linux技术栈|147|C|09/19|
|146|[vllogic/vllink_lite](https://github.com/vllogic/vllink_lite)|低成本CMSIS-DAP V2调试器,IO时序SPI优化,速度级别200KB/S至450KB/S|143|C|08/15|
|147|[liu2guang/LittlevGL2RTT](https://github.com/liu2guang/LittlevGL2RTT)|The littlevgl graphics library for RT-Thread. 基于 RT-Thread 移植的littlevgl图形库.|142|C|04/15|
|148|[JingYang1124/HEX-LINK](https://github.com/JingYang1124/HEX-LINK)|这是一套可适用于PC端游戏的体感操作设备。|142|C|07/29|
|149|[iBreaker/OS-One](https://github.com/iBreaker/OS-One)|一个自制的树莓派操作系统|141|C|09/24|
|150|[trumanzhao/luna](https://github.com/trumanzhao/luna)|基于C++17的lua/C++绑定库,以及lua的二进制序列化等辅助代码|135|C|07/23|
|151|[Shies/dtrace](https://github.com/Shies/dtrace)|用c语言编写forp PHP分析器是一个轻量级的PHP扩展提供脚本的调用堆栈,CPU和内存使用|133|C|09/09|
|152|[plctlab/riscv-operating-system-mooc](https://github.com/plctlab/riscv-operating-system-mooc)|《从头写一个RISC-V OS》课程配套的资源|131|C|09/12|
|153|[debugger999/gb28181ToH264](https://github.com/debugger999/gb28181ToH264)|作为上级域,可以对接海康、大华、宇视等gb28181平台,获取ps流,转换为标准h.264裸流|130|C|08/15|
|154|[hungtcs-lab/8051-examples](https://github.com/hungtcs-lab/8051-examples)|基于SDCC编译器的8051单片机示例|129|C|09/11|
|155|[dashanji/FreeFlyOS](https://github.com/dashanji/FreeFlyOS)|FreeFlyOS----自由飞翔的操作系统,谁在仰望~~~~~月亮之上~~~~~~|128|C|04/07|
|156|[sj15712795029/bluetooth_stack](https://github.com/sj15712795029/bluetooth_stack)|这是一个开源的双模蓝牙协议栈(bluetooth.stack)(btstack),可以运行在STM32,Linux.,包含HCI,L2CAP,SDP,RFCOMM,HFP,SPP,A2DP,AVRCP,AVDTP,AVCTP,OBEX,PBAP等协议,后续会继续维护,以达到商用的目的|128|C|10/03|
|157|[EternalStarCHN/SmartHumidifier](https://github.com/EternalStarCHN/SmartHumidifier)|【⏹已完结】无线智能控制的加湿器设计“聪明的加湿器”(本科毕业设计)|123|C|09/14|
|158|[muluoleiguo/interview](https://github.com/muluoleiguo/interview)|linux C++ 服务器/后台开发 秋招整理资料 |122|C|08/23|
|159|[albuer/heapsnap](https://github.com/albuer/heapsnap)|HeapSnap 是一个定位内存泄露的工具,适用于Android平台。|122|C|06/02|
|160|[gofmt/iOSSniffer](https://github.com/gofmt/iOSSniffer)|iOS抓包工具|122|C|05/08|
|161|[Yu2erer/LuaJIT-5.3.6](https://github.com/Yu2erer/LuaJIT-5.3.6)|Lua 5.3.6 JIT && 多线程 垃圾回收|120|C|09/06|
|162|[pymumu/tinylog](https://github.com/pymumu/tinylog)|A lightweight C,C++ log component developed for Linux, It is designed with high performance, asynchronized, thread-safe and process-safe; tinylog是一个专为UNIX设计的轻量级的C/C++日志模块,其提供了高性能,异步,线程安全,进程安全的日志功能。|120|C|08/01|
|163|[antiwar3/py](https://github.com/antiwar3/py)|飘云ark(pyark) |116|C|08/26|
|164|[aceld/Lars](https://github.com/aceld/Lars)|负载均衡远程服务调度系统|114|C|08/09|
|165|[Lighter-z/51-Single-chip](https://github.com/Lighter-z/51-Single-chip)|51单片机入门资料|113|C|08/15|
|166|[MBronsom/OfflineSWD](https://github.com/MBronsom/OfflineSWD)|STM32系列离线烧写器|112|C|08/29|
|167|[zhangboyang/PAL3patch](https://github.com/zhangboyang/PAL3patch)|《仙剑奇侠传三》《仙剑奇侠传三外传·问情篇》分辨率补丁|112|C|05/04|
|168|[jordiwang/web-capture](https://github.com/jordiwang/web-capture)|基于 ffmpeg + Webassembly 实现前端视频帧提取|111|C|09/05|
|169|[hujianzhe/util](https://github.com/hujianzhe/util)|纯C的跨平台基础库与网络库,提供list/hashtable/rbtree数据结构,封装各OS API,对使用者屏蔽诸如IO多路复用下的并发可靠UDP/TCP的传输与监听,断线重连,基于协程/回调的RPC调度核心机制等实现细节.内部还包括一个3D碰撞检测.|108|C|10/14|
|170|[Manistein/SparkServer](https://github.com/Manistein/SparkServer)|SparkServer是一个参照skynet设计的C#服务端框架,能够无缝整合到skynet集群机制中,也能自行组网,构建只有SparkServer节点的集群|107|C|05/10|
|171|[zl03jsj/mupdf](https://github.com/zl03jsj/mupdf)|扩展mupdf 实现图像数字证书签名, 手写笔迹数字证书签名, 插入图片, 手写签名注释..改进手写批注,实现模拟真实手写的算法, annot自定义数据, annot插入,删除密码校验等功能...支持ios, windows, mac, linux, c++, java, android|107|C|06/16|
|172|[wudicgi/SpleeterMsvcExe](https://github.com/wudicgi/SpleeterMsvcExe)|Windows command line program for Spleeter, written in pure C, no need of Python. Spleeter 的 Windows 命令行程序,纯 C 语言编写,无需 Python.|106|C|05/12|
|173|[0671/RedisModules-ExecuteCommand-for-Windows](https://github.com/0671/RedisModules-ExecuteCommand-for-Windows)|可在Windows下执行系统命令的Redis模块,可用于Redis主从复制攻击。|106|C|07/06|
|174|[balloonwj/mybooksources](https://github.com/balloonwj/mybooksources)|《C++ 服务器开发精髓》随书配套源码|105|C|09/01|
|175|[leleliu008/C](https://github.com/leleliu008/C)|C语言学习项目|104|C|10/20|
|176|[txthinking/joker](https://github.com/txthinking/joker)|Joker can turn process into daemon. Zero-Configuration. Joker可以将进程变成守护进程. 无需配置.|103|C|07/16|
|177|[Mculover666/HAL_Driver_Lib](https://github.com/Mculover666/HAL_Driver_Lib)|基于STM32 HAL库的外设驱动库|99|C|08/29|
|178|[hihkm/DanmakuFactory](https://github.com/hihkm/DanmakuFactory)|支持特殊弹幕的xml转ass格式转换工具|97|C|09/02|
|179|[r0ysue/AndroidFridaBeginnersBook](https://github.com/r0ysue/AndroidFridaBeginnersBook)|《安卓Frida逆向与抓包实战》随书附件|96|C|10/15|
|180|[zengming00/vmrp](https://github.com/zengming00/vmrp)|mrp emulator, virtual machine, mrp模拟器|94|C|08/03|
|181|[arkdb/arkproxy](https://github.com/arkdb/arkproxy)|高性能、高可靠的数据库跨云中间件,完全兼容MySQL技术体系,由极数云舟出品开源|94|C|10/22|
|182|[Ai-Thinker-Open/Telink_825X_SDK](https://github.com/Ai-Thinker-Open/Telink_825X_SDK)|Telink TLS825X 蓝牙芯片SDK|94|C|06/17|
|183|[pangdahua/php7-wxwork-finance-sdk](https://github.com/pangdahua/php7-wxwork-finance-sdk)|PHP企业微信会话存档扩展|94|C|10/08|
|184|[AntSwordProject/ant_php_extension](https://github.com/AntSwordProject/ant_php_extension)|PHP 扩展, 用于 PHP-FPM、FastCGI、LD_PRELOAD等模式下突破 disabled_functions|92|C|09/08|
|185|[douzhongqiang/EasyCanvas](https://github.com/douzhongqiang/EasyCanvas)|基于Qt QGraphicsView的简易画图软件|92|C|10/11|
|186|[xuexiangjys/XVideo](https://github.com/xuexiangjys/XVideo)|一个能自动进行压缩的小视频录制库|92|C|06/15|
|187|[evilbinary/YiYiYa](https://github.com/evilbinary/YiYiYa)|YiYiYa 一个os|92|C|10/25|
|188|[Nrusher/nr_micro_shell](https://github.com/Nrusher/nr_micro_shell)|shell for MCU. 单片机命令行交互。|92|C|04/24|
|189|[tidyjiang8/esp-idf-zh](https://github.com/tidyjiang8/esp-idf-zh)|ESP-IDF 中文文档 |91|C|04/05|
|190|[cdians/FastChia](https://github.com/cdians/FastChia)|Chia奇亚 plot(P盘)快速一键化工具|91|C|07/28|
|191|[poemdistance/ScreenTranslation](https://github.com/poemdistance/ScreenTranslation)|Linux屏幕取词翻译(适用于如Gnome等基于X server的桌面发行版) -- 含界面|90|C|07/18|
|192|[labplus-cn/mpython](https://github.com/labplus-cn/mpython)|mpython掌控板文档和固件源码|85|C|10/28|
|193|[archeryue/cpc](https://github.com/archeryue/cpc)|建党 100 周年!写一个名为 CPC 的 C 编译器,为党庆生!|85|C|09/15|
|194|[Hom-Wang/Quadcopter](https://github.com/Hom-Wang/Quadcopter)|101年大學專題-四軸飛行器|85|C|06/21|
|195|[Rvn0xsy/linux_dirty](https://github.com/Rvn0xsy/linux_dirty)|更改后的脏牛提权代码,可以往任意文件写入任意内容,去除交互过程|84|C|10/28|
|196|[figozhang/runninglinuxkernel_5.0](https://github.com/figozhang/runninglinuxkernel_5.0)|奔跑吧linux内核第二版(卷1,卷2,入门篇) 实验平台|83|C|07/24|
|197|[JingYang1124/Acoustic-controlled-Mini-Racer-Beat-Magnum](https://github.com/JingYang1124/Acoustic-controlled-Mini-Racer-Beat-Magnum)|本项目是一款声控的迷你赛车--“跃动冲锋”,可通过语音指令控制车子的运动,还原了动画片“四驱兄弟”中的场景。|82|C|07/02|
|198|[jingweizhanghuai/Morn](https://github.com/jingweizhanghuai/Morn)|Morn是一个C语言的基础工具和基础算法库,包括数据结构、图像处理、音频处理、机器学习等,具有简单、通用、高效的特点。|81|C|10/29|
|199|[AttackTeamFamily/cobaltstrike-bof-toolset](https://github.com/AttackTeamFamily/cobaltstrike-bof-toolset)|在cobaltstrike中使用的bof工具集,收集整理验证好用的bof。|81|C|10/07|
|200|[windowsair/wireless-esp8266-dap](https://github.com/windowsair/wireless-esp8266-dap)|ESP8266 Wireless Debugger. Based on CMSIS-DAP v2.0.0. Optional SPI acceleration, etc. ESP8266 无线调试器|80|C|10/10|
⬆ [回到目录](#目录)
<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 ...|21.0k|C++|10/06|
|2|[vnpy/vnpy](https://github.com/vnpy/vnpy)|基于Python的开源量化交易平台开发框架|16.6k|C++|10/29|
|3|[Light-City/CPlusPlusThings](https://github.com/Light-City/CPlusPlusThings)|C++那些事|16.0k|C++|09/22|
|4|[zhongyang219/TrafficMonitor](https://github.com/zhongyang219/TrafficMonitor)|这是一个用于显示当前网速、CPU及内存利用率的桌面悬浮窗软件,并支持任务栏显示,支持更换皮肤。|14.2k|C++|10/28|
|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:|12.6k|C++|08/17|
|6|[ChenYilong/iOSInterviewQuestions](https://github.com/ChenYilong/iOSInterviewQuestions)|iOS interview questions;iOS面试题集锦(附答案)--学习qq群或 Telegram 群交流 https://github.com/ChenYilong/iOSBlog/issues/21|8.9k|C++|09/03|
|7|[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 |8.1k|C++|10/28|
|8|[Ewenwan/MVision](https://github.com/Ewenwan/MVision)|机器人视觉 移动机器人 VS-SLAM ORB-SLAM2 深度学习目标检测 yolov3 行为检测 opencv PCL 机器学习 无人驾驶|6.0k|C++|07/29|
|9|[PaddlePaddle/Paddle-Lite](https://github.com/PaddlePaddle/Paddle-Lite)|Multi-platform high performance deep learning inference engine (『飞桨』多平台高性能深度学习预测引擎)|5.8k|C++|10/28|
|10|[me115/design_patterns](https://github.com/me115/design_patterns)|图说设计模式|5.5k|C++|08/10|
|11|[weolar/miniblink49](https://github.com/weolar/miniblink49)|a lighter, faster browser kernel of blink to integrate HTML UI in your app. 一个小巧、轻量的浏览器内核,用来取代wke和libcef|5.3k|C++|09/23|
|12|[szad670401/HyperLPR](https://github.com/szad670401/HyperLPR)|基于深度学习高性能中文车牌识别 High Performance Chinese License Plate Recognition Framework.|4.3k|C++|10/13|
|13|[qinguoyi/TinyWebServer](https://github.com/qinguoyi/TinyWebServer)|:fire: Linux下C++轻量级Web服务器|4.1k|C++|10/10|
|14|[MegEngine/MegEngine](https://github.com/MegEngine/MegEngine)|MegEngine 是一个快速、可拓展、易于使用且支持自动求导的深度学习框架|4.0k|C++|10/26|
|15|[TonyChen56/WeChatRobot](https://github.com/TonyChen56/WeChatRobot)|PC版微信机器人 微信Api、微信api、微信发卡机器人、微信聊天机器人 python微信api 微信接口 微信数据库解密|4.0k|C++|10/20|
|16|[yedf/handy](https://github.com/yedf/handy)|🔥简洁易用的C++11网络库 / 支持单机千万并发连接 / a simple C++11 network server framework|3.8k|C++|10/11|
|17|[forhappy/Cplusplus-Concurrency-In-Practice](https://github.com/forhappy/Cplusplus-Concurrency-In-Practice)|A Detailed Cplusplus Concurrency Tutorial 《C++ 并发编程指南》|3.7k|C++|07/25|
|18|[applenob/Cpp_Primer_Practice](https://github.com/applenob/Cpp_Primer_Practice)|搞定C++:punch:。C++ Primer 中文版第5版学习仓库,包括笔记和课后练习答案。|3.1k|C++|09/06|
|19|[wang-bin/QtAV](https://github.com/wang-bin/QtAV)|A cross-platform multimedia framework based on Qt and FFmpeg(https://github.com/wang-bin/avbuild). High performance. User & developer friendly. Supports Android, iOS, Windows store and desktops. 基于Qt和FFmpeg的跨平台高性能音视频播放框架|3.0k|C++|10/27|
|20|[balloonwj/flamingo](https://github.com/balloonwj/flamingo)|flamingo 一款高性能轻量级开源即时通讯软件|2.8k|C++|10/20|
|21|[liuchuo/PAT](https://github.com/liuchuo/PAT)|🍭 浙江大学PAT题解(C/C++/Java/Python) - 努力成为萌萌的程序媛~|2.7k|C++|10/08|
|22|[baidu/lac](https://github.com/baidu/lac)|百度NLP:分词,词性标注,命名实体识别,词重要性|2.7k|C++|05/25|
|23|[huaxz1986/cplusplus-_Implementation_Of_Introduction_to_Algorithms](https://github.com/huaxz1986/cplusplus-_Implementation_Of_Introduction_to_Algorithms)|《算法导论》第三版中算法的C++实现|2.5k|C++|06/17|
|24|[ffffffff0x/1earn](https://github.com/ffffffff0x/1earn)|ffffffff0x 团队维护的安全知识框架,内容包括不仅限于 web安全、工控安全、取证、应急、蓝队设施部署、后渗透、Linux安全、各类靶机writup|2.2k|C++|10/14|
|25|[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.2k|C++|10/24|
|26|[rime/weasel](https://github.com/rime/weasel)|【小狼毫】Rime for Windows|2.0k|C++|10/02|
|27|[tencentyun/TIMSDK](https://github.com/tencentyun/TIMSDK)|腾讯云即时通信 IM 服务,国内下载镜像:|1.9k|C++|10/25|
|28|[Simple-XX/SimpleKernel](https://github.com/Simple-XX/SimpleKernel)|Simple kernel for learning operating systems. 用于学习操作系统的简单内核|1.8k|C++|07/22|
|29|[km1994/nlp_paper_study](https://github.com/km1994/nlp_paper_study)|研读顶会论文,复现论文相关代码|1.7k|C++|10/26|
|30|[Tencent/plato](https://github.com/Tencent/plato)|腾讯高性能分布式图计算框架Plato|1.7k|C++|08/14|
|31|[19PDP/Bilibili-plus](https://github.com/19PDP/Bilibili-plus)|课程视频、PPT和源代码:侯捷C++系列;台大郭彦甫MATLAB|1.6k|C++|09/28|
|32|[callmePicacho/Data-Structres](https://github.com/callmePicacho/Data-Structres)|浙江大学《数据结构》上课笔记 + 数据结构实现 + 课后题题解|1.5k|C++|08/17|
|33|[CodePanda66/CSPostgraduate-408](https://github.com/CodePanda66/CSPostgraduate-408)|💯 CSPostgraduate 计算机考研 408 专业课资料及真题资源~✍🏻 更新中~欢迎Star!⭐️|1.5k|C++|09/15|
|34|[githubhaohao/NDK_OpenGLES_3_0](https://github.com/githubhaohao/NDK_OpenGLES_3_0)|Android OpenGL ES 3.0 从入门到精通系统性学习教程|1.3k|C++|10/26|
|35|[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.3k|C++|10/22|
|36|[scarsty/kys-cpp](https://github.com/scarsty/kys-cpp)|《金庸群侠传》c++复刻版,已完工|1.3k|C++|08/13|
|37|[zhongyang219/MusicPlayer2](https://github.com/zhongyang219/MusicPlayer2)|这是一款可以播放常见音频格式的音频播放器。支持歌词显示、歌词卡拉OK样式显示、歌词在线下载、歌词编辑、歌曲标签识别、Win10小娜搜索显示歌词、频谱分析、音效设置、任务栏缩略图按钮、主题颜色等功能。 播放内核为BASS音频库(V2.4)。|1.2k|C++|10/24|
|38|[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.2k|C++|07/30|
|39|[HarleysZhang/2021_algorithm_intern_information](https://github.com/HarleysZhang/2021_algorithm_intern_information)|2021年的算法实习岗位/校招公司信息表,和常见深度学习基础、计算机视觉知识笔记、算法岗面试题答案,及暑期计算机视觉实习面经和总结。|1.2k|C++|10/23|
|40|[netwarm007/GameEngineFromScratch](https://github.com/netwarm007/GameEngineFromScratch)|配合我的知乎专栏写的项目|1.1k|C++|09/18|
|41|[qdtroy/DuiLib_Ultimate](https://github.com/qdtroy/DuiLib_Ultimate)|duilib 旗舰版-高分屏、多语言、样式表、资源管理器、异形窗口、窗口阴影、简单动画|1.1k|C++|10/18|
|42|[fasiondog/hikyuu](https://github.com/fasiondog/hikyuu)|Hikyuu Quant Framework 基于C++/Python的开源量化交易研究框架|1.1k|C++|09/03|
|43|[188080501/JQTools](https://github.com/188080501/JQTools)|基于Qt开发的小工具包|1.1k|C++|04/22|
|44|[tencentyun/TRTCSDK](https://github.com/tencentyun/TRTCSDK)|腾讯云TRTC音视频服务,国内下载镜像:|1.1k|C++|10/28|
|45|[SFUMECJF/cmake-examples-Chinese](https://github.com/SFUMECJF/cmake-examples-Chinese)|快速入门CMake,通过例程学习语法。在线阅读地址:https://sfumecjf.github.io/cmake-examples-Chinese/|1.0k|C++|06/22|
|46|[ZLMediaKit/ZLToolKit](https://github.com/ZLMediaKit/ZLToolKit)|一个基于C++11的轻量级网络框架,基于线程池技术可以实现大并发网络IO|1.0k|C++|10/27|
|47|[Tencent/GameAISDK](https://github.com/Tencent/GameAISDK)|基于图像的游戏AI自动化框架|1.0k|C++|05/17|
|48|[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音乐、酷我音乐、酷狗音乐)|947|C++|10/27|
|49|[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|929|C++|07/09|
|50|[0voice/cpp_new_features](https://github.com/0voice/cpp_new_features)|2021年最新整理, C++ 学习资料,含C++ 11 / 14 / 17 / 20 / 23 新特性、入门教程、推荐书籍、优质文章、学习笔记、教学视频等|928|C++|10/21|
|51|[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.|898|C++|07/30|
|52|[nwpuhq/AwesomeCpp](https://github.com/nwpuhq/AwesomeCpp)|---AWESOME--- C++学习笔记和常见面试知识点,C++11特性,包括智能指针、四种强制转换、function和bind、移动语义、完美转发、tuple、多态原理、虚表、友元函数、符号重载、函数指针、深浅拷贝、struct内存对齐、volatile以及union\static等各种关键字的用法等等,还新添了其他算法和计算机基础的难点,力求简洁清晰|872|C++|06/26|
|53|[Captain1986/CaptainBlackboard](https://github.com/Captain1986/CaptainBlackboard)|船长关于机器学习、计算机视觉和工程技术的总结和分享|835|C++|06/15|
|54|[didi/AoE](https://github.com/didi/AoE)|AoE (AI on Edge,终端智能,边缘计算) 是一个终端侧AI集成运行时环境 (IRE),帮助开发者提升效率。|794|C++|09/28|
|55|[cmdbug/YOLOv5_NCNN](https://github.com/cmdbug/YOLOv5_NCNN)|🍅 Deploy ncnn on mobile phones. Support Android and iOS. 移动端ncnn部署,支持Android与iOS。|794|C++|04/25|
|56|[Tencent/flare](https://github.com/Tencent/flare)| Flare是广泛投产于腾讯广告后台的现代化C++开发框架,包含了基础库、RPC、各种客户端等。主要特点为易用性强、长尾延迟低。 |789|C++|09/26|
|57|[ylmbtm/GameProject3](https://github.com/ylmbtm/GameProject3)|游戏服务器框架,网络层分别用SocketAPI、Boost Asio、Libuv三种方式实现, 框架内使用共享内存,无锁队列,对象池,内存池来提高服务器性能。还包含一个不断完善的Unity 3D客户端,客户端含大量完整资源,坐骑,宠物,伙伴,装备, 这些均己实现上阵和穿戴, 并可进入副本战斗,多人玩法也己实现, 持续开发中。|787|C++|10/24|
|58|[zeusees/License-Plate-Detector](https://github.com/zeusees/License-Plate-Detector)|基于Retinaface车牌检测,全新模型仅1.8MB.|740|C++|06/17|
|59|[downdemo/Cpp-Templates-2ed](https://github.com/downdemo/Cpp-Templates-2ed)|📚 C++ Templates 2ed 笔记:C++11/14/17 模板技术|668|C++|10/15|
|60|[acm-clan/algorithm-stone](https://github.com/acm-clan/algorithm-stone)|ACM/LeetCode算法竞赛路线图,最全的算法学习地图!|668|C++|08/23|
|61|[markparticle/WebServer](https://github.com/markparticle/WebServer)|C++ Linux WebServer服务器|665|C++|10/11|
|62|[Rvn0xsy/Cooolis-ms](https://github.com/Rvn0xsy/Cooolis-ms)|Cooolis-ms是一个包含了Metasploit Payload Loader、Cobalt Strike External C2 Loader、Reflective DLL injection的代码执行工具,它的定位在于能够在静态查杀上规避一些我们将要执行且含有特征的代码,帮助红队人员更方便快捷的从Web容器环境切换到C2环境进一步进行工作。|644|C++|08/03|
|63|[OAID/AutoKernel](https://github.com/OAID/AutoKernel)|AutoKernel 是一个简单易用,低门槛的自动算子优化工具,提高深度学习算法部署效率。|632|C++|09/27|
|64|[SOUI2/soui](https://github.com/SOUI2/soui)|SOUI是目前为数不多的轻量级可快速开发window桌面程序开源DirectUI库.其前身为Duiengine,更早期则是源自于金山卫士开源版本UI库Bkwin.经过多年持续更新方得此库|627|C++|09/14|
|65|[eritpchy/Fingerprint-pay-magisk-wechat](https://github.com/eritpchy/Fingerprint-pay-magisk-wechat)|微信指纹支付 (Fingerprint pay for WeChat)|565|C++|09/01|
|66|[wlgq2/uv-cpp](https://github.com/wlgq2/uv-cpp)|libuv wrapper in C++11 /libuv C++11网络库|558|C++|10/26|
|67|[AngelMonica126/GraphicAlgorithm](https://github.com/AngelMonica126/GraphicAlgorithm)|:octopus: :octopus:图形学论文实现|547|C++|08/24|
|68|[lcatro/Source-and-Fuzzing](https://github.com/lcatro/Source-and-Fuzzing)|一些阅读源码和Fuzzing 的经验,涵盖黑盒与白盒测试..|541|C++|08/25|
|69|[richenyunqi/CCF-CSP-and-PAT-solution](https://github.com/richenyunqi/CCF-CSP-and-PAT-solution)|CCF CSP和PAT考试题解(使用C++14语法)|534|C++|09/11|
|70|[Chaoses-Ib/IbEverythingExt](https://github.com/Chaoses-Ib/IbEverythingExt)|Everything 拼音搜索、快速选择扩展|534|C++|10/16|
|71|[githubhaohao/OpenGLCamera2](https://github.com/githubhaohao/OpenGLCamera2)|🔥 Android OpenGL Camera 2.0 实现 30 种滤镜和抖音特效|518|C++|10/11|
|72|[ethan-li-coding/SemiGlobalMatching](https://github.com/ethan-li-coding/SemiGlobalMatching)|SGM,立体匹配StereoMatching最经典应用最广泛算法,4000+引用,兼顾效率和效果。完整实现,代码规范,注释清晰,博客教学,欢迎star!|506|C++|04/20|
|73|[PaddlePaddle/Serving](https://github.com/PaddlePaddle/Serving)|A flexible, high-performance carrier for machine learning models(『飞桨』服务化部署框架)|501|C++|10/28|
|74|[YYC572652645/QCoolPage](https://github.com/YYC572652645/QCoolPage)|Qt炫酷界面|501|C++|07/03|
|75|[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的效果|470|C++|10/27|
|76|[githubhaohao/LearnFFmpeg](https://github.com/githubhaohao/LearnFFmpeg)|Android FFmpeg 音视频开发教程|468|C++|10/11|
|77|[liuchuo/LeetCode](https://github.com/liuchuo/LeetCode)|🍡 LeetCode Online Judge刷题题解(Java/C++/Python/Ruby/Swift)|464|C++|10/18|
|78|[sukhoeing/aoapc-bac2nd-keys](https://github.com/sukhoeing/aoapc-bac2nd-keys)|算法竞赛入门经典第2版-习题选解|462|C++|09/08|
|79|[gloomyfish1998/opencv_tutorial](https://github.com/gloomyfish1998/opencv_tutorial)|基于OpenCV4.0 C++/Python SDK的案例代码演示程序与效果图像|444|C++|08/25|
|80|[USTC-Hackergame/hackergame2020-writeups](https://github.com/USTC-Hackergame/hackergame2020-writeups)|中国科学技术大学第七届信息安全大赛的官方与非官方题解|443|C++|08/16|
|81|[KikoPlayProject/KikoPlay](https://github.com/KikoPlayProject/KikoPlay)|KikoPlay - NOT ONLY A Full-Featured Danmu Player 不仅仅是全功能弹幕播放器|428|C++|08/14|
|82|[Syencil/tensorRT](https://github.com/Syencil/tensorRT)|TensorRT-7 Network Lib 包括常用目标检测、关键点检测、人脸检测、OCR等 可训练自己数据|425|C++|07/17|
|83|[FengGuanxi/HDU-Experience](https://github.com/FengGuanxi/HDU-Experience)|用于向所有杭电学子分享在杭电的知识与经验|418|C++|07/24|
|84|[KangLin/RabbitIm](https://github.com/KangLin/RabbitIm)|玉兔即时通讯。开源的跨平台的的即时通信系统。包括文本、音视频、白板、远程控制|416|C++|10/29|
|85|[no5ix/realtime-server](https://github.com/no5ix/realtime-server)|A lightweight game server engine. 一个轻量级的游戏服务器引擎|415|C++|09/29|
|86|[188080501/JQHttpServer](https://github.com/188080501/JQHttpServer)|基于Qt开发的轻量级HTTP/HTTPS服务器|402|C++|08/24|
|87|[youngyangyang04/Skiplist-CPP](https://github.com/youngyangyang04/Skiplist-CPP)|A tiny KV storage based on skiplist written in C++ language 使用C++开发,基于跳表实现的轻量级键值数据库🔥🔥 🚀|389|C++|10/26|
|88|[ray-cast/RabbitToolbox](https://github.com/ray-cast/RabbitToolbox)|🤸🏾♀️👗开源的动画渲染软件,提倡以简单、易用,高质量的物理演算以及渲染质量和性能,为喜爱二次元动画的用户降低视频制作门槛|377|C++|04/07|
|89|[HackerDev-Felix/WechatDecrypt](https://github.com/HackerDev-Felix/WechatDecrypt)|微信消息解密工具|377|C++|07/12|
|90|[xdnice/PCShare](https://github.com/xdnice/PCShare)|PCShare是一款强大的远程控制软件,可以监视目标机器屏幕、注册表、文件系统等。|373|C++|07/24|
|91|[feiyangqingyun/qucsdk](https://github.com/feiyangqingyun/qucsdk)|Qt编写的自定义控件插件的sdk集合,包括了各个操作系统的动态库文件以及控件的头文件和sdk使用demo。心中有坐标,万物皆painter,欢迎各位咨询、购买、定制控件,QQ:517216493 微信:feiyangqingyun。|363|C++|10/16|
|92|[WallBreaker2/op](https://github.com/WallBreaker2/op)|Windows消息模拟,gdi,dx,opengl截图,找图,找字(OCR)等功能|361|C++|07/08|
|93|[BADBADBADBOY/pytorchOCR](https://github.com/BADBADBADBOY/pytorchOCR)|基于pytorch的ocr算法库,包括 psenet, pan, dbnet, sast , crnn|360|C++|05/19|
|94|[y123456yz/reading-and-annotate-mongodb-3.6](https://github.com/y123456yz/reading-and-annotate-mongodb-3.6)|分布式文档数据库mongodb-3.6(mongos、mongod、wiredtiger存储引擎)源码中文注释分析,持续更新。后期重点进行mongodb-4.4最新版本内核源码分析|358|C++|09/17|
|95|[chatopera/clause](https://github.com/chatopera/clause)|:horse_racing: 聊天机器人,自然语言理解,语义理解|358|C++|09/14|
|96|[Project-LemonLime/Project_LemonLime](https://github.com/Project-LemonLime/Project_LemonLime)|为了 OI 比赛而生的基于 Lemon + LemonPlus 的轻量评测系统 三大桌面系统支持|354|C++|10/24|
|97|[itas109/CSerialPort](https://github.com/itas109/CSerialPort)|基于C++的轻量级开源跨平台串口类库Lightweight cross-platform serial port library based on C++|353|C++|09/03|
|98|[DefTruth/lite.ai.toolkit](https://github.com/DefTruth/lite.ai.toolkit)|Lite.AI.ToolKit 🚀🚀🌟: A lite C++ toolkit of awesome AI models(一个开箱即用的C++ AI工具箱,支持ONNXRuntime/NCNN/MNN/TNN), such as RobustVideoMatting🔥, YOLOX🔥, YOLOP🔥 etc. (https://github.com/DefTruth/lite.ai.toolkit/releases/tag/v0.1.0)|353|C++|10/27|
|99|[lizhenghn123/zl_threadpool](https://github.com/lizhenghn123/zl_threadpool)|Linux平台下C++(C++98、C++03、C++11)实现的线程池|350|C++|05/01|
|100|[unlir/XDrive](https://github.com/unlir/XDrive)|Stepper motor with multi-function interface and closed loop function. 具有多功能接口和闭环功能的步进电机。|350|C++|04/14|
|101|[openvanilla/McBopomofo](https://github.com/openvanilla/McBopomofo)|小麥注音輸入法|337|C++|04/10|
|102|[LiveStockShapeAnalysis/Point-Cloud-Processing-example](https://github.com/LiveStockShapeAnalysis/Point-Cloud-Processing-example)|点云库PCL从入门到精通 书中配套案例|328|C++|09/04|
|103|[CDDSCLab/training-plan](https://github.com/CDDSCLab/training-plan)|电子科技大学分布式存储与计算实验室新生训练计划|322|C++|10/25|
|104|[HuangCongQing/pcl-learning](https://github.com/HuangCongQing/pcl-learning)|🔥PCL(Point Cloud Library)点云库学习记录|318|C++|09/10|
|105|[mayerui/sudoku](https://github.com/mayerui/sudoku)|C++实现的跨平台数独游戏,命令行操作易上手,可以在开发间隙用来放松身心。数百行代码,初学者也可以轻松掌握。|316|C++|05/28|
|106|[0x727/SqlKnife_0x727](https://github.com/0x727/SqlKnife_0x727)|适合在命令行中使用的轻巧的SQL Server数据库安全检测工具|311|C++|10/23|
|107|[jiafeng5513/Evision](https://github.com/jiafeng5513/Evision)|计算机视觉实践和探索/Practice and explorations in computer vision.|310|C++|04/14|
|108|[Dice-Developer-Team/Dice](https://github.com/Dice-Developer-Team/Dice)|QQ Dice Robot For TRPG QQ跑团掷骰机器人|300|C++|10/28|
|109|[chengyangkj/Ros_Qt5_Gui_App](https://github.com/chengyangkj/Ros_Qt5_Gui_App)|ROS human computer interface based on Qt5(基于Qt5的ROS人机交互界面)|287|C++|07/17|
|110|[AmazingPP/subVerison_GTAV_Hack](https://github.com/AmazingPP/subVerison_GTAV_Hack)|subVerison重置版——GTA5外置修改器|287|C++|08/15|
|111|[czyt1988/sa](https://github.com/czyt1988/sa)|信号分析及数据可视化软件|287|C++|04/01|
|112|[Beipy/Mac-Hackintosh-Clover](https://github.com/Beipy/Mac-Hackintosh-Clover)|PC主机黑苹果引导驱动文件|287|C++|08/16|
|113|[AZE98/CQUPT-Study-Data](https://github.com/AZE98/CQUPT-Study-Data)|在重邮本科阶段积累的实验报告、PPT等课程资料及课外学习资料。|284|C++|08/16|
|114|[Tencent/deepx_core](https://github.com/Tencent/deepx_core)|deepx_core是一个专注于张量计算/深度学习的基础库|283|C++|07/06|
|115|[ChunelFeng/caiss](https://github.com/ChunelFeng/caiss)|一款简单好用的 跨平台/多语言的 相似向量/相似词/相似句 高性能检索引擎。欢迎star & fork。Build together! Power another !|281|C++|09/11|
|116|[jashking/UnrealPakViewer](https://github.com/jashking/UnrealPakViewer)|查看 UE4 Pak 文件的图形化工具,支持 UE4 pak/ucas 文件|277|C++|09/28|
|117|[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还 ...|277|C++|08/19|
|118|[Qv2ray/QvPlugin-Trojan](https://github.com/Qv2ray/QvPlugin-Trojan)|在 Qv2ray 中使用 Trojan, 感谢 Trojan-Qt5 0.x|268|C++|08/17|
|119|[Z-yq/TensorflowASR](https://github.com/Z-yq/TensorflowASR)|集成了Tensorflow 2版本的端到端语音识别模型,并且RTF(实时率)在0.1左右/Mandarin State-of-the-art Automatic Speech Recognition in Tensorflow 2|267|C++|10/25|
|120|[kevinlq/SmartHome-Qt](https://github.com/kevinlq/SmartHome-Qt)|基于zigbee和stm32的智能家居系统,上位机使用Qt编写,实现了基本的监控。主要包括监控室内温度、湿度、烟雾浓度,用led灯模拟控制家中的灯。界面良好。|265|C++|06/24|
|121|[tsingsee/EasyPlayerPro-Win](https://github.com/tsingsee/EasyPlayerPro-Win)|EasyPlayerPro是一款免费的全功能流媒体播放器,支持RTSP、RTMP、HTTP、HLS、UDP、RTP、File等多种流媒体协议播放、支持本地文件播放,支持本地抓拍、本地录像、播放旋转、多屏播放、倍数播放等多种功能特性,核心基于ffmpeg,稳定、高效、可靠、可控,支持Windows、Android、iOS三个平台,目前在多家教育、安防、行业型公司,都得到的应用,广受好评!|264|C++|08/05|
|122|[chengciming/wechatPc](https://github.com/chengciming/wechatPc)|PC微信hook源码,PC微信注入,逆向编程,可以制作微信机器人玩玩,仅供学习,请不要用于商业、违法途径,本人不对此源码造成的违法负责!|262|C++|07/08|
|123|[lengjibo/NetUser](https://github.com/lengjibo/NetUser)|使用windows api添加用户,可用于net无法使用时.分为nim版,c++版本,RDI版,BOF版。|259|C++|09/29|
|124|[eritpchy/Fingerprint-pay-magisk-alipay](https://github.com/eritpchy/Fingerprint-pay-magisk-alipay)|支付宝指纹支付 (Fingerprint pay for Alipay)|259|C++|09/01|
|125|[wh201906/Proxmark3GUI](https://github.com/wh201906/Proxmark3GUI)|A cross-platform GUI for Proxmark3 client 为PM3设计的图形界面|258|C++|10/11|
|126|[Qv2ray/QvPlugin-SSR](https://github.com/Qv2ray/QvPlugin-SSR)|适用于 Qv2ray 的 ShadowSocksR 插件,使用此插件在 Qv2ray 中启用 SSR 功能|256|C++|08/17|
|127|[TJ-CSCCG/TJCS-Course](https://github.com/TJ-CSCCG/TJCS-Course)|:bulb: 同济大学计算机科学与技术、信息安全专业课程资源共享仓库。含部分科目介绍、报告模板、实验工具等内容。期待更多课程加入……|254|C++|08/04|
|128|[SequoiaDB/SequoiaDB](https://github.com/SequoiaDB/SequoiaDB)|SequoiaDB 巨杉数据库是一款金融级分布式关系型数据库。 自研的原生分布式存储引擎支持完整 ACID,具备弹性扩展、高并发和高可用特性,支持 MySQL、PostgreSQL 和 SparkSQL 等多种 SQL 访问形式,适用于核心交易、数据中台、内容管理等应用场景。 |253|C++|08/19|
|129|[oceancx/CXEngine](https://github.com/oceancx/CXEngine)|CXEngine是一个方便大家使用lua+imgui做游戏的游戏引擎,目前主要整合了vscode lua调试器,网络库,还有lua imgui,以及2D回合制MMORPG的框架|252|C++|08/18|
|130|[BesLyric-for-X/BesLyric-for-X](https://github.com/BesLyric-for-X/BesLyric-for-X)|BesLyric-for-X 是一款操作简单、功能实用的歌词制作软件。我们开发此软件的目的是为了为广大网易云音乐云村村民提供一个良好的歌词制作体验。|252|C++|10/10|
|131|[Ubpa/Utopia](https://github.com/Ubpa/Utopia)|Utopia Game Engine 无境游戏引擎|250|C++|08/21|
|132|[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同屏服务支持组播和单播两种模式。|244|C++|07/14|
|133|[ToanTech/Deng-s-foc-controller](https://github.com/ToanTech/Deng-s-foc-controller)|灯哥开源 FOC 双路迷你无刷电机驱动|243|C++|10/27|
|134|[DragonQuestHero/Kernel-Anit-Anit-Debug-Plugins](https://github.com/DragonQuestHero/Kernel-Anit-Anit-Debug-Plugins)|Kernel Anit Anit Debug Plugins 内核反反调试插件|236|C++|08/31|
|135|[LeechanX/Ring-Log](https://github.com/LeechanX/Ring-Log)|Ring-Log是一个高效简洁的C++异步日志, 其特点是效率高(每秒支持至少125万+日志写入)、易拓展,尤其适用于频繁写日志的场景|230|C++|06/27|
|136|[DayBreak-u/yolo-face-with-landmark](https://github.com/DayBreak-u/yolo-face-with-landmark)|yoloface大礼包 使用pytroch实现的基于yolov3的轻量级人脸检测(包含关键点)|223|C++|09/08|
|137|[qinyuLT/CloudPan](https://github.com/qinyuLT/CloudPan)|linux下c/c++模拟实现云盘项目|222|C++|10/02|
|138|[DreamWaterFound/self_commit_ORB-SLAM2](https://github.com/DreamWaterFound/self_commit_ORB-SLAM2)|ORB-SLAM2 源码注释, 基于泡泡机器人的注释版本|214|C++|05/05|
|139|[bifang-fyh/bifang](https://github.com/bifang-fyh/bifang)|bifang - 一个基于协程的服务器框架|214|C++|06/01|
|140|[iwxyi/Bilibili-MagicalDanmaku](https://github.com/iwxyi/Bilibili-MagicalDanmaku)|【神奇弹幕】哔哩哔哩直播万能机器人,弹幕姬+答谢姬+回复姬+点歌姬+各种小骚操作,目前唯一可编程机器人|208|C++|10/17|
|141|[ZhuYanzhen1/miniFOC](https://github.com/ZhuYanzhen1/miniFOC)|你还在为有刷电机的高噪声、低响应速度和低寿命而烦恼吗?这个项目是一个20块钱就能搞定的FOC无刷电机控制方案!This project is a FOC (Field Oriented Control) BLDC Motor control scheme that can be done for 3$!|204|C++|10/20|
|142|[CoderMJLee/audio-video-dev-tutorial](https://github.com/CoderMJLee/audio-video-dev-tutorial)|简单易懂的音视频开发教程|203|C++|07/08|
|143|[dr0op/CrossNet-Beta](https://github.com/dr0op/CrossNet-Beta)|红队行动中利用白利用、免杀、自动判断网络环境生成钓鱼可执行文件。|203|C++|05/12|
|144|[q191201771/libchef](https://github.com/q191201771/libchef)|🍀 c++ standalone header-only basic library. c++头文件实现无第三方依赖基础库|198|C++|08/07|
|145|[bifang-fyh/gude](https://github.com/bifang-fyh/gude)|gude - 一个C++编写的DHT爬虫,用于爬取DHT网络上的torrent文件|194|C++|05/28|
|146|[KangLin/FaceRecognizer](https://github.com/KangLin/FaceRecognizer)|人脸识别应用|192|C++|10/02|
|147|[834810071/muduo_study](https://github.com/834810071/muduo_study)|Linux多线程服务端编程[muduo C++网络库]|192|C++|09/09|
|148|[springzfx/cgproxy](https://github.com/springzfx/cgproxy)|Transparent Proxy with cgroup v2。透明代理,配合v2ray/Qv2ray食用最佳|189|C++|07/19|
|149|[0x727/ShuiYing_0x727](https://github.com/0x727/ShuiYing_0x727)|检测域环境内,域机器的本地管理组成员是否存在弱口令和通用口令,对域用户的权限分配以及域内委派查询|188|C++|08/10|
|150|[neil3d/50YearsOfRayTracing](https://github.com/neil3d/50YearsOfRayTracing)|以历史的发展的眼光来看光线追踪技术,1968年至2018年重点论文相关算法复现。|186|C++|06/06|
|151|[aaaddress1/Windows-APT-Warfare](https://github.com/aaaddress1/Windows-APT-Warfare)|著作《Windows APT Warfare:惡意程式前線戰術指南》各章節技術實作之原始碼內容|181|C++|05/05|
|152|[esrrhs/fake](https://github.com/esrrhs/fake)|嵌入式脚本语言 Lightweight embedded scripting language|177|C++|07/02|
|153|[netease-kit/NIM_PC_Demo](https://github.com/netease-kit/NIM_PC_Demo)|云信Windows(PC) C/C++ Demo源码仓库|177|C++|09/26|
|154|[huanzheWu/Data-Structure](https://github.com/huanzheWu/Data-Structure)|基于C++模板 实现的数据结构代码|176|C++|06/16|
|155|[ExtremeMart/dev-docs](https://github.com/ExtremeMart/dev-docs)|服务于极市平台开发者的项目,提供SDK接口文件规范与常见问题示例代码。欢迎所有开发者一起参与示例代码编写。|174|C++|09/09|
|156|[huoji120/CobaltStrikeDetected](https://github.com/huoji120/CobaltStrikeDetected)|40行代码检测到大部分CobaltStrike的shellcode|174|C++|07/25|
|157|[Qv2ray/QvPlugin-Trojan-Go](https://github.com/Qv2ray/QvPlugin-Trojan-Go)|适用于 Qv2ray v2.6+ 的 Trojan-Go 插件|173|C++|08/17|
|158|[dekuan/VwFirewall](https://github.com/dekuan/VwFirewall)|微盾®VirtualWall®防火墙整套源代码|169|C++|06/17|
|159|[nowar-fonts/Warcraft-Font-Merger](https://github.com/nowar-fonts/Warcraft-Font-Merger)|Warcraft Font Merger,魔兽世界字体合并/补全工具。|168|C++|06/15|
|160|[hinesboy/ai_tetris](https://github.com/hinesboy/ai_tetris)|AI 俄罗斯方块(C++)|164|C++|08/06|
|161|[neuks/Indicator](https://github.com/neuks/Indicator)|通达信缠论可视化分析插件|163|C++|04/28|
|162|[kongpf8848/Animation](https://github.com/kongpf8848/Animation)|Android各种动画效果合集,项目包含了丰富的动画实例(逐帧动画,补间动画,Lottie动画,GIF动画,SVGA动画),体验动画之美,让Android动起来:smile::smile::smile:|162|C++|09/09|
|163|[zhuzhu-Top/Wx_Socket_Helper](https://github.com/zhuzhu-Top/Wx_Socket_Helper)|PC微信助手|158|C++|08/27|
|164|[mlzeng/CSC2020-USTC-FlammingMyCompiler](https://github.com/mlzeng/CSC2020-USTC-FlammingMyCompiler)|全国大学生计算机系统能力大赛编译系统设计赛项目|157|C++|05/17|
|165|[JelinYao/HttpInterface](https://github.com/JelinYao/HttpInterface)|Windows上C++封装的HTTP库,包含三种实现模式(WinInet、WinHttp、socket)|156|C++|05/01|
|166|[fawdlstty/FawCourse_FFmpeg](https://github.com/fawdlstty/FawCourse_FFmpeg)|ffmpeg教程,非命令行模式|155|C++|04/30|
|167|[tsingsee/EasyRTSPLive](https://github.com/tsingsee/EasyRTSPLive)|Streaming media middleware:RTSP to RTMP,拉流IPC摄像机或者NVR硬盘录像机RTSP流转成RTMP推送到阿里云CDN/腾讯云CDN/RTMP流媒体服务器,支持多路RTSP流同时拉取并以RTMP协议推送发布,EasyRTSPLive我们支持任何平台,包括但不限于Windows/Linux/Android/ARM|154|C++|06/04|
|168|[flexih/Snake](https://github.com/flexih/Snake)|Yet Another Mach-O Unused ObjC Selector/Class/Protocol Detector. 检测ObjC无用方法、无用类、无用协议。|151|C++|08/18|
|169|[DuckDuckDuck0/ft](https://github.com/DuckDuckDuck0/ft)|基于共享内存队列的低时延算法交易系统,支持CTP、XTP、模拟交易及行情网关、回测|148|C++|08/19|
|170|[changfeng1050/SerialWizard](https://github.com/changfeng1050/SerialWizard)|使用C++ 20 & Qt 编写的跨平台多功能串口调试工具|145|C++|07/26|
|171|[neil3d/UnrealCookbook](https://github.com/neil3d/UnrealCookbook)|虚幻4引擎的一些编程实践分享|144|C++|04/26|
|172|[fb029ed/yolov5_cpp_openvino](https://github.com/fb029ed/yolov5_cpp_openvino)|用c++实现了yolov5使用openvino的部署|143|C++|04/11|
|173|[dustpg/LongUI](https://github.com/dustpg/LongUI)|Lightweight C++ GUI Library 轻量级C++图形界面库|143|C++|10/20|
|174|[chxuan/cpp-utils](https://github.com/chxuan/cpp-utils)|:hibiscus: 一些C/C++常用封装例子|141|C++|09/25|
|175|[BigPig0/RelayLive](https://github.com/BigPig0/RelayLive)|视频服务中继,转换传输协议。将rtsp、gb28181转为html5可以直接播放的协议。|141|C++|05/24|
|176|[GoatGirl98/Walkthrough-of-ACCoding-in-BUAA](https://github.com/GoatGirl98/Walkthrough-of-ACCoding-in-BUAA)|北航OJ通关攻略,包括北航软件学院的在线评测网站(OJ)——AC编程(accoding.cn)开放课程的全部题解|140|C++|10/28|
|177|[yangrtc/yangrtc2](https://github.com/yangrtc/yangrtc2)|中国人自己的webrtc,非谷歌lib|139|C++|10/28|
|178|[hongwenjun/WinKcp_Launcher](https://github.com/hongwenjun/WinKcp_Launcher)|Windows udp2raw+kcptun 加速tcp流量 简易工具 by 蘭雅sRGB|134|C++|09/23|
|179|[mohuihui/DingTalk_Assistant](https://github.com/mohuihui/DingTalk_Assistant)|钉钉助手,主要功能包括:聊天消息防撤回、程序多开、屏蔽频繁升级等。|134|C++|08/21|
|180|[wlxklyh/SoftRenderer](https://github.com/wlxklyh/SoftRenderer)|Soft Renderer软渲染器:安卓工程师、iOS工程师、Unity工程师、Unreal工程师、Java工程师、C++工程师、C#工程师可以通过此来快速深刻理解渲染管线|129|C++|10/23|
|181|[u0u0/Cocos2d-Lua-Community](https://github.com/u0u0/Cocos2d-Lua-Community)|基于Cocos2d-x 4.0,打造易用稳定的Cocos2d-x lua引擎。|126|C++|10/28|
|182|[zero-rp/ZUI](https://github.com/zero-rp/ZUI)|一个小巧但强大的C界面库|126|C++|05/15|
|183|[binzi56/algorithm-pattern-c](https://github.com/binzi56/algorithm-pattern-c)|算法模板(c++), 包含数据结构,基础算法和算法思维篇|124|C++|04/15|
|184|[SmartKeyerror/reading-source-code-of-leveldb-1.23](https://github.com/SmartKeyerror/reading-source-code-of-leveldb-1.23)|leveldb 源码阅读,分析 DB 运作流程与 WAL、SSTable 等文件格式与 Compaction 过程。|123|C++|09/24|
|185|[luosiwei-cmd/CarYon](https://github.com/luosiwei-cmd/CarYon)|🔖一款基于C++的OI/ACM比赛出题解题辅助工具⭐|121|C++|05/23|
|186|[BiBoyang/BoyangBlog](https://github.com/BiBoyang/BoyangBlog)|伯阳写东西的地方|121|C++|08/29|
|187|[0x727/CloneX_0x727](https://github.com/0x727/CloneX_0x727)|进行克隆用户、添加用户等账户防护安全检测的轻巧工具|120|C++|09/03|
|188|[compilelife/loginsight](https://github.com/compilelife/loginsight)|loginsight致力于打造一款日志分析的利器|120|C++|06/27|
|189|[Mihawk086/easy_webrtc_server](https://github.com/Mihawk086/easy_webrtc_server)|基于muduo的简单的webrtc流媒体服务器|119|C++|04/08|
|190|[ziqiangxu/words-picker](https://github.com/ziqiangxu/words-picker)|希望成为一款好的取词应用|119|C++|08/21|
|191|[rongweihe/CPPNotes](https://github.com/rongweihe/CPPNotes)|【C++ 面试 + C++ 学习指南】 一份涵盖大部分 C++ 程序员所需要掌握的核心知识。|118|C++|08/28|
|192|[esrrhs/hookso](https://github.com/esrrhs/hookso)|linux动态链接库的注入修改查找工具 A tool for injection, modification and search of linux dynamic link library|116|C++|07/16|
|193|[HuyaInc/Hercules](https://github.com/HuyaInc/Hercules)|Hercules 是以json+lua的灵活方式控制视频混画混流mcu,简单灵活完成业务需求。|115|C++|06/21|
|194|[jixunmoe/mfcDuDownloadCodeGenerator](https://github.com/jixunmoe/mfcDuDownloadCodeGenerator)|用于百度网盘的标准提取码生成器|113|C++|04/30|
|195|[lchad/AndroidFaceDetection](https://github.com/lchad/AndroidFaceDetection)|Android 平台进行人脸检测的几种方案|112|C++|04/28|
|196|[46zhang/Note](https://github.com/46zhang/Note)|📚 技术面试指南,记录着我面经过程所遇到的问题以及总结的知识点。面试的公司:腾讯、阿里巴巴、字节跳动、虎牙直播、CVTE。所包含的知识点:c/c++/python ,算法,操作系统,计算机网络,数据库|111|C++|05/20|
|197|[EtherProject/EtherEngine](https://github.com/EtherProject/EtherEngine)|简明易用的 Lua 跨平台游戏接口|111|C++|10/25|
|198|[778477/iOS-LinkMapAnalyzer](https://github.com/778477/iOS-LinkMapAnalyzer)|解析iOS工程中的linkmap文件,方便分析各个模块占用的包大小|109|C++|05/28|
|199|[raintean/blink](https://github.com/raintean/blink)|使用html来编写golang图形界面程序(only windows)|109|C++|09/26|
|200|[jiangzc/CuteTranslation](https://github.com/jiangzc/CuteTranslation)|Linux屏幕取词翻译软件|107|C++|09/11|
⬆ [回到目录](#目录)
<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防撤回补丁(我已经看到了,撤回也没用了)|11.9k|C#|09/17|
|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#.|7.0k|C#|10/26|
|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 数字权利(数字许可证)激活工具!|6.4k|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.|6.1k|C#|10/26|
|5|[studyzy/imewlconverter](https://github.com/studyzy/imewlconverter)|一款开源免费的输入法词库转换程序|4.4k|C#|09/14|
|6|[SteamTools-Team/SteamTools](https://github.com/SteamTools-Team/SteamTools)| 🛠「Steam++」是一个包含多种Steam工具功能的工具箱。|4.2k|C#|10/29|
|7|[dotnetcore/Util](https://github.com/dotnetcore/Util)|Util是一个.net core平台下的应用框架,旨在提升小型团队的开发输出能力,由常用公共操作类(工具类)、分层架构基类、Ui组件,第三方组件封装,第三方业务接口封装,配套代码生成模板,权限等组成。|3.8k|C#|09/02|
|8|[donet5/SqlSugar](https://github.com/donet5/SqlSugar)|Best ORM Fastest ORM Simple Easy Sqlite orm Oracle ORM Mysql Orm postgresql ORm SqlServer oRm 达梦 ORM 人大金仓 ORM 神通ORM C# ORM|3.7k|C#|10/23|
|9|[anjoy8/Blog.Core](https://github.com/anjoy8/Blog.Core)|💖 ASP.NET Core 5.0 全家桶教程,前后端分离后端接口,vue教程姊妹篇,官方文档:|3.4k|C#|10/16|
|10|[BluePointLilac/ContextMenuManager](https://github.com/BluePointLilac/ContextMenuManager)|🖱️ 纯粹的Windows右键菜单管理程序|3.4k|C#|10/07|
|11|[proxysu/ProxySU](https://github.com/proxysu/ProxySU)|Xray,V2ray,Trojan,NaiveProxy, Trojan-Go, ShadowsocksR(SSR),Shadowsocks-libev及相关插件,MTProto+TLS 一键安装工具,windows下用(一键科学上网)|3.2k|C#|10/27|
|12|[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.|3.0k|C#|10/08|
|13|[siteserver/cms](https://github.com/siteserver/cms)|SS CMS 基于 .NET Core,能够以最低的成本、最少的人力投入在最短的时间内架设一个功能齐全、性能优异、规模庞大并易于维护的网站平台。|2.9k|C#|10/26|
|14|[Richasy/Bili.Uwp](https://github.com/Richasy/Bili.Uwp)|适用于新系统UI的哔哩|2.9k|C#|10/28|
|15|[XINCGer/Unity3DTraining](https://github.com/XINCGer/Unity3DTraining)|Unity的练习项目|2.8k|C#|10/28|
|16|[k8gege/Ladon](https://github.com/k8gege/Ladon)|大型内网渗透扫描器&Cobalt Strike,Ladon8.9内置120个模块,包含信息收集/存活主机/端口扫描/服务识别/密码爆破/漏洞检测/漏洞利用。漏洞检测含MS17010/SMBGhost/Weblogic/ActiveMQ/Tomcat/Struts2,密码口令爆破(Mysql/Oracle/MSSQL)/FTP/SSH(Linux)/VNC/Windows(IPC/WMI/SMB/Netbios/LDAP/SmbHash/WmiHash/Winrm),远程执行命令(smbexec/wmiexe/psexec/atexec/sshexec/webshell),降权提权Runas、G ...|2.8k|C#|09/20|
|17|[SeriaWei/ZKEACMS](https://github.com/SeriaWei/ZKEACMS)|ZKEACMS build with .Net 5 (.Net CMS)可视化设计在线编辑内容管理系统|2.6k|C#|10/24|
|18|[dotnetcore/FastGithub](https://github.com/dotnetcore/FastGithub)|github加速神器,解决github打不开、用户头像无法加载、releases无法上传下载、git-clone、git-pull、git-push失败等问题|2.5k|C#|10/29|
|19|[leiurayer/downkyi](https://github.com/leiurayer/downkyi)|哔哩下载姬downkyi,B站视频下载工具,支持批量下载,支持4K,支持解除地区限制下载,提供工具箱(音视频提取、去水印等)。|2.5k|C#|10/28|