Skip to main content

Multitasking in the workplace

Multitasking in the workplace degrades the quality of work. Laser like intensity and single mindedness of purpose promotes quality. I am terrible at multitasking. I admit it, but only to myself. Is multitasking is a badge of honor? I doubt my co workers believe they are good at multitasking as well. Perhaps it's co worker peer pressure.

During my typical workday as a UI web developer I have 3 Photoshop files open, my phone concerning head set on and dialed into a meeting. I'm composing a design document in MS Word for another project. I'm coding another project in my editor. I'm checking code into the repository before the cut off which is fast approaching, and 3 people are asking me questions on IM. Maybe its peer pressure in the work place exacerbated by the current economic environment. I dare not show I'm incapable of multitasking! As pointed out (Hillstrom, 2002) "Technology is also creating the ability to leverage the efforts of employees more and more. As organizations use more team-building and decentralized decision-making, people are forced to become both specialists and generalists." Perhaps it will become less of an issue for future workers as teens eventually enter the workforce. Apparently, they seem to be able to handle connectivity and communication on multiple levels albeit mostly on the "entertainment" level. Will it translate to more efficient multitasking tasking in the future? Additionally, the tech innovations that this newer generation of workers could potentially develop may improve multitasking hardware and software.

The focus of my attention should be getting the cleanest locked down solid code that I possibly can develop before I move it into production. Yet, the very same people that expect that from me are the ones that impede it the most.
As (Dario D. Salvucci, 2010) points out it's "Sequential Multitasking". "We call this behavior Sequential Multitasking: although there may be some overlap between tasks during switching periods (e.g., when a person finishes typing a sentence before picking up a ringing phone), each task receives focused attention during most of its allocated execution time."
I think it all stems from the false notion that we are getting things done simultaneously, when the fact is we are doing one thing at a time and switching back and forth quickly.
So quickly as to delude ourselves into thinking we are doing them simultaneously. It may delude our egos into thinking we can do tasks simultaneously and do them well, however we are not.
I totally agree with Goodman's assessment: "...High multitaskers are not better at anything. Even multitasking. They are worse"

For me, I just want to add quality to my work. Allow the next developer that uses it to see that I have integrated it in the cleanest and secure way possible.
This is not walking, chewing gum and listening to a podcast. This is a product being developed for a business that creates value.
As (Greenblatt, 2010) points out "Multitasking leads us to do everything a little bit worse all the time. Certain types of tasks can be done simultaneously pretty well. Carrying on a conversation while stirring spaghetti, for instance. Or listening to music while working on a term paper. The problem for many people is that they're trying to do quite similar tasks at the same time, and that turns out to be surprisingly hard to pull off, causing the most interference".

References:
  • Dario D. Salvucci, N. A. (2010). The Multitasking Mind. Oxford University Press.
  • Greenblatt, A. (2010, 09 24). Impact of the Internet on Thinking Is the Web changing the way we think" Retrieved 2011, from CQ Researcher: http://library.cqpress.com/cqresearcher/
  • Hillstrom, L. C. (2002). Multitasking. In L. C. Hillstrom, & K. Hillstrom, Encyclopedia of Small Business (pp. 762-763). Gale, Cengage Learning.

Comments

Jackie Co Kad said…
Hi, Great.. Tutorial is just awesome..It is really helpful for a newbie like me.. I am a regular follower of your blog. Really very informative post you shared here. Kindly keep blogging. If anyone wants to become a Front end developer learn from Javascript Online Training from India . or learn thru ES6 Training in Chennai. Nowadays JavaScript has tons of job opportunities on various vertical industry. HTML5 CSS3 Javascript Online Training from India

Popular posts from this blog

Maine summer 2014 photo shoot

Wells Maine beach drive I made a trip up to Wells-Ogunquit Maine last year for my vacation. I was fascinated with the coastal rock formations along the beaches that other photographers had posted throughout the web. I wanted to try my hand at capturing the dawn light and the sunlight reflecting off of the rocks with a long exposure time. In addition, some much needed away time to ride my bike and read. Marginal Way Day one consisted of scouting locations. Perhaps a quick bike ride or beach outing followed by a lobster sandwich. After unpacking I took my bike out through the streets of Wells Maine. I was struck by how similar it was to the town in the movie Jaws Martha's Vineyard. Wells is a small town with narrow streets and older homes. The beach drive featured a fantastic stretch of road just perfect for biking. After a great seafood dinner I scouted the Marginal way.  A combination of site seeing and shooting with the iPhone.  I really underestimated the amount ...

When inspiration happens, what stands in the way?

I was making my way down a wooden walkway on an early morning photo outing - backpack and tripod in hand – when I was struck by this eerie scene that appeared before me.  A perfect moment, I instinctively reached for my iPhone and snapped off this. Had I taken the time to pull the equipment out and set everything up on the tripod, would I have grabbed a better image? Would it have the same wow factor had I used the better equipment? Would I have missed the sun in that particular spot in the sky? At what point does "gear" get in the way of creativity? Should inspiration drive the hardware choices? At a recent photo club outing, the leader was explaining why he continued to use older photography equipment on his hikes. His intention was to always travel light. His tripod was small; it featured no ball head mountings or other bells and whistles, very bare bones. His camera was a point and shoot with an attached lens. He would simply stoop down at an interesting scene and fir...

:nth-child structural pseudo-class selectors

There are 4 pseudo-class expressions that are part of the :nth-child pseudo-class. Structural pseudo-class selectors target HTML elements based on the DOM tree. Basically, elements that cannot easily be targeted by simple selectors or combinations of selectors. What makes pseudo-classes so handy is the ability style elements dynamically based on its position in the DOM. :nth-of-type(N) :nth-last-child(N) :nth-child(N) :nth-last-of-type(N) :nth-of-type(N) selector My favorite of the 4 is the :nth-of-type(N) selector. The nth-of-type selector allows you to select child elements of a parent based on the particular type of the element, for example every 5th "li" element in a list. You can select even or odd elements, or the nth (order number) child in the group of elements. The class accepts the argument "n" which can can be a keyword, a number, or strings "odd", "even", or an expression "-n+3". Let's look at a simple but ef...