Skip to content

Instantly share code, notes, and snippets.

View sponege's full-sized avatar
:atom:

Jordan Perry sponege

:atom:
View GitHub Profile
@sponege
sponege / readme.txt
Last active December 15, 2024 08:59
Advent of Code 2024 Day 15 Part 2 (PuzzleScript Script)
Play this game by pasting the script in http://www.puzzlescript.net/editor.html
@sponege
sponege / readme.txt
Last active December 15, 2024 08:59
Advent of Code 2024 Day 15 Part 1 but finished (PuzzleScript Script)
Play this game by pasting the script in http://www.puzzlescript.net/editor.html
@sponege
sponege / readme.txt
Last active December 15, 2024 07:21
Advent of Code Day 6 Part 1 (PuzzleScript Script)
Play this game by pasting the script in http://www.puzzlescript.net/editor.html
@sponege
sponege / gist:9fdbb8c89dd163229e31137599854f64
Created January 27, 2022 20:56
Entire Bee Movie + Shrek Script
According to all known laws
of aviation,
there is no way a bee
should be able to fly.
Its wings are too small to get
its fat little body off the ground.
The bee, of course, flies anyway
because bees don't care
what humans think is impossible.
Ooh, black and yellow!
print()
print("g * d ≡ 1 mod p")
print("Give me g and p, I will calculate d for you.")
print()
g = int(input("g: "))
p = int(input("p: "))
d = 1