vote up 15 vote down star
1

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

1 2 next
vote up 38 vote down

I save every time I stop typing and start thinking.

link|flag
show 7 more comments
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
vote up 6 vote down

I save whenever I finish typing, and I can illustrate that with a comic (hoping I won't get downvoted for that)

alt text

link|flag
vote up 5 vote down

Ctrl+S and Ctrl+Shift+S is the most used combination on my keyboard...

link|flag
show 1 more comment
vote up 4 vote down

I save almost immediately after changing something.

I test after a few (5 - 10) saves

I commit after finishing any significant change that passes the tests

My CI server builds and tests 5 minutes after my commit.

link|flag
vote up 4 vote down

All the time. It's instinctive.

cntl-s in windows.

or

:w in vim*

or

: map v :w^M:!gmake my_prog 2>&1 \| tee results^M:!my_prog 2>&1 \| tee my_output^M

and then I'm hitting v all the time, when developing using vim*

just embedded paranoia from when I started in 1975, when things would "go south" for no reason! (-:

link|flag
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 1 vote down

Sometimes as often as every line, but usually after a "semantic unit" of code. I frequently forget to save when dong Edit and Continue in Visual Studio, though :-(

link|flag
vote up 1 vote down
  1. Save after typing in a "chunk" of code,
  2. (Re-)compile after a the functionality is added (or the bug fixed),
  3. Run my unit-test after the code compiles,
  4. Check it into version control after unit-test (and any regressions) pass.

It's nice if you editor has macros for each of the above steps...

link|flag
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 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 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

Every 1.3 minutes or less (if i stop writing and start to think i save)

link|flag
vote up 0 vote down

I only autosave. I hate working in IDEs that don't save for me.

I compile every five minutes or so. It may break, but that's ok; I'm saving. If I'm doing a large architectural change that spans more than a few files, again, I'll compile every so often just to get the save down (and also to make sure I'm not making stupid errors).

link|flag
vote up 0 vote down

I'll save whenever I finish typing something, though I maintain a mostly consistently applied rule of only saving when what I've got should compile.

Of course, using vim, the ":w" combination is pretty much hard-wired into my brain now.

link|flag
vote up 0 vote down

I save pretty frequently - certainly after writing any complex lines of code. Been bitten too many times by Visual Studio crashing at inopportune times.

But more than that, I also shelve pretty frequently so my code isn't only saved locally, it's saved on our source control server, at intervals before I am ready to check in. (For those not using TFS, shelving is similar to a private branch).

link|flag
vote up 0 vote down

I really don't know. I'm doing it unconsciously.

link|flag
vote up 0 vote down

Right after my code works, and before I move onto the next thing :)

link|flag
vote up 0 vote down

If you have either an editor that supports undo across saves, or an extension to your editor that makes each save create a local revision (sort of like local source control) then you can save with reckless abandon.

link|flag
vote up 0 vote down

I'm the same as some other posters - saving when I stop thinking. This has the added benefit of not saving screwed-up code, if I realise I've messed it up before I stop thinking that is :) For this reason, I don't like auto-save.

link|flag
vote up 0 vote down

I never press save, I compile, which forces a safe.

link|flag
vote up 0 vote down

I constantly hit Ctrl+S out of habbit. It's like I can't stand to see the little asterisk by the filename. It agitates me just looking at it!

link|flag
vote up 0 vote down

I never hit the save button, but always hit CTRL + S instinctively after I make some change. So I end up saving frequently enough to not lose more than 1-2 lines of work at any given time due to any incident.

link|flag
vote up 0 vote down

I never press save - I use Intellij IDEA and it saves files on frame deactivation. In case I corrupt something it maintains local history which works similar to version control system.

link|flag
show 1 more comment
vote up 0 vote down

(Ok...beating the dead horse a bit...sorry.)

A good rule I learned from gaming:

SOS = Save Often Stupid

Your soul or sanity may just need to be saved after grinding 10 levels and losing them all to a boss. ;)

Also learned to keep multiple saves for when you find out something you did was really stupid. ;)

link|flag
vote up 0 vote down

I save frequently. Whenever I complete a small little bit of code I save. If I modify something just slightly I'll save. I've been a victim of power surges and lightening strikes at the most inconvenient times. That is the downside to sunny-florida.

link|flag
vote up 0 vote down

Another CTRL+S addict confesses his sins :)

link|flag
vote up 0 vote down

I routinely go hours without saving, sometimes several. Lost power once while I was gone at lunch. I went a couple hours without saving. Came back, thought I was screwed. Booted up, Visual Studio actually brought me right back where I left off (recovered).

In fact, I never actually click the save button (or Ctrl+S). I just do a rebuild which essentially saves it.

link|flag
vote up 0 vote down

Hitting CTRL+S has become a habit now... I do it without knowing. As others have said already, I save when I pause coding and start thinking again. For that matter, I save a lot more often when I'm having trouble focusing on the project that I'm working on. =)

link|flag
vote up 0 vote down

I used Brief for OS/2 for quite a while - a bad version of a good editor. It crashed at unpredictable times. Ever since then I've been hitting Ctrl-S every minute or two.

link|flag
1 2 next

Your Answer

Get an OpenID
or

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