Search the web
Sign In
New User? Sign Up
json · JSON JavaScript Object Notation
? Already a member? Sign in to Yahoo!

Yahoo! Groups Tips

Did you know...
Hear how Yahoo! Groups has changed the lives of others. Take me there.

Best of Y! Groups

   Check them out and nominate your group.
Having problems with message search? Fill out this form to ensure your group is one of the first to be migrated to the new message search system.

Messages

  Messages Help
Advanced
Messages 961 - 990 of 1409   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
961
Howdy All, I'd just like to put my JPath library out there in case others might find it as useful as i did. http://bluelinecity.com/software/jpath ...
plexium_nerd
Offline Send Email
Apr 1, 2008
5:13 pm
962
Are you aware of JSONPath, and XPath-like functionality for JSON that it already provides? http://goessner.net/articles/JsonPath/...
kriszyp
Online Now Send Email
Apr 1, 2008
8:41 pm
963
When I decided to make Jpath, no. It wasn't until afterwards when i found that library. However, they are still pretty different and each offer different...
plexium_nerd
Offline Send Email
Apr 1, 2008
10:11 pm
964
Hello, I have a slight problem, an adequate explanation of which I have not been able to find. I'm hoping you can shed some light on the matter... I'm trying...
osirisdf
Offline Send Email
Apr 2, 2008
12:04 am
965
Hi JSON group, I'm brand new here and was invited here by Douglas Crockford (thanks, I'm honored!) based on my work with a jsonDiff implementation, so I guess...
Michael Schøler
michael.scholer
Offline Send Email
Apr 2, 2008
6:14 am
966
Hi Michael! One quick suggestion: On Tue, Apr 1, 2008 at 11:14 PM, Michael Schøler <michael.scholer@...> wrote: ... You may be aware of this, but...
Tatu Saloranta
cowtowncoder
Offline Send Email
Apr 2, 2008
3:27 pm
967
Also a good mapping for round-trip support of JSON-XML conversion is JsonML: http://jsonml.org It works with any type of XML including XHTML....
Stephen M. McKamey
stephen.mckamey
Offline Send Email
Apr 2, 2008
3:36 pm
968
... I was not aware, I'll have a look at it. But not for the current project which is done in C# / .net. ... Great - let me know if you like it. /Michael...
Michael Schøler
michael.scholer
Offline Send Email
Apr 2, 2008
4:25 pm
969
Have you run any benchmark between both libraries for some of the common features? ... -- Blog: http://justavo.blogsome.com/ [Non-text portions of this message...
Gustavo Munoz
justavo_munoz
Online Now Send Email
Apr 3, 2008
1:57 am
970
I'm not sure if this benchmark is useful or not but i threw together a set of three tests which just iterates over equivalent queries 1000 times. Since there's...
plexium_nerd
Offline Send Email
Apr 4, 2008
3:08 am
971
I'm looking for a script/example/library written in VBA to parse JSON data. I didn't see one on json.org, and have had little luck with Google searches....
Bill Guindon
webgorilla
Offline Send Email
Apr 4, 2008
3:37 am
972
The fastest way to get started would be to load the JScript (MS's JavaScript engine) and get it to parse the JSON, like this: Set sc =...
Atif Aziz
azizatif
Offline Send Email
Apr 4, 2008
10:46 am
973
a bit out of scope, but carefully written javascript libraries can all be used this way. And there should be a lot that support json via eg. regexps (if plain...
Gaetano Giunta
gaetanogiunt...
Offline Send Email
Apr 4, 2008
1:19 pm
974
... Right and so one could leverage json2.js like this: Set sc = CreateObject("ScriptControl") sc.Language = "JScript" Set xhr =...
Atif Aziz
azizatif
Offline Send Email
Apr 4, 2008
1:51 pm
975
In the past I tried this within VB6 apps and using the script object seemed to cause Norton Anti-virus throw scripting alerts and halt execution until the user...
Matthew Morley
mpcmtechnolo...
Offline Send Email
Apr 4, 2008
2:06 pm
976
Thanks to all who replied, we'll be experimenting with the suggestions. ... That would be a problem, in the long run, we're looking to ship this to customers. ...
Bill Guindon
webgorilla
Offline Send Email
Apr 4, 2008
2:40 pm
977
I have written a lot of applications that make heavy use of JSON data. In fact, I often store large amounts of JSON data in configuration files instead of...
Arthur Blake
blakesys
Offline Send Email
Apr 10, 2008
12:05 am
978
One question: wouldn't it be easier to just use TreeMap for storing fields, instead of HashMap, if sorting is desired? -+ Tatu +-...
Tatu Saloranta
cowtowncoder
Offline Send Email
Apr 10, 2008
4:29 am
979
... That was my first thought when thinking about how to do it, as well. That would make sense if you wanted to always keep and use the JSON sorted. In one of...
Arthur Blake
blakesys
Offline Send Email
Apr 10, 2008
12:13 pm
980
Hi all, I'd like to introduce json2list and SpringDB to you all. json2list is a transformation tool from JSON to HTML list (ol and ul) and hosted at...
Changshin Lee
ias_and_cb
Offline Send Email
Apr 10, 2008
4:00 pm
981
... I understand this, and it's a valid point. But I was thinking more along the lines of deferring initialization of the Map, and switching between the two...
Tatu Saloranta
cowtowncoder
Offline Send Email
Apr 10, 2008
5:06 pm
982
... Actually, it isn't. Even though the javadoc claims that get and put are constant time, a moment's reflection shows that this cannot be so. HashMap is...
John Cowan
johnwcowan
Online Now Send Email
Apr 10, 2008
5:57 pm
983
... when ... Map.Entry. ... O(N). ... Not true. Full rehashes are indeed O(N), but they take place at a frequency proportional to 1/c because each time a...
kriszyp
Online Now Send Email
Apr 10, 2008
6:32 pm
984
... Excellent suggestion. I have modified JSON.Object....
Douglas Crockford
douglascrock...
Offline Send Email
Apr 11, 2008
2:35 am
985
Is storing a JSON string in a database: A: a crap idea. period. B: a crap idea under most common circumstances C: pure genius Thanks. You've been helpful. ...
Mark Ireland
akaidr4vr
Offline Send Email
Apr 15, 2008
4:46 am
986
... (d) None of above. You are welcome, -+ Tatu +-...
Tatu Saloranta
cowtowncoder
Offline Send Email
Apr 15, 2008
4:54 am
987
The major problem with storing raw JSON strings in a database is that you lose any structural meaning of the JSON data, you can't do relevant queries that...
kriszyp
Online Now Send Email
Apr 15, 2008
5:35 am
988
... Hi Mark, In a major project I'm currently involved in we had to consider how to store client side data and process it server side. JSON was one of the...
Michael Schøler
michael.scholer
Offline Send Email
Apr 15, 2008
6:41 am
989
... Fundamentally there are 2 very distinct major classes of use cases: those where data is mostly or completely access as a single entity (one row, xml/json...
Tatu Saloranta
cowtowncoder
Offline Send Email
Apr 15, 2008
4:21 pm
990
Hi All I am developing on an embedded platform with C++, and wish to encode my AJAX get and post responses in JSON. Looking at the specification, it doesn't...
stephen.dyble
Offline Send Email
Apr 20, 2008
12:00 am
Messages 961 - 990 of 1409   Oldest  |  < Older  |  Newer >  |  Newest
Advanced
Add to My Yahoo!      XML What's This?

Copyright © 2009 Yahoo! Inc. All rights reserved.
Privacy Policy - Terms of Service - Guidelines - Help