Skip to main content

String Theory

I was watching Heroes this morning (gotta love TiVo) and one of the first things we see is a huge mess of strings crossing back and forth, filling up an apartment. On each string are pictures of newspaper clippings, photos and handwritten notes. When you look at it, initially it's a jumbled mess. A little later it all gets explained.

Each string is a persons' life. The notes and photos are key events in that persons' life. The strings are arranged in a way which shows how each life intersects with someone else's life.

In the end it makes for a huge display of an entire community.

We can see how the community is connected, where their lives moved together and where they separated. We can see all of the events of an individuals' life, or that of the entire community.

When you think about it, this would be a pretty amazing representation of life.

I wonder what it would look like if I built this string based on my friendships. What if we built it for everyone at work, or in our church?

Our entire lives are made up of the people we surround ourselves with. Our most important history is defined by our actions with other people and with God.

I wonder what my string would look like, and whether there would be a lot of intersections with others.

Peace,

+Tom

Comments

StaceyLynn said…
Although I didn't see this show, this ''theory'' sounds so...precise? I think it would be amazing to see entire communities and LIVES mapped out in such a way. I hope if this ever happens, I have a nice string.
Tom said…
Yeah, that's exactly what I had been thinking as well. I wonder how you determine what events are really worth cataloging, and do we even remember every life-changing event we've had?

But to see the lives of everyone I've been in contact with would just be incredible. I wonder what the linking all the bloggers for a certain blog would look like.

Oh yeah, and I certainly hope I have a nice string too.

Thanks!

Popular posts from this blog

Red-Gate SQL Compare

Every now and then I come across a program that becomes so ingrained in my daily work that I hardly know how I'd get by without it.  I'll probably break down a couple over the next few days, but for database work, I have never found anything as good as Red Gate's SQL Compare and SQL Data Compare .  Essentially these tools let you compare two SQL Server databases (all objects, users, permissions, functions, diagrams, anything) and update changes to whichever database you want.  This is amazingly useful for deploying database changes to a test or production environment (do it to production with ridiculous care, even though it will generate a SQL Script for you and run all updates in one transaction), and making sure everything is synchronized. For releases we can just generate the compare script, confirm that the changes match the updates we want to go out, and store it all in one place with the release details.  This is true for both the structure and the d...

Using an Array of Objects in C++

 I've been programming for years (over 35 at this point, which is crazy  to think about). My career right now is much more Software Architecture, and much less Software Developer, but I still get some time to write out GraphQL APIs in TypeScript, Vue 3 UIs, GitLab pipelines, and just generally making "big" decisions and helping make them a reality. It's nice every now and then to come across different articles and ideas that get me to remember life in college when I was using C++. Who would have thought C++ was the "hot new thing" right now (though I suppose it's more like Rust and Go, both great languages as well). One of the things I find frustrating with most technical posts is where they focus on the "how do I build an app" and not so much on "how do I do this one slightly useful thing". I figured I'd throw one together what was front of mind, using user attributes for permissions (i.e., Attribute Based Access Control - ABAC) ...

Advantages and Disadvantages of Using Microsoft Access

I've answered this question in some form or another far more times than I care to count.  Most often it's a question of "why do I need a fancy Web application when I can just build this myself in two days in Access.  I mean, the data's already in Excel."  So I figured I'd post out what I threw together, I know I've missed some points. Overview Microsoft Access is an ideal solution for relatively small datasets and a limited number of users. From the Microsoft Web site: “As a desktop database, Access is well suited for small, departmental applications. These applications may start as one user’s project. For example, an employee realizes that productivity can be increased if a paper-based process is automated with an Access application. Other users in the department recognize that they can take advantage of the application if additional features are added. As more features are added, more employees run the application. As time goes by, more and more Access...