Skip to content

Instantly share code, notes, and snippets.

View Samg381's full-sized avatar
๐Ÿš€
rad

Samg381

๐Ÿš€
rad
View GitHub Profile
@Samg381
Samg381 / AmazonShippingAddressWarning.user.js
Last active November 16, 2024 17:36
Reminds users to check their Amazon shipping address before purchasing. Useful for parents, the elderly, or the generally forgetful.
// ==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
@Samg381
Samg381 / thread.py
Created February 16, 2023 16:38
Simple Python Threading Demo
import threading
import time
Monitor = True
def thread_function():
print("[Worker] worker created!")
while (Monitor == True):