Blog content

Blog content

746 bookmarks
Newest
How to Unsubscribe From All YouTube Channels in One Go - How To Geek
How to Unsubscribe From All YouTube Channels in One Go - How To Geek

// YouTube bulk unsubscribe fn (async function iife() { // This is the time delay after which the "unsubscribe" button is "clicked"; Change it as per your need! var UNSUBSCRIBE_DELAY_TIME = 2000 /

  • Delay runner. Wraps setTimeout so it can be awaited on.
  • @param {Function} fn
  • @param {number} delay */ var runAfterDelay = (fn, delay) => new Promise((resolve, reject) => { setTimeout(() => { fn() resolve() }, delay) }) // Get the channel list; this can be considered a row in the page. var channels = Array.from(document.getElementsByTagName(ytd-channel-renderer)) console.log(${channels.length} channels found.) var ctr = 0 for (const channel of channels) { // Get the subscribe button and trigger a "click" channel.querySelector([aria-label^='Unsubscribe from']).click() await runAfterDelay(() => { // Get the dialog container... document.getElementsByTagName(yt-confirm-dialog-renderer)[0] // and find the confirm button... .querySelector([aria-label^='Unsubscribe']).click() console.log(Unsubsribed ${ctr + 1}/${channels.length}) ctr++ }, UNSUBSCRIBE_DELAY_TIME) } })()
·howtogeek.com·
How to Unsubscribe From All YouTube Channels in One Go - How To Geek
How to Create an RSS Feed for Your Website: Free Ways
How to Create an RSS Feed for Your Website: Free Ways
An easy-to-follow guide on making RSS feeds for your websiteIf you want to increase the readership on your website, or you want to make it big with a podcast, you need an RSS feed. The RSS feed keeps your users up to date on all of your...
·wikihow.com·
How to Create an RSS Feed for Your Website: Free Ways
How to install FL Studio 20 On Linux
How to install FL Studio 20 On Linux
Learn how to install the latest version of FL Studio 20 for FREE on Linux computers easily. Ultimate Tutorial【Works Flawlessly!】✅
·flstudiofans.com·
How to install FL Studio 20 On Linux
Is there a way of watching YouTube videos at higher than 2x speed?
Is there a way of watching YouTube videos at higher than 2x speed?
Answer (1 of 18): If you're a speed demon and want to breeze through YouTube videos faster than Usain Bolt on a track, you're in luck! YouTube has a built-in feature that allows you to speed up videos, and it's not just limited to 2x. In fact, you can go even faster than that, and I'll show you h...
·quora.com·
Is there a way of watching YouTube videos at higher than 2x speed?
Discord Leaderboard - Stats posted daily PT, but Saturday
Discord Leaderboard - Stats posted daily PT, but Saturday
Stats 11/15 - 8:30PM,11/15 - 8:30PM,11/15 - 8:30PM,11/14 - 7:05PM,11/14 - 7:05PM,11/14 - 7:05PM,11/13 - 11:25AM,11/13 - 11:25AM,11/13 - 11:25AM,11/12 - 3:05PM,11/12 - 3:05PM,11/12 - 3:05PM,11/10 - 4:00PM,11/10 - 4:00PM,11/10 - 4:00PM,11/9 - 1:10PM,11/9 - 1:10PM,11/9 - 1:10PM,11/8 - 4:55PM Larges...
·docs.google.com·
Discord Leaderboard - Stats posted daily PT, but Saturday
How To Install WordPress on Ubuntu 20.04 with a LAMP Stack - DigitalOcean
How To Install WordPress on Ubuntu 20.04 with a LAMP Stack - DigitalOcean
WordPress is an extremely popular open-source technology and WordPress sites represent 36% of all websites that are currently online. This tutorial is intended for those who are comfortable with system administration or for those who are interested in learning how to administer your own WordPress instance on the server side. In this guide, we’ll install and set up WordPress via LAMP on a Linux Ubuntu 20.04 server.
·digitalocean.com·
How To Install WordPress on Ubuntu 20.04 with a LAMP Stack - DigitalOcean
Linux post-installation steps for Docker Engine
Linux post-installation steps for Docker Engine
Find the recommended Docker Engine post-installation steps for Linux users, including how to run Docker as a non-root user and more.
sudo systemctl enable docker.service
·docs.docker.com·
Linux post-installation steps for Docker Engine
Linux Commands - Linux config
Linux Commands - Linux config
In this tutorial you will learn the basics of Linux Commands. This tutorial will get you started with Linux command line.
·linuxconfig.org·
Linux Commands - Linux config