in reply to Conditioned Response (or lack thereof)

I'm more comfortable with the environment set up as I prefer (which basically means four Xterms open). We prefer the familar, and working with the unfamiliar requires more adjustment and mental energy for the same results.

That said, sometimes diagramming things or writing down pseudo code is very helpful. It forces you to think about the correctness of your solution and the design, rather than the mechanics of making the thing run. I still have trouble reading long sections of code out of books, though, which is odd after all this time.

I have a bad habit of writing just enough stub code to test, and then alternating between testing and adding slightly more code. That's good in some cases, but I think I'd be more efficient if I programmed bigger chunks at once.

Either way, you should not count lines in a file with a one-liner like this, even if it's shorter. It frightens people:

perl -pe "END{ die }" file_name >/dev/null

Replies are listed 'Best First'.
RE: RE: Conditioned Response (or lack thereof)
by puck (Scribe) on Oct 15, 2000 at 07:28 UTC
    Having your enviroment how you like it is very important. I have the small problem that my environments are different at home, work and Uni. Although I do use X at all of them with the same window manager (WindowMaker) so at least there is some consistancy there. I'm starting to think that it might be time to bring them all inline with each other. At work I use wterm with a transparent background, I'll probably change it to a solid background this week since it can be difficult to actually use (looks cool though!).

    On your comment about how you write code I'm starting to believe this is a good way to do things. I've just found out about Extreme Programming and this is part of what they suggest. Although, the test cases should be written first... You might be interested in XP, it's kinda cool.

    Cheers!