At a conference last week, I was subjected to all kinds of talks on data, data integrity, data storage, data in the cloud, and data-centered design patterns.  One speaker summed things up perfectly:

If you make the center of your world data, then everything else becomes easy.

This got me thinking.  From a computer-centric viewpoint it all makes sense.  Our machines are built specifically to store data, crunch data, and present that data to the user.

But I don't just work with computers.  I also read a lot.  And I write a lot.  And I publish books.  And even in the computer world I spend a great deal of time working on WordPress - a tool used primarily for writing.

From the media-centric viewpoint, this argument stops making sense.  The most important piece of this blog, for example, is the content.  And that content is stored, essentially, as blobs in the database.  The data on my server consists of titles, keywords, post dates, views, comments, and other meta information that adds little value to the content itself.

This meta doesn't provide any meaning to the data/content it's meant to represent.  And that, is a huge failure on our part as developers.

Carlos

My freshman year in college, I took Poetry 101.  It was a great class, filled with roundtable discussions, interesting reading assignments, and daily tear-your-work-apart sessions intended to help us become better writers.

One of the best poets in our class was an older student named Carlos.  He and I shared a couple of classes, actually, so we got to know one another's work fairly well.  He was a huge Shakespeare fan, but avoided allusions to the Bard's work in his own. He thought it was too cliche.

His final poem for the class was particularly interesting.  It was an artistic rant against the rules of writing.  It called out the authors of the various writing guides we'd studied and criticized their narrow views of art.

One of these authors was named Mary Oliver - I checked, I still have her book on the mechanics of poetry.

In Carlos' poem, he lays out great arguments both for and against using Shakespeare references in modern poetry - and slams Oliver pretty hard for how she claimed all poems were somehow a reference to Shakespeare.  At the closing of that stanza, it almost looked like Carlos made a mistake.

On a single line he wrote: "Marry Oliver."

Then went on to give up on respecting outside opinions and went on to his next artistic target.

Most of the class - including the professor - missed the reference.  "Marry" was an often used curse in Shakespeare's writing.  Using it as part of Oliver's name was a sideways jab at her, and quite artistic in a sense.  Berating someone for overusing Shakespearean references using a Shakespearean reference.

But if you didn't know Carlos, you would have seen a typo.  I guarantee that I took away a completely different reading of that poem than the rest of the class because I understood the context from which it was written.

Context

How do you store this kind of data about a story?  With a typical WordPress/Tumblr/MovableType/etc website, you'd put the poem in as a content string, Carlos in as the author, and 2002 as the year of publication.  You might throw in a few keywords - Shakespeare, Mary Oliver, art critique.  You might even tag it with the name of the class and professor.

Where is the context stored?

Where is Carlos' backstory?

So much of the poem's meaning was not actually in the poem itself, but in the story of the author who penned it and the circumstances surrounding its writing.  None of that can be categorized as meta information in a data-centric database, though.

The Problem

I can't say I have a solution to this problem.  At least, not yet.  But I can characterize the problem fairly well at this point.

Every story is made of discrete parts.  A logical idea would be to split it up into its relative parts - each sentence then becomes a piece of data.  But sentences alone are not sufficient vehicles to convey meaning.  For example, look at the sentence "Jesus wept."  Now look at these two possible contexts:

When Mary reached the place where Jesus was and saw him, she fell at his feet and said, "Lord, if you had been here, my brother would not have died."

When Jesus saw her weeping, and the Jews who had come along with her also weeping, he was deeply moved in spirit and troubled. "Where have you laid him?" he asked.

"Come and see, Lord," they replied.

Jesus wept.

Compare that with this:

Jesus Torez was an energetic child. He loved to ride his bike around the neighborhood and play make believe in the alleyways down the street from his school.

One day, Jesus found the door open to the abandon building he liked to think of as his "Intergalactic Headquarters."  He didn't even hesitate when the idea occurred that it would be more fun indoors that outside.

He crept inside and surveyed the rundown plank flooring.  There was a light on upstairs, so Jesus tiptoed in that direction to investigate.

Just as he shifted his weight to the first step, the plank broke and dropped him through the floor into the basement.

His leg was broken.  Jesus wept.

Different contexts, different characters, different stories.  In one, you're dealing with Christ and the phrase "Jesus wept" brings up questions of his humanity, his relationship to the deceased in the story, and how these events fit in with the rest of his story.  In the other, you're dealing with a young boy in an awkward - albeit self-induced - horrific situation.  The phrase "Jesus wept" conveys a different kind of pain, and possibly even some panic.

You can't separate stories into mere sentences and work with those building blocks as discrete items - in isolation a sentence means nothing.

A story is, at best, compared to a woven cloth.  Hundreds and thousands of discrete threads are woven together to create a large picture.  It might be a tapestry, a mono-color sheet on a bed, or even a random smattering of color in a carpet block.  In each case, the cloth is greater than the sum of its parts.

And a story is greater than the collection of sentences that comprise it.

The problem is that it can't be properly understood as just a story.

Data structures today give us one world or another - either a story is one, monolithic data element or it's a set of discrete, related, but independent data points.  I say it's more, and current data structures fail to properly catalog stories, articles, news feeds, blog posts, and the like.

Distilling any piece of art into the data we catalog today robs us of its meaning.  I think we should take this as a challenge and see if we can do better.