vote up 14 vote down star

When writing code, I've noticed that different developers hit the Save button at different frequencies. This is in addition to whatever AutoSave setting has been set. Personally I have the AutoSave set to 10 minutes, and I hit the Save button whenever I type a reasonable amount of code (perhaps 10 to 30 lines). How about you guys?

flag
show 1 more comment

36 Answers

prev 1 2
vote up 0 vote down

No auto save here, that would only save when the code is not executable, not a clever idea. My editor creates real-time backups of the buffer so if it crashes I can recover easily. How often do I save? Not so sure, when refactoring after each refactoring step to check if it still runs [in dynamic languages] and normally every run or ~20 minutes, whatever comes first.

link|flag
vote up 0 vote down

I have slight OCD for hitting Save. If we're measuring in thoughts, I would say I do it after every one.

link|flag
vote up 38 vote down

I save every time I stop typing and start thinking.

link|flag
show 7 more comments
vote up 2 vote down

I (necessarily) save just before I hit the compile button, which is very often. Every few minutes perhaps?

I remember years ago the Borland IDEs had a feature where they would compile from memory, because saving the file to disk before compiling was seen as "too expensive". I recall losing much work because the IDE crashed after not having saved my code for hours.

link|flag
show 2 more comments
vote up 0 vote down

I agree with J.J. and hit it when I'm done with my thought. I have tried my fingers to save frequently because I use a lot of editing programs that don't support auto-saves. I lost about half an hour's worth of code once due to a power outage...once bitten twice shy.

link|flag
vote up 17 vote down

I save when I complete my thought, or right before I want to run my code.

link|flag
show 1 more comment
prev 1 2

Your Answer

Get an OpenID
or

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