Skip Navigation
d4nm3d d4nm3d @lemmy.ml

reddit.com/u/d4nm3d

Posts 3
Comments 10
📢 ntfy Web Push / PWA: Request for testing!
  • ah fair enough.. well i'll stick with the app then :)

    But i'm happy i've gotten my own instance up and running now.. Last time i had problems with authentication but i found the instructions for the api key and its working well now.

  • Do you prefer x264 or 265 HEVC?
  • On his own releases he's started embedding the subtitles which is nice.. but yes i admit a lot of his rarbg uploads are missing the subs... I generally remux the rarbg ones with the english sub track so it's annoying when they aren't there.. I've had good luck grabbing them from subscene though.

  • Do you prefer x264 or 265 HEVC?
  • Search for the user Infinity on TorrentGalaxy

    They are re-uploading a lot of RARBG 1080p x265 releases but have are also releasing new movies / tv shows under their own tag with very similar quality and file sizes.

  • Useful Scripts @lemmy.ml d4nm3d @lemmy.ml
    0
    📢 ntfy Web Push / PWA: Request for testing!
  • Sorry... it took me a while to actually get round to setting up my server again.

    I think i misunderstood what this new feature is.. I'm using the android client.. Is this a better alternative to using the android client?

    I do have to say though.. since i last tried, the setup (or maybe just the instructions are clearer) is much easier.. I'm running it on an oracle free arm64 instance at the moment but may migrate it off to something that's less likely to dissapear..

  • Which are the most similar releases to rargb x265 1080p?
  • Infinity on torrentgalaxy has taken up the mantel.. They re reposting alot of RARBG x265 stuff but at the same time have started encoding new releases with very similar file sizes.

  • 📢 ntfy Web Push / PWA: Request for testing!
  • Definitely up for giving this a go.. Will look now.

  • Slow Tailscale speed
  • The tailscale guys are very responsive if you send them a question.. It's meant to be P2P but when it can't i believe it uses some kind of relay proxy server so at a guess i'd say it's that. Personally i run a subnet router on my LAN and not on individual devices.. maybe you could try that instead?

  • Proxmox Upgrade
  • I just did it, i hadn't realised 8.0 had gone gold..

    Process was simple enough to be honest.. I did the in place upgrade detailed here :

    https://pve.proxmox.com/wiki/Upgrade_from_7_to_8

  • Likely going to be de-modded and banned
  • as someone who often has to deliver bad news to customers, I appreciate your stance on recognising the human behind the account name.

  • Useful Scripts @lemmy.ml d4nm3d @lemmy.ml

    Allow SSH over Root - Ubuntu / Debian

    sed -i 's/#PermitRootLogin prohibit-password/PermitRootLogin yes/' /etc/ssh/sshd_config systemctl restart ssh

    0
    Useful Scripts @lemmy.ml d4nm3d @lemmy.ml

    Convert .magnet to .torrent

    I use this on my seedbox for anything sonarr grabs and sends to my blackhole that is a .magnet file rather than .torrent.

    #!/bin/bash File="$(find /PATH/TO/MAGNET/FILES -name '*.magnet' -print -quit)" set -- $File Filecontents="$(cat "$File")" set -- $Filecontents cd /PATH/TO/MAGNET/FILES [[ "$Filecontents" =~ xt=urn:btih:([^&/]+) ]] || exit; echo "d10:magnet-uri${#1}:${1}e" > "meta-${BASH_REMATCH[1]}.torrent" rm "$File"

    0