this post was submitted on 29 Jun 2023
59 points (98.4% liked)

Privacy

31254 readers
717 users here now

A place to discuss privacy and freedom in the digital world.

Privacy has become a very important issue in modern society, with companies and governments constantly abusing their power, more and more people are waking up to the importance of digital privacy.

In this community everyone is welcome to post links and discuss topics related to privacy.

Some Rules

Related communities

Chat rooms

much thanks to @gary_host_laptop for the logo design :)

founded 4 years ago
MODERATORS
 

Today was huge. I’ve separated myself enough from Google with Proton applications/services combined with other more privacy focused software and hardware to be able to completely delete my Google account.

It feels great to FINALLY be free of them. I’ve had an account there for decades.

you are viewing a single comment's thread
view the rest of the comments
[–] [email protected] 4 points 1 year ago

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>