Live data from Hacker News

Viewing profile — tjonker

tjonker

HN member
Joined
Fri, Apr 22, 2016, 2:53 AM UTC
HN karma
9
Public activity
8 items

About tjonker

No profile information was provided.

Recent public activity

  1. comment
    Comment #18878778

    This is not an accurate representation of Amazon's current policies.

  2. comment
    Comment #11557665

    Sorry, this isn't true. The Java and C++ implementations were developed simultaneously, by different authors. The Java side has always been more full-featured, and has always had a…

  3. comment
    Comment #11557629

    It's more than just precision, it's making sure that the same value comes out that went in, and that things haven't been subtly altered via unintended conversions between decimal a…

  4. comment
    Comment #11547186

    Ion's equivalently-expressive text and binary formats is absolutely central to its design, and IMO one of its most compelling features. You don't have to choose between "human read…

  5. comment
    Comment #11547156

    I generally agree, except the "type" of JSON numbers isn't well-defined with respect to precision and binary-vs-decimal floating point representation. An application that cares dee…

  6. comment
    Comment #11547101

    A big problem with Avro, BSON, and many other "binary JSON" formats is that they're not isomorphic with JSON, they have a bunch of additional stuff added on. There's Avro documents…

  7. comment
    Comment #11547026

    I'm having a bit of trouble parsing this, but Ion decimal values are not "infinite precision". Every decimal has a very specific, finite precision. It's a standard "coefficient and…

  8. comment
    Comment #11547002

    The "!=" means "not the same value according to the Ion data model". The Ion value 0.0 has one digit of precision (after the decimal point), while the value 0.00 has two. In the Io…