Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

The power of plain text #15

Closed
eneko opened this issue Dec 28, 2020 · 0 comments
Closed

The power of plain text #15

eneko opened this issue Dec 28, 2020 · 0 comments
Labels

Comments

@eneko
Copy link
Owner

eneko commented Dec 28, 2020

I'm sitting in the couch te-reading The Pragmatic Programmer, and couldn't but share this quote.

...we believe that the best format for storing knowledge persistently is plain text. With plain text, we give ourselves the ability to manipulate knowledge, both manually and programmatically, using virtually every tool at our disposal.

The problem with most binary formats is that the context necessary to understand the data is separate from the data itself. You are artificially divorcing the data from its meaning. The data might as well be encrypted; it is absolutely meaningless without the application logic to parse it.

[...]

Human-readable forms of data, and self-describing data, will outlive all other forms of data and the applications that created them. Period. As long as the data survives, you will have a chance to be able to use it—potentially long after the original application that wrote it is defunct.

The Pragmatic Programmer — Chapter 3, pages 74-75

The reasoning is solid: you can write an application to parse plain-text from 50 years ago (see RFC 561 which describes Email headers, as an example), and arguably you could do it without ever reading the specification. Something like that would be really hard to do with a binary file format.

Plain-text allows for easy interoperability: HTML, FTP and Email were the foundation of the web. XML and JSON made it possible to write programmatic interfaces without having to share application logic.

Some examples of application document formats migrated from binary files to plain-text include Microsoft Office, and Xcode, both project and Interface Builder files.

Using plain-text seems a good approach to keep in mind when writing applications that save documents, data or state to disk.

@eneko eneko added the Tips label Dec 28, 2020
@eneko eneko closed this as completed Dec 29, 2020
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Projects
None yet
Development

No branches or pull requests

1 participant