Unique Identifiers – Part 3, Values

So far in this series, I’ve been describing a scheme for Unique ID’s. We’ve gone through the mental gyrations of what the parts of an ID should consist of, but haven’t come to a conclusion yet of the final format. As you’ve seen by now, the more characters we have available, the more comprehensive our ID format can be. With registration, we can also cut down the size to a short string.

Before we cut it down to it’s minimum, though, let’s look at values. I’d like to format to not only be able to store unique ID’s, but also values so that we can map relationships against a number. Once we find a minimal length for useful numbers, then we can determine how to wedge our ID scenario into that space.

Through the many years I’ve been crunching number, I’ve been bitten so many times by software, especially Microsoft Excel, using floating point values. For the unaware, when a program stores a value, it has a choice — it can either store it as an integer, or use much less space by storing an approximation. The software very seldom tells you this, and if you rely on your numbers, your computer lies to you. I just can’t describe how wrong that situation is. By the time you notice the tiny bit off you are, you’re already layers deep in hundreds of calculations. Good accounting programs store numbers as integers, and even in MS Access currency is normally stored as an integer with four decimal places.

Hey, I don’t mind if a computer program can’t store pi accurately, but I want it to tell me that what it displays is an approximation if I need to know that for my purposes. So if it’s an approximation, how was it done? Was it truncated, rounded up, rounded down, an exact half? If a computer makes a mess of things on my behalf, I want to know about it.

When computers give you a number, such as 5,000, there is no information as to how many significant digits there are in that number. If this represents 5 boxes of 1000 paper clips, you can be pretty sure that each box is almost exact, maybe have one or two extra clips in it. But I could have derived this from the number of feet I guessed was equal to one inch I measured on a map. If I make a mess of things, I want to be able to document it.

If I know that a value is wonky, I can, if needed, use techniques such as significance arithmetic to make known how much an end result is off. It makes a big difference if the basis of the number is measured or counted.

Now we can start to enumerate the relationship of a value to a stored number in a computer: the basis of how it was derived, the number of significant digits, the accuracy of the final digit, it’s sign, and exponent. Some of these can be encapsulated in the way most computers store a floating point number; sign, exponent, and fraction are encapsulated in 32 or 64 bits of binary data.

Unique Identifiers – Part 2, About Time

Time pervades all things. I remember in my first Geometry class, the teacher talked about three dimensions, and time being the fourth. This concept bothered me for months, it just didn’t seem right to me. A line, for instance, cannot be if it doesn’t exist for a period of time. And when old teach was trying to describe to us what a point was, the geometric concept of it, my confusion cleared up. A point, he said, had no length, breadth, or height, it was only a point. At which one of my little imaginary friends whispered in my ear, “But it has time. It is a point in time.”

I digress from the subject at hand to make my own point. Mankind’s understanding of the true nature of time is weak. We may think we can go back and forth in time if we can just find a De Lorean and build a flux capacitor out of junk parts in the garage. Or we can accept Stephen King’s explanation of the Langoliers, that eat away the past after the present is gone.

In my previous missive on Unique ID’s, I went through all the mental hoops I could to describe how an ID generator could be itself identified by thread, process, computer, and public parts. Now, we’re only required a series of numbers to finish off the Unique ID. That could be as simple as a counting loop within the thread of execution, and we might want to keep that in mind.

But usually, computer programs have a very simple way to get a time value, and that can come to our aid. At the risk of defying the You Ain’t Gonna Need It (YAGNI) concept, we’ll go on to figure out how we can incorporate time into our Unique ID’s, or at least leave room for implentation if we want.

Suppose we have gone through all the hoops to figure out “the best thing to do” for our computer process, and we have two or more items of equal weight (whatever we’ve defined that to be) in contention to be the winner. We could pick a random choice, or as random as our machine will give us, and hope that luck will lead us clearly to our goals. But if we keep arriving at this same decision, we could end up that a value is never chosen, that our luck has gone sour and karma has caught up with us. So, one way out of this mess is to choose the oldest value.

Having a timestamp at this point in the consideration process is extremely handy, in that we don’t need to implement another decision level. We just pick the ID with the smallest time value. Next time we’re at this juncture, our old value will have been gone, and we’ll pick the oldest ID now available.

One of the downsides of doing this is that we’re now shifting our decision process from a comparison of whole ID’s to a relation of embedded values. That will add additional complexity to our program thread, and we’ll only be able to determine its effectiveness when we finally get to implementation.

