I got a ton of requests for some security features, so I added DoS attack detection and prevention, also made it faster and fixed some bugs. ...
1675
keenerd
keenerd@...
Aug 12, 2011 9:40 pm
I noticed there was a small gap on json.org - there are no libraries intended for shell script processing. So I wrote one. http://kmkeen.com/jshon/ Jshon...
... Somewhat related, but not the same thing: http://fossil.wanderinghorse.net/repos/cson/index.cgi/wiki?name=select-to-json it's for running queries from...
... After a closer look at the first one, these two could be used together - select-to-json feeding jshon. -- ... http://wanderinghorse.net/home/stephan/ ...
Dear group, I'm a firmware developer on small embedded platform. Until now, I used to read/write the in-memory configuration C structures (with padding bytes)...
I don't see why not. Â JSON is lightweight, I use it for configuration all the time. Â I maintain a project called libjson that might work well for you....
Silicon Valley Codecamp is a free software development conference held at Foothill College in Los Altos, California. I will be presenting there again this...
Hey Guys, I am currently working on what I hope to be a 1:1 binary JSON specification (no custom data types supported like BSON or BJSON, just binary...
... Keep in mind that JSON does not specify any required numeric precision, and some platforms cannot use int64. (JavaScript specifies 53 bits of precision, in...
Stephan, Great feedback, these are exactly the kind of nuances I wanted to uncover and discuss. When I dug through the language specs looking for the most...
... i've been using doubles for that purpose in that particular JS engine (v8). I found no way to deserialize JavaScript objects directly from a ... The "new"...
... It's notable that neither of these provides an int64 type, only signed and unsigned 8-bit, 16-bit, and 32-bit integers plus short and long floats. -- Dream...
... You might be interested in an existing such specification called Smile: http://wiki.fasterxml.com/SmileFormatSpec which was specified about a year ago, has...
Btw, forgot to add: On Wed, Sep 21, 2011 at 6:15 AM, rkalla123 <rkalla@...> wrote: ... It would be great if you could contribute this to jvm-serialziers,...
... A couple of things from a quick skim of the document: * "As with JSON, all Strings are encoding in UTF-8" The *default* JSON encoding is UTF-8, but JSON...
... Fortunately, these points don't affect the actual protocol, just the explanation. -- LEAR: Dost thou call me fool, boy? John Cowan FOOL: All thy other...
... Thank you for that. Smile's requirement that impls be capable of supporting "shared strings" seems a bit draconian to me, though. That adds non-trivial ...
What happens if you need to encode an integer larger than 64-bits? Shouldn't there be a way to encode a large integer as a buffer with a byte length? I don't...
... It specifies neither a limit nor a minimum, at least as far as i was able to dig out of the RFC a few months ago. A 2-bit limit is, strictly speaking, ...
Don, Interesting point. Stephan and I had a discussion this morning about the portability of the numeric types across most (all) platforms breaking down when...
Tatu, I'd love to get this into jvm-serializers; I have been utilizing the same test data (MediaContent) and models for testing to try and get relatable...