Skip to content

Instantly share code, notes, and snippets.

View cipherwithadot's full-sized avatar
💸
It's funny how dumb you are

cipher. cipherwithadot

💸
It's funny how dumb you are
View GitHub Profile
@cipherwithadot
cipherwithadot / hehe.py
Created December 8, 2021 07:21
simple zoom spam pinger!
import pyautogui
import time
print("You Must First Ping The Person Then Copy Paste The Text Here !")
print("Example: '@PndaBoi!'")
print()
print("This Program Is Meant For Zoom, Not Tried Other Platforms !")
print()
msg1 = input("Enter the message -> ")
msg2 = input("Enter the Second message -> ")
@cipherwithadot
cipherwithadot / spammer.py
Created December 8, 2021 06:42
Very Simple 2 Message Spammer!
import pyautogui
import time
msg1 = input("Enter the message: ")
msg2 = input("Enter the Second message: ")
n = input("How many times ?: ")
delay = int(input("How much delay do you want bettween messages ?: "))
print()
print("T Minus")
@cipherwithadot
cipherwithadot / Script.ino
Created December 8, 2021 06:15
Very Simple Traffic Light Simulation With Arduino!
//My Traffic Light Simulation With Arduino
void setup()
{
pinMode(9, OUTPUT);
pinMode(10, OUTPUT);
pinMode(11, OUTPUT);
}
void loop()
@cipherwithadot
cipherwithadot / print.py
Created November 12, 2021 11:59
how to print text in python :D
print("put the text in here, thats it :D")