-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgithub.txt
5157 lines (3404 loc) · 198 KB
/
github.txt
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
A CLI tool for code structural search, lint and rewriting. Written in Rust
https://github.com/ast-grep/ast-grep
Finally, a JSONPath implementation for Python that aims to be standard compliant. That's all. Enjoy!
https://github.com/h2non/jsonpath-ng
Facebook内部使用的版本管理工具,最近开源了。它兼容 Git 协议,可以替代 git 的命令行客户端,用起来更简单和合理。
https://sapling-scm.com/docs/introduction/getting-started/
Sonic is a blogging platform developed by Go. Simple and powerful
https://github.com/go-sonic/sonic
18 interactive exercises for TypeScript beginners
https://github.com/total-typescript/beginners-typescript
Rust examples for all 23 classic GoF design patterns, and even a little more
https://github.com/fadeevab/design-patterns-rust
OSINT automation for hackers
https://github.com/blacklanternsecurity/bbot
A collection of projects built on the React library
https://github.com/ajayns/react-projects
中国前端开发者
https://github.com/sorrycc/chinese-f2e-developer
A set of over 2200 free MIT-licensed high-quality SVG icons for you to use in your web projects.
https://github.com/tabler/tabler-icons
A beautiful stack trace pretty printer for C++
https://github.com/bombela/backward-cpp
🔥 A cross-platform build utility based on Lua一个轻量级的跨平台构建工具,可以用它构建 C/C++、Go、Rust 等许多语言的项目
https://github.com/xmake-io/xmake
SeaweedFS is a fast distributed storage system for blobs, objects, files, and data lake, for billions of files! Blob store has O(1) disk seek, cloud tiering. Filer supports Cloud Drive, cross-DC active-active replication, Kubernetes, POSIX FUSE mount, S3 API, S3 Gateway, Hadoop, WebDAV, encryption, Erasure Coding.
https://github.com/seaweedfs/seaweedfs
A command-line editor and web browser
https://github.com/CMB/edbrowse
The Full-Stack Web Framework for Go
一个 Go 语言的全栈 Web 框架,用它来写网站的前端和后端,编译成一个二进制可执行文件,放到服务器上就能直接运行,不需要其他文件
https://github.com/livebud/bud
Static file serving and directory listing
https://github.com/vercel/serve
GitHub 官方推出的一个代码库可视化工具,通过 GitHub Actions 生成 SVG 文件,代表整个代码库,空心圆表示目录,实心圆表示文件,圆的大小代表了文件的大小,还能根据提交历史,生成动态变化图。
https://github.com/githubocto/repo-visualizer-demo
Java based open source static site/blog generator for developers & designers
https://github.com/jbake-org/jbake
Static Value-Flow Analysis Framework for Source Code貌似c++的
https://github.com/SVF-tools/SVF
Distributed Embeddable Database基于github的数据库
https://github.com/gogitdb/gitdb
Hooks Admin,基于 React18、React-Router V6、React-Hooks、Redux、TypeScript、Vite2、Ant-Design 开源的一套后台管理框架。
https://github.com/HalseySpicy/Hooks-Admin
The ultimate Python library in building OAuth, OpenID Connect clients and servers. JWS,JWE,JWK,JWA,JWT included
https://github.com/lepture/authlib
A neat code differencing tool
https://github.com/GumTreeDiff/gumtree
Open-source plugins included in the distribution of IntelliJ IDEA Ultimate and other IDEs based on the IntelliJ Platform
https://github.com/JetBrains/intellij-plugins
内存文件系统(java)
https://github.com/google/jimfs
ssh, scp and sftp for java
https://github.com/hierynomus/sshj
A new bootable USB solution制作可启动 U 盘的工具。重装系统时不用再格式化 U 盘,该项目支持直接将系统镜像拷贝进 U 盘就能启动,无需其它操作。
https://github.com/ventoy/Ventoy
The next-gen web framework
https://github.com/denoland/fresh
A hub for web developers that offers a variety of tools to help with any developing needs.
https://github.com/THHamiltonSmith/webdevhub
JSON diff and patch
https://github.com/josephburnett/jd
PRQL is a modern language for transforming data — a simple, powerful, pipelined SQL replacement
https://github.com/prql/prql
Java Observability Toolkit 类似powerseeker
https://github.com/planetlevel/jot
QLExpress is a powerful, lightweight, dynamic language for the Java platform aimed at improving developers’ productivity in different business scenes.
https://github.com/alibaba/QLExpress
Data Reliability Automated
https://github.com/InfuseAI/piperider
JaSoMe (Java Source Metrics) - Object Oriented Metrics analyzer for Java code
https://github.com/rodhilton/jasome
System design concepts and implementations (includes high-level design, low-level design, microservices, etc.)
https://github.com/sanyathisside/System-Design
A simple and modern Java and Kotlin web framework
https://github.com/javalin/javalin
An open source, markdown-based, self-hosted note taking webapp
https://github.com/batnoter/batnoter
A human-friendly and fast alternative to cut and (sometimes) awk
https://github.com/theryangeary/choose
Simple Linux Panel
https://github.com/midoks/mdserver-web
A fast static web server with TLS (HTTPS), routing, hot reloading, caching, templating, and security in a single-binary you can set up with zero code.
https://github.com/mufeedvh/binserve
强大的字节码混淆工具
A Java bytecode obfuscator
https://github.com/sim0n/Caesium
FreeRDP is a free remote desktop protocol library and clients
https://github.com/FreeRDP/FreeRDP
Simple and extensible administrative interface framework for Flask
https://github.com/flask-admin/flask-admin
从零开始制作一个操作系统!---- 操作系统开发指南
https://github.com/yanull/os-guide-cn
Vectorized SQL for JSON at scale: fast, simple, schemaless
https://github.com/SnellerInc/sneller
A sample MySQL database with an integrated test suite, used to test your applications and database servers
https://github.com/datacharmer/test_db
A Python library to use infix notation in Python
https://github.com/JulienPalard/Pipe
B站up主写的手机辅助控制电脑的android程序,比如手机显示翻译结果,手机人脸识别解锁电脑
https://github.com/KikiLetGo/CyberController
A simple reverse proxy in python
https://github.com/MollardMichael/python-reverse-proxy/blob/master/proxy.py
Run multiple commands in parallel
https://github.com/pvolok/mprocs
A tool for structural code search and replace that supports ~every language.
https://github.com/comby-tools/comby
Automagically reverse-engineer REST APIs via capturing traffic
https://github.com/alufers/mitmproxy2swagger
整理记录各个包管理器,系统镜像,以及常用软件的好用镜像
https://github.com/eryajf/Thanks-Mirror
User mode file system library for windows with FUSE Wrapper
https://github.com/dokan-dev/dokany
Create a full-featured REST/GraphQL API from a configuration file
https://github.com/ehmicky/autoserver
Rust 编码规范 中文版 (非官方)
https://github.com/Rust-Coding-Guidelines/rust-coding-guidelines-zh
记录各个包管理器使用代理的方法, 因为GFW已经浪费了已经数不清的时间, FUCK GFW
https://github.com/comwrg/FUCK-GFW
以kubernetes为内核的云操作系统发行版,3min 一键高可用安装自定义kubernetes,500M,100年证书,版本不要太全,生产环境稳如老狗
https://github.com/labring/sealos
c 语言实现的内网穿透客户端,配合frp服务端使用。主要用于基于openwrt的路由器上,对路由器的硬件配置要求极低。
https://github.com/liudf0716/xfrpc
Learn RegEx step by step, from zero to advanced
https://github.com/aykutkardas/regexlearn.com
提供了从实际数据库自动生成数据库结构的最新精确视图,其安装和使用都比较简单,而且支持目前绝大多数的数据库。
界面还是比较友好的,通过SchemaSpy可以很方便的查看各个table信息,以及各个table之间的关联关系信息
https://github.com/schemaspy/schemaspy
Get all of my CSS Cheatsheets from here which I have created & shared on twitter. Thanks for the support
https://github.com/AakashRao-dev/CSS-Cheatsheets
同步数据库到数据到ES sync data from database to es
https://github.com/wangfan002/db2es
Redis 7.0 版本——中文注释,持续更新
https://github.com/CN-annotation-team/redis7.0-chinese-annotated
Linux中国翻译项目
https://github.com/LCTT/TranslateProject
nginx源码中文注释版
https://github.com/jianfengye/nginx-1.0.14_comment
Simple cross-platform package manager
https://github.com/candrewlee14/webman
HFS is a file server offering a virtual file system (vfs). You can easily share a single file instead of the whole folder, or you can rename it, but without touching the real file, just virtually.
https://github.com/rejetto/hfs
超轻量级的 CSS 框架。不引入新的样式类,仅把 HTML 元素设为合理值,从而实现仅用 HTML 元素就可以构建美观、响应式的网页
Simple.css is a classless CSS template that allows you to make a good looking website really quickly.
https://github.com/kevquirk/simple.css
A jq clone focussed on correctness, speed, and simplicity rust版jq
https://github.com/01mf02/jaq
Simple proxy for a web socket endpoint
https://gist.github.com/crisdosyago/3bee14b0149eae581036f8b5c9054004
Record Query - A tool for doing record analysis and transformation
https://github.com/dflemstr/rq
Spacedrive is an open source cross-platform file explorer, powered by a virtual distributed filesystem written in Rust.跨平台的文件浏览器,可以挂载云盘,统一操作。
https://github.com/spacedriveapp/spacedrive
BrowserBox - Remote isolated browser API for security, automation visibility and interactivity. Run on our cloud, or bring your own.
https://github.com/crisdosyago/BrowserBox
Console regexp-driven colorizer
https://github.com/aleksandr-vin/colorize
Linux kernel module for inspecting/modifying TCP socket state from user space
https://github.com/ewust/forge_socket
Evrete is a lightweight and intuitive Java rule engine.
https://github.com/andbi/evrete
前端基础 个人博客 学习笔记
https://github.com/WindrunnerMax/EveryDay
A lightweight, cloud-native data transfer agent and aggregator 与logstash类似,,golang的单可执行文件
https://github.com/loggie-io/loggie
AstroNvim is an aesthetic and feature-rich neovim config that is extensible and easy to use with a great set of plugins
https://github.com/AstroNvim/AstroNvim
Clickable links in the terminal for Go
https://github.com/savioxavier/termlink
A tiny docker image running althttpd
https://github.com/mgred/althttpd-docker
A lightweight HTTP server as a library.
https://github.com/cozis/xHTTP
An awesome README template for your projects!
https://github.com/Louis3797/awesome-readme-template
A very small Docker image (~200KB) to run any static website https://github.com/lipanski/docker-static-website
A simple and fast text editor with a ribbon UI https://github.com/stefankueng/BowPad
About Extensible low-code framework for building business applications. Connect to databases, cloud storages, GraphQL, API endpoints, Airtable, etc and build apps using drag and drop application builder. Built using JavaScript/TypeScript. https://github.com/ToolJet/ToolJet
Comprehensive and exhaustive JavaScript & Node.js testing best practices (April 2022) https://github.com/goldbergyoni/javascript-testing-best-practices
Create a CRUD API wrapping your database in seconds
https://github.com/polterguy/magic
Umi UI for umi 3 https://github.com/umijs/umi-ui
A Node.js library for printing your data on the terminal 以好看的方式打印数据在终端
https://github.com/larswaechter/voici.js
AsyncSSH is a Python package which provides an asynchronous client and server implementation of the SSHv2 protocol on top of the Python asyncio framework. 用来执行异步ssh
https://github.com/ronf/asyncssh
bore is a simple CLI tool for making tunnels to localhost
https://github.com/ekzhang/bore
开源运维平台:面向中小型企业设计的轻量级无Agent的自动化运维平台,整合了主机管理、主机批量执行、主机在线终端、文件在线上传下载、应用发布部署、在线任务计划、配置中心、监控、报警等一系列功能。
https://github.com/openspug/spug
Visualize your JSON data into graphs seamlessly 可视化图表显示json
https://github.com/AykutSarac/jsonvisio.com
一个开源的邮箱别名服务,提供真实邮箱的别名,可以接收和回复邮件,所有邮件都会转到你的真实邮箱。它的免费版允许15个别名,但是代码开源,可以自托管。
https://simplelogin.io/
Cliff – Command Line Interface Formulation Framework( Cliff–命令行界面制定框架 )
https://docs.openstack.org/cliff/latest/
http://HTTP(S)/WS(S)/TCPTunnelstolocalhostusingonlySSH.
https://github.com/antoniomika/sish
REST api for your database (PostgreSQL/Sqlite)
https://github.com/subzerocloud/blue-steel
《Golang学习资源大全-只有Go语言才能改变世界》Only Golang Can Change The World
https://github.com/LearnGolang/LearnGolang
A p2p, secure file storage, social network and application protocol
https://github.com/Peergos/Peergos
GDB frontend made with Dear Imgui
https://github.com/kyle-sylvestre/Tug
Nginx common useful configuration
https://github.com/tldr-devops/nginx-common-configuration
List system information as CSV, manipulate it, pretty print, or export.
https://github.com/mslusarz/csv-nix-tools
give folders & files keywords for easy finding
https://github.com/char/tag
A Java UI toolkit
https://github.com/reportmill/SnapKit
Open source alternative to Auth0 / Firebase Auth / AWS Cognito
https://github.com/supertokens/supertokens-core
A curated list of technical talks and articles about real world enterprise frontend development
https://github.com/andrew--r/frontend-case-studies
Notepad2-zufuliu is a light-weight Scintilla-based text editor for Windows with syntax highlighting, code folding, auto-completion and API list for about 80 programming languages/documents, bundled with file browser plugin metapath.
https://github.com/zufuliu/notepad2
The browserless Chrome service in Docker. Run on our cloud, or bring your own
https://github.com/browserless/chrome
rga: ripgrep, but also search in PDFs, E-Books, Office documents, zip, tar.gz, etc.
https://github.com/phiresky/ripgrep-all
Photo gallery for self-hosted personal servers 搭建个人相册
https://github.com/photoview/photoview
GO Simple Tunnel - a simple tunnel written in golang
https://github.com/ginuerzh/gost
Fancy stream processing made operationally mundane
https://github.com/benthosdev/benthos
A simple tool to collect and process quite a few web news from multiple sources
https://github.com/SpecializedGeneralist/whatsnew
A handy way to handle sh/bash cli parameters.
https://github.com/sigoden/argc
Resource collection for messaging and eventing
https://github.com/clemensv/messaging
C++ Library Manager for Windows, Linux, and MacOS
https://github.com/microsoft/vcpkg
Awesome list of open-source startup alternatives to well-known SaaS products
https://github.com/RunaCapital/awesome-oss-alternatives
150+ Website Templates
https://github.com/learning-zone/website-templates
Window.js is an open-source Javascript runtime for desktop graphics programming
https://github.com/windowjs/windowjs
Excel-like Experience for Web Apps
https://github.com/DataGridXL/DataGridXL2
The web browser that's built for scraping.
https://github.com/ulixee/secret-agent
Tiny, easily embeddable HTTP server in Java.
https://github.com/NanoHttpd/nanohttpd
summary for code analysis and auto-refactor。《代码分析与自动化重构》 - 如何自己动手设计源码解析、构建代码的代码模型、可视化代码、以及如何进行自动化的重构和守护。
https://github.com/modernizing/modernization
Fast, scalable, self-contained, single-threaded Java web server https://github.com/ebarlas/microhttp
An Information Security Reference That Doesn't Suck; https://rmusser.net/git/admin-2/Infosec_Reference for non-MS Git hosted version.
https://github.com/rmusser01/Infosec_Reference
Easily handle day to day CLI operation via Python instead of regular Bash programs.
https://github.com/CZ-NIC/pz
Python process launching
https://github.com/amoffat/sh
Create agents that monitor and act on your behalf. Your agents are standing by!
https://github.com/huginn/huginn
Tantivy is a full-text search engine library inspired by Apache Lucene and written in Rust
https://github.com/quickwit-oss/tantivy
A jsdom alternative with support for server side rendering of web components
https://github.com/capricorn86/happy-dom
涵盖大部分Java进阶需要掌握的知识,包括【微服务】【中间件】【缓存】【数据库优化】【搜索引擎】【分布式】等等
https://github.com/yehongzhi/learningSummary
Portable and lightweight cross-platform desktop application development framework
https://github.com/neutralinojs/neutralinojs
ShenYu is High-Performance Java API Gateway.
https://github.com/apache/incubator-shenyu
Beautifier for javascript
https://github.com/beautify-web/js-beautify
A quick lightweight keyboard app that helps chatting with your friends, or inserting any other texts, numbers or symbols.--android简单的输入法
https://github.com/SimpleMobileTools/Simple-Keyboard
A Curated list of Awesome Python Scripts that Automate Stuffs.
https://github.com/hastagAB/Awesome-Python-Scripts
Android Library to make it easy to create an Code editor or IDE that support any languages and themes, with auto complete, auto indenting, snippets and more features
https://github.com/AmrDeveloper/CodeView
Lightweight CLI download accelerator-多线程命令行下载
https://github.com/axel-download-accelerator/axel
Build your personal knowledge base with Trilium Notes
https://github.com/zadam/trilium
Query data on the command line with SQL-like SELECTs powered by Python expressions
https://github.com/dcmoura/spyql
Cheap EMUlator: lightweight multi-architecture assembly playground
https://github.com/hugsy/cemu
quick reference on command line tools and techniques
https://github.com/vastutsav/command-line-quick-reference
Easy-byte-coder is a non-invasive bytecode injection framework based on JVM.
https://github.com/ymm-tech/easy-byte-coder
Programs for producing static call graphs for Java programs
https://github.com/Adrninistrator/java-callgraph2
An collection of all the amazing programming learning materials and resources online. Aim to create an one-stop station for fantastic onlien resources for coding and fun.
https://github.com/pette1999/Programming_Resource
Get seamless remote access to any Linux device. Centralized SSH for the edge and cloud computing
https://github.com/shellhub-io/shellhub
Searchable interactive texts to copy & paste text, run scripts, using easily exchangeable bundles
https://github.com/lintalist/lintalist
0x.Tools: Always-on Profiling for Production Systems
https://github.com/tanelpoder/0xtools
A self-hosted open source photo management service. This is the repository of the backend.
https://github.com/LibrePhotos/librephotos
Textual is a TUI (Text User Interface) framework for Python inspired by modern web development.
https://github.com/Textualize/textual
a simple zero-configuration command-line http server
https://github.com/http-party/http-server
Git alias commands for faster easier version control
https://github.com/GitAlias/gitalias
Commandline tool for running SQL queries against JSON, CSV, Excel, Parquet, and more. https://github.com/multiprocessio/dsq
Best practices for segmentation of the corporate network of any company https://github.com/sergiomarotco/Network-segmentation-cheat-sheet
Keyboard-driven MacOS cursor actuator https://github.com/mjrusso/scoot
bash-funk is a collection of useful commands for Bash 3.2 or higher. https://github.com/vegardit/bash-funk
A semantic JSON compare tool https://github.com/zgrossbart/jdd
运维简洁实用手册
https://github.com/liquanzhou/ops_doc
Generate massive amounts of fake data in the browser and node.js
https://github.com/faker-js/faker
get colors in your node.js console
https://github.com/Marak/colors.js
Graph Database for Python
https://github.com/arun1729/cog
收集整理 GitHub 上高质量、有趣的开源项目。
https://github.com/Wechat-ggGitHub/Awesome-GitHub-Repo
Build smaller, faster, and more secure desktop applications with a web frontend.
https://github.com/tauri-apps/tauri
Desktop environment in the browser
https://github.com/DustinBrett/daedalOS
A lite library, you can make your project depend it easily, and your project will be UNDEAD (contains api from 9 to 23, lol). https://github.com/Marswin/MarsDaemon
Count your code, quickly
https://github.com/XAMPPRocky/tokei
Simple deep links to any selection of text on your website这个 JS 库可以为选中的文本生成锚点,其他人访问带有这个锚点的 URL,就能看到选中的文本。
https://github.com/WesleyAC/deeplinks
jq for binary formats
https://github.com/wader/fq
java 版本的logstash
https://github.com/DTStack/jlogstash
类filebeat的轻量级日志采集工具
https://github.com/DTStack/jfilebeat
Easily query, script, and visualize data from every database, file, and API.
https://github.com/multiprocessio/datastation
A lightweight Web IDE UI framework
https://github.com/DTStack/molecule
RedisJSON - a JSON data type for Redis
https://github.com/RedisJSON/RedisJSON
A performant, and portable jq wrapper to facilitate the consumption and output of formats other than JSON; using jq filters to transform the data.
https://github.com/Blacksmoke16/oq
100+ mini web projects using HTML, CSS and JavaScript.
https://github.com/solygambas/html-css-javascript-projects
Code examples that accompany the MDN CSS documentation
https://github.com/mdn/css-examples
一个极小化的 JSON 服务器,可以在本地快速起一个服务,提供 JSON 数据的 RESTful API。
https://github.com/rehacktive/caffeine
Awesome io_uring
https://github.com/ciconia/awesome-io_uring
Remote Desktop P2P based. Portable, No configuration or installation needed, communicate your endpoint to the peer, and vice versa, press connect and enjoy.
https://github.com/miroslavpejic85/p2p
Curated list of awesome tips and tricks and resources in .net world
https://github.com/meysamhadeli/awesome-dotnet-tips
Library to load a DLL from memory(windows)
https://github.com/fancycode/MemoryModule
《TCP/IP网络编程》(韩-尹圣雨)学习笔记
https://github.com/riba2534/TCP-IP-NetworkNote
static binaries for linux
https://github.com/minos-org/minos-static
indexing library for Go
https://github.com/blugelabs/bluge
A curated list of awesome things related to NestJS
https://github.com/nestjs/awesome-nestjs
Structural diff for JSON files
https://github.com/andreyvit/json-diff
A semantic JSON compare tool
https://github.com/zgrossbart/jdd
cross-platform, cli app to perform various operations on string
https://github.com/abhimanyu003/sttr
A web proxy in Golang with amazing features.
https://github.com/sipt/shuttle
Zinc Search engine. A lightweight alternative to elasticsearch that requires minimal resources, written in Go.
https://github.com/prabhatsharma/zinc
Build and run tiny vms from Dockerfiles. Small and sleek
https://github.com/ottomatica/slim
猫抓 chrome媒体嗅探插件
https://github.com/xifangczy/cat-catch
A collection of statically compiled tools like Nmap and Socat.
https://github.com/ernw/static-toolbox
学习 Neovim 全配置, 逃离 VSCode
https://github.com/nshen/learn-neovim-lua
A javaagent lib for network filter
https://github.com/pengzhile/ja-netfilter
Generates a static website from source code that allows navigation like in an IDE.
https://github.com/josephmate/OdinCodeBrowser
ldd as a tree with an option to bundle dependencies into a single folder
https://github.com/haampie/libtree
微矿Qlib:业内首个AI量化投资开源平台
https://github.com/microsoft/qlib
SimpleX - decentralized chat with a focus on users’ privacy - doesn't use global user identities - now with groups and sending files!
https://github.com/simplex-chat/simplex-chat
A comprehensive guide to 50 years of evolution of strict C programming, a tribute to Dennis Ritchie's language
https://github.com/agavrel/42_CheatSheet
类似next.js,原来商用现在开源
https://github.com/remix-run/remix
Develop. Preview. Ship.
https://github.com/vercel/vercel
用聪明的方法学习vim
https://github.com/wsdjeg/Learn-Vim_zh_cn
Client-side JavaScript PDF generation for everyone.
https://github.com/parallax/jsPDF
深度学习入门教程, 优秀文章, Deep Learning Tutorial
https://github.com/Mikoto10032/DeepLearning
A tool for adding new lines to files, skipping duplicates
https://github.com/tomnomnom/anew
Nginx HTTP server boilerplate configs
https://github.com/h5bp/server-configs-nginx
Glider is an opinionated Hacker News client. Ad-free, open-source, no-nonsense.
https://github.com/Mosc/Glider
A tiny little drawing app
https://github.com/tldraw/tldraw
新一代爬虫平台,以图形化方式定义爬虫流程,不写代码即可完成爬虫。
https://github.com/ssssssss-team/spider-flow
A cross-platform TUI database management tool written in Rust
https://github.com/TaKO8Ki/gobang
Hurl, run and test HTTP requests.
https://github.com/Orange-OpenSource/hurl
Ntfy is a simple pub-sub notification service. It allows you to send notifications to your desktop or phone via scripts.
https://github.com/binwiederhier/ntfy
Text processing recipes & reference on Linux.
https://github.com/adrianscheff/text-processing-recipes-linux
Spring 5 Reactive playground
https://github.com/hantsy/spring-reactive-sample
Terminal disk space navigator
https://github.com/imsnif/diskonaut
An absurdly small jQuery alternative for modern browsers
https://github.com/fabiospampinato/cash
JavaScript Style Guide
https://github.com/airbnb/javascript
安装谷歌三件套:google服务框架 ; google play service ;google play store
https://github.com/hideuvpn/android-google-play-store
Automatically deploy your project to GitHub Pages using GitHub Actions
https://github.com/JamesIves/github-pages-deploy-action
這是 Will 保哥在 2013 第 6 屆 iT 邦幫忙鐵人賽年度大獎的得獎著作【30 天精通 Git 版本控管】,歡迎大家 fork 我,如果有看見任何文字勘誤,也歡迎利用 pull request 來通知我修正,謝謝
https://github.com/doggy8088/Learn-Git-in-30-days
A curated list of roadmaps
https://github.com/liuchong/awesome-roadmaps
Useful sed scripts & patterns
https://github.com/adrianscheff/useful-sed
PowerShell for every system!
https://github.com/PowerShell/PowerShell
你管这破玩意叫操作系统源码 — 像小说一样品读 Linux 0.11 核心代码
https://github.com/sunym1993/flash-linux0.11-talk
ImTui: Immediate Mode Text-based User Interface C++ Library
https://github.com/ggerganov/imtui
新一代NAT内网穿透+shell+vnc工具
https://github.com/lwch/natpass
Android 工程师进阶手册(8 年 Android 开发者的成长感悟)
https://github.com/Skykai521/AndroidDeveloperAdvancedManual
A modern file tail utility based on Rx.Net which show cases reactive programming and Dynamic Data
https://github.com/RolandPheasant/TailBlazer
Write interactive web app in script way.
https://github.com/pywebio/PyWebIO
Power Fx low-code programming language
https://github.com/microsoft/Power-Fx
A curated list of awesome HTTP Clients for exploring, debugging, and testing APIs.
https://github.com/mrmykey/awesome-http-clients
对K8s的封装,使其更易用
https://github.com/kubesphere/kubesphere
A curated list of awesome big data frameworks, ressources and other awesomeness
https://github.com/0xnr/awesome-bigdata
Set up a modern rust+react web app by running one command.
https://github.com/Wulf/create-rust-app
Java 程序员进阶之路,风趣幽默、通俗易懂,对 Java 初学者极度友好和舒适😘,内容包括但不限于 Java 语法、Java 集合框架、Java IO、Java 并发编程、Java 虚拟机等核心知识点。
https://github.com/itwanger/toBeBetterJavaer
Go 语言学习资料索引
https://github.com/unknwon/go-study-index
A useful list of must-watch talks about JavaScript
https://github.com/AllThingsSmitty/must-watch-javascript
Linkis helps easily connect to various back-end computation/storage engines(Spark, Python, TiDB...), exposes various interfaces(REST, JDBC, Java ...), with multi-tenancy, high performance, and resource control.
https://github.com/apache/incubator-linkis
the Script to creating CA and Certificates using OpenSSL
https://github.com/oslook/openssl-certificate
Meltano embraces the Singer standard and its community-maintained library of open source
extractors and
loaders,
and leverages dbt for transformation.
https://gitlab.com/meltano/meltano
go-stash is a high performance, free and open source server-side data processing pipeline that ingests data from Kafka, processes it, and then sends it to ElasticSearch.
https://github.com/kevwan/go-stash
Powerful yet easy to use APK editor for PC and Mac.
https://github.com/kefir500/apk-editor-studio
A simple server for sending and receiving messages in real-time per WebSocket. (Includes a sleek web-ui)
https://github.com/gotify/server
A browser extension that encrypts your communications with many websites that offer HTTPS but still allow unencrypted connections.
https://github.com/EFForg/https-everywhere
YipYip is an always-on search assitant that turns Gmail (and any other website) into a keyboard-first product
https://github.com/comake/yip-yip
A SOCKS proxy server implemented with the powerful python cooperative concurrency framework asyncio.
https://github.com/Amaindex/asyncio-socks-server
A feature rich terminal UI file transfer and explorer with support for SCP/SFTP/FTP/S3
https://github.com/veeso/termscp
a repo for awesome front-end resources
https://github.com/aycanogut/front-end-resources
Open Source License Key Generation and Verification Tool written in Go
https://github.com/furkansenharputlu/f-license
Hurl, run and test HTTP requests.
https://github.com/Orange-OpenSource/hurl
Python Client and Toolkit for DataFrames, Big Data, Machine Learning and ETL in Elasticsearch
https://github.com/elastic/eland
python implementation of jordansissel's grok regular expression library
https://github.com/garyelephant/pygrok
Simple API that allows you to easily parse logs and other files
https://github.com/thekrakken/java-grok
DRY and RAD for regular expressions and then some.
https://github.com/jordansissel/grok
A fast static site generator in a single binary with everything built-in.
https://github.com/getzola/zola
Build your personal knowledge base with Trilium Notes
https://github.com/zadam/trilium
List of helpful resources added by the community for the community!
https://github.com/shahednasser/awesome-resources
Easily test your grok expressions and parse log files from the CLI
https://github.com/justmiles/grok-cli
Bringing full-stack to the Jamstack
https://github.com/redwoodjs/redwood
Java版 认证、鉴权、管理、任务调度通用功能组件
https://github.com/didi/LogiCommon
https://github.com/john-smilga/html-css-simply-recipes
List of projects that provide terminal user interfaces
https://github.com/rothgar/awesome-tuis
用来搞定 Go 应用中配置的库。支持多种配置文件类型、监控并重新加载配置文件、远程读取配置系统等
https://github.com/spf13/viper
Some CSS tricks,一些 CSS 常用样式
https://github.com/QiShaoXuan/css_tricks
The Single Sign-On Multi-Factor portal for web apps
https://github.com/authelia/authelia
Hacker News, but refined — Interface tweaks and features to make the HN experience better
https://github.com/plibither8/refined-hacker-news
Perl Utility Library for my other repos还有其他语言的一些模板
https://github.com/HariSekhon/lib
A low footprint JavaScript engine for embedded systems
https://github.com/cesanta/elk
Call stack profiler for Python. Shows you why your code is slow!
https://github.com/joerick/pyinstrument
2x times faster than chalk and use 5x less space in node_modules
https://github.com/ai/nanocolors
refine is a React-based framework for building data-intensive applications in no time ✨ It ships with Ant Design System, an enterprise-level UI toolkit.
https://github.com/pankod/refine
A tool for mocking HTTP services
https://github.com/wiremock/wiremock
Front-end Guideline by Juntos Somos Mais
https://github.com/juntossomosmais/frontend-guideline
A functional and reactive JavaScript framework for predictable code
https://github.com/cyclejs/cyclejs
图解react源码, 用大量配图的方式, 致力于将react原理表述清楚.
https://github.com/7kms/react-illustration-series
A cookbook with the best practices for working with kubernetes.
https://github.com/diegolnasc/kubernetes-best-practices
A more intuitive version of du in rust
https://github.com/bootandy/dust
a collection of scripts that rely on https://github.com/junegunn/fzf
https://github.com/DanielFGray/fzf-scripts
localtunnel exposes your localhost to the world for easy testing and sharing! No need to mess with DNS or deploy just to have others test out your changes.
https://github.com/localtunnel/localtunnel
Static call graph generator. The official Python 3 version. Development repo.
https://github.com/Technologicat/pyan
Follow me,从 0 到 1 掌握 SQL,决胜秋招。
https://github.com/datawhalechina/wonderful-sql
Network Analysis Tool
https://github.com/odedshimon/BruteShark
C#/.NET/.NET Core学习、工作、面试指南】概述:C#/.NET/.NET Core基础知识,学习资料、文章、书籍,社区组织,工具和常见的面试题总结。
https://github.com/YSGStudyHards/DotNetGuide
Highly recommended collections for frontend developers
https://github.com/sadanandpai/frontend-learning-kit
Efficient Python Tricks and Tools for Data Scientists
https://github.com/khuyentran1401/Efficient_Python_tricks_and_tools_for_data_scientists
Design patterns for humans 中文版
https://github.com/guanguans/design-patterns-for-humans-cn
A C library that may be linked into a C/C++ program to produce symbolic backtraces
https://github.com/ianlancetaylor/libbacktrace
一个 NeoVim 编辑器的插件集合,将其变成一个完备的 IDE 开发环境。你也可以用它来了解 NeoVim 编辑器需要安装什么插件。
https://github.com/NvChad/NvChad
WebSocket cat
https://github.com/websockets/wscat
A powerful duplicate file finder and an enhanced fork of 'fdupes'.
https://github.com/jbruchon/jdupes
Query small data with columnq CLI
https://github.com/roapi/roapi/tree/main/columnq-cli
Like jq, but for HTML.
https://github.com/mgdm/htmlq
Complete C99 parser in pure Python
https://github.com/eliben/pycparser
Essential React custom hooks ⚓ to super charge your components
https://github.com/imbhargav5/rooks
A TUI for viewing and (eventually) editing database files. Only support for SQLite currently. MySQL support will be added soon.
https://github.com/mathaou/termdbms
List of projects that provide terminal user interfaces
https://github.com/rothgar/awesome-tuis
A TUI for viewing sqlite databases
https://github.com/mathaou/sqlite-tui
A tool for writing better scripts
https://github.com/google/zx
A curated list of awesome projects related to eBPF.
https://github.com/zoidbergwill/awesome-ebpf
教你从零写一个 React 框架。通过一系列的文章和代码,教授如何实现 React 框架,从而能够更好的理解 React 内部原理
https://github.com/pomber/didact
CLI tool for displaying table
https://github.com/uzimaru0000/tv
关注容器、kubernetes、devops、python、golang、微服务等技术
https://github.com/cnych/qikqiak.com
一个国产的微前端框架,解决前端微应用的依赖管理、以及它们之间的通信问题。举例来说,它可以把 React 应用和 Vue 应用组合在一个网页里面
https://github.com/ObviousJs/obvious-core
一个 JS 事件库,允许在多个窗口、多个 iframe 之间共享事件。也就是说,使用它在一个浏览器窗口触发事件,其它窗口也能收到。
https://github.com/mia1024/cross-context-events
Awesome stuff for Obsidian
https://github.com/kmaasrud/awesome-obsidian
Bash command line framework and CLI generator
https://github.com/DannyBen/bashly
An advanced, yet simple, tunneling/pivoting tool that uses a TUN interface.
https://github.com/tnpitsecurity/ligolo-ng
SQLite shell script to import a CSV file
https://github.com/SixArm/sqlite-import-csv
Drogon: A C++14/17 based HTTP web application framework running on Linux/macOS/Unix/Windows
https://github.com/drogonframework/drogon
Freely available programming books
https://github.com/EbookFoundation/free-programming-books
Transfer files over wifi from your computer to your mobile device by scanning a QR code without leaving the terminal.
https://github.com/claudiodangelis/qrcp
DuckDB is an in-process SQL OLAP Database Management System
https://github.com/duckdb/duckdb
A Python Interpreter written in Rust
https://github.com/RustPython/RustPython
绝妙的个人生产力(Awesome Productivity 中文版)
https://github.com/eastlakeside/awesome-productivity-cn
fast HTTP/1.1 benchmarking tool written in Node.js
https://github.com/mcollina/autocannon
Python DBAPI simplified
https://github.com/tlocke/facata
DeepfakeHTTP is an HTTP server that uses HTTP dumps as a source for responses
https://github.com/xnbox/DeepfakeHTTP
Browser extension to search and navigate browser tabs, local bookmarks and history
https://github.com/Fannon/search-bookmarks-history-and-tabs
Modern watch command. Time machine and pager etc
https://github.com/sachaos/viddy
A memory profiler for Linux
https://github.com/koute/bytehound
Janino is a super-small, super-fast Java™ compiler.
https://github.com/janino-compiler/janino
BITLIU`s Tutorials of Algorithm and Data Structure
https://github.com/Xunzhuo/Algorithm-Guide
这是RedSpider社区成员原创与维护的Java多线程系列文章。
https://github.com/RedSpider1/concurrent
Console for mobile browsers
https://github.com/liriliri/eruda
Comparison of 10 frontend JavaScript frameworks
https://github.com/fireship-io/10-javascript-frameworks
A curated list of high quality coding style conventions and standards.
https://github.com/Kristories/awesome-guidelines
Write components once, run everywhere. Compiles to Vue, React, Solid, Angular, Svelte, and more.
https://github.com/BuilderIO/mitosis
Linux 内核揭秘
https://github.com/MintCN/linux-insides-zh
Cheatsheet for different regex syntaxes
https://github.com/remram44/regex-cheatsheet
吴恩达机器学习课程的讲义,欢迎大家一起学习
https://github.com/TheisTrue/MLofAndrew-Ng
基于 electron 的开源工具箱,自由集成丰富插件