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,163在 GitHub 上查看↗

    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,427在 GitHub 上查看↗

    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,110在 GitHub 上查看↗

    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,472在 GitHub 上查看↗

    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,314在 GitHub 上查看↗

    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,743在 GitHub 上查看↗

    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.