Skip to content

Instantly share code, notes, and snippets.

View jack-bischoff's full-sized avatar

Jack Bischoff jack-bischoff

View GitHub Profile
import time
def Main():
#Main Logic
while True:
if GPIO.input(12):
startTime = time.time()
while (time.time() - startTime) < TIMEOUT:
if GPIO.input(12):
return 2
@jack-bischoff
jack-bischoff / rot13Cracker.py
Last active March 9, 2016 15:13
Brute Force Caesar Shift Cracker
LOWER = string.ascii_lowercase
UPPER = string.ascii_uppercase
DIGITS = string.digits
def shift(cipher, key):
search_space = DIGITS
text = ""
for sel in cipher:
if sel in LOWER:
window.onload = function(){
document.onkeypress = function(e){
if (e.shiftKey && e.ctrlKey && e.key == 'z'){
alert("Fuckboi 101")
}
}
}