cloud icon indicating copy to clipboard operation
cloud copied to clipboard

record modification time for each cell in sagews

Open haraldschilly opened this issue 11 years ago • 1 comments

To augment the notification system, I suggest to record the current time (UTC) as a timestamp for each cell in the sagews. E.g. pseudocode

from time import time
{ ... "mtime" : int(time()) }

At some point later, one could use that information to highlight recent modifications, or filter displayed cells based on time, etc.

haraldschilly avatar Nov 04 '14 12:11 haraldschilly

it could instead have the start and stop time, so you also know exactly how long it took to execute...

williamstein avatar Nov 04 '14 14:11 williamstein