Skip to content

Instantly share code, notes, and snippets.

View TvoozMagnificent's full-sized avatar
😀
YAY

Number Basher TvoozMagnificent

😀
YAY
View GitHub Profile
@TvoozMagnificent
TvoozMagnificent / readme.txt
Created August 15, 2022 05:40
Multi-word Dictionary Game (PuzzleScript Script)
Play this game by pasting the script in http://www.puzzlescript.net/editor.html
@TvoozMagnificent
TvoozMagnificent / readme.txt
Created August 15, 2022 05:38
Soliquid (PuzzleScript Script)
Play this game by pasting the script in http://www.puzzlescript.net/editor.html
@TvoozMagnificent
TvoozMagnificent / readme.txt
Created August 15, 2022 05:36
I'm too far gone (PuzzleScript Script)
Play this game by pasting the script in http://www.puzzlescript.net/editor.html
@TvoozMagnificent
TvoozMagnificent / readme.txt
Created August 15, 2022 02:06
MazezaM (PuzzleScript Script)
Play this game by pasting the script in http://www.puzzlescript.net/editor.html
@TvoozMagnificent
TvoozMagnificent / readme.txt
Created August 13, 2022 12:45
IceCrates (PuzzleScript Script)
Play this game by pasting the script in http://www.puzzlescript.net/editor.html
@TvoozMagnificent
TvoozMagnificent / main.py
Created August 7, 2022 13:51
Sun Sip Interpreter
# SLWNSNBP, or "Sun Sip"
# Simple Language Whose Name Should Not Be Pronounced
import random
import math
import sys
import os
import re
def before_run():
@TvoozMagnificent
TvoozMagnificent / main.py
Created August 3, 2022 01:24
Mario37 Interpreter
import sys
try: source_file = sys.argv[1]
except: print('Mario37 is confused. ERROR'); sys.exit()
if '-d' in sys.argv: debug = True
else: debug = False
if '-d' in sys.argv and len(sys.argv)>3 or '-d' not in sys.argv and len(sys.argv)>2: print('Mario37 ate garbage. ERROR')
try:
with open(source_file, 'r') as f: lines = f.read().lstrip('\n').rstrip().split('\n')
except: print('Mario37 cannot find his instructor. ERROR'); sys.exit()
print("Hello, World! ")