Questions tagged [human-readable]

Human-readable is a representation of data or information that can be naturally read by humans.

Human-readable is a representation of data or information that can be naturally read by humans.

In computing, human-readable not only refers to information or data, and how this is presented, but also the medium which to produces or processes the data or information, e.g. a programming language or a database front-end application.

140 questions
0
votes
1 answer

How to get jQuery's timeago plugin to work

I've been trying to make time stamps human readable on this project I am working on by using the timeago plugin for jquery. Here is the html code I have;
2016-08-04T22:30:59.920516Z
and the following is a snippet from the…
user6680192
0
votes
0 answers

print encoded or decoded json in readable format

I am using php curl to get account and transaction data from the plaid api. I'd like to see it in a nice format so I can go about creating loops to save the information into a database. The decoded json output, when printed with print_r, is…
Jepf
  • 87
  • 2
  • 10
0
votes
2 answers

Trying to convert file size to readable in a Visual Studio project - how to combine with my existing code

I am working with a Visual Studio model, and I have a page for "downloads" that displays file name, file size, and a link. However, I am trying to convert the file size to a readable format. I have found several methods for doing this, but I think…
LilithGoddess
  • 125
  • 1
  • 5
  • 16
0
votes
1 answer

How to convert human readable data into a timestamp (with JS)?

I am trying to build a self-depricating schedule. I'm using a framework with no calendar style module. So I have a field, we'll call it group date, that takes human readable data. So group date could = 01/02/03. The problem is, that this isn't a…
knocked loose
  • 3,142
  • 2
  • 25
  • 46
0
votes
5 answers

Python 3.4.3 - How to save a itertools.permutations list usable?

i've tried many solutions to my problem, but I haven't find a solution yet. import itertools a = ['car','boat','plane'] b = list(itertools.permutations(a,)) print(b) It gives this list when printed. [('car', 'boat', 'plane'), ('car', 'plane',…
0
votes
1 answer

How to Persist Object as human readable XML File with XML Declaration?

Background I'm developing a desktop application that can create/open a project (think of visual studio). I need to persist such a project object to a XML file (think of .csproj) and load that project object from the XML file. Goals Store / load…
Patrick Stalph
  • 792
  • 1
  • 9
  • 19
0
votes
6 answers

Create a comma-separated list with "and" before the last item in Objective-C, in particular

I want to write a method that provides a human-readable string representation of arrays, with comma-spaces when necessary (incl. the Oxford Comma), and a conjoining " and " at the end. For example, say I have these arrays: NSArray *nun =…
Ky -
  • 30,724
  • 51
  • 192
  • 308
0
votes
3 answers

What text (in English) should I use when asking the user to overwrite a document?

I write a lot of applications in C# and I'm trying to sew up some holes in my standard practices. Specifically, I'm trying to decide on the best text to use in a message box, and I thought I'd ask the StackOverflow community since I believe that…
WonderWorker
  • 8,539
  • 4
  • 63
  • 74
0
votes
4 answers

How to Convert json to human readabe in PHP

I am new! please go easy on me. I have a PHP file that when run, sends an email. The contents of the email is a long json string, but for example, lets say that it's a short string like this: { "firstName": "Jon", "lastName": "Ryan" } The…
Jonirish
  • 49
  • 6
0
votes
1 answer

Library for Date Ranges for Moment JS or ISO string

Is there a JS library that can display date ranges in human readable format from MomentJS objects? E.g. Accept two MomentJS objects or ISO strings and instead of displaying: 2013-02-04T22:44:30.652Z - 2013-02-09T22:44:30.652Z intelligently display…
user2415992
  • 481
  • 7
  • 22
0
votes
0 answers

Is there a Human-language Editor Auditor?

As a developer changes code (provided he uses version control), s/he can compare new code to old to see what changes were made over two "points in time" (or versions). What might be more convenient for some scenarios is an IDE add-in (extension, or…
0
votes
1 answer

In Python, how to present pairs of dicts in human readable form?

Basically, I'm looking for an efficient way (in terms of coding effort) to present a list of pairs of Dicts in a human-readable form. In Python 2.7. I have two lists of OrderedDict. Each dict is a record of book data (title, author etc). One list…
RolfBly
  • 3,612
  • 5
  • 32
  • 46
0
votes
2 answers

convert precisely azimuth degrees to human

I'm write this bit of code to convert azimuth degrees to human redable, but the conversion is not more accurate, in cases of degrees is slightly smaller than 360. function azimutHuman(ang) { //can be 0 - 360 var azimuthHumans = [ …
stefcud
  • 2,220
  • 4
  • 27
  • 37
0
votes
1 answer

Best way to get readable data from id

i was getting in a question when i got this scenario: I have to make a history log about what the user does and of course the user can do a lots different action. i thought two different 2 way for make it i just need someone that can help me to…
Fabrizio Fenoglio
  • 5,767
  • 14
  • 38
  • 75
0
votes
2 answers

JPA criteria builder - in human readable language

I understand the advantages of using a JPA criteria builder above the Java Persistence Query Language. Is there an easy way to explain how to build up this kind of queries? I need a more human readable explanation to build up my queries, this to…
Dimitri Dewaele
  • 10,311
  • 21
  • 80
  • 127