If we look back at the original spec for UUID’s, we see that time is captured at 100 nanosecond intervals, or 10 million of these values per second is our granularity. When programming, though, we’re very lucky if we can get anything better than granularity to the second without using an external library or weird procedure. I’ll suggest here, then, we keep our programming simple and call seconds as “close enough” for our purpose. This will probably bite me in the butt later as well, because YAGNI.

So, let’s look at the value that gets returned when we ask for a POSIX time value. It is “the number of seconds elapsed since midnight UTC of January 1, 1970, not counting leap seconds.” If we store this value in 32 bits of information, we’ll run out of space on January 19th, 2038. But this doesn’t bother us, as we’re adamant to store our ID in base 32, and that will get us through the rest of this millennium with seven characters.

Something cropped up when I was originally researching UUID’s for this project a few years back, what do you do when someone sets the clock backwards? Well, we could just ignore it if we trusted our system to check for duplicate values. That’s not in my nature, though, as we should try to do always be doing right thing when dealing with lower level functionality.

The UUID spec says they would use a Clock ID set at a random value, then increment the ID by one if a reset was detected. Well, that’s fine, it keeps the ID unique. But it doesn’t help with the sorting, because you’d have to intersperse the clock ID into the right spot in the series somehow. Thankfully, these resets are few and far between, and hopefully the clock resets on a fairly regular basis.

That just about wipes me out as far as using time as part of our Unique ID scheme. I ain’t gonna use it, mostly because of the shifting context problem. We’ll think about keeping space for it in our final version, as we can capture it with eight characters.

Unique Identifiers – Part 1, Identifying the Generator

Is a UUID really unique? This post seems to think there are problems. http://blog.joeware.net/2005/06/19/42/

There are several types of UUID’s, the most common being (supposedly) randomly generated, and one based on time and MAC addresses. There are problems with each of these.

The above link has good opinions on the fallacy of randomly generated addresses. Besides bad implementations, there is also a great reason for not using them — they are so damn unique, there is no way to look them up unless you have a database of all which are in use. You can’t specify ranges where you can divide the database into segments.

MAC addresses have nothing to do with Apple Macintosh computers, although the computers have MAC addresses in them. MAC addresses are unique identifiers brazed in read-only on your computer’s network card. Ranges of MAC addresses are doled out by a central authority to network card manufacturers.

There is something obviously wrong with that scheme in that we’re expecting the network card manufacturers to police themselves to ensure that addresses aren’t duplicated. When you pay sixteen dollars for a piece of hardware, made in the poorest manufacturing environment in the world, do you really feel that good that the manufacturer has paid their dues and been in compliance with this directive, that isn’t even backed by law? OK, but just be sure you take that painted wooden play block out of the baby’s mouth.

If that wasn’t enough, there’s a real possibility that someone has set up duplicate MAC addresses on their LAN intentionally. Some ISP’s (Internet Service Providers) and wireless configurations use MAC addresses to allow access to the next network over. Of course, you and I wouldn’t come up with a scheme like that since it relies only on the obscurity of the address, and not a shared secret or hashed password. But that’s the nature of the market.

So what happens is that the customer registers his MAC address with the ISP, and is now allowed into the network as long as he’s using that ethernet card. Later on, the customer trades in his computer, or replaces the ethernet card that’s gone bum, or sticks a router in between his computer and the internet. Whatever he’s done, he needs to change is MAC address; either register his new one with the ISP, or change the new hardware back to the old MAC address. Given the choice, he will probably not want to spend quality time listening to muzak while waiting for customer service to answer the phone and then find someone at the ISP that has a clue.

So, especially with the “insert a router in the mix” scenario, there’s a good possibility that there is a duplicate MAC address on the LAN. Intentionally done, with good intentions. The intentions don’t even have to be good, as one could use this scheme to leech access from the ISP from multiple locations.

Finally, MAC addresses are a lousy way to do generate unique ID’s that represent real-world data. That’s because in order to look up an unknown piece of information, you need a map of MAC addresses to computers. When collaborating with others outside your LAN, you’d have to replace your UUID’s to some central MAC address.

You also have a problem within one computer itself. You may want multiple programs to be able to generate unique ID’s, but there is only one MAC address per computer. So, you would have to have some locking mechanism so that more than one process can’t have access to the ID generator at a time. This scenario is even specified in the UUID specification document, www.opengroup.org/dce/info/draft-leach-uuids-guids-01.txt

