Wearing a Blazer at the Office in a Post-Covid World

To wear a blazer or not to wear a blazer, that is the question: whether ’tis nobler in the mind to suffer the slings and arrows of outrageous uppity fashion, or to take arms against a sea of bad fashion.

Enough Shakespeare… So, I started wearing a blazer at the office this week. It’s definitely a step up from what I usually wear – namely a graphic tee, a pair of jeans, ankle sock, sneakers, and a zippered hoodie. The blazer acts as a replacement for the zippered hoodie. I originally started wearing zippered hoodies because they’re comfy, the pockets are convenient, and they cover me up outside well.

The problem is that zippered hoodies aren’t a good substitute for a decent rain jacket in the Seattle, and the bunching up around the back of my neck has been annoying me slightly more these days.

As such, I decided to be a grown up and settle on a coat specifically for outside use, and keep a suit jacket I could keep at the office for when I feel like I want something more than a t-shirt on my arms. The suit jack does have the practical pockets, and the comfort. Actually, I really don’t know how much of an adult I’m being; I do have a Nintendo Seal of Quality t-shirt on underneath that blazer after all, as you can see in the photo. A metaphor for a man-child trying to be professional, perhaps?

Predictably, you’ll likely get looks and comments, all good though, but if you’re like me (i.e. somebody who considers sweatpants to be business casual) you will raise some eyebrows. So far, I’ve gotten “Look at you, all fancy!”, “Hello, boss.”, and my personal favorite “Good morning, Mr. Gentleman.”

Being the proverbial class clown that I am, I couldn’t help making jokes when somebody brought up my blazer like “Ya, I’ve got a job interview later this afternoon.”, “My wife made me wear it.”, or “I got a side-gig as an encyclopedia salesman.

So far, I’m definitely enjoying the trade-up of the hoodie for the blazer. I get looks, but ain’t that part of point? Covid is over. We’re back in the office. Embrace the office attire. Lastly, I work for mother-effing Nordstrom, and we make blazers look good!

How User Stories Relate to Use Cases

I’ve been reading a great book lately called Writing Effective Use Cases by Alastair Cockburn. I won’t go into details about how to write use cases, because the book does a better job of that than I could. One thing that isn’t clear in the book is how use cases relate to user stories. Since the book was published in 2003, user stories have become ubiquitous in sprints and agile culture, but not so much for use cases, which IMO is a shame, because this book has really changed the way I think about writing software.

Use cases are about a sequence of steps that need to happen in order to achieve a goal, and the branches of sub-sequences (i.e. extensions) spawned from something happening that wouldn’t occur in the main success scenario. Serializing these sequences and sub-sequences into use cases is mentally taxing work IMO (as Cockburn also points out in his book). Conversely, user stories, are usually a single sentence that sums up a single goal that an actor wants to achieve. User stories tend to be fairly easy to write; far fewer details are needed to write a user story than a use case.

Essentially, user stories are a specific way of writing a goal. Goals are a necessary component of use cases that can demonstrate the purpose of a use case. User stories also require a subject, which is necessary to elucidate a use case (i.e. the actor).

Given all that, based on my own experience, use cases and user stories relate to each other in the following ways:

  1. User stories can be used to sum up the Main Success Scenarios of use cases.
  2. User stories can help identify the primary actors of use cases.

Main success scenarios are really the most critical component of use cases; main success scenarios are the steps to get from the initial state to the goal’s state. How does one sum up a main success scenario into a single sentence? You guessed it: a user story. So, at the start of the sequence of steps in the main success scenario, one can write a user story as a mechanism of summarizing the entire sequence.

One thing that I’ve occasionally had issues visualizing is who the primary actor of a use case actually is. By quickly writing a single sentence user story in the form of “As a whoever, I can do whatever“, one can often identify who the primary actor actually is faster than they otherwise would have.

Hopefully this post helps you to successfully incorporate user stories into your use cases.