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
// go to old.reddit.com/user/me/comments | |
// paste into the console | |
// NOTE: this will delete all comments from page 2 to n. | |
// If there are less than 1 page worth of comments, or | |
// once all those comments are deleted, refresh, remove line 7 and re-run! | |
a = setInterval( | |
function () { | |
document.getElementsByClassName("ListingPagination__navButton")[1].click(); | |
var elem = document.getElementsByClassName("CommentListing__comment"); | |
for (var i = 0; i < 25; i++) { |
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
import imageio | |
import os, sys | |
import glob | |
import threading | |
import time | |
class TargetFormat(object): | |
GIF = ".gif" | |
MP4 = ".mp4" | |
AVI = ".avi" |