Providing a system-wide lock makes programming a tool much harder; harder than it has to be. At a particular time, a process has a unique process id, which the computer uses to keep track and schedule each thing that’s going on. Well, with Linux 2.6 (the current version), there are a maximum of 1,073,741,824 process id’s. Encoding that many numbers in base32 takes six characters. And in the future, Linus and crew might up that number — you would think a million things going on with a computer at once would be enough for anybody!

So it’s probable that when implementing a unique ID with a process ID incorporated, we’ll need to cut this number down to size. That would mean some extra programming in order to have a registry of processes allowed to give out an ID. So we’re back to a locking mechanism, but arguably more effective, since you only need to register the process one time, and provide some way to clean up the mess after you’re done.

But let’s say we didn’t want to make a registry, and just confine our ID’s to the computer we’re using right now. After all, we don’t need to come up with an ID for the computer until we’re ready to share the information outside of it, right? So we can flag the ID with a code that says we’re only going to have it valid on the current computer, then list the process ID after it. We could even have a multithreaded program be able to give a short ID to each thread; creating a in-memory mapping within a single program would be fairly easy, you’d just map the thread id when creating the thread, if mapping is really needed.

Now, if we’re not using MAC addresses as the primary way to identify the computer, what’s the best way to go about it? More registries, please! We’ll want to make some kind of global registry so that an unknown value can be looked up, and if the author wants to share that information, then you’d be able to get its definition.

At the public side, we may want to consider a range of five characters, which our base32 converter tells us will provide over 35 million identifiers. So that’s how many public domains would be available, and is still in the realm of a Sqlite database lookup without making a small computer go dizzy. Five’s a good number, since a sequence of characters can be read off over the phone and copied down without the recipient losing track of the characters spoken.

Now we have to have some layers of redirection from the public identifier to the individual computer. For one, this gives us some sense of privacy. But even more important, this allows a large organization to give a level of autonomy to its divisions.

Two base32 characters provide up to 1024 values, while one character is 32. So with five more characters, we can allocate one character to the process id registration (32 processes per computer), 1024 computers per division, then 1024 divisions per public identifier. Now, I’m curious if that would be a good spread. What do you think?

Another way would be to have 1024 process id’s per computer, using two characters, then let the public ID have 32,768 computer id’s to dole out as they see fit. Any more than that, they’d just need to get another public ID. Now I feel better about using that spread.

If we wanted to go whole hog, then five characters would be enough to directly convert internal IP addresses to computer id’s, no matter if they used the 10.x.x.x, 172.x.x.x or 192.161.x.x scheme, or even a combination of those. But now that we’re at our five-character maximum, we have to allocate even more characters for our process id. And if the company started using sub-sub-nets, which may be common with virtualized OS’s, internal IP addresses can very possibly be duplicated, as I’ve seen with VirtualBox.

For giggles, the full range of IPv4 address space comes to 4000000 in base 32. Some expect exhaustions of address ranges as early as two years from now; but I just don’t think it’ll happen for a while. But if the world moves to IPv6, that’s over ten with 38 zeroes after it — way to big for us to make a usable ID format out of anyway.

Well, I think that about covers all the scenarios we’d want to identify who generated the ID. Note that I am not making any effort to conceal privacy, if one wants to keep the data anonymous then they will have to arrange for an anonymous computer to do their dirty work. I would rather forsake simple anonymity than to make our ID’s so that they are incompatible with any type of accountancy.

Now we need a series of unique numbers for our ID generator to use. Which will bring me to my next post, about the strange concept we call time ….

Generic Program

The ultimate flexible program starts out totally ignorant. It uses a database to determine “the best thing to do at a particular time.”

The database returns: what to do (action), and how to do it (method).

How to do it, also know as the method:

  • Do it and report success or failure.
  • Do it and report what happened at each step.
  • Do it and report how long it took, along with success or failure.

Success or Failure reports include:

  • I don’t know how to do that action.
  • I don’t know the method in which you want me to do that.
  • I don’t know how to do that action, nor do I know the method in which you want me to do that.
  • I tried to do that action, but it was unsuccessful. The method was successful.
  • I tried to do that action using the method you wanted me to, but the method was unsuccessful.
  • I tried to do that action using that method, but something went wrong. I don’t know if it was the action, or the method used.
  • I did it. Success.

Software Limitations

