This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// youtube watch later prune | |
// run this in the console of, presumably, https://www.youtube.com/playlist?list=WL | |
// highly dependent on the layout of yt that might change at any time | |
const _fetch = window.fetch; | |
let isPaused = false; | |
let errCount = 0; | |
// occationally the backend will start throttling requests | |
// this pauses the execution for some time | |
window.fetch = async (...args) => { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# issue: | |
# openssh included in windows can be disabled by admin policy | |
# solution: | |
# get a portable non managed build | |
# issue: | |
# included ssh is likely in system path and cant be changed, | |
# causing issues for tools like github cli that cant specify path | |
# solution: | |
# filter env path manually in PS | |
# |