All Projects → Tech-N-Science → FunwithScience

Tech-N-Science / FunwithScience

Licence: MIT license
No description or website provided.

Programming Languages

javascript
184084 projects - #8 most used programming language
CSS
56736 projects

Projects that are alternatives of or similar to FunwithScience

helpafamily
Impactful ways to help families in need through donated meals, hygiene kits, and more. By Margarita Humanitarian Foundation.
Stars: ✭ 41 (-67.72%)
Mutual labels:  hacktober, hacktoberfest-accepted, hacktoberfest-2021
Hactoberfest-2021
Make your first PR! ~ A beginner friendly repository made specifically for open source beginners. Add your profile, a blog or any program under any language (it can be anything from a hello-world program to a complex data structure algorithm) or update the existing one. Just make sure to add the file under the correct directory. Happy hacking!
Stars: ✭ 134 (+5.51%)
Mutual labels:  hacktober, hacktoberfest-accepted, hacktoberfest-2021
Hacktoberfest2021-DSA
If You know the implementation of any DSA related topic/problem then you can contribute it in this repo. Raise Genuine PRs only. Your PRs will be accepted, keep patience. Star this Repo. You aren't allowed to Update README.md. Welcoming developers, content writers, and programming enthusiasts.
Stars: ✭ 232 (+82.68%)
Mutual labels:  hacktoberfest-accepted, hacktoberfest-approved, hacktoberfest-2021
hacktoberfest
Fork and Create a Pull Request
Stars: ✭ 13 (-89.76%)
Mutual labels:  hacktober, hacktoberfest-accepted
DSA-CRACKER
This is an attempt to solve 450 questions carefully curated by Love Babbar.
Stars: ✭ 92 (-27.56%)
Mutual labels:  hacktoberfest-accepted, hacktoberfest-2021
HacktoberFest-2021
No description or website provided.
Stars: ✭ 278 (+118.9%)
Mutual labels:  hacktoberfest-accepted, hacktoberfest-2021
IoT
A repository dedicated to IoT(internet of things ) and python scripts
Stars: ✭ 24 (-81.1%)
Mutual labels:  hacktoberfest-accepted, hacktoberfest-approved
Hacktoberfest2021
This Repository for Hacktoberfest Fest 2021. Contribute anything for your T-shirt, must be relevant that can add some value to this repo.
Stars: ✭ 57 (-55.12%)
Mutual labels:  hacktober, hacktoberfest-accepted
gofuzz
Fast as Flash Web URL Fuzzing tool written in golang.
Stars: ✭ 31 (-75.59%)
Mutual labels:  hacktober, hacktoberfest-accepted
QuickLearn
A collection of resources categorised by tech domains, languages, expertise and much more. QuickLearn gives you a quick access to all the resources that you could need at a single place, within a click!
Stars: ✭ 89 (-29.92%)
Mutual labels:  hacktoberfest-accepted, hacktoberfest-2021
CodeForces-Solutions
Solutions to CodeForces ProblemSets
Stars: ✭ 47 (-62.99%)
Mutual labels:  hacktoberfest-accepted, hacktoberfest-2021
Hacktoberfest2021
Make your first Pull Request on Hacktoberfest 2022. Don't forget to spread love and if you like give us a ⭐️
Stars: ✭ 1,320 (+939.37%)
Mutual labels:  hacktoberfest-accepted, hacktoberfest-approved
kartik python
It's my python repository, where I upload various python projects using many kinds of modules from tkinter to opencv to pygames. It's very fun to code them :)
Stars: ✭ 14 (-88.98%)
Mutual labels:  hacktoberfest-accepted, hacktoberfest-2021
github-fest-2021
No description or website provided.
Stars: ✭ 44 (-65.35%)
Mutual labels:  hacktoberfest-accepted, hacktoberfest-2021
hacktober2020
No description or website provided.
Stars: ✭ 10 (-92.13%)
Mutual labels:  hacktober, hacktoberfest-accepted
hacktoberfest2020
This is a hacktoberfest repo with learning propose to make pull request(PR) and get contribute on opensource project
Stars: ✭ 13 (-89.76%)
Mutual labels:  hacktober, hacktoberfest-accepted
windows-xp
A simulation of the awesome Windows-XP made by using only the web tools and no library. All rights reserved to Microsoft.
Stars: ✭ 14 (-88.98%)
Mutual labels:  hacktoberfest-accepted, hacktoberfest-2021
Hacktoberfest-2021
Create Hacktoberfest PRs. Star this Repo!⭐
Stars: ✭ 32 (-74.8%)
Mutual labels:  hacktoberfest-accepted, hacktoberfest-2021
TheAlgorithms
This contains whatever you need to study about Algos...
Stars: ✭ 21 (-83.46%)
Mutual labels:  hacktober, hacktoberfest-accepted
Hacktoberfest2021
No description or website provided.
Stars: ✭ 15 (-88.19%)
Mutual labels:  hacktober, hacktoberfest-accepted

Fun With Science

Are you bored solving the questions using the tough physics formulas?? 😩 Are you bored of long calculations?? 😩 Then here is a solution to your problems. 😃 This project is a Physics calculator where the user just needs to enter the values and the project calculates the result using the formula.

It really is that easy!

And the best part of it? FunwithScience is open source! 🤩

The website is live and can be visited on https://technscience.com/

Also join the discord channel for discussion https://discord.gg/UfhRBpbQXN

How does it differ from other problem-solving projects?

  • No Server-side Interactions
  • Speed
  • Complex Calculations within a few ms(milliseconds)

Tech Used

HTML5 CSS3 React Bootstrap** PHP

How to Contribute

If you think that you can add a new feature or want to fix a bug, we invite you to contribute to FunwithPhysics and make this project better. To start contributing, follow the below instructions:

  1. Create a folder at your desire location (usually at your desktop).

  2. Open Git Bash Here

  3. Create a Git repository.

    Run command git init

  4. Fork the repository.

  5. Clone your forked repository of project.

git clone https://github.com/<your_username>/FunwithScience.git
  1. Navigate to the project directory.
cd FunwithScience
  1. Add a reference(remote) to the original repository.
git remote add upstream https://github.com/Tech-N-Science/FunwithScience.git
  1. Check the remotes for this repository.
git remote -v
  1. Always take a pull from the upstream repository to your main branch to keep it updated as per the main project repository.
git pull upstream main
  1. Create a new branch(prefer a branch name that relates to your assigned issue).
git checkout -b <YOUR_BRANCH_NAME>
  1. Perform your desired changes to the code base.

  2. Check your changes.

git status
git  diff
  1. Stage your changes.
git add . <\files_that_you_made_changes>
  1. Commit your changes.
git commit -m "relavant message"
  1. Push the committed changes in your feature branch to your remote repository.
git push -u origin <your_branch_name>
  1. To create a pull request, click on compare and pull requests.

  2. Add an appropriate title and description to your PR explaining your changes.

  3. Click on Create pull request.

Congratulations🎉, you have made a PR to the FunwithPhysics. Wait for your submission to be accepted and your PR to be merged by a maintainer.

How to run the webpage on your local system

  1. Go to the funwithphysics directory.
cd funwithphysics
  1. Write the command.
npm install react-scripts --save
  1. Write the command.
yarn start / npm start

If you have any doubts, please let us know in the comments.


Open Source Programs we have been associated with:


Project Admin ❤️

              

Project Maintainers 😃

Contributors

Thanks goes to these wonderful people :

This project follows the all-contributors specification. Contributions of any kind welcome!

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].