Over the many years I’ve been using computer programs, I’ve been disheartened by how limiting most databases are. A programmer’s job is to make a useful tool, and if that tool is supposed to model the physical world, it needs to be able to capture more than just enough to supposedly do the work it set out. Even if the tool doesn’t use the data, the user always has a need to record their thoughts as they are working on something, and it’s not very expensive to at least allow a “comments” area for anything they may happen to dream up while using the tool.

It mounts the frustration of people using a program to find its inadequate for their needs after they’ve already invested a load of data entry into it. We’ll use a contact database for an example. Let’s say that one of the co-workers is going on vacation, and some new vacation contact information will only be good for a set duration, perhaps a phone number they use. What would be wonderful is if they wanted to call someone during that period the database would give the vacation number, but after the vacation’s over it would revert back to the old number. But if putting in that functionality is so difficult, why not give the database the tools to capture a message, and possibly incorporate an email reminder system?

As needs get more complex, we wind up with multiple records of the same thing across many databases. A person’s records in our office is in our contacts database, and in our accounting systems (up to three times, if they have multiple relationships to the business, such as customer, vendor, and employee). They might also be a member of one of the organizations we do staff support for, hence a record in yet another database that provides functionality our accounting system doesn’t do. When that person calls in to be helped, there are far too many places that we have to look to retrieve information on them, and it is a burden to update if they have a change.

The solution is to recognize that these databases don’t have a record of the person themselves; they have a record of the relationship between that person and “yourself”, as defined by the program. In the physical plane, your needs are greater than one programmer’s vision of what their tool is going to provide. They don’t recognize that, and ego plays a lot in it — they feel that somehow their tool is going to give you everything you need to manage what you have going on. Yet most all programs have very little capture of your own information, for some reason they objectify you as the luser, and some even punish you for all the trauma that programming for your needs has cost them as a programmer.

Programming tools

I’m trying to come up with the ultimate simple programming environment. I’d like to be able to support most any type of user interface, such as CLI (command line), ncurses (maybe via dialog), zenity, tk (I think it’s ugly, but might make a good fallback) and wxwidgets. And I’d like to be able to daemonize it simply and use it as a web server, or to be able to called by one.

I’ve been debating TCL vs. Python. Python is very nice, but it seems that I would have trouble making small executables with it. One of my main goals is for the deliverables to remain small as possible. A program call freewrap is advertised as making small executables, for which I could make TCL programs, and (optionally) a TK interface. Unfortunately, it seems freewrap doesn’t appear to work with the newest 8.5 Tcl/Tk, so therefore ugly GUI without Tk’s new theming. But maybe it’s still possible, or will be by the time I need it.

Since I want to make a generic view (from the Model, View, Controller pattern), I might still be able to use wxwidgets (and probably Python) if I want to deliver a beautiful interface — at the expense of deliverables size. How I’d wrap this into an installable deliverable I don’t know yet. That’s later, anyway, as well.

Sqlite and Tcl seem to be a very nice fit for what I want. D. Richard Hipp has some wonderful ideas about using Sqlite for a generic storage backend that would replace use of arrays; becoming part of the code itself. This goes along with my philosophy for a super-generalized computer program.

The program itself would know very little, not even its own name. It’s function is to run a loop: What’s the best thing to do, then do it. It would provide error messages if it couldn’t initialize. And that’s about it. The database would load code as needed.

I spent a good part of this morning reviewing Expect, as it has a signal handling functionality. It’s important that anything I write (and should be anything I do) maintain its cleanliness. So if there’s something dirty that should be cleaned up before exiting, Expect can trap SIGTERM (hopefully on Windows too) and run a cleanup function. It looks now as if there’s nothing dirty about opening the database, even with a table that’s only in memory. If so, I could load the cleanup functionality from the database, and keep it very simple.

Data would be stored as either a unique ID or as a value. From the past research I’ve done (which I seem to have misplaced at the moment), I came up with a scheme using 32 numbers and letters, which I called ZILO encoding. I named it that, since those would be the letters I would omit, since they look like other letters or numbers. Using 128 bits plus a few more, I’d end up with (if I remember right) 30 digits that could be handwritten and reread without error. This would store a GUID, a big integer, or just raw data.

Part of the ZILO encoding is the ability to sort data, which the default GUID format doesn’t lend itself to. Important data that’s part of the GUID should be available: where the ID came from, and what time it was when formed. Note I don’t subscribe to random GUID’s as MS devs do, as they are not truly unique.

