Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]


Groups > comp.lang.c > #168959

Re: Why is there not a single good JSON library for C?

From Keith Thompson <Keith.S.Thompson+u@gmail.com>
Newsgroups comp.lang.c
Subject Re: Why is there not a single good JSON library for C?
Date 2023-01-23 15:36 -0800
Organization None to speak of
Message-ID <87ilgwg6x5.fsf@nosuchdomain.example.com> (permalink)
References (4 earlier) <tqknsu$1mgl$1@gioia.aioe.org> <tqlmnt$3if0k$6@dont-email.me> <tqm520$3l01v$2@dont-email.me> <87h6whggpb.fsf@nosuchdomain.example.com> <tqn4eq$3q93v$3@dont-email.me>

Show all headers | View raw


Blue-Maned_Hawk <bluemanedhawk@gmail.com> writes:
> On 1/23/23 15:05, Keith Thompson wrote:
>> Apparently "octoctal" is an extremely obscure term for an encoding that
>> is almost universally called base64.  Did you seriously expect your
>> readers to know that, or were you just trying to appear clever at the
>> expense of actually communicating?
>
> Neither—i used it because it's very slightly more useful than the
> conventional term and because it's more fun.

I fail to see how it's more useful.  I find it much *less* useful,
partly because I had never heard of it -- and I doubt that anyone else
here had either.

When I did a Google search for "octoctal", the first two hits mentioned
"octal" but not "octoctal".  The third mentions it, but it strikes me as
a collection of deliberately silly base names.

I don't claim that you made up the word "octoctal", but that was a
reasonable conclusion.

The term "base64" is common and well understood -- and there's a
standard that specifies how the 6-bit values are mapped to ASCII
characters.  Calling it "octoctal" is not my idea of fun.  I suspect
nobody finds it fun other than you.  Is it worth it?

Calling it "octoctal" will merely annoy people.  If you really want to
do that, you can, but a lot of people will then configure their
newsreaders to filter out your posts.  I don't come here to be annoyed.
For that matter, I don't come here to talk about Usenet software, so if
we can get back to discussing C, a lot of us would appreciate it.

>> When you PGP-sign a Usenet message, it becomes necessary to post two
>> chunks of data in a single message, one for the body of the message, and
>> one for its signature.  The standard way to do that is MIME encoding,
>> which typically results in the parts being base64-encoded.
>
> I really don't understand why that's what Thunderbird does when
> cleartext signing is available.

I don't know.  I've offered a simple workaround (don't PGP-sign your
messages).

I think what you want is a way to PGP-sign your posts and have
Thunderbird encode the body of the message as plain text rather than in
base64.  (It pretty much has to use a MIME multipart message to include
both the message body and the PGP signature.)  I don't know -- or
frankly care -- whether Thunderbird can do that.  If you want to
investigate further, feel free, but this is not the place to discuss it.

And if you do find a way to do that, non-MIME newsreaders will still
show your articles with a bunch of annoying extra junk.

>> Some of us use newsreaders that recognize and correctly display
>> MIME-encoded messages.  For example, I use Gnus, which runs under Emacs,
>> and I hadn't even noticed that your messages were signed and encoded.
>> Others use newsreaders that don't support MIME and display the
>> base64-encoded text directly; for example, Kaz uses slrn, which behaves
>> this way.
>
> That sounds like a problem with those newsreaders.

Sure -- but it's a problem *for you* if you want to communicate with the
people who use those newsreaders.  Kaz has already filtered out your
posts.  Others are likely to follow his example.

Usenet is fundamentally a text-only medium.  MIME was invented to carry
non-textual information over Usenet and email.

>> It's unlikely that anyone will try to impersonate you.  I've been
>> participating here for decades, and I've never felt the need to worry
>> about it.
>
> I'd rather play it safe.

Then some people will ignore you.

>> I don't know whether the non-ASCII characters in your signature (the
>> text following "-- ", not your PGP signature) would be a problem.  They
>> might be the reason your message was base64-encoded, but that encoding
>> might not happen if you didn't post multipart messages.
>> 
>
> I don't know why Thunderbird uses octoctal for that instead of
> quoted-printable.  I have no idea how to change it.

It's called base64.  The best way to change it is to stop PGP-signing
your posts.

