• 0 Posts
  • 10 Comments
Joined 1 year ago
cake
Cake day: June 16th, 2023

help-circle





  • For me the decentralized nature of Lemmy / Kbin, (the only two reddit clones i know right now), is what’s really bringing me in.

    I’ve been on Reddit for over a decade and seen communities completely close and go private because either a lack of moderation or infestation of bots. With how Lemmy and Kbin are set up, if one group of people don’t agree with another, they can set up shop on a different server.

    This really gives users power over communities instead of having to do different naming such as r/animemes vs r/goodanimemes.




  • Given this project has been around for many years, (looking at their releases), I wouldn’t say it’s “early” to modularize their code. It’s very common practice to abstract out / move commonly executed code into their own packages and modules to allow ease of reuse across the app. This way if an entire subpackage needs to be moved or deleted, all related code could be affected at once and code which references it, simply needs to be edited. Typically these places to edit are much easier to handle since most of “calling code” wouldn’t touch the modularized / abstracted code, only their callables.