Tagged Questions
The human-readable tag has no wiki summary.
26
votes
8answers
1k views
Code-Golf: Friendly Number Abbreviator
Based on this question: Is there a way to round numbers into a friendly format?
THE CHALLENGE - UPDATED! (removed hundreds abbreviation from spec)
The shortest code by character count that will ...
11
votes
5answers
345 views
I Need a Human Readable, Yet Parse-able Document Format
I'm working on one of those projects where there are a million better ways to accomplish what I need but I have no choice and I have to do it this way. Here it is:
There is a web form, when the user ...
6
votes
11answers
313 views
Are there any basic standards and practices for making human readable code?
More specifically making HTML, Java, and python more readable? Does anyone have suggestions for this programming student?
5
votes
1answer
110 views
A minimalistic human-readable serialisation format parser for an embedded system
By "human-readable serialisation format" I mean YAML, JSON, INI or like. Please note, XML is too verbose and too inconvenient for my purposes, so let's leave it alone as the last resort.
The format ...
5
votes
2answers
587 views
objective-c NSFilePosixPermissions to human readable NSString
is there a way to get human readable string (@"drwxr-xr-x" for example) from an NSFilePosixPermissions integer ?
3
votes
2answers
335 views
Parse human readable dates with JS?
I'm working on a web project that uses Django, jQuery and Google App Engine.
I need an option to parse raw, human readable date texts into JavaScript Date objects.
I found this library - ...
3
votes
1answer
179 views
Human-readable URLs: preferably hierarchical too?
In a now migrated question about human-readable URLs I allowed myself to elaborate a little hobby-horse of mine:
When I encounter URLs like http://www.example.com/product/123/subpage/456.html I ...
2
votes
2answers
215 views
Human-readable representations in protobuf-net
Does protobuf-net have any APIs to dump a protobuf into human readable form? I was hoping for something like TextFormat.
1
vote
2answers
208 views
Actual numbers to the human readable values
I have data in bytes. I need to draw this values as human readable labels on a chart (like 2.5KB, 14MB etc.) and need to help with function (input data - actual value, output - human readable string).
...
1
vote
2answers
38 views
Generating a url that I can use in a sign-off-email
So I have a service where you sign up for events. When you sign up, you get an email with an url where you can sign off the event. The given parameter of the url should be something that not anyone ...
1
vote
7answers
234 views
How to measure the “understandability” of a language?
I have often read that some programming languages are clear than others and I asked myself several times if there is an objective way to measure the clarity of a language in order to design, given an ...
1
vote
3answers
294 views
Writing white-space delimited text to be human readable in Python
I have a list of lists that looks something like this:
data = [['seq1', 'ACTAGACCCTAG'],
['sequence287653', 'ACTAGNACTGGG'],
['s9', 'ACTAGAAACTAG']]
I write the information to a ...
1
vote
3answers
263 views
Formatting PHP time() from mysql table
I'm creating comments stored in a MySQL database.
I'm logging the php time function time() as the comment is posted. That way it's displaying a message such as... "comment... posted 4 seconds ago" ...
0
votes
2answers
217 views
Human readable date into timestamp
I am trying to parse a logfile, using human readable dates without a year into a timestamp. I have looked over the function strtotime() but haven't had any success with it.
Example time: ...
0
votes
0answers
110 views
Human readable/writable form of thrift struct?
Is there an human readable/writable form of thrift structs, like in protocol buffer? as mentioned here: http://code.google.com/apis/protocolbuffers/docs/reference/cpp/google.protobuf.text_format.html
...
0
votes
1answer
70 views
Is there a 3rd party library that knows to convert a linq expression to a human readable string representation?
I have a linq expression and I wish to display it in the log in a human readable form. Any one knows any library that can do it? I saw this entry ...
0
votes
2answers
1k views
MongoDB geo distance/radius to useful units
I'm using MongoDB geospatial queries -- $near, geoNear, etc. -- and I'd like to know how to turn the 'dis' result of the 'geoNear' command as well as the 'radius' argument for $within queries to/from ...