This Python script makes my wifi broadcast a peaceful chant every few seconds or so
import time # The chant (this string is stored in memory) chant = ["Thank","You","Air!"] import socket import time # Define broadcast settings BROADCAST_IP = '255.255.255.255' # Standard broadcast address for your local network PORT = 5005 # Port number to send on (you can choose any port not in use) chanta = "Nam "; chantb = "MΓ΄ "; chantc = "A " # The chant message chantd = "Di " # The chant message chante = "ΔΓ " # The chant message chantf = "PhαΊt! " chantg = "Thank you " chanth = "air! " chanti = "May " chantj = "all " chantk = "beings " chantl = "here " chantm = "be " chantn = "safe." interval = 3.353/12 # Time interval (in seconds) between broadcasts # Create a UDP socket sock = socket.socket(socket.AF_INET, socket.SOCK_DGRAM) # Enable t...