Tagged Questions
The data-formats tag has no wiki summary.
11
votes
19answers
4k views
When and Why is XML preferable to CSV?
sometimes it feels like XML has been used just because it was fashionable.
8
votes
7answers
2k views
What data formats can AJAX transfer?
I'm new to AJAX, but as an overview I'd like to know what formats you can upload and download. Is it limited to JSON or XML or can you even send binary types like MP3 or UTF-8 HTML. And finally, do ...
8
votes
2answers
2k views
How to represent date and/or time information in JSON?
JSON text (RFC 4627) has unambigious representation of objects, arrays, strings, numbers, Boolean values (literally true or false) and null. However, it has nothing defined for representing time ...
5
votes
5answers
75 views
If I have three separate values that could all fit into 32 bits, does it make sense to use a uint to store them?
What I mean is, say I have a struct to represent some data and it looks like this:
struct LilStruct
{
public readonly short A;
public readonly byte B;
public readonly byte C;
public ...
5
votes
8answers
264 views
Most efficient format for transfering data to and from embedded devices
I'm having hard time to choose the format on which my server and my end points will communicate with.
I am considering:
JSON
YAML Too hard to parse
CSV
Google Protobufs
Binary packing/unpacking ...
4
votes
2answers
2k views
ITL (iTunes Library) Format
I´m developing a Java solution for manage an iTunes Library (ITL file). The ITL format is a propietary one.
I'm looking for an implementation or a documentation about ITL format but Google can't find ...
3
votes
1answer
133 views
JavaScript-friendly binary-safe data format design (not JSON or XML)
First and foremost: JSON and XML are not an option in this specific case, please don't suggest them. If this makes it easier to accept that fact, imagine that I intend to reinvent the wheel for ...
2
votes
3answers
213 views
My PHP app needs to export to a range of different XML formats: should I use XSLT or native PHP?
My PHP application will need to be able to export to (and import from) a range of different data formats, mostly XML based.
I have the option of
In PHP, use DOM to export to some XML based format ...
2
votes
3answers
290 views
Ensuring contact form email isn't lost (python)
I have a website with a contact form. User submits name, email and message and the site emails me the details.
Very occasionally my server has a problem with it's email system and so the user gets an ...
1
vote
0answers
23 views
Javascript conversion/ETL library?
I'm considering creating a new Open Source library in Javascript to handle common data format conversions, but I would love to avoid re-inventing the wheel if possible. Is there an existing library ...
1
vote
0answers
28 views
Standards or best practices for the content of RESTful requests and responses
We may need to provide a RESTful web service interface to our application.
THe RESTFul architecture provides some guiding principles for some parts of the interface but leaves others entirely open - ...
0
votes
0answers
11 views
Data Format/Protocol Testing Repository
Is there a site that simply provides sample data for a wide variety of particular data formats, and/or protocol endpoints for a wide variety of particular protocols/APIs?
The purpose is: ...
0
votes
2answers
252 views
Builder pattern in objective C
I came across a design pattern "Builder" which I think would fit well to what I would like to do. In my iOS application, I have different Core Data Entities and I would like to able to transform my ...
0
votes
4answers
36 views
Approaches to programming application-level protocols?
I'm doing some simple socket programming in C#. I am attempting to authenticate a user by reading the username and password from the client console, sending the credentials to the server, and ...
0
votes
2answers
299 views
Defining an XML format for a 2D array (Grid) of items
I need to define an XML format and then read it in ActionScript3, which will be storing:
the number of rows and columns in a grid
the horizontal and vertical spacing in pixels
the size of each ...
0
votes
2answers
38 views
Difficulty determining the file type of text database file
So the USDA has some weird database of general nutrition facts about food, and well naturally we're going to steal it for use in our app. But anyhow the format of the lines is like the following:
...
0
votes
8answers
107 views
What is the correct name for this data format?
I am a perfectionist and need a good name for a function that parses data that has this type of format:
userID:12,year:2010,active:1
Maybe perhaps
parse_meta_data()
I'm not sure what the correct ...