This file contains 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
Windows Registry Editor Version 5.00 | |
[HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Policies\System] | |
"VerboseStatus"=dword:00000001 | |
[HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\CrashControl] | |
"DisplayParameters"=dword:00000001 | |
This file contains 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
// Save youtube links of all the videos in a terminated playlist into a text file | |
// Open your playlist appeal page, go to the "Look at your content" tab, open inspect element, | |
// paste this code in the console and press enter. | |
// Gets all the videos from the video list | |
var list = $x("/html/body/yttou-dialog/ytcp-dialog/tp-yt-paper-dialog/div[2]/div/yttou-guided-resolution/div[2]/yttou-guided-resolution-playlist-review-step/div[2]/a/@href"); | |
// funtion that creates a text file in memory and downloads | |
// source: https://stackoverflow.com/a/18197341 | |
function download(filename, text) { |
This file contains 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
# Downloads the site from given link using HTTrack Website Copier in the PWD folder | |
# $ sudo apt install httrack | |
# options set according to AyHa1810's preferations | |
link= | |
httrack -i \ | |
-r9999 -%e0 -A3145728 -%c10 \ | |
-c8 -R4 -T240 \ | |
-%P -nt \ | |
-N0 -K0 -x -%x -%q0 -o -X\ | |
-b1 -u1 -j1 -s2 -%k -%s -%u \ |