awesome-repositories.com
ब्लॉग
awesome-repositories.com

AI-संचालित खोज के साथ बेहतरीन ओपन-सोर्स रिपॉजिटरी खोजें।

एक्सप्लोर करेंक्यूरेटेड खोजेंओपन-सोर्स विकल्पसेल्फ-होस्टेड सॉफ्टवेयरब्लॉगसाइटमैप
प्रोजेक्टहमारे बारे मेंहम रैंकिंग कैसे करते हैंप्रेसMCP सर्वर
कानूनीगोपनीयताशर्तें
© 2026 Bringes Technology SRL·VAT RO45896025·hello@awesome-repositories.com
·

6 रिपॉजिटरी

Awesome GitHub RepositoriesByte Stream Decoding

Processes convert raw byte sequences into characters based on a specified encoding.

Distinguishing note: Focuses on character set decoding of streams, not network protocol parsing or audio decoding.

Explore 6 awesome GitHub repositories matching software engineering & architecture · Byte Stream Decoding. Refine with filters or upvote what's useful.

Awesome Byte Stream Decoding GitHub Repositories

AI के साथ बेहतरीन रिपॉजिटरी खोजें।हम AI का उपयोग करके सबसे सटीक रिपॉजिटरी खोजेंगे।
  • whatwg/htmlwhatwg का अवतार

    whatwg/html

    9,163GitHub पर देखें↗

    This repository contains the HTML specification, which defines the core standards for web page structuring, content organization, and document rendering. It establishes the fundamental algorithms for state-machine-based tokenization, tree construction for the document object model, and origin-based security isolation. The specification provides a framework for defining custom elements with independent lifecycles and registries. It also details the requirements for cross-document communication, session history management, and the synchronization of interface properties with content attributes.

    Converts an input byte stream into characters based on a determined encoding while handling invalid sequences.

    HTMLcanvaseventsourcehtml
    GitHub पर देखें↗9,163
  • ericchiang/pupericchiang का अवतार

    ericchiang/pup

    8,427GitHub पर देखें↗

    Pup is a command line tool for extracting and filtering data from HTML documents using CSS selectors. It functions as a parser and selector engine that isolates specific elements based on tags, IDs, classes, and attributes. The project provides utilities for converting selected HTML nodes into plain text, attribute values, or structured JSON objects. It includes a markup formatter that corrects missing tags and applies consistent indentation to improve the readability of HTML documents. The tool handles the retrieval of text content and attributes through a CSS selector engine, supporting co

    Provides mechanisms to decode raw input bytes into strings using automatic or specified character sets.

    HTML
    GitHub पर देखें↗8,427
  • ijl/orjsonijl का अवतार

    ijl/orjson

    8,110GitHub पर देखें↗

    orjson is a high-performance Python library for serializing and deserializing JSON data. It functions as both a JSON parsing library and a serialization engine, converting data between native Python objects and UTF-8 encoded bytes. The project provides specialized support for converting complex Python data structures, including dataclasses, datetime objects, and NumPy arrays and scalars, into JSON format. It also allows for the insertion of pre-serialized JSON blobs into documents to maintain processing speed. The library includes capabilities for memory-efficient deserialization through key

    Processes UTF-8 encoded byte sequences directly to avoid expensive string conversions.

    Pythondataclassesdatetimedeserialization
    GitHub पर देखें↗8,110
  • msgpack/msgpackmsgpack का अवतार

    msgpack/msgpack

    7,472GitHub पर देखें↗

    MessagePack is a binary object serialization library and a cross-platform data exchange format. It serves as a binary alternative to JSON, converting structured data into a space-efficient binary representation for network transmission and storage. The system provides a standardized format for swapping complex data types across different programming languages and architectures. It allows for the definition of custom data type encoding by pairing application-specific information with specialized serialization markers. The library handles the encoding and decoding of diverse data types, includ

    Maps simple values like booleans and nulls to unique single-byte identifiers for immediate decoding.

    GitHub पर देखें↗7,472
  • materializeinc/materializeMaterializeInc का अवतार

    MaterializeInc/materialize

    6,314GitHub पर देखें↗

    Materialize is a streaming SQL database that continuously ingests live data from sources such as Kafka, Redpanda, PostgreSQL, and MySQL, and incrementally maintains materialized views. It provides a PostgreSQL-compatible query engine that accepts standard SQL over the PostgreSQL wire protocol, enabling any existing SQL client or BI tool to query real-time data. The system also includes a Model Context Protocol (MCP) server that exposes live materialized view data to AI agents, providing fresh context without polling. Materialize distinguishes itself through its ability to offer configurable c

    Parses newline-delimited text as UTF-8 strings or ingests raw bytes without any decoding for webhook payloads.

    Rust
    GitHub पर देखें↗6,314
  • ikarus23/mifareclassictoolikarus23 का अवतार

    ikarus23/MifareClassicTool

    5,743GitHub पर देखें↗

    MifareClassicTool is an Android application for reading, writing, cloning, and analyzing MIFARE Classic RFID tags using built-in NFC hardware or external USB readers. The tool provides sector-based authentication using key files and dictionary attacks, enabling selective data extraction from protected tag sectors. The application includes a hex editor for viewing and modifying raw tag dump data with sector and block highlighting, along with tools for decoding and encoding access condition bytes and value blocks. It supports cloning full dumps or UIDs to compatible magic tags, including manufa

    Provides bitwise decoding and encoding of MIFARE Classic sector access condition bytes.

    Javaandroidandroid-nfcmifare
    GitHub पर देखें↗5,743
  1. Home
  2. Software Engineering & Architecture
  3. Byte Stream Decoding

सब-टैग एक्सप्लोर करें

  • Constant Byte MappingMapping of simple constant values to unique single-byte identifiers for high-performance decoding. **Distinct from Byte Stream Decoding:** Focuses on mapping constants to single bytes for serialization efficiency, rather than character set decoding of byte streams.
  • MIFARE Access Condition DecodersTranslates MIFARE Classic sector access condition bytes into human-readable permission tables and back using bitwise parsing. **Distinct from Byte Stream Decoding:** Distinct from Byte Stream Decoding: focuses on MIFARE-specific access condition byte interpretation, not general character set decoding.
  • Webhook Body DecodersParses newline-delimited text as UTF-8 strings or ingests raw bytes without any decoding for webhook payloads. **Distinct from Byte Stream Decoding:** Distinct from Byte Stream Decoding: specifically handles webhook HTTP payloads with text or raw byte options, not general stream decoding.