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

help-circle



  • After reading this, I’m kinda curious how it compares to JetBrains. It’s becoming more and more VSCode like and I’m not a fan.

    Does Kate support or have plugins for renaming symbols, presenting documentation, formatting files, showing code diagnostics beyond syntax errors (for example code smells or so), have AI integration (explain this, rewrite this, replace this with prompt output, …), specific framework integrations (reactjs, django, actix, …), and stuff like expanding macros in C/C++ and Rust?

    Anti Commercial-AI license





  • 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













  • 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