[{"content":"","date":"1 March 2021","externalUrl":null,"permalink":"/","section":"Dmytro Horkhover","summary":"","title":"Dmytro Horkhover","type":"page"},{"content":"Calling objectMapper.readValue() on a multi-gigabyte JSON file loads the whole document into memory and ends in an OutOfMemoryError. When the file is a large array of records, you don\u0026rsquo;t need the whole array at once — you need one element at a time.\nJackson\u0026rsquo;s streaming API (JsonParser) reads token by token with constant memory, but working with raw tokens is tedious. The trick is to combine both layers: let JsonParser walk the array and hand each element to an ObjectReader for regular data binding. Memory usage stays bounded by the size of a single element, not the whole file.\nLinks # Github: FasterXML/jackson Github: reactor/reactor-core Data Objects # Plain immutable value classes with @JsonCreator constructors — nothing streaming-specific here, they deserialize the same way as with a regular ObjectMapper call.\nUser.java:\n@ToString class User { private final int id; private final String name; private final List\u0026lt;String\u0026gt; phones; @JsonCreator User(@JsonProperty(\u0026#34;id\u0026#34;) int id, @JsonProperty(\u0026#34;name\u0026#34;) String name, @JsonProperty(\u0026#34;phones\u0026#34;) List\u0026lt;String\u0026gt; phones) { this.id = id; this.name = name; this.phones = phones; } } Phone.java:\n@ToString class Phone { private final String phone; private final String type; @JsonCreator Phone(@JsonProperty(\u0026#34;phone\u0026#34;) String phone, @JsonProperty(\u0026#34;type\u0026#34;) String type) { this.phone = phone; this.type = type; } } JSON example:\n[ // ... { \u0026#34;id\u0026#34;: 42, \u0026#34;name\u0026#34;: \u0026#34;name_for_42\u0026#34;, \u0026#34;phones\u0026#34;: [ { \u0026#34;phone\u0026#34;: \u0026#34;+123456789000\u0026#34;, \u0026#34;type\u0026#34;: \u0026#34;work\u0026#34; } ] }, // ... ] Simple Parser # The parser advances to the opening [, then loops: each nextToken() call positions the stream at the start of the next element, and objectReader.readValue(jsonParser) binds just that element to a User. Only one User is ever held in memory at a time.\nclass Parser { void parse() { ObjectMapper objectMapper = new ObjectMapper(); JsonFactory jsonFactory = objectMapper.getFactory(); ObjectReader objectReader = objectMapper.readerFor(User.class); try (JsonParser jsonParser = jsonFactory.createParser(ioSource())) { if (jsonParser.nextToken() != JsonToken.START_ARRAY) { throw new IllegalStateException(\u0026#34;Expected content to be an array\u0026#34;); } while (jsonParser.nextToken() != JsonToken.END_ARRAY) { User user = objectReader.readValue(jsonParser); // process \u0026#34;user\u0026#34; here — it\u0026#39;s the only element in memory } } } static java.io.InputStream ioSource() { // open the JSON input: FileInputStream, HTTP response body, etc. } } Reactive Solution (Project Reactor) # The while-loop works, but processing is synchronous: parsing blocks until each element is handled. Wrapping the same streaming logic in a Flux decouples parsing from processing — each User is emitted as it\u0026rsquo;s read, downstream operators can process it asynchronously, and the parser is closed when the stream terminates for any reason.\nReactiveParser.java:\nclass ReactiveParser { static void test() { ObjectMapper objectMapper = new ObjectMapper(); // register modules, enable/disable features, etc. JsonFactory jsonFactory = objectMapper.getFactory(); Mono.fromCallable(() -\u0026gt; jsonFactory.createParser(ioSource())) .flatMapMany(jsonParser -\u0026gt; { // emit each array element as a User; // doFinally guarantees the parser is closed on // complete, error, and cancel return ReactiveUtils.readArrayValues(jsonParser, User.class) .doFinally(ReactiveUtils.closeFn(jsonParser)); }) .flatMap(user -\u0026gt; { // async processing per element — here: store the user // in Redis via the reactive Lettuce API return lettuceRedisConnection.reactive() .hset(\u0026#34;users\u0026#34;, user.getId(), user); }) .doOnError(e -\u0026gt; { // parsing and processing errors both end up here }) .subscribe(); } static java.io.InputStream ioSource() { // open the JSON input: FileInputStream, HTTP response body, etc. } } ReactiveUtils.java — the same token loop as the simple parser, wrapped in Flux.create so each element becomes an emission:\nclass ReactiveUtils { static \u0026lt;T\u0026gt; Flux\u0026lt;T\u0026gt; readArrayValues(JsonParser jsonParser, Class\u0026lt;T\u0026gt; clazz) { if (jsonParser == null) { return Flux.error(new NullPointerException(\u0026#34;jsonParser\u0026#34;)); } if (clazz == null) { return Flux.error(new NullPointerException(\u0026#34;clazz\u0026#34;)); } return Flux.create(fluxSink -\u0026gt; { try { ObjectMapper objectMapper = (ObjectMapper) jsonParser.getCodec(); ObjectReader objectReader = objectMapper.readerFor(clazz); if (jsonParser.nextToken() != JsonToken.START_ARRAY) { fluxSink.error(new IllegalStateException(\u0026#34;Expected content to be an array\u0026#34;)); return; } while (jsonParser.nextToken() != JsonToken.END_ARRAY) { T obj = objectReader.readValue(jsonParser); fluxSink.next(obj); } fluxSink.complete(); } catch (IOException e) { fluxSink.error(e); } }); } static Consumer\u0026lt;SignalType\u0026gt; closeFn(AutoCloseable closeable) { if (closeable == null) { return ignore -\u0026gt; {}; } return signalType -\u0026gt; { try { closeable.close(); } catch (Exception e) { // stream already terminated at this point — // log the close failure or deliberately ignore it } }; } } ","date":"1 March 2021","externalUrl":null,"permalink":"/posts/parsing-large-json-with-jackson-streaming/","section":"Posts","summary":"","title":"How to parse large JSON file","type":"posts"},{"content":"","date":"1 March 2021","externalUrl":null,"permalink":"/tags/jackson/","section":"Tags","summary":"","title":"Jackson","type":"tags"},{"content":"","date":"1 March 2021","externalUrl":null,"permalink":"/tags/java/","section":"Tags","summary":"","title":"Java","type":"tags"},{"content":"","date":"1 March 2021","externalUrl":null,"permalink":"/posts/","section":"Posts","summary":"","title":"Posts","type":"posts"},{"content":"","date":"1 March 2021","externalUrl":null,"permalink":"/tags/reactive/","section":"Tags","summary":"","title":"Reactive","type":"tags"},{"content":"","date":"1 March 2021","externalUrl":null,"permalink":"/tags/","section":"Tags","summary":"","title":"Tags","type":"tags"},{"content":"","externalUrl":null,"permalink":"/authors/","section":"Authors","summary":"","title":"Authors","type":"authors"},{"content":" 1,481 unique projects · 1,742 category placements · metadata collected 2026-08-15. Projects may appear in more than one category. AI · Agent Frameworks \u0026amp; Orchestration bytedance/deer-flow — An open-source long-horizon SuperAgent harness that researches, codes, and creates. With the help of sandboxes, memories, tools, skill, subagents and message gateway, it handles different levels of tasks that could take minutes to hours. Python · ⭐ 80k #agent #agentic #agentic-framework #agentic-workflow #ai #ai-agents #deep-research #langchain #langgraph #llm ruvnet/ruflo — 🌊 The original agent meta-harness. Deploy intelligent multi-player swarms, coordinate autonomous workflows, and build conversational AI systems. Features adaptive memory, self-learning intelligence, RAG integration, and native Claude Code / Codex / Hermes and many more Integrated TypeScript · ⭐ 67.9k #claude-code #swarm #agentic-ai #agentic-framework #agentic-workflow #autonomous-agents #codex #mcp-server #multi-agent #ai-assistant HKUDS/nanobot — Ultra-lightweight, open-source, self-hosted personal AI agent framework in Python with WebUI, tools, memory, MCP, multi-agent workflows, automation, and chat apps Python · ⭐ 47k #ai-agent #ai-agents #openclaw #agent-framework #chatbot #chatops #discord-bot #llm-agents #llms #local-llm letta-ai/letta — Platform for stateful agents: AI with advanced memory that can learn and self-improve over time. Python · ⭐ 24.3k #llm #llm-agent #ai #ai-agents tmc/langchaingo — LangChain for Go, the easiest way to write LLM-based programs in Go Go · ⭐ 9.6k #ai #go #golang #langchain thesysdev/openui — The Open Standard for Generative UI TypeScript · ⭐ 8.4k #agents #generative-ui #ai #agent #javascript #llm #help-wanted #looking-for-contributors cloudflare/agents — Build and deploy AI Agents on Cloudflare TypeScript · ⭐ 5.4k #agents #ai #cloudflare #durable-objects #workflows rivet-dev/agentos — Give agents an operating system as a library. Runs in your existing backend – no sandboxes, VMs, or SaaS. Powered by WebAssembly \u0026amp; V8 isolates. Rust · ⭐ 4.4k #agent #ai #javascript #llm #sandbox #v8 #wasm #webassembly open-webui/open-terminal — A computer you can curl ⚡ Python · ⭐ 3k #ai #open-webui #agentic-ai #ai-agents #ai-tools mco-org/mco — CLI-first orchestration for AI coding agents: run selected agents and models in parallel, compare raw answers, and coordinate review or implementation workflows. Python · ⭐ 495 #ai-agents #claude #cli #code-review #codex #developer-tools #gemini #multi-agent #orchestration #qwen Th0rgal/sandboxed.sh — Safe runtime for autonomous on-chain AI agents: isolated sandboxes, Library skills, encrypted secrets. Rust · ⭐ 483 #ai-agents #autonomous-agents #coding-assistant #containerization #developer-tools #llm #mcp #opencode #orchestration #self-hosted alamops/agetor — The harness orchestrator — a local-first kanban for running Claude Code, Codex, and other CLI coding agents in parallel, each in its own git worktree. TypeScript · ⭐ 45 AI · Agent Plugins \u0026amp; Extensions Yeachan-Heo/oh-my-claudecode — Teams-first Multi-agent orchestration for Claude Code TypeScript · ⭐ 38.6k #agentic-coding #ai-agents #claude #claude-code #oh-my-opencode #opencode #vibe-coding #automation #multi-agent-systems #parallel-execution Yeachan-Heo/oh-my-codex — OmX - Oh My codeX: Your codex is not alone. Add hooks, agent teams, HUDs, and so much more. TypeScript · ⭐ 32.7k openai/codex-plugin-cc — Use Codex from Claude Code to review code or delegate tasks. JavaScript · ⭐ 31.9k jarrodwatts/claude-hud — A Claude Code plugin that shows what\u0026#39;s happening - context usage, active tools, running agents, and todo progress JavaScript · ⭐ 27.4k #anthropic #claude #claude-code #cli #plugin #statusline #typescript anthropics/knowledge-work-plugins — Open source repository of plugins primarily intended for knowledge workers to use in Claude Cowork Python · ⭐ 23.5k modem-dev/hunk — Review-first terminal diff viewer for agentic coders TypeScript · ⭐ 8.4k #cli #code-review #diff #git #tui #agents #jj #jujutsu #sapling #terminal alvinunreal/oh-my-opencode-slim — Lean, fine tuned Opencode multi agent suite · Mix any models · Auto delegate tasks TypeScript · ⭐ 8.1k #agentic-ai #antigravity #cerebras #oh-my-opencode #opencode #orchestration #herdr-plugin backnotprop/plannotator — Annotate and review coding agent plans and code diffs visually, share with your team, send feedback to agents with one click. TypeScript · ⭐ 7.8k #claude-code #opencode #obsidian #pi-mono #plan-mode #codex #agents #code-review #skills ringhyacinth/Star-Office-UI — A pixel office for your OpenClaw: turn invisible work states into a cozy little space with characters, daily notes, and guest agents. Code under MIT; art assets for non-commercial learning only. HTML · ⭐ 7.4k #agent-collaboration #ai-assistant #dashboard #flask #mobile-friendly #multi-agent #openclaw #phaser #pixel-art #status-visiualzation entireio/cli — 📜 Entire CLI hooks into your Git workflow to capture AI agent sessions as you work. Sessions are indexed alongside commits, creating a searchable record of how code was written in your repo. Go · ⭐ 4.9k #agents #ai #claude #developer #developer-platform #gemini nyldn/claude-octopus — Surface AI blindspots before you ship. Put up to 8 AI models on every research, design or coding task. Shell · ⭐ 4k #ai-agents #ai-orchestration #claude-code #claude-code-plugin #codex #copilot #developer-tools #double-diamond #gemini #multi-ai letta-ai/claude-subconscious — Give Claude Code a subconscious TypeScript · ⭐ 2.9k snarktank/antfarm — Build your agent team in OpenClaw with one command. TypeScript · ⭐ 2.5k composio-community/awesome-claude-plugins — A curated list of Plugins that let you extend Claude Code with custom commands, agents, hooks, and MCP servers through the plugin system. JavaScript · ⭐ 1.9k #anthropic #claude-ai #claude-code #claude-cowork #claude-desktop #claude-plugins #claude-skills #plugins #claude-code-plugin #claude-code-plugin-marketplace codeaholicguy/ai-devkit — The control plane for AI coding agents. TypeScript · ⭐ 1.6k #ai #claude-code #antigravity #agent-skills #agent-framework #ai-agents #ai-coding #cli #codex-cli #coding-agents shinpr/claude-code-workflows — Development workflows for Claude Code that keep broad exploration focused on the outcome you approved. JavaScript · ⭐ 669 #claude-code #code-quality #productivity #claude-code-plugin #ai-agents #skills #development-workflow #agentic-ai #automation #developer-tools shekohex/opencode-pty — OpenCode plugin for interactive PTY management - run background processes, send input, read output with regex filtering TypeScript · ⭐ 555 #background-process #bun #cli #opencode #pty #terminal #typescript #opencode-plugin disler/claude-code-damage-control Python · ⭐ 479 vtemian/octto — Interactive brainstorming UI for OpenCode agents - multi-question forms, decisions, and real-time feedback TypeScript · ⭐ 474 leeguooooo/claude-code-usage-bar — Lightweight Claude Code statusLine: 5h/7d rate-limit usage, reset countdowns, model \u0026#43; context window, prompt-cache age — one line, 3 styles × 9 themes, daemon fast-mode Python · ⭐ 349 #ai-tools #claude-ai #developer-tools #monitoring #productivity #python #status-bar #token-monitoring #cli-tool #usage-tracking WilliamJudge94/oh-my-opencode-dashboard — A simple dashboard to track OpenCode \u0026#43; Oh-My-Opencode agents TypeScript · ⭐ 288 tickernelz/opencode-kiro-auth — Stop hitting Claude limits. Leverage AWS Kiro 550\u0026#43; free requests with this multi-account rotation plugin for OpenCode TypeScript · ⭐ 166 burggraf/pi-teams TypeScript · ⭐ 117 AI · Agent Skills multica-ai/andrej-karpathy-skills — A single CLAUDE.md file to improve Claude Code behavior, derived from Andrej Karpathy\u0026#39;s observations on LLM coding pitfalls. ⭐ 202.7k nextlevelbuilder/ui-ux-pro-max-skill — An AI skill that provides design intelligence for building professional UI/UX across multiple platforms. Python · ⭐ 117k #ai-skills #antigravity #claude #claude-code #command-line #copilot #cursor-ai #html5 #kiro #landing-page DietrichGebert/ponytail — Makes your AI agent think like the laziest senior dev in the room. The best code is the code you never wrote. JavaScript · ⭐ 103.3k #agent-skills #ai-agents #claude #claude-code #claude-code-plugin #cursor-rules #developer-tools #llm #prompt-engineering #yagni JuliusBrussee/caveman — 🪨 why use many token when few token do trick — Claude Code skill that cuts 65% of tokens by talking like caveman Go · ⭐ 98.4k #ai #anthropic #caveman #claude #claude-code #llm #meme #prompt-engineering #skill #tokens mvanhorn/last30days-skill — AI agent skill that researches any topic across Reddit, X, YouTube, HN, Polymarket, and the web - then synthesizes a grounded summary Python · ⭐ 58.3k #ai-prompts #claude #claude-code #reddit #twitter #hackernews #polymarket #research #youtube #ai-skill JCodesMore/ai-website-cloner-template — Clone any website with one command using AI coding agents JavaScript · ⭐ 32k #ai #ai-agents #ai-tools #automation #boilerplate #claude #claude-code #clone #developer-tools #nextjs garrytan/gbrain — Garry\u0026#39;s Opinionated OpenClaw/Hermes Agent Brain TypeScript · ⭐ 28.5k virgiliojr94/book-to-skill — Turn any technical book PDF into a Claude Code skill — ready to study, reference, and use while you work. Python · ⭐ 21.8k cathrynlavery/diagram-design — 29 editorial diagram types for Claude Code. Self-contained HTML \u0026#43; SVG. No shadows, no Mermaid-slop. HTML · ⭐ 18.5k tt-a1i/archify — Agent skill for beautiful, verifiable architecture, workflow, sequence, data-flow, and lifecycle diagrams—self-contained HTML with motion and crisp export. HTML · ⭐ 12.9k #anthropic #architecture-diagram #claude-skill #dark-mode #developer-tools #diagram-as-code #mermaid-alternative #svg #system-design #html-diagram SimoneAvogadro/android-reverse-engineering-skill — Claude Code skill to support Android app\u0026#39;s reverse engineering Shell · ⭐ 6.8k coleam00/excalidraw-diagram-skill — Skill to give Claude Code (and any coding agent) the ability to generate beautiful and practical Excalidraw diagrams. Python · ⭐ 4.4k antonbabenko/terraform-skill — Terraform \u0026amp; OpenTofu Skill for AI Agents - testing, modules, CI/CD, and production patterns ⭐ 2.3k #best-practices #claude-skills #devops #infrastructure-as-code #modules #opentofu #terraform #testing #claude-code #agent-skills mattprusak/autoresearch-genealogy — Structured prompts, vault templates, and archive guides for AI-assisted genealogy research. Built for Claude Code. Ruby · ⭐ 1.2k mohi-devhub/antivibe — Learn what AI writes, not just accept it. A Claude Code skill that turns AI-generated code into educational deep dives. Shell · ⭐ 1.1k #ai #claude-code #claude-code-skill #code-explanation #education #learning #vibecoding russelleNVy/three-man-team — A structured 3-agent AI dev team — Architect, Builder, Reviewer. Built from production use. Token-optimized. Works with Claude Code, VS Code, Cursor, and any AI that supports context files. Shell · ⭐ 943 #agent-skills #agent-workflow #ai-agents #claude #context-files #developer-tools #llm #markdown #productivity #prompt-engineering ksimback/tech-debt-skill — Claude Code skill that produces a thorough, file-cited tech debt audit of an entire codebase ⭐ 577 mshumer/unslop Python · ⭐ 512 metedata/pdf-proof — Trust, but check. A Claude skill that turns AI answers into visual proof — highlighted screenshots and confidence scores, straight from the source PDF. Python · ⭐ 76 madflojo/go-style-agent-skill — Agent Skill for writing Golang code Makefile · ⭐ 35 #agent-skills jbaruch/speaker-toolkit — Two-skill presentation system: analyze your speaking style into a rhetoric knowledge vault, then create new presentations that match your documented patterns. Python · ⭐ 19 AI · Assistants \u0026amp; Apps openclaw/openclaw — Your own personal AI assistant. Any OS. Any Platform. The lobster way. 🦞 TypeScript · ⭐ 386.4k #ai #assistant #own-your-data #personal #crustacean #molty #openclaw open-webui/open-webui — User-friendly AI Interface (Supports Ollama, OpenAI API, ...) Python · ⭐ 148.9k #ollama #ollama-webui #llm #webui #self-hosted #llm-ui #llm-webui #llms #rag #ai TauricResearch/TradingAgents — TradingAgents: Multi-Agents LLM Financial Trading Framework Python · ⭐ 98.3k #agent #finance #llm #multiagent #trading lobehub/lobehub — 🤯 LobeHub is your Chief Agent Operator, organizing your agents into 7×24 operations by hiring, scheduling, and reporting on your entire AI team. TypeScript · ⭐ 81.7k #chatgpt #openai #ai #gpt #claude #gemini #knowledge-base #deepseek #agent #mcp santifer/career-ops — Open-source AI job search: scan job portals, evaluate listings with a structured A-F rubric into a 1.0-5.0 score, tailor your CV, track applications — runs locally in your AI coding CLI (Claude Code, Codex, OpenCode, Antigravity…) JavaScript · ⭐ 63.9k #ai-agent #anthropic #automation #career #claude #claude-code #cli #golang #interview-prep #job-search mindsdb/mindshub — The unified workspace where open-source models get things done for you. Makefile · ⭐ 39.6k #ai #artificial-inteligence #agents #mcp #anton #claude #claude-cowork #codex #cowork #deepseek tinyhumansai/openhuman — Your Personal AI super intelligence. A brain that builds a local-first memory of your life, a fantastic orchestrator of agent fleets and workflows, and a deep researcher. Rust · ⭐ 36.3k HKUDS/DeepTutor — DeepTutor: Lifelong Personalized Tutoring. https://deeptutor.info/. Python · ⭐ 35.8k #ai-tutor #deepresearch #interactive-learning #large-language-models #multi-agent-systems #rag #ai-agents #clawdbot #cli-tool zeroclaw-labs/zeroclaw — Fast, small, and fully autonomous AI personal assistant infrastructure, any OS, any platform — deploy anywhere, swap anything 🦀 Rust · ⭐ 32.6k #agent #agentic #ai #openclaw #infra #ml #os #zeroclaw onyx-dot-app/onyx — Open Source AI Platform - AI Chat with advanced features that works with every LLM Python · ⭐ 31.6k #enterprise-search #rag #ai-chat #chatgpt #gen-ai #nextjs #python #information-retrieval #ai #llm HKUDS/Vibe-Trading — \u0026#34;Vibe-Trading: Your Personal Trading Agent\u0026#34; Python · ⭐ 30.9k #backtesting #multi-agent #quantitative-finance #trading #ai-agent #algorithmic-trading #fintech #llm #mcp #python nanocoai/nanoclaw — A lightweight alternative to OpenClaw that runs in containers for security. Connects to WhatsApp, Telegram, Slack, Discord, Gmail and other messaging apps,, has memory, scheduled jobs, and runs directly on Anthropic\u0026#39;s Agents SDK TypeScript · ⭐ 30.5k #ai-agents #ai-assistant #claude-code #claude-skills #openclaw Fincept-Corporation/FinceptTerminal — FinceptTerminal is a modern finance application offering advanced market analytics, investment research, and economic data tools, designed for interactive exploration and data-driven decision-making in a user-friendly environment. C\u0026#43;\u0026#43; · ⭐ 30.3k #bloomberg-terminal #finance #financial-markets #investment #investment-research #machine-learning #python #quantitative-finance #stock-market #opensource sipeed/picoclaw — Tiny, Fast, and Deployable anywhere — automate the mundane, unleash your creativity Go · ⭐ 29.9k Zackriya-Solutions/meetily — Privacy first, AI meeting assistant with 4x faster Parakeet/Whisper live transcription, speaker diarization, and Ollama summarization built on Rust. 100% local processing. no cloud required. Meetily (Meetly Ai - https://meetily.ai) is the #1 Self-hosted, Open-source Ai meeting note taker for macOS \u0026amp; Windows. Understand How to write meeting minutes Rust · ⭐ 29.2k #meeting-minutes #meeting-notes #llm #mac #windows #rust #whisper #whisper-cpp #ai #transcription virattt/dexter — An autonomous agent for deep financial research TypeScript · ⭐ 27.5k different-ai/openwork — The open-source alternative to Claude Cowork (powered by opencode) TypeScript · ⭐ 22.3k alibaba/open-code-review — Fast, efficient, battle-tested at Alibaba\u0026#39;s scale. Hybrid architecture code review tool: deterministic pipelines \u0026#43; LLM Agent, precise line-level comments, built-in multi-language ruleset (NPE, thread-safety, XSS, SQL injection), OpenAI \u0026amp; Anthropic compatible. Go · ⭐ 20.5k #agent #code-review #code-review-assistant #harness #repository-level-context #agent-skills aiming-lab/AutoResearchClaw — Fully autonomous \u0026amp; self-evolving research from idea to paper. Chat an Idea. Get a Paper. 🦞 Python · ⭐ 14k #autonomous-research #citation-verification #llm-agents #multi-agent-debate #openclaw #paper-generation #scientific-discovery #self-evolving #metaclaw keephq/keep — The open-source AIOps and alert management platform Python · ⭐ 12.2k #alarm #alarms #alerting #alerts #monitoring #monitoring-tool #python #python3 #aiops #workflow-automation altic-dev/FluidVoice — Fastest and only macOS Dictation app with on-device STT and custom trained AI enhancement model. A local Wispr Flow alternative. ⭐ helps a ton :) Windows \u0026amp; iOS waitlist open. Linux soon. Swift · ⭐ 10.3k #ai #dictation #ios #llama-cpp #macos #swift cloudflare/cloudflare-os — Agent workspace built on Cloudflare Workers for creating documents, building apps, and running agents with your company’s context and systems. TypeScript · ⭐ 8.3k nullclaw/nullclaw — Fastest, smallest, and fully autonomous AI assistant infrastructure written in Zig Zig · ⭐ 8k #ai #assistant #personal #zig GoogleCloudPlatform/kubectl-ai — AI powered Kubernetes Assistant Go · ⭐ 7.5k #ai #assistant #cli #kubernetes vas3k/TaxHacker — Self-hosted AI accounting app. LLM analyzer for receipts, invoices, transactions with custom prompts and categories TypeScript · ⭐ 6.6k #accounting #currency-exchange #llm #self-hosted #taxes #ai-analysis #expenses #invoices #gemini #ocr-recognition Beingpax/VoiceInk — The best open-source alternative to Superwhisper \u0026amp; Wispr Flow. Voice-to-text app for macOS with no subscription Swift · ⭐ 5.9k #macos #macos-app #swift nico-martin/gemma4-browser-extension — On-device AI agent Chrome extension powered by Transformers.js and Gemma 4 TypeScript · ⭐ 1.1k synth-inc/onit — Onit MacOS client Swift · ⭐ 1.1k tak-bro/aicommit2 — A Reactive CLI that generates commit messages for Git and Jujutsu with Ollama, ChatGPT, Gemini, Claude, Mistral and other AI TypeScript · ⭐ 528 #aicommit #anthropic #chatgpt #claude #cli #ollama #git-commit #cohere #mistral #groq truecourse-ai/truecourse — AI-powered architecture analysis and code intelligence. Detects circular deps, layer violations, dead modules, and more. Web UI \u0026#43; CLI. TypeScript · ⭐ 520 #ai #architecture #code-analysis #code-quality #developer-tools #linter #static-analysis #typescript #javascript #python calebwin/pgclaw — A \u0026#34;Clawdbot\u0026#34; in every row with 400 lines of Postgres SQL Rust · ⭐ 210 AI · Coding Agents NousResearch/hermes-agent — The agent that grows with you Python · ⭐ 231k #ai #ai-agent #ai-agents #llm #anthropic #chatgpt #claude #claude-code #codex #hermes anomalyco/opencode — The open source coding agent. TypeScript · ⭐ 197.8k ultraworkers/claw-code — An agent-managed museum exhibit, built in Rust with Gajae-Code / LazyCodex — developed and maintained with no human intervention. Rust · ⭐ 195.1k anthropics/claude-code — Claude Code is an agentic coding tool that lives in your terminal, understands your codebase, and helps you code faster by executing routine tasks, explaining complex code, and handling git workflows - all through natural language commands. Python · ⭐ 141.6k google-gemini/gemini-cli — An open-source AI agent that brings the power of Gemini directly into your terminal. TypeScript · ⭐ 106.5k #gemini #gemini-api #ai #ai-agents #cli #mcp-client #mcp-server openai/codex — Lightweight coding agent that runs in your terminal Rust · ⭐ 106.1k earendil-works/pi — AI agent toolkit: unified LLM API, agent loop, TUI, coding agent CLI TypeScript · ⭐ 90.9k code-yeongyu/oh-my-openagent — omo/lazycodex: The coding agent for tokenmaxxers;the one and only agent harness for complex codebases. For your Codex, for your OpenCode TypeScript · ⭐ 67.9k #opencode #ai #anthropic #claude #claude-skills #cursor #gemini #ide #openai #orchestration aaif-goose/goose — an open source, extensible AI agent that goes beyond code suggestions - install, execute, edit, and test with any LLM Rust · ⭐ 52.8k #mcp #acp #ai #ai-agents Gitlawb/openclaude — runs anywhere. uses anything TypeScript · ⭐ 30.7k #ai #ai-agent #ai-tools #cli #coding voideditor/void (archived) TypeScript · ⭐ 28.8k #cursor #editor #chatgpt #claude #copilot #developer-tools #llm #open-source #openai #visual-studio-code charmbracelet/crush — Glamourous agentic coding for all 💘 Go · ⭐ 27.4k #agentic-ai #ai #llms #ravishing xai-org/grok-build — SpaceXAI\u0026#39;s coding agent harness and TUI. Fullscreen, mouse interactive, extensible. Rust · ⭐ 25.3k can1357/oh-my-pi — ⌥ AI Coding agent for the terminal — hash-anchored edits, optimized tool harness, LSP, Python, browser, subagents, and more TypeScript · ⭐ 25k #bun #cli #typescript #ai-agent #coding-assistant #llm #ai-coding-agent #anthropic #claude #mcp pingdotgg/t3code TypeScript · ⭐ 18.9k olimorris/codecompanion.nvim — ✨ AI Coding, Vim Style Lua · ⭐ 6.8k #neovim #openai #anthropic #ollama #plugin #copilot #gemini #google-gemini #llm #nvim anus-dev/ANUS TypeScript · ⭐ 6.6k generalaction/emdash — Emdash is the Open-Source Agentic Development Environment (🧡 YC W26). Run multiple coding agents in parallel. Use any provider. TypeScript · ⭐ 5.4k #ai #cli #containerization #docker #jira #linear #llm #openai #opensource #orchestration AI · Document \u0026amp; Web Extraction microsoft/markitdown — Python tool for converting files and office documents to Markdown. Python · ⭐ 173.9k #langchain #openai #autogen-extension #autogen #markdown #microsoft-office #pdf unclecode/crawl4ai — 🚀🤖 Crawl4AI: Open-source LLM Friendly Web Crawler \u0026amp; Scraper. Don\u0026#39;t be shy, join here: https://discord.gg/jP8KfhDhyN Python · ⭐ 78.2k CloakHQ/CloakBrowser — Stealth Chromium that passes every bot detection test. Drop-in Playwright replacement with source-level fingerprint patches. 30/30 tests passed. Python · ⭐ 30.1k #anti-detect #bot-detection #browser-automation #chromium #cloudflare #fingerprint #playwright #recaptcha #stealth-browser #web-scraping opendataloader-project/opendataloader-pdf — PDF Parser for AI-ready data. Automate PDF accessibility. Open-source. Java · ⭐ 28.4k #json #markdown #pdf #ai #document-parsing #html #pdf-converter #tables #pdf-parser #rag h4ckf0r0day/obscura — The headless browser for AI agents and web scraping Rust · ⭐ 21.4k #antidetect #antidetect-browser #browser #browser-automation #cdp #headless #playwright #puppeteer #rust nanobrowser/nanobrowser — Open-Source Chrome extension for AI-powered web automation. Run multi-agent workflows using your own LLM API key. Alternative to OpenAI Operator. TypeScript · ⭐ 13.6k #ai #chrome-extension #agent #ai-agents #ai-tools #automation #browser-use #multi-agent #web-automation #manus cocoindex-io/cocoindex — Incremental engine for long horizon agents 🌟 Star if you like it! Rust · ⭐ 11.3k #ai #change-data-capture #data-indexing #etl #indexing #python #rag #real-time #rust #semantic-search jo-inc/camofox-browser — Stealth headless browser for AI agents — bypass Cloudflare, bot detection, and anti-scraping. Drop-in Puppeteer/Playwright replacement. JavaScript · ⭐ 8.6k #ai-agent #anti-bot #antidetect-browser #automation #bot-detection #browser-automation #cloudflare-bypass #headless-browser #javascript #nodejs adithya-s-k/omniparse — Ingest, parse, and optimize any data format ➡️ from documents to multimedia ➡️ for enhanced compatibility with GenAI frameworks (stale) Python · ⭐ 7.8k #ingestion-api #ocr #omniparser #parse-server #parser-library #vision-transformer #web-crawler #whisper-api mixedbread-ai/mgrep — A calm, CLI-native way to semantically grep everything, like code, images, pdfs and more. TypeScript · ⭐ 4.4k AI · Gateways, Proxies \u0026amp; Cost farion1231/cc-switch — A cross-platform desktop All-in-One assistant for Claude Code, Codex, OpenCode, OpenClaw, Grok Build \u0026amp; Hermes Agent. Only official website: ccswitch.io Rust · ⭐ 127.4k #ai-tools #claude-code #desktop-app #open-source #rust #tauri #typescript #codex #mcp #provider-management rtk-ai/rtk — CLI proxy that reduces LLM token consumption by 60-90% on common dev commands. Single Rust binary, zero dependencies Rust · ⭐ 76.2k #agentic-coding #ai-coding #anthropic #claude-code #cli #command-line-tool #cost-reduction #developer-tools #llm #open-source router-for-me/CLIProxyAPI — Wrap Antigravity, ChatGPT Codex, Claude Code, Grok Build as an OpenAI/Gemini/Claude/Codex compatible API service, allowing you to enjoy the free Gemini 3.1 Pro, GPT 5.6 Series, Grok 4.5, Claude model through API Go · ⭐ 47.4k #claude-code #cluade #gemini #openai #codex #antigravity decolua/9router — Unlimited FREE AI coding. Connect Claude Code, Codex, Cursor, Cline, Copilot, Antigravity to FREE Claude/GPT/Gemini via 40\u0026#43; providers. Auto-fallback, RTK -40% tokens, never hit limits. JavaScript · ⭐ 25.5k #claude-code #cursor #ai-agents #ai-gateway #anthropic #chatgpt #claude #cline #codex #copilot getagentseal/codeburn — Free, local tool to track AI coding token usage and cost across 37 tools and agents (Claude Code, Cursor, Codex, Gemini and more), by model, project, and task. npx codeburn TypeScript · ⭐ 9.4k #ai-coding #claude-code #cli #codex #cost-tracking #developer-tools #observability #terminal-ui #token-usage #cursor-ide John-Rood/claude-proxy — Lightweight proxy that routes Anthropic API billing through Claude Code subscriptions. Zero dependencies, ~150 lines. JavaScript · ⭐ 112 AI · Learning \u0026amp; Prompt Engineering f/prompts.chat — f.k.a. Awesome ChatGPT Prompts. Share, discover, and collect prompts from the community. Free and open source — self-host for your organization with complete privacy. HTML · ⭐ 167.2k #chatgpt #ai #artificial-intelligence #awesome-list #chatgpt-prompts #claude #gemini #gpt #gpt-4 #llm Shubhamsaboo/awesome-llm-apps — 100\u0026#43; AI Agents, Agent Skills and RAG Apps - Free and Open Source. Python · ⭐ 132.7k #llms #rag #python #agents dair-ai/Prompt-Engineering-Guide — 🐙 Guides, papers, lessons, notebooks and resources for prompt engineering, context engineering, RAG, and AI Agents. MDX · ⭐ 77.5k #deep-learning #prompt-engineering #openai #chatgpt #language-model #generative-ai #agents #ai-agents #llms #agent Fission-AI/OpenSpec — Spec-driven development (SDD) for AI coding assistants. TypeScript · ⭐ 65k #spec #ai #context-engineering #engineering #planning #prd #sdlc #spec-driven-development #specification #sdd microsoft/AI-For-Beginners — 12 Weeks, 24 Lessons, AI for All! Jupyter Notebook · ⭐ 65k #deep-learning #artificial-intelligence #machine-learning #ai #computer-vision #nlp #cnn #rnn #gan #microsoft-for-beginners shanraisshan/claude-code-best-practice — from vibe coding to agentic engineering - practice makes claude perfect HTML · ⭐ 64.5k #claude-ai #claude-code #best-practices #claude #claude-code-best-practices #agentic-engineering #anthropic #claude-code-agents #claude-code-commands #claude-code-skills asgeirtj/system_prompts_leaks — Extracted system prompts from Anthropic - Claude Fable 5, Opus 5, Claude Design, Claude Code. OpenAI - ChatGPT GPT-5.6-Sol, Codex. Google - Gemini 3.5 Flash, 3.1 Pro, Antigravity. xAI - Grok, Cursor, Copilot, VS Code, Perplexity, and more. Updated regularly. JavaScript · ⭐ 63k #ai #anthropic #chatbot #chatgpt #claude #claude-code #codex #gemini #generative-ai #google hesreallyhim/awesome-claude-code — A hand-picked collection of the finest of resources for the most awesome of agents, Claude Code, the undisputed champion of coding companions, from the unstoppable team at Anthropic PBC. A delectable showcase of top tier skills, ambidextrous agents, scintillating status lines, top notch developer tooling, and also we have plugins Python · ⭐ 52.4k #anthropic #anthropic-claude #awesome #awesome-list #awesome-lists #awesome-resources #claude #claude-code #agentic-code #agentic-coding bmad-code-org/BMAD-METHOD — Breakthrough Method for Agile Ai Driven Development JavaScript · ⭐ 51.9k rohitg00/ai-engineering-from-scratch — Learn it. Build it. Ship it for others. Python · ⭐ 46.8k #agents #ai #ai-agents #ai-engineering #computer-vision #course #deep-learning #from-scratch #generative-ai #llm luongnv89/claude-howto — A visual, example-driven guide to Claude Code — from basic concepts to advanced agents, with copy-paste templates that bring immediate value. Python · ⭐ 41k #claude-code #guide #tutorial anthropics/prompt-eng-interactive-tutorial — Anthropic\u0026#39;s Interactive Prompt Engineering Tutorial (stale) Jupyter Notebook · ⭐ 37.7k bojieli/ai-agent-book — 《深入理解 AI Agent：设计原理与工程实践》（李博杰 著）开源主仓库：全书正文、编译版 PDF 与按章配套代码 Python · ⭐ 37.6k #agent #agent-memory #ai-agent #book #coding-agent #context-engineering #large-language-models #llm #mcp #multi-agent NirDiamant/RAG_Techniques — This repository showcases various advanced techniques for Retrieval-Augmented Generation (RAG) systems. Each technique has a detailed notebook tutorial. Jupyter Notebook · ⭐ 29.1k #rag #tutorials #langchain #llama-index #llms #python #ai #llm #embeddings #nlp humanlayer/12-factor-agents — What are the principles we can use to build LLM-powered software that is actually good enough to put in the hands of production customers? TypeScript · ⭐ 25.3k #agents #ai #context-window #framework #llms #memory #orchestration #prompt-engineering #rag #12-factor NirDiamant/agents-towards-production — End-to-end, code-first tutorials for building production-grade GenAI agents. From prototype to enterprise deployment. Jupyter Notebook · ⭐ 21.3k #agent #agent-framework #agents #ai-agents #genai #generative-ai #llm #llms #mlops #production microsoft/mcp-for-beginners — This open-source curriculum introduces the fundamentals of Model Context Protocol (MCP) through real-world, cross-language examples in .NET, Java, TypeScript, JavaScript, Rust and Python. Designed for developers, it focuses on practical techniques for building modular, scalable, and secure AI workflows from session setup to service orchestration. Jupyter Notebook · ⭐ 17k #csharp #java #javascript #mcp #mcp-client #mcp-security #mcp-server #model #modelcontextprotocol #python cobusgreyling/loop-engineering — Practical patterns, starters \u0026amp; CLI tools for loop engineering with AI coding agents. Design systems that prompt and orchestrate agents (inspired by Addy Osmani and Boris Cherny). Includes loop-audit, loop-init, loop-cost. JavaScript · ⭐ 10.4k #agentic-ai #ai-agents #claude-code #codex #devops-automation #github-actions #grok #llm #mcp #ai-coding ChrisWiles/claude-code-showcase — Comprehensive Claude Code project configuration example with hooks, skills, agents, commands, and GitHub Actions workflows JavaScript · ⭐ 6k zebbern/claude-code-guide — Claude Code Guide - Setup, Commands, workflows, agents, skills \u0026amp; tips-n-tricks from beginner to power user! Python · ⭐ 4.6k #ai #ai-agent #ai-agent-tools #claude #claude-ai #claude-api #claude-code #claude-code-communication #claude-commands #claude-desktop disler/claude-code-hooks-mastery — Master Claude Code Hooks Python · ⭐ 3.9k mattpocock/dictionary-of-ai-coding — AI coding jargon, explained in plain English. TypeScript · ⭐ 3.7k decodingai-magazine/second-brain-ai-assistant-course — Learn to build your Second Brain AI assistant with LLMs, agents, RAG, fine-tuning, LLMOps and AI systems techniques. Jupyter Notebook · ⭐ 3k #agents #ai-systems #fine-tuning #llm #llmops #mlops #python #rag #data-engineering #huggingface fainir/most-capable-agent-system-prompt — Most Capable Agent System Prompt ⭐ 868 Exocija/ZetaLib — 🌙 ZetaLib - The only AI Library you need ⭐ 848 #ai #machine-learning #prompt-engineering #research-papers samber/awesome-ai-native — A curated list of AI-native products: apps and tools where the LLM is the product itself, not a bolted-on feature. Astro · ⭐ 7 #agent #ai #artificial-intelligence #awesome #claude #codex #gemini #llm #machine-learning #awesome-list AI · MCP Servers punkpeye/awesome-mcp-servers — A collection of MCP servers. ⭐ 92.4k #ai #mcp modelcontextprotocol/servers — Model Context Protocol Servers TypeScript · ⭐ 89.6k upstash/context7 — Context7 Platform -- Up-to-date code documentation for LLMs and AI code editors TypeScript · ⭐ 60.8k #llm #mcp #mcp-server #vibe-coding oraios/serena — A powerful MCP toolkit for coding, providing semantic retrieval and editing capabilities - the IDE for your agent Python · ⭐ 28.1k #agent #ai #vibe-coding #mcp-server #ai-coding #language-server #programming #claude #claude-code #codex awslabs/mcp — Open source MCP Servers for AWS Python · ⭐ 9.6k #aws #mcp #mcp-client #mcp-clients #mcp-host #mcp-server #mcp-servers #mcp-tools #modelcontextprotocol sooperset/mcp-atlassian — MCP server for Atlassian tools (Confluence, Jira) Python · ⭐ 5.7k #atlassian #confluence #jira #mcp agentgateway/agentgateway — Next Generation Agentic Proxy for AI Agents and MCP servers Rust · ⭐ 4.4k #agents #ai #mcp #rust #ai-gateway #gateway-api #kubernetes #mcp-gateway #reverse-proxy #service-mesh grafana/mcp-grafana — MCP server for Grafana Go · ⭐ 3.4k crystaldba/postgres-mcp — Postgres MCP Pro provides configurable read/write access and performance analysis for you and your AI agents. Python · ⭐ 3.2k metatool-ai/metamcp — MCP Aggregator, Orchestrator, Middleware, Gateway in one docker TypeScript · ⭐ 2.6k #mcp #mcp-server #mcp-servers #vibe-coding #model-context-protocol #model-context-protocol-server #model-context-protocol-servers #open-webui #self-hosted #mcp-to-openapi containers/kubernetes-mcp-server — Model Context Protocol (MCP) server for Kubernetes and OpenShift Go · ⭐ 2k #containers #context #kubernetes #mcp #model #openshift #protocol #modelcontextprotocol #kubernetes-mcp zereight/gitlab-mcp — First gitlab mcp for you, building together TypeScript · ⭐ 1.9k korotovsky/slack-mcp-server — The most powerful MCP Slack Server with no permission requirements, Apps support, GovSlack, DMs, Group DMs and smart history fetch logic. Go · ⭐ 1.8k #assistants #llm #mcp #mcp-server #slack #slack-api #govslack Flux159/mcp-server-kubernetes — MCP Server for kubernetes management commands TypeScript · ⭐ 1.5k #infrastructure #kubernetes #mcp #server chigwell/telegram-mcp — Telegram MCP server powered by Telethon to let MCP clients read chats, manage groups, and send/modify messages, media, contacts, and settings. Python · ⭐ 1.5k #admin #api #chat-management #contacts #groups #mcp #media #messaging #search #telegram better-auth/better-icons — Skill and MCP server for searching and retrieving icons TypeScript · ⭐ 1.2k mukul975/cve-mcp-server — Production-grade MCP server giving Claude 27 security intelligence tools across 21 APIs — CVE lookup, EPSS scoring, CISA KEV, MITRE ATT\u0026amp;CK, Shodan, VirusTotal, and more. Python · ⭐ 1.1k #cisa-kev #claude-ai #cve #cybersecurity #devsecops #epss #fastmcp #mcp #mitre-attack #model-context-protocol Softeria/ms-365-mcp-server — A Model Context Protocol (MCP) server for interacting with Microsoft 365 and Office services through the Graph API TypeScript · ⭐ 913 kubeflow/mcp-apache-spark-history-server — MCP Server and CLI for Apache Spark History Server. Debug Spark applications from AI agents, scripts, or the terminal. Python · ⭐ 188 #apache-spark #kubernetes #mcp #mcp-server #big-data #data-processing altic-dev/altic-mcp — Turn Claude into a better version of Siri Python · ⭐ 137 chy168/google-chat-mcp-server Python · ⭐ 23 AI · Memory, Context \u0026amp; RAG Graphify-Labs/graphify — Turn any codebase, with its docs, SQL schemas, configs, and PDFs, into a queryable knowledge graph. A /graphify skill for Claude Code, Cursor, Codex, and Gemini CLI: local deterministic AST parsing, every edge explained, no vector store. Python · ⭐ 106.6k #claude-code #graphrag #knowledge-graph #codex #openclaw #skills #antigravity #gemini #leiden #rag thedotmack/claude-mem — Persistent Context Across Sessions for Every Agent – Captures everything your agent does during sessions, compresses it with AI, and injects relevant context back into future sessions. Works with Claude Code, OpenClaw, Codex, Gemini, Hermes, Copilot, OpenCode \u0026#43; More JavaScript · ⭐ 90.8k #ai #ai-agents #ai-memory #anthropic #artificial-intelligence #claude #claude-agent-sdk #claude-agents #claude-code #claude-code-plugin MemPalace/mempalace — The best-benchmarked open-source AI memory system. And it\u0026#39;s free. Python · ⭐ 58.4k #ai #chromadb #llm #mcp #memory #python HKUDS/LightRAG — [EMNLP2025] LightRAG: Simple and Fast Retrieval-Augmented Generation Python · ⭐ 38.9k #knowledge-graph #large-language-models #retrieval-augmented-generation #genai #graphrag #llm #rag #gpt #docling #mineru VectifyAI/PageIndex — 📑 PageIndex: Document Index for Vectorless, Reasoning-based RAG Python · ⭐ 35.2k #agentic-ai #agents #ai #ai-agents #context-engineering #llm #rag #reasoning #retrieval #retrieval-augmented-generation supermemoryai/supermemory — Memory and context engine \u0026#43; app that is extremely fast, scalable, and can be run fully locally. The Memory API for the AI era. TypeScript · ⭐ 28.9k #cloudflare-pages #cloudflare-workers #drizzle-orm #tailwindcss #typescript #cloudflare-kv #postgres #remix #vite #agent-memory volcengine/OpenViking — Self-evolving Context Database for AI Agents. Unify Agent Memory, Knowledge RAG and Skills. Python · ⭐ 28.5k #context-database #agentic-rag #agent-memory #self-evolving #agent-plugins rohitg00/agentmemory — #1 Persistent memory for AI coding agents based on real-world benchmarks TypeScript · ⭐ 27k #agentmemory #agents #ai #claude #claudecode #codex #copilot #cursor #genai #harness mksglu/context-mode — Context window optimization for AI coding agents. Sandboxes tool output (98% reduction), persists session memory, and enforces routing across 17 platforms via MCP \u0026#43; hooks. TypeScript · ⭐ 19.9k #claude #claude-code #claude-code-plugins #mcp #skills #codex #copilot #opencode #antigravity #kiro GoogleCloudPlatform/knowledge-catalog — Google Cloud Knowledge Catalog Tools and Samples TypeScript · ⭐ 8.6k semantica-agi/semantica — Graph-Native Infrastructure for Context and Accountable AI Systems Python · ⭐ 7.9k #ai #ai-governance #artificial-intelligence #context-engineering #context-graphs #decision-intelligence #explainable-ai #generative-ai #graph-rag #knowledge-graph Gentleman-Programming/engram — Persistent memory system for AI coding agents. Agent-agnostic Go binary with SQLite \u0026#43; FTS5, MCP server, HTTP API, CLI, and TUI. Go · ⭐ 6k Kaelio/ktx — ktx is an executable context layer for data and analytics agents 🐙 Allow Claude Code, Codex, or other AI agents to query analytical databases accurately and with full context of your company TypeScript · ⭐ 1.5k #agents #analytics #analytics-engineering #context-layer #data-engineering #semantic-layer #business-intelligence #data-analysis #agent #ai-agent AI · Models \u0026amp; Inference ollama/ollama — Get up and running with Kimi-K2.6, GLM-5.2, MiniMax, DeepSeek, gpt-oss, Qwen, Gemma and other models. Go · ⭐ 178.6k #llama #llm #llms #go #golang #ollama #mistral #gemma #llama3 #deepseek deepseek-ai/DeepSeek-R1 (stale) ⭐ 92k deepfakes/faceswap — Deepfakes Software For All Python · ⭐ 57.5k #faceswap #face-swap #deep-learning #deeplearning #deep-neural-networks #deepfakes #deepface #deep-face-swap #fakeapp #neural-networks mudler/LocalAI — LocalAI is the open-source AI engine. Run any model - LLMs, vision, voice, image, video - on any hardware. No GPU required. Go · ⭐ 48.5k #llama #ai #llm #stable-diffusion #api #tts #musicgen #mamba #audio-generation #image-generation p-e-w/heretic — Fully automatic censorship removal for language models Python · ⭐ 27.6k #abliteration #llm #transformer google/magika — Fast and accurate AI powered file content types detection Python · ⭐ 18k #deep-learning #filetype #keras-classification-models #keras-models #mime-types #ai #onnx huggingface/speech-to-speech — Build local voice agents with open-source models Python · ⭐ 12.5k #ai #assistant #language-model #machine-learning #python #speech #speech-synthesis #speech-to-text #speech-translation cumulo-autumn/StreamDiffusion — StreamDiffusion: A Pipeline-Level Solution for Real-Time Interactive Generation (stale) Python · ⭐ 10.8k bytedance/monolith — A Lightweight Recommendation System (archived) (stale) Python · ⭐ 9.3k Stability-AI/StableCascade — Official Code for Stable Cascade (stale) Jupyter Notebook · ⭐ 6.5k Andyyyy64/whichllm — Find the local LLM that actually runs and performs best on your hardware. Ranked by real, recency-aware benchmarks, not parameter count. One command, run it instantly. Python · ⭐ 6.3k #ai #cli #llm #local-llm #command-line-tool #gguf #gpu #huggingface #inference #ollama sindresorhus/awesome-whisper — 🔊 Awesome list for Whisper — an open-source AI-powered speech recognition system developed by OpenAI ⭐ 2.4k #ai #artificial-intelligence #awesome #awesome-list #gpt #openai #speech-to-text #transcription AI · Skill Collections obra/superpowers — An agentic skills framework \u0026amp; software development methodology that works. Shell · ⭐ 272.5k #ai #brainstorming #coding #obra #sdlc #skills #superpowers #subagent-driven-development affaan-m/ECC — The agent harness performance optimization system. Skills, instincts, memory, security, and research-first development for Claude Code, Codex, Opencode, Cursor and beyond. JavaScript · ⭐ 240.3k #ai-agents #anthropic #claude #claude-code #developer-tools #llm #mcp #productivity mattpocock/skills — Skills for Real Engineers. Straight from my .agents directory. Shell · ⭐ 218.3k anthropics/skills — Public repository for Agent Skills Python · ⭐ 169.5k #agent-skills msitarzewski/agency-agents — A complete AI agency at your fingertips - From frontend wizards to Reddit community ninjas, from whimsy injectors to reality checkers. Each agent is a specialized expert with personality, processes, and proven deliverables. Shell · ⭐ 145.6k garrytan/gstack — Use Garry Tan\u0026#39;s exact Claude Code setup: 23 opinionated tools that serve as CEO, Designer, Eng Manager, Release Manager, Doc Engineer, and QA TypeScript · ⭐ 128.1k addyosmani/agent-skills — Production-grade engineering skills for AI coding agents. JavaScript · ⭐ 87.5k #agent-skills #antigravity #claude-code #cursor #skills #codex ComposioHQ/awesome-claude-skills — A curated list of awesome Claude Skills, resources, and tools for customizing Claude AI workflows Python · ⭐ 72.6k #claude #claude-code #agent-skills #ai-agents #antigravity #automation #codex #composio #cursor #gemini-cli VoltAgent/awesome-openclaw-skills — The awesome collection of OpenClaw skills. 5,400\u0026#43; skills filtered and categorized from the official OpenClaw Skills Registry.🦞 ⭐ 52k #agent-skills #awesome-list #clawdbot #clawdbot-skill #clawd #clawdhub #moltbot #moltbot-skills #openclaw #openclaw-skills sickn33/agentic-awesome-skills — AAS Core is the local, agent-first control plane for complete catalog discovery, agent-owned selection, stack validation, and planning, backed by 2,005\u0026#43; agentic skills. Includes CLI, local MCP, catalog, plugins, and Workbench. Python · ⭐ 45k #agentic-skills #ai-agents #antigravity #claude-code #mcp #ai-workflows #codex-cli #developer-tools #gemini-cli #skill-library github/awesome-copilot — Community-contributed instructions, agents, skills, and configurations to help you make the most of GitHub Copilot. Python · ⭐ 37.9k #ai #github-copilot #prompt-engineering #hacktoberfest #agent-skills #agents #awesome #custom-agents mukul975/Anthropic-Cybersecurity-Skills — 817 structured cybersecurity skills for AI agents · Mapped to 6 frameworks: MITRE ATT\u0026amp;CK, NIST CSF 2.0, MITRE ATLAS, D3FEND, NIST AI RMF \u0026amp; MITRE F3 (Fight Fraud) · agentskills.io standard · Works with Claude Code, GitHub Copilot, Codex CLI, Cursor, Gemini CLI \u0026amp; 20\u0026#43; platforms · 29 security domains · Apache 2.0 Python · ⭐ 27.8k #ai-agents #claude-code #cybersecurity #incident-response #mitre-attack #penetration-testing #red-team #security #cloud-security #malware-analysis phuryn/pm-skills — PM Skills Marketplace: 100\u0026#43; agentic skills, commands, and plugins — from discovery to strategy, execution, launch, and growth. ⭐ 25.3k #agent-skill-repository #product-management #agent-skills #agentic-skills #claude-code-marketplace #claude-code-plugins #claude-cowork-plugin VoltAgent/awesome-claude-code-subagents — A collection of 100\u0026#43; specialized Claude Code subagents covering a wide range of development use cases Shell · ⭐ 24.3k #ai-agents #claude #claude-ai #claude-subagents #subagents #ai-agent-framework #ai-agent-tools #claude-code-subagents #awesome #awesome-list muratcankoylan/Agent-Skills-for-Context-Engineering — A comprehensive collection of Agent Skills for context engineering, multi-agent architectures, and production agent systems. Use when building, optimizing, or debugging agent systems that require effective context management. Python · ⭐ 17.7k travisvn/awesome-claude-skills — A curated list of awesome Claude Skills, resources, and tools for customizing Claude AI workflows — particularly Claude Code ⭐ 14.7k #awesome #awesome-list #claude #claude-desktop #claude-skills #claudeskills #claude-ai #claude-code #agentic-coding #anthropic MiniMax-AI/skills C# · ⭐ 13.4k BehiSecc/awesome-claude-skills — A curated list of Claude Skills. ⭐ 10k slavingia/skills — Based on The Minimalist Entrepreneur by Sahil Lavingia ⭐ 9.9k nexu-io/html-anything — ✨ The agentic HTML editor — your local AI agent writes the HTML, you ship it. 🚀 75 Skills × 9 Surfaces (magazine · deck · poster · XHS / tweet · prototype · data report · Hyperframes) 🛡️ Sandboxed preview · 📤 1-click to WeChat / X / Zhihu / HTML / PNG 🔑 Zero API key — Claude Code / Cursor / Codex / Gemini / Copilot / OpenCode / Qwen / Aider. HTML · ⭐ 8.3k #agent-skills #ai-agents #ai-design #byok #claude #claude-code #claude-skills #coding-agents #generative-ai #html trailofbits/skills — Trail of Bits Claude Code skills for security research, vulnerability detection, and audit workflows Python · ⭐ 6.6k #agent-skills steipete/agent-scripts — Scripts for agents, shared between my repositories. Shell · ⭐ 6.5k #ai-agents libukai/awesome-agent-skills — Agent Skills 终极指南：快速入门、资源推荐、精选技能与实用工具 ｜The Ultimate Guide to Agent Skills: QuickStart, Resources, Features\u0026amp;Toolkit ⭐ 5k #agent #openclaw #claudecode #skills #awsome-list jakubkrehel/skills — A collection of agent skills that help you build a great interface. Markdown · ⭐ 3.8k browserbase/skills — Browserbase\u0026#39;s official collection of agent skills to access the web. JavaScript · ⭐ 3.7k samber/cc-skills-golang — 🧑‍🎨 A collection of Golang agentic skills that works Go · ⭐ 3k #agent #ai #antigravity #claude #claude-code #code #codex #coding #copilot #cursor cloudflare/skills — Skills for teaching agents how to build on Cloudflare. Shell · ⭐ 2.6k #agents #cloudflare #skills #workers microsoft/waza — CLI / Framework for Agent Skills - create, test, measure and improve skill quality and effectiveness Go · ⭐ 1.2k decebals/claude-code-java — Reusable AI development infrastructure for Java projects, optimized for Claude Code Shell · ⭐ 704 #ai-assisted-development #claude-code #claude-code-skills #developer-tools #java duckdb/duckdb-skills Shell · ⭐ 528 ClickHouse/agent-skills — The official Agent Skills for ClickHouse and ClickHouse Cloud TypeScript · ⭐ 517 #agents #clickhouse samber/cc-skills — 🧑‍🎨 A collection of agentic skills that works CSS · ⭐ 184 #agent #ai #antigravity #claude #claude-code #code #codex #coding #copilot #cursor cxuu/golang-skills — AI Agent Skills for idiomatic, production-ready Go code, distilled from Google, Uber, Community HTML · ⭐ 142 #ai-agent #ai-assistant #go #golang #agent-skills #llm #claude #claude-code #codex #cursor darrenhinde/Opencode-skills-example — Opencode-skil Shell · ⭐ 44 vince-winkintel/gitlab-cli-skills — Agent Skills for working with GitLab CLI Python · ⭐ 44 Ansible githubixx/ansible-role-wireguard — Ansible role for installing WireGuard VPN. Supports Ubuntu, Debian, Archlinx, Fedora, openSUSE Leap and some Redhat ES variants. Jinja · ⭐ 693 #wireguard #vpn #linux #security #networking #ansible #ansible-role lablabs/ansible-role-rke2 — Ansible Role to install RKE2 Kubernetes. Jinja · ⭐ 507 #rke2 #kubernetes #kubernetes-cluster #kubernetes-deployment #rancher Awesome Lists codecrafters-io/build-your-own-x — Master programming by recreating your favorite technologies from scratch. Markdown · ⭐ 540k #programming #tutorials #tutorial-code #tutorial-exercises #free #awesome-list public-apis/public-apis — A collective list of free APIs Python · ⭐ 460k #api #public-apis #free #apis #list #development #software #public #resources #dataset vinta/awesome-python — An opinionated list of Python frameworks, libraries, tools, and resources Python · ⭐ 314.1k #awesome #python #collections #python-frameworks #python-libraries #python-tools awesome-selfhosted/awesome-selfhosted — A list of Free Software network services and web applications which can be hosted on your own servers ⭐ 312.9k #selfhosted #awesome #awesome-list #privacy #hosting #cloud #self-hosted #free-software trimstray/the-book-of-secret-knowledge — A collection of inspiring lists, manuals, cheatsheets, blogs, hacks, one-liners, cli/web tools and more. (stale) ⭐ 238.5k #awesome #awesome-list #lists #manuals #resources #howtos #hacks #search-engines #one-liners #cheatsheets f/prompts.chat — f.k.a. Awesome ChatGPT Prompts. Share, discover, and collect prompts from the community. Free and open source — self-host for your organization with complete privacy. HTML · ⭐ 167.2k #chatgpt #ai #artificial-intelligence #awesome-list #chatgpt-prompts #claude #gemini #gpt #gpt-4 #llm Shubhamsaboo/awesome-llm-apps — 100\u0026#43; AI Agents, Agent Skills and RAG Apps - Free and Open Source. Python · ⭐ 132.7k #llms #rag #python #agents Hack-with-Github/Awesome-Hacking — A collection of various awesome lists for hackers, pentesters and security researchers ⭐ 118.4k #hacking #security #bug-bounty #awesome #android #fuzzing #penetration-testing #pentesting-windows #reverse-engineering punkpeye/awesome-mcp-servers — A collection of MCP servers. ⭐ 92.4k #ai #mcp binhnguyennus/awesome-scalability — The Patterns of Scalable, Reliable, and Performant Large-Scale Systems ⭐ 73.3k #system-design #backend #scalability #interview #architecture #devops #design-patterns #interview-questions #awesome-list #big-data DovAmir/awesome-design-patterns — A curated list of software and architecture related design patterns. (stale) ⭐ 48.6k #awesome #awesome-list #architecture #design-patterns #gof-patterns #microservices #cloud-computing #lists #resources lukasz-madon/awesome-remote-job — A curated list of awesome remote jobs and resources. Inspired by https://github.com/vinta/awesome-python ⭐ 47.6k #awesome-list #awesome #list DataExpert-io/data-engineer-handbook — This is a repo with links to everything you\u0026#39;d ever want to learn about data engineering Jupyter Notebook · ⭐ 43.7k #apachespark #awesome #bigdata #data #dataengineering #sql ashishps1/awesome-system-design-resources — Learn System Design concepts and prepare for interviews using free resources. Java · ⭐ 40.6k #awesome #backend #computer-science #distributed-systems #high-level-design #interview #interview-questions #scalability #system-design #hld github/awesome-copilot — Community-contributed instructions, agents, skills, and configurations to help you make the most of GitHub Copilot. Python · ⭐ 37.9k #ai #github-copilot #prompt-engineering #hacktoberfest #agent-skills #agents #awesome #custom-agents veggiemonk/awesome-docker — :whale: A curated list of Docker resources and projects ⭐ 36.6k #docker #awesome #awesome-list #container #tools #dockerfile #list #moby #docker-container #docker-image kuchin/awesome-cto — A curated and opinionated list of resources for Chief Technology Officers, with the emphasis on startups ⭐ 35.3k #cto #software-engineering #management #architecture #startups #awesome #awesome-list #interviewing #roadmap #engineering-management awesome-foss/awesome-sysadmin — A curated list of amazingly awesome open-source sysadmin resources. ⭐ 34.9k #awesome #awesome-list #sysadmin #list #devops #ops #software #sre #self-hosted herrbischoff/awesome-macos-command-line — Use your macOS terminal shell to do awesome things. (archived) ⭐ 30.8k #macos #macosx #shell #terminal #awesome-list #awesome #list abhisheknaiidu/awesome-github-profile-readme — 😎 A curated list of awesome GitHub Profile which updates in real time ⭐ 30.8k #awesome-list #awesome #github #github-readme #github-profile-readme #portfolio #profile-readme imthenachoman/How-To-Secure-A-Linux-Server — An evolving how-to guide for securing a Linux server. ⭐ 30.3k #linux #hardening #hardening-steps #security #security-hardening #server #linux-server #cc-by-sa ashishps1/awesome-low-level-design — Learn Low Level Design (LLD) and prepare for interviews using free resources. Java · ⭐ 26.2k #awesome #design-patterns #interview #interview-practice #interview-questions #low-level-design #machine-coding #object-oriented-programming #oops #solid-principles alexpate/awesome-design-systems — 💅🏻 ⚒ A collection of awesome design systems ⭐ 25.7k #awesome-list #design-systems #pattern-library #ui-library #awesome #hacktoberfest djsime1/awesome-flipperzero — 🐬 A collection of awesome resources for the Flipper Zero device. (stale) ⭐ 24.1k #flipperzero #flipper-zero #awesome #awesome-list pluja/awesome-privacy — Awesome Privacy - A curated list of services and alternatives that respect your privacy because PRIVACY MATTERS. Python · ⭐ 19.5k #privacy #alternatives #awesome #list #apps #services #awesome-list #degoogle #gafam iCHAIT/awesome-macOS —  A curated list of awesome applications, softwares, tools and shiny things for macOS. ⭐ 19k #macos #mac #awesome-list #apple #awesome-lists #awesome #list unixorn/awesome-zsh-plugins — A collection of ZSH frameworks, plugins, themes and tutorials. Shell · ⭐ 17.9k #collection #awesome-list #zsh-theme #zsh-completions #awesome #list #zsh-configuration #oh-my-zsh #zsh-plugin #hacktoberfest rossant/awesome-math — A curated list of awesome mathematics resources Python · ⭐ 16.1k #awesome-list #mathematics #awesome #lecture-notes #list zhuima/awesome-cloudflare — ⛅️ 精选的 Cloudflare 工具、开源项目、指南、博客和其他资源列表。/ ⛅️ A curated list of Cloudflare tools, open source projects, guides, blogs and other resources. ⭐ 15.1k travisvn/awesome-claude-skills — A curated list of awesome Claude Skills, resources, and tools for customizing Claude AI workflows — particularly Claude Code ⭐ 14.7k #awesome #awesome-list #claude #claude-desktop #claude-skills #claudeskills #claude-ai #claude-code #agentic-coding #anthropic paperswithbacktest/awesome-systematic-trading — A curated list of awesome libraries, packages, strategies, books, blogs, tutorials for systematic trading. (stale) Python · ⭐ 13.3k #finance #awesome #book #paper #trading-bot #algotrading #quant #awesome-list #trading-strategies #trading-algorithms madd86/awesome-system-design — A curated list of awesome System Design (A.K.A. Distributed Systems) resources. ⭐ 12.4k #relational-database #message-broker #hadoop-ecosystem #nosql #interview #distributed-systems #microservices-architecture #stream-processing #microservices theanalyst/awesome-distributed-systems — A curated list to learn about distributed systems (stale) ⭐ 12.3k #distributed-systems #paper #architecture #paxos #lamport #consensus trungdq88/Awesome-Black-Friday-Cyber-Monday — Awesome apps, software, and SaaS deals on Black Friday. ⭐ 7.5k shuaibiyy/awesome-tf — Curated list of resources on HashiCorp\u0026#39;s Terraform and OpenTofu ⭐ 6.6k #awesome-list #awesome #hashicorp-terraform #terraform-modules #devops #infrastructure-as-code #terraform #opentofu composio-community/awesome-claude-plugins — A curated list of Plugins that let you extend Claude Code with custom commands, agents, hooks, and MCP servers through the plugin system. JavaScript · ⭐ 1.9k #anthropic #claude-ai #claude-code #claude-cowork #claude-desktop #claude-plugins #claude-skills #plugins #claude-code-plugin #claude-code-plugin-marketplace philippemerle/Awesome-Kubernetes-Architecture-Diagrams — Awesome Kubernetes Architecture Diagrams ⭐ 569 #diagrams #kubernetes #architecture linnykoleh/awesome-system-design — Practical system design notes focused on scalability, reliability, and trade-offs in real-world distributed systems ⭐ 287 #faang #faang-interview #high-performance #highload #leetcode #system-design #grokking #microservices samber/awesome-olap — 🧊 A curated list of OLAP databases, data lake tools, columnar engines, and analytics frameworks for data engineers. Astro · ⭐ 139 #analytics #awesome #awesome-list #database #datalake #lakehouse #metastore #olap #processing #sql Azure milanm/azure-cheat-sheet — Every product, feature and service in the Azure family. ⭐ 720 #azure #cheatsheat #cloud #developer #microsoft #cloudcomputing #microsoft-azure Azure/karpenter-provider-azure — AKS Karpenter Provider Go · ⭐ 554 ClickHouse ClickHouse/ClickHouse — ClickHouse® is a real-time analytics database management system C\u0026#43;\u0026#43; · ⭐ 49.3k #dbms #olap #analytics #sql #big-data #mpp #clickhouse #hacktoberfest #cpp #rust metrico/gigapipe — ⭐️ The Open-Source Polyglot Observability Warehouse: Light, Fast, Cloud Native, Drop-in Grafana LGTMP alternative :rocket: Indie All-in-One Opentelemetry, Loki, Prometheus, Tempo, Pyroscope On-Prem Alternative :star: Go · ⭐ 1.7k #loki #grafana #prometheus #clickhouse #logql #timeseries #metrics #logs #promql #tempo ContentSquare/chproxy — Open-Source ClickHouse http proxy and load balancer Go · ⭐ 1.5k #clickhouse #proxy #clickhouse-proxy #load-balancer ClickHouse/agent-skills — The official Agent Skills for ClickHouse and ClickHouse Cloud TypeScript · ⭐ 517 #agents #clickhouse nikepan/clickhouse-bulk — Collects many small inserts to ClickHouse and send in big inserts Go · ⭐ 512 #clickhouse #clickhouse-server #clickhouse-bulk Cloud floci-io/floci — Light, fluffy, and always free - The AWS Local Emulator alternative Java · ⭐ 20.1k #aws #aws-emulation #localstack #devops #docker #ec2 #ecs #s3 #sqs #testcontainers infracost/infracost — Cloud cost intelligence for engineers, AI coding agents, and CI/CD 💰📉 Shift FinOps Left! Go · ⭐ 12.5k #terraform #cost-estimation #infrastructure-as-code #aws #terraform-cost-estimation #cloud #cost-optimization #cost-management #gcp #azure awslabs/mcp — Open source MCP Servers for AWS Python · ⭐ 9.6k #aws #mcp #mcp-client #mcp-clients #mcp-host #mcp-server #mcp-servers #mcp-tools #modelcontextprotocol ministackorg/ministack — Ministack: Free, open-source local AWS emulator - 60\u0026#43; services, Terraform compatible, real databases. Free forever. MIT licensed. Python · ⭐ 4k #aws #docker #emulator #localstack #python #ministack #dynamodb #lambda #s3 #aws-local huseyinbabal/taws — Terminal UI for AWS (taws) - A terminal-based AWS resource viewer and manager Rust · ⭐ 2.2k milanm/azure-cheat-sheet — Every product, feature and service in the Azure family. ⭐ 720 #azure #cheatsheat #cloud #developer #microsoft #cloudcomputing #microsoft-azure zalando-incubator/kube-ingress-aws-controller — Configures AWS Load Balancers according to Kubernetes Ingress resources Go · ⭐ 394 #kubernetes #ingress #aws #golang #skipper #docker-image #ingress-controller #cloud aws-samples/sample-s3-hybrid-cache — A highly available, transparent S3 proxy with intelligent multi-tier caching on shared storage, streaming architecture, and comprehensive observability Rust · ⭐ 35 #cache #cache-storage #hybrid #s3 #storage #s3-compatible #s3-compatible-storage Databases supabase/supabase — The Postgres development platform. Supabase gives you a dedicated Postgres database to build your web, mobile, and AI applications. TypeScript · ⭐ 108k #firebase #supabase #realtime #postgrest #postgres #postgresql #websockets #deno #embeddings #vectors meilisearch/meilisearch — A lightning-fast search engine API bringing AI-powered hybrid search to your sites and applications. Rust · ⭐ 59k #search-engine #typo-tolerance #site-search #database #enterprise-search #search #app-search #full-text-search #geosearch #instantsearch etcd-io/etcd — Distributed reliable key-value store for the most critical data of a distributed system Go · ⭐ 52.1k #etcd #raft #distributed-systems #kubernetes #go #database #key-value #consensus #distributed-database #cncf milvus-io/milvus — Milvus is a high-performance, cloud-native vector database built for scalable vector ANN search Go · ⭐ 45.6k #anns #nearest-neighbor-search #faiss #vector-search #image-search #hnsw #vector-database #embedding-database #embedding-store #vector-store pingcap/tidb — TiDB is built for agentic workloads that grow unpredictably, with ACID guarantees and native support for transactions, analytics, and vector search. No data silos. No noisy neighbors. No infrastructure ceiling. Go · ⭐ 40.4k #distributed-database #distributed-transactions #tidb #database #scale #mysql #htap #sql #cloud-native #serverless mindsdb/mindshub — The unified workspace where open-source models get things done for you. Makefile · ⭐ 39.6k #ai #artificial-inteligence #agents #mcp #anton #claude #claude-cowork #codex #cowork #deepseek google/leveldb — LevelDB is a fast key-value storage library written at Google that provides an ordered mapping from string keys to string values. C\u0026#43;\u0026#43; · ⭐ 39.3k surrealdb/surrealdb — A scalable, distributed, collaborative, document-graph database, for the realtime web Rust · ⭐ 32.9k #database #distributed #distributed-database #document-database #realtime-database #cloud-database #backend-as-a-service #database-as-a-service #serverless #web cockroachdb/cockroach — CockroachDB — the cloud native, distributed SQL database designed for high availability, effortless scale, and control over data placement. Go · ⭐ 32.4k #go #database #sql #distributed-database #cockroachdb #hacktoberfest facebook/rocksdb — A library that provides an embeddable, persistent key-value store for fast storage. C\u0026#43;\u0026#43; · ⭐ 32k #database #storage-engine dragonflydb/dragonfly — A modern replacement for Redis and Memcached C\u0026#43;\u0026#43; · ⭐ 31k #memcached #multi-threading #redis #cpp #fibers #cache #database #in-memory #in-memory-database #key-value rethinkdb/rethinkdb — The open-source database for the realtime web. C\u0026#43;\u0026#43; · ⭐ 27k valkey-io/valkey — A flexible distributed key-value database that is optimized for caching and other realtime workloads. C · ⭐ 26.9k #cache #database #key-value #key-value-store #nosql #redis #valkey #valkey-client dolthub/dolt — Dolt – Git for Data Go · ⭐ 24.2k #database #data-version-control #data-versioning #sql #git #git-for-data #mysql #database-version-control #version-controlled-database #database-versioning neondatabase/neon — Neon: Serverless Postgres. We separated storage and compute to offer autoscaling, code-like database branching, and scale to zero. Rust · ⭐ 22.9k #postgres #postgresql #serverless #database #rust vitessio/vitess — Vitess is a database clustering system for horizontal scaling of MySQL. Go · ⭐ 21.2k #cncf #mysql #database-cluster #shard #kubernetes #vitess openobserve/openobserve — Open source observability platform for logs, metrics, traces, frontend monitoring, pipelines and LLM observability. A sophisticated, simple and highly performant alternative to Datadog, Splunk, and Elasticsearch with 140x lower storage costs and single binary deployment. TypeScript · ⭐ 21.1k #logs #metrics #traces #analytics #elasticsearch #jaeger #log-analytics #log-management #prometheus #log-search cube-js/cube — 📊 Cube Core is open-source semantic layer for AI, BI and embedded analytics Rust · ⭐ 20.6k #analytics #cube #postgresql #mysql #bigquery #sql #rust #headless-bi #semantic-layer #databricks golang-migrate/migrate — Database migrations. CLI and Golang library. Go · ⭐ 18.8k #go #golang #migration #migrations #database #postgres #cassandra #sqlite #mysql #neo4j zincsearch/zincsearch — ZincSearch . A lightweight alternative to elasticsearch that requires minimal resources, written in Go. Go · ⭐ 17.9k #go #golang #search #searchengine #modern #vuejs #elasticsearch #opensearch tikv/tikv — Distributed transactional key-value database, originally created to complement TiDB Rust · ⭐ 16.8k #distributed-transactions #raft #rust #key-value #tikv #consensus #rocksdb #tidb #cncf #hacktoberfest tigerbeetle/tigerbeetle — The financial transactions database designed for mission critical safety and performance. Zig · ⭐ 16.8k apple/foundationdb — FoundationDB - the open source, distributed, transactional key-value store C\u0026#43;\u0026#43; · ⭐ 16.6k #key-value-store #transactional #acid #distributed-database #foundationdb dgraph-io/badger — Fast key-value DB in Go. Go · ⭐ 15.8k #key-value #golang #library #go #ssd #database #document-database scylladb/scylladb — NoSQL data store using the Seastar framework, compatible with Apache Cassandra and Amazon DynamoDB C\u0026#43;\u0026#43; · ⭐ 15.7k #nosql #c-plus-plus #scylla #seastar #cassandra #database #cpp bytebase/bytebase — Database governance built for humans and agents — controlling changes and access across every major database. Go · ⭐ 14.4k #mysql #tidb #postgresql #cicd #sql-client #oracle #sqlserver #schema-migrations #gitops #flyway arangodb/arangodb — 🥑 ArangoDB is a native multi-model database with flexible data models for documents, graphs, and key-values. Build high performance applications using a convenient SQL-like query language or JavaScript extensions. C\u0026#43;\u0026#43; · ⭐ 14.3k #multi-model #graph-database #document-database #key-value #database #distributed-database #arangodb #nosql #graphdb geldata/gel — Gel supercharges Postgres with a modern data model, graph queries, Auth \u0026amp; AI solutions, and much more. Python · ⭐ 14.2k #database #edgedb #high-performance #edgeql #relational-database #graph-relational #gel CodisLabs/codis — Proxy based Redis cluster solution supporting pipeline and scaling dynamically (stale) Go · ⭐ 13.2k #go #redis #redis-cluster #nosql #golang citusdata/citus — Distributed PostgreSQL as an extension C · ⭐ 12.7k #database #citus #multi-tenant #postgresql #scale #sharding #sql #distributed-database #postgres #citus-extension Snapchat/KeyDB — A Multithreaded Fork of Redis (stale) C\u0026#43;\u0026#43; · ⭐ 12.5k StarRocks/starrocks — The world\u0026#39;s fastest open query engine for sub-second analytics both on and off the data lakehouse. With the flexibility to support nearly any scenario, StarRocks provides best-in-class performance for multi-dimensional analytics, real-time analytics, and ad-hoc queries. A Linux Foundation project. Java · ⭐ 12k #database #olap #sql #analytics #big-data #realtime-database #vectorized #distributed-database #real-time-analytics #mpp manticoresoftware/manticoresearch — Open-source search database for full-text, vector, and hybrid search with real-time indexing and SQL. C\u0026#43;\u0026#43; · ⭐ 11.9k #search-engine #search #mysql #sphinxsearch #cpp #stream-filtering #full-text-search #bm25 #search-server #sql pressly/goose — A database migration tool. Supports SQL migrations and Go functions. Go · ⭐ 11.3k #database #sql #migration #schema #postgres #mysql #sqlite #golang #go #migrations ariga/atlas — Declarative schema migrations with schema-as-code workflows Go · ⭐ 8.6k supabase/realtime — Broadcast, Presence, and Postgres Changes via WebSockets Elixir · ⭐ 7.6k #elixir #postgres #postgresql #realtime #phoenix #phoenix-framework #cdc #change-data-capture #crdt #distributed-systems amacneil/dbmate — 🚀 A lightweight, framework-agnostic database migration tool. Go · ⭐ 7k #database-migrations #golang #nodejs #python #database-schema #docker #mysql #postgresql #sqlite #migration lance-format/lance — Open Lakehouse Format for Multimodal AI. Convert from Parquet in 2 lines of code for 100x faster random access, vector index, and data versioning. Compatible with Pandas, DuckDB, Polars, Pyarrow, and PyTorch with more integrations coming.. Rust · ⭐ 6.9k #machine-learning #computer-vision #data-format #deep-learning #python #apache-arrow #duckdb #mlops #data-analysis #data-analytics postgresml/postgresml — Postgres with GPUs for ML/AI apps. (stale) Rust · ⭐ 6.8k #ml #machine-learning #ai #ann #artificial-intelligence #classification #embeddings #knn #llm #postgres syndtr/goleveldb — LevelDB key/value database in Go. (stale) Go · ⭐ 6.3k #database #leveldb #go apache/pinot — Apache Pinot - A realtime distributed OLAP datastore Java · ⭐ 6.1k #java cockroachdb/pebble — RocksDB/LevelDB inspired key-value database in Go Go · ⭐ 6k mgramin/awesome-db-tools — Everything that makes working with databases easier ⭐ 5.3k #awesome #awesome-list #database #monitoring #sql-client #visualization #database-management #cross-database #ide sqlpad/sqlpad — Web-based SQL editor (archived) JavaScript · ⭐ 5.2k dbeaver/cloudbeaver — Cloud Database Manager TypeScript · ⭐ 5.1k #webapp #dbeaver #databases #database #cloud-database-manager #cloud sorintlab/stolon — PostgreSQL cloud native High Availability and more. (stale) Go · ⭐ 4.8k #postgresql #high-availability #golang #kubernetes #docker #cloud-native #data-consistency #synchronous-replication #declarative-config #standby-cluster memgraph/memgraph — High-performance open-source in-memory graph database for GraphRAG, AI memory, agentic AI, and real-time graph analytics. Cypher-compatible, built in C\u0026#43;\u0026#43;. C\u0026#43;\u0026#43; · ⭐ 4.3k #graph-algorithms #graph-database #graph-analysis #kafka #cypher #graph #opencypher #ai #graphrag #ai-agents postgresml/pgcat — PostgreSQL pooler with sharding, load balancing and failover support. (stale) Rust · ⭐ 4k #pooler #postgresql #pooling #rust timescale/pg_textsearch — PostgreSQL extension for BM25 relevance-ranked full-text search. Postgres OSS licensed. C · ⭐ 3.9k #bm25 #c-extension #full-text-search #postgresql TablePlus/TablePlus — TablePlus macOS issue tracker ⭐ 3.8k #tableplus #mysql #postgresql #bug #feature nutsdb/nutsdb — A simple, fast, embeddable, persistent key/value store written in pure Go. It supports fully serializable transactions and many data structures such as list, set, sorted set. Go · ⭐ 3.6k #key-value #go #golang #database #data-structures #kv-store #nutsdb #supports-transactions crystaldba/postgres-mcp — Postgres MCP Pro provides configurable read/write access and performance analysis for you and your AI agents. Python · ⭐ 3.2k OpenHFT/Chronicle-Map — Replicate your Key Value Store across your network, with consistency, persistance and performance. Java · ⭐ 3k pinterest/querybook — Querybook is a Big Data Querying UI, combining collocated table metadata and a simple notebook interface. TypeScript · ⭐ 2.3k #metastore #analyses #hive #presto #notebook #typescript #flask #celery #charting Netflix/EVCache — A distributed in-memory data store for the cloud Java · ⭐ 2.2k David-Crty/databasement — Self-hosted database backup manager with a web UI. Schedule, backup, and restore MySQL, PostgreSQL, MariaDB, Microsoft SQL Server, MongoDB, SQLite \u0026amp; Redis to S3, SFTP, Samba or local storage. SSH Tunnel support. PHP · ⭐ 2k #backup #database #s3 #mariadb #mysql #sqlite #backup-restore #database-backup #database-management #postgres NikolayS/PgQue — PgQue – Zero-bloat Postgres queue built on top of on battle-proven Skype\u0026#39;s PgQ. One SQL file to install, pg_cron to tick https://pgque.dev PLpgSQL · ⭐ 1.8k #job-queue #pg-tle #postgres #postgres-extension #postgresql #queue #tle #trusted-language-extensions cybertec-postgresql/pg_timetable — pg_timetable: Advanced scheduling for PostgreSQL Go · ⭐ 1.4k #cron #postgresql #database #chains #scheduling #pg-timetable #docker-image #interval #sql #postgresql-frontend hapostgres/pg_auto_failover — Postgres extension and service for automated failover and high-availability C · ⭐ 1.4k #postgresql #postgres #postgresql-extension #high-availability #auto-failover cybertec-postgresql/pgwatch — 🔬pgwatch: PostgreSQL metrics monitor/dashboard Go · ⭐ 865 cockroachdb/cockroach-operator — k8s operator for CRDB Go · ⭐ 318 ClickHouse/pg_clickhouse — Interfaces to query ClickHouse databases from PostgreSQL C · ⭐ 276 #clickhouse #fdw #postgresql #sql jobinau/pg_gather — Scan PostgreSQL Instance for potential problems. pg_gather is a SQL-only script leveraging the built-in features of psql. HTML · ⭐ 262 #postgresql #performance-analysis #postgres #database #scannner calebwin/pgclaw — A \u0026#34;Clawdbot\u0026#34; in every row with 400 lines of Postgres SQL Rust · ⭐ 210 Docker wagoodman/dive — A tool for exploring each layer in a docker image (stale) Go · ⭐ 54.5k #docker #docker-image #inspector #explorer #cli #tui veggiemonk/awesome-docker — :whale: A curated list of Docker resources and projects ⭐ 36.6k #docker #awesome #awesome-list #container #tools #dockerfile #list #moby #docker-container #docker-image abiosoft/colima — Container runtimes on macOS (and Linux) with minimal setup Go · ⭐ 30.4k #docker #docker-compose #kubernetes #containers #macos #k8s #containerd #containerd-compose #nerdctl #lima goharbor/harbor — An open source trusted cloud native registry project that stores, signs, and scans content. Go · ⭐ 29.2k #cncf #container #registry #helm #cloud-native #containers #docker #kubernetes #cncf-project #container-management slimtoolkit/slim — Slim(toolkit): Don\u0026#39;t change anything in your container image and minify it by up to 30x (and for compiled languages even more) making it secure too! (free and open source) Go · ⭐ 23.4k #docker #containers #security #seccomp #apparmor #minify-images #golang #go #seccomp-profile #hacktoberfest dockur/macos — MacOS inside a Docker container. Shell · ⭐ 21.4k #docker #docker-container #mac #macos #macos-virtual-machine #macos-vm #macosx #osx #osx-virtual-machine #virtualization GoogleContainerTools/kaniko — Build Container Images In Kubernetes (archived) (stale) Go · ⭐ 15.8k #containers #docker #developer-tools #kubernetes anchore/grype — A vulnerability scanner for container images and filesystems Go · ⭐ 12.7k #containers #security #vulnerability #docker #golang #go #static-analysis #container-image #tool #oci p8952/bocker — Docker implemented in around 100 lines of bash (stale) Shell · ⭐ 12.7k hadolint/hadolint — Dockerfile linter, validate inline bash, written in Haskell Haskell · ⭐ 12.4k #dockerfile #linter #shellcheck #haskell #dockerfile-linter #docker #static-analysis podman-container-tools/skopeo — Work with remote images registries - retrieving information, images, signing content Go · ⭐ 11.2k nicolaka/netshoot — a Docker \u0026#43; Kubernetes network trouble-shooting swiss-army container Shell · ⭐ 10.9k #network #containers #kubernetes #docker #troubleshooting #network-namespace orbstack/orbstack — Fast, light, simple Docker containers \u0026amp; Linux machines Shell · ⭐ 9.2k #mac #docker #linux #macos #utm #virtual-machine #colima #docker-desktop #lima sigstore/cosign — Code signing and transparency for containers and binaries Go · ⭐ 6.2k google/go-containerregistry — Go library and CLIs for working with container registries Go · ⭐ 4k #docker #container #registry #container-registry ContainerSSH/ContainerSSH — ContainerSSH: Launch containers on demand Go · ⭐ 3.1k #docker #ssh #containers #kubernetes #security-tools #devsecops #security project-zot/zot — zot - A scale-out production-ready vendor-neutral OCI-native container image/artifact registry (purely based on OCI Distribution Specification) Go · ⭐ 2.6k #zot #opencontainers #oci #distribution-spec #kubernetes #oci-distribution #helm oras-project/oras — OCI registry client - managing content like artifacts, images, packages Go · ⭐ 2.4k #oci #docker #registry #storage #hacktoberfest chainguard-dev/apko — Build OCI images from APK packages directly without Dockerfile Go · ⭐ 1.7k #docker #oci #containers rootless-containers/rootlesskit — Linux-native \u0026#34;fake root\u0026#34; for implementing rootless containers Go · ⭐ 1.3k #rootless-containers Augani/dory — A free, open-source native macOS app for Docker \u0026amp; Linux containers, an alternative to OrbStack and Docker Desktop. Universal for Intel and Apple silicon. Swift · ⭐ 1.1k #apple-silicon #containers #docker #docker-desktop #macos #orbstack #swift #swiftui #virtualization immanuwell/dockerfile-roast — droast - a dockerfile linter that actually has opinions 🔥 Rust · ⭐ 1.1k #ci #continious-integration #docker #dockerfile #linter #rust #wasm #static-analysis #dockerfile-linter #security stilliard/docker-pure-ftpd — Docker Pure-ftpd Server Shell · ⭐ 891 #docker #ftp #ftpd #ftpd-server #debian-trixie #docker-ftp #docker-ftp-server #docker-ftps #ftps #pure-ftpd mintoolkit/mint — minT(oolkit): Mint awesome, secure and production ready containers just the way you need them! Don\u0026#39;t change anything in your container image and minify it by up to 30x (and for compiled languages even more) making it secure too! (free and open source) Go · ⭐ 357 #apparmor #cont #containerd #containers #docker #docker-slim #go #golang #minify #minify-images saiyam1814/kiac — Local Kubernetes on Apple\u0026#39;s container framework - every node is its own lightweight VM. Metrics, storage, and LoadBalancer included. Go · ⭐ 327 #apple-silicon #containers #kubernetes #macos Education donnemartin/system-design-primer — Learn how to design large-scale systems. Prep for the system design interview. Includes Anki flashcards. Python · ⭐ 364k #programming #development #design #design-system #system #design-patterns #web #web-application #webapp #python Chalarangelo/30-seconds-of-code — Coding articles to level up your development skills JavaScript · ⭐ 128.7k #awesome-list #javascript #snippets #learning-resources #learn-to-code #programming #education #es6-javascript #nodejs #css ByteByteGoHq/system-design-101 — Explain complex systems using visuals and simple terms. Help you prepare for system design interviews. (stale) ⭐ 87.1k #aws #cloud-computing #coding-interviews #computer-science #interview-questions #software-architecture #software-development #software-engineering #system-design #system-design-interview bregman-arie/devops-exercises — Linux, Jenkins, AWS, SRE, Prometheus, Docker, Python, Ansible, Git, Kubernetes, Terraform, OpenStack, SQL, NoSQL, Azure, GCP, DNS, Elastic, Network, Virtualization. DevOps Interview Questions Python · ⭐ 84k #devops #aws #linux #ansible #python #docker #prometheus #containers #git #kubernetes binhnguyennus/awesome-scalability — The Patterns of Scalable, Reliable, and Performant Large-Scale Systems ⭐ 73.3k #system-design #backend #scalability #interview #architecture #devops #design-patterns #interview-questions #awesome-list #big-data microsoft/AI-For-Beginners — 12 Weeks, 24 Lessons, AI for All! Jupyter Notebook · ⭐ 65k #deep-learning #artificial-intelligence #machine-learning #ai #computer-vision #nlp #cnn #rnn #gan #microsoft-for-beginners kelseyhightower/kubernetes-the-hard-way — Bootstrap Kubernetes the hard way. No scripts. (stale) ⭐ 49.5k DovAmir/awesome-design-patterns — A curated list of software and architecture related design patterns. (stale) ⭐ 48.6k #awesome #awesome-list #architecture #design-patterns #gof-patterns #microservices #cloud-computing #lists #resources rohitg00/ai-engineering-from-scratch — Learn it. Build it. Ship it for others. Python · ⭐ 46.8k #agents #ai #ai-agents #ai-engineering #computer-vision #course #deep-learning #from-scratch #generative-ai #llm DataExpert-io/data-engineer-handbook — This is a repo with links to everything you\u0026#39;d ever want to learn about data engineering Jupyter Notebook · ⭐ 43.7k #apachespark #awesome #bigdata #data #dataengineering #sql ashishps1/awesome-system-design-resources — Learn System Design concepts and prepare for interviews using free resources. Java · ⭐ 40.6k #awesome #backend #computer-science #distributed-systems #high-level-design #interview #interview-questions #scalability #system-design #hld kuchin/awesome-cto — A curated and opinionated list of resources for Chief Technology Officers, with the emphasis on startups ⭐ 35.3k #cto #software-engineering #management #architecture #startups #awesome #awesome-list #interviewing #roadmap #engineering-management Ebazhanov/linkedin-skill-assessments-quizzes — Full reference of LinkedIn answers 2024 for skill assessments (aws-lambda, rest-api, javascript, react, git, html, jquery, mongodb, java, Go, python, machine-learning, power-point) linkedin excel test lösungen, linkedin machine learning test LinkedIn test questions and answers Python · ⭐ 28.8k #linkedin #quiz-questions #answers #assessment #quiz #linkedin-questions #hacktoberfest #hacktoberfest2020 #exam #skills ashishps1/awesome-low-level-design — Learn Low Level Design (LLD) and prepare for interviews using free resources. Java · ⭐ 26.2k #awesome #design-patterns #interview #interview-practice #interview-questions #low-level-design #machine-coding #object-oriented-programming #oops #solid-principles alexpate/awesome-design-systems — 💅🏻 ⚒ A collection of awesome design systems ⭐ 25.7k #awesome-list #design-systems #pattern-library #ui-library #awesome #hacktoberfest milanm/DevOps-Roadmap — DevOps Roadmap for 2026. with learning resources ⭐ 20.2k #aws #azure #continous-delivery #continuous-integration #devops #docker #go #grafana #jira #kubernetes chiphuyen/aie-book — [WIP] Resources for AI engineers. Also contains supporting materials for the book AI Engineering (Chip Huyen, 2025) Jupyter Notebook · ⭐ 17k architecture-decision-record/architecture-decision-record — Architecture decision record (ADR) examples for software planning, IT leadership, and template documentation ⭐ 16.7k #adr #documentation #teamwork #architecture-decision-record #decisions #project-management #tutorial #decision-record rossant/awesome-math — A curated list of awesome mathematics resources Python · ⭐ 16.1k #awesome-list #mathematics #awesome #lecture-notes #list theanalyst/awesome-distributed-systems — A curated list to learn about distributed systems (stale) ⭐ 12.3k #distributed-systems #paper #architecture #paxos #lamport #consensus liquidslr/system-design-notes — Notes of the book System Desgin Interview - An Insider\u0026#39;s Guide ⭐ 11.2k ongardie/raftscope — super hacky visualization of Raft (stale) JavaScript · ⭐ 726 Frontend microsoft/playwright — Playwright is a framework for Web Testing and Automation. It allows testing Chromium, Firefox and WebKit with a single API. TypeScript · ⭐ 94.5k #playwright #testing #automation #webkit #firefox #e2e-testing #web #chrome #electron #javascript chenglou/pretext — Fast, accurate \u0026amp; comprehensive text measurement \u0026amp; layout TypeScript · ⭐ 49.9k slab/quill — Quill is a modern WYSIWYG editor built for compatibility and extensibility (stale) TypeScript · ⭐ 47.3k #editor #rich-text-editor #quill #wysiwyg microsoft/monaco-editor — A browser based code editor JavaScript · ⭐ 46.6k #monaco-editor #vscode #editor #browser #typescript streamich/react-use — React Hooks — 👍 TypeScript · ⭐ 44k markedjs/marked — A markdown parser and compiler. Built for speed. JavaScript · ⭐ 37.1k #markdown #compiler #parser #commonmark #gfm #hacktoberfest microsoft/typescript-go — Staging repo for development of native port of TypeScript Go · ⭐ 26.2k saleor/saleor — Saleor Core: the high performance, composable, headless commerce API. Python · ⭐ 23.2k #python #store #commerce #shop #ecommerce #cart #graphql #headless #headless-commerce #multichannel SnapDrop/snapdrop — A Progressive Web App for local file sharing (stale) JavaScript · ⭐ 19.7k #webrtc #pwa #snapdrop ag-grid/ag-grid — The best JavaScript Data Table for building Enterprise Applications. Supports React / Angular / Vue / Plain JavaScript. TypeScript · ⭐ 15.5k #react #angular #pagination #sorting #grid #table #datatable #datagrid #filtering #grouping apexcharts/apexcharts.js — 📊 Interactive JavaScript Charts built on SVG JavaScript · ⭐ 15.1k #charts #graphs #javascript #svg #data-visualization #visualization #interactive TanStack/router — 🤖 A client-first, server-capable, fully type-safe router and full-stack framework for the web (React and more). TypeScript · ⭐ 14.9k #react #router #routing #javascript #searchparams #search #url #route #typesafe #typescript dream-num/univer — Univer is a full-stack framework for creating and editing spreadsheets / word processor / presentation on both web and server. TypeScript · ⭐ 14.1k #data-table #excel #spreadsheet #xlsx #doc #word #grid #live-share #ppt #collaboration thesysdev/openui — The Open Standard for Generative UI TypeScript · ⭐ 8.4k #agents #generative-ui #ai #agent #javascript #llm #help-wanted #looking-for-contributors cloudflare/agents — Build and deploy AI Agents on Cloudflare TypeScript · ⭐ 5.4k #agents #ai #cloudflare #durable-objects #workflows sdras/cssgridgenerator — 🧮 Generate basic CSS Grid code to make dynamic layouts! Vue · ⭐ 5.4k #css-grid #grid #grid-layout #grid-system #generated-code #generated-layout #netlify #vue openui/open-ui — Maintain an open standard for UI and promote its adherence and adoption. MDX · ⭐ 4.5k #ui #ux #w3c #standards #web-components Full-Text Search openobserve/openobserve — Open source observability platform for logs, metrics, traces, frontend monitoring, pipelines and LLM observability. A sophisticated, simple and highly performant alternative to Datadog, Splunk, and Elasticsearch with 140x lower storage costs and single binary deployment. TypeScript · ⭐ 21.1k #logs #metrics #traces #analytics #elasticsearch #jaeger #log-analytics #log-management #prometheus #log-search zincsearch/zincsearch — ZincSearch . A lightweight alternative to elasticsearch that requires minimal resources, written in Go. Go · ⭐ 17.9k #go #golang #search #searchengine #modern #vuejs #elasticsearch #opensearch manticoresoftware/manticoresearch — Open-source search database for full-text, vector, and hybrid search with real-time indexing and SQL. C\u0026#43;\u0026#43; · ⭐ 11.9k #search-engine #search #mysql #sphinxsearch #cpp #stream-filtering #full-text-search #bm25 #search-server #sql ElasticHQ/elasticsearch-HQ — Monitoring and Management Web Application for ElasticSearch instances and clusters. (stale) JavaScript · ⭐ 5k #elasticsearch #elasticsearch-plugin #elasticsearch-client #elasticsearch-gui #monitoring #elastichq cars10/elasticvue — Elasticsearch gui - desktop app, browser extension, docker, self hosted TypeScript · ⭐ 2.7k #elasticsearch #elasticsearch-browser #elasticsearch-gui #elasticsearch-frontend Games OpenEmu/OpenEmu — 🕹 Retro video game emulation for macOS Swift · ⭐ 17.7k #openemu #objective-c #macos #emulation #emulator #retrogaming lacymorrow/crossover — 🎯 A Crosshair Overlay for any screen. JavaScript · ⭐ 1.2k #crosshair-overlay #crosshair #overlay #electron #games #crossover #fortnite #game-overlay #windows #macos Go avelino/awesome-go — A curated list of awesome Go frameworks, libraries and software Go · ⭐ 181.1k #golang #golang-library #go #awesome #awesome-list #hacktoberfest ollama/ollama — Get up and running with Kimi-K2.6, GLM-5.2, MiniMax, DeepSeek, gpt-oss, Qwen, Gemma and other models. Go · ⭐ 178.6k #llama #llm #llms #go #golang #ollama #mistral #gemma #llama3 #deepseek fatedier/frp — A fast reverse proxy to help you expose a local server behind a NAT or firewall to the internet. Go · ⭐ 108.8k #proxy #reverse-proxy #tunnel #nat #go #firewall #frp #expose #http-proxy #p2p gin-gonic/gin — Gin is a high-performance HTTP web framework written in Go. It provides a Martini-like API but with significantly better performance—up to 40 times faster—thanks to httprouter. Gin is designed for building REST APIs, web applications, and microservices. Go · ⭐ 89.1k #server #middleware #framework #go #router #performance #gin syncthing/syncthing — Open Source Continuous File Synchronization Go · ⭐ 87.7k #synchronization #go #peer-to-peer #p2p caddyserver/caddy — Fast and extensible multi-platform HTTP/1-2-3 web server with automatic HTTPS Go · ⭐ 74.9k #go #web-server #caddyfile #http #http-server #reverse-proxy #https #tls #automatic-https #privacy pocketbase/pocketbase — Open Source realtime backend in 1 file Go · ⭐ 60.7k #authentication #backend #realtime #golang FiloSottile/mkcert — A simple zero-config tool to make locally trusted development certificates with any names you\u0026#39;d like. (stale) Go · ⭐ 59.5k #https #tls #certificates #local-development #localhost #root-ca #macos #linux #windows #ios rclone/rclone — \u0026#34;rsync for cloud storage\u0026#34; - Google Drive, S3, Dropbox, Backblaze B2, One Drive, Swift, Hubic, Wasabi, Google Cloud Storage, Azure Blob, Azure Files, Yandex Files Go · ⭐ 59.2k #golang #go #cloud-storage #s3 #openstack-swift #google-drive #azure-blob #backblaze-b2 #sftp #ftp go-gitea/gitea — Git with a cup of tea! Painless self-hosted all-in-one software development service, including Git hosting, code review, team collaboration, package registry and CI/CD Go · ⭐ 57.4k #gitea #golang #devops #git #gitlab #github #go #hacktoberfest #git-gui #git-server etcd-io/etcd — Distributed reliable key-value store for the most critical data of a distributed system Go · ⭐ 52.1k #etcd #raft #distributed-systems #kubernetes #go #database #key-value #consensus #distributed-database #cncf router-for-me/CLIProxyAPI — Wrap Antigravity, ChatGPT Codex, Claude Code, Grok Build as an OpenAI/Gemini/Claude/Codex compatible API service, allowing you to enjoy the free Gemini 3.1 Pro, GPT 5.6 Series, Grok 4.5, Claude model through API Go · ⭐ 47.4k #claude-code #cluade #gemini #openai #codex #antigravity spf13/cobra — A Commander for modern Go CLI interactions Go · ⭐ 44.4k #cobra #cobra-library #cobra-generator #posix-compliant-flags #command-cobra #cli-app #command-line #commandline #command #cli charmbracelet/bubbletea — A powerful little TUI framework 🏗 Go · ⭐ 44.4k #cli #framework #elm-architecture #tui #functional #golang #go #hacktoberfest pingcap/tidb — TiDB is built for agentic workloads that grow unpredictably, with ACID guarantees and native support for transactions, analytics, and vector search. No data silos. No noisy neighbors. No infrastructure ceiling. Go · ⭐ 40.4k #distributed-database #distributed-transactions #tidb #database #scale #mysql #htap #sql #cloud-native #serverless gofiber/fiber — ⚡️ Express inspired web framework written in Go Go · ⭐ 40.1k #go #golang #fiber #web #fast #flexible #friendly #rest-api #performance #nodejs go-gorm/gorm — The fantastic ORM library for Golang, aims to be developer friendly Go · ⭐ 39.9k #go #golang #orm #web #gorm wailsapp/wails — Create beautiful applications using Go Go · ⭐ 35.8k #go #golang #vuejs #desktop-application #macos #windows #linux #angular #react #svelte restic/restic — Fast, secure, efficient backup program Go · ⭐ 35.5k #go #restic #backup #deduplication #dedupe #secure-by-default halfrost/LeetCode-Go — ✅ Solutions to LeetCode by Go, 100% test coverage, runtime beats 100% | LeetCode 题解 Go · ⭐ 33.8k #leetcode #golang #go #leetcode-golang #leetcode-solutions #algorithms #algorithm #interview-questions #dynamic-programming #math labstack/echo — High performance, minimalist Go web framework Go · ⭐ 32.6k #go #echo #web #middleware #microservice #websocket #ssl #letsencrypt #micro-framework #https cockroachdb/cockroach — CockroachDB — the cloud native, distributed SQL database designed for high availability, effortless scale, and control over data placement. Go · ⭐ 32.4k #go #database #sql #distributed-database #cockroachdb #hacktoberfest spf13/viper — Go configuration with fangs Go · ⭐ 30.4k sipeed/picoclaw — Tiny, Fast, and Deployable anywhere — automate the mundane, unleash your creativity Go · ⭐ 29.9k gitleaks/gitleaks — Find secrets with Gitleaks 🔑 Go · ⭐ 28.7k #security #security-tools #git #golang #go #secret #gitleaks #devsecops #hacktoberfest #ci-cd fyne-io/fyne — Cross platform GUI toolkit in Go inspired by Material Design Go · ⭐ 28.6k #golang #gui #cross-platform #go #fyne #theme #hacktoberfest #android #ios #toolkit trufflesecurity/trufflehog — Find, verify, and analyze leaked credentials Go · ⭐ 27.5k #secret #trufflehog #credentials #security #devsecops #dynamic-analysis #security-tools #secrets #verification #secret-management stretchr/testify — A toolkit with common assertions and mocks that plays nicely with the standard library Go · ⭐ 26.2k #testify #go #assertions #mocking #golang #testing #toolkit dapr/dapr — Dapr is a portable runtime for building distributed applications across cloud and edge, combining event-driven architecture with workflow orchestration. Go · ⭐ 26k #microservices #microservice #kubernetes #sidecar #state-management #event-driven #pubsub #serverless #containers go-kratos/kratos — Your ultimate Go microservices framework for the cloud-native era. Go · ⭐ 25.9k #golang #framework #kratos #go #microservices #architecture #protobuf #http #grpc #generate gocolly/colly — Elegant Scraper and Crawler Framework for Golang Go · ⭐ 25.4k #golang #scraper #framework #crawler #scraping #crawling #spider #go tsenart/vegeta — HTTP load testing tool and library. It\u0026#39;s over 9000! Go · ⭐ 25.1k #load-testing #go #benchmarking #http gorilla/websocket — Package gorilla/websocket is a fast, well-tested and widely used WebSocket implementation for Go. (stale) Go · ⭐ 24.8k #go #websocket #golang #gorilla #gorilla-web-toolkit #websockets uber-go/zap — Blazing fast, structured, leveled logging in Go. Go · ⭐ 24.6k #golang #logging #structured-logging #zap urfave/cli — A declarative, simple, fast, and fun package for building command line tools in Go Go · ⭐ 24.2k #golang-library #command-line #go #yaml #cli #json #toml dolthub/dolt — Dolt – Git for Data Go · ⭐ 24.2k #database #data-version-control #data-versioning #sql #git #git-for-data #mysql #database-version-control #version-controlled-database #database-versioning argoproj/argo-cd — Declarative Continuous Deployment for Kubernetes Go · ⭐ 23.9k #argo #kubernetes #continuous-deployment #gitops #continuous-delivery #docker #cd #cicd #pipeline #devops valyala/fasthttp — Fast HTTP package for Go. Tuned for high performance. Zero memory allocations in hot paths. Up to 10x faster than net/http Go · ⭐ 23.4k temporalio/temporal — Temporal service Go · ⭐ 22.3k #workflows #workflow-engine #workflow-automation #workflow-management #workflow-management-system #distributed-systems #golang #service-bus #service-fabric #microservices-architecture apernet/hysteria — Hysteria is a powerful, lightning fast and censorship resistant proxy. Go · ⭐ 22.3k #golang #proxy #reliable-udp #quic #censorship-circumvention #http-proxy #socks5 #relay #hysteria #vpn gorilla/mux — Package gorilla/mux is a powerful HTTP router and URL matcher for building Go web servers with 🦍 (stale) Go · ⭐ 21.8k #mux #go #gorilla #router #http #middleware #golang #gorilla-web-toolkit vxcontrol/pentagi — Fully autonomous AI Agents system capable of performing complex penetration testing tasks Go · ⭐ 21.8k #ai-agents #ai-security-tool #autonomous-agents #golang #graphql #multi-agent-system #penetration-testing-tools #react #security-automation #security-testing lima-vm/lima — Linux virtual machines, with a focus on running containers Go · ⭐ 21.7k #vm #qemu #macos #containerd #lima-vm pranshuparmar/witr — Why is this running? Trace any process, port, container, or file back to what started it - CLI \u0026#43; TUI. Go · ⭐ 21.4k #cli #devops #freebsd #golang #linux #macos #observability #sysadmin #troubleshooting #tui samber/lo — 💥 A Lodash-style Go library based on Go 1.18\u0026#43; Generics (map, filter, contains, find...) Go · ⭐ 21.4k #lodash #golang #go #generics #contract #constraints #functional #programming #typesafe #filterable qax-os/excelize — Go language library for reading and writing Microsoft Excel™ (XLAM / XLSM / XLSX / XLTM / XLTX) spreadsheets Go · ⭐ 20.9k #xlsx #excel #microsoft #office #go #excelize #spreadsheet #statistics #formula #analytics antonmedv/fx — Terminal JSON viewer \u0026amp; processor Go · ⭐ 20.6k #json #cli #command-line #tui nats-io/nats-server — High-Performance server for NATS.io, the cloud and edge native messaging system. Go · ⭐ 20.5k #go #golang #messaging #message-bus #message-queue #cloud-native #microservices-architecture #nats-server #distributed-systems #cloud apache/casbin — Apache Casbin: an authorization library that supports access control models like ACL, RBAC, ABAC. Go · ⭐ 20.3k #casbin #access-control #authorization #rbac #abac #acl #auth #authz #permission #authentication bluenviron/mediamtx — Ready-to-use Media-over-QUIC / SRT / WebRTC / RTSP / RTMP / LL-HLS / MPEG-TS / RTP live media server and media proxy that allows to read, publish, proxy, record and playback real-time video and audio streams. Go · ⭐ 19.8k #rtsp #rtp #rtcp #streaming #golang #go #rtsp-server #rtsp-proxy #rtmp #rtmp-server golangci/golangci-lint — Fast linters runner for Go Go · ⭐ 19.3k #go #golang #linter #ci #golangci-lint compiler-explorer/compiler-explorer — Run compilers interactively from your web browser and interact with the assembly TypeScript · ⭐ 19k #rust #c-plus-plus #go #dlang #compiler #cpp #assembly #ispc #haskell #swift golang-migrate/migrate — Database migrations. CLI and Golang library. Go · ⭐ 18.8k #go #golang #migration #migrations #database #postgres #cassandra #sqlite #mysql #neo4j ginuerzh/gost — GO Simple Tunnel - a simple tunnel written in golang (stale) Go · ⭐ 18.2k #go #tunnel #golang #shadowsocks #quic #kcp #ssh #http2 #obfs4 #socks5 uber-go/guide — The Uber Go Style Guide. Makefile · ⭐ 17.7k #golang #go #style-guide #best-practices VictoriaMetrics/VictoriaMetrics — VictoriaMetrics: fast, cost-effective monitoring solution and time series database Go · ⭐ 17.5k #tsdb #prometheus #promql #influxdb #graphite #opentsdb #database #thanos #observability #monitoring joewalnes/websocketd — Turn any program that uses STDIN/STDOUT into a WebSocket server. Like inetd, but for WebSockets. Go · ⭐ 17.5k #websocket-server #websockets #proxy emirpasic/gods — GoDS (Go Data Structures) - Sets, Lists, Stacks, Maps, Trees, Queues, and much more (stale) Go · ⭐ 17.5k #go #golang #data-structure #map #tree #set #list #stack #iterator #enumerable Netflix/chaosmonkey — Chaos Monkey is a resiliency tool that helps applications tolerate random instance failures. (stale) Go · ⭐ 17.1k pion/webrtc — Pure Go implementation of the WebRTC API Go · ⭐ 16.7k #go #golang #webrtc #pion-webrtc #ortc #rtp #srtp #webrtc-api #webrtc-server #pion goreleaser/goreleaser — Release engineering, simplified Go · ⭐ 16k #release-automation #package #hacktoberfest #github-actions #announcements #release-engineering dgraph-io/badger — Fast key-value DB in Go. Go · ⭐ 15.8k #key-value #golang #library #go #ssd #database #document-database oauth2-proxy/oauth2-proxy — A reverse proxy that provides authentication with Google, Azure, OpenID Connect and many more identity providers. Go · ⭐ 14.8k #cloud-infrastructure #oauth2-proxy #ssl #sso #hacktoberfest bytebase/bytebase — Database governance built for humans and agents — controlling changes and access across every major database. Go · ⭐ 14.4k #mysql #tidb #postgresql #cicd #sql-client #oracle #sqlserver #schema-migrations #gitops #flyway casdoor/casdoor — An open-source Agent-first Identity and Access Management (IAM) /LLM MCP \u0026amp; agent gateway and auth server with web UI supporting OpenClaw, MCP, OAuth, OIDC, SAML, CAS, LDAP, SCIM, WebAuthn, TOTP, MFA, Face ID, Google Workspace, Azure AD Go · ⭐ 14.2k #oidc #sso #oauth #iam #saml #webauthn #mfa #single-sign-on #radius #scim amir20/dozzle — Realtime log viewer for containers. Supports Docker, Swarm and K8s. Go · ⭐ 14.1k #log #docker #golang #real-time #docker-container #logging #logging-server #sever-events #vuejs #k8s json-iterator/go — A high-performance 100% compatible drop-in replacement of \u0026#34;encoding/json\u0026#34; (archived) (stale) Go · ⭐ 13.9k #go #golang #parser #json-parser #json #serialization #serializer #deserialization hibiken/asynq — Simple, reliable, and efficient distributed task queue in Go Go · ⭐ 13.6k #task-queue #go #background-jobs #redis #asynchronous-tasks #worker-pool #golang CodisLabs/codis — Proxy based Redis cluster solution supporting pipeline and scaling dynamically (stale) Go · ⭐ 13.2k #go #redis #redis-cluster #nosql #golang gopherjs/gopherjs — A compiler from Go to JavaScript for running Go code in a browser Go · ⭐ 13.2k #go #javascript #compiler #golang #hacktoberfest anchore/grype — A vulnerability scanner for container images and filesystems Go · ⭐ 12.7k #containers #security #vulnerability #docker #golang #go #static-analysis #container-image #tool #oci IBM/sarama — Sarama is a Go library for Apache Kafka. Go · ⭐ 12.5k #kafka #kafka-client #go pressly/goose — A database migration tool. Supports SQL migrations and Go functions. Go · ⭐ 11.3k #database #sql #migration #schema #postgres #mysql #sqlite #golang #go #migrations imgproxy/imgproxy — Fast and secure standalone server for resizing, processing, and converting images on the fly Go · ⭐ 11k #image #resize-images #crop-image #microservice #docker #jpeg #png #libvips #image-processing #avif siderolabs/talos — Talos Linux is a modern Linux distribution built for Kubernetes. Go · ⭐ 10.9k #linux #linux-distribution #kubernetes #kubernetes-distribution #go #musl #grpc #cloud-native #containerd fsnotify/fsnotify — Cross-platform filesystem notifications for Go. Go · ⭐ 10.8k asciimoo/wuzz — Interactive cli tool for HTTP inspection Go · ⭐ 10.7k #curl #golang #cli #http #inspector #http-inspection #go jroimartin/gocui — Minimalist Go package aimed at creating Console User Interfaces. (stale) Go · ⭐ 10.6k #gocui #go #cui #gui screego/server — screen sharing for developers https://screego.net/ Go · ⭐ 10.5k #webrtc #screensharing-tool #privacy #selfhosted #docker #go sourcegraph/conc — Better structured concurrency for go (stale) Go · ⭐ 10.4k #go #golang #concurrency #goroutines xo/usql — Universal command-line interface for SQL databases Go · ⭐ 10.1k #sql #postgresql #mysql #sqlite3 #command-line #microsoft-sql-server #oracle-database #database #golang #mariadb git-bug/git-bug — Distributed, offline-first bug tracker embedded in git Go · ⭐ 10k #bugtracker #git #decentralized-application #distributed-systems #gitdb kubernetes/client-go — Go client for Kubernetes. Go · ⭐ 9.9k #k8s-staging gomodule/redigo — Go client for Redis Go · ⭐ 9.9k #go #redis tmc/langchaingo — LangChain for Go, the easiest way to write LLM-based programs in Go Go · ⭐ 9.6k #ai #go #golang #langchain kubernetes-sigs/kubebuilder — Kubebuilder - SDK for building Kubernetes APIs using CRDs Go · ⭐ 9.3k #k8s-sig-api-machinery google/pprof — pprof is a tool for visualization and analysis of profiling data Go · ⭐ 9.3k #performance-analysis #performance #pprof #profiler golang-jwt/jwt — Go implementation of JSON Web Tokens (JWT). Go · ⭐ 9.2k #go #golang #jwt #auth #ed25519 #security hashicorp/raft — Golang implementation of the Raft consensus protocol Go · ⭐ 9.1k onsi/ginkgo — A Modern Testing Framework for Go Go · ⭐ 9k #golang #testing #test #test-driven-development #bdd #bdd-framework #go maxence-charriere/go-app — A package to build progressive web apps with Go programming language and WebAssembly. Go · ⭐ 9k #go #golang #ui #gui #wasm #awesome-go #pwa patrickmn/go-cache — An in-memory key:value store/cache (similar to Memcached) library for Go, suitable for single-machine applications. (stale) Go · ⭐ 8.8k #go #cache #library pdfcpu/pdfcpu — PDF tooling for Go and the command line. Go · ⭐ 8.8k #go #golang #golang-library #pdf #pdf-files #cli #pdf-tools ariga/atlas — Declarative schema migrations with schema-as-code workflows Go · ⭐ 8.6k ko-build/ko — Build and deploy Go applications Go · ⭐ 8.5k #kubernetes #go #container #deploy #golang #containers #docker openclaw/gogcli — Google Workspace in your terminal. Go · ⭐ 8.3k #gcal #gdrive #gmail #google #gcontacts mitchellh/mapstructure — Go library for decoding generic map values into native Go structures and vice versa. (archived) (stale) Go · ⭐ 8k fatih/color — Color package for Go (golang) Go · ⭐ 8k #golang #go #color #ansi #coloring Masterminds/squirrel — Fluent SQL generation for golang (stale) Go · ⭐ 8k teivah/100-go-mistakes — 📖 100 Go Mistakes and How to Avoid Them Go · ⭐ 8k #golang #go #book #chinese #english #documentation #japanese coroot/coroot — Coroot is an open-source observability and APM tool with AI-powered Root Cause Analysis. It combines metrics, logs, traces, continuous profiling, and SLO-based alerting with predefined dashboards and inspections. Go · ⭐ 7.9k #dashboard #database-monitoring #metrics #monitoring #observability #prometheus #service-map #microservice #ebpf #alerting uber-go/fx — A dependency injection based application framework for Go. Go · ⭐ 7.6k #golang #go #framework #service #app-framework #dependency-injection simeji/jid — json incremental digger Go · ⭐ 7.1k #json #jid #cli #tool #golang #go gopasspw/gopass — The slightly more awesome standard unix password manager for teams Go · ⭐ 7.1k #go #password-manager #git #gpg #hacktoberfest #security openbao/openbao — OpenBao is a software solution to manage, store, and distribute sensitive data including secrets, certificates, and keys. Go · ⭐ 7.1k #go #secret-management #security amacneil/dbmate — 🚀 A lightweight, framework-agnostic database migration tool. Go · ⭐ 7k #database-migrations #golang #nodejs #python #database-schema #docker #mysql #postgresql #sqlite #migration bitfield/script — Making it easy to write shell-like scripts in Go Go · ⭐ 7k #shell #cat #curl #cut #files #find #go #golang #grep #head open-telemetry/opentelemetry-go — OpenTelemetry Go API and SDK Go · ⭐ 6.5k #tracing #metrics #opentelemetry #logging gobwas/ws — A tiny WebSocket library for Go. Go · ⭐ 6.5k #go #websocket #rfc-6455 #golang #fast syndtr/goleveldb — LevelDB key/value database in Go. (stale) Go · ⭐ 6.3k #database #leveldb #go caarlos0/env — A simple, zero-dependencies library to parse environment variables into structs Go · ⭐ 6.3k #golang #environment-variables #configuration #environment #config #go #hacktoberfest jinzhu/copier — Copier for golang, copy value from struct to struct and more Go · ⭐ 6.2k #go #golang #golang-package #copy anacrolix/torrent — Full-featured BitTorrent client package and utilities Go · ⭐ 6.1k #torrent #go #magnet-link #bittorrent #p2p #streaming #tracker prometheus/client_golang — Prometheus instrumentation library for Go applications Go · ⭐ 6k MontFerret/ferret — Declarative data automation language and Go runtime for structured extraction workflows. Go · ⭐ 6k #golang #query-language #dsl #go #library #browser-automation #chrome-devtools-protocol #data-automation #data-extraction #golang-library cockroachdb/pebble — RocksDB/LevelDB inspired key-value database in Go Go · ⭐ 6k letsencrypt/boulder — An ACME-based certificate authority, written in Go. Go · ⭐ 5.7k #boulder #go #acme #certificate-authority #tls #lets-encrypt #ca #pki #rfc8555 klauspost/compress — Optimized Go Compression Packages Go · ⭐ 5.6k #zstd #gzip #compression #decompression #snappy #zip #golang #zstandard #go #deflate kelseyhightower/envconfig — Golang library for managing configuration data from environment variables (stale) Go · ⭐ 5.5k progrium/darwinkit — Native Mac APIs for Go. Previously known as MacDriver (stale) Go · ⭐ 5.4k #golang #apple #macos #objective-c #cgo #apple-apis #libobjc #bridge #go #mac dunglas/mercure — 🪽 An open, easy, fast, reliable and battery-efficient solution for real-time communications Go · ⭐ 5.3k #api #web-api #server-sent-events #subscriptions #golang #hypermedia #graphql #push #streaming-api #mercure gaia-pipeline/gaia — Build powerful pipelines in any programming language. (archived) Go · ⭐ 5.2k #go #pipeline #automation #java #python #cplusplus #build #deployment #kubernetes #continuous-integration grafana/mimir — Grafana Mimir provides horizontally scalable, highly available, multi-tenant, long-term storage for Prometheus. Go · ⭐ 5.2k #prometheus #metrics #tsdb #opentelemetry #otlp #observability hashicorp/golang-lru — Golang LRU cache Go · ⭐ 5.1k ReactiveX/RxGo — Reactive Extensions for the Go language. (stale) Go · ⭐ 5.1k #reactivex #golang #observable #go #concurrency #streaming #asynchronous #async #hacktoberfest oklog/ulid — Universally Unique Lexicographically Sortable Identifier (ULID) in Go Go · ⭐ 5k entireio/cli — 📜 Entire CLI hooks into your Git workflow to capture AI agent sessions as you work. Sessions are indexed alongside commits, creating a searchable record of how code was written in your repo. Go · ⭐ 4.9k #agents #ai #claude #developer #developer-platform #gemini variadico/noti — Moved to Codeberg (archived) Go · ⭐ 4.9k imroc/req — Simple Go HTTP client with Black Magic Go · ⭐ 4.9k #golang #go #http #http-client uber-go/automaxprocs — Automatically set GOMAXPROCS to match Linux container CPU quota. (stale) Go · ⭐ 4.8k #go #golang #gomaxprocs #container #cpu dustin/go-humanize — Go Humans! (formatters for units to human friendly sizes) Go · ⭐ 4.8k Masterminds/sprig — Useful template functions for Go templates. (stale) Go · ⭐ 4.7k #go #template #templates ergo-services/ergo — An actor-based Framework with network transparency for creating event-driven architecture in Golang. Inspired by Erlang. Zero dependencies. Go · ⭐ 4.6k #erlang #golang #elixir #supervisor #otp #otp-applications #distributed-systems #framework #microservice #microservices-architecture mholt/archiver — DEPRECATED. Please use mholt/archives instead. (archived) (stale) Go · ⭐ 4.4k #tar #extract #zip #gzip #xz #golang #rar #lz4 #bzip2 #archives mvdan/gofumpt — A stricter gofmt Go · ⭐ 4.1k #go #format #style #gofmt #goimports #idiomatic google/go-containerregistry — Go library and CLIs for working with container registries Go · ⭐ 4k #docker #container #registry #container-registry uber-go/nilaway — Static analysis tool to detect potential nil panics in Go code Go · ⭐ 3.9k #go #static-analysis #nilability #nilability-analysis #nil-pointer nutsdb/nutsdb — A simple, fast, embeddable, persistent key/value store written in pure Go. It supports fully serializable transactions and many data structures such as list, set, sorted set. Go · ⭐ 3.6k #key-value #go #golang #database #data-structures #kv-store #nutsdb #supports-transactions jedib0t/go-pretty — Table-writer and more in golang! Go · ⭐ 3.5k #golang #tablewriter #table #progress-bar #progressbar #list #ascii #string-manipulation #pretty #table-writer stackrox/kube-linter — KubeLinter is a static analysis tool that checks Kubernetes YAML files and Helm charts to ensure the applications represented in them adhere to best practices. Go · ⭐ 3.5k #static-analysis #yaml-files #helm-charts #kubernetes #hactoberfest #hacktoberfest mmatczuk/go-http-tunnel — Fast and secure tunnels over HTTP/2 (stale) Go · ⭐ 3.3k #go #golang #http #http2 #tcp #tls #tls-tunnel #tunnel #proxy #local-machine notaryproject/notary — Notary is a project that allows anyone to have trust over arbitrary collections of data (archived) (stale) Go · ⭐ 3.3k #docker #trust #cncf koding/kite — Micro-service framework in Go (stale) Go · ⭐ 3.3k #go #web-framework #discovery-service #authentication-backend hairyhenderson/gomplate — A flexible commandline tool for template rendering. Supports lots of local and remote datasources. Go · ⭐ 3.2k #golang #template #cli #cloud #config #go #docker #devops #devops-tools #consul teler-sh/teler — Real-time HTTP Intrusion Detection (archived) (stale) Go · ⭐ 3.1k #threat-hunting #threat-intelligence #ids #intrusion-detection-system #threat-analyzer #go #golang #intrusion-detection #intrusion #threat pulumi/kubespy — Tools for observing Kubernetes resources in real time, powered by Pulumi. Go · ⭐ 3.1k ContainerSSH/ContainerSSH — ContainerSSH: Launch containers on demand Go · ⭐ 3.1k #docker #ssh #containers #kubernetes #security-tools #devsecops #security samber/cc-skills-golang — 🧑‍🎨 A collection of Golang agentic skills that works Go · ⭐ 3k #agent #ai #antigravity #claude #claude-code #code #codex #coding #copilot #cursor eko/gocache — ☔️ A complete Go cache library that brings you multiple ways of managing your caches Go · ⭐ 2.9k #go #golang #cache #memcache #redis #memory #ristretto #bigcache #chain #hacktoberfest bits-and-blooms/bloom — Go package implementing Bloom filters, used by many important systems Go · ⭐ 2.8k #bloom #bloom-filters #go hpcloud/tail — Go package for reading from continously updated files (tail -f) (stale) Go · ⭐ 2.8k bluele/gcache — An in-memory cache library for golang. It supports multiple eviction policies: LRU, LFU, ARC (stale) Go · ⭐ 2.7k #go #golang #cache #in-memory #arc #lru #lfu kubernetes/git-sync — A sidecar app which clones a git repo and keeps it in sync with the upstream. Shell · ⭐ 2.7k Bearer/bearer — Code security scanning tool (SAST) to discover, filter and prioritize security and privacy risks. Go · ⭐ 2.7k #appsec #compliance #devsecops #devsecops-tools #security #security-tools #dataflow #gdpr #privacy #sast vmihailenco/msgpack — msgpack.org[Go] MessagePack encoding for Golang (stale) Go · ⭐ 2.7k #go #golang #encoding #msgpack #serialization hashicorp/yamux — Golang connection multiplexing library Go · ⭐ 2.7k hashicorp/go-multierror — A Go (golang) package for representing a list of errors as a single error. Go · ⭐ 2.6k cockroachdb/errors — Go error library with error portability over the network Go · ⭐ 2.5k ying32/govcl — Cross-platform Go/Golang GUI library. (stale) Go · ⭐ 2.4k #golang #ui #goui #golangui #golcl #go #lazarus #gui #gogui #go-ui VictoriaMetrics/fastcache — Fast thread-safe inmemory cache for big number of entries in Go. Minimizes GC overhead Go · ⭐ 2.4k #golang #go #cache #inmemory-cache #fast #caching #caching-library josephburnett/jd — JSON diff and patch Go · ⭐ 2.3k #diff #json #patch #yaml gocarina/gocsv — The GoCSV package aims to provide easy CSV serialization and deserialization to the golang programming language Go · ⭐ 2.2k projectcapsule/capsule — Multi-tenancy and policy-based framework for Kubernetes. Go · ⭐ 2.2k #kubernetes #multi-tenancy #operator #tenant #namespaces #kubernetes-namespaces #multi-tenant-operator #kubernetes-operator cespare/xxhash — A Go implementation of the 64-bit xxHash algorithm (XXH64) (stale) Go · ⭐ 2.1k klauspost/reedsolomon — Reed-Solomon Erasure Coding in Go Assembly · ⭐ 2.1k thomaspoignant/go-feature-flag — GO Feature Flag is a simple, complete and lightweight self-hosted cloud native feature flag solution 100% Open Source — built on OpenFeature 🎛️ Go · ⭐ 2.1k #feature-flags #feature-toggles #feature-flag #feature-toggle #feature-toggling #continuous-delivery #continuous-deployment #continuous-testing #variants #toggles go-critic/go-critic — The most opinionated Go source code linter for code audit. Go · ⭐ 2.1k #linter #golang #go #style-checker #conventions #idiomatic-go #lintpack #go-lintpack #hacktoberfest #ruleguard minio/simdjson-go — Golang port of simdjson: parsing gigabytes of JSON per second Go · ⭐ 2k #tape #tape-format #json-files #simdjson #golang-standard #json-document #ndjson blugelabs/bluge — indexing library for Go (stale) Go · ⭐ 2k matryer/is — Professional lightweight testing mini-framework for Go. (stale) Go · ⭐ 2k #golang #testing loong/go-concurrency-exercises — Hands on exercises with real-life examples to study and practice Go concurrency patterns. Test-cases are provided to verify your answers. (stale) Go · ⭐ 2k tinylib/msgp — A Go code generator for MessagePack / msgpack.org[Go] Go · ⭐ 1.9k denisenkom/go-mssqldb — Microsoft SQL server driver written in go language (stale) Go · ⭐ 1.9k destel/rill — Go toolkit for clean, composable, channel-based concurrency Go · ⭐ 1.8k #concurrency #functional-programming #goroutines #channels #generics #go #golang #pipeline #streaming rotisserie/eris — Error handling library with readable stack traces and flexible formatting support 🎆 (stale) Go · ⭐ 1.8k #errors #error-handling #error-logging #go #golang #sentry-integration #eris #error-traces loov/goda — Go Dependency Analysis toolkit Go · ⭐ 1.7k #go #dependency-analysis lileio/lile — Easily generate gRPC services in Go ⚡️ (stale) Go · ⭐ 1.5k #grpc #go #microservice #prometheus #zipkin #pubsub #framework Masterminds/semver — Work with Semantic Versions in Go Go · ⭐ 1.4k #semantic-versions #semver #golang #go #constraints #comparison #tilde #caret akrylysov/pogreb — Embedded key-value store for read-heavy workloads written in Go Go · ⭐ 1.4k #go #key-value #hash-table #key-value-store hexdigest/gowrap — GoWrap is a command line tool for generating decorators for Go interfaces Go · ⭐ 1.3k #golang-tools #golang #go #code-generation #interface #interfaces #decorators #prometheus #prometheus-metrics #logrus lmittmann/tint — 🌈 slog.Handler that writes tinted (colorized) logs Go · ⭐ 1.3k #golang #logging #slog #ansi #color denji/golang-tls — Simple Golang HTTPS/TLS Examples (stale) ⭐ 1.3k #http2 #https-server #https #httpclient #golang #go #openssl #libressl #awesome #tools smocker-dev/smocker — Smocker is a simple and efficient HTTP mock server and proxy TypeScript · ⭐ 1.3k #mock-server #go #integration-testing #test #mock #api #react #typescript #functional-testing #proxy joomcode/errorx — A comprehensive error handling library for Go (stale) Go · ⭐ 1.3k #go #error-handling #stack-traces #errors pebbe/zmq4 — A Go interface to ZeroMQ version 4 (stale) Go · ⭐ 1.3k kisielk/godepgraph — A Go dependency graph visualization tool (stale) Go · ⭐ 1.3k klauspost/pgzip — Go parallel gzip (de)compression Go · ⭐ 1.2k uber-go/multierr — Combine one or more Go errors together (stale) Go · ⭐ 1.2k #golang #go #errors cenkalti/rain — 🌧 BitTorrent client and library in Go Go · ⭐ 1.1k #torrent #bittorrent #p2p #golang iximiuz/client-go-examples — A collection of mini-programs demonstrating Kubernetes client-go usage. Go · ⭐ 1.1k #kubernetes #client-go #kubernetes-client #kubernetes-api ztrue/tracerr — Golang errors with stack trace and source fragments. Go · ⭐ 1.1k #golang #go #stacktrace #debug #error-handling #errors #errors-log #source-map carvel-dev/kapp — kapp is a simple deployment tool focused on the concept of \u0026#34;Kubernetes application\u0026#34; — a set of resources with the same label Go · ⭐ 1.1k #kubernetes #devops #cli #go #deployment #kubernetes-deployment #k8s #continious-delivery #gitops #carvel blang/semver — Semantic Versioning (semver) library written in golang (stale) Go · ⭐ 1k #semver #go #golang #semantic-versioning #semantic-versions samber/oops — 🔥 Error handling library with context, assertion, stack trace and source fragments Go · ⭐ 981 #attributes #context #error #exception #go #handling #logger #logrus #logrus-fomatter #slog jmattheis/goverter — Generate type-safe Go converters by defining function signatures. Go · ⭐ 869 #golang #go #converter #struct #generator #code-generation #copy fclairamb/ftpserver — Golang based autonomous FTP server with SFTP, S3, Dropbox, and Google Drive connectors. Go · ⭐ 792 #golang #ftp-server #s3 #afero #google-drive #ftp #go joncrlsn/dque — dque is a fast, embedded, durable queue for Go (stale) Go · ⭐ 792 go-test/deep — Golang deep variable equality test that returns human-readable differences Go · ⭐ 787 #golang-testing #deep-equals #variable-equality #golang gammazero/deque — Fast ring-buffer deque (double-ended queue) Go · ⭐ 785 #deque #queue #ring-buffer #circular-buffer #circular-queue sethvargo/go-limiter — A supersonic rate limiting package for Go with HTTP middleware. Go · ⭐ 722 VictoriaMetrics/metrics — Lightweight alternative to github.com/prometheus/client_golang Go · ⭐ 706 #prometheus #metrics #lightweight #fast #histograms wk8/go-ordered-map — Optimal implementation of ordered maps for Golang - ie maps that remember the order in which keys were inserted. (stale) Go · ⭐ 674 smallnest/ringbuffer — a thread-safe circular buffer (ring buffer) in Go, implemented io.ReaderWriter interface Go · ⭐ 640 eapache/queue — Fast golang queue using ring-buffer (stale) Go · ⭐ 637 beyondstorage/go-storage — A vendor-neutral storage library for Golang: Write once, run on every storage service. (stale) Go · ⭐ 620 #storage #golang #qingstor #fs #s3 #gcs #azblob #cloud-storage #files #dropbox zeebo/xxh3 — XXH3 algorithm in Go Go · ⭐ 577 nikepan/clickhouse-bulk — Collects many small inserts to ClickHouse and send in big inserts Go · ⭐ 512 #clickhouse #clickhouse-server #clickhouse-bulk uudashr/gocognit — Calculates cognitive complexities of functions (and methods) in Go source code. (Golang cognitive complexity) Go · ⭐ 486 #go #golang #tool #linter #complexity #cognitive #metrics valyala/gozstd — go wrapper for zstd C · ⭐ 476 #zstd #compression #go #golang #streaming #dictionary go-chi/httprate — net/http rate limiter middleware Go · ⭐ 474 OneOfOne/xxhash — A native implementation of the excellent XXHash hashing algorithm. (stale) Go · ⭐ 445 iancoleman/orderedmap — orderedmap is a golang map where the keys keep the order that they\u0026#39;re added. It can be de/serialized from/to JSON. It\u0026#39;s based closely on the python collections.OrderedDict. (stale) Go · ⭐ 406 coreos/go-semver — semver library in Go Go · ⭐ 366 powerman/go-monolith-example — Example Go monolith with embedded microservices and The Clean Architecture (stale) Go · ⭐ 352 #monolith #embedded-microservices #microservices #go #golang #clean-architecture #clean-code #architecture ahmetb/gen-crd-api-reference-docs — API Reference Docs generator for Kubernetes CRDs (used by Knative, Kubeflow and others) Go · ⭐ 332 #crd #crds #kubernetes-api #kubebuilder #operator-sdk cockroachdb/cockroach-operator — k8s operator for CRDB Go · ⭐ 318 polyfloyd/go-errorlint — Moved to https://codeberg.org/polyfloyd/go-errorlint (archived) Go · ⭐ 314 #golang #linter jeremiah-masters/dlht — High-performance, lock-free concurrent hash table in Go, based on DLHT, with cooperative resizing and cache-efficient buckets Go · ⭐ 291 elastic/go-freelru Go · ⭐ 272 #cache #data-structures #go #golang #library #lru #gc-less fiorix/go-smpp — SMPP 3.4 Protocol for the Go programming language Go · ⭐ 253 klauspost/readahead — Asynchronous read-ahead for Go readers (stale) Go · ⭐ 243 eatonphil/goraft — A basic Raft implementation in Go. (stale) Go · ⭐ 240 hedhyw/json-log-viewer — Interactive viewer for JSON logs. Go · ⭐ 232 #bubbletea #go #golang #interactive #json #json-logging #json-logs #terminal #viewer #logs sonatard/noctx — noctx finds function calls without context.Context. Go · ⭐ 230 anatol/smart.go — Pure-Go library to access drive\u0026#39;s S.M.A.R.T. information Go · ⭐ 218 tommy-muehle/go-mnd — Magic number detector for Go. (stale) Go · ⭐ 208 #magic-numbers #static-analysis #analysis #detector #code-checker #go #golang #cli #go-vet depado/gin-auth-example — Example cookie-based authentication with Gin Go · ⭐ 184 thanos-io/objstore — Go module providing unified interface and efficient clients to work with various object storage providers until like GCS, S3, Azure, SWIFT, COS and more. Go · ⭐ 183 #azure-storage #gcs #minio #object-storage #s3 #swift koltyakov/gosip — ⚡️ SharePoint SDK for Go Go · ⭐ 170 #sharepoint #sharepoint-online #golang #go #authentication #client #api #rest #fluent-api #golang-library minio/minlz — MinLZ is a LZ77 compressor, focused on realtime data compression Go · ⭐ 151 #compression #lz4 #lz77 #snappy #throughput #throughput-performance #golang #golang-package cxuu/golang-skills — AI Agent Skills for idiomatic, production-ready Go code, distilled from Google, Uber, Community HTML · ⭐ 142 #ai-agent #ai-assistant #go #golang #agent-skills #llm #claude #claude-code #codex #cursor shaj13/raft — raft is a golang library that provides a simple, clean, and idiomatic implementation of the Raft consensus protocol (stale) Go · ⭐ 138 #golang #go #raft-consensus-algorithm #raft #write-ahead-log #consensus #raft-algorithm #raft-protocol samber/slog-sampling — 🚨 slog sampling: drop repetitive log records Go · ⭐ 116 #go #golang #handler #log-level #logger #logging #middleware #rate-limiting #sampling #slog crumbhole/argocd-vault-replacer — An Argo CD plugin to replace placeholders in Kubernetes manifests with secrets stored in Hashicorp Vault. Go · ⭐ 108 #kubernetes #vault #secrets #gitops #argocd butuzov/ireturn — Accept Interfaces, Return Concrete Types Go · ⭐ 87 #linter #interfaces #go #golangci-lint madflojo/go-style-agent-skill — Agent Skill for writing Golang code Makefile · ⭐ 35 #agent-skills samber/slog-slack — 🚨 slog: Slack handler Go · ⭐ 23 #attribute #error #errors #go #golang #handler #log #log-level #logger #middleware war1oc/jwt-auth — A tutorial for implementing JWT authentication in Golang (stale) Go · ⭐ 18 or-shachar/go-tool-cache Go · ⭐ 15 danielloader/waggle — Local OpenTelemetry viewer with Honeycomb-style query builder — OTLP/HTTP ingest into SQLite, trace waterfall, FTS5 log search. Single static binary. Go · ⭐ 14 #developer-tools #distributed-tracing #go #golang #honeycomb #logs #observability #opentelemetry #otel #otlp sivaprasadreddy/go-for-spring-boot-developers — Go for Spring Boot Developers (stale) Go · ⭐ 10 Graph Databases surrealdb/surrealdb — A scalable, distributed, collaborative, document-graph database, for the realtime web Rust · ⭐ 32.9k #database #distributed #distributed-database #document-database #realtime-database #cloud-database #backend-as-a-service #database-as-a-service #serverless #web geldata/gel — Gel supercharges Postgres with a modern data model, graph queries, Auth \u0026amp; AI solutions, and much more. Python · ⭐ 14.2k #database #edgedb #high-performance #edgeql #relational-database #graph-relational #gel memgraph/memgraph — High-performance open-source in-memory graph database for GraphRAG, AI memory, agentic AI, and real-time graph analytics. Cypher-compatible, built in C\u0026#43;\u0026#43;. C\u0026#43;\u0026#43; · ⭐ 4.3k #graph-algorithms #graph-database #graph-analysis #kafka #cypher #graph #opencypher #ai #graphrag #ai-agents Investment HKUDS/Vibe-Trading — \u0026#34;Vibe-Trading: Your Personal Trading Agent\u0026#34; Python · ⭐ 30.9k #backtesting #multi-agent #quantitative-finance #trading #ai-agent #algorithmic-trading #fintech #llm #mcp #python Fincept-Corporation/FinceptTerminal — FinceptTerminal is a modern finance application offering advanced market analytics, investment research, and economic data tools, designed for interactive exploration and data-driven decision-making in a user-friendly environment. C\u0026#43;\u0026#43; · ⭐ 30.3k #bloomberg-terminal #finance #financial-markets #investment #investment-research #machine-learning #python #quantitative-finance #stock-market #opensource ranaroussi/yfinance — Download market data from Yahoo! Finance\u0026#39;s API Python · ⭐ 25k #python #pandas #yahoo-finance-api #yahoo-finance #stock-data #market-data #financial-data #fix-yahoo-finance paperswithbacktest/awesome-systematic-trading — A curated list of awesome libraries, packages, strategies, books, blogs, tutorials for systematic trading. (stale) Python · ⭐ 13.3k #finance #awesome #book #paper #trading-bot #algotrading #quant #awesome-list #trading-strategies #trading-algorithms ghostfolio/ghostfolio — Open Source Wealth Management Software. Angular \u0026#43; NestJS \u0026#43; Prisma \u0026#43; Nx \u0026#43; TypeScript 🤍 TypeScript · ⭐ 9.1k #wealth-management #web #software #angular #typescript #prisma #portfolio #etf #stock #nestjs myinvestpilot/invest-alchemy — Invest Alchemy is a trading assistant focused on ETF portfolios. Python · ⭐ 768 #investment #tushare #aws #serverless #terraform #docker #echarts #nextjs #postgresql #reactjs dickwolff/Export-To-Ghostfolio — Convert transaction history export from your favorite broker to a format that can be imported in Ghostfolio. TypeScript · ⭐ 215 #ghostfolio #ghostfolio-plugin #degiro #trading212 #etoro #rabobank #schwab #swissquote #finpension #ibkr druzsan/justetf-scraping — Scraping the justETF Python · ⭐ 129 #etf #justetf #parsing #python #scraping #stocks Java \u0026amp; JVM TheAlgorithms/Java — All Algorithms implemented in Java Java · ⭐ 66.2k #java #algorithms #algorithms-datastructures #algorithm-challenges #sorting-algorithms #search #sort #hacktoberfest #algorithm #data-structures ReactiveX/RxJava — RxJava – Reactive Extensions for the JVM – a library for composing asynchronous and event-based programs using observable sequences for the Java VM. Java · ⭐ 48.2k #java #rxjava #flow #reactive-streams Netflix/Hystrix — Hystrix is a latency and fault tolerance library designed to isolate points of access to remote systems, services and 3rd party libraries, stop cascading failure and enable resilience in complex distributed systems where failure is inevitable. Java · ⭐ 24.5k signalapp/Signal-Server — Server supporting the Signal Private Messenger applications on Android, Desktop, and iOS Java · ⭐ 10.7k flyway/flyway — Flyway by Redgate • Database Migrations Made Easy. Java · ⭐ 10k #flyway #java #database-migrations #java-library #continuous-delivery #devops #sql #continuous-deployment #database #database-deployment reactor/reactor-core — Non-Blocking Reactive Foundation for the JVM Java · ⭐ 5.2k #reactive #flux #mono #reactive-streams #flow #asynchronous #reactive-extensions #jvm JCTools/JCTools Java · ⭐ 3.9k #concurrency #data-structures #queues #lock-free #wait-free #awesome #java #benchmarks fabric8io/kubernetes-client — Java client for Kubernetes \u0026amp; OpenShift Java · ⭐ 3.7k #kubernetes #openshift #java-client #kubernetes-client #mocking-kubernetes #kubernetes-model #openshift-client #dsl #mock-server #java apache/maven-mvnd — Apache Maven Daemon Java · ⭐ 3.5k #java #build-management #apache-maven #maven jobrunr/jobrunr — An extremely easy way to perform background processing in Java. Backed by persistent storage. Open and free for commercial use. Java · ⭐ 3.1k #java-8 #background-jobs #parallel-processing #scheduling #scheduled-jobs #java #quartz #scheduler #java-scheduler bucket4j/bucket4j — Java rate limiting library based on token-bucket algorithm. Java · ⭐ 2.8k #token-bucket #hazelcast #rate-limiter #apache-ignite #jcache #infinispan #rate-limit #rate-limiting #oracle-coherence lz4/lz4-java — LZ4 compression for Java (archived) Java · ⭐ 1.2k #lz4-compression #jni-bindings #java #compressor #lz4-java #decompression #lz4-compressors Kotlin/dataframe — Kotlin DataFrame: typesafe in-memory structured data processing for JVM Kotlin · ⭐ 1.1k #dataframe #data-science #kotlin #data-analysis OpenHFT/Zero-Allocation-Hashing — Zero-allocation hashing for Java Java · ⭐ 845 #java #hashing #high-performance #farmhash #murmurhash3 #cityhash #xxhash #hash-functions #openhft Backblaze/JavaReedSolomon — Backblaze Reed-Solomon Implementation in Java (stale) Java · ⭐ 825 #non-production tginsberg/gatherers4j — A library of useful Stream Gatherers (custom intermediate operations) for Java. Java · ⭐ 182 #gatherer #gatherers #java #java-25 #java25 sivaprasadreddy/go-for-spring-boot-developers — Go for Spring Boot Developers (stale) Go · ⭐ 10 Kafka provectus/kafka-ui — Open-Source Web UI for Apache Kafka Management (stale) Java · ⭐ 12.3k #kafka-ui #kafka-brokers #kafka #kafka-streams #kafka-client #opensource #kafka-connect #kafka-producer #streams #big-data redpanda-data/console — Redpanda Console is a developer-friendly UI for managing your Kafka/Redpanda workloads. Console gives you a simple, interactive approach for gaining visibility into your topics, masking data, managing consumer groups, and exploring real-time data with time-travel debugging. TypeScript · ⭐ 4.3k #apache-kafka #dataops #react #typescript #kafka-ui #kafka-gui #web-ui #go #kafka segmentio/topicctl — Tool for declarative management of Kafka topics Go · ⭐ 666 Kubernetes louislam/uptime-kuma — A fancy self-hosted monitoring tool JavaScript · ⭐ 90.2k #uptime #monitoring #docker #selfhosted #self-hosted #single-page-app #webapp #responsive #websocket #socket-io grafana/grafana — The open and composable observability and data visualization platform. Visualize metrics, logs, and traces from multiple sources like Prometheus, Loki, Elasticsearch, InfluxDB, Postgres and many more. TypeScript · ⭐ 76.3k #grafana #monitoring #analytics #metrics #influxdb #prometheus #elasticsearch #alerting #data-visualization #go caddyserver/caddy — Fast and extensible multi-platform HTTP/1-2-3 web server with automatic HTTPS Go · ⭐ 74.9k #go #web-server #caddyfile #http #http-server #reverse-proxy #https #tls #automatic-https #privacy traefik/traefik — The Cloud Native Application Proxy Go · ⭐ 64.4k #microservice #docker #marathon #mesos #consul #etcd #kubernetes #load-balancer #reverse-proxy #zookeeper etcd-io/etcd — Distributed reliable key-value store for the most critical data of a distributed system Go · ⭐ 52.1k #etcd #raft #distributed-systems #kubernetes #go #database #key-value #consensus #distributed-database #cncf kelseyhightower/kubernetes-the-hard-way — Bootstrap Kubernetes the hard way. No scripts. (stale) ⭐ 49.5k Kong/kong — 🦍 The API and AI Gateway Lua · ⭐ 44k #api-gateway #microservices #api-management #serverless #apis #reverse-proxy #cloud-native #microservice #devops #kubernetes portainer/portainer — Making Docker and Kubernetes management easy. TypeScript · ⭐ 38.2k #docker #docker-swarm #ui #docker-deployment #docker-compose #docker-container #docker-image #portainer #docker-ui #dockerfile derailed/k9s — 🐶 Kubernetes CLI To Manage Your Clusters In Style! Go · ⭐ 34.4k #k9s #kubernetes #kubernetes-cli #kubernetes-clusters #k8s #k8s-cluster #go #golang backstage/backstage — Backstage is an open framework for building developer portals TypeScript · ⭐ 34.2k #infrastructure #dx #developer-experience #developer-portal #microservices #cncf #backstage #self-service-portal #hacktoberfest apolloconfig/apollo — Apollo is a reliable configuration management system suitable for microservice configuration management scenarios. Java · ⭐ 29.8k #configuration-management #spring-boot #config-management #microservices #spring-cloud #distributed-configuration grafana/loki — Like Prometheus, but for logs. Go · ⭐ 28.7k #loki #grafana #prometheus #logging #cloudnative #hacktoberfest cilium/cilium — eBPF-based Networking, Security, and Observability Go · ⭐ 24.9k #containers #bpf #security #kubernetes #kubernetes-networking #cni #kernel #loadbalancing #monitoring #troubleshooting argoproj/argo-cd — Declarative Continuous Deployment for Kubernetes Go · ⭐ 23.9k #argo #kubernetes #continuous-deployment #gitops #continuous-delivery #docker #cd #cicd #pipeline #devops getsops/sops — Simple and flexible tool for managing secrets Go · ⭐ 22.8k #security #secret-distribution #devops #aws #pgp #gcp #secret-management #azure #sops vectordotdev/vector — A high-performance observability data pipeline. Rust · ⭐ 22.4k #logs #metrics #observability #forwarder #events #stream-processing #hacktoberfest #rust-lang #traces #pipelines temporalio/temporal — Temporal service Go · ⭐ 22.3k #workflows #workflow-engine #workflow-automation #workflow-management #workflow-management-system #distributed-systems #golang #service-bus #service-fabric #microservices-architecture GoogleCloudPlatform/microservices-demo — Sample cloud-first application with 10 microservices showcasing Kubernetes, Istio, and gRPC. Go · ⭐ 20.8k #kubernetes #grpc #istio #gke #skaffold #sample-application #google-cloud #samples #gcp #kustomize google/cadvisor — Analyzes resource usage and performance characteristics of running containers. Go · ⭐ 19.4k kubernetes-sigs/kubespray — Deploy a Production Ready Kubernetes Cluster Jinja · ⭐ 18.7k #kubernetes-cluster #ansible #kubernetes #high-availability #bare-metal #gce #aws #kubespray #k8s-sig-cluster-lifecycle #hacktoberfest VictoriaMetrics/VictoriaMetrics — VictoriaMetrics: fast, cost-effective monitoring solution and time series database Go · ⭐ 17.5k #tsdb #prometheus #promql #influxdb #graphite #opentsdb #database #thanos #observability #monitoring Netflix/chaosmonkey — Chaos Monkey is a resiliency tool that helps applications tolerate random instance failures. (stale) Go · ⭐ 17.1k kubernetes/kops — Kubernetes Operations (kOps) - Production Grade k8s Installation, Upgrades and Management Go · ⭐ 16.7k #kubernetes #go #cncf #containers #kops kubeflow/kubeflow — Machine Learning Toolkit for Kubernetes ⭐ 15.8k #ml #kubernetes #minikube #tensorflow #notebook #google-kubernetes-engine #jupyter #machine-learning #kubeflow GoogleContainerTools/kaniko — Build Container Images In Kubernetes (archived) (stale) Go · ⭐ 15.8k #containers #docker #developer-tools #kubernetes kubernetes-retired/dashboard — General-purpose web UI for Kubernetes clusters (archived) Go · ⭐ 15.4k kubernetes-sigs/kind — Kubernetes IN Docker - local clusters for testing Kubernetes Go · ⭐ 15.4k #k8s-sig-testing #kubernetes #kubeadm #golang #docker #podman loft-sh/devpod — Codespaces but open-source, client-only and unopinionated: Works with any IDE and lets you use any cloud, kubernetes or just localhost docker. Go · ⭐ 15.1k #cloud #devcontainer #devcontainers #developer-tools #development #docker #ide #kubernetes #remote-development #remote-development-environment oauth2-proxy/oauth2-proxy — A reverse proxy that provides authentication with Google, Azure, OpenID Connect and many more identity providers. Go · ⭐ 14.8k #cloud-infrastructure #oauth2-proxy #ssl #sso #hacktoberfest bytebase/bytebase — Database governance built for humans and agents — controlling changes and access across every major database. Go · ⭐ 14.4k #mysql #tidb #postgresql #cicd #sql-client #oracle #sqlserver #schema-migrations #gitops #flyway amir20/dozzle — Realtime log viewer for containers. Supports Docker, Swarm and K8s. Go · ⭐ 14.1k #log #docker #golang #real-time #docker-container #logging #logging-server #sever-events #vuejs #k8s cert-manager/cert-manager — Automatically provision and manage TLS certificates in Kubernetes Go · ⭐ 14k #kubernetes #letsencrypt #tls #certificate #crd #hacktoberfest anchore/grype — A vulnerability scanner for container images and filesystems Go · ⭐ 12.7k #containers #security #vulnerability #docker #golang #go #static-analysis #container-image #tool #oci open-policy-agent/opa — Open Policy Agent (OPA) is an open source, general-purpose policy engine. Go · ⭐ 12.1k #opa #policy #declarative #json #compliance #cloud-native #authorization #open-policy-agent kubeshark/kubeshark — eBPF-powered network observability for Kubernetes. Indexes L4/L7 traffic with full K8s context, decrypts TLS without keys. Queryable by AI agents via MCP and humans via dashboard. Go · ⭐ 12k #kubernetes #golang #rest #grpc #devops #sniffer #observability #wireshark #cloud-native #docker kubescape/kubescape — Kubescape is an open-source Kubernetes security platform for your IDE, CI/CD pipelines, and clusters. It includes risk analysis, security, compliance, and misconfiguration scanning, saving Kubernetes users and administrators precious time, effort, and resources. Go · ⭐ 11.6k #kubernetes #security #nsa #mitre-attack #devops #best-practice #vulnerability-detection meshery/meshery — Meshery, the cloud native manager TypeScript · ⭐ 11.5k #meshery #management-plane #hacktoberfest #kubernetes #gsoc #control-plane #cloud-native #golang #cncf #reactjs linkerd/linkerd2 — Ultralight, security-first service mesh for Kubernetes. Main repo for Linkerd 2.x. Go · ⭐ 11.5k #service-mesh #rust #golang #kubernetes #linkerd #cloud-native loft-sh/vcluster — vCluster - Create fully functional virtual Kubernetes clusters - Each vcluster runs inside a namespace of the underlying k8s cluster. It\u0026#39;s cheaper than creating separate full-blown clusters and it offers better multi-tenancy and isolation than regular namespaces. Go · ⭐ 11.3k #kubernetes #vcluster #virtual-clusters #multi-tenancy #cloud-native #platform-engineering #helm #kubectl #k8s #k3s dexidp/dex — OpenID Connect (OIDC) identity and OAuth 2.0 provider with pluggable connectors Go · ⭐ 11k #oidc #kubernetes #idp #identity-provider #hacktoberfest nicolaka/netshoot — a Docker \u0026#43; Kubernetes network trouble-shooting swiss-army container Shell · ⭐ 10.9k #network #containers #kubernetes #docker #troubleshooting #network-namespace siderolabs/talos — Talos Linux is a modern Linux distribution built for Kubernetes. Go · ⭐ 10.9k #linux #linux-distribution #kubernetes #kubernetes-distribution #go #musl #grpc #cloud-native #containerd kedacore/keda — KEDA is a Kubernetes-based Event Driven Autoscaling component. It provides event driven scale for any container running in Kubernetes Go · ⭐ 10.4k #kubernetes #serverless #autoscaling #event-driven #keda #hacktoberfest stakater/Reloader — A Kubernetes controller to watch changes in ConfigMap and Secrets and do rolling upgrades on Pods with their associated Deployment, StatefulSet, DaemonSet and DeploymentConfig – [✩Star] if you\u0026#39;re using it! Go · ⭐ 10.3k #kubernetes #openshift #configmap #secrets #pods #deployments #daemonset #statefulsets #k8s #watch-changes velero-io/velero — Backup and migrate Kubernetes applications and their persistent volumes Go · ⭐ 10.2k #kubernetes #disaster-recovery #backup #velero #hacktoberfest kubernetes/client-go — Go client for Kubernetes. Go · ⭐ 9.9k #k8s-staging openebs/openebs — A popular \u0026amp; widely deployed Open Source Container Native Storage platform for Stateful Persistent Applications on Kubernetes. ⭐ 9.8k #storage #storage-container #persistent-storage #docker #pod #devops #k8s #kubernetes #ebs #ebs-volumes canonical/microk8s — MicroK8s is a small, fast, single-package Kubernetes for datacenters and the edge. Python · ⭐ 9.4k #kubernetes #snap #iot #cicd #developer-workstations #k8s #hacktoberfest kubernetes-sigs/kubebuilder — Kubebuilder - SDK for building Kubernetes APIs using CRDs Go · ⭐ 9.3k #k8s-sig-api-machinery falcosecurity/falco — Cloud Native Runtime Security C\u0026#43;\u0026#43; · ⭐ 9.3k #cncf #containers #security #falco #ebpf #kubernetes #hacktoberfest #cloud-native #cncf-project #runtime-security cloudnative-pg/cloudnative-pg — The most popular Kubernetes Operator for PostgreSQL. Go · ⭐ 9.1k #postgres #postgresql #kubernetes #k8s #database #sql #operator #database-management #high-availability #self-healing aquasecurity/kube-bench — Checks whether Kubernetes is deployed according to security best practices as defined in the CIS Kubernetes Benchmark Go · ⭐ 8.1k #kube-bench #cis-security #kubernetes-security #cis-benchmark #cis-kubernetes-benchmark #openshift #kubernetes #hacktoberfest kyverno/kyverno — Unified Policy as Code Go · ⭐ 8k #kubernetes #compliance #governance #policy-as-code #security fluent/fluent-bit — Fast and Lightweight Logs, Metrics and Traces processor for Linux, BSD, OSX and Windows C · ⭐ 8k #fluentd #c #logging #data-collector #fluent-bit #forwarder #cloudnative #stream-processing #sql-queries #metrics longhorn/longhorn — Cloud-Native distributed storage built on and for Kubernetes Shell · ⭐ 7.9k #kubernetes #longhorn #k8s-sig-storage #distributed-systems #high-availability #storage #cncf coroot/coroot — Coroot is an open-source observability and APM tool with AI-powered Root Cause Analysis. It combines metrics, logs, traces, continuous profiling, and SLO-based alerting with predefined dashboards and inspections. Go · ⭐ 7.9k #dashboard #database-monitoring #metrics #monitoring #observability #prometheus #service-map #microservice #ebpf #alerting GoogleCloudPlatform/kubectl-ai — AI powered Kubernetes Assistant Go · ⭐ 7.5k #ai #assistant #cli #kubernetes telepresenceio/telepresence — Local development against a remote Kubernetes or OpenShift cluster Go · ⭐ 7.3k #kubernetes #local-development #docker #proxy #tunnel #vpn #minikube kubernetes-sigs/headlamp — A Kubernetes web UI that is fully-featured, user-friendly and extensible TypeScript · ⭐ 7.1k #kinvolk #kubernetes #headlamp #plugins #dashboard #kubernetes-ui #cloud-native #debugging #k8s #kubernetes-dashboard external-secrets/external-secrets — External Secrets Operator reads information from a third-party service like AWS Secrets Manager and automatically injects the values as Kubernetes Secrets. Go · ⭐ 6.8k #external-secrets #kubernetes #kubernetes-secrets #secrets-manager #hacktoberfest uber/kraken — P2P Docker registry capable of distributing TBs of data in seconds Go · ⭐ 6.7k #docker #docker-registry #container #docker-image #p2p #bittorrent #containerd k0sproject/k0s — k0s - The Zero Friction Kubernetes Go · ⭐ 6.4k #kubernetes derailed/popeye — 👀 A Kubernetes cluster resource sanitizer (stale) Go · ⭐ 6.3k #popeye #kubernetes-clusters #sanitizers #sanitize-resources #misconfigurations #kubernetes-resources #k8s #golang #go prometheus-community/helm-charts — Prometheus community Helm charts Mustache · ⭐ 6.2k #prometheus #helm #charts #helm-charts #kubernetes volcano-sh/volcano — A Cloud Native Batch System (Project under CNCF) Go · ⭐ 5.9k #batch-systems #kubernetes #golang #hpc #bigdata #machine-learning #gene #ai #serving #training letsencrypt/boulder — An ACME-based certificate authority, written in Go. Go · ⭐ 5.7k #boulder #go #acme #certificate-authority #tls #lets-encrypt #ca #pki #rfc8555 grafana/tempo — Grafana Tempo is a high volume, minimal dependency distributed tracing backend. Go · ⭐ 5.4k #distributed-tracing #grafana fluxcd/flagger — Progressive delivery Kubernetes operator (Canary, A/B Testing and Blue/Green deployments) Go · ⭐ 5.4k #progressive-delivery #kubernetes #gitops #canary #ab-testing #istio #aws-appmesh #linkerd #nginx #gloo grafana/mimir — Grafana Mimir provides horizontally scalable, highly available, multi-tenant, long-term storage for Prometheus. Go · ⭐ 5.2k #prometheus #metrics #tsdb #opentelemetry #otlp #observability vmware-tanzu/kubeapps — A web-based UI for deploying and managing applications in Kubernetes clusters (archived) Go · ⭐ 5.1k #carvel #deployment #flux #helm #kubernetes aquasecurity/kube-hunter — Hunt for security weaknesses in Kubernetes clusters (stale) Python · ⭐ 5.1k #vulnerabilities #kubernetes-clusters #hacktoberfest cilium/tetragon — eBPF-based Security Observability and Runtime Enforcement C · ⭐ 4.9k #bpf #ebpf #kernel #kubernetes #security cdk8s-team/cdk8s — Define Kubernetes native apps and abstractions using object-oriented programming JavaScript · ⭐ 4.8k sorintlab/stolon — PostgreSQL cloud native High Availability and more. (stale) Go · ⭐ 4.8k #postgresql #high-availability #golang #kubernetes #docker #cloud-native #data-consistency #synchronous-replication #declarative-config #standby-cluster robusta-dev/krr — Prometheus-based Kubernetes Resource Recommendations Python · ⭐ 4.7k #kubectl #kubernetes #metrics #monitoring #prometheus #rightsizing #vpa #cost-control #cost-saving #finops acassen/keepalived — Keepalived C · ⭐ 4.6k #vrrp #bfd #high-availability #lvs #keepalived #multiplexer #daemon #c #netlink #snmp MuhammedKalkan/OpenLens — OpenLens Binary Build Repository (stale) JavaScript · ⭐ 4.4k kubero-dev/kubero — A free and self-hosted PaaS alternative to Heroku / Netlify / Coolify / Vercel / Dokku / Portainer running on Kubernetes TypeScript · ⭐ 4.4k #kubernetes #hosting #ci-cd #operator #developer-tools #heroku #infrastructure #productivity #gitops #internal-developer-platform NVIDIA/k8s-device-plugin — NVIDIA device plugin for Kubernetes Go · ⭐ 3.8k #kubernetes doitintl/kube-no-trouble — Easily check your clusters for use of deprecated APIs (stale) Go · ⭐ 3.7k #hacktoberfest #gke #kubernetes #k8s #kube #cluster fabric8io/kubernetes-client — Java client for Kubernetes \u0026amp; OpenShift Java · ⭐ 3.7k #kubernetes #openshift #java-client #kubernetes-client #mocking-kubernetes #kubernetes-model #openshift-client #dsl #mock-server #java dotdc/grafana-dashboards-kubernetes — A set of modern Grafana dashboards for Kubernetes. ⭐ 3.6k #grafana #grafana-dashboard #grafana-prometheus #prometheus #prometheus-metrics #dashboard #dashboards #monitoring #monitoring-dashboard #grafana-dashboards omerbsezer/Fast-Kubernetes — This repo covers Kubernetes with LABs: Kubectl, Pod, Deployment, Service, PV, PVC, Rollout, Multicontainer, Daemonset, Taint-Toleration, Job, Ingress, Kubeadm, Helm, etc. (stale) PowerShell · ⭐ 3.6k #kubernetes #kubernetes-cluster #kubernetes-deployment #kubectl #microservice #pod #config-maps #kubernetes-service #replica-set #persistent-volume akuity/kargo — Application lifecycle orchestration Go · ⭐ 3.6k #argocd #gitops #k8s #kubernetes #cd #delivery #hacktoberfest #promotions argoproj/argo-rollouts — Progressive Delivery for Kubernetes Go · ⭐ 3.6k #gitops #canary #bluegreen #kubernetes #argoproj #deployments #experiments #argo-rollouts #progressive-delivery #hacktoberfest stackrox/kube-linter — KubeLinter is a static analysis tool that checks Kubernetes YAML files and Helm charts to ensure the applications represented in them adhere to best practices. Go · ⭐ 3.5k #static-analysis #yaml-files #helm-charts #kubernetes #hactoberfest #hacktoberfest collabnix/kubetools — Kubetools - Curated List of Kubernetes Tools JavaScript · ⭐ 3.5k #hacktoberfest #hacktoberfest2020 #kubernetes #helm #helmpack #helmcharts #jenkins #iot #monitoring #monitoring-tool grafana/alloy — OpenTelemetry Collector distribution with programmable pipelines Go · ⭐ 3.4k #collector #grafana #loki #monitoring #observability #opentelemetry #opentelemetry-collector #prometheus ahmetb/kubectl-tree — kubectl plugin to browse Kubernetes object hierarchies as a tree 🎄 (star the repo if you are using) Go · ⭐ 3.4k #kubectl-plugin #kubectl-plugins #kubectl FairwindsOps/goldilocks — Get your resource requests \u0026#34;Just Right\u0026#34; Go · ⭐ 3.3k #kubernetes #verticalpodautoscaler #resources #reporting #fairwinds-official dragonflyoss/dragonfly — Delivers efficient, stable, and secure data distribution and acceleration powered by P2P technology, with an optional content‑addressable filesystem that accelerates OCI container launch. Go · ⭐ 3.3k #p2p #registry #cncf #nydus #cloud-native #docker-image #containers kubeflow/spark-operator — Kubernetes operator for managing the lifecycle of Apache Spark applications on Kubernetes. Python · ⭐ 3.1k #kubernetes #kubernetes-operator #apache-spark #kubernetes-crd #kubernetes-controller #spark #google-cloud-dataproc zegl/kube-score — Kubernetes object analysis with recommendations for improved reliability and security. kube-score actively prevents downtime and bugs in your Kubernetes YAML and Charts. Static code analysis for Kubernetes. Go · ⭐ 3.1k #kubernetes #linter #ci #go #helm #charts #static-code-analysis #kube-score #security #security-scanner pulumi/kubespy — Tools for observing Kubernetes resources in real time, powered by Pulumi. Go · ⭐ 3.1k kubernetes-sigs/kro — kro | Kube Resource Orchestrator Go · ⭐ 3k #k8s-sig-cloud-provider skyhook-io/radar — The missing open-source Kubernetes UI with a built-in MCP server for AI agents. See what\u0026#39;s broken, why, and what changed. Issues, Topology, event timeline, Helm, GitOps, live service traffic, and cluster audits - all in one Go binary. Go · ⭐ 2.9k #argocd #cloud-native #gitops #helm #k8s #kubectl-plugin #kubernetes #kubernetes-dashboard #kubernetes-monitoring #kubernetes-tools kubernetes/git-sync — A sidecar app which clones a git repo and keeps it in sync with the upstream. Shell · ⭐ 2.7k philippemerle/KubeDiagrams — Generate Kubernetes architecture diagrams from Kubernetes manifest files, kustomization files, Helm charts, helmfiles, and actual cluster state JavaScript · ⭐ 2.7k #architecture #diagrams #kubernetes #graphviz #helm #helm-chart #k8s #k8s-cluster #python #helmfile nolar/kopf — A Python framework to write Kubernetes operators in just a few lines of code Python · ⭐ 2.6k #kubernetes #kubernetes-operator #kubernetes-operators #python #python3 #framework #asyncio #operator #operators #python-framework kubie-org/kubie — A more powerful alternative to kubectx and kubens Rust · ⭐ 2.6k #kubernetes #kubectl #kubectx #kubens FairwindsOps/pluto — A cli tool to help discover deprecated apiVersions in Kubernetes Go · ⭐ 2.6k #kubernetes #helm #fairwinds-official Altinity/clickhouse-operator — Altinity Kubernetes Operator for ClickHouse creates, configures and manages ClickHouse® clusters running on Kubernetes Go · ⭐ 2.6k #clickhouse-operator #kubernetes #clickhouse #kubernetes-operator utkuozdemir/pv-migrate — CLI tool to easily migrate or backup/restore Kubernetes persistent volumes Go · ⭐ 2.4k #kubernetes #persistent-volumes #persistent-volume-claims #migration #backup #bucket-storage #s3 int128/kubelogin — kubectl plugin for Kubernetes OpenID Connect authentication (kubectl oidc-login) Go · ⭐ 2.3k #kubernetes #kubectl #openid-connect #oidc #golang #kubectl-plugins kuberhealthy/kuberhealthy — A Kubernetes operator for running synthetic checks as pods. Works great with Prometheus! Go · ⭐ 2.3k #kubernetes #health #monitoring #synthetic #cicd #continuous-delivery #continuous-integration #continuous-testing #operator linode/apl-core — App Platform for Linode Kubernetes Engine Go Template · ⭐ 2.3k #kubernetes #developer-selfservice #self-hosted #gitops #lke projectcapsule/capsule — Multi-tenancy and policy-based framework for Kubernetes. Go · ⭐ 2.2k #kubernetes #multi-tenancy #operator #tenant #namespaces #kubernetes-namespaces #multi-tenant-operator #kubernetes-operator ncabatoff/process-exporter — Prometheus exporter that mines /proc to report on selected processes (stale) Go · ⭐ 2.1k #prometheus-exporter #process-metrics #go traefik/mesh — Traefik Mesh - Simpler Service Mesh Go · ⭐ 2.1k #traefik #mesh #service-mesh #service-mesh-interface #traefik-mesh containers/kubernetes-mcp-server — Model Context Protocol (MCP) server for Kubernetes and OpenShift Go · ⭐ 2k #containers #context #kubernetes #mcp #model #openshift #protocol #modelcontextprotocol #kubernetes-mcp linki/chaoskube — chaoskube periodically kills random pods in your Kubernetes cluster. Go · ⭐ 1.9k #kubernetes #chaos #chaos-monkey #chaos-engineering aquasecurity/trivy-operator — Kubernetes-native security toolkit Go · ⭐ 1.9k #cloud-native #golang #kubernetes #operator #security #misconfiguration #octoberfest #vulnerability-detection #vulnerability-scanners #security-tools kubepug/kubepug — Kubernetes PreUpGrade (Checker) Go · ⭐ 1.8k #kubernetes #kubectl-plugins #kubernetes-plugin yonahd/kor — A Golang Tool to discover unused Kubernetes Resources Go · ⭐ 1.8k #go #golang #kubernetes #resource-management #k8s kubetail-org/kubetail — Real-time logging dashboard for Kubernetes. View logs in a terminal or a browser. Run anywhere - desktop, cluster, docker. Go · ⭐ 1.8k #kubernetes #logging #real-time #private #dashboard #monitoring #cluster #devops #observability kubevious/kubevious — Kubevious - Kubernetes without disasters ⭐ 1.7k #kubernetes #kubernetes-monitoring #kubernetes-dashboard #cloud #cloud-native #microservices #docker #troubleshooting #configuration #assurance FairwindsOps/rbac-manager — A Kubernetes operator that simplifies the management of Role Bindings and Service Accounts. Go · ⭐ 1.7k #kubernetes #rbac #authorization #crd #cluster #fairwinds-official emberstack/kubernetes-reflector — Custom Kubernetes controller that can be used to replicate secrets, configmaps and certificates. C# · ⭐ 1.7k #kubernetes #controller #secrets #kubernetes-cluster #kubernetes-controller #kubectl #configmap #certificate #cert-manager #k8s sustainable-computing-io/kepler — Kepler (Kubernetes-based Efficient Power Level Exporter) is a Prometheus exporter that measures energy consumption metrics at the container, pod, and node levels in Kubernetes clusters. Go · ⭐ 1.6k #kubernetes #sustainability #prometheus-exporter #energy-consumption #energy-monitor #energy-efficiency #prometheus #cloud-native kubernetes-sigs/secrets-store-csi-driver — Secrets Store CSI driver for Kubernetes secrets - Integrates secrets stores with Kubernetes via a CSI volume. Go · ⭐ 1.6k #kubernetes #csi #hashicorp-vault #azure-keyvault #k8s-sig-auth #csi-secrets-store #mount-multiple-secrets #gcp-secret-manager #aws-secrets-manager pyrra-dev/pyrra — Making SLOs with Prometheus manageable, accessible, and easy to use for everyone! Go · ⭐ 1.5k #prometheus #monitoring #metrics #time-series #golang #thanos #kubernetes #slo #docker Flux159/mcp-server-kubernetes — MCP Server for kubernetes management commands TypeScript · ⭐ 1.5k #infrastructure #kubernetes #mcp #server liqotech/liqo — Enable dynamic and seamless Kubernetes multi-cluster topologies Go · ⭐ 1.5k #kubernetes #liquid-computing #resource-sharing #cloud-computing #multi-cluster #kubernetes-clusters #clusters #k8s batfish/batfish — Batfish is a network configuration analysis tool that can find bugs and guarantee the correctness of (planned or current) network configurations. It enables network engineers to rapidly and safely evolve their network, without fear of outages or security breaches. Java · ⭐ 1.5k #network #configuration #configuration-parser #configuration-analysis #network-verification #network-analysis #network-security #network-validation #network-automation hidetatz/kubecolor — colorizes kubectl output (archived) (stale) Go · ⭐ 1.4k #kubectl #kubernetes getseabird/seabird — Native Kubernetes desktop IDE designed for seamless cluster exploration (stale) Go · ⭐ 1.4k #gui #kubernetes #ide Manoj-engineer/k8squest — K8sQuest — A local, hands-on Kubernetes learning game with real-world troubleshooting challenges. Practice Pods, Deployments, Services, networking, storage, and debugging using kubectl on a local cluster (kind/k3d). No cloud required. Shell · ⭐ 1.4k kubenetworks/kubevpn — KubeVPN offers a Cloud Native Dev Environment that connects to kubernetes cluster network. Go · ⭐ 1.4k #kubernetes #network #tunnel #envoy #cloud-native #developer-tools #k8s #kubevpn #control-plane #mesh neuvector/neuvector Go · ⭐ 1.3k STRRL/cloudflare-tunnel-ingress-controller — 🚀 Expose the website directly into the internet! The Kuberntes Ingress Controller based on Cloudflare Tunnel. Go · ⭐ 1.2k #cloudflare #cloudflare-tunnel #ingress #ingress-controller #kubernetes #selfhosted iximiuz/client-go-examples — A collection of mini-programs demonstrating Kubernetes client-go usage. Go · ⭐ 1.1k #kubernetes #client-go #kubernetes-client #kubernetes-api sailor-sh/CK-X — A mock exams for CKAD, CKA, and CKS featuring timed sessions and hands-on labs with pre-configured clusters. Shell · ⭐ 1.1k #cka #cka-certification #cka-exam-preparation #cka-preparation-notes #ckad #ckad-certification #ckad-exam-questions #ckad-exercises #ckad-practice #cks-exam carvel-dev/kapp — kapp is a simple deployment tool focused on the concept of \u0026#34;Kubernetes application\u0026#34; — a set of resources with the same label Go · ⭐ 1.1k #kubernetes #devops #cli #go #deployment #kubernetes-deployment #k8s #continious-delivery #gitops #carvel metacontroller/metacontroller — Writing kubernetes controllers can be simple Go · ⭐ 1k #kubernetes #metacontroller rancher/system-upgrade-controller — In your Kubernetes, upgrading your nodes Go · ⭐ 969 #kubernetes #custom-resource-definition #crd-controller #upgrades apache/camel-k — Apache Camel K is a lightweight integration platform, born on Kubernetes, with serverless superpowers Go · ⭐ 927 #camel #integration #kubernetes #serverless #knative #openshift #operator kudobuilder/kuttl — KUbernetes Test TooL (kuttl) Go · ⭐ 825 #kubernetes #testing #operators #kudo #operator-sdk #hacktoberfest cloud-ark/kubeplus — Kubernetes Operator for delivering SaaS-style, namespace-isolated multi-tenant application instances on Kubernetes Go · ⭐ 752 #multi-tenancy #saas #multi-customer #managed-application #platform-engineering #application-hosting #custom #custom-operators #kubernetes stakater/IngressMonitorController — A Kubernetes controller to watch ingresses and create liveness alerts for your apps/microservices in UptimeRobot, StatusCake, Pingdom, etc. – [✩Star] if you\u0026#39;re using it! Go · ⭐ 738 #kubernetes #stakater #ingress #controller #k8s #monitor #uptime-checker #live #isup #uptimerobot grafana/k8s-monitoring-helm Go Template · ⭐ 672 eraser-dev/eraser — 🧹 Cleaning up images from Kubernetes nodes Go · ⭐ 614 #kubernetes #containers #images #hacktoberfest #trivy #vulnerabilities #vulnerability-scanner #kubernetes-operator #security-tools #image-security zapier/kubechecks — Check your Kubernetes changes before they hit the cluster Go · ⭐ 604 #argocd #cicd #kubernetes BeryJu/korb — Move Kubernetes PVCs between Storage Classes and Namespaces Go · ⭐ 576 argoproj-labs/argocd-agent — Redefining the multi cluster story of Argo CD Go · ⭐ 573 #agent-based #argo-cd #argocd #distributed #gitops #multi-cluster #edge #scaling #telco philippemerle/Awesome-Kubernetes-Architecture-Diagrams — Awesome Kubernetes Architecture Diagrams ⭐ 569 #diagrams #kubernetes #architecture deliveryhero/helm-charts — Helm Charts ⛵ @ Delivery Hero ⭐ Mustache · ⭐ 566 Azure/karpenter-provider-azure — AKS Karpenter Provider Go · ⭐ 554 yannh/kubernetes-json-schema — JSON Schemas for every version of every object in every version of Kubernetes ⭐ 544 datashim-io/datashim — A kubernetes based framework for hassle free handling of datasets (stale) Go · ⭐ 530 #dataset-lifecycle-framework #noobaa #kubernetes #s3 #nfs #csi loft-sh/jspolicy — jsPolicy - Easier \u0026amp; Faster Kubernetes Policies using JavaScript or TypeScript (stale) Go · ⭐ 415 zalando-incubator/kube-ingress-aws-controller — Configures AWS Load Balancers according to Kubernetes Ingress resources Go · ⭐ 394 #kubernetes #ingress #aws #golang #skipper #docker-image #ingress-controller #cloud ahmetb/gen-crd-api-reference-docs — API Reference Docs generator for Kubernetes CRDs (used by Knative, Kubeflow and others) Go · ⭐ 332 #crd #crds #kubernetes-api #kubebuilder #operator-sdk saiyam1814/kiac — Local Kubernetes on Apple\u0026#39;s container framework - every node is its own lightweight VM. Metrics, storage, and LoadBalancer included. Go · ⭐ 327 #apple-silicon #containers #kubernetes #macos cockroachdb/cockroach-operator — k8s operator for CRDB Go · ⭐ 318 multigres/multigres-operator — Kubernetes operator for Multigres — deploys, scales, and manages horizontally scalable PostgreSQL clusters with automated topology orchestration, drain-safe rolling updates, and admission webhooks Go · ⭐ 269 #cloud-native #database #go #horizontal-scaling #kubernetes #kubernetes-operator #operator #postgresql AKSarav/KubeNodeUsage — KubeNodeUsage is a Terminal App designed to provide insights into Kubernetes node and pod usage. It offers both interactive exploration and command-line filtering options to help you analyze your cluster effectively right from your terminal Go · ⭐ 259 #devops-tools #engineering #golang #kubernetes #terminal-app #containers #tui kbterm/kubeterm — Graphical management tool for Kubernetes on desktop and mobile. ⭐ 221 #kubernetes #cloud-native #devops #kubernetes-dashboard #kubernetes-ui #container #k8s #ui #dashboard #ai-agent DaspawnW/vault-crd — Vault CRD for sharing Vault Secrets with Kubernetes (stale) Java · ⭐ 175 devantler-tech/ksail — All-in-one Kubernetes SDK: create, manage, and operate clusters across distributions (Kind, K3d, Talos, VCluster) with built-in GitOps, secrets, AI assistant, and MCP server. Only requires Docker or a Cloud Provider. Go · ⭐ 165 #cli #github-copilot #kubernetes #mcp-server #tui #chat #developer-tool #gitops #provisioner #argocd crumbhole/argocd-vault-replacer — An Argo CD plugin to replace placeholders in Kubernetes manifests with secrets stored in Hashicorp Vault. Go · ⭐ 108 #kubernetes #vault #secrets #gitops #argocd kadirbelkuyu/kubecfg — A fast, secure CLI tool for managing Kubernetes kubeconfig files. Go · ⭐ 101 k-krew/hanoi-cli — Interactive rebalance advisor for Kubernetes Go · ⭐ 65 #cli #devops #infrastructure #kubernetes #resource-management #simulation #failure-simulation grafana/alloy-operator Makefile · ⭐ 59 LeetCode halfrost/LeetCode-Go — ✅ Solutions to LeetCode by Go, 100% test coverage, runtime beats 100% | LeetCode 题解 Go · ⭐ 33.8k #leetcode #golang #go #leetcode-golang #leetcode-solutions #algorithms #algorithm #interview-questions #dynamic-programming #math TheAlgorithms/Rust — All Algorithms implemented in Rust Rust · ⭐ 26k #rust #algorithms #data-structures #rust-lang #hacktoberfest EndlessCheng/codeforces-go — 算法竞赛模板库 by 灵茶山艾府 💭💡🎈 Go · ⭐ 8.7k #codeforces-solutions #codeforces-golang #codeforces #golang #leetcode-golang #competitive-programming #icpc #acm-icpc #algorithm #algorithms DimkaGorhover/leetcode-go (stale) Go · ⭐ 1 #go #golang #leetcode #leetcode-golang #leetcode-solutions DimkaGorhover/leetcode-java (stale) Java · ⭐ 1 DimkaGorhover/leetcode-js (stale) JavaScript · ⭐ 1 DimkaGorhover/leetcode-py (stale) Python · ⭐ 1 macOS jaywcjlove/awesome-mac —  This project is dedicated to collecting high-quality macOS software and organizing them systematically by different categories for easy search and use. Swift · ⭐ 111.1k #macos #software #mac #mac-osx #awesome #macosx #awesome-list #list #apple #awesome-lists tw93/Mole — 🐹 Clean, uninstall, analyze, optimize, and monitor your Mac from the terminal. Shell · ⭐ 63.6k #clean #cleaner #cleaner-script #macos #cleaner-cli #mac #shell #analyzer #appcleaner #daisydisk apple/container — A tool for creating and running Linux containers using lightweight virtual machines on a Mac. It is written in Swift, and optimized for Apple silicon. Swift · ⭐ 49k vercel/hyper — A terminal built on web technologies TypeScript · ⭐ 44.7k #terminal #javascript #html #css #react #terminal-emulators #hyper #macos #linux MonitorControl/MonitorControl — 🖥 Control your display\u0026#39;s brightness \u0026amp; volume on your Mac as if it was a native Apple Display. Use Apple Keyboard keys or custom shortcuts. Shows the native macOS OSDs. Swift · ⭐ 34k #macos #keyboard #brightness #volume #external-monitor #m1 #apple #silicon #ddc #macos-app waydabber/BetterDisplay — Unlock your displays on your Mac! Flexible HiDPI scaling, XDR/HDR extra brightness, virtual screens, DDC control, extra dimming, PIP/streaming, EDID override and lots more! ⭐ 33.2k #hdmi #mac #resolution #hidpi #screen #display #4k #retina #ddc #xdr shadps4-emu/shadPS4 — PlayStation 4 emulator for Windows, Linux, macOS and FreeBSD written in C\u0026#43;\u0026#43; C\u0026#43;\u0026#43; · ⭐ 32.5k #emulator #ps4 #emulation #playstation4 #imgui #sdl3 #vulkan #linux #windows #cpp jdx/mise — dev tools, env vars, task runner Rust · ⭐ 32.4k herrbischoff/awesome-macos-command-line — Use your macOS terminal shell to do awesome things. (archived) ⭐ 30.8k #macos #macosx #shell #terminal #awesome-list #awesome #list jordanbaird/Ice — Powerful menu bar manager for macOS Swift · ⭐ 29.3k #macos #menubar #statusbar #swift #swiftui #utility #macos-app #menu-bar #status-bar #menubar-app p0deje/Maccy — Lightweight clipboard manager for macOS Swift · ⭐ 21.2k #macos #clipboard-manager #maccy iCHAIT/awesome-macOS —  A curated list of awesome applications, softwares, tools and shiny things for macOS. ⭐ 19k #macos #mac #awesome-list #apple #awesome-lists #awesome #list OpenEmu/OpenEmu — 🕹 Retro video game emulation for macOS Swift · ⭐ 17.7k #openemu #objective-c #macos #emulation #emulator #retrogaming dwarvesf/hidden — An ultra-light MacOS utility that helps hide menu bar icons Swift · ⭐ 14.6k #swift #macos #utilities FelixKratz/SketchyBar — A highly customizable macOS status bar replacement C · ⭐ 12.2k #statusbar #macos #customization #ui #shell-scripts #yabai #bar #ricing #darwin #tiling-window-manager rgcr/m-cli —  Swiss Army Knife for macOS Shell · ⭐ 9.9k #macos #mac #cli #sh #bash #looking-for-maintainer guarinogabriel/Mac-CLI —  macOS command line tool for developers – The ultimate tool to manage your Mac. It provides a huge set of command line commands that automatize the usage of your Mac. Shell · ⭐ 9.1k #bash #cli #command-line-tool #linux #macos #productivity #productivity-tools sveinbjornt/Sloth — Mac app that shows all open files, directories, sockets, pipes and devices in use by all running processes. Nice GUI for lsof. Objective-C · ⭐ 8.9k #macos #osx #lsof #open-files #sloth #objective-c #socket #gui #pipes #directories Mortennn/Dozer — Hide menu bar icons on macOS (stale) Swift · ⭐ 8.7k #utility #minimalistic #statusbar #macos lucasgelfond/zerobrew — A 5-20x faster experimental Homebrew alternative Rust · ⭐ 7.5k leits/MeetingBar — 🇺🇦 Your meetings at your fingertips in the macOS menu bar Swift · ⭐ 5.3k #swift #calendar #macos #meetings #google-meet #zoom #microsoft-teams #macos-calendar #productivity #apple productdevbook/port-killer — A powerful cross-platform port management tool for developers. Monitor ports, manage Kubernetes port forwards, integrate Cloudflare Tunnels, and kill processes with one click. Swift · ⭐ 5k #developer-tools #macos #macos-app #menu-bar #port-killer #process-manager #swift #swiftui #kubernetes #windows SuperCmdLabs/SuperCmd — Powerful MacOS Launcher TypeScript · ⭐ 3.1k #clipboard #launcher #macos #raycast #spotlight #supercmd metaspartan/mactop — mactop - Apple Silicon Monitor Top Go · ⭐ 1.6k #go #apple #apple-silicon #arm64 #asitop #cpu-monitoring #golang #gpu-monitoring #mac #macos partout-io/passepartout — Your go-to app for VPN and privacy. Swift · ⭐ 1.3k #openvpn #openvpn-client #vpn #ios #network-extension #macos #osx #siri-shortcuts #ovpn #shortcuts Augani/dory — A free, open-source native macOS app for Docker \u0026amp; Linux containers, an alternative to OrbStack and Docker Desktop. Universal for Intel and Apple silicon. Swift · ⭐ 1.1k #apple-silicon #containers #docker #docker-desktop #macos #orbstack #swift #swiftui #virtualization theseal/ssh-askpass — ssh-askpass for macOS (stale) AppleScript · ⭐ 222 #ssh-askpass #macos laixintao/mactop (stale) Python · ⭐ 143 Metrics \u0026amp; Observability louislam/uptime-kuma — A fancy self-hosted monitoring tool JavaScript · ⭐ 90.2k #uptime #monitoring #docker #selfhosted #self-hosted #single-page-app #webapp #responsive #websocket #socket-io grafana/grafana — The open and composable observability and data visualization platform. Visualize metrics, logs, and traces from multiple sources like Prometheus, Loki, Elasticsearch, InfluxDB, Postgres and many more. TypeScript · ⭐ 76.3k #grafana #monitoring #analytics #metrics #influxdb #prometheus #elasticsearch #alerting #data-visualization #go ClickHouse/ClickHouse — ClickHouse® is a real-time analytics database management system C\u0026#43;\u0026#43; · ⭐ 49.3k #dbms #olap #analytics #sql #big-data #mpp #clickhouse #hacktoberfest #cpp #rust VictoriaMetrics/VictoriaMetrics — VictoriaMetrics: fast, cost-effective monitoring solution and time series database Go · ⭐ 17.5k #tsdb #prometheus #promql #influxdb #graphite #opentsdb #database #thanos #observability #monitoring amir20/dozzle — Realtime log viewer for containers. Supports Docker, Swarm and K8s. Go · ⭐ 14.1k #log #docker #golang #real-time #docker-container #logging #logging-server #sever-events #vuejs #k8s hyperdxio/hyperdx — Resolve production issues, fast. An open source observability platform unifying session replays, logs, metrics, traces and errors powered by ClickHouse and OpenTelemetry. TypeScript · ⭐ 9.8k #analytics #application-monitoring #log-management #logs #metrics #monitoring #observability #opentelemetry #traces #apm samber/awesome-prometheus-alerts — 🚨 Collection of Prometheus alerting rules Astro · ⭐ 8.1k #prometheus #alertmanager #alert #rule #collection #awesome #monitoring #alerting #query #promql prometheus-community/helm-charts — Prometheus community Helm charts Mustache · ⭐ 6.2k #prometheus #helm #charts #helm-charts #kubernetes grafana/mimir — Grafana Mimir provides horizontally scalable, highly available, multi-tenant, long-term storage for Prometheus. Go · ⭐ 5.2k #prometheus #metrics #tsdb #opentelemetry #otlp #observability metrico/gigapipe — ⭐️ The Open-Source Polyglot Observability Warehouse: Light, Fast, Cloud Native, Drop-in Grafana LGTMP alternative :rocket: Indie All-in-One Opentelemetry, Loki, Prometheus, Tempo, Pyroscope On-Prem Alternative :star: Go · ⭐ 1.7k #loki #grafana #prometheus #clickhouse #logql #timeseries #metrics #logs #promql #tempo enix/x509-certificate-exporter — A Prometheus exporter for X.509 certificates, built for Kubernetes first but equally happy as a standalone binary Go · ⭐ 944 #prometheus-exporter #kubernetes #monitoring-tool #certificates #expiration-monitoring #dashboard #grafana-dashboard #alert cybertec-postgresql/pgwatch — 🔬pgwatch: PostgreSQL metrics monitor/dashboard Go · ⭐ 865 grafana/gcx — A CLI for managing Grafana and Grafana Cloud resources. Optimized for agentic usage. Go · ⭐ 554 danielloader/waggle — Local OpenTelemetry viewer with Honeycomb-style query builder — OTLP/HTTP ingest into SQLite, trace waterfall, FTS5 log search. Single static binary. Go · ⭐ 14 #developer-tools #distributed-tracing #go #golang #honeycomb #logs #observability #opentelemetry #otel #otlp OLAP ClickHouse/ClickHouse — ClickHouse® is a real-time analytics database management system C\u0026#43;\u0026#43; · ⭐ 49.3k #dbms #olap #analytics #sql #big-data #mpp #clickhouse #hacktoberfest #cpp #rust duckdb/duckdb — DuckDB is an analytical in-process SQL database management system C\u0026#43;\u0026#43; · ⭐ 40.2k #sql #database #olap #analytics #embedded-database PostHog/posthog — :hedgehog: PostHog is the leading platform for building self-driving products. Our developer tools – AI observability, analytics, session replay, flags, experiments, error tracking, logs, and more – capture all the context agents need to diagnose problems, uncover opportunities, and ship fixes. Steer it all from Slack, web, desktop, or the MCP. Python · ⭐ 37.7k #analytics #python #react #javascript #typescript #ab-testing #experiments #feature-flags #session-replay #ai-analytics cube-js/cube — 📊 Cube Core is open-source semantic layer for AI, BI and embedded analytics Rust · ⭐ 20.6k #analytics #cube #postgresql #mysql #bigquery #sql #rust #headless-bi #semantic-layer #databricks apache/doris — Apache Doris is a real-time analytics and hybrid search database for AI agents. Java · ⭐ 15.8k #olap #database #hudi #iceberg #real-time #sql #bigquery #delta-lake #lakehouse #query-engine trinodb/trino — Official repository of Trino, the distributed SQL query engine for big data, formerly known as PrestoSQL (https://trino.io) Java · ⭐ 13.1k #java #presto #hive #hadoop #big-data #sql #prestodb #database #databases #distributed-systems StarRocks/starrocks — The world\u0026#39;s fastest open query engine for sub-second analytics both on and off the data lakehouse. With the flexibility to support nearly any scenario, StarRocks provides best-in-class performance for multi-dimensional analytics, real-time analytics, and ad-hoc queries. A Linux Foundation project. Java · ⭐ 12k #database #olap #sql #analytics #big-data #realtime-database #vectorized #distributed-database #real-time-analytics #mpp lance-format/lance — Open Lakehouse Format for Multimodal AI. Convert from Parquet in 2 lines of code for 100x faster random access, vector index, and data versioning. Compatible with Pandas, DuckDB, Polars, Pyarrow, and PyTorch with more integrations coming.. Rust · ⭐ 6.9k #machine-learning #computer-vision #data-format #deep-learning #python #apache-arrow #duckdb #mlops #data-analysis #data-analytics apache/pinot — Apache Pinot - A realtime distributed OLAP datastore Java · ⭐ 6.1k #java lightdash/lightdash — Agentic BI. Analytics at the speed of code ⚡️ TypeScript · ⭐ 6.1k #dbt #data-visualization #data-analytics #business-intelligence duckdb/pg_duckdb — DuckDB-powered Postgres for high performance apps \u0026amp; analytics. C\u0026#43;\u0026#43; · ⭐ 3.2k rilldata/rill — The fastest business intelligence tool for humans and agents. Go · ⭐ 2.8k #duckdb #sveltekit #dataviz #csv #parquet #parquet-tools #golang #s3 #data-analysis #sql apache/gluten — Gluten is a middle layer responsible for offloading JVM-based SQL engines\u0026#39; execution to native engines. Scala · ⭐ 1.6k #clickhouse #simd #spark-sql #vectorization #velox #arrow BemiHQ/BemiDB — Open-source Snowflake \u0026amp; Fivetran alternative, with Postgres compatibility. Go · ⭐ 1.5k #analytics #data-lakehouse #data-warehouse #duckdb #iceberg #olap #parquet #postgresql #zero-etl #data-movement dremio/dremio-oss — Dremio - the missing link in modern data Java · ⭐ 1.5k #big-data #analytics #ui #data-analytics pentaho/mondrian — Mondrian is an Online Analytical Processing (OLAP) server that enables business users to analyze large quantities of data in real-time. Java · ⭐ 1.2k #mondrian #olap #java #mdx #database incentius-foss/WhatTheDuck — WhatTheDuck is an open-source web application built on DuckDB. It allows users to upload CSV and Parquet files, store them in tables, and perform SQL queries on the data. Vue · ⭐ 630 #csv #duckdb #sql rpbouman/huey — Light-weight, browser-based ROLAP pivot tables on top of DuckDB-WASM JavaScript · ⭐ 607 #data #duckdb #excel #pivot-tables #rolap #small-data #sql paradedb/pg_analytics — DuckDB-powered data lake analytics from Postgres (archived) (stale) Rust · ⭐ 540 #analytics #arrow #columnar #datafusion #lakehouse #paradedb #parquet #postgres #postgresql #duckdb samber/awesome-olap — 🧊 A curated list of OLAP databases, data lake tools, columnar engines, and analytics frameworks for data engineers. Astro · ⭐ 139 #analytics #awesome #awesome-list #database #datalake #lakehouse #metastore #olap #processing #sql Privacy dani-garcia/vaultwarden — Unofficial Bitwarden compatible server written in Rust, formerly known as bitwarden_rs Rust · ⭐ 65.4k #vaultwarden #bitwarden #rust #docker #rocket #bitwarden-rs permissionlesstech/bitchat — bluetooth mesh chat, IRC vibes Swift · ⭐ 35.4k #bluetooth #bluetooth-le #decentralized #e2e-encryption #ios #macos #mesh-network #messaging #nostr #swift tailscale/tailscale — The easiest, most secure way to use WireGuard and 2FA. Go · ⭐ 35.2k #wireguard #oauth #sso #2fa #vpn #tailscale lissy93/web-check — 🕵️‍♂️ All-in-one OSINT tool for analysing any website TypeScript · ⭐ 34.5k #osint #privacy #security #security-tools #sysadmin netbirdio/netbird — Connect your devices into a secure WireGuard®-based overlay network with SSO, MFA and granular access controls. Go · ⭐ 28.4k #wireguard #wireguard-vpn #vpn #nat-traversal #mesh-networks #mesh #golang #wiretrustee #zero-trust-network-access #netbird fosrl/pangolin — Identity-aware VPN and tunneled reverse proxy for remote access based on WireGuard®. TypeScript · ⭐ 22.3k #identity-management #reverse-proxy #wireguard #single-sign-on #self-hosted #iot #oidc #proxy #vpn #zero-trust pluja/awesome-privacy — Awesome Privacy - A curated list of services and alternatives that respect your privacy because PRIVACY MATTERS. Python · ⭐ 19.5k #privacy #alternatives #awesome #list #apps #services #awesome-list #degoogle #gafam cryptomator/cryptomator — Cryptomator for Windows, macOS, and Linux: Secure client-side encryption for your cloud storage, ensuring privacy and control over your data. Java · ⭐ 15.9k #cryptomator #java #cloud-storage #cryptography #crypto #security #privacy #encryption veracrypt/VeraCrypt — Disk encryption with strong security based on TrueCrypt C · ⭐ 11.3k #encryption #encryption-decryption #encryption-algorithms #veracrypt #idrix #veracrypt-source screego/server — screen sharing for developers https://screego.net/ Go · ⭐ 10.5k #webrtc #screensharing-tool #privacy #selfhosted #docker #go cryptpad/cryptpad — Collaborative office suite, end-to-end encrypted and open-source. JavaScript · ⭐ 7.8k #collaborative-editing #cryptpad #javascript #chainpad #collaboration #e2ee #end-to-end-encryption #real-time processone/ejabberd — Robust, Ubiquitous and Massively Scalable Messaging Platform (XMPP, MQTT, SIP Server) Erlang · ⭐ 6.7k #erlang #xmpp #jabber #chat #messaging #sip #voip #iot #pubsub #groupchat stratumauth/app — 📱 Two-Factor Authentication (2FA) client for Android \u0026#43; Wear OS C# · ⭐ 4.5k #android #two-factor-authentication #xamarin-android #c-sharp #hotp #totp #tfa #material-design #wear-os #wearos HACKERALERT/Picocrypt — A very small, very simple, yet very secure encryption tool. (archived) Go · ⭐ 2.5k #sha3 #xchacha20 #encryption #cryptography #security #security-tools #privacy-tools #privacy #serpent #reed-solomon solst-ice/chirp — Send data with sound TypeScript · ⭐ 865 githubixx/ansible-role-wireguard — Ansible role for installing WireGuard VPN. Supports Ubuntu, Debian, Archlinx, Fedora, openSUSE Leap and some Redhat ES variants. Jinja · ⭐ 693 #wireguard #vpn #linux #security #networking #ansible #ansible-role Python vinta/awesome-python — An opinionated list of Python frameworks, libraries, tools, and resources Python · ⭐ 314.1k #awesome #python #collections #python-frameworks #python-libraries #python-tools microsoft/markitdown — Python tool for converting files and office documents to Markdown. Python · ⭐ 173.9k #langchain #openai #autogen-extension #autogen #markdown #microsoft-office #pdf astral-sh/uv — An extremely fast Python package and project manager, written in Rust. Rust · ⭐ 88.8k #packaging #python #resolver #uv pathwaycom/pathway — Python ETL framework for stream processing, real-time analytics, LLM pipelines, and RAG. Python · ⭐ 62.5k #batch-processing #kafka #pathway #python #streaming #machine-learning-algorithms #real-time #data-analytics #data-pipelines #data-processing Textualize/rich — Rich is a Python library for rich text and beautiful formatting in the terminal. Python · ⭐ 57.1k #python #python3 #python-library #terminal #terminal-color #markdown #tables #syntax-highlighting #ansi-colors #progress-bar-python astral-sh/ruff — An extremely fast Python linter and code formatter, written in Rust. Rust · ⭐ 49.2k #linter #pep8 #python #python3 #rust #rustpython #static-analysis #static-code-analysis #style-guide #styleguide apache/airflow — Apache Airflow - A platform to programmatically author, schedule, and monitor workflows Python · ⭐ 46.5k #airflow #apache #apache-airflow #python #scheduler #workflow #automation #dag #data-engineering #data-integration tqdm/tqdm — :zap: A Fast, Extensible Progress Bar for Python and CLI Python · ⭐ 31.3k #progressbar #progressmeter #progress-bar #meter #rate #console #terminal #time #progress #gui dagster-io/dagster — An orchestration platform for the development, production, and observation of data assets. Python · ⭐ 16k #data-pipelines #dagster #workflow #data-science #workflow-automation #python #scheduler #data-orchestrator #etl #analytics tmux-python/tmuxp — 🖥️ Session manager for tmux, built on libtmux. Python · ⭐ 4.6k #tmux #python #yaml #json #session-manager #cli #cli-utilities #terminal #teamocil #tmuxinator nolar/kopf — A Python framework to write Kubernetes operators in just a few lines of code Python · ⭐ 2.6k #kubernetes #kubernetes-operator #kubernetes-operators #python #python3 #framework #asyncio #operator #operators #python-framework Rust cloudflare/pingora — A library for building fast, reliable and evolvable network services. Rust · ⭐ 27.2k lance-format/lance — Open Lakehouse Format for Multimodal AI. Convert from Parquet in 2 lines of code for 100x faster random access, vector index, and data versioning. Compatible with Pandas, DuckDB, Polars, Pyarrow, and PyTorch with more integrations coming.. Rust · ⭐ 6.9k #machine-learning #computer-vision #data-format #deep-learning #python #apache-arrow #duckdb #mlops #data-analysis #data-analytics huseyinbabal/taws — Terminal UI for AWS (taws) - A terminal-based AWS resource viewer and manager Rust · ⭐ 2.2k Security Hack-with-Github/Awesome-Hacking — A collection of various awesome lists for hackers, pentesters and security researchers ⭐ 118.4k #hacking #security #bug-bounty #awesome #android #fuzzing #penetration-testing #pentesting-windows #reverse-engineering usestrix/strix — Open-source AI penetration testing tool to find and fix your app’s vulnerabilities. Python · ⭐ 52.5k #agents #artificial-intelligence #cybersecurity #penetration-testing #ai-penetration-testing #ai-pentesting #ai-security #bug-bounty #ctf-tools #cybersecurity-tools acmesh-official/acme.sh — A pure Unix shell script ACME client for SSL / TLS certificate automation Shell · ⭐ 47.5k #acme #acme-protocol #certbot #shell #ash #bash #posix #posix-sh #zerossl #buypass KeygraphHQ/shannon — Shannon is an AI pentester for web applications and APIs. It analyzes your source code, identifies attack vectors, and executes real exploits to prove vulnerabilities before they reach production. TypeScript · ⭐ 46.8k #penetration-testing #pentesting #security-audit #security-automation #security-tools #ai-penetration-testing #ai-security #cybersecurity #ethical-hacking #offensive-security certbot/certbot — Certbot is EFF\u0026#39;s tool to obtain certs from Let\u0026#39;s Encrypt and (optionally) auto-enable HTTPS on your server. It can also act as a client for any other CA that uses the ACME protocol. Python · ⭐ 33.2k #acme #acme-client #certbot #certificate #letsencrypt #python jumpserver/jumpserver — JumpServer is an open-source Privileged Access Management (PAM) platform that provides DevOps and IT teams with on-demand and secure access to SSH, RDP, Kubernetes, Database and RemoteApp endpoints through a web browser. Python · ⭐ 31.4k #python #ssh-server #django #terminal #bastion-host #cyberark #teleport #pam #jumpserver Infisical/infisical — Infisical is the open-source platform for secrets, certificates, and privileged access management. TypeScript · ⭐ 28.8k #cli #environment-variables #secret-management #secrets #security #open-source #golang #typescript #secret-manager #go gitleaks/gitleaks — Find secrets with Gitleaks 🔑 Go · ⭐ 28.7k #security #security-tools #git #golang #go #secret #gitleaks #devsecops #hacktoberfest #ci-cd mukul975/Anthropic-Cybersecurity-Skills — 817 structured cybersecurity skills for AI agents · Mapped to 6 frameworks: MITRE ATT\u0026amp;CK, NIST CSF 2.0, MITRE ATLAS, D3FEND, NIST AI RMF \u0026amp; MITRE F3 (Fight Fraud) · agentskills.io standard · Works with Claude Code, GitHub Copilot, Codex CLI, Cursor, Gemini CLI \u0026amp; 20\u0026#43; platforms · 29 security domains · Apache 2.0 Python · ⭐ 27.8k #ai-agents #claude-code #cybersecurity #incident-response #mitre-attack #penetration-testing #red-team #security #cloud-security #malware-analysis wg-easy/wg-easy — The easiest way to run WireGuard VPN \u0026#43; Web-based Admin UI. TypeScript · ⭐ 26.7k hashcat/hashcat — World\u0026#39;s fastest and most advanced password recovery utility C · ⭐ 26.5k #hashcat #password #cracking #gpgpu #opencl #c #hashes #cuda goauthentik/authentik — The authentication glue you need. Python · ⭐ 24.8k #saml #saml-idp #saml-sp #oauth2 #oauth2-server #oauth2-client #oidc #oidc-provider #oidc-client #sso djsime1/awesome-flipperzero — 🐬 A collection of awesome resources for the Flipper Zero device. (stale) ⭐ 24.1k #flipperzero #flipper-zero #awesome #awesome-list FiloSottile/age — A simple, modern and secure encryption tool (and Go library) with small explicit keys, no config options, and UNIX-style composability. Go · ⭐ 23.2k #built-at-rc #age-encryption vxcontrol/pentagi — Fully autonomous AI Agents system capable of performing complex penetration testing tasks Go · ⭐ 21.8k #ai-agents #ai-security-tool #autonomous-agents #golang #graphql #multi-agent-system #penetration-testing-tools #react #security-automation #security-testing farhanashrafdev/90DaysOfCyberSecurity — This repository contains a 90-day cybersecurity study plan, along with resources and materials for learning various cybersecurity concepts and technologies. The plan is organized into daily tasks, covering topics such as Network\u0026#43;, Security\u0026#43;, Linux, Python, Traffic Analysis, Git, ELK, AWS, Azure, and Hacking. The repository also includes a `LEARN.md ⭐ 18.4k #cybersecurity #ethical-hacking #communityexchange #learn #hacktoberfest docusealco/docuseal — Open source DocuSign alternative. Create, fill, and sign digital documents ✍️ Ruby · ⭐ 18.3k #documents #pdf #self-hosted #document-signing #e-signature #open-source #ruby-on-rails #tailwindcss #webpack #hotwired-turbo semgrep/semgrep — Lightweight static analysis for many languages. Find bug variants with patterns that look like source code. OCaml · ⭐ 16.2k #static-analysis #static-code-analysis #java #go #sast #semgrep #r2c #c #python #ruby anchore/syft — CLI tool and library for generating a Software Bill of Materials from container images and filesystems Go · ⭐ 9.4k #containers #docker #go #golang #static-analysis #tool #oci #sbom #spdx #cyclonedx falcosecurity/falco — Cloud Native Runtime Security C\u0026#43;\u0026#43; · ⭐ 9.3k #cncf #containers #security #falco #ebpf #kubernetes #hacktoberfest #cloud-native #cncf-project #runtime-security vercel-labs/deepsec — Deepsec is a security harness for finding vulnerabilities in your codebase powered by coding agents TypeScript · ⭐ 7.7k trailofbits/skills — Trail of Bits Claude Code skills for security research, vulnerability detection, and audit workflows Python · ⭐ 6.6k #agent-skills sigstore/cosign — Code signing and transparency for containers and binaries Go · ⭐ 6.2k letsencrypt/boulder — An ACME-based certificate authority, written in Go. Go · ⭐ 5.7k #boulder #go #acme #certificate-authority #tls #lets-encrypt #ca #pki #rfc8555 openziti/ziti — The parent project for OpenZiti. Here you will find the executables for a fully zero-trust, programmable network @OpenZiti Go · ⭐ 4.3k #networking #vpn-2 #appsec #network #zero-trust #zero-trust-cloud #zero-trust-network #zero-trust-network-access #zero-trust-security #ztaa FiloSottile/yubikey-agent — yubikey-agent is a seamless ssh-agent for YubiKeys. (stale) Go · ⭐ 2.9k #yubikey #ssh-agent #cryptography #piv #smartcard #ssh visa/visa-vulnerability-agentic-harness — Visa Vulnerability Agentic Harness Python · ⭐ 2.5k nuver-labs/vps-audit — lightweight, dependency-free bash script for security, performance auditing and infrastructure monitoring of Linux servers. Shell · ⭐ 2.5k #auditi #bash #ci-cd #debian #devops #ec2 #infrastructure #linux #monitoring #opensource jdx/fnox — encrypted/remote secret manager Rust · ⭐ 2k mudler/edgevpn — :sailboat: The immutable, decentralized, statically built p2p VPN without any central server and automatic discovery! Create decentralized introspectable tunnels over p2p with shared tokens Go · ⭐ 2k #networking #vpn #nat #tunnel #golang #golang-library #blockchain #libp2p #p2p #holepunch h44z/wg-portal — WireGuard Configuration Portal with LDAP connection Go · ⭐ 1.8k #wireguard #vpn #ui #webinterface #usermanagement #ldap doy/rbw — unofficial bitwarden cli Rust · ⭐ 1.4k uber/ADR — ADR secures enterprise AI agents through observability, security benchmarking, and threat detection. Deployed at Uber. Python · ⭐ 1.4k #agent-security #ai-agents #ai-security #benchmark #llm-security #mcp #model-context-protocol #prompt-injection #threat-detection #claude cachix/secretspec — A declarative interface for every secret provider. Rust · ⭐ 1.3k #secret-management #secrets neuvector/neuvector Go · ⭐ 1.3k infosecB/awesome-detection-engineering — Detection Engineering is a tactical function of a cybersecurity defense program that involves the design, implementation, and operation of detective controls with the goal of proactively identifying malicious or unauthorized activity before it negatively impacts an individual or an organization. ⭐ 1.3k #detection-engineering #splunk #mitre #awesome-list #awesome #cybersecurity #threat-detection mukul975/cve-mcp-server — Production-grade MCP server giving Claude 27 security intelligence tools across 21 APIs — CVE lookup, EPSS scoring, CISA KEV, MITRE ATT\u0026amp;CK, Shodan, VirusTotal, and more. Python · ⭐ 1.1k #cisa-kev #claude-ai #cve #cybersecurity #devsecops #epss #fastmcp #mcp #mitre-attack #model-context-protocol FLOCK4H/Freeway — WiFi Penetration Testing \u0026amp; Auditing Tool (stale) Python · ⭐ 897 #beacon-flood #cybersecurity-tools #deauthentication-attack #deauther #freeway #hacking #handshake-capture #network-monitor #packet-injection #pmkid-attack protonpass/pass-cli Rust · ⭐ 349 Harivelu0/EnvHub TypeScript · ⭐ 30 Spark StarRocks/starrocks — The world\u0026#39;s fastest open query engine for sub-second analytics both on and off the data lakehouse. With the flexibility to support nearly any scenario, StarRocks provides best-in-class performance for multi-dimensional analytics, real-time analytics, and ad-hoc queries. A Linux Foundation project. Java · ⭐ 12k #database #olap #sql #analytics #big-data #realtime-database #vectorized #distributed-database #real-time-analytics #mpp Alluxio/alluxio — Alluxio, data orchestration for analytics and machine learning in the cloud (stale) Java · ⭐ 7.2k #alluxio #memory-speed #hadoop #spark #presto #tensorflow #data-analysis #data-orchestration #virtual-distributed-filesystem volcano-sh/volcano — A Cloud Native Batch System (Project under CNCF) Go · ⭐ 5.9k #batch-systems #kubernetes #golang #hpc #bigdata #machine-learning #gene #ai #serving #training projectnessie/nessie — Nessie: Transactional Catalog for Data Lakes with Git-like semantics Java · ⭐ 1.5k #data #spark #java #iceberg #aws-lambda #git kubeflow/mcp-apache-spark-history-server — MCP Server and CLI for Apache Spark History Server. Debug Spark applications from AI agents, scripts, or the terminal. Python · ⭐ 188 #apache-spark #kubernetes #mcp #mcp-server #big-data #data-processing SQL ClickHouse/ClickHouse — ClickHouse® is a real-time analytics database management system C\u0026#43;\u0026#43; · ⭐ 49.3k #dbms #olap #analytics #sql #big-data #mpp #clickhouse #hacktoberfest #cpp #rust pingcap/tidb — TiDB is built for agentic workloads that grow unpredictably, with ACID guarantees and native support for transactions, analytics, and vector search. No data silos. No noisy neighbors. No infrastructure ceiling. Go · ⭐ 40.4k #distributed-database #distributed-transactions #tidb #database #scale #mysql #htap #sql #cloud-native #serverless cockroachdb/cockroach — CockroachDB — the cloud native, distributed SQL database designed for high availability, effortless scale, and control over data placement. Go · ⭐ 32.4k #go #database #sql #distributed-database #cockroachdb #hacktoberfest neondatabase/neon — Neon: Serverless Postgres. We separated storage and compute to offer autoscaling, code-like database branching, and scale to zero. Rust · ⭐ 22.9k #postgres #postgresql #serverless #database #rust vitessio/vitess — Vitess is a database clustering system for horizontal scaling of MySQL. Go · ⭐ 21.2k #cncf #mysql #database-cluster #shard #kubernetes #vitess bytebase/bytebase — Database governance built for humans and agents — controlling changes and access across every major database. Go · ⭐ 14.4k #mysql #tidb #postgresql #cicd #sql-client #oracle #sqlserver #schema-migrations #gitops #flyway dbcli/pgcli — Postgres CLI with autocompletion and syntax highlighting Python · ⭐ 13.4k #python #postgresql #postgres #psql #database pressly/goose — A database migration tool. Supports SQL migrations and Go functions. Go · ⭐ 11.3k #database #sql #migration #schema #postgres #mysql #sqlite #golang #go #migrations xo/usql — Universal command-line interface for SQL databases Go · ⭐ 10.1k #sql #postgresql #mysql #sqlite3 #command-line #microsoft-sql-server #oracle-database #database #golang #mariadb flyway/flyway — Flyway by Redgate • Database Migrations Made Easy. Java · ⭐ 10k #flyway #java #database-migrations #java-library #continuous-delivery #devops #sql #continuous-deployment #database #database-deployment ariga/atlas — Declarative schema migrations with schema-as-code workflows Go · ⭐ 8.6k dbgate/dbgate — Database manager for MySQL, PostgreSQL, SQL Server, MongoDB, SQLite and others. Runs under Windows, Linux, Mac or as web application JavaScript · ⭐ 7.2k #sql-server #sql #database-manager #mysql #postgresql #mongodb #sqlite #electron #database-gui #cassandra amacneil/dbmate — 🚀 A lightweight, framework-agnostic database migration tool. Go · ⭐ 7k #database-migrations #golang #nodejs #python #database-schema #docker #mysql #postgresql #sqlite #migration xataio/pgroll — PostgreSQL zero-downtime migrations made easy Go · ⭐ 6.6k #golang #migrations #postgresql #zero-downtime #hacktoberfest #postgres #schema frectonz/sql-studio — SQL Database Explorer [SQLite, libSQL, PostgreSQL, MySQL/MariaDB, ClickHouse, DuckDB, Microsoft SQL Server] Rust · ⭐ 3.6k #rust #sqlite #sqlite-browser #libsql #postgresql #mariadb #mysql #mssql #microsoft-sql-server #duckdb ankane/pgsync — Sync data from one Postgres database to another Ruby · ⭐ 3.5k #postgresql crystaldba/postgres-mcp — Postgres MCP Pro provides configurable read/write access and performance analysis for you and your AI agents. Python · ⭐ 3.2k David-Crty/databasement — Self-hosted database backup manager with a web UI. Schedule, backup, and restore MySQL, PostgreSQL, MariaDB, Microsoft SQL Server, MongoDB, SQLite \u0026amp; Redis to S3, SFTP, Samba or local storage. SSH Tunnel support. PHP · ⭐ 2k #backup #database #s3 #mariadb #mysql #sqlite #backup-restore #database-backup #database-management #postgres BemiHQ/BemiDB — Open-source Snowflake \u0026amp; Fivetran alternative, with Postgres compatibility. Go · ⭐ 1.5k #analytics #data-lakehouse #data-warehouse #duckdb #iceberg #olap #parquet #postgresql #zero-etl #data-movement timestored/qstudio — qStudio - Free SQL Analysis Tool Java · ⭐ 1.1k #database #duckdb #sql #kdb #clickhouse #duckdb-database #gui #kdb-q #mysql #postgresql vrmiguel/pgpad — A small, fast cross-platform database client Rust · ⭐ 652 #postgres #postgresql #rust #sqlite #svelte #tauri incentius-foss/WhatTheDuck — WhatTheDuck is an open-source web application built on DuckDB. It allows users to upload CSV and Parquet files, store them in tables, and perform SQL queries on the data. Vue · ⭐ 630 #csv #duckdb #sql paradedb/pg_analytics — DuckDB-powered data lake analytics from Postgres (archived) (stale) Rust · ⭐ 540 #analytics #arrow #columnar #datafusion #lakehouse #paradedb #parquet #postgres #postgresql #duckdb Storage minio/minio — MinIO is a high-performance, S3 compatible object store, open sourced under GNU AGPLv3 license. (archived) Go · ⭐ 61.4k #go #storage #cloud #s3 #objectstorage #cloudstorage #amazon-s3 #cloudnative #k8s #kubernetes seaweedfs/seaweedfs — SeaweedFS is a distributed storage system for object storage (S3), file systems, and Iceberg tables, designed to handle billions of files with O(1) disk access and effortless horizontal scaling. Go · ⭐ 34.1k #distributed-storage #distributed-systems #s3 #hdfs #fuse #distributed-file-system #hadoop-hdfs #posix #tiered-file-system #kubernetes rustfs/rustfs — 🚀2.3x faster than MinIO for 4KB object payloads. RustFS is an open-source, S3-compatible high-performance object storage system supporting migration and coexistence with other S3-compatible platforms such as MinIO and Ceph. Rust · ⭐ 31.1k #bigdata #cloud-native #filesystem #object-storage #rust #s3 #minio #amazon-s3 #objectstorage #ai-native juicedata/juicefs — JuiceFS is a distributed POSIX file system built on top of Redis and S3. Go · ⭐ 14.3k #filesystem #cloud-native #golang #redis #distributed-systems #storage #object-storage #posix #hdfs #s3 Kodiqa-Solutions/VaultS3 — Lightweight, S3-compatible object storage server with built-in web dashboard. Single binary, low memory, encryption at rest. Go · ⭐ 833 Tools anomalyco/opencode — The open source coding agent. TypeScript · ⭐ 197.8k fatedier/frp — A fast reverse proxy to help you expose a local server behind a NAT or firewall to the internet. Go · ⭐ 108.8k #proxy #reverse-proxy #tunnel #nat #go #firewall #frp #expose #http-proxy #p2p google-gemini/gemini-cli — An open-source AI agent that brings the power of Gemini directly into your terminal. TypeScript · ⭐ 106.5k #gemini #gemini-api #ai #ai-agents #cli #mcp-client #mcp-server nvbn/thefuck — Magnificent app which corrects your previous console command. (stale) Python · ⭐ 97.7k #python #shell sherlock-project/sherlock — Hunt down social media accounts by username across social networks Python · ⭐ 89.6k #osint #reconnaissance #linux #cli #sherlock #python3 #redteam #tools #information-gathering #hacktoberfest zed-industries/zed — Code at the speed of thought – Zed is a high-performance, multiplayer code editor from the creators of Atom and Tree-sitter. Rust · ⭐ 88.7k #text-editor #zed #gpui #rust-lang junegunn/fzf — :cherry_blossom: A command-line fuzzy finder Go · ⭐ 82.5k #fzf #go #bash #zsh #fish #vim #neovim #cli #unix #tmux jesseduffield/lazygit — simple terminal UI for git commands Go · ⭐ 81.4k #cli #git #terminal unclecode/crawl4ai — 🚀🤖 Crawl4AI: Open-source LLM Friendly Web Crawler \u0026amp; Scraper. Don\u0026#39;t be shy, join here: https://discord.gg/jP8KfhDhyN Python · ⭐ 78.2k opendatalab/MinerU — Transforms complex documents like PDFs and Office docs into LLM-ready markdown/JSON for your Agentic workflows. Python · ⭐ 77.7k #extract-data #layout-analysis #ocr #parser #pdf #pdf-converter #python #document-analysis #pdf-parser #pdf-extractor-llm Eugeny/tabby — A terminal for a more modern age TypeScript · ⭐ 73.9k #terminal-emulators #terminal #serial #ssh-client #telnet-client daytonaio/daytona — Daytona is a Secure and Elastic Infrastructure for Running AI-Generated Code ⭐ 72k #developer-tools #agentic-workflow #ai #ai-agents #ai-runtime #code-execution #code-interpreter #ai-sandboxes BurntSushi/ripgrep — ripgrep recursively searches directories for a regex pattern while respecting your gitignore Rust · ⭐ 67.3k #ripgrep #recursively-search #search #regex #gitignore #grep #command-line-tool #command-line #cli #rust alacritty/alacritty — A cross-platform, OpenGL terminal emulator. Rust · ⭐ 65.4k #terminal-emulators #opengl #gpu #rust #vte #terminal #linux #macos #windows #bsd scrapy/scrapy — Scrapy, a fast high-level web crawling \u0026amp; scraping framework for Python. Python · ⭐ 63.9k #python #scraping #crawling #framework #crawler #hacktoberfest #web-scraping #web-scraping-python tldr-pages/tldr — Collaborative cheatsheets for console commands 📚. Markdown · ⭐ 63.4k #shell #man-page #tldr #documentation #terminal #command-line #console #examples #help #manual tw93/Pake — 🤱🏻 Turn any webpage into a desktop app with one command. Rust · ⭐ 60.7k #rust #tauri #no-electron #chatgpt #youtube #gemini #claude #desktop #hight-performance #linux pocketbase/pocketbase — Open Source realtime backend in 1 file Go · ⭐ 60.7k #authentication #backend #realtime #golang sharkdp/bat — A cat(1) clone with wings. Rust · ⭐ 60.2k #command-line #tool #syntax-highlighting #git #terminal #cli #rust #hacktoberfest ghostty-org/ghostty — 👻 Ghostty is a fast, feature-rich, and cross-platform terminal emulator that uses platform-native UI and GPU acceleration. Zig · ⭐ 59.7k wagoodman/dive — A tool for exploring each layer in a docker image (stale) Go · ⭐ 54.5k #docker #docker-image #inspector #explorer #cli #tui jesseduffield/lazydocker — The lazier way to manage everything docker Go · ⭐ 52.5k agalwood/Motrix — A full-featured download manager. TypeScript · ⭐ 52.5k #motrix #aria2 #download-manager #macos #windows #linux #bittorrent #magnet #electron #bt apple/container — A tool for creating and running Linux containers using lightweight virtual machines on a Mac. It is written in Swift, and optimized for Apple silicon. Swift · ⭐ 49k KeygraphHQ/shannon — Shannon is an AI pentester for web applications and APIs. It analyzes your source code, identifies attack vectors, and executes real exploits to prove vulnerabilities before they reach production. TypeScript · ⭐ 46.8k #penetration-testing #pentesting #security-audit #security-automation #security-tools #ai-penetration-testing #ai-security #cybersecurity #ethical-hacking #offensive-security stablyai/orca — Orca is the ADE for working with a fleet of parallel agents. Run any coding agent with your own subscription. Available on desktop, mobile and VPS. TypeScript · ⭐ 46k #claude-code #codex #ghostty #terminal #cli #cursor-agent #opencode #orchestration #worktrees #parallel-agents vercel/hyper — A terminal built on web technologies TypeScript · ⭐ 44.7k #terminal #javascript #html #css #react #terminal-emulators #hyper #macos #linux sharkdp/fd — A simple, fast and user-friendly alternative to \u0026#39;find\u0026#39; Rust · ⭐ 44.1k #command-line #tool #filesystem #search #regex #rust #cli #terminal #hacktoberfest sxyazi/yazi — 💥 Blazing fast terminal file manager written in Rust, based on async I/O. Rust · ⭐ 41.4k #asyncio #concurrency #file-manager #linux #macos #rust #tui #windows #terminal #android GyulyVGC/sniffnet — Comfortably monitor your network traffic 🕵️‍♂️ Rust · ⭐ 40.6k #network-analysis #networking #packet-sniffer #rust-crate #linux #macos #packet-capture #rust #windows #security nushell/nushell — A new type of shell Rust · ⭐ 40.3k #shell #rust #nushell koalaman/shellcheck — ShellCheck, a static analysis tool for shell scripts Haskell · ⭐ 39.9k #haskell #shell #static-analysis #bash #linter #developer-tools mattermost/mattermost — Mattermost is an open source platform for secure collaboration across the entire software development lifecycle.. TypeScript · ⭐ 38.8k #collaboration #mattermost #golang #react-native #hacktoberfest #monorepo #react lapce/lapce — Lightning-fast and Powerful Code Editor written in Rust Rust · ⭐ 38.7k #code-editor #developer-tools #rust #text-editor #vim ajeetdsouza/zoxide — A smarter cd command. Supports all major shells. Rust · ⭐ 38.7k #z #command-line #rust #zsh #autojump #bash #powershell #shell #fish #xonsh markedjs/marked — A markdown parser and compiler. Built for speed. JavaScript · ⭐ 37.1k #markdown #compiler #parser #commonmark #gfm #hacktoberfest zsh-users/zsh-autosuggestions — Fish-like autosuggestions for zsh (stale) Shell · ⭐ 36k #shell #autosuggest #zsh #zsh-autosuggestions #fish #autocomplete restic/restic — Fast, secure, efficient backup program Go · ⭐ 35.5k #go #restic #backup #deduplication #dedupe #secure-by-default casey/just — 🤖 Just a command runner Rust · ⭐ 35.3k zellij-org/zellij — A terminal workspace with batteries included Rust · ⭐ 34.9k #workspace #terminal #multiplexer qishibo/AnotherRedisDesktopManager — 🚀🚀🚀A faster, better and more stable Redis desktop manager [GUI client], compatible with Linux, Windows, Mac. JavaScript · ⭐ 34.6k #redis-desktop-manager #redis-cluster #redis-gui #redis-client #redis lissy93/web-check — 🕵️‍♂️ All-in-one OSINT tool for analysing any website TypeScript · ⭐ 34.5k #osint #privacy #security #security-tools #sysadmin kovidgoyal/kitty — If you live in the terminal, kitty is made for you! Cross-platform, fast, feature-rich, GPU based. Python · ⭐ 34.4k #terminal-emulators #opengl #terminfo #vt100 #python #c #terminal #kitty #kitty-terminal #go derailed/k9s — 🐶 Kubernetes CLI To Manage Your Clusters In Style! Go · ⭐ 34.4k #k9s #kubernetes #kubernetes-cli #kubernetes-clusters #k8s #k8s-cluster #go #golang fish-shell/fish-shell — The user-friendly command line shell. Rust · ⭐ 34k #fish #shell #terminal #rust jdx/mise — dev tools, env vars, task runner Rust · ⭐ 32.4k atuinsh/atuin — ✨ Making your shell magical Rust · ⭐ 31.2k #shell #rust #zsh #history #fish #bash cjpais/Handy — A free, open source, and extensible speech-to-text application that works completely offline. Rust · ⭐ 29.6k #speech-to-text #tauri-v2 #accessibility #cross-platform herdrdev/herdr — the runtime your coding agents live on Rust · ⭐ 29.5k #agent #agent-orchestration #ai #ai-agents #claude-code #cli #codex #coding-agents #developer-tools #devtools Zackriya-Solutions/meetily — Privacy first, AI meeting assistant with 4x faster Parakeet/Whisper live transcription, speaker diarization, and Ollama summarization built on Rust. 100% local processing. no cloud required. Meetily (Meetly Ai - https://meetily.ai) is the #1 Self-hosted, Open-source Ai meeting note taker for macOS \u0026amp; Windows. Understand How to write meeting minutes Rust · ⭐ 29.2k #meeting-minutes #meeting-notes #llm #mac #windows #rust #whisper #whisper-cpp #ai #transcription goharbor/harbor — An open source trusted cloud native registry project that stores, signs, and scans content. Go · ⭐ 29.2k #cncf #container #registry #helm #cloud-native #containers #docker #kubernetes #cncf-project #container-management voideditor/void (archived) TypeScript · ⭐ 28.8k #cursor #editor #chatgpt #claude #copilot #developer-tools #llm #open-source #openai #visual-studio-code trufflesecurity/trufflehog — Find, verify, and analyze leaked credentials Go · ⭐ 27.5k #secret #trufflehog #credentials #security #devsecops #dynamic-analysis #security-tools #secrets #verification #secret-management charmbracelet/crush — Glamourous agentic coding for all 💘 Go · ⭐ 27.4k #agentic-ai #ai #llms #ravishing wg-easy/wg-easy — The easiest way to run WireGuard VPN \u0026#43; Web-based Admin UI. TypeScript · ⭐ 26.7k hashcat/hashcat — World\u0026#39;s fastest and most advanced password recovery utility C · ⭐ 26.5k #hashcat #password #cracking #gpgpu #opencl #c #hashes #cuda manaflow-ai/cmux — Open source Ghostty-based macOS terminal with vertical tabs and notifications for AI coding agents. Built for multitasking, organization, and programmability. Swift · ⭐ 26.1k #amp #claude-code #codex #gemini #ghostty #opencode #terminal #tmux #cli #coding-agents asdf-vm/asdf — Extendable version manager with support for Ruby, Node.js, Elixir, Erlang \u0026amp; more Go · ⭐ 25.5k #version-manager #ruby #multiple-languages #cli #shell #asdf-vm #bash #elvish #fish #node gpakosz/.tmux — Oh my tmux! My self-contained, pretty \u0026amp; versatile tmux configuration made with 💛🩷💙🖤❤️🤍 Shell · ⭐ 25.3k #tmux #tmux-conf #tmux-configuration #tmux-config #powerline #dotfiles #cli #configuration #terminal #customization JanDeDobbeleer/oh-my-posh — The most customisable and low-latency cross platform/shell prompt renderer Go · ⭐ 23.3k #golang #powershell #zsh #hacktoberfest #prompt #prompt-toolkit #bash #cmd #fish #fish-shell eza-community/eza — A modern alternative to ls Rust · ⭐ 22.9k #color #command-line #files #icons #ls #nerd-fonts #rust #terminal #tools #hacktoberfest yorukot/superfile — Pretty fancy and modern terminal file manager Go · ⭐ 22.6k #bubbletea #cli #file-manager #filesystem #golang #linux-app #terminal-app #tui #filemanager #terminal-based gildas-lormeau/SingleFile — Web Extension for saving a faithful copy of a complete web page in a single HTML file JavaScript · ⭐ 22.2k #browser #archive #auto-save #chrome #firefox #offline-reading #osint #chrome-extension #firefox-addon #puppeteer lima-vm/lima — Linux virtual machines, with a focus on running containers Go · ⭐ 21.7k #vm #qemu #macos #containerd #lima-vm gitbutlerapp/gitbutler — The GitButler version control client, backed by Git, powered by Tauri/Rust/Svelte Rust · ⭐ 21.5k #git #github #tauri pranshuparmar/witr — Why is this running? Trace any process, port, container, or file back to what started it - CLI \u0026#43; TUI. Go · ⭐ 21.4k #cli #devops #freebsd #golang #linux #macos #observability #sysadmin #troubleshooting #tui steipete/CodexBar — Show usage stats for OpenAI Codex and Claude Code, without having to login. Swift · ⭐ 20.1k #ai #codex #swift #claude-code floci-io/floci — Light, fluffy, and always free - The AWS Local Emulator alternative Java · ⭐ 20.1k #aws #aws-emulation #localstack #devops #docker #ec2 #ecs #s3 #sqs #testcontainers SnapDrop/snapdrop — A Progressive Web App for local file sharing (stale) JavaScript · ⭐ 19.7k #webrtc #pwa #snapdrop yudai/gotty — Share your terminal as a web application (stale) Go · ⭐ 19.5k #tty #terminal #browser #web #go #websocket #javascript #typescript kubernetes-sigs/kubespray — Deploy a Production Ready Kubernetes Cluster Jinja · ⭐ 18.7k #kubernetes-cluster #ansible #kubernetes #high-availability #bare-metal #gce #aws #kubespray #k8s-sig-cluster-lifecycle #hacktoberfest docusealco/docuseal — Open source DocuSign alternative. Create, fill, and sign digital documents ✍️ Ruby · ⭐ 18.3k #documents #pdf #self-hosted #document-signing #e-signature #open-source #ruby-on-rails #tailwindcss #webpack #hotwired-turbo ginuerzh/gost — GO Simple Tunnel - a simple tunnel written in golang (stale) Go · ⭐ 18.2k #go #tunnel #golang #shadowsocks #quic #kcp #ssh #http2 #obfs4 #socks5 wtfutil/wtf — The personal information dashboard for your terminal Go · ⭐ 17.1k #golang #dashboard #terminal #tui #cui #go #devops #wtf #wtfutil #hacktoberfest kubernetes/kops — Kubernetes Operations (kOps) - Production Grade k8s Installation, Upgrades and Management Go · ⭐ 16.7k #kubernetes #go #cncf #containers #kops cryptomator/cryptomator — Cryptomator for Windows, macOS, and Linux: Secure client-side encryption for your cloud storage, ensuring privacy and control over your data. Java · ⭐ 15.9k #cryptomator #java #cloud-storage #cryptography #crypto #security #privacy #encryption mikefarah/yq — yq is a portable command-line YAML, JSON, XML, CSV, TOML, HCL and properties processor Go · ⭐ 15.8k #yaml-processor #yaml #cli #golang #splat #devops-tools #portable #bash #xml #json loft-sh/devpod — Codespaces but open-source, client-only and unopinionated: Works with any IDE and lets you use any cloud, kubernetes or just localhost docker. Go · ⭐ 15.1k #cloud #devcontainer #devcontainers #developer-tools #development #docker #ide #kubernetes #remote-development #remote-development-environment tmux-plugins/tpm — Tmux Plugin Manager Shell · ⭐ 15k sqshq/sampler — Tool for shell commands execution, visualization and alerting. Configured with a simple YAML file. (stale) Go · ⭐ 14.8k #shell #visualization #cmd #terminal #charts #alerting #sampler #command-line #command-line-tool #monitoring GoogleCloudPlatform/terraformer — CLI tool to generate terraform files from existing infrastructure (reverse Terraform). Infrastructure to Code (archived) Go · ⭐ 14.6k #cloud #terraform #terraform-configurations #gcp #google-cloud #hcl #golang #infrastructure-as-code #aws #kubernetes basecamp/kamal — Deploy web apps anywhere. Ruby · ⭐ 14.5k casdoor/casdoor — An open-source Agent-first Identity and Access Management (IAM) /LLM MCP \u0026amp; agent gateway and auth server with web UI supporting OpenClaw, MCP, OAuth, OIDC, SAML, CAS, LDAP, SCIM, WebAuthn, TOTP, MFA, Face ID, Google Workspace, Azure AD Go · ⭐ 14.2k #oidc #sso #oauth #iam #saml #webauthn #mfa #single-sign-on #radius #scim dream-num/univer — Univer is a full-stack framework for creating and editing spreadsheets / word processor / presentation on both web and server. TypeScript · ⭐ 14.1k #data-table #excel #spreadsheet #xlsx #doc #word #grid #live-share #ppt #collaboration ClementTsang/bottom — Yet another cross-platform graphical process/system monitor. Rust · ⭐ 13.9k #top #terminal #cli #tui #monitoring #cross-platform #bottom #btm #rust dbcli/pgcli — Postgres CLI with autocompletion and syntax highlighting Python · ⭐ 13.4k #python #postgresql #postgres #psql #database CodisLabs/codis — Proxy based Redis cluster solution supporting pipeline and scaling dynamically (stale) Go · ⭐ 13.2k #go #redis #redis-cluster #nosql #golang tiny-craft/tiny-rdm — Tiny RDM (Tiny Redis Desktop Manager) - A modern, colorful, super lightweight Redis GUI client for Mac, Windows, and Linux. It also provides a web version that can be deployed via Docker. Vue · ⭐ 13k #icon-pack #naive-ui #redis #redis-client #vue #wails #wails-app #web-view #go #golang anchore/grype — A vulnerability scanner for container images and filesystems Go · ⭐ 12.7k #containers #security #vulnerability #docker #golang #go #static-analysis #container-image #tool #oci infracost/infracost — Cloud cost intelligence for engineers, AI coding agents, and CI/CD 💰📉 Shift FinOps Left! Go · ⭐ 12.5k #terraform #cost-estimation #infrastructure-as-code #aws #terraform-cost-estimation #cloud #cost-optimization #cost-management #gcp #azure dlvhdr/gh-dash — A rich terminal UI for GitHub that doesn\u0026#39;t break your flow. Go · ⭐ 12.3k #gh-extension #cli #bubbletea #glamour #lipgloss #bubbles #cobra #go #golang #terminal svenstaro/genact — 🌀 A nonsense activity generator Rust · ⭐ 12.2k #fake #nonsense #useless #cli #wasm #webassembly #hacktoberfest TwiN/gatus — Automated developer-oriented status page with alerting and incident support Go · ⭐ 11.8k #golang #go #health #monitor #monitoring #dashboard #alerting #slack #devops #status podman-container-tools/skopeo — Work with remote images registries - retrieving information, images, signing content Go · ⭐ 11.2k nicolaka/netshoot — a Docker \u0026#43; Kubernetes network trouble-shooting swiss-army container Shell · ⭐ 10.9k #network #containers #kubernetes #docker #troubleshooting #network-namespace asciimoo/wuzz — Interactive cli tool for HTTP inspection Go · ⭐ 10.7k #curl #golang #cli #http #inspector #http-inspection #go screego/server — screen sharing for developers https://screego.net/ Go · ⭐ 10.5k #webrtc #screensharing-tool #privacy #selfhosted #docker #go altic-dev/FluidVoice — Fastest and only macOS Dictation app with on-device STT and custom trained AI enhancement model. A local Wispr Flow alternative. ⭐ helps a ton :) Windows \u0026amp; iOS waitlist open. Linux soon. Swift · ⭐ 10.3k #ai #dictation #ios #llama-cpp #macos #swift xo/usql — Universal command-line interface for SQL databases Go · ⭐ 10.1k #sql #postgresql #mysql #sqlite3 #command-line #microsoft-sql-server #oracle-database #database #golang #mariadb git-bug/git-bug — Distributed, offline-first bug tracker embedded in git Go · ⭐ 10k #bugtracker #git #decentralized-application #distributed-systems #gitdb AGWA/git-crypt — Transparent file encryption in git C\u0026#43;\u0026#43; · ⭐ 9.8k macfuse/macfuse — macFUSE umbrella repository ⭐ 9.8k #macfuse anchore/syft — CLI tool and library for generating a Software Bill of Materials from container images and filesystems Go · ⭐ 9.4k #containers #docker #go #golang #static-analysis #tool #oci #sbom #spdx #cyclonedx getagentseal/codeburn — Free, local tool to track AI coding token usage and cost across 37 tools and agents (Claude Code, Cursor, Codex, Gemini and more), by model, project, and task. npx codeburn TypeScript · ⭐ 9.4k #ai-coding #claude-code #cli #codex #cost-tracking #developer-tools #observability #terminal-ui #token-usage #cursor-ide orbstack/orbstack — Fast, light, simple Docker containers \u0026amp; Linux machines Shell · ⭐ 9.2k #mac #docker #linux #macos #utm #virtual-machine #colima #docker-desktop #lima maxence-charriere/go-app — A package to build progressive web apps with Go programming language and WebAssembly. Go · ⭐ 9k #go #golang #ui #gui #wasm #awesome-go #pwa jo-inc/camofox-browser — Stealth headless browser for AI agents — bypass Cloudflare, bot detection, and anti-scraping. Drop-in Puppeteer/Playwright replacement. JavaScript · ⭐ 8.6k #ai-agent #anti-bot #antidetect-browser #automation #bot-detection #browser-automation #cloudflare-bypass #headless-browser #javascript #nodejs ko-build/ko — Build and deploy Go applications Go · ⭐ 8.5k #kubernetes #go #container #deploy #golang #containers #docker modem-dev/hunk — Review-first terminal diff viewer for agentic coders TypeScript · ⭐ 8.4k #cli #code-review #diff #git #tui #agents #jj #jujutsu #sapling #terminal smtg-ai/claude-squad — Manage multiple AI terminal agents like Claude Code, Codex, OpenCode, and Amp. Go · ⭐ 8.3k #claude-code #cli #vibe-coding #codex #opencode j178/prek — ⚡ A fast Git hook manager written in Rust, designed as a drop-in alternative to pre-commit, reimagined. Rust · ⭐ 8.3k #git #pre-commit #git-hooks cryptpad/cryptpad — Collaborative office suite, end-to-end encrypted and open-source. JavaScript · ⭐ 7.8k #collaborative-editing #cryptpad #javascript #chainpad #collaboration #e2ee #end-to-end-encryption #real-time GoogleCloudPlatform/kubectl-ai — AI powered Kubernetes Assistant Go · ⭐ 7.5k #ai #assistant #cli #kubernetes lucasgelfond/zerobrew — A 5-20x faster experimental Homebrew alternative Rust · ⭐ 7.5k dbgate/dbgate — Database manager for MySQL, PostgreSQL, SQL Server, MongoDB, SQLite and others. Runs under Windows, Linux, Mac or as web application JavaScript · ⭐ 7.2k #sql-server #sql #database-manager #mysql #postgresql #mongodb #sqlite #electron #database-gui #cassandra gopasspw/gopass — The slightly more awesome standard unix password manager for teams Go · ⭐ 7.1k #go #password-manager #git #gpg #hacktoberfest #security sindresorhus/fkill-cli — Fabulously kill processes. Cross-platform. JavaScript · ⭐ 7k #nodejs #cli-app #cli #kill #unicorns #javascript #cross-platform #fabulous #process nicotsx/zerobyte — Backup automation for self-hosters. Built on top of restic TypeScript · ⭐ 6.8k #backup #backup-utility #restic #self-hosted olimorris/codecompanion.nvim — ✨ AI Coding, Vim Style Lua · ⭐ 6.8k #neovim #openai #anthropic #ollama #plugin #copilot #gemini #google-gemini #llm #nvim uber/kraken — P2P Docker registry capable of distributing TBs of data in seconds Go · ⭐ 6.7k #docker #docker-registry #container #docker-image #p2p #bittorrent #containerd max-sixty/worktrunk — Worktrunk is a CLI for Git worktree management, designed for parallel AI agent workflows Rust · ⭐ 6.5k #agents #claude-code #codex #developer-tools #git #worktrees Andyyyy64/whichllm — Find the local LLM that actually runs and performs best on your hardware. Ranked by real, recency-aware benchmarks, not parameter count. One command, run it instantly. Python · ⭐ 6.3k #ai #cli #llm #local-llm #command-line-tool #gguf #gpu #huggingface #inference #ollama ankitpokhrel/jira-cli — 🔥 Feature-rich interactive Jira command line. Go · ⭐ 5.9k #go #golang #cli #cli-app #tui #terminal-app #jira #command-line #command-line-tool #atlassian Beingpax/VoiceInk — The best open-source alternative to Superwhisper \u0026amp; Wispr Flow. Voice-to-text app for macOS with no subscription Swift · ⭐ 5.9k #macos #macos-app #swift mgramin/awesome-db-tools — Everything that makes working with databases easier ⭐ 5.3k #awesome #awesome-list #database #monitoring #sql-client #visualization #database-management #cross-database #ide sqlpad/sqlpad — Web-based SQL editor (archived) JavaScript · ⭐ 5.2k dbeaver/cloudbeaver — Cloud Database Manager TypeScript · ⭐ 5.1k #webapp #dbeaver #databases #database #cloud-database-manager #cloud ElasticHQ/elasticsearch-HQ — Monitoring and Management Web Application for ElasticSearch instances and clusters. (stale) JavaScript · ⭐ 5k #elasticsearch #elasticsearch-plugin #elasticsearch-client #elasticsearch-gui #monitoring #elastichq magefile/mage — a Make/rake-like dev tool using Go Go · ⭐ 4.7k #make #buildscript #go #golang #mage #magefile tmux-python/tmuxp — 🖥️ Session manager for tmux, built on libtmux. Python · ⭐ 4.6k #tmux #python #yaml #json #session-manager #cli #cli-utilities #terminal #teamocil #tmuxinator stratumauth/app — 📱 Two-Factor Authentication (2FA) client for Android \u0026#43; Wear OS C# · ⭐ 4.5k #android #two-factor-authentication #xamarin-android #c-sharp #hotp #totp #tfa #material-design #wear-os #wearos mixedbread-ai/mgrep — A calm, CLI-native way to semantically grep everything, like code, images, pdfs and more. TypeScript · ⭐ 4.4k mvdan/gofumpt — A stricter gofmt Go · ⭐ 4.1k #go #format #style #gofmt #goimports #idiomatic google/go-containerregistry — Go library and CLIs for working with container registries Go · ⭐ 4k #docker #container #registry #container-registry Adembc/lazyssh — A terminal-based SSH manager inspired by lazydocker and k9s - Written in go Go · ⭐ 3.9k #cli #go #lazyssh #scp #ssh #ssh-client #golang #tui #tui-go TablePlus/TablePlus — TablePlus macOS issue tracker ⭐ 3.8k #tableplus #mysql #postgresql #bug #feature doitintl/kube-no-trouble — Easily check your clusters for use of deprecated APIs (stale) Go · ⭐ 3.7k #hacktoberfest #gke #kubernetes #k8s #kube #cluster frectonz/sql-studio — SQL Database Explorer [SQLite, libSQL, PostgreSQL, MySQL/MariaDB, ClickHouse, DuckDB, Microsoft SQL Server] Rust · ⭐ 3.6k #rust #sqlite #sqlite-browser #libsql #postgresql #mariadb #mysql #mssql #microsoft-sql-server #duckdb ankane/pgsync — Sync data from one Postgres database to another Ruby · ⭐ 3.5k #postgresql apache/maven-mvnd — Apache Maven Daemon Java · ⭐ 3.5k #java #build-management #apache-maven #maven mmatczuk/go-http-tunnel — Fast and secure tunnels over HTTP/2 (stale) Go · ⭐ 3.3k #go #golang #http #http2 #tcp #tls #tls-tunnel #tunnel #proxy #local-machine catppuccin/tmux — 💽 Soothing pastel theme for Tmux Shell · ⭐ 3.1k #catppuccin #tmux #tmux-conf #tmux-theme #colorscheme #colors #hacktoberfest teler-sh/teler — Real-time HTTP Intrusion Detection (archived) (stale) Go · ⭐ 3.1k #threat-hunting #threat-intelligence #ids #intrusion-detection-system #threat-analyzer #go #golang #intrusion-detection #intrusion #threat pulumi/kubespy — Tools for observing Kubernetes resources in real time, powered by Pulumi. Go · ⭐ 3.1k darkoperator/dnsrecon — DNS Enumeration Script Python · ⭐ 3.1k event-catalog/eventcatalog — Documentation tool built for software architecture. Document your domains, services, events and schemas — for your teams and your AI agents. TypeScript · ⭐ 2.8k #architecture #documentation #domain-driven-design #event-driven-architecture #microservices #ai #asyncapi #ddd #distributed-systems #event-catalog agavra/tuicr — a code review TUI with vim keybindings Rust · ⭐ 2.7k #ai-tools #code-review #rust #tui laixintao/iredis — Interactive Redis: A Terminal Client for Redis with AutoCompletion and Syntax Highlighting. Python · ⭐ 2.7k #redis #redis-cli #command-line-tool #redis-client cars10/elasticvue — Elasticsearch gui - desktop app, browser extension, docker, self hosted TypeScript · ⭐ 2.7k #elasticsearch #elasticsearch-browser #elasticsearch-gui #elasticsearch-frontend jfernandez/bpftop — bpftop provides a dynamic real-time view of running eBPF programs. It displays the average runtime, events per second, and estimated total CPU % for each program. C · ⭐ 2.7k #bpf #ebpf #linux #cli sharkdp/numbat — A statically typed programming language for scientific computations with first class support for physical dimensions and units Rust · ⭐ 2.6k #calculator #physics #programming-language #statically-typed #terminal-based #units #web-app kubie-org/kubie — A more powerful alternative to kubectx and kubens Rust · ⭐ 2.6k #kubernetes #kubectl #kubectx #kubens metatool-ai/metamcp — MCP Aggregator, Orchestrator, Middleware, Gateway in one docker TypeScript · ⭐ 2.6k #mcp #mcp-server #mcp-servers #vibe-coding #model-context-protocol #model-context-protocol-server #model-context-protocol-servers #open-webui #self-hosted #mcp-to-openapi matthart1983/netwatch — Real-time network diagnostics in your terminal. One command, zero config, instant visibility. Rust · ⭐ 2.5k facebookincubator/below — A time traveling resource monitor for modern Linux systems Rust · ⭐ 2.5k HACKERALERT/Picocrypt — A very small, very simple, yet very secure encryption tool. (archived) Go · ⭐ 2.5k #sha3 #xchacha20 #encryption #cryptography #security #security-tools #privacy-tools #privacy #serpent #reed-solomon oras-project/oras — OCI registry client - managing content like artifacts, images, packages Go · ⭐ 2.4k #oci #docker #registry #storage #hacktoberfest pinterest/querybook — Querybook is a Big Data Querying UI, combining collocated table metadata and a simple notebook interface. TypeScript · ⭐ 2.3k #metastore #analyses #hive #presto #notebook #typescript #flask #celery #charting huseyinbabal/taws — Terminal UI for AWS (taws) - A terminal-based AWS resource viewer and manager Rust · ⭐ 2.2k pretzelai/pretzelai — The modern replacement for Jupyter Notebooks (stale) TypeScript · ⭐ 2.2k #duckdb #open-source #prql #wasm #analytics #business-intelligence #businessintelligence #dashboard #data #data-analysis jdx/fnox — encrypted/remote secret manager Rust · ⭐ 2k google/yamlfmt — An extensible command line tool or library to format yaml files. Go · ⭐ 1.8k kubetail-org/kubetail — Real-time logging dashboard for Kubernetes. View logs in a terminal or a browser. Run anywhere - desktop, cluster, docker. Go · ⭐ 1.8k #kubernetes #logging #real-time #private #dashboard #monitoring #cluster #devops #observability AstroNvim/astrocommunity — A community repository of common plugin specifications Lua · ⭐ 1.7k #lua #neovim #astronvim #astrovim #lazy #lazynvim #hacktoberfest #neovim-lua-plugin #neovim-plugin whyisdifficult/jiratui — A Textual User Interface for interacting with Atlassian Jira from your shell Python · ⭐ 1.7k #cli #developer-tool #jira #task-management #python #tui #atlassian #atlassian-jira #terminal #shell chainguard-dev/apko — Build OCI images from APK packages directly without Dockerfile Go · ⭐ 1.7k #docker #oci #containers BemiHQ/BemiDB — Open-source Snowflake \u0026amp; Fivetran alternative, with Postgres compatibility. Go · ⭐ 1.5k #analytics #data-lakehouse #data-warehouse #duckdb #iceberg #olap #parquet #postgresql #zero-etl #data-movement polius/FileSync — Send files from one device to many in real-time. JavaScript · ⭐ 1.5k #fastapi #fileshare #javascript #self-hosted #webrtc #docker hidetatz/kubecolor — colorizes kubectl output (archived) (stale) Go · ⭐ 1.4k #kubectl #kubernetes doy/rbw — unofficial bitwarden cli Rust · ⭐ 1.4k getseabird/seabird — Native Kubernetes desktop IDE designed for seamless cluster exploration (stale) Go · ⭐ 1.4k #gui #kubernetes #ide abhixdd/ghgrab — A simple, pretty terminal tool that lets you browse and download files from GitHub, GitLab, Codeberg, Gitea, and Forgejo without leaving your CLI. Rust · ⭐ 1.3k #cli #filedownloader #github #node #python #ratatui #rust #tui Yazelix/nova — Yazelix Nova is a Nix-packaged terminal workspace built from focused first-party components, including Mars, Nova Zellij, Nova Helix, Yazi, Nushell, Ratconfig, popups, status widgets, cursors, and Anima. Rust · ⭐ 1.1k #editor #helix #multiplexer #terminal #yazi #zellij #ide #lua #nushell #file-manager cenkalti/rain — 🌧 BitTorrent client and library in Go Go · ⭐ 1.1k #torrent #bittorrent #p2p #golang timestored/qstudio — qStudio - Free SQL Analysis Tool Java · ⭐ 1.1k #database #duckdb #sql #kdb #clickhouse #duckdb-database #gui #kdb-q #mysql #postgresql jdx/hk — git hooks and project lints Rust · ⭐ 1.1k tombi-toml/tombi — TOML Formatter / Linter / Language Server Rust · ⭐ 1.1k #formatter #language-server #linter #toml #lsp #cli #rust immanuwell/dockerfile-roast — droast - a dockerfile linter that actually has opinions 🔥 Rust · ⭐ 1.1k #ci #continious-integration #docker #dockerfile #linter #rust #wasm #static-analysis #dockerfile-linter #security cloudlena/s3manager — A Web GUI for your S3 buckets Go · ⭐ 1k #go #s3 #material-design #golang #gui Macmod/godap — A complete terminal user interface (TUI) for LDAP. Go · ⭐ 969 #active-directory #go #golang #ldap #ldap-client #terminal #tui #tview fclairamb/ftpserver — Golang based autonomous FTP server with SFTP, S3, Dropbox, and Google Drive connectors. Go · ⭐ 792 #golang #ftp-server #s3 #afero #google-drive #ftp #go padok-team/burrito — 🌯 Burrito is a TACoS Kubernetes Operator - \u0026#34;Argo CD for Terraform\u0026#34; Go · ⭐ 750 #cd #ci #cicd #kubernetes #kubernetes-operator #operator #terraform #tacos #opentofu #terragrunt vrmiguel/pgpad — A small, fast cross-platform database client Rust · ⭐ 652 #postgres #postgresql #rust #sqlite #svelte #tauri jdx/pitchfork — Daemons with DX Rust · ⭐ 596 grafana/gcx — A CLI for managing Grafana and Grafana Cloud resources. Optimized for agentic usage. Go · ⭐ 554 kitlangton/stack TypeScript · ⭐ 539 tak-bro/aicommit2 — A Reactive CLI that generates commit messages for Git and Jujutsu with Ollama, ChatGPT, Gemini, Claude, Mistral and other AI TypeScript · ⭐ 528 #aicommit #anthropic #chatgpt #claude #cli #ollama #git-commit #cohere #mistral #groq cesarferreira/rip — Fuzzy find and kill processes from your terminal Rust · ⭐ 465 #kill #rust #terminal leeguooooo/claude-code-usage-bar — Lightweight Claude Code statusLine: 5h/7d rate-limit usage, reset countdowns, model \u0026#43; context window, prompt-cache age — one line, 3 styles × 9 themes, daemon fast-mode Python · ⭐ 349 #ai-tools #claude-ai #developer-tools #monitoring #productivity #python #status-bar #token-monitoring #cli-tool #usage-tracking protonpass/pass-cli Rust · ⭐ 349 chmouel/lazyworktree — Easy Git worktree management CLI and TUI for the terminal. Go · ⭐ 283 #git #lazy #terminal #tui #golang #worktree-manager #worktrees #bubbletea #charmbracelet #tmux AKSarav/KubeNodeUsage — KubeNodeUsage is a Terminal App designed to provide insights into Kubernetes node and pod usage. It offers both interactive exploration and command-line filtering options to help you analyze your cluster effectively right from your terminal Go · ⭐ 259 #devops-tools #engineering #golang #kubernetes #terminal-app #containers #tui hedhyw/json-log-viewer — Interactive viewer for JSON logs. Go · ⭐ 232 #bubbletea #go #golang #interactive #json #json-logging #json-logs #terminal #viewer #logs openclaw/slacrawl — cli terminal app for slack with sqlite backend Go · ⭐ 222 #cli #openclaw #slack #slack-api #slackbot #terminal joshrotenberg/adrs — Architectural Decision Record tool in Rust Rust · ⭐ 108 #adr #architecture-decision-records owenlamont/ryl — Fast YAML linter written in Rust (drop in replacement for yamllint - but with additional rules and features) Rust · ⭐ 62 #linter #yaml mrmans0n/git-gud — A stacked-diffs CLI tool for GitHub and GitLab, inspired by Gerrit, Phabricator/Arcanist, and Graphite. Rust · ⭐ 33 #git #github #gitlab #stacked-diffs #git-stack Other Stars sindresorhus/awesome — 😎 Awesome lists about all kinds of interesting topics ⭐ 496.1k #awesome #awesome-list #unicorns #lists #resources jwasham/coding-interview-university — A complete computer science study plan to become a software engineer. (stale) ⭐ 358.8k #computer-science #interview #programming-interviews #study-plan #data-structures #algorithms #software-engineering #algorithm #coding-interviews #interview-prep TheAlgorithms/Python — All Algorithms implemented in Python Python · ⭐ 223.8k #python #algorithm #algorithms-implemented #algorithm-competitions #algos #sorts #searches #sorting-algorithms #education #learn n8n-io/n8n — Fair-code workflow automation platform with native AI capabilities. Combine visual building with custom code, self-host or cloud, 400\u0026#43; integrations. TypeScript · ⭐ 200.8k #automation #ipaas #n8n #workflow #typescript #self-hosted #integrations #workflow-automation #cli #development ohmyzsh/ohmyzsh — 🙃 A delightful community-driven (with 2,500\u0026#43; contributors) framework for managing your zsh configuration. Includes 300\u0026#43; optional plugins (rails, git, macOS, hub, docker, homebrew, node, php, python, etc), 140\u0026#43; themes to spice up your morning, and an auto-update tool that makes it easy to keep up with the latest updates from the community. Shell · ⭐ 189.2k #shell #zsh-configuration #theme #terminal #productivity #zsh #cli #cli-app #themes #plugins microsoft/vscode — Visual Studio Code TypeScript · ⭐ 188.7k #editor #electron #visual-studio-code #typescript #microsoft jlevy/the-art-of-command-line — Master the command line, in one page (stale) ⭐ 162.1k #bash #unix #documentation #linux #macos #windows Snailclimb/JavaGuide — Java 面试 \u0026amp; 后端通用面试指南，覆盖计算机基础、数据库、分布式、高并发、系统设计与 AI 应用开发 JavaScript · ⭐ 157.8k #java #interview #redis #mysql #system-design #redisson #agent #context-engineering #mcp #skills vercel/next.js — The React Framework JavaScript · ⭐ 141.8k #react #server-rendering #universal #node #components #browser #nextjs #vercel #static-site-generator #hybrid labuladong/fucking-algorithm — Crack LeetCode, not only how, but also why. Markdown · ⭐ 135.3k #leetcode #algorithms #interview-questions #data-structures #kmp #dynamic-programming #computer-science #dynamic-programming-algorithm kubernetes/kubernetes — Production-Grade Container Scheduling and Management Go · ⭐ 124.5k #kubernetes #go #cncf #containers rust-lang/rust — Empowering everyone to build reliable and efficient software. Rust · ⭐ 115.5k #rust #compiler #language immich-app/immich — High performance self-hosted photo and video management solution. TypeScript · ⭐ 110.6k #backup-tool #mobile-app #photo-gallery #photos #self-hosted #videos #flutter #nestjs #nodejs #google-photos-alternative tauri-apps/tauri — Build smaller, faster, and more secure desktop and mobile applications with a web frontend. Rust · ⭐ 110.2k #rust #webview #high-performance #desktop-app #mobile-app #native-app #web-frontend mui/material-ui — Material UI: Comprehensive React component library that implements Google\u0026#39;s Material Design. Free forever. JavaScript · ⭐ 98.8k #react-components #react #material-design #material-ui #design-system iluwatar/java-design-patterns — Design patterns implemented in Java Java · ⭐ 94.6k #java #principles #design-patterns #awesome-list #snippets #snippets-collection #snippets-library #hacktoberfest mermaid-js/mermaid — Generation of diagrams like flowcharts or sequence diagrams from text in a similar manner as markdown TypeScript · ⭐ 89.8k #documentation #flowchart #javascript #typescript #uml-diagrams #diagrams #diagrams-as-code #mindmap gohugoio/hugo — The world’s fastest framework for building websites. Go · ⭐ 89.4k #go #hugo #static-site-generator #blog-engine #cms #content-management-system #documentation-tool spring-projects/spring-boot — Spring Boot helps you to create Spring-powered, production-grade applications and services with absolute minimum fuss. Java · ⭐ 81.3k #java #spring-boot #spring #framework netdata/netdata — The fastest path to AI-powered full stack observability, even for lean teams. Go · ⭐ 80.2k #monitoring #docker #kubernetes #cncf #prometheus #netdata #devops #observability #alerting #influxdb anuraghazra/github-readme-stats — :zap: Dynamically generated stats for your github readmes JavaScript · ⭐ 79.8k #profile-readme #dynamic #readme-generator #serverless #readme-stats Z4nzu/hackingtool — ALL IN ONE Hacking Tool For Hackers Python · ⭐ 79k #allinonehackingtool #web-attack #password-attack #hacking #wireless-attack #besthackingtool #ctf-tools #ddos-attack-tool #hacker #xss-attacks enaqx/awesome-react — A collection of awesome things regarding React ecosystem ⭐ 74.3k #react #react-native #tutorial #samples #awesome-list #react-tutorial #react-apps #awesome #javascript #typescript apache/superset — Apache Superset is a Data Visualization and Data Exploration Platform Python · ⭐ 74.3k #superset #apache #apache-superset #data-visualization #data-viz #analytics #business-intelligence #data-science #data-engineering #asf NationalSecurityAgency/ghidra — Ghidra is a software reverse engineering (SRE) framework Java · ⭐ 72.4k #software-analysis #disassembler #reverse-engineering moby/moby — The Moby Project - a collaborative project for the container ecosystem to assemble container-based systems Go · ⭐ 72k #docker #containers #go #golang nektos/act — Run your GitHub Actions locally 🚀 Go · ⭐ 71.5k #github-actions #golang #ci #devops ansible/ansible — Ansible is a radically simple IT automation platform that makes your applications and systems easier to deploy and maintain. Automate everything from code deployment to network configuration to cloud management, in a language that approaches plain English, using SSH, with no agents to install on remote systems. https://docs.ansible.com. Python · ⭐ 70.3k #python #ansible prometheus/prometheus — The Prometheus monitoring system and time series database. Go · ⭐ 65.7k #monitoring #metrics #alerting #graphing #time-series #prometheus #hacktoberfest nocodb/nocodb — 🔥 🔥 🔥 A Free \u0026amp; Self-hostable Airtable Alternative TypeScript · ⭐ 64.5k #automatic-api #airtable #no-code #no-code-database #postgresql #sqlite #airtable-alternative #low-code #spreadsheet #rest-api ryanoasis/nerd-fonts — Iconic font aggregator, collection, \u0026amp; patcher. 3,600\u0026#43; icons, 50\u0026#43; patched fonts: Hack, Source Code Pro, more. Glyph collections: Font Awesome, Material Design Icons, Octicons, \u0026amp; more CSS · ⭐ 64.2k #fonts #patched-fonts #powerline #shell #statusline #python #iconic-fonts #patcher #font-awesome #octicons pi-hole/pi-hole — A black hole for Internet advertisements Shell · ⭐ 60.4k #pi-hole #ad-blocker #shell #blocker #raspberry-pi #cloud #dnsmasq #dhcp #dhcp-server #dns-server starship/starship — ☄🌌️ The minimal, blazing-fast, and infinitely customizable prompt for any shell! Rust · ⭐ 59.4k #zsh-theme #fish-theme #zsh-prompt #fish-prompt #shell-prompt #oh-my-zsh #rust #starship #zsh #powershell romkatv/powerlevel10k — A Zsh theme Shell · ⭐ 54.9k #zsh google/guava — Google core libraries for Java Java · ⭐ 51.9k #guava #java jekyll/jekyll — :globe_with_meridians: Jekyll is a blog-aware static site generator in Ruby Ruby · ⭐ 51.6k #ruby #jekyll #static-site-generator #blog-engine #markdown #liquid hashicorp/terraform — Terraform enables you to safely and predictably create, change, and improve infrastructure. It is a source-available tool that codifies APIs into declarative configuration files that can be shared amongst team members, treated as code, edited, reviewed, and versioned. Go · ⭐ 49.5k #graph #infrastructure-as-code #terraform #cloud #cloud-management akullpp/awesome-java — A curated list of awesome frameworks, libraries and software for the Java programming language. ⭐ 48.7k #awesome #awesome-list slidevjs/slidev — Presentation Slides for Developers TypeScript · ⭐ 48.1k #slides #presentation #vite #vueuse #vue #markdown gogs/gogs — The painless way to host your own Git service Go · ⭐ 47.7k #gogs #go #git #docker #mysql #postgresql #raspberry-pi #self-hosted #sqlite3 #version-control lysine-dev/okhttp — A meticulous HTTP client for the JVM, Android, and GraalVM. Kotlin · ⭐ 47k #java #android #kotlin #graalvm docker/awesome-compose — Awesome Docker Compose samples HTML · ⭐ 46.1k #awesome-list #awesome #docker-compose iina/iina — The modern video player for macOS. Swift · ⭐ 46k #macos #video-player #swift #video #mpv #hacktoberfest cli/cli — GitHub’s official command line tool Go · ⭐ 45.8k #github-api-v4 #cli #git #golang getsentry/sentry — Developer-first error tracking and performance monitoring Python · ⭐ 44.6k #crash-reporting #crash-reports #error-monitoring #monitoring #devops #csp-report #django #error-logging #sentry #python lysine-dev/retrofit — A type-safe HTTP client for Android and the JVM Java · ⭐ 43.9k #java #android juspay/hyperswitch — Open source, composable payments platform | PCI compliant | SaaS and Self-host options | Enables connectivity to multiple payment, payout, fraud, vault and tokenization providers | Uplifts authorization with intelligent routing and revenue recovery | Reduce payment processing costs with cost observability | Reduces payment ops with reconciliation Rust · ⭐ 43.5k #payments #rust #orchestration #hacktoberfest #beginner-friendly #featured #high-performance #open-source #restful-api #sdk chakra-ui/chakra-ui — Chakra UI is a component system for building SaaS products with speed ⚡️ TypeScript · ⭐ 40.6k #chakra-ui #react #uikit #react-components #accessible #a11y #wai-aria #reactjs #dark-mode #ui-components wg/wrk — Modern HTTP benchmarking tool (stale) C · ⭐ 40.4k ToolJet/ToolJet — ToolJet is the open-source foundation of ToolJet AI - the enterprise app generation platform for building internal tools, dashboard, business applications, workflows and AI agents 🚀 JavaScript · ⭐ 39.5k #javascript #internal-tools #self-hosted #reactjs #no-code #typescript #low-code #low-code-framework #internal-project #internal-tool RSSNext/Folo — 🧡 Folo is the AI RSS Reader TypeScript · ⭐ 38.8k #reader #rss #rss-reader #ai #rsshub kilimchoi/engineering-blogs — A curated list of engineering blogs (stale) Ruby · ⭐ 38.5k #engineering-blogs #tech #programming-blogs #software-development #lists istio/istio — Connect, secure, control, and observe services. Go · ⭐ 38.4k #microservices #service-mesh #lyft-envoy #kubernetes #api-management #circuit-breaker #polyglot-microservices #enforce-policies #proxies #microservice harness/harness — Harness Open Source is an end-to-end developer platform with Source Control Management, CI/CD Pipelines, Hosted Developer Environments, and Artifact Registries. Go · ⭐ 38k #continuous-delivery #continuous-integration #go #build-pipelines #build-automation #docker #ci #ci-cd #hacktoberfest #git aquasecurity/trivy — Find vulnerabilities, misconfigurations, secrets, SBOM in containers, Kubernetes, code repositories, clouds and more Go · ⭐ 37.4k #security #security-tools #docker #containers #vulnerability-scanners #vulnerability-detection #vulnerability #golang #go #kubernetes soxoj/maigret — 🕵️‍♂️ Collect a dossier on a person by username from 3000\u0026#43; sites Python · ⭐ 36.8k #osint #social-network #identification #socmint #sherlock #investigation #python #python3 #open-source #cybersecurity doocs/leetcode — 🔥LeetCode solutions in any programming language | 多种编程语言实现 LeetCode、《剑指 Offer（第 2 版）》、《程序员面试金典（第 6 版）》题解 Java · ⭐ 36.5k #algorithms #cpp #javascript #golang #csharp #python3 #java #leetcode glanceapp/glance — A self-hosted dashboard that puts all your feeds in one place Go · ⭐ 36.4k #dashboard #homepage #rss #self-hosted #docker #feed-reader #aggregator #startpage #reddit #youtube AdguardTeam/AdGuardHome — Network-wide ads \u0026amp; trackers blocking DNS server TypeScript · ⭐ 36.1k #dns #adblock #privacy #golang #adguard #open-source #dns-over-https #dns-over-tls #dns-over-quic #dnscrypt firecracker-microvm/firecracker — Secure and fast microVMs for serverless computing. Rust · ⭐ 36.1k #virtual-machine #sandbox #virtualization #rust #containers #minimalist #open-source #serverless #oversubscription alan2207/bulletproof-react — 🛡️ ⚛️ A simple, scalable, and powerful architecture for building production ready React applications. TypeScript · ⭐ 35.7k #react #react-applications #react-best-practice #react-typescript #react-architecture-patterns #react-guidelines #react-project-structure jqlang/jq — Command-line JSON processor C · ⭐ 35.5k #jq netty/netty — Netty project - an event-driven asynchronous network application framework Java · ⭐ 35k aristocratos/btop — A monitor of resources C\u0026#43;\u0026#43; · ⭐ 34k apache/kafka — Apache Kafka - A distributed event streaming platform Java · ⭐ 33.5k #scala #kafka #java #streaming google/comprehensive-rust — This is the Rust course used by the Android team at Google. It provides you the material to quickly teach Rust. Rust · ⭐ 33.3k #rust #course #classroom #guide #training-materials #android #google #training airbnb/lottie-web — Render After Effects animations natively on Web, Android and iOS, and React Native. http://airbnb.io/lottie/ (stale) JavaScript · ⭐ 32.1k refined-github/refined-github — :octocat: Browser extension that simplifies the GitHub interface and adds useful features TypeScript · ⭐ 31.9k #chrome-extension #github #github-extension #userstyle #firefox-addon #browser-extension #safari-extension dandavison/delta — A syntax-highlighting pager for git, diff, grep, rg --json, and blame output Rust · ⭐ 31.8k #git #diff #pager #rust #delta #git-delta #color-themes #syntax-highlighter iawia002/lux — 👾 Fast and simple video download library and CLI tool written in Go Go · ⭐ 31.6k #downloader #go #crawler #scraper #video #bilibili #youtube #youku #iqiyi #tumblr grafana/k6 — A modern load testing tool, using Go and JavaScript Go · ⭐ 31.3k #golang #load-testing #load-generator #javascript #es6 #performance #go #hacktoberfest #k6 OAI/OpenAPI-Specification — The OpenAPI Specification Repository Markdown · ⭐ 31.2k #openapi #openapi-specification #apis #rest #oas #webapi jj-vcs/jj — A Git-compatible VCS that is both simple and powerful Rust · ⭐ 31k rxhanson/Rectangle — Move and resize windows on macOS with keyboard shortcuts and snap areas Swift · ⭐ 29.7k envoyproxy/envoy — Cloud-native high-performance edge/middle/service proxy C\u0026#43;\u0026#43; · ⭐ 28.8k #cats #rocket-ships #cars #more-cats #cats-over-dogs #nanoservices #corgis #cncf getredash/redash — Make Your Company Data Driven. Connect to any data source, easily visualize, dashboard and share your data. Python · ⭐ 28.7k #redash #python #visualization #analytics #bi #redshift #bigquery #athena #mysql #postgresql sharkdp/hyperfine — A command-line benchmarking tool Rust · ⭐ 28.7k #command-line #tool #benchmark #rust #cli #terminal posquit0/Awesome-CV — :page_facing_up: Awesome CV is LaTeX template for your outstanding job application TeX · ⭐ 28.3k #tex #overleaf #sharelatex #pdf #resume #cv #coverletter #latex #latex-template #awesome facebook/zstd — Zstandard - Fast real-time compression algorithm C · ⭐ 27.6k go-kit/kit — A standard library for microservices. (stale) Go · ⭐ 27.4k #go #microservices #golang #metallica hcengineering/platform — Huly — All-in-One Project Management Platform (alternative to Linear, Jira, Slack, Notion, Motion) TypeScript · ⭐ 27.4k #applicant-tracking-system #chat-application #crm #crm-platform #hrms #human-resources #issue-management #issue-tracker #project-management #qms dwmkerr/hacker-laws — 🧠 Laws, Theories, Principles and Patterns for developers and technologists. HTML · ⭐ 27.3k #principles #laws #coding #computerscience jenkinsci/jenkins — Jenkins automation server Java · ⭐ 26.5k #continuous-integration #continuous-delivery #continuous-deployment #java #groovy #jenkins #pipelines-as-code #devops #cicd #hacktoberfest google/flatbuffers — FlatBuffers: Memory Efficient Serialization Library C\u0026#43;\u0026#43; · ⭐ 26.3k #flatbuffers #serialization #serialization-library #json-parser #marshalling #rpc #zero-copy #mmap #cross-platform #c-plus-plus apache/flink — Apache Flink Java · ⭐ 26.3k #scala #java #big-data #flink #python #sql openfaas/faas — OpenFaaS - Serverless Functions Made Simple Go · ⭐ 26.2k #functions-as-a-service #functions #lambda #serverless #prometheus #kubernetes #k8s #serverless-functions #paas #gitops rancher/rancher — Complete container management platform Go · ⭐ 25.9k #rancher #docker #kubernetes #orchestration #cattle #containers sirupsen/logrus — Structured, pluggable logging for Go. Go · ⭐ 25.8k #logging #logrus #go zulip/zulip — Zulip server and web application. Open-source team chat that helps teams stay productive and focused. Python · ⭐ 25.7k #zulip #python #python3 #chat #javascript #collaboration #slack #foss #free #apache argotorg/solidity — Solidity, the Smart Contract Programming Language C\u0026#43;\u0026#43; · ⭐ 25.7k #cpp #ethereum #smartcontracts #language #solidity #blockchain #hacktoberfest #programming-language alibaba/fastjson — FASTJSON 2.0.x has been released, faster and more secure, recommend you upgrade. (archived) Java · ⭐ 25.6k #fastjson #java #android #json #json-parser #json-serialization #json-serializer #serialization #deserialization #best-performance biomejs/biome — A toolchain for web projects, aimed to provide functionalities to maintain them. Biome offers formatter and linter, usable via CLI and LSP. Rust · ⭐ 25.6k #css #formatter #javascript #jsx #linter #static-code-analysis #typescript #web #json kataras/iris — The fastest HTTP/2 Go Web Framework. New, modern and easy to learn. Fast development with Code you control. Unbeatable cost-performance ratio :rocket: Go · ⭐ 25.6k #go #iris #web-framework #mvc #golang #dependency-injection #http2 #sessions #websocket basecamp/omarchy — Beautiful, Modern \u0026amp; Opinionated Linux Shell · ⭐ 24.9k google/eng-practices — Google\u0026#39;s Engineering Practices documentation (archived) (stale) ⭐ 23.3k openjdk/jdk — JDK main-line development https://openjdk.org/projects/jdk Java · ⭐ 23.2k #openjdk #java #jvm ovity/octotree — GitHub on steroids (stale) JavaScript · ⭐ 23.2k #github #chrome #firefox #opera #safari #browser-extension #code-review #edge #pull-request-review #code-files lensapp/lens — Lens - The way the world runs Kubernetes (stale) ⭐ 23.2k #kubernetes #kubernetes-ui #kubernetes-dashboard #cloud-native #devops #containers alibaba/Sentinel — A powerful flow control component enabling reliability, resilience and monitoring for microservices. (面向云原生微服务的高可用流控防护组件) Java · ⭐ 23.1k #alibaba #java #microservice #circuit-breaker #rate-limiting #reliability #cloud-native #microservices #resiliency grpc/grpc-go — The Go language implementation of gRPC. HTTP/2 based RPC Go · ⭐ 23k #go #grpc #proto #rpc #microservices #giant-robots #dogs-over-cats #hacktoberfest #golang #not-nanoservices GoogleContainerTools/distroless — 🥑 Language focused docker images, minus the operating system. Starlark · ⭐ 23k #docker #bazel knadh/listmonk — High performance, self-hosted, newsletter and mailing list manager with a modern dashboard. Single binary app. Go · ⭐ 22.9k #email-marketing #newsletter #newsletter-management #mailing-list #smtp #self-hosted #listmonk #email-subscription #campaign-management #campaign airbytehq/airbyte — Open-source data movement for ELT pipelines and AI agents — from APIs, databases \u0026amp; files to warehouses, lakes, and AI applications. Both self-hosted and Cloud. Python · ⭐ 21.9k #data #pipeline #data-analysis #data-engineering #java #python #etl #change-data-capture #data-collection #data-integration dgraph-io/dgraph — high-performance graph database for real-time use cases Go · ⭐ 21.8k #database #distributed #go #knowledge-graph oracle/graal — GraalVM compiles applications into native executables that start instantly, scale fast, and use fewer compute resources 🚀 Java · ⭐ 21.7k #java #aot #compiler #graalvm airbnb/visx — 🐯 visx | visualization components TypeScript · ⭐ 21k #vx #react #d3 #visualization #chart #svg #data-visualization #visx spaceship-prompt/spaceship-prompt — 🚀✨ Minimalistic, powerful and extremely customizable Zsh prompt Shell · ⭐ 20.6k #zsh #zsh-users #prompt #oh-my-zsh #zsh-theme #shell #spaceship #shell-prompt #terminal #shell-theme JetBrains/intellij-community — IntelliJ IDEA \u0026amp; IntelliJ Platform Java · ⭐ 20.5k #intellij #intellij-platform #ide #code-editor #intellij-community brendangregg/FlameGraph — Stack trace visualizer (stale) Perl · ⭐ 19.7k teambit/bit — AI-powered development workspaces with reusable components, architectural clarity and zero overhead. TypeScript · ⭐ 18.5k #react #javascript #typescript #front-end #node-js #vue #collaboration #component-driven #distributed #polyrepo LMAX-Exchange/disruptor — High Performance Inter-Thread Messaging Library (stale) Java · ⭐ 18.4k #disruptor #java #concurrency TheAlgorithms/Go — Algorithms and Data Structures implemented in Go for beginners, following best practices. (stale) Go · ⭐ 18.2k #algorithms #algorithms-implemented #data-structures #datastructures #sorting #search #interview #interview-preparation #preparation #community-driven bcicen/ctop — Top-like interface for container metrics (stale) Go · ⭐ 17.8k #docker #containers #monitoring #command-line #commandline #top #runc ben-manes/caffeine — A high performance caching library for Java Java · ⭐ 17.8k Foundry376/Mailspring — :love_letter: A beautiful, fast and fully open source mail client for Mac, Windows and Linux. JavaScript · ⭐ 17.7k #email #mail #electron #osx #windows #linux #electron-app #imap jmoiron/sqlx — general purpose extensions to golang\u0026#39;s database/sql (stale) Go · ⭐ 17.7k windmill-labs/windmill — Open-source developer platform to power your entire infra and turn scripts into webhooks, workflows and UIs. Fastest workflow engine (13x vs Airflow). Open-source alternative to Retool and Temporal. Rust · ⭐ 17.5k #low-code #open-source #platform #python #typescript #postgresql #self-hostable commitizen/cz-cli — The commitizen command line utility. #BlackLivesMatter JavaScript · ⭐ 17.5k #commitizen #javascript #commit-hooks #node #semantic-versioning #semantic-release #command-line #utilities #commitizen-adapter #git questdb/questdb — QuestDB is a high performance, open-source, time-series database Java · ⭐ 17.3k #time-series #low-latency #database #sql #grafana #simd #questdb #tsdb #java #postgresql argoproj/argo-workflows — Workflow Engine for Kubernetes Go · ⭐ 16.9k #workflow #kubernetes #argo #dag #knative #airflow #machine-learning #argo-workflows #workflow-engine #hacktoberfest prestodb/presto — The official home of the Presto distributed SQL query engine for big data Java · ⭐ 16.7k #java #presto #hive #hadoop #big-data #sql #data #lakehouse #query fatih/vim-go — Go development plugin for Vim Vim Script · ⭐ 16.2k #vim #go #viml #vim-plugins #vim-go #golang #gopls #lps #hacktoberfest dagger/dagger — Automation engine to build, test and ship any codebase. Runs locally, in CI, or directly in the cloud Go · ⭐ 16.2k #ci-cd #containers #continuous-deployment #continuous-integration #devops #docker #agents #caching #graphql #workflows GoogleContainerTools/skaffold — Easy and Repeatable Kubernetes Development Go · ⭐ 15.9k #kubernetes #developer-tools #docker #containers quarkusio/quarkus — Quarkus: Supersonic Subatomic Java. Java · ⭐ 15.8k #kubernetes #java #cloud-native #reactive #hacktoberfest ansible/awx — AWX provides a web-based user interface, REST API, and task engine built on top of Ansible. It is one of the upstream projects for Red Hat Ansible Automation Platform. Python · ⭐ 15.5k #python #ansible #django #django-rest-framework #awx #automation #reactjs #hacktoberfest apache/pulsar — Apache Pulsar - distributed pub-sub messaging system Java · ⭐ 15.3k #pulsar #pubsub #messaging #streaming #queuing #event-streaming lra/mackup — Backup and keep your application settings in sync. Python · ⭐ 15.3k alibaba/hooks — A high-quality \u0026amp; reliable React Hooks library. https://alibaba.github.io/hooks/ TypeScript · ⭐ 15k #ahooks #react #hooks-library #umi-hooks #react-hooks open-metadata/OpenMetadata — The Open Context Layer for Data and AI , OpenMetadata is the open platform for building trusted data context and business semantics for humans, AI assistants, and agents. TypeScript · ⭐ 14.9k #metadata #datadiscovery #dataquality #data-profiling #metadata-management #data-catalog #data-observability #data-discovery #data-contracts #data-governance automerge/automerge-classic — A JSON-like data structure (a CRDT) that can be modified concurrently by different users, and merged again automatically. (stale) JavaScript · ⭐ 14.7k #crdt #javascript #offline-first ktorio/ktor — Framework for quickly creating connected applications in Kotlin with minimal effort Kotlin · ⭐ 14.5k #kotlin #web-framework #asynchronous #async #web panjf2000/ants — 🐜🐜🐜 ants is the most powerful and reliable pooling solution for Go. Go · ⭐ 14.5k #goroutine-pool #goroutine #pool #go #worker-pool #ants GoogleContainerTools/jib — 🏗 Build container images for your Java applications. Java · ⭐ 14.4k #containers #docker #java #kubernetes #microservices #maven #gradle #maven-plugin #gradle-plugin #jib apache/dolphinscheduler — Apache DolphinScheduler is the modern data orchestration platform. Agile to create high performance workflow with low-code Java · ⭐ 14.4k #workflow-schedule #azkaban #airflow #task-scheduler #job-scheduler #cloud-native #data-pipelines #orchestration #workflow #workflow-orchestration mobile-shell/mosh — Mobile Shell C\u0026#43;\u0026#43; · ⭐ 14.3k thanos-io/thanos — Highly available Prometheus setup with long term storage capabilities. A CNCF Incubating project. Go · ⭐ 14.2k #prometheus #google-cloud-storage #high-availability #prometheus-ha-pairs #thanos #s3 #storage #cncf #prometheus-setup #go robfig/cron — a cron library for go (stale) Go · ⭐ 14.2k astral-sh/rye — a Hassle-Free Python Experience (archived) Rust · ⭐ 14.2k #package-manager #packaging #python sivel/speedtest-cli — Command line interface for testing internet bandwidth using speedtest.net (archived) (stale) Python · ⭐ 14.1k #python #python-library #python-script #speedtest apache/druid — Apache Druid: a high performance real-time analytics database. Java · ⭐ 14k #druid rathole-org/rathole — A lightweight and high-performance reverse proxy for NAT traversal, written in Rust. An alternative to frp and ngrok. (stale) Rust · ⭐ 14k #nat #tunnel #rust #network #firewall #frp #http #proxy #noise #noise-protocol semaphoreui/semaphore — Modern UI and powerful API for Ansible, Terraform/OpenTofu/Terragrunt, PowerShell and other DevOps tools. Go · ⭐ 14k #ansible #devops #ci #cicd #opentofu #terraform #terraform-ui #awx #jenkins #docker jessfraz/dockerfiles — Various Dockerfiles I use on the desktop and on servers. (stale) Dockerfile · ⭐ 13.9k #dockerfiles #bash #docker #dockerfile #linux #shell #containers tink-crypto/tink — Tink is a multi-language, cross-platform, open source library that provides cryptographic APIs that are secure, easy to use correctly, and hard(er) to misuse. (archived) (stale) Java · ⭐ 13.5k #cryptography #java #cpp #go #objc #crypto #security #javascript projectlombok/lombok — Very spicy additions to the Java programming language. Java · ⭐ 13.5k darlinghq/darling — Darwin/macOS emulation layer for Linux Objective-C · ⭐ 13k rmyndharis/OpenWA — Free, Open Source, Self-Hosted WhatsApp API Gateway TypeScript · ⭐ 12.8k #api #gateway #whatsapp #self-hosted #whatsapp-api #whatsapp-gateway #whatsapp-gateway-api #bot #whatsapp-automation #whatsapp-bot rasbt/python-machine-learning-book — The \u0026#34;Python Machine Learning (1st edition)\u0026#34; book code repository and info resource Jupyter Notebook · ⭐ 12.6k #machine-learning #machine-learning-algorithms #logistic-regression #data-science #data-mining #python #scikit-learn #neural-network theatre-js/theatre — Motion design editor for the web (stale) TypeScript · ⭐ 12.6k #animation #threejs #generative-art #motion-design #r3f #devtools datahub-project/datahub — The Context Platform for your Data and AI Stack Python · ⭐ 12.5k #metadata #datahub #data-catalog #data-discovery #data-governance #agent-platform #context-management #data-observability bootandy/dust — A more intuitive version of du in rust Rust · ⭐ 12.1k git-up/GitUp — The Git interface you\u0026#39;ve been missing all your life has finally arrived. Objective-C · ⭐ 12.1k grpc/grpc-java — The Java gRPC implementation. HTTP/2 based RPC Java · ⭐ 12.1k #grpc #java #microservices #proto #rpc dhamaniasad/awesome-postgres — A curated list of awesome PostgreSQL software, libraries, tools and resources, inspired by awesome-mysql ⭐ 12k #postgres #database #postgresql o2sh/onefetch — Command-line Git information tool Rust · ⭐ 12k #cli #git #command-line #tool #command-line-interface #rust crossplane/crossplane — The Cloud Native Control Plane Go · ⭐ 11.9k #kubernetes #cloud-computing #cloud-native #containers #serverless #multicloud #cloud-management #cncf #control-plane #infrastructure yahoo/CMAK — CMAK is a tool for managing Apache Kafka clusters (stale) Scala · ⭐ 11.9k #kafka #scala #cluster-management #big-data quickwit-oss/quickwit — Cloud-native OSS search engine for observability Rust · ⭐ 11.5k #rust #log-management #logs #tantivy #cloud-native #open-source #big-data #cloud-storage #distributed-tracing #search-engine ekzhang/bore — 🕳 bore is a simple CLI tool for making tunnels to localhost Rust · ⭐ 11.4k #cli #rust #tunnel #networking #tcp #localhost #proxy #self-hosted php/frankenphp — 🧟 The modern PHP app server Go · ⭐ 11.3k #caddy #go #php #sapi #worker #frankenphp krallin/tini — A tiny but valid `init` for containers (stale) C · ⭐ 11.2k #docker #linux #c #init #init-system Cyan4973/xxHash — Extremely fast non-cryptographic hash algorithm C · ⭐ 11.2k #xxhash #smhasher #hash-functions #c #dispersion #hash #hash-checksum NoeFabris/opencode-antigravity-auth — Enable Opencode to authenticate against Antigravity (Google\u0026#39;s IDE) via OAuth so you can use Antigravity rate limits and access models like gemini-3-pro and claude-opus-4-5-thinking with your Google credentials. (archived) TypeScript · ⭐ 11k #claude #gemini #google #opencode apache/thrift — Apache Thrift C\u0026#43;\u0026#43; · ⭐ 11k #d #thrift #cplusplus #dart #actionscript #http #network-client #network-server #csharp #library SonarSource/sonarqube — Continuous Inspection Java · ⭐ 10.9k #sonarqube #code-quality #static-analysis resilience4j/resilience4j — Resilience4j is a fault tolerance library designed for Java8 and functional programming Java · ⭐ 10.7k #resilience #circuitbreaker #rate-limiter #retry #bulkhead #metrics kubernetes/kompose — Convert Compose to Kubernetes Go · ⭐ 10.6k #kubernetes #docker #docker-compose #go #containers yugabyte/yugabyte-db — YugabyteDB - the cloud native distributed SQL database for mission-critical applications. C · ⭐ 10.5k #distributed-database #database #cpp #high-performance #cloud-native #scale-out #sql #multi-region #multi-cloud #kubernetes awsdocs/aws-doc-sdk-examples — Welcome to the AWS Code Examples Repository. This repo contains code examples used in the AWS documentation, AWS SDK Developer Guides, and more. For more information, see the Readme.md file below. Java · ⭐ 10.4k #aws #documentation #examples #java #cpp #dotnet #javascript #go #php #python devhubapp/devhub — TweetDeck for GitHub - Filter Issues, Activities \u0026amp; Notifications - Web, Mobile \u0026amp; Desktop with 99% code sharing between them (stale) TypeScript · ⭐ 10.1k #github #typescript #react #react-native #react-native-web #redux #ios #android #web #desktop dgkanatsios/CKAD-exercises — A set of exercises to prepare for Certified Kubernetes Application Developer exam by Cloud Native Computing Foundation ⭐ 10.1k #kubernetes #ckad #certification #ckad-exercises apache/cassandra — Open source transactional distributed database. Linear scalability and proven fault-tolerance on commodity hardware or cloud infrastructure without compromising performance. Java · ⭐ 10.1k #cassandra #java #database i18next/react-i18next — Internationalization for react done right. Using the i18next i18n ecosystem. JavaScript · ⭐ 10k #react #react-native #translation #internationalization #i18n #i18next #ssr aphyr/distsys-class — Class materials for a distributed systems lecture series (stale) ⭐ 9.9k go-acme/lego — Let\u0026#39;s Encrypt/ACME client and library written in Go Go · ⭐ 9.8k #letsencrypt #acme #certificate #tls #security #acme-client #dns #rfc8555 #rfc8737 #rfc8738 FasterXML/jackson — Main Portal page for the Jackson project ⭐ 9.8k #hacktoberfest #jackson #java-json-library #java-json OpenFeign/feign — Feign makes writing java http clients easier Java · ⭐ 9.8k #java #http-client #jax-rs #okhttp3 #slf4j #interface reviewdog/reviewdog — 🐶 Automated code review tool integrated with any code analysis tools regardless of programming language Go · ⭐ 9.5k #linter #go #lint #ci #code-review #github #gitlab #codereview #cli #code-quality bitnami/sealed-secrets — A Kubernetes controller and tool for one-way encrypted Secrets Go · ⭐ 9.2k #kubernetes #kubernetes-secrets #devops-workflow #encrypt-secrets #gitops async-profiler/async-profiler — Sampling CPU and HEAP profiler for Java featuring AsyncGetCallTrace \u0026#43; perf_events C\u0026#43;\u0026#43; · ⭐ 9.1k tektoncd/pipeline — A cloud-native Pipeline resource. Go · ⭐ 9k #tekton #pipeline #kubernetes #cdf #hacktoberfest poloclub/cnn-explainer — Learning Convolutional Neural Networks with Interactive Visualization. (stale) JavaScript · ⭐ 9k #deep-learning #visualization #interactive-visualizations #visual-learning #machine-learning delta-io/delta — An open-source storage framework that enables building a Lakehouse architecture with compute engines including Spark, PrestoDB, Flink, Trino, and Hive and APIs Scala · ⭐ 8.9k #spark #acid #big-data #analytics #delta-lake bridgecrewio/checkov — Prevent cloud misconfigurations and find vulnerabilities during build-time in infrastructure as code, container images and open source packages with Checkov by Bridgecrew. Python · ⭐ 8.9k #terraform #static-analysis #aws #gcp #azure #aws-security #cloudformation #scans #compliance #kubernetes java-native-access/jna — Java Native Access Java · ⭐ 8.9k aeron-io/aeron — Efficient reliable UDP unicast, UDP multicast, and IPC message transport Java · ⭐ 8.8k #messaging #java #c-plus-plus #ipc #multicast-streams #c redpanda-data/connect — Fancy stream processing made operationally mundane Go · ⭐ 8.7k #message-queue #stream-processing #streaming-data #message-bus #logs #stream-processor #cqrs #event-sourcing #go #golang evilmartians/lefthook — Fast and powerful Git hooks manager for any type of projects. Go · ⭐ 8.7k #lefthook #git #hooks #manager #go #golang #hacktoberfest gelstudios/gitfiti — abusing github commit history for the lulz (stale) Python · ⭐ 8.4k #gitfiti #python #pixel-art #art #pixelart #pixels #contributions-calendar #contribution-graph atom-archive/xray — An experimental next-generation Electron-based text editor (archived) (stale) Rust · ⭐ 8.4k metallb/metallb — A network load-balancer implementation for Kubernetes using standard routing protocols Go · ⭐ 8.3k #kubernetes #bgp #load-balancer #bare-metal #arp #vrrp #keepalived #hacktoberfest #frr usekaneo/kaneo — 🎯 All you need. Nothing you don\u0026#39;t. Open source project management that works for you, not against you. TypeScript · ⭐ 8.3k #kanban #project-management #react #self-hosted #typescript #hono #issue-management #issue-tracker #jira-alternative #linear-alternative boot2docker/boot2docker — DEPRECATED; see https://github.com/boot2docker/boot2docker/pull/1408 (archived) (stale) Shell · ⭐ 8.3k MarshallOfSound/Google-Play-Music-Desktop-Player-UNOFFICIAL- — A beautiful cross platform Desktop Player for Google Play Music (stale) JavaScript · ⭐ 8.2k #electron #music #player #cross-platform #google-play-music gunnarmorling/1brc — 1️⃣🐝🏎️ The One Billion Row Challenge -- A fun exploration of how quickly 1B rows from a text file can be aggregated with Java (stale) Java · ⭐ 8.1k #1brc #challenges sameersbn/docker-gitlab — Dockerized GitLab Shell · ⭐ 8.1k #docker #docker-image #containers #git #gitlab #gitlab-ce #code-hosting Netflix/SimianArmy — Tools for keeping your cloud operating in top form. Chaos Monkey is a resiliency tool that helps applications tolerate random instance failures. (archived) (stale) Java · ⭐ 8k meirwah/awesome-workflow-engines — A curated list of awesome open source workflow engines ⭐ 7.9k kubevela/kubevela — The Modern Application Platform. Go · ⭐ 7.9k #oam #kubernetes #application #microservices #serverless #cloudnative #trait #workloads #cue #helm woodpecker-ci/woodpecker — Woodpecker is a simple, yet powerful CI/CD engine with great extensibility. Go · ⭐ 7.7k #ci #devops #docker #woodpeckerci #automation #cicd #kubernetes jenkinsci/docker — Docker official jenkins repo PowerShell · ⭐ 7.6k #jenkins #docker #hacktoberfest mgdm/htmlq — Like jq, but for HTML. Rust · ⭐ 7.6k swagger-api/swagger-core — Examples and server integrations for generating the Swagger API Specification, which enables easy access to your REST API Java · ⭐ 7.5k #swagger #java #swagger-api #rest-api #rest #openapi-specification #openapi #openapi3 #open-source #swagger-oss aceberg/WatchYourLAN — Lightweight network IP scanner written in Go. With notifications, history, export to Grafana Go · ⭐ 7.5k #arp-scan #self-hosted #selfhosted #arp-scanner #monitoring #network-security #intrusion-detection jepsen-io/jepsen — A framework for distributed systems verification, with fault injection Clojure · ⭐ 7.5k Col-E/Recaf — The modern Java bytecode editor Java · ⭐ 7.3k #java #bytecode #bytecode-engineering #reverse-engineering #jvm-bytecode #decompile #decompiler #agent #asm #javafx-application Yelp/dumb-init — A minimal init system for Linux containers Python · ⭐ 7.3k #docker #pid1 #init #dumb #docker-container #unix #c vespa-engine/vespa — The AI search platform Java · ⭐ 7.1k #vespa #search-engine #big-data #ai #serving-recommendation #machine-learning #server #java #vector-search #rag geerlingguy/mac-dev-playbook — Mac setup and configuration via Ansible. Shell · ⭐ 7k #mac #macos #setup #developer #homebrew #automation #ansible #playbook oracle/docker-images — Official source of container configurations, images, and examples for Oracle products and projects Shell · ⭐ 7k #docker #oracle-database #oracle-linux #dockerfile #oracle-commercial #oracle-products #dockerfiles #docker-images #oracle #coherence-ce wurstmeister/kafka-docker — Dockerfile for Apache Kafka (stale) Shell · ⭐ 7k gatling/gatling — Modern Load Testing as Code Scala · ⭐ 6.9k #netty #scala #loadtesting #automation #gatling #load-testing #java #cicd #javascript #kotlin mleibman/SlickGrid — A lightning fast JavaScript grid/spreadsheet (stale) JavaScript · ⭐ 6.9k jgraph/mxgraph — mxGraph is a fully client side JavaScript diagramming library (archived) (stale) HTML · ⭐ 6.9k raphw/byte-buddy — Runtime code generation for the Java virtual machine. Java · ⭐ 6.9k #java #java-agent #java-virtual-machine #byte-code #instrumentation #dynamic-proxy #java-library buildship-ai/rowy — Low-code backend platform. Manage database on spreadsheet-like UI and build cloud functions workflows in JS/TS, all in your browser. (stale) TypeScript · ⭐ 6.8k #firebase #firestore #backend #cloud-functions #cms #cms-backend #low-code #react #spreadsheet #typescript jOOQ/jOOQ — jOOQ is the best way to write SQL in Java Java · ⭐ 6.8k #jooq #java #sql #jpa #sql-builder #sql-query #sql-query-builder #sql-query-formatter #sql-formatter #database nats-io/nats.go — Golang client for NATS, the cloud native messaging system. Go · ⭐ 6.7k #go #golang #nats #microservices #microservices-architecture #pub-sub #cloud-native #cloud-native-architectures #cloud-native-microservices beanstalkd/beanstalkd — Beanstalk is a simple, fast work queue. (stale) C · ⭐ 6.7k apache/storm — Apache Storm Java · ⭐ 6.7k #storm #apache #distributed #streaming spf13/afero — The Universal Filesystem Abstraction for Go Go · ⭐ 6.7k #compression #filesystem #fs #go #golang #network-file-system #network-file-transfer #vfs #virtual kubernetes/examples — Kubernetes application example tutorials Shell · ⭐ 6.7k graphhopper/graphhopper — Open source routing engine for OpenStreetMap. Use it as Java library or standalone web server. Java · ⭐ 6.6k #openstreetmap #java #geospatial #dijkstra #directions #routing-engine #astar #pathfinding #public-transportation #isochrones k3d-io/k3d — Little helper to run CNCF\u0026#39;s k3s in Docker Go · ⭐ 6.5k #kubernetes #docker #go #k3s #k3d #rancher #cluster hibernate/hibernate-orm — Idiomatic persistence for Java and relational databases Java · ⭐ 6.5k #hibernate #java #orm #jpa #jdbc #database #envers #jakarta-persistence #jakartaee #object-relational-mapper micronaut-projects/micronaut-core — Micronaut Application Framework Java · ⭐ 6.4k #microservices #java #kotlin #groovy #cloudnative #serverless MaterializeInc/materialize — The live data layer for apps and AI agents. Create up-to-the-second views into your business, just using SQL Rust · ⭐ 6.4k #rust #database #sql #streaming #kafka #distributed-systems #postgresql-dialect #materialized-view #stream-processing #postgresql lightbend/config — configuration library for JVM languages using HOCON files Java · ⭐ 6.3k #supported #hocon #configuration-library apache/camel — Apache Camel is an open source integration framework with 350\u0026#43; connectors. Write routes in Java, YAML, or XML. Run on Spring Boot, Quarkus, or standalone. Apache License 2.0. Java · ⭐ 6.3k #camel #integration #java #microservices #cloud-native #data-transformation #enterprise-integration-patterns #integration-framework #kafka #kubernetes vmware-archive/octant — Highly extensible platform for developers to better understand the complexity of Kubernetes clusters. (archived) (stale) Go · ⭐ 6.2k #golang #octant #kubernetes-clusters #go #kubernetes Vedenin/useful-java-links — A list of useful Java frameworks, libraries, software and hello worlds examples (stale) Java · ⭐ 6.2k #java-links #java-frameworks #awesome-list #machine-learning #java-libraries #java-api #java-applications #lists #awesome #resources obsidiandynamics/kafdrop — Kafka Web UI Java · ⭐ 6.2k #kafka #kubernetes #docker #consumer-group #consumer-producer #pub-sub #event-sourcing #event-streaming #kafka-ui #kafka-utils mandliya/algorithms_and_data_structures — 180\u0026#43; Algorithm \u0026amp; Data Structure Problems using C\u0026#43;\u0026#43; (stale) C\u0026#43;\u0026#43; · ⭐ 6.1k #algorithm #c #cpp #interview-questions #interview-practice #data-structures #datastructures #c-plus-plus #bit-manipulation #tree javaparser/javaparser — Java 1-25 Parser and Abstract Syntax Tree for Java with advanced analysis functionalities. Java · ⭐ 6.1k #javaparser #parser #java #javadoc #code-generation #code-generator #syntax-tree #code-analysis #abstract-syntax-tree #ast denysdovhan/bash-handbook — :book: For those who wanna learn Bash (stale) JavaScript · ⭐ 6.1k #bash #handbook #learning #how-to #shell #shell-scripts #book #guide truelockmc/streambert — A cross-platform Electron Desktop App to stream and download any Movie, TV Series or Anime in the World. Zero Ads and Tracking JavaScript · ⭐ 6k #anime #anime-downloader #anime-scraper #downloader #electron #modern-ui #movies #movies-streaming #piracy #series pyinfra-dev/pyinfra — 🔧 pyinfra turns Python code into shell commands and runs them on your servers. Execute ad-hoc commands and write declarative operations. Target SSH servers, local machine and Docker containers. Fast and scales from one server to thousands. Python · ⭐ 6k #python #cloud-management #configuration-management #remote-execution #high-performance #pyinfra #infrastructure fnproject/fn — The container native, cloud agnostic serverless platform. Go · ⭐ 5.9k #serverless #faas #docker #containers #serverless-functions #lambda #kubernetes #swarm docker-archive/classicswarm — Swarm Classic: a container clustering system. Not to be confused with Docker Swarm which is at https://github.com/docker/swarmkit (archived) (stale) Go · ⭐ 5.7k gliderlabs/docker-alpine — Alpine Linux Docker image. Win at minimalism! (stale) Shell · ⭐ 5.7k rubenlagus/TelegramBots — Java library to create bots using Telegram Bots API Java · ⭐ 5.5k #telegram-bot #telegram-bots-api #webhook #java-library #polling #java #jitpack #telegram #maven #spring-boot apache/groovy — Apache Groovy: A powerful multi-faceted programming language for the JVM platform Java · ⭐ 5.5k #groovy #jvm-languages #programming-language #metaprogramming #functional-programming #dynamic-typing #static-typing #compiler #apache LFDT-web3j/web3j — Lightweight Java and Android library for integration with Ethereum clients Java · ⭐ 5.4k #ethereum #blockchain #java #solidity #rxjava #android #smart-contracts #smart-contract-tools #ether #reactivex bitcoinj/bitcoinj — A library for working with Bitcoin Java · ⭐ 5.2k #java #bitcoin #library #blockchain #bech32 #segwit #bip32 #bip37 #bip70 #bip141 tenable/terrascan — Detect compliance and security violations across Infrastructure as Code to mitigate risk before provisioning cloud native infrastructure. (archived) Go · ⭐ 5.2k #security-tools #infrastructure-as-code #devsecops #devops #security #terraform #aws #cloudsecurity #cloud-security #terrascan jwilder/dockerize — Utility to simplify running applications in docker containers Go · ⭐ 5.2k #docker #go confluentinc/confluent-kafka-go — Confluent\u0026#39;s Apache Kafka Golang client HTML · ⭐ 5.2k #confluent #golang #golang-library #golang-bindings #librdkafka #kafka-client #consumer #producer line/armeria — Your go-to microservice framework for any situation, from the creator of Netty et al. You can build any type of microservice leveraging your favorite technologies, including gRPC, Thrift, Kotlin, Retrofit, Reactive Streams, Spring Boot and Dropwizard. Java · ⭐ 5.1k #http #http2 #http-server #http-client #thrift #thrift-server #thrift-client #microservices #grpc #rpc tlbootcamp/tlroadmap — Тимлид – это ❄️, потому что в каждой компании он уникален и неповторим. (stale) Vue · ⭐ 5.1k #roadmap #teamlead #soft-skills #management #hacktoberfest apache/ignite — Apache Ignite Java · ⭐ 5.1k #distributed-sql-database #iot #osgi #network-client #ignite #data-management-platform #big-data #cloud #database #network-server diggerhq/digger — Digger is an open source IaC orchestration tool. Digger allows you to run IaC in your existing CI pipeline ⚡️ Go · ⭐ 5k #infrastructure-as-code #terraform #terraformcloud #tacos #github-actions #terraform-aws #terraform-gcp #terraform-github-actions #hacktoberfest querydsl/querydsl — Unified Queries for Java (stale) Java · ⭐ 5k mock-server/mockserver-monorepo — MockServer is an HTTP(S) mock server and proxy for testing that lets you mock APIs, inspect and modify live traffic, and inject failures. It supports HTTP/1.1, HTTP/2, gRPC, WebSockets, TCP and more on a single port, with additional support for HTTP/3, message brokers, and AI/LLM APIs. Java · ⭐ 4.9k #mock-server #proxy #java-client #javascript-client #node-module #node-client #ruby-client #homebrew #grunt-plugin #ai Nyr/wireguard-install — WireGuard road warrior installer for Ubuntu, Debian, AlmaLinux, Rocky Linux, CentOS and Fedora Shell · ⭐ 4.9k #wireguard #vpn #ubuntu #debian #centos #fedora #shell #bash #almalinux #rockylinux cglib/cglib — cglib - Byte Code Generation Library is high level API to generate and transform Java byte code. It is used by AOP, testing, data access frameworks to generate dynamic proxy objects and intercept field access. (stale) Java · ⭐ 4.9k DefectDojo/django-DefectDojo — Open-Source Unified Vulnerability Management, DevSecOps \u0026amp; ASPM HTML · ⭐ 4.9k #python #vulnerability-databases #django #security #owasp #analytics #vulnerability-management #automation #security-automation #security-orchestration crazy-max/diun — Receive notifications when an image is updated on a Docker registry Go · ⭐ 4.8k #docker #registry #update #watch #notifications #golang #manifest #automation #update-checker #swarm hashicorp/waypoint — A tool to build, deploy, and release any application on any platform. (archived) (stale) Go · ⭐ 4.7k bytedeco/javacpp — The missing bridge between Java and native C\u0026#43;\u0026#43; Java · ⭐ 4.7k #javacpp #java #c #cpp #c-plus-plus #jni #maven-plugin JamesIves/github-pages-deploy-action — 🚀 Automatically deploy your project to GitHub Pages using GitHub Actions. This action can be configured to push your production-ready code into any branch you\u0026#39;d like. TypeScript · ⭐ 4.6k #github-actions #github-action #gh-pages #github-pages #deployment #deployer #cicd #ghpages #deploy #workflow geist-org/geist-ui — A design system for building modern websites and applications. (archived) TypeScript · ⭐ 4.6k #react-components #react #geist #design-system #geist-ui #design-systems #hacktoberfest puniverse/quasar — Fibers, Channels and Actors for the JVM (stale) Java · ⭐ 4.6k #java #jvm #fibers #actors #concurrency CorsixTH/CorsixTH — Open source clone of Theme Hospital Lua · ⭐ 4.5k #remake #opensource #game #strategy-game #theme-hospital bitnami/containers — Bitnami container images Shell · ⭐ 4.5k #bitnami #containers #docker #non-root #docker-image #vmware yuzutech/kroki — Creates diagrams from textual descriptions! JavaScript · ⭐ 4.3k #diagrams #text #images #api #erd #c4 #plantuml #uml #ditaa #blockdiag camunda/camunda-bpm-platform — Camunda 7 CE is End of Life (EoL). Please check out Camunda 8 instead (https://github.com/camunda/camunda) or read about Camunda 7 Enterprise End of Life (https://camunda.com/blog/2025/02/camunda-7-enterprise-end-of-life-extension/) – Camunda 7 CE was a flexible framework for workflow and decision automation using BPMN and DMN. (archived) Java · ⭐ 4.3k #camunda-bpm-platform #bpm #process-engine #java #camunda-engine #dmn #cmmn #workflow #bpmn #end-of-life agnoster/agnoster-zsh-theme — A ZSH theme designed to disclose information contextually, with a powerline aesthetic (stale) Shell · ⭐ 4.2k GradleUp/shadow — Gradle plugin for creating fat/uber JARs, transforming files, relocating packages, and optimizing applications with R8/ProGuard. The Gradle counterpart to Maven\u0026#39;s Shade plugin. Kotlin · ⭐ 4.2k #gradle-plugin #shading #build #bundling #fat-jar #fatjar #gradle #groovy #jar #java prabhuignoto/react-chrono — Modern Timeline Component for React TypeScript · ⭐ 4.2k #timeline-component #timeline #react #react-timeline #vertical-timeline #horizontal-timeline #typescript #slideshow #vertical-timeline-react #javascript-timeline orchest/orchest — Build data pipelines, the easy way 🛠️ (archived) (stale) TypeScript · ⭐ 4.1k #data-science #machine-learning #pipelines #ide #jupyter #cloud #self-hosted #jupyterlab #notebooks #docker DependencyTrack/dependency-track — Dependency-Track is an intelligent Component Analysis platform that allows organizations to identify and reduce risk in the software supply chain. Java · ⭐ 4.1k #owasp #appsec #security #bom #vulnerabilities #component-analysis #nvd #software-security #software-composition-analysis #sca bbatsov/clojure-style-guide — A community coding style guide for the Clojure programming language ⭐ 4.1k #clojure #styleguide #style-guide zakirullin/files.md — 🌱 Private, quiet space for thinking. Simple app for .md files. Go · ⭐ 4.1k varnishcache/varnish-cache — Varnish Cache source code repository (archived) C · ⭐ 4k #http #caching #reverse-proxy #high-performance genuinetools/img — Standalone, daemon-less, unprivileged Dockerfile and OCI compatible container image builder. (stale) Go · ⭐ 4k #docker #buildkit #runc #rootless #containers #cli #linux #opencontainers nubjs/nub — The fast all-in-one Node.js toolkit Rust · ⭐ 4k #javascript-runtime #node-version-manager #nodejs #package-manager #script-runner 0xNyk/council-of-high-intelligence — Structured multi-perspective deliberation for hard decisions. Run full councils, focused triads, or duo debates across Claude Code, Codex, Gemini CLI, and OpenCode. Shell · ⭐ 4k #ai-agents #claude-code #decision-making #deliberation #multi-llm #prompt-engineering #agent-skill #codex #gemini-cli #llm-routing linkedin/Burrow — Kafka Consumer Lag Checking Go · ⭐ 4k puckel/docker-airflow — Docker Apache Airflow (stale) Shell · ⭐ 3.8k #docker-airflow #airflow #docker #scheduler #workflow #task #management helidon-io/helidon — Java libraries for writing microservices Java · ⭐ 3.8k #java #microservice-framework #microprofile #netty #reactive undertow-io/undertow — High performance non-blocking webserver Java · ⭐ 3.8k #hacktoberfest #ajp #http #http-server #jakartaee #jakartaee10 #java #java-nio #jboss #servlet gradle/kotlin-dsl-samples (archived) Kotlin · ⭐ 3.7k #gradle #kotlin google/rejoiner — Generates a unified GraphQL schema from gRPC microservices and other Protobuf sources (archived) (stale) Java · ⭐ 3.7k #graphql-server #protobuf #grpc #graphql awslabs/deequ — Deequ is a library built on top of Apache Spark for defining \u0026#34;unit tests for data\u0026#34;, which measure data quality in large datasets. Scala · ⭐ 3.6k #dataquality #spark #unit-testing #scala vert-x3/vertx-examples — Vert.x examples Java · ⭐ 3.6k #vertx #reactive #async #examples #http2 #kotlin unitycatalog/unitycatalog — Open, Multi-modal Catalog for Data \u0026amp; AI Java · ⭐ 3.5k aeron-io/simple-binary-encoding — Simple Binary Encoding (SBE) - High Performance Message Codec Java · ⭐ 3.5k #codec #java #c-plus-plus #golang #encoder-decoder adrienverge/yamllint — A linter for YAML files. Python · ⭐ 3.4k #linter #lint #yaml #yamllint dockersamples/docker-swarm-visualizer — A visualizer for Docker Swarm Mode using the Docker Remote API, Node.JS, and D3 (stale) JavaScript · ⭐ 3.3k AdoptOpenJDK/jitwatch — Log analyser / visualiser for Java HotSpot JIT compiler. Inspect inlining decisions, hot methods, bytecode, and assembly. View results in the JavaFX user interface. Java · ⭐ 3.3k #jitwatch #java #javafx #hotspot-jit-compiler #hotspot #log-analyser #jit-compiler #escape-analysis lakehq/sail — Drop-in Apache Spark replacement written in Rust, unifying batch processing, stream processing, and compute-intensive AI workloads. Rust · ⭐ 3.3k #arrow #big-data #pyspark #rust #spark #sql #datafusion #python #artificial-intelligence #data-engineering pamburus/hl — A fast and powerful log viewer and processor that converts JSON logs or logfmt logs into a clear human-readable format. Rust · ⭐ 3.3k #rust #log-viewer #translates-json-logs #human #logging #json #cli #command-line-tool #logs #log SQLMesh/sqlmesh — Scalable and efficient data transformation framework - backwards compatible with dbt. Python · ⭐ 3.2k #dataops #elt #etl #sql #python #dataengineering #transformation #dbt dustinkirkland/hollywood Shell · ⭐ 3.2k stoatchat/stoatchat — The software powering Stoat Rust · ⭐ 3.2k #revolt #rust #api #mongodb #redis #stoat #stoatchat #revolt-chat #revoltchat #stoat-chat vimagick/dockerfiles — :whale: A curated list of delicious docker recipes 🇺🇦🇮🇱 (Let\u0026#39;s Fight Against Dictatorship) Dockerfile · ⭐ 3.2k #docker #dockerfile #docker-compose vortex-data/vortex — An extensible, state-of-the-art framework for columnar compression, and the fastest FOSS columnar file format. Formerly at @spiraldb, now an Incubation Stage project at LFAI\u0026amp;Data, part of the Linux Foundation. Rust · ⭐ 3.1k #array #arrow #compression #python #rust #file #multimodal tc39/proposal-observable — Observables for ECMAScript (stale) JavaScript · ⭐ 3.1k alexei-led/pumba — Chaos testing, network emulation, and stress testing tool for containers Go · ⭐ 3.1k #docker #chaos #network-emulator #testing-tools #testing #chaos-monkey #chaos-testing #kubernetes #chaos-engineering #golang luizdepra/hugo-coder — A minimalist blog theme for hugo. HTML · ⭐ 3.1k #golang #hugo #hugo-theme #theme #blog-theme #static-site-generator #minimalist #responsive halirutan/IntelliJ-Key-Promoter-X — Modern IntelliJ plugin to learn shortcuts for buttons Java · ⭐ 3.1k #intellij #intellij-plugin #shortcut #keyboard-shortcut #learn-shortcuts #mouse squid-cache/squid — Squid Web Proxy Cache - Source Code C\u0026#43;\u0026#43; · ⭐ 3.1k #proxy #http #https #ftp #icap #ecap dakshshah96/awesome-startup-credits — ✨ A collection of awesome companies offering free/discounted plans for eligible startups (stale) ⭐ 2.9k #awesome #awesome-list #startups #list #startup-credits rancher/local-path-provisioner — Dynamically provisioning persistent local storage with Kubernetes Go · ⭐ 2.9k #k8s-sig-storage HubPress/hubpress.io — A web application to build your blog on GitHub (archived) (stale) CSS · ⭐ 2.8k jenkinsci/configuration-as-code-plugin — Jenkins Configuration as Code Plugin Java · ⭐ 2.8k #configuration-as-code #jenkins #jenkins-configuration #jcasc #hacktoberfest RodneyShag/HackerRank_solutions — 317 efficient solutions to HackerRank problems (stale) Java · ⭐ 2.7k #hackerrank #java #solutions #problems evilmartians/mono — Free and open-source monospaced font from Evil Martians ⭐ 2.7k vladmihalcea/hypersistence-utils — The Hypersistence Utils library (previously known as Hibernate Types) gives you Spring and Hibernate utilities that can help you get the most out of your data access layer. Java · ⭐ 2.7k #hibernate #hibernate-types #java #json #array #enum #custom-types #hypersistence #performance #performance-testing eclipse-collections/eclipse-collections — Eclipse Collections is a collections framework for Java with optimized data structures and a rich, functional and fluent API. Java · ⭐ 2.6k #java #eclipse-collections #java-collections #collections #data-structures #functional #object-oriented #immutable-collections #primitive-collections VerbalExpressions/JavaVerbalExpressions — Java regular expressions made easy. Java · ⭐ 2.6k danielqsj/kafka_exporter — Kafka exporter for Prometheus Go · ⭐ 2.5k #prometheus #prometheus-exporter #kafka #kafka-metrics #metrics davidgasquez/awesome-duckdb — 🦆 A curated list of awesome DuckDB resources ⭐ 2.5k #awesome #awesome-list ory/ladon — A SDK for access control policies: authorization for the microservice and IoT age. Inspired by AWS IAM policies. Written for Go. Go · ⭐ 2.5k unetbootin/unetbootin — UNetbootin installs Linux/BSD distributions to a partition or USB drive (stale) C\u0026#43;\u0026#43; · ⭐ 2.5k documize/community — Modern Confluence alternative designed for internal \u0026amp; external docs, built with Go \u0026#43; EmberJS JavaScript · ⭐ 2.4k #emberjs #go #wiki #documentation-tool #knowledge #collaboration #reporting #dashboards #keycloak #enterprise sodadata/soda-core — Data Contracts engine for the modern data stack. https://www.soda.io Python · ⭐ 2.4k #python #data-engineering #data-governance #data-monitoring #data-observability #data-profiling #data-quality #data-quality-checks #data-quality-monitoring #data-reliability thomseddon/traefik-forward-auth — Minimal forward authentication service that provides Google/OpenID oauth based login and authentication for the traefik reverse proxy Go · ⭐ 2.4k #traefik #oauth2 #oauth2-proxy #google-oauth #docker-swarm #kubernetes #beyondcorp #openid-connect StractOrg/stract — web search done right (archived) (stale) Rust · ⭐ 2.4k #rust #search #search-engine #web atomix/atomix — A Kubernetes toolkit for building distributed applications using cloud native principles (stale) Go · ⭐ 2.4k #atomix #raft #consensus #distributed-systems #data-structures #go #kubernetes gaul/s3proxy — Access other storage backends via the S3 API Java · ⭐ 2.3k #s3 #proxy #openstack-swift #azure #aws-s3 #google-cloud-storage #backblaze-b2 #atmos leucos/ansible-tuto — Ansible tutorial (stale) Shell · ⭐ 2.3k #ansible #tutorial #vagrant amaembo/streamex — Enhancing Java Stream API Java · ⭐ 2.3k #java #java8 #collections #streams-api prometheus/client_java — Prometheus instrumentation library for JVM applications Java · ⭐ 2.3k #instrumentation #java #metrics #prometheus salesforce/TransmogrifAI — TransmogrifAI (pronounced trăns-mŏgˈrə-fī) is an AutoML library for building modular, reusable, strongly typed machine learning workflows on Apache Spark with minimal hand-tuning Scala · ⭐ 2.3k #ml #automl #transformations #estimators #dsl #pipelines #machine-learning #scala #salesforce #einstein MarquezProject/marquez — Collect, aggregate, and visualize a data ecosystem\u0026#39;s metadata Java · ⭐ 2.3k #data-lineage #data-discovery #data-governance #data-provenance #metadata-service #data-dictionary #marquez #metadata #data-ecosystem-metadata #data-ops itext/itext-java — iText for Java represents the next level of SDKs for developers that want to take advantage of the benefits PDF can bring. Equipped with a better document engine, high and low-level programming capabilities and the ability to create, edit and enhance PDF documents, iText can be a boon to nearly every workflow. Java · ⭐ 2.3k #pdf #pdf-generation #library #sdk #pdfa #pdfua #digital-signature #security #encryption #documents plibither8/2048.cpp — 🎮 Fully featured terminal version of the game \u0026#34;2048\u0026#34; written in C\u0026#43;\u0026#43; (stale) C\u0026#43;\u0026#43; · ⭐ 2.2k #cpp #game #cpp11 #2048 #2048-game #hacktoberfest livegrep/livegrep — Interactively grep source code. Source for http://livegrep.com/ C\u0026#43;\u0026#43; · ⭐ 2.2k JetBrains/projector-docker — Run JetBrains IDEs remotely with Docker (archived) (stale) Shell · ⭐ 2.2k #swing #awt #docker vigna/fastutil — fastutil extends the Java™ Collections Framework by providing type-specific maps, sets, lists and queues. Java · ⭐ 2.2k #primitive-collections #sorting-algorithms #java quarkusio/quarkus-quickstarts — Quarkus quickstart code Java · ⭐ 2.2k LeetCode-OpenSource/rxjs-hooks — React hooks for RxJS (stale) TypeScript · ⭐ 2.2k #react #rxjs #observable #rxjs6 #react-hooks tdunning/t-digest — A new data structure for accurate on-line accumulation of rank-based statistics such as quantiles and trimmed means (stale) Java · ⭐ 2.2k #quantile #accuracy #online-algorithms #t-digest stuartsierra/component — Managed lifecycle of stateful objects in Clojure Clojure · ⭐ 2.2k spotify/helios — Docker container orchestration platform (archived) (stale) Java · ⭐ 2.1k #helios #java #docker #container #orchestration apache/atlas — Apache Atlas - Open Metadata Management and Governance capabilities across the Hadoop platform and beyond Java · ⭐ 2.1k #atlas #apache #docker #graphdb #java #javascript #python RedisGraph/RedisGraph — A graph database as a Redis module (stale) C · ⭐ 2k #graphdb #redis #module #opencypher #redisgraph #graphdatabase #graph-database #cypher #nosql #graph openpubkey/opkssh — opkssh (OpenPubkey SSH) Go · ⭐ 2k #oidc #openid-connect #ssh #ssh-keys actions/setup-java — Set up your GitHub Actions workflow with a specific version of Java TypeScript · ⭐ 2k varbhat/exatorrent — 🧲 Easy to Use Torrent Client. Can be hosted in Cloud. Files can be streamed in Browser/Media Player. (archived) (stale) Go · ⭐ 2k #torrent #go #bittorrent-client #self-hosted #golang #bittorrent #qbittorrent #cloud #svelte #typescript nayuki/Project-Euler-solutions — Runnable code for solving Project Euler problems in Java, Python, Mathematica, Haskell. (stale) Java · ⭐ 2k #java #python #mathematica #project-euler #math #mathematics #competitive-programming #number-theory #algorithms #proofs hoytech/vmtouch — Portable file system cache diagnostics and control (stale) C · ⭐ 1.9k #virtual-memory #filesystem-cache #touch #evict #mlock #lock-memory #paging #pages #page #cache openacid/slim — Surprisingly space efficient trie in Golang(11 bits/key; 100 ns/get). Go · ⭐ 1.9k #go #golang #memory #compacted #compress #datastructure #trie #tree jbangdev/jbang — Unleash the power of Java - JBang Lets Students, Educators and Professional Developers create, edit and run self-contained source-only Java programs with unprecedented ease. Java · ⭐ 1.8k #scripting #bash #java #shell #hacktoberfest dakrone/clj-http — An idiomatic clojure http client wrapping the apache client. Officially supported version. Clojure · ⭐ 1.8k jline/jline3 — JLine is a Java library for handling console input. Java · ⭐ 1.8k #cli #console #java deluge-torrent/deluge — Deluge BitTorrent client - Git mirror, PRs only Python · ⭐ 1.8k #python #bittorrent-client #thin-clients #daemon #extjs #gtk clementmihailescu/Pathfinding-Visualizer — A visualization tool for various pathfinding algorithms. (stale) CSS · ⭐ 1.7k tj/mmake — Modern Make (stale) Go · ⭐ 1.7k #makefile #make #task-runner #task-manager #build-tool #build-system #mmake SimonWaldherr/golang-examples — Go(lang) examples - (explain the basics of #golang) Go · ⭐ 1.7k #golang #go #examples #learning #education #howto #hacktoberfest-accepted #hacktoberfest #programming-language weaveworks/awesome-gitops — A curated list for awesome GitOps resources ⭐ 1.7k #awesome #awesome-list iximiuz/cdebug — cdebug - a swiss army knife of container debugging Go · ⭐ 1.7k #containerd #containers #debug #distroless #docker #kubernetes Paramchoudhary/ResumeSkills — A collection of AI agent skills focused on resume optimization, job applications, and career development. Built for job seekers, career changers, and professionals who want Claude Code to help with resume writing, ATS optimization, interview prep, and strategic job search. ⭐ 1.7k Nekrolm/ubbook — C\u0026#43;\u0026#43; programmer\u0026#39;s guide to undefined behavior ⭐ 1.6k #cpp-programming #rust-programming #undefined-behavior LeonardoZ/java-concurrency-patterns — Concurrency Patterns and features found in Java, through multithreaded programming. Threads, Locks, Atomics and more. (stale) Java · ⭐ 1.6k restcookbook/restcookbook — Jekyll cms site for restcookbook.com (stale) CSS · ⭐ 1.6k kdl-org/kdl — the kdl document language specifications Makefile · ⭐ 1.6k #kdl #serialization #language #specification takari/maven-wrapper — The easiest way to integrate Maven into your project! (archived) (stale) Java · ⭐ 1.6k HanSolo/tilesfx — A JavaFX library containing tiles that can be used for dashboards. (stale) Java · ⭐ 1.5k #javafx #javafx-library #javafx-components #java #dashboards antonreshetov/mysigmail — A free and open-source email signature generator for Gmail, Outlook, Apple Mail, etc. Vue · ⭐ 1.5k #email #email-signature #email-template #vue #vuejs docker-library/docker — Docker Official Image packaging for Docker Shell · ⭐ 1.5k google/flogger — A Fluent Logging API for Java Java · ⭐ 1.5k #logging korma/Korma — Tasty SQL for Clojure. (stale) Clojure · ⭐ 1.5k hawtio/hawtio — Hawtio web console helps you manage your JVM stuff and stay cool! Java · ⭐ 1.5k #hawtio #java #console #web-app #spring-boot keycloak/keycloak-containers — ARCHIVED Containers for the no longer supported WildFly distribution of Keycloak (archived) (stale) ⭐ 1.5k astronomer/dag-factory — Construct Apache Airflow DAGs Declaratively via YAML configuration files Python · ⭐ 1.5k #airflow #apache-airflow #python #dags spotify/docker-client — INACTIVE: A simple docker client for the JVM (archived) (stale) Java · ⭐ 1.4k #docker #java #containers Shopify/krane — A command-line tool that helps you ship changes to a Kubernetes namespace and understand the result Ruby · ⭐ 1.4k #kubernetes #deploy-tool ReactiveX/RxNetty — Reactive Extension (Rx) Adaptor for Netty (stale) Java · ⭐ 1.4k Data-Learn/data-engineering — Getting Started with Data Enngineering (stale) Python · ⭐ 1.3k kaz-Anova/StackNet — StackNet is a computational, scalable and analytical Meta modelling framework (stale) Java · ⭐ 1.3k ljeng/cheat-sheet — Knowledge base for software engineers and research engineers Java · ⭐ 1.3k #algorithms #system-design #operating-system #coding #data #data-structures #graphs #mathematics #recursion #sorting pdfernhout/High-Performance-Organizations-Reading-List — Ideas for creating and sustaining high performance organizations ⭐ 1.3k JetBrains/xodus — Transactional schema-less embedded database used by JetBrains YouTrack and JetBrains Hub. Java · ⭐ 1.3k #embedded-database #java #kotlin #key-value #entity-store #transactional #log-structured #schema-less #snapshot-isolation #nosql denho/faved — Free open-source bookmark manager with customisable nested tags. Super fast and lightweight. All data is stored locally. TypeScript · ⭐ 1.3k #bookmarklet #bookmarks-manager #links-management #bookmark-manager #bookmarking #bookmarks #docker #php #pocket #read-it-later unjs/changelogen — 💅 Beautiful Changelogs using Conventional Commits TypeScript · ⭐ 1.3k khairul169/garage-webui — WebUI for Garage Object Storage Service TypeScript · ⭐ 1.2k vladmihalcea/flexy-pool — FlexyPool adds metrics and failover strategies to a given Connection Pool, allowing it to resize on demand. Java · ⭐ 1.2k #connection-pool #java #histogram #dbcp #hikaricp #monitoring #database #flexy-pool taoensso/carmine — Redis client \u0026#43; message queue for Clojure Clojure · ⭐ 1.2k #clojure #epl #taoensso #redis #message-queue docker-library/openjdk — Docker Official Image packaging for EA builds of OpenJDK from Oracle Dockerfile · ⭐ 1.2k jattach/jattach — JVM Dynamic Attach utility C · ⭐ 1.2k arriven/db1000n (stale) Go · ⭐ 1.1k marchof/java-almanac — The history and future of Java. HTML · ⭐ 1.1k #java #api #history #future #specification #language #openjdk #javaalmanac ContainX/docker-volume-netshare — Docker NFS, AWS EFS, Ceph \u0026amp; Samba/CIFS Volume Plugin (stale) Go · ⭐ 1.1k #docker #volume-plugin #nfs #efs #cifs #cifs-volume-plugin #samba #docker-nfs adobe/S3Mock — A mock implementation of the AWS S3 API startable as Docker image, TestContainer, JUnit Jupiter extension or TestNG listener Kotlin · ⭐ 1.1k #s3 #mock #testing #docker #junit #aws-s3 #aws #testcontainers #arm64 #amd64 njpatel/grpcc — A gRPC cli interface for easy testing against gRPC servers (stale) JavaScript · ⭐ 1.1k #grpc #grpc-client #devops #devtools #developer-tools #http2 #protobuf #protobuf3 raml2html/raml2html — RAML to HTML documentation generator. (stale) JavaScript · ⭐ 1.1k #raml2html #raml #raml-tooling #raml-document gradle/gradle-completion — Gradle tab completion for bash and zsh Shell · ⭐ 1.1k #zsh-completion #bash-completion #gradle #gradle-bt #gradle-bt-core-runtime pgjdbc/r2dbc-postgresql — Postgresql R2DBC Driver Java · ⭐ 1.1k #java #database #postgresql #reactive #reactive-streams OneDrive/onedrive-sdk-python — OneDrive SDK for Python! https://dev.onedrive.com (archived) (stale) Python · ⭐ 1.1k sameersbn/docker-postgresql — Dockerfile to build a PostgreSQL container image which can be linked to other containers. (stale) Shell · ⭐ 1.1k vilaca/awesome-k8s-tools — List of container/k8s tools. Shell · ⭐ 1.1k #k8s #kubernetes #cli #container #deployment #monitoring #open-source #development #devops crimx/observable-hooks — ⚛️☯️💪 React hooks for RxJS Observables. Concurrent mode safe. (stale) TypeScript · ⭐ 1.1k #rxjs-hooks #rxjs #react-rxjs #react-rxjs-hooks #react-rxjs-observable #concurrent-mode #rxjs-observables #suspense cloudera/livy — Livy is an open source REST interface for interacting with Apache Spark from anywhere (stale) Scala · ⭐ 1k argoproj-labs/argocd-vault-plugin — An Argo CD plugin to retrieve secrets from Secret Management tools and inject them into Kubernetes secrets (stale) Go · ⭐ 973 #argo-cd #gitops #argocd-plugin #secret-management #aws-secrets-manager #kubernetes #vault #gcp-secret-manager #azure-keyvault #secrets-manager stateless4j/stateless4j — Lightweight Java State Machine (stale) Java · ⭐ 940 #state-machines #hierarchical-states #transition #java #automata #finite-state-machine #fsm #fsm-library johannesboyne/gofakes3 — A simple fake AWS S3 object storage (used for local test-runs against AWS S3 APIs) Go · ⭐ 935 weavejester/environ — Library for managing environment variables in Clojure (stale) Clojure · ⭐ 935 #clojure #environment-variables matiassingers/awesome-slack — A curated list of awesome Slack related things (stale) ⭐ 891 #awesome-list #awesome #list #slack sameersbn/docker-squid — Dockerfile to create a Docker container image for Squid proxy server (stale) Shell · ⭐ 854 #docker #docker-image #containers #squid #proxy #caching-proxy making/yavi — Yet Another Validation for Java (A lambda based type safe validation framework) Java · ⭐ 850 #java #kotlin #validation-library #validator #validation salesforce/reactive-grpc — Reactive stubs for gRPC Java · ⭐ 840 #grpc-java #rxjava2 #reactor elki-project/elki — ELKI Data Mining Toolkit Java · ⭐ 831 #data-mining #java #machine-learning #clustering #outlier-detection #anomalydetection #visualization #data-mining-algorithms #indexing #index graphhopper/map-matching — The map matching functionality is now located in the main repository https://github.com/graphhopper/graphhopper#map-matching (archived) (stale) Java · ⭐ 809 #geospatial #java #gps #map-matching #tracking #openstreetmap minio/warp — S3 benchmarking tool Go · ⭐ 809 #benchmark #warp #csv-data #s3-benchmarking #benchmark-runs #clocks #request-statistics bsideup/jabel — Jabel - unlock Javac 9\u0026#43; syntax when targeting Java 8 (stale) Java · ⭐ 806 FoxxMD/intellij-jvm-options-explained — Common JVM options used with Intellij and what they do (stale) ⭐ 757 #intellij #webstorm #phpstorm #jetbrains #jvm #configuration #rubymine #pycharm jqno/equalsverifier — EqualsVerifier can be used in Java unit tests to verify whether the contract for the equals and hashCode methods is met. Java · ⭐ 742 #java #equals #testing google/google-api-java-client-samples (archived) (stale) Java · ⭐ 739 vmware/pinniped — Pinniped is the easy, secure way to log in to your Kubernetes clusters. Go · ⭐ 736 #kubernetes #identity #authentication #idp #login #oidc #ldap #active-directory melix/jmh-gradle-plugin — Integrates the JMH benchmarking framework with Gradle Groovy · ⭐ 726 #gradle #plugin odnoklassniki/one-nio — Unconventional I/O library for Java Java · ⭐ 721 #nio #java #io #native #network #mmap digitalocean/firebolt — Golang framework for streaming ETL, observability data pipeline, and event processing apps (stale) Go · ⭐ 719 Vrun-design/openflowkit — 100% Free, Open-source local-first AI diagramming for architecture diagrams and flowcharts with animated exports. TypeScript · ⭐ 702 #flowchart #ai #architecture-diagrams #diagramming #local-first #open-source #system-design #mermaid #react #self-hosted apache/aurora — Apache Aurora - A Mesos framework for long-running services, cron jobs, and ad-hoc jobs (archived) (stale) Java · ⭐ 636 #aurora cashapp/pranadb (stale) Go · ⭐ 601 Azure/aad-pod-identity — [DEPRECATED] Assign Azure Active Directory Identities to Kubernetes applications. (archived) (stale) Go · ⭐ 560 #azure #azureactivedirectory #kubernetes #aad-pod-identity #kubernetes-applications #deprecaed carlossg/docker-maven — Official Docker image with Maven Dockerfile · ⭐ 559 sturdy-dev/sturdy — 🐥 Sturdy is an open-source, real-time, version control platform for startups (https://getsturdy.com) (stale) Go · ⭐ 550 #vcs #sturdy #y-combinator #git #golang #vue3 #self-hosted #open-source #go #vue code-disaster/steamworks4j — A thin Java wrapper to access the Steamworks API Java · ⭐ 549 #java #bindings #steamworks quick-perf/quickperf — QuickPerf is a testing library for Java to quickly evaluate and improve some performance-related properties Java · ⭐ 539 #performance-testing #performance-analysis #performance #jvm #allocation #profiling #hibernate #sql #spring #spring-boot micronaut-projects/micronaut-examples — Example Projects Using Micronaut (archived) (stale) ⭐ 532 hypertrace/hypertrace — An open source distributed tracing \u0026amp; observability platform (stale) Shell · ⭐ 517 #observability #monitoring #kubernetes #distributed-tracing #cloud-native #tracing #opentelemetry #application-monitoring #java #kafka astronomer/astronomer — Helm Charts for the Astronomer Platform, Apache Airflow as a Service on Kubernetes Python · ⭐ 491 #apache-airflow #kubernetes #docker #astronomer-platform #astronomer-software #astro-private-cloud sobolevbel/jdg — Гайд-путеводитель по JDG (ИП) в Польше Markdown · ⭐ 482 #documentation #jdg #mkdocs #markdown #poland #business #guide #hacktoberfest sonatype-nexus-community/search-maven-org (archived) (stale) TypeScript · ⭐ 481 Itiviti/simple-slack-api — (simple) Java Slack client library (stale) Java · ⭐ 474 gitlabform/gitlabform — 🏗 Specialized configuration as a code tool for GitLab Python · ⭐ 467 #configuration-as-code #gitlab #yaml #cli gitthermal/thermal — One stop to manage all git repository. ⭐️ Star to support our work! (stale) Vue · ⭐ 453 #git #git-gui #vue #electron #cross-platform #thermal #desktop #windows #macos #linux ahembree/ansible-hms-docker — Ansible playbook for an orchestrated Home Media Server deployment Jinja · ⭐ 450 #ansible #automation #docker #emby #jellyfin #media #mediaserver #plex #arr-services #arr-stack cncf/devstats.archive — 📈CNCF-created tool for analyzing and graphing developer contributions (archived) (stale) Shell · ⭐ 440 #githubarchive #postgres #kubernetes #grafana-dashboard #metrics #apache #jaeger #cncf #statistics #github AOL-archive/cyclops-integration — Home of the cyclops integration modules : support for Scala, Clojure, RxJava (1\u0026#43;2), Reactor, FunctionalJava, Guava, Dexx \u0026amp; Vavr (stale) Java · ⭐ 439 gliderlabs/sigil — Standalone string interpolator and template processor Go · ⭐ 419 JetBrains/Qodana — 📝 Source repository of Qodana Help ⭐ 403 #javascript #kotlin #python #java #php #typescript #static-code-analysis #continuous-integration #ci #static-analysis clojurewerkz/elastisch — A minimalistic Clojure client for ElasticSearch, supports both HTTP and native transports (stale) Clojure · ⭐ 390 tetratelabs/func-e — func-e (pronounced funky) makes running Envoy® easy Go · ⭐ 384 #envoyproxy #golang jclouds/jclouds — Read-only mirror of ASF Git Repo for jclouds (archived) (stale) Java · ⭐ 381 neomatrix369/awesome-graal — A curated list of awesome resources for Graal, GraalVM, Truffle and related topics (stale) Shell · ⭐ 369 #graal #truffle #graalvm #llvm #jit #ast #optimised #machine-code #interpreter #fastr spring-cloud-samples/brewery — Brewing beer with Spring Cloud has never been that easy... (stale) Java · ⭐ 358 r2dbc/r2dbc-client — Reactive Relational Database Connectivity (archived) (stale) Java · ⭐ 344 #java #reactive #database #api #reactive-streams #reactor RoadieHQ/roadie-backstage-plugins — All Backstage plugins created by Roadie. TypeScript · ⭐ 344 #backstage #backstage-plugin #hacktoberfest qoomon/maven-git-versioning-extension — This extension will set project version, based on current Git branch or tag. Java · ⭐ 339 #git #versioning #tag #branch #repository #generated #maven-plugin #maven-extension #maven #gradle jfrog/artifactory-docker-examples — Examples for using Artifactory Docker distribution in various environments (stale) Shell · ⭐ 338 #artifactory #docker #kubernetes #helm-charts #docker-compose #dcos #openshift vladmihalcea/hypersistence-optimizer — Hypersistence Optimizer allows you to get the most out of JPA and Hibernate. By scanning your application configuration and mappings, Hypersistence Optimizer can tell you what changes you need to do to speed up your data access layer. Java · ⭐ 333 jfrog/artifactory-client-java — Artifactory REST Client Java API bindings Java · ⭐ 329 #jfrog #jfrog-artifactory #java #artifactory #xray #jfrog-xray #artifactory-java-client moira-alert/moira — Realtime Alerting for Graphite and Prometheus Go · ⭐ 320 #moira #monitoring #alerting #graphite #prometheus #victoriametrics dsyer/spring-boot-startup-bench — Benchmarks for Spring Boot startup (stale) Java · ⭐ 309 tbroyer/gradle-apt-plugin — [OBSOLETE] Gradle plugin making it easier/safer to use Java annotation processors (archived) (stale) Groovy · ⭐ 292 #gradle-plugin #annotation-processing 31z4/zookeeper-docker — Docker image packaging for Apache Zookeeper Dockerfile · ⭐ 288 AdoptOpenJDK/jdk9-jigsaw — Examples and exercises based on some of the features of jigsaw in JDK9/Jigsaw (Early Access builds) (stale) Java · ⭐ 283 #java9 #java #jdk9 #jigsaw #modular #modularisation #jshell #exercises #challenge #code-examples apache/commons-bcel — Apache Commons BCEL Java · ⭐ 273 #commons dexecutor/dexecutor-core — Execute Dependent/Independent tasks in a reliable way (stale) Java · ⭐ 257 spinnaker/orca — Orchestration engine (archived) Java · ⭐ 254 #hacktoberfest grafana/grafana-foundation-sdk — A set of tools, types and libraries for building and manipulating Grafana objects. PHP · ⭐ 253 laffra/happymac — A Python Mac app to suspend background processes (stale) Python · ⭐ 249 gradle/oreilly-gradle-book-examples (archived) (stale) Java · ⭐ 247 golang-collections/collections (stale) Go · ⭐ 245 sheepkiller/kafka-manager-docker — Kafka Manager Dockerfile (archived) (stale) Shell · ⭐ 245 redfx-quantum/strange — Quantum Computing API for Java Java · ⭐ 242 clj-commons/clj-ssh — SSH commands via jsch (stale) Clojure · ⭐ 241 graalvm/graalvm-ten-things — Top 10 Things To Do With GraalVM (stale) C · ⭐ 239 wix-incubator/exodus — Easily migrate your JVM code from Maven to Bazel (stale) Scala · ⭐ 229 cswank/kcli — A kafka command line browser (stale) Go · ⭐ 224 #kafka #cli #browser abstractj/kalium — Java binding to the Networking and Cryptography (NaCl) library with the awesomeness of libsodium (archived) (stale) Java · ⭐ 219 #libsodium #java #nacl #java-bindings #cryptography viclovsky/swagger-coverage — Tool which generates full picture of coverage of API tests based on OAS (Swagger) v2 and v3 (stale) Java · ⭐ 217 #swagger #coverage #oas spring-attic/aws-maven (archived) (stale) Java · ⭐ 215 davidsantiago/stencil — A Clojure implementation of Mustache (stale) Clojure · ⭐ 213 Netflix/ReactiveLab — Experiments and prototypes with reactive application design. (archived) (stale) Java · ⭐ 211 jhg023/SimpleNet — An easy-to-use, event-driven, asynchronous network application framework compiled with Java 11. (stale) Java · ⭐ 187 #java #nio2 #nio #network #networking #client #client-server #server #bytes #byte jruby/joni — Java port of Oniguruma regexp library Java · ⭐ 186 coursera/metrics-datadog — metrics-datadog (stale) Java · ⭐ 185 odnoklassniki/jvmti-tools — Collection of small Java serviceability improvements based on JVM Tool Interface (stale) C\u0026#43;\u0026#43; · ⭐ 185 #jvmti #tools #serviceability micronaut-projects/micronaut-spring — A collection of utilities for Spring users of Micronaut Java · ⭐ 172 eseifert/gral — Free Java library for displaying plots (stale) Java · ⭐ 171 #java #java-library #charts #plots #visualization #graphing #maintainer-wanted #hacktoberfest #hacktoberfest2022 redhat-developer/rhdh — The repo formerly known as janus-idp/backstage-showcase TypeScript · ⭐ 170 #backstage #backstage-showcase #internal-developer-platform #rhdh gradle/docker-gradle — Docker images with Gradle Dockerfile · ⭐ 168 #gradle #docker-image #gradle-bt #gradle-bt-release-coordination cjdev2/kafka-rx — reactive kafka client (archived) (stale) Scala · ⭐ 161 orangepi-xunlong/openwrt — For Orange Pi R1 Plus/R1 Plus LTS (stale) C · ⭐ 146 #openwrt #router lukaszlach/clip — :whale: Docker Client Plugins Manager - build new plugins, publish them on Docker Hub or just try some plugins from the catalog and install them locally (archived) (stale) Shell · ⭐ 139 #docker #docker-client #docker-cli-plugin #plugins gongzhang/procbridge — A super-lightweight IPC (Inter-Process Communication) protocol over TCP socket. (stale) ⭐ 124 #java #python #ipc #socket #json #protocol #rpc #nodejs ghale/gradle-jenkins-plugin — Gradle plugin to programmatically configure Jenkins jobs. (stale) Groovy · ⭐ 122 raphw/weak-lock-free — Implementation of a concurrent map with weak keys and a detached thread local storage. (stale) Java · ⭐ 122 devexperts/lin-check — Linearization checker for Java concurrent programs (stale) Java · ⭐ 107 dsyer/spring-boot-allocations Java · ⭐ 107 grafana/cog — Code Generation with a human touch Go · ⭐ 101 bakdata/fluent-kafka-streams-tests — Fluent Kafka Streams Test with Java Java · ⭐ 93 #kafka-streams #testing #test-framework #testing-framework #avro #java bentolor/java9-in-action — A RevealJS overview presentation \u0026amp; example project of what to expect from Java 9 (Jul\u0026#39;2016) (stale) JavaScript · ⭐ 89 rancher/rke2-charts Shell · ⭐ 89 openjdk/shenandoah-visualizer — https://openjdk.org/projects/shenandoah (stale) Java · ⭐ 86 mp911de/microbenchmark-runner — JUnit extensions to launch JMH benchmarks from your IDE during development Java · ⭐ 83 olegchir/freeasinfreedom-ru — \u0026#34;Free as in Freedom\u0026#34; in Russian (stale) ⭐ 71 nrdxp/sukr — Minimal static site compiler — suckless, Rust, zero JS. Rust · ⭐ 70 #no-javascript #no-js #static-site-generator #static-website fusesource/rocksdbjni — A Java JNI driver to rocksdb (stale) Shell · ⭐ 68 kwon37xi/freemarker-template-inheritance — Freemarker layout with template inheritance directives. (stale) Java · ⭐ 64 razbor-poletov/razbor-poletov.github.com — Podcast \u0026#34;Разбор полетов\u0026#34; JavaScript · ⭐ 61 cschanck/single-file-java — One file, one piece of functionality. No dependencies. (stale) Java · ⭐ 52 #parser #paxos #java-utils #minimalist #csv-parser #kvstore #dotty manusa/yakc — Yet another Kubernetes Client - Lower level Java REST client for Kubernetes API (stale) Java · ⭐ 52 #kubernetes #rest #reactive #rxjava #reactivex #kubernetes-client takari/takari-smart-builder Java · ⭐ 52 jimmylee/www-react-postgres — [2022] [OUTDATED] A template for React, Postgres and various Web3 integrations. (stale) TypeScript · ⭐ 46 #react #postgres #web3 #web2 #metamask #phantom takari/takari-local-repository (archived) (stale) Java · ⭐ 45 l0s/fernet-java8 — Java 8 implementation of the Fernet Specification Java · ⭐ 44 #fernet #cryptography #authentication #authorization #encryption dinstone/beanstalkc — Beanstalkc is a thread-safe client library of the beanstalkd. (stale) Java · ⭐ 43 adrianulbona/hmm — Hidden Markov Models Java Library (stale) Java · ⭐ 42 Jotschi/vertx-graalvm-native-image-test — GraalVM - Substrate VM - Test project for Vert.x (stale) Shell · ⭐ 41 #graalvm #substrate-vm #java OpenHFT/Chronicle-Salt — Chronicle wrapper for the NaCl library (stale) Java · ⭐ 34 brendangregg/proc-profiler — Linux /proc/PID/stack profiler (stale) Perl · ⭐ 32 klutometis/speech-recognition — Speech recognition library in Clojure (stale) Clojure · ⭐ 31 lorenzodotta02/Finance-functions-for-Google-Sheets — FFGS is a collection of custom Google Sheets functions designed as an alternative to GOOGLEFINANCE() JavaScript · ⭐ 28 #apps-script #bonds #cryptocurrency #etf #finance #gold #google-sheets #api #borsa-italiana #coinmarketcap-api vishalnarkhede/agentdock — Mobile friendly web dashboard for managing parallel claude agents across repos with tmux sessions and git worktrees TypeScript · ⭐ 26 #ai-coding #claude-code #cursor-agent #git-worktrees #tmux DragonPomelo/trino-opa-example (stale) Open Policy Agent · ⭐ 25 jenkinsci/react-plugin-template — A boilerplate to build a jenkins plugin with react-based UI . (stale) JavaScript · ⭐ 24 #react #jenkins #template #boilerplate worldline/openshift-sonarqube — SonarQube for OpenShift (stale) Shell · ⭐ 20 vmj/http-server — A Java HTTP server in 35MB Docker image (stale) Makefile · ⭐ 17 #java #http #http-server #jigsaw #jlink #alpine #alpine-linux #docker #java-11 #jdk11 nipafx/demo-jigsaw-advent-calendar — An Advent Calendar Demonstrating Jigsaw EA (stale) ⭐ 16 #demo #jpms clojurewerkz/support — A support library ClojureWerkz projects (Langohr, Monger, Neocons, Elastisch, Quartzite, Welle, and others) can rely on Clojure · ⭐ 15 crazy-max/docker-svn2git-mirror — 🐳 Docker image to mirror SVN repositories to Git periodically (archived) (stale) Dockerfile · ⭐ 15 #docker #svn2git #mirroring #alpine #svn #git stunnel/raspios-f2fs — raspios-f2fs - Flash Friendly Filesystem(f2fs) for the Raspberry Pi OS (stale) Shell · ⭐ 10 ","externalUrl":null,"permalink":"/awesome/","section":"Dmytro Horkhover","summary":"","title":"Awesome","type":"page"},{"content":"","externalUrl":null,"permalink":"/categories/","section":"Categories","summary":"","title":"Categories","type":"categories"},{"content":"About Software Engineer with 14+ years of experience, mostly Java and JVM-based languages such as Clojure and Groovy. Passionate about Java, JVM, performance, benchmarking, data structures and reactive streams.\nLooking for new challenges. Product companies are preferable, full time, remote is preferable for now, but an office is not an issue; relocation to another city/country is not an issue.\nContacts Email: hdpmail@pm.me LinkedIn: dmitriy-gorkhover Skills Languages: Java (6\u0026#43;), Clojure, Python, JavaScript, Go, Shell (sh, bash, zsh) Frameworks: Spring (Boot, Web, etc.), Reactive Streams (RxJava, Project Reactor), gRPC, Quarkus, Apache Spark, ReactJS, Redux Databases \u0026amp; Messaging: PostgreSQL, Redis, Kafka DevOps: Docker, Docker Compose, Docker Swarm, Kubernetes, Ansible, Google Cloud Platform, AWS OS: Linux (Mint, Ubuntu, Alpine, CentOS), macOS, Windows Experience Data Platform Lead — Fozzy Group May 2021 – Present · Remote Tech: Go, Java\nSenior Java Software Engineer — Grid Dynamics Oct 2020 – Aug 2021 · Lviv, Ukraine Full-Stack Engineer — Self-Employed Jan 2020 – Sep 2020 · Lviv, Ukraine Personal R\u0026amp;D project — built a Kubernetes cluster on bare metal from scratch with Ansible playbooks (VirtualBox: Alpine, CentOS, Ubuntu).Developed a backend for a Telegram bot for scheduling different services (Java 11, Quarkus, GraalVM native image, Docker).Data processing for a retail company\u0026#39;s recommendation platform, including some admin-console UI work. Tech: Java, Go, Python, TypeScript, Quarkus, Spring Boot, Apache Spark, Kafka, Redis, PostgreSQL, Kubernetes, Docker, Ansible, Azure Data Lake, Angular, Prometheus, Grafana\nSoftware Java Engineer — N-IX Aug 2019 – Dec 2019 · Lviv, Ukraine Implemented a new gateway protocol — SMGP (Short Message Gateway Protocol) — with extensive unit-test coverage, for a client providing technology services to telecommunications companies.Fixed security vulnerabilities found with Fortify on Demand and SonarQube.Set up a Docker Swarm cluster with GitLab, Jenkins and SonarQube on a local Azure cloud to speed up the vulnerability-fix feedback loop. Tech: Java 6, Apache Maven, Jenkins, SonarQube, Docker Swarm, Subversion\nSenior Java Developer — Intellias Nov 2018 – Mar 2019 · Lviv, Ukraine Implemented a new map-matching algorithm based on Hidden Markov Model \u0026#43; Viterbi algorithm.Provided a comprehensive comparison of map-matching algorithms and extended the matching pipelines with multi-algorithm support. Tech: Java 8, Apache Maven, Jenkins, Git (Gerrit)\nSoftware Engineer — LoopMe Jul 2014 – Oct 2018 · Dnipro, Ukraine Developed a digital-advertising platform — high-load ad server, ad-targeting algorithms and real-time-bidding APIs — first in Clojure, then migrated fully to Java.Received the \u0026#34;Company Hero\u0026#34; award (given once every six months) for single-handedly delivering a difficult cross-language PoC integration.Spent ~2 years in the Data Science team building high-performance Java services delivering prediction and bidding models to production with ~1 ms response at the 99th percentile.Kept the framework footprint deliberately small, which eased later migrations across Java versions (8 through 12). Tech: Java (8–12), Clojure, Spring Boot, RxJava, gRPC, Spark, Kafka, Cassandra, PostgreSQL, Redis, Elasticsearch, Clickhouse, Docker, Kubernetes, Jenkins, Grafana, Prometheus, Datadog\nJava Developer — Ciklum Jul 2014 – Nov 2015 · Dnipro, Ukraine Worked on the LoopMe project while it was Ciklum\u0026#39;s outstaff project — see the LoopMe entry above. Middle Software Engineer — Privat Bank Jul 2013 – Jul 2014 · Dnipro, Ukraine Developed internal web projects for the business department. Tech: Java (6–8), JavaScript, Spring 3, jQuery, Angular 1, PostgreSQL, Redis, Apache Maven, Jenkins\nJunior Software Engineer — Privat24 (Privat Bank) Feb 2012 – Jul 2013 · Dnipro, Ukraine Developed and modernized the Ukrainian internet-banking system Privat24 (Ukraine, Georgia and A-Bank flavours) — features, support, bugfixing, unit testing.Migrated the Privat24 Georgia project from Java 6 \u0026#43; Apache Ant to Java 7 \u0026#43; Spring \u0026#43; Apache Maven \u0026#43; Git over four weekends, without a mentor — stressful, but a formative experience. Tech: Java 6/7, JavaScript, Java EE (EJB, Resin), Spring 3, jQuery, Backbone, Sybase, Redis, RabbitMQ, Jenkins\nEducation Master of Computer Science — Ukrainian State Chemical Technology University\nSep 2010 – Jun 2011 · Dnipro, Ukraine Bachelor of Computer Science — Ukrainian State Chemical Technology University\nSep 2006 – Jun 2010 · Dnipro, Ukraine Languages Ukrainian: Native English: Intermediate Russian: Fluent German: Elementary Hobbies Traveling, Motorcycles, Gym, Football, Cars, Bicycles\n","externalUrl":null,"permalink":"/cv/","section":"Dmytro Horkhover","summary":"","title":"CV","type":"page"},{"content":"","externalUrl":null,"permalink":"/series/","section":"Series","summary":"","title":"Series","type":"series"}]