Skip Navigation
InitialsDiceBearhttps://github.com/dicebear/dicebearhttps://creativecommons.org/publicdomain/zero/1.0/„Initials” (https://github.com/dicebear/dicebear) by „DiceBear”, licensed under „CC0 1.0” (https://creativecommons.org/publicdomain/zero/1.0/)RY
RyanHx @vlemmy.net
Posts 1
Comments 10
YSK: Your Lemmy activities (e.g. downvotes) are far from private
  • People raise a good point that in countries where political dissent can actually be dangerous, this would very much dissuade people from voting on things they believe in, or even coming anywhere near Lemmy period.

    A better approach I think would be to have the user's host instance save their votes (the database obviously needs to remember what you voted on), but when federating those votes with other instances just hand over a cumulative total, e.g., "here on vlemmy.net we have +18 votes for this comment", which the other instances can then add. There's no need to send user information with that data.

  • Welcome Newbies!
  • I'd also recommend https://lemmyverse.net/communities for finding new communities as it sorts by active users and other metrics. Set which instance you're on with the house button in the top right so all the links take you to the instance you're logged in on.

  • [UserScript] Block posts and comments from specific instances
  • Yep I'm hoping we get more user-level control over the instances we see. This script is a naive client-side approach of just removing the HTML nodes of matching posts, but having it done on the server side would be ideal.

  • [UserScript] Block posts and comments from specific instances
  • Nope it can block other instance's communities. This script will block all posts at an instance level though, rather than having to keep adding blocked communities when people create more on that instance.

  • Block posts and comments from specific instances

    greasyfork.org Block lemmy instances

    Remove posts and comments from specified instances.

    Requires: greasemonkey/tampermonkey/other script injector.

    If your home instance is federated with instances you don't want to see, you can use this script to remove all posts and comments from that instance without having to block communities individually.

    Example:

    Line 17: const blockedInstances = ["example.ml","lemmy.world"];

    Will block:

    [email protected] posts to [email protected]

    [email protected] posts to [email protected]

    [email protected] comments on any post

    Usage:

    Edit the comma-seperated list on line 17 to the instances you wish to block. Add new ones inside quotes following a comma. Do not include https:// or trailing forward slashes in the instance text.

    9