awesome-repositories.com
Blog
awesome-repositories.com

Descubre los mejores repositorios open-source con nuestra búsqueda potenciada por IA.

ExplorarBúsquedas curadasAlternativas open-sourceSoftware autohospedableBlogMapa del sitio
ProyectoAcerca deCómo clasificamosPrensaServidor MCP
Aviso legalPrivacidadTérminos
© 2026 Bringes Technology SRL·VAT RO45896025·hello@awesome-repositories.com
·

7 repositorios

Awesome GitHub RepositoriesBinary Object Reconstruction

Reinstantiating high-level data structures from raw binary buffers or bytecode streams.

Distinct from Object Reconstruction: Candidates refer to 3D AI reconstruction or media streaming, not software object reconstruction from binary files.

Explore 7 awesome GitHub repositories matching operating systems & systems programming · Binary Object Reconstruction. Refine with filters or upvote what's useful.

Awesome Binary Object Reconstruction GitHub Repositories

Encuentra los mejores repositorios con IA.Buscaremos los repositorios que mejor coincidan usando IA.
  • goplus/xgoAvatar de goplus

    goplus/xgo

    9,436Ver en GitHub↗

    Xgo is a programming language that combines familiar constructs from languages like C/C++, Go, Python, and JavaScript with a natural language-style syntax that reads closer to plain English. It executes programs compatible with the Go language, allowing reuse of existing Go libraries and tooling, and supports mixing Go and XGo source files within a single package for gradual adoption of its simplified syntax. The language distinguishes itself through direct foreign function interface capabilities, enabling calls to C/C++ and Python libraries using specialized string literal syntax without man

    Provides built-in functions to retrieve the real and imaginary components of complex numbers.

    Goai-nativedata-sciencegolang
    Ver en GitHub↗9,436
  • proxymanapp/proxymanAvatar de ProxymanApp

    ProxymanApp/Proxyman

    6,858Ver en GitHub↗

    Proxyman is a cross-platform HTTP debugging proxy that captures, inspects, and modifies HTTP, HTTPS, and WebSocket traffic. It functions as a man-in-the-middle proxy, decrypting SSL/TLS traffic to allow real-time inspection and modification of encrypted requests and responses. The tool is designed for debugging web and mobile applications, with capabilities for API mocking and simulation, scriptable traffic modification, and team collaboration on network logs. What distinguishes Proxyman is its deep integration with mobile and cross-platform development workflows. It provides automated certif

    Decodes binary WebSocket frames as Protobuf messages with separate client/server rules.

    debugging-tooliosmacos
    Ver en GitHub↗6,858
  • samchon/typiaAvatar de samchon

    samchon/typia

    5,837Ver en GitHub↗

    Typia is a compile-time code generator that transforms TypeScript type annotations into runtime validation, serialization, and schema functions without requiring decorators or separate schema files. It generates optimized validation and serialization code during TypeScript compilation, producing dedicated functions for each type that eliminate runtime schema objects for faster execution. The project extends this core capability into several integrated areas. It generates fully typed client SDKs from NestJS controller source code, keeping server and client types synchronized automatically. It

    Reads Protocol Buffer binary payloads and converts them into strongly typed TypeScript objects.

    Go
    Ver en GitHub↗5,837
  • rkyv/rkyvAvatar de rkyv

    rkyv/rkyv

    4,267Ver en GitHub↗

    rkyv es un framework de deserialización de copia cero para Rust que proporciona un formato de serialización binaria para archivos de datos mapeables en memoria. Permite que estructuras de datos complejas se mapeen a bytes y se accedan directamente desde un búfer sin asignar nueva memoria o copiar datos. El proyecto permite la serialización de tipos polimórficos y objetos de rasgo (trait objects), manteniendo su comportamiento dinámico y estructura dentro de la forma binaria. Utiliza direccionamiento de puntero relativo y empaquetado de estructura alineado por bytes para garantizar que los datos sigan siendo válidos independientemente de dónde se carguen en la memoria. El framework cubre la persistencia de datos de alto rendimiento y la gestión de estado de baja latencia a través del mapeo directo de memoria. Proporciona mecanismos tanto para el acceso a datos de copia cero como para la reconstrucción completa del tipo de datos cuando lo requiere la aplicación.

    Reinstantiates high-level structured types from raw binary buffers when full object reconstruction is required.

    Rustrustserializationzero-copy
    Ver en GitHub↗4,267
  • zrax/pycdcAvatar de zrax

    zrax/pycdc

    4,304Ver en GitHub↗

    pycdc is a reverse engineering toolset that decompiles and disassembles compiled Python bytecode files back into readable source code. It parses .pyc file headers, reconstructs abstract syntax trees from bytecode instructions, and handles version-specific opcodes across Python versions 1.0 through 3.13 with endian-aware binary parsing. The tool recovers numeric constants, string literals, and marshalled Python objects from compiled bytecode, supporting both file-based and in-memory bytecode loading. It provides a human-readable disassembly listing of bytecode instructions alongside full sourc

    Reconstructs complex number literal values from compiled bytecode, handling both string-stored and binary-encoded components.

    C++cxxdecompilerdisassembler
    Ver en GitHub↗4,304
  • ironcalc/ironcalcAvatar de ironcalc

    ironcalc/IronCalc

    3,750Ver en GitHub↗

    IronCalc is an XLSX spreadsheet engine and formula evaluator designed to compute numerical expressions and manage workbook structures. It utilizes a logic engine compatible with industry standards to evaluate formulas and manage cell dependencies. The project provides a comprehensive suite of specialized toolkits, including a financial calculation library for bond pricing and net present value, and an engineering math toolkit for complex number arithmetic and Bessel functions. It also features a web-based spreadsheet interface for creating and formatting workbooks. The engine covers a broad

    The spreadsheet engine returns the real component of a complex number specified as a string or numeric value.

    Rustreactrustself-hosted
    Ver en GitHub↗3,750
  • xtensor-stack/xtensorAvatar de xtensor-stack

    xtensor-stack/xtensor

    3,748Ver en GitHub↗

    xtensor is a C++ multidimensional array library for numerical computing that provides N-dimensional containers with an interface mirroring the NumPy API. It utilizes a lazy evaluation expression engine to defer numerical computations until assignment, which minimizes memory allocations and intermediate copies. The library features a foreign memory array adaptor that allows it to wrap external buffers, such as NumPy arrays, to perform numerical operations in-place without duplicating data. It further optimizes performance through lazy broadcasting and a system that manages the lifetime of temp

    Creates views of real or imaginary parts of complex tensors for independent manipulation.

    C++c-plus-plus-14multidimensional-arraysnumpy
    Ver en GitHub↗3,748
  1. Home
  2. Operating Systems & Systems Programming
  3. Binary Object Reconstruction

Explorar subetiquetas

  • Complex Number Constant Reconstructions1 sub-etiquetaReconstructs complex number literal values from compiled bytecode, handling both string-stored and binary-encoded components. **Distinct from Binary Object Reconstruction:** Distinct from Binary Object Reconstruction: focuses specifically on complex number constants rather than general data structure recovery from binaries.
  • Protobuf Decoders3 sub-etiquetasReads Protocol Buffer binary payloads and converts them into strongly typed TypeScript objects using compile-time generated binary readers. **Distinct from Binary Object Reconstruction:** Distinct from Binary Object Reconstruction: specifically decodes Protobuf-encoded data into typed objects, not general binary reconstruction.