Coder Social home page Coder Social logo

ritikaaaa177 / bigb-e-learn-websit-e Goto Github PK

View Code? Open in Web Editor NEW

This project forked from the-shivam-garg/bigb-e-learn-websit-e

0.0 0.0 0.0 90.34 MB

BigB is a E-learning website . This project is accepted in GSSoC 2022 , JWOC 22

Home Page: https://the-shivam-garg.github.io/BigB-E-learn-Websit-e/

License: MIT License

JavaScript 11.08% Ruby 0.01% CSS 44.04% Makefile 0.01% HTML 42.39% Less 0.55% SCSS 1.91%

bigb-e-learn-websit-e's Introduction

Open-Source E-learning Website

OPEN TO ALL CONTRIBUTORS AROUND THE GLOBE TO CONTRIBUTE IN THIS PROJECT

This project was part of the GirlScript Summer of Code 2022 Open Source Program


GSSoC

This project is accepting contributions under GirlScript Summer of Code 2022 - three months long Open Source program conducted by GirlScript Foundation.

๐Ÿ“Œ BigB is a E-learning website , covers all the Knowledgeable material from UNIVERSITY to UNIVERSE.๐Ÿ˜๐Ÿ˜

This is an Open-Source Educational Website, which Cover all the Educational related things whether it's in-syllabus or out-of-syllabus:
Notes, Sample Papers, Online Video Lectures and courses to crack competitive Interviews Of Both Product and Service Based Companies. Students can clear their doubts by sending their questions to our website. We have added Quizzes for Students who are willing to solve problems on different topics. We have also added Interview questions for students who are preparing for placements.

IN DEVELOPMENT PHASE ( Visit ๐Ÿš€ )

Will be adding more content and Resources .TILL then show some ๐Ÿ’– by giving Star to this Repository.

It is completely responsive website, to provide smooth experience...๐Ÿ˜Ž

If you have any queries or any suggestions then reach out to us at Mail.

Small Preview

๐Ÿšฉ FRONT LOOK OF MAIN PAGE:

Front View

BigB website build using HTML5, CSS3, JavaScript ,Ruby , SCSS and jQuery.

In order to make a hassle-free environment, I implore you all (while contributing) to follow the instructions mentioned below! Happy Submissions ๐Ÿ™‚

๐Ÿ‘จโ€๐Ÿ’ป Tech Stack:

HTML CSS JS RUBY

Extras : Particle.js, Typed.js, Tilt.js, Font Awesome, JSON, etc.

SAAS Markdown Bootstrap

๐Ÿ“ฌ Contact

If you want to contact me, you can reach me through below Social handles.

LinkedIn Gmail

Sidehustlers

I have started a Community named Sidehustlers Community [Community for ALL] Where we share Resources, Roadmaps to learn different technologies and share opportunities related to different tech & non-tech programs. Also, We organize Events on different technologies and emerging domains to help people to get started with these technologies.

Join the Community โšก

YouTube LinkedIn Gmail  Telegram  Discord Instagram Linktree

Project Admin


ShivamGarg11


Our valuable Contributors โœจ


๐Ÿ“Œ Contributing Guidelines

Basics of Git and GitHub

Git & GitHub

Before we proceed, it's better to know the difference between Git and Github. Git is a version control system (VCS) that allows us to keep track of the history of our source code , whereas GitHub is a service that hosts Git projects.

We assume you have created an account on Github and installed Git on your System.

Now enter your name and E-mail (used on Github) address in Git, by using following command.

$ git config --global user.name "YOUR NAME"
$ git config --global user.email "YOUR EMAIL ADDRESS"

This is an important step to mark your commits to your name and email.


Fork a project

You can make a copy of the project to your account. This process is called forking a project to your Github account. On Upper right side of project page on Github, you can see -

Click on fork to create a copy of project to your account. This creates a separate copy for you to work on.

Clone the forked project

You have forked the project you want to contribute to your github account. To get this project on your development machine we use clone command of git.

$ git clone https://github.com/The-Shivam-garg/BigB-E-learn-Websit-e

Now you have the project on your local machine.


Add a remote (upstream) to original project repository

Remote means the remote location of project on Github. By cloning, we have a remote called origin which points to your forked repository. Now we will add a remote to the original repository from where we had forked.

$ cd <your-forked-project-folder>
$ git remote add upstream https://github.com/The-Shivam-garg/BigB-E-learn-Websit-e

You will see the benefits of adding remote later.


Synchronizing your fork

Open Source projects have a number of contributors who can push code anytime. So it is necessary to make your forked copy equal with the original repository. The remote added above called Upstream helps in this.

$ git checkout main
$ git fetch upstream
$ git merge upstream/main
$ git push origin main

The last command pushes the latest code to your forked repository on Github. The origin is the remote pointing to your forked repository on github.


Create a new branch for a feature or bugfix

Usually, all repositories have a main branch that is regarded to be stable, and any new features should be developed on a separate branch before being merged into the main branch. As a result, we should establish a new branch for our feature or bugfix and go to work on the issue.

$ git checkout -b <feature-branch>

This will create a new branch out of master branch. Now start working on the problem and commit your changes.

$ git add --all
$ git commit -m "<commit message>"

The first command adds all the files or you can add specific files by removing -a and adding the file names. The second command gives a message to your changes so you can know in future what changes this commit makes. If you are solving an issue on original repository, you should add the issue number like #35 to your commit message. This will show the reference to commits in the issue.


Push code and create a pull request

You now have a new branch containing the modifications you want in the project you forked. Now, push your new branch to your remote github fork.

$ git push origin <feature-branch>

Now you are ready to help the project by opening a pull request means you now tell the project managers to add the feature or bug fix to original repository. You can open a pull request by clicking on green icon -

Remember your upstream base branch should be main and source should be your feature branch. Click on create pull request and add a name to your pull request. You can also describe your feature.

Congratulations! You've already made your first contribution.๐Ÿฅณ

Good Luck for your journey

ยฉ 2022 Shivam Garg and contributors
This project is licensed under the MIT license.

forthebadge

LOC Stars Badge Forks Badge GitHub contributors

GitHub license

forthebadge

bigb-e-learn-websit-e's People

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.