A repo that generates personalized RSS feeds pointing to Bandcamp featuring aggregated updates on releases from those you are following, Wishlist updates, and Collection updates (purchases) with a reach goal of following updates, all compounded daily into 1 RSS feed with a summary of daily updates.
5
stars
0
forks
source link
Make Wishlist Updates More Robust to Un-Wishlisting #9
This could be as simple as storing the top 20 wishlist items in the SSF, making it more of an SSPF, but then all of them would be persistent and we could just call them SSFs. Essentially, we would check for new items and if we found them, we would update with the current top 20. If we found no new items we would leave the top 20 already in the file. When we need to aggregate them, we only want the new ones, which we could prefix with NEW: or something
Here's what needs done:
When you find a repeat wishlist item (i.e. already exists in the SSF), don't end, keep looking and store the top 20 in the SSF without any prefixes
When you find a new wishlist item, keep looking and store it in the file as NEW: {link to release}
Update the RSS aggregator to only look at entries that have the NEW : prefix
This could be as simple as storing the top 20 wishlist items in the SSF, making it more of an SSPF, but then all of them would be persistent and we could just call them SSFs. Essentially, we would check for new items and if we found them, we would update with the current top 20. If we found no new items we would leave the top 20 already in the file. When we need to aggregate them, we only want the new ones, which we could prefix with
NEW:
or somethingHere's what needs done:
NEW: {link to release}
NEW :
prefix