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?
|
|
|
|
|
|
|
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. |
|||
|
|
|
|
I have slight OCD for hitting Save. If we're measuring in thoughts, I would say I do it after every one. |
|||
|
|
|
|
I save every time I stop typing and start thinking. |
|||
|
|
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. |
|||
|
|
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. |
|||
|
|
|
|
I save when I complete my thought, or right before I want to run my code. |
|||
