Skip to content

Instantly share code, notes, and snippets.

View iiviigames's full-sized avatar
🎮
https://twitch.tv/iiviigames

Vee Flynn iiviigames

🎮
https://twitch.tv/iiviigames
View GitHub Profile
@iiviigames
iiviigames / 96ExitDownload.bat
Created November 6, 2021 06:05
Download the 96 Exit Strats for Offline Use!
::AUTHOR & CONTACT
: Vee Flynn | @iiviigames
: iiviigames@pm.me
: WEBSITES
: > https:/odd.codes
: > https://github.com/iiviigames
: > https://dev.to/iiviigames
: > https://itch.io/iivii
::
@iiviigames
iiviigames / README.md
Created November 3, 2021 20:35
SCRIPT-8
@iiviigames
iiviigames / README.md
Created November 3, 2021 20:30
SCRIPT-8
@iiviigames
iiviigames / ToyBoxJam 2 - READ ME FIRST!.md
Created December 19, 2020 02:24
ToyBoxJam 2 - Read Me First!

TOY BOX JAM 2 -- READ ME FIRST!

Last year, we discovered Max Tojoby is well and alive.... and says he is enlightened?

We thought we'd hear no more from him. But he sent a short message and a story....

@iiviigames
iiviigames / Ordered Associative Arrays.md
Created August 4, 2020 02:57
An explanation on how to iterate through name indexed tables in Lua.

Question

Link to Source

If i try to output this table, they are looped through in the false order:

local letters   =   {DIN1="hi", AIN1= "my", AIN2 ="name", DIN2="is"}

for name, value in pairs(letters) do
@iiviigames
iiviigames / SCP-Links.md
Last active August 10, 2023 09:28
SCP Scrape Outline
@iiviigames
iiviigames / calcupc.py
Last active June 7, 2020 04:30
Angry UPC Validator - Opinionated Python #1
# calcupc.py
# iiviigames | @odd_codes
# https://github.com/iiviigames
# https://odd.codes
# I made this because I received a gift 2 Christmases back called
# Star Wars Bloxels. It is a plastic board with little colored blocks, and
# they can be arranged into physical 'levels', which a phone app can scan and
# turn into a little video game level to play. Cool idea, right?
# Well, I never got around to playing with it, but today I
# attempted to. Turns out they abandoned the product. It ACTUALLY SAYS ON THE
@iiviigames
iiviigames / ROT-13.py
Last active December 18, 2019 19:21
Fools are just People without a Secret
# !usr/bin/py/3
# .-----------------------------------------------.
# | rot13 cypher in python |
# | https://gist.github.com/iiviigames |
# | https://odd.codes/ |
# | iivii Dec 8, 2019 |
# \_______________________________________________/
def encrypt(word):
"""
@iiviigames
iiviigames / aspector.py
Created October 9, 2019 19:35
Find a the missing value in a width/height by providing either the width or height, and any aspect ratio you'd like. This console app does the rest!
# usr/bin/env python
# MODULE: aspector.py
# INFO: Enter a width or height value, then the ratio you'd like to find for
# the missing value. This will give it to you!
# CODED BY: iivii
# EMAIL: thelibrarian@odd.codes
# LICENSE: Just throw me a bone and let people know I helped out okay?
# NOTE: Send me anything you may use this code for! I'm just curious to see
# if anything I did was able to help you.
###########################################################################################