• 1 Post
  • 8 Comments
Joined 2 years ago
cake
Cake day: October 6th, 2024

help-circle
  • moseschrute@lemmy.worldtoFediverse@lemmy.worldwe need more users
    link
    fedilink
    English
    arrow-up
    1
    ·
    edit-2
    7 months ago

    I’m feeling very burnt out. Lemmy is kinda an endless stream of political doom and gloom. For context, I’m in the US and already stressed out by our political situation. But I don’t come here to see more doom and gloom. It’s getting to the point where I think I need to get off for my mental health.

    Then there are all the people who if you don’t agree exactly with their opinion they downvote you to hell. You have left leaning politics but not my flavor of left? Downvote! You hate enshitification and big tech privacy practices, but you use a single piece of software that isn’t FOSS? Downvote!

    It’s so exhausting. I absolutely hate Reddit but I miss going on there and just laughing at how someone’s TV is too high. I miss laughing at how some restaurant serves food of shovels instead of plates.

    And that’s not even getting into the lack of content. That part I understand requires users like myself to be as active as possible. But it’s hard being active when I feel so burnt out from the other stuff here.

    Tbh, idk if these issues are specific to Lemmy or just the internet as a whole. I can only speak to the slice of the internet I find myself in. But I just wanna see people that are excited about things: photography, 3d printing, weird keyboards, etc. And that exists here, but it’s drowned out by all the doom and gloom.






  • I assume you mean when my app caches a post, but that post is deleted from Lemmy. That’s a good question. Off the top of my head, I would say as soon as I know a post is deleted, I would likely want to purge it from the cache.

    I guess it’s a question of whether I should respect the API saying the post is deleted or act like a temporary archive. I’m open to either. From a technical perspective, it would be simpler to act as an archive.

    As far as the type of cache I use, I may use a LRU cache, which will effectively prevent something from being deleted every time you view it. So even if something was cached a long time ago, if you pull up that post again, it will reset the timer.



  • My goal is to store everything offline for a period of time. Likely, it will be more complicated than this, but let’s say for now everything you see will be automatically cached offline for 30 days. Instead of a number of days, I will probably set a max size for the offline cache and drop the oldest data in the cache as new data comes in.

    The only issue here is I’m not sure how easy it will be to cache images offline. They will take up more storage, and I’m not as familiar with image caching mechanisms for apps.

    Do you know if Lemmy tends to have good alt text for images? That would be easier to cache offline instead of images.

    Maybe after the initial version, I can add the ability to pin a post to your cache so it doesn’t get cleaned up automatically.