Floppy fish
Made with PygameA game where a player maneuvers a fish through spaces between pipes with the W and S keys or up and down arrow keys.
Recent comments (6)RORobertsE8 months agoFloppy Fish is a mobile game app where players tap the screen to help a floppy fish swim through obstacles and collect coins. It's similar to the popular game Flappy Bird. https://www.myhealthatvanderbilt.net/
MilesBordak10 months agono falling mechanic makes it harder lol
KEKenliLanders10 months agoFUN
Neo Pong
Made with PygameA 2 player game that uses W and S keys and up and down arrow keys to move paddles up and down to rally a ball.
Recent comments (0)Brute force password guesser with user interface
Made with PythonUses brute force to guess passwords.
Recent comments (11)Shelbycompanyyyy10 months agoWell my password is nice and strong... Display process?no Allow the algorithm to use character types as clues?no Password guessed in 30750590660130009891 tries.
Shelbycompanyyyy10 months agoERR: Traceback (most recent call last): File "main.py", line 63, in estimated = estimate(characters, password) File "main.py", line 48, in estimate value = (len(characters) ** index) * indexes[i] IndexError: list index out of range
AHahumblecoder10 months agouse a dict instead of a list with tuples for the characters.
PRProtonExplosion110 months agoImpressive but also not. It should go through a list of commonly used passwords before it tries to bruteforce its way. For example:
It still has yet to get it right.boston202910 months agoWow, that's impressive. Definitely takes a bit but it's cool!
False Binary encoder with user interface
Made with PythonEncodes messages by converting string to binary, then applying various ciphers to decode the message. Also decodes messages in binary encoded in the same way.
Recent comments (0)Maze solver
Made with PygameA depth-first search algorithm that solves mazes. To create your own maze, fork the repl and then modify the "maze" variable. "#" represents a wall, "!" represents the starting point, "*" represents the end point, and a space represents a path.
Recent comments (0)