awesome-repositories.com
Blog
MCP
awesome-repositories.com

Descoperă cele mai bune repository-uri open source cu căutare AI.

ExploreazăCăutări recomandateAlternative open-sourceSoftware self-hostedBlogHartă site
ProiectDespreCum realizăm clasamentulPresăServer MCP
LegalConfidențialitateTermeni
© 2026 Bringes Technology SRL·VAT RO45896025·hello@awesome-repositories.com
·
Back to antirez/sds

Open-source alternatives to Antirez Sds

30 open-source projects similar to antirez/sds, ranked by how many features they have in common. Compare stars, activity and what each one does to find the best Antirez Sds alternative.

  • angrave/systemprogrammingAvatar angrave

    angrave/SystemProgramming

    5,734Vezi pe GitHub↗

    This is an open-source, crowd-sourced wiki textbook that teaches Linux system programming in C. It covers the core operating system concepts of process management through the fork-exec-wait model, dynamic memory allocation using implicit free list heap allocators, inode-based file systems, inter-process communication via pipes and shared memory, POSIX threads with synchronization primitives, signal-based asynchronous notification, virtual memory with page table translation, and runtime diagnostics using Valgrind and GDB. The textbook distinguishes itself by providing practical, implementation

    Vezi pe GitHub↗5,734
  • attractivechaos/klibAvatar attractivechaos

    attractivechaos/klib

    4,679Vezi pe GitHub↗

    klib is a comprehensive C standard library extension and data structure toolkit. It provides a set of fundamental tools for memory management, data organization, and general-purpose utility functions for standalone C applications. The project features specialized capabilities for bioinformatics sequence analysis, including the parsing of FASTA, FASTQ, and Newick formats and the implementation of Smith-Waterman sequence alignment and Hidden Markov Models. It also includes a mathematical computation library for numerical routines and expression evaluation, as well as a lightweight HTTP and FTP

    C
    Vezi pe GitHub↗4,679
  • redis/hiredisAvatar redis

    redis/hiredis

    6,655Vezi pe GitHub↗

    Hiredis is a minimalistic C client library designed to send commands and receive responses from Redis servers using a binary-safe protocol. It functions as a core toolkit providing a Redis protocol parser, a secure connector, and both synchronous and asynchronous driver interfaces. The library distinguishes itself through a decoupled protocol parser that converts raw byte streams into structured data objects independently of the network transport layer. It supports high-performance pipelining to batch multiple commands into a single network round-trip and provides a secure networking layer fo

    C
    Vezi pe GitHub↗6,655

Căutare AI

Explorează mai multe repository-uri excelente

Descrie ce ai nevoie în limbaj simplu — AI-ul sortează mii de proiecte open source selectate în funcție de relevanță.

