security news

RSS

Subscribe to software releases

Gitlab

https://<theproject>/-/tags?format=atom

Microsoft Github

https://<theproject>/releases.atom

Medium

https://medium.com/feed/@username
https://medium.com/feed/tag/[tag-name]

Youtube

  1. go to the channel page
  2. paste the below js script into the console (F12)
for (var arrScripts = document.getElementsByTagName('script'), i = 0; i < arrScripts.length; i++) {
    if (arrScripts[i].textContent.indexOf('externalId') != -1) {
        var channelId = arrScripts[i].textContent.match(/\"externalId\"\s*\:\s*\"(.*?)\"/)[1];
        var channelRss = 'https://www.youtube.com/feeds/videos.xml?channel_id=' + channelId;
        var channelTitle = document.title.match(/\(?\d*\)?\s?(.*?)\s\-\sYouTube/)[1];
        console.log('The rss feed of the channel \'' + channelTitle + '\' is:\n' + channelRss);
        break;
    }
}

React ?

This page was last modified: