321 repos
Awesome GitHub repositories, curated.
A community-curated directory of interesting public GitHub repositories. Ask in plain English — AI ranks by relevance. Save what you find.
Browse repositories
- rust-lang/rust
rust-lang/rust
110,533Rust is a programming language designed for memory safety and performance. It provides a comprehensive curriculum that covers fundamental syntax, memory management, and advanced programming paradigms, including support for functional and object-oriented styles. The language features a strong type system that enforces memory safety through ownership, borrowing, and lifetime annotations, while also offering mechanisms for handling both recoverable and unrecoverable errors. The language includes extensive support for concurrent programming, providing primitives for thread management, shared-state synchronization, and asynchronous task execution. Developers can organize code using modules and visibility controls, and utilize a macro system for metaprogramming and code generation. The ecosystem also includes a built-in testing framework for unit and integration tests, as well as tools for managing project builds and dependencies. Advanced capabilities allow for low-level control, including foreign function interfaces for interacting with other languages and unsafe code blocks for operations that bypass standard safety guarantees. The project documentation provides a structured learning path, ranging from environment setup and basic language constructs to complex topics like smart pointers, trait-based polymorphism, and practical project implementation.
compilerlanguagerust - nodejs/node
nodejs/node
115,848This project is an open-source JavaScript runtime built on the V8 engine. It provides a comprehensive environment for executing JavaScript code outside of a web browser, offering foundational primitives for process management, multi-core load distribution, and parallel execution through worker threads. The runtime includes a broad set of built-in modules for system-level operations, such as file system interaction, network communication across various protocols, and cryptographic security. It supports multiple module systems, native binary addon integration, and diagnostic tools for monitoring application performance and health. Developers can utilize built-in utilities for testing, debugging, and internationalization, as well as native support for executing TypeScript and WebAssembly. The project is distributed as a standalone runtime, with capabilities for bundling scripts into single executable files.
javascriptjslinux - Developer-Y/cs-video-courses
Developer-Y/cs-video-courses
74,064This project is a community-driven educational repository that serves as a comprehensive directory of university-level computer science video lectures. It provides a structured learning path for students and professionals, aggregating high-quality academic resources to facilitate self-paced study across a wide range of technical disciplines. The repository distinguishes itself through a collaborative maintenance model, utilizing version control workflows to allow contributors to expand and update the collection. Content is organized within a single, version-controlled document that leverages internal navigation anchors to create a hierarchical table of contents, ensuring that users can easily locate specific subject matter within the extensive index. The collection covers a broad spectrum of technical knowledge, spanning foundational topics like mathematics and data structures to specialized domains such as machine learning, distributed systems, and quantum computing. By curating expert-led instructional materials, the project functions as a centralized knowledge base for those seeking to master complex computing concepts independently. The information is presented through a platform-native rendering engine that converts repository markup files into accessible, human-readable web pages.
algorithmsbioinformaticscomputational-biology - excalidraw/excalidraw
excalidraw/excalidraw
117,138This project is a virtual whiteboard component and vector graphics editor designed for creating diagrams with a hand-drawn aesthetic. It provides a canvas-based drawing engine that can be embedded directly into web applications, allowing users to manipulate shapes, upload images, and export visual data into standard formats like PNG, SVG, or JSON. The platform distinguishes itself through a real-time synchronization layer that supports multi-user collaboration across distributed environments. This engine utilizes end-to-end encryption to secure shared sessions and employs a local-first data persistence model, which ensures that application state is maintained in browser storage to prevent data loss during network interruptions. Beyond its core drawing capabilities, the software supports self-hosted deployment, allowing teams to manage private instances within their own containerized infrastructure. The system handles complex user interactions through an event-driven architecture that translates pointer and keyboard gestures into persistent geometric objects, while also providing options for custom typography to maintain visual consistency across workspaces.
canvascollaborationdiagrams - apache/superset
apache/superset
70,587Superset is a web-based business intelligence platform designed for data exploration, visualization, and interactive dashboarding. It functions as a query-driven analytics engine that connects to various SQL databases, allowing users to perform ad-hoc analysis, define virtual metrics, and build complex data visualizations through a centralized interface. The platform distinguishes itself through a robust semantic layer that transforms raw database schemas into calculated columns and virtual metrics, enabling consistent business logic across an organization. It features a plugin-based visualization architecture that supports modular chart components and custom geospatial maps, alongside granular role-based access control that enforces data security through row-level filters applied directly to generated SQL queries. Beyond its core analytics capabilities, the system provides comprehensive tools for enterprise data governance, including automated reporting, scheduled data snapshots, and secure content embedding. It supports high-performance operations through distributed caching, asynchronous query execution, and a standardized API for programmatic resource management. The project is designed for production-grade deployment, offering extensive configuration for containerized environments, metadata management, and secure network communication. It provides detailed documentation for installation, environment migration, and system hardening to ensure scalability and data integrity across distributed instances.
analyticsapacheapache-superset - sindresorhus/awesome-nodejs
sindresorhus/awesome-nodejs
65,038This project is a community-driven directory that aggregates essential software projects and educational content for the Node.js ecosystem. It functions as a centralized knowledge base and discovery index, designed to simplify the navigation of a fragmented technical landscape by providing a structured collection of high-quality links, tools, and learning materials. The repository distinguishes itself through a decentralized, peer-reviewed curation model. By utilizing standard version control workflows and pull requests, the community ensures that all listed resources undergo human verification to maintain relevance and quality. This approach transforms a vast array of external links into a single, searchable, and maintainable static document. The collection covers a broad spectrum of development needs, ranging from backend application infrastructure and web frameworks to command-line tooling and testing utilities. Beyond software packages, it serves as a comprehensive reference for developer skill advancement, offering access to curated articles, books, courses, and newsletters that support ongoing technical proficiency.
awesomeawesome-listjavascript - microsoft/autogen
microsoft/autogen
54,656This framework provides a development environment for building collaborative systems where autonomous agents interact to solve complex tasks through conversational workflows. It functions as a conversational workflow engine and event-driven runtime, coordinating multi-step processes by translating high-level goals into structured dialogue sequences between specialized agents. The system distinguishes itself through its message-passing orchestration, which manages state transitions and task delegation between independent participants. It supports dynamic conversation state management to provide persistent memory during multi-turn interactions, and it incorporates human-in-the-loop capabilities that allow for review or modification of agent outputs at specific message boundaries. Beyond core orchestration, the framework enables the integration of pluggable tools, allowing agents to invoke external functions and APIs through natural language requests. This architecture supports the construction of scalable, event-driven systems that automate sequences of tasks across digital tools and connect large language models to external data sources for autonomous reasoning.
agenticagentic-agiagents - vitejs/vite
vitejs/vite
78,295Vite is a frontend build toolchain that provides a unified development and production pipeline for modern web applications. It functions as a modular, environment-agnostic build engine that leverages native ES modules to serve source code directly to the browser, eliminating the need for expensive bundling during the development phase. By maintaining an environment-aware module graph, it supports concurrent development across client, server, and custom runtime environments. The project distinguishes itself through a high-performance development server that utilizes a hot module replacement protocol to propagate granular code updates via WebSockets, allowing for stateful application patches without full page reloads. Its architecture is built on a plugin-based transformation pipeline that ensures consistent code processing across both development and production builds. Additionally, it features advanced dependency pre-bundling, which converts CommonJS and UMD dependencies into optimized ESM chunks to improve loading efficiency and startup performance. Vite covers a broad capability surface, including comprehensive support for server-side rendering, multi-page application architectures, and static asset management. It provides extensive programmatic APIs for controlling code transformation, server lifecycles, and environment variable management. The toolchain also includes built-in optimizations for production, such as automatic code splitting, preload directive generation, and high-speed TypeScript transpilation. The project is configured through a standard file-based system, allowing developers to extend functionality via custom plugins and hooks that integrate directly into the build and runtime logic.
build-tooldev-serverfrontend - ggml-org/llama.cpp
ggml-org/llama.cpp
95,400Llama.cpp is an inference engine designed for the local execution of text-based and multimodal language models on consumer hardware. It provides a core environment for running models that process both text and image inputs, utilizing hardware-accelerated backends to optimize performance across diverse CPU and GPU architectures. The project distinguishes itself by offering a lightweight HTTP server that adheres to standard API specifications, enabling chat completion, embeddings, and reranking services. It includes a suite of tools for model quantization and conversion, which reduces memory usage and improves performance, alongside a command-line interface for managing chat templates and inference parameters. The ecosystem further supports structured data generation through grammar-based output constraints and provides diagnostic utilities for visualizing computational graphs. Comprehensive documentation is available, including a reference matrix that details the compatibility of computational operations across supported hardware backends.
ggml - ventoy/Ventoy
ventoy/Ventoy
74,578Ventoy is a cross-platform boot manager that enables users to launch multiple operating system installers and live environments from a single portable storage device. By intercepting the BIOS or UEFI startup sequence, it provides a unified menu that allows for the direct execution of disk image files without requiring file extraction or manual reformatting of the drive. The tool distinguishes itself through a modular, plugin-driven architecture that maps raw image files directly into system memory as block devices. Users can navigate local directories to select bootable files and utilize a web-based interface to generate configuration files, which manage custom scripts and environment variables during the boot process. This approach allows for the injection of drivers and parameters to support automated system provisioning and specialized maintenance tasks. The software supports a wide range of image formats, including ISO, WIM, IMG, VHD, and EFI files. It functions by traversing filesystem structures at runtime to locate and index these images, regardless of their physical placement on the storage media.
arm64auto-installbootable-usb - torvalds/linux
torvalds/linux
217,986The Linux kernel is a monolithic operating system kernel that serves as the primary interface between computer hardware and software applications. It provides the foundational infrastructure for managing system resources, including memory allocation, process scheduling, and synchronization primitives. The project includes comprehensive support for diverse storage architectures through its filesystem suite and manages complex networking, virtualization, and power management subsystems. Beyond core system management, the kernel offers extensive frameworks for hardware interaction, covering input devices, audio, sensors, and various bus communication protocols. It incorporates diagnostic tools for system observability, security mechanisms for integrity protection, and a kernel-level virtual machine for sandboxed execution. The project maintains stability through defined interface guarantees and supports modular development, including integrated support for memory-safe programming.
- django/django
django/django
86,891Django is a full-stack web framework designed for rapid backend development. It provides an integrated environment for building data-driven applications by combining an object-relational mapping layer for database management with a modular request-response pipeline for handling HTTP traffic. The framework emphasizes security and maintainability, offering a suite of tools to protect against common web vulnerabilities while decoupling site structure from implementation through a centralized URL routing system. A defining characteristic of the framework is its ability to generate production-ready administrative dashboards automatically. By inspecting model definitions and field metadata, it creates secure interfaces for managing application data without requiring custom frontend development. This is complemented by a declarative template engine that separates presentation logic from backend code, and a robust form validation system that handles data sanitization and type conversion through class-based schemas. The framework includes a wide range of built-in capabilities to support complex web development, including internationalization and localization tools, performance optimization utilities like caching, and a signal-based observer pattern for decoupling application components. It also provides comprehensive support for testing, static file management, and specialized database features. Extensive documentation is available to guide users through the framework's various components, including its middleware hooks, security policies, and administrative tools.
appsdjangoframework - ripienaar/free-for-dev
ripienaar/free-for-dev
118,073This project is a community-maintained directory of technical resources, tools, and services that offer free tiers for developers. It serves as a centralized reference point for discovering infrastructure, software, and educational materials, helping individuals and teams minimize operational costs while building and scaling applications. The directory distinguishes itself through a collaborative, community-driven curation model that aggregates metadata about third-party services. By utilizing a hierarchical taxonomy and storing all content in version-controlled, plain-text files, the project ensures that resource discovery remains decoupled from the underlying service infrastructure, facilitating transparent and frequent updates from the community. The collection covers a broad spectrum of the software development lifecycle, including cloud infrastructure, development toolchains, security, and frontend design utilities. It provides access to managed services for identity management, continuous integration, monitoring, and data processing, enabling rapid prototyping and the integration of external APIs without the need for extensive custom backend development. The entire directory is maintained as a static, open-source repository, allowing users to browse and contribute to the index through standard version control workflows.
awesome-listfree-for-developers - avelino/awesome-go
avelino/awesome-go
165,543This project serves as a comprehensive language ecosystem index, functioning as a centralized, community-curated directory for the Go programming language. It organizes a vast landscape of software components, libraries, and development tools into a structured, navigable hierarchy, enabling developers to efficiently discover resources tailored to specific functional domains. The repository distinguishes itself through a decentralized contribution model, where community-driven updates ensure the index remains current with the rapidly evolving software landscape. Beyond simple resource listing, it acts as a technical knowledge repository, aggregating professional literature, style guides, and best practices to support developer onboarding and professional growth across the entire software development lifecycle. The directory covers a broad capability surface, including essential utilities for distributed systems engineering, application security, data processing, and development productivity. It provides access to specialized tools for database management, web framework integration, testing, and build automation, alongside educational materials that help developers master language-specific architectural patterns. The project is maintained as a static resource aggregation, providing a holistic view of external links and documentation to orient developers within the Go ecosystem.
awesomeawesome-listgo - openinterpreter/open-interpreter
openinterpreter/open-interpreter
62,257Open Interpreter is an autonomous agent runtime that translates natural language instructions into executable code to interact with local software and operating systems. It functions as an orchestration framework that connects language models to a secure execution environment, enabling the development of agents capable of managing system resources and performing complex tasks. To ensure safety, the system mandates explicit user verification before executing any generated code and provides robust isolation through containerized sandboxing. The project distinguishes itself through its deep integration with local environments and its focus on secure, human-in-the-loop automation. It supports a wide range of hosted and local language models, allowing users to balance privacy and performance requirements. Beyond simple script execution, it features vision-enabled automation that analyzes screen content to simulate mouse and keyboard interactions, effectively allowing the agent to navigate graphical user interfaces as a human would. The system provides a comprehensive suite of computer automation primitives, including tools for managing calendar events, email communications, and clipboard data. It is designed for extensibility, offering support for custom language runtimes and remote sandbox configurations to handle specialized execution needs. Users can manage the interpreter's behavior through detailed configuration settings, including options for stateful conversation persistence and telemetry controls. The software is distributed as a Python-based package and can be installed and configured to run within isolated container environments to maintain host system security.
chatgptgpt-4interpreter - Textualize/rich
Textualize/rich
55,540Rich is a comprehensive library for building sophisticated command-line interfaces and terminal applications. It provides a robust console formatting engine and a layout framework that enables developers to render rich text, syntax-highlighted code, and complex data structures directly in the terminal. By utilizing a recursive constraint-based layout engine, the library allows for the creation of hierarchical grids, panels, and trees that maintain their structure even as terminal dimensions change. What distinguishes the library is its ability to manage persistent, real-time terminal interfaces through live display management and buffered stream handling. It offers granular control over output through a protocol-based rendering system, allowing developers to define custom representations for objects and manage complex visual arrangements. The library also includes a specialized diagnostic suite that automatically captures and transforms raw stack traces into human-readable, syntax-highlighted error reports, complete with local variable inspection. Beyond its core rendering capabilities, the library provides a suite of tools for data visualization and user interaction. This includes support for nested progress tracking, animated status indicators, and interactive input prompts. Developers can apply consistent visual branding across their applications using a centralized markup-based styling system, which supports reusable themes, color palettes, and text attributes for precise alignment and formatting. The library automatically detects the host terminal environment to ensure compatibility and visual consistency across different systems.
ansi-colorsemojimarkdown - lobehub/lobehub
lobehub/lobehub
72,403LobeHub is a comprehensive multi-agent orchestration platform designed for building, configuring, and deploying specialized AI agents. It provides a unified chat-based gateway that allows users to manage autonomous agent teams across web, desktop, and mobile environments. By utilizing a framework that supports persistent memory and granular tool integration, the platform enables the execution of complex, multi-step workflows and domain-specific tasks. The platform distinguishes itself through an interactive artifact renderer that injects dynamic, visual UI elements directly into the chat stream, transforming conversational outputs into functional content. It features an extensible ecosystem where users can discover and share community-driven agents and skills. Furthermore, the system supports collaborative workspaces where multiple agents can be organized into teams to scale intelligence and refine content through parallel task execution. Beyond its core orchestration capabilities, the project provides a robust suite of tools for self-hosting and infrastructure management. It supports containerized deployment through standardized configurations, allowing for secure, private instances that maintain data sovereignty. The platform integrates with external services through a common interface for data access and tool interaction, ensuring that agents remain adaptable and capable of handling diverse, multimodal requirements. The project is designed for self-hosted environments and includes comprehensive documentation for containerized setup, environment configuration, and security management.
agentagent-collaborationagent-harness - pathwaycom/llm-app
pathwaycom/llm-app
56,311This project is a data processing engine and AI application platform designed for building production-grade machine learning workflows. It provides a unified programming model that handles both historical batch data and live stream ingestion, enabling the development of real-time ETL pipelines and scalable data transformation workflows. The framework distinguishes itself through differential dataflow execution, which propagates only changes through a pipeline rather than recomputing entire datasets. It supports distributed state management across worker nodes and utilizes incremental stream processing to trigger computations only when source data updates. These capabilities are paired with a specialized vector search framework that maintains low-latency access to evolving knowledge bases for retrieval-augmented generation. The platform facilitates enterprise AI integration by connecting large language models to private data sources. It includes pre-built application templates to assist in the deployment of high-accuracy retrieval systems and scalable data pipelines.
chatbothugging-facellm - ocornut/imgui
ocornut/imgui
71,441This project is an immediate-mode graphical user interface library designed for rapid development of tools and debugging interfaces. By generating UI geometry every frame through procedural code, it eliminates the need for persistent state synchronization between application data and the interface. It is primarily intended for integration into existing rendering pipelines, where it produces raw vertex buffers and draw commands that are agnostic to the underlying graphics API. The library distinguishes itself through a highly decoupled architecture that supports complex, dockable, and multi-viewport layouts. It manages window positions, tab dragging, and node splitting, allowing developers to detach interface elements into independent operating system windows. To ensure consistent interaction across diverse environments, it maps native input events into a unified format and provides robust identifier-based scoping to track element states across frames. The framework offers a broad capability surface for building sophisticated engine tooling and diagnostic utilities. It includes support for advanced visual components such as node editors, 2D and 3D plotters, and specialized inspectors, alongside infrastructure for DPI scaling and custom shape rendering. The system is designed for high portability, featuring compile-time configuration options that allow developers to adapt core data structures and mathematical types to specific engine requirements. The repository provides extensive examples for connecting the library to major graphics backends and frameworks, alongside tools for generating language-specific bindings.
apicplusplusframework - openai/openai-cookbook
openai/openai-cookbook
71,532This project is a technical learning resource and developer knowledge base focused on the integration of large language models into software applications. It provides a structured collection of guides and code examples designed to teach developers how to implement intelligent features using proven patterns and best practices. The repository distinguishes itself through a library of functional demonstrations that cover complex topics such as retrieval-augmented generation, function calling, and prompt engineering workflows. These materials are organized into a modular structure, allowing for the rapid development and testing of prototypes and proof-of-concept applications before moving toward production-ready software. The content is delivered as a version-controlled knowledge base, utilizing markdown-based documentation and executable code blocks. These resources are designed to be copied directly into external development environments or cloud-based notebooks for hands-on experimentation. The entire collection is compiled into a static site to ensure consistent accessibility and navigation.
chatgptgpt-4openai