Skip to content

Latest commit

 

History

History
123 lines (109 loc) · 3.83 KB

README.md

File metadata and controls

123 lines (109 loc) · 3.83 KB

Pi-Playground

GitHub repo file count GitHub repo size GitHub top language License

Welcome to my playground 🖐️

  • First of all let's answer the question of what?

This repository is my personal playground where I upload my personal small projects.

Python 🐍

  • Then let's answer the question of how?

In this repo initially I want to push my Python project. So it's kind of my Python playground.

Contributions 🧑‍🤝‍🧑

All kind of contributions are welcome. 😃

Structure of the repository 🏗️

Here you can see the structure of the repo for convenient purposes.

.
├── CoffeeMachine
│   ├── main.py
│   └── menu.py      
├── Cross Game
│   ├── car_manager.py
│   ├── cars.py
│   ├── main.py
│   ├── player.py
│   ├── README.md
│   └── scoreboard.py
├── Flash Card Game
│   ├── data
│   │   └── Often_Used_Words_En_Gr_De.csv
│   ├── images
│   │   ├── card_back.png
│   │   ├── card_front.png
│   │   ├── right.png
│   │   └── wrong.png
│   ├── main.py
│   └── README.md
├── LICENSE
├── Mile to Km Converter
│   ├── main.py
│   └── README.md
├── Other Projects
│   ├── Blackjack
│   │   ├── art.py
│   │   └── BlackJack.py
│   ├── GuessingGame
│   │   ├── GuessingGame.py
│   │   └── logo.py
│   ├── HigherLowerGame
│   │   ├── art.py
│   │   ├── game_data.py
│   │   └── HigherLowerGame.py
│   └── README.md
├── Painting
│   └── main.py
├── Painting Art Copy
│   ├── image.jpg
│   └── main.py
├── Password Manager
│   ├── data.txt
│   ├── login.py
│   ├── logo.png
│   ├── main.py
│   └── README.md
├── Pomodoro Reading
│   ├── main.py
│   ├── math
│   ├── README.md
│   ├── tkinter
│   └── tomato.png
├── PongGame
│   ├── ball.py
│   ├── main.py
│   ├── paddle.py
│   ├── README.md
│   └── scoreboard.py
├── Quiz Game
│   ├── data.py
│   ├── main.py
│   ├── question_model.py
│   └── quiz_brain.py
├── Racing
│   └── main.py
├── ReadMe images
│   ├── CrossImage.png
│   ├── NewSnakeHighScore.png
│   ├── PasswordManagerIMG.png
│   ├── PomodoroReadingIMG.png
│   ├── pongImage.png
│   ├── snakeImage.png
│   └── StatesIMG.png
├── README.md
├── SnakeGame
│   ├── food.jpg
│   ├── game_data.txt
│   ├── main.py
│   ├── README.md
│   ├── scoreboard.py
│   ├── snakeFood.py
│   └── snake.py
└── US States Quiz Game
    ├── 50_states.csv
    ├── main.py
    ├── missing_states.csv
    ├── README.md
    ├── state.py
    └── states_img.gif

I would like to mention that each project has each own documentation. With some explanations of the code.