https://github.com/arsho/kids_math
Math quizzes for kids
https://github.com/arsho/kids_math
Last synced: over 1 year ago
JSON representation
Math quizzes for kids
- Host: GitHub
- URL: https://github.com/arsho/kids_math
- Owner: arsho
- License: mit
- Created: 2020-09-10T10:41:28.000Z (almost 6 years ago)
- Default Branch: master
- Last Pushed: 2021-04-25T14:24:34.000Z (about 5 years ago)
- Last Synced: 2025-01-28T04:46:15.569Z (over 1 year ago)
- Language: HTML
- Size: 501 KB
- Stars: 2
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: readme.md
- License: LICENSE
Awesome Lists containing this project
README
## Kids Math Web App
Kids math web app is can generate math quizzes based on user choice of operands (for example - addition, subtraction, division, multiplication, random), number of questions, and language.

### Demo
- The app can be accessed from: [https://arshovon.com/apps/kids/](https://arshovon.com/apps/kids/)


### Features
- Math quiz generator for two operands and an operator.
- Quiz can be generated for both Bangla and English language.
- Maximum number for both operands can be controlled.
- Multiple types of operators can be chosen.
- Display total number of correct and wrong answers.
- Celebration on achievement of full scores.
- Responsive design.
## Support
Please [open an issue](https://github.com/arsho/kids_math/issues/new) for support.
## Contributing
Please contribute using [Github Flow](https://guides.github.com/introduction/flow/). Create a branch, add commits, and [open a pull request](https://github.com/arsho/kids_math/compare/).
### Git methods
- Create new branch:
```
git fetch origin
git checkout master
git reset --hard origin/master
git checkout -b BRANCH_NAME
```
- To check local changes:
```
git status -s
```
- Commit changes:
```
git add --all
git commit -m "Issue:Issue_Number message"
git push origin BRANCH_NAME
```
- To fetch from upstream repository:
```
git fetch origin
```
- To reset local files to upstream repository `master` branch after fetching the changes:
```
git reset --hard origin/master
```