๐ Stars | ๐ด Forks | ๐ Issues | ๐ Open PRs | ๐ Close PRs | last commit |
Event Logo | Event Name | Event Description |
---|---|---|
GirlScript Summer of Code 2024 | GirlScript Summer of Code is a three-month-long Open Source Program conducted every summer by GirlScript Foundation. It is an initiative to bring more beginners to Open-Source Software Development. |
This repository contains the source code for a website designed to help college students access their study materials like quantum books, lectures, notes, past year questions (PYQ), and many more
At 75% .com, our mission is to make quality education accessible to everyone. We understand the challenges students face in navigating their academic journey, and we're here to support you every step of the way with clear, concise, and reliable study materials. What We Offer Tutorials: Step-by-step tutorials covering a wide range of subjects and topics. Our tutorials are crafted by experienced educators to help you grasp complex concepts easily. Notes: Well-organized and detailed notes that highlight key points and essential information. Perfect for quick reviews and in-depth study sessions. Syllabus Guides: Stay on top of your curriculum with our up-to-date syllabus guides. We provide comprehensive outlines to ensure youโre prepared for every exam and assignment. Study Resources: Access a wealth of additional resources, including practice tests, revision tips, and study planners to optimize your learning experience. Why Choose 75% .com? Quality Content: Our materials are meticulously curated by subject matter experts to ensure accuracy and relevance. User-Friendly: An intuitive and easy-to-navigate website that allows you to find what you need quickly and efficiently. Accessible Anytime, Anywhere: Whether youโre studying from home or on the go, our resources are available 24/7 to fit your schedule. Community Support: Join a vibrant community of learners where you can share insights, ask questions, and collaborate with peers. Join Us Empower your academic journey with 75% .com. Explore our extensive library of educational content and take the first step towards achieving your academic goals. Together, we can make learning an enriching and fulfilling experience.
This website is designed to help college students manage their notes, past-year questions (PYQ), and lectures. It allows users to:
To get a local copy up and running, follow these simple steps:
git clone <https://github.com/your_username_/Project-Name.git
>cd Project-Name
npm install
You can refer to the following articles on the basics of Git and Github.
1. Start by making a Fork of the 75per repository. Click on the Fork symbol at the top right corner.
2. Clone your new fork of the repository in the terminal/CLI on your computer with the following command:
git clone https://github.com/<your-github-username>/75per
3. Navigate to the newly created PetMe project directory:
cd 75per
4. Set upstream command:
git remote add upstream https://github.com/AbhiDiva96/75per.git
5. Create a new branch:
git checkout -b YourBranchName
6. Sync your fork or your local repository with the origin repository:
7. Make your changes to the source code.
8. Stage your changes and commit:
โ ๏ธ Make sure not to commit package.json
or package-lock.json
file
โ ๏ธ Make sure not to run the commands git add .
or git add *
. Instead, stage your changes for each file/folder
git add public
git commit -m "<your_commit_message>"
9. Push your local commits to the remote repository:
git push origin YourBranchName
10. Create a pull request!
11. Congratulations! You've made your first contribution!!
After installing the dependencies, you can start the local server:
npm run start
Navigate to http://localhost:3000
in your web browser to view the application.
Feel free to contribute to this project by opening issues or submitting pull requests!