Informatic articles

392 bookmarks
Custom sorting
"Cannot run under Virtual Machine" error when Launching game - UNRAID Forums
"Cannot run under Virtual Machine" error when Launching game - UNRAID Forums
after a ton of research i have figured it out my man. under <os> put <smbios mode='host'/> directly below that put this under <features> <kvm> <hidden state='on'/> </kvm> under <cpu mode ='host-passthrough'....... put <feature policy='disable' name='hypervisor'/>   and i also deleted any lines pertaining to hyper-v   now go forth and make some plays
·forums.unraid.net·
"Cannot run under Virtual Machine" error when Launching game - UNRAID Forums
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