Find more with AI search
  • keybuk/libnihAvatar keybuk

    keybuk/libnih

    92Vezi pe GitHub↗

    NIH Utility Library

    C
    Vezi pe GitHub↗92
  • nothings/stbAvatar nothings

    nothings/stb

    33,970Vezi pe GitHub↗

    This project is a collection of portable, header-only C functions designed for integration into software projects without complex build dependencies or external linking requirements. It provides a suite of low-level utilities for graphics, audio, and data management, focusing on direct memory manipulation and zero-dependency portability. By utilizing a single-header distribution model, the library simplifies dependency management while allowing developers to maintain full control over memory allocation and binary size through compile-time configuration. The library distinguishes itself by off

    C
    Vezi pe GitHub↗33,970
  • kaisery/trpl-zh-cnAvatar KaiserY

    KaiserY/trpl-zh-cn

    5,501Vezi pe GitHub↗

    This project is a localized educational resource for learning the Rust programming language, providing a comprehensive guide and technical specifications translated into Simplified Chinese. It serves as an instructional tool for studying language idioms, memory management, and type systems. The repository focuses on software documentation localization, converting official guides into Simplified Chinese to increase accessibility for non-English speakers. It utilizes a markdown-based system to organize content and supports multi-format export to static HTML, PDF, and EPUB formats for both web a

    Markdownpdfrust-booktypst
    Vezi pe GitHub↗5,501
  • waruqi/tboxAvatar waruqi

    waruqi/tbox

    5,111Vezi pe GitHub↗

    tbox is a multi-platform C standard library and toolkit designed for portable software development. It provides a core foundation for low-level system programming through a collection of system primitives, data structures, and memory management tools. The project includes a coroutine framework for cooperative multitasking and asynchronous logic, a data structure library featuring generic containers with a consistent iterator interface, and a memory management toolkit for pool allocation and debugging of heap overflows and leaks. It also provides a network and serialization toolset for handlin

    C
    Vezi pe GitHub↗5,111
  • roc-lang/rocAvatar roc-lang

    roc-lang/roc

    5,723Vezi pe GitHub↗

    Roc is a statically typed, functional programming language built around immutable-by-default semantics, exhaustive pattern matching on tag unions, and a type system that combines optional explicit annotations with full compile-time type inference. Its core identity centers on correctness and expressiveness, using tagged unions for error handling with a question-mark operator for early error propagation, and a trailing-bang naming convention that makes side-effect boundaries syntactically visible at every call site. The language distinguishes itself through a platform-based I/O abstraction tha

    Zig
    Vezi pe GitHub↗5,723
  • joyent/http-parserAvatar joyent

    joyent/http-parser

    6,445Vezi pe GitHub↗

    http-parser is a C library designed for zero-copy HTTP message parsing, URL deconstruction, and the management of protocol upgrades and chunked encoding. It provides utilities to extract headers, methods, and status codes from HTTP requests and responses. The project includes a zero-copy URL parser for deconstructing strings into individual components and a mechanism for detecting protocol switch requests to identify the exact byte offset where non-HTTP data begins. It also features a decoder for handling chunked transfer-encoded data streams.

    C
    Vezi pe GitHub↗6,445
  • id-software/quake-2Avatar id-Software

    id-Software/Quake-2

    3,197Vezi pe GitHub↗

    Quake-2 is a game engine designed for the development of first-person shooters and the rendering of three-dimensional environments. It provides the core framework for processing real-time physics and player input within interactive 3D spaces. The engine supports software extensibility, allowing for the direct modification of source code to change gameplay mechanics and engine behaviors. This makes it a resource for retro game engineering and the study of early 3D development techniques. Its technical capabilities include vertex-based software rendering, BSP-tree spatial partitioning, and PVS

    C
    Vezi pe GitHub↗3,197
  • google/sanitizersAvatar google

    google/sanitizers

    12,402Vezi pe GitHub↗

    This project is a suite of runtime diagnostic tools designed to detect memory leaks, concurrency races, and language-specification violations during software execution. It provides a collection of dynamic analysis tools that identify addressability issues, uninitialized memory usage, and memory safety bugs in applications. The toolset includes a thread safety analyzer to identify data races and deadlocks in concurrent code, as well as an undefined behavior sanitizer to detect operations that violate language specifications. The system covers broad capabilities in memory safety monitoring and

    C
    Vezi pe GitHub↗12,402
  • huandu/xstringsAvatar huandu

    huandu/xstrings

    1,415Vezi pe GitHub↗

    Implements string functions widely used in other languages but absent in Go.

    Go
    Vezi pe GitHub↗1,415
  • google/highwayhashAvatar google

    google/highwayhash

    1,603Vezi pe GitHub↗

    Fast strong hash functions: SipHash/HighwayHash

    C++
    Vezi pe GitHub↗1,603
  • cloudwu/pbcAvatar cloudwu

    cloudwu/pbc

    1,625Vezi pe GitHub↗

    A protocol buffers library for C

    C
    Vezi pe GitHub↗1,625
  • imdario/mergoI

    imdario/mergo

    0Vezi pe GitHub↗
    Vezi pe GitHub↗0
  • ithewei/libhvAvatar ithewei

    ithewei/libhv

    7,521Vezi pe GitHub↗

    libhv is a high-performance C/C++ network library and event-driven I/O framework used to build TCP, UDP, SSL, HTTP, WebSocket, and MQTT clients and servers. It provides a non-blocking event loop for managing network sockets, timers, and system signals across multiple threads. The project is distinguished by its integrated support for specialized network roles, including a full HTTP web server with RESTful routing and middleware, an MQTT messaging client for IoT communication, and the ability to implement SOCKS5 and HTTP proxies. It also features a reliable UDP implementation to ensure ordered

    Ccurlepollhttp-client
    Vezi pe GitHub↗7,521
  • b-k/apopheniaAvatar b-k

    b-k/apophenia

    207Vezi pe GitHub↗

    A C library for statistical and scientific computing

    C
    Vezi pe GitHub↗207
  • ashvardanian/stringzillaAvatar ashvardanian

    ashvardanian/StringZilla

    3,494Vezi pe GitHub↗

    Up to 100x faster strings for C, C++, CUDA, Python, Rust, Swift, JS, & Go, leveraging NEON, AVX2, AVX-512, SVE, GPGPU, & SWAR to accelerate search, hashing, sorting, edit distances, sketches, and memory ops 🦖

    Cdatasetedit-distancegpu
    Vezi pe GitHub↗3,494
  • astral-sh/uvAvatar astral-sh

    astral-sh/uv

    86,451Vezi pe GitHub↗

    uv is a high-performance Python package manager and project build tool designed to handle dependency resolution, virtual environment orchestration, and Python interpreter management. It functions as a comprehensive workspace orchestrator, enabling developers to manage complex, multi-package repositories and ensure reproducible builds across different platforms. The tool distinguishes itself through its use of a global, content-addressable cache and hard-link-based environment provisioning, which allow for near-instant environment creation and minimal disk usage. It employs a high-performance

    Rustpackagingpythonresolver
    Vezi pe GitHub↗86,451
  • filipw/dotnet-scriptAvatar filipw

    filipw/dotnet-script

    3,002Vezi pe GitHub↗

    Run C# scripts from the .NET CLI.

    C#
    Vezi pe GitHub↗3,002
  • flycheck/flycheckAvatar flycheck

    flycheck/flycheck

    2,521Vezi pe GitHub↗

    On the fly syntax checking for GNU Emacs

    Emacs Lispemacsflychecksyntax-checking
    Vezi pe GitHub↗2,521
  • awslabs/s2nAvatar awslabs

    awslabs/s2n

    4,736Vezi pe GitHub↗

    s2n is a C-based security library and TLS protocol implementation that serves as a secure network transport layer. It provides a modular cryptographic backend interface to encrypt data streams, manage handshakes, and handle mutual authentication between peers. The project focuses on post-quantum cryptography, integrating quantum-resistant key exchange and digital signatures to protect connections against future computing threats. It distinguishes itself through security hardening measures, such as memory-locked secret storage to prevent keys from being swapped to disk and timing-attack mitiga

    C
    Vezi pe GitHub↗4,736
  • abiggerhammer/hammerAvatar abiggerhammer

    abiggerhammer/hammer

    291Vezi pe GitHub↗

    Parser combinators for binary formats, in C. Yes, in C. What? Don't look at me like that.

    C
    Vezi pe GitHub↗291
  • docopt/docopt.cAvatar docopt

    docopt/docopt.c

    321Vezi pe GitHub↗

    C-code generator for docopt language.

    Python
    Vezi pe GitHub↗321
  • cacalabs/libcacaAvatar cacalabs

    cacalabs/libcaca

    675Vezi pe GitHub↗

    💩 Colour ASCII Art Library

    C
    Vezi pe GitHub↗675
  • camgunz/cmpAvatar camgunz

    camgunz/cmp

    367Vezi pe GitHub↗

    An implementation of the MessagePack serialization format in C / msgpack.orgC

    C
    Vezi pe GitHub↗367
  • clibs/clibAvatar clibs

    clibs/clib

    5,133Vezi pe GitHub↗

    clib is a C language package manager and dependency manager used to install, update, and manage external C libraries and executable dependencies from remote repositories. It functions as a distribution tool for structuring source code and metadata to publish C libraries and a development toolkit for maintaining consistent build environments. The project provides a framework for C library distribution and dependency resolution, utilizing manifest files to track required library versions and ensure reproducible builds across different systems. It streamlines the C development workflow by managi

    Ccclibmanager
    Vezi pe GitHub↗5,133
  • cesanta/slreAvatar cesanta

    cesanta/slre

    558Vezi pe GitHub↗

    Super Light Regexp engine for C/C++

    C
    Vezi pe GitHub↗558
  • adamierymenko/huffandpuffA

    adamierymenko/huffandpuff

    0Vezi pe GitHub↗
    Vezi pe GitHub↗0
  • anrieff/libcpuidAvatar anrieff

    anrieff/libcpuid

    532Vezi pe GitHub↗

    a small C library for x86 CPU detection and feature extraction

    C
    Vezi pe GitHub↗532