>> The way you post is making it unreasonably difficult for some people
>> here to read your messages.  You cannot expect those people to change
>> the way they read Usenet to cater to your messages; they'll just accept
>> that they can't read whatever you write.  Yes, a lot of Usenet software
>> is out of date.  That's not going to change.
>
> Why won't it change?

Because Usenet is old and not nearly as active as it once was, a lot of
people are happy using old newsreaders that work just find for the vast
majority of posts (presumably Kaz likes the user interface provided by
slrn), and there isn't enough interest for developers to spend time
upgrading old software to work with MIME.

Try this: Post *one* article, in reply to this one, without a PGP
signature.  Keep the same Usenet signature block if you like.  And
*please* trim most of the quoted text; there's no need to repeat
everything I've just written.

>> If you continue PGP-signing your posts here, many people will stop
>> paying attention to you.  Decide which is more important to you:
>> appearing to be clever, or communicating.
>
> ​I never had any desire to "appear clever" in the first place.

(Resisting a snarky comment.)

You're new here.  People with decades of Usenet experience are tell you
that your PGP signatures are causing problems.  You're not listening.

-- 
Keith Thompson (The_Other_Keith) Keith.S.Thompson+u@gmail.com
Working, but not speaking, for XCOM Labs
void Void(void) { Void(); } /* The recursive call of the void */

Back to comp.lang.c | Previous | NextPrevious in thread | Next in thread | Find similar | Unroll thread


Thread