The basic table format I described came in three parts: an ID, a subject, and an object. A representation of any unique or commodity object would get a GUID. Values stored in big integers would play a big part. Every object would be a class, an individual being a class with one object.

Subsequent entries would compound upon another, and a freeform database (within a database) would emerge. Every assumption made would be linked to a basis, which can be revised. Revisions would stay within the database, and bogus assumptions would be culled by a garbage collection routine. So there are no Updates or Deletes involved, just Inserts and Selects. The most valid truth would just come from the relationship which has the most recent good basis.

Why use a web hosting agency?

The concept.

An independent web hosting agency doesn’t look out for the hosting company’s best interest, they look out for yours. With Cooncat Publishing as your web hosting agent, your web presence is insulated from vendor lock-in, outages are minimized, your name is protected, and publishing procedures are customized to match your workflow. For businesses that maintain multiple websites, the cost of using Cooncat Publishing to arrange for web hosting costs less than if they purchased hosting themselves.

The risks.

It’s no secret that web hosting is a volatile business. Companies fold frequently, often leaving their customers with no easy access to their own data. Hardware fails after years of use, and they won’t tell you that they don’t keep a spare “RAID controller” in the house. Servers are loaded, often overloaded, with several customers’ data, and popularity of (or network attacks against) one companies website may cause your own to go down.

Sometime we’re own own worst enemy, especially when it comes to computers. We might delete a necessary file inadvertently, and can’t find the backup for it. We could update a web page on our main site, and forget to copy it to your backup server. Or we might get someone else to write our web page, and find out what they publish wasn’t at all what we wanted — after several other people have already seen it!

The benefits.

Uptime

Monitoring software installed in several locations around the internet keeps track of whether your site is accessable, and switches automatically to a backup server if there’s a problem. You’ll be notified along with easy-to-understand details as to what happened. Redundancy is built into each part of the setup. Image files are kept on separate machines, so in case the traffic on your site becomes overwhelming, the visitors will still get your message. Our monitoring software will pick up on this, and adjust for the increased traffic in minutes.

Workflow

Editing your website is always done on a draft copy. Publishing the draft is a separate, one-click step that’s done after the draft is approved, and multiple levels of approval can be set up. Once approved, copies of the draft are automatically published not only to the main site, but to all backups as well.

Two types of backups are used. A mirror is a full copy of your website, ready to serve if your main site goes down. An archive is also kept, that keeps the details of the changes you’ve made to the site, in case you ever need to retrieve deleted pages, or parts of pages.

Ownership

Cooncat Publishing’s hosting agency ensures that you always have ownership of the media you entrust with us. We share all the information with you about the services we arrange on your behalf in clear, concise documentation. We provide you the tools for you to automatically include your own computers as a place to store your backups. We even provide you with everything you’d need to do your own arrangements in case you no longer wish to use our services. Our philosophy is that we abhor vendor lock-in; service providers should compete for your business by providing excellent value.

No silver bullet exists.

Unfortunately, the very nature of the World Wide Web keeps us from being able to achieve full reliability. This is because there is no way to quickly switch a computer, whether a name server or web hosting server for everyone who may visit your website.

The problem is that your visitors’ internet provider may keep stale information in their own computers. So they visit your site at www.foobar.com, and get an error message. The monitoring software has already told “the internet” that you’ve moved the site to a host that works, but the visitor’s computer doesn’t get that information for hours later.

While this problem might not be completely solvable — mostly because some internet providers don’t follow the standards — there are steps that can be taken to minimize disruption. That involves recurring testing, and informing you if you have visitors who may not be able to visit your web site; as well as what to tell them so they can fix the problem. These simple changes on their end will also fix their setup so they will see many other websites they’ve been having problems viewing as well.

We understand the web, and give you the tools you need to get your message out.

Related articles:

Impartiality Key in Hosting Brokerage Business

Blogging Applications

A blogging app should be immediately available.

