Originally posted by Zecherieh
Announcement
Collapse
No announcement yet.
Exactly why do we need mark up for data distribution?
Collapse
X
-
Translations provided by Google.
Wayne Luke
The Rabid Badger - a vBulletin Cloud demonstration site.
vBulletin 5 API -
Originally posted by Wayne LukeLooks like you have a product and some programming work to do. You should get to work. Personally, I don't use RSS feeds. They take too much time when I could just go to the site in question and read the latest news and get the same information. Why load things twice?:)Comment
-
Originally posted by Wayne LukeA serialized array is not CSV which is what I was addressing. You cannot store images in CSV. You cannot store color formatting in CSV. You can store a comma-delimited series of like values.
What happens in your serialized array if my document includes multimedia? Spreadsheets and Text documentation? Backgrounds and so forth? Other documents?
I see where you are going but developers have been trying to standardize document formats across operating systems since the late 1960s. In the 1990s they came up with XML which actually is the first cross-platform document storage system for complex documents. Even then it doesn't encapsulate the entire document into a single file which would be the ideal method.
By the Way, Microsoft documents are actually stored in a compressed serialized array in their native formats.
ok - let me rephrase the entire thing
I can see a need for XML in regards to what you speak.
I also keep using the term CSV, when I really mean delimited - and in the end - I probably would prefer a serialized array more than anything - which the only difference between that and a common csv is its basically a series of tiny csv's, delimited from each other.
I am mostly going off on content distribution - not complex document formats. Simple data - bloated beyond belief.Comment
-
Originally posted by Zecheriehok - let me rephrase the entire thing
I can see a need for XML in regards to what you speak.
I also keep using the term CSV, when I really mean delimited - and in the end - I probably would prefer a serialized array more than anything - which the only difference between that and a common csv is its basically a series of tiny csv's, delimited from each other.
I am mostly going off on content distribution - not complex document formats. Simple data - bloated beyond belief.
All content is different. If you're looking to deliver complex documents, perhaps XML is the way to go. If you're looking at simple data with minimal bloat, then perhaps CSV is the best solution for you.
There isn't anybody out there saying you must use XML or CSV, or anything else for that matter. It is the job of the architect to choose the best technology solution to fit the problem.:)Comment
-
Originally posted by Wayne LukeLooks like you have a product and some programming work to do.- though that is just a smaller part of it all - and a part that I have not put that much time into because I need to do some stress tests and such because I do not have much a good enough knowledge of the amount of resources one, inactive, but connected user requires on a server in when connected.
Comment
-
Originally posted by ZecheriehSimple data - bloated beyond belief.
The same thing can be applied to anything we make. Look at cars... Do they need all the gadgets and gizmos? No, but they appeal to human nature.
If you think you can build a better mousetrap, then build it and show it off. Maybe people will like it but only as long as it still gives them the comforts they are used to.Translations provided by Google.
Wayne Luke
The Rabid Badger - a vBulletin Cloud demonstration site.
vBulletin 5 APIComment
-
This is a perfect example - since they have both
http://www.repole.com/sun4cast/stats/ncaa2005lines.xml = 136K
http://www.repole.com/sun4cast/stats/ncaa2005lines.csv = 29K
Same exact DataComment
-
Originally posted by DirectPixelChanging XML delivery from a user-get to a server-push medium is quite a task.Translations provided by Google.
Wayne Luke
The Rabid Badger - a vBulletin Cloud demonstration site.
vBulletin 5 APIComment
-
Originally posted by ZecheriehThis is a perfect example - since they have both
http://www.repole.com/sun4cast/stats/ncaa2005lines.xml = 136K
http://www.repole.com/sun4cast/stats/ncaa2005lines.csv = 29K
Same exact Data
The first I can load, press CTRL-F and find what I want. No problem.
The second, I have to load into Excel, format so it is readable, then search for what I want. Then what happens if the person doesn't have a spreadsheet program?Translations provided by Google.
Wayne Luke
The Rabid Badger - a vBulletin Cloud demonstration site.
vBulletin 5 APIComment
-
Originally posted by ZecheriehThis is a perfect example - since they have both
http://www.repole.com/sun4cast/stats/ncaa2005lines.xml = 136K
http://www.repole.com/sun4cast/stats/ncaa2005lines.csv = 29K
Same exact Data:)Comment
-
Originally posted by Wayne LukeNot really. Just need to change the client to a listener and have the server publish its results on an occasional basis. When it republishes, it sends a notice to the client to retrieve the new data.
The party with the data can just send a ping, or a connection to a specified file on the receiver's server - which then initiates the receiver to reach out and grab the format (or not if its not something the receiver wants) - that it needs - eliminating the constant checking that goes on by the receiver -
and actually allows the receiver to get the data quicker - as they know as soon as its available - not just if its available when they check for new data every five minutes, ten minutes, 30 seconds, whatever.Last edited by Zecherieh; Thu 9 Feb '06, 7:05am.Comment
-
Originally posted by DirectPixelImagine if the number of fields were increased from 3 to 30, with the other 20 of those fields being numeric. And you don't have Excel installed.
... which when using MySQL - the code to get into the database for the CSV is going to 75 percent the connection code - then the one line to import the csv...Comment
-
I am sure that if I was more of a Visual Studio type programmer - I would love XML - Microsoft had made XML easy to use years ago - but I am not
More of a PHP kind of guy - and we aint had it so easy over the years - and now that its supposed to be easier - I am probably to stuck in my waysComment
-
Originally posted by ZecheriehI am sure that if I was more of a Visual Studio type programmer - I would love XML - Microsoft had made XML easy to use years ago - but I am not
More of a PHP kind of guy - and we aint had it so easy over the years - and now that its supposed to be easier - I am probably to stuck in my ways:)Comment
widgetinstance 262 (Related Topics) skipped due to lack of content & hide_module_if_empty option.
Comment