Skip to main content

Involved vs. Committed

Chirck riding a pig I thought everyone had heard this by now, but I was in training and a bunch of people never knew the comment. So, here you go, share it wherever you see fit.

In a bacon and egg breakfast, the chicken is involved but the pig is committed.

Update: Seems a little more explanation may be in order. With a bacon and egg breakfast, the chicken is involved. Her eggs are taken to feed the people. The pig though, he's committed. Instead of taking something he produces, they take him and, uh, put him down, so that people can have their bacon.

Peace,
+Tom

Comments

Popular posts from this blog

Portrait Innovations

I mentioned in a previous post that I surprised Erin with pictures from Portrait Innovations of Rachel, Colin and (a few) of myself.  This generated more comments than 99% of my posts receive (read that as I received one comment).  Because both Erin and I have gone separately and had great experiences with the company, I figured I would spend a post explaining how it works, what's different from Sears and a professional photographer, and why I like them. Great Shots Erin and I went to Sears a LOT when Rachel was born.  We went every month to track her growth.  So far Colin's on an every 3 months cycle (second kid, life sucks, get over it and quit whining to me about being "fair").  One of the things with Sears that kind of bugged me was the set positions.  You know, laying on the floor with head propped on arms, sitting on stool cross legged.  While I think having some set poses are a good idea, at both Sears we've used, it's too extreme....

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) ...