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

help-circle
  • there’s like a million ways. ansible, copy /home with btrfs, just make a shell script that rsyncs everything, bare git repo, gnu stow, use nix os, etc.

    personally, i just use a shell script to restore everything from an encrypted rclone local backup (although i also backup to a server). i do this because writing the shell script was so easy because my data is very well organized.

    that’s probably the best advice i can give you – if your data is well-organized and free of junk (duplicates, broken files, useless files, etc) then that goes a long way towards streamlining any restore scheme.





  • you can easily find a content creator’s channel id by browsing to their channel page on https://yewtu.be and checking out the url.

    you can then put that into a file which will be interpreted by an rss feed reader.

    newsboat, for example, would use the following format (using LearnLinuxTV as an example):

    https://www.youtube.com/feeds/videos.xml?channel_id=UCxQKHvKbmSzGMvUrVtJYnUA YouTube "~Learn Linux TV"
    

    whereas an app like feeder would require an opml file:

    <?xml version="1.0" encoding="UTF-8"?>
    <opml version="1.1">
      <head>
        <title>
          Feeder
        </title>
      </head>
      <body>
        <outline title="Linux" text="Linux">
          <outline title="Learn Linux TV" text="Learn Linux TV" type="rss" xmlUrl="https://www.youtube.com/feeds/videos.xml?channel_id=UCxQKHvKbmSzGMvUrVtJYnUA"/>
        </outline>
      </body>
    </opml>