An open API service indexing awesome lists of open source software.

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

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.

![alt Kids Math Demo](screenshots/kids_math.png)

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

![alt Kids Math Demo Bangla](screenshots/kids_math_celebration_bangla.png)

![alt Kids Math Demo Bangla](screenshots/kids_math_mobile.png)

### 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
```