• 25 Posts
  • 1.19K Comments
Joined 2 years ago
cake
Cake day: September 1st, 2023

help-circle




  • the idea boils down to either outside instances aggregating votes made on their side and sending final voting result on a scale -1/0/1 or alternatively this aggregation could be done by the hosting community

    Could you provide an example calculation? I’m not getting it. Do you want to map values from one range to another e.g [-1000,1000] to [-1,1]? Will each instance have its own mapping?

    Also, computationally, I’m not sure how this is going to work iteratively. From what I understand, activitypub sends events either singular or batched to other servers e.g User X votes up, that’s an event sent, User Y votes down, that’s another event sent. If I’m not mistaken, lemmy doesn’t store the events it receives so reconstituting a vote tally isn’t possible.

    I kinda get where you’re coming from, but I’m not sure it’s the right solution.

    Anti Commercial-AI license













  • I wouldn’t make such a prediction as there are many possibilities and people like hanging onto things. One possible outcome could be the introduction of UBI, which could allow people only pursue the jobs or activities the want. That could be upskilling to become a research, becoming a race car driver, or a streamer, starting a company using AI, traveling the world, helping out the elderly, and so much more. There would still be production and consumption with popular products making some companies richer than others, but it could lead to a happier populace within a capitalistic system.

    Of course there are dystopian scenarios like cleansing of the unemployed, remigration of the homeless, forced labor, and so much more that could keep the capitalistic system alive.

    Anti Commercial-AI license


  • You can use transmission just for creating the torrent. You don’t have to use the actual client. If qbittorrent is your client, it’s possible to add the torrents to the list at the same time with

    for folder in * ; do
      transmission-create -o "$folder.torrent" "$folder"
      qbittorrent --save-path="$folder" "$folder.torrent"
    done
    

    Then you create the torrent and start seeding it immediately. If you’ve already created the torrent files

    for torrentFile in **/*.torrent ; do
      folderName="$(basename -s .torrent "$torrentFile")"
      folderParent="$(dirname "$torrentFile")"
      folderPath="$folderName/$folderParent"
      qbittorent --save-path="$folderPath" "$torrentFile"
    done
    
    

    Depending on the setup, you could also just sym link the folder into qbittorrent’s download directory and copy your torrents into a folder that qbittorrent listens to. There are many ways to skin the cat. Check out the command line parameters for your torrent client.

    Anti Commercial-AI license




  • Hmmm, is your goal to share each season folder separately? Is that why you would need scripting?

    Or are you looking to share everything at once without worrying about creating individual torrents? If this is what you’re looking for, then maybe Retroshare is what you’re looking for? I don’t know if stuff using eDonkey, Gnutella, or Kademlia are still around, but retroshare has file-sharing similar to those where you point the client at a folder and it just shares the entire thing.

    IPFS would’ve been great for this, but they honestly screwed the pooch on that (it hogs resources, doesn’t have good clients, and doesn’t have a bridge to torrents or other networks i.e you can’t go “oh, I have a torrent file, let me see if the files for this are on IPFS and download them from there”).

    Anti Commercial-AI license