A typical session now.

  1. Wake up with a great idea for your blog.
  2. Turn on the coffee pot.
  3. Open blogging app and wait for it to initiate.
  4. Connect to blog.
  5. Jot down a quick outline of what you’re going to write about.
  6. Make up a filename and save it.
  7. What does the advanced toolbar do?
  8. An operating system update is flashing. Guess I should run that while I’m just blogging.
  9. Switch back to the blog, and write down the part of the main idea that I remember right now.
  10. I’m in my browser, and can’t think of anything this second; would it hurt to check my news site? I promise myself I’ll only read one headline.
  11. Oh, coffee’s ready. My throat’s dry. One more line and I’ll get a cup.
  12. Switch back to the blog, and write down anything just so I can get my cup of coffee.
  13. She comes in. “While you’re on the computer, dear, why don’t you go through this stack of bills?”
  14. Open online banking site so she can see you’re being helpful. While it’s loading, start ripping open envelopes.
  15. She went to get a cup of coffee. I can finally get back to blogging!
  16. Switch to blog. Write down the punch line of the blog post.
  17. Hear large crashing sounds coming from the kitchen. Jump up, “Are you alright?”
  18. Find out she’s knocked over the sugar bowl you’d left hanging precariously off the counter. Help pick up glass and sugar mixture.
  19. Back to the bills, she wants to know how much electric you used last month. Try to justify the usage increase.
  20. Check bank balance, and find out you’ll have to make a decision between electricity and food. Put off decision until you open rest of bills.
  21. OS update’s done, according to the annoying popup. Dismiss the popup, and leave the nagging icon on the screen. You’ll restart your browser later, right now you have work to do!
  22. Switch back to your blog. Start rereading what you’ve written so far to refresh your own memory.
  23. Hear commotion from the cellar. Run downstairs and find angry cat in the water of sump pump hole. Bring wet cat upstairs and wipe him down in the sink with the dishrag. Get hand scratched before done.
  24. Wipe up water and blood from around sink area. See you have five minutes before you have to start getting ready to go to work. Hang dishrag up to dry in laundry room and find replacement.
  25. Get back to computer. Your blog’s there awaiting attention. Mindful of the time, you switch back to the banking site. You’ve timed out, so you have to go back to the front page of the banking site to log in.
  26. Before the bank site lets you in, it asks you to pick a security question and come up with an answer. You choose “what’s your pet’s name?” and write down “scratching little sump pump bastard”. The phishers won’t guess that!
  27. Choose bill pay, and throw the electric company a thirty dollar bone. Hope they don’t shut you off before next payday, or you finish your blog post, whichever comes first.
  28. Close bank website, and your news page shows. Do a quick scan of the headlines.
  29. Check the time. You should be in the shower right now.
  30. Write down the partial payment on your electric bill.
  31. Close news site, and see your unfinished blog entry.
  32. Save your blog without starting to read it again.
  33. Open checkbook spreadsheet and type in the payment.
  34. Close browser and tell the computer to reboot for good measure.
  35. Take shower, get dressed, all that good stuff. While in the shower you remember some major thing you wanted in your blog post.
  36. Get back to computer. Dismiss the “Can’t shut down right now” popup and hit save for the checkbook spreadsheet.
  37. Spend a disappointing few seconds realizing your computer is going to reboot without giving you the chance to type your idea.
  38. Put some oil in the car so you can make it to work. She’s in the window waiting impatiently. Run back in and kiss her, acting like you didn’t forget about that at all.
  39. Cat give you a dirty, accusing look. Hiss at the cat while walking out the door.
  40. Drive to work, holding throbbing scratched hand, trying to remember what you were blogging about.
  41. Money worries pop up in your thought process, or rather that you’ll be giving up beer and lunchtime snacks until next payday.
  42. Make a mental note that you need to make up with the cat or life will become unbearable.
  43. Get to work late and walk into a large staff meeting you’d forgotton about. Everyone looks tired, sad, scared or angry.
  44. Realize you’re not going to get back to that blog post today.

Help develop the future of blogging apps. Please leave your comments on how to avoid the problems.

Decisions

A decision has to be accompanied by a basis. Why did you make the choice for action? If this isn’t recorded, and you forget, you won’t be able to defend your actions.

If those who are affected by your choice wonder if they are benefitted, they should be able to research your rationale without having to interrupt your life to recall the basis of your decision. That is, if you’ve recorded the basis of your decision understandably, and haven’t changed your mind since then without updating your basis. In that latter case, you’re in trouble.

By not sticking with the program, your crappy decision is about to affect someone else. If they are more cognizant of the situation than you were at the time of your original decision, they will call you on it. But if they take faith in your basis, take action on the same conclusion you did, they will go happily down a false path.

Depending on the potentials along the way, you’ve set them up for disaster. Now what will you do, plead ignorance?

Newer entries »