I'm redoing big parts of libjson and I'm going to extend it to use non-standard json (as a compile option, not standard) and I'm curious if anyone foresee any...
1546
Tatu Saloranta
cowtowncoder
Aug 10, 2010 2:52 am
... XML does not have native binary data either; usually base64 encoding is used, and same works well for JSON. Why not use that? Or given that content is just...
1547
Jonathan Wallace
ninja9578
Aug 10, 2010 3:03 pm
Thanks for your input. I guess I never looks at how my XML library handled the binary. I guess I'll just add a method to insert binary data that automatically...
1548
Tatu Saloranta
cowtowncoder
Aug 10, 2010 5:44 pm
... Ah ok. :) ... Yeah that is one way. Actually there is another, used with HTTP -- you can send binary as separate http body part, refer to that from XML (I ...
1550
Douglas Crockford
douglascrock...
Aug 30, 2010 10:07 pm
JSON.org is a sponsor this year of Silicon Valley Codecamp, a free conference held at Foothill College in Los Altos, CA. I hope to see you there. For more...
1551
jonathan wallace
ninja9578
Sep 12, 2010 8:55 pm
If anyone here uses libjson, I just released libjson 6. Be aware though, this one will not just plug into your code if you are using an old version. Both ...
1552
Douglas Crockford
douglascrock...
Oct 6, 2010 5:54 am
I will be doing a session at Silicon Valley Codecamp at Foothill College in Los Altos, California on Saturday, October 9 at 11:15am. I will be talking about...
1553
Mark Joseph
markjoseph_sc
Oct 11, 2010 6:18 pm
JDXâ„¢ XPath 2.0 for XML, JSON and JsonML https://www.p6r.com/software/jdx.html# Regards, Mark Joseph, Ph.D. President P6R, Inc 408-205-0361 mark@... ...
1554
Douglas Crockford
douglascrock...
Nov 2, 2010 10:35 pm
The JSON.org page is now available in Swedish. http://www.JSON.org/json-sv.html Thanks to Paul Cohen....
1555
stephan.beal
Nov 14, 2010 3:46 pm
Hi, all! For the C++ coders out there without a favourite JSON library, here's a new one for you: http://fossil.wanderinghorse.net/repos/nosjob/ It's still...
1556
Douglas Crockford
douglascrock...
Nov 18, 2010 6:56 pm
json2.js is now available on Github. https://github.com/douglascrockford/JSON-js...
1557
dctonyburley
Dec 13, 2010 12:20 pm
Hey Folks, Here is the URL for my test site - http://showmercyonus.appspot.com/transaction The second row is a combination of JSON & AJAX that renders some...
1558
Douglas Crockford
douglascrock...
Dec 21, 2010 7:11 pm
The reference implementation for Java is now available from Github. https://github.com/douglascrockford/JSON-java...
1559
John Cowan
johnwcowan
Dec 21, 2010 8:46 pm
... I'm having some trouble deciphering your XML class. Can you write down in English the rules it uses to convert JSON to XML and vice versa? Thanks. -- ...
1560
Douglas Crockford
douglascrock...
Dec 24, 2010 7:20 pm
... What specifically are you having trouble with?...
1561
Tony
anthonyrpelosi
Jan 6, 2011 9:22 pm
Does anyone know of a good WYSIWYG tool for creating a hierarchy of objects/elements and fields/attributes that exports to both XML and JSON? I downloaded...
1562
Patrick Maupin
patmaupin
Jan 6, 2011 9:48 pm
Not really a wysiwyg, but I have a different textual representation of JSON called RSON. It's extremely easy to work with in a text editor. The manual is...
1563
Douglas Crockford
douglascrock...
Jan 24, 2011 6:50 pm
The JSON.org page currently lists 21 packages for Java. Will the Java community ever converge on one as some other language communities are doing?...
1564
John Cowan
johnwcowan
Jan 24, 2011 7:05 pm
... I would say that that could happen in only a few ways: 1) If someone shepherded a particular library through the JCP, a clunky and bureaucratic process...
1565
Tatu Saloranta
cowtowncoder
Jan 24, 2011 9:18 pm
On Mon, Jan 24, 2011 at 10:48 AM, Douglas Crockford ... Probably not to the degree that there'd be just one. From the list I think just maybe half a dozen are...
1566
Dennis Gearon
gearond...
Jan 24, 2011 10:11 pm
If there was anything that bugs ME, is incomplete documentation and 'just read the code' type of libraries. Dennis Gearon ________________________________ ...
1567
John Cowan
johnwcowan
Jan 24, 2011 10:12 pm
... +1000 -- One Word to write them all, John Cowan <cowan@...> One Access to find them, http://www.ccil.org/~cowan One Excel to...
1568
Tatu Saloranta
cowtowncoder
Jan 24, 2011 11:39 pm
... True. That also contributes to feeling of "but how is this different". Maybe there are strengths, but if finding those requires reading sources, yeah,...
1569
Dennis Gearon
gearond...
Jan 24, 2011 11:59 pm
I'm working on documenting my own API (JSON, JSON-RPCish), and it's a lot of work. I just keep reminding myself how I'd like to read it. Dennis Gearon ...
1570
codeWarrior
gregpatnude
Jan 26, 2011 3:13 pm
... Hopefully not... software is software... there's always more than one way to skin the proverbial cat... "there can be only one" is reminiscent of...
1571
jonathan wallace
ninja9578
Feb 3, 2011 1:54 pm
Hello all, I just wanted to mention that a while ago I changed the name from libJSON to libjson, would you mind reflecting that on json.org? I added a ton of...
1572
Tatu Saloranta
cowtowncoder
Feb 3, 2011 7:12 pm
Interesting. One thing I noticed from the project page is that there are big claims on performance, but it seems to lack links to actual measurements? I was...
1573
David Graham
dgraham...
Feb 3, 2011 7:36 pm
If you'd prefer a really slow JSON parser, check out https://github.com/dgraham/json-stream. It's about 20x slower than the Ruby json gem, but it's quite...
1574
Gregg Irwin
greggirwin143
Feb 3, 2011 8:00 pm
TS> I have noticed that at least half of all JSON projects claim to be TS> faster than anyone else, so measurements could also clear up the TS> situation and...
1575
Tatu Saloranta
cowtowncoder
Feb 4, 2011 12:03 am
... Yes, one would be very useful. I know there are couple for Java (general purpose ones that can also use JSON; and specific ones), but haven't seen many for...