Way back in the day, when I was in college, I took a class on basic programming with C++. I only did okay in that class, but the concepts really stuck. There was something about decomposing work into it's fundamental units -- variables, conditionals and loops -- that struck me as true.

It was one of those things, a Fundamental Truth About The Universe, like that genes, not organisms, are the basic units of reproduction; or that evolution, not the id, is what explains human behaviour. One of those "Aha!" moments when the haze of confusion is swept away and suddenly everything makes sense.

And so my eyes were opened a little wider.

Wandering off into the wilderness

Anybody else, coming across a subject which they found so compelling, and which also offered lucrative career opportunities, would have made an immediate course change. But I was missing a couple of crucial skills:

  1. Setting goals for myself
  2. Making plans to achieve those goals
  3. Executing said plans

So this beautiful, golden opportunity floated right past me while I was busy taking the path of least resistance.

Soon, though, it became apparent to me that I needed to learn how to accomplish things, and so began the multiyear process of pulling myself up by the bootstraps: learning how to set goals, make plans and execute on those plans by setting a goal, making a plan and executing on that plan.

Finding my way back

And once I was started in a different direction, the momentum of life kept me going in that direction for a good long while. All told, it took 8 years for programming to find it's way back into my life.

It started off so innocuously. We needed a better way to manage ordering from our overseas factories. We had an Excel spreadsheet listing all of our current products.


"Yo Bossman, check this out," says Rico. "I added our current inventory and monthly sales numbers to the product spreadsheet, then wrote a simple formula to calculate how much of each product we need to buy."

"Sweet, that should save us a bunch of time," replies The Bossman, "but it's kinda confusing. Is there a way to only show a quantity for the products we do need to order and leave the others blank?"

"Yeah, I'm sure Excel can do that," says Rico as he Googles around a bit. "Hmmm, this should work: IF(QuantityToBuy=0, "", QuantityToBuy)."


Woah! A conditional. It's kind of a weird one -- if looks like a call to a function, instead of how I remember it -- but it's a conditional nonetheless.

Building a home for myself

Making software with Excel turned out to be alternately deeply strange and downright blissful, but it marked the beginning of my return to Computation. The next big step was converting my company's <table> & <img> based website to an HTML & CSS based design.

This is the point where things really start to go fractal. It starts with selector specificity. Then it's the CSS box model. Then semantic markup. Soon I realize that I need something to handle templating for the website. Now it's Wordpress and writing little snippets of PHP. Oh, and JQuery happened somewhere in there too.

The thing is, it just doesn't stop. Soon I'm making command line utilites and Coda plugins in Perl. Somewhere along the way I start using MacVim. And Git. Then command line Vim + tmux. And regular expressions, object oriented programming, recursion and Big O notation.

Then I get started with Ruby on Rails, so it's models, views, controllers, migrations, ActiveRecord, partials, REST, routes, HAML, SASS, YAML, unit testing, integration testing, Rake, Capistrano.

It's insane how much stuff you need to cram into your brain to be a decent web developer, and yet web development is just one tiny facet of the whole of Computation; a facet which isn't even that interesting.

Where things get really interesting is when you begin to realize that computation is every where, that there are other, very different forms of computation, and that some of those are way better at certain tasks than what we have now.

Thinking about all these things to learn, I can't help but remark to myself, "There's a whole lifetime of work in there for me."

What a thought!