You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Would it theoretically be possible to make procrastitracker save individual day files with information for the time of each recorded 5-second interval? From my calculations, using RLE and 16bit numbers to store IDs of a given window this could be quite realistic and wouldn't use excessive amounts of memory.
The text was updated successfully, but these errors were encountered:
That was originally left out to keep the data compact, yes.
It wouldn't be too hard to add in terms of data. Currently time for one particular app/url/doc is tracker in a list of days, each of which has a total time and a start time. We'd have to change that such that we'd allow multiple such day record per day, so that it can represent multiple sections of usage.
The harder part is changing the code to go along with this, since there is so much code that assumes there's at most 1 record per day.
Would it theoretically be possible to make procrastitracker save individual day files with information for the time of each recorded 5-second interval? From my calculations, using RLE and 16bit numbers to store IDs of a given window this could be quite realistic and wouldn't use excessive amounts of memory.
The text was updated successfully, but these errors were encountered: