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)RobertsE2 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/
MilesBordak4 months agono falling mechanic makes it harder lol
KenliLanders4 months agoFUN
Neo Pong
Made with Pygame2 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)Shelbycompanyyyy4 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.
Shelbycompanyyyy4 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
ahumblecoder4 months agouse a dict instead of a list with tuples for the characters.
ProtonExplosion14 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.boston20294 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)