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
// ==UserScript== | |
// @name Amazon Shipping Address Warning | |
// @namespace http://samg381.com | |
// @version 1.3 | |
// @description Remind users to check their Amazon shipping address before purchasing. | |
// @author Samg381 | |
// @run-at document-idle | |
// @match https://www.amazon.com/* | |
// @grant none | |
// @require |
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 threading | |
import time | |
Monitor = True | |
def thread_function(): | |
print("[Worker] worker created!") | |
while (Monitor == 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
## Used with WSL // Hence explorer.exe call at bottom | |
printf "Please specify resolution (1-8): " | |
read RES | |
# ========= | |
if [ $RES == 1 ]; then | |
SIZE=1 |