Why is there not a single good JSON library for C? Blue-Maned_Hawk <bluemanedhawk@gmail.com> - 2023-01-22 14:28 -0500
  Re: Why is there not a single good JSON library for C? Bonita Montero <Bonita.Montero@gmail.com> - 2023-01-22 20:56 +0100
    Re: Why is there not a single good JSON library for C? Blue-Maned_Hawk <bluemanedhawk@gmail.com> - 2023-01-22 15:17 -0500
      Re: Why is there not a single good JSON library for C? Bonita Montero <Bonita.Montero@gmail.com> - 2023-01-23 05:25 +0100
        Re: Why is there not a single good JSON library for C? Blue-Maned_Hawk <bluemanedhawk@gmail.com> - 2023-01-23 09:06 -0500
          Re: Why is there not a single good JSON library for C? Bonita Montero <Bonita.Montero@gmail.com> - 2023-01-23 17:14 +0100
            Re: Why is there not a single good JSON library for C? fir <profesor.fir@gmail.com> - 2023-01-23 08:42 -0800
              Re: Why is there not a single good JSON library for C? Bonita Montero <Bonita.Montero@gmail.com> - 2023-01-23 21:27 +0100
                Re: Why is there not a single good JSON library for C? fir <profesor.fir@gmail.com> - 2023-01-23 13:03 -0800
                Re: Why is there not a single good JSON library for C? fir <profesor.fir@gmail.com> - 2023-01-23 13:24 -0800
                Re: Why is there not a single good JSON library for C? "Chris M. Thomasson" <chris.m.thomasson.1@gmail.com> - 2023-01-23 14:03 -0800
                Re: Why is there not a single good JSON library for C? Blue-Maned_Hawk <bluemanedhawk@gmail.com> - 2023-01-23 17:52 -0500
                Re: Why is there not a single good JSON library for C? Bonita Montero <Bonita.Montero@gmail.com> - 2023-01-24 13:59 +0100
          Re: Why is there not a single good JSON library for C? Kaz Kylheku <864-117-4973@kylheku.com> - 2023-01-23 17:57 +0000
            Re: Why is there not a single good JSON library for C? Keith Thompson <Keith.S.Thompson+u@gmail.com> - 2023-01-23 12:08 -0800
            Re: Why is there not a single good JSON library for C? Blue-Maned_Hawk <bluemanedhawk@gmail.com> - 2023-01-23 17:49 -0500
              Re: Why is there not a single good JSON library for C? Keith Thompson <Keith.S.Thompson+u@gmail.com> - 2023-01-23 14:59 -0800
                Re: Why is there not a single good JSON library for C? Blue-Maned_Hawk <bluemanedhawk@gmail.com> - 2023-01-23 18:20 -0500
                Re: Why is there not a single good JSON library for C? Keith Thompson <Keith.S.Thompson+u@gmail.com> - 2023-01-23 15:39 -0800
                Re: Why is there not a single good JSON library for C? Blue-Maned_Hawk <bluemanedhawk@gmail.com> - 2023-01-23 19:18 -0500
              Re: Why is there not a single good JSON library for C? James Kuyper <jameskuyper@alumni.caltech.edu> - 2023-01-23 20:10 -0500
      Re: Why is there not a single good JSON library for C? Joe Pfeiffer <pfeiffer@cs.nmsu.edu> - 2023-01-26 09:04 -0700
  Re: Why is there not a single good JSON library for C? Ben Bacarisse <ben.usenet@bsb.me.uk> - 2023-01-22 19:56 +0000
    Re: Why is there not a single good JSON library for C? Blue-Maned_Hawk <bluemanedhawk@gmail.com> - 2023-01-22 15:26 -0500
      Re: Why is there not a single good JSON library for C? Ben Bacarisse <ben.usenet@bsb.me.uk> - 2023-01-22 22:06 +0000
  Re: Why is there not a single good JSON library for C? fir <profesor.fir@gmail.com> - 2023-01-22 11:59 -0800
    Re: Why is there not a single good JSON library for C? Blue-Maned_Hawk <bluemanedhawk@gmail.com> - 2023-01-22 15:27 -0500
      Re: Why is there not a single good JSON library for C? fir <profesor.fir@gmail.com> - 2023-01-22 12:31 -0800
        Re: Why is there not a single good JSON library for C? fir <profesor.fir@gmail.com> - 2023-01-22 12:33 -0800
        Re: Why is there not a single good JSON library for C? Blue-Maned_Hawk <bluemanedhawk@gmail.com> - 2023-01-22 15:34 -0500
          Re: Why is there not a single good JSON library for C? fir <profesor.fir@gmail.com> - 2023-01-22 12:45 -0800
          Re: Why is there not a single good JSON library for C? Malcolm McLean <malcolm.arthur.mclean@gmail.com> - 2023-01-22 13:18 -0800
            Re: Why is there not a single good JSON library for C? fir <profesor.fir@gmail.com> - 2023-01-22 13:38 -0800
          Re: Why is there not a single good JSON library for C? "Chris M. Thomasson" <chris.m.thomasson.1@gmail.com> - 2023-01-22 13:30 -0800
            Re: Why is there not a single good JSON library for C? BGB <cr88192@gmail.com> - 2023-01-23 13:17 -0600
              Re: Why is there not a single good JSON library for C? scott@slp53.sl.home (Scott Lurndal) - 2023-01-23 20:31 +0000
                Re: Why is there not a single good JSON library for C? Bart <bc@freeuk.com> - 2023-01-24 00:31 +0000
                Re: Why is there not a single good JSON library for C? scott@slp53.sl.home (Scott Lurndal) - 2023-01-24 00:44 +0000
                Re: Why is there not a single good JSON library for C? Blue-Maned_Hawk <bluemanedhawk@gmail.com> - 2023-01-23 19:48 -0500
                Re: Why is there not a single good JSON library for C? fir <profesor.fir@gmail.com> - 2023-01-24 07:23 -0800
    Re: Why is there not a single good JSON library for C? Vir Campestris <vir.campestris@invalid.invalid> - 2023-02-03 20:41 +0000
      Re: Why is there not a single good JSON library for C? bart c <bart4858@gmail.com> - 2023-02-04 17:32 -0800
        Re: Why is there not a single good JSON library for C? Öö Tiib <ootiib@hot.ee> - 2023-02-05 06:35 -0800
        Re: Why is there not a single good JSON library for C? fir <profesor.fir@gmail.com> - 2023-02-05 08:32 -0800
          Re: Why is there not a single good JSON library for C? fir <profesor.fir@gmail.com> - 2023-02-05 08:41 -0800
            Re: Why is there not a single good JSON library for C? fir <profesor.fir@gmail.com> - 2023-02-05 08:49 -0800
              Re: Why is there not a single good JSON library for C? fir <profesor.fir@gmail.com> - 2023-02-05 08:54 -0800
      Re: Why is there not a single good JSON library for C? fir <profesor.fir@gmail.com> - 2023-02-05 08:28 -0800
  Re: Why is there not a single good JSON library for C? Öö Tiib <ootiib@hot.ee> - 2023-01-22 14:17 -0800
  Re: Why is there not a single good JSON library for C? Kaz Kylheku <864-117-4973@kylheku.com> - 2023-01-22 23:35 +0000
    Re: Why is there not a single good JSON library for C? Simon.Says.Yes@gfdedsed.hgtgfrfd - 2023-01-23 00:50 +0000
      Re: Why is there not a single good JSON library for C? Blue-Maned_Hawk <bluemanedhawk@gmail.com> - 2023-01-22 19:58 -0500
        Re: Why is there not a single good JSON library for C? Simon.Says.Yes@gfdedsed.hgtgfrfd - 2023-01-23 01:33 +0000
        Re: Why is there not a single good JSON library for C? Kaz Kylheku <864-117-4973@kylheku.com> - 2023-01-23 02:39 +0000
      Re: Why is there not a single good JSON library for C? Öö Tiib <ootiib@hot.ee> - 2023-01-22 17:03 -0800
        Re: Why is there not a single good JSON library for C? Simon.Says.Yes@gfdedsed.hgtgfrfd - 2023-01-23 01:30 +0000
          Re: Why is there not a single good JSON library for C? Richard Damon <Richard@Damon-Family.org> - 2023-01-22 21:05 -0500
          Re: Why is there not a single good JSON library for C? Ben Bacarisse <ben.usenet@bsb.me.uk> - 2023-01-23 02:44 +0000
          Re: Why is there not a single good JSON library for C? James Kuyper <jameskuyper@alumni.caltech.edu> - 2023-01-23 03:21 -0500
          Re: Why is there not a single good JSON library for C? David Brown <david.brown@hesbynett.no> - 2023-01-23 11:15 +0100
            PGP signatures and BASE64 posts (Was : Why is there not a single good JSON library for C?) Spiros Bousbouras <spibou@gmail.com> - 2023-01-23 12:47 +0000
              Re: PGP signatures and BASE64 posts (Was : Why is there not a single good JSON library for C?) David Brown <david.brown@hesbynett.no> - 2023-01-23 14:48 +0100
                Re: PGP signatures and BASE64 posts (Was : Why is there not a single good JSON library for C?) Anton Shepelev <anton.txt@g{oogle}mail.com> - 2023-01-23 16:52 +0300
            Re: Why is there not a single good JSON library for C? Blue-Maned_Hawk <bluemanedhawk@gmail.com> - 2023-01-23 09:19 -0500
              Re: Why is there not a single good JSON library for C? David Brown <david.brown@hesbynett.no> - 2023-01-23 17:45 +0100
                Re: Why is there not a single good JSON library for C? Blue-Maned_Hawk <bluemanedhawk@gmail.com> - 2023-01-23 18:09 -0500
                Re: Why is there not a single good JSON library for C? Ben Bacarisse <ben.usenet@bsb.me.uk> - 2023-01-23 23:44 +0000
                Re: Why is there not a single good JSON library for C? Blue-Maned_Hawk <bluemanedhawk@gmail.com> - 2023-01-23 19:24 -0500
                Re: Why is there not a single good JSON library for C? Keith Thompson <Keith.S.Thompson+u@gmail.com> - 2023-01-23 16:49 -0800
                Re: Why is there not a single good JSON library for C? Ben Bacarisse <ben.usenet@bsb.me.uk> - 2023-01-24 13:04 +0000
                Re: Why is there not a single good JSON library for C? Blue-Maned_Hawk <bluemanedhawk@gmail.com> - 2023-01-24 17:19 -0500
                Re: Why is there not a single good JSON library for C? Keith Thompson <Keith.S.Thompson+u@gmail.com> - 2023-01-24 14:33 -0800
                Re: Why is there not a single good JSON library for C? Kaz Kylheku <864-117-4973@kylheku.com> - 2023-01-26 18:28 +0000
                Re: Why is there not a single good JSON library for C? Manu Raju <MR@invalid.invalid> - 2023-01-26 18:44 +0000
                Re: Why is there not a single good JSON library for C? Anton Shepelev <anton.txt@gmail.com> - 2023-01-28 23:42 +0300
                Re: Why is there not a single good JSON library for C? Keith Thompson <Keith.S.Thompson+u@gmail.com> - 2023-01-26 11:56 -0800
                Re: Why is there not a single good JSON library for C? Ben Bacarisse <ben.usenet@bsb.me.uk> - 2023-01-26 20:37 +0000
                Re: Why is there not a single good JSON library for C? Anton Shepelev <anton.txt@gmail.com> - 2023-01-28 23:37 +0300
                Re: Why is there not a single good JSON library for C? Ben Bacarisse <ben.usenet@bsb.me.uk> - 2023-01-28 22:27 +0000
                Re: Why is there not a single good JSON library for C? Richard Damon <Richard@Damon-Family.org> - 2023-01-26 18:52 -0500
                Re: Why is there not a single good JSON library for C? Ben Bacarisse <ben.usenet@bsb.me.uk> - 2023-01-25 00:33 +0000
                Re: Why is there not a single good JSON library for C? Keith Thompson <Keith.S.Thompson+u@gmail.com> - 2023-01-24 17:51 -0800
                Re: Why is there not a single good JSON library for C? David Brown <david.brown@hesbynett.no> - 2023-01-25 11:03 +0100
                Re: Why is there not a single good JSON library for C? David Brown <david.brown@hesbynett.no> - 2023-01-24 15:02 +0100
                Re: Why is there not a single good JSON library for C? Blue-Maned_Hawk <bluemanedhawk@gmail.com> - 2023-01-24 17:24 -0500
                Re: Why is there not a single good JSON library for C? Keith Thompson <Keith.S.Thompson+u@gmail.com> - 2023-01-24 14:36 -0800
                Re: Why is there not a single good JSON library for C? David Brown <david.brown@hesbynett.no> - 2023-01-25 00:21 +0100
                Re: Why is there not a single good JSON library for C? "Chris M. Thomasson" <chris.m.thomasson.1@gmail.com> - 2023-01-24 15:28 -0800
                Re: Why is there not a single good JSON library for C? bart c <bart4858@gmail.com> - 2023-01-25 06:43 -0800
                Re: Why is there not a single good JSON library for C? David Brown <david.brown@hesbynett.no> - 2023-01-25 15:56 +0100
                Re: Why is there not a single good JSON library for C? scott@slp53.sl.home (Scott Lurndal) - 2023-01-25 15:08 +0000
                Re: Why is there not a single good JSON library for C? Öö Tiib <ootiib@hot.ee> - 2023-01-25 07:56 -0800
                Re: Why is there not a single good JSON library for C? Phil Carmody <pc+usenet@asdf.org> - 2023-01-25 22:48 +0200
                Re: Why is there not a single good JSON library for C? bart c <bart4858@gmail.com> - 2023-01-25 13:50 -0800
                Re: Why is there not a single good JSON library for C? BGB <cr88192@gmail.com> - 2023-01-27 11:46 -0600
                Re: Why is there not a single good JSON library for C? David Brown <david.brown@hesbynett.no> - 2023-01-28 13:39 +0100
                Re: Why is there not a single good JSON library for C? BGB <cr88192@gmail.com> - 2023-01-28 11:42 -0600
                Re: Why is there not a single good JSON library for C? "Chris M. Thomasson" <chris.m.thomasson.1@gmail.com> - 2023-01-28 12:15 -0800
                Re: Why is there not a single good JSON library for C? BGB <cr88192@gmail.com> - 2023-01-28 23:24 -0600
                Re: Why is there not a single good JSON library for C? fir <profesor.fir@gmail.com> - 2023-01-25 12:10 -0800
                Re: Why is there not a single good JSON library for C? fir <profesor.fir@gmail.com> - 2023-01-25 12:12 -0800
              Re: Why is there not a single good JSON library for C? Keith Thompson <Keith.S.Thompson+u@gmail.com> - 2023-01-23 12:05 -0800
                Re: Why is there not a single good JSON library for C? Keith Thompson <Keith.S.Thompson+u@gmail.com> - 2023-01-23 13:46 -0800
                Re: Why is there not a single good JSON library for C? James Kuyper <jameskuyper@alumni.caltech.edu> - 2023-01-23 20:06 -0500
                Re: Why is there not a single good JSON library for C? "Chris M. Thomasson" <chris.m.thomasson.1@gmail.com> - 2023-01-23 17:11 -0800
                Re: Why is there not a single good JSON library for C? Phil Carmody <pc+usenet@asdf.org> - 2023-01-25 09:57 +0200
                Re: Why is there not a single good JSON library for C? James Kuyper <jameskuyper@alumni.caltech.edu> - 2023-01-25 14:08 -0500
                Re: Why is there not a single good JSON library for C? Spiros Bousbouras <spibou@gmail.com> - 2023-01-23 22:05 +0000
                Re: Why is there not a single good JSON library for C? Blue-Maned_Hawk <bluemanedhawk@gmail.com> - 2023-01-23 18:15 -0500
                Re: Why is there not a single good JSON library for C? Keith Thompson <Keith.S.Thompson+u@gmail.com> - 2023-01-23 15:36 -0800
                Re: Why is there not a single good JSON library for C? Blue-Maned_Hawk <bluemanedhawk@gmail.com> - 2023-01-23 19:43 -0500
                Re: Why is there not a single good JSON library for C? "Chris M. Thomasson" <chris.m.thomasson.1@gmail.com> - 2023-01-23 16:56 -0800
                Re: Why is there not a single good JSON library for C? Blue-Maned_Hawk <bluemanedhawk@gmail.com> - 2023-01-23 20:12 -0500
                Re: Why is there not a single good JSON library for C? "Chris M. Thomasson" <chris.m.thomasson.1@gmail.com> - 2023-01-23 17:45 -0800
                Re: Why is there not a single good JSON library for C? Keith Thompson <Keith.S.Thompson+u@gmail.com> - 2023-01-23 16:58 -0800
                Re: Why is there not a single good JSON library for C? Keith Thompson <Keith.S.Thompson+u@gmail.com> - 2023-01-23 17:02 -0800
                Re: Why is there not a single good JSON library for C? David Brown <david.brown@hesbynett.no> - 2023-01-24 15:15 +0100
                Re: Why is there not a single good JSON library for C? Richard Harnden <richard.nospam@gmail.com> - 2023-01-24 14:35 +0000
                Re: Why is there not a single good JSON library for C? David Brown <david.brown@hesbynett.no> - 2023-01-24 18:32 +0100
                Re: Why is there not a single good JSON library for C Jim Jackson <jj@franjam.org.uk> - 2023-01-25 22:56 +0000
                Re: Why is there not a single good JSON library for C Blue-Maned_Hawk <bluemanedhawk@gmail.com> - 2023-01-25 20:09 -0500
                Re: Why is there not a single good JSON library for C? Phil Carmody <pc+usenet@asdf.org> - 2023-01-25 09:53 +0200
                Re: Why is there not a single good JSON library for C? Öö Tiib <ootiib@hot.ee> - 2023-01-25 00:13 -0800
                Re: Why is there not a single good JSON library for C? Phil Carmody <pc+usenet@asdf.org> - 2023-01-25 20:41 +0200
                Re: Why is there not a single good JSON library for C? James Kuyper <jameskuyper@alumni.caltech.edu> - 2023-01-25 14:08 -0500
                Re: Why is there not a single good JSON library for C? Keith Thompson <Keith.S.Thompson+u@gmail.com> - 2023-01-25 11:35 -0800
                Re: Why is there not a single good JSON library for C? David Brown <david.brown@hesbynett.no> - 2023-01-26 00:18 +0100
                Re: Why is there not a single good JSON library for C? Keith Thompson <Keith.S.Thompson+u@gmail.com> - 2023-01-25 15:33 -0800
                Re: Why is there not a single good JSON library for C? Phil Carmody <pc+usenet@asdf.org> - 2023-01-29 01:08 +0200
                Re: Why is there not a single good JSON library for C? Tim Rentsch <tr.17687@z991.linuxsc.com> - 2023-01-29 13:53 -0800
                Apology to Öö Tiib (was Re: Why is there not a single good JSON library for C?) Keith Thompson <Keith.S.Thompson+u@gmail.com> - 2023-01-25 15:31 -0800
                Re: Apology to Öö Tiib (was Re: Why is there not a single good JSON library for C?) Öö Tiib <ootiib@hot.ee> - 2023-01-25 23:17 -0800
                A comment about dogwhistles Tim Rentsch <tr.17687@z991.linuxsc.com> - 2023-01-29 13:47 -0800
                Re: A comment about dogwhistles Phil Carmody <pc+usenet@asdf.org> - 2023-03-03 15:05 +0200
                Re: Why is there not a single good JSON library for C? Anton Shepelev <anton.txt@g{oogle}mail.com> - 2023-01-26 15:16 +0300
                Re: Why is there not a single good JSON library for C? Keith Thompson <Keith.S.Thompson+u@gmail.com> - 2023-01-25 10:37 -0800
                Re: Why is there not a single good JSON library for C? Joe Pfeiffer <pfeiffer@cs.nmsu.edu> - 2023-01-29 20:57 -0700
                Re: Why is there not a single good JSON library for C? BGB <cr88192@gmail.com> - 2023-01-29 23:04 -0600
        Re: Why is there not a single good JSON library for C? "Chris M. Thomasson" <chris.m.thomasson.1@gmail.com> - 2023-01-22 21:09 -0800
      Re: Why is there not a single good JSON library for C? Ben Bacarisse <ben.usenet@bsb.me.uk> - 2023-01-23 02:41 +0000
  Re: Why is there not a single good JSON library for C? Anton Shepelev <anton.txt@g{oogle}mail.com> - 2023-01-23 11:35 +0300
  Re: Why is there not a single good JSON library for C? Opus <ifonly@youknew.org> - 2023-01-23 19:22 +0100
    Re: Why is there not a single good JSON library for C? Blue-Maned_Hawk <bluemanedhawk@gmail.com> - 2023-01-23 18:18 -0500
      Re: Why is there not a single good JSON library for C? "Chris M. Thomasson" <chris.m.thomasson.1@gmail.com> - 2023-01-23 16:57 -0800
        Re: Why is there not a single good JSON library for C? BGB <cr88192@gmail.com> - 2023-01-24 18:23 -0600
          Re: Why is there not a single good JSON library for C? Blue-Maned_Hawk <bluemanedhawk@gmail.com> - 2023-01-24 20:35 -0500
            Re: Why is there not a single good JSON library for C? BGB <cr88192@gmail.com> - 2023-01-24 21:37 -0600
              Re: Why is there not a single good JSON library for C? Anton Shepelev <anton.txt@g{oogle}mail.com> - 2023-01-25 11:49 +0300
                Re: Why is there not a single good JSON library for C? BGB <cr88192@gmail.com> - 2023-01-25 12:32 -0600
                Re: Why is there not a single good JSON library for C? Manu Raju <MR@invalid.invalid> - 2023-01-25 18:56 +0000
              Re: Why is there not a single good JSON library for C? Ben Bacarisse <ben.usenet@bsb.me.uk> - 2023-01-25 18:45 +0000
                Re: Why is there not a single good JSON library for C? BGB <cr88192@gmail.com> - 2023-01-25 13:39 -0600
              Re: Why is there not a single good JSON library for C? Blue-Maned_Hawk <bluemanedhawk@gmail.com> - 2023-01-25 17:07 -0500
                Re: Why is there not a single good JSON library for C? BGB <cr88192@gmail.com> - 2023-01-25 17:54 -0600
                Re: Why is there not a single good JSON library for C? scott@slp53.sl.home (Scott Lurndal) - 2023-01-26 00:04 +0000
                Re: Why is there not a single good JSON library for C? BGB <cr88192@gmail.com> - 2023-01-25 19:27 -0600
                Re: Why is there not a single good JSON library for C? fir <profesor.fir@gmail.com> - 2023-01-26 02:50 -0800
                Re: Why is there not a single good JSON library for C? fir <profesor.fir@gmail.com> - 2023-01-26 03:07 -0800
                Re: Why is there not a single good JSON library for C? Malcolm McLean <malcolm.arthur.mclean@gmail.com> - 2023-01-26 04:34 -0800
                Re: Why is there not a single good JSON library for C? fir <profesor.fir@gmail.com> - 2023-01-26 04:56 -0800
                Re: Why is there not a single good JSON library for C? fir <profesor.fir@gmail.com> - 2023-01-26 05:18 -0800
                Re: Why is there not a single good JSON library for C? fir <profesor.fir@gmail.com> - 2023-01-26 05:23 -0800
                Re: Why is there not a single good JSON library for C? BGB <cr88192@gmail.com> - 2023-01-26 12:48 -0600

csiph-web