Persistent User Storage?

I’d like to create an applet where I compare a runtime value to the previous time that the applet executed. For example, getting a number of sales from a user account, and then showing a celebration on the day when the user passes a certain sales figure for the first time (but not on subsequent days).

Is there a way to store per-user data in this way?

@markmcintyre, I think you could accomplish this using the cache Pixlet module linked below. Of note, each user’s cached data must have a name unique to them. If it’s the same, then every user of your app will pull the same cached data down from the Tidbyt server. If the data is sensitive, or otherwise not already publicly available, I wouldn’t recommend this method though.