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
!window.isDebugging && (window.isDebugging = false); | |
isDebugging ? disableDebugger() : enableDebugger(); | |
function enableDebugger() { | |
document.querySelectorAll("*").forEach((elm) => { | |
elm.style.outline = | |
"1px solid #" + (~~(Math.random() * (1 << 24))).toString(16); | |
}); | |
isDebugging = true; | |
} |
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
# original post: https://rentry.org/sd-loopback-wave | |
# original author: https://rentry.org/AnimAnon | |
import os | |
import platform | |
import numpy as np | |
from tqdm import trange | |
import math | |
import subprocess as sp | |
import string | |
import random |