Hello World (Corresponds to The Fool.) The traditional first program written in any computer language just prints “Hello World”. Fits with the idea of naïveté and starting-out. NULL Nothing, void. The value that is no value. In many languages NULL is a Pointer that causes a Crash if used. Lambda captures the idea of a function, a fundamental operation. Lambda has no name but enacts change. Alonzo Church’s Lambda Calculus predates digital computers but was in the 1960s implemented pretty much directly as the seminal language LISP. Recursion A function that calls itself … a concept defined in terms of itself … a story about the person telling the story. A spooky strange loop. The Crash The impossible has occurred and things cannot continue. Deadlock A cannot proceed until B finishes, but B cannot proceed until A finishes. A tangle of responsibilities. Not a crash exactly, but time has stopped. The Pointer A value that just tells you where another value is. Indirection. Some pointers don’t point to any value … they may be NULL or may be Bad. The Namespace Giving names to things, as Adam did, is a fundamental part of creation. Once named, the distinction between the thing and the name of the thing becomes spooky. “There are only two hard problems in computer science: cache invalidation and naming things” —Phil Karlton The Cache The cache is memory. The cache takes that which was arrived at by labor, and saves it for easy re-use … by naming it. A cache is temporary, but when the thing cached is no longer valid, how does the cache know to forget it? (See above quote.) The Class We group similar thing together, and the grouping becomes its own thing. What is the concept of “Dog”? A class. It isn’t a dog. It isn’t any concrete thing at all. It isn’t even the same as the name “Dog” (or “Chien”.) And what is the class of all classes but the edge of an infinite regress… Iteration “Do these things, then do them again.” The second program we learn to write is a loop that spews “Hello!” infinitely. Some loops are finite and some are infinite, and no computer can tell the difference, says Turing. The windmill peacefully grinding grain is a loop, but so is the sorcerer’s apprentice’s buckets flooding the castle. The Bug The computer does exactly what the program told it to do. It’s our fault that we’re not smart enough to fully comprehend any program that’s big enough to be interesting. We rush forward to say hello to new worlds we design – later on we find that what we said isn’t exactly what we meant. Avatar eyepool Badge image. I rediscovered this post of mine from 2015, which I still think is a brilliant idea (too bad I can’t draw!)

A few others that came to mind:

  1. Undefined Behavior: You have transgressed the Law, but were not lucky enough to Crash. The Specification no longer protects you, the rules no longer apply, anything whatsoever may now occur. Carry holy Kleenex.

14.The Monad: Change that is not change, time wrapped in timelessness.

  1. The Assertion: It tells right from wrong, success from failure. Heed its warnings.

  2. Continuous Integration: The stakes in the ground, the early warning system (see The Assertion.) This is the progress you have made, there will be no backsliding.

  3. P vs NP: Some things take a long time. Some things take a very, very long time. No one knows which is which.

More?

If there were to be a minor arcana, what would the suits be? And the ranks?

  1. 0xFFFFFFFF The highest possible number, negative one, full opaque white, the sentinel marker, something more exotic. Which is it this time?

  2. The Array Items, to each their place given. The representative of the edifice of Random Access. The only real data structure - everything else is built on top of it, after all.

  3. The Turing Tarpit A struggle through a gag in your brain, a blindfold in your head, forbidding you to think in all but the most limited of ways. But you still have all the power, if you can figure out how to weave your statements into the tapestry.

  4. Local Maxima You constantly did your best; at every juncture you chose the most valuable outcome; and now you sit at the culmination of your efforts. Are you satisfied?

  5. Forward Declaration A hint from the past to the future, from where you were to where you will be, from abstraction to implementation. Some processes are one-way, and you have no choice but to flow along with them, or halt evermore.