Is there now a generation of users who never worked with files?
blog.hyperknot.com
Is there now a generation of users who never worked with files?
1–10 of 50 posts
Re: Is there now a generation of users who never worked with files?
#2Re: Is there now a generation of users who never worked with files?
#3Mightn't it be better to actually just autosave?
Re: Is there now a generation of users who never worked with files?
#4Re: Is there now a generation of users who never worked with files?
#5Re: Is there now a generation of users who never worked with files?
#6Mightn't it be better to actually just autosave?
Ideally, the client should only push changes to the backend and thus avoid the issue of sending redundant data entirely. This means re-implementing their saving solution, which is probably not trivial to do as you also have to deal with the issue of migrating existing save data to your new solution (which might mean some significant upfront costs).
The author didn't address this directly, but what they could do is just implement the autosave anyways and just deal with sending redundant data. But... this probably is quite expensive as the cost incurred per user is proportional to the size of the save data multiplied by the frequency of auto save.
Re: Is there now a generation of users who never worked with files?
#7I simply expect a webapp to autosave. Period.
Re: Is there now a generation of users who never worked with files?
#8Just automatically click the save button for the user on a one minute timer. Done.
setInterval(() => {
document.getElementById("save-button")?.click();
}, 60000);Re: Is there now a generation of users who never worked with files?
#9Re: Is there now a generation of users who never worked with files?
#10I don't understand why the author believes auto save would be so difficult to implement. Just automatically click the save button for the user on a one minute timer. Done. setInterval(() => { document.getElementById("save-button")?.click(); }, 60000);
Update, answered in detail here: https://news.ycombinator.com/item?id=42016231