Add extra stuff to a “standard” encoding? Sure, why not

This page summarizes the projects mentioned and recommended in the original post on news.ycombinator.com

InfluxDB – Built for High-Performance Time Series Workloads
InfluxDB 3 OSS is now GA. Transform, enrich, and act on time series data directly in the database. Automate critical tasks and eliminate the need to move data externally. Download now.
www.influxdata.com
featured
SaaSHub - Software Alternatives and Reviews
SaaSHub helps you find the best software and product alternatives
www.saashub.com
featured
  1. protobuf

    Protocol Buffers for JavaScript & TypeScript.

    Seems like protoduf.js has the exact same methods as Google’s implementations with the same names (encode/decode to not prepend with length, encodeDelimited/decodeDelimited for prepending length). It is hard for me to say they’re adding to the standard when they’re just replicating Google’s libraries.

    https://github.com/protobufjs/protobuf.js#toolset

  2. InfluxDB

    InfluxDB – Built for High-Performance Time Series Workloads. InfluxDB 3 OSS is now GA. Transform, enrich, and act on time series data directly in the database. Automate critical tasks and eliminate the need to move data externally. Download now.

    InfluxDB logo
  3. Protobuf

    Protocol Buffers - Google's data interchange format

    I actually went through all projects listed in [1] because I remember this very quirk. It turns out that there are many such libraries that have two variants of encode/decode functions, where the second variant prepends a varint length. In my brief inspection there do exist a few libraries with only the second variant (e.g. Rust quick-protobuf), which is legitimately problematic [2].

    But if the project in question was indeed protobuf.js (see loeg's comments), it clearly distinguishes encode/decode vs. encodeDelimited/decodeDelimited. So I believe the project should not be blamed, and the better question would be why so many people chose to add this exact helper. Well, because Google itself also had the same helper [3]! So at this point protobuf should just standardize this simple framing format (with an explicitly different name though), instead of claiming that protobuf has no obligation to define one.

    [1] https://github.com/protocolbuffers/protobuf/blob/main/docs/t...

    [2] https://github.com/tafia/quick-protobuf/issues/130

    [3] https://protobuf.dev/reference/java/api-docs/com/google/prot...

    [4] https://github.com/protocolbuffers/protobuf/blob/main/src/go...

  4. quick-protobuf

    A rust implementation of protobuf parser

    I actually went through all projects listed in [1] because I remember this very quirk. It turns out that there are many such libraries that have two variants of encode/decode functions, where the second variant prepends a varint length. In my brief inspection there do exist a few libraries with only the second variant (e.g. Rust quick-protobuf), which is legitimately problematic [2].

    But if the project in question was indeed protobuf.js (see loeg's comments), it clearly distinguishes encode/decode vs. encodeDelimited/decodeDelimited. So I believe the project should not be blamed, and the better question would be why so many people chose to add this exact helper. Well, because Google itself also had the same helper [3]! So at this point protobuf should just standardize this simple framing format (with an explicitly different name though), instead of claiming that protobuf has no obligation to define one.

    [1] https://github.com/protocolbuffers/protobuf/blob/main/docs/t...

    [2] https://github.com/tafia/quick-protobuf/issues/130

    [3] https://protobuf.dev/reference/java/api-docs/com/google/prot...

    [4] https://github.com/protocolbuffers/protobuf/blob/main/src/go...

  5. protobuf-conformance

    A repository running the Protobuf conformance tests against various libraries

    It looks like Protobuf actually has a test suite to ensure compliance with the protocol:

    https://github.com/bufbuild/protobuf-conformance

    Seems like a good idea for protocols in general to have an official test suite, as a way to address this problem

  6. riegeli

    Riegeli/records is a file format for storing a sequence of string records, typically serialized protocol buffers.

    > didn’t find any standard for separating protobuf messages

    The fact that protobufs are not self-delimiting is an endless source of frustration, but I know of 2 standards:

    - SerializeDelimited* is part of the protobuf library: https://github.com/protocolbuffers/protobuf/blob/main/src/go...

    - Riegeli is "a file format for storing a sequence of string records, typically serialized protocol buffers. It supports dense compression, fast decoding, seeking, detection and optional skipping of data corruption, filtering of proto message fields for even faster decoding, and parallel encoding": https://github.com/google/riegeli

  7. msgpack

    MessagePack is an extremely efficient object serialization library. It's like JSON, but very fast and small.

  8. ntfy

    Send push notifications to your phone or desktop using PUT/POST

    If it was for fun and to learn how, that's fair. But are you aware of https://ntfy.sh?

  9. SaaSHub

    SaaSHub - Software Alternatives and Reviews. SaaSHub helps you find the best software and product alternatives

    SaaSHub logo
NOTE: The number of mentions on this list indicates mentions on common posts plus user suggested alternatives. Hence, a higher number means a more popular project.

Suggest a related project

Related posts

  • Eval("quire".replace(/^/,"re"))(moduleName)

    1 project | news.ycombinator.com | 14 Jan 2024
  • How we reverse-engineered Google Maps pagination

    2 projects | dev.to | 5 Dec 2023
  • Question about compressing JSON in multiplayer position updates

    1 project | /r/node | 5 Apr 2023
  • Looking for ideas on how to implement serialization and deserialization between C++ and Javascript

    1 project | /r/cpp_questions | 8 Feb 2023
  • Protobuf-ES: The Protocol Buffers TypeScript/JavaScript runtime we all deserve

    14 projects | news.ycombinator.com | 31 Oct 2022

Did you know that C++ is
the 7th most popular programming language
based on number of references?