• 5 Posts
  • 15 Comments
Joined 10 months ago
cake
Cake day: September 23rd, 2023

help-circle













  • It certainly doesn’t help that Lemmy had and still has absolutely no sensible way to actually surface niche communities to its subscribers. Unlike Reddit, it doesn’t weigh posts by their relative popularity within the community but only by total popularity/popularity within the instance. There’s also zero form of community grouping (like Reddit’s multireddits) - all of which effectively eliminates all niche communities from any sensible main view mode and floods those with shitty memes and even shittier politics only. This pretty much suffocated the initially enthusiastic niche tech communities I had subscribed to. They stood no chance to thrive and their untimely death was inevitable.

    There are some very tepid attempts to remedy this in upcoming Lemmy builds, but I fear it’s too little too late.

    I fear that Lemmy was simply nowhere near mature enough when it mattered and it has been slowly bleeding users and content ever since. I sincerely hope I’m wrong, though.

    @PurpleTentacle@sh.itjust.works https://sh.itjust.works/comment/4451602




  • PumpkinDrama@reddthat.comOPtoFediverse@lemmy.worldWhat are your complaints about Lemmy?
    link
    fedilink
    English
    arrow-up
    21
    arrow-down
    8
    ·
    edit-2
    3 months ago

    I stopped using Lemmy due to instances blocking each other. I wanted to view content from specific instances, but none of the instances between the most popular ones allowed me to see all the content. I had to create multiple accounts, which made navigating between them cumbersome. This experience was more frustrating for me than any issues I’ve encountered on Reddit. I believe users should have more freedom to choose the content they see without having to create their own instance or manage multiple accounts. I was hopeful that this would change with user instance blocking implementation, but I feel validated in my decision after seeing that it hasn’t.




  • Related idea:

    https://reddthat.com/post/7516312

    To manage temporary files in Linux, a Bash script can move files untouched for 10 days to a timestamped subfolder, return modified files to the root, and delete files not modified for 90 days. Alternatively, a folder with symlinks to recently accessed files can be created using mkdir, find with -atime -7 to locate recently accessed files, and a while loop with ln -s to symlink each file into the folder. Both approaches help organize files based on access time to avoid clutter and remove stale temporary files. The Bash script offers more automation while the symlink folder provides a manual way to access recent files.