vote up 2 vote down star
2

G'day,

As written about many times, e.g. Joel's article, it is hard to get back into the flow when you've been working deep in a complex task and a PHB comes up and asks you to drop that and work on this other task.

The other task usually being something really important like writing an email to him to report on something that he didn't understand. ;-)

Does anyone have any ideas or suggestions about how to minimise the time to get back in the flow of the interrupted task?

I've heard of techniques such as:

  • taking notes while working
  • stop listening to a piece of music when interrupted and then go back to listening to it when you go back to the task.

Are there any techniques that you've found that help you in this situation?

flag

I have taken to keeping all non-essential windows shut, e.g., browser, IM, email, etc. – Paul Nathan Nov 3 '08 at 22:15

7 Answers

vote up 8 vote down check

I always keep 3 notebooks on my desk for times like this.

The first is where I keep track of the task I'm working on, making notes every few minutes as to which part of the code I'm working on. This one helps me get back to position fairly quickly.

The second notebook is for notes on any tasks that I get interrupted with, any notes i need to take care of those tasks get put in there.

And the 3rd notebook is for the PHB. Each line begins with 'Interrupted by PHB at 'x o clock' to do 'mundane task', setting 'important task' back by 'x hours'

And then I just give it to him if he ever complains that the important tasks dont get done.

Notebook 1 helps you get back in the flow, Notebook 3 helps to stop it happening in the future.

link|flag
1  
That last notebook is one nice idea, I'll adapt it. Since I don't have 3 Laptops, I think I'll go for 3 Textfiles :D – ApoY2k Nov 19 at 15:48
vote up 1 vote down

I find that a quiet work environment helps. If your environment is already noisy or distracting, it's going to be tougher to regain your train of thought. Taking notes is also a great idea...I usually keep a text editor open as well as a notebook for random notes while I'm working. It also makes it easier to pick up where I left off on a Monday morning, after being away from the problem all weekend.

link|flag
While I agree that an environment that is noisy can prevent you from getting back into the flow, I wonder if a perfectly quiet environment can also be distracting. In a perfectly quiet environment, do some people space out? – Jim G. Nov 19 at 15:50
vote up 2 vote down

I don't think listening to music is a good idea when working on a task that requires concentration and is thus relevant to your "flow" question. (See peopleware - chapter 12 - "bring back the door")

http://javatroopers.com/Peopleware.html#Chapter_12

Perhaps the question is better asked - how to minimize interruptions. That is really the goal here. Not, getting back into a "flow". I think also that you will find that is subjective and varies form person to person.

link|flag
vote up 5 vote down

One thing you can do before going home, or on a longish break, is to write a unit test that fails, for the next task you want to work on. When you come back you'll be able to pick up from exactly where you finished.

Of course, this only works if you have time to write the test before attending to the interruption.

link|flag
Or, '//TODO: You are here' If you're in a hurry – tunaranch Nov 3 '08 at 21:15
2  
A quick note to yourself in the source code, prefixed by some junk that will cause a compilation error is just as fast, and helps get you back to your place with a quick recompile. The compiler will stop on your comment, then away you go... – JeffK Nov 3 '08 at 21:34
1  
Perhaps. The nice thing about the unit test is that it (hopefully) gives a small, contained problem to work on and by the time you've finished it you should be right back in the flow of things. – Adrian Mouat Nov 4 '08 at 18:12
vote up 1 vote down

Unit tests help you regain context after an interruption. If you write tests first, then when you're interrupted, you have a failing test to tell you where you were. Also, you don't have to reload your whole project into your head. You only have to load your latest test into your head.

link|flag
vote up 0 vote down
POPA
POP ES
POP DS
IRET

works for me...

Seriously though, I think that "starting afresh", that is, clearing your mind and working back up to the point you stopped at, can help you spot errors and bad assumptions.

This stops being effective if you're interrupted constantly, but then you should probably try to reduce your interruptions.

link|flag
vote up 1 vote down

At the moment I am trying to cultivate my grumpiness. I find this really hard since I am a naturally cheerful person but I think that being known as a grouch will make people think twice before asking me a question.

link|flag
I take it one step further, my cow-irkers think of me as eccentric, unpredictable, and a regular powder keg that can go off any time :)... unfortunately, thats usually outweighed by them knowing that my work product is also the best, and my clients are always super-pleased... :D – AviD Mar 12 at 19:54

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.