https://github.com/dylanbuchi/31-days-of-code
I took on a challenge to build 31 mini-projects using Python. These projects included a variety of applications and features, such as a hangman game, a tic-tac-toe game, a quiz program, and a flash cards app.
https://github.com/dylanbuchi/31-days-of-code
30-days-of-code challenge games mini-projects-in-python python
Last synced: 11 months ago
JSON representation
I took on a challenge to build 31 mini-projects using Python. These projects included a variety of applications and features, such as a hangman game, a tic-tac-toe game, a quiz program, and a flash cards app.
- Host: GitHub
- URL: https://github.com/dylanbuchi/31-days-of-code
- Owner: dylanbuchi
- Created: 2020-12-31T20:57:56.000Z (over 5 years ago)
- Default Branch: main
- Last Pushed: 2023-01-13T20:37:36.000Z (over 3 years ago)
- Last Synced: 2025-05-07T05:27:56.108Z (about 1 year ago)
- Topics: 30-days-of-code, challenge, games, mini-projects-in-python, python
- Language: Python
- Homepage:
- Size: 1.96 MB
- Stars: 10
- Watchers: 3
- Forks: 9
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# 31 Days Of Code
I took on a challenge to build 31 mini-projects using Python. These projects included a variety of applications and features, such as a hangman game, a tic-tac-toe game, a quiz program, and a flash cards app.
# Overview:
| Day | Project | Demo | Code |
| --- | ---------------------- | -------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------- |
| 1 | Username Generator | [demo](https://github.com/dylanbuchi/100-days-of-code/tree/main/src/day_1#demo) | [code](https://github.com/dylanbuchi/100-days-of-code/blob/main/src/day_1/username_generator.py) |
| 2 | Tip Calculator | [demo](https://github.com/dylanbuchi/100-days-of-code/tree/main/src/day_2#demo) | [code](https://github.com/dylanbuchi/100-days-of-code/blob/main/src/day_2/tip_calculator.py) | |
| 3 | Treasure Island | [demo](https://github.com/dylanbuchi/100-days-of-code/tree/main/src/day_3#demo) | [code](https://github.com/dylanbuchi/100-days-of-code/blob/main/src/day_3/treasure_island.py) | |
| 4 | Rock Paper Scissors | [demo](https://github.com/dylanbuchi/100-days-of-code/tree/main/src/day_4#demo) | [code](https://github.com/dylanbuchi/100-days-of-code/blob/main/src/day_4/rock_paper_scissors.py) | |
| 5 | Password Generator | [demo](https://github.com/dylanbuchi/100-days-of-code/tree/main/src/day_5#demo) | [code](https://github.com/dylanbuchi/100-days-of-code/blob/main/src/day_5/password_generator.py) | |
| 6 | Dice Rolling Simulator | [demo](https://github.com/dylanbuchi/100-days-of-code/tree/main/src/day_6#demo) | [code](https://github.com/dylanbuchi/100-days-of-code/blob/main/src/day_6/user_interface.py) | |
| **7** | **Hangman Game** | [demo](https://github.com/dylanbuchi/100-days-of-code/tree/main/src/day_7#demo) | [code](https://github.com/dylanbuchi/100-days-of-code/blob/main/src/day_7/hangman.py) | |
| 8 | Caesar Cipher | [demo](https://github.com/dylanbuchi/100-days-of-code/tree/main/src/day_8#demo) | [code](https://github.com/dylanbuchi/100-days-of-code/blob/main/src/day_8/caesar_cipher.py) | |
| 9 | Auction Program | [demo](https://github.com/dylanbuchi/100-days-of-code/tree/main/src/day_9#demo) | [code](https://github.com/dylanbuchi/100-days-of-code/blob/main/src/day_9/auction_program.py) | |
| 10 | Calculator | [demo](https://github.com/dylanbuchi/100-days-of-code/tree/main/src/day_10#demo) | [code](https://github.com/dylanbuchi/100-days-of-code/blob/main/src/day_10/main.py) | |
| **11** | **BlackJack** | [demo](https://github.com/dylanbuchi/100-days-of-code/tree/main/src/day_11#demo) | [code](https://github.com/dylanbuchi/100-days-of-code/blob/main/src/day_11/blackjack.py) | |
| 12 | Number Guessing Game | [demo](https://github.com/dylanbuchi/100-days-of-code/tree/main/src/day_12#demo) | [code](https://github.com/dylanbuchi/100-days-of-code/blob/main/src/day_12/number_guess.py) | |
| 13 | FizzBuzz | [demo](https://github.com/dylanbuchi/100-days-of-code/tree/main/src/day_13#demo) | [code](https://github.com/dylanbuchi/100-days-of-code/blob/main/src/day_13/fizzbuzz.py) | |
| 14 | Higher Lower Game | [demo](https://github.com/dylanbuchi/100-days-of-code/tree/main/src/day_14#demo) | [code](https://github.com/dylanbuchi/100-days-of-code/blob/main/src/day_14/higher_lower.py) | |
| **15** |**Coffee Machine** | [demo](https://github.com/dylanbuchi/100-days-of-code/tree/main/src/day_15#demo) | [code](https://github.com/dylanbuchi/100-days-of-code/blob/main/src/day_15/main.py) | |
| **16** |**Tic Tac Toe** | [demo](https://github.com/dylanbuchi/100-days-of-code/tree/main/src/day_16#demo) | [code](https://github.com/dylanbuchi/100-days-of-code/blob/main/src/day_16/main.py) | |
| **17** |**Quiz Program** | [demo](https://github.com/dylanbuchi/100-days-of-code/tree/main/src/day_17#demo) | [code](https://github.com/dylanbuchi/100-days-of-code/blob/main/src/day_17/main.py) | |
| 18 | Dot Painting | [demo](https://github.com/dylanbuchi/100-days-of-code/tree/main/src/day_18#demo) | [code](https://github.com/dylanbuchi/100-days-of-code/blob/main/src/day_18/art.py) | |
| **19** | **Turtle Race Game** | [demo](https://github.com/dylanbuchi/100-days-of-code/tree/main/src/day_19#demo) | [code](https://github.com/dylanbuchi/100-days-of-code/blob/main/src/day_19/main.py) | |
| **20** | **Snake Game** | [demo](https://github.com/dylanbuchi/100-days-of-code/tree/main/src/day_20#demo) | [code](https://github.com/dylanbuchi/100-days-of-code/blob/main/src/day_20/main.py) | |
| **21** | **Pong Game** | [demo](https://github.com/dylanbuchi/100-days-of-code/tree/main/src/day_21#demo) | [code](https://github.com/dylanbuchi/100-days-of-code/blob/main/src/day_21/main.py) | |
| **22** | **Crossy Road Game** | [demo](https://github.com/dylanbuchi/100-days-of-code/tree/main/src/day_22#demo) | [code](https://github.com/dylanbuchi/100-days-of-code/blob/main/src/day_22/main.py) | |
| 23 | US Map Quiz | [demo](https://github.com/dylanbuchi/100-days-of-code/tree/main/src/day_23#demo) | [code](https://github.com/dylanbuchi/100-days-of-code/blob/main/src/day_23/main.py) | |
| 24 |NATO Phonetic Alphabet | [demo](https://github.com/dylanbuchi/100-days-of-code/tree/main/src/day_24#demo) | [code](https://github.com/dylanbuchi/100-days-of-code/blob/main/src/day_24/main.py) | |
| 25 |Miles to Km Converter | [demo](https://github.com/dylanbuchi/100-days-of-code/tree/main/src/day_25#demo) | [code](https://github.com/dylanbuchi/100-days-of-code/blob/main/src/day_25/main.py) | |
| **26** |**Pomodoro Timer App** | [demo](https://github.com/dylanbuchi/100-days-of-code/tree/main/src/day_26#demo) | [code](https://github.com/dylanbuchi/100-days-of-code/blob/main/src/day_26/pomodoro.py) | |
| **27** |**Password Manager App** | [demo](https://github.com/dylanbuchi/100-days-of-code/tree/main/src/day_27#demo) | [code](https://github.com/dylanbuchi/100-days-of-code/blob/main/src/day_27/password_manager.py) | |
| **28** |**FlashCards App** | [demo](https://github.com/dylanbuchi/100-days-of-code/tree/main/src/day_28#demo) | [code](https://github.com/dylanbuchi/100-days-of-code/blob/main/src/day_28/flash_card.py) | |
| 29 |Weather Forecast via SMS | [demo](https://github.com/dylanbuchi/100-days-of-code/tree/main/src/day_29#demo) | [code](https://github.com/dylanbuchi/100-days-of-code/blob/main/src/day_29/main.py) | |
| 30 |Best Movies To Watch App | [demo](https://github.com/dylanbuchi/100-days-of-code/tree/main/src/day_30#demo) | [code](https://github.com/dylanbuchi/100-days-of-code/blob/main/src/day_30/main.py) | |
| 31 |WallPaper Bot | [demo](https://github.com/dylanbuchi/100-days-of-code/tree/main/src/day_31#demo) | [code](https://github.com/dylanbuchi/100-days-of-code/blob/main/src/day_31/main.py) | |