Like for many others, this *DOES NOT WORK FOR ME.* I really dislike autosave. PLEASE give us a way to permanently turn that off.
Thank you. dg On Monday, January 4, 2016 at 1:20:06 AM UTC-8, Min RK wrote: > > On Mon, Jan 4, 2016 at 1:21 AM, Jean Bigboute <[email protected] > <javascript:>> wrote: > > I often download Python tutorial notebooks from Github and go through them >> on my local machine. Notebook's Autosave updates the files as I am playing >> with them. If I want to discard my modifications and start fresh, the only >> way I seem to be able to is to either make a backup before starting or to >> download the notebook file again from Github. >> >> I am running Python 2.7 via Anaconda on Mac OSX El Capitan 10.11.2 using >> Safari (mostly) and Firefox (occasionally). >> >> Questions: >> 1) Is it possible to save more than one Checkpoint? If I save/restore, I >> only see one item in the Restore Checkpoint flyout >> > With a custom CheckpointsManager, but not the default one. I’m not sure if > there is one readily available that provides this. > > >> 2) Is it possible to turn off Auto Save by default? >> > Yes, in ~/.jupyter/custom/custom.js: > > require(['base/js/namespace', 'base/js/events'], function (IPython, events) { > events.on("notebook_loaded.Notebook", function () { > IPython.notebook.minimum_autosave_interval = 0; // disable autosave > > }); > }); > > -MinRK > > >> I found some threads on this for IPython notebooks using magics and >> config files. Magics have to be executed per notebook and I understand >> there have been changes to the config file system in general in Jupyter. >> >> Unrelated question: Is there a way to interact with this group from a >> newsreader? gmane.comp.programming.jupyter allows reading but not posting. >> >> -- >> You received this message because you are subscribed to the Google Groups >> "Project Jupyter" group. >> To unsubscribe from this group and stop receiving emails from it, send an >> email to [email protected] <javascript:>. >> To post to this group, send email to [email protected] >> <javascript:>. >> To view this discussion on the web visit >> https://groups.google.com/d/msgid/jupyter/07d5a480-aca3-41e6-8285-d7e0a7a8b8fc%40googlegroups.com >> >> <https://groups.google.com/d/msgid/jupyter/07d5a480-aca3-41e6-8285-d7e0a7a8b8fc%40googlegroups.com?utm_medium=email&utm_source=footer> >> . >> For more options, visit https://groups.google.com/d/optout. >> > > -- You received this message because you are subscribed to the Google Groups "Project Jupyter" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. To post to this group, send email to [email protected]. To view this discussion on the web visit https://groups.google.com/d/msgid/jupyter/85edcd2b-1319-42b5-96e2-7f742df4d1c5%40googlegroups.com. For more options, visit https://groups.google.com/d/optout.
