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 os | |
import datetime | |
from datetime import datetime | |
import smtplib, ssl | |
from email import encoders | |
from email.mime.text import MIMEText | |
from email.mime.base import MIMEBase | |
from email.mime.multipart import MIMEMultipart | |
try: |
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
/// to start: | |
var original = Runner.prototype.gameOver | |
Runner.prototype.gameOver = function(){} | |
/// to stop: | |
Runner.prototype.gameOver = original | |
/// to set speed: | |
Runner.instance_.setSpeed(1000) |
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 zipfile | |
charlist = 'abcdefghijklmnopqrstuvwxyz0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZ' #ALPHANUMERICAL ONLY (CAN ADD MORE) | |
complete = [] | |
for current in range(4): #MAX PASSWORD LENGTH = 4 | |
a = [i for i in charlist] | |
for x in range(current): | |
a = [y + i for i in charlist for y in a] | |
complete = complete + a |