vote up 2 vote down star

Assuming that you are working on a project that needs >10-20 seconds to build, what do you do while it is building?

I personally try to learn something in this time (visit stackoverflow, forums, read a book/article) or I try to help others from my team, if they have difficulties.

PS: A full build on a project I am working on takes ~4 hours.

flag

Answered here (stackoverflow.com/questions/476135) and here (stackoverflow.com/questions/55922/…) with very similar answers ;-) – divo Aug 13 at 16:19
@divo - hahaha, yeah... awesome how programmers instantly think of the same things sometimes – Jason Aug 13 at 16:22
Ups! Sorry for asking the same question again – Victor Hurdugaci Aug 13 at 16:27

closed as not a real question by divo, Neil Butterworth, skaffman, Thomas Owens, Bryan Oakley Aug 13 at 17:13

5 Answers

vote up 0 vote down

For the unpopular response.

  • Write a unit test.
  • Refactor some crap.
  • Write a unit test this cycle. Refactor the crap under test the next cycle.
link|flag
vote up 2 vote down

It sounds like you have a pretty good idea of how long your build cycles will last (e.g. some last 40 seconds, some four hours). I'd suggest finding tasks that fit into those gaps and fit those activities into your day.

Here's how I slice it:

20-60 seconds. Use the bathroom, fill the water, check for new email.

2-5 minutes. Respond to an email, have a snack, pet the dog.

10-20 minutes. Read some RSS feeds, walk the dog, StackOverflow.

30-60 minutes. Fitness (stretching, weights, jogging, etc...), book time, HULU time, prepare a meal.

link|flag
vote up 3 vote down

Ok so for a more helpful response, have a programming book like Code Complete (2) next to your desk and burn through it. No better time to read programming books than when you have nothing else you can be doing on your system.

for a list of books you can read, see this thread: http://stackoverflow.com/questions/1711/what-is-the-single-most-influential-book-every-programmer-should-read

link|flag
1  
What to read after finishing both Code Complete 2 and Clean Code? – Victor Hurdugaci Aug 13 at 16:15
2  
@Victor Hurdugaci: Rapid Developement, Pragmatic Programmer, and of course - Death March by Ed Yourdon :) – smok1 Aug 13 at 16:16
vote up 6 vote down

The obvious XKCD response:

Are you stealing those LCDs? Yeah, but I'm doing it while my code compiles

link|flag
vote up 1 vote down

I read stackoverlow :)

And BTW: never tell non-tech manager that you do not have anything to do, or you will end up doing something stupid (eg. trying to work on your computer while building).

link|flag

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