diff --git a/.dockerignore b/.dockerignore
new file mode 100644
index 0000000..daf8e56
--- /dev/null
+++ b/.dockerignore
@@ -0,0 +1,15 @@
+node_modules/
+*.log
+*.env
+*.git
+
+
+__pycache__/
+*.pyc
+*.pyo
+*.pyd
+*.log
+.env
+.git
+node_modules/
+*.ipynb
diff --git a/.env.example b/.env.example
index 1eae830..57a531c 100644
--- a/.env.example
+++ b/.env.example
@@ -1,3 +1,8 @@
BOT_TOKEN=
PORT=
-CLIENT_ID=
\ No newline at end of file
+CLIENT_ID=
+# GUILD_ID=
+
+BACKEND_URL=
+GITHUB_TOKEN=
+
diff --git a/.github/ISSUE_TEMPLATE/bug_report.md b/.github/ISSUE_TEMPLATE/bug_report.md
new file mode 100644
index 0000000..303a7cd
--- /dev/null
+++ b/.github/ISSUE_TEMPLATE/bug_report.md
@@ -0,0 +1,5 @@
+This repository now uses interactive GitHub Issue Forms for bug reports and feature requests.
+
+Please use the 'New issue' button in GitHub and select the appropriate form (Bug report, Feature request or Question) to submit structured information. These forms include required fields and will automatically add labels to help triage.
+
+Legacy templates are kept in `.github/ISSUE_TEMPLATE/legacy/` if you need them.
diff --git a/.github/ISSUE_TEMPLATE/bug_report.yml b/.github/ISSUE_TEMPLATE/bug_report.yml
new file mode 100644
index 0000000..6bee0ef
--- /dev/null
+++ b/.github/ISSUE_TEMPLATE/bug_report.yml
@@ -0,0 +1,83 @@
+name: "Bug report"
+description: "Report a reproducible bug — required fields make triage faster."
+title: "[bug] "
+labels: ["bug", "needs-triage"]
+body:
+ - type: markdown
+ attributes:
+ value: |
+ Please provide as much detail as possible. Fields marked required must be filled.
+
+ - type: dropdown
+ id: area
+ attributes:
+ label: "Affected area"
+ description: "Where did you encounter the issue?"
+ options:
+ - label: "Discord bot"
+ value: discord
+ - label: "Web UI"
+ value: web
+ - label: "Backend / API"
+ value: backend
+ - label: "Documentation"
+ value: docs
+ - label: "Other"
+ value: other
+
+ - type: textarea
+ id: steps
+ attributes:
+ label: "Steps to reproduce"
+ description: "List the exact steps required to reproduce the bug. Include commands, inputs and copies of messages if relevant."
+ placeholder: "1. ...\n2. ..."
+ validations:
+ required: true
+
+ - type: textarea
+ id: expected
+ attributes:
+ label: "Expected behavior"
+ validations:
+ required: true
+
+ - type: textarea
+ id: actual
+ attributes:
+ label: "Actual behavior"
+ validations:
+ required: true
+
+ - type: radio
+ id: reproducible
+ attributes:
+ label: "Reproducible"
+ options:
+ - label: "Always"
+ value: always
+ - label: "Sometimes"
+ value: sometimes
+ - label: "Can't reproduce"
+ value: cant_reproduce
+
+ - type: input
+ id: environment
+ attributes:
+ label: "Environment / OS / Version"
+ description: "e.g., Windows 11, Node 18, self-hosted"
+
+ - type: checkboxes
+ id: prechecks
+ attributes:
+ label: "Pre-checks"
+ options:
+ - label: "I searched existing issues and documentation"
+ value: searched
+ validations:
+ required: true
+
+ - type: textarea
+ id: additional
+ attributes:
+ label: "Additional context"
+ description: "Add any logs, screenshots or other context. You can attach images using the GitHub issue attachments area."
diff --git a/.github/ISSUE_TEMPLATE/feature_request.md b/.github/ISSUE_TEMPLATE/feature_request.md
new file mode 100644
index 0000000..303a7cd
--- /dev/null
+++ b/.github/ISSUE_TEMPLATE/feature_request.md
@@ -0,0 +1,5 @@
+This repository now uses interactive GitHub Issue Forms for bug reports and feature requests.
+
+Please use the 'New issue' button in GitHub and select the appropriate form (Bug report, Feature request or Question) to submit structured information. These forms include required fields and will automatically add labels to help triage.
+
+Legacy templates are kept in `.github/ISSUE_TEMPLATE/legacy/` if you need them.
diff --git a/.github/ISSUE_TEMPLATE/feature_request.yml b/.github/ISSUE_TEMPLATE/feature_request.yml
new file mode 100644
index 0000000..f82be8a
--- /dev/null
+++ b/.github/ISSUE_TEMPLATE/feature_request.yml
@@ -0,0 +1,48 @@
+name: "Feature request"
+description: "Propose an improvement, enhancement or new feature."
+title: "[feature] "
+labels: ["enhancement", "needs-triage"]
+body:
+ - type: markdown
+ attributes:
+ value: |
+ Thanks for proposing a feature — please provide clear motivation and examples.
+
+ - type: input
+ id: summary
+ attributes:
+ label: "Short summary"
+ description: "A one-line summary of the requested feature."
+ validations:
+ required: true
+
+ - type: textarea
+ id: problem
+ attributes:
+ label: "Problem / Use Case"
+ description: "Explain the problem this feature solves or why it is useful."
+ validations:
+ required: true
+
+ - type: textarea
+ id: proposal
+ attributes:
+ label: "Proposed solution"
+ description: "Describe one or more options for implementation (optional)."
+
+ - type: dropdown
+ id: priority
+ attributes:
+ label: "Priority"
+ options:
+ - label: "Low"
+ value: low
+ - label: "Medium"
+ value: medium
+ - label: "High"
+
+ - type: input
+ id: links
+ attributes:
+ label: "Related links / mockups"
+ description: "Optional: paste links to sketches, PRs or docs"
diff --git a/.github/ISSUE_TEMPLATE/legacy/bug_report.md b/.github/ISSUE_TEMPLATE/legacy/bug_report.md
new file mode 100644
index 0000000..34f3b09
--- /dev/null
+++ b/.github/ISSUE_TEMPLATE/legacy/bug_report.md
@@ -0,0 +1,30 @@
+---
+name: Bug Report
+about: Report a problem or unexpected behavior
+title: "[BUG]"
+labels: bug
+assignees: ''
+---
+
+**Describe the bug**
+A clear and concise description of what the bug is.
+
+**To Reproduce**
+Steps to reproduce the behavior:
+1. Go to '...'
+2. Click on '...'
+3. See error
+
+**Expected behavior**
+What you expected to happen.
+
+**Screenshots**
+If applicable, add screenshots to help explain your problem.
+
+**Environment (please complete the following information):**
+- OS: [e.g. Windows, macOS, Linux]
+- Browser (if applicable): [e.g. Chrome, Firefox]
+- Version: [e.g. 1.0.0]
+
+**Additional context**
+Add any other context about the problem here.
diff --git a/.github/ISSUE_TEMPLATE/legacy/feature_request.md b/.github/ISSUE_TEMPLATE/legacy/feature_request.md
new file mode 100644
index 0000000..856e3c8
--- /dev/null
+++ b/.github/ISSUE_TEMPLATE/legacy/feature_request.md
@@ -0,0 +1,19 @@
+---
+name: Feature Request
+about: Suggest an idea for improvement or a new feature
+title: "[FEATURE]"
+labels: enhancement
+assignees: ''
+---
+
+**Describe the solution you'd like**
+A clear and concise description of what you want to happen.
+
+**Problem / Use Case**
+Explain the problem this feature solves or why it would be useful.
+
+**Alternatives considered**
+List any alternative solutions or features you considered.
+
+**Additional context**
+Add any other context or screenshots about the feature request here.
diff --git a/.github/ISSUE_TEMPLATE/question.yml b/.github/ISSUE_TEMPLATE/question.yml
new file mode 100644
index 0000000..a73c16f
--- /dev/null
+++ b/.github/ISSUE_TEMPLATE/question.yml
@@ -0,0 +1,40 @@
+name: "Question / Support"
+description: "Ask a question or request help using the project."
+title: "[question] "
+labels: ["question"]
+body:
+ - type: input
+ id: summary
+ attributes:
+ label: "Short summary"
+ description: "One-line summary of your question."
+ validations:
+ required: true
+
+ - type: dropdown
+ id: where
+ attributes:
+ label: "Where are you using the project?"
+ options:
+ - label: "Discord (bot)"
+ value: discord
+ - label: "Web UI"
+ value: web
+ - label: "Self-host / backend"
+ value: selfhost
+ - label: "Other"
+ value: other
+
+ - type: textarea
+ id: details
+ attributes:
+ label: "Details"
+ description: "Provide as much detail as needed to answer your question. Include configuration, commands, or links."
+ validations:
+ required: true
+
+ - type: input
+ id: tried
+ attributes:
+ label: "Docs or resources you've already checked"
+ description: "Optional: links to docs, StackOverflow or existing issues you checked."
diff --git a/.github/PULL_REQUEST_TEMPLATE.md b/.github/PULL_REQUEST_TEMPLATE.md
new file mode 100644
index 0000000..9d1b132
--- /dev/null
+++ b/.github/PULL_REQUEST_TEMPLATE.md
@@ -0,0 +1,30 @@
+# Pull Request Template
+
+## Description
+Please provide a clear and concise description of the changes you've made.
+
+### What problem are you solving?
+Explain the problem this PR addresses and your approach to solving it.
+
+### Related Issue
+- Closes # (replace with issue number)
+
+## Checklist
+Please confirm the following checks when submitting the pull request. This helps us ensure the completeness of the project:
+
+- [ ] **Attach Proof of Work** - Include at least one screenshot or short video showing the work
+- [ ] **Explain Your Approach** - What problem you are solving and your approach is clearly described in the PR description
+- [ ] **PR links to the issue** - This PR is linked to an issue (e.g., Closes #123)
+- [ ] I have tested my changes locally
+- [ ] My code follows the project's coding standards
+- [ ] I have added appropriate comments to my code
+- [ ] I have updated documentation if necessary
+
+## Screenshots/Video
+Please attach screenshots or a short video demonstrating your changes:
+
+## Additional Notes
+Add any additional context, notes, or information that might be helpful for reviewers.
+
+---
+*This checklist is provided to every contributor to ensure guidelines are followed and no subtask is left incomplete.*
\ No newline at end of file
diff --git a/.github/workflows/send-badge.yml b/.github/workflows/send-badge.yml
index a8ea24b..a7bfc5f 100644
--- a/.github/workflows/send-badge.yml
+++ b/.github/workflows/send-badge.yml
@@ -58,11 +58,11 @@ jobs:
{ id: '1MlUM2RIqd8Q0ek67pMnTNqliqmKND2Rk', rarity: 'common' },
{ id: '1TI4XSRFUfANR5vnuyYhqFf8eWvHloeX2', rarity: 'common' },
{ id: '1x2eYK4oqihEXZoQ_eWnAgM0jXchYZpY4', rarity: 'common' },
- { id: '1otRyHexIqXtKLbCi6Fc8cPRBhzlQYXUd', rarity: 'epic' },
- { id: '17qZ9ZQ3P_jV29J7-qariHkRXgl74u6SZ', rarity: 'rare' },
- { id: '1Cmlm3odKq1VwOrFb1OpWjyTJVeVH8rxG', rarity: 'epic' },
- { id: '1rQrn7RMZOUoJ1Lo6J_Bq0taMI3Q8bziq', rarity: 'epic' },
- { id: '1BsBdIlUDxxweK1M6Pjmhtyd78aXOiBD5', rarity: 'rare' }
+ { id: '1otRyHexIqXtKLbCi6Fc8cPRBhzlQYXUd', rarity: 'common' },
+ { id: '17qZ9ZQ3P_jV29J7-qariHkRXgl74u6SZ', rarity: 'common' },
+ { id: '1Cmlm3odKq1VwOrFb1OpWjyTJVeVH8rxG', rarity: 'common' },
+ { id: '1rQrn7RMZOUoJ1Lo6J_Bq0taMI3Q8bziq', rarity: 'common' },
+ { id: '1BsBdIlUDxxweK1M6Pjmhtyd78aXOiBD5', rarity: 'common' }
];
const weights = {
diff --git a/.gitignore b/.gitignore
index 68cf60b..7b3481c 100644
--- a/.gitignore
+++ b/.gitignore
@@ -136,4 +136,24 @@ dist
# Vite logs files
vite.config.js.timestamp-*
-vite.config.ts.timestamp-*
\ No newline at end of file
+vite.config.ts.timestamp-*
+.env.local
+master2.xlsx
+master4.xlsx
+leaderboard.xlsx
+leaderboard.json
+leaderboard.js
+leaderboard copy.json
+leaderboard copy.js
+~$leaderboard.xlsx
+webhook.js
+__pycache__
+/__pycache__
+__pycache__/
+*.pyc
+venv
+/venv
+venv/
+
+leaderboard5-p1.json
+leaderboard5-p2.json
diff --git a/.vscode/settings.json b/.vscode/settings.json
new file mode 100644
index 0000000..6f3a291
--- /dev/null
+++ b/.vscode/settings.json
@@ -0,0 +1,3 @@
+{
+ "liveServer.settings.port": 5501
+}
\ No newline at end of file
diff --git a/CODE_OF_CONDUCT.md b/CODE_OF_CONDUCT.md
new file mode 100644
index 0000000..5fd1700
--- /dev/null
+++ b/CODE_OF_CONDUCT.md
@@ -0,0 +1,111 @@
+# Code of Conduct
+
+## 1. Purpose
+
+The purpose of this Code of Conduct is to provide a clear set of expectations for participation in this project and its community.
+We aim to create an open and welcoming environment for collaboration, where contributors of all backgrounds and experience levels can participate productively and respectfully.
+
+This document outlines expected behavior, unacceptable behavior, enforcement responsibilities, and contribution expectations.
+
+---
+
+## 2. Our Standards
+
+### Expected Behavior
+- Demonstrate respect and professionalism in all interactions.
+- Use inclusive and welcoming language.
+- Accept constructive feedback gracefully.
+- Respect differing opinions and experiences.
+- Focus on what is best for the community and the project.
+- Follow all contribution and review processes defined by the maintainers.
+
+### Unacceptable Behavior
+- Harassment, discrimination, or personal attacks of any kind.
+- Use of inappropriate, sexualized, or offensive language or imagery.
+- Trolling, insulting comments, or disruptive behavior.
+- Public or private harassment or disclosure of private information without consent.
+- Submitting low-quality, spam, or irrelevant pull requests or issues.
+- Misrepresentation or plagiarism of another contributor’s work.
+
+---
+
+## 3. Maintainer and Contributor Responsibilities
+
+Project maintainers are responsible for clarifying standards of acceptable behavior and taking appropriate and fair corrective action in response to unacceptable behavior.
+
+Contributors are expected to:
+- Abide by the Code of Conduct in all project-related activities.
+- Submit pull requests that adhere to the **Project Maintainer’s Checklist** (see Section 6).
+- Respect decisions made by the maintainers during review.
+- Maintain the integrity and quality of the project.
+
+Maintainers have the authority to:
+- Merge, request changes, or reject contributions that do not comply with this Code of Conduct or the project’s contribution standards.
+- Temporarily or permanently ban any contributor for serious or repeated violations.
+
+---
+
+## 4. Scope
+
+This Code of Conduct applies to:
+- All project spaces, including GitHub repositories, issue trackers, and discussions.
+- All communication channels officially associated with the project.
+- Any situation where an individual is representing the project or its community, whether online or offline.
+
+---
+
+## 5. Enforcement
+
+Instances of unacceptable behavior may be reported to the project maintainers at:
+
+**[maintainer-email@example.com]**
+
+All complaints will be reviewed and investigated promptly and fairly.
+All reports will be handled confidentially and in accordance with applicable laws.
+Maintainers are obligated to respect the privacy and security of the reporter.
+
+---
+
+## 6. Maintainer’s Checklist for Pull Requests
+
+To maintain quality and consistency across contributions, all contributors must ensure that their pull requests meet the following checklist requirements:
+
+- Code follows the repository’s **formatting and style guidelines**.
+- All relevant **tests pass successfully**.
+- Commit messages follow the prescribed **naming and structure conventions**.
+- Documentation or comments are added or updated where necessary.
+- The change has been **reviewed and approved** by at least one project maintainer.
+- Any dependencies or related files are properly referenced.
+- No unrelated or unnecessary changes are included.
+
+Pull requests that do not satisfy the checklist may be rejected or requested for modification at the maintainers’ discretion.
+
+---
+
+## 7. Enforcement Actions
+
+Violations of this Code of Conduct may result in one or more of the following actions:
+1. Warning issued to the contributor.
+2. Temporary suspension from contributing.
+3. Permanent ban from the project or organization spaces.
+4. Reversal or removal of non-compliant contributions.
+
+Decisions regarding enforcement will be made by the maintainers collectively and documented appropriately.
+
+---
+
+## 8. Attribution
+
+This Code of Conduct is adapted from the **[Contributor Covenant, version 2.1](https://www.contributor-covenant.org/version/2/1/code_of_conduct/)**.
+For answers to common questions about this code of conduct, see the [Contributor Covenant FAQ](https://www.contributor-covenant.org/faq).
+
+---
+
+## 9. License
+
+This Code of Conduct is distributed under the terms of the **Creative Commons Attribution 4.0 International License (CC BY 4.0)**.
+You are free to share and adapt this material with appropriate attribution to the original source.
+
+---
+
+*End of Code of Conduct*
diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md
new file mode 100644
index 0000000..acac89c
--- /dev/null
+++ b/CONTRIBUTING.md
@@ -0,0 +1,172 @@
+# Contributing to Gssoc FAQ
+
+Thank you for your interest in contributing to this project! We welcome contributions from developers of all skill levels, including participants in GSSoC'25 (GirlScript Summer of Code 2025) and the broader open-source community.
+
+## How to Contribute
+
+### Step 1: Fork the Repository
+1. Navigate to the main repository page on GitHub
+2. Click the "Fork" button in the top-right corner
+3. This creates a copy of the repository in your GitHub account
+
+### Step 2: Clone Your Fork
+Clone the forked repository to your local machine:
+```bash
+git clone https://github.com/YOUR-USERNAME/REPOSITORY-NAME.git
+cd REPOSITORY-NAME
+```
+
+### Step 3: Create a New Branch
+Always create a new branch for your work. Never commit directly to the main branch:
+```bash
+git checkout -b your-branch-name
+```
+
+Use descriptive branch names like:
+- `feature/add-login-page`
+- `fix/navbar-responsive-issue`
+- `docs/update-readme`
+
+### Step 4: Make Your Changes
+- Write clean, readable code
+- Follow the existing code style and structure
+- Test your changes thoroughly before committing
+- Ensure your changes do not break existing functionality
+
+### Step 5: Commit Your Changes
+Write clear and meaningful commit messages:
+```bash
+git add .
+git commit -m "Brief description of changes"
+```
+
+Good commit message examples:
+- `Add user authentication feature`
+- `Fix responsive design issue in header`
+- `Update documentation for API endpoints`
+
+Avoid vague messages like:
+- `Update`
+- `Fix bug`
+- `Changes made`
+
+### Step 6: Push Your Changes
+Push your branch to your forked repository:
+```bash
+git push origin your-branch-name
+```
+
+### Step 7: Create a Pull Request
+1. Go to your forked repository on GitHub
+2. Click "Compare & pull request"
+3. Fill out the pull request template with all required information
+4. Add a clear title and description of your changes
+5. Link the related issue using keywords like `Closes #issue-number` or `Fixes #issue-number`
+6. Attach proof of work (screenshots or videos showing before/after changes)
+7. Submit the pull request
+
+## Pull Request Guidelines
+
+### Required Information
+Every pull request must include:
+- Clear title describing the change
+- Detailed description of what was changed and why
+- Reference to the related issue number
+- Proof of work (screenshots or video demonstration)
+- Confirmation that the code has been tested
+
+### Before Submitting
+- Ensure your code follows the project's coding standards
+- Test all functionality affected by your changes
+- Update documentation if you are adding new features
+- Make sure your branch is up to date with the main branch
+- Resolve any merge conflicts before submitting
+
+### Commit Message Guidelines
+- Use present tense ("Add feature" not "Added feature")
+- Keep the first line under 50 characters
+- Provide additional details in the body if necessary
+- Reference issues and pull requests when relevant
+
+### Code Review Process
+- Maintainers will review your pull request
+- You may be asked to make changes or clarifications
+- Address all review comments promptly
+- Once approved, your pull request will be merged
+
+## Recognition and Badges
+
+Contributors who successfully submit merged pull requests will receive:
+- **Pro Github Contributor Badge**: Awarded for quality contributions
+- **Dev Slayer Badge**: Awarded for significant contributions to the project
+
+These badges recognize your valuable contributions to the open-source community.
+
+## Code of Conduct
+
+This project adheres to the Contributor Covenant Code of Conduct. By participating, you are expected to uphold this code. Please report unacceptable behavior to the project maintainers.
+
+Reference: [Contributor Covenant](https://www.contributor-covenant.org/)
+
+## Types of Contributions
+
+### Bug Reports
+- Use the issue tracker to report bugs
+- Describe the bug clearly with steps to reproduce
+- Include screenshots or error messages if applicable
+- Specify your environment (OS, browser, version)
+
+### Feature Requests
+- Submit feature requests through the issue tracker
+- Clearly describe the feature and its benefits
+- Explain why this feature would be useful to the project
+
+### Code Contributions
+- Look for issues labeled `good first issue` or `help wanted`
+- GSSoC'25 participants should look for issues labeled `Gssoc2025`
+- Always discuss major changes in an issue before starting work
+
+### Documentation
+- Improve existing documentation
+- Add examples and clarifications
+- Fix typos and grammatical errors
+- Ensure documentation stays up to date with code changes
+
+## Testing Guidelines
+
+Before submitting your pull request:
+1. Test all new features thoroughly
+2. Verify that existing functionality is not broken
+3. Test on different browsers/devices if applicable
+4. Include screenshots or videos demonstrating the changes
+
+## Getting Help
+
+If you need help or have questions:
+- Check existing documentation and issues
+- Comment on the related issue for clarification
+- Reach out to maintainers through issue comments
+- Be patient and respectful when seeking assistance
+
+## Using the new interactive Issue forms
+
+We now provide interactive GitHub Issue Forms to make filing bugs, feature requests, and questions easier and more structured. To create a new issue:
+
+1. Click the repository's "New issue" button on GitHub.
+2. Choose the appropriate form: "Bug report", "Feature request", or "Question / Support".
+3. Fill the required fields in the form — required fields will prevent submission until completed.
+
+These forms automatically apply labels (e.g., `bug`, `enhancement`, `question`) to help maintainers triage incoming reports. If you prefer the old templates, legacy copies are preserved in `.github/ISSUE_TEMPLATE/legacy/`.
+
+## Important Notes
+
+- Do not submit AI-generated code without understanding and reviewing it
+- Ensure your contributions are original or properly attributed
+- Respect the project's coding style and conventions
+- Be responsive to feedback and review comments
+
+## License
+
+By contributing to this project, you agree that your contributions will be licensed under the same license as the project.
+
+Thank you for contributing to this project and being part of our open-source community!
diff --git a/Dockerfile b/Dockerfile
new file mode 100644
index 0000000..67cb5c3
--- /dev/null
+++ b/Dockerfile
@@ -0,0 +1,23 @@
+# Use a slim Python base image
+FROM python:3.10-slim
+
+# Set working directory
+WORKDIR /app
+
+# Copy only Python-related files
+COPY requirements.txt .
+RUN pip install --no-cache-dir -r requirements.txt
+
+# Copy only Python source files
+COPY app.py .
+COPY faq_matcher.py .
+# Add any other required Python files
+
+# Optional: copy your .env if needed in build (rare)
+# COPY .env .
+
+# Expose the port
+EXPOSE 5000
+
+# Start Flask app using Gunicorn
+CMD ["gunicorn", "-b", "0.0.0.0:5000", "app:app"]
diff --git a/Readme.md b/Readme.md
index 7e79d95..55c7aba 100644
--- a/Readme.md
+++ b/Readme.md
@@ -6,6 +6,58 @@ The **GSSoC FAQ Bot** is an unofficial Discord bot designed to help participants
Whether you're a first-time contributor wondering how to get started or an experienced developer looking for specific project information, this bot has got you covered! 🚀
+
+
+## 🚀Featured In
+
+
+
+
+ Event Logo
+ Event Name
+ Event Description
+
+
+
+ GirlScript Summer of Code (GSSOC) 2025
+ 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.
+
+
+
+
+
+
+## Statistics 📊
+
+
+
+
+ 🌟 Stars
+ 🍴 Forks
+ 🐛 Issues
+ 🔔 Open PRs
+ 🔕 Closed PRs
+ 🛠 Languages
+ 🌐 Contributors
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+> [!NOTE]
+> GSSOC FAQ is not only for General Query (que/ans) but it can also Give you Details about 300+ Projects whicg are all enrolled under GSSOC25.
+> This also have Projects by Phase and Tech stack. It even includes Mentor Socials and Project owner/admin socials (Github, Linkedin, Email) to connect with them faster.
## ✨ Features
### 🔍 **FAQ Command (`/faq`)**
@@ -235,14 +287,14 @@ We're excited to have you contribute! Here's how to get started:
Need help? We've got you covered!
-- **💬 Discord**: Join our community server[https://discord.gg/dnNzknP2]
+- **💬 Discord**: Join our community server[https://discord.gg/gM3RJ3Aydj]
- **📧 Issues**: Open a GitHub issue for bugs or feature requests
- **📖 Docs**: Check our detailed documentation
- **🤝 Mentors**: Reach out to project mentors for guidance
## 📄 License
-This project is licensed under the MIT License - see the LICENSE file for details.
+This project is licensed under the MIT License - see the [LICENSE](LICENSE) file for details.
## 🙏 Acknowledgments
@@ -258,3 +310,7 @@ This project is licensed under the MIT License - see the LICENSE file for detail
Happy Contributing! 🚀
+
+
+
+
diff --git a/__pycache__/faq_matcher.cpython-313.pyc b/__pycache__/faq_matcher.cpython-313.pyc
new file mode 100644
index 0000000..d96cc65
Binary files /dev/null and b/__pycache__/faq_matcher.cpython-313.pyc differ
diff --git a/app.py b/app.py
new file mode 100644
index 0000000..b1846d6
--- /dev/null
+++ b/app.py
@@ -0,0 +1,25 @@
+from flask import Flask, request, jsonify
+from faq_matcher import find_best_matches
+import os
+
+app = Flask(__name__)
+
+@app.route('/ask', methods=['POST'])
+def ask():
+ data = request.get_json()
+ question = data.get('question')
+
+ if not question:
+ return jsonify({'error': 'No question provided'}), 400
+
+ matches = find_best_matches(question, top_n=3, threshold=0.65)
+
+ if not matches:
+ return jsonify({'matches': [], 'message': 'No good match found.'})
+
+ return jsonify({'matches': matches})
+
+if __name__ == '__main__':
+ # app.run(port=5000)
+ port = int(os.environ.get("PORT", 5000)) # fallback to 5000 for local dev
+ app.run(host="0.0.0.0", port=port)
diff --git a/chunkMessgae.js b/chunkMessgae.js
index 8d6a7ac..73374a3 100644
--- a/chunkMessgae.js
+++ b/chunkMessgae.js
@@ -1,6 +1,9 @@
const { EmbedBuilder, ActionRowBuilder, ButtonBuilder, ButtonStyle } = require('discord.js');
const PAGE_SIZE = 27; // projects per page
+const PHASE1_LABEL = '`PHASE 1 Project`'; // inline code formatting
+const PHASE2_LABEL = '`PHASE 2 Project`'; // inline code formatting
+
function createProjectEmbed(pageProjects, pageIndex, totalPages) {
const embed = new EmbedBuilder()
@@ -8,12 +11,18 @@ function createProjectEmbed(pageProjects, pageIndex, totalPages) {
.setColor('#00AAFF')
.setDescription(
// pageProjects.map((p, i) => `${i + 1}. [${p["Project name"]}](${p["Project link"]})`).join('\n')
- pageProjects.map((p, i) => `${i + 1 + pageIndex * PAGE_SIZE}. [${p["Project name"]}](${p["Project link"]})`).join('\n')
-
+ pageProjects
+ .map((p, i) => {
+ const label = p.keyword === 'phase1' ? ` ${PHASE1_LABEL}` : ` ${PHASE2_LABEL}`;
+ return `${i + 1 + pageIndex * PAGE_SIZE}. [${p["Project name"]}](${p["Project link"]})${label}`;
+ })
+ .join('\n')
);
return embed;
}
+
+
async function sendPaginatedProjects(interaction, projects) {
const pages = [];
for (let i = 0; i < projects.length; i += PAGE_SIZE) {
diff --git a/convert-to-xl.js b/convert-to-xl.js
new file mode 100644
index 0000000..51b9030
--- /dev/null
+++ b/convert-to-xl.js
@@ -0,0 +1,40 @@
+const fs = require('fs');
+const XLSX = require('xlsx');
+
+// Load the leaderboard JSON
+const data = JSON.parse(fs.readFileSync('leaderboard.json', 'utf8'));
+
+const rows = [];
+
+for (const [username, userData] of Object.entries(data)) {
+ const { prs, currentPoints, expectedPoints, avatar_url, profile_url } = userData;
+
+ prs.forEach(pr => {
+ rows.push({
+ Username: username,
+ Profile_URL: profile_url,
+ Avatar_URL: avatar_url,
+ Repo: pr.repo,
+ PR_Title: pr.title,
+ PR_URL: pr.url,
+ Level: pr.level || "Not Labeled",
+ Points: pr.points,
+ Merged: pr.merged,
+ PR_State: pr.state,
+ Created_At: pr.created_at,
+ Updated_At: pr.updated_at,
+ Merged_At: pr.merged_at || "",
+ User_Current_Points: currentPoints,
+ User_Expected_Points: expectedPoints
+ });
+ });
+}
+
+// Convert to worksheet and workbook
+const worksheet = XLSX.utils.json_to_sheet(rows);
+const workbook = XLSX.utils.book_new();
+XLSX.utils.book_append_sheet(workbook, worksheet, "Leaderboard");
+
+// Save as Excel
+XLSX.writeFile(workbook, "leaderboard.xlsx");
+console.log("✅ leaderboard.xlsx created successfully!");
diff --git a/demo.json b/demo.json
new file mode 100644
index 0000000..d7ddb8d
--- /dev/null
+++ b/demo.json
@@ -0,0 +1,52 @@
+[
+ {
+ "Project name": "Weather Forecast Web App",
+ "Project description": "A responsive web app that allows users to check real-time weather updates by city name.",
+ "Project link": "https://github.com/Vaishnavi-1104/Weatherapp",
+ "Project admin": "Vaishnavi V",
+ "Admin linkedin": "https://www.linkedin.com/in/vaishnavi-vadlakonda/",
+ "Admin github": "https://github.com/Vaishnavi-1104",
+ "Tech stack": "HTML, CSS, JavaScript, OpenWeatherMap API",
+ "keyword": "phase2"
+ },
+ {
+ "Project name": "Toolva App",
+ "Project description": "Toolva Mobile\n A comprehensive mobile application that serves as a one-stop directory for AI tools and services. Built with React Native and Expo.",
+ "Project link": "https://github.com/SUGAM-ARORA/Toolva",
+ "Project admin": "Sugam Arora",
+ "Admin linkedin": "https://www.linkedin.com/in/sugamarora23/",
+ "Admin github": "https://github.com/SUGAM-ARORA",
+ "Tech stack": "React Native , Expo , Go , Supabase , Sonarqube , Veracode",
+ "keyword": "phase2"
+ },
+ {
+ "Project name": "Divinora",
+ "Project description": "Digital Sanctuary for exploring Divine Wisdom and spiritual Knowledge",
+ "Project link": "https://github.com/SUGAM-ARORA/Divinora",
+ "Project admin": "Sugam Arora",
+ "Admin linkedin": "https://www.linkedin.com/in/sugamarora23/",
+ "Admin github": "https://github.com/SUGAM-ARORA",
+ "Tech stack": "javascript nextjs tailwindcss supabase shadcn",
+ "keyword": "phase2"
+ },
+ {
+ "Project name": "Adoptive AI based traffic management system",
+ "Project description": "This Adopative AI Based Traffic Management System The basic idea of a traffic signal where vehicles are lined up in four lanes: Lane 1, Lane 2, Lane 3, and Lane 4. A camera or sensor system will simultaneously capture images of all four lanes. These captured images will be stored within a single frame. The stored frame will then be processed using the YOLO API, an artificial intelligence-based object detection model. By analyzing the detected vehicles in the image, the vehicle density of each lane will be determined. Based on the calculated vehicle density, the signal timing will be set accordingly. If the vehicle density exceeds a predefined range, a fixed setup timer will be applied to regulate the traffic flow.",
+ "Project link": "https://github.com/sachingiri58/techkruti",
+ "Project admin": "Sachin Gajanan Giri",
+ "Admin linkedin": "https://www.linkedin.com/in/sachin-giri -657698221",
+ "Admin github": "https://github.com/sachingiri58",
+ "Tech stack": "HTML, CSS, JavaScript, React.js, Node.js, Express.js, PostgreSQL, MongoDB, Python, OpenCV, YOLOv5",
+ "keyword": "phase2"
+ },
+ {
+ "Project name": "webBuilder",
+ "Project description": "Webinex is a an Ai-Powered no code website builder where user can create complete website by simply entering prompt. Leveraging Genai and Ml models, it builds UIs, page layout, and basic logic - instantly",
+ "Project link": "https://github.com/Rahulchaudharyji2/WebSiteBuilder",
+ "Project admin": "Rahul Chaudhary",
+ "Admin linkedin": "https://www.linkedin.com/in/rahul-chaudhary-b31b2a297/",
+ "Admin github": "https://github.com/Rahulchaudharyji2",
+ "Tech stack": "React, Tailwind, Nodejs, Google gemini / custom Model / Mongodb or postgress/ jwt",
+ "keyword": "phase2"
+ },
+]
\ No newline at end of file
diff --git a/deploy-command.js b/deploy-command.js
index 2b82f06..5fc2fd0 100644
--- a/deploy-command.js
+++ b/deploy-command.js
@@ -27,6 +27,16 @@ const commands = [
required: true,
autocomplete: true
},
+ {
+ name: 'phase',
+ description: 'Filter projects by GSSoC phase',
+ type: ApplicationCommandOptionType.String,
+ required: false,
+ choices: [
+ { name: 'Phase 1', value: 'phase1' },
+ { name: 'Phase 2', value: 'phase2' }
+ ]
+ },
{
name: 'question',
description: 'Optional follow-up question (e.g. "guide to contribute")',
@@ -34,7 +44,11 @@ const commands = [
required: false
}
]
- }
+ },
+{
+ name: 'fun',
+ description: 'Get a fun nerdy joke or fact'
+ },
];
const rest = new REST({ version: '10' }).setToken(process.env.BOT_TOKEN);
@@ -43,6 +57,7 @@ const rest = new REST({ version: '10' }).setToken(process.env.BOT_TOKEN);
try {
console.log('Registering slash command...');
await rest.put(
+ // Routes.applicationGuildCommands(process.env.CLIENT_ID, process.env.GUILD_ID), // for Guild commands
Routes.applicationCommands(process.env.CLIENT_ID),
{ body: commands }
);
@@ -55,4 +70,3 @@ const rest = new REST({ version: '10' }).setToken(process.env.BOT_TOKEN);
// const data = await rest.get(Routes.applicationCommands(process.env.CLIENT_ID));
// console.log("Registered commands:", data.map(cmd => cmd.name));
-
diff --git a/faq_matcher.py b/faq_matcher.py
new file mode 100644
index 0000000..2940f62
--- /dev/null
+++ b/faq_matcher.py
@@ -0,0 +1,53 @@
+from sentence_transformers import SentenceTransformer
+from sklearn.metrics.pairwise import cosine_similarity
+import numpy as np
+import json
+
+# Load model and questions only once
+model = SentenceTransformer('all-MiniLM-L6-v2')
+
+with open('faqs.json', 'r', encoding='utf-8') as f:
+ faqs = json.load(f)
+
+questions = [item['question'] for item in faqs]
+question_embeddings = model.encode(questions)
+
+def find_best_matches(user_question, top_n=3, threshold=0.55):
+ print(f"\n[INPUT] User asked: {user_question}")
+
+ user_embedding = model.encode([user_question])
+ similarities = cosine_similarity(user_embedding, question_embeddings)[0]
+
+ top_indices = similarities.argsort()[-top_n:][::-1]
+
+ results = []
+ for idx in top_indices:
+ score = float(similarities[idx])
+ print(f"[ML] Match: {faqs[idx]['question']} | Score: {score}")
+ if score >= threshold:
+ results.append({
+ "question": faqs[idx]["question"],
+ "answer": faqs[idx]["answer"],
+ "score": score
+ })
+
+ if results:
+ return results
+
+ # 🔁 Fallback with difflib
+ print("[ML] No confident match found. Trying fallback...")
+ from difflib import get_close_matches
+ fallback_qs = get_close_matches(user_question, questions, n=1, cutoff=0.4)
+ print("[Fallback candidates]:", fallback_qs)
+
+ if fallback_qs:
+ fallback_index = questions.index(fallback_qs[0])
+ print(f"[Fallback MATCH]: {faqs[fallback_index]['question']}")
+ return [{
+ "question": faqs[fallback_index]["question"],
+ "answer": faqs[fallback_index]["answer"],
+ "score": 0.4
+ }]
+
+ print("[Fallback] No good match found either.")
+ return []
\ No newline at end of file
diff --git a/faqs.json b/faqs.json
index bc447d2..4bceb36 100644
--- a/faqs.json
+++ b/faqs.json
@@ -1,42 +1,67 @@
[
- { "question": "All Commands for GSSoC FAQ Bot?",
+ {
+ "question": "All Commands for GSSoC FAQ Bot?",
"answer": "Yes Here You Go. \n"
- },
+ },
{
- "question": "What is GSSoC?",
- "answer": "GSSoC stands for GirlScript Summer of Code. It is a 3-month long open-source program organized by the GirlScript Foundation to encourage students to contribute to real-world projects. Participants collaborate with open-source project maintainers, receive mentorship, and improve their coding and collaboration skills. Roles include contributors (students writing code), mentors (experienced developers guiding contributors), and project admins (overseeing the entire project and reviewing progress)."
+ "question": "Who developed this bot?",
+ "answer": "**This GSSOC FAQ bot was custom-built by [Piyush Patel](https://github.com/piyushpatelcodes)** to help GSSoC managers answer frequently repeated questions from contributors.\n\nHe created it to save time and ensure contributors get quick answers every day — even when the same question is asked again and again 😄\n\n🔗 **GitHub:** [piyushpatelcodes](https://github.com/piyushpatelcodes)\n🔗 **LinkedIn:** [piyushpatelcodes](https://linkedin.com/in/piyushpatelcodes) \n🔗 Liked the Work: *[Star the Repo, Spread the word.](https://github.com/piyushpatelcodes/gssocFAQ-Bot)* \n You can also contribute to the GSSOC FAQ Github Repo. \n https://drive.google.com/file/d/13ECrfgo2LZ2sDcK0tAlmhpT4lHk5DxiR/view?usp=sharing"
+ },
+ {
+ "question": "What is GSSoC? Explain all Roles.",
+ "answer": "**GSSoC** stands for *GirlScript Summer of Code*. \n It is a 3-month long open-source program organized by the GirlScript Foundation to encourage students to contribute to real-world projects. \n\n **Roles include:** \n **`Contributors`**: Students or developers who contribute to open-source projects. They choose issues, submit PRs, and follow project guidelines independently. - No need to be assigned to a mentor. \n\n **`Mentors`**: Experienced developers assigned to specific projects. They review PRs and answer contributor questions when needed. - Mentors support on demand and not assigned per contributor. \n\n **`Project Admins`**: Lead and manage each project. They coordinate with mentors, review progress, and ensure project quality. They mark the labels with *gssoc2025* and *level 1/2/3*. Please reach out to them by mentioning their GitHub ID in issue or PR comments, or by contacting them on Discord. You can access details of all mentors and project admins using the **`/project command`**."
},
{
"question": "What are the important dates for GSSoC? What are the deadlines?",
- "answer": "**📅 Important Dates for GSSoC 2025:**\n\n- **Applications Open:** June 21, 2025\n- **Application Deadline:** Around July 27, 2025\n- **Selection Emails & ID Cards:** By Sunday, July 27, 2025 (or within a week of applying)\n- **Contribution Period Start:** After receiving either Mail/ID, you can start contributing. \n- **Program Duration:** ~3 months\n\n⏳ *Deadlines and dates may shift slightly. Always refer to official announcements via mail or the [Insight App](https://gssoc.girlscript.tech/#apply).*"
+ "answer": "**📅 Important Dates for GSSoC 2025:**\n\n- **Applications Open:** June 21, 2025\n- **Application Deadline:** You can register on *[Insight App](https://gssoc.girlscript.tech/#apply).* throughout the Program. \n- **Selection Emails & ID Cards:** By Sunday, July 27, 2025 (or within 1-2 weeks of applying)\n- **Contribution Period Start:** It already Started. Type `/project : all projects` command for list of all projects at once. After receiving either Mail or ID card (on insights app), you can start contributing. \n- **Program Duration:** ~3 months\n\n⏳ *Deadlines and dates may shift slightly. Always refer to official announcements via mail or the [Insight App](https://gssoc.girlscript.tech/#apply).*"
},
{
"question": "Is GSSoC only for girls?",
"answer": "Absolutely not! GSSoC welcomes every developer—whether you’re a beginner or experienced, Male or Female, Fresher or Graduate, CodeBro or DevDiva. Everyone is WELCOMED!!!. It's a fantastic opportunity for freshers and anyone eager to dive into open source, learn new skills, and grow as a developer. Everyone is encouraged to join and contribute!"
},
+ {
+ "question": "How to get ID card?",
+ "answer": "📇 You can find your **ID card** in the **Explore section** of the **Insight App**.\n\n👉 Make sure you're logged in with the same email you used during registration. \n\n In Explore tab click on **GSSOC apply banner** then select your role and u will see the id card. If not seeign the id card then that means you are under review."
+ },
+ {
+ "question": "What are the next steps after I got selected?",
+ "answer": "**START CONTRIBUTING!!!** 🎉\n\nThe **Project List** is here [master.xlsx file](https://docs.google.com/spreadsheets/d/12TYRJSwCimT8DIBT4UKKUGR7lrpG2lzTNK82Zc1LwO0/edit?gid=0#gid=0)**.\n\nStay active on the **Insight App** and official discord channels for updates!"
+ },
+ {
+ "question": "What is the difference between Phase 1 and Phase 2 projects?",
+ "answer": "There is no real difference. Both Phase 1 and Phase 2 projects are part of the current year's GSSoC. Phase 2 projects are simply the ones that were added later."
+ },
+ {
+ "question": "How to start contributing?",
+ "answer": "**Contributing is easy!**\n- Go to the [master.xlsx file](https://docs.google.com/spreadsheets/d/12TYRJSwCimT8DIBT4UKKUGR7lrpG2lzTNK82Zc1LwO0/edit?gid=0#gid=0)\n- Select your preferred project and go to its github\n- Check issues raised under the label 'gssoc2025' & 'level 1/2/3', if not ask the project admin to mark them. \n- You ca also follow these instructions after choosing any github project: [How to Contribute Guide](https://www.dataschool.io/how-to-contribute-on-github/) "
+ },
+ {
+ "question": "Can we switch the domain?",
+ "answer": "Absolutely! You can switch domains anytime during GSSoC. Explore, experiment, and contribute wherever your passion leads you — growth comes from trying new things!"
+ },
+ {
+ "question": "Can I contribute to more than one project during GSSoC?",
+ "answer": "Yes! You can contribute to multiple projects as long as you manage your time and follow the project's contribution guidelines. Stay active on the Insight App and GitHub to explore more opportunities."
+ },
{
"question": "ID card or review not showing after clicking the banner?",
- "answer": "Be patient. It doesn't update instantly. If it's still showing the form, wait a bit or reinstall the Insight App — the update takes time. If you have waited for so oong try contacting Program manager. All Updates will roll out by 27 JULY 2025. "
- },{
- "question": "What will I see after successful submission?",
- "answer": "You will either receive a confirmation mail, or see a **'Under Review'** badge on the **Insight App**. If your submission is accepted, your **ID card will appear** there as well. [View example](https://drive.google.com/file/d/13I_WMb6Ha77aekPB6h8spmFPHreW74hG/view?usp=sharing)"
-
+ "answer": "Be patient. It doesn't update instantly. If it's still showing the form, wait a bit or reinstall the Insight App — the update takes time. If you have waited for so oong try contacting Program manager. All Updates will roll out by 27 JULY 2025. If you have registered recently, it may take up to 1-2 weeks. "
},
{
- "question": "What to do after receiving the selection ID or email?",
- "answer": "JUST WAIT!!!. You will receive your ID card and further instructions by Sunday, 27 July 2025. If not, please allow up to a week for processing."
+ "question": "What will I see after successful submission?",
+ "answer": "You will either receive a confirmation mail, or see a **'Under Review'** badge on the **Insight App**. If your submission is accepted, your **ID card will appear** there as well. [View example](https://drive.google.com/file/d/13I_WMb6Ha77aekPB6h8spmFPHreW74hG/view?usp=sharing)"
},
{
"question": "ID card not received yet.",
- "answer": "You will receive the GSSoC25 ID card by Sunday, 27 July 2025. If you have registered recently, it may take up to a week."
+ "answer": "You will receive the GSSoC25 ID card by Sunday, 27 July 2025. If you have registered recently, it may take up to 1-2 weeks."
},
{
"question": "Selection email not received yet.",
- "answer": "You will get the selection **email or ID CARD** by Sunday. If you have recently registered, it may take up to a week. If you do not receive a selection **email or ID CARD on INSIGHTS APP** by the end of this month, it means you have not been selected for GSSoC 2025."
+ "answer": "You will get the selection **email or ID CARD** by 27 JULY 2025. If you have recently registered, it may take up to 1-2 weeks for processing."
},
{
"question": "Selection mail received but no ID card.",
- "answer": "This means YESSS!! YOU ARE SELCTED. You will receive the ID card or email by Sunday or within a week via mail or in ''Insight APP''. Please be patient."
+ "answer": "This means YESSS!! YOU ARE SELCTED. You will receive the ID card or email by 27JULY 2025 or within *1-2 weeks* in ''Insight APP''. Please be patient."
},
{
"question": "ID card received but no mail.",
@@ -48,15 +73,15 @@
},
{
"question": "When will the contribution period start?",
- "answer": "The contribution period is scheduled to start by Sunday, 27 July 2025. If there is any delay, it will begin within the following week."
+ "answer": "The contribution period is scheduled to start by Sunday, 27 July 2025. If there is any delay, it will begin within the following week. \n You can access all the projects details in 1 single command, use `/project : all projects` command."
},
{
"question": "Where is Project List",
- "answer": "The Projects will be out by Sunday, 27 July 2025. If there is any delay, it will begin within the following week."
+ "answer": "Go to the [master.xlsx file](https://docs.google.com/spreadsheets/d/12TYRJSwCimT8DIBT4UKKUGR7lrpG2lzTNK82Zc1LwO0/edit?gid=0#gid=0) . \n Instead of using messy excel sheet, You can access all the projects details in 1 single command, use `/project : all projects` command."
},
{
"question": " I got chosen as a mentor but haven't been given the project yet? Or should I wait?",
- "answer": "JUST WAIT!! The Projects will be out by Sunday, 27 July 2025. If there is any delay, it will begin within the following week."
+ "answer": "JUST WAIT!! Projects are alredy out there. If a project with a suitable opening that matches your skills becomes available, you'll be assigned to the project. As a mentor, your primary responsibility is to support contributors by resolving their doubts. You won’t be required to handle other tasks."
},
{
"question": "Will I get selected?",
@@ -70,26 +95,10 @@
"question": "Can I still apply to any role after 21st July?",
"answer": "Yes, you can still apply for Contributer role, Project admin, Mentor, Campus Ambassador role. While the chances of selection may be lower after the deadline, it's important to take the first step. Apply now — everything else can be managed later. Just take your first baby STEPS. Apply on ''Insights app'' from Playstore or App store NOW."
},
- {
- "question": "How to get ID card?",
- "answer": "📇 You can find your **ID card** in the **Explore section** of the **Insight App**.\n\n👉 Make sure you're logged in with the same email you used during registration. \n\n In Explore tab click on **GSSOC apply banner** then select your role and u will see the id card. If not seeign the id card then that means you are under review."
- },
- {
- "question": "What are the next steps after I got selected?",
- "answer": "**JUST WAITT!!!** 🎉\n\nThe **Project List** will be released by **27 July 2025**. If there's any delay, expect it within the **following week**.\n\nStay active on the **Insight App** and official channels for updates!"
- },
- {
- "question": "How to start contributing?",
- "answer": "**Contributing is easy!**\n- Go to the[master.xlsx file](https://docs.google.com/spreadsheets/d/12TYRJSwCimT8DIBT4UKKUGR7lrpG2lzTNK82Zc1LwO0/edit?gid=0#gid=0)\n- Select your preferred project and go to its github\n- Check issues raised under the label 'gssoc2025' & 'level 1/2/3' "
- },
{
"question": "Do I need to use the same Gmail on Discord as GSSoC registration?",
"answer": "❌ No, you don't need to use the same Gmail on Discord. Your Discord email doesn't have to match your GSSoC registration email.\n\n💬 **Discord is only used for project communication and community discussions**, not for verification or selection."
},
- {
- "question": "Can we switch the domain?",
- "answer": "Absolutely! You can switch domains anytime during GSSoC. Explore, experiment, and contribute wherever your passion leads you — growth comes from trying new things!"
- },
{
"question": "Is there a stipend?",
"answer": "No stipend as GirlScript Foundation is a non-profit organization."
@@ -132,14 +141,28 @@
},
{
"question": "How to get roles?",
- "answer": "To get a role, use the **Insight App** — you can register there as a **Contributor**, **Project Admin**, or **Campus Ambassador**.\n\nFor Discord roles, just rename your discord profile like this: `YourName | Role` (e.g., `piyushpatelcodes | Contributor`)."
+ "answer": "To get a role, use the **Insight App** — you can register there as a **Contributor**, **Project Admin**, or **Campus Ambassador**.\n\nFor Discord roles go to Roles channel or, just rename your discord profile like this: `YourName | Role` (e.g., `piyushpatelcodes | Contributor`)."
},
{
- "question": "Who developed this bot?",
- "answer": "**This bot was custom-built by [Piyush Patel](https://github.com/piyushpatelcodes)** to help GSSoC managers answer frequently repeated questions from contributors.\n\nHe created it to save time and ensure contributors get quick answers every day — even when the same question is asked again and again 😄\n\n🔗 **GitHub:** [piyushpatelcodes](https://github.com/piyushpatelcodes)\n🔗 **LinkedIn:** [piyushpatelcodes](https://linkedin.com/in/piyushpatelcodes) https://drive.google.com/file/d/13ECrfgo2LZ2sDcK0tAlmhpT4lHk5DxiR/view?usp=sharing"
+ "question": "GSSoC FAQ Bot not working",
+ "answer": "To fix the issue:\n\n1. Go to the bot's full profile.\n2. Click **Manage App**.\n3. **Deauthorize** the bot.\n4. Remove (kick) the bot from the server again.\n5. Add the bot again using the links below:\n\n🔹 **Add as App**: [Click here](https://discord.com/oauth2/authorize?client_id=1396740851056640091&scope=applications.commands)\n🔹 **Invite Full Bot to Server**: [Click here](https://discord.com/oauth2/authorize?client_id=1396740851056640091&permissions=8&integration_type=0&scope=bot+applications.commands)\n\nThis should resolve most permission or behavior issues with the bot."
},
{
- "question": "Can I contribute to more than one project during GSSoC?",
- "answer": "Yes! You can contribute to multiple projects as long as you manage your time and follow the project's contribution guidelines. Stay active on the Insight App and GitHub to explore more opportunities."
+ "question": "How to invite the GSSoC FAQ Bot to your own server?",
+ "answer": "You can invite the GSSoC FAQ Bot to your server using the links below:\n\n🔹 **Add as App** (for slash commands only): [Click here](https://discord.com/oauth2/authorize?client_id=1396740851056640091&scope=applications.commands)\n\n🔹 **Invite Full Bot** (with admin permissions): [Click here](https://discord.com/oauth2/authorize?client_id=1396740851056640091&permissions=8&integration_type=0&scope=bot+applications.commands)"
+ },
+ {
+ "question": "What are the minimum points required to be eligible for the certificate?",
+ "answer": "You need a minimum of 60 points to be eligible for the certificate."
+ },
+ {
+ "question": "How many points are assigned for different levels, Level 1, Level 2, and Level 3?",
+ "answer": "For Level 1, participants get 3 points. Level 2 gives 7 points, and Level 3 gives 10 points."
+ },
+ {
+ "question": "What badges can you earn based on contribution points?",
+ "answer": "Badges are awarded as follows: Explorer Badge (60 points), Adventurer Badge (140 points), Trailblazer Badge (200 points), Summit Seeker Badge (300 points), Champion Badge (500 points), Innovator Badge (1200 points), Conqueror Badge (2500 points), Legend Badge (5500 points)."
}
]
+
+
diff --git a/formatMatchReply.js b/formatMatchReply.js
new file mode 100644
index 0000000..4ea5470
--- /dev/null
+++ b/formatMatchReply.js
@@ -0,0 +1,17 @@
+function formatMatchReply(matches) {
+ let msg = "**⚡ Top FAQ Matches ⚡:**\n\n";
+ for (let i = 0; i < matches.length; i++) {
+ const m = matches[i];
+ const scorePercent = Math.round(m.score * 100);
+ msg += `**Q${i + 1}:** ${m.question}\n\n**A:** ${m.answer}\nSimilarity Score: ${scorePercent}%\n`;
+
+ if (m.score <= 0.45) {
+ msg += "\nI found something similar, but it may not be relevant. Try rephrasing your question.\n";
+ }
+
+ msg += "\n";
+ }
+ return msg;
+}
+
+module.exports = formatMatchReply;
diff --git a/funQuotes.js b/funQuotes.js
new file mode 100644
index 0000000..7364b75
--- /dev/null
+++ b/funQuotes.js
@@ -0,0 +1,36 @@
+const funQuotes = [
+ "💥 Why don’t scientists trust atoms? Because they make up everything!",
+ "😴 I'm not lazy, I'm just on energy-saving mode.",
+ "🚫 404: Motivation not found.",
+ "📡 I'd tell you a UDP joke, but you might not get it.",
+ "🕵️ Debugging: Being the detective in a crime movie where you are also the murderer.",
+ "💸 Why did the developer go broke? Because he used up all his cache.",
+ "☕ Programmer: A machine that turns coffee into code.",
+ "😂 I changed my password to 'incorrect'. Now when I forget, it says: Your password is incorrect.",
+ "🎯 Git commit -m 'final_final(FINAL)v9_fixed-really'",
+ "👓 Why do Java devs wear glasses? Because they can’t C#.",
+ "🧠 When I wrote this code, only God and I understood it. Now, only God knows.",
+ "💡 There are 2 hard things in CS: cache invalidation, naming things, and off-by-one errors.",
+ "🧠 My brain has too many tabs open.",
+ "💡 Debugging: The art of removing bugs you didn’t know you had in ways you don’t understand.",
+ "🧃 Life tip: If at first you don't succeed, call it version 1.0.",
+ "🔥 Why did the developer go broke? Because he used up all his cache!",
+ "🐢 I like my code how I like my turtles: slow and steady… but at least it works.",
+ "🍕 You can’t make everyone happy. You’re not pizza.",
+ "🦥 Procrastinators unite!... tomorrow.",
+ "📦 I told my computer I needed a break… it installed updates.",
+ "💻 I don't need therapy, I just need better Wi-Fi.",
+ "🦄 Always code as if the person maintaining your code is a violent psychopath who knows where you live.",
+ "🚀 'I'll do it later' is the first step to never doing it.",
+ "🎧 I listen to podcasts to feel productive while doing absolutely nothing.",
+ "👾 I came. I saw. I debugged.",
+ "🧩 99 little bugs in the code, 99 little bugs. Take one down, patch it around, 127 bugs in the code!",
+ "📉 Every time I fix one bug, two more rise to take its place. Hydra-code!",
+ "🍀 Commit messages are just spells to make the app work.",
+ "⚠️ Warning: I have no idea what I’m doing, but I’m doing it anyway.",
+ "🕵️♂️ Stack Overflow is my co-pilot.",
+ "📚 Still waiting for that ‘Real Life for Dummies’ manual.",
+ "🎉 I deploy on Fridays because I love chaos!"
+];
+
+module.exports = funQuotes;
diff --git a/index.js b/index.js
index 8fb1d85..baf3733 100644
--- a/index.js
+++ b/index.js
@@ -4,20 +4,34 @@ const {
EmbedBuilder,
Events,
AttachmentBuilder,
+ ActionRowBuilder,
+ ButtonBuilder,
+ ButtonStyle,
+ StringSelectMenuBuilder,
} = require("discord.js");
const stringSimilarity = require("string-similarity");
+const fs = require("fs");
const express = require("express");
const path = require("path");
const app = express();
+app.use(express.static("public"));
const PORT = process.env.PORT || 3000;
+const axios = require('axios');
+const formatMatchReply = require("./formatMatchReply");
const documentationRoute = require("./routes/documentation");
+const funQuotes = require("./funQuotes");
+// Adjust the path if needed
+let lastFunQuoteIndex = -1;
require("dotenv").config();
const faqs = require("./faqs.json");
-const projects = require("./projects.json");
const { sendPaginatedProjects } = require("./chunkMessgae");
+const phase1Projects = JSON.parse(fs.readFileSync("./projects-phase1.json"));
+const phase2Projects = JSON.parse(fs.readFileSync("./projects-phase2.json"));
+let usedIndexes = []; // To track shown quotes
+
const client = new Client({
intents: [
GatewayIntentBits.Guilds,
@@ -43,8 +57,46 @@ const idKeywords = [
"developed",
];
-const serverId = '1378813132788727970';
-const TARGET_GUILD_ID = '1378813132788727970';
+// Pagination constants
+const FAQ_PAGE_SIZE = 15;
+
+// Helper to get FAQ content for a page
+function getFaqPageContent(page, faqs) {
+ const start = page * FAQ_PAGE_SIZE;
+ const end = start + FAQ_PAGE_SIZE;
+ const slice = faqs.slice(start, end);
+
+ let content = slice
+ .map((f, i) => `**${start + i + 1}.** ${f.question}`)
+ .join("\n");
+
+ if (!content) content = "*No questions on this page.*";
+
+ return content;
+}
+
+// Helper to create a select menu for a page of FAQs
+function getFaqSelectMenu(page, faqs) {
+ const start = page * FAQ_PAGE_SIZE;
+ const end = start + FAQ_PAGE_SIZE;
+ const slice = faqs.slice(start, end);
+
+ const options = slice.map((f, i) => ({
+ label: f.question.length > 100 ? f.question.slice(0, 97) + "..." : f.question,
+ description: `Question #${start + i + 1}`,
+ value: `${start + i + 1}`, // question number as string (1-based)
+ }));
+
+ return new ActionRowBuilder().addComponents(
+ new StringSelectMenuBuilder()
+ .setCustomId("faq_select_question")
+ .setPlaceholder("Select a question to get its answer")
+ .addOptions(options)
+ );
+}
+
+const serverId = "1378813132788727970";
+const TARGET_GUILD_ID = "1378813132788727970";
const promoMessage = `
📢 **Unofficial GSSOC FAQ Bot is Live!**
@@ -85,94 +137,198 @@ Example:
📣 **Share with GSSoC friends!** Let’s make open source more accessible ✨
`;
-client.once('ready', async () => {
+client.once("ready", async () => {
console.log(`🤖 Logged in as ${client.user.tag}`);
});
+function getNonRepeatingQuote() {
+ // Reset when all quotes have been shown
+ if (usedIndexes.length === funQuotes.length) {
+ usedIndexes = [];
+ }
+
+ let randomIndex;
+
+ do {
+ randomIndex = Math.floor(Math.random() * funQuotes.length);
+ } while (usedIndexes.includes(randomIndex) && funQuotes.length > 1);
+
+ usedIndexes.push(randomIndex);
+ return funQuotes[randomIndex];
+}
+
+
client.on(Events.InteractionCreate, async (interaction) => {
try {
+ if (interaction.isStringSelectMenu()) {
+ if (interaction.customId === "faq_select_question") {
+ const selectedValue = interaction.values[0];
+ const qNum = parseInt(selectedValue, 10);
+ if (isNaN(qNum) || qNum < 1 || qNum > faqs.length) {
+ await interaction.reply({ content: "❌ Invalid question selection.", ephemeral: true });
+ return;
+ }
+ const faq = faqs[qNum - 1];
+ await interaction.reply({
+ content: `**Q${qNum}. ${faq.question}**\n\n${faq.answer}`,
+ ephemeral: true,
+ });
+ return;
+ }
+ }
+
if (interaction.isChatInputCommand()) {
- console.log("userque: ", interaction.options.getString("question"));
+ const userQuestion = interaction.options.getString("question");
+ if (interaction.commandName === "fun") {
+ let randomIndex;
+ do {
+ randomIndex = Math.floor(Math.random() * funQuotes.length);
+ } while (randomIndex === lastFunQuoteIndex && funQuotes.length > 1);
+
+ lastFunQuoteIndex = randomIndex;
+ await interaction.reply(funQuotes[randomIndex]);
+ return;
+ }
+
+
if (interaction.commandName === "faq") {
- const userQuestion = interaction.options.getString("question");
if (!userQuestion) {
throw new Error("No question provided");
}
- const questions = faqs.map((faq) => faq.question);
+ // Check if input is a number representing FAQ index
+ const trimmed = userQuestion.trim();
+ const numberMatch = trimmed.match(/^(\d{1,2})$/);
+
+ if (numberMatch) {
+ const qNum = parseInt(numberMatch[1], 10);
+ if (qNum >= 1 && qNum <= faqs.length) {
+ const match = faqs[qNum - 1];
+ await interaction.reply(`**Q${qNum}. ${match.question}**\n\n${match.answer}`);
+ return;
+ } else {
+ await interaction.reply(
+ `❌ Invalid question number. Please enter a number between 1 and ${faqs.length}.`
+ );
+ return;
+ }
+ }
+
+ // --- "all commands" => paginated list with select menu
if (userQuestion.toLowerCase().includes("all commands")) {
- const allQuestions = faqs
- .map((f, i) => `• **${i + 1}.** ${f.question}`)
- .join("\n");
+ const totalPages = Math.ceil(faqs.length / FAQ_PAGE_SIZE);
+ const page = 0;
+
+ const rowPagination = new ActionRowBuilder().addComponents(
+ new ButtonBuilder()
+ .setCustomId(`faq_prev_${page}`)
+ .setLabel("Previous")
+ .setStyle(ButtonStyle.Secondary)
+ .setDisabled(true),
+
+ new ButtonBuilder()
+ .setCustomId(`faq_next_${page}`)
+ .setLabel("Next")
+ .setStyle(ButtonStyle.Primary)
+ .setDisabled(totalPages <= 1)
+ );
+ const rowSelectMenu = getFaqSelectMenu(page, faqs);
await interaction.reply({
- content: `**📋 Here's a list of all available questions you can ask the bot:**\n\n${allQuestions}\n\n*Use \`/faq\` and start typing your question to get an instant answer!*`,
+ content: `**📋 FAQ List (Page ${
+ page + 1
+ }/${totalPages}):**\n\n${getFaqPageContent(page, faqs)}\n\n*Select a question below, or type \`/faq question:\` to get an answer!*`,
+ components: [rowPagination, rowSelectMenu],
});
return;
}
- const { bestMatch, bestMatchIndex } = stringSimilarity.findBestMatch(
- userQuestion,
- questions
- );
+ console.time("mlreq"); // ✅ Start timer for ML request
- let match = faqs.find(
- (f) => f.question.toLowerCase() === userQuestion.toLowerCase()
- );
+ try {
+ console.time("mlreq");
+ const res = await axios.post(
+ `${process.env.BACKEND_URL || 'http://127.0.0.1:5000'}/ask`,
+ { question: userQuestion }
+ );
- if (
- (!match || match === undefined || match === null) &&
- bestMatch.rating >= 0.3
- ) {
- match = faqs[bestMatchIndex];
- }
- console.log("bestMatch: ", bestMatch);
+ console.timeEnd("mlreq"); // ✅ End timer (success case)
+
+ const { matches, message } = res.data;
+
+ if (!matches || matches.length === 0) {
+ await interaction.reply({
+ content: "🤖 Sorry, I couldn’t find a good match. Try rephrasing or use `/faq question: all commands`.",
+ ephemeral: false,
+ });
+ return;
+ }
+
+ const replyMessage = formatMatchReply(matches);
+
+ await interaction.reply({
+ content: replyMessage,
+ ephemeral: false,
+ });
- if (match) {
- await interaction.reply(match.answer);
const lowerQ = userQuestion.toLowerCase();
if (idKeywords.some((keyword) => lowerQ.includes(keyword))) {
const file = new AttachmentBuilder("./public/assets/idcard.png");
await interaction.followUp({
content:
- "You will get an ID card like this directly in your **Insight App** Only available for Android an iOS. You can download the app here: https://gssoc.girlscript.tech/#apply \n **Mail or ID CARD on Insights App**, Anything is a confirmation form GSSOC \n **Contribute in this GSSOC FAQ unofficial BOT** https://github.com/piyushpatelcodes/gssocFAQ-Bot",
+ "You will get an ID card like this directly in your **Insight App**. Download here: https://gssoc.girlscript.tech/#apply",
files: [file],
});
}
- } else {
- await interaction.reply("❌ Sorry, I couldn’t find an answer to that. Please try rephrasing your question or check the FAQ list with `/faq question: all commands`.");
+
+ } catch (err) {
+ console.timeEnd("mlreq"); // ✅ End timer (failure case)
+ console.error("Flask API error:", err);
+ await interaction.reply({
+ content: "❌ Internal error. Please try again later.",
+ ephemeral: true,
+ });
}
+
} else if (interaction.commandName === "project") {
- const selectedProjectName = interaction.options.getString("project-name");
+ const selectedProjectName =
+ interaction.options.getString("project-name");
+ const selectedPhase = interaction.options.getString("phase");
const question = interaction.options.getString("question") || "";
+
if (!selectedProjectName) {
throw new Error("No project name provided");
}
if (selectedProjectName === "All Projects") {
- const header = `📚 **GSSoC Projects (${projects.length} total):**\n\n`;
- const body = projects
- .map(
- (p, i) => `${i + 1}. [${p["Project name"]}](${p["Project link"]})`
- )
- .join("\n");
- const fullMessage = header + body;
+ let projects = [];
+
+ if (selectedPhase === "phase1") {
+ projects = phase1Projects;
+ } else if (selectedPhase === "phase2") {
+ projects = phase2Projects;
+ } else {
+ projects = [...phase1Projects, ...phase2Projects];
+ }
await sendPaginatedProjects(interaction, projects);
return;
}
+ const allProjects = [...phase1Projects, ...phase2Projects];
- const project = projects.find(
+ const project = allProjects.find(
(p) =>
- p["Project name"].toLowerCase() === selectedProjectName.toLowerCase()
+ p["Project name"].toLowerCase() ===
+ selectedProjectName.toLowerCase()
);
if (!project) {
- await interaction.reply("❌ Project not found. Please check the project name and try again.");
+ await interaction.reply(
+ "❌ Project not found. Please check the project name and try again."
+ );
return;
}
- // Handle contribution question
if (question.toLowerCase().includes("contribute")) {
const contributionGuide = `📘 **Guide to Contribute to [${
project["Project name"]
@@ -215,7 +371,7 @@ Mentors:
// Default: Show project info
const embed = new EmbedBuilder()
- .setTitle(project["Project name"])
+ .setTitle(`${project["Project name"]} - Link | ${project.keyword === 'phase1' ? '` PHASE 1 Project `' : '` PHASE 2 Project `'}`)
.setURL(project["Project link"])
.setDescription(project["Project description"])
.addFields(
@@ -263,47 +419,133 @@ Mentors:
: f.question;
return {
name: trimmedQuestion,
- value: trimmedQuestion,
+ value: f.question,
};
});
await interaction.respond(choices);
} else if (interaction.commandName === "project") {
const focused = interaction.options.getFocused().toLowerCase();
- const choices = projects
+ const allProjects = [...phase2Projects, ...phase1Projects];
+
+ const choices = allProjects
.filter((p) => p["Project name"].toLowerCase().includes(focused))
- .slice(0, 24)
- .map((p) => ({ name: p["Project name"], value: p["Project name"] }));
+ .slice(0, 23)
+ .map((p) => ({
+ name: p["Project name"],
+ value: p["Project name"],
+ }));
+
+ choices.unshift({
+ name: "GSSOC FAQ Bot Project (Get a Pro Contributor GSSOC Badge)",
+ value: "Gssoc FAQ Bot",
+ });
choices.unshift({
- name: `📚 All Projects (Total: ${projects.length} Projects.)`,
+ name: `📚 All Projects (Total: ${
+ phase1Projects.length + phase2Projects.length
+ } Projects. - This included Phase1 and Phase2 Projects.)`,
value: "All Projects",
});
+
await interaction.respond(choices);
}
} catch (error) {
console.error("Autocomplete error:", error);
- // No user response for autocomplete errors to avoid spamming
}
}
} catch (error) {
console.error("Interaction handling error:", error);
if (interaction.isChatInputCommand() && !interaction.replied) {
- await interaction.reply({
- content: "Oops! Something went wrong. Please try again later.",
- ephemeral: true,
- }).catch(err => console.error("Failed to send error message:", err));
+ await interaction
+ .reply({
+ content: "Oops! Something went wrong. Please try again later.",
+ ephemeral: true,
+ })
+ .catch((err) => console.error("Failed to send error message:", err));
}
}
});
-client.login(process.env.BOT_TOKEN).catch(error => {
- console.error("Failed to login bot:", error);
+// Button pagination for FAQ list
+client.on(Events.InteractionCreate, async (interaction) => {
+ if (!interaction.isButton()) return;
+ if (!interaction.customId.startsWith("faq_")) return;
+
+ const [_, direction, pageStr] = interaction.customId.split("_");
+ let page = parseInt(pageStr);
+
+ if (isNaN(page)) {
+ await interaction.reply({
+ content: "Invalid page number.",
+ ephemeral: true,
+ });
+ return;
+ }
+
+ if (direction === "next") {
+ page++;
+ } else if (direction === "prev") {
+ page--;
+ } else {
+ await interaction.reply({
+ content: "Unknown button action.",
+ ephemeral: true,
+ });
+ return;
+ }
+
+ const totalPages = Math.ceil(faqs.length / FAQ_PAGE_SIZE);
+ if (page < 0) page = 0;
+ if (page >= totalPages) page = totalPages - 1;
+
+ const rowPagination = new ActionRowBuilder().addComponents(
+ new ButtonBuilder()
+ .setCustomId(`faq_prev_${page}`)
+ .setLabel("Previous")
+ .setStyle(ButtonStyle.Secondary)
+ .setDisabled(page === 0),
+
+ new ButtonBuilder()
+ .setCustomId(`faq_next_${page}`)
+ .setLabel("Next")
+ .setStyle(ButtonStyle.Primary)
+ .setDisabled(page === totalPages - 1)
+ );
+
+ const rowSelectMenu = getFaqSelectMenu(page, faqs);
+
+ await interaction.update({
+ content: `**📋 FAQ List (Page ${
+ page + 1
+ }/${totalPages}):**\n\n${getFaqPageContent(
+ page,
+ faqs
+ )}\n\n*Select a question below, or type \`/faq question:\` to get an answer!*`,
+ components: [rowPagination, rowSelectMenu],
+ });
});
+// client.login(process.env.BOT_TOKEN).catch((error) => {
+// console.error("Failed to login bot:", error);
+// });
+
// for documentation purpose
-app.use('/docs', express.static(path.join(__dirname, 'views')));
+app.use("/docs", express.static(path.join(__dirname, "views")));
app.use("/docs", documentationRoute);
+// Serve faqs.json to the frontend (some scripts fetch('/faqs.json'))
+app.get('/faqs.json', (req, res) => {
+ try {
+ res.json(faqs);
+ } catch (err) {
+ console.error('Failed to serve faqs.json', err);
+ res.status(500).json({ error: 'Failed to load faqs' });
+ }
+});
+
+
app.listen(3000, () => {
- console.log("🚀 Running at http://localhost:3000/docs");
-});
\ No newline at end of file
+ console.log(`🚀 Running at http://localhost:3000/docs`);
+});
+
+
diff --git a/leaderboard5-p1.json b/leaderboard5-p1.json
new file mode 100644
index 0000000..89c67a3
--- /dev/null
+++ b/leaderboard5-p1.json
@@ -0,0 +1,40669 @@
+{
+ "neeru24": {
+ "expectedPoints": 139,
+ "currentPoints": 139,
+ "levels": {
+ "level1": 5,
+ "level2": 7,
+ "level3": 7
+ },
+ "prs": [
+ {
+ "url": "https://github.com/itsAnimation/AnimateItNow/pull/737",
+ "title": "🔧 Fix: Resolved FAQ Card Overlap Issue",
+ "repo": "itsAnimation/AnimateItNow",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-08-01T13:57:04Z",
+ "updated_at": "2025-08-02T06:27:54Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-08-02T06:27:54Z",
+ "author_url": "https://github.com/neeru24",
+ "author_avatar": "https://avatars.githubusercontent.com/u/161798182?v=4"
+ },
+ {
+ "url": "https://github.com/Kritika75/TheCawnporeMag.github.io/pull/342",
+ "title": "Implemented Cursor Trail Effect to all the pages",
+ "repo": "Kritika75/TheCawnporeMag.github.io",
+ "level": "level3",
+ "points": 10,
+ "created_at": "2025-08-01T09:51:16Z",
+ "updated_at": "2025-08-02T16:23:34Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-08-01T10:13:44Z",
+ "author_url": "https://github.com/neeru24",
+ "author_avatar": "https://avatars.githubusercontent.com/u/161798182?v=4"
+ },
+ {
+ "url": "https://github.com/sampadatiwari30/DeshDarshan/pull/342",
+ "title": "Add \"Learn Indian Languages\" Feature Page",
+ "repo": "sampadatiwari30/DeshDarshan",
+ "level": "level3",
+ "points": 10,
+ "created_at": "2025-08-02T17:13:49Z",
+ "updated_at": "2025-08-03T05:53:41Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-08-02T17:34:26Z",
+ "author_url": "https://github.com/neeru24",
+ "author_avatar": "https://avatars.githubusercontent.com/u/161798182?v=4"
+ },
+ {
+ "url": "https://github.com/sampadatiwari30/DeshDarshan/pull/340",
+ "title": "Fix Map Modal, Asset Loading, and Remove Login-Based UI Conditionals",
+ "repo": "sampadatiwari30/DeshDarshan",
+ "level": "level3",
+ "points": 10,
+ "created_at": "2025-08-02T16:38:19Z",
+ "updated_at": "2025-08-02T16:59:36Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-08-02T16:39:48Z",
+ "author_url": "https://github.com/neeru24",
+ "author_avatar": "https://avatars.githubusercontent.com/u/161798182?v=4"
+ },
+ {
+ "url": "https://github.com/sampadatiwari30/DeshDarshan/pull/326",
+ "title": "🔗 Linked Quiz Page Across Website",
+ "repo": "sampadatiwari30/DeshDarshan",
+ "level": "level3",
+ "points": 10,
+ "created_at": "2025-08-02T13:55:25Z",
+ "updated_at": "2025-08-02T15:02:55Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-08-02T15:02:55Z",
+ "author_url": "https://github.com/neeru24",
+ "author_avatar": "https://avatars.githubusercontent.com/u/161798182?v=4"
+ },
+ {
+ "url": "https://github.com/sampadatiwari30/DeshDarshan/pull/319",
+ "title": "Improved Navigation and Quiz Layout Enhancements",
+ "repo": "sampadatiwari30/DeshDarshan",
+ "level": "level3",
+ "points": 10,
+ "created_at": "2025-08-02T10:48:40Z",
+ "updated_at": "2025-08-02T16:16:04Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-08-02T10:57:45Z",
+ "author_url": "https://github.com/neeru24",
+ "author_avatar": "https://avatars.githubusercontent.com/u/161798182?v=4"
+ },
+ {
+ "url": "https://github.com/sampadatiwari30/DeshDarshan/pull/315",
+ "title": "DeshDarshan Quiz - New Feature Addition",
+ "repo": "sampadatiwari30/DeshDarshan",
+ "level": "level3",
+ "points": 10,
+ "created_at": "2025-08-02T10:07:27Z",
+ "updated_at": "2025-08-03T05:53:28Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-08-02T10:10:06Z",
+ "author_url": "https://github.com/neeru24",
+ "author_avatar": "https://avatars.githubusercontent.com/u/161798182?v=4"
+ },
+ {
+ "url": "https://github.com/sampadatiwari30/DeshDarshan/pull/310",
+ "title": "Improved Blob Animation with GSAP + Parallax Mouse Interaction",
+ "repo": "sampadatiwari30/DeshDarshan",
+ "level": "level2",
+ "points": 7,
+ "created_at": "2025-08-02T08:01:12Z",
+ "updated_at": "2025-08-02T16:17:17Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-08-02T09:10:28Z",
+ "author_url": "https://github.com/neeru24",
+ "author_avatar": "https://avatars.githubusercontent.com/u/161798182?v=4"
+ },
+ {
+ "url": "https://github.com/sampadatiwari30/DeshDarshan/pull/301",
+ "title": "Implemented Cursor Trail Effect to 7 Files (Pages)",
+ "repo": "sampadatiwari30/DeshDarshan",
+ "level": "level3",
+ "points": 10,
+ "created_at": "2025-08-01T17:32:18Z",
+ "updated_at": "2025-08-02T16:17:41Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-08-02T09:21:42Z",
+ "author_url": "https://github.com/neeru24",
+ "author_avatar": "https://avatars.githubusercontent.com/u/161798182?v=4"
+ },
+ {
+ "url": "https://github.com/sampadatiwari30/DeshDarshan/pull/295",
+ "title": "✅ PR: Added Footer to CONTACT US Page",
+ "repo": "sampadatiwari30/DeshDarshan",
+ "level": "level2",
+ "points": 7,
+ "created_at": "2025-08-01T09:26:06Z",
+ "updated_at": "2025-08-01T17:20:18Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-08-01T14:00:43Z",
+ "author_url": "https://github.com/neeru24",
+ "author_avatar": "https://avatars.githubusercontent.com/u/161798182?v=4"
+ },
+ {
+ "url": "https://github.com/sampadatiwari30/DeshDarshan/pull/292",
+ "title": "✨ UI Improvement: Enhanced Card Visibility on Explore India Page",
+ "repo": "sampadatiwari30/DeshDarshan",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-08-01T09:08:41Z",
+ "updated_at": "2025-08-01T17:20:17Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-08-01T15:37:32Z",
+ "author_url": "https://github.com/neeru24",
+ "author_avatar": "https://avatars.githubusercontent.com/u/161798182?v=4"
+ },
+ {
+ "url": "https://github.com/sampadatiwari30/DeshDarshan/pull/290",
+ "title": "🔥 Added: Official Logo for DeshDarshan",
+ "repo": "sampadatiwari30/DeshDarshan",
+ "level": "level2",
+ "points": 7,
+ "created_at": "2025-08-01T08:31:08Z",
+ "updated_at": "2025-08-02T16:17:59Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-08-01T16:52:32Z",
+ "author_url": "https://github.com/neeru24",
+ "author_avatar": "https://avatars.githubusercontent.com/u/161798182?v=4"
+ },
+ {
+ "url": "https://github.com/sampadatiwari30/DeshDarshan/pull/287",
+ "title": "✅ PR: Enhanced Background for Login Page",
+ "repo": "sampadatiwari30/DeshDarshan",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-08-01T04:03:10Z",
+ "updated_at": "2025-08-02T16:18:15Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-08-01T07:31:14Z",
+ "author_url": "https://github.com/neeru24",
+ "author_avatar": "https://avatars.githubusercontent.com/u/161798182?v=4"
+ },
+ {
+ "url": "https://github.com/sampadatiwari30/DeshDarshan/pull/285",
+ "title": "👍 PR: Added Footer to Hidden Destinations Page",
+ "repo": "sampadatiwari30/DeshDarshan",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-08-01T03:50:46Z",
+ "updated_at": "2025-08-01T17:20:15Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-08-01T16:09:36Z",
+ "author_url": "https://github.com/neeru24",
+ "author_avatar": "https://avatars.githubusercontent.com/u/161798182?v=4"
+ },
+ {
+ "url": "https://github.com/sampadatiwari30/DeshDarshan/pull/282",
+ "title": "✅ PR: Added Footer to Crazy Facts Page",
+ "repo": "sampadatiwari30/DeshDarshan",
+ "level": "level2",
+ "points": 7,
+ "created_at": "2025-08-01T03:34:24Z",
+ "updated_at": "2025-08-02T16:18:26Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-08-01T07:33:53Z",
+ "author_url": "https://github.com/neeru24",
+ "author_avatar": "https://avatars.githubusercontent.com/u/161798182?v=4"
+ },
+ {
+ "url": "https://github.com/sampadatiwari30/DeshDarshan/pull/280",
+ "title": "🎨 Enhanced Feedback Form UI with Tailwind CSS",
+ "repo": "sampadatiwari30/DeshDarshan",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-08-01T03:18:36Z",
+ "updated_at": "2025-08-02T16:18:39Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-08-02T09:04:02Z",
+ "author_url": "https://github.com/neeru24",
+ "author_avatar": "https://avatars.githubusercontent.com/u/161798182?v=4"
+ },
+ {
+ "url": "https://github.com/sampadatiwari30/DeshDarshan/pull/263",
+ "title": "🔗 Added Punjab State Page Integration with Map Modal Button",
+ "repo": "sampadatiwari30/DeshDarshan",
+ "level": "level2",
+ "points": 7,
+ "created_at": "2025-07-31T09:14:30Z",
+ "updated_at": "2025-08-02T16:18:50Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-08-01T07:43:29Z",
+ "author_url": "https://github.com/neeru24",
+ "author_avatar": "https://avatars.githubusercontent.com/u/161798182?v=4"
+ },
+ {
+ "url": "https://github.com/sampadatiwari30/DeshDarshan/pull/259",
+ "title": "✨ Added Dedicated Punjab Page with Map, Description, and Styling",
+ "repo": "sampadatiwari30/DeshDarshan",
+ "level": "level2",
+ "points": 7,
+ "created_at": "2025-07-31T07:43:05Z",
+ "updated_at": "2025-08-02T16:19:04Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-08-01T16:38:36Z",
+ "author_url": "https://github.com/neeru24",
+ "author_avatar": "https://avatars.githubusercontent.com/u/161798182?v=4"
+ },
+ {
+ "url": "https://github.com/sampadatiwari30/DeshDarshan/pull/257",
+ "title": "README Documentation Improvements",
+ "repo": "sampadatiwari30/DeshDarshan",
+ "level": "level2",
+ "points": 7,
+ "created_at": "2025-07-31T06:25:10Z",
+ "updated_at": "2025-08-02T16:19:15Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-08-01T15:54:19Z",
+ "author_url": "https://github.com/neeru24",
+ "author_avatar": "https://avatars.githubusercontent.com/u/161798182?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/161798182?v=4",
+ "profile_url": "https://github.com/neeru24"
+ },
+ "gh4aniket": {
+ "expectedPoints": 138,
+ "currentPoints": 138,
+ "levels": {
+ "level1": 12,
+ "level2": 10,
+ "level3": 2
+ },
+ "prs": [
+ {
+ "url": "https://github.com/Adarsh-Chaubey03/TravelGrid/pull/246",
+ "title": "Solved issue#205-Added navbar and footer to login page",
+ "repo": "Adarsh-Chaubey03/TravelGrid",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-27T13:50:05Z",
+ "updated_at": "2025-07-28T06:17:22Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-28T06:17:02Z",
+ "author_url": "https://github.com/gh4aniket",
+ "author_avatar": "https://avatars.githubusercontent.com/u/116141692?v=4"
+ },
+ {
+ "url": "https://github.com/Adarsh-Chaubey03/TravelGrid/pull/242",
+ "title": "Solved Issue#185-added trips page to the app",
+ "repo": "Adarsh-Chaubey03/TravelGrid",
+ "level": "level2",
+ "points": 7,
+ "created_at": "2025-07-27T12:02:17Z",
+ "updated_at": "2025-07-28T06:14:44Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-28T06:14:44Z",
+ "author_url": "https://github.com/gh4aniket",
+ "author_avatar": "https://avatars.githubusercontent.com/u/116141692?v=4"
+ },
+ {
+ "url": "https://github.com/Adarsh-Chaubey03/TravelGrid/pull/209",
+ "title": "ISSUE #184-fixed UI bug of privacy policy page",
+ "repo": "Adarsh-Chaubey03/TravelGrid",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-26T12:19:42Z",
+ "updated_at": "2025-07-26T15:03:18Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-26T15:02:55Z",
+ "author_url": "https://github.com/gh4aniket",
+ "author_avatar": "https://avatars.githubusercontent.com/u/116141692?v=4"
+ },
+ {
+ "url": "https://github.com/Adarsh-Chaubey03/TravelGrid/pull/208",
+ "title": "Solved Issue #183 - added view profile functionality to home page guides section",
+ "repo": "Adarsh-Chaubey03/TravelGrid",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-26T11:45:00Z",
+ "updated_at": "2025-07-26T15:02:04Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-26T15:01:39Z",
+ "author_url": "https://github.com/gh4aniket",
+ "author_avatar": "https://avatars.githubusercontent.com/u/116141692?v=4"
+ },
+ {
+ "url": "https://github.com/Adarsh-Chaubey03/TravelGrid/pull/206",
+ "title": "Solved issue #178- Added functionality to login button on navbar",
+ "repo": "Adarsh-Chaubey03/TravelGrid",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-26T10:33:18Z",
+ "updated_at": "2025-07-26T14:57:30Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-26T14:57:30Z",
+ "author_url": "https://github.com/gh4aniket",
+ "author_avatar": "https://avatars.githubusercontent.com/u/116141692?v=4"
+ },
+ {
+ "url": "https://github.com/Adarsh-Chaubey03/TravelGrid/pull/203",
+ "title": "Solved Issue #180 -Fixed the T&C page UI flaw of navbar overlapping with heading",
+ "repo": "Adarsh-Chaubey03/TravelGrid",
+ "level": "level2",
+ "points": 7,
+ "created_at": "2025-07-26T09:00:37Z",
+ "updated_at": "2025-07-26T14:51:14Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-26T14:49:42Z",
+ "author_url": "https://github.com/gh4aniket",
+ "author_avatar": "https://avatars.githubusercontent.com/u/116141692?v=4"
+ },
+ {
+ "url": "https://github.com/itsAnimation/AnimateItNow/pull/703",
+ "title": "solved issue #680 -added privacy policy page",
+ "repo": "itsAnimation/AnimateItNow",
+ "level": "level3",
+ "points": 10,
+ "created_at": "2025-07-31T12:27:47Z",
+ "updated_at": "2025-08-02T10:58:23Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-08-02T10:58:23Z",
+ "author_url": "https://github.com/gh4aniket",
+ "author_avatar": "https://avatars.githubusercontent.com/u/116141692?v=4"
+ },
+ {
+ "url": "https://github.com/InnoWebLabs/Vehigo/pull/225",
+ "title": "Solved issue # 201 -Darkmode t&c",
+ "repo": "InnoWebLabs/Vehigo",
+ "level": "level2",
+ "points": 7,
+ "created_at": "2025-08-02T14:45:07Z",
+ "updated_at": "2025-08-02T15:40:39Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-08-02T15:40:39Z",
+ "author_url": "https://github.com/gh4aniket",
+ "author_avatar": "https://avatars.githubusercontent.com/u/116141692?v=4"
+ },
+ {
+ "url": "https://github.com/InnoWebLabs/Vehigo/pull/192",
+ "title": "Solved Issue #165 -added map and offline centres in offline centres page",
+ "repo": "InnoWebLabs/Vehigo",
+ "level": "level2",
+ "points": 7,
+ "created_at": "2025-07-31T10:06:36Z",
+ "updated_at": "2025-07-31T16:06:45Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-31T16:06:45Z",
+ "author_url": "https://github.com/gh4aniket",
+ "author_avatar": "https://avatars.githubusercontent.com/u/116141692?v=4"
+ },
+ {
+ "url": "https://github.com/InnoWebLabs/Vehigo/pull/170",
+ "title": "Solved Issue#142-added back to top button on various pages.",
+ "repo": "InnoWebLabs/Vehigo",
+ "level": "level2",
+ "points": 7,
+ "created_at": "2025-07-29T09:30:28Z",
+ "updated_at": "2025-07-29T11:14:58Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-29T11:14:58Z",
+ "author_url": "https://github.com/gh4aniket",
+ "author_avatar": "https://avatars.githubusercontent.com/u/116141692?v=4"
+ },
+ {
+ "url": "https://github.com/InnoWebLabs/Vehigo/pull/164",
+ "title": "Solved Issue #143-Navandfoot offline",
+ "repo": "InnoWebLabs/Vehigo",
+ "level": "level2",
+ "points": 7,
+ "created_at": "2025-07-28T12:18:01Z",
+ "updated_at": "2025-07-28T13:56:34Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-28T13:48:24Z",
+ "author_url": "https://github.com/gh4aniket",
+ "author_avatar": "https://avatars.githubusercontent.com/u/116141692?v=4"
+ },
+ {
+ "url": "https://github.com/InnoWebLabs/Vehigo/pull/163",
+ "title": "Solved issue #147-Dark mode allpages",
+ "repo": "InnoWebLabs/Vehigo",
+ "level": "level2",
+ "points": 7,
+ "created_at": "2025-07-28T12:06:30Z",
+ "updated_at": "2025-07-30T05:54:56Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-28T13:48:25Z",
+ "author_url": "https://github.com/gh4aniket",
+ "author_avatar": "https://avatars.githubusercontent.com/u/116141692?v=4"
+ },
+ {
+ "url": "https://github.com/InnoWebLabs/Vehigo/pull/160",
+ "title": "Solved Issue#148-fixed login page UI and added navbar and footer",
+ "repo": "InnoWebLabs/Vehigo",
+ "level": "level2",
+ "points": 7,
+ "created_at": "2025-07-28T11:23:18Z",
+ "updated_at": "2025-07-29T11:15:23Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-28T13:48:26Z",
+ "author_url": "https://github.com/gh4aniket",
+ "author_avatar": "https://avatars.githubusercontent.com/u/116141692?v=4"
+ },
+ {
+ "url": "https://github.com/InnoWebLabs/Vehigo/pull/156",
+ "title": "Solved issue #149-added automatic bill calculator",
+ "repo": "InnoWebLabs/Vehigo",
+ "level": "level3",
+ "points": 10,
+ "created_at": "2025-07-27T19:15:40Z",
+ "updated_at": "2025-07-28T03:32:40Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-28T03:32:40Z",
+ "author_url": "https://github.com/gh4aniket",
+ "author_avatar": "https://avatars.githubusercontent.com/u/116141692?v=4"
+ },
+ {
+ "url": "https://github.com/InnoWebLabs/Vehigo/pull/123",
+ "title": "solved issue #109 -Feature/transition",
+ "repo": "InnoWebLabs/Vehigo",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-26T23:42:31Z",
+ "updated_at": "2025-07-28T03:33:46Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-27T12:28:50Z",
+ "author_url": "https://github.com/gh4aniket",
+ "author_avatar": "https://avatars.githubusercontent.com/u/116141692?v=4"
+ },
+ {
+ "url": "https://github.com/InnoWebLabs/Vehigo/pull/122",
+ "title": "solved issue#89 -Fix/loginlogo",
+ "repo": "InnoWebLabs/Vehigo",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-26T23:19:55Z",
+ "updated_at": "2025-07-27T14:30:13Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-27T12:28:52Z",
+ "author_url": "https://github.com/gh4aniket",
+ "author_avatar": "https://avatars.githubusercontent.com/u/116141692?v=4"
+ },
+ {
+ "url": "https://github.com/InnoWebLabs/Vehigo/pull/121",
+ "title": "Fixed issue #107-Fix/aboutus",
+ "repo": "InnoWebLabs/Vehigo",
+ "level": "level2",
+ "points": 7,
+ "created_at": "2025-07-26T23:13:38Z",
+ "updated_at": "2025-07-27T16:50:15Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-27T12:28:52Z",
+ "author_url": "https://github.com/gh4aniket",
+ "author_avatar": "https://avatars.githubusercontent.com/u/116141692?v=4"
+ },
+ {
+ "url": "https://github.com/InnoWebLabs/Vehigo/pull/120",
+ "title": "solved issue #108 -Fix/homepage, removed extra about as and blog button from navbar",
+ "repo": "InnoWebLabs/Vehigo",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-26T23:07:55Z",
+ "updated_at": "2025-07-27T16:52:15Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-27T12:28:52Z",
+ "author_url": "https://github.com/gh4aniket",
+ "author_avatar": "https://avatars.githubusercontent.com/u/116141692?v=4"
+ },
+ {
+ "url": "https://github.com/InnoWebLabs/Vehigo/pull/119",
+ "title": "Solved Issue#110-added header navbar and footer to carrent page",
+ "repo": "InnoWebLabs/Vehigo",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-26T23:02:30Z",
+ "updated_at": "2025-07-28T03:33:13Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-27T12:28:52Z",
+ "author_url": "https://github.com/gh4aniket",
+ "author_avatar": "https://avatars.githubusercontent.com/u/116141692?v=4"
+ },
+ {
+ "url": "https://github.com/InnoWebLabs/Vehigo/pull/104",
+ "title": "Fixed Issue#91 -Fix/logins navbar",
+ "repo": "InnoWebLabs/Vehigo",
+ "level": "level2",
+ "points": 7,
+ "created_at": "2025-07-26T13:32:13Z",
+ "updated_at": "2025-07-27T12:30:19Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-26T13:44:03Z",
+ "author_url": "https://github.com/gh4aniket",
+ "author_avatar": "https://avatars.githubusercontent.com/u/116141692?v=4"
+ },
+ {
+ "url": "https://github.com/InnoWebLabs/Vehigo/pull/87",
+ "title": "Solved issue #76- Feature/contactus created",
+ "repo": "InnoWebLabs/Vehigo",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-25T20:07:56Z",
+ "updated_at": "2025-07-25T20:56:46Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-25T20:56:46Z",
+ "author_url": "https://github.com/gh4aniket",
+ "author_avatar": "https://avatars.githubusercontent.com/u/116141692?v=4"
+ },
+ {
+ "url": "https://github.com/InnoWebLabs/Vehigo/pull/86",
+ "title": "Solved issue #75 -added company logo as favicon",
+ "repo": "InnoWebLabs/Vehigo",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-25T18:45:41Z",
+ "updated_at": "2025-07-25T19:59:36Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-25T19:59:36Z",
+ "author_url": "https://github.com/gh4aniket",
+ "author_avatar": "https://avatars.githubusercontent.com/u/116141692?v=4"
+ },
+ {
+ "url": "https://github.com/InnoWebLabs/Vehigo/pull/85",
+ "title": "SOLVED ISSUE #74 -Added Privacy Policy page",
+ "repo": "InnoWebLabs/Vehigo",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-25T17:47:49Z",
+ "updated_at": "2025-07-25T19:48:47Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-25T19:48:47Z",
+ "author_url": "https://github.com/gh4aniket",
+ "author_avatar": "https://avatars.githubusercontent.com/u/116141692?v=4"
+ },
+ {
+ "url": "https://github.com/openml-stack/SentiLog-AI/pull/107",
+ "title": "Solved issue#66 -added company logo as favicon and also in navbar",
+ "repo": "openml-stack/SentiLog-AI",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-28T14:32:49Z",
+ "updated_at": "2025-07-29T09:31:54Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-28T18:21:57Z",
+ "author_url": "https://github.com/gh4aniket",
+ "author_avatar": "https://avatars.githubusercontent.com/u/116141692?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/116141692?v=4",
+ "profile_url": "https://github.com/gh4aniket"
+ },
+ "khanak0509": {
+ "expectedPoints": 108,
+ "currentPoints": 108,
+ "levels": {
+ "level1": 13,
+ "level2": 8,
+ "level3": 0
+ },
+ "prs": [
+ {
+ "url": "https://github.com/SomdattaNag/Security-Screening-System/pull/95",
+ "title": "Improve Error Handling in Location Detection",
+ "repo": "SomdattaNag/Security-Screening-System",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-29T12:54:34Z",
+ "updated_at": "2025-07-29T13:53:06Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-29T13:52:48Z",
+ "author_url": "https://github.com/khanak0509",
+ "author_avatar": "https://avatars.githubusercontent.com/u/186187285?v=4"
+ },
+ {
+ "url": "https://github.com/SomdattaNag/Security-Screening-System/pull/93",
+ "title": "Add phone number validation using phonenumbers library",
+ "repo": "SomdattaNag/Security-Screening-System",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-29T10:32:35Z",
+ "updated_at": "2025-07-30T06:39:30Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-29T12:23:01Z",
+ "author_url": "https://github.com/khanak0509",
+ "author_avatar": "https://avatars.githubusercontent.com/u/186187285?v=4"
+ },
+ {
+ "url": "https://github.com/SomdattaNag/Security-Screening-System/pull/81",
+ "title": "phone alert added",
+ "repo": "SomdattaNag/Security-Screening-System",
+ "level": "level2",
+ "points": 7,
+ "created_at": "2025-07-27T17:52:34Z",
+ "updated_at": "2025-07-28T02:32:39Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-28T02:32:39Z",
+ "author_url": "https://github.com/khanak0509",
+ "author_avatar": "https://avatars.githubusercontent.com/u/186187285?v=4"
+ },
+ {
+ "url": "https://github.com/SomdattaNag/Security-Screening-System/pull/79",
+ "title": "logging-instead-of-print",
+ "repo": "SomdattaNag/Security-Screening-System",
+ "level": "level2",
+ "points": 7,
+ "created_at": "2025-07-27T13:33:23Z",
+ "updated_at": "2025-07-27T14:18:22Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-27T14:03:36Z",
+ "author_url": "https://github.com/khanak0509",
+ "author_avatar": "https://avatars.githubusercontent.com/u/186187285?v=4"
+ },
+ {
+ "url": "https://github.com/SomdattaNag/Security-Screening-System/pull/70",
+ "title": "Add exception handling for email alerts",
+ "repo": "SomdattaNag/Security-Screening-System",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-26T18:58:07Z",
+ "updated_at": "2025-07-27T00:08:20Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-27T00:07:56Z",
+ "author_url": "https://github.com/khanak0509",
+ "author_avatar": "https://avatars.githubusercontent.com/u/186187285?v=4"
+ },
+ {
+ "url": "https://github.com/SomdattaNag/Security-Screening-System/pull/66",
+ "title": "Add regex validation for 16-character app passwords",
+ "repo": "SomdattaNag/Security-Screening-System",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-26T17:44:55Z",
+ "updated_at": "2025-07-27T01:07:08Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-26T18:23:20Z",
+ "author_url": "https://github.com/khanak0509",
+ "author_avatar": "https://avatars.githubusercontent.com/u/186187285?v=4"
+ },
+ {
+ "url": "https://github.com/SomdattaNag/Security-Screening-System/pull/54",
+ "title": "Feature/face encoding cache",
+ "repo": "SomdattaNag/Security-Screening-System",
+ "level": "level2",
+ "points": 7,
+ "created_at": "2025-07-26T06:10:04Z",
+ "updated_at": "2025-07-26T13:55:35Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-26T13:55:02Z",
+ "author_url": "https://github.com/khanak0509",
+ "author_avatar": "https://avatars.githubusercontent.com/u/186187285?v=4"
+ },
+ {
+ "url": "https://github.com/SomdattaNag/Security-Screening-System/pull/53",
+ "title": "Add validation for environment variables",
+ "repo": "SomdattaNag/Security-Screening-System",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-26T04:42:19Z",
+ "updated_at": "2025-07-26T05:16:16Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-26T05:15:16Z",
+ "author_url": "https://github.com/khanak0509",
+ "author_avatar": "https://avatars.githubusercontent.com/u/186187285?v=4"
+ },
+ {
+ "url": "https://github.com/SomdattaNag/Security-Screening-System/pull/52",
+ "title": "Add check for image encoding success before email attachment",
+ "repo": "SomdattaNag/Security-Screening-System",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-25T13:35:36Z",
+ "updated_at": "2025-07-26T03:28:51Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-26T03:28:19Z",
+ "author_url": "https://github.com/khanak0509",
+ "author_avatar": "https://avatars.githubusercontent.com/u/186187285?v=4"
+ },
+ {
+ "url": "https://github.com/SomdattaNag/Security-Screening-System/pull/46",
+ "title": "Add snapshot saving for matched individuals",
+ "repo": "SomdattaNag/Security-Screening-System",
+ "level": "level2",
+ "points": 7,
+ "created_at": "2025-07-24T19:37:58Z",
+ "updated_at": "2025-07-24T23:27:49Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-24T23:27:49Z",
+ "author_url": "https://github.com/khanak0509",
+ "author_avatar": "https://avatars.githubusercontent.com/u/186187285?v=4"
+ },
+ {
+ "url": "https://github.com/SomdattaNag/Security-Screening-System/pull/45",
+ "title": "Add SMS notification feature using Twilio",
+ "repo": "SomdattaNag/Security-Screening-System",
+ "level": "level2",
+ "points": 7,
+ "created_at": "2025-07-24T16:53:17Z",
+ "updated_at": "2025-07-24T18:40:14Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-24T18:39:56Z",
+ "author_url": "https://github.com/khanak0509",
+ "author_avatar": "https://avatars.githubusercontent.com/u/186187285?v=4"
+ },
+ {
+ "url": "https://github.com/SomdattaNag/Security-Screening-System/pull/40",
+ "title": "Integrate OpenCV video feed with Tkinter GUI in separate gui/ folder ",
+ "repo": "SomdattaNag/Security-Screening-System",
+ "level": "level2",
+ "points": 7,
+ "created_at": "2025-07-24T10:57:56Z",
+ "updated_at": "2025-07-24T18:40:53Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-24T15:32:09Z",
+ "author_url": "https://github.com/khanak0509",
+ "author_avatar": "https://avatars.githubusercontent.com/u/186187285?v=4"
+ },
+ {
+ "url": "https://github.com/SomdattaNag/Security-Screening-System/pull/36",
+ "title": "Add confidence score to email alert in send_email function",
+ "repo": "SomdattaNag/Security-Screening-System",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-23T16:01:54Z",
+ "updated_at": "2025-07-24T18:41:53Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-24T02:46:48Z",
+ "author_url": "https://github.com/khanak0509",
+ "author_avatar": "https://avatars.githubusercontent.com/u/186187285?v=4"
+ },
+ {
+ "url": "https://github.com/SomdattaNag/Security-Screening-System/pull/34",
+ "title": "Add sender email and password validation",
+ "repo": "SomdattaNag/Security-Screening-System",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-23T10:34:40Z",
+ "updated_at": "2025-07-24T01:27:46Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-23T15:28:00Z",
+ "author_url": "https://github.com/khanak0509",
+ "author_avatar": "https://avatars.githubusercontent.com/u/186187285?v=4"
+ },
+ {
+ "url": "https://github.com/SomdattaNag/Security-Screening-System/pull/32",
+ "title": "Show face match confidence % on webcam feed",
+ "repo": "SomdattaNag/Security-Screening-System",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-23T07:06:40Z",
+ "updated_at": "2025-07-23T07:47:15Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-23T07:44:36Z",
+ "author_url": "https://github.com/khanak0509",
+ "author_avatar": "https://avatars.githubusercontent.com/u/186187285?v=4"
+ },
+ {
+ "url": "https://github.com/SomdattaNag/Security-Screening-System/pull/27",
+ "title": "Use .env for secure email credentials",
+ "repo": "SomdattaNag/Security-Screening-System",
+ "level": "level2",
+ "points": 7,
+ "created_at": "2025-07-22T18:36:09Z",
+ "updated_at": "2025-07-22T23:30:03Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-22T21:05:59Z",
+ "author_url": "https://github.com/khanak0509",
+ "author_avatar": "https://avatars.githubusercontent.com/u/186187285?v=4"
+ },
+ {
+ "url": "https://github.com/SomdattaNag/Security-Screening-System/pull/26",
+ "title": "Added support to send email alerts to multiple admin recipients",
+ "repo": "SomdattaNag/Security-Screening-System",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-22T17:13:47Z",
+ "updated_at": "2025-07-22T18:03:58Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-22T18:03:58Z",
+ "author_url": "https://github.com/khanak0509",
+ "author_avatar": "https://avatars.githubusercontent.com/u/186187285?v=4"
+ },
+ {
+ "url": "https://github.com/SomdattaNag/Security-Screening-System/pull/24",
+ "title": "Feature/handle missing camera",
+ "repo": "SomdattaNag/Security-Screening-System",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-22T15:15:59Z",
+ "updated_at": "2025-07-22T23:31:02Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-22T15:17:03Z",
+ "author_url": "https://github.com/khanak0509",
+ "author_avatar": "https://avatars.githubusercontent.com/u/186187285?v=4"
+ },
+ {
+ "url": "https://github.com/SomdattaNag/Security-Screening-System/pull/19",
+ "title": "Added FPS (Frames Per Second) tracking to video stream",
+ "repo": "SomdattaNag/Security-Screening-System",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-22T10:29:19Z",
+ "updated_at": "2025-07-22T23:31:28Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-22T13:56:42Z",
+ "author_url": "https://github.com/khanak0509",
+ "author_avatar": "https://avatars.githubusercontent.com/u/186187285?v=4"
+ },
+ {
+ "url": "https://github.com/SomdattaNag/Security-Screening-System/pull/18",
+ "title": "Replaced winsound with playsound for cross-platform sound support",
+ "repo": "SomdattaNag/Security-Screening-System",
+ "level": "level2",
+ "points": 7,
+ "created_at": "2025-07-22T08:36:25Z",
+ "updated_at": "2025-07-22T23:31:57Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-22T09:59:13Z",
+ "author_url": "https://github.com/khanak0509",
+ "author_avatar": "https://avatars.githubusercontent.com/u/186187285?v=4"
+ },
+ {
+ "url": "https://github.com/SomdattaNag/Security-Screening-System/pull/16",
+ "title": "Added horizontal flip to webcam feed",
+ "repo": "SomdattaNag/Security-Screening-System",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-22T03:26:39Z",
+ "updated_at": "2025-07-22T23:32:27Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-22T08:01:50Z",
+ "author_url": "https://github.com/khanak0509",
+ "author_avatar": "https://avatars.githubusercontent.com/u/186187285?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/186187285?v=4",
+ "profile_url": "https://github.com/khanak0509"
+ },
+ "SK8-infi": {
+ "expectedPoints": 99,
+ "currentPoints": 99,
+ "levels": {
+ "level1": 17,
+ "level2": 3,
+ "level3": 1
+ },
+ "prs": [
+ {
+ "url": "https://github.com/Abhishek2634/Foodie/pull/80",
+ "title": "Create LICENSE",
+ "repo": "Abhishek2634/Foodie",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-23T20:56:48Z",
+ "updated_at": "2025-08-02T10:54:35Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-24T04:16:13Z",
+ "author_url": "https://github.com/SK8-infi",
+ "author_avatar": "https://avatars.githubusercontent.com/u/183415109?v=4"
+ },
+ {
+ "url": "https://github.com/Adarsh-Chaubey03/TravelGrid/pull/144",
+ "title": "Add License and Update README",
+ "repo": "Adarsh-Chaubey03/TravelGrid",
+ "level": "level2",
+ "points": 7,
+ "created_at": "2025-07-24T10:13:17Z",
+ "updated_at": "2025-07-24T15:50:32Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-24T15:50:32Z",
+ "author_url": "https://github.com/SK8-infi",
+ "author_avatar": "https://avatars.githubusercontent.com/u/183415109?v=4"
+ },
+ {
+ "url": "https://github.com/Amarjha01/InfantCareCompass/pull/72",
+ "title": "Add License and Update README",
+ "repo": "Amarjha01/InfantCareCompass",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-23T20:30:13Z",
+ "updated_at": "2025-07-24T02:57:36Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-24T02:57:27Z",
+ "author_url": "https://github.com/SK8-infi",
+ "author_avatar": "https://avatars.githubusercontent.com/u/183415109?v=4"
+ },
+ {
+ "url": "https://github.com/itsAnimation/AnimateItNow/pull/312",
+ "title": "Add License and Update README",
+ "repo": "itsAnimation/AnimateItNow",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-24T11:44:56Z",
+ "updated_at": "2025-07-24T19:29:01Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-24T19:29:01Z",
+ "author_url": "https://github.com/SK8-infi",
+ "author_avatar": "https://avatars.githubusercontent.com/u/183415109?v=4"
+ },
+ {
+ "url": "https://github.com/InnoWebLabs/Vehigo/pull/39",
+ "title": "Add License and Update README",
+ "repo": "InnoWebLabs/Vehigo",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-23T21:01:50Z",
+ "updated_at": "2025-07-25T20:21:27Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-24T06:19:26Z",
+ "author_url": "https://github.com/SK8-infi",
+ "author_avatar": "https://avatars.githubusercontent.com/u/183415109?v=4"
+ },
+ {
+ "url": "https://github.com/BaraniVA/Habitheat/pull/41",
+ "title": "Create LICENSE",
+ "repo": "BaraniVA/Habitheat",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-23T20:46:41Z",
+ "updated_at": "2025-07-24T07:48:23Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-24T07:15:03Z",
+ "author_url": "https://github.com/SK8-infi",
+ "author_avatar": "https://avatars.githubusercontent.com/u/183415109?v=4"
+ },
+ {
+ "url": "https://github.com/DhruvJohri/Netflix-Clone/pull/51",
+ "title": "Add license and issue form",
+ "repo": "DhruvJohri/Netflix-Clone",
+ "level": null,
+ "points": 0,
+ "created_at": "2025-07-24T09:46:27Z",
+ "updated_at": "2025-07-24T12:09:18Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-24T11:42:52Z",
+ "author_url": "https://github.com/SK8-infi",
+ "author_avatar": "https://avatars.githubusercontent.com/u/183415109?v=4"
+ },
+ {
+ "url": "https://github.com/Dnyaneshpise/skywatch_alerts/pull/9",
+ "title": "Create LICENSE",
+ "repo": "Dnyaneshpise/skywatch_alerts",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-23T21:29:24Z",
+ "updated_at": "2025-07-25T09:21:55Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-24T08:43:01Z",
+ "author_url": "https://github.com/SK8-infi",
+ "author_avatar": "https://avatars.githubusercontent.com/u/183415109?v=4"
+ },
+ {
+ "url": "https://github.com/efshaperveen/MindJournal/pull/25",
+ "title": "Add License and Update README",
+ "repo": "efshaperveen/MindJournal",
+ "level": "level2",
+ "points": 7,
+ "created_at": "2025-07-23T21:05:04Z",
+ "updated_at": "2025-07-24T10:46:35Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-24T10:46:11Z",
+ "author_url": "https://github.com/SK8-infi",
+ "author_avatar": "https://avatars.githubusercontent.com/u/183415109?v=4"
+ },
+ {
+ "url": "https://github.com/indra7777/frostiq/pull/10",
+ "title": "Create LICENSE",
+ "repo": "indra7777/frostiq",
+ "level": null,
+ "points": 0,
+ "created_at": "2025-07-24T12:57:20Z",
+ "updated_at": "2025-07-25T03:19:42Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-25T03:19:42Z",
+ "author_url": "https://github.com/SK8-infi",
+ "author_avatar": "https://avatars.githubusercontent.com/u/183415109?v=4"
+ },
+ {
+ "url": "https://github.com/Khushi-Nigam/jobportal/pull/29",
+ "title": "Add License and Update README",
+ "repo": "Khushi-Nigam/jobportal",
+ "level": "level3",
+ "points": 10,
+ "created_at": "2025-07-23T21:21:34Z",
+ "updated_at": "2025-07-24T11:18:19Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-24T11:18:18Z",
+ "author_url": "https://github.com/SK8-infi",
+ "author_avatar": "https://avatars.githubusercontent.com/u/183415109?v=4"
+ },
+ {
+ "url": "https://github.com/MinavKaria/Notes-Aid/pull/104",
+ "title": "Add License and Update README",
+ "repo": "MinavKaria/Notes-Aid",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-23T21:25:25Z",
+ "updated_at": "2025-07-24T09:51:09Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-24T09:48:39Z",
+ "author_url": "https://github.com/SK8-infi",
+ "author_avatar": "https://avatars.githubusercontent.com/u/183415109?v=4"
+ },
+ {
+ "url": "https://github.com/pavitraag/Project-Vault/pull/203",
+ "title": "Add CSS Math Duel - Two-Player Speed Math Race Game",
+ "repo": "pavitraag/Project-Vault",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-29T20:59:09Z",
+ "updated_at": "2025-07-31T05:09:28Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-31T05:09:15Z",
+ "author_url": "https://github.com/SK8-infi",
+ "author_avatar": "https://avatars.githubusercontent.com/u/183415109?v=4"
+ },
+ {
+ "url": "https://github.com/pavitraag/Project-Vault/pull/69",
+ "title": "Add reflex tester",
+ "repo": "pavitraag/Project-Vault",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-24T20:09:50Z",
+ "updated_at": "2025-07-31T05:16:18Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-31T05:16:18Z",
+ "author_url": "https://github.com/SK8-infi",
+ "author_avatar": "https://avatars.githubusercontent.com/u/183415109?v=4"
+ },
+ {
+ "url": "https://github.com/pavitraag/Project-Vault/pull/68",
+ "title": "Add Minesweeper",
+ "repo": "pavitraag/Project-Vault",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-24T19:49:50Z",
+ "updated_at": "2025-07-29T18:26:24Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-29T18:26:24Z",
+ "author_url": "https://github.com/SK8-infi",
+ "author_avatar": "https://avatars.githubusercontent.com/u/183415109?v=4"
+ },
+ {
+ "url": "https://github.com/pavitraag/Project-Vault/pull/31",
+ "title": "Add License and Update README",
+ "repo": "pavitraag/Project-Vault",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-23T21:42:27Z",
+ "updated_at": "2025-07-29T18:25:23Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-24T05:46:09Z",
+ "author_url": "https://github.com/SK8-infi",
+ "author_avatar": "https://avatars.githubusercontent.com/u/183415109?v=4"
+ },
+ {
+ "url": "https://github.com/rahulkhandait-sde/cineverse/pull/4",
+ "title": "Add License and Update README",
+ "repo": "rahulkhandait-sde/movie-search",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-24T14:29:49Z",
+ "updated_at": "2025-07-24T14:39:28Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-24T14:38:55Z",
+ "author_url": "https://github.com/SK8-infi",
+ "author_avatar": "https://avatars.githubusercontent.com/u/183415109?v=4"
+ },
+ {
+ "url": "https://github.com/RamakrushnaBiswal/HonorBox/pull/10",
+ "title": "Create LICENSE",
+ "repo": "RamakrushnaBiswal/HonorBox",
+ "level": "level2",
+ "points": 7,
+ "created_at": "2025-07-24T14:24:24Z",
+ "updated_at": "2025-07-25T15:49:01Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-24T14:29:05Z",
+ "author_url": "https://github.com/SK8-infi",
+ "author_avatar": "https://avatars.githubusercontent.com/u/183415109?v=4"
+ },
+ {
+ "url": "https://github.com/SomdattaNag/Security-Screening-System/pull/41",
+ "title": "Add License and Update README",
+ "repo": "SomdattaNag/Security-Screening-System",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-24T12:44:04Z",
+ "updated_at": "2025-07-24T18:41:13Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-24T15:33:43Z",
+ "author_url": "https://github.com/SK8-infi",
+ "author_avatar": "https://avatars.githubusercontent.com/u/183415109?v=4"
+ },
+ {
+ "url": "https://github.com/sristy17/next-payroll/pull/23",
+ "title": "Add License and Update README",
+ "repo": "sristy17/next-payroll",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-24T13:29:51Z",
+ "updated_at": "2025-07-25T03:37:28Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-25T03:37:28Z",
+ "author_url": "https://github.com/SK8-infi",
+ "author_avatar": "https://avatars.githubusercontent.com/u/183415109?v=4"
+ },
+ {
+ "url": "https://github.com/VaibhavCodeClub/term/pull/9",
+ "title": "Add License and Update README",
+ "repo": "sapatevaibhav/term",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-24T13:51:07Z",
+ "updated_at": "2025-07-25T13:26:45Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-25T13:26:45Z",
+ "author_url": "https://github.com/SK8-infi",
+ "author_avatar": "https://avatars.githubusercontent.com/u/183415109?v=4"
+ },
+ {
+ "url": "https://github.com/Agarwalvidu/ArdhNaariShakti_Taara_Frontend/pull/16",
+ "title": "Create LICENSE",
+ "repo": "Agarwalvidu/ArdhNaariShakti_Taara_Frontend",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-24T13:32:27Z",
+ "updated_at": "2025-07-28T19:34:22Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-24T18:31:52Z",
+ "author_url": "https://github.com/SK8-infi",
+ "author_avatar": "https://avatars.githubusercontent.com/u/183415109?v=4"
+ },
+ {
+ "url": "https://github.com/yuvrajsinghgmx/ShopSmart/pull/294",
+ "title": "Create LICENSE",
+ "repo": "yuvrajsinghgmx/ShopSmart",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-24T12:40:59Z",
+ "updated_at": "2025-07-24T13:15:31Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-24T13:15:21Z",
+ "author_url": "https://github.com/SK8-infi",
+ "author_avatar": "https://avatars.githubusercontent.com/u/183415109?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/183415109?v=4",
+ "profile_url": "https://github.com/SK8-infi"
+ },
+ "Ayushii-uniyal": {
+ "expectedPoints": 89,
+ "currentPoints": 89,
+ "levels": {
+ "level1": 4,
+ "level2": 9,
+ "level3": 1
+ },
+ "prs": [
+ {
+ "url": "https://github.com/Adarsh-Chaubey03/TravelGrid/pull/435",
+ "title": "Added packages for Featured Packages",
+ "repo": "Adarsh-Chaubey03/TravelGrid",
+ "level": "level2",
+ "points": 7,
+ "created_at": "2025-08-01T12:52:55Z",
+ "updated_at": "2025-08-01T13:50:55Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-08-01T13:50:42Z",
+ "author_url": "https://github.com/Ayushii-uniyal",
+ "author_avatar": "https://avatars.githubusercontent.com/u/117735804?v=4"
+ },
+ {
+ "url": "https://github.com/Adarsh-Chaubey03/TravelGrid/pull/432",
+ "title": "Resolved overlapping issue of headings with nav bar.",
+ "repo": "Adarsh-Chaubey03/TravelGrid",
+ "level": "level2",
+ "points": 7,
+ "created_at": "2025-08-01T11:59:37Z",
+ "updated_at": "2025-08-01T12:00:40Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-08-01T12:00:27Z",
+ "author_url": "https://github.com/Ayushii-uniyal",
+ "author_avatar": "https://avatars.githubusercontent.com/u/117735804?v=4"
+ },
+ {
+ "url": "https://github.com/Adarsh-Chaubey03/TravelGrid/pull/363",
+ "title": "Fixed discover new places path in dashboard page",
+ "repo": "Adarsh-Chaubey03/TravelGrid",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-30T14:58:18Z",
+ "updated_at": "2025-08-01T11:36:34Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-30T15:09:12Z",
+ "author_url": "https://github.com/Ayushii-uniyal",
+ "author_avatar": "https://avatars.githubusercontent.com/u/117735804?v=4"
+ },
+ {
+ "url": "https://github.com/Adarsh-Chaubey03/TravelGrid/pull/335",
+ "title": "Fixed discover new destinations sections in home page",
+ "repo": "Adarsh-Chaubey03/TravelGrid",
+ "level": "level3",
+ "points": 10,
+ "created_at": "2025-07-29T12:22:21Z",
+ "updated_at": "2025-07-30T04:00:20Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-30T03:59:56Z",
+ "author_url": "https://github.com/Ayushii-uniyal",
+ "author_avatar": "https://avatars.githubusercontent.com/u/117735804?v=4"
+ },
+ {
+ "url": "https://github.com/Adarsh-Chaubey03/TravelGrid/pull/296",
+ "title": "Resolved mismatch issue of duration and day-wise itinerary",
+ "repo": "Adarsh-Chaubey03/TravelGrid",
+ "level": "level2",
+ "points": 7,
+ "created_at": "2025-07-28T16:15:27Z",
+ "updated_at": "2025-07-28T17:35:42Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-28T17:35:42Z",
+ "author_url": "https://github.com/Ayushii-uniyal",
+ "author_avatar": "https://avatars.githubusercontent.com/u/117735804?v=4"
+ },
+ {
+ "url": "https://github.com/Adarsh-Chaubey03/TravelGrid/pull/278",
+ "title": "Fixed past date ticket booking issue",
+ "repo": "Adarsh-Chaubey03/TravelGrid",
+ "level": "level2",
+ "points": 7,
+ "created_at": "2025-07-28T12:56:05Z",
+ "updated_at": "2025-07-28T13:27:47Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-28T13:27:30Z",
+ "author_url": "https://github.com/Ayushii-uniyal",
+ "author_avatar": "https://avatars.githubusercontent.com/u/117735804?v=4"
+ },
+ {
+ "url": "https://github.com/Adarsh-Chaubey03/TravelGrid/pull/251",
+ "title": "Added ticket booking initiating section before showing confirmation",
+ "repo": "Adarsh-Chaubey03/TravelGrid",
+ "level": "level2",
+ "points": 7,
+ "created_at": "2025-07-27T15:57:19Z",
+ "updated_at": "2025-07-28T06:21:56Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-28T06:21:56Z",
+ "author_url": "https://github.com/Ayushii-uniyal",
+ "author_avatar": "https://avatars.githubusercontent.com/u/117735804?v=4"
+ },
+ {
+ "url": "https://github.com/Adarsh-Chaubey03/TravelGrid/pull/200",
+ "title": "fixed: UI enhancement for header when hotels is selected",
+ "repo": "Adarsh-Chaubey03/TravelGrid",
+ "level": "level2",
+ "points": 7,
+ "created_at": "2025-07-26T05:33:03Z",
+ "updated_at": "2025-07-26T15:02:32Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-26T15:02:32Z",
+ "author_url": "https://github.com/Ayushii-uniyal",
+ "author_avatar": "https://avatars.githubusercontent.com/u/117735804?v=4"
+ },
+ {
+ "url": "https://github.com/Adarsh-Chaubey03/TravelGrid/pull/188",
+ "title": "Made the cursor style to pointer for buttons",
+ "repo": "Adarsh-Chaubey03/TravelGrid",
+ "level": "level2",
+ "points": 7,
+ "created_at": "2025-07-25T16:59:16Z",
+ "updated_at": "2025-07-26T01:43:47Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-26T01:43:47Z",
+ "author_url": "https://github.com/Ayushii-uniyal",
+ "author_avatar": "https://avatars.githubusercontent.com/u/117735804?v=4"
+ },
+ {
+ "url": "https://github.com/itsAnimation/AnimateItNow/pull/570",
+ "title": "Fixed spinner loader size issue",
+ "repo": "itsAnimation/AnimateItNow",
+ "level": "level2",
+ "points": 7,
+ "created_at": "2025-07-27T17:37:25Z",
+ "updated_at": "2025-07-30T20:07:12Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-30T20:07:12Z",
+ "author_url": "https://github.com/Ayushii-uniyal",
+ "author_avatar": "https://avatars.githubusercontent.com/u/117735804?v=4"
+ },
+ {
+ "url": "https://github.com/itsAnimation/AnimateItNow/pull/512",
+ "title": "Added label to snake-cursor toggle",
+ "repo": "itsAnimation/AnimateItNow",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-26T17:58:18Z",
+ "updated_at": "2025-07-26T21:07:34Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-26T21:07:34Z",
+ "author_url": "https://github.com/Ayushii-uniyal",
+ "author_avatar": "https://avatars.githubusercontent.com/u/117735804?v=4"
+ },
+ {
+ "url": "https://github.com/InnoWebLabs/Vehigo/pull/139",
+ "title": "Added access of contact page from about page",
+ "repo": "InnoWebLabs/Vehigo",
+ "level": "level2",
+ "points": 7,
+ "created_at": "2025-07-27T11:53:01Z",
+ "updated_at": "2025-07-28T03:34:50Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-27T12:28:10Z",
+ "author_url": "https://github.com/Ayushii-uniyal",
+ "author_avatar": "https://avatars.githubusercontent.com/u/117735804?v=4"
+ },
+ {
+ "url": "https://github.com/InnoWebLabs/Vehigo/pull/137",
+ "title": "Enhanced UI for input fields",
+ "repo": "InnoWebLabs/Vehigo",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-27T11:27:25Z",
+ "updated_at": "2025-07-28T03:34:24Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-27T12:28:34Z",
+ "author_url": "https://github.com/Ayushii-uniyal",
+ "author_avatar": "https://avatars.githubusercontent.com/u/117735804?v=4"
+ },
+ {
+ "url": "https://github.com/Kritika75/TheCawnporeMag.github.io/pull/260",
+ "title": "Enhanced UI of header nav bar when masthead is selected",
+ "repo": "Kritika75/TheCawnporeMag.github.io",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-28T15:49:29Z",
+ "updated_at": "2025-07-29T07:41:35Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-29T07:41:18Z",
+ "author_url": "https://github.com/Ayushii-uniyal",
+ "author_avatar": "https://avatars.githubusercontent.com/u/117735804?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/117735804?v=4",
+ "profile_url": "https://github.com/Ayushii-uniyal"
+ },
+ "deepanshu-prajapati01": {
+ "expectedPoints": 76,
+ "currentPoints": 76,
+ "levels": {
+ "level1": 1,
+ "level2": 6,
+ "level3": 3
+ },
+ "prs": [
+ {
+ "url": "https://github.com/Code-A2Z/code-a2z/pull/1157",
+ "title": "Replaced Bouncing Loader with Skeleton Loader – Closes #1156",
+ "repo": "Code-A2Z/code-a2z",
+ "level": "level3",
+ "points": 10,
+ "created_at": "2025-07-24T04:10:34Z",
+ "updated_at": "2025-07-26T11:55:51Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-26T11:53:18Z",
+ "author_url": "https://github.com/deepanshu-prajapati01",
+ "author_avatar": "https://avatars.githubusercontent.com/u/98377377?v=4"
+ },
+ {
+ "url": "https://github.com/Bavanetha27/Refixly/pull/22",
+ "title": "Fixed UI/UX Bugs: Navbar Contrast, Route Handling, Auth Loader, and Toast Notifications (#17)",
+ "repo": "Bavanetha27/Refixly",
+ "level": "level2",
+ "points": 7,
+ "created_at": "2025-07-24T15:43:13Z",
+ "updated_at": "2025-08-01T10:47:58Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-25T16:43:39Z",
+ "author_url": "https://github.com/deepanshu-prajapati01",
+ "author_avatar": "https://avatars.githubusercontent.com/u/98377377?v=4"
+ },
+ {
+ "url": "https://github.com/BhaktiMore18/Pouranik/pull/119",
+ "title": "Footer Color Inconsistency & Responsive Improvements - Closes #102",
+ "repo": "BhaktiMore18/Pouranik",
+ "level": "level2",
+ "points": 7,
+ "created_at": "2025-08-01T04:26:17Z",
+ "updated_at": "2025-08-03T04:21:46Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-08-02T19:33:50Z",
+ "author_url": "https://github.com/deepanshu-prajapati01",
+ "author_avatar": "https://avatars.githubusercontent.com/u/98377377?v=4"
+ },
+ {
+ "url": "https://github.com/BhaktiMore18/Pouranik/pull/101",
+ "title": "Refactored Genre Page Cards & Fixed UI Layout Issues (#52)",
+ "repo": "BhaktiMore18/Pouranik",
+ "level": "level2",
+ "points": 7,
+ "created_at": "2025-07-29T05:52:44Z",
+ "updated_at": "2025-08-01T09:06:40Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-29T06:15:52Z",
+ "author_url": "https://github.com/deepanshu-prajapati01",
+ "author_avatar": "https://avatars.githubusercontent.com/u/98377377?v=4"
+ },
+ {
+ "url": "https://github.com/BhaktiMore18/Pouranik/pull/97",
+ "title": "Website Tour Shows Every Time — Should Only Appear Once (#95)",
+ "repo": "BhaktiMore18/Pouranik",
+ "level": "level2",
+ "points": 7,
+ "created_at": "2025-07-28T16:31:29Z",
+ "updated_at": "2025-08-01T09:06:53Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-28T18:41:22Z",
+ "author_url": "https://github.com/deepanshu-prajapati01",
+ "author_avatar": "https://avatars.githubusercontent.com/u/98377377?v=4"
+ },
+ {
+ "url": "https://github.com/chandannekya/Clean-Breath/pull/79",
+ "title": "Fix UI/UX Issues Across Forms, Footer, FAQ, and Plant Page – Closes #73",
+ "repo": "chandannekya/Clean-Breath",
+ "level": "level2",
+ "points": 7,
+ "created_at": "2025-07-26T16:31:49Z",
+ "updated_at": "2025-07-27T06:00:14Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-27T06:00:14Z",
+ "author_url": "https://github.com/deepanshu-prajapati01",
+ "author_avatar": "https://avatars.githubusercontent.com/u/98377377?v=4"
+ },
+ {
+ "url": "https://github.com/Dipanita45/HEALCONNECT/pull/25",
+ "title": "Refactor: Move Firebase Credentials to `.env` Closes (#20)",
+ "repo": "Dipanita45/HEALCONNECT",
+ "level": "level2",
+ "points": 7,
+ "created_at": "2025-07-24T14:21:49Z",
+ "updated_at": "2025-07-24T15:46:17Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-24T14:56:26Z",
+ "author_url": "https://github.com/deepanshu-prajapati01",
+ "author_avatar": "https://avatars.githubusercontent.com/u/98377377?v=4"
+ },
+ {
+ "url": "https://github.com/efshaperveen/MindJournal/pull/12",
+ "title": "Fix Netlify Routing Issue and Improve Dark Theme Contrast – Closes #9",
+ "repo": "efshaperveen/MindJournal",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-23T04:38:39Z",
+ "updated_at": "2025-07-24T18:10:12Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-23T06:36:31Z",
+ "author_url": "https://github.com/deepanshu-prajapati01",
+ "author_avatar": "https://avatars.githubusercontent.com/u/98377377?v=4"
+ },
+ {
+ "url": "https://github.com/Gnanaashritha/Blogging-Platform-/pull/43",
+ "title": " Blog Backend Setup with Full CRUD, Auth, Filtering, and Search – Closes #18",
+ "repo": "Gnanaashritha/Blogging-Platform-",
+ "level": "level3",
+ "points": 10,
+ "created_at": "2025-07-28T07:19:51Z",
+ "updated_at": "2025-07-29T19:09:52Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-29T19:09:52Z",
+ "author_url": "https://github.com/deepanshu-prajapati01",
+ "author_avatar": "https://avatars.githubusercontent.com/u/98377377?v=4"
+ },
+ {
+ "url": "https://github.com/whyvineet/orthoplay/pull/37",
+ "title": "PR: Add Missing Pages – \"How to Play\" & \"About\" Page (#11)",
+ "repo": "whyvineet/orthoplay",
+ "level": "level3",
+ "points": 10,
+ "created_at": "2025-07-25T09:30:27Z",
+ "updated_at": "2025-07-25T09:39:46Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-25T09:37:46Z",
+ "author_url": "https://github.com/deepanshu-prajapati01",
+ "author_avatar": "https://avatars.githubusercontent.com/u/98377377?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/98377377?v=4",
+ "profile_url": "https://github.com/deepanshu-prajapati01"
+ },
+ "swayam03275": {
+ "expectedPoints": 74,
+ "currentPoints": 74,
+ "levels": {
+ "level1": 5,
+ "level2": 2,
+ "level3": 4
+ },
+ "prs": [
+ {
+ "url": "https://github.com/Abhishek2634/Foodie/pull/35",
+ "title": "feat: Add multer middleware for file uploads",
+ "repo": "Abhishek2634/Foodie",
+ "level": "level3",
+ "points": 10,
+ "created_at": "2025-07-22T12:36:56Z",
+ "updated_at": "2025-07-24T18:43:37Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-24T18:43:37Z",
+ "author_url": "https://github.com/swayam03275",
+ "author_avatar": "https://avatars.githubusercontent.com/u/155808502?v=4"
+ },
+ {
+ "url": "https://github.com/Abhishek2634/Foodie/pull/28",
+ "title": "[Feature]: Add asyncHandler utility for error handling (#23)",
+ "repo": "Abhishek2634/Foodie",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-22T11:02:01Z",
+ "updated_at": "2025-07-29T07:02:33Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-29T07:02:33Z",
+ "author_url": "https://github.com/swayam03275",
+ "author_avatar": "https://avatars.githubusercontent.com/u/155808502?v=4"
+ },
+ {
+ "url": "https://github.com/Abhishek2634/Foodie/pull/19",
+ "title": "fix: Add dotenv config to load environment variables",
+ "repo": "Abhishek2634/Foodie",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-22T08:32:18Z",
+ "updated_at": "2025-08-02T10:49:17Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-22T11:42:52Z",
+ "author_url": "https://github.com/swayam03275",
+ "author_avatar": "https://avatars.githubusercontent.com/u/155808502?v=4"
+ },
+ {
+ "url": "https://github.com/Adarsh-Chaubey03/TravelGrid/pull/482",
+ "title": "updated the auth middleware",
+ "repo": "Adarsh-Chaubey03/TravelGrid",
+ "level": "level2",
+ "points": 7,
+ "created_at": "2025-08-02T13:46:48Z",
+ "updated_at": "2025-08-02T15:03:53Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-08-02T15:03:38Z",
+ "author_url": "https://github.com/swayam03275",
+ "author_avatar": "https://avatars.githubusercontent.com/u/155808502?v=4"
+ },
+ {
+ "url": "https://github.com/Amarjha01/InfantCareCompass/pull/137",
+ "title": " [Feature]:added blog schema for blog",
+ "repo": "Amarjha01/InfantCareCompass",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-28T14:23:45Z",
+ "updated_at": "2025-07-28T15:07:04Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-28T15:06:23Z",
+ "author_url": "https://github.com/swayam03275",
+ "author_avatar": "https://avatars.githubusercontent.com/u/155808502?v=4"
+ },
+ {
+ "url": "https://github.com/Amarjha01/InfantCareCompass/pull/97",
+ "title": "optimized all the controllers",
+ "repo": "Amarjha01/InfantCareCompass",
+ "level": "level3",
+ "points": 10,
+ "created_at": "2025-07-25T15:24:44Z",
+ "updated_at": "2025-07-25T18:16:19Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-25T18:15:56Z",
+ "author_url": "https://github.com/swayam03275",
+ "author_avatar": "https://avatars.githubusercontent.com/u/155808502?v=4"
+ },
+ {
+ "url": "https://github.com/Amarjha01/InfantCareCompass/pull/95",
+ "title": "[Feat]:added asyncHandler utility",
+ "repo": "Amarjha01/InfantCareCompass",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-25T14:52:39Z",
+ "updated_at": "2025-07-25T14:57:00Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-25T14:56:42Z",
+ "author_url": "https://github.com/swayam03275",
+ "author_avatar": "https://avatars.githubusercontent.com/u/155808502?v=4"
+ },
+ {
+ "url": "https://github.com/InnoWebLabs/Vehigo/pull/73",
+ "title": "feat: Add multer to backend dependencies",
+ "repo": "InnoWebLabs/Vehigo",
+ "level": "level2",
+ "points": 7,
+ "created_at": "2025-07-25T14:37:30Z",
+ "updated_at": "2025-07-25T20:28:36Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-25T15:47:05Z",
+ "author_url": "https://github.com/swayam03275",
+ "author_avatar": "https://avatars.githubusercontent.com/u/155808502?v=4"
+ },
+ {
+ "url": "https://github.com/chandannekya/Clean-Breath/pull/78",
+ "title": "[Enhancement]:refactored code to use utility",
+ "repo": "chandannekya/Clean-Breath",
+ "level": "level3",
+ "points": 10,
+ "created_at": "2025-07-26T14:24:32Z",
+ "updated_at": "2025-08-03T06:42:20Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-08-03T06:42:19Z",
+ "author_url": "https://github.com/swayam03275",
+ "author_avatar": "https://avatars.githubusercontent.com/u/155808502?v=4"
+ },
+ {
+ "url": "https://github.com/chandannekya/Clean-Breath/pull/24",
+ "title": "feat: Add asyncHandler utility for error handling",
+ "repo": "chandannekya/Clean-Breath",
+ "level": "level3",
+ "points": 10,
+ "created_at": "2025-07-22T11:51:28Z",
+ "updated_at": "2025-07-23T14:53:32Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-23T14:53:32Z",
+ "author_url": "https://github.com/swayam03275",
+ "author_avatar": "https://avatars.githubusercontent.com/u/155808502?v=4"
+ },
+ {
+ "url": "https://github.com/chandannekya/Clean-Breath/pull/22",
+ "title": "fix(security): Untrack .env file and add .env.example",
+ "repo": "chandannekya/Clean-Breath",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-22T09:09:52Z",
+ "updated_at": "2025-07-22T11:41:12Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-22T11:01:16Z",
+ "author_url": "https://github.com/swayam03275",
+ "author_avatar": "https://avatars.githubusercontent.com/u/155808502?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/155808502?v=4",
+ "profile_url": "https://github.com/swayam03275"
+ },
+ "shiva177": {
+ "expectedPoints": 74,
+ "currentPoints": 74,
+ "levels": {
+ "level1": 3,
+ "level2": 6,
+ "level3": 2
+ },
+ "prs": [
+ {
+ "url": "https://github.com/0xsambit/winix/pull/56",
+ "title": "Fix/all warnings erros",
+ "repo": "0xsambit/winix",
+ "level": "level2",
+ "points": 7,
+ "created_at": "2025-07-30T06:46:08Z",
+ "updated_at": "2025-07-30T06:49:15Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-30T06:48:48Z",
+ "author_url": "https://github.com/shiva177",
+ "author_avatar": "https://avatars.githubusercontent.com/u/96466523?v=4"
+ },
+ {
+ "url": "https://github.com/0xsambit/winix/pull/55",
+ "title": "Fix: Correct Future Return Type in AsyncCommand Trait Implementations",
+ "repo": "0xsambit/winix",
+ "level": "level2",
+ "points": 7,
+ "created_at": "2025-07-30T03:39:43Z",
+ "updated_at": "2025-07-30T06:48:22Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-30T06:48:22Z",
+ "author_url": "https://github.com/shiva177",
+ "author_avatar": "https://avatars.githubusercontent.com/u/96466523?v=4"
+ },
+ {
+ "url": "https://github.com/0xsambit/winix/pull/53",
+ "title": "Fix/chown",
+ "repo": "0xsambit/winix",
+ "level": "level2",
+ "points": 7,
+ "created_at": "2025-07-30T02:44:03Z",
+ "updated_at": "2025-07-30T06:47:51Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-30T06:47:50Z",
+ "author_url": "https://github.com/shiva177",
+ "author_avatar": "https://avatars.githubusercontent.com/u/96466523?v=4"
+ },
+ {
+ "url": "https://github.com/0xsambit/winix/pull/51",
+ "title": "Fix/chmod",
+ "repo": "0xsambit/winix",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-30T02:19:43Z",
+ "updated_at": "2025-07-30T06:47:37Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-30T06:47:37Z",
+ "author_url": "https://github.com/shiva177",
+ "author_avatar": "https://avatars.githubusercontent.com/u/96466523?v=4"
+ },
+ {
+ "url": "https://github.com/0xsambit/winix/pull/45",
+ "title": "Solved Support Line Editing, History & Completion via rustyline #17",
+ "repo": "0xsambit/winix",
+ "level": "level3",
+ "points": 10,
+ "created_at": "2025-07-28T17:30:41Z",
+ "updated_at": "2025-07-28T18:33:53Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-28T18:33:53Z",
+ "author_url": "https://github.com/shiva177",
+ "author_avatar": "https://avatars.githubusercontent.com/u/96466523?v=4"
+ },
+ {
+ "url": "https://github.com/0xsambit/winix/pull/39",
+ "title": "feat: add support for cat and rm commands (#38)",
+ "repo": "0xsambit/winix",
+ "level": "level2",
+ "points": 7,
+ "created_at": "2025-07-27T11:41:27Z",
+ "updated_at": "2025-07-27T15:15:33Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-27T15:15:33Z",
+ "author_url": "https://github.com/shiva177",
+ "author_avatar": "https://avatars.githubusercontent.com/u/96466523?v=4"
+ },
+ {
+ "url": "https://github.com/0xsambit/winix/pull/37",
+ "title": "feat: implement AnsiParser to parse and render ANSI CSI sequences (#16)",
+ "repo": "0xsambit/winix",
+ "level": "level3",
+ "points": 10,
+ "created_at": "2025-07-27T06:19:04Z",
+ "updated_at": "2025-07-27T17:26:54Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-27T06:29:34Z",
+ "author_url": "https://github.com/shiva177",
+ "author_avatar": "https://avatars.githubusercontent.com/u/96466523?v=4"
+ },
+ {
+ "url": "https://github.com/0xsambit/winix/pull/34",
+ "title": "remove unrechable kill",
+ "repo": "0xsambit/winix",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-26T14:16:45Z",
+ "updated_at": "2025-07-26T17:42:31Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-26T17:42:31Z",
+ "author_url": "https://github.com/shiva177",
+ "author_avatar": "https://avatars.githubusercontent.com/u/96466523?v=4"
+ },
+ {
+ "url": "https://github.com/0xsambit/winix/pull/32",
+ "title": "make process.rs cross-platform by isolating Windows-specific code(resolves #18)",
+ "repo": "0xsambit/winix",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-26T11:42:55Z",
+ "updated_at": "2025-07-26T11:44:25Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-26T11:44:25Z",
+ "author_url": "https://github.com/shiva177",
+ "author_avatar": "https://avatars.githubusercontent.com/u/96466523?v=4"
+ },
+ {
+ "url": "https://github.com/0xsambit/winix/pull/31",
+ "title": "feat: Add echo and touch command with cross-platform support (#20)",
+ "repo": "0xsambit/winix",
+ "level": "level2",
+ "points": 7,
+ "created_at": "2025-07-26T10:40:32Z",
+ "updated_at": "2025-07-26T11:03:00Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-26T10:57:57Z",
+ "author_url": "https://github.com/shiva177",
+ "author_avatar": "https://avatars.githubusercontent.com/u/96466523?v=4"
+ },
+ {
+ "url": "https://github.com/0xsambit/winix/pull/28",
+ "title": "Fix: #27 - Add missing winapi features for kill.rs import resolution",
+ "repo": "0xsambit/winix",
+ "level": "level2",
+ "points": 7,
+ "created_at": "2025-07-26T08:04:57Z",
+ "updated_at": "2025-07-26T09:18:43Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-26T09:18:43Z",
+ "author_url": "https://github.com/shiva177",
+ "author_avatar": "https://avatars.githubusercontent.com/u/96466523?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/96466523?v=4",
+ "profile_url": "https://github.com/shiva177"
+ },
+ "prachi757": {
+ "expectedPoints": 77,
+ "currentPoints": 73,
+ "levels": {
+ "level1": 8,
+ "level2": 5,
+ "level3": 1
+ },
+ "prs": [
+ {
+ "url": "https://github.com/itsAnimation/AnimateItNow/pull/705",
+ "title": "Add Live Transition Playground using hover effects",
+ "repo": "itsAnimation/AnimateItNow",
+ "level": "level3",
+ "points": 10,
+ "created_at": "2025-07-31T12:50:03Z",
+ "updated_at": "2025-08-02T10:40:37Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-08-02T10:40:37Z",
+ "author_url": "https://github.com/prachi757",
+ "author_avatar": "https://avatars.githubusercontent.com/u/179727783?v=4"
+ },
+ {
+ "url": "https://github.com/itsAnimation/AnimateItNow/pull/650",
+ "title": "🚀Enhance Contributors Page UI with Glassmorphism and Dark Mode Support",
+ "repo": "itsAnimation/AnimateItNow",
+ "level": "level2",
+ "points": 7,
+ "created_at": "2025-07-29T14:55:52Z",
+ "updated_at": "2025-07-29T21:17:08Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-29T21:17:08Z",
+ "author_url": "https://github.com/prachi757",
+ "author_avatar": "https://avatars.githubusercontent.com/u/179727783?v=4"
+ },
+ {
+ "url": "https://github.com/itsAnimation/AnimateItNow/pull/594",
+ "title": "✨ Add 'Why Choose AnimateItNow?' section with benefit cards to About Page",
+ "repo": "itsAnimation/AnimateItNow",
+ "level": "level2",
+ "points": 7,
+ "created_at": "2025-07-28T10:47:31Z",
+ "updated_at": "2025-07-29T07:06:43Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-29T07:06:43Z",
+ "author_url": "https://github.com/prachi757",
+ "author_avatar": "https://avatars.githubusercontent.com/u/179727783?v=4"
+ },
+ {
+ "url": "https://github.com/itsAnimation/AnimateItNow/pull/536",
+ "title": "🔥 Enhance Contributors Page UI with Glassmorphism effect, Neon Animation in light and dark mode.",
+ "repo": "itsAnimation/AnimateItNow",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-27T08:39:17Z",
+ "updated_at": "2025-07-27T08:54:57Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-27T08:54:57Z",
+ "author_url": "https://github.com/prachi757",
+ "author_avatar": "https://avatars.githubusercontent.com/u/179727783?v=4"
+ },
+ {
+ "url": "https://github.com/itsAnimation/AnimateItNow/pull/501",
+ "title": "🔥 Enhance Contributors Page UI with Gradient, Neon Animation in light and dark mode.",
+ "repo": "itsAnimation/AnimateItNow",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-26T16:39:00Z",
+ "updated_at": "2025-07-27T08:37:20Z",
+ "state": "closed",
+ "merged": false,
+ "merged_at": null,
+ "author_url": "https://github.com/prachi757",
+ "author_avatar": "https://avatars.githubusercontent.com/u/179727783?v=4"
+ },
+ {
+ "url": "https://github.com/itsAnimation/AnimateItNow/pull/494",
+ "title": "✨ 🎨 UI Enhancement: Templates Page with Neon Glow & Dark Mode Support",
+ "repo": "itsAnimation/AnimateItNow",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-26T15:16:45Z",
+ "updated_at": "2025-07-27T07:48:42Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-27T07:48:42Z",
+ "author_url": "https://github.com/prachi757",
+ "author_avatar": "https://avatars.githubusercontent.com/u/179727783?v=4"
+ },
+ {
+ "url": "https://github.com/itsAnimation/AnimateItNow/pull/405",
+ "title": " UI Enhancement: Glassmorphism Contact Form with Neon animation effect ",
+ "repo": "itsAnimation/AnimateItNow",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-25T13:12:27Z",
+ "updated_at": "2025-07-25T14:42:42Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-25T14:42:42Z",
+ "author_url": "https://github.com/prachi757",
+ "author_avatar": "https://avatars.githubusercontent.com/u/179727783?v=4"
+ },
+ {
+ "url": "https://github.com/itsAnimation/AnimateItNow/pull/383",
+ "title": "💎 Improve Contact Card UI in Dark Mode with Neon Glow and Glass Effect",
+ "repo": "itsAnimation/AnimateItNow",
+ "level": "level2",
+ "points": 7,
+ "created_at": "2025-07-25T09:07:05Z",
+ "updated_at": "2025-07-25T13:49:50Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-25T13:49:50Z",
+ "author_url": "https://github.com/prachi757",
+ "author_avatar": "https://avatars.githubusercontent.com/u/179727783?v=4"
+ },
+ {
+ "url": "https://github.com/itsAnimation/AnimateItNow/pull/332",
+ "title": "Fix: Contact Page Heading Visibility in Dark Theme",
+ "repo": "itsAnimation/AnimateItNow",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-24T17:05:44Z",
+ "updated_at": "2025-07-24T17:43:31Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-24T17:43:31Z",
+ "author_url": "https://github.com/prachi757",
+ "author_avatar": "https://avatars.githubusercontent.com/u/179727783?v=4"
+ },
+ {
+ "url": "https://github.com/itsAnimation/AnimateItNow/pull/299",
+ "title": "📲 Added FAQ card: Is AnimateItNow responsive on all devices?",
+ "repo": "itsAnimation/AnimateItNow",
+ "level": "level2",
+ "points": 7,
+ "created_at": "2025-07-24T09:37:28Z",
+ "updated_at": "2025-07-24T18:31:26Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-24T17:43:32Z",
+ "author_url": "https://github.com/prachi757",
+ "author_avatar": "https://avatars.githubusercontent.com/u/179727783?v=4"
+ },
+ {
+ "url": "https://github.com/itsAnimation/AnimateItNow/pull/255",
+ "title": "Removed Duplicate Footer Causing Layout Inconsistency",
+ "repo": "itsAnimation/AnimateItNow",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-23T17:46:02Z",
+ "updated_at": "2025-07-23T17:56:12Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-23T17:56:11Z",
+ "author_url": "https://github.com/prachi757",
+ "author_avatar": "https://avatars.githubusercontent.com/u/179727783?v=4"
+ },
+ {
+ "url": "https://github.com/itsAnimation/AnimateItNow/pull/238",
+ "title": "✨ added Responsiveness and Gradient background for UI Enhancement of footer",
+ "repo": "itsAnimation/AnimateItNow",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-23T15:49:34Z",
+ "updated_at": "2025-07-23T18:04:25Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-23T17:56:13Z",
+ "author_url": "https://github.com/prachi757",
+ "author_avatar": "https://avatars.githubusercontent.com/u/179727783?v=4"
+ },
+ {
+ "url": "https://github.com/itsAnimation/AnimateItNow/pull/218",
+ "title": "🐞box-shadow bug + smooth theme transitions & background improvements",
+ "repo": "itsAnimation/AnimateItNow",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-23T13:47:04Z",
+ "updated_at": "2025-07-23T20:07:51Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-23T17:56:13Z",
+ "author_url": "https://github.com/prachi757",
+ "author_avatar": "https://avatars.githubusercontent.com/u/179727783?v=4"
+ },
+ {
+ "url": "https://github.com/itsAnimation/AnimateItNow/pull/175",
+ "title": "Improve theme toggle experience with smooth transitions 🎨",
+ "repo": "itsAnimation/AnimateItNow",
+ "level": "level2",
+ "points": 7,
+ "created_at": "2025-07-23T09:20:43Z",
+ "updated_at": "2025-07-23T11:15:28Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-23T11:15:28Z",
+ "author_url": "https://github.com/prachi757",
+ "author_avatar": "https://avatars.githubusercontent.com/u/179727783?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/179727783?v=4",
+ "profile_url": "https://github.com/prachi757"
+ },
+ "Adil642": {
+ "expectedPoints": 72,
+ "currentPoints": 72,
+ "levels": {
+ "level1": 0,
+ "level2": 6,
+ "level3": 3
+ },
+ "prs": [
+ {
+ "url": "https://github.com/itsAnimation/AnimateItNow/pull/715",
+ "title": " Enhaced the loading effect, added point indication & minor fixes",
+ "repo": "itsAnimation/AnimateItNow",
+ "level": "level2",
+ "points": 7,
+ "created_at": "2025-07-31T17:48:09Z",
+ "updated_at": "2025-07-31T17:58:02Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-31T17:58:02Z",
+ "author_url": "https://github.com/Adil642",
+ "author_avatar": "https://avatars.githubusercontent.com/u/143825763?v=4"
+ },
+ {
+ "url": "https://github.com/itsAnimation/AnimateItNow/pull/660",
+ "title": "Fixed the navbar issue on templates page",
+ "repo": "itsAnimation/AnimateItNow",
+ "level": "level2",
+ "points": 7,
+ "created_at": "2025-07-29T20:45:25Z",
+ "updated_at": "2025-07-29T21:14:30Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-29T21:14:30Z",
+ "author_url": "https://github.com/Adil642",
+ "author_avatar": "https://avatars.githubusercontent.com/u/143825763?v=4"
+ },
+ {
+ "url": "https://github.com/itsAnimation/AnimateItNow/pull/638",
+ "title": "Fixed the glitches from contact,templates & contributors page",
+ "repo": "itsAnimation/AnimateItNow",
+ "level": "level3",
+ "points": 10,
+ "created_at": "2025-07-29T08:34:25Z",
+ "updated_at": "2025-07-29T17:42:30Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-29T17:42:30Z",
+ "author_url": "https://github.com/Adil642",
+ "author_avatar": "https://avatars.githubusercontent.com/u/143825763?v=4"
+ },
+ {
+ "url": "https://github.com/itsAnimation/AnimateItNow/pull/625",
+ "title": "Fix/footer style",
+ "repo": "itsAnimation/AnimateItNow",
+ "level": "level2",
+ "points": 7,
+ "created_at": "2025-07-28T19:41:51Z",
+ "updated_at": "2025-07-28T19:57:54Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-28T19:57:54Z",
+ "author_url": "https://github.com/Adil642",
+ "author_avatar": "https://avatars.githubusercontent.com/u/143825763?v=4"
+ },
+ {
+ "url": "https://github.com/itsAnimation/AnimateItNow/pull/523",
+ "title": "Snake curl ",
+ "repo": "itsAnimation/AnimateItNow",
+ "level": "level2",
+ "points": 7,
+ "created_at": "2025-07-26T20:56:43Z",
+ "updated_at": "2025-07-26T20:59:28Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-26T20:59:28Z",
+ "author_url": "https://github.com/Adil642",
+ "author_avatar": "https://avatars.githubusercontent.com/u/143825763?v=4"
+ },
+ {
+ "url": "https://github.com/itsAnimation/AnimateItNow/pull/514",
+ "title": "Designed leaderboard page with responsiveness and functionality",
+ "repo": "itsAnimation/AnimateItNow",
+ "level": "level3",
+ "points": 10,
+ "created_at": "2025-07-26T18:24:38Z",
+ "updated_at": "2025-07-26T18:41:37Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-26T18:41:36Z",
+ "author_url": "https://github.com/Adil642",
+ "author_avatar": "https://avatars.githubusercontent.com/u/143825763?v=4"
+ },
+ {
+ "url": "https://github.com/itsAnimation/AnimateItNow/pull/467",
+ "title": "Add Leaderboard button to navbar",
+ "repo": "itsAnimation/AnimateItNow",
+ "level": "level2",
+ "points": 7,
+ "created_at": "2025-07-26T09:08:57Z",
+ "updated_at": "2025-07-26T09:21:46Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-26T09:21:46Z",
+ "author_url": "https://github.com/Adil642",
+ "author_avatar": "https://avatars.githubusercontent.com/u/143825763?v=4"
+ },
+ {
+ "url": "https://github.com/itsAnimation/AnimateItNow/pull/436",
+ "title": "CONTRIBUTOR DATA NOT SHOWING ",
+ "repo": "itsAnimation/AnimateItNow",
+ "level": "level3",
+ "points": 10,
+ "created_at": "2025-07-25T20:53:59Z",
+ "updated_at": "2025-07-25T21:13:39Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-25T21:13:38Z",
+ "author_url": "https://github.com/Adil642",
+ "author_avatar": "https://avatars.githubusercontent.com/u/143825763?v=4"
+ },
+ {
+ "url": "https://github.com/itsAnimation/AnimateItNow/pull/432",
+ "title": " Add FAQ Collapsible Functionality with Smooth Animation",
+ "repo": "itsAnimation/AnimateItNow",
+ "level": "level2",
+ "points": 7,
+ "created_at": "2025-07-25T19:40:12Z",
+ "updated_at": "2025-07-25T19:58:35Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-25T19:58:35Z",
+ "author_url": "https://github.com/Adil642",
+ "author_avatar": "https://avatars.githubusercontent.com/u/143825763?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/143825763?v=4",
+ "profile_url": "https://github.com/Adil642"
+ },
+ "gunjanghate": {
+ "expectedPoints": 72,
+ "currentPoints": 72,
+ "levels": {
+ "level1": 0,
+ "level2": 6,
+ "level3": 3
+ },
+ "prs": [
+ {
+ "url": "https://github.com/MonishRaman/Placify-Smarter_Placements-Sharper_Talent/pull/23",
+ "title": "Set up initial nodejs server and user model",
+ "repo": "MonishRaman/Placify-Smarter-Placements.-Sharper-Talent.-",
+ "level": "level3",
+ "points": 10,
+ "created_at": "2025-07-22T20:25:02Z",
+ "updated_at": "2025-07-23T03:08:17Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-23T00:59:36Z",
+ "author_url": "https://github.com/gunjanghate",
+ "author_avatar": "https://avatars.githubusercontent.com/u/150514809?v=4"
+ },
+ {
+ "url": "https://github.com/MonishRaman/Placify-Smarter_Placements-Sharper_Talent/pull/22",
+ "title": "Implemented smooth fade like page transitions across app ",
+ "repo": "MonishRaman/Placify-Smarter-Placements.-Sharper-Talent.-",
+ "level": "level2",
+ "points": 7,
+ "created_at": "2025-07-22T19:51:25Z",
+ "updated_at": "2025-07-23T07:45:00Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-23T01:37:44Z",
+ "author_url": "https://github.com/gunjanghate",
+ "author_avatar": "https://avatars.githubusercontent.com/u/150514809?v=4"
+ },
+ {
+ "url": "https://github.com/MonishRaman/Placify-Smarter_Placements-Sharper_Talent/pull/21",
+ "title": "feat/ Implement Dark Mode Functionality #4",
+ "repo": "MonishRaman/Placify-Smarter-Placements.-Sharper-Talent.-",
+ "level": "level2",
+ "points": 7,
+ "created_at": "2025-07-22T18:22:33Z",
+ "updated_at": "2025-07-23T03:09:30Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-23T00:50:09Z",
+ "author_url": "https://github.com/gunjanghate",
+ "author_avatar": "https://avatars.githubusercontent.com/u/150514809?v=4"
+ },
+ {
+ "url": "https://github.com/saumyayadav25/cpp-dsa-sheet-testing/pull/106",
+ "title": "Complete Backend for User Progress & Badge Tracking (Postman Tested)",
+ "repo": "saumyayadav25/cpp-dsa-sheet-testing",
+ "level": "level3",
+ "points": 10,
+ "created_at": "2025-07-30T18:18:32Z",
+ "updated_at": "2025-07-31T11:19:21Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-31T11:19:21Z",
+ "author_url": "https://github.com/gunjanghate",
+ "author_avatar": "https://avatars.githubusercontent.com/u/150514809?v=4"
+ },
+ {
+ "url": "https://github.com/saumyayadav25/cpp-dsa-sheet-testing/pull/96",
+ "title": "Fix: Unified Navbar and Enhanced Notes Cards UI",
+ "repo": "saumyayadav25/cpp-dsa-sheet-testing",
+ "level": "level2",
+ "points": 7,
+ "created_at": "2025-07-29T19:03:00Z",
+ "updated_at": "2025-07-30T03:27:32Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-30T03:27:31Z",
+ "author_url": "https://github.com/gunjanghate",
+ "author_avatar": "https://avatars.githubusercontent.com/u/150514809?v=4"
+ },
+ {
+ "url": "https://github.com/saumyayadav25/cpp-dsa-sheet-testing/pull/56",
+ "title": "[Feat] : Implemented Backend in Nextjs with User Authentication",
+ "repo": "saumyayadav25/cpp-dsa-sheet-testing",
+ "level": "level3",
+ "points": 10,
+ "created_at": "2025-07-26T13:07:42Z",
+ "updated_at": "2025-07-26T13:22:17Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-26T13:19:19Z",
+ "author_url": "https://github.com/gunjanghate",
+ "author_avatar": "https://avatars.githubusercontent.com/u/150514809?v=4"
+ },
+ {
+ "url": "https://github.com/saumyayadav25/cpp-dsa-sheet-testing/pull/44",
+ "title": " Created Reusable Footer Component and Integrated Across Pages",
+ "repo": "saumyayadav25/cpp-dsa-sheet-testing",
+ "level": "level2",
+ "points": 7,
+ "created_at": "2025-07-24T19:27:38Z",
+ "updated_at": "2025-07-25T03:34:10Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-25T03:34:09Z",
+ "author_url": "https://github.com/gunjanghate",
+ "author_avatar": "https://avatars.githubusercontent.com/u/150514809?v=4"
+ },
+ {
+ "url": "https://github.com/saumyayadav25/cpp-dsa-sheet-testing/pull/37",
+ "title": "Enhancement/navbar styling",
+ "repo": "saumyayadav25/cpp-dsa-sheet-testing",
+ "level": "level2",
+ "points": 7,
+ "created_at": "2025-07-24T15:32:34Z",
+ "updated_at": "2025-07-24T16:02:28Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-24T16:02:28Z",
+ "author_url": "https://github.com/gunjanghate",
+ "author_avatar": "https://avatars.githubusercontent.com/u/150514809?v=4"
+ },
+ {
+ "url": "https://github.com/saumyayadav25/cpp-dsa-sheet-testing/pull/18",
+ "title": "Enhancement: Navbar Styling and Transitions",
+ "repo": "saumyayadav25/cpp-dsa-sheet-testing",
+ "level": "level2",
+ "points": 7,
+ "created_at": "2025-07-23T13:24:45Z",
+ "updated_at": "2025-07-23T15:34:54Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-23T15:31:25Z",
+ "author_url": "https://github.com/gunjanghate",
+ "author_avatar": "https://avatars.githubusercontent.com/u/150514809?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/150514809?v=4",
+ "profile_url": "https://github.com/gunjanghate"
+ },
+ "shoaib2000857": {
+ "expectedPoints": 68,
+ "currentPoints": 68,
+ "levels": {
+ "level1": 1,
+ "level2": 2,
+ "level3": 5
+ },
+ "prs": [
+ {
+ "url": "https://github.com/GauravKarakoti/Weather-API/pull/233",
+ "title": "Fixed Popup error on \"Get Weather\" click – .clr-spinner selector missing",
+ "repo": "GauravKarakoti/Weather-API",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-31T13:52:16Z",
+ "updated_at": "2025-08-01T08:22:58Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-08-01T08:19:46Z",
+ "author_url": "https://github.com/shoaib2000857",
+ "author_avatar": "https://avatars.githubusercontent.com/u/172415886?v=4"
+ },
+ {
+ "url": "https://github.com/MonishRaman/Placify-Smarter_Placements-Sharper_Talent/pull/153",
+ "title": "🧠 Chatbot Backend Integration (Full Backend Implementation)",
+ "repo": "MonishRaman/Placify-Smarter-Placements.-Sharper-Talent.-",
+ "level": "level3",
+ "points": 10,
+ "created_at": "2025-07-31T14:14:41Z",
+ "updated_at": "2025-07-31T17:19:45Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-31T14:17:31Z",
+ "author_url": "https://github.com/shoaib2000857",
+ "author_avatar": "https://avatars.githubusercontent.com/u/172415886?v=4"
+ },
+ {
+ "url": "https://github.com/VAIBHAVBABELE/vaibhavbabele.github.io/pull/195",
+ "title": "Updated Integrated UI for AI features",
+ "repo": "VAIBHAVBABELE/vaibhavbabele.github.io",
+ "level": "level3",
+ "points": 10,
+ "created_at": "2025-07-30T17:05:35Z",
+ "updated_at": "2025-07-30T17:41:53Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-30T17:28:58Z",
+ "author_url": "https://github.com/shoaib2000857",
+ "author_avatar": "https://avatars.githubusercontent.com/u/172415886?v=4"
+ },
+ {
+ "url": "https://github.com/VAIBHAVBABELE/vaibhavbabele.github.io/pull/141",
+ "title": "Front end pages for the AI notes summary",
+ "repo": "VAIBHAVBABELE/vaibhavbabele.github.io",
+ "level": "level3",
+ "points": 10,
+ "created_at": "2025-07-27T07:13:55Z",
+ "updated_at": "2025-07-27T15:35:32Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-27T15:34:52Z",
+ "author_url": "https://github.com/shoaib2000857",
+ "author_avatar": "https://avatars.githubusercontent.com/u/172415886?v=4"
+ },
+ {
+ "url": "https://github.com/VAIBHAVBABELE/vaibhavbabele.github.io/pull/100",
+ "title": "Modified Configs and setup for backend",
+ "repo": "VAIBHAVBABELE/vaibhavbabele.github.io",
+ "level": "level2",
+ "points": 7,
+ "created_at": "2025-07-25T11:56:06Z",
+ "updated_at": "2025-07-25T12:06:35Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-25T12:06:05Z",
+ "author_url": "https://github.com/shoaib2000857",
+ "author_avatar": "https://avatars.githubusercontent.com/u/172415886?v=4"
+ },
+ {
+ "url": "https://github.com/VAIBHAVBABELE/vaibhavbabele.github.io/pull/94",
+ "title": "Created a backend and basic testing page for the notes summary system",
+ "repo": "VAIBHAVBABELE/vaibhavbabele.github.io",
+ "level": "level2",
+ "points": 7,
+ "created_at": "2025-07-25T10:32:23Z",
+ "updated_at": "2025-07-25T11:03:34Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-25T11:03:10Z",
+ "author_url": "https://github.com/shoaib2000857",
+ "author_avatar": "https://avatars.githubusercontent.com/u/172415886?v=4"
+ },
+ {
+ "url": "https://github.com/VAIBHAVBABELE/vaibhavbabele.github.io/pull/46",
+ "title": "Added Flask backend for AI Chatbot (API-secure)",
+ "repo": "VAIBHAVBABELE/vaibhavbabele.github.io",
+ "level": "level3",
+ "points": 10,
+ "created_at": "2025-07-23T18:11:44Z",
+ "updated_at": "2025-07-24T05:20:41Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-24T05:17:48Z",
+ "author_url": "https://github.com/shoaib2000857",
+ "author_avatar": "https://avatars.githubusercontent.com/u/172415886?v=4"
+ },
+ {
+ "url": "https://github.com/VAIBHAVBABELE/vaibhavbabele.github.io/pull/42",
+ "title": "Basic Assistant ",
+ "repo": "VAIBHAVBABELE/vaibhavbabele.github.io",
+ "level": "level3",
+ "points": 10,
+ "created_at": "2025-07-23T15:52:05Z",
+ "updated_at": "2025-07-23T16:45:17Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-23T16:44:45Z",
+ "author_url": "https://github.com/shoaib2000857",
+ "author_avatar": "https://avatars.githubusercontent.com/u/172415886?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/172415886?v=4",
+ "profile_url": "https://github.com/shoaib2000857"
+ },
+ "SudiptaPaul-31": {
+ "expectedPoints": 66,
+ "currentPoints": 66,
+ "levels": {
+ "level1": 6,
+ "level2": 6,
+ "level3": 0
+ },
+ "prs": [
+ {
+ "url": "https://github.com/NishantRana07/HrRoadways/pull/343",
+ "title": "Fix: Blog page fixed",
+ "repo": "NishantRana07/HrRoadways",
+ "level": "level2",
+ "points": 7,
+ "created_at": "2025-07-23T08:25:31Z",
+ "updated_at": "2025-07-23T09:31:58Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-23T09:31:58Z",
+ "author_url": "https://github.com/SudiptaPaul-31",
+ "author_avatar": "https://avatars.githubusercontent.com/u/117905151?v=4"
+ },
+ {
+ "url": "https://github.com/NishantRana07/HrRoadways/pull/339",
+ "title": "Fix: Added loading component on all pages",
+ "repo": "NishantRana07/HrRoadways",
+ "level": "level2",
+ "points": 7,
+ "created_at": "2025-07-23T05:23:39Z",
+ "updated_at": "2025-07-24T12:37:32Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-23T07:53:53Z",
+ "author_url": "https://github.com/SudiptaPaul-31",
+ "author_avatar": "https://avatars.githubusercontent.com/u/117905151?v=4"
+ },
+ {
+ "url": "https://github.com/NishantRana07/HrRoadways/pull/307",
+ "title": "Added PR template",
+ "repo": "NishantRana07/HrRoadways",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-22T14:28:08Z",
+ "updated_at": "2025-07-22T20:07:49Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-22T18:06:00Z",
+ "author_url": "https://github.com/SudiptaPaul-31",
+ "author_avatar": "https://avatars.githubusercontent.com/u/117905151?v=4"
+ },
+ {
+ "url": "https://github.com/NishantRana07/HrRoadways/pull/306",
+ "title": "Fix: Techstack logo",
+ "repo": "NishantRana07/HrRoadways",
+ "level": "level2",
+ "points": 7,
+ "created_at": "2025-07-22T14:13:35Z",
+ "updated_at": "2025-07-22T20:06:51Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-22T17:21:57Z",
+ "author_url": "https://github.com/SudiptaPaul-31",
+ "author_avatar": "https://avatars.githubusercontent.com/u/117905151?v=4"
+ },
+ {
+ "url": "https://github.com/NishantRana07/HrRoadways/pull/302",
+ "title": "fix: Track page loader added",
+ "repo": "NishantRana07/HrRoadways",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-22T13:41:06Z",
+ "updated_at": "2025-07-22T20:05:33Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-22T15:38:36Z",
+ "author_url": "https://github.com/SudiptaPaul-31",
+ "author_avatar": "https://avatars.githubusercontent.com/u/117905151?v=4"
+ },
+ {
+ "url": "https://github.com/NishantRana07/HrRoadways/pull/301",
+ "title": "Fix: Badges added on readme",
+ "repo": "NishantRana07/HrRoadways",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-22T13:23:15Z",
+ "updated_at": "2025-07-22T20:04:46Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-22T13:43:56Z",
+ "author_url": "https://github.com/SudiptaPaul-31",
+ "author_avatar": "https://avatars.githubusercontent.com/u/117905151?v=4"
+ },
+ {
+ "url": "https://github.com/NishantRana07/HrRoadways/pull/294",
+ "title": "404NotFound page added",
+ "repo": "NishantRana07/HrRoadways",
+ "level": "level2",
+ "points": 7,
+ "created_at": "2025-07-22T12:05:31Z",
+ "updated_at": "2025-07-22T12:40:24Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-22T12:40:24Z",
+ "author_url": "https://github.com/SudiptaPaul-31",
+ "author_avatar": "https://avatars.githubusercontent.com/u/117905151?v=4"
+ },
+ {
+ "url": "https://github.com/NishantRana07/HrRoadways/pull/291",
+ "title": "Fix : Filter section slider ",
+ "repo": "NishantRana07/HrRoadways",
+ "level": "level2",
+ "points": 7,
+ "created_at": "2025-07-22T09:49:58Z",
+ "updated_at": "2025-07-22T11:31:32Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-22T11:31:32Z",
+ "author_url": "https://github.com/SudiptaPaul-31",
+ "author_avatar": "https://avatars.githubusercontent.com/u/117905151?v=4"
+ },
+ {
+ "url": "https://github.com/NishantRana07/HrRoadways/pull/287",
+ "title": "Loading component added",
+ "repo": "NishantRana07/HrRoadways",
+ "level": "level2",
+ "points": 7,
+ "created_at": "2025-07-22T09:21:25Z",
+ "updated_at": "2025-07-22T10:56:57Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-22T10:56:57Z",
+ "author_url": "https://github.com/SudiptaPaul-31",
+ "author_avatar": "https://avatars.githubusercontent.com/u/117905151?v=4"
+ },
+ {
+ "url": "https://github.com/sampadatiwari30/DeshDarshan/pull/160",
+ "title": "Fix: PR template added",
+ "repo": "sampadatiwari30/DeshDarshan",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-27T03:16:29Z",
+ "updated_at": "2025-07-27T06:25:49Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-27T06:25:33Z",
+ "author_url": "https://github.com/SudiptaPaul-31",
+ "author_avatar": "https://avatars.githubusercontent.com/u/117905151?v=4"
+ },
+ {
+ "url": "https://github.com/sampadatiwari30/DeshDarshan/pull/155",
+ "title": "Fix: added issue template",
+ "repo": "sampadatiwari30/DeshDarshan",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-26T18:03:59Z",
+ "updated_at": "2025-07-27T03:09:03Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-27T03:08:46Z",
+ "author_url": "https://github.com/SudiptaPaul-31",
+ "author_avatar": "https://avatars.githubusercontent.com/u/117905151?v=4"
+ },
+ {
+ "url": "https://github.com/sampadatiwari30/DeshDarshan/pull/154",
+ "title": "Fix: Duplicate image issue solved",
+ "repo": "sampadatiwari30/DeshDarshan",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-26T17:47:09Z",
+ "updated_at": "2025-07-26T17:51:49Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-26T17:51:49Z",
+ "author_url": "https://github.com/SudiptaPaul-31",
+ "author_avatar": "https://avatars.githubusercontent.com/u/117905151?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/117905151?v=4",
+ "profile_url": "https://github.com/SudiptaPaul-31"
+ },
+ "Aripilli-Bhavana": {
+ "expectedPoints": 65,
+ "currentPoints": 65,
+ "levels": {
+ "level1": 12,
+ "level2": 1,
+ "level3": 1
+ },
+ "prs": [
+ {
+ "url": "https://github.com/Menthub-GSSoC/Menthub/pull/30",
+ "title": "Enhance README: Add Project Structure, Features, Contribution Guidelines & Back to Top Button",
+ "repo": "anugit24/Menthub",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-27T06:37:38Z",
+ "updated_at": "2025-07-28T01:06:19Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-28T01:06:18Z",
+ "author_url": "https://github.com/Aripilli-Bhavana",
+ "author_avatar": "https://avatars.githubusercontent.com/u/175966327?v=4"
+ },
+ {
+ "url": "https://github.com/Ayushjhawar8/Flavor-ai/pull/20",
+ "title": "Add \"Back to Top\" Button for Easier Navigation in README",
+ "repo": "Ayushjhawar8/Flavor-ai",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-23T09:20:29Z",
+ "updated_at": "2025-07-23T09:32:38Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-23T09:32:38Z",
+ "author_url": "https://github.com/Aripilli-Bhavana",
+ "author_avatar": "https://avatars.githubusercontent.com/u/175966327?v=4"
+ },
+ {
+ "url": "https://github.com/BaraniVA/Habitheat/pull/42",
+ "title": "Add centered 'Back to Top' button to README",
+ "repo": "BaraniVA/Habitheat",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-23T21:42:27Z",
+ "updated_at": "2025-07-24T07:47:51Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-24T07:16:23Z",
+ "author_url": "https://github.com/Aripilli-Bhavana",
+ "author_avatar": "https://avatars.githubusercontent.com/u/175966327?v=4"
+ },
+ {
+ "url": "https://github.com/Bavanetha27/Refixly/pull/15",
+ "title": "Add a centered 'Back to Top' button to README",
+ "repo": "Bavanetha27/Refixly",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-23T21:33:59Z",
+ "updated_at": "2025-08-01T10:47:46Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-24T14:52:58Z",
+ "author_url": "https://github.com/Aripilli-Bhavana",
+ "author_avatar": "https://avatars.githubusercontent.com/u/175966327?v=4"
+ },
+ {
+ "url": "https://github.com/chandannekya/Clean-Breath/pull/50",
+ "title": " Improve SEO and accessibility in index.html",
+ "repo": "chandannekya/Clean-Breath",
+ "level": "level3",
+ "points": 10,
+ "created_at": "2025-07-24T09:22:22Z",
+ "updated_at": "2025-07-25T11:15:40Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-25T11:15:40Z",
+ "author_url": "https://github.com/Aripilli-Bhavana",
+ "author_avatar": "https://avatars.githubusercontent.com/u/175966327?v=4"
+ },
+ {
+ "url": "https://github.com/Dhruvi-tech/firebase-chat-app/pull/20",
+ "title": "Add \"Back to Top\" Button to Improve README Readability",
+ "repo": "Dhruvi-tech/firebase-chat-app",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-24T09:43:54Z",
+ "updated_at": "2025-07-24T20:50:25Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-24T20:50:25Z",
+ "author_url": "https://github.com/Aripilli-Bhavana",
+ "author_avatar": "https://avatars.githubusercontent.com/u/175966327?v=4"
+ },
+ {
+ "url": "https://github.com/Dipanita45/HEALCONNECT/pull/22",
+ "title": "Updated README.md",
+ "repo": "Dipanita45/HEALCONNECT",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-24T09:37:29Z",
+ "updated_at": "2025-07-25T13:53:27Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-25T13:53:14Z",
+ "author_url": "https://github.com/Aripilli-Bhavana",
+ "author_avatar": "https://avatars.githubusercontent.com/u/175966327?v=4"
+ },
+ {
+ "url": "https://github.com/efshaperveen/MindJournal/pull/30",
+ "title": "Improve README.md with Structured Format",
+ "repo": "efshaperveen/MindJournal",
+ "level": "level2",
+ "points": 7,
+ "created_at": "2025-07-24T13:56:48Z",
+ "updated_at": "2025-07-24T17:50:52Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-24T17:50:11Z",
+ "author_url": "https://github.com/Aripilli-Bhavana",
+ "author_avatar": "https://avatars.githubusercontent.com/u/175966327?v=4"
+ },
+ {
+ "url": "https://github.com/Gagandeep-2003/driver-drowsiness-detection-system/pull/41",
+ "title": "Redesigned and Expanded README with Full Project Overview, Setup, and Usage Details",
+ "repo": "Gagandeep-2003/driver-drowsiness-detection-system",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-27T20:12:32Z",
+ "updated_at": "2025-07-27T23:31:25Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-27T23:31:24Z",
+ "author_url": "https://github.com/Aripilli-Bhavana",
+ "author_avatar": "https://avatars.githubusercontent.com/u/175966327?v=4"
+ },
+ {
+ "url": "https://github.com/Gnanaashritha/Blogging-Platform-/pull/40",
+ "title": "Add \"Back to Top\" Links in README for Better Navigation",
+ "repo": "Gnanaashritha/Blogging-Platform-",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-27T20:30:15Z",
+ "updated_at": "2025-07-28T18:42:05Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-28T18:42:05Z",
+ "author_url": "https://github.com/Aripilli-Bhavana",
+ "author_avatar": "https://avatars.githubusercontent.com/u/175966327?v=4"
+ },
+ {
+ "url": "https://github.com/OpenTekHub/otploginfrontend/pull/6",
+ "title": "Added structured README.md for OTP Login Frontend project",
+ "repo": "OpenTekHub/otploginfrontend",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-24T10:20:06Z",
+ "updated_at": "2025-07-26T12:05:26Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-26T12:05:26Z",
+ "author_url": "https://github.com/Aripilli-Bhavana",
+ "author_avatar": "https://avatars.githubusercontent.com/u/175966327?v=4"
+ },
+ {
+ "url": "https://github.com/Khushi-Nigam/jobportal/pull/77",
+ "title": "Add \"Back to Top\" Links in README for Better Navigation",
+ "repo": "Khushi-Nigam/jobportal",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-28T08:29:11Z",
+ "updated_at": "2025-07-28T08:45:02Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-28T08:45:02Z",
+ "author_url": "https://github.com/Aripilli-Bhavana",
+ "author_avatar": "https://avatars.githubusercontent.com/u/175966327?v=4"
+ },
+ {
+ "url": "https://github.com/GitMetricsLab/github_tracker/pull/140",
+ "title": "Add \"Back to Top\" Links in README for Better Navigation",
+ "repo": "mehul-m-prajapati/github_tracker",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-28T06:11:26Z",
+ "updated_at": "2025-07-28T09:48:16Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-28T09:48:07Z",
+ "author_url": "https://github.com/Aripilli-Bhavana",
+ "author_avatar": "https://avatars.githubusercontent.com/u/175966327?v=4"
+ },
+ {
+ "url": "https://github.com/VJLIVE/Athletix/pull/49",
+ "title": "Add \"Back to Top\" Links in README for Better Navigation",
+ "repo": "vjlive/athletix",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-27T19:50:20Z",
+ "updated_at": "2025-07-28T04:39:14Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-27T20:15:27Z",
+ "author_url": "https://github.com/Aripilli-Bhavana",
+ "author_avatar": "https://avatars.githubusercontent.com/u/175966327?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/175966327?v=4",
+ "profile_url": "https://github.com/Aripilli-Bhavana"
+ },
+ "Soumyosish": {
+ "expectedPoints": 63,
+ "currentPoints": 63,
+ "levels": {
+ "level1": 9,
+ "level2": 1,
+ "level3": 2
+ },
+ "prs": [
+ {
+ "url": "https://github.com/Adarsh-Chaubey03/TravelGrid/pull/45",
+ "title": "uncaught reference error solved",
+ "repo": "Adarsh-Chaubey03/TravelGrid",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-22T08:06:22Z",
+ "updated_at": "2025-07-22T08:48:35Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-22T08:48:35Z",
+ "author_url": "https://github.com/Soumyosish",
+ "author_avatar": "https://avatars.githubusercontent.com/u/144246473?v=4"
+ },
+ {
+ "url": "https://github.com/opensource-society/CodeClip/pull/39",
+ "title": "Implemented Local storage",
+ "repo": "opensource-society/CodeClip",
+ "level": "level2",
+ "points": 7,
+ "created_at": "2025-07-22T09:47:07Z",
+ "updated_at": "2025-08-03T06:12:58Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-22T09:48:27Z",
+ "author_url": "https://github.com/Soumyosish",
+ "author_avatar": "https://avatars.githubusercontent.com/u/144246473?v=4"
+ },
+ {
+ "url": "https://github.com/Amarjha01/InfantCareCompass/pull/158",
+ "title": "Restructure and cleanup of the code for better enhancement",
+ "repo": "Amarjha01/InfantCareCompass",
+ "level": "level3",
+ "points": 10,
+ "created_at": "2025-07-30T09:32:36Z",
+ "updated_at": "2025-08-03T04:49:18Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-30T10:24:41Z",
+ "author_url": "https://github.com/Soumyosish",
+ "author_avatar": "https://avatars.githubusercontent.com/u/144246473?v=4"
+ },
+ {
+ "url": "https://github.com/Amarjha01/InfantCareCompass/pull/139",
+ "title": "I have added the contributor page",
+ "repo": "Amarjha01/InfantCareCompass",
+ "level": "level3",
+ "points": 10,
+ "created_at": "2025-07-28T15:41:10Z",
+ "updated_at": "2025-07-28T15:44:06Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-28T15:43:47Z",
+ "author_url": "https://github.com/Soumyosish",
+ "author_avatar": "https://avatars.githubusercontent.com/u/144246473?v=4"
+ },
+ {
+ "url": "https://github.com/Amarjha01/InfantCareCompass/pull/32",
+ "title": "modified footer enhancement",
+ "repo": "Amarjha01/InfantCareCompass",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-22T11:35:26Z",
+ "updated_at": "2025-07-24T02:16:56Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-24T02:16:56Z",
+ "author_url": "https://github.com/Soumyosish",
+ "author_avatar": "https://avatars.githubusercontent.com/u/144246473?v=4"
+ },
+ {
+ "url": "https://github.com/itsAnimation/AnimateItNow/pull/683",
+ "title": "Restructure and cleanup of the code",
+ "repo": "itsAnimation/AnimateItNow",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-31T05:02:56Z",
+ "updated_at": "2025-07-31T06:57:21Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-31T06:48:43Z",
+ "author_url": "https://github.com/Soumyosish",
+ "author_avatar": "https://avatars.githubusercontent.com/u/144246473?v=4"
+ },
+ {
+ "url": "https://github.com/itsAnimation/AnimateItNow/pull/239",
+ "title": "corrected the error",
+ "repo": "itsAnimation/AnimateItNow",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-23T15:50:07Z",
+ "updated_at": "2025-07-23T20:53:12Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-23T20:53:12Z",
+ "author_url": "https://github.com/Soumyosish",
+ "author_avatar": "https://avatars.githubusercontent.com/u/144246473?v=4"
+ },
+ {
+ "url": "https://github.com/Bavanetha27/Refixly/pull/45",
+ "title": "Removed the one footer",
+ "repo": "Bavanetha27/Refixly",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-29T09:49:51Z",
+ "updated_at": "2025-08-01T10:48:50Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-29T10:01:54Z",
+ "author_url": "https://github.com/Soumyosish",
+ "author_avatar": "https://avatars.githubusercontent.com/u/144246473?v=4"
+ },
+ {
+ "url": "https://github.com/Bavanetha27/Refixly/pull/25",
+ "title": "Tour guide added",
+ "repo": "Bavanetha27/Refixly",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-25T17:22:49Z",
+ "updated_at": "2025-08-01T10:51:03Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-26T05:08:44Z",
+ "author_url": "https://github.com/Soumyosish",
+ "author_avatar": "https://avatars.githubusercontent.com/u/144246473?v=4"
+ },
+ {
+ "url": "https://github.com/BhaktiMore18/Pouranik/pull/114",
+ "title": "Improvement in the code",
+ "repo": "BhaktiMore18/Pouranik",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-31T08:47:06Z",
+ "updated_at": "2025-08-03T06:04:02Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-08-01T08:46:15Z",
+ "author_url": "https://github.com/Soumyosish",
+ "author_avatar": "https://avatars.githubusercontent.com/u/144246473?v=4"
+ },
+ {
+ "url": "https://github.com/pavitraag/Project-Vault/pull/122",
+ "title": "Candy crush game added",
+ "repo": "pavitraag/Project-Vault",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-26T20:52:10Z",
+ "updated_at": "2025-07-29T18:41:07Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-29T05:41:02Z",
+ "author_url": "https://github.com/Soumyosish",
+ "author_avatar": "https://avatars.githubusercontent.com/u/144246473?v=4"
+ },
+ {
+ "url": "https://github.com/ruchikakengal/WebDevIn100_Days/pull/315",
+ "title": "contributors page added",
+ "repo": "ruchikakengal/WebDevIn100_Days",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-26T15:19:17Z",
+ "updated_at": "2025-07-28T12:38:00Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-28T12:38:00Z",
+ "author_url": "https://github.com/Soumyosish",
+ "author_avatar": "https://avatars.githubusercontent.com/u/144246473?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/144246473?v=4",
+ "profile_url": "https://github.com/Soumyosish"
+ },
+ "NirvikD": {
+ "expectedPoints": 71,
+ "currentPoints": 61,
+ "levels": {
+ "level1": 0,
+ "level2": 3,
+ "level3": 5
+ },
+ "prs": [
+ {
+ "url": "https://github.com/itsAnimation/AnimateItNow/pull/219",
+ "title": "Add animated card templates",
+ "repo": "itsAnimation/AnimateItNow",
+ "level": "level2",
+ "points": 7,
+ "created_at": "2025-07-23T13:49:25Z",
+ "updated_at": "2025-07-23T21:02:31Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-23T21:02:30Z",
+ "author_url": "https://github.com/NirvikD",
+ "author_avatar": "https://avatars.githubusercontent.com/u/118150046?v=4"
+ },
+ {
+ "url": "https://github.com/efshaperveen/MindJournal/pull/67",
+ "title": "[Enhancement]:Mood Trend Chart with Dynamic Colors, Improved Responsiveness, and Tooltip Icons",
+ "repo": "efshaperveen/MindJournal",
+ "level": "level3",
+ "points": 10,
+ "created_at": "2025-07-29T16:20:04Z",
+ "updated_at": "2025-07-30T14:38:14Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-29T17:39:41Z",
+ "author_url": "https://github.com/NirvikD",
+ "author_avatar": "https://avatars.githubusercontent.com/u/118150046?v=4"
+ },
+ {
+ "url": "https://github.com/efshaperveen/MindJournal/pull/56",
+ "title": " Enhanced Mood Display & Interactions",
+ "repo": "efshaperveen/MindJournal",
+ "level": "level3",
+ "points": 10,
+ "created_at": "2025-07-28T03:41:44Z",
+ "updated_at": "2025-07-28T09:33:21Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-28T09:33:21Z",
+ "author_url": "https://github.com/NirvikD",
+ "author_avatar": "https://avatars.githubusercontent.com/u/118150046?v=4"
+ },
+ {
+ "url": "https://github.com/efshaperveen/MindJournal/pull/48",
+ "title": "[Enhancement] Implement User-Specific Custom Activity Persistence",
+ "repo": "efshaperveen/MindJournal",
+ "level": "level3",
+ "points": 10,
+ "created_at": "2025-07-26T07:04:21Z",
+ "updated_at": "2025-07-31T02:13:39Z",
+ "state": "closed",
+ "merged": false,
+ "merged_at": null,
+ "author_url": "https://github.com/NirvikD",
+ "author_avatar": "https://avatars.githubusercontent.com/u/118150046?v=4"
+ },
+ {
+ "url": "https://github.com/efshaperveen/MindJournal/pull/32",
+ "title": "[Enhancement]: Visual Journaling with Image Attachments",
+ "repo": "efshaperveen/MindJournal",
+ "level": "level3",
+ "points": 10,
+ "created_at": "2025-07-24T16:55:06Z",
+ "updated_at": "2025-07-24T19:15:54Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-24T18:50:50Z",
+ "author_url": "https://github.com/NirvikD",
+ "author_avatar": "https://avatars.githubusercontent.com/u/118150046?v=4"
+ },
+ {
+ "url": "https://github.com/efshaperveen/MindJournal/pull/14",
+ "title": "Multi-Select Mood Filter Dropdown with Emoji & Animation",
+ "repo": "efshaperveen/MindJournal",
+ "level": "level2",
+ "points": 7,
+ "created_at": "2025-07-23T07:58:40Z",
+ "updated_at": "2025-07-25T06:24:22Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-23T08:11:40Z",
+ "author_url": "https://github.com/NirvikD",
+ "author_avatar": "https://avatars.githubusercontent.com/u/118150046?v=4"
+ },
+ {
+ "url": "https://github.com/efshaperveen/MindJournal/pull/4",
+ "title": "Feature/calendar UI fix",
+ "repo": "efshaperveen/MindJournal",
+ "level": "level3",
+ "points": 10,
+ "created_at": "2025-07-22T04:36:22Z",
+ "updated_at": "2025-07-29T02:32:00Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-22T11:07:33Z",
+ "author_url": "https://github.com/NirvikD",
+ "author_avatar": "https://avatars.githubusercontent.com/u/118150046?v=4"
+ },
+ {
+ "url": "https://github.com/souvikpramanikgit/LearnHub/pull/22",
+ "title": "Fix: DSA Sheet checkbox persistence using localStorage",
+ "repo": "souvikpramanikgit/LearnHub",
+ "level": "level2",
+ "points": 7,
+ "created_at": "2025-07-22T10:26:09Z",
+ "updated_at": "2025-07-23T03:27:51Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-22T11:46:41Z",
+ "author_url": "https://github.com/NirvikD",
+ "author_avatar": "https://avatars.githubusercontent.com/u/118150046?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/118150046?v=4",
+ "profile_url": "https://github.com/NirvikD"
+ },
+ "Suhani1234-5": {
+ "expectedPoints": 60,
+ "currentPoints": 60,
+ "levels": {
+ "level1": 2,
+ "level2": 6,
+ "level3": 1
+ },
+ "prs": [
+ {
+ "url": "https://github.com/opensource-society/CodeClip/pull/37",
+ "title": "Fixed ci/cd",
+ "repo": "opensource-society/CodeClip",
+ "level": "level2",
+ "points": 7,
+ "created_at": "2025-07-22T09:40:46Z",
+ "updated_at": "2025-07-22T09:42:54Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-22T09:41:33Z",
+ "author_url": "https://github.com/Suhani1234-5",
+ "author_avatar": "https://avatars.githubusercontent.com/u/177311997?v=4"
+ },
+ {
+ "url": "https://github.com/opensource-society/CodeClip/pull/32",
+ "title": "Add CI/CD Pipeline",
+ "repo": "opensource-society/CodeClip",
+ "level": "level2",
+ "points": 7,
+ "created_at": "2025-07-22T07:24:35Z",
+ "updated_at": "2025-07-22T09:45:10Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-22T07:32:49Z",
+ "author_url": "https://github.com/Suhani1234-5",
+ "author_avatar": "https://avatars.githubusercontent.com/u/177311997?v=4"
+ },
+ {
+ "url": "https://github.com/MeghanaDG04/RECIPEDIA/pull/23",
+ "title": "Connected frontend to backend APIs",
+ "repo": "MeghanaDG04/Recipedia",
+ "level": "level3",
+ "points": 10,
+ "created_at": "2025-07-23T03:07:02Z",
+ "updated_at": "2025-07-25T13:20:15Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-25T13:20:14Z",
+ "author_url": "https://github.com/Suhani1234-5",
+ "author_avatar": "https://avatars.githubusercontent.com/u/177311997?v=4"
+ },
+ {
+ "url": "https://github.com/GitMetricsLab/github_tracker/pull/172",
+ "title": "in Login page when click on Sign up it is not working",
+ "repo": "mehul-m-prajapati/github_tracker",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-08-02T06:43:21Z",
+ "updated_at": "2025-08-02T13:47:27Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-08-02T13:43:23Z",
+ "author_url": "https://github.com/Suhani1234-5",
+ "author_avatar": "https://avatars.githubusercontent.com/u/177311997?v=4"
+ },
+ {
+ "url": "https://github.com/GitMetricsLab/github_tracker/pull/171",
+ "title": "Cover The Distance between footer and Page in every Page",
+ "repo": "mehul-m-prajapati/github_tracker",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-08-02T06:24:36Z",
+ "updated_at": "2025-08-02T13:41:43Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-08-02T13:41:34Z",
+ "author_url": "https://github.com/Suhani1234-5",
+ "author_avatar": "https://avatars.githubusercontent.com/u/177311997?v=4"
+ },
+ {
+ "url": "https://github.com/GitMetricsLab/github_tracker/pull/141",
+ "title": "HomeUI",
+ "repo": "mehul-m-prajapati/github_tracker",
+ "level": null,
+ "points": 0,
+ "created_at": "2025-07-28T09:17:26Z",
+ "updated_at": "2025-07-29T07:10:50Z",
+ "state": "closed",
+ "merged": false,
+ "merged_at": null,
+ "author_url": "https://github.com/Suhani1234-5",
+ "author_avatar": "https://avatars.githubusercontent.com/u/177311997?v=4"
+ },
+ {
+ "url": "https://github.com/GitMetricsLab/github_tracker/pull/134",
+ "title": "About UI",
+ "repo": "mehul-m-prajapati/github_tracker",
+ "level": "level2",
+ "points": 7,
+ "created_at": "2025-07-27T12:04:15Z",
+ "updated_at": "2025-07-29T06:53:29Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-29T06:53:21Z",
+ "author_url": "https://github.com/Suhani1234-5",
+ "author_avatar": "https://avatars.githubusercontent.com/u/177311997?v=4"
+ },
+ {
+ "url": "https://github.com/GitMetricsLab/github_tracker/pull/127",
+ "title": "Contact UI",
+ "repo": "mehul-m-prajapati/github_tracker",
+ "level": "level2",
+ "points": 7,
+ "created_at": "2025-07-25T13:18:47Z",
+ "updated_at": "2025-07-25T13:21:57Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-25T13:21:56Z",
+ "author_url": "https://github.com/Suhani1234-5",
+ "author_avatar": "https://avatars.githubusercontent.com/u/177311997?v=4"
+ },
+ {
+ "url": "https://github.com/GitMetricsLab/github_tracker/pull/119",
+ "title": "Signup UI",
+ "repo": "mehul-m-prajapati/github_tracker",
+ "level": "level2",
+ "points": 7,
+ "created_at": "2025-07-24T15:21:14Z",
+ "updated_at": "2025-07-25T06:06:54Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-25T06:06:54Z",
+ "author_url": "https://github.com/Suhani1234-5",
+ "author_avatar": "https://avatars.githubusercontent.com/u/177311997?v=4"
+ },
+ {
+ "url": "https://github.com/GitMetricsLab/github_tracker/pull/114",
+ "title": "login UI",
+ "repo": "mehul-m-prajapati/github_tracker",
+ "level": "level2",
+ "points": 7,
+ "created_at": "2025-07-23T04:38:09Z",
+ "updated_at": "2025-07-24T06:31:24Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-24T06:31:23Z",
+ "author_url": "https://github.com/Suhani1234-5",
+ "author_avatar": "https://avatars.githubusercontent.com/u/177311997?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/177311997?v=4",
+ "profile_url": "https://github.com/Suhani1234-5"
+ },
+ "RAJVEER42": {
+ "expectedPoints": 59,
+ "currentPoints": 59,
+ "levels": {
+ "level1": 6,
+ "level2": 5,
+ "level3": 0
+ },
+ "prs": [
+ {
+ "url": "https://github.com/abhisek2004/Dev-Elevate/pull/5",
+ "title": "✨ Added glassy UI effect to navbar and dashboard components",
+ "repo": "abhisek2004/Dev-Elevate",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-21T23:52:55Z",
+ "updated_at": "2025-07-24T13:35:44Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-22T19:05:09Z",
+ "author_url": "https://github.com/RAJVEER42",
+ "author_avatar": "https://avatars.githubusercontent.com/u/180613669?v=4"
+ },
+ {
+ "url": "https://github.com/Adarsh-Chaubey03/TravelGrid/pull/77",
+ "title": "✨ Improve UI: smooth button animation & classy navbar styling",
+ "repo": "Adarsh-Chaubey03/TravelGrid",
+ "level": "level2",
+ "points": 7,
+ "created_at": "2025-07-22T14:12:19Z",
+ "updated_at": "2025-07-27T20:54:07Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-24T15:34:16Z",
+ "author_url": "https://github.com/RAJVEER42",
+ "author_avatar": "https://avatars.githubusercontent.com/u/180613669?v=4"
+ },
+ {
+ "url": "https://github.com/itsAnimation/AnimateItNow/pull/32",
+ "title": "Added Modern Glassy Navbar Effect",
+ "repo": "itsAnimation/AnimateItNow",
+ "level": "level2",
+ "points": 7,
+ "created_at": "2025-07-22T00:43:35Z",
+ "updated_at": "2025-07-22T11:19:15Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-22T05:16:06Z",
+ "author_url": "https://github.com/RAJVEER42",
+ "author_avatar": "https://avatars.githubusercontent.com/u/180613669?v=4"
+ },
+ {
+ "url": "https://github.com/coderashhar/PG-genie/pull/12",
+ "title": "🚫 Remove Glassmorphic Navbar, Keep Button Hover Effects",
+ "repo": "coderashhar/PG-genie",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-22T12:19:50Z",
+ "updated_at": "2025-07-22T20:55:09Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-22T12:37:59Z",
+ "author_url": "https://github.com/RAJVEER42",
+ "author_avatar": "https://avatars.githubusercontent.com/u/180613669?v=4"
+ },
+ {
+ "url": "https://github.com/coderashhar/PG-genie/pull/10",
+ "title": "Enhance Register Page with Password Strength Meter",
+ "repo": "coderashhar/PG-genie",
+ "level": "level2",
+ "points": 7,
+ "created_at": "2025-07-22T10:35:14Z",
+ "updated_at": "2025-07-22T20:35:57Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-22T12:15:11Z",
+ "author_url": "https://github.com/RAJVEER42",
+ "author_avatar": "https://avatars.githubusercontent.com/u/180613669?v=4"
+ },
+ {
+ "url": "https://github.com/Ayushjhawar8/Flavor-ai/pull/19",
+ "title": "✨Glassy Navbar Contribution",
+ "repo": "Ayushjhawar8/Flavor-ai",
+ "level": "level2",
+ "points": 7,
+ "created_at": "2025-07-23T09:13:13Z",
+ "updated_at": "2025-07-24T12:22:35Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-23T09:37:26Z",
+ "author_url": "https://github.com/RAJVEER42",
+ "author_avatar": "https://avatars.githubusercontent.com/u/180613669?v=4"
+ },
+ {
+ "url": "https://github.com/Kritika75/TheCawnporeMag.github.io/pull/23",
+ "title": "fix: Make navbar fixed for consistent sticky behavior and glassy effect",
+ "repo": "Kritika75/TheCawnporeMag.github.io",
+ "level": "level2",
+ "points": 7,
+ "created_at": "2025-07-22T11:14:34Z",
+ "updated_at": "2025-07-22T18:37:49Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-22T11:34:41Z",
+ "author_url": "https://github.com/RAJVEER42",
+ "author_avatar": "https://avatars.githubusercontent.com/u/180613669?v=4"
+ },
+ {
+ "url": "https://github.com/pavitraag/Project-Vault/pull/50",
+ "title": "💎 Make navbar glassy with fixed positioning",
+ "repo": "pavitraag/Project-Vault",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-24T11:56:43Z",
+ "updated_at": "2025-07-29T18:34:19Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-24T12:50:34Z",
+ "author_url": "https://github.com/RAJVEER42",
+ "author_avatar": "https://avatars.githubusercontent.com/u/180613669?v=4"
+ },
+ {
+ "url": "https://github.com/pavitraag/Project-Vault/pull/47",
+ "title": "💄 Style: Improve button hover effect with smooth transitions",
+ "repo": "pavitraag/Project-Vault",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-24T10:58:57Z",
+ "updated_at": "2025-07-29T18:33:56Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-24T12:48:25Z",
+ "author_url": "https://github.com/RAJVEER42",
+ "author_avatar": "https://avatars.githubusercontent.com/u/180613669?v=4"
+ },
+ {
+ "url": "https://github.com/sampadatiwari30/DeshDarshan/pull/28",
+ "title": "✨ Made navbar glassy with backdrop blur and animation",
+ "repo": "sampadatiwari30/DeshDarshan",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-22T12:09:59Z",
+ "updated_at": "2025-07-22T20:46:28Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-22T12:16:06Z",
+ "author_url": "https://github.com/RAJVEER42",
+ "author_avatar": "https://avatars.githubusercontent.com/u/180613669?v=4"
+ },
+ {
+ "url": "https://github.com/recodehive/recode-website/pull/168",
+ "title": "Fix: Prevent navbar jump on button hover",
+ "repo": "recodehive/recode-website",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-24T13:32:09Z",
+ "updated_at": "2025-07-27T21:03:48Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-25T11:16:34Z",
+ "author_url": "https://github.com/RAJVEER42",
+ "author_avatar": "https://avatars.githubusercontent.com/u/180613669?v=4"
+ },
+ {
+ "url": "https://github.com/ygowthamr/WhitePaper/pull/143",
+ "title": "✨ Glassy Navbar & Enhanced GitHub Button",
+ "repo": "ygowthamr/WhitePaper",
+ "level": null,
+ "points": 0,
+ "created_at": "2025-07-22T14:49:29Z",
+ "updated_at": "2025-07-28T14:14:15Z",
+ "state": "open",
+ "merged": false,
+ "merged_at": null,
+ "author_url": "https://github.com/RAJVEER42",
+ "author_avatar": "https://avatars.githubusercontent.com/u/180613669?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/180613669?v=4",
+ "profile_url": "https://github.com/RAJVEER42"
+ },
+ "Nandanikirtani": {
+ "expectedPoints": 58,
+ "currentPoints": 58,
+ "levels": {
+ "level1": 5,
+ "level2": 4,
+ "level3": 1
+ },
+ "prs": [
+ {
+ "url": "https://github.com/Adarsh-Chaubey03/TravelGrid/pull/58",
+ "title": " Add Discover and Forum Sections to Homepage with UI Enhancements",
+ "repo": "Adarsh-Chaubey03/TravelGrid",
+ "level": "level2",
+ "points": 7,
+ "created_at": "2025-07-22T10:20:59Z",
+ "updated_at": "2025-07-22T12:49:09Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-22T12:49:09Z",
+ "author_url": "https://github.com/Nandanikirtani",
+ "author_avatar": "https://avatars.githubusercontent.com/u/160708805?v=4"
+ },
+ {
+ "url": "https://github.com/Adarsh-Chaubey03/TravelGrid/pull/36",
+ "title": "Added a background image to Hero Section",
+ "repo": "Adarsh-Chaubey03/TravelGrid",
+ "level": "level2",
+ "points": 7,
+ "created_at": "2025-07-22T05:41:47Z",
+ "updated_at": "2025-07-22T06:05:58Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-22T06:02:26Z",
+ "author_url": "https://github.com/Nandanikirtani",
+ "author_avatar": "https://avatars.githubusercontent.com/u/160708805?v=4"
+ },
+ {
+ "url": "https://github.com/Amarjha01/InfantCareCompass/pull/144",
+ "title": "Made the navbar full responsive across all screens",
+ "repo": "Amarjha01/InfantCareCompass",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-29T03:15:42Z",
+ "updated_at": "2025-07-29T03:25:02Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-29T03:21:51Z",
+ "author_url": "https://github.com/Nandanikirtani",
+ "author_avatar": "https://avatars.githubusercontent.com/u/160708805?v=4"
+ },
+ {
+ "url": "https://github.com/Amarjha01/InfantCareCompass/pull/141",
+ "title": "All the buttons which were static now routes to signin page",
+ "repo": "Amarjha01/InfantCareCompass",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-28T18:06:35Z",
+ "updated_at": "2025-07-28T18:29:54Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-28T18:29:22Z",
+ "author_url": "https://github.com/Nandanikirtani",
+ "author_avatar": "https://avatars.githubusercontent.com/u/160708805?v=4"
+ },
+ {
+ "url": "https://github.com/Amarjha01/InfantCareCompass/pull/108",
+ "title": "Fixed the alignment of experience section according to the screen size",
+ "repo": "Amarjha01/InfantCareCompass",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-26T10:22:11Z",
+ "updated_at": "2025-07-28T14:21:17Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-28T14:20:45Z",
+ "author_url": "https://github.com/Nandanikirtani",
+ "author_avatar": "https://avatars.githubusercontent.com/u/160708805?v=4"
+ },
+ {
+ "url": "https://github.com/Amarjha01/InfantCareCompass/pull/98",
+ "title": "Fixed the alignment of button",
+ "repo": "Amarjha01/InfantCareCompass",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-25T17:53:32Z",
+ "updated_at": "2025-07-25T18:17:28Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-25T18:17:06Z",
+ "author_url": "https://github.com/Nandanikirtani",
+ "author_avatar": "https://avatars.githubusercontent.com/u/160708805?v=4"
+ },
+ {
+ "url": "https://github.com/Amarjha01/InfantCareCompass/pull/80",
+ "title": "Made the navbar fully responsive",
+ "repo": "Amarjha01/InfantCareCompass",
+ "level": "level2",
+ "points": 7,
+ "created_at": "2025-07-24T07:53:07Z",
+ "updated_at": "2025-07-24T08:37:00Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-24T08:37:00Z",
+ "author_url": "https://github.com/Nandanikirtani",
+ "author_avatar": "https://avatars.githubusercontent.com/u/160708805?v=4"
+ },
+ {
+ "url": "https://github.com/Amarjha01/InfantCareCompass/pull/77",
+ "title": "Enhanced the UI of navbar",
+ "repo": "Amarjha01/InfantCareCompass",
+ "level": "level2",
+ "points": 7,
+ "created_at": "2025-07-24T05:48:44Z",
+ "updated_at": "2025-07-24T07:22:25Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-24T07:05:26Z",
+ "author_url": "https://github.com/Nandanikirtani",
+ "author_avatar": "https://avatars.githubusercontent.com/u/160708805?v=4"
+ },
+ {
+ "url": "https://github.com/Amarjha01/InfantCareCompass/pull/64",
+ "title": "Added a custom not found page",
+ "repo": "Amarjha01/InfantCareCompass",
+ "level": "level3",
+ "points": 10,
+ "created_at": "2025-07-23T17:32:13Z",
+ "updated_at": "2025-07-24T02:20:54Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-24T02:20:54Z",
+ "author_url": "https://github.com/Nandanikirtani",
+ "author_avatar": "https://avatars.githubusercontent.com/u/160708805?v=4"
+ },
+ {
+ "url": "https://github.com/Amarjha01/InfantCareCompass/pull/51",
+ "title": "Add Eye Icon to Toggle Password Visibility on Registration Page",
+ "repo": "Amarjha01/InfantCareCompass",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-23T05:58:02Z",
+ "updated_at": "2025-07-23T06:06:55Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-23T06:04:16Z",
+ "author_url": "https://github.com/Nandanikirtani",
+ "author_avatar": "https://avatars.githubusercontent.com/u/160708805?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/160708805?v=4",
+ "profile_url": "https://github.com/Nandanikirtani"
+ },
+ "msuud": {
+ "expectedPoints": 58,
+ "currentPoints": 58,
+ "levels": {
+ "level1": 1,
+ "level2": 2,
+ "level3": 4
+ },
+ "prs": [
+ {
+ "url": "https://github.com/Adarsh-Chaubey03/TravelGrid/pull/21",
+ "title": "Made the navigation bar responsive for small screen sizes.",
+ "repo": "Adarsh-Chaubey03/TravelGrid",
+ "level": "level2",
+ "points": 7,
+ "created_at": "2025-07-21T17:16:23Z",
+ "updated_at": "2025-07-22T06:17:49Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-22T06:17:49Z",
+ "author_url": "https://github.com/msuud",
+ "author_avatar": "https://avatars.githubusercontent.com/u/143940691?v=4"
+ },
+ {
+ "url": "https://github.com/efshaperveen/MindJournal/pull/54",
+ "title": "Added show/hide functionality in login and register pages",
+ "repo": "efshaperveen/MindJournal",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-27T14:51:42Z",
+ "updated_at": "2025-07-29T02:34:10Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-27T16:23:01Z",
+ "author_url": "https://github.com/msuud",
+ "author_avatar": "https://avatars.githubusercontent.com/u/143940691?v=4"
+ },
+ {
+ "url": "https://github.com/SurajSG23/PrepBuddy/pull/81",
+ "title": "Feature : Created API and implemented technical questions practice feature for all subjects",
+ "repo": "SurajSG23/PrepBuddy",
+ "level": "level3",
+ "points": 10,
+ "created_at": "2025-07-30T16:09:39Z",
+ "updated_at": "2025-07-30T16:40:07Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-30T16:39:56Z",
+ "author_url": "https://github.com/msuud",
+ "author_avatar": "https://avatars.githubusercontent.com/u/143940691?v=4"
+ },
+ {
+ "url": "https://github.com/SurajSG23/PrepBuddy/pull/60",
+ "title": "Added dedicated technical questions practice page for 4 topics",
+ "repo": "SurajSG23/PrepBuddy",
+ "level": "level3",
+ "points": 10,
+ "created_at": "2025-07-28T14:27:43Z",
+ "updated_at": "2025-07-28T16:02:01Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-28T16:01:48Z",
+ "author_url": "https://github.com/msuud",
+ "author_avatar": "https://avatars.githubusercontent.com/u/143940691?v=4"
+ },
+ {
+ "url": "https://github.com/SurajSG23/PrepBuddy/pull/52",
+ "title": "Added technical questions page",
+ "repo": "SurajSG23/PrepBuddy",
+ "level": "level3",
+ "points": 10,
+ "created_at": "2025-07-27T18:18:01Z",
+ "updated_at": "2025-07-27T18:53:52Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-27T18:53:36Z",
+ "author_url": "https://github.com/msuud",
+ "author_avatar": "https://avatars.githubusercontent.com/u/143940691?v=4"
+ },
+ {
+ "url": "https://github.com/SurajSG23/PrepBuddy/pull/24",
+ "title": "Made the \"Choose Your Focus Area\" section.",
+ "repo": "SurajSG23/PrepBuddy",
+ "level": "level3",
+ "points": 10,
+ "created_at": "2025-07-24T14:45:14Z",
+ "updated_at": "2025-07-24T16:31:28Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-24T14:50:18Z",
+ "author_url": "https://github.com/msuud",
+ "author_avatar": "https://avatars.githubusercontent.com/u/143940691?v=4"
+ },
+ {
+ "url": "https://github.com/SurajSG23/PrepBuddy/pull/23",
+ "title": "Made the navbar responsive",
+ "repo": "SurajSG23/PrepBuddy",
+ "level": "level2",
+ "points": 7,
+ "created_at": "2025-07-24T13:40:35Z",
+ "updated_at": "2025-07-24T13:54:00Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-24T13:53:47Z",
+ "author_url": "https://github.com/msuud",
+ "author_avatar": "https://avatars.githubusercontent.com/u/143940691?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/143940691?v=4",
+ "profile_url": "https://github.com/msuud"
+ },
+ "Manishnemade12": {
+ "expectedPoints": 57,
+ "currentPoints": 57,
+ "levels": {
+ "level1": 3,
+ "level2": 5,
+ "level3": 1
+ },
+ "prs": [
+ {
+ "url": "https://github.com/Adarsh-Chaubey03/TravelGrid/pull/500",
+ "title": "Feature/ai travel recommender",
+ "repo": "Adarsh-Chaubey03/TravelGrid",
+ "level": "level2",
+ "points": 7,
+ "created_at": "2025-08-02T18:31:40Z",
+ "updated_at": "2025-08-02T18:42:26Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-08-02T18:42:26Z",
+ "author_url": "https://github.com/Manishnemade12",
+ "author_avatar": "https://avatars.githubusercontent.com/u/166635137?v=4"
+ },
+ {
+ "url": "https://github.com/Adarsh-Chaubey03/TravelGrid/pull/498",
+ "title": "✨ Add AI-powered hotel/flight review summarizer using Gemini API",
+ "repo": "Adarsh-Chaubey03/TravelGrid",
+ "level": "level2",
+ "points": 7,
+ "created_at": "2025-08-02T18:11:08Z",
+ "updated_at": "2025-08-02T18:38:30Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-08-02T18:38:08Z",
+ "author_url": "https://github.com/Manishnemade12",
+ "author_avatar": "https://avatars.githubusercontent.com/u/166635137?v=4"
+ },
+ {
+ "url": "https://github.com/Adarsh-Chaubey03/TravelGrid/pull/431",
+ "title": "Added merged PR toggle feature on contributors page",
+ "repo": "Adarsh-Chaubey03/TravelGrid",
+ "level": "level2",
+ "points": 7,
+ "created_at": "2025-08-01T11:26:33Z",
+ "updated_at": "2025-08-01T11:33:06Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-08-01T11:32:46Z",
+ "author_url": "https://github.com/Manishnemade12",
+ "author_avatar": "https://avatars.githubusercontent.com/u/166635137?v=4"
+ },
+ {
+ "url": "https://github.com/Adarsh-Chaubey03/TravelGrid/pull/428",
+ "title": "added expense download option in trip calculator (pdf and excel)",
+ "repo": "Adarsh-Chaubey03/TravelGrid",
+ "level": "level2",
+ "points": 7,
+ "created_at": "2025-08-01T10:33:41Z",
+ "updated_at": "2025-08-01T10:48:56Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-08-01T10:48:24Z",
+ "author_url": "https://github.com/Manishnemade12",
+ "author_avatar": "https://avatars.githubusercontent.com/u/166635137?v=4"
+ },
+ {
+ "url": "https://github.com/itsAnimation/AnimateItNow/pull/376",
+ "title": "added Search Functionality in Template Gallery",
+ "repo": "itsAnimation/AnimateItNow",
+ "level": "level2",
+ "points": 7,
+ "created_at": "2025-07-25T08:04:45Z",
+ "updated_at": "2025-08-02T19:03:51Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-25T13:41:12Z",
+ "author_url": "https://github.com/Manishnemade12",
+ "author_avatar": "https://avatars.githubusercontent.com/u/166635137?v=4"
+ },
+ {
+ "url": "https://github.com/itsAnimation/AnimateItNow/pull/368",
+ "title": "Added Customizable Animated Loaders with Code Export Functionality",
+ "repo": "itsAnimation/AnimateItNow",
+ "level": "level3",
+ "points": 10,
+ "created_at": "2025-07-25T07:08:37Z",
+ "updated_at": "2025-07-25T13:16:06Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-25T13:16:06Z",
+ "author_url": "https://github.com/Manishnemade12",
+ "author_avatar": "https://avatars.githubusercontent.com/u/166635137?v=4"
+ },
+ {
+ "url": "https://github.com/Dnyaneshpise/skywatch_alerts/pull/33",
+ "title": "Add contact form and save responses to temp_DB/response.txt",
+ "repo": "Dnyaneshpise/skywatch_alerts",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-27T16:55:20Z",
+ "updated_at": "2025-07-29T13:14:42Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-29T13:14:41Z",
+ "author_url": "https://github.com/Manishnemade12",
+ "author_avatar": "https://avatars.githubusercontent.com/u/166635137?v=4"
+ },
+ {
+ "url": "https://github.com/Dnyaneshpise/skywatch_alerts/pull/13",
+ "title": "added dashbaord for flights",
+ "repo": "Dnyaneshpise/skywatch_alerts",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-24T10:24:16Z",
+ "updated_at": "2025-07-24T17:19:11Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-24T17:18:43Z",
+ "author_url": "https://github.com/Manishnemade12",
+ "author_avatar": "https://avatars.githubusercontent.com/u/166635137?v=4"
+ },
+ {
+ "url": "https://github.com/pavitraag/Project-Vault/pull/175",
+ "title": "improve ui/ux of contactus card and fix button dissepear isse , impro…",
+ "repo": "pavitraag/Project-Vault",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-29T07:51:18Z",
+ "updated_at": "2025-07-29T18:47:26Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-29T14:01:39Z",
+ "author_url": "https://github.com/Manishnemade12",
+ "author_avatar": "https://avatars.githubusercontent.com/u/166635137?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/166635137?v=4",
+ "profile_url": "https://github.com/Manishnemade12"
+ },
+ "vaishaligoyal05": {
+ "expectedPoints": 57,
+ "currentPoints": 57,
+ "levels": {
+ "level1": 0,
+ "level2": 1,
+ "level3": 5
+ },
+ "prs": [
+ {
+ "url": "https://github.com/InnoWebLabs/Vehigo/pull/57",
+ "title": "Added 5 real blogs with full content and linked detail pages. Issue #48",
+ "repo": "InnoWebLabs/Vehigo",
+ "level": "level2",
+ "points": 7,
+ "created_at": "2025-07-24T21:20:44Z",
+ "updated_at": "2025-07-25T20:25:42Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-25T05:33:20Z",
+ "author_url": "https://github.com/vaishaligoyal05",
+ "author_avatar": "https://avatars.githubusercontent.com/u/181724407?v=4"
+ },
+ {
+ "url": "https://github.com/NishantRana07/HrRoadways/pull/367",
+ "title": "Add Booking Links to Hotel Cards #357",
+ "repo": "NishantRana07/HrRoadways",
+ "level": "level3",
+ "points": 10,
+ "created_at": "2025-07-25T10:37:51Z",
+ "updated_at": "2025-07-28T10:04:53Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-26T13:54:48Z",
+ "author_url": "https://github.com/vaishaligoyal05",
+ "author_avatar": "https://avatars.githubusercontent.com/u/181724407?v=4"
+ },
+ {
+ "url": "https://github.com/souvikpramanikgit/LearnHub/pull/153",
+ "title": "added notes section",
+ "repo": "souvikpramanikgit/LearnHub",
+ "level": "level3",
+ "points": 10,
+ "created_at": "2025-07-29T20:24:55Z",
+ "updated_at": "2025-07-30T07:30:24Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-30T07:29:57Z",
+ "author_url": "https://github.com/vaishaligoyal05",
+ "author_avatar": "https://avatars.githubusercontent.com/u/181724407?v=4"
+ },
+ {
+ "url": "https://github.com/SurajSG23/PrepBuddy/pull/40",
+ "title": "Added pdf notes of different subjects in Notes.tsx",
+ "repo": "SurajSG23/PrepBuddy",
+ "level": "level3",
+ "points": 10,
+ "created_at": "2025-07-26T14:37:31Z",
+ "updated_at": "2025-07-26T15:09:16Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-26T14:58:24Z",
+ "author_url": "https://github.com/vaishaligoyal05",
+ "author_avatar": "https://avatars.githubusercontent.com/u/181724407?v=4"
+ },
+ {
+ "url": "https://github.com/VAIBHAVBABELE/vaibhavbabele.github.io/pull/202",
+ "title": "added cgpa/sgpa calculator page and included infrastructure page ",
+ "repo": "VAIBHAVBABELE/vaibhavbabele.github.io",
+ "level": "level3",
+ "points": 10,
+ "created_at": "2025-07-31T14:46:05Z",
+ "updated_at": "2025-07-31T15:56:07Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-31T15:33:53Z",
+ "author_url": "https://github.com/vaishaligoyal05",
+ "author_avatar": "https://avatars.githubusercontent.com/u/181724407?v=4"
+ },
+ {
+ "url": "https://github.com/VAIBHAVBABELE/vaibhavbabele.github.io/pull/108",
+ "title": "Added Infrastructure/Features Page",
+ "repo": "VAIBHAVBABELE/vaibhavbabele.github.io",
+ "level": "level3",
+ "points": 10,
+ "created_at": "2025-07-25T21:06:34Z",
+ "updated_at": "2025-07-26T07:42:06Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-26T07:42:05Z",
+ "author_url": "https://github.com/vaishaligoyal05",
+ "author_avatar": "https://avatars.githubusercontent.com/u/181724407?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/181724407?v=4",
+ "profile_url": "https://github.com/vaishaligoyal05"
+ },
+ "Divanshu0212": {
+ "expectedPoints": 56,
+ "currentPoints": 56,
+ "levels": {
+ "level1": 3,
+ "level2": 2,
+ "level3": 3
+ },
+ "prs": [
+ {
+ "url": "https://github.com/abhisek247767/PeopleHub-Frontend/pull/73",
+ "title": "Admin Function Changed and projects tab changed",
+ "repo": "abhisek247767/PeopleHub-Frontend",
+ "level": "level3",
+ "points": 10,
+ "created_at": "2025-08-01T06:55:36Z",
+ "updated_at": "2025-08-01T17:50:44Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-08-01T12:28:07Z",
+ "author_url": "https://github.com/Divanshu0212",
+ "author_avatar": "https://avatars.githubusercontent.com/u/174964453?v=4"
+ },
+ {
+ "url": "https://github.com/abhisek247767/PeopleHub-Frontend/pull/52",
+ "title": "#51 Profile Picture frontend updated. At registration+settings page",
+ "repo": "abhisek247767/PeopleHub-Frontend",
+ "level": "level3",
+ "points": 10,
+ "created_at": "2025-07-28T14:48:15Z",
+ "updated_at": "2025-07-31T12:41:50Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-31T12:41:50Z",
+ "author_url": "https://github.com/Divanshu0212",
+ "author_avatar": "https://avatars.githubusercontent.com/u/174964453?v=4"
+ },
+ {
+ "url": "https://github.com/abhisek247767/PeopleHub-Frontend/pull/45",
+ "title": "#22 Fixed Project page ui issue",
+ "repo": "abhisek247767/PeopleHub-Frontend",
+ "level": "level2",
+ "points": 7,
+ "created_at": "2025-07-27T09:50:53Z",
+ "updated_at": "2025-07-28T13:21:05Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-28T13:21:05Z",
+ "author_url": "https://github.com/Divanshu0212",
+ "author_avatar": "https://avatars.githubusercontent.com/u/174964453?v=4"
+ },
+ {
+ "url": "https://github.com/abhisek247767/PeopleHub-Frontend/pull/37",
+ "title": "#33 Email Verification and Forgot Password Added",
+ "repo": "abhisek247767/PeopleHub-Frontend",
+ "level": "level3",
+ "points": 10,
+ "created_at": "2025-07-26T18:23:48Z",
+ "updated_at": "2025-07-27T08:17:12Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-27T08:15:13Z",
+ "author_url": "https://github.com/Divanshu0212",
+ "author_avatar": "https://avatars.githubusercontent.com/u/174964453?v=4"
+ },
+ {
+ "url": "https://github.com/abhisek247767/PeopleHub-Frontend/pull/28",
+ "title": "#26 + # 27 Dropdown fixes+UI_fixes",
+ "repo": "abhisek247767/PeopleHub-Frontend",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-25T18:55:43Z",
+ "updated_at": "2025-07-26T05:05:17Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-26T05:05:17Z",
+ "author_url": "https://github.com/Divanshu0212",
+ "author_avatar": "https://avatars.githubusercontent.com/u/174964453?v=4"
+ },
+ {
+ "url": "https://github.com/abhisek247767/PeopleHub-Frontend/pull/23",
+ "title": "Employees add fixed",
+ "repo": "abhisek247767/PeopleHub-Frontend",
+ "level": "level2",
+ "points": 7,
+ "created_at": "2025-07-25T14:19:48Z",
+ "updated_at": "2025-07-25T15:33:18Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-25T15:32:41Z",
+ "author_url": "https://github.com/Divanshu0212",
+ "author_avatar": "https://avatars.githubusercontent.com/u/174964453?v=4"
+ },
+ {
+ "url": "https://github.com/abhisek247767/PeopleHub-Frontend/pull/18",
+ "title": "Validation Failing at registration solved. Showing incorrect error msg.",
+ "repo": "abhisek247767/PeopleHub-Frontend",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-25T12:33:54Z",
+ "updated_at": "2025-07-25T15:32:42Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-25T15:32:42Z",
+ "author_url": "https://github.com/Divanshu0212",
+ "author_avatar": "https://avatars.githubusercontent.com/u/174964453?v=4"
+ },
+ {
+ "url": "https://github.com/chandannekya/Clean-Breath/pull/65",
+ "title": "/plants route fixed on home page",
+ "repo": "chandannekya/Clean-Breath",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-25T08:04:04Z",
+ "updated_at": "2025-07-25T10:22:48Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-25T10:22:47Z",
+ "author_url": "https://github.com/Divanshu0212",
+ "author_avatar": "https://avatars.githubusercontent.com/u/174964453?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/174964453?v=4",
+ "profile_url": "https://github.com/Divanshu0212"
+ },
+ "pranuuk": {
+ "expectedPoints": 56,
+ "currentPoints": 56,
+ "levels": {
+ "level1": 3,
+ "level2": 2,
+ "level3": 3
+ },
+ "prs": [
+ {
+ "url": "https://github.com/Adarsh-Chaubey03/TravelGrid/pull/136",
+ "title": "Add 'Go to Top' button for enhanced user experience",
+ "repo": "Adarsh-Chaubey03/TravelGrid",
+ "level": "level2",
+ "points": 7,
+ "created_at": "2025-07-24T07:25:06Z",
+ "updated_at": "2025-07-24T15:43:08Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-24T15:42:42Z",
+ "author_url": "https://github.com/pranuuk",
+ "author_avatar": "https://avatars.githubusercontent.com/u/169926688?v=4"
+ },
+ {
+ "url": "https://github.com/Adarsh-Chaubey03/TravelGrid/pull/109",
+ "title": "Center hero section text Alignment.",
+ "repo": "Adarsh-Chaubey03/TravelGrid",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-23T08:49:14Z",
+ "updated_at": "2025-07-24T03:53:02Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-24T03:53:02Z",
+ "author_url": "https://github.com/pranuuk",
+ "author_avatar": "https://avatars.githubusercontent.com/u/169926688?v=4"
+ },
+ {
+ "url": "https://github.com/itsAnimation/AnimateItNow/pull/192",
+ "title": "Fix: Template section headings are now visible in dark mode",
+ "repo": "itsAnimation/AnimateItNow",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-23T11:25:15Z",
+ "updated_at": "2025-07-23T12:42:45Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-23T12:42:45Z",
+ "author_url": "https://github.com/pranuuk",
+ "author_avatar": "https://avatars.githubusercontent.com/u/169926688?v=4"
+ },
+ {
+ "url": "https://github.com/Kritika75/TheCawnporeMag.github.io/pull/110",
+ "title": "Fix: Centered header text below navbar",
+ "repo": "Kritika75/TheCawnporeMag.github.io",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-25T08:06:26Z",
+ "updated_at": "2025-07-25T08:08:41Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-25T08:08:41Z",
+ "author_url": "https://github.com/pranuuk",
+ "author_avatar": "https://avatars.githubusercontent.com/u/169926688?v=4"
+ },
+ {
+ "url": "https://github.com/NishantRana07/HrRoadways/pull/416",
+ "title": "Add Progressive Web App (PWA) Support",
+ "repo": "NishantRana07/HrRoadways",
+ "level": "level3",
+ "points": 10,
+ "created_at": "2025-07-28T08:56:04Z",
+ "updated_at": "2025-07-29T05:56:52Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-29T05:56:52Z",
+ "author_url": "https://github.com/pranuuk",
+ "author_avatar": "https://avatars.githubusercontent.com/u/169926688?v=4"
+ },
+ {
+ "url": "https://github.com/NishantRana07/HrRoadways/pull/342",
+ "title": "Feature/dark mode",
+ "repo": "NishantRana07/HrRoadways",
+ "level": "level2",
+ "points": 7,
+ "created_at": "2025-07-23T07:46:38Z",
+ "updated_at": "2025-07-24T07:42:53Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-24T05:48:57Z",
+ "author_url": "https://github.com/pranuuk",
+ "author_avatar": "https://avatars.githubusercontent.com/u/169926688?v=4"
+ },
+ {
+ "url": "https://github.com/NishantRana07/HrRoadways/pull/293",
+ "title": "Implement navbar alignment",
+ "repo": "NishantRana07/HrRoadways",
+ "level": "level3",
+ "points": 10,
+ "created_at": "2025-07-22T11:24:30Z",
+ "updated_at": "2025-07-22T12:01:48Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-22T12:01:36Z",
+ "author_url": "https://github.com/pranuuk",
+ "author_avatar": "https://avatars.githubusercontent.com/u/169926688?v=4"
+ },
+ {
+ "url": "https://github.com/saumyayadav25/cpp-dsa-sheet-testing/pull/21",
+ "title": "Setup PWA (Progressive Web App) Support",
+ "repo": "saumyayadav25/cpp-dsa-sheet-testing",
+ "level": "level3",
+ "points": 10,
+ "created_at": "2025-07-23T16:19:42Z",
+ "updated_at": "2025-07-24T06:53:56Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-24T06:53:56Z",
+ "author_url": "https://github.com/pranuuk",
+ "author_avatar": "https://avatars.githubusercontent.com/u/169926688?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/169926688?v=4",
+ "profile_url": "https://github.com/pranuuk"
+ },
+ "Vikash55Kumar": {
+ "expectedPoints": 56,
+ "currentPoints": 56,
+ "levels": {
+ "level1": 2,
+ "level2": 4,
+ "level3": 2
+ },
+ "prs": [
+ {
+ "url": "https://github.com/AyushSharma72/Skill_Trade/pull/100",
+ "title": "Bug Fixes: Service Fetching in All Request Worker & Route Parameters. ",
+ "repo": "AyushSharma72/Skill_Trade",
+ "level": "level2",
+ "points": 7,
+ "created_at": "2025-08-02T13:00:24Z",
+ "updated_at": "2025-08-02T16:04:48Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-08-02T16:04:48Z",
+ "author_url": "https://github.com/Vikash55Kumar",
+ "author_avatar": "https://avatars.githubusercontent.com/u/140326106?v=4"
+ },
+ {
+ "url": "https://github.com/AyushSharma72/Skill_Trade/pull/98",
+ "title": "Add Privacy Policy and Terms & Conditions pages",
+ "repo": "AyushSharma72/Skill_Trade",
+ "level": "level2",
+ "points": 7,
+ "created_at": "2025-08-01T20:40:47Z",
+ "updated_at": "2025-08-03T01:53:06Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-08-03T01:53:06Z",
+ "author_url": "https://github.com/Vikash55Kumar",
+ "author_avatar": "https://avatars.githubusercontent.com/u/140326106?v=4"
+ },
+ {
+ "url": "https://github.com/AyushSharma72/Skill_Trade/pull/97",
+ "title": "Bug fixed: Updated workerRegestration code",
+ "repo": "AyushSharma72/Skill_Trade",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-08-01T17:01:16Z",
+ "updated_at": "2025-08-01T17:04:34Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-08-01T17:03:19Z",
+ "author_url": "https://github.com/Vikash55Kumar",
+ "author_avatar": "https://avatars.githubusercontent.com/u/140326106?v=4"
+ },
+ {
+ "url": "https://github.com/AyushSharma72/Skill_Trade/pull/91",
+ "title": "Bug fix workerRegestration ",
+ "repo": "AyushSharma72/Skill_Trade",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-31T18:27:23Z",
+ "updated_at": "2025-08-01T16:34:39Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-08-01T10:28:27Z",
+ "author_url": "https://github.com/Vikash55Kumar",
+ "author_avatar": "https://avatars.githubusercontent.com/u/140326106?v=4"
+ },
+ {
+ "url": "https://github.com/AyushSharma72/Skill_Trade/pull/69",
+ "title": "PR: Frontend – Service Management UI for Skill_Trade",
+ "repo": "AyushSharma72/Skill_Trade",
+ "level": "level3",
+ "points": 10,
+ "created_at": "2025-07-27T15:05:17Z",
+ "updated_at": "2025-07-30T17:38:50Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-30T17:35:49Z",
+ "author_url": "https://github.com/Vikash55Kumar",
+ "author_avatar": "https://avatars.githubusercontent.com/u/140326106?v=4"
+ },
+ {
+ "url": "https://github.com/AyushSharma72/Skill_Trade/pull/67",
+ "title": "PR: Backend Enhancements – Service Management APIs & Admin Security",
+ "repo": "AyushSharma72/Skill_Trade",
+ "level": "level3",
+ "points": 10,
+ "created_at": "2025-07-27T14:39:46Z",
+ "updated_at": "2025-07-30T17:36:52Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-30T17:36:52Z",
+ "author_url": "https://github.com/Vikash55Kumar",
+ "author_avatar": "https://avatars.githubusercontent.com/u/140326106?v=4"
+ },
+ {
+ "url": "https://github.com/AyushSharma72/Skill_Trade/pull/43",
+ "title": "Implement email templates for user inquiries and auto-replies",
+ "repo": "AyushSharma72/Skill_Trade",
+ "level": "level2",
+ "points": 7,
+ "created_at": "2025-07-25T13:57:06Z",
+ "updated_at": "2025-07-25T17:42:23Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-25T17:42:23Z",
+ "author_url": "https://github.com/Vikash55Kumar",
+ "author_avatar": "https://avatars.githubusercontent.com/u/140326106?v=4"
+ },
+ {
+ "url": "https://github.com/AyushSharma72/Skill_Trade/pull/38",
+ "title": "feat: optimize infinite scrolling marquee for celebration gallery and…",
+ "repo": "AyushSharma72/Skill_Trade",
+ "level": "level2",
+ "points": 7,
+ "created_at": "2025-07-25T03:59:32Z",
+ "updated_at": "2025-07-25T13:03:02Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-25T13:03:02Z",
+ "author_url": "https://github.com/Vikash55Kumar",
+ "author_avatar": "https://avatars.githubusercontent.com/u/140326106?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/140326106?v=4",
+ "profile_url": "https://github.com/Vikash55Kumar"
+ },
+ "HimanshuKabra01": {
+ "expectedPoints": 56,
+ "currentPoints": 56,
+ "levels": {
+ "level1": 8,
+ "level2": 2,
+ "level3": 1
+ },
+ "prs": [
+ {
+ "url": "https://github.com/BaraniVA/Habitheat/pull/103",
+ "title": "Fix Back Button",
+ "repo": "BaraniVA/Habitheat",
+ "level": null,
+ "points": 0,
+ "created_at": "2025-07-31T04:40:23Z",
+ "updated_at": "2025-07-31T13:45:11Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-31T13:44:44Z",
+ "author_url": "https://github.com/HimanshuKabra01",
+ "author_avatar": "https://avatars.githubusercontent.com/u/186549025?v=4"
+ },
+ {
+ "url": "https://github.com/BaraniVA/Habitheat/pull/93",
+ "title": "Add Edit Habit functionality",
+ "repo": "BaraniVA/Habitheat",
+ "level": "level2",
+ "points": 7,
+ "created_at": "2025-07-29T15:15:01Z",
+ "updated_at": "2025-07-30T18:47:26Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-30T10:52:35Z",
+ "author_url": "https://github.com/HimanshuKabra01",
+ "author_avatar": "https://avatars.githubusercontent.com/u/186549025?v=4"
+ },
+ {
+ "url": "https://github.com/BaraniVA/Habitheat/pull/80",
+ "title": "Save Template and share option",
+ "repo": "BaraniVA/Habitheat",
+ "level": "level3",
+ "points": 10,
+ "created_at": "2025-07-27T06:59:07Z",
+ "updated_at": "2025-07-27T11:32:35Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-27T11:32:35Z",
+ "author_url": "https://github.com/HimanshuKabra01",
+ "author_avatar": "https://avatars.githubusercontent.com/u/186549025?v=4"
+ },
+ {
+ "url": "https://github.com/BaraniVA/Habitheat/pull/62",
+ "title": "Add priority label and bug fix",
+ "repo": "BaraniVA/Habitheat",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-25T05:44:31Z",
+ "updated_at": "2025-07-25T17:26:36Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-25T08:35:47Z",
+ "author_url": "https://github.com/HimanshuKabra01",
+ "author_avatar": "https://avatars.githubusercontent.com/u/186549025?v=4"
+ },
+ {
+ "url": "https://github.com/BaraniVA/Habitheat/pull/51",
+ "title": "Add animation",
+ "repo": "BaraniVA/Habitheat",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-24T08:22:52Z",
+ "updated_at": "2025-07-24T14:17:36Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-24T10:11:30Z",
+ "author_url": "https://github.com/HimanshuKabra01",
+ "author_avatar": "https://avatars.githubusercontent.com/u/186549025?v=4"
+ },
+ {
+ "url": "https://github.com/BaraniVA/Habitheat/pull/44",
+ "title": "Add a Back button",
+ "repo": "BaraniVA/Habitheat",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-24T06:41:56Z",
+ "updated_at": "2025-07-24T14:18:00Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-24T07:44:48Z",
+ "author_url": "https://github.com/HimanshuKabra01",
+ "author_avatar": "https://avatars.githubusercontent.com/u/186549025?v=4"
+ },
+ {
+ "url": "https://github.com/BaraniVA/Habitheat/pull/33",
+ "title": "Add Unarchive button",
+ "repo": "BaraniVA/Habitheat",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-23T13:29:31Z",
+ "updated_at": "2025-07-23T14:41:45Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-23T14:27:25Z",
+ "author_url": "https://github.com/HimanshuKabra01",
+ "author_avatar": "https://avatars.githubusercontent.com/u/186549025?v=4"
+ },
+ {
+ "url": "https://github.com/BaraniVA/Habitheat/pull/21",
+ "title": "Bug Fix",
+ "repo": "BaraniVA/Habitheat",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-23T07:01:23Z",
+ "updated_at": "2025-07-23T07:58:23Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-23T07:08:21Z",
+ "author_url": "https://github.com/HimanshuKabra01",
+ "author_avatar": "https://avatars.githubusercontent.com/u/186549025?v=4"
+ },
+ {
+ "url": "https://github.com/BaraniVA/Habitheat/pull/9",
+ "title": "Enhance Scroll Bar",
+ "repo": "BaraniVA/Habitheat",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-22T11:43:33Z",
+ "updated_at": "2025-07-22T16:30:26Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-22T16:08:06Z",
+ "author_url": "https://github.com/HimanshuKabra01",
+ "author_avatar": "https://avatars.githubusercontent.com/u/186549025?v=4"
+ },
+ {
+ "url": "https://github.com/rahulkhandait-sde/cineverse/pull/33",
+ "title": "Add Watchlist",
+ "repo": "rahulkhandait-sde/movie-search",
+ "level": "level2",
+ "points": 7,
+ "created_at": "2025-08-01T09:45:41Z",
+ "updated_at": "2025-08-02T13:50:51Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-08-02T13:50:08Z",
+ "author_url": "https://github.com/HimanshuKabra01",
+ "author_avatar": "https://avatars.githubusercontent.com/u/186549025?v=4"
+ },
+ {
+ "url": "https://github.com/rahulkhandait-sde/cineverse/pull/18",
+ "title": "Add a loading spinner",
+ "repo": "rahulkhandait-sde/movie-search",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-27T16:28:43Z",
+ "updated_at": "2025-07-27T17:47:24Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-27T17:46:51Z",
+ "author_url": "https://github.com/HimanshuKabra01",
+ "author_avatar": "https://avatars.githubusercontent.com/u/186549025?v=4"
+ },
+ {
+ "url": "https://github.com/rahulkhandait-sde/cineverse/pull/12",
+ "title": "Bug fix",
+ "repo": "rahulkhandait-sde/movie-search",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-25T06:17:27Z",
+ "updated_at": "2025-07-26T12:34:55Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-26T11:40:17Z",
+ "author_url": "https://github.com/HimanshuKabra01",
+ "author_avatar": "https://avatars.githubusercontent.com/u/186549025?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/186549025?v=4",
+ "profile_url": "https://github.com/HimanshuKabra01"
+ },
+ "sparth292": {
+ "expectedPoints": 95,
+ "currentPoints": 54,
+ "levels": {
+ "level1": 0,
+ "level2": 5,
+ "level3": 6
+ },
+ "prs": [
+ {
+ "url": "https://github.com/Prateek9876/NagarVikas/pull/182",
+ "title": "Improved ui in Contact us and Feedback Page #181 Level 2",
+ "repo": "Prateek9876/NagarVikas",
+ "level": "level2",
+ "points": 7,
+ "created_at": "2025-07-30T15:46:29Z",
+ "updated_at": "2025-08-01T14:54:53Z",
+ "state": "open",
+ "merged": false,
+ "merged_at": null,
+ "author_url": "https://github.com/sparth292",
+ "author_avatar": "https://avatars.githubusercontent.com/u/144267660?v=4"
+ },
+ {
+ "url": "https://github.com/Prateek9876/NagarVikas/pull/178",
+ "title": "Sidebar update #166",
+ "repo": "Prateek9876/NagarVikas",
+ "level": "level2",
+ "points": 7,
+ "created_at": "2025-07-28T16:43:08Z",
+ "updated_at": "2025-07-30T08:59:25Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-30T08:59:24Z",
+ "author_url": "https://github.com/sparth292",
+ "author_avatar": "https://avatars.githubusercontent.com/u/144267660?v=4"
+ },
+ {
+ "url": "https://github.com/Prateek9876/NagarVikas/pull/177",
+ "title": "User notify #134",
+ "repo": "Prateek9876/NagarVikas",
+ "level": "level3",
+ "points": 10,
+ "created_at": "2025-07-28T16:41:02Z",
+ "updated_at": "2025-07-30T08:44:25Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-30T08:44:24Z",
+ "author_url": "https://github.com/sparth292",
+ "author_avatar": "https://avatars.githubusercontent.com/u/144267660?v=4"
+ },
+ {
+ "url": "https://github.com/Prateek9876/NagarVikas/pull/176",
+ "title": "Admin notify #135",
+ "repo": "Prateek9876/NagarVikas",
+ "level": "level3",
+ "points": 10,
+ "created_at": "2025-07-28T16:37:32Z",
+ "updated_at": "2025-07-30T08:39:44Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-30T08:39:44Z",
+ "author_url": "https://github.com/sparth292",
+ "author_avatar": "https://avatars.githubusercontent.com/u/144267660?v=4"
+ },
+ {
+ "url": "https://github.com/Prateek9876/NagarVikas/pull/175",
+ "title": "Chatbot added #150",
+ "repo": "Prateek9876/NagarVikas",
+ "level": "level3",
+ "points": 10,
+ "created_at": "2025-07-28T16:31:18Z",
+ "updated_at": "2025-07-30T08:28:55Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-30T08:28:55Z",
+ "author_url": "https://github.com/sparth292",
+ "author_avatar": "https://avatars.githubusercontent.com/u/144267660?v=4"
+ },
+ {
+ "url": "https://github.com/Prateek9876/NagarVikas/pull/169",
+ "title": "Enhance sidebar 166",
+ "repo": "Prateek9876/NagarVikas",
+ "level": "level2",
+ "points": 7,
+ "created_at": "2025-07-28T08:55:49Z",
+ "updated_at": "2025-07-28T13:06:23Z",
+ "state": "closed",
+ "merged": false,
+ "merged_at": null,
+ "author_url": "https://github.com/sparth292",
+ "author_avatar": "https://avatars.githubusercontent.com/u/144267660?v=4"
+ },
+ {
+ "url": "https://github.com/Prateek9876/NagarVikas/pull/168",
+ "title": "Chatbot integration 150",
+ "repo": "Prateek9876/NagarVikas",
+ "level": "level3",
+ "points": 10,
+ "created_at": "2025-07-28T08:55:38Z",
+ "updated_at": "2025-07-28T14:11:26Z",
+ "state": "closed",
+ "merged": false,
+ "merged_at": null,
+ "author_url": "https://github.com/sparth292",
+ "author_avatar": "https://avatars.githubusercontent.com/u/144267660?v=4"
+ },
+ {
+ "url": "https://github.com/Prateek9876/NagarVikas/pull/167",
+ "title": "Admin notification 135",
+ "repo": "Prateek9876/NagarVikas",
+ "level": "level3",
+ "points": 10,
+ "created_at": "2025-07-28T08:54:49Z",
+ "updated_at": "2025-07-28T14:11:30Z",
+ "state": "closed",
+ "merged": false,
+ "merged_at": null,
+ "author_url": "https://github.com/sparth292",
+ "author_avatar": "https://avatars.githubusercontent.com/u/144267660?v=4"
+ },
+ {
+ "url": "https://github.com/Prateek9876/NagarVikas/pull/165",
+ "title": "Issue selection UI",
+ "repo": "Prateek9876/NagarVikas",
+ "level": "level2",
+ "points": 7,
+ "created_at": "2025-07-28T05:27:32Z",
+ "updated_at": "2025-07-28T14:11:35Z",
+ "state": "closed",
+ "merged": false,
+ "merged_at": null,
+ "author_url": "https://github.com/sparth292",
+ "author_avatar": "https://avatars.githubusercontent.com/u/144267660?v=4"
+ },
+ {
+ "url": "https://github.com/Prateek9876/NagarVikas/pull/146",
+ "title": "Notification Changes",
+ "repo": "Prateek9876/NagarVikas",
+ "level": "level3",
+ "points": 10,
+ "created_at": "2025-07-24T08:18:39Z",
+ "updated_at": "2025-07-24T13:37:38Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-24T13:37:37Z",
+ "author_url": "https://github.com/sparth292",
+ "author_avatar": "https://avatars.githubusercontent.com/u/144267660?v=4"
+ },
+ {
+ "url": "https://github.com/Prateek9876/NagarVikas/pull/139",
+ "title": "T&C Pop up Added on issues_selection.dart",
+ "repo": "Prateek9876/NagarVikas",
+ "level": "level2",
+ "points": 7,
+ "created_at": "2025-07-23T09:19:28Z",
+ "updated_at": "2025-07-23T12:28:20Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-23T12:28:19Z",
+ "author_url": "https://github.com/sparth292",
+ "author_avatar": "https://avatars.githubusercontent.com/u/144267660?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/144267660?v=4",
+ "profile_url": "https://github.com/sparth292"
+ },
+ "madhur1702": {
+ "expectedPoints": 51,
+ "currentPoints": 51,
+ "levels": {
+ "level1": 4,
+ "level2": 5,
+ "level3": 0
+ },
+ "prs": [
+ {
+ "url": "https://github.com/itsAnimation/AnimateItNow/pull/491",
+ "title": "Added Contact Us Template",
+ "repo": "itsAnimation/AnimateItNow",
+ "level": "level2",
+ "points": 7,
+ "created_at": "2025-07-26T14:06:51Z",
+ "updated_at": "2025-08-02T10:41:44Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-08-02T10:41:22Z",
+ "author_url": "https://github.com/madhur1702",
+ "author_avatar": "https://avatars.githubusercontent.com/u/150015788?v=4"
+ },
+ {
+ "url": "https://github.com/ruchikakengal/WebDevIn100_Days/pull/433",
+ "title": "Added Budget Tracker Web App",
+ "repo": "ruchikakengal/WebDevIn100_Days",
+ "level": "level2",
+ "points": 7,
+ "created_at": "2025-07-31T07:14:50Z",
+ "updated_at": "2025-07-31T08:10:07Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-31T08:10:07Z",
+ "author_url": "https://github.com/madhur1702",
+ "author_avatar": "https://avatars.githubusercontent.com/u/150015788?v=4"
+ },
+ {
+ "url": "https://github.com/ruchikakengal/WebDevIn100_Days/pull/399",
+ "title": "Added Space Jumper - Flying Game",
+ "repo": "ruchikakengal/WebDevIn100_Days",
+ "level": "level2",
+ "points": 7,
+ "created_at": "2025-07-30T05:23:17Z",
+ "updated_at": "2025-07-30T12:27:16Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-30T12:27:16Z",
+ "author_url": "https://github.com/madhur1702",
+ "author_avatar": "https://avatars.githubusercontent.com/u/150015788?v=4"
+ },
+ {
+ "url": "https://github.com/ruchikakengal/WebDevIn100_Days/pull/373",
+ "title": "Added Space War Game - Shooting Game",
+ "repo": "ruchikakengal/WebDevIn100_Days",
+ "level": "level2",
+ "points": 7,
+ "created_at": "2025-07-28T16:49:25Z",
+ "updated_at": "2025-07-29T09:07:33Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-29T09:07:33Z",
+ "author_url": "https://github.com/madhur1702",
+ "author_avatar": "https://avatars.githubusercontent.com/u/150015788?v=4"
+ },
+ {
+ "url": "https://github.com/ruchikakengal/WebDevIn100_Days/pull/324",
+ "title": "Added GiggleBits - Programming Joke Generator Web App",
+ "repo": "ruchikakengal/WebDevIn100_Days",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-26T16:51:27Z",
+ "updated_at": "2025-07-27T09:34:15Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-27T08:00:40Z",
+ "author_url": "https://github.com/madhur1702",
+ "author_avatar": "https://avatars.githubusercontent.com/u/150015788?v=4"
+ },
+ {
+ "url": "https://github.com/rutikakengal/100DAYS_OF_100WEBPROJECTS/pull/393",
+ "title": "Added CHESS - GAME",
+ "repo": "rutikakengal/100DAYS_OF_100WEBPROJECTS",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-30T08:05:20Z",
+ "updated_at": "2025-07-31T15:32:41Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-31T15:30:58Z",
+ "author_url": "https://github.com/madhur1702",
+ "author_avatar": "https://avatars.githubusercontent.com/u/150015788?v=4"
+ },
+ {
+ "url": "https://github.com/rutikakengal/100DAYS_OF_100WEBPROJECTS/pull/350",
+ "title": "Added Space War - Shooting Game",
+ "repo": "rutikakengal/100DAYS_OF_100WEBPROJECTS",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-29T15:19:48Z",
+ "updated_at": "2025-07-30T06:55:30Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-30T06:54:55Z",
+ "author_url": "https://github.com/madhur1702",
+ "author_avatar": "https://avatars.githubusercontent.com/u/150015788?v=4"
+ },
+ {
+ "url": "https://github.com/rutikakengal/100DAYS_OF_100WEBPROJECTS/pull/336",
+ "title": "Added Space Jumper - Flying Game",
+ "repo": "rutikakengal/100DAYS_OF_100WEBPROJECTS",
+ "level": "level2",
+ "points": 7,
+ "created_at": "2025-07-29T13:23:33Z",
+ "updated_at": "2025-07-29T13:26:56Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-29T13:26:31Z",
+ "author_url": "https://github.com/madhur1702",
+ "author_avatar": "https://avatars.githubusercontent.com/u/150015788?v=4"
+ },
+ {
+ "url": "https://github.com/rutikakengal/100DAYS_OF_100WEBPROJECTS/pull/264",
+ "title": "Added Snake And Ladder Game",
+ "repo": "rutikakengal/100DAYS_OF_100WEBPROJECTS",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-27T16:33:36Z",
+ "updated_at": "2025-07-29T12:14:31Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-29T12:13:53Z",
+ "author_url": "https://github.com/madhur1702",
+ "author_avatar": "https://avatars.githubusercontent.com/u/150015788?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/150015788?v=4",
+ "profile_url": "https://github.com/madhur1702"
+ },
+ "JaiSwarup": {
+ "expectedPoints": 51,
+ "currentPoints": 51,
+ "levels": {
+ "level1": 1,
+ "level2": 1,
+ "level3": 4
+ },
+ "prs": [
+ {
+ "url": "https://github.com/Dhruvi-tech/firebase-chat-app/pull/10",
+ "title": "UI Improvements: Added Landing Page, Redesigned Navbar & Chat UI, Tailwind Setup",
+ "repo": "Dhruvi-tech/firebase-chat-app",
+ "level": "level3",
+ "points": 10,
+ "created_at": "2025-07-23T13:37:59Z",
+ "updated_at": "2025-07-23T14:08:31Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-23T14:08:31Z",
+ "author_url": "https://github.com/JaiSwarup",
+ "author_avatar": "https://avatars.githubusercontent.com/u/125689870?v=4"
+ },
+ {
+ "url": "https://github.com/Dhruvi-tech/firebase-chat-app/pull/9",
+ "title": "Implement React Router for Improved Navigation and UX",
+ "repo": "Dhruvi-tech/firebase-chat-app",
+ "level": "level3",
+ "points": 10,
+ "created_at": "2025-07-23T09:04:21Z",
+ "updated_at": "2025-07-23T09:25:11Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-23T09:24:12Z",
+ "author_url": "https://github.com/JaiSwarup",
+ "author_avatar": "https://avatars.githubusercontent.com/u/125689870?v=4"
+ },
+ {
+ "url": "https://github.com/Dhruvi-tech/firebase-chat-app/pull/5",
+ "title": "Fix: Secure Firebase Credentials with Environment Variables",
+ "repo": "Dhruvi-tech/firebase-chat-app",
+ "level": "level3",
+ "points": 10,
+ "created_at": "2025-07-22T14:39:37Z",
+ "updated_at": "2025-07-23T09:25:29Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-22T17:39:21Z",
+ "author_url": "https://github.com/JaiSwarup",
+ "author_avatar": "https://avatars.githubusercontent.com/u/125689870?v=4"
+ },
+ {
+ "url": "https://github.com/Dhruvi-tech/firebase-chat-app/pull/3",
+ "title": " Migrate from Create React App to Vite 🚀",
+ "repo": "Dhruvi-tech/firebase-chat-app",
+ "level": "level3",
+ "points": 10,
+ "created_at": "2025-07-22T12:19:02Z",
+ "updated_at": "2025-07-23T09:25:43Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-22T12:30:26Z",
+ "author_url": "https://github.com/JaiSwarup",
+ "author_avatar": "https://avatars.githubusercontent.com/u/125689870?v=4"
+ },
+ {
+ "url": "https://github.com/NishantRana07/HrRoadways/pull/270",
+ "title": "Add `.gitignore` to exclude sensitive and unnecessary files",
+ "repo": "NishantRana07/HrRoadways",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-22T05:50:00Z",
+ "updated_at": "2025-07-22T11:20:59Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-22T11:20:59Z",
+ "author_url": "https://github.com/JaiSwarup",
+ "author_avatar": "https://avatars.githubusercontent.com/u/125689870?v=4"
+ },
+ {
+ "url": "https://github.com/NishantRana07/HrRoadways/pull/265",
+ "title": "Fix: Handle client-side routing 404 on Vercel by adding vercel.json",
+ "repo": "NishantRana07/HrRoadways",
+ "level": "level2",
+ "points": 7,
+ "created_at": "2025-07-21T20:18:09Z",
+ "updated_at": "2025-07-22T10:12:55Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-22T10:12:38Z",
+ "author_url": "https://github.com/JaiSwarup",
+ "author_avatar": "https://avatars.githubusercontent.com/u/125689870?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/125689870?v=4",
+ "profile_url": "https://github.com/JaiSwarup"
+ },
+ "Kanishk-tiwari-045": {
+ "expectedPoints": 50,
+ "currentPoints": 50,
+ "levels": {
+ "level1": 0,
+ "level2": 0,
+ "level3": 5
+ },
+ "prs": [
+ {
+ "url": "https://github.com/efshaperveen/MindJournal/pull/73",
+ "title": "Private vault for sensitive entries",
+ "repo": "efshaperveen/MindJournal",
+ "level": "level3",
+ "points": 10,
+ "created_at": "2025-07-30T17:35:12Z",
+ "updated_at": "2025-08-01T16:33:48Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-31T07:00:29Z",
+ "author_url": "https://github.com/Kanishk-tiwari-045",
+ "author_avatar": "https://avatars.githubusercontent.com/u/114578949?v=4"
+ },
+ {
+ "url": "https://github.com/efshaperveen/MindJournal/pull/63",
+ "title": "Feature: Context-Aware AI ChatBot for Journal Entries",
+ "repo": "efshaperveen/MindJournal",
+ "level": "level3",
+ "points": 10,
+ "created_at": "2025-07-28T19:36:11Z",
+ "updated_at": "2025-07-29T04:16:37Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-29T02:28:39Z",
+ "author_url": "https://github.com/Kanishk-tiwari-045",
+ "author_avatar": "https://avatars.githubusercontent.com/u/114578949?v=4"
+ },
+ {
+ "url": "https://github.com/efshaperveen/MindJournal/pull/55",
+ "title": "Feature: Content specific Quote Generation using gemini",
+ "repo": "efshaperveen/MindJournal",
+ "level": "level3",
+ "points": 10,
+ "created_at": "2025-07-27T17:49:30Z",
+ "updated_at": "2025-07-27T18:47:16Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-27T18:04:35Z",
+ "author_url": "https://github.com/Kanishk-tiwari-045",
+ "author_avatar": "https://avatars.githubusercontent.com/u/114578949?v=4"
+ },
+ {
+ "url": "https://github.com/efshaperveen/MindJournal/pull/44",
+ "title": "Download Entry as PDF",
+ "repo": "efshaperveen/MindJournal",
+ "level": "level3",
+ "points": 10,
+ "created_at": "2025-07-25T16:52:00Z",
+ "updated_at": "2025-07-26T06:38:05Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-26T06:38:05Z",
+ "author_url": "https://github.com/Kanishk-tiwari-045",
+ "author_avatar": "https://avatars.githubusercontent.com/u/114578949?v=4"
+ },
+ {
+ "url": "https://github.com/efshaperveen/MindJournal/pull/37",
+ "title": "feature: Integrated Google oauth for streamlined authentication",
+ "repo": "efshaperveen/MindJournal",
+ "level": "level3",
+ "points": 10,
+ "created_at": "2025-07-25T00:20:26Z",
+ "updated_at": "2025-07-26T04:14:03Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-25T13:32:22Z",
+ "author_url": "https://github.com/Kanishk-tiwari-045",
+ "author_avatar": "https://avatars.githubusercontent.com/u/114578949?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/114578949?v=4",
+ "profile_url": "https://github.com/Kanishk-tiwari-045"
+ },
+ "AlapatiSreeHarsha": {
+ "expectedPoints": 49,
+ "currentPoints": 49,
+ "levels": {
+ "level1": 3,
+ "level2": 1,
+ "level3": 3
+ },
+ "prs": [
+ {
+ "url": "https://github.com/Abhishek2634/Foodie/pull/180",
+ "title": "FAQ feature added #issue179 solved",
+ "repo": "Abhishek2634/Foodie",
+ "level": "level3",
+ "points": 10,
+ "created_at": "2025-07-30T05:13:26Z",
+ "updated_at": "2025-08-02T11:14:01Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-30T05:19:46Z",
+ "author_url": "https://github.com/AlapatiSreeHarsha",
+ "author_avatar": "https://avatars.githubusercontent.com/u/169584803?v=4"
+ },
+ {
+ "url": "https://github.com/Abhishek2634/Foodie/pull/160",
+ "title": "Restaurants Feature added #issue158",
+ "repo": "Abhishek2634/Foodie",
+ "level": "level3",
+ "points": 10,
+ "created_at": "2025-07-29T08:29:19Z",
+ "updated_at": "2025-08-02T11:10:48Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-29T16:50:47Z",
+ "author_url": "https://github.com/AlapatiSreeHarsha",
+ "author_avatar": "https://avatars.githubusercontent.com/u/169584803?v=4"
+ },
+ {
+ "url": "https://github.com/Abhishek2634/Foodie/pull/145",
+ "title": "Implemented Chatbot with Generative AI with user preferences taking user input as time,mood,preferences,type of person #issue142",
+ "repo": "Abhishek2634/Foodie",
+ "level": "level3",
+ "points": 10,
+ "created_at": "2025-07-27T17:24:38Z",
+ "updated_at": "2025-08-02T11:03:58Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-28T05:19:08Z",
+ "author_url": "https://github.com/AlapatiSreeHarsha",
+ "author_avatar": "https://avatars.githubusercontent.com/u/169584803?v=4"
+ },
+ {
+ "url": "https://github.com/Abhishek2634/Foodie/pull/101",
+ "title": "A beautiful Loading Animation created #issue99 solved",
+ "repo": "Abhishek2634/Foodie",
+ "level": "level2",
+ "points": 7,
+ "created_at": "2025-07-24T17:36:59Z",
+ "updated_at": "2025-08-02T10:58:07Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-25T17:42:39Z",
+ "author_url": "https://github.com/AlapatiSreeHarsha",
+ "author_avatar": "https://avatars.githubusercontent.com/u/169584803?v=4"
+ },
+ {
+ "url": "https://github.com/Abhishek2634/Foodie/pull/70",
+ "title": "App icon and Favicon added #issue59 solved",
+ "repo": "Abhishek2634/Foodie",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-23T15:17:11Z",
+ "updated_at": "2025-08-02T10:53:30Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-23T17:55:19Z",
+ "author_url": "https://github.com/AlapatiSreeHarsha",
+ "author_avatar": "https://avatars.githubusercontent.com/u/169584803?v=4"
+ },
+ {
+ "url": "https://github.com/opensource-society/notesvault/pull/38",
+ "title": "Removed Shadows from the nav bar",
+ "repo": "opensource-society/NotesVault",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-22T06:27:27Z",
+ "updated_at": "2025-07-22T06:39:10Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-22T06:35:37Z",
+ "author_url": "https://github.com/AlapatiSreeHarsha",
+ "author_avatar": "https://avatars.githubusercontent.com/u/169584803?v=4"
+ },
+ {
+ "url": "https://github.com/opensource-society/notesvault/pull/36",
+ "title": "Made sticky header with changes",
+ "repo": "opensource-society/NotesVault",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-22T05:57:09Z",
+ "updated_at": "2025-07-22T06:35:39Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-22T06:35:38Z",
+ "author_url": "https://github.com/AlapatiSreeHarsha",
+ "author_avatar": "https://avatars.githubusercontent.com/u/169584803?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/169584803?v=4",
+ "profile_url": "https://github.com/AlapatiSreeHarsha"
+ },
+ "sneha-tech03": {
+ "expectedPoints": 47,
+ "currentPoints": 47,
+ "levels": {
+ "level1": 3,
+ "level2": 5,
+ "level3": 0
+ },
+ "prs": [
+ {
+ "url": "https://github.com/itsAnimation/AnimateItNow/pull/476",
+ "title": "Feature/animation",
+ "repo": "itsAnimation/AnimateItNow",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-26T11:20:48Z",
+ "updated_at": "2025-07-26T11:40:15Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-26T11:40:15Z",
+ "author_url": "https://github.com/sneha-tech03",
+ "author_avatar": "https://avatars.githubusercontent.com/u/194957951?v=4"
+ },
+ {
+ "url": "https://github.com/Kritika75/TheCawnporeMag.github.io/pull/349",
+ "title": "Added search bar in masthead",
+ "repo": "Kritika75/TheCawnporeMag.github.io",
+ "level": "level2",
+ "points": 7,
+ "created_at": "2025-08-01T13:02:42Z",
+ "updated_at": "2025-08-02T03:24:08Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-08-02T03:24:08Z",
+ "author_url": "https://github.com/sneha-tech03",
+ "author_avatar": "https://avatars.githubusercontent.com/u/194957951?v=4"
+ },
+ {
+ "url": "https://github.com/Kritika75/TheCawnporeMag.github.io/pull/309",
+ "title": "Fixed multiple bugs",
+ "repo": "Kritika75/TheCawnporeMag.github.io",
+ "level": "level2",
+ "points": 7,
+ "created_at": "2025-07-31T10:20:06Z",
+ "updated_at": "2025-07-31T12:15:20Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-31T12:15:20Z",
+ "author_url": "https://github.com/sneha-tech03",
+ "author_avatar": "https://avatars.githubusercontent.com/u/194957951?v=4"
+ },
+ {
+ "url": "https://github.com/Kritika75/TheCawnporeMag.github.io/pull/269",
+ "title": "Added Food Cards ",
+ "repo": "Kritika75/TheCawnporeMag.github.io",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-29T10:57:54Z",
+ "updated_at": "2025-07-30T04:32:08Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-30T04:32:08Z",
+ "author_url": "https://github.com/sneha-tech03",
+ "author_avatar": "https://avatars.githubusercontent.com/u/194957951?v=4"
+ },
+ {
+ "url": "https://github.com/Kritika75/TheCawnporeMag.github.io/pull/250",
+ "title": "Design/masthead",
+ "repo": "Kritika75/TheCawnporeMag.github.io",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-28T11:17:17Z",
+ "updated_at": "2025-07-29T07:37:37Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-29T07:37:37Z",
+ "author_url": "https://github.com/sneha-tech03",
+ "author_avatar": "https://avatars.githubusercontent.com/u/194957951?v=4"
+ },
+ {
+ "url": "https://github.com/Kritika75/TheCawnporeMag.github.io/pull/186",
+ "title": "UI changed of home page",
+ "repo": "Kritika75/TheCawnporeMag.github.io",
+ "level": "level2",
+ "points": 7,
+ "created_at": "2025-07-26T18:05:35Z",
+ "updated_at": "2025-07-27T05:56:43Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-27T05:56:42Z",
+ "author_url": "https://github.com/sneha-tech03",
+ "author_avatar": "https://avatars.githubusercontent.com/u/194957951?v=4"
+ },
+ {
+ "url": "https://github.com/Kritika75/TheCawnporeMag.github.io/pull/88",
+ "title": "Changed issue page ui",
+ "repo": "Kritika75/TheCawnporeMag.github.io",
+ "level": "level2",
+ "points": 7,
+ "created_at": "2025-07-24T10:42:53Z",
+ "updated_at": "2025-07-24T11:36:34Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-24T11:36:34Z",
+ "author_url": "https://github.com/sneha-tech03",
+ "author_avatar": "https://avatars.githubusercontent.com/u/194957951?v=4"
+ },
+ {
+ "url": "https://github.com/Kritika75/TheCawnporeMag.github.io/pull/52",
+ "title": "Updated Masthead Design",
+ "repo": "Kritika75/TheCawnporeMag.github.io",
+ "level": "level2",
+ "points": 7,
+ "created_at": "2025-07-23T05:13:38Z",
+ "updated_at": "2025-07-23T06:26:54Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-23T06:24:48Z",
+ "author_url": "https://github.com/sneha-tech03",
+ "author_avatar": "https://avatars.githubusercontent.com/u/194957951?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/194957951?v=4",
+ "profile_url": "https://github.com/sneha-tech03"
+ },
+ "Shailee6464": {
+ "expectedPoints": 47,
+ "currentPoints": 47,
+ "levels": {
+ "level1": 3,
+ "level2": 5,
+ "level3": 0
+ },
+ "prs": [
+ {
+ "url": "https://github.com/InnoWebLabs/Vehigo/pull/205",
+ "title": "feat: Enhance footer styling and social media visibility",
+ "repo": "InnoWebLabs/Vehigo",
+ "level": "level2",
+ "points": 7,
+ "created_at": "2025-08-01T18:20:10Z",
+ "updated_at": "2025-08-02T05:28:34Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-08-02T05:28:34Z",
+ "author_url": "https://github.com/Shailee6464",
+ "author_avatar": "https://avatars.githubusercontent.com/u/176797581?v=4"
+ },
+ {
+ "url": "https://github.com/Kritika75/TheCawnporeMag.github.io/pull/251",
+ "title": "feat: Enhance global navigation consistency and accessibility with FA…",
+ "repo": "Kritika75/TheCawnporeMag.github.io",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-28T12:21:39Z",
+ "updated_at": "2025-07-29T07:37:59Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-29T07:35:39Z",
+ "author_url": "https://github.com/Shailee6464",
+ "author_avatar": "https://avatars.githubusercontent.com/u/176797581?v=4"
+ },
+ {
+ "url": "https://github.com/Kritika75/TheCawnporeMag.github.io/pull/242",
+ "title": "feat: Enhance global navigation consistency and accessibility with FA…",
+ "repo": "Kritika75/TheCawnporeMag.github.io",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-28T09:20:47Z",
+ "updated_at": "2025-07-28T10:05:09Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-28T10:04:57Z",
+ "author_url": "https://github.com/Shailee6464",
+ "author_avatar": "https://avatars.githubusercontent.com/u/176797581?v=4"
+ },
+ {
+ "url": "https://github.com/Kritika75/TheCawnporeMag.github.io/pull/240",
+ "title": "feat: Add alt attributes to issue cover images in issue.html. Closes …",
+ "repo": "Kritika75/TheCawnporeMag.github.io",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-28T08:19:39Z",
+ "updated_at": "2025-07-28T10:03:38Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-28T10:03:32Z",
+ "author_url": "https://github.com/Shailee6464",
+ "author_avatar": "https://avatars.githubusercontent.com/u/176797581?v=4"
+ },
+ {
+ "url": "https://github.com/VAIBHAVBABELE/vaibhavbabele.github.io/pull/198",
+ "title": "Refactor: Same UI across all pages and cleanup",
+ "repo": "VAIBHAVBABELE/vaibhavbabele.github.io",
+ "level": "level2",
+ "points": 7,
+ "created_at": "2025-07-31T09:46:54Z",
+ "updated_at": "2025-07-31T10:43:56Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-31T10:33:56Z",
+ "author_url": "https://github.com/Shailee6464",
+ "author_avatar": "https://avatars.githubusercontent.com/u/176797581?v=4"
+ },
+ {
+ "url": "https://github.com/VAIBHAVBABELE/vaibhavbabele.github.io/pull/174",
+ "title": "fix: Enhanced text content and corrected script placement",
+ "repo": "VAIBHAVBABELE/vaibhavbabele.github.io",
+ "level": "level2",
+ "points": 7,
+ "created_at": "2025-07-28T15:34:42Z",
+ "updated_at": "2025-07-29T14:57:21Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-28T16:22:17Z",
+ "author_url": "https://github.com/Shailee6464",
+ "author_avatar": "https://avatars.githubusercontent.com/u/176797581?v=4"
+ },
+ {
+ "url": "https://github.com/VAIBHAVBABELE/vaibhavbabele.github.io/pull/153",
+ "title": "Feature/about us restructure and enhancement across home page",
+ "repo": "VAIBHAVBABELE/vaibhavbabele.github.io",
+ "level": "level2",
+ "points": 7,
+ "created_at": "2025-07-27T15:59:32Z",
+ "updated_at": "2025-07-27T16:43:21Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-27T16:42:58Z",
+ "author_url": "https://github.com/Shailee6464",
+ "author_avatar": "https://avatars.githubusercontent.com/u/176797581?v=4"
+ },
+ {
+ "url": "https://github.com/VAIBHAVBABELE/vaibhavbabele.github.io/pull/132",
+ "title": "Refactor: Improved alt tag for Games card and resource card image",
+ "repo": "VAIBHAVBABELE/vaibhavbabele.github.io",
+ "level": "level2",
+ "points": 7,
+ "created_at": "2025-07-26T18:42:17Z",
+ "updated_at": "2025-07-27T15:47:57Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-27T15:47:37Z",
+ "author_url": "https://github.com/Shailee6464",
+ "author_avatar": "https://avatars.githubusercontent.com/u/176797581?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/176797581?v=4",
+ "profile_url": "https://github.com/Shailee6464"
+ },
+ "Tharunkunamalla": {
+ "expectedPoints": 46,
+ "currentPoints": 46,
+ "levels": {
+ "level1": 1,
+ "level2": 6,
+ "level3": 0
+ },
+ "prs": [
+ {
+ "url": "https://github.com/Abhishek2634/Foodie/pull/31",
+ "title": "Added slider with Arrows and added duplicated images for infinite scrl",
+ "repo": "Abhishek2634/Foodie",
+ "level": "level2",
+ "points": 7,
+ "created_at": "2025-07-22T11:24:11Z",
+ "updated_at": "2025-07-24T07:21:41Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-24T04:32:31Z",
+ "author_url": "https://github.com/Tharunkunamalla",
+ "author_avatar": "https://avatars.githubusercontent.com/u/154426973?v=4"
+ },
+ {
+ "url": "https://github.com/Adarsh-Chaubey03/TravelGrid/pull/186",
+ "title": "Added Slider to the guide",
+ "repo": "Adarsh-Chaubey03/TravelGrid",
+ "level": "level2",
+ "points": 7,
+ "created_at": "2025-07-25T15:31:15Z",
+ "updated_at": "2025-07-26T01:37:38Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-26T01:37:38Z",
+ "author_url": "https://github.com/Tharunkunamalla",
+ "author_avatar": "https://avatars.githubusercontent.com/u/154426973?v=4"
+ },
+ {
+ "url": "https://github.com/NishantRana07/HrRoadways/pull/401",
+ "title": "Resolved the slider prices issue",
+ "repo": "NishantRana07/HrRoadways",
+ "level": "level2",
+ "points": 7,
+ "created_at": "2025-07-27T09:57:02Z",
+ "updated_at": "2025-07-27T21:38:56Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-27T21:38:55Z",
+ "author_url": "https://github.com/Tharunkunamalla",
+ "author_avatar": "https://avatars.githubusercontent.com/u/154426973?v=4"
+ },
+ {
+ "url": "https://github.com/NishantRana07/HrRoadways/pull/353",
+ "title": "Track page issue resolved and added translations for all",
+ "repo": "NishantRana07/HrRoadways",
+ "level": "level2",
+ "points": 7,
+ "created_at": "2025-07-24T12:30:37Z",
+ "updated_at": "2025-07-24T12:36:06Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-24T12:35:51Z",
+ "author_url": "https://github.com/Tharunkunamalla",
+ "author_avatar": "https://avatars.githubusercontent.com/u/154426973?v=4"
+ },
+ {
+ "url": "https://github.com/NishantRana07/HrRoadways/pull/347",
+ "title": "Solved issue and added hook and done some changes in the translation.json",
+ "repo": "NishantRana07/HrRoadways",
+ "level": "level2",
+ "points": 7,
+ "created_at": "2025-07-23T13:21:40Z",
+ "updated_at": "2025-07-24T06:16:08Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-24T06:15:57Z",
+ "author_url": "https://github.com/Tharunkunamalla",
+ "author_avatar": "https://avatars.githubusercontent.com/u/154426973?v=4"
+ },
+ {
+ "url": "https://github.com/NishantRana07/HrRoadways/pull/323",
+ "title": "Feature: Toggle icon will now appear in both English and Hindi",
+ "repo": "NishantRana07/HrRoadways",
+ "level": "level2",
+ "points": 7,
+ "created_at": "2025-07-22T18:22:18Z",
+ "updated_at": "2025-07-23T05:18:11Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-22T20:37:00Z",
+ "author_url": "https://github.com/Tharunkunamalla",
+ "author_avatar": "https://avatars.githubusercontent.com/u/154426973?v=4"
+ },
+ {
+ "url": "https://github.com/openml-stack/SentiLog-AI/pull/45",
+ "title": "Solved the issue of popping effect, animations for icons",
+ "repo": "openml-stack/SentiLog-AI",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-23T19:44:55Z",
+ "updated_at": "2025-07-25T18:56:09Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-25T18:54:45Z",
+ "author_url": "https://github.com/Tharunkunamalla",
+ "author_avatar": "https://avatars.githubusercontent.com/u/154426973?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/154426973?v=4",
+ "profile_url": "https://github.com/Tharunkunamalla"
+ },
+ "GxAditya": {
+ "expectedPoints": 46,
+ "currentPoints": 46,
+ "levels": {
+ "level1": 4,
+ "level2": 0,
+ "level3": 3
+ },
+ "prs": [
+ {
+ "url": "https://github.com/agamjotsingh18/trendhora/pull/21",
+ "title": "Fix Mobile Responsiveness",
+ "repo": "agamjotsingh18/trendhora",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-25T14:43:15Z",
+ "updated_at": "2025-07-27T14:52:43Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-27T01:32:09Z",
+ "author_url": "https://github.com/GxAditya",
+ "author_avatar": "https://avatars.githubusercontent.com/u/177012111?v=4"
+ },
+ {
+ "url": "https://github.com/huamanraj/aitoolbox.software/pull/48",
+ "title": "Fix Responsiveness and Add seo content ",
+ "repo": "huamanraj/aitoolbox.software",
+ "level": "level3",
+ "points": 10,
+ "created_at": "2025-08-01T04:26:02Z",
+ "updated_at": "2025-08-01T16:48:00Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-08-01T16:48:00Z",
+ "author_url": "https://github.com/GxAditya",
+ "author_avatar": "https://avatars.githubusercontent.com/u/177012111?v=4"
+ },
+ {
+ "url": "https://github.com/huamanraj/aitoolbox.software/pull/40",
+ "title": "Update contributors in readme",
+ "repo": "huamanraj/aitoolbox.software",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-29T18:51:17Z",
+ "updated_at": "2025-07-31T08:59:01Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-31T08:59:01Z",
+ "author_url": "https://github.com/GxAditya",
+ "author_avatar": "https://avatars.githubusercontent.com/u/177012111?v=4"
+ },
+ {
+ "url": "https://github.com/huamanraj/aitoolbox.software/pull/26",
+ "title": "Implement AI Text Summarizer Feature",
+ "repo": "huamanraj/aitoolbox.software",
+ "level": "level3",
+ "points": 10,
+ "created_at": "2025-07-26T20:00:58Z",
+ "updated_at": "2025-07-28T09:26:05Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-28T09:26:05Z",
+ "author_url": "https://github.com/GxAditya",
+ "author_avatar": "https://avatars.githubusercontent.com/u/177012111?v=4"
+ },
+ {
+ "url": "https://github.com/Amarjha01/InfantCareCompass/pull/171",
+ "title": "Added demo section",
+ "repo": "Amarjha01/InfantCareCompass",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-08-01T04:34:08Z",
+ "updated_at": "2025-08-03T04:59:54Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-08-01T18:22:07Z",
+ "author_url": "https://github.com/GxAditya",
+ "author_avatar": "https://avatars.githubusercontent.com/u/177012111?v=4"
+ },
+ {
+ "url": "https://github.com/Ayushjhawar8/Flavor-ai/pull/69",
+ "title": " Fix theme across app and UI polish",
+ "repo": "Ayushjhawar8/Flavor-ai",
+ "level": "level3",
+ "points": 10,
+ "created_at": "2025-07-25T21:48:56Z",
+ "updated_at": "2025-07-27T09:30:06Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-27T09:30:05Z",
+ "author_url": "https://github.com/GxAditya",
+ "author_avatar": "https://avatars.githubusercontent.com/u/177012111?v=4"
+ },
+ {
+ "url": "https://github.com/BaraniVA/Habitheat/pull/61",
+ "title": "Fix Mobile Resposiveness",
+ "repo": "BaraniVA/Habitheat",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-24T16:38:35Z",
+ "updated_at": "2025-07-25T17:26:05Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-24T17:10:59Z",
+ "author_url": "https://github.com/GxAditya",
+ "author_avatar": "https://avatars.githubusercontent.com/u/177012111?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/177012111?v=4",
+ "profile_url": "https://github.com/GxAditya"
+ },
+ "SaiSruthisri": {
+ "expectedPoints": 45,
+ "currentPoints": 45,
+ "levels": {
+ "level1": 2,
+ "level2": 1,
+ "level3": 3
+ },
+ "prs": [
+ {
+ "url": "https://github.com/itsAnimation/AnimateItNow/pull/421",
+ "title": "Added display properties card",
+ "repo": "itsAnimation/AnimateItNow",
+ "level": "level3",
+ "points": 10,
+ "created_at": "2025-07-25T16:17:53Z",
+ "updated_at": "2025-07-25T16:26:52Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-25T16:26:52Z",
+ "author_url": "https://github.com/SaiSruthisri",
+ "author_avatar": "https://avatars.githubusercontent.com/u/148372065?v=4"
+ },
+ {
+ "url": "https://github.com/itsAnimation/AnimateItNow/pull/257",
+ "title": "Add navbar variants template",
+ "repo": "itsAnimation/AnimateItNow",
+ "level": "level2",
+ "points": 7,
+ "created_at": "2025-07-23T18:29:20Z",
+ "updated_at": "2025-07-23T20:37:03Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-23T20:37:03Z",
+ "author_url": "https://github.com/SaiSruthisri",
+ "author_avatar": "https://avatars.githubusercontent.com/u/148372065?v=4"
+ },
+ {
+ "url": "https://github.com/InnoWebLabs/Vehigo/pull/151",
+ "title": "Added Enhancements in Login Pages",
+ "repo": "InnoWebLabs/Vehigo",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-27T15:12:28Z",
+ "updated_at": "2025-07-28T05:58:54Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-27T16:51:31Z",
+ "author_url": "https://github.com/SaiSruthisri",
+ "author_avatar": "https://avatars.githubusercontent.com/u/148372065?v=4"
+ },
+ {
+ "url": "https://github.com/saumyayadav25/cpp-dsa-sheet-testing/pull/109",
+ "title": "Send Daily POTD notifications to registered emails.",
+ "repo": "saumyayadav25/cpp-dsa-sheet-testing",
+ "level": "level3",
+ "points": 10,
+ "created_at": "2025-07-31T10:25:15Z",
+ "updated_at": "2025-07-31T11:23:20Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-31T11:23:20Z",
+ "author_url": "https://github.com/SaiSruthisri",
+ "author_avatar": "https://avatars.githubusercontent.com/u/148372065?v=4"
+ },
+ {
+ "url": "https://github.com/saumyayadav25/cpp-dsa-sheet-testing/pull/92",
+ "title": "Input text Visibility fixed ",
+ "repo": "saumyayadav25/cpp-dsa-sheet-testing",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-29T05:22:25Z",
+ "updated_at": "2025-07-29T08:31:29Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-29T08:31:28Z",
+ "author_url": "https://github.com/SaiSruthisri",
+ "author_avatar": "https://avatars.githubusercontent.com/u/148372065?v=4"
+ },
+ {
+ "url": "https://github.com/saumyayadav25/cpp-dsa-sheet-testing/pull/32",
+ "title": "Added NOTES feature",
+ "repo": "saumyayadav25/cpp-dsa-sheet-testing",
+ "level": "level3",
+ "points": 10,
+ "created_at": "2025-07-24T08:37:56Z",
+ "updated_at": "2025-07-24T10:22:20Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-24T10:22:20Z",
+ "author_url": "https://github.com/SaiSruthisri",
+ "author_avatar": "https://avatars.githubusercontent.com/u/148372065?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/148372065?v=4",
+ "profile_url": "https://github.com/SaiSruthisri"
+ },
+ "kunalgupta016": {
+ "expectedPoints": 52,
+ "currentPoints": 45,
+ "levels": {
+ "level1": 1,
+ "level2": 4,
+ "level3": 2
+ },
+ "prs": [
+ {
+ "url": "https://github.com/itsAnimation/AnimateItNow/pull/64",
+ "title": "feat: A new feature",
+ "repo": "itsAnimation/AnimateItNow",
+ "level": "level3",
+ "points": 10,
+ "created_at": "2025-07-22T11:27:05Z",
+ "updated_at": "2025-07-22T13:09:36Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-22T13:09:35Z",
+ "author_url": "https://github.com/kunalgupta016",
+ "author_avatar": "https://avatars.githubusercontent.com/u/140793986?v=4"
+ },
+ {
+ "url": "https://github.com/itsAnimation/AnimateItNow/pull/49",
+ "title": "feat: A new feature",
+ "repo": "itsAnimation/AnimateItNow",
+ "level": "level2",
+ "points": 7,
+ "created_at": "2025-07-22T08:18:56Z",
+ "updated_at": "2025-07-22T11:28:36Z",
+ "state": "closed",
+ "merged": false,
+ "merged_at": null,
+ "author_url": "https://github.com/kunalgupta016",
+ "author_avatar": "https://avatars.githubusercontent.com/u/140793986?v=4"
+ },
+ {
+ "url": "https://github.com/Khushi-Nigam/jobportal/pull/19",
+ "title": "update about Us page",
+ "repo": "Khushi-Nigam/jobportal",
+ "level": "level2",
+ "points": 7,
+ "created_at": "2025-07-23T10:26:18Z",
+ "updated_at": "2025-07-23T18:09:21Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-23T14:13:05Z",
+ "author_url": "https://github.com/kunalgupta016",
+ "author_avatar": "https://avatars.githubusercontent.com/u/140793986?v=4"
+ },
+ {
+ "url": "https://github.com/Khushi-Nigam/jobportal/pull/14",
+ "title": "update contactus page",
+ "repo": "Khushi-Nigam/jobportal",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-23T06:05:29Z",
+ "updated_at": "2025-07-23T18:10:36Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-23T06:19:57Z",
+ "author_url": "https://github.com/kunalgupta016",
+ "author_avatar": "https://avatars.githubusercontent.com/u/140793986?v=4"
+ },
+ {
+ "url": "https://github.com/Kritika75/TheCawnporeMag.github.io/pull/20",
+ "title": "Fix nav link issues across pages; update masthead layout for founder …",
+ "repo": "Kritika75/TheCawnporeMag.github.io",
+ "level": "level3",
+ "points": 10,
+ "created_at": "2025-07-22T09:31:57Z",
+ "updated_at": "2025-07-22T13:49:01Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-22T10:24:17Z",
+ "author_url": "https://github.com/kunalgupta016",
+ "author_avatar": "https://avatars.githubusercontent.com/u/140793986?v=4"
+ },
+ {
+ "url": "https://github.com/ruchikakengal/WebDevIn100_Days/pull/318",
+ "title": "feat: Implement Core Drawing Features and Tools",
+ "repo": "ruchikakengal/WebDevIn100_Days",
+ "level": "level2",
+ "points": 7,
+ "created_at": "2025-07-26T16:05:21Z",
+ "updated_at": "2025-07-28T13:56:42Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-28T13:56:42Z",
+ "author_url": "https://github.com/kunalgupta016",
+ "author_avatar": "https://avatars.githubusercontent.com/u/140793986?v=4"
+ },
+ {
+ "url": "https://github.com/rutikakengal/100DAYS_OF_100WEBPROJECTS/pull/214",
+ "title": "feat: Add Colour Picker ",
+ "repo": "rutikakengal/100DAYS_OF_100WEBPROJECTS",
+ "level": "level2",
+ "points": 7,
+ "created_at": "2025-07-26T13:33:14Z",
+ "updated_at": "2025-07-27T15:25:32Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-27T15:20:45Z",
+ "author_url": "https://github.com/kunalgupta016",
+ "author_avatar": "https://avatars.githubusercontent.com/u/140793986?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/140793986?v=4",
+ "profile_url": "https://github.com/kunalgupta016"
+ },
+ "Shaesh-Kuiper": {
+ "expectedPoints": 45,
+ "currentPoints": 45,
+ "levels": {
+ "level1": 1,
+ "level2": 3,
+ "level3": 2
+ },
+ "prs": [
+ {
+ "url": "https://github.com/Gagandeep-2003/driver-drowsiness-detection-system/pull/22",
+ "title": "Fixed Issues in GUI and Responsiveness of GUI ( fixes issues #21, #18, #17)",
+ "repo": "Gagandeep-2003/driver-drowsiness-detection-system",
+ "level": "level3",
+ "points": 10,
+ "created_at": "2025-07-26T06:35:31Z",
+ "updated_at": "2025-07-27T23:53:37Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-27T23:27:58Z",
+ "author_url": "https://github.com/Shaesh-Kuiper",
+ "author_avatar": "https://avatars.githubusercontent.com/u/193023463?v=4"
+ },
+ {
+ "url": "https://github.com/sampadatiwari30/DeshDarshan/pull/166",
+ "title": "Major_Fix_and_added_navigation_and_Resolve_JS_runtime_errors",
+ "repo": "sampadatiwari30/DeshDarshan",
+ "level": "level2",
+ "points": 7,
+ "created_at": "2025-07-27T07:48:43Z",
+ "updated_at": "2025-07-27T18:51:48Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-27T18:51:30Z",
+ "author_url": "https://github.com/Shaesh-Kuiper",
+ "author_avatar": "https://avatars.githubusercontent.com/u/193023463?v=4"
+ },
+ {
+ "url": "https://github.com/sampadatiwari30/DeshDarshan/pull/96",
+ "title": "Fixed CSS not loading properly after login ( issue #94 )",
+ "repo": "sampadatiwari30/DeshDarshan",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-24T17:12:32Z",
+ "updated_at": "2025-07-25T15:31:55Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-24T19:08:05Z",
+ "author_url": "https://github.com/Shaesh-Kuiper",
+ "author_avatar": "https://avatars.githubusercontent.com/u/193023463?v=4"
+ },
+ {
+ "url": "https://github.com/saumyayadav25/cpp-dsa-sheet-testing/pull/125",
+ "title": "Updated CONTRIBUTING.md with local setup guide",
+ "repo": "saumyayadav25/cpp-dsa-sheet-testing",
+ "level": "level2",
+ "points": 7,
+ "created_at": "2025-08-02T20:44:58Z",
+ "updated_at": "2025-08-03T03:56:41Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-08-03T03:56:41Z",
+ "author_url": "https://github.com/Shaesh-Kuiper",
+ "author_avatar": "https://avatars.githubusercontent.com/u/193023463?v=4"
+ },
+ {
+ "url": "https://github.com/saumyayadav25/cpp-dsa-sheet-testing/pull/108",
+ "title": "Modified Contributors Page [#Issue 101] ",
+ "repo": "saumyayadav25/cpp-dsa-sheet-testing",
+ "level": "level2",
+ "points": 7,
+ "created_at": "2025-07-30T22:18:28Z",
+ "updated_at": "2025-07-31T11:32:37Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-31T11:32:37Z",
+ "author_url": "https://github.com/Shaesh-Kuiper",
+ "author_avatar": "https://avatars.githubusercontent.com/u/193023463?v=4"
+ },
+ {
+ "url": "https://github.com/saumyayadav25/cpp-dsa-sheet-testing/pull/71",
+ "title": "Created Contributors Page [complete] [ fixes issue #54 ] ",
+ "repo": "saumyayadav25/cpp-dsa-sheet-testing",
+ "level": "level3",
+ "points": 10,
+ "created_at": "2025-07-27T00:01:15Z",
+ "updated_at": "2025-07-27T05:58:43Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-27T05:55:44Z",
+ "author_url": "https://github.com/Shaesh-Kuiper",
+ "author_avatar": "https://avatars.githubusercontent.com/u/193023463?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/193023463?v=4",
+ "profile_url": "https://github.com/Shaesh-Kuiper"
+ },
+ "nayan9617": {
+ "expectedPoints": 44,
+ "currentPoints": 44,
+ "levels": {
+ "level1": 1,
+ "level2": 0,
+ "level3": 4
+ },
+ "prs": [
+ {
+ "url": "https://github.com/Amarjha01/InfantCareCompass/pull/73",
+ "title": "Added Learning Hub page with dynamic content and backend integration",
+ "repo": "Amarjha01/InfantCareCompass",
+ "level": "level3",
+ "points": 10,
+ "created_at": "2025-07-24T00:30:33Z",
+ "updated_at": "2025-07-25T19:36:14Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-24T04:20:39Z",
+ "author_url": "https://github.com/nayan9617",
+ "author_avatar": "https://avatars.githubusercontent.com/u/184171760?v=4"
+ },
+ {
+ "url": "https://github.com/coderashhar/PG-genie/pull/15",
+ "title": "Add Cloudinary Integration with Multer for PG Image Upload and Update. Solved issue#8",
+ "repo": "coderashhar/PG-genie",
+ "level": "level3",
+ "points": 10,
+ "created_at": "2025-07-22T13:03:37Z",
+ "updated_at": "2025-07-22T17:29:28Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-22T17:29:28Z",
+ "author_url": "https://github.com/nayan9617",
+ "author_avatar": "https://avatars.githubusercontent.com/u/184171760?v=4"
+ },
+ {
+ "url": "https://github.com/Bavanetha27/Refixly/pull/7",
+ "title": "feat(auth): add Google signup option using Firebase signInWithPopup | solves issue#2",
+ "repo": "Bavanetha27/Refixly",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-22T16:43:57Z",
+ "updated_at": "2025-08-01T10:47:04Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-23T14:48:14Z",
+ "author_url": "https://github.com/nayan9617",
+ "author_avatar": "https://avatars.githubusercontent.com/u/184171760?v=4"
+ },
+ {
+ "url": "https://github.com/Gnanaashritha/Blogging-Platform-/pull/41",
+ "title": "feat: integrate Cloudinary for future image uploads",
+ "repo": "Gnanaashritha/Blogging-Platform-",
+ "level": "level3",
+ "points": 10,
+ "created_at": "2025-07-27T20:35:17Z",
+ "updated_at": "2025-08-01T18:53:37Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-08-01T18:53:37Z",
+ "author_url": "https://github.com/nayan9617",
+ "author_avatar": "https://avatars.githubusercontent.com/u/184171760?v=4"
+ },
+ {
+ "url": "https://github.com/Gnanaashritha/Blogging-Platform-/pull/39",
+ "title": "fix: add proper error handling for JWT token validation",
+ "repo": "Gnanaashritha/Blogging-Platform-",
+ "level": "level3",
+ "points": 10,
+ "created_at": "2025-07-27T20:10:21Z",
+ "updated_at": "2025-07-28T18:40:17Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-28T18:40:17Z",
+ "author_url": "https://github.com/nayan9617",
+ "author_avatar": "https://avatars.githubusercontent.com/u/184171760?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/184171760?v=4",
+ "profile_url": "https://github.com/nayan9617"
+ },
+ "Jyoti520": {
+ "expectedPoints": 43,
+ "currentPoints": 43,
+ "levels": {
+ "level1": 2,
+ "level2": 5,
+ "level3": 0
+ },
+ "prs": [
+ {
+ "url": "https://github.com/Adarsh-Chaubey03/TravelGrid/pull/427",
+ "title": "Refactor: Regroup Navbar Items and Improve Mobile UI.",
+ "repo": "Adarsh-Chaubey03/TravelGrid",
+ "level": "level2",
+ "points": 7,
+ "created_at": "2025-08-01T09:33:19Z",
+ "updated_at": "2025-08-01T10:48:13Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-08-01T10:48:04Z",
+ "author_url": "https://github.com/Jyoti520",
+ "author_avatar": "https://avatars.githubusercontent.com/u/159076089?v=4"
+ },
+ {
+ "url": "https://github.com/Adarsh-Chaubey03/TravelGrid/pull/351",
+ "title": "Refactor Trips Page: Responsive Layout, Improved Styling & Optimized Code.",
+ "repo": "Adarsh-Chaubey03/TravelGrid",
+ "level": "level2",
+ "points": 7,
+ "created_at": "2025-07-30T01:46:06Z",
+ "updated_at": "2025-07-30T04:28:17Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-30T04:27:56Z",
+ "author_url": "https://github.com/Jyoti520",
+ "author_avatar": "https://avatars.githubusercontent.com/u/159076089?v=4"
+ },
+ {
+ "url": "https://github.com/Adarsh-Chaubey03/TravelGrid/pull/314",
+ "title": "Docs: Add Styling Consistency section in Learn.md.",
+ "repo": "Adarsh-Chaubey03/TravelGrid",
+ "level": "level2",
+ "points": 7,
+ "created_at": "2025-07-29T02:24:37Z",
+ "updated_at": "2025-07-29T10:54:27Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-29T10:54:16Z",
+ "author_url": "https://github.com/Jyoti520",
+ "author_avatar": "https://avatars.githubusercontent.com/u/159076089?v=4"
+ },
+ {
+ "url": "https://github.com/Adarsh-Chaubey03/TravelGrid/pull/262",
+ "title": "Improve Guides Page Layout and Button Style",
+ "repo": "Adarsh-Chaubey03/TravelGrid",
+ "level": "level2",
+ "points": 7,
+ "created_at": "2025-07-28T00:50:03Z",
+ "updated_at": "2025-07-28T10:09:37Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-28T10:09:10Z",
+ "author_url": "https://github.com/Jyoti520",
+ "author_avatar": "https://avatars.githubusercontent.com/u/159076089?v=4"
+ },
+ {
+ "url": "https://github.com/Adarsh-Chaubey03/TravelGrid/pull/217",
+ "title": "Enhance: Scroll to Top Button UI with hover, visibility, and color changes.",
+ "repo": "Adarsh-Chaubey03/TravelGrid",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-27T01:36:49Z",
+ "updated_at": "2025-07-27T05:44:21Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-27T05:44:09Z",
+ "author_url": "https://github.com/Jyoti520",
+ "author_avatar": "https://avatars.githubusercontent.com/u/159076089?v=4"
+ },
+ {
+ "url": "https://github.com/Adarsh-Chaubey03/TravelGrid/pull/170",
+ "title": "Enhance: Contact Page Background and Font Weight",
+ "repo": "Adarsh-Chaubey03/TravelGrid",
+ "level": "level2",
+ "points": 7,
+ "created_at": "2025-07-25T08:11:56Z",
+ "updated_at": "2025-07-26T01:34:24Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-26T01:34:24Z",
+ "author_url": "https://github.com/Jyoti520",
+ "author_avatar": "https://avatars.githubusercontent.com/u/159076089?v=4"
+ },
+ {
+ "url": "https://github.com/Adarsh-Chaubey03/TravelGrid/pull/116",
+ "title": "Fix: removed extra white space",
+ "repo": "Adarsh-Chaubey03/TravelGrid",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-23T13:15:35Z",
+ "updated_at": "2025-07-24T03:49:05Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-24T03:48:53Z",
+ "author_url": "https://github.com/Jyoti520",
+ "author_avatar": "https://avatars.githubusercontent.com/u/159076089?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/159076089?v=4",
+ "profile_url": "https://github.com/Jyoti520"
+ },
+ "Bhoomi-18": {
+ "expectedPoints": 43,
+ "currentPoints": 43,
+ "levels": {
+ "level1": 4,
+ "level2": 1,
+ "level3": 2
+ },
+ "prs": [
+ {
+ "url": "https://github.com/Adarsh-Chaubey03/TravelGrid/pull/383",
+ "title": "All pages linked",
+ "repo": "Adarsh-Chaubey03/TravelGrid",
+ "level": "level2",
+ "points": 7,
+ "created_at": "2025-07-31T06:35:16Z",
+ "updated_at": "2025-07-31T09:42:58Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-31T09:42:39Z",
+ "author_url": "https://github.com/Bhoomi-18",
+ "author_avatar": "https://avatars.githubusercontent.com/u/170606583?v=4"
+ },
+ {
+ "url": "https://github.com/efshaperveen/MindJournal/pull/65",
+ "title": "done feature enhancements",
+ "repo": "efshaperveen/MindJournal",
+ "level": "level3",
+ "points": 10,
+ "created_at": "2025-07-29T12:16:10Z",
+ "updated_at": "2025-07-29T17:22:33Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-29T17:22:33Z",
+ "author_url": "https://github.com/Bhoomi-18",
+ "author_avatar": "https://avatars.githubusercontent.com/u/170606583?v=4"
+ },
+ {
+ "url": "https://github.com/Mujtabaa07/coffeeShop/pull/498",
+ "title": "added menu page",
+ "repo": "Mujtabaa07/coffeeShop",
+ "level": null,
+ "points": 0,
+ "created_at": "2025-07-31T17:27:19Z",
+ "updated_at": "2025-08-02T19:12:32Z",
+ "state": "open",
+ "merged": false,
+ "merged_at": null,
+ "author_url": "https://github.com/Bhoomi-18",
+ "author_avatar": "https://avatars.githubusercontent.com/u/170606583?v=4"
+ },
+ {
+ "url": "https://github.com/pavitraag/Project-Vault/pull/236",
+ "title": "add project form",
+ "repo": "pavitraag/Project-Vault",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-31T12:23:22Z",
+ "updated_at": "2025-08-02T09:08:34Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-08-02T09:08:22Z",
+ "author_url": "https://github.com/Bhoomi-18",
+ "author_avatar": "https://avatars.githubusercontent.com/u/170606583?v=4"
+ },
+ {
+ "url": "https://github.com/pavitraag/Project-Vault/pull/181",
+ "title": "Tech stack search",
+ "repo": "pavitraag/Project-Vault",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-29T10:27:10Z",
+ "updated_at": "2025-07-29T18:50:09Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-29T17:15:03Z",
+ "author_url": "https://github.com/Bhoomi-18",
+ "author_avatar": "https://avatars.githubusercontent.com/u/170606583?v=4"
+ },
+ {
+ "url": "https://github.com/pavitraag/Project-Vault/pull/178",
+ "title": "Discussion forum",
+ "repo": "pavitraag/Project-Vault",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-29T09:19:43Z",
+ "updated_at": "2025-07-29T18:48:18Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-29T17:19:14Z",
+ "author_url": "https://github.com/Bhoomi-18",
+ "author_avatar": "https://avatars.githubusercontent.com/u/170606583?v=4"
+ },
+ {
+ "url": "https://github.com/pavitraag/Project-Vault/pull/113",
+ "title": "[Feature Add] Added github links to projects",
+ "repo": "pavitraag/Project-Vault",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-26T15:45:58Z",
+ "updated_at": "2025-07-29T18:39:50Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-28T19:09:52Z",
+ "author_url": "https://github.com/Bhoomi-18",
+ "author_avatar": "https://avatars.githubusercontent.com/u/170606583?v=4"
+ },
+ {
+ "url": "https://github.com/SurajSG23/PrepBuddy/pull/48",
+ "title": "account delete option",
+ "repo": "SurajSG23/PrepBuddy",
+ "level": "level3",
+ "points": 10,
+ "created_at": "2025-07-27T14:41:37Z",
+ "updated_at": "2025-07-27T15:44:19Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-27T15:43:39Z",
+ "author_url": "https://github.com/Bhoomi-18",
+ "author_avatar": "https://avatars.githubusercontent.com/u/170606583?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/170606583?v=4",
+ "profile_url": "https://github.com/Bhoomi-18"
+ },
+ "sakshigupta67": {
+ "expectedPoints": 41,
+ "currentPoints": 41,
+ "levels": {
+ "level1": 0,
+ "level2": 3,
+ "level3": 2
+ },
+ "prs": [
+ {
+ "url": "https://github.com/Adarsh-Chaubey03/TravelGrid/pull/467",
+ "title": "Changed the background of Contact page",
+ "repo": "Adarsh-Chaubey03/TravelGrid",
+ "level": "level2",
+ "points": 7,
+ "created_at": "2025-08-02T09:44:18Z",
+ "updated_at": "2025-08-02T10:07:18Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-08-02T10:07:18Z",
+ "author_url": "https://github.com/sakshigupta67",
+ "author_avatar": "https://avatars.githubusercontent.com/u/181766362?v=4"
+ },
+ {
+ "url": "https://github.com/Adarsh-Chaubey03/TravelGrid/pull/389",
+ "title": "enhanced the landing page",
+ "repo": "Adarsh-Chaubey03/TravelGrid",
+ "level": "level3",
+ "points": 10,
+ "created_at": "2025-07-31T11:02:09Z",
+ "updated_at": "2025-07-31T11:04:03Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-31T11:03:11Z",
+ "author_url": "https://github.com/sakshigupta67",
+ "author_avatar": "https://avatars.githubusercontent.com/u/181766362?v=4"
+ },
+ {
+ "url": "https://github.com/Adarsh-Chaubey03/TravelGrid/pull/385",
+ "title": "Update Hotels.jsx",
+ "repo": "Adarsh-Chaubey03/TravelGrid",
+ "level": "level2",
+ "points": 7,
+ "created_at": "2025-07-31T10:21:33Z",
+ "updated_at": "2025-07-31T15:48:06Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-31T10:22:32Z",
+ "author_url": "https://github.com/sakshigupta67",
+ "author_avatar": "https://avatars.githubusercontent.com/u/181766362?v=4"
+ },
+ {
+ "url": "https://github.com/Adarsh-Chaubey03/TravelGrid/pull/196",
+ "title": "Resolved Build logs and all file error to ensure preview.",
+ "repo": "Adarsh-Chaubey03/TravelGrid",
+ "level": "level3",
+ "points": 10,
+ "created_at": "2025-07-26T04:32:40Z",
+ "updated_at": "2025-07-26T04:33:55Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-26T04:33:55Z",
+ "author_url": "https://github.com/sakshigupta67",
+ "author_avatar": "https://avatars.githubusercontent.com/u/181766362?v=4"
+ },
+ {
+ "url": "https://github.com/Adarsh-Chaubey03/TravelGrid/pull/85",
+ "title": "added FAQ",
+ "repo": "Adarsh-Chaubey03/TravelGrid",
+ "level": "level2",
+ "points": 7,
+ "created_at": "2025-07-22T15:21:58Z",
+ "updated_at": "2025-07-22T15:23:45Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-22T15:23:45Z",
+ "author_url": "https://github.com/sakshigupta67",
+ "author_avatar": "https://avatars.githubusercontent.com/u/181766362?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/181766362?v=4",
+ "profile_url": "https://github.com/sakshigupta67"
+ },
+ "BChaitanyaReddy895": {
+ "expectedPoints": 41,
+ "currentPoints": 41,
+ "levels": {
+ "level1": 1,
+ "level2": 1,
+ "level3": 3
+ },
+ "prs": [
+ {
+ "url": "https://github.com/MAVERICK-VF142/Drx.MediMate/pull/33",
+ "title": "Fixes the issue #27 which is of Improve Gemini response formatting for readability",
+ "repo": "MAVERICK-VF142/Drx.MediMate",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-22T14:43:22Z",
+ "updated_at": "2025-07-22T16:26:35Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-22T16:00:52Z",
+ "author_url": "https://github.com/BChaitanyaReddy895",
+ "author_avatar": "https://avatars.githubusercontent.com/u/158465498?v=4"
+ },
+ {
+ "url": "https://github.com/Ayushjhawar8/Flavor-ai/pull/32",
+ "title": "fixes the issue #1, backend integration with the AI Recipe Save, UI Improvements in frontend",
+ "repo": "Ayushjhawar8/Flavor-ai",
+ "level": "level3",
+ "points": 10,
+ "created_at": "2025-07-24T08:23:50Z",
+ "updated_at": "2025-07-26T11:38:29Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-26T10:52:51Z",
+ "author_url": "https://github.com/BChaitanyaReddy895",
+ "author_avatar": "https://avatars.githubusercontent.com/u/158465498?v=4"
+ },
+ {
+ "url": "https://github.com/GauravKarakoti/Weather-API/pull/171",
+ "title": "Update .env.example for complete closing of the issues #149 and #159",
+ "repo": "GauravKarakoti/Weather-API",
+ "level": "level3",
+ "points": 10,
+ "created_at": "2025-07-23T08:28:38Z",
+ "updated_at": "2025-07-25T11:02:28Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-25T10:44:58Z",
+ "author_url": "https://github.com/BChaitanyaReddy895",
+ "author_avatar": "https://avatars.githubusercontent.com/u/158465498?v=4"
+ },
+ {
+ "url": "https://github.com/GauravKarakoti/Weather-API/pull/170",
+ "title": "Fixes issues #159 and #149 , Add dependency caching, multi-OS testing, and uptime monitoring workflows and admin alerts not implemented",
+ "repo": "GauravKarakoti/Weather-API",
+ "level": "level3",
+ "points": 10,
+ "created_at": "2025-07-23T07:45:45Z",
+ "updated_at": "2025-07-25T11:05:38Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-25T10:41:43Z",
+ "author_url": "https://github.com/BChaitanyaReddy895",
+ "author_avatar": "https://avatars.githubusercontent.com/u/158465498?v=4"
+ },
+ {
+ "url": "https://github.com/SGCODEX/Music-Recommendation-Using-Facial-Expressions/pull/40",
+ "title": "Fixes the issue number #7 Robust Error Handling",
+ "repo": "SGCODEX/Music-Recommendation-Using-Facial-Expressions",
+ "level": "level2",
+ "points": 7,
+ "created_at": "2025-07-22T07:58:23Z",
+ "updated_at": "2025-07-31T06:31:54Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-23T14:46:11Z",
+ "author_url": "https://github.com/BChaitanyaReddy895",
+ "author_avatar": "https://avatars.githubusercontent.com/u/158465498?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/158465498?v=4",
+ "profile_url": "https://github.com/BChaitanyaReddy895"
+ },
+ "PearlGrell": {
+ "expectedPoints": 40,
+ "currentPoints": 40,
+ "levels": {
+ "level1": 4,
+ "level2": 2,
+ "level3": 1
+ },
+ "prs": [
+ {
+ "url": "https://github.com/Prateek9876/NagarVikas/pull/162",
+ "title": "Refactor and enhance various screens and services",
+ "repo": "Prateek9876/NagarVikas",
+ "level": "level2",
+ "points": 7,
+ "created_at": "2025-07-27T14:24:00Z",
+ "updated_at": "2025-07-28T01:59:07Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-27T15:59:51Z",
+ "author_url": "https://github.com/PearlGrell",
+ "author_avatar": "https://avatars.githubusercontent.com/u/185500672?v=4"
+ },
+ {
+ "url": "https://github.com/may-tas/TextEditingApp/pull/46",
+ "title": "Add text selection functionality and enhance state management in CanvasCubit",
+ "repo": "may-tas/TextEditingApp",
+ "level": "level3",
+ "points": 10,
+ "created_at": "2025-07-30T12:56:12Z",
+ "updated_at": "2025-07-30T13:24:10Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-30T13:10:15Z",
+ "author_url": "https://github.com/PearlGrell",
+ "author_avatar": "https://avatars.githubusercontent.com/u/185500672?v=4"
+ },
+ {
+ "url": "https://github.com/may-tas/TextEditingApp/pull/42",
+ "title": "[ENHANCEMENT] Improve Text Movement",
+ "repo": "may-tas/TextEditingApp",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-29T15:08:34Z",
+ "updated_at": "2025-07-30T09:20:39Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-30T09:20:39Z",
+ "author_url": "https://github.com/PearlGrell",
+ "author_avatar": "https://avatars.githubusercontent.com/u/185500672?v=4"
+ },
+ {
+ "url": "https://github.com/may-tas/TextEditingApp/pull/36",
+ "title": "Refactor: Improve text editing validation and structure in EditTextDialog",
+ "repo": "may-tas/TextEditingApp",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-27T21:18:18Z",
+ "updated_at": "2025-07-28T08:46:13Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-28T08:46:13Z",
+ "author_url": "https://github.com/PearlGrell",
+ "author_avatar": "https://avatars.githubusercontent.com/u/185500672?v=4"
+ },
+ {
+ "url": "https://github.com/may-tas/TextEditingApp/pull/30",
+ "title": "Refactor: Enhance font size adjustment with a dialog and slider for better UX",
+ "repo": "may-tas/TextEditingApp",
+ "level": "level2",
+ "points": 7,
+ "created_at": "2025-07-27T06:27:38Z",
+ "updated_at": "2025-07-29T14:56:33Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-27T20:09:09Z",
+ "author_url": "https://github.com/PearlGrell",
+ "author_avatar": "https://avatars.githubusercontent.com/u/185500672?v=4"
+ },
+ {
+ "url": "https://github.com/may-tas/TextEditingApp/pull/26",
+ "title": "Refactor: Update color opacity to use `withAlpha`, replacing deprecated `withOpacity`. Added mounted checks between async gaps.",
+ "repo": "may-tas/TextEditingApp",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-26T18:00:58Z",
+ "updated_at": "2025-07-29T14:56:34Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-26T18:19:16Z",
+ "author_url": "https://github.com/PearlGrell",
+ "author_avatar": "https://avatars.githubusercontent.com/u/185500672?v=4"
+ },
+ {
+ "url": "https://github.com/may-tas/TextEditingApp/pull/25",
+ "title": "Refractor: Migrated the `FontControls` from Stack and Position to `bottomNavigationBar` and `extendedBody`",
+ "repo": "may-tas/TextEditingApp",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-26T17:12:37Z",
+ "updated_at": "2025-07-26T17:32:27Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-26T17:30:01Z",
+ "author_url": "https://github.com/PearlGrell",
+ "author_avatar": "https://avatars.githubusercontent.com/u/185500672?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/185500672?v=4",
+ "profile_url": "https://github.com/PearlGrell"
+ },
+ "shravanramakunja": {
+ "expectedPoints": 39,
+ "currentPoints": 39,
+ "levels": {
+ "level1": 2,
+ "level2": 3,
+ "level3": 1
+ },
+ "prs": [
+ {
+ "url": "https://github.com/itsAnimation/AnimateItNow/pull/736",
+ "title": "changes done #732",
+ "repo": "itsAnimation/AnimateItNow",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-08-01T13:47:43Z",
+ "updated_at": "2025-08-02T11:00:34Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-08-02T11:00:34Z",
+ "author_url": "https://github.com/shravanramakunja",
+ "author_avatar": "https://avatars.githubusercontent.com/u/180570714?v=4"
+ },
+ {
+ "url": "https://github.com/itsAnimation/AnimateItNow/pull/720",
+ "title": " Toggle switch added #716",
+ "repo": "itsAnimation/AnimateItNow",
+ "level": "level2",
+ "points": 7,
+ "created_at": "2025-07-31T19:09:55Z",
+ "updated_at": "2025-08-01T05:43:43Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-08-01T05:43:43Z",
+ "author_url": "https://github.com/shravanramakunja",
+ "author_avatar": "https://avatars.githubusercontent.com/u/180570714?v=4"
+ },
+ {
+ "url": "https://github.com/itsAnimation/AnimateItNow/pull/632",
+ "title": "dark theme added #629",
+ "repo": "itsAnimation/AnimateItNow",
+ "level": "level2",
+ "points": 7,
+ "created_at": "2025-07-29T05:56:22Z",
+ "updated_at": "2025-07-30T20:09:27Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-30T20:09:27Z",
+ "author_url": "https://github.com/shravanramakunja",
+ "author_avatar": "https://avatars.githubusercontent.com/u/180570714?v=4"
+ },
+ {
+ "url": "https://github.com/itsAnimation/AnimateItNow/pull/613",
+ "title": "Bug fixed (#606)",
+ "repo": "itsAnimation/AnimateItNow",
+ "level": "level2",
+ "points": 7,
+ "created_at": "2025-07-28T17:37:10Z",
+ "updated_at": "2025-07-29T04:01:47Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-28T19:12:14Z",
+ "author_url": "https://github.com/shravanramakunja",
+ "author_avatar": "https://avatars.githubusercontent.com/u/180570714?v=4"
+ },
+ {
+ "url": "https://github.com/UTSAVS26/PyVerse/pull/1522",
+ "title": "Watch Dog Added #1513",
+ "repo": "UTSAVS26/PyVerse",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-29T09:23:43Z",
+ "updated_at": "2025-08-02T07:49:40Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-08-02T07:49:39Z",
+ "author_url": "https://github.com/shravanramakunja",
+ "author_avatar": "https://avatars.githubusercontent.com/u/180570714?v=4"
+ },
+ {
+ "url": "https://github.com/UTSAVS26/PyVerse/pull/1499",
+ "title": "Added DEV.to Auto-Poster script [#1493]",
+ "repo": "UTSAVS26/PyVerse",
+ "level": "level3",
+ "points": 10,
+ "created_at": "2025-07-27T10:48:45Z",
+ "updated_at": "2025-07-28T09:20:24Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-28T08:25:31Z",
+ "author_url": "https://github.com/shravanramakunja",
+ "author_avatar": "https://avatars.githubusercontent.com/u/180570714?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/180570714?v=4",
+ "profile_url": "https://github.com/shravanramakunja"
+ },
+ "amshula-05": {
+ "expectedPoints": 49,
+ "currentPoints": 39,
+ "levels": {
+ "level1": 2,
+ "level2": 3,
+ "level3": 2
+ },
+ "prs": [
+ {
+ "url": "https://github.com/Ayushjhawar8/Flavor-ai/pull/39",
+ "title": "fix: remove random numbers from recipe instructions on all pages",
+ "repo": "Ayushjhawar8/Flavor-ai",
+ "level": "level2",
+ "points": 7,
+ "created_at": "2025-07-24T12:27:46Z",
+ "updated_at": "2025-07-24T12:52:46Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-24T12:52:45Z",
+ "author_url": "https://github.com/amshula-05",
+ "author_avatar": "https://avatars.githubusercontent.com/u/180916914?v=4"
+ },
+ {
+ "url": "https://github.com/GitMetricsLab/github_tracker/pull/125",
+ "title": "Add comprehensive Jasmine backend test suite: User model, auth routes,Passport integration.",
+ "repo": "mehul-m-prajapati/github_tracker",
+ "level": "level2",
+ "points": 7,
+ "created_at": "2025-07-25T09:58:28Z",
+ "updated_at": "2025-07-25T10:17:06Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-25T10:17:06Z",
+ "author_url": "https://github.com/amshula-05",
+ "author_avatar": "https://avatars.githubusercontent.com/u/180916914?v=4"
+ },
+ {
+ "url": "https://github.com/Rajkumarbhakta/Canvas/pull/17",
+ "title": "feat: Replace preferences with SQLite database for drawing storage ( closes #3) ",
+ "repo": "Rajkumarbhakta/Canvas",
+ "level": "level3",
+ "points": 10,
+ "created_at": "2025-07-29T15:50:34Z",
+ "updated_at": "2025-07-31T11:53:25Z",
+ "state": "open",
+ "merged": false,
+ "merged_at": null,
+ "author_url": "https://github.com/amshula-05",
+ "author_avatar": "https://avatars.githubusercontent.com/u/180916914?v=4"
+ },
+ {
+ "url": "https://github.com/0xsambit/winix/pull/44",
+ "title": "feat: Add comprehensive async/await and Stream support with new commands ( closes #11 )",
+ "repo": "0xsambit/winix",
+ "level": "level3",
+ "points": 10,
+ "created_at": "2025-07-27T17:53:45Z",
+ "updated_at": "2025-07-27T19:40:42Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-27T19:35:14Z",
+ "author_url": "https://github.com/amshula-05",
+ "author_avatar": "https://avatars.githubusercontent.com/u/180916914?v=4"
+ },
+ {
+ "url": "https://github.com/0xsambit/winix/pull/15",
+ "title": "docs: add Windows Internals Learning Doc with Rust FFI examples and best practices ( closes #1 )",
+ "repo": "0xsambit/winix",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-24T07:21:29Z",
+ "updated_at": "2025-07-24T07:53:59Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-24T07:53:59Z",
+ "author_url": "https://github.com/amshula-05",
+ "author_avatar": "https://avatars.githubusercontent.com/u/180916914?v=4"
+ },
+ {
+ "url": "https://github.com/0xsambit/winix/pull/14",
+ "title": "feat(process): add safe Windows CreateProcessW abstraction (Linked to #2)",
+ "repo": "0xsambit/winix",
+ "level": "level2",
+ "points": 7,
+ "created_at": "2025-07-24T06:12:58Z",
+ "updated_at": "2025-07-24T07:16:49Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-24T07:15:38Z",
+ "author_url": "https://github.com/amshula-05",
+ "author_avatar": "https://avatars.githubusercontent.com/u/180916914?v=4"
+ },
+ {
+ "url": "https://github.com/VJLIVE/Athletix/pull/27",
+ "title": "fix: improve error handling for login/signup with user-friendly dialogs",
+ "repo": "vjlive/athletix",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-23T13:17:09Z",
+ "updated_at": "2025-07-23T13:53:44Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-23T13:53:44Z",
+ "author_url": "https://github.com/amshula-05",
+ "author_avatar": "https://avatars.githubusercontent.com/u/180916914?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/180916914?v=4",
+ "profile_url": "https://github.com/amshula-05"
+ },
+ "mona-raj": {
+ "expectedPoints": 39,
+ "currentPoints": 39,
+ "levels": {
+ "level1": 1,
+ "level2": 5,
+ "level3": 0
+ },
+ "prs": [
+ {
+ "url": "https://github.com/NishantRana07/HrRoadways/pull/404",
+ "title": "Fix Footer Links for Contact and Payment Options with Valid Data Source",
+ "repo": "NishantRana07/HrRoadways",
+ "level": "level2",
+ "points": 7,
+ "created_at": "2025-07-27T12:14:02Z",
+ "updated_at": "2025-07-27T21:39:49Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-27T21:39:37Z",
+ "author_url": "https://github.com/mona-raj",
+ "author_avatar": "https://avatars.githubusercontent.com/u/180696987?v=4"
+ },
+ {
+ "url": "https://github.com/NishantRana07/HrRoadways/pull/372",
+ "title": "Implement functional Affiliate Program page",
+ "repo": "NishantRana07/HrRoadways",
+ "level": "level2",
+ "points": 7,
+ "created_at": "2025-07-25T15:32:30Z",
+ "updated_at": "2025-07-27T21:23:18Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-27T21:23:18Z",
+ "author_url": "https://github.com/mona-raj",
+ "author_avatar": "https://avatars.githubusercontent.com/u/180696987?v=4"
+ },
+ {
+ "url": "https://github.com/NishantRana07/HrRoadways/pull/360",
+ "title": "Make Reviews Page Functional with New Data Source and Sample Reviews",
+ "repo": "NishantRana07/HrRoadways",
+ "level": "level2",
+ "points": 7,
+ "created_at": "2025-07-24T15:21:44Z",
+ "updated_at": "2025-07-25T04:57:36Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-25T04:54:32Z",
+ "author_url": "https://github.com/mona-raj",
+ "author_avatar": "https://avatars.githubusercontent.com/u/180696987?v=4"
+ },
+ {
+ "url": "https://github.com/NishantRana07/HrRoadways/pull/349",
+ "title": "Make /luxury Route Responsive for Mobile & Tablet Users",
+ "repo": "NishantRana07/HrRoadways",
+ "level": "level2",
+ "points": 7,
+ "created_at": "2025-07-23T20:47:50Z",
+ "updated_at": "2025-07-24T12:44:18Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-24T05:31:50Z",
+ "author_url": "https://github.com/mona-raj",
+ "author_avatar": "https://avatars.githubusercontent.com/u/180696987?v=4"
+ },
+ {
+ "url": "https://github.com/NishantRana07/HrRoadways/pull/292",
+ "title": "Fix: Move sidebar below header such that toggle button works",
+ "repo": "NishantRana07/HrRoadways",
+ "level": "level2",
+ "points": 7,
+ "created_at": "2025-07-22T10:40:06Z",
+ "updated_at": "2025-07-22T18:40:42Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-22T11:34:47Z",
+ "author_url": "https://github.com/mona-raj",
+ "author_avatar": "https://avatars.githubusercontent.com/u/180696987?v=4"
+ },
+ {
+ "url": "https://github.com/souvikpramanikgit/LearnHub/pull/43",
+ "title": "Add navbar to Analytics page",
+ "repo": "souvikpramanikgit/LearnHub",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-22T20:03:57Z",
+ "updated_at": "2025-07-22T20:10:55Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-22T20:10:43Z",
+ "author_url": "https://github.com/mona-raj",
+ "author_avatar": "https://avatars.githubusercontent.com/u/180696987?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/180696987?v=4",
+ "profile_url": "https://github.com/mona-raj"
+ },
+ "Vasita27": {
+ "expectedPoints": 38,
+ "currentPoints": 38,
+ "levels": {
+ "level1": 0,
+ "level2": 4,
+ "level3": 1
+ },
+ "prs": [
+ {
+ "url": "https://github.com/Adarsh-Chaubey03/TravelGrid/pull/29",
+ "title": " feat (add) : Develop a travel guide page",
+ "repo": "Adarsh-Chaubey03/TravelGrid",
+ "level": "level2",
+ "points": 7,
+ "created_at": "2025-07-21T19:40:16Z",
+ "updated_at": "2025-07-21T20:24:14Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-21T20:23:10Z",
+ "author_url": "https://github.com/Vasita27",
+ "author_avatar": "https://avatars.githubusercontent.com/u/147323404?v=4"
+ },
+ {
+ "url": "https://github.com/InnoWebLabs/Vehigo/pull/50",
+ "title": "feat (backend) : Implement auth in backend and connect to frontend",
+ "repo": "InnoWebLabs/Vehigo",
+ "level": "level2",
+ "points": 7,
+ "created_at": "2025-07-24T14:39:09Z",
+ "updated_at": "2025-07-25T20:24:42Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-24T17:46:46Z",
+ "author_url": "https://github.com/Vasita27",
+ "author_avatar": "https://avatars.githubusercontent.com/u/147323404?v=4"
+ },
+ {
+ "url": "https://github.com/Code-A2Z/code-a2z/pull/1168",
+ "title": "Add resume-analyzer as a submodule in projects/data-science/nlp-apps/…",
+ "repo": "Code-A2Z/code-a2z",
+ "level": "level3",
+ "points": 10,
+ "created_at": "2025-07-29T10:21:20Z",
+ "updated_at": "2025-07-30T05:55:42Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-30T05:54:45Z",
+ "author_url": "https://github.com/Vasita27",
+ "author_avatar": "https://avatars.githubusercontent.com/u/147323404?v=4"
+ },
+ {
+ "url": "https://github.com/Code-A2Z/code-a2z/pull/1165",
+ "title": "Add text-extraction-ocr as submodule in backend folder",
+ "repo": "Code-A2Z/code-a2z",
+ "level": "level2",
+ "points": 7,
+ "created_at": "2025-07-27T14:17:28Z",
+ "updated_at": "2025-07-27T14:21:24Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-27T14:20:46Z",
+ "author_url": "https://github.com/Vasita27",
+ "author_avatar": "https://avatars.githubusercontent.com/u/147323404?v=4"
+ },
+ {
+ "url": "https://github.com/openml-stack/SentiLog-AI/pull/51",
+ "title": " feat (Add-on) : Use toggle switch instead of a button for dark-light mode",
+ "repo": "openml-stack/SentiLog-AI",
+ "level": "level2",
+ "points": 7,
+ "created_at": "2025-07-24T17:18:57Z",
+ "updated_at": "2025-07-26T08:19:12Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-26T06:34:28Z",
+ "author_url": "https://github.com/Vasita27",
+ "author_avatar": "https://avatars.githubusercontent.com/u/147323404?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/147323404?v=4",
+ "profile_url": "https://github.com/Vasita27"
+ },
+ "GOBINDA-GAGAN": {
+ "expectedPoints": 37,
+ "currentPoints": 37,
+ "levels": {
+ "level1": 4,
+ "level2": 3,
+ "level3": 0
+ },
+ "prs": [
+ {
+ "url": "https://github.com/abhisek2004/Dev-Elevate/pull/201",
+ "title": "all route protection for development",
+ "repo": "abhisek2004/Dev-Elevate",
+ "level": "level2",
+ "points": 7,
+ "created_at": "2025-08-01T19:06:04Z",
+ "updated_at": "2025-08-02T03:45:58Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-08-01T19:06:41Z",
+ "author_url": "https://github.com/GOBINDA-GAGAN",
+ "author_avatar": "https://avatars.githubusercontent.com/u/180097366?v=4"
+ },
+ {
+ "url": "https://github.com/abhisek2004/Dev-Elevate/pull/200",
+ "title": "Test ",
+ "repo": "abhisek2004/Dev-Elevate",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-08-01T18:40:25Z",
+ "updated_at": "2025-08-02T03:45:46Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-08-01T18:41:07Z",
+ "author_url": "https://github.com/GOBINDA-GAGAN",
+ "author_avatar": "https://avatars.githubusercontent.com/u/180097366?v=4"
+ },
+ {
+ "url": "https://github.com/abhisek2004/Dev-Elevate/pull/188",
+ "title": "bug fix",
+ "repo": "abhisek2004/Dev-Elevate",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-31T19:34:49Z",
+ "updated_at": "2025-08-02T03:45:31Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-31T19:35:36Z",
+ "author_url": "https://github.com/GOBINDA-GAGAN",
+ "author_avatar": "https://avatars.githubusercontent.com/u/180097366?v=4"
+ },
+ {
+ "url": "https://github.com/abhisek2004/Dev-Elevate/pull/187",
+ "title": "add live link to the footer and fix bug in news feed",
+ "repo": "abhisek2004/Dev-Elevate",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-31T19:26:58Z",
+ "updated_at": "2025-08-02T03:45:10Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-31T19:27:39Z",
+ "author_url": "https://github.com/GOBINDA-GAGAN",
+ "author_avatar": "https://avatars.githubusercontent.com/u/180097366?v=4"
+ },
+ {
+ "url": "https://github.com/abhisek2004/Dev-Elevate/pull/186",
+ "title": " Convert Navbar to Sidebar with Tech News Section Integration",
+ "repo": "abhisek2004/Dev-Elevate",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-31T19:01:34Z",
+ "updated_at": "2025-08-02T03:44:56Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-31T19:01:50Z",
+ "author_url": "https://github.com/GOBINDA-GAGAN",
+ "author_avatar": "https://avatars.githubusercontent.com/u/180097366?v=4"
+ },
+ {
+ "url": "https://github.com/abhisek2004/Dev-Elevate/pull/171",
+ "title": "production deployment setup completed",
+ "repo": "abhisek2004/Dev-Elevate",
+ "level": "level2",
+ "points": 7,
+ "created_at": "2025-07-30T18:41:10Z",
+ "updated_at": "2025-08-02T03:44:34Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-30T18:42:00Z",
+ "author_url": "https://github.com/GOBINDA-GAGAN",
+ "author_avatar": "https://avatars.githubusercontent.com/u/180097366?v=4"
+ },
+ {
+ "url": "https://github.com/abhisek2004/Dev-Elevate/pull/33",
+ "title": "Restructured Project: Separated Frontend and Backend Codebase for Bet…",
+ "repo": "abhisek2004/Dev-Elevate",
+ "level": "level2",
+ "points": 7,
+ "created_at": "2025-07-23T03:54:23Z",
+ "updated_at": "2025-07-23T10:41:55Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-23T10:27:39Z",
+ "author_url": "https://github.com/GOBINDA-GAGAN",
+ "author_avatar": "https://avatars.githubusercontent.com/u/180097366?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/180097366?v=4",
+ "profile_url": "https://github.com/GOBINDA-GAGAN"
+ },
+ "Prateekiiitg56": {
+ "expectedPoints": 37,
+ "currentPoints": 37,
+ "levels": {
+ "level1": 0,
+ "level2": 1,
+ "level3": 3
+ },
+ "prs": [
+ {
+ "url": "https://github.com/Bavanetha27/Refixly/pull/43",
+ "title": "feat: Add final profile page features",
+ "repo": "Bavanetha27/Refixly",
+ "level": "level3",
+ "points": 10,
+ "created_at": "2025-07-28T19:38:10Z",
+ "updated_at": "2025-08-01T10:49:06Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-29T14:39:10Z",
+ "author_url": "https://github.com/Prateekiiitg56",
+ "author_avatar": "https://avatars.githubusercontent.com/u/151940407?v=4"
+ },
+ {
+ "url": "https://github.com/Dnyaneshpise/skywatch_alerts/pull/38",
+ "title": "Added SignIn feature with Firebase Auth",
+ "repo": "Dnyaneshpise/skywatch_alerts",
+ "level": "level2",
+ "points": 7,
+ "created_at": "2025-07-29T13:30:05Z",
+ "updated_at": "2025-07-31T12:01:00Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-31T11:55:53Z",
+ "author_url": "https://github.com/Prateekiiitg56",
+ "author_avatar": "https://avatars.githubusercontent.com/u/151940407?v=4"
+ },
+ {
+ "url": "https://github.com/Richajaishwal0/Trip_assistant/pull/24",
+ "title": "Add Pexels Api to explore more places and used google search to show details about them ",
+ "repo": "Richajaishwal0/Trip_assistant",
+ "level": "level3",
+ "points": 10,
+ "created_at": "2025-07-25T12:36:13Z",
+ "updated_at": "2025-07-26T17:09:11Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-26T17:09:11Z",
+ "author_url": "https://github.com/Prateekiiitg56",
+ "author_avatar": "https://avatars.githubusercontent.com/u/151940407?v=4"
+ },
+ {
+ "url": "https://github.com/SurajSG23/PrepBuddy/pull/92",
+ "title": "feat: Add interactive chat assistant",
+ "repo": "SurajSG23/PrepBuddy",
+ "level": "level3",
+ "points": 10,
+ "created_at": "2025-07-31T16:59:52Z",
+ "updated_at": "2025-07-31T18:21:44Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-31T18:21:34Z",
+ "author_url": "https://github.com/Prateekiiitg56",
+ "author_avatar": "https://avatars.githubusercontent.com/u/151940407?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/151940407?v=4",
+ "profile_url": "https://github.com/Prateekiiitg56"
+ },
+ "karsh0": {
+ "expectedPoints": 37,
+ "currentPoints": 37,
+ "levels": {
+ "level1": 4,
+ "level2": 3,
+ "level3": 0
+ },
+ "prs": [
+ {
+ "url": "https://github.com/mansiruhil/fail-u-forward/pull/85",
+ "title": "Added feature to check user availability",
+ "repo": "mansiruhil/fail-u-forward",
+ "level": "level2",
+ "points": 7,
+ "created_at": "2025-07-28T09:18:39Z",
+ "updated_at": "2025-07-28T20:21:08Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-28T17:13:20Z",
+ "author_url": "https://github.com/karsh0",
+ "author_avatar": "https://avatars.githubusercontent.com/u/137987751?v=4"
+ },
+ {
+ "url": "https://github.com/mansiruhil/fail-u-forward/pull/84",
+ "title": "Improved password field",
+ "repo": "mansiruhil/fail-u-forward",
+ "level": "level2",
+ "points": 7,
+ "created_at": "2025-07-28T07:47:26Z",
+ "updated_at": "2025-07-28T20:22:26Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-28T16:56:24Z",
+ "author_url": "https://github.com/karsh0",
+ "author_avatar": "https://avatars.githubusercontent.com/u/137987751?v=4"
+ },
+ {
+ "url": "https://github.com/mansiruhil/fail-u-forward/pull/83",
+ "title": "Fixed the input fields text color",
+ "repo": "mansiruhil/fail-u-forward",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-28T06:41:03Z",
+ "updated_at": "2025-07-28T20:21:20Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-28T17:31:35Z",
+ "author_url": "https://github.com/karsh0",
+ "author_avatar": "https://avatars.githubusercontent.com/u/137987751?v=4"
+ },
+ {
+ "url": "https://github.com/mansiruhil/fail-u-forward/pull/54",
+ "title": "Added password validation",
+ "repo": "mansiruhil/fail-u-forward",
+ "level": "level2",
+ "points": 7,
+ "created_at": "2025-07-25T12:11:05Z",
+ "updated_at": "2025-07-25T15:22:51Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-25T15:21:59Z",
+ "author_url": "https://github.com/karsh0",
+ "author_avatar": "https://avatars.githubusercontent.com/u/137987751?v=4"
+ },
+ {
+ "url": "https://github.com/mansiruhil/fail-u-forward/pull/37",
+ "title": "Fixed logout from feed page",
+ "repo": "mansiruhil/fail-u-forward",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-24T09:47:26Z",
+ "updated_at": "2025-07-25T17:49:48Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-24T10:32:08Z",
+ "author_url": "https://github.com/karsh0",
+ "author_avatar": "https://avatars.githubusercontent.com/u/137987751?v=4"
+ },
+ {
+ "url": "https://github.com/mansiruhil/fail-u-forward/pull/35",
+ "title": "Using env in lib/firebase",
+ "repo": "mansiruhil/fail-u-forward",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-24T07:25:14Z",
+ "updated_at": "2025-07-24T20:42:52Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-24T08:21:26Z",
+ "author_url": "https://github.com/karsh0",
+ "author_avatar": "https://avatars.githubusercontent.com/u/137987751?v=4"
+ },
+ {
+ "url": "https://github.com/mansiruhil/fail-u-forward/pull/15",
+ "title": "Fixed Chatbot ui",
+ "repo": "mansiruhil/fail-u-forward",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-23T13:22:41Z",
+ "updated_at": "2025-07-23T17:32:10Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-23T14:32:05Z",
+ "author_url": "https://github.com/karsh0",
+ "author_avatar": "https://avatars.githubusercontent.com/u/137987751?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/137987751?v=4",
+ "profile_url": "https://github.com/karsh0"
+ },
+ "RathodAnilT": {
+ "expectedPoints": 37,
+ "currentPoints": 37,
+ "levels": {
+ "level1": 0,
+ "level2": 1,
+ "level3": 3
+ },
+ "prs": [
+ {
+ "url": "https://github.com/souvikpramanikgit/LearnHub/pull/70",
+ "title": "Fix: update checkmark to reflect solved count in section header (#35)",
+ "repo": "souvikpramanikgit/LearnHub",
+ "level": "level2",
+ "points": 7,
+ "created_at": "2025-07-24T16:28:56Z",
+ "updated_at": "2025-07-25T18:17:01Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-25T18:16:53Z",
+ "author_url": "https://github.com/RathodAnilT",
+ "author_avatar": "https://avatars.githubusercontent.com/u/132031578?v=4"
+ },
+ {
+ "url": "https://github.com/souvikpramanikgit/LearnHub/pull/49",
+ "title": "Convert all content pages to Docusaurus format",
+ "repo": "souvikpramanikgit/LearnHub",
+ "level": "level3",
+ "points": 10,
+ "created_at": "2025-07-23T15:22:17Z",
+ "updated_at": "2025-07-23T15:34:25Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-23T15:27:18Z",
+ "author_url": "https://github.com/RathodAnilT",
+ "author_avatar": "https://avatars.githubusercontent.com/u/132031578?v=4"
+ },
+ {
+ "url": "https://github.com/souvikpramanikgit/LearnHub/pull/34",
+ "title": "Enhancement/cs fundamentals sidebar UI",
+ "repo": "souvikpramanikgit/LearnHub",
+ "level": "level3",
+ "points": 10,
+ "created_at": "2025-07-22T17:18:58Z",
+ "updated_at": "2025-07-22T17:55:13Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-22T17:53:46Z",
+ "author_url": "https://github.com/RathodAnilT",
+ "author_avatar": "https://avatars.githubusercontent.com/u/132031578?v=4"
+ },
+ {
+ "url": "https://github.com/souvikpramanikgit/LearnHub/pull/29",
+ "title": "Enhancement/bookmark stats notes filterings",
+ "repo": "souvikpramanikgit/LearnHub",
+ "level": "level3",
+ "points": 10,
+ "created_at": "2025-07-22T13:53:04Z",
+ "updated_at": "2025-07-22T17:24:49Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-22T14:53:39Z",
+ "author_url": "https://github.com/RathodAnilT",
+ "author_avatar": "https://avatars.githubusercontent.com/u/132031578?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/132031578?v=4",
+ "profile_url": "https://github.com/RathodAnilT"
+ },
+ "ajinkya8010": {
+ "expectedPoints": 36,
+ "currentPoints": 36,
+ "levels": {
+ "level1": 9,
+ "level2": 0,
+ "level3": 0
+ },
+ "prs": [
+ {
+ "url": "https://github.com/Abhishek2634/Foodie/pull/217",
+ "title": "fix: remove button replace with + & -",
+ "repo": "Abhishek2634/Foodie",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-31T18:13:01Z",
+ "updated_at": "2025-08-02T11:20:27Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-08-01T07:03:51Z",
+ "author_url": "https://github.com/ajinkya8010",
+ "author_avatar": "https://avatars.githubusercontent.com/u/112388853?v=4"
+ },
+ {
+ "url": "https://github.com/Abhishek2634/Foodie/pull/212",
+ "title": "fix: scroll added for location dialogue box",
+ "repo": "Abhishek2634/Foodie",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-31T11:53:50Z",
+ "updated_at": "2025-08-02T11:19:42Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-31T17:44:36Z",
+ "author_url": "https://github.com/ajinkya8010",
+ "author_avatar": "https://avatars.githubusercontent.com/u/112388853?v=4"
+ },
+ {
+ "url": "https://github.com/Abhishek2634/Foodie/pull/201",
+ "title": "fix: Only one FAQ expanded at a time",
+ "repo": "Abhishek2634/Foodie",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-30T18:38:48Z",
+ "updated_at": "2025-08-02T11:17:56Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-31T07:28:49Z",
+ "author_url": "https://github.com/ajinkya8010",
+ "author_avatar": "https://avatars.githubusercontent.com/u/112388853?v=4"
+ },
+ {
+ "url": "https://github.com/Abhishek2634/Foodie/pull/200",
+ "title": "fix: when visiting new page, auto scroll to top",
+ "repo": "Abhishek2634/Foodie",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-30T18:34:25Z",
+ "updated_at": "2025-08-02T11:17:40Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-08-02T08:23:30Z",
+ "author_url": "https://github.com/ajinkya8010",
+ "author_avatar": "https://avatars.githubusercontent.com/u/112388853?v=4"
+ },
+ {
+ "url": "https://github.com/Abhishek2634/Foodie/pull/199",
+ "title": "fix: highlight wishlist in navbar when on wishlist page",
+ "repo": "Abhishek2634/Foodie",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-30T18:16:32Z",
+ "updated_at": "2025-08-02T11:17:09Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-31T07:32:13Z",
+ "author_url": "https://github.com/ajinkya8010",
+ "author_avatar": "https://avatars.githubusercontent.com/u/112388853?v=4"
+ },
+ {
+ "url": "https://github.com/Abhishek2634/Foodie/pull/198",
+ "title": "fix:Search bar position fixed in home page",
+ "repo": "Abhishek2634/Foodie",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-30T18:09:11Z",
+ "updated_at": "2025-08-02T11:16:48Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-31T07:43:20Z",
+ "author_url": "https://github.com/ajinkya8010",
+ "author_avatar": "https://avatars.githubusercontent.com/u/112388853?v=4"
+ },
+ {
+ "url": "https://github.com/Abhishek2634/Foodie/pull/177",
+ "title": "fix: instantly update wishlist UI using custom event trigger",
+ "repo": "Abhishek2634/Foodie",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-29T18:41:44Z",
+ "updated_at": "2025-08-02T11:15:51Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-30T01:41:26Z",
+ "author_url": "https://github.com/ajinkya8010",
+ "author_avatar": "https://avatars.githubusercontent.com/u/112388853?v=4"
+ },
+ {
+ "url": "https://github.com/Abhishek2634/Foodie/pull/176",
+ "title": "fix:heart border color changed",
+ "repo": "Abhishek2634/Foodie",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-29T18:31:50Z",
+ "updated_at": "2025-08-02T11:15:31Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-30T01:42:17Z",
+ "author_url": "https://github.com/ajinkya8010",
+ "author_avatar": "https://avatars.githubusercontent.com/u/112388853?v=4"
+ },
+ {
+ "url": "https://github.com/Abhishek2634/Foodie/pull/175",
+ "title": "fix: prevent chatbot button overlap with cart summary bar using dynamic positioning",
+ "repo": "Abhishek2634/Foodie",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-29T17:51:03Z",
+ "updated_at": "2025-08-02T11:15:19Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-30T01:42:53Z",
+ "author_url": "https://github.com/ajinkya8010",
+ "author_avatar": "https://avatars.githubusercontent.com/u/112388853?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/112388853?v=4",
+ "profile_url": "https://github.com/ajinkya8010"
+ },
+ "Sitaram8472": {
+ "expectedPoints": 36,
+ "currentPoints": 36,
+ "levels": {
+ "level1": 2,
+ "level2": 4,
+ "level3": 0
+ },
+ "prs": [
+ {
+ "url": "https://github.com/itsAnimation/AnimateItNow/pull/662",
+ "title": " Template card hover improve in template section",
+ "repo": "itsAnimation/AnimateItNow",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-30T06:25:14Z",
+ "updated_at": "2025-07-30T06:27:51Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-30T06:27:51Z",
+ "author_url": "https://github.com/Sitaram8472",
+ "author_avatar": "https://avatars.githubusercontent.com/u/203215657?v=4"
+ },
+ {
+ "url": "https://github.com/itsAnimation/AnimateItNow/pull/610",
+ "title": "add game animation in template section",
+ "repo": "itsAnimation/AnimateItNow",
+ "level": "level2",
+ "points": 7,
+ "created_at": "2025-07-28T17:29:05Z",
+ "updated_at": "2025-07-29T04:21:50Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-28T19:20:39Z",
+ "author_url": "https://github.com/Sitaram8472",
+ "author_avatar": "https://avatars.githubusercontent.com/u/203215657?v=4"
+ },
+ {
+ "url": "https://github.com/itsAnimation/AnimateItNow/pull/604",
+ "title": "Ghibli image mismatch testimonial section solved",
+ "repo": "itsAnimation/AnimateItNow",
+ "level": "level2",
+ "points": 7,
+ "created_at": "2025-07-28T15:30:38Z",
+ "updated_at": "2025-07-28T16:58:50Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-28T16:58:49Z",
+ "author_url": "https://github.com/Sitaram8472",
+ "author_avatar": "https://avatars.githubusercontent.com/u/203215657?v=4"
+ },
+ {
+ "url": "https://github.com/itsAnimation/AnimateItNow/pull/543",
+ "title": "Update ghibli in testimonial section",
+ "repo": "itsAnimation/AnimateItNow",
+ "level": "level2",
+ "points": 7,
+ "created_at": "2025-07-27T10:33:28Z",
+ "updated_at": "2025-07-27T10:47:57Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-27T10:47:57Z",
+ "author_url": "https://github.com/Sitaram8472",
+ "author_avatar": "https://avatars.githubusercontent.com/u/203215657?v=4"
+ },
+ {
+ "url": "https://github.com/itsAnimation/AnimateItNow/pull/471",
+ "title": "FAQ section updateed",
+ "repo": "itsAnimation/AnimateItNow",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-26T10:46:49Z",
+ "updated_at": "2025-07-26T11:50:28Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-26T11:50:28Z",
+ "author_url": "https://github.com/Sitaram8472",
+ "author_avatar": "https://avatars.githubusercontent.com/u/203215657?v=4"
+ },
+ {
+ "url": "https://github.com/itsAnimation/AnimateItNow/pull/359",
+ "title": "improve contact in mob",
+ "repo": "itsAnimation/AnimateItNow",
+ "level": "level2",
+ "points": 7,
+ "created_at": "2025-07-25T04:23:14Z",
+ "updated_at": "2025-07-26T08:05:12Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-26T08:02:32Z",
+ "author_url": "https://github.com/Sitaram8472",
+ "author_avatar": "https://avatars.githubusercontent.com/u/203215657?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/203215657?v=4",
+ "profile_url": "https://github.com/Sitaram8472"
+ },
+ "akathedeveloper": {
+ "expectedPoints": 35,
+ "currentPoints": 35,
+ "levels": {
+ "level1": 1,
+ "level2": 3,
+ "level3": 1
+ },
+ "prs": [
+ {
+ "url": "https://github.com/itsAnimation/AnimateItNow/pull/21",
+ "title": " AnimateItNow - Contact Form",
+ "repo": "itsAnimation/AnimateItNow",
+ "level": "level2",
+ "points": 7,
+ "created_at": "2025-07-21T19:48:48Z",
+ "updated_at": "2025-07-21T20:04:49Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-21T20:03:56Z",
+ "author_url": "https://github.com/akathedeveloper",
+ "author_avatar": "https://avatars.githubusercontent.com/u/114748865?v=4"
+ },
+ {
+ "url": "https://github.com/MAVERICK-VF142/Drx.MediMate/pull/46",
+ "title": "Added multi-role authentication (Pharmacist/Doctor/Student/Patient) with sample UIs and Google oauth",
+ "repo": "MAVERICK-VF142/Drx.MediMate",
+ "level": "level3",
+ "points": 10,
+ "created_at": "2025-07-23T08:47:28Z",
+ "updated_at": "2025-07-23T09:14:54Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-23T09:02:56Z",
+ "author_url": "https://github.com/akathedeveloper",
+ "author_avatar": "https://avatars.githubusercontent.com/u/114748865?v=4"
+ },
+ {
+ "url": "https://github.com/MAVERICK-VF142/Drx.MediMate/pull/26",
+ "title": "UI Updated and Account file added",
+ "repo": "MAVERICK-VF142/Drx.MediMate",
+ "level": "level2",
+ "points": 7,
+ "created_at": "2025-07-22T09:54:52Z",
+ "updated_at": "2025-07-22T16:28:18Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-22T10:06:50Z",
+ "author_url": "https://github.com/akathedeveloper",
+ "author_avatar": "https://avatars.githubusercontent.com/u/114748865?v=4"
+ },
+ {
+ "url": "https://github.com/MAVERICK-VF142/Drx.MediMate/pull/19",
+ "title": "UI Overhaul - Authentication Pages",
+ "repo": "MAVERICK-VF142/Drx.MediMate",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-22T07:22:25Z",
+ "updated_at": "2025-07-22T10:08:17Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-22T08:28:45Z",
+ "author_url": "https://github.com/akathedeveloper",
+ "author_avatar": "https://avatars.githubusercontent.com/u/114748865?v=4"
+ },
+ {
+ "url": "https://github.com/Vaishnavi-Manne/LetsDoDsaTogether/pull/10",
+ "title": "Login & Signup page UI Added",
+ "repo": "Vaishnavi-Manne/LetsDoDsaTogether",
+ "level": "level2",
+ "points": 7,
+ "created_at": "2025-07-22T16:02:35Z",
+ "updated_at": "2025-07-30T06:32:20Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-22T16:30:05Z",
+ "author_url": "https://github.com/akathedeveloper",
+ "author_avatar": "https://avatars.githubusercontent.com/u/114748865?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/114748865?v=4",
+ "profile_url": "https://github.com/akathedeveloper"
+ },
+ "abhisek247767": {
+ "expectedPoints": 34,
+ "currentPoints": 34,
+ "levels": {
+ "level1": 1,
+ "level2": 0,
+ "level3": 3
+ },
+ "prs": [
+ {
+ "url": "https://github.com/abhisek247767/PeopleHub-Frontend/pull/44",
+ "title": "Origin/development",
+ "repo": "abhisek247767/PeopleHub-Frontend",
+ "level": "level3",
+ "points": 10,
+ "created_at": "2025-07-27T08:42:23Z",
+ "updated_at": "2025-07-27T08:42:42Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-27T08:42:41Z",
+ "author_url": "https://github.com/abhisek247767",
+ "author_avatar": "https://avatars.githubusercontent.com/u/69287212?v=4"
+ },
+ {
+ "url": "https://github.com/abhisek247767/PeopleHub-Frontend/pull/29",
+ "title": "Origin/development",
+ "repo": "abhisek247767/PeopleHub-Frontend",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-26T05:21:44Z",
+ "updated_at": "2025-07-26T05:22:11Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-26T05:22:11Z",
+ "author_url": "https://github.com/abhisek247767",
+ "author_avatar": "https://avatars.githubusercontent.com/u/69287212?v=4"
+ },
+ {
+ "url": "https://github.com/abhisek247767/PeopleHub-Frontend/pull/15",
+ "title": "feat: enhance project management with new project form and employee l…",
+ "repo": "abhisek247767/PeopleHub-Frontend",
+ "level": "level3",
+ "points": 10,
+ "created_at": "2025-07-24T17:52:05Z",
+ "updated_at": "2025-07-24T17:52:18Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-24T17:52:18Z",
+ "author_url": "https://github.com/abhisek247767",
+ "author_avatar": "https://avatars.githubusercontent.com/u/69287212?v=4"
+ },
+ {
+ "url": "https://github.com/abhisek247767/PeopleHub-Frontend/pull/11",
+ "title": "feat: add user settings component and routing, improve layout with se…",
+ "repo": "abhisek247767/PeopleHub-Frontend",
+ "level": "level3",
+ "points": 10,
+ "created_at": "2025-07-23T16:50:12Z",
+ "updated_at": "2025-07-23T16:50:23Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-23T16:50:23Z",
+ "author_url": "https://github.com/abhisek247767",
+ "author_avatar": "https://avatars.githubusercontent.com/u/69287212?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/69287212?v=4",
+ "profile_url": "https://github.com/abhisek247767"
+ },
+ "snehatomar1205": {
+ "expectedPoints": 41,
+ "currentPoints": 34,
+ "levels": {
+ "level1": 0,
+ "level2": 3,
+ "level3": 2
+ },
+ "prs": [
+ {
+ "url": "https://github.com/Abhishek2634/Foodie/pull/115",
+ "title": "[Feature] Razorpay Payment Integration for Order Checkout (#18)",
+ "repo": "Abhishek2634/Foodie",
+ "level": "level2",
+ "points": 7,
+ "created_at": "2025-07-26T02:37:34Z",
+ "updated_at": "2025-08-02T11:00:56Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-26T14:44:07Z",
+ "author_url": "https://github.com/snehatomar1205",
+ "author_avatar": "https://avatars.githubusercontent.com/u/219497853?v=4"
+ },
+ {
+ "url": "https://github.com/Abhishek2634/Foodie/pull/85",
+ "title": "Enable Ratings & Reviews for Food Items #17",
+ "repo": "Abhishek2634/Foodie",
+ "level": "level2",
+ "points": 7,
+ "created_at": "2025-07-24T07:35:17Z",
+ "updated_at": "2025-07-27T08:17:25Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-27T08:17:25Z",
+ "author_url": "https://github.com/snehatomar1205",
+ "author_avatar": "https://avatars.githubusercontent.com/u/219497853?v=4"
+ },
+ {
+ "url": "https://github.com/Abhishek2634/Foodie/pull/84",
+ "title": "[Feature] Add backend setup for Cart, Food, Order, and Restaurant models (#9)",
+ "repo": "Abhishek2634/Foodie",
+ "level": "level3",
+ "points": 10,
+ "created_at": "2025-07-24T07:05:21Z",
+ "updated_at": "2025-07-27T15:27:20Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-27T15:27:20Z",
+ "author_url": "https://github.com/snehatomar1205",
+ "author_avatar": "https://avatars.githubusercontent.com/u/219497853?v=4"
+ },
+ {
+ "url": "https://github.com/Abhishek2634/Foodie/pull/82",
+ "title": "Add JWT authentication backend with middleware #5",
+ "repo": "Abhishek2634/Foodie",
+ "level": "level3",
+ "points": 10,
+ "created_at": "2025-07-24T05:51:31Z",
+ "updated_at": "2025-07-24T13:02:54Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-24T13:02:54Z",
+ "author_url": "https://github.com/snehatomar1205",
+ "author_avatar": "https://avatars.githubusercontent.com/u/219497853?v=4"
+ },
+ {
+ "url": "https://github.com/SurajSG23/PrepBuddy/pull/39",
+ "title": "feat: display time taken by user after test completion",
+ "repo": "SurajSG23/PrepBuddy",
+ "level": "level2",
+ "points": 7,
+ "created_at": "2025-07-26T07:35:18Z",
+ "updated_at": "2025-07-26T08:19:47Z",
+ "state": "closed",
+ "merged": false,
+ "merged_at": null,
+ "author_url": "https://github.com/snehatomar1205",
+ "author_avatar": "https://avatars.githubusercontent.com/u/219497853?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/219497853?v=4",
+ "profile_url": "https://github.com/snehatomar1205"
+ },
+ "KadimiJaswanth": {
+ "expectedPoints": 34,
+ "currentPoints": 34,
+ "levels": {
+ "level1": 0,
+ "level2": 2,
+ "level3": 2
+ },
+ "prs": [
+ {
+ "url": "https://github.com/itsAnimation/AnimateItNow/pull/410",
+ "title": "✨ Add animated toggle switches component",
+ "repo": "itsAnimation/AnimateItNow",
+ "level": "level2",
+ "points": 7,
+ "created_at": "2025-07-25T14:21:35Z",
+ "updated_at": "2025-07-25T15:18:49Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-25T15:18:49Z",
+ "author_url": "https://github.com/KadimiJaswanth",
+ "author_avatar": "https://avatars.githubusercontent.com/u/177393590?v=4"
+ },
+ {
+ "url": "https://github.com/itsAnimation/AnimateItNow/pull/199",
+ "title": "Add animated social share buttons component",
+ "repo": "itsAnimation/AnimateItNow",
+ "level": "level3",
+ "points": 10,
+ "created_at": "2025-07-23T11:49:11Z",
+ "updated_at": "2025-07-23T12:05:28Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-23T11:54:10Z",
+ "author_url": "https://github.com/KadimiJaswanth",
+ "author_avatar": "https://avatars.githubusercontent.com/u/177393590?v=4"
+ },
+ {
+ "url": "https://github.com/Ayushjhawar8/Flavor-ai/pull/25",
+ "title": "feat(recipe): Enhance TTS player and UI for recipe page",
+ "repo": "Ayushjhawar8/Flavor-ai",
+ "level": "level3",
+ "points": 10,
+ "created_at": "2025-07-23T11:29:44Z",
+ "updated_at": "2025-07-24T09:13:42Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-24T09:13:42Z",
+ "author_url": "https://github.com/KadimiJaswanth",
+ "author_avatar": "https://avatars.githubusercontent.com/u/177393590?v=4"
+ },
+ {
+ "url": "https://github.com/rahulkhandait-sde/cineverse/pull/13",
+ "title": "feat: Add TV Shows and Genres pages with styling",
+ "repo": "rahulkhandait-sde/movie-search",
+ "level": "level2",
+ "points": 7,
+ "created_at": "2025-07-25T06:48:16Z",
+ "updated_at": "2025-07-26T11:43:58Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-26T11:43:58Z",
+ "author_url": "https://github.com/KadimiJaswanth",
+ "author_avatar": "https://avatars.githubusercontent.com/u/177393590?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/177393590?v=4",
+ "profile_url": "https://github.com/KadimiJaswanth"
+ },
+ "kmahesh18": {
+ "expectedPoints": 34,
+ "currentPoints": 34,
+ "levels": {
+ "level1": 0,
+ "level2": 2,
+ "level3": 2
+ },
+ "prs": [
+ {
+ "url": "https://github.com/InnoWebLabs/Vehigo/pull/12",
+ "title": "#7 Created a Project Backend Structure",
+ "repo": "InnoWebLabs/Vehigo",
+ "level": "level2",
+ "points": 7,
+ "created_at": "2025-07-23T06:24:50Z",
+ "updated_at": "2025-07-25T20:13:38Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-23T06:35:43Z",
+ "author_url": "https://github.com/kmahesh18",
+ "author_avatar": "https://avatars.githubusercontent.com/u/152905289?v=4"
+ },
+ {
+ "url": "https://github.com/SamXop123/RigCrafter/pull/17",
+ "title": "#16 Added Filter for build guides",
+ "repo": "SamXop123/RigCrafter",
+ "level": "level2",
+ "points": 7,
+ "created_at": "2025-07-24T22:39:11Z",
+ "updated_at": "2025-07-27T09:17:44Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-27T09:16:56Z",
+ "author_url": "https://github.com/kmahesh18",
+ "author_avatar": "https://avatars.githubusercontent.com/u/152905289?v=4"
+ },
+ {
+ "url": "https://github.com/SamXop123/RigCrafter/pull/13",
+ "title": "#7 Added Footer Links Pages",
+ "repo": "SamXop123/RigCrafter",
+ "level": "level3",
+ "points": 10,
+ "created_at": "2025-07-24T03:00:39Z",
+ "updated_at": "2025-07-24T16:19:54Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-24T16:18:24Z",
+ "author_url": "https://github.com/kmahesh18",
+ "author_avatar": "https://avatars.githubusercontent.com/u/152905289?v=4"
+ },
+ {
+ "url": "https://github.com/SamXop123/RigCrafter/pull/8",
+ "title": "#6 Contact Section",
+ "repo": "SamXop123/RigCrafter",
+ "level": "level3",
+ "points": 10,
+ "created_at": "2025-07-23T13:07:48Z",
+ "updated_at": "2025-07-23T16:13:22Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-23T16:11:56Z",
+ "author_url": "https://github.com/kmahesh18",
+ "author_avatar": "https://avatars.githubusercontent.com/u/152905289?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/152905289?v=4",
+ "profile_url": "https://github.com/kmahesh18"
+ },
+ "Shivin1016": {
+ "expectedPoints": 37,
+ "currentPoints": 33,
+ "levels": {
+ "level1": 5,
+ "level2": 1,
+ "level3": 1
+ },
+ "prs": [
+ {
+ "url": "https://github.com/itsAnimation/AnimateItNow/pull/630",
+ "title": " added code playground and texts effect enimation in templates and merge conflicts in fAQ",
+ "repo": "itsAnimation/AnimateItNow",
+ "level": "level3",
+ "points": 10,
+ "created_at": "2025-07-29T03:40:26Z",
+ "updated_at": "2025-07-30T12:01:33Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-30T11:52:16Z",
+ "author_url": "https://github.com/Shivin1016",
+ "author_avatar": "https://avatars.githubusercontent.com/u/137745066?v=4"
+ },
+ {
+ "url": "https://github.com/itsAnimation/AnimateItNow/pull/573",
+ "title": "about and templates make active on clicking and dark mode icon visible",
+ "repo": "itsAnimation/AnimateItNow",
+ "level": "level2",
+ "points": 7,
+ "created_at": "2025-07-27T17:43:23Z",
+ "updated_at": "2025-07-27T18:01:25Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-27T18:01:25Z",
+ "author_url": "https://github.com/Shivin1016",
+ "author_avatar": "https://avatars.githubusercontent.com/u/137745066?v=4"
+ },
+ {
+ "url": "https://github.com/itsAnimation/AnimateItNow/pull/462",
+ "title": "footer section animation of email us fixes",
+ "repo": "itsAnimation/AnimateItNow",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-26T07:50:25Z",
+ "updated_at": "2025-07-26T15:50:33Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-26T15:50:32Z",
+ "author_url": "https://github.com/Shivin1016",
+ "author_avatar": "https://avatars.githubusercontent.com/u/137745066?v=4"
+ },
+ {
+ "url": "https://github.com/itsAnimation/AnimateItNow/pull/181",
+ "title": "conflicts resolve and animate site name",
+ "repo": "itsAnimation/AnimateItNow",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-23T10:14:21Z",
+ "updated_at": "2025-07-23T11:30:57Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-23T11:30:57Z",
+ "author_url": "https://github.com/Shivin1016",
+ "author_avatar": "https://avatars.githubusercontent.com/u/137745066?v=4"
+ },
+ {
+ "url": "https://github.com/itsAnimation/AnimateItNow/pull/57",
+ "title": "make animated website Name",
+ "repo": "itsAnimation/AnimateItNow",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-22T10:10:18Z",
+ "updated_at": "2025-07-23T01:42:30Z",
+ "state": "closed",
+ "merged": false,
+ "merged_at": null,
+ "author_url": "https://github.com/Shivin1016",
+ "author_avatar": "https://avatars.githubusercontent.com/u/137745066?v=4"
+ },
+ {
+ "url": "https://github.com/InnoWebLabs/Vehigo/pull/115",
+ "title": "solved issue #94 ,added social links to top footer from lower footer and added styles",
+ "repo": "InnoWebLabs/Vehigo",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-26T18:19:45Z",
+ "updated_at": "2025-07-27T12:51:17Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-27T12:29:15Z",
+ "author_url": "https://github.com/Shivin1016",
+ "author_avatar": "https://avatars.githubusercontent.com/u/137745066?v=4"
+ },
+ {
+ "url": "https://github.com/InnoWebLabs/Vehigo/pull/63",
+ "title": "added animation in logo and hero-text",
+ "repo": "InnoWebLabs/Vehigo",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-25T08:04:12Z",
+ "updated_at": "2025-07-25T20:26:22Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-25T09:07:34Z",
+ "author_url": "https://github.com/Shivin1016",
+ "author_avatar": "https://avatars.githubusercontent.com/u/137745066?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/137745066?v=4",
+ "profile_url": "https://github.com/Shivin1016"
+ },
+ "codewithdhruba01": {
+ "expectedPoints": 33,
+ "currentPoints": 33,
+ "levels": {
+ "level1": 3,
+ "level2": 3,
+ "level3": 0
+ },
+ "prs": [
+ {
+ "url": "https://github.com/itsAnimation/AnimateItNow/pull/614",
+ "title": "Redesign neumorphic button gallery layout and styles",
+ "repo": "itsAnimation/AnimateItNow",
+ "level": "level2",
+ "points": 7,
+ "created_at": "2025-07-28T17:42:33Z",
+ "updated_at": "2025-07-29T03:05:25Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-28T19:09:54Z",
+ "author_url": "https://github.com/codewithdhruba01",
+ "author_avatar": "https://avatars.githubusercontent.com/u/146111647?v=4"
+ },
+ {
+ "url": "https://github.com/itsAnimation/AnimateItNow/pull/412",
+ "title": "Highlight AnimateItNow in hero section",
+ "repo": "itsAnimation/AnimateItNow",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-25T14:25:34Z",
+ "updated_at": "2025-07-25T15:15:11Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-25T15:10:23Z",
+ "author_url": "https://github.com/codewithdhruba01",
+ "author_avatar": "https://avatars.githubusercontent.com/u/146111647?v=4"
+ },
+ {
+ "url": "https://github.com/itsAnimation/AnimateItNow/pull/395",
+ "title": "Enhance login page styles and add new variants",
+ "repo": "itsAnimation/AnimateItNow",
+ "level": "level2",
+ "points": 7,
+ "created_at": "2025-07-25T11:42:26Z",
+ "updated_at": "2025-07-25T12:58:42Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-25T12:09:03Z",
+ "author_url": "https://github.com/codewithdhruba01",
+ "author_avatar": "https://avatars.githubusercontent.com/u/146111647?v=4"
+ },
+ {
+ "url": "https://github.com/itsAnimation/AnimateItNow/pull/277",
+ "title": "Update Request for AnimateItNow",
+ "repo": "itsAnimation/AnimateItNow",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-24T04:15:07Z",
+ "updated_at": "2025-07-25T05:51:55Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-24T19:58:15Z",
+ "author_url": "https://github.com/codewithdhruba01",
+ "author_avatar": "https://avatars.githubusercontent.com/u/146111647?v=4"
+ },
+ {
+ "url": "https://github.com/Kritika75/TheCawnporeMag.github.io/pull/321",
+ "title": "Redesign FAQ page with accordion and improved layout",
+ "repo": "Kritika75/TheCawnporeMag.github.io",
+ "level": "level2",
+ "points": 7,
+ "created_at": "2025-07-31T15:54:21Z",
+ "updated_at": "2025-08-03T06:04:32Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-08-03T06:03:44Z",
+ "author_url": "https://github.com/codewithdhruba01",
+ "author_avatar": "https://avatars.githubusercontent.com/u/146111647?v=4"
+ },
+ {
+ "url": "https://github.com/Kritika75/TheCawnporeMag.github.io/pull/210",
+ "title": "Redesigned Know More about GSSoC Button with Modern Hover Effects",
+ "repo": "Kritika75/TheCawnporeMag.github.io",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-27T13:06:27Z",
+ "updated_at": "2025-07-27T14:10:56Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-27T13:32:22Z",
+ "author_url": "https://github.com/codewithdhruba01",
+ "author_avatar": "https://avatars.githubusercontent.com/u/146111647?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/146111647?v=4",
+ "profile_url": "https://github.com/codewithdhruba01"
+ },
+ "Nikita-Mishraa": {
+ "expectedPoints": 33,
+ "currentPoints": 33,
+ "levels": {
+ "level1": 3,
+ "level2": 3,
+ "level3": 0
+ },
+ "prs": [
+ {
+ "url": "https://github.com/VAIBHAVBABELE/vaibhavbabele.github.io/pull/122",
+ "title": "Bug/navbar link",
+ "repo": "VAIBHAVBABELE/vaibhavbabele.github.io",
+ "level": "level2",
+ "points": 7,
+ "created_at": "2025-07-26T13:39:12Z",
+ "updated_at": "2025-07-26T17:00:13Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-26T16:59:22Z",
+ "author_url": "https://github.com/Nikita-Mishraa",
+ "author_avatar": "https://avatars.githubusercontent.com/u/126142419?v=4"
+ },
+ {
+ "url": "https://github.com/VAIBHAVBABELE/vaibhavbabele.github.io/pull/119",
+ "title": "Bug/form update",
+ "repo": "VAIBHAVBABELE/vaibhavbabele.github.io",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-26T12:48:39Z",
+ "updated_at": "2025-07-26T13:04:41Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-26T12:55:44Z",
+ "author_url": "https://github.com/Nikita-Mishraa",
+ "author_avatar": "https://avatars.githubusercontent.com/u/126142419?v=4"
+ },
+ {
+ "url": "https://github.com/VAIBHAVBABELE/vaibhavbabele.github.io/pull/116",
+ "title": "Enhancement/form update",
+ "repo": "VAIBHAVBABELE/vaibhavbabele.github.io",
+ "level": "level2",
+ "points": 7,
+ "created_at": "2025-07-26T11:16:51Z",
+ "updated_at": "2025-07-26T11:59:34Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-26T11:59:06Z",
+ "author_url": "https://github.com/Nikita-Mishraa",
+ "author_avatar": "https://avatars.githubusercontent.com/u/126142419?v=4"
+ },
+ {
+ "url": "https://github.com/VAIBHAVBABELE/vaibhavbabele.github.io/pull/99",
+ "title": "Enhancement/update certificate",
+ "repo": "VAIBHAVBABELE/vaibhavbabele.github.io",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-25T11:51:51Z",
+ "updated_at": "2025-07-25T17:22:33Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-25T16:01:22Z",
+ "author_url": "https://github.com/Nikita-Mishraa",
+ "author_avatar": "https://avatars.githubusercontent.com/u/126142419?v=4"
+ },
+ {
+ "url": "https://github.com/VAIBHAVBABELE/vaibhavbabele.github.io/pull/80",
+ "title": "Documentation Change - README.md Update",
+ "repo": "VAIBHAVBABELE/vaibhavbabele.github.io",
+ "level": "level2",
+ "points": 7,
+ "created_at": "2025-07-24T16:09:02Z",
+ "updated_at": "2025-07-25T10:46:04Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-25T10:14:41Z",
+ "author_url": "https://github.com/Nikita-Mishraa",
+ "author_avatar": "https://avatars.githubusercontent.com/u/126142419?v=4"
+ },
+ {
+ "url": "https://github.com/VAIBHAVBABELE/vaibhavbabele.github.io/pull/25",
+ "title": "Enhancement/changed navbar and page layout",
+ "repo": "VAIBHAVBABELE/vaibhavbabele.github.io",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-22T16:49:20Z",
+ "updated_at": "2025-07-23T07:20:04Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-23T05:53:49Z",
+ "author_url": "https://github.com/Nikita-Mishraa",
+ "author_avatar": "https://avatars.githubusercontent.com/u/126142419?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/126142419?v=4",
+ "profile_url": "https://github.com/Nikita-Mishraa"
+ },
+ "imprince26": {
+ "expectedPoints": 32,
+ "currentPoints": 32,
+ "levels": {
+ "level1": 1,
+ "level2": 4,
+ "level3": 0
+ },
+ "prs": [
+ {
+ "url": "https://github.com/Adarsh-Chaubey03/TravelGrid/pull/128",
+ "title": "Fix Vercel 404 Issue by Adding vercel.json for SPA Routing",
+ "repo": "Adarsh-Chaubey03/TravelGrid",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-23T16:27:54Z",
+ "updated_at": "2025-07-24T03:47:22Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-24T03:45:28Z",
+ "author_url": "https://github.com/imprince26",
+ "author_avatar": "https://avatars.githubusercontent.com/u/168948898?v=4"
+ },
+ {
+ "url": "https://github.com/Adarsh-Chaubey03/TravelGrid/pull/89",
+ "title": "feat: Implement client-side authentication system with dedicated login/signup pages",
+ "repo": "Adarsh-Chaubey03/TravelGrid",
+ "level": "level2",
+ "points": 7,
+ "created_at": "2025-07-22T16:19:17Z",
+ "updated_at": "2025-07-23T03:26:49Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-23T03:26:48Z",
+ "author_url": "https://github.com/imprince26",
+ "author_avatar": "https://avatars.githubusercontent.com/u/168948898?v=4"
+ },
+ {
+ "url": "https://github.com/Adarsh-Chaubey03/TravelGrid/pull/59",
+ "title": "Refactor: Implement Global Layout with Consistent Navbar and Footer",
+ "repo": "Adarsh-Chaubey03/TravelGrid",
+ "level": "level2",
+ "points": 7,
+ "created_at": "2025-07-22T10:32:03Z",
+ "updated_at": "2025-07-22T12:51:50Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-22T12:51:49Z",
+ "author_url": "https://github.com/imprince26",
+ "author_avatar": "https://avatars.githubusercontent.com/u/168948898?v=4"
+ },
+ {
+ "url": "https://github.com/Adarsh-Chaubey03/TravelGrid/pull/47",
+ "title": "Add Comprehensive Error Handling Components and UI Feedback System",
+ "repo": "Adarsh-Chaubey03/TravelGrid",
+ "level": "level2",
+ "points": 7,
+ "created_at": "2025-07-22T09:00:19Z",
+ "updated_at": "2025-07-22T09:56:34Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-22T09:37:47Z",
+ "author_url": "https://github.com/imprince26",
+ "author_avatar": "https://avatars.githubusercontent.com/u/168948898?v=4"
+ },
+ {
+ "url": "https://github.com/Adarsh-Chaubey03/TravelGrid/pull/19",
+ "title": "fix: Add Responsive Navigation Menu with Mobile Sidebar",
+ "repo": "Adarsh-Chaubey03/TravelGrid",
+ "level": "level2",
+ "points": 7,
+ "created_at": "2025-07-21T17:06:07Z",
+ "updated_at": "2025-07-21T20:26:24Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-21T19:12:02Z",
+ "author_url": "https://github.com/imprince26",
+ "author_avatar": "https://avatars.githubusercontent.com/u/168948898?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/168948898?v=4",
+ "profile_url": "https://github.com/imprince26"
+ },
+ "Samridha0305": {
+ "expectedPoints": 36,
+ "currentPoints": 32,
+ "levels": {
+ "level1": 3,
+ "level2": 2,
+ "level3": 1
+ },
+ "prs": [
+ {
+ "url": "https://github.com/recodehive/recode-website/pull/233",
+ "title": "Integrate Pinterest Tag",
+ "repo": "recodehive/recode-website",
+ "level": "level2",
+ "points": 7,
+ "created_at": "2025-07-30T07:48:41Z",
+ "updated_at": "2025-07-30T13:42:15Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-30T12:50:12Z",
+ "author_url": "https://github.com/Samridha0305",
+ "author_avatar": "https://avatars.githubusercontent.com/u/184013203?v=4"
+ },
+ {
+ "url": "https://github.com/recodehive/recode-website/pull/230",
+ "title": "Add Professional, Elegant Newsletter Popup with Scroll Trigger",
+ "repo": "recodehive/recode-website",
+ "level": "level2",
+ "points": 7,
+ "created_at": "2025-07-29T05:21:17Z",
+ "updated_at": "2025-07-30T05:12:06Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-30T04:48:46Z",
+ "author_url": "https://github.com/Samridha0305",
+ "author_avatar": "https://avatars.githubusercontent.com/u/184013203?v=4"
+ },
+ {
+ "url": "https://github.com/recodehive/recode-website/pull/223",
+ "title": "Rename Account Center",
+ "repo": "recodehive/recode-website",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-28T15:01:34Z",
+ "updated_at": "2025-07-28T15:08:54Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-28T15:08:53Z",
+ "author_url": "https://github.com/Samridha0305",
+ "author_avatar": "https://avatars.githubusercontent.com/u/184013203?v=4"
+ },
+ {
+ "url": "https://github.com/recodehive/recode-website/pull/219",
+ "title": "Add Giveaway Page with Timer & Leaderboard",
+ "repo": "recodehive/recode-website",
+ "level": "level3",
+ "points": 10,
+ "created_at": "2025-07-28T09:55:51Z",
+ "updated_at": "2025-07-29T01:15:52Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-29T01:15:52Z",
+ "author_url": "https://github.com/Samridha0305",
+ "author_avatar": "https://avatars.githubusercontent.com/u/184013203?v=4"
+ },
+ {
+ "url": "https://github.com/recodehive/recode-website/pull/211",
+ "title": "Add Back to Top button in README",
+ "repo": "recodehive/recode-website",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-27T16:04:14Z",
+ "updated_at": "2025-07-27T22:59:01Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-27T22:58:27Z",
+ "author_url": "https://github.com/Samridha0305",
+ "author_avatar": "https://avatars.githubusercontent.com/u/184013203?v=4"
+ },
+ {
+ "url": "https://github.com/ygowthamr/WhitePaper/pull/160",
+ "title": "Enhance Mobile Responsiveness and Appearance via Meta Tags",
+ "repo": "ygowthamr/WhitePaper",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-25T09:46:11Z",
+ "updated_at": "2025-07-28T06:28:18Z",
+ "state": "open",
+ "merged": false,
+ "merged_at": null,
+ "author_url": "https://github.com/Samridha0305",
+ "author_avatar": "https://avatars.githubusercontent.com/u/184013203?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/184013203?v=4",
+ "profile_url": "https://github.com/Samridha0305"
+ },
+ "AdityaJollyy": {
+ "expectedPoints": 31,
+ "currentPoints": 31,
+ "levels": {
+ "level1": 1,
+ "level2": 1,
+ "level3": 2
+ },
+ "prs": [
+ {
+ "url": "https://github.com/NishantRana07/HrRoadways/pull/380",
+ "title": "Add multilingual (i18n) support and responsive UI enhancements for mobile devices",
+ "repo": "NishantRana07/HrRoadways",
+ "level": "level2",
+ "points": 7,
+ "created_at": "2025-07-26T03:31:44Z",
+ "updated_at": "2025-07-28T10:04:00Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-26T15:47:14Z",
+ "author_url": "https://github.com/AdityaJollyy",
+ "author_avatar": "https://avatars.githubusercontent.com/u/140686935?v=4"
+ },
+ {
+ "url": "https://github.com/NishantRana07/HrRoadways/pull/362",
+ "title": "Multiple language support(issue#359)",
+ "repo": "NishantRana07/HrRoadways",
+ "level": "level3",
+ "points": 10,
+ "created_at": "2025-07-24T18:15:53Z",
+ "updated_at": "2025-07-25T14:31:12Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-25T05:20:13Z",
+ "author_url": "https://github.com/AdityaJollyy",
+ "author_avatar": "https://avatars.githubusercontent.com/u/140686935?v=4"
+ },
+ {
+ "url": "https://github.com/RamakrushnaBiswal/HonorBox/pull/58",
+ "title": "Added .env files and folder structure",
+ "repo": "RamakrushnaBiswal/HonorBox",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-29T13:52:58Z",
+ "updated_at": "2025-07-29T15:16:49Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-29T15:14:48Z",
+ "author_url": "https://github.com/AdityaJollyy",
+ "author_avatar": "https://avatars.githubusercontent.com/u/140686935?v=4"
+ },
+ {
+ "url": "https://github.com/RamakrushnaBiswal/HonorBox/pull/40",
+ "title": "Added SignUp and SignIn pages",
+ "repo": "RamakrushnaBiswal/HonorBox",
+ "level": "level3",
+ "points": 10,
+ "created_at": "2025-07-27T09:49:09Z",
+ "updated_at": "2025-07-29T17:50:14Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-29T17:49:26Z",
+ "author_url": "https://github.com/AdityaJollyy",
+ "author_avatar": "https://avatars.githubusercontent.com/u/140686935?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/140686935?v=4",
+ "profile_url": "https://github.com/AdityaJollyy"
+ },
+ "SiyaDadpe": {
+ "expectedPoints": 31,
+ "currentPoints": 31,
+ "levels": {
+ "level1": 0,
+ "level2": 3,
+ "level3": 1
+ },
+ "prs": [
+ {
+ "url": "https://github.com/PRIYANSHU2026/DataSentience-AIML/pull/335",
+ "title": "feat: Add Professional Streamlit Web App for Startup Success Prediction with Advanced Analytics Dashboard",
+ "repo": "PRIYANSHU2026/DataSentience-AIML",
+ "level": "level2",
+ "points": 7,
+ "created_at": "2025-08-02T18:30:17Z",
+ "updated_at": "2025-08-02T18:45:25Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-08-02T18:45:09Z",
+ "author_url": "https://github.com/SiyaDadpe",
+ "author_avatar": "https://avatars.githubusercontent.com/u/166010617?v=4"
+ },
+ {
+ "url": "https://github.com/PRIYANSHU2026/DataSentience-AIML/pull/271",
+ "title": "feat: Advanced Healthcare Emotion Recognition Platform with Smart ML & Professional UI",
+ "repo": "PRIYANSHU2026/DataSentience-AIML",
+ "level": "level2",
+ "points": 7,
+ "created_at": "2025-07-29T18:10:37Z",
+ "updated_at": "2025-07-31T08:03:48Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-31T07:59:40Z",
+ "author_url": "https://github.com/SiyaDadpe",
+ "author_avatar": "https://avatars.githubusercontent.com/u/166010617?v=4"
+ },
+ {
+ "url": "https://github.com/PRIYANSHU2026/DataSentience-AIML/pull/250",
+ "title": " feat(ui): Transform Credit Card Checker with Professional Interface & Advanced Analytics",
+ "repo": "PRIYANSHU2026/DataSentience-AIML",
+ "level": "level3",
+ "points": 10,
+ "created_at": "2025-07-28T14:17:29Z",
+ "updated_at": "2025-07-29T08:43:17Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-29T08:28:09Z",
+ "author_url": "https://github.com/SiyaDadpe",
+ "author_avatar": "https://avatars.githubusercontent.com/u/166010617?v=4"
+ },
+ {
+ "url": "https://github.com/PRIYANSHU2026/DataSentience-AIML/pull/237",
+ "title": "fix: replace deprecated @st.cache with @st.cache_resource and enhance Bird Species Classification UI",
+ "repo": "PRIYANSHU2026/DataSentience-AIML",
+ "level": "level2",
+ "points": 7,
+ "created_at": "2025-07-27T11:28:29Z",
+ "updated_at": "2025-07-27T20:25:16Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-27T20:24:38Z",
+ "author_url": "https://github.com/SiyaDadpe",
+ "author_avatar": "https://avatars.githubusercontent.com/u/166010617?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/166010617?v=4",
+ "profile_url": "https://github.com/SiyaDadpe"
+ },
+ "gouravKJ": {
+ "expectedPoints": 30,
+ "currentPoints": 30,
+ "levels": {
+ "level1": 4,
+ "level2": 2,
+ "level3": 0
+ },
+ "prs": [
+ {
+ "url": "https://github.com/Adarsh-Chaubey03/TravelGrid/pull/307",
+ "title": "Added smooth scroll-to-top behavior for logo on home route ",
+ "repo": "Adarsh-Chaubey03/TravelGrid",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-28T18:06:26Z",
+ "updated_at": "2025-07-28T18:08:56Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-28T18:08:41Z",
+ "author_url": "https://github.com/gouravKJ",
+ "author_avatar": "https://avatars.githubusercontent.com/u/178272532?v=4"
+ },
+ {
+ "url": "https://github.com/Adarsh-Chaubey03/TravelGrid/pull/277",
+ "title": "Added user authentication controller with register and login functionality",
+ "repo": "Adarsh-Chaubey03/TravelGrid",
+ "level": "level2",
+ "points": 7,
+ "created_at": "2025-07-28T12:49:22Z",
+ "updated_at": "2025-07-28T13:27:15Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-28T13:26:59Z",
+ "author_url": "https://github.com/gouravKJ",
+ "author_avatar": "https://avatars.githubusercontent.com/u/178272532?v=4"
+ },
+ {
+ "url": "https://github.com/Adarsh-Chaubey03/TravelGrid/pull/275",
+ "title": "Added 404 and global error‑handling middleware",
+ "repo": "Adarsh-Chaubey03/TravelGrid",
+ "level": "level2",
+ "points": 7,
+ "created_at": "2025-07-28T12:35:14Z",
+ "updated_at": "2025-07-28T13:26:30Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-28T13:26:06Z",
+ "author_url": "https://github.com/gouravKJ",
+ "author_avatar": "https://avatars.githubusercontent.com/u/178272532?v=4"
+ },
+ {
+ "url": "https://github.com/Amarjha01/InfantCareCompass/pull/151",
+ "title": "Added 404 and global error handling ",
+ "repo": "Amarjha01/InfantCareCompass",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-29T18:53:06Z",
+ "updated_at": "2025-08-03T04:41:36Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-31T19:00:26Z",
+ "author_url": "https://github.com/gouravKJ",
+ "author_avatar": "https://avatars.githubusercontent.com/u/178272532?v=4"
+ },
+ {
+ "url": "https://github.com/manishkumar8312/Hotel-Booking/pull/21",
+ "title": "Fix: Properly handle MongoDB connection with event listeners and error handling",
+ "repo": "manishkumar8312/Hotel-Booking",
+ "level": null,
+ "points": 0,
+ "created_at": "2025-07-27T18:08:13Z",
+ "updated_at": "2025-07-30T19:19:06Z",
+ "state": "open",
+ "merged": false,
+ "merged_at": null,
+ "author_url": "https://github.com/gouravKJ",
+ "author_avatar": "https://avatars.githubusercontent.com/u/178272532?v=4"
+ },
+ {
+ "url": "https://github.com/GitMetricsLab/github_tracker/pull/160",
+ "title": "Centralized Error Handling in Express.js",
+ "repo": "mehul-m-prajapati/github_tracker",
+ "level": null,
+ "points": 0,
+ "created_at": "2025-07-30T18:53:17Z",
+ "updated_at": "2025-08-01T05:56:59Z",
+ "state": "closed",
+ "merged": false,
+ "merged_at": null,
+ "author_url": "https://github.com/gouravKJ",
+ "author_avatar": "https://avatars.githubusercontent.com/u/178272532?v=4"
+ },
+ {
+ "url": "https://github.com/RamakrushnaBiswal/HonorBox/pull/49",
+ "title": "Added global error handling to backend",
+ "repo": "RamakrushnaBiswal/HonorBox",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-28T18:21:25Z",
+ "updated_at": "2025-07-29T12:29:19Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-29T12:22:10Z",
+ "author_url": "https://github.com/gouravKJ",
+ "author_avatar": "https://avatars.githubusercontent.com/u/178272532?v=4"
+ },
+ {
+ "url": "https://github.com/openml-stack/SentiLog-AI/pull/142",
+ "title": "Centralized Error Handling",
+ "repo": "openml-stack/SentiLog-AI",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-31T18:32:15Z",
+ "updated_at": "2025-07-31T18:44:09Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-31T18:40:02Z",
+ "author_url": "https://github.com/gouravKJ",
+ "author_avatar": "https://avatars.githubusercontent.com/u/178272532?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/178272532?v=4",
+ "profile_url": "https://github.com/gouravKJ"
+ },
+ "parthparmar07": {
+ "expectedPoints": 30,
+ "currentPoints": 30,
+ "levels": {
+ "level1": 4,
+ "level2": 2,
+ "level3": 0
+ },
+ "prs": [
+ {
+ "url": "https://github.com/GauravKarakoti/Weather-API/pull/205",
+ "title": "Fix/diacritic handling",
+ "repo": "GauravKarakoti/Weather-API",
+ "level": "level2",
+ "points": 7,
+ "created_at": "2025-07-28T15:04:32Z",
+ "updated_at": "2025-07-30T06:12:34Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-30T06:12:34Z",
+ "author_url": "https://github.com/parthparmar07",
+ "author_avatar": "https://avatars.githubusercontent.com/u/176601346?v=4"
+ },
+ {
+ "url": "https://github.com/GauravKarakoti/Weather-API/pull/204",
+ "title": "fix the city",
+ "repo": "GauravKarakoti/Weather-API",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-28T14:41:47Z",
+ "updated_at": "2025-07-30T05:50:42Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-30T05:50:41Z",
+ "author_url": "https://github.com/parthparmar07",
+ "author_avatar": "https://avatars.githubusercontent.com/u/176601346?v=4"
+ },
+ {
+ "url": "https://github.com/GauravKarakoti/Weather-API/pull/203",
+ "title": "Fix/clear button weather data",
+ "repo": "GauravKarakoti/Weather-API",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-28T14:24:50Z",
+ "updated_at": "2025-07-30T06:10:55Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-30T06:10:54Z",
+ "author_url": "https://github.com/parthparmar07",
+ "author_avatar": "https://avatars.githubusercontent.com/u/176601346?v=4"
+ },
+ {
+ "url": "https://github.com/GauravKarakoti/Weather-API/pull/202",
+ "title": "fix: improve mobile responsiveness",
+ "repo": "GauravKarakoti/Weather-API",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-28T14:04:51Z",
+ "updated_at": "2025-07-30T05:39:15Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-30T05:39:15Z",
+ "author_url": "https://github.com/parthparmar07",
+ "author_avatar": "https://avatars.githubusercontent.com/u/176601346?v=4"
+ },
+ {
+ "url": "https://github.com/GauravKarakoti/Weather-API/pull/200",
+ "title": "test: enhance test coverage for weather app",
+ "repo": "GauravKarakoti/Weather-API",
+ "level": "level2",
+ "points": 7,
+ "created_at": "2025-07-28T11:01:53Z",
+ "updated_at": "2025-07-28T11:20:11Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-28T11:20:11Z",
+ "author_url": "https://github.com/parthparmar07",
+ "author_avatar": "https://avatars.githubusercontent.com/u/176601346?v=4"
+ },
+ {
+ "url": "https://github.com/GauravKarakoti/Weather-API/pull/199",
+ "title": "fix: add aria-label to clear button for accessibility",
+ "repo": "GauravKarakoti/Weather-API",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-28T10:52:21Z",
+ "updated_at": "2025-07-28T10:59:33Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-28T10:59:33Z",
+ "author_url": "https://github.com/parthparmar07",
+ "author_avatar": "https://avatars.githubusercontent.com/u/176601346?v=4"
+ },
+ {
+ "url": "https://github.com/indra7777/frostiq/pull/7",
+ "title": "docs: update README with comprehensive project information",
+ "repo": "indra7777/frostiq",
+ "level": null,
+ "points": 0,
+ "created_at": "2025-07-23T18:46:25Z",
+ "updated_at": "2025-07-25T03:20:09Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-25T03:20:08Z",
+ "author_url": "https://github.com/parthparmar07",
+ "author_avatar": "https://avatars.githubusercontent.com/u/176601346?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/176601346?v=4",
+ "profile_url": "https://github.com/parthparmar07"
+ },
+ "thilak-r": {
+ "expectedPoints": 30,
+ "currentPoints": 30,
+ "levels": {
+ "level1": 0,
+ "level2": 0,
+ "level3": 3
+ },
+ "prs": [
+ {
+ "url": "https://github.com/VAIBHAVBABELE/vaibhavbabele.github.io/pull/90",
+ "title": "✨ Added Certificate Generation Page with PR Showcase Integration GSSoC25",
+ "repo": "VAIBHAVBABELE/vaibhavbabele.github.io",
+ "level": "level3",
+ "points": 10,
+ "created_at": "2025-07-25T06:21:21Z",
+ "updated_at": "2025-07-25T08:54:54Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-25T08:50:53Z",
+ "author_url": "https://github.com/thilak-r",
+ "author_avatar": "https://avatars.githubusercontent.com/u/95305765?v=4"
+ },
+ {
+ "url": "https://github.com/VAIBHAVBABELE/vaibhavbabele.github.io/pull/74",
+ "title": "✨ Added PR Contributors Showcase Page using GitHub Headers",
+ "repo": "VAIBHAVBABELE/vaibhavbabele.github.io",
+ "level": "level3",
+ "points": 10,
+ "created_at": "2025-07-24T14:35:47Z",
+ "updated_at": "2025-07-24T17:47:29Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-24T17:47:29Z",
+ "author_url": "https://github.com/thilak-r",
+ "author_avatar": "https://avatars.githubusercontent.com/u/95305765?v=4"
+ },
+ {
+ "url": "https://github.com/VAIBHAVBABELE/vaibhavbabele.github.io/pull/64",
+ "title": "[Feature]: Add PR Showcase Page with Contributors, GsSOC ",
+ "repo": "VAIBHAVBABELE/vaibhavbabele.github.io",
+ "level": "level3",
+ "points": 10,
+ "created_at": "2025-07-24T11:03:41Z",
+ "updated_at": "2025-07-24T13:23:51Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-24T13:23:50Z",
+ "author_url": "https://github.com/thilak-r",
+ "author_avatar": "https://avatars.githubusercontent.com/u/95305765?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/95305765?v=4",
+ "profile_url": "https://github.com/thilak-r"
+ },
+ "Aribashakil20": {
+ "expectedPoints": 29,
+ "currentPoints": 29,
+ "levels": {
+ "level1": 2,
+ "level2": 3,
+ "level3": 0
+ },
+ "prs": [
+ {
+ "url": "https://github.com/Abhishek2634/Foodie/pull/174",
+ "title": "✨ Added real-time recipe search feature",
+ "repo": "Abhishek2634/Foodie",
+ "level": "level2",
+ "points": 7,
+ "created_at": "2025-07-29T17:28:26Z",
+ "updated_at": "2025-08-02T11:15:00Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-31T07:43:56Z",
+ "author_url": "https://github.com/Aribashakil20",
+ "author_avatar": "https://avatars.githubusercontent.com/u/182352009?v=4"
+ },
+ {
+ "url": "https://github.com/itsAnimation/AnimateItNow/pull/666",
+ "title": "✨ Added animation preview cards with hover-to-bounce effect",
+ "repo": "itsAnimation/AnimateItNow",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-30T09:00:12Z",
+ "updated_at": "2025-08-02T10:48:42Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-08-02T10:48:29Z",
+ "author_url": "https://github.com/Aribashakil20",
+ "author_avatar": "https://avatars.githubusercontent.com/u/182352009?v=4"
+ },
+ {
+ "url": "https://github.com/Khushi-Nigam/jobportal/pull/78",
+ "title": "Added job filtering by location and experience",
+ "repo": "Khushi-Nigam/jobportal",
+ "level": "level2",
+ "points": 7,
+ "created_at": "2025-07-28T09:39:17Z",
+ "updated_at": "2025-07-29T04:06:49Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-29T04:06:48Z",
+ "author_url": "https://github.com/Aribashakil20",
+ "author_avatar": "https://avatars.githubusercontent.com/u/182352009?v=4"
+ },
+ {
+ "url": "https://github.com/Khushi-Nigam/jobportal/pull/73",
+ "title": "Added job filter feature with location, experience, and job type filters",
+ "repo": "Khushi-Nigam/jobportal",
+ "level": "level2",
+ "points": 7,
+ "created_at": "2025-07-27T19:25:49Z",
+ "updated_at": "2025-07-28T05:05:16Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-28T03:06:06Z",
+ "author_url": "https://github.com/Aribashakil20",
+ "author_avatar": "https://avatars.githubusercontent.com/u/182352009?v=4"
+ },
+ {
+ "url": "https://github.com/pavitraag/Project-Vault/pull/162",
+ "title": "📝 Improve README: Added Screenshots and Tech Stack",
+ "repo": "pavitraag/Project-Vault",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-28T20:21:08Z",
+ "updated_at": "2025-07-29T18:45:02Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-29T05:38:02Z",
+ "author_url": "https://github.com/Aribashakil20",
+ "author_avatar": "https://avatars.githubusercontent.com/u/182352009?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/182352009?v=4",
+ "profile_url": "https://github.com/Aribashakil20"
+ },
+ "ShaluKasera": {
+ "expectedPoints": 29,
+ "currentPoints": 29,
+ "levels": {
+ "level1": 3,
+ "level2": 1,
+ "level3": 1
+ },
+ "prs": [
+ {
+ "url": "https://github.com/Abhishek2634/Foodie/pull/154",
+ "title": "#141 fix the padding and margin in all the pages",
+ "repo": "Abhishek2634/Foodie",
+ "level": "level2",
+ "points": 7,
+ "created_at": "2025-07-28T15:05:39Z",
+ "updated_at": "2025-08-02T11:10:18Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-28T17:01:17Z",
+ "author_url": "https://github.com/ShaluKasera",
+ "author_avatar": "https://avatars.githubusercontent.com/u/170308185?v=4"
+ },
+ {
+ "url": "https://github.com/Abhishek2634/Foodie/pull/143",
+ "title": "108 fixed the margin and padding of home page for both desktop and mo…",
+ "repo": "Abhishek2634/Foodie",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-27T17:03:25Z",
+ "updated_at": "2025-08-02T11:03:44Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-28T05:37:31Z",
+ "author_url": "https://github.com/ShaluKasera",
+ "author_avatar": "https://avatars.githubusercontent.com/u/170308185?v=4"
+ },
+ {
+ "url": "https://github.com/Abhishek2634/Foodie/pull/96",
+ "title": "#92 fix header margin",
+ "repo": "Abhishek2634/Foodie",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-24T16:41:11Z",
+ "updated_at": "2025-08-02T10:57:08Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-24T17:15:18Z",
+ "author_url": "https://github.com/ShaluKasera",
+ "author_avatar": "https://avatars.githubusercontent.com/u/170308185?v=4"
+ },
+ {
+ "url": "https://github.com/Abhishek2634/Foodie/pull/95",
+ "title": "#93",
+ "repo": "Abhishek2634/Foodie",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-24T13:09:23Z",
+ "updated_at": "2025-08-02T10:56:54Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-24T13:14:50Z",
+ "author_url": "https://github.com/ShaluKasera",
+ "author_avatar": "https://avatars.githubusercontent.com/u/170308185?v=4"
+ },
+ {
+ "url": "https://github.com/Abhishek2634/Foodie/pull/75",
+ "title": "add password reset section in loginpopup",
+ "repo": "Abhishek2634/Foodie",
+ "level": "level3",
+ "points": 10,
+ "created_at": "2025-07-23T17:24:14Z",
+ "updated_at": "2025-08-02T10:53:55Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-24T04:21:27Z",
+ "author_url": "https://github.com/ShaluKasera",
+ "author_avatar": "https://avatars.githubusercontent.com/u/170308185?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/170308185?v=4",
+ "profile_url": "https://github.com/ShaluKasera"
+ },
+ "Sujal-Raj": {
+ "expectedPoints": 29,
+ "currentPoints": 29,
+ "levels": {
+ "level1": 2,
+ "level2": 3,
+ "level3": 0
+ },
+ "prs": [
+ {
+ "url": "https://github.com/Adarsh-Chaubey03/TravelGrid/pull/81",
+ "title": "Made the UI consistent in the overall website",
+ "repo": "Adarsh-Chaubey03/TravelGrid",
+ "level": "level2",
+ "points": 7,
+ "created_at": "2025-07-22T15:03:52Z",
+ "updated_at": "2025-07-23T03:19:47Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-23T03:19:47Z",
+ "author_url": "https://github.com/Sujal-Raj",
+ "author_avatar": "https://avatars.githubusercontent.com/u/173145295?v=4"
+ },
+ {
+ "url": "https://github.com/Adarsh-Chaubey03/TravelGrid/pull/76",
+ "title": "Removal of Dual footer from hotels and hotels Booking pages and more better Title",
+ "repo": "Adarsh-Chaubey03/TravelGrid",
+ "level": "level2",
+ "points": 7,
+ "created_at": "2025-07-22T13:51:50Z",
+ "updated_at": "2025-07-22T14:17:16Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-22T14:16:41Z",
+ "author_url": "https://github.com/Sujal-Raj",
+ "author_avatar": "https://avatars.githubusercontent.com/u/173145295?v=4"
+ },
+ {
+ "url": "https://github.com/opensource-society/notesvault/pull/25",
+ "title": "Added dark - Light mode functionality",
+ "repo": "opensource-society/NotesVault",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-21T18:43:25Z",
+ "updated_at": "2025-07-22T04:39:39Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-22T04:39:39Z",
+ "author_url": "https://github.com/Sujal-Raj",
+ "author_avatar": "https://avatars.githubusercontent.com/u/173145295?v=4"
+ },
+ {
+ "url": "https://github.com/opensource-society/notesvault/pull/19",
+ "title": "Added Footer ",
+ "repo": "opensource-society/NotesVault",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-21T17:25:27Z",
+ "updated_at": "2025-07-22T05:07:40Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-21T17:29:47Z",
+ "author_url": "https://github.com/Sujal-Raj",
+ "author_avatar": "https://avatars.githubusercontent.com/u/173145295?v=4"
+ },
+ {
+ "url": "https://github.com/opensource-society/notesvault/pull/15",
+ "title": "Responsive landing page",
+ "repo": "opensource-society/NotesVault",
+ "level": "level2",
+ "points": 7,
+ "created_at": "2025-07-21T16:52:55Z",
+ "updated_at": "2025-07-22T05:06:14Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-21T17:00:21Z",
+ "author_url": "https://github.com/Sujal-Raj",
+ "author_avatar": "https://avatars.githubusercontent.com/u/173145295?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/173145295?v=4",
+ "profile_url": "https://github.com/Sujal-Raj"
+ },
+ "xPREMy": {
+ "expectedPoints": 36,
+ "currentPoints": 29,
+ "levels": {
+ "level1": 2,
+ "level2": 4,
+ "level3": 0
+ },
+ "prs": [
+ {
+ "url": "https://github.com/SGCODEX/Music-Recommendation-Using-Facial-Expressions/pull/56",
+ "title": "added ml based yt recommendation system for yt songs",
+ "repo": "SGCODEX/Music-Recommendation-Using-Facial-Expressions",
+ "level": "level2",
+ "points": 7,
+ "created_at": "2025-07-26T15:02:30Z",
+ "updated_at": "2025-07-31T07:13:50Z",
+ "state": "open",
+ "merged": false,
+ "merged_at": null,
+ "author_url": "https://github.com/xPREMy",
+ "author_avatar": "https://avatars.githubusercontent.com/u/186152676?v=4"
+ },
+ {
+ "url": "https://github.com/SomdattaNag/Security-Screening-System/pull/84",
+ "title": "Feature/export button",
+ "repo": "SomdattaNag/Security-Screening-System",
+ "level": "level2",
+ "points": 7,
+ "created_at": "2025-07-28T03:33:53Z",
+ "updated_at": "2025-07-28T05:37:12Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-28T05:36:22Z",
+ "author_url": "https://github.com/xPREMy",
+ "author_avatar": "https://avatars.githubusercontent.com/u/186152676?v=4"
+ },
+ {
+ "url": "https://github.com/SomdattaNag/Security-Screening-System/pull/83",
+ "title": "Feature/designed a priority based alert mechanism",
+ "repo": "SomdattaNag/Security-Screening-System",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-27T18:42:23Z",
+ "updated_at": "2025-07-28T01:43:24Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-28T01:43:24Z",
+ "author_url": "https://github.com/xPREMy",
+ "author_avatar": "https://avatars.githubusercontent.com/u/186152676?v=4"
+ },
+ {
+ "url": "https://github.com/SomdattaNag/Security-Screening-System/pull/82",
+ "title": "added pause button that also stops detection time",
+ "repo": "SomdattaNag/Security-Screening-System",
+ "level": "level2",
+ "points": 7,
+ "created_at": "2025-07-27T18:05:31Z",
+ "updated_at": "2025-07-28T01:29:02Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-28T01:29:02Z",
+ "author_url": "https://github.com/xPREMy",
+ "author_avatar": "https://avatars.githubusercontent.com/u/186152676?v=4"
+ },
+ {
+ "url": "https://github.com/SomdattaNag/Security-Screening-System/pull/72",
+ "title": "added txt files for saving failed emails and sms",
+ "repo": "SomdattaNag/Security-Screening-System",
+ "level": "level2",
+ "points": 7,
+ "created_at": "2025-07-26T19:18:56Z",
+ "updated_at": "2025-07-27T01:06:40Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-27T00:57:57Z",
+ "author_url": "https://github.com/xPREMy",
+ "author_avatar": "https://avatars.githubusercontent.com/u/186152676?v=4"
+ },
+ {
+ "url": "https://github.com/SomdattaNag/Security-Screening-System/pull/67",
+ "title": "added retries for emails and sms",
+ "repo": "SomdattaNag/Security-Screening-System",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-26T17:47:05Z",
+ "updated_at": "2025-07-27T01:07:34Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-26T18:31:01Z",
+ "author_url": "https://github.com/xPREMy",
+ "author_avatar": "https://avatars.githubusercontent.com/u/186152676?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/186152676?v=4",
+ "profile_url": "https://github.com/xPREMy"
+ },
+ "213sanjana": {
+ "expectedPoints": 28,
+ "currentPoints": 28,
+ "levels": {
+ "level1": 0,
+ "level2": 4,
+ "level3": 0
+ },
+ "prs": [
+ {
+ "url": "https://github.com/Adarsh-Chaubey03/TravelGrid/pull/446",
+ "title": "Add Packing Checklist Feature",
+ "repo": "Adarsh-Chaubey03/TravelGrid",
+ "level": "level2",
+ "points": 7,
+ "created_at": "2025-08-01T18:32:54Z",
+ "updated_at": "2025-08-02T02:50:30Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-08-02T02:50:11Z",
+ "author_url": "https://github.com/213sanjana",
+ "author_avatar": "https://avatars.githubusercontent.com/u/152132715?v=4"
+ },
+ {
+ "url": "https://github.com/Adarsh-Chaubey03/TravelGrid/pull/338",
+ "title": "Add Travel Plan Generator with Download Option",
+ "repo": "Adarsh-Chaubey03/TravelGrid",
+ "level": "level2",
+ "points": 7,
+ "created_at": "2025-07-29T13:40:35Z",
+ "updated_at": "2025-07-30T15:01:27Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-30T15:01:01Z",
+ "author_url": "https://github.com/213sanjana",
+ "author_avatar": "https://avatars.githubusercontent.com/u/152132715?v=4"
+ },
+ {
+ "url": "https://github.com/Adarsh-Chaubey03/TravelGrid/pull/301",
+ "title": "Add Feedback Form Page",
+ "repo": "Adarsh-Chaubey03/TravelGrid",
+ "level": "level2",
+ "points": 7,
+ "created_at": "2025-07-28T16:53:44Z",
+ "updated_at": "2025-07-29T10:47:58Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-29T10:47:58Z",
+ "author_url": "https://github.com/213sanjana",
+ "author_avatar": "https://avatars.githubusercontent.com/u/152132715?v=4"
+ },
+ {
+ "url": "https://github.com/eccentriccoder01/TalkHeal/pull/23",
+ "title": "Enhance TalkHeal User Experience with Theme Color Palette Selector and Dark/Light Mode Toggle",
+ "repo": "eccentriccoder01/TalkHeal",
+ "level": "level2",
+ "points": 7,
+ "created_at": "2025-07-23T10:22:11Z",
+ "updated_at": "2025-08-03T03:53:10Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-23T17:26:55Z",
+ "author_url": "https://github.com/213sanjana",
+ "author_avatar": "https://avatars.githubusercontent.com/u/152132715?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/152132715?v=4",
+ "profile_url": "https://github.com/213sanjana"
+ },
+ "DivyaJain-DataAnalyst": {
+ "expectedPoints": 28,
+ "currentPoints": 28,
+ "levels": {
+ "level1": 7,
+ "level2": 0,
+ "level3": 0
+ },
+ "prs": [
+ {
+ "url": "https://github.com/opensource-society/notesvault/pull/312",
+ "title": "Improved footer with responsive design and hover effects",
+ "repo": "opensource-society/NotesVault",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-25T15:35:34Z",
+ "updated_at": "2025-07-25T16:15:18Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-25T16:15:12Z",
+ "author_url": "https://github.com/DivyaJain-DataAnalyst",
+ "author_avatar": "https://avatars.githubusercontent.com/u/147162320?v=4"
+ },
+ {
+ "url": "https://github.com/Akki-jaiswal/pong-game/pull/33",
+ "title": "🧭 Community Onboarding: Added Code of Conduct and Contribution Guidelines for New Contributors",
+ "repo": "Akki-jaiswal/pong-game",
+ "level": null,
+ "points": 0,
+ "created_at": "2025-07-23T11:58:23Z",
+ "updated_at": "2025-07-23T16:37:27Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-23T16:35:49Z",
+ "author_url": "https://github.com/DivyaJain-DataAnalyst",
+ "author_avatar": "https://avatars.githubusercontent.com/u/147162320?v=4"
+ },
+ {
+ "url": "https://github.com/Menthub-GSSoC/Menthub/pull/33",
+ "title": "Documentation Add CODE OF CONDUCT - Menthub GSSoC'25",
+ "repo": "anugit24/Menthub",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-27T12:50:21Z",
+ "updated_at": "2025-07-30T02:24:32Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-30T02:24:32Z",
+ "author_url": "https://github.com/DivyaJain-DataAnalyst",
+ "author_avatar": "https://avatars.githubusercontent.com/u/147162320?v=4"
+ },
+ {
+ "url": "https://github.com/Dipanita45/HEALCONNECT/pull/27",
+ "title": "Documentation Add Code of Conduct - GSSoC'25",
+ "repo": "Dipanita45/HEALCONNECT",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-24T15:54:32Z",
+ "updated_at": "2025-07-25T07:16:45Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-25T07:16:32Z",
+ "author_url": "https://github.com/DivyaJain-DataAnalyst",
+ "author_avatar": "https://avatars.githubusercontent.com/u/147162320?v=4"
+ },
+ {
+ "url": "https://github.com/pavitraag/Project-Vault/pull/45",
+ "title": "Documentation Add Code of Conduct",
+ "repo": "pavitraag/Project-Vault",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-24T10:25:38Z",
+ "updated_at": "2025-07-29T18:28:22Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-24T12:46:39Z",
+ "author_url": "https://github.com/DivyaJain-DataAnalyst",
+ "author_avatar": "https://avatars.githubusercontent.com/u/147162320?v=4"
+ },
+ {
+ "url": "https://github.com/sahithinandikula/Sneaker-price-prediction/pull/11",
+ "title": "📄 Added CODE_OF_CONDUCT for GSSoC’25 contribution",
+ "repo": "sahithinandikula/Sneaker-price-prediction",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-28T04:27:57Z",
+ "updated_at": "2025-07-28T18:28:58Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-28T18:27:53Z",
+ "author_url": "https://github.com/DivyaJain-DataAnalyst",
+ "author_avatar": "https://avatars.githubusercontent.com/u/147162320?v=4"
+ },
+ {
+ "url": "https://github.com/sampadatiwari30/DeshDarshan/pull/68",
+ "title": "🌄 DeshDarshan Code of Conduct \"Guardians of Heritage, Builders of Unity\"",
+ "repo": "sampadatiwari30/DeshDarshan",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-23T16:24:04Z",
+ "updated_at": "2025-07-24T15:01:48Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-24T15:01:30Z",
+ "author_url": "https://github.com/DivyaJain-DataAnalyst",
+ "author_avatar": "https://avatars.githubusercontent.com/u/147162320?v=4"
+ },
+ {
+ "url": "https://github.com/recodehive/recode-website/pull/197",
+ "title": "Documentation Add CODE OF CONDUCT for GSSoC'25",
+ "repo": "recodehive/recode-website",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-27T03:15:02Z",
+ "updated_at": "2025-07-27T03:21:33Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-27T03:19:35Z",
+ "author_url": "https://github.com/DivyaJain-DataAnalyst",
+ "author_avatar": "https://avatars.githubusercontent.com/u/147162320?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/147162320?v=4",
+ "profile_url": "https://github.com/DivyaJain-DataAnalyst"
+ },
+ "Kashish23092004": {
+ "expectedPoints": 28,
+ "currentPoints": 28,
+ "levels": {
+ "level1": 1,
+ "level2": 2,
+ "level3": 1
+ },
+ "prs": [
+ {
+ "url": "https://github.com/Amarjha01/InfantCareCompass/pull/172",
+ "title": "Integrate React Hot Toast for Toast Notifications with Proper Toaster Placement and Styling",
+ "repo": "Amarjha01/InfantCareCompass",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-08-01T16:08:53Z",
+ "updated_at": "2025-08-03T06:24:17Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-08-01T18:23:50Z",
+ "author_url": "https://github.com/Kashish23092004",
+ "author_avatar": "https://avatars.githubusercontent.com/u/139871425?v=4"
+ },
+ {
+ "url": "https://github.com/BaraniVA/Habitheat/pull/95",
+ "title": "add transition in navbar",
+ "repo": "BaraniVA/Habitheat",
+ "level": "level2",
+ "points": 7,
+ "created_at": "2025-07-30T13:15:19Z",
+ "updated_at": "2025-07-30T17:59:48Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-30T17:56:25Z",
+ "author_url": "https://github.com/Kashish23092004",
+ "author_avatar": "https://avatars.githubusercontent.com/u/139871425?v=4"
+ },
+ {
+ "url": "https://github.com/Richajaishwal0/Trip_assistant/pull/34",
+ "title": " Help Centre frontend (#6)",
+ "repo": "Richajaishwal0/Trip_assistant",
+ "level": "level2",
+ "points": 7,
+ "created_at": "2025-07-26T20:42:53Z",
+ "updated_at": "2025-07-27T09:41:56Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-27T09:41:56Z",
+ "author_url": "https://github.com/Kashish23092004",
+ "author_avatar": "https://avatars.githubusercontent.com/u/139871425?v=4"
+ },
+ {
+ "url": "https://github.com/openml-stack/SentiLog-AI/pull/36",
+ "title": "Modularized backend, added JWT utility, updated signup to return token",
+ "repo": "openml-stack/SentiLog-AI",
+ "level": "level3",
+ "points": 10,
+ "created_at": "2025-07-23T16:43:01Z",
+ "updated_at": "2025-07-24T05:36:05Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-24T05:33:44Z",
+ "author_url": "https://github.com/Kashish23092004",
+ "author_avatar": "https://avatars.githubusercontent.com/u/139871425?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/139871425?v=4",
+ "profile_url": "https://github.com/Kashish23092004"
+ },
+ "zoxilsi": {
+ "expectedPoints": 28,
+ "currentPoints": 28,
+ "levels": {
+ "level1": 2,
+ "level2": 0,
+ "level3": 2
+ },
+ "prs": [
+ {
+ "url": "https://github.com/itsAnimation/AnimateItNow/pull/532",
+ "title": "feat: Add PWA support for installable web app ",
+ "repo": "itsAnimation/AnimateItNow",
+ "level": "level3",
+ "points": 10,
+ "created_at": "2025-07-27T08:04:33Z",
+ "updated_at": "2025-07-27T08:11:48Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-27T08:11:47Z",
+ "author_url": "https://github.com/zoxilsi",
+ "author_avatar": "https://avatars.githubusercontent.com/u/176703579?v=4"
+ },
+ {
+ "url": "https://github.com/Gagandeep-2003/driver-drowsiness-detection-system/pull/47",
+ "title": "Add PWA support for installable web app",
+ "repo": "Gagandeep-2003/driver-drowsiness-detection-system",
+ "level": "level3",
+ "points": 10,
+ "created_at": "2025-07-28T12:57:27Z",
+ "updated_at": "2025-07-29T07:12:57Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-29T07:12:57Z",
+ "author_url": "https://github.com/zoxilsi",
+ "author_avatar": "https://avatars.githubusercontent.com/u/176703579?v=4"
+ },
+ {
+ "url": "https://github.com/VaibhavCodeClub/term/pull/14",
+ "title": "fix: improve OpenAI API key validation reliability and error handling",
+ "repo": "sapatevaibhav/term",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-24T17:27:45Z",
+ "updated_at": "2025-07-26T18:23:03Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-26T18:21:53Z",
+ "author_url": "https://github.com/zoxilsi",
+ "author_avatar": "https://avatars.githubusercontent.com/u/176703579?v=4"
+ },
+ {
+ "url": "https://github.com/VAIBHAVBABELE/vaibhavbabele.github.io/pull/142",
+ "title": "Fix navbar mobile responsive design and eliminate excessive gaps",
+ "repo": "VAIBHAVBABELE/vaibhavbabele.github.io",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-27T07:22:29Z",
+ "updated_at": "2025-07-27T13:11:20Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-27T13:10:21Z",
+ "author_url": "https://github.com/zoxilsi",
+ "author_avatar": "https://avatars.githubusercontent.com/u/176703579?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/176703579?v=4",
+ "profile_url": "https://github.com/zoxilsi"
+ },
+ "Devasy23": {
+ "expectedPoints": 28,
+ "currentPoints": 28,
+ "levels": {
+ "level1": 1,
+ "level2": 2,
+ "level3": 1
+ },
+ "prs": [
+ {
+ "url": "https://github.com/Devasy23/splitwiser/pull/112",
+ "title": "Fix: Adjust Codecov thresholds and paths for backend coverage; improve frontend test handling",
+ "repo": "Devasy23/splitwiser",
+ "level": "level2",
+ "points": 7,
+ "created_at": "2025-08-02T07:14:48Z",
+ "updated_at": "2025-08-02T08:35:13Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-08-02T08:34:49Z",
+ "author_url": "https://github.com/Devasy23",
+ "author_avatar": "https://avatars.githubusercontent.com/u/110348311?v=4"
+ },
+ {
+ "url": "https://github.com/Devasy23/splitwiser/pull/82",
+ "title": "Add pre-commit configuration for code formatting tools",
+ "repo": "Devasy23/splitwiser",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-26T17:38:54Z",
+ "updated_at": "2025-07-26T18:05:30Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-26T17:50:33Z",
+ "author_url": "https://github.com/Devasy23",
+ "author_avatar": "https://avatars.githubusercontent.com/u/110348311?v=4"
+ },
+ {
+ "url": "https://github.com/Devasy23/splitwiser/pull/80",
+ "title": "Update Codecov configuration and remove unsupported test analytics",
+ "repo": "Devasy23/splitwiser",
+ "level": "level2",
+ "points": 7,
+ "created_at": "2025-07-26T15:15:17Z",
+ "updated_at": "2025-07-26T16:06:08Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-26T16:06:04Z",
+ "author_url": "https://github.com/Devasy23",
+ "author_avatar": "https://avatars.githubusercontent.com/u/110348311?v=4"
+ },
+ {
+ "url": "https://github.com/Devasy23/splitwiser/pull/49",
+ "title": "feat(groups): enhance expense splitting options with detailed methods and UI improvements",
+ "repo": "Devasy23/splitwiser",
+ "level": "level3",
+ "points": 10,
+ "created_at": "2025-07-09T11:58:58Z",
+ "updated_at": "2025-07-28T18:58:10Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-28T18:57:20Z",
+ "author_url": "https://github.com/Devasy23",
+ "author_avatar": "https://avatars.githubusercontent.com/u/110348311?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/110348311?v=4",
+ "profile_url": "https://github.com/Devasy23"
+ },
+ "abhishekkalme": {
+ "expectedPoints": 28,
+ "currentPoints": 28,
+ "levels": {
+ "level1": 1,
+ "level2": 2,
+ "level3": 1
+ },
+ "prs": [
+ {
+ "url": "https://github.com/recodehive/recode-website/pull/226",
+ "title": "fix: dark mode support for Sponsors and Blogs pages",
+ "repo": "recodehive/recode-website",
+ "level": "level2",
+ "points": 7,
+ "created_at": "2025-07-28T19:20:41Z",
+ "updated_at": "2025-07-29T01:10:10Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-29T00:18:48Z",
+ "author_url": "https://github.com/abhishekkalme",
+ "author_avatar": "https://avatars.githubusercontent.com/u/206072260?v=4"
+ },
+ {
+ "url": "https://github.com/recodehive/recode-website/pull/210",
+ "title": "Fix: Dark Mode Compatibility for Homepage Section",
+ "repo": "recodehive/recode-website",
+ "level": "level3",
+ "points": 10,
+ "created_at": "2025-07-27T15:22:35Z",
+ "updated_at": "2025-07-28T00:38:10Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-28T00:38:09Z",
+ "author_url": "https://github.com/abhishekkalme",
+ "author_avatar": "https://avatars.githubusercontent.com/u/206072260?v=4"
+ },
+ {
+ "url": "https://github.com/souvikpramanikgit/LearnHub/pull/71",
+ "title": "Fix: resolve JSX tag mismatch in TopNav.tsx",
+ "repo": "souvikpramanikgit/LearnHub",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-24T16:43:59Z",
+ "updated_at": "2025-07-24T17:46:50Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-24T17:46:41Z",
+ "author_url": "https://github.com/abhishekkalme",
+ "author_avatar": "https://avatars.githubusercontent.com/u/206072260?v=4"
+ },
+ {
+ "url": "https://github.com/souvikpramanikgit/LearnHub/pull/65",
+ "title": "Feature/Implement Dark/Light Mode Toggle with ThemeContext",
+ "repo": "souvikpramanikgit/LearnHub",
+ "level": "level2",
+ "points": 7,
+ "created_at": "2025-07-24T08:26:59Z",
+ "updated_at": "2025-07-24T10:15:09Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-24T09:29:18Z",
+ "author_url": "https://github.com/abhishekkalme",
+ "author_avatar": "https://avatars.githubusercontent.com/u/206072260?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/206072260?v=4",
+ "profile_url": "https://github.com/abhishekkalme"
+ },
+ "devajuw": {
+ "expectedPoints": 27,
+ "currentPoints": 27,
+ "levels": {
+ "level1": 5,
+ "level2": 1,
+ "level3": 0
+ },
+ "prs": [
+ {
+ "url": "https://github.com/Abhishek2634/Foodie/pull/109",
+ "title": "Fixed the Scroll Stutter",
+ "repo": "Abhishek2634/Foodie",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-25T10:42:55Z",
+ "updated_at": "2025-08-02T10:59:41Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-26T04:30:56Z",
+ "author_url": "https://github.com/devajuw",
+ "author_avatar": "https://avatars.githubusercontent.com/u/102497378?v=4"
+ },
+ {
+ "url": "https://github.com/Abhishek2634/Foodie/pull/98",
+ "title": "Fixed Text Readability issue in the header",
+ "repo": "Abhishek2634/Foodie",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-24T17:13:07Z",
+ "updated_at": "2025-08-02T10:57:39Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-24T17:51:05Z",
+ "author_url": "https://github.com/devajuw",
+ "author_avatar": "https://avatars.githubusercontent.com/u/102497378?v=4"
+ },
+ {
+ "url": "https://github.com/souvikpramanikgit/LearnHub/pull/112",
+ "title": "Added a new section - Html Text Formatting and curated contents inside it",
+ "repo": "souvikpramanikgit/LearnHub",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-26T15:26:07Z",
+ "updated_at": "2025-07-26T15:30:54Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-26T15:30:46Z",
+ "author_url": "https://github.com/devajuw",
+ "author_avatar": "https://avatars.githubusercontent.com/u/102497378?v=4"
+ },
+ {
+ "url": "https://github.com/souvikpramanikgit/LearnHub/pull/92",
+ "title": "Added HTML block and Inline Section and content inside",
+ "repo": "souvikpramanikgit/LearnHub",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-26T08:58:00Z",
+ "updated_at": "2025-07-26T11:09:25Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-26T09:07:05Z",
+ "author_url": "https://github.com/devajuw",
+ "author_avatar": "https://avatars.githubusercontent.com/u/102497378?v=4"
+ },
+ {
+ "url": "https://github.com/souvikpramanikgit/LearnHub/pull/87",
+ "title": "Added MarkDown content for html Headings page.",
+ "repo": "souvikpramanikgit/LearnHub",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-26T07:57:55Z",
+ "updated_at": "2025-07-27T06:06:25Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-26T08:40:50Z",
+ "author_url": "https://github.com/devajuw",
+ "author_avatar": "https://avatars.githubusercontent.com/u/102497378?v=4"
+ },
+ {
+ "url": "https://github.com/VAIBHAVBABELE/vaibhavbabele.github.io/pull/106",
+ "title": "Optimized the tables for small screens",
+ "repo": "VAIBHAVBABELE/vaibhavbabele.github.io",
+ "level": "level2",
+ "points": 7,
+ "created_at": "2025-07-25T18:36:53Z",
+ "updated_at": "2025-07-26T07:29:17Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-26T07:29:17Z",
+ "author_url": "https://github.com/devajuw",
+ "author_avatar": "https://avatars.githubusercontent.com/u/102497378?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/102497378?v=4",
+ "profile_url": "https://github.com/devajuw"
+ },
+ "ShubhamDeshmuk-h": {
+ "expectedPoints": 27,
+ "currentPoints": 27,
+ "levels": {
+ "level1": 0,
+ "level2": 1,
+ "level3": 2
+ },
+ "prs": [
+ {
+ "url": "https://github.com/Khushi-Nigam/jobportal/pull/83",
+ "title": "updated files structure with new gitignore",
+ "repo": "Khushi-Nigam/jobportal",
+ "level": "level3",
+ "points": 10,
+ "created_at": "2025-07-30T03:56:41Z",
+ "updated_at": "2025-07-30T06:15:25Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-30T04:17:00Z",
+ "author_url": "https://github.com/ShubhamDeshmuk-h",
+ "author_avatar": "https://avatars.githubusercontent.com/u/172282542?v=4"
+ },
+ {
+ "url": "https://github.com/Khushi-Nigam/jobportal/pull/59",
+ "title": "fix/.gitignore #58",
+ "repo": "Khushi-Nigam/jobportal",
+ "level": "level2",
+ "points": 7,
+ "created_at": "2025-07-26T05:19:57Z",
+ "updated_at": "2025-07-26T05:52:26Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-26T05:48:25Z",
+ "author_url": "https://github.com/ShubhamDeshmuk-h",
+ "author_avatar": "https://avatars.githubusercontent.com/u/172282542?v=4"
+ },
+ {
+ "url": "https://github.com/Khushi-Nigam/jobportal/pull/45",
+ "title": "Emailnotification",
+ "repo": "Khushi-Nigam/jobportal",
+ "level": "level3",
+ "points": 10,
+ "created_at": "2025-07-25T02:49:06Z",
+ "updated_at": "2025-07-26T09:14:32Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-25T08:43:02Z",
+ "author_url": "https://github.com/ShubhamDeshmuk-h",
+ "author_avatar": "https://avatars.githubusercontent.com/u/172282542?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/172282542?v=4",
+ "profile_url": "https://github.com/ShubhamDeshmuk-h"
+ },
+ "maddiumashankar": {
+ "expectedPoints": 27,
+ "currentPoints": 27,
+ "levels": {
+ "level1": 0,
+ "level2": 1,
+ "level3": 2
+ },
+ "prs": [
+ {
+ "url": "https://github.com/SurajSG23/PrepBuddy/pull/82",
+ "title": "Added Question of the day feature",
+ "repo": "SurajSG23/PrepBuddy",
+ "level": "level3",
+ "points": 10,
+ "created_at": "2025-07-30T16:49:59Z",
+ "updated_at": "2025-07-31T02:32:33Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-31T02:32:10Z",
+ "author_url": "https://github.com/maddiumashankar",
+ "author_avatar": "https://avatars.githubusercontent.com/u/135106159?v=4"
+ },
+ {
+ "url": "https://github.com/SurajSG23/PrepBuddy/pull/75",
+ "title": "Fixed Profile dropdown autoclose for outside click",
+ "repo": "SurajSG23/PrepBuddy",
+ "level": "level2",
+ "points": 7,
+ "created_at": "2025-07-29T17:59:58Z",
+ "updated_at": "2025-07-30T01:48:32Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-30T01:48:18Z",
+ "author_url": "https://github.com/maddiumashankar",
+ "author_avatar": "https://avatars.githubusercontent.com/u/135106159?v=4"
+ },
+ {
+ "url": "https://github.com/SurajSG23/PrepBuddy/pull/74",
+ "title": "Added preview option for notes",
+ "repo": "SurajSG23/PrepBuddy",
+ "level": "level3",
+ "points": 10,
+ "created_at": "2025-07-29T17:43:13Z",
+ "updated_at": "2025-07-29T17:51:15Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-29T17:50:48Z",
+ "author_url": "https://github.com/maddiumashankar",
+ "author_avatar": "https://avatars.githubusercontent.com/u/135106159?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/135106159?v=4",
+ "profile_url": "https://github.com/maddiumashankar"
+ },
+ "Rashidaga18": {
+ "expectedPoints": 26,
+ "currentPoints": 26,
+ "levels": {
+ "level1": 3,
+ "level2": 2,
+ "level3": 0
+ },
+ "prs": [
+ {
+ "url": "https://github.com/techxninjas2/techxninjas-client/pull/93",
+ "title": "Add some styling and 3D effects in Explore what is inside TechXNinjas Issue #77 Solved ",
+ "repo": "techxninjas/techxninjas-client",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-25T13:38:29Z",
+ "updated_at": "2025-07-25T16:03:05Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-25T16:02:23Z",
+ "author_url": "https://github.com/Rashidaga18",
+ "author_avatar": "https://avatars.githubusercontent.com/u/138892734?v=4"
+ },
+ {
+ "url": "https://github.com/InnoWebLabs/Vehigo/pull/46",
+ "title": "Add some styling and 3D effects in Featured Cars Issue #42 resolved ",
+ "repo": "InnoWebLabs/Vehigo",
+ "level": "level2",
+ "points": 7,
+ "created_at": "2025-07-24T11:05:24Z",
+ "updated_at": "2025-07-25T20:23:21Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-24T12:04:57Z",
+ "author_url": "https://github.com/Rashidaga18",
+ "author_avatar": "https://avatars.githubusercontent.com/u/138892734?v=4"
+ },
+ {
+ "url": "https://github.com/Dipanita45/HEALCONNECT/pull/19",
+ "title": "Improve Footer Section solved Issue #10",
+ "repo": "Dipanita45/HEALCONNECT",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-24T06:22:50Z",
+ "updated_at": "2025-07-24T08:04:35Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-24T08:02:00Z",
+ "author_url": "https://github.com/Rashidaga18",
+ "author_avatar": "https://avatars.githubusercontent.com/u/138892734?v=4"
+ },
+ {
+ "url": "https://github.com/Gnanaashritha/Blogging-Platform-/pull/51",
+ "title": "Enhance \"Recent Posts\" Cards with 3D Hover Effects and Interactive Styling for a Modern UI Feel Issue #36 Resolved ",
+ "repo": "Gnanaashritha/Blogging-Platform-",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-29T12:45:45Z",
+ "updated_at": "2025-07-30T19:25:13Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-30T19:25:13Z",
+ "author_url": "https://github.com/Rashidaga18",
+ "author_avatar": "https://avatars.githubusercontent.com/u/138892734?v=4"
+ },
+ {
+ "url": "https://github.com/Khushi-Nigam/jobportal/pull/17",
+ "title": "Fixed job card layout, added hover effects",
+ "repo": "Khushi-Nigam/jobportal",
+ "level": "level2",
+ "points": 7,
+ "created_at": "2025-07-23T08:54:17Z",
+ "updated_at": "2025-07-24T06:46:12Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-23T14:23:03Z",
+ "author_url": "https://github.com/Rashidaga18",
+ "author_avatar": "https://avatars.githubusercontent.com/u/138892734?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/138892734?v=4",
+ "profile_url": "https://github.com/Rashidaga18"
+ },
+ "rajasmitaa": {
+ "expectedPoints": 26,
+ "currentPoints": 26,
+ "levels": {
+ "level1": 3,
+ "level2": 2,
+ "level3": 0
+ },
+ "prs": [
+ {
+ "url": "https://github.com/itsAnimation/AnimateItNow/pull/322",
+ "title": "Added toggle switch for animated snake cursor and aligned navbar",
+ "repo": "itsAnimation/AnimateItNow",
+ "level": "level2",
+ "points": 7,
+ "created_at": "2025-07-24T14:27:51Z",
+ "updated_at": "2025-07-24T19:20:02Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-24T19:20:02Z",
+ "author_url": "https://github.com/rajasmitaa",
+ "author_avatar": "https://avatars.githubusercontent.com/u/146310937?v=4"
+ },
+ {
+ "url": "https://github.com/InnoWebLabs/Vehigo/pull/70",
+ "title": "Fix: Added dark mode feature",
+ "repo": "InnoWebLabs/Vehigo",
+ "level": "level2",
+ "points": 7,
+ "created_at": "2025-07-25T13:33:15Z",
+ "updated_at": "2025-07-25T20:28:03Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-25T13:34:23Z",
+ "author_url": "https://github.com/rajasmitaa",
+ "author_avatar": "https://avatars.githubusercontent.com/u/146310937?v=4"
+ },
+ {
+ "url": "https://github.com/Kritika75/TheCawnporeMag.github.io/pull/33",
+ "title": "Fix: Navbar style and grammar improvements",
+ "repo": "Kritika75/TheCawnporeMag.github.io",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-22T15:23:05Z",
+ "updated_at": "2025-07-23T15:11:38Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-23T15:11:38Z",
+ "author_url": "https://github.com/rajasmitaa",
+ "author_avatar": "https://avatars.githubusercontent.com/u/146310937?v=4"
+ },
+ {
+ "url": "https://github.com/rutikakengal/100DAYS_OF_100WEBPROJECTS/pull/270",
+ "title": "Added Mood Timer project for Day 17",
+ "repo": "rutikakengal/100DAYS_OF_100WEBPROJECTS",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-27T17:18:21Z",
+ "updated_at": "2025-07-28T08:45:47Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-28T08:45:06Z",
+ "author_url": "https://github.com/rajasmitaa",
+ "author_avatar": "https://avatars.githubusercontent.com/u/146310937?v=4"
+ },
+ {
+ "url": "https://github.com/VAIBHAVBABELE/vaibhavbabele.github.io/pull/124",
+ "title": "Added snake trail cursor animation with mobile detection",
+ "repo": "VAIBHAVBABELE/vaibhavbabele.github.io",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-26T14:02:44Z",
+ "updated_at": "2025-07-27T13:48:49Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-27T13:48:20Z",
+ "author_url": "https://github.com/rajasmitaa",
+ "author_avatar": "https://avatars.githubusercontent.com/u/146310937?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/146310937?v=4",
+ "profile_url": "https://github.com/rajasmitaa"
+ },
+ "SahajDang": {
+ "expectedPoints": 26,
+ "currentPoints": 26,
+ "levels": {
+ "level1": 3,
+ "level2": 2,
+ "level3": 0
+ },
+ "prs": [
+ {
+ "url": "https://github.com/itsAnimation/AnimateItNow/pull/302",
+ "title": "Fix: Update footer background to match dark mode aesthetics",
+ "repo": "itsAnimation/AnimateItNow",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-24T10:16:29Z",
+ "updated_at": "2025-07-24T19:31:40Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-24T19:31:40Z",
+ "author_url": "https://github.com/SahajDang",
+ "author_avatar": "https://avatars.githubusercontent.com/u/115211400?v=4"
+ },
+ {
+ "url": "https://github.com/itsAnimation/AnimateItNow/pull/286",
+ "title": "Fixed the color issue in Dark mode in contact page",
+ "repo": "itsAnimation/AnimateItNow",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-24T05:36:03Z",
+ "updated_at": "2025-07-24T19:44:56Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-24T19:44:56Z",
+ "author_url": "https://github.com/SahajDang",
+ "author_avatar": "https://avatars.githubusercontent.com/u/115211400?v=4"
+ },
+ {
+ "url": "https://github.com/itsAnimation/AnimateItNow/pull/221",
+ "title": "Fix: Correct GitHub Contributors API Endpoint for Live Data",
+ "repo": "itsAnimation/AnimateItNow",
+ "level": "level2",
+ "points": 7,
+ "created_at": "2025-07-23T14:02:15Z",
+ "updated_at": "2025-07-23T20:17:42Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-23T20:17:42Z",
+ "author_url": "https://github.com/SahajDang",
+ "author_avatar": "https://avatars.githubusercontent.com/u/115211400?v=4"
+ },
+ {
+ "url": "https://github.com/itsAnimation/AnimateItNow/pull/205",
+ "title": "Fix: Footer layout issue on mobile view",
+ "repo": "itsAnimation/AnimateItNow",
+ "level": "level2",
+ "points": 7,
+ "created_at": "2025-07-23T12:21:33Z",
+ "updated_at": "2025-07-23T12:30:52Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-23T12:30:52Z",
+ "author_url": "https://github.com/SahajDang",
+ "author_avatar": "https://avatars.githubusercontent.com/u/115211400?v=4"
+ },
+ {
+ "url": "https://github.com/itsAnimation/AnimateItNow/pull/91",
+ "title": "Fix: Navbar restacking issue on mobile",
+ "repo": "itsAnimation/AnimateItNow",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-22T15:35:50Z",
+ "updated_at": "2025-07-22T20:52:40Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-22T20:52:40Z",
+ "author_url": "https://github.com/SahajDang",
+ "author_avatar": "https://avatars.githubusercontent.com/u/115211400?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/115211400?v=4",
+ "profile_url": "https://github.com/SahajDang"
+ },
+ "RAGHU1242": {
+ "expectedPoints": 26,
+ "currentPoints": 26,
+ "levels": {
+ "level1": 4,
+ "level2": 0,
+ "level3": 1
+ },
+ "prs": [
+ {
+ "url": "https://github.com/Ayushjhawar8/Flavor-ai/pull/91",
+ "title": "✨ Add Favorite Button and Favorites Page with Local Storage Support",
+ "repo": "Ayushjhawar8/Flavor-ai",
+ "level": "level3",
+ "points": 10,
+ "created_at": "2025-07-27T16:47:58Z",
+ "updated_at": "2025-08-01T14:49:26Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-28T08:47:33Z",
+ "author_url": "https://github.com/RAGHU1242",
+ "author_avatar": "https://avatars.githubusercontent.com/u/162527757?v=4"
+ },
+ {
+ "url": "https://github.com/Bavanetha27/Refixly/pull/29",
+ "title": " Add Glowing Effect to Buttons and Cards #21",
+ "repo": "Bavanetha27/Refixly",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-26T14:00:58Z",
+ "updated_at": "2025-08-01T10:49:59Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-29T09:40:21Z",
+ "author_url": "https://github.com/RAGHU1242",
+ "author_avatar": "https://avatars.githubusercontent.com/u/162527757?v=4"
+ },
+ {
+ "url": "https://github.com/sampadatiwari30/DeshDarshan/pull/128",
+ "title": "Enhance state cards: show description on hover for cleaner UI",
+ "repo": "sampadatiwari30/DeshDarshan",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-25T18:31:52Z",
+ "updated_at": "2025-07-25T19:50:31Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-25T19:50:31Z",
+ "author_url": "https://github.com/RAGHU1242",
+ "author_avatar": "https://avatars.githubusercontent.com/u/162527757?v=4"
+ },
+ {
+ "url": "https://github.com/Agarwalvidu/ArdhNaariShakti_Taara_Frontend/pull/84",
+ "title": "Fix header",
+ "repo": "Agarwalvidu/ArdhNaariShakti_Taara_Frontend",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-31T18:16:35Z",
+ "updated_at": "2025-08-01T05:32:20Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-08-01T05:32:20Z",
+ "author_url": "https://github.com/RAGHU1242",
+ "author_avatar": "https://avatars.githubusercontent.com/u/162527757?v=4"
+ },
+ {
+ "url": "https://github.com/Agarwalvidu/ArdhNaariShakti_Taara_Frontend/pull/80",
+ "title": "Fix: Added navigation links between Register and Login pages (#20)",
+ "repo": "Agarwalvidu/ArdhNaariShakti_Taara_Frontend",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-31T14:20:56Z",
+ "updated_at": "2025-07-31T17:13:43Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-31T17:13:43Z",
+ "author_url": "https://github.com/RAGHU1242",
+ "author_avatar": "https://avatars.githubusercontent.com/u/162527757?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/162527757?v=4",
+ "profile_url": "https://github.com/RAGHU1242"
+ },
+ "supriya46788": {
+ "expectedPoints": 26,
+ "currentPoints": 26,
+ "levels": {
+ "level1": 3,
+ "level2": 2,
+ "level3": 0
+ },
+ "prs": [
+ {
+ "url": "https://github.com/sampadatiwari30/DeshDarshan/pull/167",
+ "title": "Added styling ",
+ "repo": "sampadatiwari30/DeshDarshan",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-27T08:35:59Z",
+ "updated_at": "2025-07-29T02:22:21Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-29T02:22:04Z",
+ "author_url": "https://github.com/supriya46788",
+ "author_avatar": "https://avatars.githubusercontent.com/u/155548316?v=4"
+ },
+ {
+ "url": "https://github.com/sampadatiwari30/DeshDarshan/pull/150",
+ "title": "Added Different Regional languages",
+ "repo": "sampadatiwari30/DeshDarshan",
+ "level": "level2",
+ "points": 7,
+ "created_at": "2025-07-26T16:24:44Z",
+ "updated_at": "2025-07-27T06:35:26Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-27T06:34:07Z",
+ "author_url": "https://github.com/supriya46788",
+ "author_avatar": "https://avatars.githubusercontent.com/u/155548316?v=4"
+ },
+ {
+ "url": "https://github.com/sampadatiwari30/DeshDarshan/pull/133",
+ "title": "Fixed Hamburger mobile nav functionality",
+ "repo": "sampadatiwari30/DeshDarshan",
+ "level": "level2",
+ "points": 7,
+ "created_at": "2025-07-26T02:16:44Z",
+ "updated_at": "2025-07-26T04:22:56Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-26T04:22:36Z",
+ "author_url": "https://github.com/supriya46788",
+ "author_avatar": "https://avatars.githubusercontent.com/u/155548316?v=4"
+ },
+ {
+ "url": "https://github.com/sampadatiwari30/DeshDarshan/pull/105",
+ "title": "Fix: updated contact form functionality #11",
+ "repo": "sampadatiwari30/DeshDarshan",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-25T02:37:16Z",
+ "updated_at": "2025-07-25T03:03:21Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-25T03:02:49Z",
+ "author_url": "https://github.com/supriya46788",
+ "author_avatar": "https://avatars.githubusercontent.com/u/155548316?v=4"
+ },
+ {
+ "url": "https://github.com/saumyayadav25/cpp-dsa-sheet-testing/pull/14",
+ "title": "Fixed: Filter Section Dropdown Items Are Invisible Unless Hovered ",
+ "repo": "saumyayadav25/cpp-dsa-sheet-testing",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-23T09:36:45Z",
+ "updated_at": "2025-07-23T11:34:31Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-23T11:34:31Z",
+ "author_url": "https://github.com/supriya46788",
+ "author_avatar": "https://avatars.githubusercontent.com/u/155548316?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/155548316?v=4",
+ "profile_url": "https://github.com/supriya46788"
+ },
+ "kanak227": {
+ "expectedPoints": 25,
+ "currentPoints": 25,
+ "levels": {
+ "level1": 1,
+ "level2": 3,
+ "level3": 0
+ },
+ "prs": [
+ {
+ "url": "https://github.com/Adarsh-Chaubey03/TravelGrid/pull/245",
+ "title": "added .env example file and made the naming convention uniform",
+ "repo": "Adarsh-Chaubey03/TravelGrid",
+ "level": "level2",
+ "points": 7,
+ "created_at": "2025-07-27T13:49:12Z",
+ "updated_at": "2025-07-28T06:15:43Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-28T06:15:24Z",
+ "author_url": "https://github.com/kanak227",
+ "author_avatar": "https://avatars.githubusercontent.com/u/171213649?v=4"
+ },
+ {
+ "url": "https://github.com/Adarsh-Chaubey03/TravelGrid/pull/198",
+ "title": "Enhanced footer along with minor UI fixes in the website",
+ "repo": "Adarsh-Chaubey03/TravelGrid",
+ "level": "level2",
+ "points": 7,
+ "created_at": "2025-07-26T05:01:51Z",
+ "updated_at": "2025-07-26T14:42:05Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-26T14:42:05Z",
+ "author_url": "https://github.com/kanak227",
+ "author_avatar": "https://avatars.githubusercontent.com/u/171213649?v=4"
+ },
+ {
+ "url": "https://github.com/Adarsh-Chaubey03/TravelGrid/pull/155",
+ "title": "Update Signup, TicketBooking, and App components",
+ "repo": "Adarsh-Chaubey03/TravelGrid",
+ "level": "level2",
+ "points": 7,
+ "created_at": "2025-07-24T15:11:25Z",
+ "updated_at": "2025-07-25T05:59:45Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-25T05:59:45Z",
+ "author_url": "https://github.com/kanak227",
+ "author_avatar": "https://avatars.githubusercontent.com/u/171213649?v=4"
+ },
+ {
+ "url": "https://github.com/Amarjha01/InfantCareCompass/pull/153",
+ "title": "added back to home button in register pages",
+ "repo": "Amarjha01/InfantCareCompass",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-29T21:11:20Z",
+ "updated_at": "2025-08-03T04:43:11Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-30T03:47:05Z",
+ "author_url": "https://github.com/kanak227",
+ "author_avatar": "https://avatars.githubusercontent.com/u/171213649?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/171213649?v=4",
+ "profile_url": "https://github.com/kanak227"
+ },
+ "HemantSharma456": {
+ "expectedPoints": 25,
+ "currentPoints": 25,
+ "levels": {
+ "level1": 2,
+ "level2": 1,
+ "level3": 1
+ },
+ "prs": [
+ {
+ "url": "https://github.com/chandannekya/Clean-Breath/pull/18",
+ "title": "Feature extended user schema ",
+ "repo": "chandannekya/Clean-Breath",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-22T06:27:09Z",
+ "updated_at": "2025-07-23T15:08:13Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-23T15:08:12Z",
+ "author_url": "https://github.com/HemantSharma456",
+ "author_avatar": "https://avatars.githubusercontent.com/u/171472719?v=4"
+ },
+ {
+ "url": "https://github.com/chandannekya/Clean-Breath/pull/16",
+ "title": "Redesigned Contact Us page: improved layout, responsiveness, and acce…",
+ "repo": "chandannekya/Clean-Breath",
+ "level": "level3",
+ "points": 10,
+ "created_at": "2025-07-22T06:08:43Z",
+ "updated_at": "2025-07-23T14:02:11Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-23T14:01:59Z",
+ "author_url": "https://github.com/HemantSharma456",
+ "author_avatar": "https://avatars.githubusercontent.com/u/171472719?v=4"
+ },
+ {
+ "url": "https://github.com/MeghanaDG04/RECIPEDIA/pull/29",
+ "title": "added some margin to auth container so that collision is prevented w",
+ "repo": "MeghanaDG04/Recipedia",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-23T17:14:42Z",
+ "updated_at": "2025-07-24T13:28:08Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-24T13:28:08Z",
+ "author_url": "https://github.com/HemantSharma456",
+ "author_avatar": "https://avatars.githubusercontent.com/u/171472719?v=4"
+ },
+ {
+ "url": "https://github.com/MeghanaDG04/RECIPEDIA/pull/13",
+ "title": "added error page and 404 not found page",
+ "repo": "MeghanaDG04/Recipedia",
+ "level": "level2",
+ "points": 7,
+ "created_at": "2025-07-22T12:13:22Z",
+ "updated_at": "2025-07-23T14:37:21Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-23T13:59:36Z",
+ "author_url": "https://github.com/HemantSharma456",
+ "author_avatar": "https://avatars.githubusercontent.com/u/171472719?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/171472719?v=4",
+ "profile_url": "https://github.com/HemantSharma456"
+ },
+ "NiteshCodes7": {
+ "expectedPoints": 25,
+ "currentPoints": 25,
+ "levels": {
+ "level1": 2,
+ "level2": 1,
+ "level3": 1
+ },
+ "prs": [
+ {
+ "url": "https://github.com/saumyayadav25/cpp-dsa-sheet-testing/pull/105",
+ "title": "Update route.ts",
+ "repo": "saumyayadav25/cpp-dsa-sheet-testing",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-30T14:41:02Z",
+ "updated_at": "2025-07-30T14:41:52Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-30T14:41:52Z",
+ "author_url": "https://github.com/NiteshCodes7",
+ "author_avatar": "https://avatars.githubusercontent.com/u/142765122?v=4"
+ },
+ {
+ "url": "https://github.com/saumyayadav25/cpp-dsa-sheet-testing/pull/76",
+ "title": "Changed Contributing.md",
+ "repo": "saumyayadav25/cpp-dsa-sheet-testing",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-27T07:23:55Z",
+ "updated_at": "2025-07-27T07:54:11Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-27T07:54:11Z",
+ "author_url": "https://github.com/NiteshCodes7",
+ "author_avatar": "https://avatars.githubusercontent.com/u/142765122?v=4"
+ },
+ {
+ "url": "https://github.com/saumyayadav25/cpp-dsa-sheet-testing/pull/75",
+ "title": "Refractor File directory",
+ "repo": "saumyayadav25/cpp-dsa-sheet-testing",
+ "level": "level2",
+ "points": 7,
+ "created_at": "2025-07-27T06:50:04Z",
+ "updated_at": "2025-07-27T07:08:36Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-27T07:07:09Z",
+ "author_url": "https://github.com/NiteshCodes7",
+ "author_avatar": "https://avatars.githubusercontent.com/u/142765122?v=4"
+ },
+ {
+ "url": "https://github.com/saumyayadav25/cpp-dsa-sheet-testing/pull/69",
+ "title": "Environment Variable Setup & OAuth Configuration",
+ "repo": "saumyayadav25/cpp-dsa-sheet-testing",
+ "level": "level3",
+ "points": 10,
+ "created_at": "2025-07-26T20:56:33Z",
+ "updated_at": "2025-07-29T15:09:07Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-27T05:29:33Z",
+ "author_url": "https://github.com/NiteshCodes7",
+ "author_avatar": "https://avatars.githubusercontent.com/u/142765122?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/142765122?v=4",
+ "profile_url": "https://github.com/NiteshCodes7"
+ },
+ "VidhanThakur09": {
+ "expectedPoints": 24,
+ "currentPoints": 24,
+ "levels": {
+ "level1": 0,
+ "level2": 2,
+ "level3": 1
+ },
+ "prs": [
+ {
+ "url": "https://github.com/Abhishek2634/Foodie/pull/14",
+ "title": "readme-contribution",
+ "repo": "Abhishek2634/Foodie",
+ "level": "level2",
+ "points": 7,
+ "created_at": "2025-07-22T07:24:35Z",
+ "updated_at": "2025-08-02T10:46:57Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-22T07:38:49Z",
+ "author_url": "https://github.com/VidhanThakur09",
+ "author_avatar": "https://avatars.githubusercontent.com/u/147980454?v=4"
+ },
+ {
+ "url": "https://github.com/Adarsh-Chaubey03/TravelGrid/pull/106",
+ "title": "Added Privacy & Terms Pages",
+ "repo": "Adarsh-Chaubey03/TravelGrid",
+ "level": "level2",
+ "points": 7,
+ "created_at": "2025-07-23T07:52:03Z",
+ "updated_at": "2025-07-24T03:58:46Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-24T03:58:45Z",
+ "author_url": "https://github.com/VidhanThakur09",
+ "author_avatar": "https://avatars.githubusercontent.com/u/147980454?v=4"
+ },
+ {
+ "url": "https://github.com/Adarsh-Chaubey03/TravelGrid/pull/44",
+ "title": "Add Travel Packages Page and Hotel Booking Page with modern UI",
+ "repo": "Adarsh-Chaubey03/TravelGrid",
+ "level": "level3",
+ "points": 10,
+ "created_at": "2025-07-22T08:01:13Z",
+ "updated_at": "2025-07-22T08:56:34Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-22T08:56:34Z",
+ "author_url": "https://github.com/VidhanThakur09",
+ "author_avatar": "https://avatars.githubusercontent.com/u/147980454?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/147980454?v=4",
+ "profile_url": "https://github.com/VidhanThakur09"
+ },
+ "shivanirai08": {
+ "expectedPoints": 24,
+ "currentPoints": 24,
+ "levels": {
+ "level1": 0,
+ "level2": 2,
+ "level3": 1
+ },
+ "prs": [
+ {
+ "url": "https://github.com/Adarsh-Chaubey03/TravelGrid/pull/261",
+ "title": "Package details feature",
+ "repo": "Adarsh-Chaubey03/TravelGrid",
+ "level": "level3",
+ "points": 10,
+ "created_at": "2025-07-27T20:31:29Z",
+ "updated_at": "2025-07-28T10:02:38Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-28T10:02:37Z",
+ "author_url": "https://github.com/shivanirai08",
+ "author_avatar": "https://avatars.githubusercontent.com/u/175641075?v=4"
+ },
+ {
+ "url": "https://github.com/Bavanetha27/Refixly/pull/52",
+ "title": "Added Tutorial Page + Improved Scan & Detection UX",
+ "repo": "Bavanetha27/Refixly",
+ "level": "level2",
+ "points": 7,
+ "created_at": "2025-07-31T13:41:21Z",
+ "updated_at": "2025-08-01T10:52:52Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-08-01T10:52:51Z",
+ "author_url": "https://github.com/shivanirai08",
+ "author_avatar": "https://avatars.githubusercontent.com/u/175641075?v=4"
+ },
+ {
+ "url": "https://github.com/BhaktiMore18/Pouranik/pull/104",
+ "title": "Book Community Feature — Community & Club Pages",
+ "repo": "BhaktiMore18/Pouranik",
+ "level": "level2",
+ "points": 7,
+ "created_at": "2025-07-29T14:51:06Z",
+ "updated_at": "2025-08-01T08:49:01Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-30T14:59:57Z",
+ "author_url": "https://github.com/shivanirai08",
+ "author_avatar": "https://avatars.githubusercontent.com/u/175641075?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/175641075?v=4",
+ "profile_url": "https://github.com/shivanirai08"
+ },
+ "Muskanagrawal2005": {
+ "expectedPoints": 24,
+ "currentPoints": 24,
+ "levels": {
+ "level1": 0,
+ "level2": 2,
+ "level3": 1
+ },
+ "prs": [
+ {
+ "url": "https://github.com/Adarsh-Chaubey03/TravelGrid/pull/27",
+ "title": "Added the ticket booking page with similar UI",
+ "repo": "Adarsh-Chaubey03/TravelGrid",
+ "level": "level2",
+ "points": 7,
+ "created_at": "2025-07-21T18:32:27Z",
+ "updated_at": "2025-07-22T06:05:30Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-22T06:05:30Z",
+ "author_url": "https://github.com/Muskanagrawal2005",
+ "author_avatar": "https://avatars.githubusercontent.com/u/148907884?v=4"
+ },
+ {
+ "url": "https://github.com/TanmayKalra09/SmartLog/pull/23",
+ "title": "Added the Habit tracker page",
+ "repo": "TanmayKalra09/SmartLog",
+ "level": "level3",
+ "points": 10,
+ "created_at": "2025-07-22T07:21:13Z",
+ "updated_at": "2025-07-26T15:27:04Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-23T10:31:28Z",
+ "author_url": "https://github.com/Muskanagrawal2005",
+ "author_avatar": "https://avatars.githubusercontent.com/u/148907884?v=4"
+ },
+ {
+ "url": "https://github.com/openml-stack/SentiLog-AI/pull/7",
+ "title": "Enhanced the UI for the home page",
+ "repo": "openml-stack/SentiLog-AI",
+ "level": "level2",
+ "points": 7,
+ "created_at": "2025-07-21T19:44:20Z",
+ "updated_at": "2025-07-22T06:10:07Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-22T06:09:25Z",
+ "author_url": "https://github.com/Muskanagrawal2005",
+ "author_avatar": "https://avatars.githubusercontent.com/u/148907884?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/148907884?v=4",
+ "profile_url": "https://github.com/Muskanagrawal2005"
+ },
+ "snehaaadn": {
+ "expectedPoints": 24,
+ "currentPoints": 24,
+ "levels": {
+ "level1": 0,
+ "level2": 2,
+ "level3": 1
+ },
+ "prs": [
+ {
+ "url": "https://github.com/itsAnimation/AnimateItNow/pull/757",
+ "title": "Added the same navbar all over the templates",
+ "repo": "itsAnimation/AnimateItNow",
+ "level": "level2",
+ "points": 7,
+ "created_at": "2025-08-01T20:12:39Z",
+ "updated_at": "2025-08-02T06:13:54Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-08-02T06:13:54Z",
+ "author_url": "https://github.com/snehaaadn",
+ "author_avatar": "https://avatars.githubusercontent.com/u/155845591?v=4"
+ },
+ {
+ "url": "https://github.com/itsAnimation/AnimateItNow/pull/676",
+ "title": "Added 20 animated button designs in Templates Gallery",
+ "repo": "itsAnimation/AnimateItNow",
+ "level": "level3",
+ "points": 10,
+ "created_at": "2025-07-30T18:06:28Z",
+ "updated_at": "2025-07-30T19:10:48Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-30T19:10:48Z",
+ "author_url": "https://github.com/snehaaadn",
+ "author_avatar": "https://avatars.githubusercontent.com/u/155845591?v=4"
+ },
+ {
+ "url": "https://github.com/itsAnimation/AnimateItNow/pull/417",
+ "title": "Added more designs and show code button in glassmorphism profile card",
+ "repo": "itsAnimation/AnimateItNow",
+ "level": "level2",
+ "points": 7,
+ "created_at": "2025-07-25T15:46:09Z",
+ "updated_at": "2025-07-25T16:13:40Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-25T16:13:39Z",
+ "author_url": "https://github.com/snehaaadn",
+ "author_avatar": "https://avatars.githubusercontent.com/u/155845591?v=4"
+ },
+ {
+ "url": "https://github.com/Mujtabaa07/coffeeShop/pull/465",
+ "title": "Fixed the scrolling navigation of buttons to respective sections",
+ "repo": "Mujtabaa07/coffeeShop",
+ "level": null,
+ "points": 0,
+ "created_at": "2025-07-24T08:11:41Z",
+ "updated_at": "2025-07-24T15:59:51Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-24T15:59:41Z",
+ "author_url": "https://github.com/snehaaadn",
+ "author_avatar": "https://avatars.githubusercontent.com/u/155845591?v=4"
+ },
+ {
+ "url": "https://github.com/Mujtabaa07/coffeeShop/pull/463",
+ "title": "Improved UI of social media icons on hover in the footer",
+ "repo": "Mujtabaa07/coffeeShop",
+ "level": null,
+ "points": 0,
+ "created_at": "2025-07-24T06:59:17Z",
+ "updated_at": "2025-07-24T16:00:37Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-24T16:00:29Z",
+ "author_url": "https://github.com/snehaaadn",
+ "author_avatar": "https://avatars.githubusercontent.com/u/155845591?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/155845591?v=4",
+ "profile_url": "https://github.com/snehaaadn"
+ },
+ "shagunkimothi": {
+ "expectedPoints": 31,
+ "currentPoints": 24,
+ "levels": {
+ "level1": 1,
+ "level2": 1,
+ "level3": 2
+ },
+ "prs": [
+ {
+ "url": "https://github.com/itsAnimation/AnimateItNow/pull/694",
+ "title": "Add template for 2D CSS transforms",
+ "repo": "itsAnimation/AnimateItNow",
+ "level": "level3",
+ "points": 10,
+ "created_at": "2025-07-31T09:09:45Z",
+ "updated_at": "2025-08-02T10:56:15Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-08-02T10:56:15Z",
+ "author_url": "https://github.com/shagunkimothi",
+ "author_avatar": "https://avatars.githubusercontent.com/u/149186971?v=4"
+ },
+ {
+ "url": "https://github.com/itsAnimation/AnimateItNow/pull/637",
+ "title": "Add template for 2D CSS transforms",
+ "repo": "itsAnimation/AnimateItNow",
+ "level": "level2",
+ "points": 7,
+ "created_at": "2025-07-29T08:00:22Z",
+ "updated_at": "2025-07-30T19:58:13Z",
+ "state": "closed",
+ "merged": false,
+ "merged_at": null,
+ "author_url": "https://github.com/shagunkimothi",
+ "author_avatar": "https://avatars.githubusercontent.com/u/149186971?v=4"
+ },
+ {
+ "url": "https://github.com/itsAnimation/AnimateItNow/pull/537",
+ "title": "Enhance tooltip feature",
+ "repo": "itsAnimation/AnimateItNow",
+ "level": "level3",
+ "points": 10,
+ "created_at": "2025-07-27T09:12:08Z",
+ "updated_at": "2025-07-27T16:08:47Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-27T16:08:47Z",
+ "author_url": "https://github.com/shagunkimothi",
+ "author_avatar": "https://avatars.githubusercontent.com/u/149186971?v=4"
+ },
+ {
+ "url": "https://github.com/souvikpramanikgit/LearnHub/pull/67",
+ "title": "Added footer to main pages",
+ "repo": "souvikpramanikgit/LearnHub",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-24T10:41:24Z",
+ "updated_at": "2025-07-26T07:14:20Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-25T18:21:53Z",
+ "author_url": "https://github.com/shagunkimothi",
+ "author_avatar": "https://avatars.githubusercontent.com/u/149186971?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/149186971?v=4",
+ "profile_url": "https://github.com/shagunkimothi"
+ },
+ "Reetkapoor": {
+ "expectedPoints": 24,
+ "currentPoints": 24,
+ "levels": {
+ "level1": 0,
+ "level2": 2,
+ "level3": 1
+ },
+ "prs": [
+ {
+ "url": "https://github.com/MAVERICK-VF142/Drx.MediMate/pull/89",
+ "title": "✨ Add Smart Prescription Validator with Gemini AI ",
+ "repo": "MAVERICK-VF142/Drx.MediMate",
+ "level": "level2",
+ "points": 7,
+ "created_at": "2025-07-26T10:23:39Z",
+ "updated_at": "2025-07-26T14:35:02Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-26T14:34:23Z",
+ "author_url": "https://github.com/Reetkapoor",
+ "author_avatar": "https://avatars.githubusercontent.com/u/138289146?v=4"
+ },
+ {
+ "url": "https://github.com/PRIYANSHU2026/DataSentience-AIML/pull/298",
+ "title": "Multilingual Symptom Checker ",
+ "repo": "PRIYANSHU2026/DataSentience-AIML",
+ "level": "level3",
+ "points": 10,
+ "created_at": "2025-07-31T10:26:55Z",
+ "updated_at": "2025-07-31T18:42:50Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-31T18:41:24Z",
+ "author_url": "https://github.com/Reetkapoor",
+ "author_avatar": "https://avatars.githubusercontent.com/u/138289146?v=4"
+ },
+ {
+ "url": "https://github.com/eccentriccoder01/TalkHeal/pull/20",
+ "title": "Added persistent memory support for chat ",
+ "repo": "eccentriccoder01/TalkHeal",
+ "level": "level2",
+ "points": 7,
+ "created_at": "2025-07-22T23:47:49Z",
+ "updated_at": "2025-08-03T03:53:15Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-23T18:16:39Z",
+ "author_url": "https://github.com/Reetkapoor",
+ "author_avatar": "https://avatars.githubusercontent.com/u/138289146?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/138289146?v=4",
+ "profile_url": "https://github.com/Reetkapoor"
+ },
+ "suryssss": {
+ "expectedPoints": 24,
+ "currentPoints": 24,
+ "levels": {
+ "level1": 1,
+ "level2": 0,
+ "level3": 2
+ },
+ "prs": [
+ {
+ "url": "https://github.com/BaraniVA/Habitheat/pull/97",
+ "title": "resolved the conflits done adding animations",
+ "repo": "BaraniVA/Habitheat",
+ "level": "level3",
+ "points": 10,
+ "created_at": "2025-07-30T14:39:25Z",
+ "updated_at": "2025-07-30T17:01:14Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-30T16:42:10Z",
+ "author_url": "https://github.com/suryssss",
+ "author_avatar": "https://avatars.githubusercontent.com/u/176365924?v=4"
+ },
+ {
+ "url": "https://github.com/RamakrushnaBiswal/HonorBox/pull/6",
+ "title": "Improved UI design and enhance user experience",
+ "repo": "RamakrushnaBiswal/HonorBox",
+ "level": "level3",
+ "points": 10,
+ "created_at": "2025-07-23T07:02:36Z",
+ "updated_at": "2025-07-28T15:24:25Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-24T03:12:16Z",
+ "author_url": "https://github.com/suryssss",
+ "author_avatar": "https://avatars.githubusercontent.com/u/176365924?v=4"
+ },
+ {
+ "url": "https://github.com/rutikakengal/100DAYS_OF_100WEBPROJECTS/pull/433",
+ "title": "Feature/added quizz website",
+ "repo": "rutikakengal/100DAYS_OF_100WEBPROJECTS",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-30T16:39:27Z",
+ "updated_at": "2025-07-31T15:57:04Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-31T15:56:36Z",
+ "author_url": "https://github.com/suryssss",
+ "author_avatar": "https://avatars.githubusercontent.com/u/176365924?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/176365924?v=4",
+ "profile_url": "https://github.com/suryssss"
+ },
+ "Kunal25Das": {
+ "expectedPoints": 24,
+ "currentPoints": 24,
+ "levels": {
+ "level1": 0,
+ "level2": 2,
+ "level3": 1
+ },
+ "prs": [
+ {
+ "url": "https://github.com/BaraniVA/Habitheat/pull/92",
+ "title": "Bug Fix - CORS needed",
+ "repo": "BaraniVA/Habitheat",
+ "level": "level2",
+ "points": 7,
+ "created_at": "2025-07-29T10:30:11Z",
+ "updated_at": "2025-07-30T10:53:10Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-30T06:19:44Z",
+ "author_url": "https://github.com/Kunal25Das",
+ "author_avatar": "https://avatars.githubusercontent.com/u/131584886?v=4"
+ },
+ {
+ "url": "https://github.com/BaraniVA/Habitheat/pull/89",
+ "title": "Bug Fix - #83 Un-deployable backend",
+ "repo": "BaraniVA/Habitheat",
+ "level": "level2",
+ "points": 7,
+ "created_at": "2025-07-29T04:16:30Z",
+ "updated_at": "2025-07-29T09:28:58Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-29T09:27:11Z",
+ "author_url": "https://github.com/Kunal25Das",
+ "author_avatar": "https://avatars.githubusercontent.com/u/131584886?v=4"
+ },
+ {
+ "url": "https://github.com/BaraniVA/Habitheat/pull/78",
+ "title": "User Authentication Implementation",
+ "repo": "BaraniVA/Habitheat",
+ "level": "level3",
+ "points": 10,
+ "created_at": "2025-07-26T20:16:07Z",
+ "updated_at": "2025-07-27T11:37:08Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-27T10:32:19Z",
+ "author_url": "https://github.com/Kunal25Das",
+ "author_avatar": "https://avatars.githubusercontent.com/u/131584886?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/131584886?v=4",
+ "profile_url": "https://github.com/Kunal25Das"
+ },
+ "itschetna": {
+ "expectedPoints": 24,
+ "currentPoints": 24,
+ "levels": {
+ "level1": 0,
+ "level2": 2,
+ "level3": 1
+ },
+ "prs": [
+ {
+ "url": "https://github.com/GitMetricsLab/github_tracker/pull/168",
+ "title": "✨ Feat: Add GitHub metrics preview on user profile page (Fixes #50)",
+ "repo": "mehul-m-prajapati/github_tracker",
+ "level": null,
+ "points": 0,
+ "created_at": "2025-08-01T11:46:03Z",
+ "updated_at": "2025-08-01T13:28:25Z",
+ "state": "open",
+ "merged": false,
+ "merged_at": null,
+ "author_url": "https://github.com/itschetna",
+ "author_avatar": "https://avatars.githubusercontent.com/u/138278109?v=4"
+ },
+ {
+ "url": "https://github.com/GitMetricsLab/github_tracker/pull/149",
+ "title": "⚡ Optimize fetchData: use Promise.all and safe pagination",
+ "repo": "mehul-m-prajapati/github_tracker",
+ "level": "level2",
+ "points": 7,
+ "created_at": "2025-07-30T05:51:24Z",
+ "updated_at": "2025-07-30T12:32:34Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-30T12:02:53Z",
+ "author_url": "https://github.com/itschetna",
+ "author_avatar": "https://avatars.githubusercontent.com/u/138278109?v=4"
+ },
+ {
+ "url": "https://github.com/GitMetricsLab/github_tracker/pull/132",
+ "title": " Feature: Add shareable link to user’s PRs",
+ "repo": "mehul-m-prajapati/github_tracker",
+ "level": "level2",
+ "points": 7,
+ "created_at": "2025-07-27T05:43:29Z",
+ "updated_at": "2025-07-28T04:24:55Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-27T07:18:37Z",
+ "author_url": "https://github.com/itschetna",
+ "author_avatar": "https://avatars.githubusercontent.com/u/138278109?v=4"
+ },
+ {
+ "url": "https://github.com/GitMetricsLab/github_tracker/pull/123",
+ "title": "Added UserProfile component and integrated it with Contributor PR linking",
+ "repo": "mehul-m-prajapati/github_tracker",
+ "level": "level3",
+ "points": 10,
+ "created_at": "2025-07-25T08:12:40Z",
+ "updated_at": "2025-07-25T09:20:18Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-25T09:20:17Z",
+ "author_url": "https://github.com/itschetna",
+ "author_avatar": "https://avatars.githubusercontent.com/u/138278109?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/138278109?v=4",
+ "profile_url": "https://github.com/itschetna"
+ },
+ "DuckWithKeyboard": {
+ "expectedPoints": 24,
+ "currentPoints": 24,
+ "levels": {
+ "level1": 0,
+ "level2": 2,
+ "level3": 1
+ },
+ "prs": [
+ {
+ "url": "https://github.com/NishantRana07/HrRoadways/pull/376",
+ "title": "Added Create ROUTES_GUIDE.md",
+ "repo": "NishantRana07/HrRoadways",
+ "level": "level3",
+ "points": 10,
+ "created_at": "2025-07-25T17:29:40Z",
+ "updated_at": "2025-07-28T10:06:30Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-26T04:35:02Z",
+ "author_url": "https://github.com/DuckWithKeyboard",
+ "author_avatar": "https://avatars.githubusercontent.com/u/179700405?v=4"
+ },
+ {
+ "url": "https://github.com/NishantRana07/HrRoadways/pull/333",
+ "title": "Update nav.jsx",
+ "repo": "NishantRana07/HrRoadways",
+ "level": "level2",
+ "points": 7,
+ "created_at": "2025-07-22T19:39:28Z",
+ "updated_at": "2025-07-22T20:26:38Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-22T19:49:05Z",
+ "author_url": "https://github.com/DuckWithKeyboard",
+ "author_avatar": "https://avatars.githubusercontent.com/u/179700405?v=4"
+ },
+ {
+ "url": "https://github.com/NishantRana07/HrRoadways/pull/324",
+ "title": "fix(nav): stabilize “Services” dropdown hover with 200ms delay",
+ "repo": "NishantRana07/HrRoadways",
+ "level": "level2",
+ "points": 7,
+ "created_at": "2025-07-22T18:35:53Z",
+ "updated_at": "2025-07-22T20:09:02Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-22T18:40:52Z",
+ "author_url": "https://github.com/DuckWithKeyboard",
+ "author_avatar": "https://avatars.githubusercontent.com/u/179700405?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/179700405?v=4",
+ "profile_url": "https://github.com/DuckWithKeyboard"
+ },
+ "Peehu1308": {
+ "expectedPoints": 23,
+ "currentPoints": 23,
+ "levels": {
+ "level1": 4,
+ "level2": 1,
+ "level3": 0
+ },
+ "prs": [
+ {
+ "url": "https://github.com/opensource-society/notesvault/pull/42",
+ "title": "Add Static Pages and Enhance Routing for NotesVault",
+ "repo": "opensource-society/NotesVault",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-22T07:31:47Z",
+ "updated_at": "2025-07-22T07:38:56Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-22T07:38:56Z",
+ "author_url": "https://github.com/Peehu1308",
+ "author_avatar": "https://avatars.githubusercontent.com/u/145141126?v=4"
+ },
+ {
+ "url": "https://github.com/InnoWebLabs/Vehigo/pull/187",
+ "title": " Fix: Added Missing Global Navbar to About Page",
+ "repo": "InnoWebLabs/Vehigo",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-31T07:00:06Z",
+ "updated_at": "2025-07-31T16:04:07Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-31T16:04:07Z",
+ "author_url": "https://github.com/Peehu1308",
+ "author_avatar": "https://avatars.githubusercontent.com/u/145141126?v=4"
+ },
+ {
+ "url": "https://github.com/InnoWebLabs/Vehigo/pull/152",
+ "title": "Redesigned Login Page UI for Better UX and Visual Appeal",
+ "repo": "InnoWebLabs/Vehigo",
+ "level": "level2",
+ "points": 7,
+ "created_at": "2025-07-27T15:36:50Z",
+ "updated_at": "2025-07-27T18:09:41Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-27T16:51:13Z",
+ "author_url": "https://github.com/Peehu1308",
+ "author_avatar": "https://avatars.githubusercontent.com/u/145141126?v=4"
+ },
+ {
+ "url": "https://github.com/InnoWebLabs/Vehigo/pull/150",
+ "title": "Standardize \"About Us\" Navigation Across All Pages",
+ "repo": "InnoWebLabs/Vehigo",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-27T14:41:19Z",
+ "updated_at": "2025-07-28T03:35:59Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-27T14:47:37Z",
+ "author_url": "https://github.com/Peehu1308",
+ "author_avatar": "https://avatars.githubusercontent.com/u/145141126?v=4"
+ },
+ {
+ "url": "https://github.com/InnoWebLabs/Vehigo/pull/111",
+ "title": " Improve Dark Theme Accessibility, Transitions, and Toggle UX",
+ "repo": "InnoWebLabs/Vehigo",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-26T15:42:07Z",
+ "updated_at": "2025-07-26T17:17:33Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-26T17:14:16Z",
+ "author_url": "https://github.com/Peehu1308",
+ "author_avatar": "https://avatars.githubusercontent.com/u/145141126?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/145141126?v=4",
+ "profile_url": "https://github.com/Peehu1308"
+ },
+ "Piyush-Garg757": {
+ "expectedPoints": 27,
+ "currentPoints": 23,
+ "levels": {
+ "level1": 5,
+ "level2": 1,
+ "level3": 0
+ },
+ "prs": [
+ {
+ "url": "https://github.com/itsAnimation/AnimateItNow/pull/446",
+ "title": "Fix positioning",
+ "repo": "itsAnimation/AnimateItNow",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-26T05:30:26Z",
+ "updated_at": "2025-07-31T06:27:43Z",
+ "state": "closed",
+ "merged": false,
+ "merged_at": null,
+ "author_url": "https://github.com/Piyush-Garg757",
+ "author_avatar": "https://avatars.githubusercontent.com/u/191904796?v=4"
+ },
+ {
+ "url": "https://github.com/pavitraag/Project-Vault/pull/179",
+ "title": "Correcting hover effect",
+ "repo": "pavitraag/Project-Vault",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-29T09:35:07Z",
+ "updated_at": "2025-07-29T18:48:33Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-29T14:04:17Z",
+ "author_url": "https://github.com/Piyush-Garg757",
+ "author_avatar": "https://avatars.githubusercontent.com/u/191904796?v=4"
+ },
+ {
+ "url": "https://github.com/pavitraag/Project-Vault/pull/127",
+ "title": "Fixed visibility and display",
+ "repo": "pavitraag/Project-Vault",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-27T06:36:41Z",
+ "updated_at": "2025-07-29T18:41:54Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-28T18:26:12Z",
+ "author_url": "https://github.com/Piyush-Garg757",
+ "author_avatar": "https://avatars.githubusercontent.com/u/191904796?v=4"
+ },
+ {
+ "url": "https://github.com/ruchikakengal/WebDevIn100_Days/pull/289",
+ "title": "Corrected glowing effect and made hidden text visible",
+ "repo": "ruchikakengal/WebDevIn100_Days",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-25T10:30:01Z",
+ "updated_at": "2025-07-27T07:56:54Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-27T07:12:49Z",
+ "author_url": "https://github.com/Piyush-Garg757",
+ "author_avatar": "https://avatars.githubusercontent.com/u/191904796?v=4"
+ },
+ {
+ "url": "https://github.com/sampadatiwari30/DeshDarshan/pull/112",
+ "title": "External links now open in a new tab",
+ "repo": "sampadatiwari30/DeshDarshan",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-25T07:25:48Z",
+ "updated_at": "2025-07-25T17:04:07Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-25T17:03:48Z",
+ "author_url": "https://github.com/Piyush-Garg757",
+ "author_avatar": "https://avatars.githubusercontent.com/u/191904796?v=4"
+ },
+ {
+ "url": "https://github.com/ygowthamr/WhitePaper/pull/159",
+ "title": "Feat add favicon",
+ "repo": "ygowthamr/WhitePaper",
+ "level": "level2",
+ "points": 7,
+ "created_at": "2025-07-25T09:45:03Z",
+ "updated_at": "2025-07-26T17:58:37Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-26T08:26:39Z",
+ "author_url": "https://github.com/Piyush-Garg757",
+ "author_avatar": "https://avatars.githubusercontent.com/u/191904796?v=4"
+ },
+ {
+ "url": "https://github.com/ygowthamr/WhitePaper/pull/157",
+ "title": "feat: Open external links in a new tab",
+ "repo": "ygowthamr/WhitePaper",
+ "level": null,
+ "points": 0,
+ "created_at": "2025-07-25T07:43:35Z",
+ "updated_at": "2025-07-26T08:26:14Z",
+ "state": "closed",
+ "merged": false,
+ "merged_at": null,
+ "author_url": "https://github.com/Piyush-Garg757",
+ "author_avatar": "https://avatars.githubusercontent.com/u/191904796?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/191904796?v=4",
+ "profile_url": "https://github.com/Piyush-Garg757"
+ },
+ "AnushkaChanda": {
+ "expectedPoints": 23,
+ "currentPoints": 23,
+ "levels": {
+ "level1": 4,
+ "level2": 1,
+ "level3": 0
+ },
+ "prs": [
+ {
+ "url": "https://github.com/InnoWebLabs/Vehigo/pull/207",
+ "title": "Added CONTRIBUTING.md file",
+ "repo": "InnoWebLabs/Vehigo",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-08-01T18:43:09Z",
+ "updated_at": "2025-08-02T05:30:15Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-08-02T05:30:15Z",
+ "author_url": "https://github.com/AnushkaChanda",
+ "author_avatar": "https://avatars.githubusercontent.com/u/202447664?v=4"
+ },
+ {
+ "url": "https://github.com/Ayushjhawar8/Flavor-ai/pull/125",
+ "title": "Adding CONTRIBUTING.md file",
+ "repo": "Ayushjhawar8/Flavor-ai",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-08-01T14:54:21Z",
+ "updated_at": "2025-08-01T15:15:06Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-08-01T14:55:46Z",
+ "author_url": "https://github.com/AnushkaChanda",
+ "author_avatar": "https://avatars.githubusercontent.com/u/202447664?v=4"
+ },
+ {
+ "url": "https://github.com/Kritika75/TheCawnporeMag.github.io/pull/315",
+ "title": "Added CODE_OF_CONDUCT.md file",
+ "repo": "Kritika75/TheCawnporeMag.github.io",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-31T14:51:26Z",
+ "updated_at": "2025-07-31T14:53:35Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-31T14:53:34Z",
+ "author_url": "https://github.com/AnushkaChanda",
+ "author_avatar": "https://avatars.githubusercontent.com/u/202447664?v=4"
+ },
+ {
+ "url": "https://github.com/mansiruhil/fail-u-forward/pull/110",
+ "title": "Created CODE_OF_CONDUCT.md",
+ "repo": "mansiruhil/fail-u-forward",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-30T19:59:34Z",
+ "updated_at": "2025-08-02T20:45:58Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-31T18:07:50Z",
+ "author_url": "https://github.com/AnushkaChanda",
+ "author_avatar": "https://avatars.githubusercontent.com/u/202447664?v=4"
+ },
+ {
+ "url": "https://github.com/ProTecGames/Karbon/pull/65",
+ "title": "Created CODE_OF_CONDUCT.md",
+ "repo": "ProTecGames/Karbon",
+ "level": null,
+ "points": 0,
+ "created_at": "2025-07-30T19:32:23Z",
+ "updated_at": "2025-07-31T04:25:10Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-31T04:24:39Z",
+ "author_url": "https://github.com/AnushkaChanda",
+ "author_avatar": "https://avatars.githubusercontent.com/u/202447664?v=4"
+ },
+ {
+ "url": "https://github.com/SurajSG23/PrepBuddy/pull/89",
+ "title": "Created CODE_OF_CONDUCT.md file",
+ "repo": "SurajSG23/PrepBuddy",
+ "level": "level2",
+ "points": 7,
+ "created_at": "2025-07-31T14:22:16Z",
+ "updated_at": "2025-07-31T16:06:03Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-31T16:06:03Z",
+ "author_url": "https://github.com/AnushkaChanda",
+ "author_avatar": "https://avatars.githubusercontent.com/u/202447664?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/202447664?v=4",
+ "profile_url": "https://github.com/AnushkaChanda"
+ },
+ "rnihesh": {
+ "expectedPoints": 23,
+ "currentPoints": 23,
+ "levels": {
+ "level1": 4,
+ "level2": 1,
+ "level3": 0
+ },
+ "prs": [
+ {
+ "url": "https://github.com/InnoWebLabs/Vehigo/pull/32",
+ "title": "footer updated #31",
+ "repo": "InnoWebLabs/Vehigo",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-23T17:22:30Z",
+ "updated_at": "2025-07-25T20:15:44Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-23T17:26:43Z",
+ "author_url": "https://github.com/rnihesh",
+ "author_avatar": "https://avatars.githubusercontent.com/u/153965219?v=4"
+ },
+ {
+ "url": "https://github.com/InnoWebLabs/Vehigo/pull/30",
+ "title": "corrected the mistake did to active instead of hover #29",
+ "repo": "InnoWebLabs/Vehigo",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-23T17:06:03Z",
+ "updated_at": "2025-07-25T20:15:25Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-23T17:11:05Z",
+ "author_url": "https://github.com/rnihesh",
+ "author_avatar": "https://avatars.githubusercontent.com/u/153965219?v=4"
+ },
+ {
+ "url": "https://github.com/InnoWebLabs/Vehigo/pull/28",
+ "title": "updated nav-link hover #29",
+ "repo": "InnoWebLabs/Vehigo",
+ "level": "level2",
+ "points": 7,
+ "created_at": "2025-07-23T16:55:46Z",
+ "updated_at": "2025-07-25T20:14:55Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-23T17:00:41Z",
+ "author_url": "https://github.com/rnihesh",
+ "author_avatar": "https://avatars.githubusercontent.com/u/153965219?v=4"
+ },
+ {
+ "url": "https://github.com/Agarwalvidu/ArdhNaariShakti_Taara_Frontend/pull/25",
+ "title": "updated shelter page #11",
+ "repo": "Agarwalvidu/ArdhNaariShakti_Taara_Frontend",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-24T21:29:28Z",
+ "updated_at": "2025-07-28T19:31:53Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-28T19:31:52Z",
+ "author_url": "https://github.com/rnihesh",
+ "author_avatar": "https://avatars.githubusercontent.com/u/153965219?v=4"
+ },
+ {
+ "url": "https://github.com/Agarwalvidu/ArdhNaariShakti_Taara_Frontend/pull/14",
+ "title": "updated blog card components UI #9",
+ "repo": "Agarwalvidu/ArdhNaariShakti_Taara_Frontend",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-24T11:05:14Z",
+ "updated_at": "2025-07-28T19:50:56Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-28T19:33:40Z",
+ "author_url": "https://github.com/rnihesh",
+ "author_avatar": "https://avatars.githubusercontent.com/u/153965219?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/153965219?v=4",
+ "profile_url": "https://github.com/rnihesh"
+ },
+ "sanjanahegde06": {
+ "expectedPoints": 23,
+ "currentPoints": 23,
+ "levels": {
+ "level1": 4,
+ "level2": 1,
+ "level3": 0
+ },
+ "prs": [
+ {
+ "url": "https://github.com/MAVERICK-VF142/Drx.MediMate/pull/20",
+ "title": "'My Account' section to the webapp",
+ "repo": "MAVERICK-VF142/Drx.MediMate",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-22T08:31:42Z",
+ "updated_at": "2025-07-22T16:28:02Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-22T08:34:57Z",
+ "author_url": "https://github.com/sanjanahegde06",
+ "author_avatar": "https://avatars.githubusercontent.com/u/181567332?v=4"
+ },
+ {
+ "url": "https://github.com/Ayushjhawar8/Flavor-ai/pull/97",
+ "title": "[BUGFIX] Remove second GitHub tag in footer",
+ "repo": "Ayushjhawar8/Flavor-ai",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-28T10:19:54Z",
+ "updated_at": "2025-08-01T16:28:21Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-28T10:21:46Z",
+ "author_url": "https://github.com/sanjanahegde06",
+ "author_avatar": "https://avatars.githubusercontent.com/u/181567332?v=4"
+ },
+ {
+ "url": "https://github.com/Ayushjhawar8/Flavor-ai/pull/47",
+ "title": "feat: Add \"Like this? Star it!\" button with GitHub icon in project header",
+ "repo": "Ayushjhawar8/Flavor-ai",
+ "level": "level2",
+ "points": 7,
+ "created_at": "2025-07-24T17:48:16Z",
+ "updated_at": "2025-07-25T09:57:24Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-25T09:17:14Z",
+ "author_url": "https://github.com/sanjanahegde06",
+ "author_avatar": "https://avatars.githubusercontent.com/u/181567332?v=4"
+ },
+ {
+ "url": "https://github.com/Ayushjhawar8/Flavor-ai/pull/43",
+ "title": "Contribute on GitHub button in footer linking to project issues",
+ "repo": "Ayushjhawar8/Flavor-ai",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-24T15:39:36Z",
+ "updated_at": "2025-07-26T11:55:03Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-26T11:54:01Z",
+ "author_url": "https://github.com/sanjanahegde06",
+ "author_avatar": "https://avatars.githubusercontent.com/u/181567332?v=4"
+ },
+ {
+ "url": "https://github.com/Ayushjhawar8/Flavor-ai/pull/26",
+ "title": "Bug fix: Back Button Not Working on Mobile View",
+ "repo": "Ayushjhawar8/Flavor-ai",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-23T11:41:34Z",
+ "updated_at": "2025-07-23T15:25:18Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-23T15:25:18Z",
+ "author_url": "https://github.com/sanjanahegde06",
+ "author_avatar": "https://avatars.githubusercontent.com/u/181567332?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/181567332?v=4",
+ "profile_url": "https://github.com/sanjanahegde06"
+ },
+ "Charul192": {
+ "expectedPoints": 23,
+ "currentPoints": 23,
+ "levels": {
+ "level1": 4,
+ "level2": 1,
+ "level3": 0
+ },
+ "prs": [
+ {
+ "url": "https://github.com/efshaperveen/MindJournal/pull/42",
+ "title": "📚 Added CODE_OF_CONDUCT.md [Closes #36]",
+ "repo": "efshaperveen/MindJournal",
+ "level": "level2",
+ "points": 7,
+ "created_at": "2025-07-25T14:38:37Z",
+ "updated_at": "2025-07-25T15:21:07Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-25T15:20:24Z",
+ "author_url": "https://github.com/Charul192",
+ "author_avatar": "https://avatars.githubusercontent.com/u/183530152?v=4"
+ },
+ {
+ "url": "https://github.com/RamakrushnaBiswal/HonorBox/pull/43",
+ "title": "📝 Add Complete README for HonorBox Frontend ",
+ "repo": "RamakrushnaBiswal/HonorBox",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-27T11:00:43Z",
+ "updated_at": "2025-07-28T10:07:01Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-28T10:06:36Z",
+ "author_url": "https://github.com/Charul192",
+ "author_avatar": "https://avatars.githubusercontent.com/u/183530152?v=4"
+ },
+ {
+ "url": "https://github.com/RamakrushnaBiswal/HonorBox/pull/42",
+ "title": "📄Add Comprehensive README.md for HonorBox Backend [Issue #37]",
+ "repo": "RamakrushnaBiswal/HonorBox",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-27T09:54:20Z",
+ "updated_at": "2025-07-27T13:59:58Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-27T13:59:58Z",
+ "author_url": "https://github.com/Charul192",
+ "author_avatar": "https://avatars.githubusercontent.com/u/183530152?v=4"
+ },
+ {
+ "url": "https://github.com/RamakrushnaBiswal/HonorBox/pull/24",
+ "title": "📚 Added CODE_OF_CONDUCT.md [Closes #14]",
+ "repo": "RamakrushnaBiswal/HonorBox",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-25T12:17:47Z",
+ "updated_at": "2025-07-25T14:36:50Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-25T14:36:35Z",
+ "author_url": "https://github.com/Charul192",
+ "author_avatar": "https://avatars.githubusercontent.com/u/183530152?v=4"
+ },
+ {
+ "url": "https://github.com/RamakrushnaBiswal/HonorBox/pull/23",
+ "title": "📚 Added CONTRIBUTING.md [Closes #13]",
+ "repo": "RamakrushnaBiswal/HonorBox",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-25T11:53:54Z",
+ "updated_at": "2025-07-25T15:51:03Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-25T14:35:12Z",
+ "author_url": "https://github.com/Charul192",
+ "author_avatar": "https://avatars.githubusercontent.com/u/183530152?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/183530152?v=4",
+ "profile_url": "https://github.com/Charul192"
+ },
+ "steam-bell-92": {
+ "expectedPoints": 27,
+ "currentPoints": 23,
+ "levels": {
+ "level1": 5,
+ "level2": 1,
+ "level3": 0
+ },
+ "prs": [
+ {
+ "url": "https://github.com/Khushi-Nigam/jobportal/pull/63",
+ "title": "Job card layout & hover effect",
+ "repo": "Khushi-Nigam/jobportal",
+ "level": "level2",
+ "points": 7,
+ "created_at": "2025-07-26T14:51:52Z",
+ "updated_at": "2025-07-27T09:57:21Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-27T09:57:21Z",
+ "author_url": "https://github.com/steam-bell-92",
+ "author_avatar": "https://avatars.githubusercontent.com/u/192874339?v=4"
+ },
+ {
+ "url": "https://github.com/Khushi-Nigam/jobportal/pull/41",
+ "title": "Update CODE_OF_CONDUCT.md",
+ "repo": "Khushi-Nigam/jobportal",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-24T18:17:11Z",
+ "updated_at": "2025-07-24T19:03:10Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-24T19:03:10Z",
+ "author_url": "https://github.com/steam-bell-92",
+ "author_avatar": "https://avatars.githubusercontent.com/u/192874339?v=4"
+ },
+ {
+ "url": "https://github.com/Khushi-Nigam/jobportal/pull/18",
+ "title": "Converted Technologies Used into a table",
+ "repo": "Khushi-Nigam/jobportal",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-23T10:21:33Z",
+ "updated_at": "2025-07-24T12:08:04Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-23T14:05:34Z",
+ "author_url": "https://github.com/steam-bell-92",
+ "author_avatar": "https://avatars.githubusercontent.com/u/192874339?v=4"
+ },
+ {
+ "url": "https://github.com/Khushi-Nigam/jobportal/pull/16",
+ "title": "Added file structure to README",
+ "repo": "Khushi-Nigam/jobportal",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-23T08:35:13Z",
+ "updated_at": "2025-07-23T18:10:00Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-23T09:43:04Z",
+ "author_url": "https://github.com/steam-bell-92",
+ "author_avatar": "https://avatars.githubusercontent.com/u/192874339?v=4"
+ },
+ {
+ "url": "https://github.com/recodehive/recode-website/pull/234",
+ "title": "[Fix][Docs]: Improve button label clarity and fix markdown pipe(|) in README",
+ "repo": "recodehive/recode-website",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-30T10:58:50Z",
+ "updated_at": "2025-08-02T13:51:48Z",
+ "state": "open",
+ "merged": false,
+ "merged_at": null,
+ "author_url": "https://github.com/steam-bell-92",
+ "author_avatar": "https://avatars.githubusercontent.com/u/192874339?v=4"
+ },
+ {
+ "url": "https://github.com/recodehive/recode-website/pull/220",
+ "title": "Included Project Structure in README.md",
+ "repo": "recodehive/recode-website",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-28T11:41:09Z",
+ "updated_at": "2025-07-28T12:34:20Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-28T12:34:19Z",
+ "author_url": "https://github.com/steam-bell-92",
+ "author_avatar": "https://avatars.githubusercontent.com/u/192874339?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/192874339?v=4",
+ "profile_url": "https://github.com/steam-bell-92"
+ },
+ "Vidhi-Mathur": {
+ "expectedPoints": 22,
+ "currentPoints": 22,
+ "levels": {
+ "level1": 2,
+ "level2": 2,
+ "level3": 0
+ },
+ "prs": [
+ {
+ "url": "https://github.com/abhisek2004/Dev-Elevate/pull/14",
+ "title": "Fix: Improve notification hover styles & dark mode visibility (#9)",
+ "repo": "abhisek2004/Dev-Elevate",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-22T08:40:23Z",
+ "updated_at": "2025-07-23T06:53:36Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-22T19:16:26Z",
+ "author_url": "https://github.com/Vidhi-Mathur",
+ "author_avatar": "https://avatars.githubusercontent.com/u/127723284?v=4"
+ },
+ {
+ "url": "https://github.com/Ayushjhawar8/Flavor-ai/pull/67",
+ "title": "Improved mobile navbar styling",
+ "repo": "Ayushjhawar8/Flavor-ai",
+ "level": "level2",
+ "points": 7,
+ "created_at": "2025-07-25T13:51:02Z",
+ "updated_at": "2025-07-28T12:54:22Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-26T11:07:42Z",
+ "author_url": "https://github.com/Vidhi-Mathur",
+ "author_avatar": "https://avatars.githubusercontent.com/u/127723284?v=4"
+ },
+ {
+ "url": "https://github.com/Ayushjhawar8/Flavor-ai/pull/63",
+ "title": "Fixed visibility in navbar",
+ "repo": "Ayushjhawar8/Flavor-ai",
+ "level": "level2",
+ "points": 7,
+ "created_at": "2025-07-25T12:28:38Z",
+ "updated_at": "2025-07-28T12:54:20Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-26T10:32:23Z",
+ "author_url": "https://github.com/Vidhi-Mathur",
+ "author_avatar": "https://avatars.githubusercontent.com/u/127723284?v=4"
+ },
+ {
+ "url": "https://github.com/BaraniVA/Habitheat/pull/49",
+ "title": "UI Enhancement: Show selected mood label & dynamic stress/energy bar colors",
+ "repo": "BaraniVA/Habitheat",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-24T07:36:13Z",
+ "updated_at": "2025-07-25T06:49:01Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-24T07:46:48Z",
+ "author_url": "https://github.com/Vidhi-Mathur",
+ "author_avatar": "https://avatars.githubusercontent.com/u/127723284?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/127723284?v=4",
+ "profile_url": "https://github.com/Vidhi-Mathur"
+ },
+ "denshaw-09": {
+ "expectedPoints": 22,
+ "currentPoints": 22,
+ "levels": {
+ "level1": 2,
+ "level2": 2,
+ "level3": 0
+ },
+ "prs": [
+ {
+ "url": "https://github.com/Abhishek2634/Foodie/pull/34",
+ "title": "Added Markdown-based GitHub issue templates",
+ "repo": "Abhishek2634/Foodie",
+ "level": "level2",
+ "points": 7,
+ "created_at": "2025-07-22T11:57:18Z",
+ "updated_at": "2025-08-02T10:50:31Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-22T16:57:54Z",
+ "author_url": "https://github.com/denshaw-09",
+ "author_avatar": "https://avatars.githubusercontent.com/u/207452604?v=4"
+ },
+ {
+ "url": "https://github.com/Menthub-GSSoC/Menthub/pull/28",
+ "title": "Added Markdown Github Issue Template",
+ "repo": "anugit24/Menthub",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-26T21:33:58Z",
+ "updated_at": "2025-07-30T02:21:50Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-30T02:21:28Z",
+ "author_url": "https://github.com/denshaw-09",
+ "author_avatar": "https://avatars.githubusercontent.com/u/207452604?v=4"
+ },
+ {
+ "url": "https://github.com/Dhruvi-tech/firebase-chat-app/pull/19",
+ "title": "Added Issue Templates",
+ "repo": "Dhruvi-tech/firebase-chat-app",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-24T06:09:15Z",
+ "updated_at": "2025-07-24T20:48:45Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-24T20:48:45Z",
+ "author_url": "https://github.com/denshaw-09",
+ "author_avatar": "https://avatars.githubusercontent.com/u/207452604?v=4"
+ },
+ {
+ "url": "https://github.com/GitMetricsLab/github_tracker/pull/147",
+ "title": "Improved the feature of Contributor's page",
+ "repo": "mehul-m-prajapati/github_tracker",
+ "level": null,
+ "points": 0,
+ "created_at": "2025-07-29T13:21:05Z",
+ "updated_at": "2025-07-29T14:32:44Z",
+ "state": "open",
+ "merged": false,
+ "merged_at": null,
+ "author_url": "https://github.com/denshaw-09",
+ "author_avatar": "https://avatars.githubusercontent.com/u/207452604?v=4"
+ },
+ {
+ "url": "https://github.com/ygowthamr/WhitePaper/pull/163",
+ "title": "Fixes #138",
+ "repo": "ygowthamr/WhitePaper",
+ "level": "level2",
+ "points": 7,
+ "created_at": "2025-07-25T12:36:27Z",
+ "updated_at": "2025-07-25T16:17:42Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-25T16:17:42Z",
+ "author_url": "https://github.com/denshaw-09",
+ "author_avatar": "https://avatars.githubusercontent.com/u/207452604?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/207452604?v=4",
+ "profile_url": "https://github.com/denshaw-09"
+ },
+ "Diksha8-db": {
+ "expectedPoints": 22,
+ "currentPoints": 22,
+ "levels": {
+ "level1": 2,
+ "level2": 2,
+ "level3": 0
+ },
+ "prs": [
+ {
+ "url": "https://github.com/Adarsh-Chaubey03/TravelGrid/pull/390",
+ "title": "🚀 middleware for auth implemented, protected routes, logout functionality",
+ "repo": "Adarsh-Chaubey03/TravelGrid",
+ "level": "level2",
+ "points": 7,
+ "created_at": "2025-07-31T11:32:42Z",
+ "updated_at": "2025-07-31T13:40:24Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-31T13:40:12Z",
+ "author_url": "https://github.com/Diksha8-db",
+ "author_avatar": "https://avatars.githubusercontent.com/u/206648796?v=4"
+ },
+ {
+ "url": "https://github.com/Adarsh-Chaubey03/TravelGrid/pull/361",
+ "title": "Added backend functionality for CRUD operation of booking",
+ "repo": "Adarsh-Chaubey03/TravelGrid",
+ "level": "level2",
+ "points": 7,
+ "created_at": "2025-07-30T12:57:25Z",
+ "updated_at": "2025-07-31T03:51:05Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-31T03:50:48Z",
+ "author_url": "https://github.com/Diksha8-db",
+ "author_avatar": "https://avatars.githubusercontent.com/u/206648796?v=4"
+ },
+ {
+ "url": "https://github.com/pavitraag/Project-Vault/pull/130",
+ "title": "[FEATURE ADDED] Added a dummy responsive portfolio",
+ "repo": "pavitraag/Project-Vault",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-27T07:19:22Z",
+ "updated_at": "2025-07-29T18:42:12Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-28T18:27:27Z",
+ "author_url": "https://github.com/Diksha8-db",
+ "author_avatar": "https://avatars.githubusercontent.com/u/206648796?v=4"
+ },
+ {
+ "url": "https://github.com/pavitraag/Project-Vault/pull/49",
+ "title": "[FEATURE IMPLEMENTED] Simon Says feature implemented [Issue #27 ]",
+ "repo": "pavitraag/Project-Vault",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-24T11:37:09Z",
+ "updated_at": "2025-07-29T18:30:11Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-24T12:49:35Z",
+ "author_url": "https://github.com/Diksha8-db",
+ "author_avatar": "https://avatars.githubusercontent.com/u/206648796?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/206648796?v=4",
+ "profile_url": "https://github.com/Diksha8-db"
+ },
+ "balraj009": {
+ "expectedPoints": 22,
+ "currentPoints": 22,
+ "levels": {
+ "level1": 2,
+ "level2": 2,
+ "level3": 0
+ },
+ "prs": [
+ {
+ "url": "https://github.com/Adarsh-Chaubey03/TravelGrid/pull/330",
+ "title": "Fix: Make booking form fully responsive for desktop and mobile",
+ "repo": "Adarsh-Chaubey03/TravelGrid",
+ "level": "level2",
+ "points": 7,
+ "created_at": "2025-07-29T11:24:55Z",
+ "updated_at": "2025-07-30T15:00:39Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-30T15:00:24Z",
+ "author_url": "https://github.com/balraj009",
+ "author_avatar": "https://avatars.githubusercontent.com/u/147970919?v=4"
+ },
+ {
+ "url": "https://github.com/Adarsh-Chaubey03/TravelGrid/pull/237",
+ "title": "fix-responsive-navbar",
+ "repo": "Adarsh-Chaubey03/TravelGrid",
+ "level": "level2",
+ "points": 7,
+ "created_at": "2025-07-27T09:51:36Z",
+ "updated_at": "2025-07-28T05:41:13Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-28T05:40:53Z",
+ "author_url": "https://github.com/balraj009",
+ "author_avatar": "https://avatars.githubusercontent.com/u/147970919?v=4"
+ },
+ {
+ "url": "https://github.com/agamjotsingh18/trendhora/pull/55",
+ "title": "Added responsive color options in product detail section",
+ "repo": "agamjotsingh18/trendhora",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-08-01T09:18:37Z",
+ "updated_at": "2025-08-01T20:34:26Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-08-01T20:34:26Z",
+ "author_url": "https://github.com/balraj009",
+ "author_avatar": "https://avatars.githubusercontent.com/u/147970919?v=4"
+ },
+ {
+ "url": "https://github.com/souvikpramanikgit/LearnHub/pull/15",
+ "title": "Fix: Responsive layout for course navigation on small screens",
+ "repo": "souvikpramanikgit/LearnHub",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-22T08:41:03Z",
+ "updated_at": "2025-07-22T08:57:22Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-22T08:55:35Z",
+ "author_url": "https://github.com/balraj009",
+ "author_avatar": "https://avatars.githubusercontent.com/u/147970919?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/147970919?v=4",
+ "profile_url": "https://github.com/balraj009"
+ },
+ "khushimittal20": {
+ "expectedPoints": 22,
+ "currentPoints": 22,
+ "levels": {
+ "level1": 2,
+ "level2": 2,
+ "level3": 0
+ },
+ "prs": [
+ {
+ "url": "https://github.com/Adarsh-Chaubey03/TravelGrid/pull/63",
+ "title": "Added typewriter-effect to Hero section heading",
+ "repo": "Adarsh-Chaubey03/TravelGrid",
+ "level": "level2",
+ "points": 7,
+ "created_at": "2025-07-22T11:52:53Z",
+ "updated_at": "2025-07-22T12:58:08Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-22T12:58:08Z",
+ "author_url": "https://github.com/khushimittal20",
+ "author_avatar": "https://avatars.githubusercontent.com/u/192452310?v=4"
+ },
+ {
+ "url": "https://github.com/Adarsh-Chaubey03/TravelGrid/pull/62",
+ "title": "Added favicon ",
+ "repo": "Adarsh-Chaubey03/TravelGrid",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-22T11:23:51Z",
+ "updated_at": "2025-07-22T12:53:54Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-22T12:53:54Z",
+ "author_url": "https://github.com/khushimittal20",
+ "author_avatar": "https://avatars.githubusercontent.com/u/192452310?v=4"
+ },
+ {
+ "url": "https://github.com/souvikpramanikgit/LearnHub/pull/20",
+ "title": "Feature/typewriter animation",
+ "repo": "souvikpramanikgit/LearnHub",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-22T09:38:15Z",
+ "updated_at": "2025-07-22T09:49:55Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-22T09:47:37Z",
+ "author_url": "https://github.com/khushimittal20",
+ "author_avatar": "https://avatars.githubusercontent.com/u/192452310?v=4"
+ },
+ {
+ "url": "https://github.com/TanmayKalra09/SmartLog/pull/33",
+ "title": "Added favicon",
+ "repo": "TanmayKalra09/SmartLog",
+ "level": "level2",
+ "points": 7,
+ "created_at": "2025-07-22T10:33:14Z",
+ "updated_at": "2025-07-22T10:42:11Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-22T10:38:40Z",
+ "author_url": "https://github.com/khushimittal20",
+ "author_avatar": "https://avatars.githubusercontent.com/u/192452310?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/192452310?v=4",
+ "profile_url": "https://github.com/khushimittal20"
+ },
+ "Pallavi-kr6": {
+ "expectedPoints": 22,
+ "currentPoints": 22,
+ "levels": {
+ "level1": 2,
+ "level2": 2,
+ "level3": 0
+ },
+ "prs": [
+ {
+ "url": "https://github.com/opensource-society/notesvault/pull/513",
+ "title": "UI Improvement of browse.html",
+ "repo": "opensource-society/NotesVault",
+ "level": "level2",
+ "points": 7,
+ "created_at": "2025-07-31T15:21:41Z",
+ "updated_at": "2025-08-03T00:10:38Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-08-02T22:44:30Z",
+ "author_url": "https://github.com/Pallavi-kr6",
+ "author_avatar": "https://avatars.githubusercontent.com/u/175379903?v=4"
+ },
+ {
+ "url": "https://github.com/itsAnimation/AnimateItNow/pull/326",
+ "title": "Fix: Aligned GitHub icon with text in footer",
+ "repo": "itsAnimation/AnimateItNow",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-24T16:04:49Z",
+ "updated_at": "2025-07-25T11:44:18Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-25T11:44:17Z",
+ "author_url": "https://github.com/Pallavi-kr6",
+ "author_avatar": "https://avatars.githubusercontent.com/u/175379903?v=4"
+ },
+ {
+ "url": "https://github.com/InnoWebLabs/Vehigo/pull/62",
+ "title": "Enhanced form styling and improved UI with elegant color palette",
+ "repo": "InnoWebLabs/Vehigo",
+ "level": "level2",
+ "points": 7,
+ "created_at": "2025-07-25T06:49:06Z",
+ "updated_at": "2025-07-25T20:26:04Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-25T09:07:58Z",
+ "author_url": "https://github.com/Pallavi-kr6",
+ "author_avatar": "https://avatars.githubusercontent.com/u/175379903?v=4"
+ },
+ {
+ "url": "https://github.com/Kritika75/TheCawnporeMag.github.io/pull/155",
+ "title": "Improve footer design and add Back to Top feature",
+ "repo": "Kritika75/TheCawnporeMag.github.io",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-26T10:59:51Z",
+ "updated_at": "2025-07-26T11:03:20Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-26T11:03:19Z",
+ "author_url": "https://github.com/Pallavi-kr6",
+ "author_avatar": "https://avatars.githubusercontent.com/u/175379903?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/175379903?v=4",
+ "profile_url": "https://github.com/Pallavi-kr6"
+ },
+ "AshmitSherigar": {
+ "expectedPoints": 22,
+ "currentPoints": 22,
+ "levels": {
+ "level1": 3,
+ "level2": 0,
+ "level3": 1
+ },
+ "prs": [
+ {
+ "url": "https://github.com/itsAnimation/AnimateItNow/pull/542",
+ "title": "Adding a SANDBOX feature",
+ "repo": "itsAnimation/AnimateItNow",
+ "level": "level3",
+ "points": 10,
+ "created_at": "2025-07-27T10:22:48Z",
+ "updated_at": "2025-07-27T12:01:02Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-27T11:59:53Z",
+ "author_url": "https://github.com/AshmitSherigar",
+ "author_avatar": "https://avatars.githubusercontent.com/u/128444050?v=4"
+ },
+ {
+ "url": "https://github.com/AyushSharma72/Skill_Trade/pull/86",
+ "title": "Fix footer",
+ "repo": "AyushSharma72/Skill_Trade",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-31T03:55:31Z",
+ "updated_at": "2025-07-31T05:31:25Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-31T05:31:25Z",
+ "author_url": "https://github.com/AshmitSherigar",
+ "author_avatar": "https://avatars.githubusercontent.com/u/128444050?v=4"
+ },
+ {
+ "url": "https://github.com/AyushSharma72/Skill_Trade/pull/76",
+ "title": "Fix Navbar z index and also remove the Duplicate Marquee Element",
+ "repo": "AyushSharma72/Skill_Trade",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-29T16:52:35Z",
+ "updated_at": "2025-07-31T05:34:37Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-30T08:56:03Z",
+ "author_url": "https://github.com/AshmitSherigar",
+ "author_avatar": "https://avatars.githubusercontent.com/u/128444050?v=4"
+ },
+ {
+ "url": "https://github.com/AyushSharma72/Skill_Trade/pull/72",
+ "title": "Password Validation ",
+ "repo": "AyushSharma72/Skill_Trade",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-28T13:21:17Z",
+ "updated_at": "2025-07-29T02:12:51Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-29T02:12:51Z",
+ "author_url": "https://github.com/AshmitSherigar",
+ "author_avatar": "https://avatars.githubusercontent.com/u/128444050?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/128444050?v=4",
+ "profile_url": "https://github.com/AshmitSherigar"
+ },
+ "Ishika-codeit": {
+ "expectedPoints": 26,
+ "currentPoints": 22,
+ "levels": {
+ "level1": 4,
+ "level2": 0,
+ "level3": 1
+ },
+ "prs": [
+ {
+ "url": "https://github.com/itsAnimation/AnimateItNow/pull/162",
+ "title": "✨ Enhance Cursor with Blue Gradient Snake Trail Animation",
+ "repo": "itsAnimation/AnimateItNow",
+ "level": "level3",
+ "points": 10,
+ "created_at": "2025-07-23T08:20:15Z",
+ "updated_at": "2025-07-23T08:31:47Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-23T08:31:47Z",
+ "author_url": "https://github.com/Ishika-codeit",
+ "author_avatar": "https://avatars.githubusercontent.com/u/178647635?v=4"
+ },
+ {
+ "url": "https://github.com/coderashhar/PG-genie/pull/21",
+ "title": "Added Back to Top button with Font Awesome icon",
+ "repo": "coderashhar/PG-genie",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-23T04:56:22Z",
+ "updated_at": "2025-07-23T06:34:07Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-23T06:34:07Z",
+ "author_url": "https://github.com/Ishika-codeit",
+ "author_avatar": "https://avatars.githubusercontent.com/u/178647635?v=4"
+ },
+ {
+ "url": "https://github.com/Kritika75/TheCawnporeMag.github.io/pull/147",
+ "title": "Issue button enhancement",
+ "repo": "Kritika75/TheCawnporeMag.github.io",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-26T07:47:45Z",
+ "updated_at": "2025-07-26T08:20:23Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-26T08:06:27Z",
+ "author_url": "https://github.com/Ishika-codeit",
+ "author_avatar": "https://avatars.githubusercontent.com/u/178647635?v=4"
+ },
+ {
+ "url": "https://github.com/Kritika75/TheCawnporeMag.github.io/pull/145",
+ "title": "Revamped navbar, footer, and enhanced heading UI for The Cawnpore",
+ "repo": "Kritika75/TheCawnporeMag.github.io",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-26T06:40:43Z",
+ "updated_at": "2025-07-26T14:07:37Z",
+ "state": "open",
+ "merged": false,
+ "merged_at": null,
+ "author_url": "https://github.com/Ishika-codeit",
+ "author_avatar": "https://avatars.githubusercontent.com/u/178647635?v=4"
+ },
+ {
+ "url": "https://github.com/pavitraag/Project-Vault/pull/135",
+ "title": "Add modern snake cursor effect with smooth animation and scaling",
+ "repo": "pavitraag/Project-Vault",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-27T11:05:54Z",
+ "updated_at": "2025-07-29T18:42:26Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-28T18:31:06Z",
+ "author_url": "https://github.com/Ishika-codeit",
+ "author_avatar": "https://avatars.githubusercontent.com/u/178647635?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/178647635?v=4",
+ "profile_url": "https://github.com/Ishika-codeit"
+ },
+ "Mahatva1303": {
+ "expectedPoints": 22,
+ "currentPoints": 22,
+ "levels": {
+ "level1": 2,
+ "level2": 2,
+ "level3": 0
+ },
+ "prs": [
+ {
+ "url": "https://github.com/InnoWebLabs/Vehigo/pull/144",
+ "title": "#106 [Feature] Added Buy option for the user ",
+ "repo": "InnoWebLabs/Vehigo",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-27T13:50:03Z",
+ "updated_at": "2025-07-28T03:35:31Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-27T14:01:05Z",
+ "author_url": "https://github.com/Mahatva1303",
+ "author_avatar": "https://avatars.githubusercontent.com/u/201000752?v=4"
+ },
+ {
+ "url": "https://github.com/InnoWebLabs/Vehigo/pull/96",
+ "title": "[Feature] RENT your car done",
+ "repo": "InnoWebLabs/Vehigo",
+ "level": "level2",
+ "points": 7,
+ "created_at": "2025-07-26T09:14:03Z",
+ "updated_at": "2025-07-26T09:52:14Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-26T09:52:13Z",
+ "author_url": "https://github.com/Mahatva1303",
+ "author_avatar": "https://avatars.githubusercontent.com/u/201000752?v=4"
+ },
+ {
+ "url": "https://github.com/InnoWebLabs/Vehigo/pull/83",
+ "title": "Update index.html",
+ "repo": "InnoWebLabs/Vehigo",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-25T17:24:47Z",
+ "updated_at": "2025-07-25T19:40:21Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-25T19:40:21Z",
+ "author_url": "https://github.com/Mahatva1303",
+ "author_avatar": "https://avatars.githubusercontent.com/u/201000752?v=4"
+ },
+ {
+ "url": "https://github.com/InnoWebLabs/Vehigo/pull/69",
+ "title": "Add offline map view with cards and booking button",
+ "repo": "InnoWebLabs/Vehigo",
+ "level": "level2",
+ "points": 7,
+ "created_at": "2025-07-25T13:12:57Z",
+ "updated_at": "2025-07-25T20:27:28Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-25T13:32:16Z",
+ "author_url": "https://github.com/Mahatva1303",
+ "author_avatar": "https://avatars.githubusercontent.com/u/201000752?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/201000752?v=4",
+ "profile_url": "https://github.com/Mahatva1303"
+ },
+ "shubhranshu-sahu": {
+ "expectedPoints": 22,
+ "currentPoints": 22,
+ "levels": {
+ "level1": 3,
+ "level2": 0,
+ "level3": 1
+ },
+ "prs": [
+ {
+ "url": "https://github.com/MAVERICK-VF142/Drx.MediMate/pull/86",
+ "title": "updated README.md and other md files",
+ "repo": "MAVERICK-VF142/Drx.MediMate",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-26T08:26:32Z",
+ "updated_at": "2025-07-26T10:01:51Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-26T09:12:55Z",
+ "author_url": "https://github.com/shubhranshu-sahu",
+ "author_avatar": "https://avatars.githubusercontent.com/u/180231504?v=4"
+ },
+ {
+ "url": "https://github.com/MAVERICK-VF142/Drx.MediMate/pull/70",
+ "title": "Restructure Code ",
+ "repo": "MAVERICK-VF142/Drx.MediMate",
+ "level": "level3",
+ "points": 10,
+ "created_at": "2025-07-24T12:40:57Z",
+ "updated_at": "2025-08-03T05:27:30Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-26T05:15:37Z",
+ "author_url": "https://github.com/shubhranshu-sahu",
+ "author_avatar": "https://avatars.githubusercontent.com/u/180231504?v=4"
+ },
+ {
+ "url": "https://github.com/MAVERICK-VF142/Drx.MediMate/pull/59",
+ "title": "Medical scanner not working: AI analysis failed solved",
+ "repo": "MAVERICK-VF142/Drx.MediMate",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-23T15:48:10Z",
+ "updated_at": "2025-07-23T16:16:10Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-23T16:15:50Z",
+ "author_url": "https://github.com/shubhranshu-sahu",
+ "author_avatar": "https://avatars.githubusercontent.com/u/180231504?v=4"
+ },
+ {
+ "url": "https://github.com/MAVERICK-VF142/Drx.MediMate/pull/36",
+ "title": "Gemini Response Not Visible in Drug Information Tab solved",
+ "repo": "MAVERICK-VF142/Drx.MediMate",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-22T17:38:29Z",
+ "updated_at": "2025-07-22T17:49:00Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-22T17:48:59Z",
+ "author_url": "https://github.com/shubhranshu-sahu",
+ "author_avatar": "https://avatars.githubusercontent.com/u/180231504?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/180231504?v=4",
+ "profile_url": "https://github.com/shubhranshu-sahu"
+ },
+ "radhika-droid": {
+ "expectedPoints": 22,
+ "currentPoints": 22,
+ "levels": {
+ "level1": 2,
+ "level2": 2,
+ "level3": 0
+ },
+ "prs": [
+ {
+ "url": "https://github.com/MAVERICK-VF142/Drx.MediMate/pull/77",
+ "title": "changed ui of symptom checker page ",
+ "repo": "MAVERICK-VF142/Drx.MediMate",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-25T07:20:23Z",
+ "updated_at": "2025-07-25T09:01:36Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-25T07:31:16Z",
+ "author_url": "https://github.com/radhika-droid",
+ "author_avatar": "https://avatars.githubusercontent.com/u/207061250?v=4"
+ },
+ {
+ "url": "https://github.com/sampadatiwari30/DeshDarshan/pull/137",
+ "title": "Final improvements across all pages",
+ "repo": "sampadatiwari30/DeshDarshan",
+ "level": "level2",
+ "points": 7,
+ "created_at": "2025-07-26T07:21:51Z",
+ "updated_at": "2025-07-28T18:37:53Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-28T18:37:33Z",
+ "author_url": "https://github.com/radhika-droid",
+ "author_avatar": "https://avatars.githubusercontent.com/u/207061250?v=4"
+ },
+ {
+ "url": "https://github.com/sampadatiwari30/DeshDarshan/pull/95",
+ "title": "Added updated contact and feedback pages",
+ "repo": "sampadatiwari30/DeshDarshan",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-24T17:11:44Z",
+ "updated_at": "2025-07-24T19:11:22Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-24T19:10:28Z",
+ "author_url": "https://github.com/radhika-droid",
+ "author_avatar": "https://avatars.githubusercontent.com/u/207061250?v=4"
+ },
+ {
+ "url": "https://github.com/sampadatiwari30/DeshDarshan/pull/67",
+ "title": "Fixed login, signup pages and added forgot-password.html",
+ "repo": "sampadatiwari30/DeshDarshan",
+ "level": "level2",
+ "points": 7,
+ "created_at": "2025-07-23T15:28:59Z",
+ "updated_at": "2025-07-23T17:32:39Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-23T15:36:18Z",
+ "author_url": "https://github.com/radhika-droid",
+ "author_avatar": "https://avatars.githubusercontent.com/u/207061250?v=4"
+ },
+ {
+ "url": "https://github.com/ygowthamr/WhitePaper/pull/170",
+ "title": "Addaboutuspage",
+ "repo": "ygowthamr/WhitePaper",
+ "level": null,
+ "points": 0,
+ "created_at": "2025-07-26T08:18:47Z",
+ "updated_at": "2025-08-01T05:29:50Z",
+ "state": "open",
+ "merged": false,
+ "merged_at": null,
+ "author_url": "https://github.com/radhika-droid",
+ "author_avatar": "https://avatars.githubusercontent.com/u/207061250?v=4"
+ },
+ {
+ "url": "https://github.com/ygowthamr/WhitePaper/pull/169",
+ "title": "Final improvements across all pages",
+ "repo": "ygowthamr/WhitePaper",
+ "level": null,
+ "points": 0,
+ "created_at": "2025-07-26T07:57:28Z",
+ "updated_at": "2025-07-31T04:45:53Z",
+ "state": "open",
+ "merged": false,
+ "merged_at": null,
+ "author_url": "https://github.com/radhika-droid",
+ "author_avatar": "https://avatars.githubusercontent.com/u/207061250?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/207061250?v=4",
+ "profile_url": "https://github.com/radhika-droid"
+ },
+ "ayushkumar320": {
+ "expectedPoints": 22,
+ "currentPoints": 22,
+ "levels": {
+ "level1": 2,
+ "level2": 2,
+ "level3": 0
+ },
+ "prs": [
+ {
+ "url": "https://github.com/BaraniVA/Habitheat/pull/76",
+ "title": "Advanced Filter feature added",
+ "repo": "BaraniVA/Habitheat",
+ "level": "level2",
+ "points": 7,
+ "created_at": "2025-07-26T17:29:14Z",
+ "updated_at": "2025-07-27T09:59:22Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-27T09:53:28Z",
+ "author_url": "https://github.com/ayushkumar320",
+ "author_avatar": "https://avatars.githubusercontent.com/u/75619981?v=4"
+ },
+ {
+ "url": "https://github.com/GauravKarakoti/Weather-API/pull/226",
+ "title": "solved the local storage problem",
+ "repo": "GauravKarakoti/Weather-API",
+ "level": "level2",
+ "points": 7,
+ "created_at": "2025-07-30T16:51:22Z",
+ "updated_at": "2025-08-01T08:12:21Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-08-01T08:12:21Z",
+ "author_url": "https://github.com/ayushkumar320",
+ "author_avatar": "https://avatars.githubusercontent.com/u/75619981?v=4"
+ },
+ {
+ "url": "https://github.com/GauravKarakoti/Weather-API/pull/220",
+ "title": "updated the selector validity from 24 hours to 7 days ",
+ "repo": "GauravKarakoti/Weather-API",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-29T07:53:56Z",
+ "updated_at": "2025-07-30T05:23:14Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-30T05:23:14Z",
+ "author_url": "https://github.com/ayushkumar320",
+ "author_avatar": "https://avatars.githubusercontent.com/u/75619981?v=4"
+ },
+ {
+ "url": "https://github.com/GauravKarakoti/Weather-API/pull/207",
+ "title": "removed the spinner from clear as it is a synchronous task",
+ "repo": "GauravKarakoti/Weather-API",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-28T15:18:57Z",
+ "updated_at": "2025-07-29T03:27:50Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-29T03:27:50Z",
+ "author_url": "https://github.com/ayushkumar320",
+ "author_avatar": "https://avatars.githubusercontent.com/u/75619981?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/75619981?v=4",
+ "profile_url": "https://github.com/ayushkumar320"
+ },
+ "Ramharsh-aidev": {
+ "expectedPoints": 22,
+ "currentPoints": 22,
+ "levels": {
+ "level1": 2,
+ "level2": 2,
+ "level3": 0
+ },
+ "prs": [
+ {
+ "url": "https://github.com/Dnyaneshpise/skywatch_alerts/pull/19",
+ "title": "Added Proper Navbar with Responsiveness",
+ "repo": "Dnyaneshpise/skywatch_alerts",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-24T21:31:50Z",
+ "updated_at": "2025-07-25T09:16:31Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-25T08:47:31Z",
+ "author_url": "https://github.com/Ramharsh-aidev",
+ "author_avatar": "https://avatars.githubusercontent.com/u/174716175?v=4"
+ },
+ {
+ "url": "https://github.com/MeghanaDG04/RECIPEDIA/pull/122",
+ "title": "Enhance About Us Page with Modular Components",
+ "repo": "MeghanaDG04/Recipedia",
+ "level": "level2",
+ "points": 7,
+ "created_at": "2025-08-02T05:43:09Z",
+ "updated_at": "2025-08-02T16:20:30Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-08-02T16:20:30Z",
+ "author_url": "https://github.com/Ramharsh-aidev",
+ "author_avatar": "https://avatars.githubusercontent.com/u/174716175?v=4"
+ },
+ {
+ "url": "https://github.com/MeghanaDG04/RECIPEDIA/pull/43",
+ "title": "Migrated Successfully from CRA to Vite and updated readme",
+ "repo": "MeghanaDG04/Recipedia",
+ "level": "level2",
+ "points": 7,
+ "created_at": "2025-07-24T20:43:03Z",
+ "updated_at": "2025-07-25T13:42:51Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-25T13:42:50Z",
+ "author_url": "https://github.com/Ramharsh-aidev",
+ "author_avatar": "https://avatars.githubusercontent.com/u/174716175?v=4"
+ },
+ {
+ "url": "https://github.com/MeghanaDG04/RECIPEDIA/pull/41",
+ "title": "Revamped Navbar with Authentication & UI Enhancements",
+ "repo": "MeghanaDG04/Recipedia",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-24T16:36:06Z",
+ "updated_at": "2025-07-24T16:39:22Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-24T16:39:22Z",
+ "author_url": "https://github.com/Ramharsh-aidev",
+ "author_avatar": "https://avatars.githubusercontent.com/u/174716175?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/174716175?v=4",
+ "profile_url": "https://github.com/Ramharsh-aidev"
+ },
+ "ChaitanyaAgarwal72": {
+ "expectedPoints": 22,
+ "currentPoints": 22,
+ "levels": {
+ "level1": 2,
+ "level2": 2,
+ "level3": 0
+ },
+ "prs": [
+ {
+ "url": "https://github.com/ruchikakengal/WebDevIn100_Days/pull/304",
+ "title": "Added Day-23_Target_Reflex_Test (Fixes #251)",
+ "repo": "ruchikakengal/WebDevIn100_Days",
+ "level": "level2",
+ "points": 7,
+ "created_at": "2025-07-25T20:16:46Z",
+ "updated_at": "2025-07-27T07:23:51Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-27T07:23:50Z",
+ "author_url": "https://github.com/ChaitanyaAgarwal72",
+ "author_avatar": "https://avatars.githubusercontent.com/u/145689555?v=4"
+ },
+ {
+ "url": "https://github.com/eccentriccoder01/TalkHeal/pull/50",
+ "title": "Update README.md (Fixes #28)",
+ "repo": "eccentriccoder01/TalkHeal",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-26T16:07:44Z",
+ "updated_at": "2025-08-03T03:52:43Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-26T18:25:49Z",
+ "author_url": "https://github.com/ChaitanyaAgarwal72",
+ "author_avatar": "https://avatars.githubusercontent.com/u/145689555?v=4"
+ },
+ {
+ "url": "https://github.com/eccentriccoder01/TalkHeal/pull/30",
+ "title": "Update the Streamlit UI (Fixes #3)",
+ "repo": "eccentriccoder01/TalkHeal",
+ "level": "level2",
+ "points": 7,
+ "created_at": "2025-07-24T07:46:50Z",
+ "updated_at": "2025-08-03T03:52:59Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-24T20:48:48Z",
+ "author_url": "https://github.com/ChaitanyaAgarwal72",
+ "author_avatar": "https://avatars.githubusercontent.com/u/145689555?v=4"
+ },
+ {
+ "url": "https://github.com/eccentriccoder01/TalkHeal/pull/13",
+ "title": "Add Delete Chat Feature with Confirmation in Sidebar (Fixes #4)",
+ "repo": "eccentriccoder01/TalkHeal",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-22T11:33:57Z",
+ "updated_at": "2025-08-03T03:53:24Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-22T12:22:38Z",
+ "author_url": "https://github.com/ChaitanyaAgarwal72",
+ "author_avatar": "https://avatars.githubusercontent.com/u/145689555?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/145689555?v=4",
+ "profile_url": "https://github.com/ChaitanyaAgarwal72"
+ },
+ "Niyati-Dinesh": {
+ "expectedPoints": 21,
+ "currentPoints": 21,
+ "levels": {
+ "level1": 1,
+ "level2": 1,
+ "level3": 1
+ },
+ "prs": [
+ {
+ "url": "https://github.com/Abhishek2634/Foodie/pull/110",
+ "title": "Fixed some bugs and improvised UI",
+ "repo": "Abhishek2634/Foodie",
+ "level": "level3",
+ "points": 10,
+ "created_at": "2025-07-25T11:52:51Z",
+ "updated_at": "2025-07-26T14:51:24Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-26T11:01:39Z",
+ "author_url": "https://github.com/Niyati-Dinesh",
+ "author_avatar": "https://avatars.githubusercontent.com/u/171223311?v=4"
+ },
+ {
+ "url": "https://github.com/Amarjha01/InfantCareCompass/pull/113",
+ "title": "Improved footer design , added floating scroll-to-top button",
+ "repo": "Amarjha01/InfantCareCompass",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-26T12:23:49Z",
+ "updated_at": "2025-07-28T14:24:54Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-28T14:24:53Z",
+ "author_url": "https://github.com/Niyati-Dinesh",
+ "author_avatar": "https://avatars.githubusercontent.com/u/171223311?v=4"
+ },
+ {
+ "url": "https://github.com/rahulkhandait-sde/cineverse/pull/39",
+ "title": "added working 'Explore By Genres' page",
+ "repo": "rahulkhandait-sde/movie-search",
+ "level": "level2",
+ "points": 7,
+ "created_at": "2025-08-02T14:35:32Z",
+ "updated_at": "2025-08-02T16:55:50Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-08-02T16:55:10Z",
+ "author_url": "https://github.com/Niyati-Dinesh",
+ "author_avatar": "https://avatars.githubusercontent.com/u/171223311?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/171223311?v=4",
+ "profile_url": "https://github.com/Niyati-Dinesh"
+ },
+ "saarakhan": {
+ "expectedPoints": 21,
+ "currentPoints": 21,
+ "levels": {
+ "level1": 1,
+ "level2": 1,
+ "level3": 1
+ },
+ "prs": [
+ {
+ "url": "https://github.com/Abhishek2634/Foodie/pull/90",
+ "title": "React HOT Toast Notification",
+ "repo": "Abhishek2634/Foodie",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-24T11:20:29Z",
+ "updated_at": "2025-08-02T10:55:55Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-24T16:37:27Z",
+ "author_url": "https://github.com/saarakhan",
+ "author_avatar": "https://avatars.githubusercontent.com/u/120663154?v=4"
+ },
+ {
+ "url": "https://github.com/Abhishek2634/Foodie/pull/69",
+ "title": "Food Detail Page",
+ "repo": "Abhishek2634/Foodie",
+ "level": "level3",
+ "points": 10,
+ "created_at": "2025-07-23T14:51:42Z",
+ "updated_at": "2025-08-02T10:53:13Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-24T07:25:47Z",
+ "author_url": "https://github.com/saarakhan",
+ "author_avatar": "https://avatars.githubusercontent.com/u/120663154?v=4"
+ },
+ {
+ "url": "https://github.com/TanmayKalra09/SmartLog/pull/59",
+ "title": "Download Transaction History",
+ "repo": "TanmayKalra09/SmartLog",
+ "level": "level2",
+ "points": 7,
+ "created_at": "2025-07-22T16:05:19Z",
+ "updated_at": "2025-07-23T06:21:28Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-23T06:21:14Z",
+ "author_url": "https://github.com/saarakhan",
+ "author_avatar": "https://avatars.githubusercontent.com/u/120663154?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/120663154?v=4",
+ "profile_url": "https://github.com/saarakhan"
+ },
+ "spidey279": {
+ "expectedPoints": 21,
+ "currentPoints": 21,
+ "levels": {
+ "level1": 0,
+ "level2": 3,
+ "level3": 0
+ },
+ "prs": [
+ {
+ "url": "https://github.com/Adarsh-Chaubey03/TravelGrid/pull/373",
+ "title": "fix: Hero Section UI Fixed",
+ "repo": "Adarsh-Chaubey03/TravelGrid",
+ "level": "level2",
+ "points": 7,
+ "created_at": "2025-07-30T18:23:57Z",
+ "updated_at": "2025-07-31T04:20:09Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-31T04:19:57Z",
+ "author_url": "https://github.com/spidey279",
+ "author_avatar": "https://avatars.githubusercontent.com/u/215125309?v=4"
+ },
+ {
+ "url": "https://github.com/souvikpramanikgit/LearnHub/pull/79",
+ "title": "Restored my code which got unintentionally removed",
+ "repo": "souvikpramanikgit/LearnHub",
+ "level": "level2",
+ "points": 7,
+ "created_at": "2025-07-25T19:28:00Z",
+ "updated_at": "2025-07-25T20:33:24Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-25T20:31:33Z",
+ "author_url": "https://github.com/spidey279",
+ "author_avatar": "https://avatars.githubusercontent.com/u/215125309?v=4"
+ },
+ {
+ "url": "https://github.com/souvikpramanikgit/LearnHub/pull/54",
+ "title": "Feature/fixing UI",
+ "repo": "souvikpramanikgit/LearnHub",
+ "level": "level2",
+ "points": 7,
+ "created_at": "2025-07-23T16:40:31Z",
+ "updated_at": "2025-07-24T18:19:33Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-23T17:27:58Z",
+ "author_url": "https://github.com/spidey279",
+ "author_avatar": "https://avatars.githubusercontent.com/u/215125309?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/215125309?v=4",
+ "profile_url": "https://github.com/spidey279"
+ },
+ "ShivamAgrawal0813": {
+ "expectedPoints": 21,
+ "currentPoints": 21,
+ "levels": {
+ "level1": 1,
+ "level2": 1,
+ "level3": 1
+ },
+ "prs": [
+ {
+ "url": "https://github.com/Adarsh-Chaubey03/TravelGrid/pull/368",
+ "title": "Add automated contributor table with GitHub Token integration",
+ "repo": "Adarsh-Chaubey03/TravelGrid",
+ "level": "level3",
+ "points": 10,
+ "created_at": "2025-07-30T16:47:29Z",
+ "updated_at": "2025-07-31T04:50:13Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-31T03:52:01Z",
+ "author_url": "https://github.com/ShivamAgrawal0813",
+ "author_avatar": "https://avatars.githubusercontent.com/u/142653516?v=4"
+ },
+ {
+ "url": "https://github.com/Adarsh-Chaubey03/TravelGrid/pull/340",
+ "title": "Create db models for every feature",
+ "repo": "Adarsh-Chaubey03/TravelGrid",
+ "level": "level2",
+ "points": 7,
+ "created_at": "2025-07-29T14:07:30Z",
+ "updated_at": "2025-07-30T05:06:19Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-30T04:01:40Z",
+ "author_url": "https://github.com/ShivamAgrawal0813",
+ "author_avatar": "https://avatars.githubusercontent.com/u/142653516?v=4"
+ },
+ {
+ "url": "https://github.com/Adarsh-Chaubey03/TravelGrid/pull/263",
+ "title": "Added close btn to mobile nav sidebar",
+ "repo": "Adarsh-Chaubey03/TravelGrid",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-28T06:00:47Z",
+ "updated_at": "2025-07-28T12:07:12Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-28T10:09:51Z",
+ "author_url": "https://github.com/ShivamAgrawal0813",
+ "author_avatar": "https://avatars.githubusercontent.com/u/142653516?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/142653516?v=4",
+ "profile_url": "https://github.com/ShivamAgrawal0813"
+ },
+ "Code-master-pragyan": {
+ "expectedPoints": 21,
+ "currentPoints": 21,
+ "levels": {
+ "level1": 0,
+ "level2": 3,
+ "level3": 0
+ },
+ "prs": [
+ {
+ "url": "https://github.com/Adarsh-Chaubey03/TravelGrid/pull/356",
+ "title": "✨ Add Save Places Feature with Dashboard Integration",
+ "repo": "Adarsh-Chaubey03/TravelGrid",
+ "level": "level2",
+ "points": 7,
+ "created_at": "2025-07-30T07:05:15Z",
+ "updated_at": "2025-07-30T15:07:10Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-30T15:06:50Z",
+ "author_url": "https://github.com/Code-master-pragyan",
+ "author_avatar": "https://avatars.githubusercontent.com/u/181186022?v=4"
+ },
+ {
+ "url": "https://github.com/Adarsh-Chaubey03/TravelGrid/pull/258",
+ "title": "🔧 Fix: Auth Flow and Navbar Visibility Issues (#221)",
+ "repo": "Adarsh-Chaubey03/TravelGrid",
+ "level": "level2",
+ "points": 7,
+ "created_at": "2025-07-27T17:43:38Z",
+ "updated_at": "2025-07-28T10:00:16Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-28T09:59:47Z",
+ "author_url": "https://github.com/Code-master-pragyan",
+ "author_avatar": "https://avatars.githubusercontent.com/u/181186022?v=4"
+ },
+ {
+ "url": "https://github.com/Adarsh-Chaubey03/TravelGrid/pull/162",
+ "title": "feat: Resolve #143 - Functional dashboard cards, responsive UI, and Discover Places route added",
+ "repo": "Adarsh-Chaubey03/TravelGrid",
+ "level": "level2",
+ "points": 7,
+ "created_at": "2025-07-24T18:32:56Z",
+ "updated_at": "2025-07-25T06:19:07Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-25T06:18:44Z",
+ "author_url": "https://github.com/Code-master-pragyan",
+ "author_avatar": "https://avatars.githubusercontent.com/u/181186022?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/181186022?v=4",
+ "profile_url": "https://github.com/Code-master-pragyan"
+ },
+ "Jils31": {
+ "expectedPoints": 21,
+ "currentPoints": 21,
+ "levels": {
+ "level1": 1,
+ "level2": 1,
+ "level3": 1
+ },
+ "prs": [
+ {
+ "url": "https://github.com/Adarsh-Chaubey03/TravelGrid/pull/324",
+ "title": "Prevent Unauthenticated Users from Booking",
+ "repo": "Adarsh-Chaubey03/TravelGrid",
+ "level": "level2",
+ "points": 7,
+ "created_at": "2025-07-29T05:56:03Z",
+ "updated_at": "2025-07-30T03:58:39Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-30T03:58:17Z",
+ "author_url": "https://github.com/Jils31",
+ "author_avatar": "https://avatars.githubusercontent.com/u/176881379?v=4"
+ },
+ {
+ "url": "https://github.com/SamXop123/RigCrafter/pull/25",
+ "title": "User Dashboard Added and Sign up/Sign in pages also added",
+ "repo": "SamXop123/RigCrafter",
+ "level": "level3",
+ "points": 10,
+ "created_at": "2025-07-28T05:21:53Z",
+ "updated_at": "2025-07-28T12:25:24Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-28T11:34:35Z",
+ "author_url": "https://github.com/Jils31",
+ "author_avatar": "https://avatars.githubusercontent.com/u/176881379?v=4"
+ },
+ {
+ "url": "https://github.com/Agarwalvidu/ArdhNaariShakti_Taara_Frontend/pull/86",
+ "title": "Made login page fully responsive for all screen sizes",
+ "repo": "Agarwalvidu/ArdhNaariShakti_Taara_Frontend",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-08-01T07:49:40Z",
+ "updated_at": "2025-08-01T08:24:56Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-08-01T08:24:56Z",
+ "author_url": "https://github.com/Jils31",
+ "author_avatar": "https://avatars.githubusercontent.com/u/176881379?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/176881379?v=4",
+ "profile_url": "https://github.com/Jils31"
+ },
+ "srishtigupta1234": {
+ "expectedPoints": 21,
+ "currentPoints": 21,
+ "levels": {
+ "level1": 0,
+ "level2": 3,
+ "level3": 0
+ },
+ "prs": [
+ {
+ "url": "https://github.com/Adarsh-Chaubey03/TravelGrid/pull/134",
+ "title": "Make travel guide section responsive",
+ "repo": "Adarsh-Chaubey03/TravelGrid",
+ "level": "level2",
+ "points": 7,
+ "created_at": "2025-07-24T04:30:34Z",
+ "updated_at": "2025-07-24T15:39:15Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-24T15:39:15Z",
+ "author_url": "https://github.com/srishtigupta1234",
+ "author_avatar": "https://avatars.githubusercontent.com/u/171693716?v=4"
+ },
+ {
+ "url": "https://github.com/Adarsh-Chaubey03/TravelGrid/pull/133",
+ "title": "Added filters to Packages page",
+ "repo": "Adarsh-Chaubey03/TravelGrid",
+ "level": "level2",
+ "points": 7,
+ "created_at": "2025-07-24T03:51:29Z",
+ "updated_at": "2025-07-24T03:56:37Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-24T03:56:37Z",
+ "author_url": "https://github.com/srishtigupta1234",
+ "author_avatar": "https://avatars.githubusercontent.com/u/171693716?v=4"
+ },
+ {
+ "url": "https://github.com/Adarsh-Chaubey03/TravelGrid/pull/132",
+ "title": "Added ratings and reviews for packages",
+ "repo": "Adarsh-Chaubey03/TravelGrid",
+ "level": "level2",
+ "points": 7,
+ "created_at": "2025-07-24T03:32:21Z",
+ "updated_at": "2025-07-24T03:42:27Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-24T03:42:27Z",
+ "author_url": "https://github.com/srishtigupta1234",
+ "author_avatar": "https://avatars.githubusercontent.com/u/171693716?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/171693716?v=4",
+ "profile_url": "https://github.com/srishtigupta1234"
+ },
+ "MANASA-NUKALA": {
+ "expectedPoints": 21,
+ "currentPoints": 21,
+ "levels": {
+ "level1": 0,
+ "level2": 3,
+ "level3": 0
+ },
+ "prs": [
+ {
+ "url": "https://github.com/Adarsh-Chaubey03/TravelGrid/pull/92",
+ "title": "Responsive navbar",
+ "repo": "Adarsh-Chaubey03/TravelGrid",
+ "level": "level2",
+ "points": 7,
+ "created_at": "2025-07-22T17:00:39Z",
+ "updated_at": "2025-07-24T08:25:20Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-24T08:25:19Z",
+ "author_url": "https://github.com/MANASA-NUKALA",
+ "author_avatar": "https://avatars.githubusercontent.com/u/167613166?v=4"
+ },
+ {
+ "url": "https://github.com/Adarsh-Chaubey03/TravelGrid/pull/90",
+ "title": "Add spinner to loading states",
+ "repo": "Adarsh-Chaubey03/TravelGrid",
+ "level": "level2",
+ "points": 7,
+ "created_at": "2025-07-22T16:31:40Z",
+ "updated_at": "2025-07-24T08:10:43Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-24T08:10:15Z",
+ "author_url": "https://github.com/MANASA-NUKALA",
+ "author_avatar": "https://avatars.githubusercontent.com/u/167613166?v=4"
+ },
+ {
+ "url": "https://github.com/NishantRana07/HrRoadways/pull/355",
+ "title": "feat: highlight active navigation link using NavLink and CSS",
+ "repo": "NishantRana07/HrRoadways",
+ "level": "level2",
+ "points": 7,
+ "created_at": "2025-07-24T13:43:01Z",
+ "updated_at": "2025-07-25T04:46:23Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-25T04:46:11Z",
+ "author_url": "https://github.com/MANASA-NUKALA",
+ "author_avatar": "https://avatars.githubusercontent.com/u/167613166?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/167613166?v=4",
+ "profile_url": "https://github.com/MANASA-NUKALA"
+ },
+ "PROfESSOR-V": {
+ "expectedPoints": 21,
+ "currentPoints": 21,
+ "levels": {
+ "level1": 0,
+ "level2": 3,
+ "level3": 0
+ },
+ "prs": [
+ {
+ "url": "https://github.com/Adarsh-Chaubey03/TravelGrid/pull/70",
+ "title": "Added Book Ticket Window",
+ "repo": "Adarsh-Chaubey03/TravelGrid",
+ "level": "level2",
+ "points": 7,
+ "created_at": "2025-07-22T13:08:03Z",
+ "updated_at": "2025-07-22T13:10:49Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-22T13:10:48Z",
+ "author_url": "https://github.com/PROfESSOR-V",
+ "author_avatar": "https://avatars.githubusercontent.com/u/172966114?v=4"
+ },
+ {
+ "url": "https://github.com/Adarsh-Chaubey03/TravelGrid/pull/61",
+ "title": "ADD HOTELS WEB PAGE",
+ "repo": "Adarsh-Chaubey03/TravelGrid",
+ "level": "level2",
+ "points": 7,
+ "created_at": "2025-07-22T11:11:04Z",
+ "updated_at": "2025-07-22T12:56:16Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-22T12:56:16Z",
+ "author_url": "https://github.com/PROfESSOR-V",
+ "author_avatar": "https://avatars.githubusercontent.com/u/172966114?v=4"
+ },
+ {
+ "url": "https://github.com/MeghanaDG04/RECIPEDIA/pull/18",
+ "title": "Completely change the Web UI",
+ "repo": "MeghanaDG04/Recipedia",
+ "level": "level2",
+ "points": 7,
+ "created_at": "2025-07-22T17:50:24Z",
+ "updated_at": "2025-07-23T01:31:58Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-22T18:54:36Z",
+ "author_url": "https://github.com/PROfESSOR-V",
+ "author_avatar": "https://avatars.githubusercontent.com/u/172966114?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/172966114?v=4",
+ "profile_url": "https://github.com/PROfESSOR-V"
+ },
+ "SushritaSingh": {
+ "expectedPoints": 21,
+ "currentPoints": 21,
+ "levels": {
+ "level1": 1,
+ "level2": 1,
+ "level3": 1
+ },
+ "prs": [
+ {
+ "url": "https://github.com/itsAnimation/AnimateItNow/pull/68",
+ "title": " Fix: Template gallery visibility in dark mode",
+ "repo": "itsAnimation/AnimateItNow",
+ "level": "level2",
+ "points": 7,
+ "created_at": "2025-07-22T13:27:58Z",
+ "updated_at": "2025-07-22T15:38:13Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-22T15:38:13Z",
+ "author_url": "https://github.com/SushritaSingh",
+ "author_avatar": "https://avatars.githubusercontent.com/u/219618065?v=4"
+ },
+ {
+ "url": "https://github.com/Muneerali199/DocMagic/pull/86",
+ "title": "Fixes #75: Add badges for build, license, and dependencies",
+ "repo": "Muneerali199/DocMagic",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-24T14:55:17Z",
+ "updated_at": "2025-08-02T13:52:45Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-08-02T13:52:45Z",
+ "author_url": "https://github.com/SushritaSingh",
+ "author_avatar": "https://avatars.githubusercontent.com/u/219618065?v=4"
+ },
+ {
+ "url": "https://github.com/ProTecGames/Karbon/pull/53",
+ "title": "Add Dark Mode Toggle to UI for Enhanced Visual Accessibility.",
+ "repo": "ProTecGames/Karbon",
+ "level": null,
+ "points": 0,
+ "created_at": "2025-07-25T06:53:47Z",
+ "updated_at": "2025-07-25T09:49:23Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-25T09:48:08Z",
+ "author_url": "https://github.com/SushritaSingh",
+ "author_avatar": "https://avatars.githubusercontent.com/u/219618065?v=4"
+ },
+ {
+ "url": "https://github.com/reshamsai150/7.Analysis-and-Prediction-of-Electric-Vehicle-Costs-A-Machine-Learning-Based-Approach/pull/35",
+ "title": "Added EV Charging Station Locator with Interactive Dashboard (Fixes #5)",
+ "repo": "reshamsai150/7.Analysis-and-Prediction-of-Electric-Vehicle-Costs-A-Machine-Learning-Based-Approach",
+ "level": "level3",
+ "points": 10,
+ "created_at": "2025-07-30T15:36:14Z",
+ "updated_at": "2025-08-03T04:27:28Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-08-03T04:26:45Z",
+ "author_url": "https://github.com/SushritaSingh",
+ "author_avatar": "https://avatars.githubusercontent.com/u/219618065?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/219618065?v=4",
+ "profile_url": "https://github.com/SushritaSingh"
+ },
+ "harshit69x": {
+ "expectedPoints": 21,
+ "currentPoints": 21,
+ "levels": {
+ "level1": 1,
+ "level2": 1,
+ "level3": 1
+ },
+ "prs": [
+ {
+ "url": "https://github.com/InnoWebLabs/Vehigo/pull/193",
+ "title": "added supabase for dynamic fetching of details",
+ "repo": "InnoWebLabs/Vehigo",
+ "level": "level3",
+ "points": 10,
+ "created_at": "2025-07-31T10:51:32Z",
+ "updated_at": "2025-07-31T16:05:59Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-31T16:05:59Z",
+ "author_url": "https://github.com/harshit69x",
+ "author_avatar": "https://avatars.githubusercontent.com/u/122545283?v=4"
+ },
+ {
+ "url": "https://github.com/InnoWebLabs/Vehigo/pull/178",
+ "title": "Added filtering and sorting in the UI",
+ "repo": "InnoWebLabs/Vehigo",
+ "level": "level2",
+ "points": 7,
+ "created_at": "2025-07-30T05:59:30Z",
+ "updated_at": "2025-07-30T13:50:41Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-30T13:50:41Z",
+ "author_url": "https://github.com/harshit69x",
+ "author_avatar": "https://avatars.githubusercontent.com/u/122545283?v=4"
+ },
+ {
+ "url": "https://github.com/InnoWebLabs/Vehigo/pull/177",
+ "title": "added proper rendering of svg favicon",
+ "repo": "InnoWebLabs/Vehigo",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-29T18:43:48Z",
+ "updated_at": "2025-07-30T03:53:49Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-30T03:10:03Z",
+ "author_url": "https://github.com/harshit69x",
+ "author_avatar": "https://avatars.githubusercontent.com/u/122545283?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/122545283?v=4",
+ "profile_url": "https://github.com/harshit69x"
+ },
+ "HimanshuSolo2005": {
+ "expectedPoints": 21,
+ "currentPoints": 21,
+ "levels": {
+ "level1": 1,
+ "level2": 1,
+ "level3": 1
+ },
+ "prs": [
+ {
+ "url": "https://github.com/Ayushjhawar8/Flavor-ai/pull/113",
+ "title": "Error Message when API keys are not set-up by contributors[#109]",
+ "repo": "Ayushjhawar8/Flavor-ai",
+ "level": "level3",
+ "points": 10,
+ "created_at": "2025-07-29T14:46:48Z",
+ "updated_at": "2025-08-01T14:50:05Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-30T13:58:32Z",
+ "author_url": "https://github.com/HimanshuSolo2005",
+ "author_avatar": "https://avatars.githubusercontent.com/u/190997564?v=4"
+ },
+ {
+ "url": "https://github.com/Ayushjhawar8/Flavor-ai/pull/103",
+ "title": "Fixed CSS-hovering Mistake in Footer [Fixes #102]",
+ "repo": "Ayushjhawar8/Flavor-ai",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-28T13:32:07Z",
+ "updated_at": "2025-07-29T13:48:27Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-29T13:48:27Z",
+ "author_url": "https://github.com/HimanshuSolo2005",
+ "author_avatar": "https://avatars.githubusercontent.com/u/190997564?v=4"
+ },
+ {
+ "url": "https://github.com/Ayushjhawar8/Flavor-ai/pull/30",
+ "title": "Improvement for UI in Dietary Restriction #15",
+ "repo": "Ayushjhawar8/Flavor-ai",
+ "level": "level2",
+ "points": 7,
+ "created_at": "2025-07-23T15:55:00Z",
+ "updated_at": "2025-07-24T12:21:18Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-24T12:18:43Z",
+ "author_url": "https://github.com/HimanshuSolo2005",
+ "author_avatar": "https://avatars.githubusercontent.com/u/190997564?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/190997564?v=4",
+ "profile_url": "https://github.com/HimanshuSolo2005"
+ },
+ "Mohammedamaan5714": {
+ "expectedPoints": 21,
+ "currentPoints": 21,
+ "levels": {
+ "level1": 0,
+ "level2": 3,
+ "level3": 0
+ },
+ "prs": [
+ {
+ "url": "https://github.com/Ayushjhawar8/Flavor-ai/pull/112",
+ "title": "[#99] show category suggestion on empty favouriate page",
+ "repo": "Ayushjhawar8/Flavor-ai",
+ "level": "level2",
+ "points": 7,
+ "created_at": "2025-07-29T14:11:12Z",
+ "updated_at": "2025-08-01T14:48:53Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-30T13:04:20Z",
+ "author_url": "https://github.com/Mohammedamaan5714",
+ "author_avatar": "https://avatars.githubusercontent.com/u/115135095?v=4"
+ },
+ {
+ "url": "https://github.com/Ayushjhawar8/Flavor-ai/pull/52",
+ "title": "fix : clear button now resets form and output correctly",
+ "repo": "Ayushjhawar8/Flavor-ai",
+ "level": "level2",
+ "points": 7,
+ "created_at": "2025-07-25T07:32:20Z",
+ "updated_at": "2025-07-29T11:10:28Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-25T09:19:32Z",
+ "author_url": "https://github.com/Mohammedamaan5714",
+ "author_avatar": "https://avatars.githubusercontent.com/u/115135095?v=4"
+ },
+ {
+ "url": "https://github.com/GauravKarakoti/Weather-API/pull/221",
+ "title": "feat: Add localStorage fallback with memory-based storage",
+ "repo": "GauravKarakoti/Weather-API",
+ "level": "level2",
+ "points": 7,
+ "created_at": "2025-07-29T09:10:24Z",
+ "updated_at": "2025-07-29T11:08:51Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-29T09:22:24Z",
+ "author_url": "https://github.com/Mohammedamaan5714",
+ "author_avatar": "https://avatars.githubusercontent.com/u/115135095?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/115135095?v=4",
+ "profile_url": "https://github.com/Mohammedamaan5714"
+ },
+ "ItsMeRaseeca": {
+ "expectedPoints": 25,
+ "currentPoints": 25,
+ "levels": {
+ "level1": 2,
+ "level2": 1,
+ "level3": 1
+ },
+ "prs": [
+ {
+ "url": "https://github.com/chandannekya/Clean-Breath/pull/54",
+ "title": "#34 Enhance-Blog-Page",
+ "repo": "chandannekya/Clean-Breath",
+ "level": "level2",
+ "points": 7,
+ "created_at": "2025-07-24T12:58:23Z",
+ "updated_at": "2025-07-24T13:06:32Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-24T13:06:32Z",
+ "author_url": "https://github.com/ItsMeRaseeca",
+ "author_avatar": "https://avatars.githubusercontent.com/u/142300062?v=4"
+ },
+ {
+ "url": "https://github.com/Kritika75/TheCawnporeMag.github.io/pull/82",
+ "title": "#43 Implemented card grid for ISSUES page",
+ "repo": "Kritika75/TheCawnporeMag.github.io",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-24T07:19:45Z",
+ "updated_at": "2025-07-24T07:53:14Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-24T07:53:14Z",
+ "author_url": "https://github.com/ItsMeRaseeca",
+ "author_avatar": "https://avatars.githubusercontent.com/u/142300062?v=4"
+ },
+ {
+ "url": "https://github.com/sampadatiwari30/DeshDarshan/pull/70",
+ "title": "Dance-Culture-Pages",
+ "repo": "sampadatiwari30/DeshDarshan",
+ "level": "level3",
+ "points": 10,
+ "created_at": "2025-07-23T17:00:41Z",
+ "updated_at": "2025-07-24T06:29:25Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-24T06:28:44Z",
+ "author_url": "https://github.com/ItsMeRaseeca",
+ "author_avatar": "https://avatars.githubusercontent.com/u/142300062?v=4"
+ },
+ {
+ "url": "https://github.com/AshiTomar210/Euphoric-2025/pull/18",
+ "title": "Dynamic-Gallery-Added",
+ "repo": "AshiTomar210/Euphoric-2025",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-30T15:19:45Z",
+ "updated_at": "2025-08-02T07:42:49Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-08-02T07:42:49Z",
+ "author_url": "https://github.com/ItsMeRaseeca",
+ "author_avatar": "https://avatars.githubusercontent.com/u/142300062?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/142300062?v=4",
+ "profile_url": "https://github.com/ItsMeRaseeca"
+ },
+ "mayaannkkk": {
+ "expectedPoints": 21,
+ "currentPoints": 21,
+ "levels": {
+ "level1": 1,
+ "level2": 1,
+ "level3": 1
+ },
+ "prs": [
+ {
+ "url": "https://github.com/Gnanaashritha/Blogging-Platform-/pull/58",
+ "title": "Add CONTRIBUTING.md file",
+ "repo": "Gnanaashritha/Blogging-Platform-",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-30T16:05:08Z",
+ "updated_at": "2025-07-31T19:05:32Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-31T19:05:32Z",
+ "author_url": "https://github.com/mayaannkkk",
+ "author_avatar": "https://avatars.githubusercontent.com/u/179221628?v=4"
+ },
+ {
+ "url": "https://github.com/pooranjoyb/cpp-sdk-appwrite/pull/102",
+ "title": "feat: updatePush",
+ "repo": "pooranjoyb/cpp-sdk-appwrite",
+ "level": "level2",
+ "points": 7,
+ "created_at": "2025-07-30T09:44:16Z",
+ "updated_at": "2025-08-01T17:19:01Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-08-01T17:19:01Z",
+ "author_url": "https://github.com/mayaannkkk",
+ "author_avatar": "https://avatars.githubusercontent.com/u/179221628?v=4"
+ },
+ {
+ "url": "https://github.com/pooranjoyb/cpp-sdk-appwrite/pull/86",
+ "title": "feat: createPush [Messaging]",
+ "repo": "pooranjoyb/cpp-sdk-appwrite",
+ "level": "level3",
+ "points": 10,
+ "created_at": "2025-07-26T09:57:03Z",
+ "updated_at": "2025-07-28T15:54:11Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-28T15:54:11Z",
+ "author_url": "https://github.com/mayaannkkk",
+ "author_avatar": "https://avatars.githubusercontent.com/u/179221628?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/179221628?v=4",
+ "profile_url": "https://github.com/mayaannkkk"
+ },
+ "Sirivennela04": {
+ "expectedPoints": 21,
+ "currentPoints": 21,
+ "levels": {
+ "level1": 1,
+ "level2": 1,
+ "level3": 1
+ },
+ "prs": [
+ {
+ "url": "https://github.com/NishantRana07/HrRoadways/pull/278",
+ "title": "Fixed User Language Preference Storage and Persistence Issue",
+ "repo": "NishantRana07/HrRoadways",
+ "level": "level3",
+ "points": 10,
+ "created_at": "2025-07-22T08:00:41Z",
+ "updated_at": "2025-07-22T11:19:08Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-22T09:08:38Z",
+ "author_url": "https://github.com/Sirivennela04",
+ "author_avatar": "https://avatars.githubusercontent.com/u/179963946?v=4"
+ },
+ {
+ "url": "https://github.com/Er-luffy-D/SimplifAI/pull/22",
+ "title": "Add test coverage for Redux chatSlice reducer",
+ "repo": "Er-luffy-D/SimplifAI",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-23T15:31:13Z",
+ "updated_at": "2025-08-02T16:54:32Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-23T15:53:52Z",
+ "author_url": "https://github.com/Sirivennela04",
+ "author_avatar": "https://avatars.githubusercontent.com/u/179963946?v=4"
+ },
+ {
+ "url": "https://github.com/swarooppatilx/bit-by-query/pull/25",
+ "title": "fix: persist question completion state and progress across page reloa…",
+ "repo": "swarooppatilx/bit-by-query",
+ "level": "level2",
+ "points": 7,
+ "created_at": "2025-07-27T16:45:17Z",
+ "updated_at": "2025-07-29T15:09:25Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-29T12:20:30Z",
+ "author_url": "https://github.com/Sirivennela04",
+ "author_avatar": "https://avatars.githubusercontent.com/u/179963946?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/179963946?v=4",
+ "profile_url": "https://github.com/Sirivennela04"
+ },
+ "YashvanthSankar": {
+ "expectedPoints": 21,
+ "currentPoints": 21,
+ "levels": {
+ "level1": 1,
+ "level2": 1,
+ "level3": 1
+ },
+ "prs": [
+ {
+ "url": "https://github.com/Er-luffy-D/SimplifAI/pull/49",
+ "title": "feat: Implement advanced scroll animations and interactive cursor system inspired by Lenis and using GSAP",
+ "repo": "Er-luffy-D/SimplifAI",
+ "level": "level3",
+ "points": 10,
+ "created_at": "2025-07-27T17:57:27Z",
+ "updated_at": "2025-08-02T16:57:46Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-29T12:56:41Z",
+ "author_url": "https://github.com/YashvanthSankar",
+ "author_avatar": "https://avatars.githubusercontent.com/u/94030319?v=4"
+ },
+ {
+ "url": "https://github.com/Er-luffy-D/SimplifAI/pull/38",
+ "title": "feat: add smooth scrolling using Lenis for enhanced UX",
+ "repo": "Er-luffy-D/SimplifAI",
+ "level": "level2",
+ "points": 7,
+ "created_at": "2025-07-26T16:27:17Z",
+ "updated_at": "2025-08-02T16:56:04Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-27T13:07:27Z",
+ "author_url": "https://github.com/YashvanthSankar",
+ "author_avatar": "https://avatars.githubusercontent.com/u/94030319?v=4"
+ },
+ {
+ "url": "https://github.com/saumyayadav25/cpp-dsa-sheet-testing/pull/50",
+ "title": "fix: remove duplicate footer on Progress page",
+ "repo": "saumyayadav25/cpp-dsa-sheet-testing",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-25T16:43:00Z",
+ "updated_at": "2025-07-25T17:50:47Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-25T17:12:15Z",
+ "author_url": "https://github.com/YashvanthSankar",
+ "author_avatar": "https://avatars.githubusercontent.com/u/94030319?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/94030319?v=4",
+ "profile_url": "https://github.com/YashvanthSankar"
+ },
+ "6vam4arya": {
+ "expectedPoints": 25,
+ "currentPoints": 21,
+ "levels": {
+ "level1": 2,
+ "level2": 1,
+ "level3": 1
+ },
+ "prs": [
+ {
+ "url": "https://github.com/reshamsai150/7.Analysis-and-Prediction-of-Electric-Vehicle-Costs-A-Machine-Learning-Based-Approach/pull/42",
+ "title": "✨ Login/SignUp Page Designed From Scratch",
+ "repo": "reshamsai150/7.Analysis-and-Prediction-of-Electric-Vehicle-Costs-A-Machine-Learning-Based-Approach",
+ "level": "level3",
+ "points": 10,
+ "created_at": "2025-08-01T19:54:19Z",
+ "updated_at": "2025-08-03T04:30:57Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-08-03T04:30:36Z",
+ "author_url": "https://github.com/6vam4arya",
+ "author_avatar": "https://avatars.githubusercontent.com/u/144547966?v=4"
+ },
+ {
+ "url": "https://github.com/reshamsai150/7.Analysis-and-Prediction-of-Electric-Vehicle-Costs-A-Machine-Learning-Based-Approach/pull/29",
+ "title": "✨ Feature: Toggle Mode Button",
+ "repo": "reshamsai150/7.Analysis-and-Prediction-of-Electric-Vehicle-Costs-A-Machine-Learning-Based-Approach",
+ "level": "level2",
+ "points": 7,
+ "created_at": "2025-07-29T16:05:35Z",
+ "updated_at": "2025-07-30T17:05:32Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-30T08:33:16Z",
+ "author_url": "https://github.com/6vam4arya",
+ "author_avatar": "https://avatars.githubusercontent.com/u/144547966?v=4"
+ },
+ {
+ "url": "https://github.com/VAIBHAVBABELE/vaibhavbabele.github.io/pull/75",
+ "title": "Adding sleek UI for Our Services Section",
+ "repo": "VAIBHAVBABELE/vaibhavbabele.github.io",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-24T14:41:39Z",
+ "updated_at": "2025-07-27T13:45:26Z",
+ "state": "closed",
+ "merged": false,
+ "merged_at": null,
+ "author_url": "https://github.com/6vam4arya",
+ "author_avatar": "https://avatars.githubusercontent.com/u/144547966?v=4"
+ },
+ {
+ "url": "https://github.com/openml-stack/SentiLog-AI/pull/40",
+ "title": "Incorporated lucide-react icons for feature cards with optimizing their positioning and animation",
+ "repo": "openml-stack/SentiLog-AI",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-23T18:53:22Z",
+ "updated_at": "2025-07-25T18:37:21Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-25T18:36:58Z",
+ "author_url": "https://github.com/6vam4arya",
+ "author_avatar": "https://avatars.githubusercontent.com/u/144547966?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/144547966?v=4",
+ "profile_url": "https://github.com/6vam4arya"
+ },
+ "rahul01gupta11": {
+ "expectedPoints": 21,
+ "currentPoints": 21,
+ "levels": {
+ "level1": 1,
+ "level2": 1,
+ "level3": 1
+ },
+ "prs": [
+ {
+ "url": "https://github.com/sampadatiwari30/DeshDarshan/pull/89",
+ "title": "Major Folder Restructure & fixed bugs",
+ "repo": "sampadatiwari30/DeshDarshan",
+ "level": "level3",
+ "points": 10,
+ "created_at": "2025-07-24T10:53:45Z",
+ "updated_at": "2025-07-24T11:55:59Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-24T11:55:42Z",
+ "author_url": "https://github.com/rahul01gupta11",
+ "author_avatar": "https://avatars.githubusercontent.com/u/195276067?v=4"
+ },
+ {
+ "url": "https://github.com/sampadatiwari30/DeshDarshan/pull/34",
+ "title": "Added hover effects in Navbar, cards & some css improvements",
+ "repo": "sampadatiwari30/DeshDarshan",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-22T12:50:04Z",
+ "updated_at": "2025-07-23T03:29:24Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-23T03:28:42Z",
+ "author_url": "https://github.com/rahul01gupta11",
+ "author_avatar": "https://avatars.githubusercontent.com/u/195276067?v=4"
+ },
+ {
+ "url": "https://github.com/sampadatiwari30/DeshDarshan/pull/5",
+ "title": "Added scroll functionality and CSS improvements in login/signup button.",
+ "repo": "sampadatiwari30/DeshDarshan",
+ "level": "level2",
+ "points": 7,
+ "created_at": "2025-07-21T20:34:18Z",
+ "updated_at": "2025-07-22T04:45:58Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-22T04:43:45Z",
+ "author_url": "https://github.com/rahul01gupta11",
+ "author_avatar": "https://avatars.githubusercontent.com/u/195276067?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/195276067?v=4",
+ "profile_url": "https://github.com/rahul01gupta11"
+ },
+ "AayushSahani01": {
+ "expectedPoints": 21,
+ "currentPoints": 21,
+ "levels": {
+ "level1": 0,
+ "level2": 3,
+ "level3": 0
+ },
+ "prs": [
+ {
+ "url": "https://github.com/SCR01/scr-game/pull/45",
+ "title": "Sucess ! To added OnTopbar icons ",
+ "repo": "SCR01/scr-game",
+ "level": null,
+ "points": 0,
+ "created_at": "2025-07-29T12:04:29Z",
+ "updated_at": "2025-08-01T07:58:50Z",
+ "state": "open",
+ "merged": false,
+ "merged_at": null,
+ "author_url": "https://github.com/AayushSahani01",
+ "author_avatar": "https://avatars.githubusercontent.com/u/184648033?v=4"
+ },
+ {
+ "url": "https://github.com/SurajSG23/PrepBuddy/pull/104",
+ "title": "Bug-fixed theme-toggle and added progressBar !",
+ "repo": "SurajSG23/PrepBuddy",
+ "level": "level2",
+ "points": 7,
+ "created_at": "2025-08-02T10:41:21Z",
+ "updated_at": "2025-08-02T16:24:36Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-08-02T16:24:16Z",
+ "author_url": "https://github.com/AayushSahani01",
+ "author_avatar": "https://avatars.githubusercontent.com/u/184648033?v=4"
+ },
+ {
+ "url": "https://github.com/SurajSG23/PrepBuddy/pull/64",
+ "title": "To successfully! Added onTopBar icons",
+ "repo": "SurajSG23/PrepBuddy",
+ "level": "level2",
+ "points": 7,
+ "created_at": "2025-07-29T10:19:35Z",
+ "updated_at": "2025-07-29T10:51:51Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-29T10:51:20Z",
+ "author_url": "https://github.com/AayushSahani01",
+ "author_avatar": "https://avatars.githubusercontent.com/u/184648033?v=4"
+ },
+ {
+ "url": "https://github.com/SurajSG23/PrepBuddy/pull/57",
+ "title": "To Add Theme-Toggle!",
+ "repo": "SurajSG23/PrepBuddy",
+ "level": "level2",
+ "points": 7,
+ "created_at": "2025-07-28T10:16:55Z",
+ "updated_at": "2025-07-28T16:02:30Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-28T10:21:33Z",
+ "author_url": "https://github.com/AayushSahani01",
+ "author_avatar": "https://avatars.githubusercontent.com/u/184648033?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/184648033?v=4",
+ "profile_url": "https://github.com/AayushSahani01"
+ },
+ "AryanSachan12": {
+ "expectedPoints": 21,
+ "currentPoints": 21,
+ "levels": {
+ "level1": 0,
+ "level2": 3,
+ "level3": 0
+ },
+ "prs": [
+ {
+ "url": "https://github.com/SGCODEX/Music-Recommendation-Using-Facial-Expressions/pull/38",
+ "title": "Allow User to Manually Input Emotion Instead of Facial Detection and …",
+ "repo": "SGCODEX/Music-Recommendation-Using-Facial-Expressions",
+ "level": "level2",
+ "points": 7,
+ "created_at": "2025-07-22T07:33:09Z",
+ "updated_at": "2025-07-31T06:29:28Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-23T16:46:58Z",
+ "author_url": "https://github.com/AryanSachan12",
+ "author_avatar": "https://avatars.githubusercontent.com/u/141572341?v=4"
+ },
+ {
+ "url": "https://github.com/TanmayKalra09/SmartLog/pull/11",
+ "title": "Improved ui (Homepage icon and the categories not rendering correctly)",
+ "repo": "TanmayKalra09/SmartLog",
+ "level": "level2",
+ "points": 7,
+ "created_at": "2025-07-21T18:48:09Z",
+ "updated_at": "2025-07-22T08:24:40Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-22T07:32:30Z",
+ "author_url": "https://github.com/AryanSachan12",
+ "author_avatar": "https://avatars.githubusercontent.com/u/141572341?v=4"
+ },
+ {
+ "url": "https://github.com/TanmayKalra09/SmartLog/pull/5",
+ "title": "Bugfix/issue 1 transaction modal fix",
+ "repo": "TanmayKalra09/SmartLog",
+ "level": "level2",
+ "points": 7,
+ "created_at": "2025-07-21T18:16:14Z",
+ "updated_at": "2025-07-26T15:21:59Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-21T18:19:13Z",
+ "author_url": "https://github.com/AryanSachan12",
+ "author_avatar": "https://avatars.githubusercontent.com/u/141572341?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/141572341?v=4",
+ "profile_url": "https://github.com/AryanSachan12"
+ },
+ "AshokKumar2525": {
+ "expectedPoints": 21,
+ "currentPoints": 21,
+ "levels": {
+ "level1": 0,
+ "level2": 3,
+ "level3": 0
+ },
+ "prs": [
+ {
+ "url": "https://github.com/SomdattaNag/Security-Screening-System/pull/101",
+ "title": "Implemented Automatic Night Mode Camera Support",
+ "repo": "SomdattaNag/Security-Screening-System",
+ "level": "level2",
+ "points": 7,
+ "created_at": "2025-07-30T15:26:21Z",
+ "updated_at": "2025-07-31T15:11:22Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-31T02:16:47Z",
+ "author_url": "https://github.com/AshokKumar2525",
+ "author_avatar": "https://avatars.githubusercontent.com/u/169533792?v=4"
+ },
+ {
+ "url": "https://github.com/SomdattaNag/Security-Screening-System/pull/96",
+ "title": "Tamper Detection Feature Added",
+ "repo": "SomdattaNag/Security-Screening-System",
+ "level": "level2",
+ "points": 7,
+ "created_at": "2025-07-29T16:22:23Z",
+ "updated_at": "2025-07-29T17:19:07Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-29T17:18:50Z",
+ "author_url": "https://github.com/AshokKumar2525",
+ "author_avatar": "https://avatars.githubusercontent.com/u/169533792?v=4"
+ },
+ {
+ "url": "https://github.com/SomdattaNag/Security-Screening-System/pull/89",
+ "title": "Added Start Camera functionality to the GUI and Main Script",
+ "repo": "SomdattaNag/Security-Screening-System",
+ "level": "level2",
+ "points": 7,
+ "created_at": "2025-07-28T17:44:30Z",
+ "updated_at": "2025-07-29T03:39:31Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-29T03:39:11Z",
+ "author_url": "https://github.com/AshokKumar2525",
+ "author_avatar": "https://avatars.githubusercontent.com/u/169533792?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/169533792?v=4",
+ "profile_url": "https://github.com/AshokKumar2525"
+ },
+ "mohdabdullahmeraj": {
+ "expectedPoints": 21,
+ "currentPoints": 21,
+ "levels": {
+ "level1": 1,
+ "level2": 1,
+ "level3": 1
+ },
+ "prs": [
+ {
+ "url": "https://github.com/TanmayKalra09/SmartLog/pull/99",
+ "title": "Goals",
+ "repo": "TanmayKalra09/SmartLog",
+ "level": "level3",
+ "points": 10,
+ "created_at": "2025-07-24T10:27:43Z",
+ "updated_at": "2025-07-25T04:36:51Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-24T13:53:20Z",
+ "author_url": "https://github.com/mohdabdullahmeraj",
+ "author_avatar": "https://avatars.githubusercontent.com/u/174962633?v=4"
+ },
+ {
+ "url": "https://github.com/TanmayKalra09/SmartLog/pull/32",
+ "title": "corrected the alignment of the footer on dashboard",
+ "repo": "TanmayKalra09/SmartLog",
+ "level": "level2",
+ "points": 7,
+ "created_at": "2025-07-22T10:06:01Z",
+ "updated_at": "2025-07-22T11:28:40Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-22T10:36:53Z",
+ "author_url": "https://github.com/mohdabdullahmeraj",
+ "author_avatar": "https://avatars.githubusercontent.com/u/174962633?v=4"
+ },
+ {
+ "url": "https://github.com/TanmayKalra09/SmartLog/pull/21",
+ "title": "Feat: Add confirmation modal and update dependencies",
+ "repo": "TanmayKalra09/SmartLog",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-22T06:10:05Z",
+ "updated_at": "2025-07-22T09:35:48Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-22T08:08:07Z",
+ "author_url": "https://github.com/mohdabdullahmeraj",
+ "author_avatar": "https://avatars.githubusercontent.com/u/174962633?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/174962633?v=4",
+ "profile_url": "https://github.com/mohdabdullahmeraj"
+ },
+ "jaya-jha12": {
+ "expectedPoints": 20,
+ "currentPoints": 20,
+ "levels": {
+ "level1": 5,
+ "level2": 0,
+ "level3": 0
+ },
+ "prs": [
+ {
+ "url": "https://github.com/Abhishek2634/Foodie/pull/230",
+ "title": "Fix/menu navigate",
+ "repo": "Abhishek2634/Foodie",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-08-02T07:21:36Z",
+ "updated_at": "2025-08-02T11:21:16Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-08-02T07:53:50Z",
+ "author_url": "https://github.com/jaya-jha12",
+ "author_avatar": "https://avatars.githubusercontent.com/u/186326932?v=4"
+ },
+ {
+ "url": "https://github.com/Abhishek2634/Foodie/pull/229",
+ "title": "Fix/symbol",
+ "repo": "Abhishek2634/Foodie",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-08-02T06:32:07Z",
+ "updated_at": "2025-08-02T11:35:26Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-08-02T11:35:09Z",
+ "author_url": "https://github.com/jaya-jha12",
+ "author_avatar": "https://avatars.githubusercontent.com/u/186326932?v=4"
+ },
+ {
+ "url": "https://github.com/Abhishek2634/Foodie/pull/206",
+ "title": "fix: prevent icon and input text overlap in search bar ",
+ "repo": "Abhishek2634/Foodie",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-31T04:56:10Z",
+ "updated_at": "2025-08-02T11:19:20Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-31T07:27:03Z",
+ "author_url": "https://github.com/jaya-jha12",
+ "author_avatar": "https://avatars.githubusercontent.com/u/186326932?v=4"
+ },
+ {
+ "url": "https://github.com/Abhishek2634/Foodie/pull/203",
+ "title": "fixed autoscroll animation",
+ "repo": "Abhishek2634/Foodie",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-31T04:28:14Z",
+ "updated_at": "2025-08-02T11:18:58Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-31T07:28:09Z",
+ "author_url": "https://github.com/jaya-jha12",
+ "author_avatar": "https://avatars.githubusercontent.com/u/186326932?v=4"
+ },
+ {
+ "url": "https://github.com/Bavanetha27/Refixly/pull/55",
+ "title": "added delete account feature",
+ "repo": "Bavanetha27/Refixly",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-08-02T08:34:35Z",
+ "updated_at": "2025-08-02T17:11:16Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-08-02T17:11:15Z",
+ "author_url": "https://github.com/jaya-jha12",
+ "author_avatar": "https://avatars.githubusercontent.com/u/186326932?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/186326932?v=4",
+ "profile_url": "https://github.com/jaya-jha12"
+ },
+ "Baibhab-Adhikari": {
+ "expectedPoints": 20,
+ "currentPoints": 20,
+ "levels": {
+ "level1": 0,
+ "level2": 0,
+ "level3": 2
+ },
+ "prs": [
+ {
+ "url": "https://github.com/Menthub-GSSoC/Menthub/pull/41",
+ "title": "[GSSoC'25]Added user profile page, updated dashboard and implemented server side authentication.",
+ "repo": "anugit24/Menthub",
+ "level": "level3",
+ "points": 10,
+ "created_at": "2025-07-30T07:36:14Z",
+ "updated_at": "2025-07-31T16:49:30Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-31T16:08:17Z",
+ "author_url": "https://github.com/Baibhab-Adhikari",
+ "author_avatar": "https://avatars.githubusercontent.com/u/133974266?v=4"
+ },
+ {
+ "url": "https://github.com/eccentriccoder01/TalkHeal/pull/27",
+ "title": "feat: Add Emergency Help button and local resource finder (issue #5)",
+ "repo": "eccentriccoder01/TalkHeal",
+ "level": "level3",
+ "points": 10,
+ "created_at": "2025-07-23T18:06:25Z",
+ "updated_at": "2025-08-03T03:53:03Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-24T19:10:46Z",
+ "author_url": "https://github.com/Baibhab-Adhikari",
+ "author_avatar": "https://avatars.githubusercontent.com/u/133974266?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/133974266?v=4",
+ "profile_url": "https://github.com/Baibhab-Adhikari"
+ },
+ "abhigyaabs2": {
+ "expectedPoints": 20,
+ "currentPoints": 20,
+ "levels": {
+ "level1": 0,
+ "level2": 0,
+ "level3": 2
+ },
+ "prs": [
+ {
+ "url": "https://github.com/InnoWebLabs/Vehigo/pull/159",
+ "title": "Updated Readme.md",
+ "repo": "InnoWebLabs/Vehigo",
+ "level": "level3",
+ "points": 10,
+ "created_at": "2025-07-28T06:17:14Z",
+ "updated_at": "2025-07-28T07:56:43Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-28T07:56:43Z",
+ "author_url": "https://github.com/abhigyaabs2",
+ "author_avatar": "https://avatars.githubusercontent.com/u/142334571?v=4"
+ },
+ {
+ "url": "https://github.com/Gagandeep-2003/driver-drowsiness-detection-system/pull/52",
+ "title": "Improved GUI Responsiveness & Script Execution in Tkinter Interface: updated ui.py",
+ "repo": "Gagandeep-2003/driver-drowsiness-detection-system",
+ "level": "level3",
+ "points": 10,
+ "created_at": "2025-07-29T10:09:11Z",
+ "updated_at": "2025-08-01T04:30:05Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-08-01T04:30:05Z",
+ "author_url": "https://github.com/abhigyaabs2",
+ "author_avatar": "https://avatars.githubusercontent.com/u/142334571?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/142334571?v=4",
+ "profile_url": "https://github.com/abhigyaabs2"
+ },
+ "PrernaSrivastava1": {
+ "expectedPoints": 20,
+ "currentPoints": 20,
+ "levels": {
+ "level1": 5,
+ "level2": 0,
+ "level3": 0
+ },
+ "prs": [
+ {
+ "url": "https://github.com/Kritika75/TheCawnporeMag.github.io/pull/380",
+ "title": "Masthead page is now responsive.",
+ "repo": "Kritika75/TheCawnporeMag.github.io",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-08-02T16:06:57Z",
+ "updated_at": "2025-08-03T03:47:20Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-08-03T03:47:20Z",
+ "author_url": "https://github.com/PrernaSrivastava1",
+ "author_avatar": "https://avatars.githubusercontent.com/u/147409164?v=4"
+ },
+ {
+ "url": "https://github.com/Kritika75/TheCawnporeMag.github.io/pull/377",
+ "title": "Faq page's bugs are fixed now it is responsive for different screens",
+ "repo": "Kritika75/TheCawnporeMag.github.io",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-08-02T13:45:10Z",
+ "updated_at": "2025-08-03T03:34:34Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-08-03T03:34:34Z",
+ "author_url": "https://github.com/PrernaSrivastava1",
+ "author_avatar": "https://avatars.githubusercontent.com/u/147409164?v=4"
+ },
+ {
+ "url": "https://github.com/Kritika75/TheCawnporeMag.github.io/pull/376",
+ "title": "Home's cards are fixed now it is responsive to every screen.",
+ "repo": "Kritika75/TheCawnporeMag.github.io",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-08-02T13:13:46Z",
+ "updated_at": "2025-08-03T03:33:35Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-08-03T03:33:35Z",
+ "author_url": "https://github.com/PrernaSrivastava1",
+ "author_avatar": "https://avatars.githubusercontent.com/u/147409164?v=4"
+ },
+ {
+ "url": "https://github.com/Kritika75/TheCawnporeMag.github.io/pull/329",
+ "title": "Task done dropdown added",
+ "repo": "Kritika75/TheCawnporeMag.github.io",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-08-01T04:54:36Z",
+ "updated_at": "2025-08-01T07:23:07Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-08-01T07:23:07Z",
+ "author_url": "https://github.com/PrernaSrivastava1",
+ "author_avatar": "https://avatars.githubusercontent.com/u/147409164?v=4"
+ },
+ {
+ "url": "https://github.com/pavitraag/Project-Vault/pull/225",
+ "title": "Component Dropdown fixed",
+ "repo": "pavitraag/Project-Vault",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-31T06:23:06Z",
+ "updated_at": "2025-07-31T13:04:07Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-31T13:04:06Z",
+ "author_url": "https://github.com/PrernaSrivastava1",
+ "author_avatar": "https://avatars.githubusercontent.com/u/147409164?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/147409164?v=4",
+ "profile_url": "https://github.com/PrernaSrivastava1"
+ },
+ "tanush-space": {
+ "expectedPoints": 20,
+ "currentPoints": 20,
+ "levels": {
+ "level1": 5,
+ "level2": 0,
+ "level3": 0
+ },
+ "prs": [
+ {
+ "url": "https://github.com/Kritika75/TheCawnporeMag.github.io/pull/196",
+ "title": "Add:Text Justify on Submissions Subpage",
+ "repo": "Kritika75/TheCawnporeMag.github.io",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-27T06:17:05Z",
+ "updated_at": "2025-07-27T06:51:25Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-27T06:51:24Z",
+ "author_url": "https://github.com/tanush-space",
+ "author_avatar": "https://avatars.githubusercontent.com/u/209512235?v=4"
+ },
+ {
+ "url": "https://github.com/Kritika75/TheCawnporeMag.github.io/pull/151",
+ "title": "Add: Hero section title improved",
+ "repo": "Kritika75/TheCawnporeMag.github.io",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-26T09:16:32Z",
+ "updated_at": "2025-07-26T10:04:42Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-26T10:04:42Z",
+ "author_url": "https://github.com/tanush-space",
+ "author_avatar": "https://avatars.githubusercontent.com/u/209512235?v=4"
+ },
+ {
+ "url": "https://github.com/Kritika75/TheCawnporeMag.github.io/pull/116",
+ "title": "Add:Fixed misaligned Learn More button",
+ "repo": "Kritika75/TheCawnporeMag.github.io",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-25T10:39:16Z",
+ "updated_at": "2025-07-25T12:54:33Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-25T12:54:33Z",
+ "author_url": "https://github.com/tanush-space",
+ "author_avatar": "https://avatars.githubusercontent.com/u/209512235?v=4"
+ },
+ {
+ "url": "https://github.com/Kritika75/TheCawnporeMag.github.io/pull/85",
+ "title": "Add: Change the text alignment vertically in about page",
+ "repo": "Kritika75/TheCawnporeMag.github.io",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-24T09:53:25Z",
+ "updated_at": "2025-07-24T10:00:13Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-24T10:00:00Z",
+ "author_url": "https://github.com/tanush-space",
+ "author_avatar": "https://avatars.githubusercontent.com/u/209512235?v=4"
+ },
+ {
+ "url": "https://github.com/pavitraag/Project-Vault/pull/177",
+ "title": " Improve Readability of About Us Subpage by Justifying Text",
+ "repo": "pavitraag/Project-Vault",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-29T09:01:42Z",
+ "updated_at": "2025-07-29T18:47:59Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-29T14:02:27Z",
+ "author_url": "https://github.com/tanush-space",
+ "author_avatar": "https://avatars.githubusercontent.com/u/209512235?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/209512235?v=4",
+ "profile_url": "https://github.com/tanush-space"
+ },
+ "Paddu909": {
+ "expectedPoints": 20,
+ "currentPoints": 20,
+ "levels": {
+ "level1": 5,
+ "level2": 0,
+ "level3": 0
+ },
+ "prs": [
+ {
+ "url": "https://github.com/pavitraag/Project-Vault/pull/170",
+ "title": "[feature add] Added Two New Informative Cards to About Us Section",
+ "repo": "pavitraag/Project-Vault",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-29T05:31:27Z",
+ "updated_at": "2025-07-29T18:46:42Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-29T13:58:42Z",
+ "author_url": "https://github.com/Paddu909",
+ "author_avatar": "https://avatars.githubusercontent.com/u/173115032?v=4"
+ },
+ {
+ "url": "https://github.com/pavitraag/Project-Vault/pull/142",
+ "title": "Fix: Contact form name,message Validation",
+ "repo": "pavitraag/Project-Vault",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-27T15:14:42Z",
+ "updated_at": "2025-07-29T18:42:45Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-28T18:34:48Z",
+ "author_url": "https://github.com/Paddu909",
+ "author_avatar": "https://avatars.githubusercontent.com/u/173115032?v=4"
+ },
+ {
+ "url": "https://github.com/sampadatiwari30/DeshDarshan/pull/24",
+ "title": "Fix: Improved password validation with stronger security rules on login, signup pages",
+ "repo": "sampadatiwari30/DeshDarshan",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-22T10:03:06Z",
+ "updated_at": "2025-07-24T05:47:51Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-22T11:18:46Z",
+ "author_url": "https://github.com/Paddu909",
+ "author_avatar": "https://avatars.githubusercontent.com/u/173115032?v=4"
+ },
+ {
+ "url": "https://github.com/sampadatiwari30/DeshDarshan/pull/22",
+ "title": "Fix capitalization homepage",
+ "repo": "sampadatiwari30/DeshDarshan",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-22T09:39:08Z",
+ "updated_at": "2025-07-22T09:47:08Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-22T09:46:45Z",
+ "author_url": "https://github.com/Paddu909",
+ "author_avatar": "https://avatars.githubusercontent.com/u/173115032?v=4"
+ },
+ {
+ "url": "https://github.com/sampadatiwari30/DeshDarshan/pull/14",
+ "title": "Fix: Added proper name validation across forms",
+ "repo": "sampadatiwari30/DeshDarshan",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-22T06:24:25Z",
+ "updated_at": "2025-07-22T11:45:50Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-22T09:46:46Z",
+ "author_url": "https://github.com/Paddu909",
+ "author_avatar": "https://avatars.githubusercontent.com/u/173115032?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/173115032?v=4",
+ "profile_url": "https://github.com/Paddu909"
+ },
+ "sagarc123": {
+ "expectedPoints": 20,
+ "currentPoints": 20,
+ "levels": {
+ "level1": 0,
+ "level2": 0,
+ "level3": 2
+ },
+ "prs": [
+ {
+ "url": "https://github.com/RamakrushnaBiswal/HonorBox/pull/50",
+ "title": " Home Page UI Enchancement– Issue #18",
+ "repo": "RamakrushnaBiswal/HonorBox",
+ "level": "level3",
+ "points": 10,
+ "created_at": "2025-07-28T18:38:29Z",
+ "updated_at": "2025-07-29T18:27:17Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-29T18:26:35Z",
+ "author_url": "https://github.com/sagarc123",
+ "author_avatar": "https://avatars.githubusercontent.com/u/134862057?v=4"
+ },
+ {
+ "url": "https://github.com/karmveershubham/CodeStreak/pull/35",
+ "title": "[ENHANCEMENT]: Improved CodeStreak Landing Page #8",
+ "repo": "karmveershubham/CodeStreak",
+ "level": "level3",
+ "points": 10,
+ "created_at": "2025-07-30T15:53:31Z",
+ "updated_at": "2025-07-31T10:43:26Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-31T10:43:26Z",
+ "author_url": "https://github.com/sagarc123",
+ "author_avatar": "https://avatars.githubusercontent.com/u/134862057?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/134862057?v=4",
+ "profile_url": "https://github.com/sagarc123"
+ },
+ "viraj-ap": {
+ "expectedPoints": 20,
+ "currentPoints": 20,
+ "levels": {
+ "level1": 0,
+ "level2": 0,
+ "level3": 2
+ },
+ "prs": [
+ {
+ "url": "https://github.com/saumyayadav25/cpp-dsa-sheet-testing/pull/104",
+ "title": "homepage refactor-changed complete UI for the homepage",
+ "repo": "saumyayadav25/cpp-dsa-sheet-testing",
+ "level": "level3",
+ "points": 10,
+ "created_at": "2025-07-30T14:12:53Z",
+ "updated_at": "2025-07-30T14:32:01Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-30T14:32:01Z",
+ "author_url": "https://github.com/viraj-ap",
+ "author_avatar": "https://avatars.githubusercontent.com/u/150922897?v=4"
+ },
+ {
+ "url": "https://github.com/saumyayadav25/cpp-dsa-sheet-testing/pull/99",
+ "title": "feature/implemented dark mode throughout the app issue number #3",
+ "repo": "saumyayadav25/cpp-dsa-sheet-testing",
+ "level": "level3",
+ "points": 10,
+ "created_at": "2025-07-30T09:12:08Z",
+ "updated_at": "2025-07-30T09:23:29Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-30T09:23:29Z",
+ "author_url": "https://github.com/viraj-ap",
+ "author_avatar": "https://avatars.githubusercontent.com/u/150922897?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/150922897?v=4",
+ "profile_url": "https://github.com/viraj-ap"
+ },
+ "pearln09": {
+ "expectedPoints": 20,
+ "currentPoints": 20,
+ "levels": {
+ "level1": 0,
+ "level2": 0,
+ "level3": 2
+ },
+ "prs": [
+ {
+ "url": "https://github.com/SomdattaNag/Security-Screening-System/pull/55",
+ "title": "Added code for Data Augmentation",
+ "repo": "SomdattaNag/Security-Screening-System",
+ "level": "level3",
+ "points": 10,
+ "created_at": "2025-07-26T12:15:44Z",
+ "updated_at": "2025-07-28T15:22:17Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-26T14:54:13Z",
+ "author_url": "https://github.com/pearln09",
+ "author_avatar": "https://avatars.githubusercontent.com/u/157534726?v=4"
+ },
+ {
+ "url": "https://github.com/UTSAVS26/PyVerse/pull/1484",
+ "title": "Addition of Optimization_Algorithms/Evolutionary_Algorithms/Genetic_Algorithms",
+ "repo": "UTSAVS26/PyVerse",
+ "level": "level3",
+ "points": 10,
+ "created_at": "2025-07-25T21:39:17Z",
+ "updated_at": "2025-07-30T09:02:55Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-30T09:01:31Z",
+ "author_url": "https://github.com/pearln09",
+ "author_avatar": "https://avatars.githubusercontent.com/u/157534726?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/157534726?v=4",
+ "profile_url": "https://github.com/pearln09"
+ },
+ "Nithish-FullStack-Dev": {
+ "expectedPoints": 20,
+ "currentPoints": 20,
+ "levels": {
+ "level1": 0,
+ "level2": 0,
+ "level3": 2
+ },
+ "prs": [
+ {
+ "url": "https://github.com/SurajSG23/PrepBuddy/pull/30",
+ "title": "Improve profile UI",
+ "repo": "SurajSG23/PrepBuddy",
+ "level": "level3",
+ "points": 10,
+ "created_at": "2025-07-25T15:00:31Z",
+ "updated_at": "2025-07-25T16:19:56Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-25T16:19:15Z",
+ "author_url": "https://github.com/Nithish-FullStack-Dev",
+ "author_avatar": "https://avatars.githubusercontent.com/u/164472246?v=4"
+ },
+ {
+ "url": "https://github.com/SurajSG23/PrepBuddy/pull/4",
+ "title": "Enhance Home Page and Header",
+ "repo": "SurajSG23/PrepBuddy",
+ "level": "level3",
+ "points": 10,
+ "created_at": "2025-07-22T15:51:59Z",
+ "updated_at": "2025-07-22T16:02:50Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-22T16:01:57Z",
+ "author_url": "https://github.com/Nithish-FullStack-Dev",
+ "author_avatar": "https://avatars.githubusercontent.com/u/164472246?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/164472246?v=4",
+ "profile_url": "https://github.com/Nithish-FullStack-Dev"
+ },
+ "NimoMach": {
+ "expectedPoints": 20,
+ "currentPoints": 20,
+ "levels": {
+ "level1": 0,
+ "level2": 0,
+ "level3": 2
+ },
+ "prs": [
+ {
+ "url": "https://github.com/openml-stack/SentiLog-AI/pull/87",
+ "title": "Adds forgot-reset password functionality",
+ "repo": "openml-stack/SentiLog-AI",
+ "level": "level3",
+ "points": 10,
+ "created_at": "2025-07-27T08:14:30Z",
+ "updated_at": "2025-07-27T17:14:14Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-27T16:53:18Z",
+ "author_url": "https://github.com/NimoMach",
+ "author_avatar": "https://avatars.githubusercontent.com/u/150921315?v=4"
+ },
+ {
+ "url": "https://github.com/openml-stack/SentiLog-AI/pull/11",
+ "title": "VADER Sentiment Analysis API (This closes issue #4)",
+ "repo": "openml-stack/SentiLog-AI",
+ "level": "level3",
+ "points": 10,
+ "created_at": "2025-07-22T12:06:36Z",
+ "updated_at": "2025-07-26T15:48:53Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-22T15:31:51Z",
+ "author_url": "https://github.com/NimoMach",
+ "author_avatar": "https://avatars.githubusercontent.com/u/150921315?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/150921315?v=4",
+ "profile_url": "https://github.com/NimoMach"
+ },
+ "Deesha-Kunder": {
+ "expectedPoints": 20,
+ "currentPoints": 20,
+ "levels": {
+ "level1": 0,
+ "level2": 0,
+ "level3": 2
+ },
+ "prs": [
+ {
+ "url": "https://github.com/yuvrajsinghgmx/ShopSmart/pull/332",
+ "title": "Refactored ProductDetails Screen",
+ "repo": "yuvrajsinghgmx/ShopSmart",
+ "level": "level3",
+ "points": 10,
+ "created_at": "2025-08-01T08:17:06Z",
+ "updated_at": "2025-08-01T11:21:02Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-08-01T11:20:51Z",
+ "author_url": "https://github.com/Deesha-Kunder",
+ "author_avatar": "https://avatars.githubusercontent.com/u/177464083?v=4"
+ },
+ {
+ "url": "https://github.com/yuvrajsinghgmx/ShopSmart/pull/296",
+ "title": "Product Details Screen",
+ "repo": "yuvrajsinghgmx/ShopSmart",
+ "level": "level3",
+ "points": 10,
+ "created_at": "2025-07-24T16:35:42Z",
+ "updated_at": "2025-07-24T17:02:57Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-24T17:02:35Z",
+ "author_url": "https://github.com/Deesha-Kunder",
+ "author_avatar": "https://avatars.githubusercontent.com/u/177464083?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/177464083?v=4",
+ "profile_url": "https://github.com/Deesha-Kunder"
+ },
+ "Vanshika-chauhan983": {
+ "expectedPoints": 20,
+ "currentPoints": 20,
+ "levels": {
+ "level1": 0,
+ "level2": 0,
+ "level3": 2
+ },
+ "prs": [
+ {
+ "url": "https://github.com/yuvrajsinghgmx/ShopSmart/pull/308",
+ "title": "Add Customer Home Screen with Search Bar",
+ "repo": "yuvrajsinghgmx/ShopSmart",
+ "level": "level3",
+ "points": 10,
+ "created_at": "2025-07-26T19:58:56Z",
+ "updated_at": "2025-07-26T20:47:37Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-26T20:28:47Z",
+ "author_url": "https://github.com/Vanshika-chauhan983",
+ "author_avatar": "https://avatars.githubusercontent.com/u/176575058?v=4"
+ },
+ {
+ "url": "https://github.com/yuvrajsinghgmx/ShopSmart/pull/292",
+ "title": "Add bottom navigation with placeholder Search screen and icon color customization",
+ "repo": "yuvrajsinghgmx/ShopSmart",
+ "level": "level3",
+ "points": 10,
+ "created_at": "2025-07-23T19:40:30Z",
+ "updated_at": "2025-07-24T01:24:59Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-24T01:04:23Z",
+ "author_url": "https://github.com/Vanshika-chauhan983",
+ "author_avatar": "https://avatars.githubusercontent.com/u/176575058?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/176575058?v=4",
+ "profile_url": "https://github.com/Vanshika-chauhan983"
+ },
+ "MohdWaqar98": {
+ "expectedPoints": 19,
+ "currentPoints": 19,
+ "levels": {
+ "level1": 3,
+ "level2": 1,
+ "level3": 0
+ },
+ "prs": [
+ {
+ "url": "https://github.com/Abhinavhaldiya/FinPilot/pull/24",
+ "title": "Add login page UI and initial dashboard layout (#18)",
+ "repo": "Abhinavhaldiya/FinPilot",
+ "level": "level2",
+ "points": 7,
+ "created_at": "2025-07-26T06:54:54Z",
+ "updated_at": "2025-07-26T15:59:22Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-26T12:35:55Z",
+ "author_url": "https://github.com/MohdWaqar98",
+ "author_avatar": "https://avatars.githubusercontent.com/u/98345819?v=4"
+ },
+ {
+ "url": "https://github.com/huamanraj/aitoolbox.software/pull/20",
+ "title": "Add GitHub Action to Auto-Comment on New Issues (#10)",
+ "repo": "huamanraj/aitoolbox.software",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-26T13:29:44Z",
+ "updated_at": "2025-07-27T17:10:00Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-27T17:10:00Z",
+ "author_url": "https://github.com/MohdWaqar98",
+ "author_avatar": "https://avatars.githubusercontent.com/u/98345819?v=4"
+ },
+ {
+ "url": "https://github.com/Amarjha01/InfantCareCompass/pull/92",
+ "title": "fix: Custom Cursor in all pages",
+ "repo": "Amarjha01/InfantCareCompass",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-25T13:30:43Z",
+ "updated_at": "2025-07-25T15:17:09Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-25T13:49:20Z",
+ "author_url": "https://github.com/MohdWaqar98",
+ "author_avatar": "https://avatars.githubusercontent.com/u/98345819?v=4"
+ },
+ {
+ "url": "https://github.com/Bavanetha27/Refixly/pull/27",
+ "title": "[Bug] - Fix Broken Accordion Functionality on Both Public and Authenticated Pages #24",
+ "repo": "Bavanetha27/Refixly",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-26T07:24:09Z",
+ "updated_at": "2025-08-01T10:50:12Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-27T13:50:28Z",
+ "author_url": "https://github.com/MohdWaqar98",
+ "author_avatar": "https://avatars.githubusercontent.com/u/98345819?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/98345819?v=4",
+ "profile_url": "https://github.com/MohdWaqar98"
+ },
+ "ravneet27062004": {
+ "expectedPoints": 19,
+ "currentPoints": 19,
+ "levels": {
+ "level1": 3,
+ "level2": 1,
+ "level3": 0
+ },
+ "prs": [
+ {
+ "url": "https://github.com/Abhishek2634/Foodie/pull/186",
+ "title": "ENHANCE : navbar UI/UX",
+ "repo": "Abhishek2634/Foodie",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-30T14:14:42Z",
+ "updated_at": "2025-08-02T11:16:35Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-30T17:48:40Z",
+ "author_url": "https://github.com/ravneet27062004",
+ "author_avatar": "https://avatars.githubusercontent.com/u/146877258?v=4"
+ },
+ {
+ "url": "https://github.com/itsAnimation/AnimateItNow/pull/775",
+ "title": "ENHANCE : Change the alignment of headings",
+ "repo": "itsAnimation/AnimateItNow",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-08-02T10:50:53Z",
+ "updated_at": "2025-08-02T16:45:32Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-08-02T16:45:31Z",
+ "author_url": "https://github.com/ravneet27062004",
+ "author_avatar": "https://avatars.githubusercontent.com/u/146877258?v=4"
+ },
+ {
+ "url": "https://github.com/InnoWebLabs/Vehigo/pull/221",
+ "title": "ENHANCE : Improve footer UX by disabling logo animation and linking social icons",
+ "repo": "InnoWebLabs/Vehigo",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-08-02T13:13:18Z",
+ "updated_at": "2025-08-02T15:42:22Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-08-02T15:42:22Z",
+ "author_url": "https://github.com/ravneet27062004",
+ "author_avatar": "https://avatars.githubusercontent.com/u/146877258?v=4"
+ },
+ {
+ "url": "https://github.com/InnoWebLabs/Vehigo/pull/219",
+ "title": "fix: Correct theme toggle visibility and alignment in dark mode",
+ "repo": "InnoWebLabs/Vehigo",
+ "level": "level2",
+ "points": 7,
+ "created_at": "2025-08-02T11:51:22Z",
+ "updated_at": "2025-08-02T16:10:32Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-08-02T16:10:32Z",
+ "author_url": "https://github.com/ravneet27062004",
+ "author_avatar": "https://avatars.githubusercontent.com/u/146877258?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/146877258?v=4",
+ "profile_url": "https://github.com/ravneet27062004"
+ },
+ "rishiparashar02": {
+ "expectedPoints": 19,
+ "currentPoints": 19,
+ "levels": {
+ "level1": 3,
+ "level2": 1,
+ "level3": 0
+ },
+ "prs": [
+ {
+ "url": "https://github.com/Adarsh-Chaubey03/TravelGrid/pull/422",
+ "title": "Resolved the text Color problem and Header gap problem",
+ "repo": "Adarsh-Chaubey03/TravelGrid",
+ "level": "level2",
+ "points": 7,
+ "created_at": "2025-07-31T18:14:17Z",
+ "updated_at": "2025-08-01T01:56:17Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-08-01T01:55:51Z",
+ "author_url": "https://github.com/rishiparashar02",
+ "author_avatar": "https://avatars.githubusercontent.com/u/162132392?v=4"
+ },
+ {
+ "url": "https://github.com/Adarsh-Chaubey03/TravelGrid/pull/295",
+ "title": "Updated the Travel Forum issue ",
+ "repo": "Adarsh-Chaubey03/TravelGrid",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-28T16:07:38Z",
+ "updated_at": "2025-07-28T17:34:52Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-28T17:34:37Z",
+ "author_url": "https://github.com/rishiparashar02",
+ "author_avatar": "https://avatars.githubusercontent.com/u/162132392?v=4"
+ },
+ {
+ "url": "https://github.com/Adarsh-Chaubey03/TravelGrid/pull/250",
+ "title": "Fixed the bug of Book Now Button for Packages",
+ "repo": "Adarsh-Chaubey03/TravelGrid",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-27T15:37:30Z",
+ "updated_at": "2025-07-28T06:21:05Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-28T06:21:05Z",
+ "author_url": "https://github.com/rishiparashar02",
+ "author_avatar": "https://avatars.githubusercontent.com/u/162132392?v=4"
+ },
+ {
+ "url": "https://github.com/Adarsh-Chaubey03/TravelGrid/pull/211",
+ "title": "Added Travel Packages",
+ "repo": "Adarsh-Chaubey03/TravelGrid",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-26T13:32:20Z",
+ "updated_at": "2025-07-28T13:48:32Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-26T15:03:53Z",
+ "author_url": "https://github.com/rishiparashar02",
+ "author_avatar": "https://avatars.githubusercontent.com/u/162132392?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/162132392?v=4",
+ "profile_url": "https://github.com/rishiparashar02"
+ },
+ "SaiTeja-2101": {
+ "expectedPoints": 19,
+ "currentPoints": 19,
+ "levels": {
+ "level1": 3,
+ "level2": 1,
+ "level3": 0
+ },
+ "prs": [
+ {
+ "url": "https://github.com/huamanraj/aitoolbox.software/pull/54",
+ "title": "Fix/quick action buttons",
+ "repo": "huamanraj/aitoolbox.software",
+ "level": "level2",
+ "points": 7,
+ "created_at": "2025-08-02T02:53:43Z",
+ "updated_at": "2025-08-02T12:19:25Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-08-02T12:19:24Z",
+ "author_url": "https://github.com/SaiTeja-2101",
+ "author_avatar": "https://avatars.githubusercontent.com/u/187129549?v=4"
+ },
+ {
+ "url": "https://github.com/Bavanetha27/Refixly/pull/39",
+ "title": "Ensured proper placeholder for input in login and signup pade",
+ "repo": "Bavanetha27/Refixly",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-27T19:21:54Z",
+ "updated_at": "2025-08-01T10:49:32Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-29T09:40:53Z",
+ "author_url": "https://github.com/SaiTeja-2101",
+ "author_avatar": "https://avatars.githubusercontent.com/u/187129549?v=4"
+ },
+ {
+ "url": "https://github.com/Kritika75/TheCawnporeMag.github.io/pull/120",
+ "title": "Ensured redirecting to gmail page on clicking g mail in faq section",
+ "repo": "Kritika75/TheCawnporeMag.github.io",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-25T11:44:22Z",
+ "updated_at": "2025-07-25T12:55:40Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-25T12:55:40Z",
+ "author_url": "https://github.com/SaiTeja-2101",
+ "author_avatar": "https://avatars.githubusercontent.com/u/187129549?v=4"
+ },
+ {
+ "url": "https://github.com/recodehive/recode-website/pull/216",
+ "title": "Placed a valid linkedin-url for a sponsor",
+ "repo": "recodehive/recode-website",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-28T07:07:07Z",
+ "updated_at": "2025-07-28T07:36:16Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-28T07:35:48Z",
+ "author_url": "https://github.com/SaiTeja-2101",
+ "author_avatar": "https://avatars.githubusercontent.com/u/187129549?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/187129549?v=4",
+ "profile_url": "https://github.com/SaiTeja-2101"
+ },
+ "vanshikakhator": {
+ "expectedPoints": 19,
+ "currentPoints": 19,
+ "levels": {
+ "level1": 3,
+ "level2": 1,
+ "level3": 0
+ },
+ "prs": [
+ {
+ "url": "https://github.com/itsAnimation/AnimateItNow/pull/409",
+ "title": "fixed footer alignment",
+ "repo": "itsAnimation/AnimateItNow",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-25T14:04:40Z",
+ "updated_at": "2025-07-25T14:41:00Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-25T14:39:33Z",
+ "author_url": "https://github.com/vanshikakhator",
+ "author_avatar": "https://avatars.githubusercontent.com/u/170328755?v=4"
+ },
+ {
+ "url": "https://github.com/Khushi-Nigam/jobportal/pull/98",
+ "title": "fixed the latest job section and header section",
+ "repo": "Khushi-Nigam/jobportal",
+ "level": "level2",
+ "points": 7,
+ "created_at": "2025-08-01T15:28:18Z",
+ "updated_at": "2025-08-02T06:57:29Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-08-01T16:37:13Z",
+ "author_url": "https://github.com/vanshikakhator",
+ "author_avatar": "https://avatars.githubusercontent.com/u/170328755?v=4"
+ },
+ {
+ "url": "https://github.com/sampadatiwari30/DeshDarshan/pull/232",
+ "title": "Fixed the logo of the social media links",
+ "repo": "sampadatiwari30/DeshDarshan",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-30T06:21:08Z",
+ "updated_at": "2025-07-31T05:32:59Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-30T19:34:36Z",
+ "author_url": "https://github.com/vanshikakhator",
+ "author_avatar": "https://avatars.githubusercontent.com/u/170328755?v=4"
+ },
+ {
+ "url": "https://github.com/sampadatiwari30/DeshDarshan/pull/224",
+ "title": "Changed the colour and fixes the spacing between logo and text",
+ "repo": "sampadatiwari30/DeshDarshan",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-29T14:14:13Z",
+ "updated_at": "2025-07-30T04:52:12Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-30T04:44:57Z",
+ "author_url": "https://github.com/vanshikakhator",
+ "author_avatar": "https://avatars.githubusercontent.com/u/170328755?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/170328755?v=4",
+ "profile_url": "https://github.com/vanshikakhator"
+ },
+ "Rishika12U": {
+ "expectedPoints": 19,
+ "currentPoints": 19,
+ "levels": {
+ "level1": 3,
+ "level2": 1,
+ "level3": 0
+ },
+ "prs": [
+ {
+ "url": "https://github.com/sampadatiwari30/DeshDarshan/pull/76",
+ "title": "🐛 Fix #72: Made audio toggle emoji sticky to remove scroll bug",
+ "repo": "sampadatiwari30/DeshDarshan",
+ "level": "level2",
+ "points": 7,
+ "created_at": "2025-07-23T19:34:58Z",
+ "updated_at": "2025-07-24T06:50:16Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-23T21:36:12Z",
+ "author_url": "https://github.com/Rishika12U",
+ "author_avatar": "https://avatars.githubusercontent.com/u/151054846?v=4"
+ },
+ {
+ "url": "https://github.com/sampadatiwari30/DeshDarshan/pull/72",
+ "title": "Audio toggle feature",
+ "repo": "sampadatiwari30/DeshDarshan",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-23T17:47:11Z",
+ "updated_at": "2025-07-23T18:25:23Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-23T18:25:02Z",
+ "author_url": "https://github.com/Rishika12U",
+ "author_avatar": "https://avatars.githubusercontent.com/u/151054846?v=4"
+ },
+ {
+ "url": "https://github.com/sampadatiwari30/DeshDarshan/pull/26",
+ "title": "Fix: Improved scroll-to-top button position on small screens (#18)",
+ "repo": "sampadatiwari30/DeshDarshan",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-22T11:45:21Z",
+ "updated_at": "2025-07-22T12:34:36Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-22T12:16:59Z",
+ "author_url": "https://github.com/Rishika12U",
+ "author_avatar": "https://avatars.githubusercontent.com/u/151054846?v=4"
+ },
+ {
+ "url": "https://github.com/sampadatiwari30/DeshDarshan/pull/18",
+ "title": "Add scroll-to-top button feature with themed styling",
+ "repo": "sampadatiwari30/DeshDarshan",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-22T07:56:32Z",
+ "updated_at": "2025-07-22T09:29:16Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-22T09:28:57Z",
+ "author_url": "https://github.com/Rishika12U",
+ "author_avatar": "https://avatars.githubusercontent.com/u/151054846?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/151054846?v=4",
+ "profile_url": "https://github.com/Rishika12U"
+ },
+ "divyaverma-01": {
+ "expectedPoints": 18,
+ "currentPoints": 18,
+ "levels": {
+ "level1": 2,
+ "level2": 0,
+ "level3": 1
+ },
+ "prs": [
+ {
+ "url": "https://github.com/Abhishek2634/Foodie/pull/135",
+ "title": "Fix UI of Add Item Banner (#121): Add Cart Preview & Slide Animation",
+ "repo": "Abhishek2634/Foodie",
+ "level": "level3",
+ "points": 10,
+ "created_at": "2025-07-26T21:16:34Z",
+ "updated_at": "2025-08-02T11:02:36Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-27T13:20:56Z",
+ "author_url": "https://github.com/divyaverma-01",
+ "author_avatar": "https://avatars.githubusercontent.com/u/205313039?v=4"
+ },
+ {
+ "url": "https://github.com/Adarsh-Chaubey03/TravelGrid/pull/236",
+ "title": "Fix footer twitter icon",
+ "repo": "Adarsh-Chaubey03/TravelGrid",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-27T09:40:33Z",
+ "updated_at": "2025-07-28T05:30:59Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-28T05:30:37Z",
+ "author_url": "https://github.com/divyaverma-01",
+ "author_avatar": "https://avatars.githubusercontent.com/u/205313039?v=4"
+ },
+ {
+ "url": "https://github.com/Adarsh-Chaubey03/TravelGrid/pull/234",
+ "title": "NavBar Elements hover fixed",
+ "repo": "Adarsh-Chaubey03/TravelGrid",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-27T09:04:04Z",
+ "updated_at": "2025-07-27T15:46:40Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-27T15:46:40Z",
+ "author_url": "https://github.com/divyaverma-01",
+ "author_avatar": "https://avatars.githubusercontent.com/u/205313039?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/205313039?v=4",
+ "profile_url": "https://github.com/divyaverma-01"
+ },
+ "vaibhavgupta5": {
+ "expectedPoints": 18,
+ "currentPoints": 18,
+ "levels": {
+ "level1": 1,
+ "level2": 2,
+ "level3": 0
+ },
+ "prs": [
+ {
+ "url": "https://github.com/Adarsh-Chaubey03/TravelGrid/pull/424",
+ "title": "Revamped Navbar Design and ScrollToTop Button Position Fix",
+ "repo": "Adarsh-Chaubey03/TravelGrid",
+ "level": "level2",
+ "points": 7,
+ "created_at": "2025-07-31T22:25:18Z",
+ "updated_at": "2025-08-01T13:51:29Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-08-01T13:51:16Z",
+ "author_url": "https://github.com/vaibhavgupta5",
+ "author_avatar": "https://avatars.githubusercontent.com/u/109146556?v=4"
+ },
+ {
+ "url": "https://github.com/Adarsh-Chaubey03/TravelGrid/pull/386",
+ "title": "Added AuthLayout for Scroll Restoration + Navigation in Signup",
+ "repo": "Adarsh-Chaubey03/TravelGrid",
+ "level": "level2",
+ "points": 7,
+ "created_at": "2025-07-31T10:30:24Z",
+ "updated_at": "2025-07-31T10:35:00Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-31T10:34:34Z",
+ "author_url": "https://github.com/vaibhavgupta5",
+ "author_avatar": "https://avatars.githubusercontent.com/u/109146556?v=4"
+ },
+ {
+ "url": "https://github.com/Amarjha01/InfantCareCompass/pull/155",
+ "title": "fix: reset scroll position on page navigation",
+ "repo": "Amarjha01/InfantCareCompass",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-29T22:35:00Z",
+ "updated_at": "2025-08-03T04:46:07Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-30T03:49:55Z",
+ "author_url": "https://github.com/vaibhavgupta5",
+ "author_avatar": "https://avatars.githubusercontent.com/u/109146556?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/109146556?v=4",
+ "profile_url": "https://github.com/vaibhavgupta5"
+ },
+ "paramsohal05": {
+ "expectedPoints": 18,
+ "currentPoints": 18,
+ "levels": {
+ "level1": 1,
+ "level2": 2,
+ "level3": 0
+ },
+ "prs": [
+ {
+ "url": "https://github.com/Adarsh-Chaubey03/TravelGrid/pull/391",
+ "title": "Added auto sliding carousel images.",
+ "repo": "Adarsh-Chaubey03/TravelGrid",
+ "level": "level2",
+ "points": 7,
+ "created_at": "2025-07-31T11:33:10Z",
+ "updated_at": "2025-07-31T15:19:39Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-31T15:19:39Z",
+ "author_url": "https://github.com/paramsohal05",
+ "author_avatar": "https://avatars.githubusercontent.com/u/170261577?v=4"
+ },
+ {
+ "url": "https://github.com/BaraniVA/Habitheat/pull/64",
+ "title": "Improved Navbar/Added Dynamic Tab Title/Changed FeviIcon/ ",
+ "repo": "BaraniVA/Habitheat",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-25T08:12:52Z",
+ "updated_at": "2025-07-29T15:16:36Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-25T08:39:32Z",
+ "author_url": "https://github.com/paramsohal05",
+ "author_avatar": "https://avatars.githubusercontent.com/u/170261577?v=4"
+ },
+ {
+ "url": "https://github.com/openml-stack/SentiLog-AI/pull/81",
+ "title": "Global Navbar/Footer/Dark theme/ Dynamic Tab title/FeviIcon",
+ "repo": "openml-stack/SentiLog-AI",
+ "level": "level2",
+ "points": 7,
+ "created_at": "2025-07-26T13:19:31Z",
+ "updated_at": "2025-07-29T15:06:35Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-27T09:58:31Z",
+ "author_url": "https://github.com/paramsohal05",
+ "author_avatar": "https://avatars.githubusercontent.com/u/170261577?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/170261577?v=4",
+ "profile_url": "https://github.com/paramsohal05"
+ },
+ "RAJA-072": {
+ "expectedPoints": 18,
+ "currentPoints": 18,
+ "levels": {
+ "level1": 1,
+ "level2": 2,
+ "level3": 0
+ },
+ "prs": [
+ {
+ "url": "https://github.com/Adarsh-Chaubey03/TravelGrid/pull/222",
+ "title": " Fix navbar covering title issue and mobile responsiveness in TicketBooking page",
+ "repo": "Adarsh-Chaubey03/TravelGrid",
+ "level": "level2",
+ "points": 7,
+ "created_at": "2025-07-27T06:08:02Z",
+ "updated_at": "2025-07-27T06:40:52Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-27T06:40:23Z",
+ "author_url": "https://github.com/RAJA-072",
+ "author_avatar": "https://avatars.githubusercontent.com/u/143001262?v=4"
+ },
+ {
+ "url": "https://github.com/InnoWebLabs/Vehigo/pull/105",
+ "title": "Fixed href tags",
+ "repo": "InnoWebLabs/Vehigo",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-26T13:33:50Z",
+ "updated_at": "2025-07-26T14:19:21Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-26T13:43:27Z",
+ "author_url": "https://github.com/RAJA-072",
+ "author_avatar": "https://avatars.githubusercontent.com/u/143001262?v=4"
+ },
+ {
+ "url": "https://github.com/openml-stack/SentiLog-AI/pull/151",
+ "title": "Fix: Changed all the background of Registration pages #128",
+ "repo": "openml-stack/SentiLog-AI",
+ "level": "level2",
+ "points": 7,
+ "created_at": "2025-08-01T18:12:43Z",
+ "updated_at": "2025-08-02T06:16:09Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-08-01T19:40:35Z",
+ "author_url": "https://github.com/RAJA-072",
+ "author_avatar": "https://avatars.githubusercontent.com/u/143001262?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/143001262?v=4",
+ "profile_url": "https://github.com/RAJA-072"
+ },
+ "emmehak": {
+ "expectedPoints": 18,
+ "currentPoints": 18,
+ "levels": {
+ "level1": 1,
+ "level2": 2,
+ "level3": 0
+ },
+ "prs": [
+ {
+ "url": "https://github.com/Adarsh-Chaubey03/TravelGrid/pull/95",
+ "title": "🔧 Fix Mobile Layout Overflow for Travel Option Tabs",
+ "repo": "Adarsh-Chaubey03/TravelGrid",
+ "level": "level2",
+ "points": 7,
+ "created_at": "2025-07-22T18:27:05Z",
+ "updated_at": "2025-07-24T08:26:17Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-24T08:25:50Z",
+ "author_url": "https://github.com/emmehak",
+ "author_avatar": "https://avatars.githubusercontent.com/u/154713989?v=4"
+ },
+ {
+ "url": "https://github.com/BaraniVA/Habitheat/pull/8",
+ "title": "Navbar responsiveness issue fixed",
+ "repo": "BaraniVA/Habitheat",
+ "level": "level2",
+ "points": 7,
+ "created_at": "2025-07-22T11:35:18Z",
+ "updated_at": "2025-07-22T16:10:58Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-22T16:07:38Z",
+ "author_url": "https://github.com/emmehak",
+ "author_avatar": "https://avatars.githubusercontent.com/u/154713989?v=4"
+ },
+ {
+ "url": "https://github.com/pavitraag/Project-Vault/pull/55",
+ "title": "🎯 PR Title: Complete UI Overhaul – Navigation, Layout, Animations, and Form Enhancements",
+ "repo": "pavitraag/Project-Vault",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-24T14:27:05Z",
+ "updated_at": "2025-07-29T18:32:17Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-24T19:41:37Z",
+ "author_url": "https://github.com/emmehak",
+ "author_avatar": "https://avatars.githubusercontent.com/u/154713989?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/154713989?v=4",
+ "profile_url": "https://github.com/emmehak"
+ },
+ "minalduggal": {
+ "expectedPoints": 18,
+ "currentPoints": 18,
+ "levels": {
+ "level1": 1,
+ "level2": 2,
+ "level3": 0
+ },
+ "prs": [
+ {
+ "url": "https://github.com/itsAnimation/AnimateItNow/pull/647",
+ "title": "Fix: FAQ section visibility, formatting, and dark mode text issue",
+ "repo": "itsAnimation/AnimateItNow",
+ "level": "level2",
+ "points": 7,
+ "created_at": "2025-07-29T13:25:27Z",
+ "updated_at": "2025-07-29T21:20:22Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-29T21:20:22Z",
+ "author_url": "https://github.com/minalduggal",
+ "author_avatar": "https://avatars.githubusercontent.com/u/146567477?v=4"
+ },
+ {
+ "url": "https://github.com/itsAnimation/AnimateItNow/pull/489",
+ "title": "Added navbar in CardHoverEffects page",
+ "repo": "itsAnimation/AnimateItNow",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-26T13:50:41Z",
+ "updated_at": "2025-07-29T14:33:22Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-27T08:13:12Z",
+ "author_url": "https://github.com/minalduggal",
+ "author_avatar": "https://avatars.githubusercontent.com/u/146567477?v=4"
+ },
+ {
+ "url": "https://github.com/itsAnimation/AnimateItNow/pull/472",
+ "title": "Improved loader visibility by adding a container with blur effect",
+ "repo": "itsAnimation/AnimateItNow",
+ "level": "level2",
+ "points": 7,
+ "created_at": "2025-07-26T10:58:40Z",
+ "updated_at": "2025-07-26T11:43:59Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-26T11:43:59Z",
+ "author_url": "https://github.com/minalduggal",
+ "author_avatar": "https://avatars.githubusercontent.com/u/146567477?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/146567477?v=4",
+ "profile_url": "https://github.com/minalduggal"
+ },
+ "chhaviluthra08": {
+ "expectedPoints": 18,
+ "currentPoints": 18,
+ "levels": {
+ "level1": 2,
+ "level2": 0,
+ "level3": 1
+ },
+ "prs": [
+ {
+ "url": "https://github.com/itsAnimation/AnimateItNow/pull/545",
+ "title": "[Enhancement]: Added appropriate hover button codes",
+ "repo": "itsAnimation/AnimateItNow",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-27T10:56:05Z",
+ "updated_at": "2025-08-02T10:43:50Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-08-02T10:43:50Z",
+ "author_url": "https://github.com/chhaviluthra08",
+ "author_avatar": "https://avatars.githubusercontent.com/u/181659829?v=4"
+ },
+ {
+ "url": "https://github.com/Khushi-Nigam/jobportal/pull/53",
+ "title": "Issue 27 (Responsiveness)",
+ "repo": "Khushi-Nigam/jobportal",
+ "level": "level3",
+ "points": 10,
+ "created_at": "2025-07-25T11:22:35Z",
+ "updated_at": "2025-07-25T11:35:48Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-25T11:35:48Z",
+ "author_url": "https://github.com/chhaviluthra08",
+ "author_avatar": "https://avatars.githubusercontent.com/u/181659829?v=4"
+ },
+ {
+ "url": "https://github.com/rutikakengal/100DAYS_OF_100WEBPROJECTS/pull/341",
+ "title": "Day23 Project - Simple Calculator (Issue 252)",
+ "repo": "rutikakengal/100DAYS_OF_100WEBPROJECTS",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-29T14:28:28Z",
+ "updated_at": "2025-07-31T15:44:01Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-29T14:36:09Z",
+ "author_url": "https://github.com/chhaviluthra08",
+ "author_avatar": "https://avatars.githubusercontent.com/u/181659829?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/181659829?v=4",
+ "profile_url": "https://github.com/chhaviluthra08"
+ },
+ "YashviJoshi10": {
+ "expectedPoints": 18,
+ "currentPoints": 18,
+ "levels": {
+ "level1": 2,
+ "level2": 0,
+ "level3": 1
+ },
+ "prs": [
+ {
+ "url": "https://github.com/itsAnimation/AnimateItNow/pull/202",
+ "title": "Update README",
+ "repo": "itsAnimation/AnimateItNow",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-23T11:51:04Z",
+ "updated_at": "2025-07-23T12:03:51Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-23T12:03:51Z",
+ "author_url": "https://github.com/YashviJoshi10",
+ "author_avatar": "https://avatars.githubusercontent.com/u/216045854?v=4"
+ },
+ {
+ "url": "https://github.com/swarooppatilx/bit-by-query/pull/29",
+ "title": "server.js refactored",
+ "repo": "swarooppatilx/bit-by-query",
+ "level": "level3",
+ "points": 10,
+ "created_at": "2025-07-30T11:00:11Z",
+ "updated_at": "2025-07-30T17:09:46Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-30T17:09:46Z",
+ "author_url": "https://github.com/YashviJoshi10",
+ "author_avatar": "https://avatars.githubusercontent.com/u/216045854?v=4"
+ },
+ {
+ "url": "https://github.com/VJLIVE/Athletix/pull/22",
+ "title": "Added pull request template",
+ "repo": "vjlive/athletix",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-23T04:46:21Z",
+ "updated_at": "2025-07-29T12:10:33Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-23T05:19:10Z",
+ "author_url": "https://github.com/YashviJoshi10",
+ "author_avatar": "https://avatars.githubusercontent.com/u/216045854?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/216045854?v=4",
+ "profile_url": "https://github.com/YashviJoshi10"
+ },
+ "ishita051": {
+ "expectedPoints": 32,
+ "currentPoints": 18,
+ "levels": {
+ "level1": 1,
+ "level2": 4,
+ "level3": 0
+ },
+ "prs": [
+ {
+ "url": "https://github.com/Ayushjhawar8/Flavor-ai/pull/34",
+ "title": "feat: Add Loading Skeleton for Dish Description Page #12",
+ "repo": "Ayushjhawar8/Flavor-ai",
+ "level": "level2",
+ "points": 7,
+ "created_at": "2025-07-24T08:44:21Z",
+ "updated_at": "2025-07-27T09:44:48Z",
+ "state": "closed",
+ "merged": false,
+ "merged_at": null,
+ "author_url": "https://github.com/ishita051",
+ "author_avatar": "https://avatars.githubusercontent.com/u/183702036?v=4"
+ },
+ {
+ "url": "https://github.com/GauravKarakoti/Weather-API/pull/198",
+ "title": "EMPTY PR FOR ISSUES: #146 AND #144",
+ "repo": "GauravKarakoti/Weather-API",
+ "level": "level2",
+ "points": 7,
+ "created_at": "2025-07-28T10:37:28Z",
+ "updated_at": "2025-07-28T10:57:47Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-28T10:57:47Z",
+ "author_url": "https://github.com/ishita051",
+ "author_avatar": "https://avatars.githubusercontent.com/u/183702036?v=4"
+ },
+ {
+ "url": "https://github.com/GauravKarakoti/Weather-API/pull/197",
+ "title": "UPDATE ON: #144 AND #146 :- Fix Bugs, Improve Service Worker, and Add Tests",
+ "repo": "GauravKarakoti/Weather-API",
+ "level": "level2",
+ "points": 7,
+ "created_at": "2025-07-28T10:21:09Z",
+ "updated_at": "2025-07-28T10:38:19Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-28T10:28:02Z",
+ "author_url": "https://github.com/ishita051",
+ "author_avatar": "https://avatars.githubusercontent.com/u/183702036?v=4"
+ },
+ {
+ "url": "https://github.com/ProTecGames/Karbon/pull/52",
+ "title": "UPDATE ON : Not able to generate website and problems in prompt_view.py file #51",
+ "repo": "ProTecGames/Karbon",
+ "level": null,
+ "points": 0,
+ "created_at": "2025-07-24T17:30:41Z",
+ "updated_at": "2025-07-25T09:43:18Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-25T09:43:17Z",
+ "author_url": "https://github.com/ishita051",
+ "author_avatar": "https://avatars.githubusercontent.com/u/183702036?v=4"
+ },
+ {
+ "url": "https://github.com/ProTecGames/Karbon/pull/44",
+ "title": "Implement Customizable Workspace Layout #11",
+ "repo": "ProTecGames/Karbon",
+ "level": null,
+ "points": 0,
+ "created_at": "2025-07-24T07:38:45Z",
+ "updated_at": "2025-07-24T10:25:54Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-24T08:53:44Z",
+ "author_url": "https://github.com/ishita051",
+ "author_avatar": "https://avatars.githubusercontent.com/u/183702036?v=4"
+ },
+ {
+ "url": "https://github.com/ProTecGames/Karbon/pull/42",
+ "title": "Add Support for Custom API Key Input and Configurable Model Source #7",
+ "repo": "ProTecGames/Karbon",
+ "level": null,
+ "points": 0,
+ "created_at": "2025-07-24T06:41:09Z",
+ "updated_at": "2025-07-25T08:56:46Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-24T08:02:54Z",
+ "author_url": "https://github.com/ishita051",
+ "author_avatar": "https://avatars.githubusercontent.com/u/183702036?v=4"
+ },
+ {
+ "url": "https://github.com/Rajkumarbhakta/Canvas/pull/5",
+ "title": "UPDATE ON: feat: Implement Search Functionality and Improve Home Screen UI #1",
+ "repo": "Rajkumarbhakta/Canvas",
+ "level": "level2",
+ "points": 7,
+ "created_at": "2025-07-25T15:22:32Z",
+ "updated_at": "2025-07-31T11:52:58Z",
+ "state": "open",
+ "merged": false,
+ "merged_at": null,
+ "author_url": "https://github.com/ishita051",
+ "author_avatar": "https://avatars.githubusercontent.com/u/183702036?v=4"
+ },
+ {
+ "url": "https://github.com/may-tas/TextEditingApp/pull/8",
+ "title": "Updated font_controls.dart after Feature Request",
+ "repo": "may-tas/TextEditingApp",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-23T08:40:29Z",
+ "updated_at": "2025-07-23T13:57:19Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-23T13:55:33Z",
+ "author_url": "https://github.com/ishita051",
+ "author_avatar": "https://avatars.githubusercontent.com/u/183702036?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/183702036?v=4",
+ "profile_url": "https://github.com/ishita051"
+ },
+ "rashmijannu": {
+ "expectedPoints": 18,
+ "currentPoints": 18,
+ "levels": {
+ "level1": 1,
+ "level2": 2,
+ "level3": 0
+ },
+ "prs": [
+ {
+ "url": "https://github.com/AyushSharma72/Skill_Trade/pull/75",
+ "title": "Updated readme",
+ "repo": "AyushSharma72/Skill_Trade",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-29T06:38:49Z",
+ "updated_at": "2025-07-29T15:31:06Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-29T15:31:06Z",
+ "author_url": "https://github.com/rashmijannu",
+ "author_avatar": "https://avatars.githubusercontent.com/u/121299613?v=4"
+ },
+ {
+ "url": "https://github.com/AyushSharma72/Skill_Trade/pull/53",
+ "title": "Enhanced UI of contact page",
+ "repo": "AyushSharma72/Skill_Trade",
+ "level": "level2",
+ "points": 7,
+ "created_at": "2025-07-26T04:39:53Z",
+ "updated_at": "2025-07-27T02:34:44Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-27T02:34:44Z",
+ "author_url": "https://github.com/rashmijannu",
+ "author_avatar": "https://avatars.githubusercontent.com/u/121299613?v=4"
+ },
+ {
+ "url": "https://github.com/AyushSharma72/Skill_Trade/pull/23",
+ "title": "Add missing images to homepage #7",
+ "repo": "AyushSharma72/Skill_Trade",
+ "level": "level2",
+ "points": 7,
+ "created_at": "2025-07-23T13:50:36Z",
+ "updated_at": "2025-07-23T18:05:48Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-23T17:25:32Z",
+ "author_url": "https://github.com/rashmijannu",
+ "author_avatar": "https://avatars.githubusercontent.com/u/121299613?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/121299613?v=4",
+ "profile_url": "https://github.com/rashmijannu"
+ },
+ "Baranidharanv06": {
+ "expectedPoints": 18,
+ "currentPoints": 18,
+ "levels": {
+ "level1": 1,
+ "level2": 2,
+ "level3": 0
+ },
+ "prs": [
+ {
+ "url": "https://github.com/BaraniVA/Habitheat/pull/79",
+ "title": "feat: Implement Achievement System UI & Notifications",
+ "repo": "BaraniVA/Habitheat",
+ "level": "level2",
+ "points": 7,
+ "created_at": "2025-07-27T06:11:32Z",
+ "updated_at": "2025-07-27T11:49:22Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-27T09:57:43Z",
+ "author_url": "https://github.com/Baranidharanv06",
+ "author_avatar": "https://avatars.githubusercontent.com/u/180313267?v=4"
+ },
+ {
+ "url": "https://github.com/BaraniVA/Habitheat/pull/25",
+ "title": "feat: Implement customizable dashboard widgets for analytics (#12)",
+ "repo": "BaraniVA/Habitheat",
+ "level": "level2",
+ "points": 7,
+ "created_at": "2025-07-23T07:46:36Z",
+ "updated_at": "2025-07-23T08:04:05Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-23T07:53:14Z",
+ "author_url": "https://github.com/Baranidharanv06",
+ "author_avatar": "https://avatars.githubusercontent.com/u/180313267?v=4"
+ },
+ {
+ "url": "https://github.com/sampadatiwari30/DeshDarshan/pull/41",
+ "title": "feat: Implement Explore India section with State/UT cards and search …",
+ "repo": "sampadatiwari30/DeshDarshan",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-22T15:58:55Z",
+ "updated_at": "2025-07-22T16:09:18Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-22T16:08:55Z",
+ "author_url": "https://github.com/Baranidharanv06",
+ "author_avatar": "https://avatars.githubusercontent.com/u/180313267?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/180313267?v=4",
+ "profile_url": "https://github.com/Baranidharanv06"
+ },
+ "AneeshAhuja31": {
+ "expectedPoints": 18,
+ "currentPoints": 18,
+ "levels": {
+ "level1": 1,
+ "level2": 2,
+ "level3": 0
+ },
+ "prs": [
+ {
+ "url": "https://github.com/Devasy23/splitwiser/pull/96",
+ "title": "Fix: Auto-login after signup and redirect to dashboard",
+ "repo": "Devasy23/splitwiser",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-30T15:36:36Z",
+ "updated_at": "2025-08-02T20:38:21Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-30T17:53:31Z",
+ "author_url": "https://github.com/AneeshAhuja31",
+ "author_avatar": "https://avatars.githubusercontent.com/u/148528080?v=4"
+ },
+ {
+ "url": "https://github.com/Devasy23/splitwiser/pull/83",
+ "title": "poc(frontend-streamlit): Added cookie baased auth in streamlit using streamlit-cookie-manager",
+ "repo": "Devasy23/splitwiser",
+ "level": "level2",
+ "points": 7,
+ "created_at": "2025-07-27T02:07:09Z",
+ "updated_at": "2025-07-28T18:27:04Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-28T18:27:04Z",
+ "author_url": "https://github.com/AneeshAhuja31",
+ "author_avatar": "https://avatars.githubusercontent.com/u/148528080?v=4"
+ },
+ {
+ "url": "https://github.com/Devasy23/splitwiser/pull/75",
+ "title": "feat(logging): fixes issue 58: Implement Centralized Logging and Request/Response Middleware",
+ "repo": "Devasy23/splitwiser",
+ "level": "level2",
+ "points": 7,
+ "created_at": "2025-07-25T21:28:05Z",
+ "updated_at": "2025-07-26T13:09:07Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-26T12:52:33Z",
+ "author_url": "https://github.com/AneeshAhuja31",
+ "author_avatar": "https://avatars.githubusercontent.com/u/148528080?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/148528080?v=4",
+ "profile_url": "https://github.com/AneeshAhuja31"
+ },
+ "star-warrior": {
+ "expectedPoints": 18,
+ "currentPoints": 18,
+ "levels": {
+ "level1": 1,
+ "level2": 2,
+ "level3": 0
+ },
+ "prs": [
+ {
+ "url": "https://github.com/GauravKarakoti/Weather-API/pull/178",
+ "title": "Rate limit",
+ "repo": "GauravKarakoti/Weather-API",
+ "level": "level2",
+ "points": 7,
+ "created_at": "2025-07-23T14:15:10Z",
+ "updated_at": "2025-07-24T06:00:47Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-24T06:00:47Z",
+ "author_url": "https://github.com/star-warrior",
+ "author_avatar": "https://avatars.githubusercontent.com/u/69752445?v=4"
+ },
+ {
+ "url": "https://github.com/openml-stack/SentiLog-AI/pull/48",
+ "title": "Simple but beautiful onscroll Animation Added using AOS ( Animate on Scroll ) Library and Transition Between Pages Added",
+ "repo": "openml-stack/SentiLog-AI",
+ "level": "level2",
+ "points": 7,
+ "created_at": "2025-07-24T08:58:21Z",
+ "updated_at": "2025-07-24T20:36:28Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-24T20:13:42Z",
+ "author_url": "https://github.com/star-warrior",
+ "author_avatar": "https://avatars.githubusercontent.com/u/69752445?v=4"
+ },
+ {
+ "url": "https://github.com/openml-stack/SentiLog-AI/pull/41",
+ "title": "Requirements.txt added",
+ "repo": "openml-stack/SentiLog-AI",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-23T19:02:27Z",
+ "updated_at": "2025-07-24T04:55:44Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-24T04:55:23Z",
+ "author_url": "https://github.com/star-warrior",
+ "author_avatar": "https://avatars.githubusercontent.com/u/69752445?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/69752445?v=4",
+ "profile_url": "https://github.com/star-warrior"
+ },
+ "Srushtee1706": {
+ "expectedPoints": 18,
+ "currentPoints": 18,
+ "levels": {
+ "level1": 2,
+ "level2": 0,
+ "level3": 1
+ },
+ "prs": [
+ {
+ "url": "https://github.com/Kritika75/TheCawnporeMag.github.io/pull/378",
+ "title": " Add Interactive Journey Timeline Page [issue no #352]",
+ "repo": "Kritika75/TheCawnporeMag.github.io",
+ "level": "level3",
+ "points": 10,
+ "created_at": "2025-08-02T14:35:42Z",
+ "updated_at": "2025-08-03T06:06:09Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-08-03T06:06:09Z",
+ "author_url": "https://github.com/Srushtee1706",
+ "author_avatar": "https://avatars.githubusercontent.com/u/198477438?v=4"
+ },
+ {
+ "url": "https://github.com/rutikakengal/100DAYS_OF_100WEBPROJECTS/pull/230",
+ "title": "Add Text to PDF Converter Web App ",
+ "repo": "rutikakengal/100DAYS_OF_100WEBPROJECTS",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-26T18:40:41Z",
+ "updated_at": "2025-07-28T09:03:39Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-28T09:03:11Z",
+ "author_url": "https://github.com/Srushtee1706",
+ "author_avatar": "https://avatars.githubusercontent.com/u/198477438?v=4"
+ },
+ {
+ "url": "https://github.com/rutikakengal/100DAYS_OF_100WEBPROJECTS/pull/206",
+ "title": " Added QR Code Generator Web App issue#107 #200 ",
+ "repo": "rutikakengal/100DAYS_OF_100WEBPROJECTS",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-26T09:28:50Z",
+ "updated_at": "2025-07-26T09:57:14Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-26T09:56:53Z",
+ "author_url": "https://github.com/Srushtee1706",
+ "author_avatar": "https://avatars.githubusercontent.com/u/198477438?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/198477438?v=4",
+ "profile_url": "https://github.com/Srushtee1706"
+ },
+ "Arya-Chakraborty": {
+ "expectedPoints": 18,
+ "currentPoints": 18,
+ "levels": {
+ "level1": 1,
+ "level2": 2,
+ "level3": 0
+ },
+ "prs": [
+ {
+ "url": "https://github.com/Er-luffy-D/SimplifAI/pull/50",
+ "title": "enhancement: Improved the logic for Reset and Shuffle button and added Navigation Buttons",
+ "repo": "Er-luffy-D/SimplifAI",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-27T18:48:20Z",
+ "updated_at": "2025-08-02T16:58:25Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-28T05:10:09Z",
+ "author_url": "https://github.com/Arya-Chakraborty",
+ "author_avatar": "https://avatars.githubusercontent.com/u/76962037?v=4"
+ },
+ {
+ "url": "https://github.com/Er-luffy-D/SimplifAI/pull/35",
+ "title": "feat: Added Summary Length Selection by the User",
+ "repo": "Er-luffy-D/SimplifAI",
+ "level": "level2",
+ "points": 7,
+ "created_at": "2025-07-25T17:26:44Z",
+ "updated_at": "2025-08-02T16:55:36Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-26T20:12:21Z",
+ "author_url": "https://github.com/Arya-Chakraborty",
+ "author_avatar": "https://avatars.githubusercontent.com/u/76962037?v=4"
+ },
+ {
+ "url": "https://github.com/Er-luffy-D/SimplifAI/pull/30",
+ "title": "Add PDF and JSON export to ResultsHeader",
+ "repo": "Er-luffy-D/SimplifAI",
+ "level": "level2",
+ "points": 7,
+ "created_at": "2025-07-24T16:35:08Z",
+ "updated_at": "2025-08-02T16:55:06Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-24T17:40:04Z",
+ "author_url": "https://github.com/Arya-Chakraborty",
+ "author_avatar": "https://avatars.githubusercontent.com/u/76962037?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/76962037?v=4",
+ "profile_url": "https://github.com/Arya-Chakraborty"
+ },
+ "Neermita18": {
+ "expectedPoints": 18,
+ "currentPoints": 18,
+ "levels": {
+ "level1": 2,
+ "level2": 0,
+ "level3": 1
+ },
+ "prs": [
+ {
+ "url": "https://github.com/Er-luffy-D/SimplifAI/pull/20",
+ "title": "Neermita18/documentation work",
+ "repo": "Er-luffy-D/SimplifAI",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-23T14:09:01Z",
+ "updated_at": "2025-08-02T16:52:09Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-24T12:47:25Z",
+ "author_url": "https://github.com/Neermita18",
+ "author_avatar": "https://avatars.githubusercontent.com/u/153750505?v=4"
+ },
+ {
+ "url": "https://github.com/Er-luffy-D/SimplifAI/pull/18",
+ "title": "Neermita18/add api stats endpoint",
+ "repo": "Er-luffy-D/SimplifAI",
+ "level": "level3",
+ "points": 10,
+ "created_at": "2025-07-23T07:24:15Z",
+ "updated_at": "2025-08-02T16:51:40Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-23T12:05:53Z",
+ "author_url": "https://github.com/Neermita18",
+ "author_avatar": "https://avatars.githubusercontent.com/u/153750505?v=4"
+ },
+ {
+ "url": "https://github.com/eccentriccoder01/TalkHeal/pull/49",
+ "title": "UI-Enhancements #39",
+ "repo": "eccentriccoder01/TalkHeal",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-26T15:34:43Z",
+ "updated_at": "2025-08-03T03:52:46Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-27T18:20:44Z",
+ "author_url": "https://github.com/Neermita18",
+ "author_avatar": "https://avatars.githubusercontent.com/u/153750505?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/153750505?v=4",
+ "profile_url": "https://github.com/Neermita18"
+ },
+ "Vansh-Parate": {
+ "expectedPoints": 18,
+ "currentPoints": 18,
+ "levels": {
+ "level1": 1,
+ "level2": 2,
+ "level3": 0
+ },
+ "prs": [
+ {
+ "url": "https://github.com/sristy17/next-payroll/pull/29",
+ "title": "Implemented ITR-1 page",
+ "repo": "sristy17/next-payroll",
+ "level": "level2",
+ "points": 7,
+ "created_at": "2025-07-25T14:22:49Z",
+ "updated_at": "2025-07-27T15:55:55Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-27T15:55:55Z",
+ "author_url": "https://github.com/Vansh-Parate",
+ "author_avatar": "https://avatars.githubusercontent.com/u/140736931?v=4"
+ },
+ {
+ "url": "https://github.com/sristy17/next-payroll/pull/25",
+ "title": "Error and Not Found pages",
+ "repo": "sristy17/next-payroll",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-25T06:08:41Z",
+ "updated_at": "2025-07-25T11:14:31Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-25T10:16:20Z",
+ "author_url": "https://github.com/Vansh-Parate",
+ "author_avatar": "https://avatars.githubusercontent.com/u/140736931?v=4"
+ },
+ {
+ "url": "https://github.com/sristy17/next-payroll/pull/22",
+ "title": "Implement Itr4 page",
+ "repo": "sristy17/next-payroll",
+ "level": "level2",
+ "points": 7,
+ "created_at": "2025-07-24T07:44:16Z",
+ "updated_at": "2025-07-25T04:00:16Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-25T04:00:16Z",
+ "author_url": "https://github.com/Vansh-Parate",
+ "author_avatar": "https://avatars.githubusercontent.com/u/140736931?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/140736931?v=4",
+ "profile_url": "https://github.com/Vansh-Parate"
+ },
+ "Stranger1298": {
+ "expectedPoints": 17,
+ "currentPoints": 17,
+ "levels": {
+ "level1": 0,
+ "level2": 1,
+ "level3": 1
+ },
+ "prs": [
+ {
+ "url": "https://github.com/Abhishek2634/Foodie/pull/202",
+ "title": "Fixed time delay in google login",
+ "repo": "Abhishek2634/Foodie",
+ "level": "level3",
+ "points": 10,
+ "created_at": "2025-07-30T19:07:35Z",
+ "updated_at": "2025-08-02T11:18:14Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-08-01T07:39:10Z",
+ "author_url": "https://github.com/Stranger1298",
+ "author_avatar": "https://avatars.githubusercontent.com/u/84931030?v=4"
+ },
+ {
+ "url": "https://github.com/BhaktiMore18/Pouranik/pull/116",
+ "title": "Added Filter and Sort feature",
+ "repo": "BhaktiMore18/Pouranik",
+ "level": "level2",
+ "points": 7,
+ "created_at": "2025-07-31T10:52:59Z",
+ "updated_at": "2025-08-03T06:54:09Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-08-02T19:06:32Z",
+ "author_url": "https://github.com/Stranger1298",
+ "author_avatar": "https://avatars.githubusercontent.com/u/84931030?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/84931030?v=4",
+ "profile_url": "https://github.com/Stranger1298"
+ },
+ "ronit-1404": {
+ "expectedPoints": 17,
+ "currentPoints": 17,
+ "levels": {
+ "level1": 0,
+ "level2": 1,
+ "level3": 1
+ },
+ "prs": [
+ {
+ "url": "https://github.com/Abhishek2634/Foodie/pull/166",
+ "title": "updated readme after dockerizing the entire application keeping the previous installation steps aswell",
+ "repo": "Abhishek2634/Foodie",
+ "level": "level2",
+ "points": 7,
+ "created_at": "2025-07-29T08:59:13Z",
+ "updated_at": "2025-08-02T11:11:25Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-29T17:00:02Z",
+ "author_url": "https://github.com/ronit-1404",
+ "author_avatar": "https://avatars.githubusercontent.com/u/88834510?v=4"
+ },
+ {
+ "url": "https://github.com/Abhishek2634/Foodie/pull/164",
+ "title": "Added Docker support for MERN stack with orchestration",
+ "repo": "Abhishek2634/Foodie",
+ "level": "level3",
+ "points": 10,
+ "created_at": "2025-07-29T08:47:12Z",
+ "updated_at": "2025-08-02T11:11:08Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-29T16:59:08Z",
+ "author_url": "https://github.com/ronit-1404",
+ "author_avatar": "https://avatars.githubusercontent.com/u/88834510?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/88834510?v=4",
+ "profile_url": "https://github.com/ronit-1404"
+ },
+ "NishaM2": {
+ "expectedPoints": 17,
+ "currentPoints": 17,
+ "levels": {
+ "level1": 0,
+ "level2": 1,
+ "level3": 1
+ },
+ "prs": [
+ {
+ "url": "https://github.com/Abhishek2634/Foodie/pull/79",
+ "title": "Favorites feature",
+ "repo": "Abhishek2634/Foodie",
+ "level": "level2",
+ "points": 7,
+ "created_at": "2025-07-23T18:49:29Z",
+ "updated_at": "2025-08-02T10:54:12Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-24T15:48:20Z",
+ "author_url": "https://github.com/NishaM2",
+ "author_avatar": "https://avatars.githubusercontent.com/u/159643500?v=4"
+ },
+ {
+ "url": "https://github.com/Adarsh-Chaubey03/TravelGrid/pull/249",
+ "title": " Add Trip Expense Calculator Individual, group with Per Person Split & Pie Chart Breakdown",
+ "repo": "Adarsh-Chaubey03/TravelGrid",
+ "level": "level3",
+ "points": 10,
+ "created_at": "2025-07-27T15:09:31Z",
+ "updated_at": "2025-07-28T06:19:58Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-28T06:19:58Z",
+ "author_url": "https://github.com/NishaM2",
+ "author_avatar": "https://avatars.githubusercontent.com/u/159643500?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/159643500?v=4",
+ "profile_url": "https://github.com/NishaM2"
+ },
+ "Sangeeta-20-stack": {
+ "expectedPoints": 17,
+ "currentPoints": 17,
+ "levels": {
+ "level1": 0,
+ "level2": 1,
+ "level3": 1
+ },
+ "prs": [
+ {
+ "url": "https://github.com/Adarsh-Chaubey03/TravelGrid/pull/442",
+ "title": "changed bgs as of guide page",
+ "repo": "Adarsh-Chaubey03/TravelGrid",
+ "level": "level2",
+ "points": 7,
+ "created_at": "2025-08-01T16:34:26Z",
+ "updated_at": "2025-08-01T17:15:12Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-08-01T17:14:57Z",
+ "author_url": "https://github.com/Sangeeta-20-stack",
+ "author_avatar": "https://avatars.githubusercontent.com/u/206443441?v=4"
+ },
+ {
+ "url": "https://github.com/efshaperveen/MindJournal/pull/43",
+ "title": "Issue #7",
+ "repo": "efshaperveen/MindJournal",
+ "level": "level3",
+ "points": 10,
+ "created_at": "2025-07-25T16:17:52Z",
+ "updated_at": "2025-07-26T03:37:00Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-25T20:01:09Z",
+ "author_url": "https://github.com/Sangeeta-20-stack",
+ "author_avatar": "https://avatars.githubusercontent.com/u/206443441?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/206443441?v=4",
+ "profile_url": "https://github.com/Sangeeta-20-stack"
+ },
+ "omku415": {
+ "expectedPoints": 17,
+ "currentPoints": 17,
+ "levels": {
+ "level1": 0,
+ "level2": 1,
+ "level3": 1
+ },
+ "prs": [
+ {
+ "url": "https://github.com/Adarsh-Chaubey03/TravelGrid/pull/416",
+ "title": "Fix: Feedback page background and navbar overlap issues (#407)",
+ "repo": "Adarsh-Chaubey03/TravelGrid",
+ "level": "level2",
+ "points": 7,
+ "created_at": "2025-07-31T17:02:40Z",
+ "updated_at": "2025-07-31T17:18:52Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-31T17:18:42Z",
+ "author_url": "https://github.com/omku415",
+ "author_avatar": "https://avatars.githubusercontent.com/u/182167390?v=4"
+ },
+ {
+ "url": "https://github.com/itsAnimation/AnimateItNow/pull/681",
+ "title": "Added login form UI component",
+ "repo": "itsAnimation/AnimateItNow",
+ "level": "level3",
+ "points": 10,
+ "created_at": "2025-07-30T22:39:20Z",
+ "updated_at": "2025-08-02T10:49:35Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-08-02T10:49:25Z",
+ "author_url": "https://github.com/omku415",
+ "author_avatar": "https://avatars.githubusercontent.com/u/182167390?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/182167390?v=4",
+ "profile_url": "https://github.com/omku415"
+ },
+ "prachithakor08": {
+ "expectedPoints": 17,
+ "currentPoints": 17,
+ "levels": {
+ "level1": 0,
+ "level2": 1,
+ "level3": 1
+ },
+ "prs": [
+ {
+ "url": "https://github.com/Adarsh-Chaubey03/TravelGrid/pull/308",
+ "title": "Added Hotel Booking Feature and UI Enhancements",
+ "repo": "Adarsh-Chaubey03/TravelGrid",
+ "level": "level2",
+ "points": 7,
+ "created_at": "2025-07-28T18:07:47Z",
+ "updated_at": "2025-07-30T15:00:13Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-30T14:59:57Z",
+ "author_url": "https://github.com/prachithakor08",
+ "author_avatar": "https://avatars.githubusercontent.com/u/157780262?v=4"
+ },
+ {
+ "url": "https://github.com/efshaperveen/MindJournal/pull/39",
+ "title": "Integrate AI Chatbot Feature in MindJournal",
+ "repo": "efshaperveen/MindJournal",
+ "level": "level3",
+ "points": 10,
+ "created_at": "2025-07-25T05:18:59Z",
+ "updated_at": "2025-07-25T12:40:13Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-25T12:40:13Z",
+ "author_url": "https://github.com/prachithakor08",
+ "author_avatar": "https://avatars.githubusercontent.com/u/157780262?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/157780262?v=4",
+ "profile_url": "https://github.com/prachithakor08"
+ },
+ "VEERESH069": {
+ "expectedPoints": 17,
+ "currentPoints": 17,
+ "levels": {
+ "level1": 0,
+ "level2": 1,
+ "level3": 1
+ },
+ "prs": [
+ {
+ "url": "https://github.com/Adarsh-Chaubey03/TravelGrid/pull/159",
+ "title": "Feature/backend init user setup ( Backend Initialized with Auth, Routes, and MongoDB Connection )",
+ "repo": "Adarsh-Chaubey03/TravelGrid",
+ "level": "level3",
+ "points": 10,
+ "created_at": "2025-07-24T17:00:55Z",
+ "updated_at": "2025-07-29T04:59:39Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-25T06:01:47Z",
+ "author_url": "https://github.com/VEERESH069",
+ "author_avatar": "https://avatars.githubusercontent.com/u/116574954?v=4"
+ },
+ {
+ "url": "https://github.com/pavitraag/Project-Vault/pull/44",
+ "title": "Prediction pipeline feature add",
+ "repo": "pavitraag/Project-Vault",
+ "level": "level2",
+ "points": 7,
+ "created_at": "2025-07-24T10:22:41Z",
+ "updated_at": "2025-07-29T18:27:46Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-24T12:45:57Z",
+ "author_url": "https://github.com/VEERESH069",
+ "author_avatar": "https://avatars.githubusercontent.com/u/116574954?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/116574954?v=4",
+ "profile_url": "https://github.com/VEERESH069"
+ },
+ "diiviikk5": {
+ "expectedPoints": 17,
+ "currentPoints": 17,
+ "levels": {
+ "level1": 0,
+ "level2": 1,
+ "level3": 1
+ },
+ "prs": [
+ {
+ "url": "https://github.com/Adarsh-Chaubey03/TravelGrid/pull/26",
+ "title": "Add functional contact page with navbar integration",
+ "repo": "Adarsh-Chaubey03/TravelGrid",
+ "level": "level2",
+ "points": 7,
+ "created_at": "2025-07-21T17:57:29Z",
+ "updated_at": "2025-07-21T20:26:03Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-21T20:15:47Z",
+ "author_url": "https://github.com/diiviikk5",
+ "author_avatar": "https://avatars.githubusercontent.com/u/131183253?v=4"
+ },
+ {
+ "url": "https://github.com/itsAnimation/AnimateItNow/pull/263",
+ "title": "feat: keep single static FAQ, remove duplicates",
+ "repo": "itsAnimation/AnimateItNow",
+ "level": "level3",
+ "points": 10,
+ "created_at": "2025-07-23T20:16:54Z",
+ "updated_at": "2025-07-23T20:21:20Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-23T20:21:19Z",
+ "author_url": "https://github.com/diiviikk5",
+ "author_avatar": "https://avatars.githubusercontent.com/u/131183253?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/131183253?v=4",
+ "profile_url": "https://github.com/diiviikk5"
+ },
+ "Coder-010506": {
+ "expectedPoints": 17,
+ "currentPoints": 17,
+ "levels": {
+ "level1": 0,
+ "level2": 1,
+ "level3": 1
+ },
+ "prs": [
+ {
+ "url": "https://github.com/huamanraj/aitoolbox.software/pull/38",
+ "title": "Add AI Trip Planner feature to navigation",
+ "repo": "huamanraj/aitoolbox.software",
+ "level": "level3",
+ "points": 10,
+ "created_at": "2025-07-29T08:14:48Z",
+ "updated_at": "2025-07-30T04:13:53Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-30T02:11:22Z",
+ "author_url": "https://github.com/Coder-010506",
+ "author_avatar": "https://avatars.githubusercontent.com/u/188947979?v=4"
+ },
+ {
+ "url": "https://github.com/itsAnimation/AnimateItNow/pull/385",
+ "title": "Add testimonials section",
+ "repo": "itsAnimation/AnimateItNow",
+ "level": "level2",
+ "points": 7,
+ "created_at": "2025-07-25T09:17:09Z",
+ "updated_at": "2025-07-26T08:22:48Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-26T08:06:09Z",
+ "author_url": "https://github.com/Coder-010506",
+ "author_avatar": "https://avatars.githubusercontent.com/u/188947979?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/188947979?v=4",
+ "profile_url": "https://github.com/Coder-010506"
+ },
+ "Codewizkashish": {
+ "expectedPoints": 17,
+ "currentPoints": 17,
+ "levels": {
+ "level1": 0,
+ "level2": 1,
+ "level3": 1
+ },
+ "prs": [
+ {
+ "url": "https://github.com/huamanraj/aitoolbox.software/pull/29",
+ "title": "Added footer to end of every tool",
+ "repo": "huamanraj/aitoolbox.software",
+ "level": "level3",
+ "points": 10,
+ "created_at": "2025-07-28T08:31:38Z",
+ "updated_at": "2025-07-29T16:51:26Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-29T13:34:16Z",
+ "author_url": "https://github.com/Codewizkashish",
+ "author_avatar": "https://avatars.githubusercontent.com/u/166716383?v=4"
+ },
+ {
+ "url": "https://github.com/sristy17/next-payroll/pull/47",
+ "title": "added navbar and made sidebar responsive",
+ "repo": "sristy17/next-payroll",
+ "level": "level2",
+ "points": 7,
+ "created_at": "2025-07-28T14:59:48Z",
+ "updated_at": "2025-08-03T06:50:14Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-08-03T06:50:01Z",
+ "author_url": "https://github.com/Codewizkashish",
+ "author_avatar": "https://avatars.githubusercontent.com/u/166716383?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/166716383?v=4",
+ "profile_url": "https://github.com/Codewizkashish"
+ },
+ "12Mishra": {
+ "expectedPoints": 17,
+ "currentPoints": 17,
+ "levels": {
+ "level1": 0,
+ "level2": 1,
+ "level3": 1
+ },
+ "prs": [
+ {
+ "url": "https://github.com/Amarjha01/InfantCareCompass/pull/81",
+ "title": "Added personalised learning hub page ",
+ "repo": "Amarjha01/InfantCareCompass",
+ "level": "level3",
+ "points": 10,
+ "created_at": "2025-07-24T08:15:02Z",
+ "updated_at": "2025-07-25T14:06:32Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-25T14:03:23Z",
+ "author_url": "https://github.com/12Mishra",
+ "author_avatar": "https://avatars.githubusercontent.com/u/88658148?v=4"
+ },
+ {
+ "url": "https://github.com/sristy17/next-payroll/pull/4",
+ "title": "Bug/auth issues",
+ "repo": "sristy17/next-payroll",
+ "level": "level2",
+ "points": 7,
+ "created_at": "2025-07-22T12:46:46Z",
+ "updated_at": "2025-07-24T05:09:34Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-22T17:05:53Z",
+ "author_url": "https://github.com/12Mishra",
+ "author_avatar": "https://avatars.githubusercontent.com/u/88658148?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/88658148?v=4",
+ "profile_url": "https://github.com/12Mishra"
+ },
+ "aartiparulkar": {
+ "expectedPoints": 17,
+ "currentPoints": 17,
+ "levels": {
+ "level1": 0,
+ "level2": 1,
+ "level3": 1
+ },
+ "prs": [
+ {
+ "url": "https://github.com/itsAnimation/AnimateItNow/pull/342",
+ "title": "Added the Price Plan Template ",
+ "repo": "itsAnimation/AnimateItNow",
+ "level": "level3",
+ "points": 10,
+ "created_at": "2025-07-24T18:32:51Z",
+ "updated_at": "2025-07-24T18:50:17Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-24T18:50:17Z",
+ "author_url": "https://github.com/aartiparulkar",
+ "author_avatar": "https://avatars.githubusercontent.com/u/88289162?v=4"
+ },
+ {
+ "url": "https://github.com/itsAnimation/AnimateItNow/pull/329",
+ "title": "Added Accordion Style FAQ Section + Expandable Code",
+ "repo": "itsAnimation/AnimateItNow",
+ "level": "level2",
+ "points": 7,
+ "created_at": "2025-07-24T16:49:15Z",
+ "updated_at": "2025-07-26T15:57:47Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-26T15:57:47Z",
+ "author_url": "https://github.com/aartiparulkar",
+ "author_avatar": "https://avatars.githubusercontent.com/u/88289162?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/88289162?v=4",
+ "profile_url": "https://github.com/aartiparulkar"
+ },
+ "PrajwalBenedictNorman": {
+ "expectedPoints": 17,
+ "currentPoints": 17,
+ "levels": {
+ "level1": 0,
+ "level2": 1,
+ "level3": 1
+ },
+ "prs": [
+ {
+ "url": "https://github.com/InnoWebLabs/Vehigo/pull/158",
+ "title": "Add Google Sign-In support with Firebase to signup flow",
+ "repo": "InnoWebLabs/Vehigo",
+ "level": "level3",
+ "points": 10,
+ "created_at": "2025-07-28T04:47:38Z",
+ "updated_at": "2025-07-28T07:57:37Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-28T07:57:37Z",
+ "author_url": "https://github.com/PrajwalBenedictNorman",
+ "author_avatar": "https://avatars.githubusercontent.com/u/166240232?v=4"
+ },
+ {
+ "url": "https://github.com/openml-stack/SentiLog-AI/pull/35",
+ "title": "Implement Dark Mode Support and Added RIch Text Editor",
+ "repo": "openml-stack/SentiLog-AI",
+ "level": "level2",
+ "points": 7,
+ "created_at": "2025-07-23T16:42:04Z",
+ "updated_at": "2025-07-24T18:04:57Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-24T18:02:55Z",
+ "author_url": "https://github.com/PrajwalBenedictNorman",
+ "author_avatar": "https://avatars.githubusercontent.com/u/166240232?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/166240232?v=4",
+ "profile_url": "https://github.com/PrajwalBenedictNorman"
+ },
+ "akashgarine": {
+ "expectedPoints": 17,
+ "currentPoints": 17,
+ "levels": {
+ "level1": 0,
+ "level2": 1,
+ "level3": 1
+ },
+ "prs": [
+ {
+ "url": "https://github.com/AyushSharma72/Skill_Trade/pull/65",
+ "title": "OTP Verification moved to Registration page & removed at Profile page",
+ "repo": "AyushSharma72/Skill_Trade",
+ "level": "level2",
+ "points": 7,
+ "created_at": "2025-07-27T12:34:10Z",
+ "updated_at": "2025-07-27T19:09:48Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-27T18:49:31Z",
+ "author_url": "https://github.com/akashgarine",
+ "author_avatar": "https://avatars.githubusercontent.com/u/122369528?v=4"
+ },
+ {
+ "url": "https://github.com/AyushSharma72/Skill_Trade/pull/64",
+ "title": "OTP Dialog modal UI Updated",
+ "repo": "AyushSharma72/Skill_Trade",
+ "level": "level3",
+ "points": 10,
+ "created_at": "2025-07-27T09:21:09Z",
+ "updated_at": "2025-07-27T11:35:57Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-27T11:28:44Z",
+ "author_url": "https://github.com/akashgarine",
+ "author_avatar": "https://avatars.githubusercontent.com/u/122369528?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/122369528?v=4",
+ "profile_url": "https://github.com/akashgarine"
+ },
+ "Lingaraj-Patil": {
+ "expectedPoints": 17,
+ "currentPoints": 17,
+ "levels": {
+ "level1": 0,
+ "level2": 1,
+ "level3": 1
+ },
+ "prs": [
+ {
+ "url": "https://github.com/BaraniVA/Habitheat/pull/107",
+ "title": "habits_api: added ",
+ "repo": "BaraniVA/Habitheat",
+ "level": "level3",
+ "points": 10,
+ "created_at": "2025-07-31T08:42:03Z",
+ "updated_at": "2025-07-31T13:37:44Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-31T13:37:09Z",
+ "author_url": "https://github.com/Lingaraj-Patil",
+ "author_avatar": "https://avatars.githubusercontent.com/u/153691551?v=4"
+ },
+ {
+ "url": "https://github.com/BaraniVA/Habitheat/pull/57",
+ "title": "Profile page",
+ "repo": "BaraniVA/Habitheat",
+ "level": "level2",
+ "points": 7,
+ "created_at": "2025-07-24T12:43:21Z",
+ "updated_at": "2025-07-24T14:37:00Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-24T14:25:41Z",
+ "author_url": "https://github.com/Lingaraj-Patil",
+ "author_avatar": "https://avatars.githubusercontent.com/u/153691551?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/153691551?v=4",
+ "profile_url": "https://github.com/Lingaraj-Patil"
+ },
+ "ArihantSrivastava2225": {
+ "expectedPoints": 17,
+ "currentPoints": 17,
+ "levels": {
+ "level1": 0,
+ "level2": 1,
+ "level3": 1
+ },
+ "prs": [
+ {
+ "url": "https://github.com/Bavanetha27/Refixly/pull/48",
+ "title": "AI Damage Detection Feature ",
+ "repo": "Bavanetha27/Refixly",
+ "level": "level3",
+ "points": 10,
+ "created_at": "2025-07-29T19:06:15Z",
+ "updated_at": "2025-08-01T19:10:42Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-30T15:51:07Z",
+ "author_url": "https://github.com/ArihantSrivastava2225",
+ "author_avatar": "https://avatars.githubusercontent.com/u/89091503?v=4"
+ },
+ {
+ "url": "https://github.com/BhaktiMore18/Pouranik/pull/99",
+ "title": "Reviews and Ratings Page",
+ "repo": "BhaktiMore18/Pouranik",
+ "level": "level2",
+ "points": 7,
+ "created_at": "2025-07-28T20:56:05Z",
+ "updated_at": "2025-08-01T08:51:26Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-29T06:52:31Z",
+ "author_url": "https://github.com/ArihantSrivastava2225",
+ "author_avatar": "https://avatars.githubusercontent.com/u/89091503?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/89091503?v=4",
+ "profile_url": "https://github.com/ArihantSrivastava2225"
+ },
+ "Deepak-Kumbhar2006": {
+ "expectedPoints": 17,
+ "currentPoints": 17,
+ "levels": {
+ "level1": 0,
+ "level2": 1,
+ "level3": 1
+ },
+ "prs": [
+ {
+ "url": "https://github.com/Gagandeep-2003/driver-drowsiness-detection-system/pull/43",
+ "title": "fix:39 Add error handling for missing alarm file with traceback logging",
+ "repo": "Gagandeep-2003/driver-drowsiness-detection-system",
+ "level": "level2",
+ "points": 7,
+ "created_at": "2025-07-28T02:19:18Z",
+ "updated_at": "2025-07-29T06:50:55Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-29T06:50:55Z",
+ "author_url": "https://github.com/Deepak-Kumbhar2006",
+ "author_avatar": "https://avatars.githubusercontent.com/u/170030072?v=4"
+ },
+ {
+ "url": "https://github.com/Gagandeep-2003/driver-drowsiness-detection-system/pull/34",
+ "title": "Camera error and exception handled carefully",
+ "repo": "Gagandeep-2003/driver-drowsiness-detection-system",
+ "level": "level3",
+ "points": 10,
+ "created_at": "2025-07-26T21:09:06Z",
+ "updated_at": "2025-07-29T06:38:57Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-29T06:38:57Z",
+ "author_url": "https://github.com/Deepak-Kumbhar2006",
+ "author_avatar": "https://avatars.githubusercontent.com/u/170030072?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/170030072?v=4",
+ "profile_url": "https://github.com/Deepak-Kumbhar2006"
+ },
+ "varsharaodevaraj": {
+ "expectedPoints": 17,
+ "currentPoints": 17,
+ "levels": {
+ "level1": 0,
+ "level2": 1,
+ "level3": 1
+ },
+ "prs": [
+ {
+ "url": "https://github.com/Gagandeep-2003/driver-drowsiness-detection-system/pull/33",
+ "title": "Fix: Enhancements in main.py : Tkinter bugs, subprocess error handling, button colors",
+ "repo": "Gagandeep-2003/driver-drowsiness-detection-system",
+ "level": "level2",
+ "points": 7,
+ "created_at": "2025-07-26T21:02:10Z",
+ "updated_at": "2025-07-29T07:00:42Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-29T06:33:12Z",
+ "author_url": "https://github.com/varsharaodevaraj",
+ "author_avatar": "https://avatars.githubusercontent.com/u/211978854?v=4"
+ },
+ {
+ "url": "https://github.com/saumyayadav25/cpp-dsa-sheet-testing/pull/114",
+ "title": "Add time-based DSA quiz component with countdown and styling",
+ "repo": "saumyayadav25/cpp-dsa-sheet-testing",
+ "level": "level3",
+ "points": 10,
+ "created_at": "2025-07-31T19:39:43Z",
+ "updated_at": "2025-08-01T10:34:39Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-08-01T10:34:21Z",
+ "author_url": "https://github.com/varsharaodevaraj",
+ "author_avatar": "https://avatars.githubusercontent.com/u/211978854?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/211978854?v=4",
+ "profile_url": "https://github.com/varsharaodevaraj"
+ },
+ "dhairyagothi": {
+ "expectedPoints": 17,
+ "currentPoints": 17,
+ "levels": {
+ "level1": 0,
+ "level2": 1,
+ "level3": 1
+ },
+ "prs": [
+ {
+ "url": "https://github.com/saumyayadav25/cpp-dsa-sheet-testing/pull/46",
+ "title": "fixes change repoistort structuree",
+ "repo": "saumyayadav25/cpp-dsa-sheet-testing",
+ "level": "level3",
+ "points": 10,
+ "created_at": "2025-07-25T05:00:34Z",
+ "updated_at": "2025-07-25T05:40:18Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-25T05:02:54Z",
+ "author_url": "https://github.com/dhairyagothi",
+ "author_avatar": "https://avatars.githubusercontent.com/u/142989448?v=4"
+ },
+ {
+ "url": "https://github.com/souvikpramanikgit/LearnHub/pull/57",
+ "title": "added preloader",
+ "repo": "souvikpramanikgit/LearnHub",
+ "level": "level2",
+ "points": 7,
+ "created_at": "2025-07-23T16:48:42Z",
+ "updated_at": "2025-07-23T18:47:40Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-23T18:16:21Z",
+ "author_url": "https://github.com/dhairyagothi",
+ "author_avatar": "https://avatars.githubusercontent.com/u/142989448?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/142989448?v=4",
+ "profile_url": "https://github.com/dhairyagothi"
+ },
+ "LibanAnsari": {
+ "expectedPoints": 17,
+ "currentPoints": 17,
+ "levels": {
+ "level1": 0,
+ "level2": 1,
+ "level3": 1
+ },
+ "prs": [
+ {
+ "url": "https://github.com/SGCODEX/Music-Recommendation-Using-Facial-Expressions/pull/51",
+ "title": "Added demo.md",
+ "repo": "SGCODEX/Music-Recommendation-Using-Facial-Expressions",
+ "level": "level2",
+ "points": 7,
+ "created_at": "2025-07-24T14:19:50Z",
+ "updated_at": "2025-07-31T06:36:42Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-25T18:24:04Z",
+ "author_url": "https://github.com/LibanAnsari",
+ "author_avatar": "https://avatars.githubusercontent.com/u/174122745?v=4"
+ },
+ {
+ "url": "https://github.com/UTSAVS26/PyVerse/pull/1505",
+ "title": "Added AI Search Algorithms in DSA module",
+ "repo": "UTSAVS26/PyVerse",
+ "level": "level3",
+ "points": 10,
+ "created_at": "2025-07-27T17:50:47Z",
+ "updated_at": "2025-07-29T08:18:00Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-29T08:17:36Z",
+ "author_url": "https://github.com/LibanAnsari",
+ "author_avatar": "https://avatars.githubusercontent.com/u/174122745?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/174122745?v=4",
+ "profile_url": "https://github.com/LibanAnsari"
+ },
+ "mavishsethi": {
+ "expectedPoints": 17,
+ "currentPoints": 17,
+ "levels": {
+ "level1": 0,
+ "level2": 1,
+ "level3": 1
+ },
+ "prs": [
+ {
+ "url": "https://github.com/SurajSG23/PrepBuddy/pull/84",
+ "title": " Added bookmark notes feature",
+ "repo": "SurajSG23/PrepBuddy",
+ "level": "level3",
+ "points": 10,
+ "created_at": "2025-07-30T18:55:04Z",
+ "updated_at": "2025-07-31T10:28:44Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-31T02:34:11Z",
+ "author_url": "https://github.com/mavishsethi",
+ "author_avatar": "https://avatars.githubusercontent.com/u/181738613?v=4"
+ },
+ {
+ "url": "https://github.com/SurajSG23/PrepBuddy/pull/76",
+ "title": "added search bar functionality in notes section",
+ "repo": "SurajSG23/PrepBuddy",
+ "level": "level2",
+ "points": 7,
+ "created_at": "2025-07-29T19:50:37Z",
+ "updated_at": "2025-07-30T13:46:49Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-30T01:49:30Z",
+ "author_url": "https://github.com/mavishsethi",
+ "author_avatar": "https://avatars.githubusercontent.com/u/181738613?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/181738613?v=4",
+ "profile_url": "https://github.com/mavishsethi"
+ },
+ "swanith1234": {
+ "expectedPoints": 17,
+ "currentPoints": 17,
+ "levels": {
+ "level1": 0,
+ "level2": 1,
+ "level3": 1
+ },
+ "prs": [
+ {
+ "url": "https://github.com/openml-stack/SentiLog-AI/pull/102",
+ "title": " Add Swagger API Documentation for Backend Services",
+ "repo": "openml-stack/SentiLog-AI",
+ "level": "level2",
+ "points": 7,
+ "created_at": "2025-07-28T11:25:29Z",
+ "updated_at": "2025-07-30T05:48:30Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-30T05:00:50Z",
+ "author_url": "https://github.com/swanith1234",
+ "author_avatar": "https://avatars.githubusercontent.com/u/146310162?v=4"
+ },
+ {
+ "url": "https://github.com/openml-stack/SentiLog-AI/pull/77",
+ "title": "Build News Aggregation Service for SentiLog AI with ML Sentiment Integration",
+ "repo": "openml-stack/SentiLog-AI",
+ "level": "level3",
+ "points": 10,
+ "created_at": "2025-07-26T06:53:44Z",
+ "updated_at": "2025-07-27T10:40:44Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-27T10:03:15Z",
+ "author_url": "https://github.com/swanith1234",
+ "author_avatar": "https://avatars.githubusercontent.com/u/146310162?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/146310162?v=4",
+ "profile_url": "https://github.com/swanith1234"
+ },
+ "aryanguptacsvtu": {
+ "expectedPoints": 16,
+ "currentPoints": 16,
+ "levels": {
+ "level1": 4,
+ "level2": 0,
+ "level3": 0
+ },
+ "prs": [
+ {
+ "url": "https://github.com/Abhishek2634/Foodie/pull/140",
+ "title": "SECURITY.md",
+ "repo": "Abhishek2634/Foodie",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-27T15:03:51Z",
+ "updated_at": "2025-08-02T11:03:31Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-28T06:24:05Z",
+ "author_url": "https://github.com/aryanguptacsvtu",
+ "author_avatar": "https://avatars.githubusercontent.com/u/148983503?v=4"
+ },
+ {
+ "url": "https://github.com/Abhishek2634/Foodie/pull/139",
+ "title": "CODE_OF_CONDUCT.md",
+ "repo": "Abhishek2634/Foodie",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-27T14:55:27Z",
+ "updated_at": "2025-08-02T11:03:16Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-28T06:24:06Z",
+ "author_url": "https://github.com/aryanguptacsvtu",
+ "author_avatar": "https://avatars.githubusercontent.com/u/148983503?v=4"
+ },
+ {
+ "url": "https://github.com/Adarsh-Chaubey03/TravelGrid/pull/438",
+ "title": "SECURITY.md",
+ "repo": "Adarsh-Chaubey03/TravelGrid",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-08-01T14:07:15Z",
+ "updated_at": "2025-08-01T14:09:40Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-08-01T14:09:30Z",
+ "author_url": "https://github.com/aryanguptacsvtu",
+ "author_avatar": "https://avatars.githubusercontent.com/u/148983503?v=4"
+ },
+ {
+ "url": "https://github.com/PRIYANSHU2026/DataSentience-AIML/pull/282",
+ "title": "Update Security.md",
+ "repo": "PRIYANSHU2026/DataSentience-AIML",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-30T14:16:09Z",
+ "updated_at": "2025-07-31T08:20:56Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-31T08:18:47Z",
+ "author_url": "https://github.com/aryanguptacsvtu",
+ "author_avatar": "https://avatars.githubusercontent.com/u/148983503?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/148983503?v=4",
+ "profile_url": "https://github.com/aryanguptacsvtu"
+ },
+ "Samiksha-bajoria": {
+ "expectedPoints": 16,
+ "currentPoints": 16,
+ "levels": {
+ "level1": 4,
+ "level2": 0,
+ "level3": 0
+ },
+ "prs": [
+ {
+ "url": "https://github.com/itsAnimation/AnimateItNow/pull/399",
+ "title": "fixed the github icon near toggle button",
+ "repo": "itsAnimation/AnimateItNow",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-25T12:07:04Z",
+ "updated_at": "2025-07-25T12:25:38Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-25T12:25:38Z",
+ "author_url": "https://github.com/Samiksha-bajoria",
+ "author_avatar": "https://avatars.githubusercontent.com/u/191669201?v=4"
+ },
+ {
+ "url": "https://github.com/sampadatiwari30/DeshDarshan/pull/118",
+ "title": "added names of dance forms",
+ "repo": "sampadatiwari30/DeshDarshan",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-25T10:10:15Z",
+ "updated_at": "2025-07-25T10:24:09Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-25T10:18:03Z",
+ "author_url": "https://github.com/Samiksha-bajoria",
+ "author_avatar": "https://avatars.githubusercontent.com/u/191669201?v=4"
+ },
+ {
+ "url": "https://github.com/yashvikram30/legalease/pull/57",
+ "title": "fixed the text on signup page",
+ "repo": "yashvikram30/LegalEase",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-26T14:19:09Z",
+ "updated_at": "2025-07-28T13:07:02Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-27T06:49:49Z",
+ "author_url": "https://github.com/Samiksha-bajoria",
+ "author_avatar": "https://avatars.githubusercontent.com/u/191669201?v=4"
+ },
+ {
+ "url": "https://github.com/yuvrajsinghgmx/ShopSmart/pull/303",
+ "title": "Added Issue Template",
+ "repo": "yuvrajsinghgmx/ShopSmart",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-25T13:40:22Z",
+ "updated_at": "2025-07-26T20:46:34Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-26T20:46:01Z",
+ "author_url": "https://github.com/Samiksha-bajoria",
+ "author_avatar": "https://avatars.githubusercontent.com/u/191669201?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/191669201?v=4",
+ "profile_url": "https://github.com/Samiksha-bajoria"
+ },
+ "EammenShaik": {
+ "expectedPoints": 20,
+ "currentPoints": 20,
+ "levels": {
+ "level1": 5,
+ "level2": 0,
+ "level3": 0
+ },
+ "prs": [
+ {
+ "url": "https://github.com/Ayushjhawar8/Flavor-ai/pull/114",
+ "title": "Create CODE_OF_CONDUCT.md",
+ "repo": "Ayushjhawar8/Flavor-ai",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-29T17:03:32Z",
+ "updated_at": "2025-08-01T14:48:27Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-30T13:34:53Z",
+ "author_url": "https://github.com/EammenShaik",
+ "author_avatar": "https://avatars.githubusercontent.com/u/200224775?v=4"
+ },
+ {
+ "url": "https://github.com/Dnyaneshpise/skywatch_alerts/pull/40",
+ "title": "Create CODE_OF_CONDUCT.md",
+ "repo": "Dnyaneshpise/skywatch_alerts",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-29T17:14:31Z",
+ "updated_at": "2025-07-29T20:36:42Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-29T20:36:42Z",
+ "author_url": "https://github.com/EammenShaik",
+ "author_avatar": "https://avatars.githubusercontent.com/u/200224775?v=4"
+ },
+ {
+ "url": "https://github.com/Gagandeep-2003/driver-drowsiness-detection-system/pull/59",
+ "title": "Create CODE_OF_CONDUCT.md",
+ "repo": "Gagandeep-2003/driver-drowsiness-detection-system",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-31T17:56:13Z",
+ "updated_at": "2025-08-01T04:04:24Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-08-01T04:04:24Z",
+ "author_url": "https://github.com/EammenShaik",
+ "author_avatar": "https://avatars.githubusercontent.com/u/200224775?v=4"
+ },
+ {
+ "url": "https://github.com/VAIBHAVBABELE/vaibhavbabele.github.io/pull/55",
+ "title": "Create LICENSE",
+ "repo": "VAIBHAVBABELE/vaibhavbabele.github.io",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-24T06:05:52Z",
+ "updated_at": "2025-07-24T07:13:52Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-24T07:13:13Z",
+ "author_url": "https://github.com/EammenShaik",
+ "author_avatar": "https://avatars.githubusercontent.com/u/200224775?v=4"
+ },
+ {
+ "url": "https://github.com/AshiTomar210/Euphoric-2025/pull/17",
+ "title": "Create LICENSE",
+ "repo": "AshiTomar210/Euphoric-2025",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-29T17:20:03Z",
+ "updated_at": "2025-07-30T06:30:40Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-30T06:30:00Z",
+ "author_url": "https://github.com/EammenShaik",
+ "author_avatar": "https://avatars.githubusercontent.com/u/200224775?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/200224775?v=4",
+ "profile_url": "https://github.com/EammenShaik"
+ },
+ "piyushhvarma": {
+ "expectedPoints": 16,
+ "currentPoints": 16,
+ "levels": {
+ "level1": 4,
+ "level2": 0,
+ "level3": 0
+ },
+ "prs": [
+ {
+ "url": "https://github.com/Kritika75/TheCawnporeMag.github.io/pull/177",
+ "title": "## 🔧 Fix: Improved Navbar Visibility in `about.html`",
+ "repo": "Kritika75/TheCawnporeMag.github.io",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-26T16:31:59Z",
+ "updated_at": "2025-07-27T13:47:03Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-27T03:04:28Z",
+ "author_url": "https://github.com/piyushhvarma",
+ "author_avatar": "https://avatars.githubusercontent.com/u/145499294?v=4"
+ },
+ {
+ "url": "https://github.com/Kritika75/TheCawnporeMag.github.io/pull/148",
+ "title": "Fix: Styled Newsletter Section in About Page (about.css)",
+ "repo": "Kritika75/TheCawnporeMag.github.io",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-26T08:04:02Z",
+ "updated_at": "2025-07-26T08:21:29Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-26T08:21:29Z",
+ "author_url": "https://github.com/piyushhvarma",
+ "author_avatar": "https://avatars.githubusercontent.com/u/145499294?v=4"
+ },
+ {
+ "url": "https://github.com/sampadatiwari30/DeshDarshan/pull/140",
+ "title": "Fix: Removed Unwanted White Line Below Footer in About Us Page",
+ "repo": "sampadatiwari30/DeshDarshan",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-26T08:40:35Z",
+ "updated_at": "2025-07-26T10:15:44Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-26T10:14:23Z",
+ "author_url": "https://github.com/piyushhvarma",
+ "author_avatar": "https://avatars.githubusercontent.com/u/145499294?v=4"
+ },
+ {
+ "url": "https://github.com/VAIBHAVBABELE/vaibhavbabele.github.io/pull/146",
+ "title": "FIX : Poor Visibility of Headings in Services Section (Dark Mode) #133",
+ "repo": "VAIBHAVBABELE/vaibhavbabele.github.io",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-27T09:30:49Z",
+ "updated_at": "2025-07-31T17:06:42Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-29T14:28:25Z",
+ "author_url": "https://github.com/piyushhvarma",
+ "author_avatar": "https://avatars.githubusercontent.com/u/145499294?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/145499294?v=4",
+ "profile_url": "https://github.com/piyushhvarma"
+ },
+ "bhushan-2422": {
+ "expectedPoints": 15,
+ "currentPoints": 15,
+ "levels": {
+ "level1": 2,
+ "level2": 1,
+ "level3": 0
+ },
+ "prs": [
+ {
+ "url": "https://github.com/Adarsh-Chaubey03/TravelGrid/pull/399",
+ "title": "[UI] Enhance Legend Text Contrast in Trip Expense Pie Chart",
+ "repo": "Adarsh-Chaubey03/TravelGrid",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-31T13:32:11Z",
+ "updated_at": "2025-07-31T13:44:42Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-31T13:44:30Z",
+ "author_url": "https://github.com/bhushan-2422",
+ "author_avatar": "https://avatars.githubusercontent.com/u/190208276?v=4"
+ },
+ {
+ "url": "https://github.com/Adarsh-Chaubey03/TravelGrid/pull/336",
+ "title": "Reduce excessive blank space on Trip Expense Calculator page",
+ "repo": "Adarsh-Chaubey03/TravelGrid",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-29T13:21:47Z",
+ "updated_at": "2025-07-30T04:00:47Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-30T04:00:39Z",
+ "author_url": "https://github.com/bhushan-2422",
+ "author_avatar": "https://avatars.githubusercontent.com/u/190208276?v=4"
+ },
+ {
+ "url": "https://github.com/Adarsh-Chaubey03/TravelGrid/pull/157",
+ "title": "Add Forgot Password Functionality and Fix Multiple Syntax/Import Issues",
+ "repo": "Adarsh-Chaubey03/TravelGrid",
+ "level": "level2",
+ "points": 7,
+ "created_at": "2025-07-24T15:33:08Z",
+ "updated_at": "2025-07-25T06:23:10Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-25T06:22:54Z",
+ "author_url": "https://github.com/bhushan-2422",
+ "author_avatar": "https://avatars.githubusercontent.com/u/190208276?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/190208276?v=4",
+ "profile_url": "https://github.com/bhushan-2422"
+ },
+ "DikshaSingh-9720": {
+ "expectedPoints": 15,
+ "currentPoints": 15,
+ "levels": {
+ "level1": 2,
+ "level2": 1,
+ "level3": 0
+ },
+ "prs": [
+ {
+ "url": "https://github.com/Adarsh-Chaubey03/TravelGrid/pull/311",
+ "title": "Fix: Signup/Login validation and JWT handling",
+ "repo": "Adarsh-Chaubey03/TravelGrid",
+ "level": "level2",
+ "points": 7,
+ "created_at": "2025-07-28T19:59:51Z",
+ "updated_at": "2025-07-29T10:51:35Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-29T10:49:50Z",
+ "author_url": "https://github.com/DikshaSingh-9720",
+ "author_avatar": "https://avatars.githubusercontent.com/u/178545812?v=4"
+ },
+ {
+ "url": "https://github.com/agamjotsingh18/trendhora/pull/25",
+ "title": "[GSSoC] enahance the ui of the navbar menu section links",
+ "repo": "agamjotsingh18/trendhora",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-26T17:08:25Z",
+ "updated_at": "2025-07-30T16:23:17Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-30T16:23:17Z",
+ "author_url": "https://github.com/DikshaSingh-9720",
+ "author_avatar": "https://avatars.githubusercontent.com/u/178545812?v=4"
+ },
+ {
+ "url": "https://github.com/agamjotsingh18/trendhora/pull/24",
+ "title": "[GSSoC] Added logo for Trendhora e-commerce site",
+ "repo": "agamjotsingh18/trendhora",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-26T12:23:10Z",
+ "updated_at": "2025-07-29T12:17:34Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-29T11:57:40Z",
+ "author_url": "https://github.com/DikshaSingh-9720",
+ "author_avatar": "https://avatars.githubusercontent.com/u/178545812?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/178545812?v=4",
+ "profile_url": "https://github.com/DikshaSingh-9720"
+ },
+ "vinitjain2005": {
+ "expectedPoints": 15,
+ "currentPoints": 15,
+ "levels": {
+ "level1": 2,
+ "level2": 1,
+ "level3": 0
+ },
+ "prs": [
+ {
+ "url": "https://github.com/Adarsh-Chaubey03/TravelGrid/pull/284",
+ "title": "fix: made Travel Guides heading responsive and visible on all screen …",
+ "repo": "Adarsh-Chaubey03/TravelGrid",
+ "level": "level2",
+ "points": 7,
+ "created_at": "2025-07-28T13:41:09Z",
+ "updated_at": "2025-07-29T02:29:21Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-28T17:32:00Z",
+ "author_url": "https://github.com/vinitjain2005",
+ "author_avatar": "https://avatars.githubusercontent.com/u/161056675?v=4"
+ },
+ {
+ "url": "https://github.com/rahulkhandait-sde/cineverse/pull/38",
+ "title": "added the footer for copyright",
+ "repo": "rahulkhandait-sde/movie-search",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-08-02T13:12:14Z",
+ "updated_at": "2025-08-02T13:47:06Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-08-02T13:46:47Z",
+ "author_url": "https://github.com/vinitjain2005",
+ "author_avatar": "https://avatars.githubusercontent.com/u/161056675?v=4"
+ },
+ {
+ "url": "https://github.com/saumyayadav25/cpp-dsa-sheet-testing/pull/72",
+ "title": "docs: added MIT license to README",
+ "repo": "saumyayadav25/cpp-dsa-sheet-testing",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-27T02:39:36Z",
+ "updated_at": "2025-07-27T03:00:52Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-27T03:00:52Z",
+ "author_url": "https://github.com/vinitjain2005",
+ "author_avatar": "https://avatars.githubusercontent.com/u/161056675?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/161056675?v=4",
+ "profile_url": "https://github.com/vinitjain2005"
+ },
+ "Prabhatsingh001": {
+ "expectedPoints": 15,
+ "currentPoints": 15,
+ "levels": {
+ "level1": 2,
+ "level2": 1,
+ "level3": 0
+ },
+ "prs": [
+ {
+ "url": "https://github.com/Adarsh-Chaubey03/TravelGrid/pull/274",
+ "title": "discover more page created and routes configured",
+ "repo": "Adarsh-Chaubey03/TravelGrid",
+ "level": "level2",
+ "points": 7,
+ "created_at": "2025-07-28T12:17:49Z",
+ "updated_at": "2025-07-28T12:24:36Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-28T12:24:22Z",
+ "author_url": "https://github.com/Prabhatsingh001",
+ "author_avatar": "https://avatars.githubusercontent.com/u/87269080?v=4"
+ },
+ {
+ "url": "https://github.com/GauravKarakoti/Weather-API/pull/184",
+ "title": "add visual feedback for clear btn",
+ "repo": "GauravKarakoti/Weather-API",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-24T18:45:35Z",
+ "updated_at": "2025-07-24T20:28:06Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-24T20:27:26Z",
+ "author_url": "https://github.com/Prabhatsingh001",
+ "author_avatar": "https://avatars.githubusercontent.com/u/87269080?v=4"
+ },
+ {
+ "url": "https://github.com/GauravKarakoti/Weather-API/pull/167",
+ "title": "inconsistent error handling solved",
+ "repo": "GauravKarakoti/Weather-API",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-22T09:05:54Z",
+ "updated_at": "2025-07-22T10:07:18Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-22T10:07:17Z",
+ "author_url": "https://github.com/Prabhatsingh001",
+ "author_avatar": "https://avatars.githubusercontent.com/u/87269080?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/87269080?v=4",
+ "profile_url": "https://github.com/Prabhatsingh001"
+ },
+ "bhavy1204": {
+ "expectedPoints": 15,
+ "currentPoints": 15,
+ "levels": {
+ "level1": 2,
+ "level2": 1,
+ "level3": 0
+ },
+ "prs": [
+ {
+ "url": "https://github.com/Adarsh-Chaubey03/TravelGrid/pull/202",
+ "title": "fix: duplicate footer in ticket page and stop tracking node modules",
+ "repo": "Adarsh-Chaubey03/TravelGrid",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-26T06:55:04Z",
+ "updated_at": "2025-07-26T14:48:27Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-26T14:48:27Z",
+ "author_url": "https://github.com/bhavy1204",
+ "author_avatar": "https://avatars.githubusercontent.com/u/170434661?v=4"
+ },
+ {
+ "url": "https://github.com/adityagarwal15/JobSync/pull/36",
+ "title": "fix scrollbar styling",
+ "repo": "adityagarwal15/JobSync",
+ "level": null,
+ "points": 0,
+ "created_at": "2025-07-23T06:48:21Z",
+ "updated_at": "2025-07-23T06:59:48Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-23T06:59:47Z",
+ "author_url": "https://github.com/bhavy1204",
+ "author_avatar": "https://avatars.githubusercontent.com/u/170434661?v=4"
+ },
+ {
+ "url": "https://github.com/agamjotsingh18/trendhora/pull/43",
+ "title": "Feat/enchancing footer",
+ "repo": "agamjotsingh18/trendhora",
+ "level": "level2",
+ "points": 7,
+ "created_at": "2025-07-28T14:46:27Z",
+ "updated_at": "2025-07-29T11:53:34Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-29T06:04:04Z",
+ "author_url": "https://github.com/bhavy1204",
+ "author_avatar": "https://avatars.githubusercontent.com/u/170434661?v=4"
+ },
+ {
+ "url": "https://github.com/AyushSharma72/Skill_Trade/pull/15",
+ "title": "Add space between footer and body of contact page",
+ "repo": "AyushSharma72/Skill_Trade",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-23T05:03:48Z",
+ "updated_at": "2025-07-23T08:18:42Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-23T05:25:03Z",
+ "author_url": "https://github.com/bhavy1204",
+ "author_avatar": "https://avatars.githubusercontent.com/u/170434661?v=4"
+ },
+ {
+ "url": "https://github.com/SyedImtiyaz-1/Swapify/pull/11",
+ "title": "fix: improved dark mode text visibility in search box , added .gitignore",
+ "repo": "SyedImtiyaz-1/Swapify",
+ "level": null,
+ "points": 0,
+ "created_at": "2025-07-25T06:27:19Z",
+ "updated_at": "2025-07-26T06:47:13Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-26T06:46:44Z",
+ "author_url": "https://github.com/bhavy1204",
+ "author_avatar": "https://avatars.githubusercontent.com/u/170434661?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/170434661?v=4",
+ "profile_url": "https://github.com/bhavy1204"
+ },
+ "AzharAliCodes": {
+ "expectedPoints": 15,
+ "currentPoints": 15,
+ "levels": {
+ "level1": 2,
+ "level2": 1,
+ "level3": 0
+ },
+ "prs": [
+ {
+ "url": "https://github.com/Adarsh-Chaubey03/TravelGrid/pull/166",
+ "title": "Fix: Footer quick links throwing 404 (#151)",
+ "repo": "Adarsh-Chaubey03/TravelGrid",
+ "level": "level2",
+ "points": 7,
+ "created_at": "2025-07-25T06:44:35Z",
+ "updated_at": "2025-07-26T01:32:42Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-26T01:32:42Z",
+ "author_url": "https://github.com/AzharAliCodes",
+ "author_avatar": "https://avatars.githubusercontent.com/u/185868842?v=4"
+ },
+ {
+ "url": "https://github.com/agamjotsingh18/trendhora/pull/14",
+ "title": "Fix: Resolve navigation issues in mobile drawer menu (#11)",
+ "repo": "agamjotsingh18/trendhora",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-24T08:56:56Z",
+ "updated_at": "2025-07-25T06:17:58Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-25T06:17:35Z",
+ "author_url": "https://github.com/AzharAliCodes",
+ "author_avatar": "https://avatars.githubusercontent.com/u/185868842?v=4"
+ },
+ {
+ "url": "https://github.com/Bavanetha27/Refixly/pull/40",
+ "title": "Fix: Footer incorrectly displayed on Login and Register pages (#26)",
+ "repo": "Bavanetha27/Refixly",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-28T06:41:13Z",
+ "updated_at": "2025-08-01T10:49:19Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-29T09:39:36Z",
+ "author_url": "https://github.com/AzharAliCodes",
+ "author_avatar": "https://avatars.githubusercontent.com/u/185868842?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/185868842?v=4",
+ "profile_url": "https://github.com/AzharAliCodes"
+ },
+ "RoushanSri": {
+ "expectedPoints": 15,
+ "currentPoints": 15,
+ "levels": {
+ "level1": 2,
+ "level2": 1,
+ "level3": 0
+ },
+ "prs": [
+ {
+ "url": "https://github.com/Amarjha01/InfantCareCompass/pull/102",
+ "title": "fix: scroll position now resets on route change",
+ "repo": "Amarjha01/InfantCareCompass",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-25T19:53:33Z",
+ "updated_at": "2025-07-26T18:13:30Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-25T22:42:32Z",
+ "author_url": "https://github.com/RoushanSri",
+ "author_avatar": "https://avatars.githubusercontent.com/u/155170711?v=4"
+ },
+ {
+ "url": "https://github.com/nishantharkut/W3nity/pull/40",
+ "title": "fix: Scroll To Top on Route Change",
+ "repo": "nishantharkut/W3nity",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-28T19:14:04Z",
+ "updated_at": "2025-07-31T18:41:20Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-31T18:41:20Z",
+ "author_url": "https://github.com/RoushanSri",
+ "author_avatar": "https://avatars.githubusercontent.com/u/155170711?v=4"
+ },
+ {
+ "url": "https://github.com/NishantRana07/HrRoadways/pull/403",
+ "title": "fix: scroll position now resets on route change",
+ "repo": "NishantRana07/HrRoadways",
+ "level": "level2",
+ "points": 7,
+ "created_at": "2025-07-27T11:14:47Z",
+ "updated_at": "2025-07-29T19:03:33Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-29T19:03:33Z",
+ "author_url": "https://github.com/RoushanSri",
+ "author_avatar": "https://avatars.githubusercontent.com/u/155170711?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/155170711?v=4",
+ "profile_url": "https://github.com/RoushanSri"
+ },
+ "snehhhcodes": {
+ "expectedPoints": 15,
+ "currentPoints": 15,
+ "levels": {
+ "level1": 2,
+ "level2": 1,
+ "level3": 0
+ },
+ "prs": [
+ {
+ "url": "https://github.com/itsAnimation/AnimateItNow/pull/600",
+ "title": "[PR] [Feature]: Add Real-Time Code Editor to Try Animation Templates",
+ "repo": "itsAnimation/AnimateItNow",
+ "level": "level2",
+ "points": 7,
+ "created_at": "2025-07-28T14:36:43Z",
+ "updated_at": "2025-07-28T19:16:29Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-28T19:16:29Z",
+ "author_url": "https://github.com/snehhhcodes",
+ "author_avatar": "https://avatars.githubusercontent.com/u/169922226?v=4"
+ },
+ {
+ "url": "https://github.com/pavitraag/Project-Vault/pull/41",
+ "title": "[PR] Created and Linked Functional FAQ Page from Navigation Menu ",
+ "repo": "pavitraag/Project-Vault",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-24T07:28:45Z",
+ "updated_at": "2025-07-29T18:27:05Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-24T07:43:28Z",
+ "author_url": "https://github.com/snehhhcodes",
+ "author_avatar": "https://avatars.githubusercontent.com/u/169922226?v=4"
+ },
+ {
+ "url": "https://github.com/rutikakengal/100DAYS_OF_100WEBPROJECTS/pull/345",
+ "title": "[PR] Minimal Pastel Pomodoro Timer ",
+ "repo": "rutikakengal/100DAYS_OF_100WEBPROJECTS",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-29T14:50:13Z",
+ "updated_at": "2025-07-29T15:01:36Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-29T15:01:11Z",
+ "author_url": "https://github.com/snehhhcodes",
+ "author_avatar": "https://avatars.githubusercontent.com/u/169922226?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/169922226?v=4",
+ "profile_url": "https://github.com/snehhhcodes"
+ },
+ "AashiGarg-tech": {
+ "expectedPoints": 15,
+ "currentPoints": 15,
+ "levels": {
+ "level1": 2,
+ "level2": 1,
+ "level3": 0
+ },
+ "prs": [
+ {
+ "url": "https://github.com/itsAnimation/AnimateItNow/pull/411",
+ "title": "Fix contact form submission behaviour and enhance submit button UI",
+ "repo": "itsAnimation/AnimateItNow",
+ "level": "level2",
+ "points": 7,
+ "created_at": "2025-07-25T14:23:28Z",
+ "updated_at": "2025-07-25T14:27:43Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-25T14:27:42Z",
+ "author_url": "https://github.com/AashiGarg-tech",
+ "author_avatar": "https://avatars.githubusercontent.com/u/180312413?v=4"
+ },
+ {
+ "url": "https://github.com/Kritika75/TheCawnporeMag.github.io/pull/167",
+ "title": "Fix subscribe success message not disappearing and enhanced UI",
+ "repo": "Kritika75/TheCawnporeMag.github.io",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-26T15:34:16Z",
+ "updated_at": "2025-07-27T06:01:07Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-27T06:01:07Z",
+ "author_url": "https://github.com/AashiGarg-tech",
+ "author_avatar": "https://avatars.githubusercontent.com/u/180312413?v=4"
+ },
+ {
+ "url": "https://github.com/Kritika75/TheCawnporeMag.github.io/pull/140",
+ "title": "fix: prevent navigation links from opening in new tabs",
+ "repo": "Kritika75/TheCawnporeMag.github.io",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-25T19:06:15Z",
+ "updated_at": "2025-07-26T15:35:53Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-26T03:32:13Z",
+ "author_url": "https://github.com/AashiGarg-tech",
+ "author_avatar": "https://avatars.githubusercontent.com/u/180312413?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/180312413?v=4",
+ "profile_url": "https://github.com/AashiGarg-tech"
+ },
+ "navyasreeb04": {
+ "expectedPoints": 19,
+ "currentPoints": 15,
+ "levels": {
+ "level1": 3,
+ "level2": 1,
+ "level3": 0
+ },
+ "prs": [
+ {
+ "url": "https://github.com/InnoWebLabs/Vehigo/pull/167",
+ "title": "Added nav-bar to the about us page and enahnced texts in the meet our team section of that page",
+ "repo": "InnoWebLabs/Vehigo",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-28T17:07:57Z",
+ "updated_at": "2025-07-29T02:11:36Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-29T02:11:36Z",
+ "author_url": "https://github.com/navyasreeb04",
+ "author_avatar": "https://avatars.githubusercontent.com/u/221933481?v=4"
+ },
+ {
+ "url": "https://github.com/InnoWebLabs/Vehigo/pull/166",
+ "title": "Improved functionality of nav-bar in the Rent Our Car page",
+ "repo": "InnoWebLabs/Vehigo",
+ "level": "level2",
+ "points": 7,
+ "created_at": "2025-07-28T16:21:27Z",
+ "updated_at": "2025-07-28T16:44:48Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-28T16:44:47Z",
+ "author_url": "https://github.com/navyasreeb04",
+ "author_avatar": "https://avatars.githubusercontent.com/u/221933481?v=4"
+ },
+ {
+ "url": "https://github.com/pavitraag/Project-Vault/pull/224",
+ "title": "feat: add Apple touch icon and web app manifest for mobile support",
+ "repo": "pavitraag/Project-Vault",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-31T06:19:04Z",
+ "updated_at": "2025-08-03T02:19:44Z",
+ "state": "open",
+ "merged": false,
+ "merged_at": null,
+ "author_url": "https://github.com/navyasreeb04",
+ "author_avatar": "https://avatars.githubusercontent.com/u/221933481?v=4"
+ },
+ {
+ "url": "https://github.com/pavitraag/Project-Vault/pull/171",
+ "title": "Made the components Section of navbar visible",
+ "repo": "pavitraag/Project-Vault",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-29T05:56:32Z",
+ "updated_at": "2025-07-29T18:47:10Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-29T13:59:15Z",
+ "author_url": "https://github.com/navyasreeb04",
+ "author_avatar": "https://avatars.githubusercontent.com/u/221933481?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/221933481?v=4",
+ "profile_url": "https://github.com/navyasreeb04"
+ },
+ "tchandok30": {
+ "expectedPoints": 15,
+ "currentPoints": 15,
+ "levels": {
+ "level1": 2,
+ "level2": 1,
+ "level3": 0
+ },
+ "prs": [
+ {
+ "url": "https://github.com/InnoWebLabs/Vehigo/pull/56",
+ "title": "Fix: Improved ui",
+ "repo": "InnoWebLabs/Vehigo",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-24T16:47:35Z",
+ "updated_at": "2025-07-25T20:25:15Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-24T17:46:26Z",
+ "author_url": "https://github.com/tchandok30",
+ "author_avatar": "https://avatars.githubusercontent.com/u/197084838?v=4"
+ },
+ {
+ "url": "https://github.com/Gnanaashritha/Blogging-Platform-/pull/30",
+ "title": "Added toggle button [Issue #25]",
+ "repo": "Gnanaashritha/Blogging-Platform-",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-26T17:37:08Z",
+ "updated_at": "2025-07-27T19:13:51Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-27T19:13:51Z",
+ "author_url": "https://github.com/tchandok30",
+ "author_avatar": "https://avatars.githubusercontent.com/u/197084838?v=4"
+ },
+ {
+ "url": "https://github.com/OpenTekHub/otploginfrontend/pull/11",
+ "title": "Design idea[Issue #102]",
+ "repo": "OpenTekHub/otploginfrontend",
+ "level": "level2",
+ "points": 7,
+ "created_at": "2025-07-25T17:41:08Z",
+ "updated_at": "2025-07-26T12:04:59Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-26T12:04:59Z",
+ "author_url": "https://github.com/tchandok30",
+ "author_avatar": "https://avatars.githubusercontent.com/u/197084838?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/197084838?v=4",
+ "profile_url": "https://github.com/tchandok30"
+ },
+ "mansha-02": {
+ "expectedPoints": 15,
+ "currentPoints": 15,
+ "levels": {
+ "level1": 2,
+ "level2": 1,
+ "level3": 0
+ },
+ "prs": [
+ {
+ "url": "https://github.com/AyushSharma72/Skill_Trade/pull/80",
+ "title": "Added CONTRIBUTING.md file",
+ "repo": "AyushSharma72/Skill_Trade",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-30T11:36:30Z",
+ "updated_at": "2025-07-30T17:24:56Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-30T17:24:56Z",
+ "author_url": "https://github.com/mansha-02",
+ "author_avatar": "https://avatars.githubusercontent.com/u/183415945?v=4"
+ },
+ {
+ "url": "https://github.com/Mujtabaa07/coffeeShop/pull/482",
+ "title": "Added Password Validation & Toast Notification",
+ "repo": "Mujtabaa07/coffeeShop",
+ "level": null,
+ "points": 0,
+ "created_at": "2025-07-28T16:05:36Z",
+ "updated_at": "2025-08-02T19:12:32Z",
+ "state": "open",
+ "merged": false,
+ "merged_at": null,
+ "author_url": "https://github.com/mansha-02",
+ "author_avatar": "https://avatars.githubusercontent.com/u/183415945?v=4"
+ },
+ {
+ "url": "https://github.com/ruchikakengal/WebDevIn100_Days/pull/286",
+ "title": "✨ Added Day 22 project : Color Palette Generator",
+ "repo": "ruchikakengal/WebDevIn100_Days",
+ "level": "level2",
+ "points": 7,
+ "created_at": "2025-07-25T08:16:12Z",
+ "updated_at": "2025-07-25T13:52:27Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-25T13:52:27Z",
+ "author_url": "https://github.com/mansha-02",
+ "author_avatar": "https://avatars.githubusercontent.com/u/183415945?v=4"
+ },
+ {
+ "url": "https://github.com/Agarwalvidu/ArdhNaariShakti_Taara_Frontend/pull/23",
+ "title": "Added Toast Notifications for Login, Registration, and Logout",
+ "repo": "Agarwalvidu/ArdhNaariShakti_Taara_Frontend",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-24T19:50:03Z",
+ "updated_at": "2025-07-29T03:22:47Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-28T19:40:06Z",
+ "author_url": "https://github.com/mansha-02",
+ "author_avatar": "https://avatars.githubusercontent.com/u/183415945?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/183415945?v=4",
+ "profile_url": "https://github.com/mansha-02"
+ },
+ "saishmungase": {
+ "expectedPoints": 15,
+ "currentPoints": 15,
+ "levels": {
+ "level1": 2,
+ "level2": 1,
+ "level3": 0
+ },
+ "prs": [
+ {
+ "url": "https://github.com/AyushSharma72/Skill_Trade/pull/42",
+ "title": "Fix : Default Placeholder added for Missing Request Image",
+ "repo": "AyushSharma72/Skill_Trade",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-25T13:29:49Z",
+ "updated_at": "2025-07-25T15:57:59Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-25T15:57:59Z",
+ "author_url": "https://github.com/saishmungase",
+ "author_avatar": "https://avatars.githubusercontent.com/u/147045067?v=4"
+ },
+ {
+ "url": "https://github.com/AyushSharma72/Skill_Trade/pull/35",
+ "title": "Fix: Default avatar display issue",
+ "repo": "AyushSharma72/Skill_Trade",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-24T15:21:09Z",
+ "updated_at": "2025-07-24T17:45:13Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-24T17:44:55Z",
+ "author_url": "https://github.com/saishmungase",
+ "author_avatar": "https://avatars.githubusercontent.com/u/147045067?v=4"
+ },
+ {
+ "url": "https://github.com/Dhruvi-tech/firebase-chat-app/pull/29",
+ "title": "Fix Auth Error UI",
+ "repo": "Dhruvi-tech/firebase-chat-app",
+ "level": "level2",
+ "points": 7,
+ "created_at": "2025-08-01T17:36:30Z",
+ "updated_at": "2025-08-02T10:35:48Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-08-02T10:35:48Z",
+ "author_url": "https://github.com/saishmungase",
+ "author_avatar": "https://avatars.githubusercontent.com/u/147045067?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/147045067?v=4",
+ "profile_url": "https://github.com/saishmungase"
+ },
+ "sabaaa01": {
+ "expectedPoints": 15,
+ "currentPoints": 15,
+ "levels": {
+ "level1": 2,
+ "level2": 1,
+ "level3": 0
+ },
+ "prs": [
+ {
+ "url": "https://github.com/Bavanetha27/Refixly/pull/38",
+ "title": "Navigation Bar link bug fix and addition of pages ",
+ "repo": "Bavanetha27/Refixly",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-27T18:36:34Z",
+ "updated_at": "2025-08-01T10:49:47Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-29T13:04:06Z",
+ "author_url": "https://github.com/sabaaa01",
+ "author_avatar": "https://avatars.githubusercontent.com/u/169584720?v=4"
+ },
+ {
+ "url": "https://github.com/rutikakengal/100DAYS_OF_100WEBPROJECTS/pull/232",
+ "title": "Added the nasa astronomy picture of the day project ",
+ "repo": "rutikakengal/100DAYS_OF_100WEBPROJECTS",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-26T19:09:54Z",
+ "updated_at": "2025-07-27T16:23:41Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-27T15:46:59Z",
+ "author_url": "https://github.com/sabaaa01",
+ "author_avatar": "https://avatars.githubusercontent.com/u/169584720?v=4"
+ },
+ {
+ "url": "https://github.com/VAIBHAVBABELE/vaibhavbabele.github.io/pull/89",
+ "title": "Fixed Games Page 404 Error | Added 4 Functional Games | Enhanced Routing and UI Consistency",
+ "repo": "VAIBHAVBABELE/vaibhavbabele.github.io",
+ "level": "level2",
+ "points": 7,
+ "created_at": "2025-07-24T19:55:43Z",
+ "updated_at": "2025-07-25T11:31:47Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-25T10:36:11Z",
+ "author_url": "https://github.com/sabaaa01",
+ "author_avatar": "https://avatars.githubusercontent.com/u/169584720?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/169584720?v=4",
+ "profile_url": "https://github.com/sabaaa01"
+ },
+ "ojha13291": {
+ "expectedPoints": 15,
+ "currentPoints": 15,
+ "levels": {
+ "level1": 2,
+ "level2": 1,
+ "level3": 0
+ },
+ "prs": [
+ {
+ "url": "https://github.com/GauravKarakoti/Weather-API/pull/208",
+ "title": "fix(security): Sanitize weather data to prevent XSS",
+ "repo": "GauravKarakoti/Weather-API",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-28T15:45:36Z",
+ "updated_at": "2025-07-29T03:17:34Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-29T03:17:34Z",
+ "author_url": "https://github.com/ojha13291",
+ "author_avatar": "https://avatars.githubusercontent.com/u/57131300?v=4"
+ },
+ {
+ "url": "https://github.com/GauravKarakoti/Weather-API/pull/206",
+ "title": "feat: Update CI workflows",
+ "repo": "GauravKarakoti/Weather-API",
+ "level": "level2",
+ "points": 7,
+ "created_at": "2025-07-28T15:05:46Z",
+ "updated_at": "2025-07-29T05:08:41Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-29T05:08:20Z",
+ "author_url": "https://github.com/ojha13291",
+ "author_avatar": "https://avatars.githubusercontent.com/u/57131300?v=4"
+ },
+ {
+ "url": "https://github.com/GauravKarakoti/Weather-API/pull/201",
+ "title": "fix: improve UI responsiveness on smaller devices",
+ "repo": "GauravKarakoti/Weather-API",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-28T13:55:06Z",
+ "updated_at": "2025-07-28T14:04:35Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-28T13:57:21Z",
+ "author_url": "https://github.com/ojha13291",
+ "author_avatar": "https://avatars.githubusercontent.com/u/57131300?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/57131300?v=4",
+ "profile_url": "https://github.com/ojha13291"
+ },
+ "SharanyaAchanta": {
+ "expectedPoints": 15,
+ "currentPoints": 15,
+ "levels": {
+ "level1": 2,
+ "level2": 1,
+ "level3": 0
+ },
+ "prs": [
+ {
+ "url": "https://github.com/GauravKarakoti/Weather-API/pull/169",
+ "title": "Improved ARIA attributes",
+ "repo": "GauravKarakoti/Weather-API",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-23T05:49:41Z",
+ "updated_at": "2025-07-27T06:41:53Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-27T06:41:53Z",
+ "author_url": "https://github.com/SharanyaAchanta",
+ "author_avatar": "https://avatars.githubusercontent.com/u/155161347?v=4"
+ },
+ {
+ "url": "https://github.com/ProTecGames/Karbon/pull/17",
+ "title": "Added keyboard shortcuts",
+ "repo": "ProTecGames/Karbon",
+ "level": null,
+ "points": 0,
+ "created_at": "2025-07-22T10:20:43Z",
+ "updated_at": "2025-07-24T10:29:13Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-22T12:06:23Z",
+ "author_url": "https://github.com/SharanyaAchanta",
+ "author_avatar": "https://avatars.githubusercontent.com/u/155161347?v=4"
+ },
+ {
+ "url": "https://github.com/eccentriccoder01/TalkHeal/pull/58",
+ "title": "Added breathing exercise to components folder",
+ "repo": "eccentriccoder01/TalkHeal",
+ "level": "level2",
+ "points": 7,
+ "created_at": "2025-07-28T14:59:53Z",
+ "updated_at": "2025-08-03T03:52:28Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-28T15:58:19Z",
+ "author_url": "https://github.com/SharanyaAchanta",
+ "author_avatar": "https://avatars.githubusercontent.com/u/155161347?v=4"
+ },
+ {
+ "url": "https://github.com/SomdattaNag/Security-Screening-System/pull/35",
+ "title": "Enhanced the HTML UI of the Email Alert (Issue #30)",
+ "repo": "SomdattaNag/Security-Screening-System",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-23T10:55:04Z",
+ "updated_at": "2025-07-24T01:58:23Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-23T14:37:41Z",
+ "author_url": "https://github.com/SharanyaAchanta",
+ "author_avatar": "https://avatars.githubusercontent.com/u/155161347?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/155161347?v=4",
+ "profile_url": "https://github.com/SharanyaAchanta"
+ },
+ "ShroudAnkit53": {
+ "expectedPoints": 15,
+ "currentPoints": 15,
+ "levels": {
+ "level1": 2,
+ "level2": 1,
+ "level3": 0
+ },
+ "prs": [
+ {
+ "url": "https://github.com/Kritika75/TheCawnporeMag.github.io/pull/270",
+ "title": "BUG FIX: Designing the Navbar for About, Submit, Issue, Masthead Page etc.",
+ "repo": "Kritika75/TheCawnporeMag.github.io",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-29T11:57:28Z",
+ "updated_at": "2025-07-30T05:05:39Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-30T04:26:49Z",
+ "author_url": "https://github.com/ShroudAnkit53",
+ "author_avatar": "https://avatars.githubusercontent.com/u/136951072?v=4"
+ },
+ {
+ "url": "https://github.com/Kritika75/TheCawnporeMag.github.io/pull/206",
+ "title": "Adding a loader before it shows the main page",
+ "repo": "Kritika75/TheCawnporeMag.github.io",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-27T11:37:24Z",
+ "updated_at": "2025-07-27T13:33:42Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-27T13:33:41Z",
+ "author_url": "https://github.com/ShroudAnkit53",
+ "author_avatar": "https://avatars.githubusercontent.com/u/136951072?v=4"
+ },
+ {
+ "url": "https://github.com/sampadatiwari30/DeshDarshan/pull/231",
+ "title": "Styling of Feedback Form",
+ "repo": "sampadatiwari30/DeshDarshan",
+ "level": "level2",
+ "points": 7,
+ "created_at": "2025-07-30T05:35:46Z",
+ "updated_at": "2025-07-30T19:10:27Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-30T19:10:10Z",
+ "author_url": "https://github.com/ShroudAnkit53",
+ "author_avatar": "https://avatars.githubusercontent.com/u/136951072?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/136951072?v=4",
+ "profile_url": "https://github.com/ShroudAnkit53"
+ },
+ "Roshni866": {
+ "expectedPoints": 36,
+ "currentPoints": 15,
+ "levels": {
+ "level1": 2,
+ "level2": 4,
+ "level3": 0
+ },
+ "prs": [
+ {
+ "url": "https://github.com/pavitraag/Project-Vault/pull/229",
+ "title": "Student burnout Detector",
+ "repo": "pavitraag/Project-Vault",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-31T08:51:21Z",
+ "updated_at": "2025-07-31T13:08:08Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-31T13:08:08Z",
+ "author_url": "https://github.com/Roshni866",
+ "author_avatar": "https://avatars.githubusercontent.com/u/177740586?v=4"
+ },
+ {
+ "url": "https://github.com/pavitraag/Project-Vault/pull/132",
+ "title": "Loan approval section",
+ "repo": "pavitraag/Project-Vault",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-27T09:40:04Z",
+ "updated_at": "2025-07-31T05:18:52Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-31T05:18:52Z",
+ "author_url": "https://github.com/Roshni866",
+ "author_avatar": "https://avatars.githubusercontent.com/u/177740586?v=4"
+ },
+ {
+ "url": "https://github.com/UTSAVS26/PyVerse/pull/1576",
+ "title": "Random Story Generator",
+ "repo": "UTSAVS26/PyVerse",
+ "level": "level2",
+ "points": 7,
+ "created_at": "2025-08-02T09:13:35Z",
+ "updated_at": "2025-08-02T09:30:56Z",
+ "state": "open",
+ "merged": false,
+ "merged_at": null,
+ "author_url": "https://github.com/Roshni866",
+ "author_avatar": "https://avatars.githubusercontent.com/u/177740586?v=4"
+ },
+ {
+ "url": "https://github.com/UTSAVS26/PyVerse/pull/1573",
+ "title": "Random story generator",
+ "repo": "UTSAVS26/PyVerse",
+ "level": "level2",
+ "points": 7,
+ "created_at": "2025-08-02T08:25:17Z",
+ "updated_at": "2025-08-02T08:25:56Z",
+ "state": "open",
+ "merged": false,
+ "merged_at": null,
+ "author_url": "https://github.com/Roshni866",
+ "author_avatar": "https://avatars.githubusercontent.com/u/177740586?v=4"
+ },
+ {
+ "url": "https://github.com/UTSAVS26/PyVerse/pull/1571",
+ "title": "Random Story Generator",
+ "repo": "UTSAVS26/PyVerse",
+ "level": "level2",
+ "points": 7,
+ "created_at": "2025-08-02T08:01:15Z",
+ "updated_at": "2025-08-02T08:19:45Z",
+ "state": "open",
+ "merged": false,
+ "merged_at": null,
+ "author_url": "https://github.com/Roshni866",
+ "author_avatar": "https://avatars.githubusercontent.com/u/177740586?v=4"
+ },
+ {
+ "url": "https://github.com/UTSAVS26/PyVerse/pull/1553",
+ "title": "Code addition for Student Burnout Detector",
+ "repo": "UTSAVS26/PyVerse",
+ "level": "level2",
+ "points": 7,
+ "created_at": "2025-07-31T04:18:23Z",
+ "updated_at": "2025-08-02T08:07:33Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-08-02T08:00:26Z",
+ "author_url": "https://github.com/Roshni866",
+ "author_avatar": "https://avatars.githubusercontent.com/u/177740586?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/177740586?v=4",
+ "profile_url": "https://github.com/Roshni866"
+ },
+ "Shakti13-sys": {
+ "expectedPoints": 15,
+ "currentPoints": 15,
+ "levels": {
+ "level1": 2,
+ "level2": 1,
+ "level3": 0
+ },
+ "prs": [
+ {
+ "url": "https://github.com/pavitraag/Project-Vault/pull/121",
+ "title": "[Bug] Fix Missing Closing Brace in nav CSS Block",
+ "repo": "pavitraag/Project-Vault",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-26T20:42:49Z",
+ "updated_at": "2025-07-29T18:40:48Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-28T18:20:40Z",
+ "author_url": "https://github.com/Shakti13-sys",
+ "author_avatar": "https://avatars.githubusercontent.com/u/196214593?v=4"
+ },
+ {
+ "url": "https://github.com/pavitraag/Project-Vault/pull/119",
+ "title": "[Bug Fix] Add Null Checks for DOM Elements to Prevent JavaScript Errors",
+ "repo": "pavitraag/Project-Vault",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-26T20:18:29Z",
+ "updated_at": "2025-07-29T18:40:24Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-26T20:34:37Z",
+ "author_url": "https://github.com/Shakti13-sys",
+ "author_avatar": "https://avatars.githubusercontent.com/u/196214593?v=4"
+ },
+ {
+ "url": "https://github.com/eccentriccoder01/TalkHeal/pull/47",
+ "title": "Improve: Exception Handling Across Multiple Components",
+ "repo": "eccentriccoder01/TalkHeal",
+ "level": "level2",
+ "points": 7,
+ "created_at": "2025-07-26T13:32:45Z",
+ "updated_at": "2025-08-03T03:52:49Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-26T17:42:25Z",
+ "author_url": "https://github.com/Shakti13-sys",
+ "author_avatar": "https://avatars.githubusercontent.com/u/196214593?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/196214593?v=4",
+ "profile_url": "https://github.com/Shakti13-sys"
+ },
+ "Amitk003": {
+ "expectedPoints": 15,
+ "currentPoints": 15,
+ "levels": {
+ "level1": 2,
+ "level2": 1,
+ "level3": 0
+ },
+ "prs": [
+ {
+ "url": "https://github.com/ProTecGames/Karbon/pull/59",
+ "title": "Feature/prompt feature",
+ "repo": "ProTecGames/Karbon",
+ "level": null,
+ "points": 0,
+ "created_at": "2025-07-26T07:55:15Z",
+ "updated_at": "2025-07-27T07:22:58Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-27T07:13:47Z",
+ "author_url": "https://github.com/Amitk003",
+ "author_avatar": "https://avatars.githubusercontent.com/u/162789282?v=4"
+ },
+ {
+ "url": "https://github.com/Rajkumarbhakta/Canvas/pull/16",
+ "title": "Added contributions section",
+ "repo": "Rajkumarbhakta/Canvas",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-29T06:03:21Z",
+ "updated_at": "2025-07-31T11:51:11Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-29T15:05:07Z",
+ "author_url": "https://github.com/Amitk003",
+ "author_avatar": "https://avatars.githubusercontent.com/u/162789282?v=4"
+ },
+ {
+ "url": "https://github.com/SurajSG23/PrepBuddy/pull/71",
+ "title": "Updated Readme with Contributions section",
+ "repo": "SurajSG23/PrepBuddy",
+ "level": "level2",
+ "points": 7,
+ "created_at": "2025-07-29T16:52:45Z",
+ "updated_at": "2025-07-29T17:33:17Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-29T17:33:04Z",
+ "author_url": "https://github.com/Amitk003",
+ "author_avatar": "https://avatars.githubusercontent.com/u/162789282?v=4"
+ },
+ {
+ "url": "https://github.com/yuvrajsinghgmx/ShopSmart/pull/319",
+ "title": "Contributors section",
+ "repo": "yuvrajsinghgmx/ShopSmart",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-30T08:45:58Z",
+ "updated_at": "2025-07-31T11:41:18Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-30T14:23:17Z",
+ "author_url": "https://github.com/Amitk003",
+ "author_avatar": "https://avatars.githubusercontent.com/u/162789282?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/162789282?v=4",
+ "profile_url": "https://github.com/Amitk003"
+ },
+ "devkarx": {
+ "expectedPoints": 15,
+ "currentPoints": 15,
+ "levels": {
+ "level1": 2,
+ "level2": 1,
+ "level3": 0
+ },
+ "prs": [
+ {
+ "url": "https://github.com/sampadatiwari30/DeshDarshan/pull/251",
+ "title": "Fix: Hamburger menu not functional on mobile view",
+ "repo": "sampadatiwari30/DeshDarshan",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-30T19:15:38Z",
+ "updated_at": "2025-07-30T20:07:06Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-30T20:06:46Z",
+ "author_url": "https://github.com/devkarx",
+ "author_avatar": "https://avatars.githubusercontent.com/u/192618038?v=4"
+ },
+ {
+ "url": "https://github.com/sampadatiwari30/DeshDarshan/pull/230",
+ "title": "Fix/responsive homepage",
+ "repo": "sampadatiwari30/DeshDarshan",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-29T17:52:57Z",
+ "updated_at": "2025-07-30T04:36:21Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-30T04:35:52Z",
+ "author_url": "https://github.com/devkarx",
+ "author_avatar": "https://avatars.githubusercontent.com/u/192618038?v=4"
+ },
+ {
+ "url": "https://github.com/sampadatiwari30/DeshDarshan/pull/213",
+ "title": "Added missing images on homepage",
+ "repo": "sampadatiwari30/DeshDarshan",
+ "level": "level2",
+ "points": 7,
+ "created_at": "2025-07-29T03:05:35Z",
+ "updated_at": "2025-07-29T03:16:57Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-29T03:16:42Z",
+ "author_url": "https://github.com/devkarx",
+ "author_avatar": "https://avatars.githubusercontent.com/u/192618038?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/192618038?v=4",
+ "profile_url": "https://github.com/devkarx"
+ },
+ "priyalnagvekar": {
+ "expectedPoints": 15,
+ "currentPoints": 15,
+ "levels": {
+ "level1": 2,
+ "level2": 1,
+ "level3": 0
+ },
+ "prs": [
+ {
+ "url": "https://github.com/sampadatiwari30/DeshDarshan/pull/217",
+ "title": "Updated UI of index.html and style of home.css, Images added",
+ "repo": "sampadatiwari30/DeshDarshan",
+ "level": "level2",
+ "points": 7,
+ "created_at": "2025-07-29T07:55:34Z",
+ "updated_at": "2025-07-31T20:14:19Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-31T19:55:40Z",
+ "author_url": "https://github.com/priyalnagvekar",
+ "author_avatar": "https://avatars.githubusercontent.com/u/217570920?v=4"
+ },
+ {
+ "url": "https://github.com/sampadatiwari30/DeshDarshan/pull/157",
+ "title": "Update README.md",
+ "repo": "sampadatiwari30/DeshDarshan",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-26T19:10:27Z",
+ "updated_at": "2025-07-27T03:15:07Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-27T03:14:54Z",
+ "author_url": "https://github.com/priyalnagvekar",
+ "author_avatar": "https://avatars.githubusercontent.com/u/217570920?v=4"
+ },
+ {
+ "url": "https://github.com/sampadatiwari30/DeshDarshan/pull/153",
+ "title": "Updated README to be more informative",
+ "repo": "sampadatiwari30/DeshDarshan",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-26T17:09:54Z",
+ "updated_at": "2025-07-26T17:40:46Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-26T17:40:19Z",
+ "author_url": "https://github.com/priyalnagvekar",
+ "author_avatar": "https://avatars.githubusercontent.com/u/217570920?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/217570920?v=4",
+ "profile_url": "https://github.com/priyalnagvekar"
+ },
+ "SrivarshikaReddy05": {
+ "expectedPoints": 15,
+ "currentPoints": 15,
+ "levels": {
+ "level1": 2,
+ "level2": 1,
+ "level3": 0
+ },
+ "prs": [
+ {
+ "url": "https://github.com/SurajSG23/PrepBuddy/pull/93",
+ "title": "Added smooth scrolling effect in landing page",
+ "repo": "SurajSG23/PrepBuddy",
+ "level": "level2",
+ "points": 7,
+ "created_at": "2025-07-31T19:53:17Z",
+ "updated_at": "2025-08-01T02:50:58Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-08-01T02:50:58Z",
+ "author_url": "https://github.com/SrivarshikaReddy05",
+ "author_avatar": "https://avatars.githubusercontent.com/u/173909076?v=4"
+ },
+ {
+ "url": "https://github.com/SurajSG23/PrepBuddy/pull/79",
+ "title": "Enhanced feature section cards with hover effects(#77)",
+ "repo": "SurajSG23/PrepBuddy",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-30T11:49:45Z",
+ "updated_at": "2025-07-30T12:11:53Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-30T12:02:19Z",
+ "author_url": "https://github.com/SrivarshikaReddy05",
+ "author_avatar": "https://avatars.githubusercontent.com/u/173909076?v=4"
+ },
+ {
+ "url": "https://github.com/openml-stack/SentiLog-AI/pull/143",
+ "title": "Created a new logo",
+ "repo": "openml-stack/SentiLog-AI",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-31T18:37:15Z",
+ "updated_at": "2025-08-02T14:01:26Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-08-01T19:01:36Z",
+ "author_url": "https://github.com/SrivarshikaReddy05",
+ "author_avatar": "https://avatars.githubusercontent.com/u/173909076?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/173909076?v=4",
+ "profile_url": "https://github.com/SrivarshikaReddy05"
+ },
+ "catmoreak": {
+ "expectedPoints": 15,
+ "currentPoints": 15,
+ "levels": {
+ "level1": 2,
+ "level2": 1,
+ "level3": 0
+ },
+ "prs": [
+ {
+ "url": "https://github.com/swarooppatilx/bit-by-query/pull/24",
+ "title": "feat: manual refresh button to LeaderBoard",
+ "repo": "swarooppatilx/bit-by-query",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-26T04:41:07Z",
+ "updated_at": "2025-07-27T17:05:19Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-27T17:03:29Z",
+ "author_url": "https://github.com/catmoreak",
+ "author_avatar": "https://avatars.githubusercontent.com/u/72437057?v=4"
+ },
+ {
+ "url": "https://github.com/swarooppatilx/bit-by-query/pull/16",
+ "title": "feat: optimize countdown timer to prevent memory leaks and negative values",
+ "repo": "swarooppatilx/bit-by-query",
+ "level": "level2",
+ "points": 7,
+ "created_at": "2025-07-25T05:27:16Z",
+ "updated_at": "2025-07-26T04:23:03Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-26T04:23:02Z",
+ "author_url": "https://github.com/catmoreak",
+ "author_avatar": "https://avatars.githubusercontent.com/u/72437057?v=4"
+ },
+ {
+ "url": "https://github.com/openml-stack/SentiLog-AI/pull/150",
+ "title": "fix: guard sensitive console logs in signup and login pages",
+ "repo": "openml-stack/SentiLog-AI",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-08-01T17:31:11Z",
+ "updated_at": "2025-08-01T19:43:33Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-08-01T19:42:27Z",
+ "author_url": "https://github.com/catmoreak",
+ "author_avatar": "https://avatars.githubusercontent.com/u/72437057?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/72437057?v=4",
+ "profile_url": "https://github.com/catmoreak"
+ },
+ "kavyanjali03": {
+ "expectedPoints": 14,
+ "currentPoints": 14,
+ "levels": {
+ "level1": 1,
+ "level2": 0,
+ "level3": 1
+ },
+ "prs": [
+ {
+ "url": "https://github.com/Abhishek2634/Foodie/pull/178",
+ "title": "current location using leaflet",
+ "repo": "Abhishek2634/Foodie",
+ "level": "level3",
+ "points": 10,
+ "created_at": "2025-07-29T19:19:03Z",
+ "updated_at": "2025-08-02T11:13:26Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-30T06:26:06Z",
+ "author_url": "https://github.com/kavyanjali03",
+ "author_avatar": "https://avatars.githubusercontent.com/u/108642373?v=4"
+ },
+ {
+ "url": "https://github.com/agamjotsingh18/trendhora/pull/22",
+ "title": "added react toaster ",
+ "repo": "agamjotsingh18/trendhora",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-26T09:11:29Z",
+ "updated_at": "2025-07-28T18:41:24Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-28T18:36:48Z",
+ "author_url": "https://github.com/kavyanjali03",
+ "author_avatar": "https://avatars.githubusercontent.com/u/108642373?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/108642373?v=4",
+ "profile_url": "https://github.com/kavyanjali03"
+ },
+ "Vanshika814": {
+ "expectedPoints": 14,
+ "currentPoints": 14,
+ "levels": {
+ "level1": 1,
+ "level2": 0,
+ "level3": 1
+ },
+ "prs": [
+ {
+ "url": "https://github.com/Abhishek2634/Foodie/pull/67",
+ "title": "Add: enhanced cart functionality with toast notifications and new Styles",
+ "repo": "Abhishek2634/Foodie",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-23T13:15:40Z",
+ "updated_at": "2025-07-24T18:25:06Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-23T15:09:07Z",
+ "author_url": "https://github.com/Vanshika814",
+ "author_avatar": "https://avatars.githubusercontent.com/u/130656958?v=4"
+ },
+ {
+ "url": "https://github.com/SurajSG23/PrepBuddy/pull/53",
+ "title": "Refactor Footer and Header components for improved layout and styling",
+ "repo": "SurajSG23/PrepBuddy",
+ "level": "level3",
+ "points": 10,
+ "created_at": "2025-07-27T18:28:34Z",
+ "updated_at": "2025-07-27T18:48:49Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-27T18:47:08Z",
+ "author_url": "https://github.com/Vanshika814",
+ "author_avatar": "https://avatars.githubusercontent.com/u/130656958?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/130656958?v=4",
+ "profile_url": "https://github.com/Vanshika814"
+ },
+ "Prerna799": {
+ "expectedPoints": 14,
+ "currentPoints": 14,
+ "levels": {
+ "level1": 0,
+ "level2": 2,
+ "level3": 0
+ },
+ "prs": [
+ {
+ "url": "https://github.com/Adarsh-Chaubey03/TravelGrid/pull/503",
+ "title": "Make Address in Contact Info Clickable to Open in Google Maps",
+ "repo": "Adarsh-Chaubey03/TravelGrid",
+ "level": "level2",
+ "points": 7,
+ "created_at": "2025-08-02T21:47:41Z",
+ "updated_at": "2025-08-03T02:56:04Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-08-03T02:55:54Z",
+ "author_url": "https://github.com/Prerna799",
+ "author_avatar": "https://avatars.githubusercontent.com/u/113570102?v=4"
+ },
+ {
+ "url": "https://github.com/Adarsh-Chaubey03/TravelGrid/pull/484",
+ "title": "Enhanced Description Colour for Increased Visibility",
+ "repo": "Adarsh-Chaubey03/TravelGrid",
+ "level": "level2",
+ "points": 7,
+ "created_at": "2025-08-02T13:57:12Z",
+ "updated_at": "2025-08-02T15:03:23Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-08-02T15:02:59Z",
+ "author_url": "https://github.com/Prerna799",
+ "author_avatar": "https://avatars.githubusercontent.com/u/113570102?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/113570102?v=4",
+ "profile_url": "https://github.com/Prerna799"
+ },
+ "mayankgaur0405": {
+ "expectedPoints": 14,
+ "currentPoints": 14,
+ "levels": {
+ "level1": 0,
+ "level2": 2,
+ "level3": 0
+ },
+ "prs": [
+ {
+ "url": "https://github.com/Adarsh-Chaubey03/TravelGrid/pull/497",
+ "title": "Trending Spots Fix (UI updated to match the website’s design)",
+ "repo": "Adarsh-Chaubey03/TravelGrid",
+ "level": "level2",
+ "points": 7,
+ "created_at": "2025-08-02T17:19:31Z",
+ "updated_at": "2025-08-03T03:39:18Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-08-02T18:35:45Z",
+ "author_url": "https://github.com/mayankgaur0405",
+ "author_avatar": "https://avatars.githubusercontent.com/u/171427920?v=4"
+ },
+ {
+ "url": "https://github.com/Adarsh-Chaubey03/TravelGrid/pull/490",
+ "title": "navbar.jsx updated and fixed bugs",
+ "repo": "Adarsh-Chaubey03/TravelGrid",
+ "level": "level2",
+ "points": 7,
+ "created_at": "2025-08-02T15:34:03Z",
+ "updated_at": "2025-08-02T18:33:23Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-08-02T18:33:06Z",
+ "author_url": "https://github.com/mayankgaur0405",
+ "author_avatar": "https://avatars.githubusercontent.com/u/171427920?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/171427920?v=4",
+ "profile_url": "https://github.com/mayankgaur0405"
+ },
+ "thee-pika": {
+ "expectedPoints": 14,
+ "currentPoints": 14,
+ "levels": {
+ "level1": 0,
+ "level2": 2,
+ "level3": 0
+ },
+ "prs": [
+ {
+ "url": "https://github.com/Adarsh-Chaubey03/TravelGrid/pull/462",
+ "title": "fixed issue-457-number-of-people-field-visibility",
+ "repo": "Adarsh-Chaubey03/TravelGrid",
+ "level": "level2",
+ "points": 7,
+ "created_at": "2025-08-02T06:58:02Z",
+ "updated_at": "2025-08-02T08:48:32Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-08-02T08:48:21Z",
+ "author_url": "https://github.com/thee-pika",
+ "author_avatar": "https://avatars.githubusercontent.com/u/144080036?v=4"
+ },
+ {
+ "url": "https://github.com/Adarsh-Chaubey03/TravelGrid/pull/459",
+ "title": "fixed ui issue in forum page",
+ "repo": "Adarsh-Chaubey03/TravelGrid",
+ "level": "level2",
+ "points": 7,
+ "created_at": "2025-08-02T06:37:04Z",
+ "updated_at": "2025-08-02T08:46:01Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-08-02T08:45:42Z",
+ "author_url": "https://github.com/thee-pika",
+ "author_avatar": "https://avatars.githubusercontent.com/u/144080036?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/144080036?v=4",
+ "profile_url": "https://github.com/thee-pika"
+ },
+ "Deepanshu1230": {
+ "expectedPoints": 14,
+ "currentPoints": 14,
+ "levels": {
+ "level1": 0,
+ "level2": 2,
+ "level3": 0
+ },
+ "prs": [
+ {
+ "url": "https://github.com/Adarsh-Chaubey03/TravelGrid/pull/456",
+ "title": "Feature:Added the Framer Motion in Home Page",
+ "repo": "Adarsh-Chaubey03/TravelGrid",
+ "level": "level2",
+ "points": 7,
+ "created_at": "2025-08-02T05:25:02Z",
+ "updated_at": "2025-08-02T05:30:47Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-08-02T05:30:47Z",
+ "author_url": "https://github.com/Deepanshu1230",
+ "author_avatar": "https://avatars.githubusercontent.com/u/144600350?v=4"
+ },
+ {
+ "url": "https://github.com/Adarsh-Chaubey03/TravelGrid/pull/269",
+ "title": "Feat:Added the Functionality of Download Ticket",
+ "repo": "Adarsh-Chaubey03/TravelGrid",
+ "level": "level2",
+ "points": 7,
+ "created_at": "2025-07-28T10:57:40Z",
+ "updated_at": "2025-07-28T10:58:30Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-28T10:58:08Z",
+ "author_url": "https://github.com/Deepanshu1230",
+ "author_avatar": "https://avatars.githubusercontent.com/u/144600350?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/144600350?v=4",
+ "profile_url": "https://github.com/Deepanshu1230"
+ },
+ "prakritirathi": {
+ "expectedPoints": 14,
+ "currentPoints": 14,
+ "levels": {
+ "level1": 0,
+ "level2": 2,
+ "level3": 0
+ },
+ "prs": [
+ {
+ "url": "https://github.com/Adarsh-Chaubey03/TravelGrid/pull/421",
+ "title": "Feature: live currency converter",
+ "repo": "Adarsh-Chaubey03/TravelGrid",
+ "level": "level2",
+ "points": 7,
+ "created_at": "2025-07-31T17:59:45Z",
+ "updated_at": "2025-08-01T01:55:22Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-08-01T01:54:54Z",
+ "author_url": "https://github.com/prakritirathi",
+ "author_avatar": "https://avatars.githubusercontent.com/u/181204716?v=4"
+ },
+ {
+ "url": "https://github.com/Adarsh-Chaubey03/TravelGrid/pull/291",
+ "title": "use regex for password strength",
+ "repo": "Adarsh-Chaubey03/TravelGrid",
+ "level": "level2",
+ "points": 7,
+ "created_at": "2025-07-28T15:11:57Z",
+ "updated_at": "2025-07-28T17:32:58Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-28T17:32:39Z",
+ "author_url": "https://github.com/prakritirathi",
+ "author_avatar": "https://avatars.githubusercontent.com/u/181204716?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/181204716?v=4",
+ "profile_url": "https://github.com/prakritirathi"
+ },
+ "Th-Shivam": {
+ "expectedPoints": 14,
+ "currentPoints": 14,
+ "levels": {
+ "level1": 0,
+ "level2": 2,
+ "level3": 0
+ },
+ "prs": [
+ {
+ "url": "https://github.com/agamjotsingh18/trendhora/pull/53",
+ "title": "#Fixes 39 [UI] Privacy Policy and Terms & Conditions buttons not functional ",
+ "repo": "agamjotsingh18/trendhora",
+ "level": "level2",
+ "points": 7,
+ "created_at": "2025-07-31T16:10:49Z",
+ "updated_at": "2025-08-01T07:23:07Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-08-01T07:19:09Z",
+ "author_url": "https://github.com/Th-Shivam",
+ "author_avatar": "https://avatars.githubusercontent.com/u/169958957?v=4"
+ },
+ {
+ "url": "https://github.com/UTSAVS26/PyVerse/pull/1523",
+ "title": "Added Reverse_backdoor ( backdoor.py and listener.py )",
+ "repo": "UTSAVS26/PyVerse",
+ "level": "level2",
+ "points": 7,
+ "created_at": "2025-07-29T11:42:29Z",
+ "updated_at": "2025-08-02T07:51:21Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-08-02T07:51:09Z",
+ "author_url": "https://github.com/Th-Shivam",
+ "author_avatar": "https://avatars.githubusercontent.com/u/169958957?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/169958957?v=4",
+ "profile_url": "https://github.com/Th-Shivam"
+ },
+ "herin7": {
+ "expectedPoints": 14,
+ "currentPoints": 14,
+ "levels": {
+ "level1": 1,
+ "level2": 0,
+ "level3": 1
+ },
+ "prs": [
+ {
+ "url": "https://github.com/Amarjha01/InfantCareCompass/pull/125",
+ "title": "Cursor Ui Issue Resolved",
+ "repo": "Amarjha01/InfantCareCompass",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-26T19:47:52Z",
+ "updated_at": "2025-07-28T14:44:15Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-28T14:43:49Z",
+ "author_url": "https://github.com/herin7",
+ "author_avatar": "https://avatars.githubusercontent.com/u/135334879?v=4"
+ },
+ {
+ "url": "https://github.com/Amarjha01/InfantCareCompass/pull/87",
+ "title": "Consultation Page UI improved",
+ "repo": "Amarjha01/InfantCareCompass",
+ "level": "level3",
+ "points": 10,
+ "created_at": "2025-07-24T20:08:22Z",
+ "updated_at": "2025-07-25T07:06:12Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-25T07:05:54Z",
+ "author_url": "https://github.com/herin7",
+ "author_avatar": "https://avatars.githubusercontent.com/u/135334879?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/135334879?v=4",
+ "profile_url": "https://github.com/herin7"
+ },
+ "Arnesh-pal": {
+ "expectedPoints": 14,
+ "currentPoints": 14,
+ "levels": {
+ "level1": 0,
+ "level2": 2,
+ "level3": 0
+ },
+ "prs": [
+ {
+ "url": "https://github.com/Amarjha01/InfantCareCompass/pull/19",
+ "title": "Updated SignIn.jsx for https://github.com/Amarjha01/InfantCareCompass/issues/6",
+ "repo": "Amarjha01/InfantCareCompass",
+ "level": "level2",
+ "points": 7,
+ "created_at": "2025-07-20T12:43:38Z",
+ "updated_at": "2025-07-21T23:52:43Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-21T23:52:43Z",
+ "author_url": "https://github.com/Arnesh-pal",
+ "author_avatar": "https://avatars.githubusercontent.com/u/144382300?v=4"
+ },
+ {
+ "url": "https://github.com/Amarjha01/InfantCareCompass/pull/18",
+ "title": "Bug Fix: Input Field Loses Focus on Key-press, UI Simplification: Replaced Floating Label with Standard Placeholder",
+ "repo": "Amarjha01/InfantCareCompass",
+ "level": "level2",
+ "points": 7,
+ "created_at": "2025-07-20T12:25:34Z",
+ "updated_at": "2025-07-20T12:35:41Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-20T12:35:01Z",
+ "author_url": "https://github.com/Arnesh-pal",
+ "author_avatar": "https://avatars.githubusercontent.com/u/144382300?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/144382300?v=4",
+ "profile_url": "https://github.com/Arnesh-pal"
+ },
+ "StephanosNikitis": {
+ "expectedPoints": 14,
+ "currentPoints": 14,
+ "levels": {
+ "level1": 0,
+ "level2": 2,
+ "level3": 0
+ },
+ "prs": [
+ {
+ "url": "https://github.com/itsAnimation/AnimateItNow/pull/777",
+ "title": "Added template Hover Focused Card",
+ "repo": "itsAnimation/AnimateItNow",
+ "level": "level2",
+ "points": 7,
+ "created_at": "2025-08-02T12:33:13Z",
+ "updated_at": "2025-08-02T16:44:15Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-08-02T16:44:01Z",
+ "author_url": "https://github.com/StephanosNikitis",
+ "author_avatar": "https://avatars.githubusercontent.com/u/185617586?v=4"
+ },
+ {
+ "url": "https://github.com/itsAnimation/AnimateItNow/pull/413",
+ "title": "Added animated hover button",
+ "repo": "itsAnimation/AnimateItNow",
+ "level": "level2",
+ "points": 7,
+ "created_at": "2025-07-25T15:20:25Z",
+ "updated_at": "2025-07-25T18:14:07Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-25T18:14:06Z",
+ "author_url": "https://github.com/StephanosNikitis",
+ "author_avatar": "https://avatars.githubusercontent.com/u/185617586?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/185617586?v=4",
+ "profile_url": "https://github.com/StephanosNikitis"
+ },
+ "syed-imadulla": {
+ "expectedPoints": 14,
+ "currentPoints": 14,
+ "levels": {
+ "level1": 0,
+ "level2": 2,
+ "level3": 0
+ },
+ "prs": [
+ {
+ "url": "https://github.com/itsAnimation/AnimateItNow/pull/738",
+ "title": " [#725] Feature: Make Website Logo Link to Homepage (DONE)",
+ "repo": "itsAnimation/AnimateItNow",
+ "level": "level2",
+ "points": 7,
+ "created_at": "2025-08-01T13:58:01Z",
+ "updated_at": "2025-08-02T06:26:28Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-08-02T06:26:28Z",
+ "author_url": "https://github.com/syed-imadulla",
+ "author_avatar": "https://avatars.githubusercontent.com/u/183980215?v=4"
+ },
+ {
+ "url": "https://github.com/Kritika75/TheCawnporeMag.github.io/pull/383",
+ "title": "Added Feature/snake cursor on off toggle added as pointer effect",
+ "repo": "Kritika75/TheCawnporeMag.github.io",
+ "level": "level2",
+ "points": 7,
+ "created_at": "2025-08-02T17:29:54Z",
+ "updated_at": "2025-08-03T06:30:51Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-08-03T06:30:51Z",
+ "author_url": "https://github.com/syed-imadulla",
+ "author_avatar": "https://avatars.githubusercontent.com/u/183980215?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/183980215?v=4",
+ "profile_url": "https://github.com/syed-imadulla"
+ },
+ "jaydxxp": {
+ "expectedPoints": 14,
+ "currentPoints": 14,
+ "levels": {
+ "level1": 1,
+ "level2": 0,
+ "level3": 1
+ },
+ "prs": [
+ {
+ "url": "https://github.com/itsAnimation/AnimateItNow/pull/704",
+ "title": "Syntax highlighting",
+ "repo": "itsAnimation/AnimateItNow",
+ "level": "level3",
+ "points": 10,
+ "created_at": "2025-07-31T12:45:10Z",
+ "updated_at": "2025-08-02T11:05:54Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-08-02T11:00:03Z",
+ "author_url": "https://github.com/jaydxxp",
+ "author_avatar": "https://avatars.githubusercontent.com/u/138896302?v=4"
+ },
+ {
+ "url": "https://github.com/itsAnimation/AnimateItNow/pull/670",
+ "title": "Created a message and styling for no templates found.",
+ "repo": "itsAnimation/AnimateItNow",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-30T12:47:14Z",
+ "updated_at": "2025-07-30T14:50:27Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-30T14:50:27Z",
+ "author_url": "https://github.com/jaydxxp",
+ "author_avatar": "https://avatars.githubusercontent.com/u/138896302?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/138896302?v=4",
+ "profile_url": "https://github.com/jaydxxp"
+ },
+ "mehak2807": {
+ "expectedPoints": 14,
+ "currentPoints": 14,
+ "levels": {
+ "level1": 0,
+ "level2": 2,
+ "level3": 0
+ },
+ "prs": [
+ {
+ "url": "https://github.com/itsAnimation/AnimateItNow/pull/327",
+ "title": "Added navbar templates",
+ "repo": "itsAnimation/AnimateItNow",
+ "level": "level2",
+ "points": 7,
+ "created_at": "2025-07-24T16:10:52Z",
+ "updated_at": "2025-07-26T07:46:08Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-26T07:46:07Z",
+ "author_url": "https://github.com/mehak2807",
+ "author_avatar": "https://avatars.githubusercontent.com/u/181713537?v=4"
+ },
+ {
+ "url": "https://github.com/ruchikakengal/WebDevIn100_Days/pull/298",
+ "title": "Added rock paper scissor game",
+ "repo": "ruchikakengal/WebDevIn100_Days",
+ "level": "level2",
+ "points": 7,
+ "created_at": "2025-07-25T16:49:33Z",
+ "updated_at": "2025-07-28T12:23:19Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-28T12:23:19Z",
+ "author_url": "https://github.com/mehak2807",
+ "author_avatar": "https://avatars.githubusercontent.com/u/181713537?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/181713537?v=4",
+ "profile_url": "https://github.com/mehak2807"
+ },
+ "shreyakaushal180": {
+ "expectedPoints": 14,
+ "currentPoints": 14,
+ "levels": {
+ "level1": 1,
+ "level2": 0,
+ "level3": 1
+ },
+ "prs": [
+ {
+ "url": "https://github.com/itsAnimation/AnimateItNow/pull/98",
+ "title": "Fix: Enable greeting, labeling, and duplicate detection GitHub Actions",
+ "repo": "itsAnimation/AnimateItNow",
+ "level": "level3",
+ "points": 10,
+ "created_at": "2025-07-22T16:37:03Z",
+ "updated_at": "2025-07-24T00:57:22Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-23T21:20:28Z",
+ "author_url": "https://github.com/shreyakaushal180",
+ "author_avatar": "https://avatars.githubusercontent.com/u/180425740?v=4"
+ },
+ {
+ "url": "https://github.com/ProTecGames/Karbon/pull/55",
+ "title": "Add GitHub integration with token management and export functionality",
+ "repo": "ProTecGames/Karbon",
+ "level": null,
+ "points": 0,
+ "created_at": "2025-07-25T12:52:57Z",
+ "updated_at": "2025-07-25T14:38:53Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-25T14:35:21Z",
+ "author_url": "https://github.com/shreyakaushal180",
+ "author_avatar": "https://avatars.githubusercontent.com/u/180425740?v=4"
+ },
+ {
+ "url": "https://github.com/Agarwalvidu/ArdhNaariShakti_Taara_Frontend/pull/8",
+ "title": "Removed node_modules and updated .gitignore",
+ "repo": "Agarwalvidu/ArdhNaariShakti_Taara_Frontend",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-24T06:40:34Z",
+ "updated_at": "2025-07-24T07:32:54Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-24T07:21:03Z",
+ "author_url": "https://github.com/shreyakaushal180",
+ "author_avatar": "https://avatars.githubusercontent.com/u/180425740?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/180425740?v=4",
+ "profile_url": "https://github.com/shreyakaushal180"
+ },
+ "o000SAI000o": {
+ "expectedPoints": 14,
+ "currentPoints": 14,
+ "levels": {
+ "level1": 0,
+ "level2": 2,
+ "level3": 0
+ },
+ "prs": [
+ {
+ "url": "https://github.com/InnoWebLabs/Vehigo/pull/218",
+ "title": "Improved: feedback form with proper css and functional components",
+ "repo": "InnoWebLabs/Vehigo",
+ "level": "level2",
+ "points": 7,
+ "created_at": "2025-08-02T07:52:34Z",
+ "updated_at": "2025-08-02T15:58:29Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-08-02T15:58:29Z",
+ "author_url": "https://github.com/o000SAI000o",
+ "author_avatar": "https://avatars.githubusercontent.com/u/175479407?v=4"
+ },
+ {
+ "url": "https://github.com/InnoWebLabs/Vehigo/pull/216",
+ "title": "Fixed : Fixed Dark mode button not working, not switching and not showing dark mode in features-car.html ",
+ "repo": "InnoWebLabs/Vehigo",
+ "level": "level2",
+ "points": 7,
+ "created_at": "2025-08-01T20:09:49Z",
+ "updated_at": "2025-08-02T05:20:18Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-08-02T05:20:17Z",
+ "author_url": "https://github.com/o000SAI000o",
+ "author_avatar": "https://avatars.githubusercontent.com/u/175479407?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/175479407?v=4",
+ "profile_url": "https://github.com/o000SAI000o"
+ },
+ "aryandas2911": {
+ "expectedPoints": 14,
+ "currentPoints": 14,
+ "levels": {
+ "level1": 0,
+ "level2": 2,
+ "level3": 0
+ },
+ "prs": [
+ {
+ "url": "https://github.com/InnoWebLabs/Vehigo/pull/72",
+ "title": "Improve Hero Section Typography and Alignment – Fixes #64",
+ "repo": "InnoWebLabs/Vehigo",
+ "level": "level2",
+ "points": 7,
+ "created_at": "2025-07-25T14:37:06Z",
+ "updated_at": "2025-07-25T20:28:21Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-25T15:47:24Z",
+ "author_url": "https://github.com/aryandas2911",
+ "author_avatar": "https://avatars.githubusercontent.com/u/122392506?v=4"
+ },
+ {
+ "url": "https://github.com/Agarwalvidu/ArdhNaariShakti_Taara_Frontend/pull/77",
+ "title": "Enhancement: Jobs Page Revamp (#69)",
+ "repo": "Agarwalvidu/ArdhNaariShakti_Taara_Frontend",
+ "level": "level2",
+ "points": 7,
+ "created_at": "2025-07-31T04:01:27Z",
+ "updated_at": "2025-07-31T06:59:35Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-31T06:59:35Z",
+ "author_url": "https://github.com/aryandas2911",
+ "author_avatar": "https://avatars.githubusercontent.com/u/122392506?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/122392506?v=4",
+ "profile_url": "https://github.com/aryandas2911"
+ },
+ "Ramizalam": {
+ "expectedPoints": 14,
+ "currentPoints": 14,
+ "levels": {
+ "level1": 0,
+ "level2": 2,
+ "level3": 0
+ },
+ "prs": [
+ {
+ "url": "https://github.com/Ayushjhawar8/Flavor-ai/pull/96",
+ "title": "improve-search",
+ "repo": "Ayushjhawar8/Flavor-ai",
+ "level": "level2",
+ "points": 7,
+ "created_at": "2025-07-28T09:34:10Z",
+ "updated_at": "2025-07-28T09:55:26Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-28T09:46:34Z",
+ "author_url": "https://github.com/Ramizalam",
+ "author_avatar": "https://avatars.githubusercontent.com/u/109797332?v=4"
+ },
+ {
+ "url": "https://github.com/sampadatiwari30/DeshDarshan/pull/193",
+ "title": "Fixed the search functionality to correctly filter states based on user input.",
+ "repo": "sampadatiwari30/DeshDarshan",
+ "level": "level2",
+ "points": 7,
+ "created_at": "2025-07-28T09:04:38Z",
+ "updated_at": "2025-07-28T13:36:29Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-28T13:36:00Z",
+ "author_url": "https://github.com/Ramizalam",
+ "author_avatar": "https://avatars.githubusercontent.com/u/109797332?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/109797332?v=4",
+ "profile_url": "https://github.com/Ramizalam"
+ },
+ "shreyas-krishnan7": {
+ "expectedPoints": 14,
+ "currentPoints": 14,
+ "levels": {
+ "level1": 0,
+ "level2": 2,
+ "level3": 0
+ },
+ "prs": [
+ {
+ "url": "https://github.com/BaraniVA/Habitheat/pull/65",
+ "title": "Fixed Issue #27 - Landing page for improved user engagement ",
+ "repo": "BaraniVA/Habitheat",
+ "level": "level2",
+ "points": 7,
+ "created_at": "2025-07-25T08:22:27Z",
+ "updated_at": "2025-07-30T14:32:25Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-30T14:29:24Z",
+ "author_url": "https://github.com/shreyas-krishnan7",
+ "author_avatar": "https://avatars.githubusercontent.com/u/171542680?v=4"
+ },
+ {
+ "url": "https://github.com/sampadatiwari30/DeshDarshan/pull/66",
+ "title": "FIXED ISSUE #45 - PROPER ROUTING BETWEEN PAGES ",
+ "repo": "sampadatiwari30/DeshDarshan",
+ "level": "level2",
+ "points": 7,
+ "created_at": "2025-07-23T15:16:39Z",
+ "updated_at": "2025-07-23T21:41:21Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-23T21:40:52Z",
+ "author_url": "https://github.com/shreyas-krishnan7",
+ "author_avatar": "https://avatars.githubusercontent.com/u/171542680?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/171542680?v=4",
+ "profile_url": "https://github.com/shreyas-krishnan7"
+ },
+ "pvedha24": {
+ "expectedPoints": 14,
+ "currentPoints": 14,
+ "levels": {
+ "level1": 1,
+ "level2": 0,
+ "level3": 1
+ },
+ "prs": [
+ {
+ "url": "https://github.com/Bavanetha27/Refixly/pull/5",
+ "title": "feat(navbar): improved accessibility, active link highlighting, and a…",
+ "repo": "Bavanetha27/Refixly",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-22T16:05:41Z",
+ "updated_at": "2025-08-01T10:46:43Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-23T14:43:03Z",
+ "author_url": "https://github.com/pvedha24",
+ "author_avatar": "https://avatars.githubusercontent.com/u/137671429?v=4"
+ },
+ {
+ "url": "https://github.com/eccentriccoder01/TalkHeal/pull/56",
+ "title": "Add user profile management module with avatar support",
+ "repo": "eccentriccoder01/TalkHeal",
+ "level": "level3",
+ "points": 10,
+ "created_at": "2025-07-27T14:24:53Z",
+ "updated_at": "2025-08-03T03:52:32Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-27T17:21:22Z",
+ "author_url": "https://github.com/pvedha24",
+ "author_avatar": "https://avatars.githubusercontent.com/u/137671429?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/137671429?v=4",
+ "profile_url": "https://github.com/pvedha24"
+ },
+ "Samudra-G": {
+ "expectedPoints": 14,
+ "currentPoints": 14,
+ "levels": {
+ "level1": 1,
+ "level2": 0,
+ "level3": 1
+ },
+ "prs": [
+ {
+ "url": "https://github.com/Devasy23/splitwiser/pull/97",
+ "title": "Fix: Ensure st.set_page_config is first Streamlit call in Home page",
+ "repo": "Devasy23/splitwiser",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-30T16:23:06Z",
+ "updated_at": "2025-07-30T16:59:55Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-30T16:58:44Z",
+ "author_url": "https://github.com/Samudra-G",
+ "author_avatar": "https://avatars.githubusercontent.com/u/144094054?v=4"
+ },
+ {
+ "url": "https://github.com/Devasy23/splitwiser/pull/79",
+ "title": "Improve exception handling and unit tests for auth, user, groups, expenses",
+ "repo": "Devasy23/splitwiser",
+ "level": "level3",
+ "points": 10,
+ "created_at": "2025-07-26T06:15:18Z",
+ "updated_at": "2025-07-29T19:00:25Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-29T19:00:25Z",
+ "author_url": "https://github.com/Samudra-G",
+ "author_avatar": "https://avatars.githubusercontent.com/u/144094054?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/144094054?v=4",
+ "profile_url": "https://github.com/Samudra-G"
+ },
+ "ItsAbhinavM": {
+ "expectedPoints": 14,
+ "currentPoints": 14,
+ "levels": {
+ "level1": 1,
+ "level2": 0,
+ "level3": 1
+ },
+ "prs": [
+ {
+ "url": "https://github.com/Dnyaneshpise/skywatch_alerts/pull/34",
+ "title": "Doc: Update README.md and LEARN.md with revised data",
+ "repo": "Dnyaneshpise/skywatch_alerts",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-27T17:29:18Z",
+ "updated_at": "2025-07-28T13:00:04Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-27T18:01:55Z",
+ "author_url": "https://github.com/ItsAbhinavM",
+ "author_avatar": "https://avatars.githubusercontent.com/u/141326344?v=4"
+ },
+ {
+ "url": "https://github.com/recodehive/recode-website/pull/221",
+ "title": "feat: Dockerize recodehive",
+ "repo": "recodehive/recode-website",
+ "level": "level3",
+ "points": 10,
+ "created_at": "2025-07-28T12:05:22Z",
+ "updated_at": "2025-07-28T13:45:52Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-28T13:45:01Z",
+ "author_url": "https://github.com/ItsAbhinavM",
+ "author_avatar": "https://avatars.githubusercontent.com/u/141326344?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/141326344?v=4",
+ "profile_url": "https://github.com/ItsAbhinavM"
+ },
+ "Raissa-1104080": {
+ "expectedPoints": 14,
+ "currentPoints": 14,
+ "levels": {
+ "level1": 0,
+ "level2": 2,
+ "level3": 0
+ },
+ "prs": [
+ {
+ "url": "https://github.com/Khushi-Nigam/jobportal/pull/65",
+ "title": "#issue 26 / 39 Redesign employer registration form UI to match jobseeker ",
+ "repo": "Khushi-Nigam/jobportal",
+ "level": "level2",
+ "points": 7,
+ "created_at": "2025-07-27T09:20:34Z",
+ "updated_at": "2025-07-27T09:54:40Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-27T09:54:40Z",
+ "author_url": "https://github.com/Raissa-1104080",
+ "author_avatar": "https://avatars.githubusercontent.com/u/179690425?v=4"
+ },
+ {
+ "url": "https://github.com/Khushi-Nigam/jobportal/pull/39",
+ "title": "issue #26 - updating registration-form",
+ "repo": "Khushi-Nigam/jobportal",
+ "level": "level2",
+ "points": 7,
+ "created_at": "2025-07-24T16:44:32Z",
+ "updated_at": "2025-07-24T19:56:13Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-24T18:15:07Z",
+ "author_url": "https://github.com/Raissa-1104080",
+ "author_avatar": "https://avatars.githubusercontent.com/u/179690425?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/179690425?v=4",
+ "profile_url": "https://github.com/Raissa-1104080"
+ },
+ "007-SARANG": {
+ "expectedPoints": 14,
+ "currentPoints": 14,
+ "levels": {
+ "level1": 0,
+ "level2": 2,
+ "level3": 0
+ },
+ "prs": [
+ {
+ "url": "https://github.com/Khushi-Nigam/jobportal/pull/31",
+ "title": "Fix: Added missing jsapp static folder and updated views",
+ "repo": "Khushi-Nigam/jobportal",
+ "level": "level2",
+ "points": 7,
+ "created_at": "2025-07-24T07:01:38Z",
+ "updated_at": "2025-07-24T15:23:33Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-24T15:20:45Z",
+ "author_url": "https://github.com/007-SARANG",
+ "author_avatar": "https://avatars.githubusercontent.com/u/181506369?v=4"
+ },
+ {
+ "url": "https://github.com/reshamsai150/7.Analysis-and-Prediction-of-Electric-Vehicle-Costs-A-Machine-Learning-Based-Approach/pull/12",
+ "title": "🔋 Add EV Cost Estimator feature with UI, JSON rates, and chart",
+ "repo": "reshamsai150/7.Analysis-and-Prediction-of-Electric-Vehicle-Costs-A-Machine-Learning-Based-Approach",
+ "level": "level2",
+ "points": 7,
+ "created_at": "2025-07-24T08:01:20Z",
+ "updated_at": "2025-07-28T08:49:53Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-24T08:30:12Z",
+ "author_url": "https://github.com/007-SARANG",
+ "author_avatar": "https://avatars.githubusercontent.com/u/181506369?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/181506369?v=4",
+ "profile_url": "https://github.com/007-SARANG"
+ },
+ "srrishtea": {
+ "expectedPoints": 14,
+ "currentPoints": 14,
+ "levels": {
+ "level1": 0,
+ "level2": 2,
+ "level3": 0
+ },
+ "prs": [
+ {
+ "url": "https://github.com/mansiruhil/fail-u-forward/pull/105",
+ "title": "Fix/implement post interaction buttons",
+ "repo": "mansiruhil/fail-u-forward",
+ "level": "level2",
+ "points": 7,
+ "created_at": "2025-07-30T08:33:17Z",
+ "updated_at": "2025-07-31T10:27:24Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-30T21:24:29Z",
+ "author_url": "https://github.com/srrishtea",
+ "author_avatar": "https://avatars.githubusercontent.com/u/145346748?v=4"
+ },
+ {
+ "url": "https://github.com/mansiruhil/fail-u-forward/pull/26",
+ "title": "fix: remove duplicate page.jsx file to resolve routing conflicts",
+ "repo": "mansiruhil/fail-u-forward",
+ "level": "level2",
+ "points": 7,
+ "created_at": "2025-07-23T19:04:36Z",
+ "updated_at": "2025-07-23T19:33:18Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-23T19:30:27Z",
+ "author_url": "https://github.com/srrishtea",
+ "author_avatar": "https://avatars.githubusercontent.com/u/145346748?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/145346748?v=4",
+ "profile_url": "https://github.com/srrishtea"
+ },
+ "SATVIKsynopsis": {
+ "expectedPoints": 14,
+ "currentPoints": 14,
+ "levels": {
+ "level1": 0,
+ "level2": 2,
+ "level3": 0
+ },
+ "prs": [
+ {
+ "url": "https://github.com/mansiruhil/fail-u-forward/pull/66",
+ "title": "Chore/use npm instead of pnpm",
+ "repo": "mansiruhil/fail-u-forward",
+ "level": "level2",
+ "points": 7,
+ "created_at": "2025-07-25T17:35:11Z",
+ "updated_at": "2025-07-25T17:48:34Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-25T17:40:46Z",
+ "author_url": "https://github.com/SATVIKsynopsis",
+ "author_avatar": "https://avatars.githubusercontent.com/u/184690175?v=4"
+ },
+ {
+ "url": "https://github.com/mansiruhil/fail-u-forward/pull/38",
+ "title": "Final: lockfile fix and dependency reset",
+ "repo": "mansiruhil/fail-u-forward",
+ "level": "level2",
+ "points": 7,
+ "created_at": "2025-07-24T10:01:37Z",
+ "updated_at": "2025-07-25T08:47:17Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-24T20:37:06Z",
+ "author_url": "https://github.com/SATVIKsynopsis",
+ "author_avatar": "https://avatars.githubusercontent.com/u/184690175?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/184690175?v=4",
+ "profile_url": "https://github.com/SATVIKsynopsis"
+ },
+ "Maheshh-S": {
+ "expectedPoints": 14,
+ "currentPoints": 14,
+ "levels": {
+ "level1": 1,
+ "level2": 0,
+ "level3": 1
+ },
+ "prs": [
+ {
+ "url": "https://github.com/MonishRaman/Placify-Smarter_Placements-Sharper_Talent/pull/25",
+ "title": "refactor: update README for clarity and consistency #24",
+ "repo": "MonishRaman/Placify-Smarter-Placements.-Sharper-Talent.-",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-23T08:11:32Z",
+ "updated_at": "2025-07-23T09:01:17Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-23T08:22:53Z",
+ "author_url": "https://github.com/Maheshh-S",
+ "author_avatar": "https://avatars.githubusercontent.com/u/129883017?v=4"
+ },
+ {
+ "url": "https://github.com/TanmayKalra09/SmartLog/pull/58",
+ "title": "1 Bug and 2 Feature Is pushed and checked locally",
+ "repo": "TanmayKalra09/SmartLog",
+ "level": "level3",
+ "points": 10,
+ "created_at": "2025-07-22T15:19:32Z",
+ "updated_at": "2025-07-23T06:20:37Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-22T22:24:22Z",
+ "author_url": "https://github.com/Maheshh-S",
+ "author_avatar": "https://avatars.githubusercontent.com/u/129883017?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/129883017?v=4",
+ "profile_url": "https://github.com/Maheshh-S"
+ },
+ "Arkit-k": {
+ "expectedPoints": 14,
+ "currentPoints": 14,
+ "levels": {
+ "level1": 0,
+ "level2": 2,
+ "level3": 0
+ },
+ "prs": [
+ {
+ "url": "https://github.com/NishantRana07/HrRoadways/pull/364",
+ "title": "image added",
+ "repo": "NishantRana07/HrRoadways",
+ "level": "level2",
+ "points": 7,
+ "created_at": "2025-07-25T06:29:09Z",
+ "updated_at": "2025-07-26T07:16:48Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-26T07:16:26Z",
+ "author_url": "https://github.com/Arkit-k",
+ "author_avatar": "https://avatars.githubusercontent.com/u/181547796?v=4"
+ },
+ {
+ "url": "https://github.com/NishantRana07/HrRoadways/pull/341",
+ "title": "hero section updated bus search updated added a swap logo ui updated",
+ "repo": "NishantRana07/HrRoadways",
+ "level": "level2",
+ "points": 7,
+ "created_at": "2025-07-23T07:03:24Z",
+ "updated_at": "2025-07-24T06:04:26Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-24T06:02:41Z",
+ "author_url": "https://github.com/Arkit-k",
+ "author_avatar": "https://avatars.githubusercontent.com/u/181547796?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/181547796?v=4",
+ "profile_url": "https://github.com/Arkit-k"
+ },
+ "learnerstudent-ctrl": {
+ "expectedPoints": 14,
+ "currentPoints": 14,
+ "levels": {
+ "level1": 0,
+ "level2": 2,
+ "level3": 0
+ },
+ "prs": [
+ {
+ "url": "https://github.com/NishantRana07/HrRoadways/pull/363",
+ "title": " Added a hover effect for the \"Back to Top\" button to enhance visual feedback. The button now smoothly lifts up and adds a subtle shadow when hovered, improving the overall user experience.",
+ "repo": "NishantRana07/HrRoadways",
+ "level": "level2",
+ "points": 7,
+ "created_at": "2025-07-24T18:42:39Z",
+ "updated_at": "2025-07-25T05:26:40Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-25T05:26:31Z",
+ "author_url": "https://github.com/learnerstudent-ctrl",
+ "author_avatar": "https://avatars.githubusercontent.com/u/124692743?v=4"
+ },
+ {
+ "url": "https://github.com/NishantRana07/HrRoadways/pull/321",
+ "title": "Update App.jsx",
+ "repo": "NishantRana07/HrRoadways",
+ "level": "level2",
+ "points": 7,
+ "created_at": "2025-07-22T17:44:47Z",
+ "updated_at": "2025-07-22T17:55:54Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-22T17:55:53Z",
+ "author_url": "https://github.com/learnerstudent-ctrl",
+ "author_avatar": "https://avatars.githubusercontent.com/u/124692743?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/124692743?v=4",
+ "profile_url": "https://github.com/learnerstudent-ctrl"
+ },
+ "Krishguptaaa": {
+ "expectedPoints": 14,
+ "currentPoints": 14,
+ "levels": {
+ "level1": 0,
+ "level2": 2,
+ "level3": 0
+ },
+ "prs": [
+ {
+ "url": "https://github.com/PRIYANSHU2026/DataSentience-AIML/pull/311",
+ "title": "Improved Model Accuracy with Work Hours Features + Manual Upsampling - Employee Attrition #220",
+ "repo": "PRIYANSHU2026/DataSentience-AIML",
+ "level": "level2",
+ "points": 7,
+ "created_at": "2025-07-31T19:41:33Z",
+ "updated_at": "2025-08-02T20:12:20Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-08-02T20:12:20Z",
+ "author_url": "https://github.com/Krishguptaaa",
+ "author_avatar": "https://avatars.githubusercontent.com/u/184387790?v=4"
+ },
+ {
+ "url": "https://github.com/PRIYANSHU2026/DataSentience-AIML/pull/225",
+ "title": "Medical-insurance-cost model for healthcare projects",
+ "repo": "PRIYANSHU2026/DataSentience-AIML",
+ "level": "level2",
+ "points": 7,
+ "created_at": "2025-07-25T20:37:19Z",
+ "updated_at": "2025-07-27T09:36:05Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-27T09:35:52Z",
+ "author_url": "https://github.com/Krishguptaaa",
+ "author_avatar": "https://avatars.githubusercontent.com/u/184387790?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/184387790?v=4",
+ "profile_url": "https://github.com/Krishguptaaa"
+ },
+ "shirshanag": {
+ "expectedPoints": 21,
+ "currentPoints": 14,
+ "levels": {
+ "level1": 0,
+ "level2": 3,
+ "level3": 0
+ },
+ "prs": [
+ {
+ "url": "https://github.com/PRIYANSHU2026/DataSentience-AIML/pull/303",
+ "title": "Feat/credit card fraud detection",
+ "repo": "PRIYANSHU2026/DataSentience-AIML",
+ "level": "level2",
+ "points": 7,
+ "created_at": "2025-07-31T14:12:43Z",
+ "updated_at": "2025-07-31T18:45:44Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-31T18:45:23Z",
+ "author_url": "https://github.com/shirshanag",
+ "author_avatar": "https://avatars.githubusercontent.com/u/154455132?v=4"
+ },
+ {
+ "url": "https://github.com/PRIYANSHU2026/DataSentience-AIML/pull/265",
+ "title": "Feat/spam predict",
+ "repo": "PRIYANSHU2026/DataSentience-AIML",
+ "level": "level2",
+ "points": 7,
+ "created_at": "2025-07-29T12:40:51Z",
+ "updated_at": "2025-07-29T12:45:19Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-29T12:44:15Z",
+ "author_url": "https://github.com/shirshanag",
+ "author_avatar": "https://avatars.githubusercontent.com/u/154455132?v=4"
+ },
+ {
+ "url": "https://github.com/UTSAVS26/PyVerse/pull/1502",
+ "title": "Add spam detector ml",
+ "repo": "UTSAVS26/PyVerse",
+ "level": "level2",
+ "points": 7,
+ "created_at": "2025-07-27T14:55:36Z",
+ "updated_at": "2025-07-28T06:20:38Z",
+ "state": "closed",
+ "merged": false,
+ "merged_at": null,
+ "author_url": "https://github.com/shirshanag",
+ "author_avatar": "https://avatars.githubusercontent.com/u/154455132?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/154455132?v=4",
+ "profile_url": "https://github.com/shirshanag"
+ },
+ "ud-ai": {
+ "expectedPoints": 14,
+ "currentPoints": 14,
+ "levels": {
+ "level1": 1,
+ "level2": 0,
+ "level3": 1
+ },
+ "prs": [
+ {
+ "url": "https://github.com/Rajkumarbhakta/Canvas/pull/9",
+ "title": "Enhancement: Add shape drawing functionality",
+ "repo": "Rajkumarbhakta/Canvas",
+ "level": "level3",
+ "points": 10,
+ "created_at": "2025-07-27T06:55:33Z",
+ "updated_at": "2025-07-31T11:50:11Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-27T17:19:58Z",
+ "author_url": "https://github.com/ud-ai",
+ "author_avatar": "https://avatars.githubusercontent.com/u/182862940?v=4"
+ },
+ {
+ "url": "https://github.com/Richajaishwal0/Trip_assistant/pull/31",
+ "title": "Enhancement of the phone number input field for better user experience and validation.",
+ "repo": "Richajaishwal0/Trip_assistant",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-26T15:42:04Z",
+ "updated_at": "2025-07-26T17:09:43Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-26T15:58:38Z",
+ "author_url": "https://github.com/ud-ai",
+ "author_avatar": "https://avatars.githubusercontent.com/u/182862940?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/182862940?v=4",
+ "profile_url": "https://github.com/ud-ai"
+ },
+ "IqraS-gif": {
+ "expectedPoints": 14,
+ "currentPoints": 14,
+ "levels": {
+ "level1": 0,
+ "level2": 2,
+ "level3": 0
+ },
+ "prs": [
+ {
+ "url": "https://github.com/eccentriccoder01/TalkHeal/pull/42",
+ "title": "Add quiz section and fix expander issue- In proper branch this time ",
+ "repo": "eccentriccoder01/TalkHeal",
+ "level": "level2",
+ "points": 7,
+ "created_at": "2025-07-25T16:37:59Z",
+ "updated_at": "2025-07-30T19:32:37Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-25T17:40:17Z",
+ "author_url": "https://github.com/IqraS-gif",
+ "author_avatar": "https://avatars.githubusercontent.com/u/176312267?v=4"
+ },
+ {
+ "url": "https://github.com/eccentriccoder01/TalkHeal/pull/34",
+ "title": "Add quiz section and fix expander issue",
+ "repo": "eccentriccoder01/TalkHeal",
+ "level": "level2",
+ "points": 7,
+ "created_at": "2025-07-25T03:50:26Z",
+ "updated_at": "2025-07-30T19:31:03Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-25T17:40:25Z",
+ "author_url": "https://github.com/IqraS-gif",
+ "author_avatar": "https://avatars.githubusercontent.com/u/176312267?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/176312267?v=4",
+ "profile_url": "https://github.com/IqraS-gif"
+ },
+ "cherylpinto": {
+ "expectedPoints": 14,
+ "currentPoints": 14,
+ "levels": {
+ "level1": 0,
+ "level2": 2,
+ "level3": 0
+ },
+ "prs": [
+ {
+ "url": "https://github.com/sristy17/next-payroll/pull/52",
+ "title": "Feature/settings issue#13",
+ "repo": "sristy17/next-payroll",
+ "level": "level2",
+ "points": 7,
+ "created_at": "2025-07-29T14:39:20Z",
+ "updated_at": "2025-08-02T17:24:17Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-08-02T15:59:14Z",
+ "author_url": "https://github.com/cherylpinto",
+ "author_avatar": "https://avatars.githubusercontent.com/u/191489817?v=4"
+ },
+ {
+ "url": "https://github.com/swarooppatilx/bit-by-query/pull/23",
+ "title": "Fixes #22 : Added Validations For Register/Login Page",
+ "repo": "swarooppatilx/bit-by-query",
+ "level": "level2",
+ "points": 7,
+ "created_at": "2025-07-25T21:09:20Z",
+ "updated_at": "2025-07-27T17:01:41Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-27T17:01:28Z",
+ "author_url": "https://github.com/cherylpinto",
+ "author_avatar": "https://avatars.githubusercontent.com/u/191489817?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/191489817?v=4",
+ "profile_url": "https://github.com/cherylpinto"
+ },
+ "Sanmathi-Sedhupathi": {
+ "expectedPoints": 14,
+ "currentPoints": 14,
+ "levels": {
+ "level1": 0,
+ "level2": 2,
+ "level3": 0
+ },
+ "prs": [
+ {
+ "url": "https://github.com/sristy17/next-payroll/pull/34",
+ "title": "Build The Statistics Section in the Dashboard",
+ "repo": "sristy17/next-payroll",
+ "level": "level2",
+ "points": 7,
+ "created_at": "2025-07-26T08:59:59Z",
+ "updated_at": "2025-07-27T16:00:34Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-27T16:00:22Z",
+ "author_url": "https://github.com/Sanmathi-Sedhupathi",
+ "author_avatar": "https://avatars.githubusercontent.com/u/172039697?v=4"
+ },
+ {
+ "url": "https://github.com/VJLIVE/Athletix/pull/46",
+ "title": "Tournaments page for Organization - View",
+ "repo": "vjlive/athletix",
+ "level": "level2",
+ "points": 7,
+ "created_at": "2025-07-26T16:07:46Z",
+ "updated_at": "2025-08-02T07:03:53Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-08-02T07:03:53Z",
+ "author_url": "https://github.com/Sanmathi-Sedhupathi",
+ "author_avatar": "https://avatars.githubusercontent.com/u/172039697?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/172039697?v=4",
+ "profile_url": "https://github.com/Sanmathi-Sedhupathi"
+ },
+ "Fatimibee": {
+ "expectedPoints": 14,
+ "currentPoints": 14,
+ "levels": {
+ "level1": 0,
+ "level2": 2,
+ "level3": 0
+ },
+ "prs": [
+ {
+ "url": "https://github.com/UTSAVS26/PyVerse/pull/1526",
+ "title": "Added Garbage Detection using YOLOv8 under Image processing",
+ "repo": "UTSAVS26/PyVerse",
+ "level": "level2",
+ "points": 7,
+ "created_at": "2025-07-29T16:32:21Z",
+ "updated_at": "2025-08-01T07:57:45Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-08-01T07:57:34Z",
+ "author_url": "https://github.com/Fatimibee",
+ "author_avatar": "https://avatars.githubusercontent.com/u/187187722?v=4"
+ },
+ {
+ "url": "https://github.com/UTSAVS26/PyVerse/pull/1471",
+ "title": "Internship Job Scam Detection is done using machine learning",
+ "repo": "UTSAVS26/PyVerse",
+ "level": "level2",
+ "points": 7,
+ "created_at": "2025-07-24T06:16:38Z",
+ "updated_at": "2025-07-28T08:22:35Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-28T08:22:08Z",
+ "author_url": "https://github.com/Fatimibee",
+ "author_avatar": "https://avatars.githubusercontent.com/u/187187722?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/187187722?v=4",
+ "profile_url": "https://github.com/Fatimibee"
+ },
+ "Prabathvsv": {
+ "expectedPoints": 14,
+ "currentPoints": 14,
+ "levels": {
+ "level1": 0,
+ "level2": 2,
+ "level3": 0
+ },
+ "prs": [
+ {
+ "url": "https://github.com/VAIBHAVBABELE/vaibhavbabele.github.io/pull/188",
+ "title": "Refactored Internal CSS to External Files for Teams and Contact Us Sections; Fixed Homepage Alignment Issues",
+ "repo": "VAIBHAVBABELE/vaibhavbabele.github.io",
+ "level": "level2",
+ "points": 7,
+ "created_at": "2025-07-30T04:46:32Z",
+ "updated_at": "2025-07-31T06:31:47Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-30T05:09:02Z",
+ "author_url": "https://github.com/Prabathvsv",
+ "author_avatar": "https://avatars.githubusercontent.com/u/141515238?v=4"
+ },
+ {
+ "url": "https://github.com/VAIBHAVBABELE/vaibhavbabele.github.io/pull/150",
+ "title": "Added Contact Us Page & Team Showcase to All Pages with Responsive Design",
+ "repo": "VAIBHAVBABELE/vaibhavbabele.github.io",
+ "level": "level2",
+ "points": 7,
+ "created_at": "2025-07-27T11:09:48Z",
+ "updated_at": "2025-07-27T14:17:21Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-27T14:16:37Z",
+ "author_url": "https://github.com/Prabathvsv",
+ "author_avatar": "https://avatars.githubusercontent.com/u/141515238?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/141515238?v=4",
+ "profile_url": "https://github.com/Prabathvsv"
+ },
+ "Rashi-Dwivedi1812": {
+ "expectedPoints": 14,
+ "currentPoints": 14,
+ "levels": {
+ "level1": 1,
+ "level2": 0,
+ "level3": 1
+ },
+ "prs": [
+ {
+ "url": "https://github.com/openml-stack/SentiLog-AI/pull/19",
+ "title": "Analyze page added",
+ "repo": "openml-stack/SentiLog-AI",
+ "level": "level3",
+ "points": 10,
+ "created_at": "2025-07-22T19:06:40Z",
+ "updated_at": "2025-07-23T12:06:34Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-23T12:05:56Z",
+ "author_url": "https://github.com/Rashi-Dwivedi1812",
+ "author_avatar": "https://avatars.githubusercontent.com/u/191844039?v=4"
+ },
+ {
+ "url": "https://github.com/openml-stack/SentiLog-AI/pull/10",
+ "title": "Journal page improved",
+ "repo": "openml-stack/SentiLog-AI",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-22T11:21:42Z",
+ "updated_at": "2025-07-22T16:08:30Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-22T15:55:12Z",
+ "author_url": "https://github.com/Rashi-Dwivedi1812",
+ "author_avatar": "https://avatars.githubusercontent.com/u/191844039?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/191844039?v=4",
+ "profile_url": "https://github.com/Rashi-Dwivedi1812"
+ },
+ "jarvis1704": {
+ "expectedPoints": 14,
+ "currentPoints": 14,
+ "levels": {
+ "level1": 0,
+ "level2": 2,
+ "level3": 0
+ },
+ "prs": [
+ {
+ "url": "https://github.com/yuvrajsinghgmx/ShopSmart/pull/330",
+ "title": "Created User Profile Screen Based on the mockup",
+ "repo": "yuvrajsinghgmx/ShopSmart",
+ "level": "level2",
+ "points": 7,
+ "created_at": "2025-07-31T16:36:36Z",
+ "updated_at": "2025-07-31T18:03:20Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-31T17:56:37Z",
+ "author_url": "https://github.com/jarvis1704",
+ "author_avatar": "https://avatars.githubusercontent.com/u/112458910?v=4"
+ },
+ {
+ "url": "https://github.com/yuvrajsinghgmx/ShopSmart/pull/322",
+ "title": "feature: added Login Screen based on mockup",
+ "repo": "yuvrajsinghgmx/ShopSmart",
+ "level": "level2",
+ "points": 7,
+ "created_at": "2025-07-30T16:51:36Z",
+ "updated_at": "2025-07-31T06:19:23Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-31T06:19:06Z",
+ "author_url": "https://github.com/jarvis1704",
+ "author_avatar": "https://avatars.githubusercontent.com/u/112458910?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/112458910?v=4",
+ "profile_url": "https://github.com/jarvis1704"
+ },
+ "piyusshkumar": {
+ "expectedPoints": 12,
+ "currentPoints": 12,
+ "levels": {
+ "level1": 3,
+ "level2": 0,
+ "level3": 0
+ },
+ "prs": [
+ {
+ "url": "https://github.com/Abhishek2634/Foodie/pull/62",
+ "title": " Fixed issue #22 Sign In / Login Popup Doesn’t Dismiss on Outside Click ",
+ "repo": "Abhishek2634/Foodie",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-23T09:48:07Z",
+ "updated_at": "2025-08-02T10:52:36Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-24T15:56:49Z",
+ "author_url": "https://github.com/piyusshkumar",
+ "author_avatar": "https://avatars.githubusercontent.com/u/194398476?v=4"
+ },
+ {
+ "url": "https://github.com/Amarjha01/InfantCareCompass/pull/135",
+ "title": "Updated Middleware with Standard token format and improved Structure",
+ "repo": "Amarjha01/InfantCareCompass",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-27T17:03:30Z",
+ "updated_at": "2025-07-28T15:02:09Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-28T15:01:53Z",
+ "author_url": "https://github.com/piyusshkumar",
+ "author_avatar": "https://avatars.githubusercontent.com/u/194398476?v=4"
+ },
+ {
+ "url": "https://github.com/openml-stack/SentiLog-AI/pull/165",
+ "title": "Updated Middleware with Standard token format and improved Structure",
+ "repo": "openml-stack/SentiLog-AI",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-08-02T18:06:03Z",
+ "updated_at": "2025-08-03T06:19:16Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-08-03T06:18:35Z",
+ "author_url": "https://github.com/piyusshkumar",
+ "author_avatar": "https://avatars.githubusercontent.com/u/194398476?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/194398476?v=4",
+ "profile_url": "https://github.com/piyusshkumar"
+ },
+ "lucifer-990": {
+ "expectedPoints": 12,
+ "currentPoints": 12,
+ "levels": {
+ "level1": 3,
+ "level2": 0,
+ "level3": 0
+ },
+ "prs": [
+ {
+ "url": "https://github.com/Adarsh-Chaubey03/TravelGrid/pull/353",
+ "title": "Replaced alert with toast messages issues #319",
+ "repo": "Adarsh-Chaubey03/TravelGrid",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-30T04:01:05Z",
+ "updated_at": "2025-07-30T04:29:20Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-30T04:29:00Z",
+ "author_url": "https://github.com/lucifer-990",
+ "author_avatar": "https://avatars.githubusercontent.com/u/183830645?v=4"
+ },
+ {
+ "url": "https://github.com/Adarsh-Chaubey03/TravelGrid/pull/352",
+ "title": "fixed margin and padding issue in home page issue #318",
+ "repo": "Adarsh-Chaubey03/TravelGrid",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-30T03:39:45Z",
+ "updated_at": "2025-07-30T04:46:07Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-30T04:28:33Z",
+ "author_url": "https://github.com/lucifer-990",
+ "author_avatar": "https://avatars.githubusercontent.com/u/183830645?v=4"
+ },
+ {
+ "url": "https://github.com/Amarjha01/InfantCareCompass/pull/189",
+ "title": "Fix: Resolved Margin Issue Below Navbar for Mobile and Desktop Views",
+ "repo": "Amarjha01/InfantCareCompass",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-08-03T04:50:12Z",
+ "updated_at": "2025-08-03T06:12:53Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-08-03T06:11:54Z",
+ "author_url": "https://github.com/lucifer-990",
+ "author_avatar": "https://avatars.githubusercontent.com/u/183830645?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/183830645?v=4",
+ "profile_url": "https://github.com/lucifer-990"
+ },
+ "anmolsah": {
+ "expectedPoints": 12,
+ "currentPoints": 12,
+ "levels": {
+ "level1": 3,
+ "level2": 0,
+ "level3": 0
+ },
+ "prs": [
+ {
+ "url": "https://github.com/Akki-jaiswal/pong-game/pull/16",
+ "title": "Fix #13: Change ball color to blue",
+ "repo": "Akki-jaiswal/pong-game",
+ "level": null,
+ "points": 0,
+ "created_at": "2025-07-22T13:53:22Z",
+ "updated_at": "2025-07-23T02:00:48Z",
+ "state": "closed",
+ "merged": false,
+ "merged_at": null,
+ "author_url": "https://github.com/anmolsah",
+ "author_avatar": "https://avatars.githubusercontent.com/u/113588714?v=4"
+ },
+ {
+ "url": "https://github.com/Ayushjhawar8/Flavor-ai/pull/31",
+ "title": "docs: add GSSoC'25 banner at the top of README",
+ "repo": "Ayushjhawar8/Flavor-ai",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-23T15:57:52Z",
+ "updated_at": "2025-07-27T10:03:21Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-25T09:24:07Z",
+ "author_url": "https://github.com/anmolsah",
+ "author_avatar": "https://avatars.githubusercontent.com/u/113588714?v=4"
+ },
+ {
+ "url": "https://github.com/MonishRaman/Placify-Smarter_Placements-Sharper_Talent/pull/19",
+ "title": "chore: update favicon and page title for Placify branding",
+ "repo": "MonishRaman/Placify-Smarter-Placements.-Sharper-Talent.-",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-22T15:48:46Z",
+ "updated_at": "2025-07-22T19:20:56Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-22T19:16:36Z",
+ "author_url": "https://github.com/anmolsah",
+ "author_avatar": "https://avatars.githubusercontent.com/u/113588714?v=4"
+ },
+ {
+ "url": "https://github.com/MonishRaman/Placify-Smarter_Placements-Sharper_Talent/pull/17",
+ "title": "feat: create reusable Footer component and apply globally",
+ "repo": "MonishRaman/Placify-Smarter-Placements.-Sharper-Talent.-",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-22T14:23:15Z",
+ "updated_at": "2025-07-23T01:58:33Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-22T14:57:08Z",
+ "author_url": "https://github.com/anmolsah",
+ "author_avatar": "https://avatars.githubusercontent.com/u/113588714?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/113588714?v=4",
+ "profile_url": "https://github.com/anmolsah"
+ },
+ "VarshithaVemula": {
+ "expectedPoints": 12,
+ "currentPoints": 12,
+ "levels": {
+ "level1": 3,
+ "level2": 0,
+ "level3": 0
+ },
+ "prs": [
+ {
+ "url": "https://github.com/InnoWebLabs/Vehigo/pull/95",
+ "title": "Ask a question page added",
+ "repo": "InnoWebLabs/Vehigo",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-26T09:10:18Z",
+ "updated_at": "2025-07-26T09:41:38Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-26T09:41:38Z",
+ "author_url": "https://github.com/VarshithaVemula",
+ "author_avatar": "https://avatars.githubusercontent.com/u/176684317?v=4"
+ },
+ {
+ "url": "https://github.com/InnoWebLabs/Vehigo/pull/93",
+ "title": "Terms and Conditions page added",
+ "repo": "InnoWebLabs/Vehigo",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-26T06:45:13Z",
+ "updated_at": "2025-07-26T07:22:57Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-26T07:22:57Z",
+ "author_url": "https://github.com/VarshithaVemula",
+ "author_avatar": "https://avatars.githubusercontent.com/u/176684317?v=4"
+ },
+ {
+ "url": "https://github.com/InnoWebLabs/Vehigo/pull/82",
+ "title": "Updated login page and Signup page ",
+ "repo": "InnoWebLabs/Vehigo",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-25T17:21:28Z",
+ "updated_at": "2025-07-25T19:37:33Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-25T19:04:24Z",
+ "author_url": "https://github.com/VarshithaVemula",
+ "author_avatar": "https://avatars.githubusercontent.com/u/176684317?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/176684317?v=4",
+ "profile_url": "https://github.com/VarshithaVemula"
+ },
+ "shreya-ramesh": {
+ "expectedPoints": 12,
+ "currentPoints": 12,
+ "levels": {
+ "level1": 3,
+ "level2": 0,
+ "level3": 0
+ },
+ "prs": [
+ {
+ "url": "https://github.com/Dipanita45/HEALCONNECT/pull/38",
+ "title": "Added CONTRIBUTING.md and linked it in README",
+ "repo": "Dipanita45/HEALCONNECT",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-27T04:18:49Z",
+ "updated_at": "2025-07-27T09:50:30Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-27T09:49:54Z",
+ "author_url": "https://github.com/shreya-ramesh",
+ "author_avatar": "https://avatars.githubusercontent.com/u/214097032?v=4"
+ },
+ {
+ "url": "https://github.com/OpenTekHub/otploginfrontend/pull/16",
+ "title": "Added CONTRIBUTING.md and linked it in README",
+ "repo": "OpenTekHub/otploginfrontend",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-27T04:29:30Z",
+ "updated_at": "2025-07-28T05:42:41Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-28T05:41:58Z",
+ "author_url": "https://github.com/shreya-ramesh",
+ "author_avatar": "https://avatars.githubusercontent.com/u/214097032?v=4"
+ },
+ {
+ "url": "https://github.com/mansiruhil/fail-u-forward/pull/77",
+ "title": "Added CONTRIBUTING.md and linked it in README",
+ "repo": "mansiruhil/fail-u-forward",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-27T04:40:08Z",
+ "updated_at": "2025-07-28T19:17:39Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-28T08:58:11Z",
+ "author_url": "https://github.com/shreya-ramesh",
+ "author_avatar": "https://avatars.githubusercontent.com/u/214097032?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/214097032?v=4",
+ "profile_url": "https://github.com/shreya-ramesh"
+ },
+ "Jai-76": {
+ "expectedPoints": 12,
+ "currentPoints": 12,
+ "levels": {
+ "level1": 3,
+ "level2": 0,
+ "level3": 0
+ },
+ "prs": [
+ {
+ "url": "https://github.com/Gagandeep-2003/driver-drowsiness-detection-system/pull/51",
+ "title": "Create Add License and Update README",
+ "repo": "Gagandeep-2003/driver-drowsiness-detection-system",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-29T08:16:43Z",
+ "updated_at": "2025-08-01T04:18:54Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-08-01T04:18:54Z",
+ "author_url": "https://github.com/Jai-76",
+ "author_avatar": "https://avatars.githubusercontent.com/u/212874740?v=4"
+ },
+ {
+ "url": "https://github.com/SurajSG23/PrepBuddy/pull/22",
+ "title": "Create Updated file",
+ "repo": "SurajSG23/PrepBuddy",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-24T13:30:42Z",
+ "updated_at": "2025-07-24T13:39:27Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-24T13:38:52Z",
+ "author_url": "https://github.com/Jai-76",
+ "author_avatar": "https://avatars.githubusercontent.com/u/212874740?v=4"
+ },
+ {
+ "url": "https://github.com/Agarwalvidu/ArdhNaariShakti_Taara_Frontend/pull/59",
+ "title": "Create Expand job Column",
+ "repo": "Agarwalvidu/ArdhNaariShakti_Taara_Frontend",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-29T10:01:30Z",
+ "updated_at": "2025-07-30T18:24:52Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-30T18:24:52Z",
+ "author_url": "https://github.com/Jai-76",
+ "author_avatar": "https://avatars.githubusercontent.com/u/212874740?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/212874740?v=4",
+ "profile_url": "https://github.com/Jai-76"
+ },
+ "Chandana-2024": {
+ "expectedPoints": 12,
+ "currentPoints": 12,
+ "levels": {
+ "level1": 3,
+ "level2": 0,
+ "level3": 0
+ },
+ "prs": [
+ {
+ "url": "https://github.com/GauravKarakoti/Weather-API/pull/166",
+ "title": "Fix: Validate city names allowing letters, accents, hyphens, apostrophes (fixes #145)",
+ "repo": "GauravKarakoti/Weather-API",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-22T08:30:32Z",
+ "updated_at": "2025-07-23T11:06:13Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-23T11:05:50Z",
+ "author_url": "https://github.com/Chandana-2024",
+ "author_avatar": "https://avatars.githubusercontent.com/u/181734950?v=4"
+ },
+ {
+ "url": "https://github.com/GauravKarakoti/Weather-API/pull/165",
+ "title": "✅ Improved city name validation with clear error messaging (Fixes #164)",
+ "repo": "GauravKarakoti/Weather-API",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-22T06:48:55Z",
+ "updated_at": "2025-07-22T07:34:55Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-22T07:34:54Z",
+ "author_url": "https://github.com/Chandana-2024",
+ "author_avatar": "https://avatars.githubusercontent.com/u/181734950?v=4"
+ },
+ {
+ "url": "https://github.com/yuvrajsinghgmx/ShopSmart/pull/295",
+ "title": "Update readme 269",
+ "repo": "yuvrajsinghgmx/ShopSmart",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-24T15:39:15Z",
+ "updated_at": "2025-07-24T21:11:27Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-24T21:10:08Z",
+ "author_url": "https://github.com/Chandana-2024",
+ "author_avatar": "https://avatars.githubusercontent.com/u/181734950?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/181734950?v=4",
+ "profile_url": "https://github.com/Chandana-2024"
+ },
+ "Rupali-gituser": {
+ "expectedPoints": 12,
+ "currentPoints": 12,
+ "levels": {
+ "level1": 3,
+ "level2": 0,
+ "level3": 0
+ },
+ "prs": [
+ {
+ "url": "https://github.com/Kritika75/TheCawnporeMag.github.io/pull/281",
+ "title": "Add nav-bar on FAQ page",
+ "repo": "Kritika75/TheCawnporeMag.github.io",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-29T15:33:38Z",
+ "updated_at": "2025-07-30T04:28:58Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-30T04:28:58Z",
+ "author_url": "https://github.com/Rupali-gituser",
+ "author_avatar": "https://avatars.githubusercontent.com/u/197719667?v=4"
+ },
+ {
+ "url": "https://github.com/Kritika75/TheCawnporeMag.github.io/pull/215",
+ "title": "Added Missing Nav-Links and Styled Navbar",
+ "repo": "Kritika75/TheCawnporeMag.github.io",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-27T15:24:21Z",
+ "updated_at": "2025-07-29T10:30:49Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-29T10:30:49Z",
+ "author_url": "https://github.com/Rupali-gituser",
+ "author_avatar": "https://avatars.githubusercontent.com/u/197719667?v=4"
+ },
+ {
+ "url": "https://github.com/sampadatiwari30/DeshDarshan/pull/141",
+ "title": "Added Missing image to Slideshow",
+ "repo": "sampadatiwari30/DeshDarshan",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-26T09:27:26Z",
+ "updated_at": "2025-07-31T03:23:39Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-31T03:23:19Z",
+ "author_url": "https://github.com/Rupali-gituser",
+ "author_avatar": "https://avatars.githubusercontent.com/u/197719667?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/197719667?v=4",
+ "profile_url": "https://github.com/Rupali-gituser"
+ },
+ "Tanyasharma71": {
+ "expectedPoints": 12,
+ "currentPoints": 12,
+ "levels": {
+ "level1": 3,
+ "level2": 0,
+ "level3": 0
+ },
+ "prs": [
+ {
+ "url": "https://github.com/mehak-ui/Student-Portal/pull/9",
+ "title": "Add mit license",
+ "repo": "mehak-ui/Student-Portal",
+ "level": null,
+ "points": 0,
+ "created_at": "2025-07-26T14:40:49Z",
+ "updated_at": "2025-07-31T09:51:47Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-31T09:51:47Z",
+ "author_url": "https://github.com/Tanyasharma71",
+ "author_avatar": "https://avatars.githubusercontent.com/u/208266043?v=4"
+ },
+ {
+ "url": "https://github.com/Naveenkumar30838/Housify/pull/9",
+ "title": "add MIT License file to the project",
+ "repo": "Naveenkumar30838/Housify",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-28T14:13:08Z",
+ "updated_at": "2025-07-28T18:52:38Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-28T18:52:38Z",
+ "author_url": "https://github.com/Tanyasharma71",
+ "author_avatar": "https://avatars.githubusercontent.com/u/208266043?v=4"
+ },
+ {
+ "url": "https://github.com/Rajkumarbhakta/Canvas/pull/8",
+ "title": "Fix favicon sizes in manifest and convert instruction file to Markdown",
+ "repo": "Rajkumarbhakta/Canvas",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-26T10:54:32Z",
+ "updated_at": "2025-07-31T11:48:59Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-26T12:29:57Z",
+ "author_url": "https://github.com/Tanyasharma71",
+ "author_avatar": "https://avatars.githubusercontent.com/u/208266043?v=4"
+ },
+ {
+ "url": "https://github.com/Agarwalvidu/ArdhNaariShakti_Taara_Frontend/pull/17",
+ "title": "Add detailed README.md for project documentation",
+ "repo": "Agarwalvidu/ArdhNaariShakti_Taara_Frontend",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-24T14:22:33Z",
+ "updated_at": "2025-07-28T19:38:02Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-28T19:38:02Z",
+ "author_url": "https://github.com/Tanyasharma71",
+ "author_avatar": "https://avatars.githubusercontent.com/u/208266043?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/208266043?v=4",
+ "profile_url": "https://github.com/Tanyasharma71"
+ },
+ "Sougata2006": {
+ "expectedPoints": 12,
+ "currentPoints": 12,
+ "levels": {
+ "level1": 3,
+ "level2": 0,
+ "level3": 0
+ },
+ "prs": [
+ {
+ "url": "https://github.com/ruchikakengal/WebDevIn100_Days/pull/371",
+ "title": "Add Real-Time World Clock with Smooth UI and Responsive",
+ "repo": "ruchikakengal/WebDevIn100_Days",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-28T16:29:45Z",
+ "updated_at": "2025-07-29T08:57:21Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-29T08:57:21Z",
+ "author_url": "https://github.com/Sougata2006",
+ "author_avatar": "https://avatars.githubusercontent.com/u/177567075?v=4"
+ },
+ {
+ "url": "https://github.com/rutikakengal/100DAYS_OF_100WEBPROJECTS/pull/288",
+ "title": "Add Email Validator on Day20",
+ "repo": "rutikakengal/100DAYS_OF_100WEBPROJECTS",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-28T09:26:00Z",
+ "updated_at": "2025-07-28T09:31:08Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-28T09:30:48Z",
+ "author_url": "https://github.com/Sougata2006",
+ "author_avatar": "https://avatars.githubusercontent.com/u/177567075?v=4"
+ },
+ {
+ "url": "https://github.com/openml-stack/SentiLog-AI/pull/58",
+ "title": "📄 Improve README with Core Features Section and MIT License Info",
+ "repo": "openml-stack/SentiLog-AI",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-25T03:04:50Z",
+ "updated_at": "2025-07-25T19:13:52Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-25T19:13:20Z",
+ "author_url": "https://github.com/Sougata2006",
+ "author_avatar": "https://avatars.githubusercontent.com/u/177567075?v=4"
+ },
+ {
+ "url": "https://github.com/ygowthamr/WhitePaper/pull/171",
+ "title": " Add Dedicated License Page with Full Features",
+ "repo": "ygowthamr/WhitePaper",
+ "level": null,
+ "points": 0,
+ "created_at": "2025-07-26T08:39:39Z",
+ "updated_at": "2025-07-27T18:04:59Z",
+ "state": "closed",
+ "merged": false,
+ "merged_at": null,
+ "author_url": "https://github.com/Sougata2006",
+ "author_avatar": "https://avatars.githubusercontent.com/u/177567075?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/177567075?v=4",
+ "profile_url": "https://github.com/Sougata2006"
+ },
+ "raunak-iiitian": {
+ "expectedPoints": 12,
+ "currentPoints": 12,
+ "levels": {
+ "level1": 3,
+ "level2": 0,
+ "level3": 0
+ },
+ "prs": [
+ {
+ "url": "https://github.com/rutikakengal/100DAYS_OF_100WEBPROJECTS/pull/268",
+ "title": "Fixed folder name inconsistencies, files mismatched and missing files.",
+ "repo": "rutikakengal/100DAYS_OF_100WEBPROJECTS",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-27T17:14:24Z",
+ "updated_at": "2025-07-28T08:43:50Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-28T08:43:30Z",
+ "author_url": "https://github.com/raunak-iiitian",
+ "author_avatar": "https://avatars.githubusercontent.com/u/179250267?v=4"
+ },
+ {
+ "url": "https://github.com/rutikakengal/100DAYS_OF_100WEBPROJECTS/pull/261",
+ "title": "Added World Clock DAY 16",
+ "repo": "rutikakengal/100DAYS_OF_100WEBPROJECTS",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-27T15:54:56Z",
+ "updated_at": "2025-07-27T16:07:39Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-27T16:07:19Z",
+ "author_url": "https://github.com/raunak-iiitian",
+ "author_avatar": "https://avatars.githubusercontent.com/u/179250267?v=4"
+ },
+ {
+ "url": "https://github.com/rutikakengal/100DAYS_OF_100WEBPROJECTS/pull/76",
+ "title": "Adding my project (Day 4)",
+ "repo": "rutikakengal/100DAYS_OF_100WEBPROJECTS",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-23T16:10:51Z",
+ "updated_at": "2025-07-24T08:06:30Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-24T08:06:07Z",
+ "author_url": "https://github.com/raunak-iiitian",
+ "author_avatar": "https://avatars.githubusercontent.com/u/179250267?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/179250267?v=4",
+ "profile_url": "https://github.com/raunak-iiitian"
+ },
+ "Adez017": {
+ "expectedPoints": 12,
+ "currentPoints": 12,
+ "levels": {
+ "level1": 3,
+ "level2": 0,
+ "level3": 0
+ },
+ "prs": [
+ {
+ "url": "https://github.com/eccentriccoder01/TalkHeal/pull/76",
+ "title": "Added Templates",
+ "repo": "eccentriccoder01/TalkHeal",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-31T11:20:55Z",
+ "updated_at": "2025-08-01T14:55:55Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-31T12:18:56Z",
+ "author_url": "https://github.com/Adez017",
+ "author_avatar": "https://avatars.githubusercontent.com/u/142787780?v=4"
+ },
+ {
+ "url": "https://github.com/VaibhavCodeClub/term/pull/26",
+ "title": "Created Issue Template for bug_report, feature_request,Blank Issue",
+ "repo": "sapatevaibhav/term",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-27T12:37:17Z",
+ "updated_at": "2025-07-29T08:18:23Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-29T08:17:53Z",
+ "author_url": "https://github.com/Adez017",
+ "author_avatar": "https://avatars.githubusercontent.com/u/142787780?v=4"
+ },
+ {
+ "url": "https://github.com/VaibhavCodeClub/term/pull/22",
+ "title": "Added `CODE OF CONDUCT` ",
+ "repo": "sapatevaibhav/term",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-26T17:05:35Z",
+ "updated_at": "2025-08-01T20:27:10Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-26T18:30:45Z",
+ "author_url": "https://github.com/Adez017",
+ "author_avatar": "https://avatars.githubusercontent.com/u/142787780?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/142787780?v=4",
+ "profile_url": "https://github.com/Adez017"
+ },
+ "Swara595": {
+ "expectedPoints": 12,
+ "currentPoints": 12,
+ "levels": {
+ "level1": 3,
+ "level2": 0,
+ "level3": 0
+ },
+ "prs": [
+ {
+ "url": "https://github.com/sampadatiwari30/DeshDarshan/pull/202",
+ "title": "✨ Added Top Destinations section",
+ "repo": "sampadatiwari30/DeshDarshan",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-28T15:15:57Z",
+ "updated_at": "2025-07-29T17:36:54Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-29T17:35:55Z",
+ "author_url": "https://github.com/Swara595",
+ "author_avatar": "https://avatars.githubusercontent.com/u/179320409?v=4"
+ },
+ {
+ "url": "https://github.com/sampadatiwari30/DeshDarshan/pull/145",
+ "title": "Enhance: Typography using Google Fonts Poppins and Montserrat (Fixes #2)",
+ "repo": "sampadatiwari30/DeshDarshan",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-26T15:17:58Z",
+ "updated_at": "2025-07-27T13:56:42Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-27T13:24:32Z",
+ "author_url": "https://github.com/Swara595",
+ "author_avatar": "https://avatars.githubusercontent.com/u/179320409?v=4"
+ },
+ {
+ "url": "https://github.com/sampadatiwari30/DeshDarshan/pull/144",
+ "title": "Add: CONTRIBUTING.md file with guidelines (Fixes #1)",
+ "repo": "sampadatiwari30/DeshDarshan",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-26T15:13:10Z",
+ "updated_at": "2025-07-26T15:35:44Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-26T15:35:27Z",
+ "author_url": "https://github.com/Swara595",
+ "author_avatar": "https://avatars.githubusercontent.com/u/179320409?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/179320409?v=4",
+ "profile_url": "https://github.com/Swara595"
+ },
+ "SaniyaArora03": {
+ "expectedPoints": 11,
+ "currentPoints": 11,
+ "levels": {
+ "level1": 1,
+ "level2": 1,
+ "level3": 0
+ },
+ "prs": [
+ {
+ "url": "https://github.com/abhisek2004/Dev-Elevate/pull/18",
+ "title": "Add login flow demo GIF in README",
+ "repo": "abhisek2004/Dev-Elevate",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-22T10:27:51Z",
+ "updated_at": "2025-07-23T13:28:37Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-22T19:26:51Z",
+ "author_url": "https://github.com/SaniyaArora03",
+ "author_avatar": "https://avatars.githubusercontent.com/u/148441591?v=4"
+ },
+ {
+ "url": "https://github.com/Kritika75/TheCawnporeMag.github.io/pull/17",
+ "title": "Enhanced About page: Added clickable cards for landmarks",
+ "repo": "Kritika75/TheCawnporeMag.github.io",
+ "level": "level2",
+ "points": 7,
+ "created_at": "2025-07-22T08:48:58Z",
+ "updated_at": "2025-07-22T09:20:35Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-22T09:18:41Z",
+ "author_url": "https://github.com/SaniyaArora03",
+ "author_avatar": "https://avatars.githubusercontent.com/u/148441591?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/148441591?v=4",
+ "profile_url": "https://github.com/SaniyaArora03"
+ },
+ "Surge77": {
+ "expectedPoints": 11,
+ "currentPoints": 11,
+ "levels": {
+ "level1": 1,
+ "level2": 1,
+ "level3": 0
+ },
+ "prs": [
+ {
+ "url": "https://github.com/Abhishek2634/Foodie/pull/237",
+ "title": "[DOCS]: add LEARN.md and link it in README and CONTRIBUTING",
+ "repo": "Abhishek2634/Foodie",
+ "level": "level2",
+ "points": 7,
+ "created_at": "2025-08-02T10:43:17Z",
+ "updated_at": "2025-08-03T03:35:12Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-08-02T11:43:43Z",
+ "author_url": "https://github.com/Surge77",
+ "author_avatar": "https://avatars.githubusercontent.com/u/133491633?v=4"
+ },
+ {
+ "url": "https://github.com/Kritika75/TheCawnporeMag.github.io/pull/265",
+ "title": "docs: add LEARN.md with beginner contributor guide",
+ "repo": "Kritika75/TheCawnporeMag.github.io",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-29T08:00:25Z",
+ "updated_at": "2025-07-29T08:03:02Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-29T08:03:02Z",
+ "author_url": "https://github.com/Surge77",
+ "author_avatar": "https://avatars.githubusercontent.com/u/133491633?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/133491633?v=4",
+ "profile_url": "https://github.com/Surge77"
+ },
+ "Abhishek-Verma0": {
+ "expectedPoints": 11,
+ "currentPoints": 11,
+ "levels": {
+ "level1": 1,
+ "level2": 1,
+ "level3": 0
+ },
+ "prs": [
+ {
+ "url": "https://github.com/Abhishek2634/Foodie/pull/126",
+ "title": "Add/pull request template for issue#116",
+ "repo": "Abhishek2634/Foodie",
+ "level": "level2",
+ "points": 7,
+ "created_at": "2025-07-26T16:51:09Z",
+ "updated_at": "2025-08-02T11:02:02Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-26T17:32:41Z",
+ "author_url": "https://github.com/Abhishek-Verma0",
+ "author_avatar": "https://avatars.githubusercontent.com/u/144248104?v=4"
+ },
+ {
+ "url": "https://github.com/UTSAVS26/PyVerse/pull/1504",
+ "title": "Add/ip changer for issue #1496",
+ "repo": "UTSAVS26/PyVerse",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-27T17:06:40Z",
+ "updated_at": "2025-07-29T08:17:20Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-29T08:17:20Z",
+ "author_url": "https://github.com/Abhishek-Verma0",
+ "author_avatar": "https://avatars.githubusercontent.com/u/144248104?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/144248104?v=4",
+ "profile_url": "https://github.com/Abhishek-Verma0"
+ },
+ "Anupriyasoni21": {
+ "expectedPoints": 11,
+ "currentPoints": 11,
+ "levels": {
+ "level1": 1,
+ "level2": 1,
+ "level3": 0
+ },
+ "prs": [
+ {
+ "url": "https://github.com/Abhishek2634/Foodie/pull/91",
+ "title": "#60 Add persistent bottom Cart Summary bar ",
+ "repo": "Abhishek2634/Foodie",
+ "level": "level2",
+ "points": 7,
+ "created_at": "2025-07-24T11:21:59Z",
+ "updated_at": "2025-08-02T10:56:13Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-24T12:32:32Z",
+ "author_url": "https://github.com/Anupriyasoni21",
+ "author_avatar": "https://avatars.githubusercontent.com/u/182332326?v=4"
+ },
+ {
+ "url": "https://github.com/Abhishek2634/Foodie/pull/51",
+ "title": "Make navbar fixed and responsive for Foodie ",
+ "repo": "Abhishek2634/Foodie",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-23T05:20:51Z",
+ "updated_at": "2025-08-02T10:51:54Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-23T17:25:10Z",
+ "author_url": "https://github.com/Anupriyasoni21",
+ "author_avatar": "https://avatars.githubusercontent.com/u/182332326?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/182332326?v=4",
+ "profile_url": "https://github.com/Anupriyasoni21"
+ },
+ "latikaray": {
+ "expectedPoints": 11,
+ "currentPoints": 11,
+ "levels": {
+ "level1": 1,
+ "level2": 1,
+ "level3": 0
+ },
+ "prs": [
+ {
+ "url": "https://github.com/Adarsh-Chaubey03/TravelGrid/pull/216",
+ "title": "feature : Responsive Navbar with blur, spacing fixes and improved visibility",
+ "repo": "Adarsh-Chaubey03/TravelGrid",
+ "level": "level2",
+ "points": 7,
+ "created_at": "2025-07-26T19:21:36Z",
+ "updated_at": "2025-07-27T05:43:52Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-27T05:43:34Z",
+ "author_url": "https://github.com/latikaray",
+ "author_avatar": "https://avatars.githubusercontent.com/u/169573068?v=4"
+ },
+ {
+ "url": "https://github.com/InnoWebLabs/Vehigo/pull/66",
+ "title": "Fix: logo image loading and redirect to home page on login/signup",
+ "repo": "InnoWebLabs/Vehigo",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-25T09:23:14Z",
+ "updated_at": "2025-07-25T20:27:00Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-25T10:01:17Z",
+ "author_url": "https://github.com/latikaray",
+ "author_avatar": "https://avatars.githubusercontent.com/u/169573068?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/169573068?v=4",
+ "profile_url": "https://github.com/latikaray"
+ },
+ "Rudra-Pratap-Singh1331": {
+ "expectedPoints": 11,
+ "currentPoints": 11,
+ "levels": {
+ "level1": 1,
+ "level2": 1,
+ "level3": 0
+ },
+ "prs": [
+ {
+ "url": "https://github.com/Adarsh-Chaubey03/TravelGrid/pull/153",
+ "title": "✨ Add Dynamic Clear Button in Hero Section Category Form",
+ "repo": "Adarsh-Chaubey03/TravelGrid",
+ "level": "level2",
+ "points": 7,
+ "created_at": "2025-07-24T14:05:58Z",
+ "updated_at": "2025-07-25T05:53:34Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-25T05:53:12Z",
+ "author_url": "https://github.com/Rudra-Pratap-Singh1331",
+ "author_avatar": "https://avatars.githubusercontent.com/u/180910085?v=4"
+ },
+ {
+ "url": "https://github.com/pavitraag/Project-Vault/pull/182",
+ "title": "[UI] Revamp Home and Contact Page Layout",
+ "repo": "pavitraag/Project-Vault",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-29T10:54:19Z",
+ "updated_at": "2025-07-29T18:50:41Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-29T17:32:27Z",
+ "author_url": "https://github.com/Rudra-Pratap-Singh1331",
+ "author_avatar": "https://avatars.githubusercontent.com/u/180910085?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/180910085?v=4",
+ "profile_url": "https://github.com/Rudra-Pratap-Singh1331"
+ },
+ "04shubham7": {
+ "expectedPoints": 11,
+ "currentPoints": 11,
+ "levels": {
+ "level1": 1,
+ "level2": 1,
+ "level3": 0
+ },
+ "prs": [
+ {
+ "url": "https://github.com/Adarsh-Chaubey03/TravelGrid/pull/111",
+ "title": "Update Navbar.jsx, Removed redundant Sign In button from Navbar (Sign…",
+ "repo": "Adarsh-Chaubey03/TravelGrid",
+ "level": "level2",
+ "points": 7,
+ "created_at": "2025-07-23T09:08:07Z",
+ "updated_at": "2025-07-24T03:51:05Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-24T03:51:05Z",
+ "author_url": "https://github.com/04shubham7",
+ "author_avatar": "https://avatars.githubusercontent.com/u/161634026?v=4"
+ },
+ {
+ "url": "https://github.com/InnoWebLabs/Vehigo/pull/17",
+ "title": "Updated Readme With Demo Deployment Link",
+ "repo": "InnoWebLabs/Vehigo",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-23T09:20:37Z",
+ "updated_at": "2025-07-25T20:12:48Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-23T09:56:17Z",
+ "author_url": "https://github.com/04shubham7",
+ "author_avatar": "https://avatars.githubusercontent.com/u/161634026?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/161634026?v=4",
+ "profile_url": "https://github.com/04shubham7"
+ },
+ "vanixyz": {
+ "expectedPoints": 18,
+ "currentPoints": 11,
+ "levels": {
+ "level1": 1,
+ "level2": 2,
+ "level3": 0
+ },
+ "prs": [
+ {
+ "url": "https://github.com/Adarsh-Chaubey03/TravelGrid/pull/104",
+ "title": "Fix: Add feedback prompt for unauthenticated Search",
+ "repo": "Adarsh-Chaubey03/TravelGrid",
+ "level": "level2",
+ "points": 7,
+ "created_at": "2025-07-23T07:37:41Z",
+ "updated_at": "2025-07-24T08:27:31Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-24T08:27:31Z",
+ "author_url": "https://github.com/vanixyz",
+ "author_avatar": "https://avatars.githubusercontent.com/u/178162585?v=4"
+ },
+ {
+ "url": "https://github.com/pavitraag/Project-Vault/pull/62",
+ "title": "Add Game Win Overlay and Exit Functionality for Memory and Snake Games",
+ "repo": "pavitraag/Project-Vault",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-24T19:04:24Z",
+ "updated_at": "2025-07-29T18:35:38Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-24T19:34:40Z",
+ "author_url": "https://github.com/vanixyz",
+ "author_avatar": "https://avatars.githubusercontent.com/u/178162585?v=4"
+ },
+ {
+ "url": "https://github.com/SGCODEX/Music-Recommendation-Using-Facial-Expressions/pull/39",
+ "title": "Fixes:#2 Add DeepFace-based emotion detection with YouTube music recommendation ",
+ "repo": "SGCODEX/Music-Recommendation-Using-Facial-Expressions",
+ "level": "level2",
+ "points": 7,
+ "created_at": "2025-07-22T07:47:27Z",
+ "updated_at": "2025-08-01T06:20:05Z",
+ "state": "open",
+ "merged": false,
+ "merged_at": null,
+ "author_url": "https://github.com/vanixyz",
+ "author_avatar": "https://avatars.githubusercontent.com/u/178162585?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/178162585?v=4",
+ "profile_url": "https://github.com/vanixyz"
+ },
+ "Sanskriti10247": {
+ "expectedPoints": 18,
+ "currentPoints": 11,
+ "levels": {
+ "level1": 1,
+ "level2": 2,
+ "level3": 0
+ },
+ "prs": [
+ {
+ "url": "https://github.com/opensource-society/CodeClip/pull/29",
+ "title": " Added Theme Toggle (Dark/Light) with Persistent Preference and Cross-Page Support",
+ "repo": "opensource-society/CodeClip",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-21T19:23:03Z",
+ "updated_at": "2025-07-22T07:40:50Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-22T04:47:23Z",
+ "author_url": "https://github.com/Sanskriti10247",
+ "author_avatar": "https://avatars.githubusercontent.com/u/177629943?v=4"
+ },
+ {
+ "url": "https://github.com/GauravKarakoti/Weather-API/pull/163",
+ "title": "feat: Added emoji mapping for weather conditions based on condition text",
+ "repo": "GauravKarakoti/Weather-API",
+ "level": "level2",
+ "points": 7,
+ "created_at": "2025-07-21T21:00:12Z",
+ "updated_at": "2025-07-22T07:40:10Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-22T05:31:12Z",
+ "author_url": "https://github.com/Sanskriti10247",
+ "author_avatar": "https://avatars.githubusercontent.com/u/177629943?v=4"
+ },
+ {
+ "url": "https://github.com/SGCODEX/Music-Recommendation-Using-Facial-Expressions/pull/48",
+ "title": " feat(ui): Add Gradio Frontend for Emotion-Based Music Recommendation",
+ "repo": "SGCODEX/Music-Recommendation-Using-Facial-Expressions",
+ "level": "level2",
+ "points": 7,
+ "created_at": "2025-07-23T08:25:16Z",
+ "updated_at": "2025-07-31T06:42:19Z",
+ "state": "open",
+ "merged": false,
+ "merged_at": null,
+ "author_url": "https://github.com/Sanskriti10247",
+ "author_avatar": "https://avatars.githubusercontent.com/u/177629943?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/177629943?v=4",
+ "profile_url": "https://github.com/Sanskriti10247"
+ },
+ "Harsh-26626": {
+ "expectedPoints": 18,
+ "currentPoints": 11,
+ "levels": {
+ "level1": 1,
+ "level2": 2,
+ "level3": 0
+ },
+ "prs": [
+ {
+ "url": "https://github.com/opensource-society/notesvault/pull/342",
+ "title": "Fixed the layout of index.html, styles.css, script.js, etc.",
+ "repo": "opensource-society/NotesVault",
+ "level": "level2",
+ "points": 7,
+ "created_at": "2025-07-26T03:26:31Z",
+ "updated_at": "2025-07-26T03:30:40Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-26T03:30:40Z",
+ "author_url": "https://github.com/Harsh-26626",
+ "author_avatar": "https://avatars.githubusercontent.com/u/116972057?v=4"
+ },
+ {
+ "url": "https://github.com/opensource-society/notesvault/pull/339",
+ "title": "Fixed the layout of index.html, styles.css, script.js, etc.",
+ "repo": "opensource-society/NotesVault",
+ "level": "level2",
+ "points": 7,
+ "created_at": "2025-07-26T01:51:12Z",
+ "updated_at": "2025-07-26T02:17:53Z",
+ "state": "closed",
+ "merged": false,
+ "merged_at": null,
+ "author_url": "https://github.com/Harsh-26626",
+ "author_avatar": "https://avatars.githubusercontent.com/u/116972057?v=4"
+ },
+ {
+ "url": "https://github.com/opensource-society/notesvault/pull/11",
+ "title": "Initial Homepage design complete + Search Functionality & Footer Added!",
+ "repo": "opensource-society/NotesVault",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-21T15:32:37Z",
+ "updated_at": "2025-07-21T16:41:30Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-21T15:46:21Z",
+ "author_url": "https://github.com/Harsh-26626",
+ "author_avatar": "https://avatars.githubusercontent.com/u/116972057?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/116972057?v=4",
+ "profile_url": "https://github.com/Harsh-26626"
+ },
+ "ParulAgrawal-bot": {
+ "expectedPoints": 11,
+ "currentPoints": 11,
+ "levels": {
+ "level1": 1,
+ "level2": 1,
+ "level3": 0
+ },
+ "prs": [
+ {
+ "url": "https://github.com/opensource-society/notesvault/pull/307",
+ "title": "Fixed the issue related to misalignment of icons in homepage",
+ "repo": "opensource-society/NotesVault",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-25T14:25:48Z",
+ "updated_at": "2025-07-25T16:13:14Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-25T16:12:49Z",
+ "author_url": "https://github.com/ParulAgrawal-bot",
+ "author_avatar": "https://avatars.githubusercontent.com/u/175104162?v=4"
+ },
+ {
+ "url": "https://github.com/itsAnimation/AnimateItNow/pull/439",
+ "title": "Made the 404 page",
+ "repo": "itsAnimation/AnimateItNow",
+ "level": "level2",
+ "points": 7,
+ "created_at": "2025-07-26T04:02:36Z",
+ "updated_at": "2025-07-26T07:00:53Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-26T07:00:53Z",
+ "author_url": "https://github.com/ParulAgrawal-bot",
+ "author_avatar": "https://avatars.githubusercontent.com/u/175104162?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/175104162?v=4",
+ "profile_url": "https://github.com/ParulAgrawal-bot"
+ },
+ "md-jasim123": {
+ "expectedPoints": 11,
+ "currentPoints": 11,
+ "levels": {
+ "level1": 1,
+ "level2": 1,
+ "level3": 0
+ },
+ "prs": [
+ {
+ "url": "https://github.com/opensource-society/notesvault/pull/37",
+ "title": "✨ Added footer section with contributors message",
+ "repo": "opensource-society/NotesVault",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-22T06:11:31Z",
+ "updated_at": "2025-07-22T06:37:50Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-22T06:37:44Z",
+ "author_url": "https://github.com/md-jasim123",
+ "author_avatar": "https://avatars.githubusercontent.com/u/190737050?v=4"
+ },
+ {
+ "url": "https://github.com/GitMetricsLab/github_tracker/pull/145",
+ "title": "Feat: Added MetricCard component and updated routes",
+ "repo": "mehul-m-prajapati/github_tracker",
+ "level": null,
+ "points": 0,
+ "created_at": "2025-07-28T19:07:56Z",
+ "updated_at": "2025-07-30T13:47:44Z",
+ "state": "closed",
+ "merged": false,
+ "merged_at": null,
+ "author_url": "https://github.com/md-jasim123",
+ "author_avatar": "https://avatars.githubusercontent.com/u/190737050?v=4"
+ },
+ {
+ "url": "https://github.com/NishantRana07/HrRoadways/pull/385",
+ "title": "Add scroll to top button",
+ "repo": "NishantRana07/HrRoadways",
+ "level": "level2",
+ "points": 7,
+ "created_at": "2025-07-26T11:11:56Z",
+ "updated_at": "2025-07-27T21:19:51Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-27T21:19:51Z",
+ "author_url": "https://github.com/md-jasim123",
+ "author_avatar": "https://avatars.githubusercontent.com/u/190737050?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/190737050?v=4",
+ "profile_url": "https://github.com/md-jasim123"
+ },
+ "ketakigalgale": {
+ "expectedPoints": 11,
+ "currentPoints": 11,
+ "levels": {
+ "level1": 1,
+ "level2": 1,
+ "level3": 0
+ },
+ "prs": [
+ {
+ "url": "https://github.com/huamanraj/aitoolbox.software/pull/21",
+ "title": "fix : removed unnecessary text from [sidebar]",
+ "repo": "huamanraj/aitoolbox.software",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-26T13:57:49Z",
+ "updated_at": "2025-07-27T17:11:16Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-27T17:11:16Z",
+ "author_url": "https://github.com/ketakigalgale",
+ "author_avatar": "https://avatars.githubusercontent.com/u/173990863?v=4"
+ },
+ {
+ "url": "https://github.com/sristy17/next-payroll/pull/51",
+ "title": "feat: make sidebar responsive for mobile view",
+ "repo": "sristy17/next-payroll",
+ "level": "level2",
+ "points": 7,
+ "created_at": "2025-07-29T14:30:36Z",
+ "updated_at": "2025-08-01T18:21:41Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-08-01T18:21:40Z",
+ "author_url": "https://github.com/ketakigalgale",
+ "author_avatar": "https://avatars.githubusercontent.com/u/173990863?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/173990863?v=4",
+ "profile_url": "https://github.com/ketakigalgale"
+ },
+ "ShlokTrivedi1": {
+ "expectedPoints": 11,
+ "currentPoints": 11,
+ "levels": {
+ "level1": 1,
+ "level2": 1,
+ "level3": 0
+ },
+ "prs": [
+ {
+ "url": "https://github.com/itsAnimation/AnimateItNow/pull/602",
+ "title": "This component adds a modern and dynamic touch to the UI and can serve as a great visual showcase for skills, tools, or technologies. Fixes #615",
+ "repo": "itsAnimation/AnimateItNow",
+ "level": "level2",
+ "points": 7,
+ "created_at": "2025-07-28T15:15:54Z",
+ "updated_at": "2025-08-02T10:45:55Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-08-02T10:45:35Z",
+ "author_url": "https://github.com/ShlokTrivedi1",
+ "author_avatar": "https://avatars.githubusercontent.com/u/177449073?v=4"
+ },
+ {
+ "url": "https://github.com/pavitraag/Project-Vault/pull/153",
+ "title": "✨ Introduced Interactive Feature Section with 3D Effects and Smooth Animations. Closes #174",
+ "repo": "pavitraag/Project-Vault",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-28T09:06:31Z",
+ "updated_at": "2025-07-29T18:44:39Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-29T13:53:49Z",
+ "author_url": "https://github.com/ShlokTrivedi1",
+ "author_avatar": "https://avatars.githubusercontent.com/u/177449073?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/177449073?v=4",
+ "profile_url": "https://github.com/ShlokTrivedi1"
+ },
+ "Hinal2318": {
+ "expectedPoints": 11,
+ "currentPoints": 11,
+ "levels": {
+ "level1": 1,
+ "level2": 1,
+ "level3": 0
+ },
+ "prs": [
+ {
+ "url": "https://github.com/itsAnimation/AnimateItNow/pull/530",
+ "title": "Navigation tab highlighting",
+ "repo": "itsAnimation/AnimateItNow",
+ "level": "level2",
+ "points": 7,
+ "created_at": "2025-07-27T07:42:30Z",
+ "updated_at": "2025-08-02T10:42:22Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-08-02T10:42:22Z",
+ "author_url": "https://github.com/Hinal2318",
+ "author_avatar": "https://avatars.githubusercontent.com/u/185819957?v=4"
+ },
+ {
+ "url": "https://github.com/itsAnimation/AnimateItNow/pull/524",
+ "title": "Fixed FAQ bug . ",
+ "repo": "itsAnimation/AnimateItNow",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-27T04:52:30Z",
+ "updated_at": "2025-07-27T07:57:38Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-27T07:57:38Z",
+ "author_url": "https://github.com/Hinal2318",
+ "author_avatar": "https://avatars.githubusercontent.com/u/185819957?v=4"
+ },
+ {
+ "url": "https://github.com/ygowthamr/WhitePaper/pull/165",
+ "title": "Fixed Dark -light Mode",
+ "repo": "ygowthamr/WhitePaper",
+ "level": null,
+ "points": 0,
+ "created_at": "2025-07-26T04:47:53Z",
+ "updated_at": "2025-07-30T09:08:57Z",
+ "state": "closed",
+ "merged": false,
+ "merged_at": null,
+ "author_url": "https://github.com/Hinal2318",
+ "author_avatar": "https://avatars.githubusercontent.com/u/185819957?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/185819957?v=4",
+ "profile_url": "https://github.com/Hinal2318"
+ },
+ "almishhoda04": {
+ "expectedPoints": 11,
+ "currentPoints": 11,
+ "levels": {
+ "level1": 1,
+ "level2": 1,
+ "level3": 0
+ },
+ "prs": [
+ {
+ "url": "https://github.com/itsAnimation/AnimateItNow/pull/361",
+ "title": "Flip hover variant in the animated social share buttons",
+ "repo": "itsAnimation/AnimateItNow",
+ "level": "level2",
+ "points": 7,
+ "created_at": "2025-07-25T04:57:13Z",
+ "updated_at": "2025-07-25T21:33:44Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-25T21:33:43Z",
+ "author_url": "https://github.com/almishhoda04",
+ "author_avatar": "https://avatars.githubusercontent.com/u/146226673?v=4"
+ },
+ {
+ "url": "https://github.com/mansiruhil/fail-u-forward/pull/13",
+ "title": "Enhanced readme.md with emojis, TOC and contact section",
+ "repo": "mansiruhil/fail-u-forward",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-23T11:39:34Z",
+ "updated_at": "2025-07-23T17:32:57Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-23T11:46:41Z",
+ "author_url": "https://github.com/almishhoda04",
+ "author_avatar": "https://avatars.githubusercontent.com/u/146226673?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/146226673?v=4",
+ "profile_url": "https://github.com/almishhoda04"
+ },
+ "Varshitha713": {
+ "expectedPoints": 15,
+ "currentPoints": 11,
+ "levels": {
+ "level1": 2,
+ "level2": 1,
+ "level3": 0
+ },
+ "prs": [
+ {
+ "url": "https://github.com/itsAnimation/AnimateItNow/pull/212",
+ "title": "added github-repo-link to nav bar",
+ "repo": "itsAnimation/AnimateItNow",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-23T12:55:43Z",
+ "updated_at": "2025-07-23T13:04:06Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-23T13:04:05Z",
+ "author_url": "https://github.com/Varshitha713",
+ "author_avatar": "https://avatars.githubusercontent.com/u/132129385?v=4"
+ },
+ {
+ "url": "https://github.com/Kritika75/TheCawnporeMag.github.io/pull/97",
+ "title": "fixed the grammatical error in text",
+ "repo": "Kritika75/TheCawnporeMag.github.io",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-24T17:49:37Z",
+ "updated_at": "2025-07-25T08:02:38Z",
+ "state": "closed",
+ "merged": false,
+ "merged_at": null,
+ "author_url": "https://github.com/Varshitha713",
+ "author_avatar": "https://avatars.githubusercontent.com/u/132129385?v=4"
+ },
+ {
+ "url": "https://github.com/Kritika75/TheCawnporeMag.github.io/pull/56",
+ "title": "added scroll-progress-bar",
+ "repo": "Kritika75/TheCawnporeMag.github.io",
+ "level": "level2",
+ "points": 7,
+ "created_at": "2025-07-23T09:34:57Z",
+ "updated_at": "2025-07-23T09:38:28Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-23T09:38:28Z",
+ "author_url": "https://github.com/Varshitha713",
+ "author_avatar": "https://avatars.githubusercontent.com/u/132129385?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/132129385?v=4",
+ "profile_url": "https://github.com/Varshitha713"
+ },
+ "Paridhi004": {
+ "expectedPoints": 11,
+ "currentPoints": 11,
+ "levels": {
+ "level1": 1,
+ "level2": 1,
+ "level3": 0
+ },
+ "prs": [
+ {
+ "url": "https://github.com/itsAnimation/AnimateItNow/pull/104",
+ "title": "Fixed Issue #58 ",
+ "repo": "itsAnimation/AnimateItNow",
+ "level": "level2",
+ "points": 7,
+ "created_at": "2025-07-22T16:58:20Z",
+ "updated_at": "2025-07-22T18:09:16Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-22T18:09:16Z",
+ "author_url": "https://github.com/Paridhi004",
+ "author_avatar": "https://avatars.githubusercontent.com/u/145322115?v=4"
+ },
+ {
+ "url": "https://github.com/pavitraag/Project-Vault/pull/88",
+ "title": "📦 FAQs Page Enhancement done",
+ "repo": "pavitraag/Project-Vault",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-25T13:06:56Z",
+ "updated_at": "2025-07-29T18:37:19Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-26T19:43:45Z",
+ "author_url": "https://github.com/Paridhi004",
+ "author_avatar": "https://avatars.githubusercontent.com/u/145322115?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/145322115?v=4",
+ "profile_url": "https://github.com/Paridhi004"
+ },
+ "aravindr001": {
+ "expectedPoints": 11,
+ "currentPoints": 11,
+ "levels": {
+ "level1": 1,
+ "level2": 1,
+ "level3": 0
+ },
+ "prs": [
+ {
+ "url": "https://github.com/InnoWebLabs/Vehigo/pull/157",
+ "title": "fix(CSS): Correct footer column alignment-126",
+ "repo": "InnoWebLabs/Vehigo",
+ "level": "level2",
+ "points": 7,
+ "created_at": "2025-07-28T02:38:35Z",
+ "updated_at": "2025-07-28T03:36:12Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-28T03:29:15Z",
+ "author_url": "https://github.com/aravindr001",
+ "author_avatar": "https://avatars.githubusercontent.com/u/120251962?v=4"
+ },
+ {
+ "url": "https://github.com/VJLIVE/Athletix/pull/69",
+ "title": "The underline in Privacy Policy & Terms is removed",
+ "repo": "vjlive/athletix",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-08-02T08:49:52Z",
+ "updated_at": "2025-08-03T04:51:49Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-08-03T04:26:30Z",
+ "author_url": "https://github.com/aravindr001",
+ "author_avatar": "https://avatars.githubusercontent.com/u/120251962?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/120251962?v=4",
+ "profile_url": "https://github.com/aravindr001"
+ },
+ "rajashreer2004": {
+ "expectedPoints": 11,
+ "currentPoints": 11,
+ "levels": {
+ "level1": 1,
+ "level2": 1,
+ "level3": 0
+ },
+ "prs": [
+ {
+ "url": "https://github.com/InnoWebLabs/Vehigo/pull/21",
+ "title": "Enhanced Navbar Styling with Hover Effects",
+ "repo": "InnoWebLabs/Vehigo",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-23T11:55:44Z",
+ "updated_at": "2025-07-25T20:14:12Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-23T14:05:03Z",
+ "author_url": "https://github.com/rajashreer2004",
+ "author_avatar": "https://avatars.githubusercontent.com/u/220420686?v=4"
+ },
+ {
+ "url": "https://github.com/Khushi-Nigam/jobportal/pull/28",
+ "title": "Updated header and footer and added hover effects to service cards",
+ "repo": "Khushi-Nigam/jobportal",
+ "level": "level2",
+ "points": 7,
+ "created_at": "2025-07-23T20:52:06Z",
+ "updated_at": "2025-07-24T15:26:26Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-24T15:26:26Z",
+ "author_url": "https://github.com/rajashreer2004",
+ "author_avatar": "https://avatars.githubusercontent.com/u/220420686?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/220420686?v=4",
+ "profile_url": "https://github.com/rajashreer2004"
+ },
+ "AnaghDeshpande": {
+ "expectedPoints": 11,
+ "currentPoints": 11,
+ "levels": {
+ "level1": 1,
+ "level2": 1,
+ "level3": 0
+ },
+ "prs": [
+ {
+ "url": "https://github.com/MAVERICK-VF142/Drx.MediMate/pull/126",
+ "title": "created student dashboard",
+ "repo": "MAVERICK-VF142/Drx.MediMate",
+ "level": "level2",
+ "points": 7,
+ "created_at": "2025-08-02T10:09:12Z",
+ "updated_at": "2025-08-02T18:39:26Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-08-02T17:22:57Z",
+ "author_url": "https://github.com/AnaghDeshpande",
+ "author_avatar": "https://avatars.githubusercontent.com/u/125550290?v=4"
+ },
+ {
+ "url": "https://github.com/MAVERICK-VF142/Drx.MediMate/pull/58",
+ "title": "added upload button in medicine scanner fixes the issue #44 and #42",
+ "repo": "MAVERICK-VF142/Drx.MediMate",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-23T13:32:16Z",
+ "updated_at": "2025-07-23T16:17:08Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-23T16:12:53Z",
+ "author_url": "https://github.com/AnaghDeshpande",
+ "author_avatar": "https://avatars.githubusercontent.com/u/125550290?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/125550290?v=4",
+ "profile_url": "https://github.com/AnaghDeshpande"
+ },
+ "AasthathecoderX": {
+ "expectedPoints": 22,
+ "currentPoints": 11,
+ "levels": {
+ "level1": 2,
+ "level2": 2,
+ "level3": 0
+ },
+ "prs": [
+ {
+ "url": "https://github.com/Ayushjhawar8/Flavor-ai/pull/82",
+ "title": "Added issue template",
+ "repo": "Ayushjhawar8/Flavor-ai",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-27T05:37:36Z",
+ "updated_at": "2025-07-27T09:17:29Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-27T09:17:29Z",
+ "author_url": "https://github.com/AasthathecoderX",
+ "author_avatar": "https://avatars.githubusercontent.com/u/169357132?v=4"
+ },
+ {
+ "url": "https://github.com/Ayushjhawar8/Flavor-ai/pull/62",
+ "title": "Fix: Add uniform UI cards overall",
+ "repo": "Ayushjhawar8/Flavor-ai",
+ "level": "level2",
+ "points": 7,
+ "created_at": "2025-07-25T12:22:40Z",
+ "updated_at": "2025-08-01T13:59:49Z",
+ "state": "closed",
+ "merged": false,
+ "merged_at": null,
+ "author_url": "https://github.com/AasthathecoderX",
+ "author_avatar": "https://avatars.githubusercontent.com/u/169357132?v=4"
+ },
+ {
+ "url": "https://github.com/Ayushjhawar8/Flavor-ai/pull/60",
+ "title": "Add issue templates",
+ "repo": "Ayushjhawar8/Flavor-ai",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-25T12:04:45Z",
+ "updated_at": "2025-07-26T15:31:33Z",
+ "state": "closed",
+ "merged": false,
+ "merged_at": null,
+ "author_url": "https://github.com/AasthathecoderX",
+ "author_avatar": "https://avatars.githubusercontent.com/u/169357132?v=4"
+ },
+ {
+ "url": "https://github.com/Ayushjhawar8/Flavor-ai/pull/28",
+ "title": "Improved UI/UX of cards",
+ "repo": "Ayushjhawar8/Flavor-ai",
+ "level": "level2",
+ "points": 7,
+ "created_at": "2025-07-23T12:08:17Z",
+ "updated_at": "2025-07-23T15:08:43Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-23T15:08:43Z",
+ "author_url": "https://github.com/AasthathecoderX",
+ "author_avatar": "https://avatars.githubusercontent.com/u/169357132?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/169357132?v=4",
+ "profile_url": "https://github.com/AasthathecoderX"
+ },
+ "heyysiri": {
+ "expectedPoints": 11,
+ "currentPoints": 11,
+ "levels": {
+ "level1": 1,
+ "level2": 1,
+ "level3": 0
+ },
+ "prs": [
+ {
+ "url": "https://github.com/Ayushjhawar8/Flavor-ai/pull/14",
+ "title": "added styling to tts and watch youtube button",
+ "repo": "Ayushjhawar8/Flavor-ai",
+ "level": "level2",
+ "points": 7,
+ "created_at": "2025-07-22T14:53:13Z",
+ "updated_at": "2025-07-22T15:12:26Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-22T15:12:26Z",
+ "author_url": "https://github.com/heyysiri",
+ "author_avatar": "https://avatars.githubusercontent.com/u/113199947?v=4"
+ },
+ {
+ "url": "https://github.com/Er-luffy-D/SimplifAI/pull/42",
+ "title": "added border for feature cards on landing page",
+ "repo": "Er-luffy-D/SimplifAI",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-27T10:50:21Z",
+ "updated_at": "2025-08-02T16:56:32Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-27T12:19:08Z",
+ "author_url": "https://github.com/heyysiri",
+ "author_avatar": "https://avatars.githubusercontent.com/u/113199947?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/113199947?v=4",
+ "profile_url": "https://github.com/heyysiri"
+ },
+ "Priyanshu8433": {
+ "expectedPoints": 11,
+ "currentPoints": 11,
+ "levels": {
+ "level1": 1,
+ "level2": 1,
+ "level3": 0
+ },
+ "prs": [
+ {
+ "url": "https://github.com/BaraniVA/Habitheat/pull/18",
+ "title": "Add 404 Not found page for invalid URLs",
+ "repo": "BaraniVA/Habitheat",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-22T21:01:26Z",
+ "updated_at": "2025-07-23T07:57:37Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-23T07:07:22Z",
+ "author_url": "https://github.com/Priyanshu8433",
+ "author_avatar": "https://avatars.githubusercontent.com/u/154051457?v=4"
+ },
+ {
+ "url": "https://github.com/saumyayadav25/cpp-dsa-sheet-testing/pull/8",
+ "title": "Update navbar across all screen",
+ "repo": "saumyayadav25/cpp-dsa-sheet-testing",
+ "level": "level2",
+ "points": 7,
+ "created_at": "2025-07-22T17:11:27Z",
+ "updated_at": "2025-07-23T03:20:07Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-23T03:20:07Z",
+ "author_url": "https://github.com/Priyanshu8433",
+ "author_avatar": "https://avatars.githubusercontent.com/u/154051457?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/154051457?v=4",
+ "profile_url": "https://github.com/Priyanshu8433"
+ },
+ "khushi747": {
+ "expectedPoints": 11,
+ "currentPoints": 11,
+ "levels": {
+ "level1": 1,
+ "level2": 1,
+ "level3": 0
+ },
+ "prs": [
+ {
+ "url": "https://github.com/chandannekya/Clean-Breath/pull/37",
+ "title": "Fixed route config for Deployment",
+ "repo": "chandannekya/Clean-Breath",
+ "level": "level2",
+ "points": 7,
+ "created_at": "2025-07-23T15:11:46Z",
+ "updated_at": "2025-07-23T15:14:05Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-23T15:14:05Z",
+ "author_url": "https://github.com/khushi747",
+ "author_avatar": "https://avatars.githubusercontent.com/u/95963491?v=4"
+ },
+ {
+ "url": "https://github.com/Priyanka-28-BM/HealthVault/pull/45",
+ "title": "resolve login role detection and add UI improvements",
+ "repo": "Priyanka-28-BM/HealthVault",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-26T10:54:52Z",
+ "updated_at": "2025-07-26T12:35:00Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-26T12:35:00Z",
+ "author_url": "https://github.com/khushi747",
+ "author_avatar": "https://avatars.githubusercontent.com/u/95963491?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/95963491?v=4",
+ "profile_url": "https://github.com/khushi747"
+ },
+ "awarepenguin70": {
+ "expectedPoints": 11,
+ "currentPoints": 11,
+ "levels": {
+ "level1": 1,
+ "level2": 1,
+ "level3": 0
+ },
+ "prs": [
+ {
+ "url": "https://github.com/GauravKarakoti/Weather-API/pull/223",
+ "title": "Improve sw caching",
+ "repo": "GauravKarakoti/Weather-API",
+ "level": "level2",
+ "points": 7,
+ "created_at": "2025-07-29T14:15:24Z",
+ "updated_at": "2025-07-29T14:46:25Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-29T14:45:15Z",
+ "author_url": "https://github.com/awarepenguin70",
+ "author_avatar": "https://avatars.githubusercontent.com/u/116752807?v=4"
+ },
+ {
+ "url": "https://github.com/GauravKarakoti/Weather-API/pull/222",
+ "title": "used a configuration obj to display emoji conditions",
+ "repo": "GauravKarakoti/Weather-API",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-29T13:08:02Z",
+ "updated_at": "2025-07-29T14:45:14Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-29T14:45:14Z",
+ "author_url": "https://github.com/awarepenguin70",
+ "author_avatar": "https://avatars.githubusercontent.com/u/116752807?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/116752807?v=4",
+ "profile_url": "https://github.com/awarepenguin70"
+ },
+ "SrishtiSinha2003": {
+ "expectedPoints": 11,
+ "currentPoints": 11,
+ "levels": {
+ "level1": 1,
+ "level2": 1,
+ "level3": 0
+ },
+ "prs": [
+ {
+ "url": "https://github.com/Khushi-Nigam/jobportal/pull/36",
+ "title": "Added Contributing.md",
+ "repo": "Khushi-Nigam/jobportal",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-24T10:41:12Z",
+ "updated_at": "2025-07-24T11:00:55Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-24T11:00:55Z",
+ "author_url": "https://github.com/SrishtiSinha2003",
+ "author_avatar": "https://avatars.githubusercontent.com/u/173527761?v=4"
+ },
+ {
+ "url": "https://github.com/UTSAVS26/PyVerse/pull/1477",
+ "title": "Added Leetcode problem 218 : The Skyline Problem",
+ "repo": "UTSAVS26/PyVerse",
+ "level": "level2",
+ "points": 7,
+ "created_at": "2025-07-25T06:20:57Z",
+ "updated_at": "2025-07-25T06:30:27Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-25T06:29:37Z",
+ "author_url": "https://github.com/SrishtiSinha2003",
+ "author_avatar": "https://avatars.githubusercontent.com/u/173527761?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/173527761?v=4",
+ "profile_url": "https://github.com/SrishtiSinha2003"
+ },
+ "Sneha-Amballa": {
+ "expectedPoints": 11,
+ "currentPoints": 11,
+ "levels": {
+ "level1": 1,
+ "level2": 1,
+ "level3": 0
+ },
+ "prs": [
+ {
+ "url": "https://github.com/Kritika75/TheCawnporeMag.github.io/pull/277",
+ "title": "Changed HTML and CSS in Issues page",
+ "repo": "Kritika75/TheCawnporeMag.github.io",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-29T14:57:30Z",
+ "updated_at": "2025-07-31T03:47:30Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-31T03:47:29Z",
+ "author_url": "https://github.com/Sneha-Amballa",
+ "author_avatar": "https://avatars.githubusercontent.com/u/196505110?v=4"
+ },
+ {
+ "url": "https://github.com/sampadatiwari30/DeshDarshan/pull/57",
+ "title": "Added dance, festivals, and food sections; updated home pages",
+ "repo": "sampadatiwari30/DeshDarshan",
+ "level": "level2",
+ "points": 7,
+ "created_at": "2025-07-23T11:45:57Z",
+ "updated_at": "2025-07-23T18:41:14Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-23T18:40:42Z",
+ "author_url": "https://github.com/Sneha-Amballa",
+ "author_avatar": "https://avatars.githubusercontent.com/u/196505110?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/196505110?v=4",
+ "profile_url": "https://github.com/Sneha-Amballa"
+ },
+ "zufshan98": {
+ "expectedPoints": 11,
+ "currentPoints": 11,
+ "levels": {
+ "level1": 1,
+ "level2": 1,
+ "level3": 0
+ },
+ "prs": [
+ {
+ "url": "https://github.com/Kritika75/TheCawnporeMag.github.io/pull/104",
+ "title": "Fix: made the footer consistent across the pages and also fixed the position of back-to-top button",
+ "repo": "Kritika75/TheCawnporeMag.github.io",
+ "level": "level2",
+ "points": 7,
+ "created_at": "2025-07-24T21:07:32Z",
+ "updated_at": "2025-07-25T03:21:21Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-25T03:21:21Z",
+ "author_url": "https://github.com/zufshan98",
+ "author_avatar": "https://avatars.githubusercontent.com/u/215965570?v=4"
+ },
+ {
+ "url": "https://github.com/Kritika75/TheCawnporeMag.github.io/pull/74",
+ "title": "Add: back to top floating button",
+ "repo": "Kritika75/TheCawnporeMag.github.io",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-23T22:05:37Z",
+ "updated_at": "2025-07-24T09:51:32Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-24T07:50:48Z",
+ "author_url": "https://github.com/zufshan98",
+ "author_avatar": "https://avatars.githubusercontent.com/u/215965570?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/215965570?v=4",
+ "profile_url": "https://github.com/zufshan98"
+ },
+ "Sacchi0504": {
+ "expectedPoints": 11,
+ "currentPoints": 11,
+ "levels": {
+ "level1": 1,
+ "level2": 1,
+ "level3": 0
+ },
+ "prs": [
+ {
+ "url": "https://github.com/Kritika75/TheCawnporeMag.github.io/pull/69",
+ "title": "Upgraded the Footer Section",
+ "repo": "Kritika75/TheCawnporeMag.github.io",
+ "level": "level2",
+ "points": 7,
+ "created_at": "2025-07-23T16:22:23Z",
+ "updated_at": "2025-07-24T10:46:47Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-24T03:19:24Z",
+ "author_url": "https://github.com/Sacchi0504",
+ "author_avatar": "https://avatars.githubusercontent.com/u/160268789?v=4"
+ },
+ {
+ "url": "https://github.com/sampadatiwari30/DeshDarshan/pull/39",
+ "title": "Fixed the Login and Sign up buttons UI",
+ "repo": "sampadatiwari30/DeshDarshan",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-22T15:29:41Z",
+ "updated_at": "2025-07-22T19:36:51Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-22T19:35:36Z",
+ "author_url": "https://github.com/Sacchi0504",
+ "author_avatar": "https://avatars.githubusercontent.com/u/160268789?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/160268789?v=4",
+ "profile_url": "https://github.com/Sacchi0504"
+ },
+ "AshutoshThings": {
+ "expectedPoints": 11,
+ "currentPoints": 11,
+ "levels": {
+ "level1": 1,
+ "level2": 1,
+ "level3": 0
+ },
+ "prs": [
+ {
+ "url": "https://github.com/Kritika75/TheCawnporeMag.github.io/pull/49",
+ "title": "fixed card text on about page pushed outside the card on mobile devices. ",
+ "repo": "Kritika75/TheCawnporeMag.github.io",
+ "level": null,
+ "points": 0,
+ "created_at": "2025-07-23T04:03:47Z",
+ "updated_at": "2025-07-23T06:21:42Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-23T06:21:23Z",
+ "author_url": "https://github.com/AshutoshThings",
+ "author_avatar": "https://avatars.githubusercontent.com/u/84061199?v=4"
+ },
+ {
+ "url": "https://github.com/Kritika75/TheCawnporeMag.github.io/pull/24",
+ "title": "Update about page with flexbox layout and responsive design",
+ "repo": "Kritika75/TheCawnporeMag.github.io",
+ "level": "level2",
+ "points": 7,
+ "created_at": "2025-07-22T11:35:12Z",
+ "updated_at": "2025-07-22T14:18:13Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-22T13:51:18Z",
+ "author_url": "https://github.com/AshutoshThings",
+ "author_avatar": "https://avatars.githubusercontent.com/u/84061199?v=4"
+ },
+ {
+ "url": "https://github.com/ruchikakengal/WebDevIn100_Days/pull/332",
+ "title": "Day31 - Move the project in public folder, resolved merge conflicts.",
+ "repo": "ruchikakengal/WebDevIn100_Days",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-27T04:43:44Z",
+ "updated_at": "2025-07-28T14:01:13Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-28T14:00:58Z",
+ "author_url": "https://github.com/AshutoshThings",
+ "author_avatar": "https://avatars.githubusercontent.com/u/84061199?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/84061199?v=4",
+ "profile_url": "https://github.com/AshutoshThings"
+ },
+ "ashish-choudhari-git": {
+ "expectedPoints": 11,
+ "currentPoints": 11,
+ "levels": {
+ "level1": 1,
+ "level2": 1,
+ "level3": 0
+ },
+ "prs": [
+ {
+ "url": "https://github.com/mansiruhil/fail-u-forward/pull/119",
+ "title": "Added post creation and retrieval , likes, comments, dislike feature",
+ "repo": "mansiruhil/fail-u-forward",
+ "level": "level2",
+ "points": 7,
+ "created_at": "2025-08-02T11:40:51Z",
+ "updated_at": "2025-08-03T04:19:45Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-08-02T19:36:45Z",
+ "author_url": "https://github.com/ashish-choudhari-git",
+ "author_avatar": "https://avatars.githubusercontent.com/u/179891285?v=4"
+ },
+ {
+ "url": "https://github.com/mansiruhil/fail-u-forward/pull/76",
+ "title": "Fixed: Signup form text not visible in dark mode",
+ "repo": "mansiruhil/fail-u-forward",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-26T20:50:30Z",
+ "updated_at": "2025-07-29T02:50:13Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-27T05:46:11Z",
+ "author_url": "https://github.com/ashish-choudhari-git",
+ "author_avatar": "https://avatars.githubusercontent.com/u/179891285?v=4"
+ },
+ {
+ "url": "https://github.com/GitMetricsLab/github_tracker/pull/143",
+ "title": "Moving data fetching to backend -Security",
+ "repo": "mehul-m-prajapati/github_tracker",
+ "level": null,
+ "points": 0,
+ "created_at": "2025-07-28T15:34:58Z",
+ "updated_at": "2025-08-02T13:49:50Z",
+ "state": "closed",
+ "merged": false,
+ "merged_at": null,
+ "author_url": "https://github.com/ashish-choudhari-git",
+ "author_avatar": "https://avatars.githubusercontent.com/u/179891285?v=4"
+ },
+ {
+ "url": "https://github.com/GitMetricsLab/github_tracker/pull/135",
+ "title": "[Feature] Display rankings, highlights, contributions, repositories, user reactions, stars, commits history, used languages of a user",
+ "repo": "mehul-m-prajapati/github_tracker",
+ "level": null,
+ "points": 0,
+ "created_at": "2025-07-27T12:05:53Z",
+ "updated_at": "2025-07-27T12:35:03Z",
+ "state": "closed",
+ "merged": false,
+ "merged_at": null,
+ "author_url": "https://github.com/ashish-choudhari-git",
+ "author_avatar": "https://avatars.githubusercontent.com/u/179891285?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/179891285?v=4",
+ "profile_url": "https://github.com/ashish-choudhari-git"
+ },
+ "AdityaB2731": {
+ "expectedPoints": 11,
+ "currentPoints": 11,
+ "levels": {
+ "level1": 1,
+ "level2": 1,
+ "level3": 0
+ },
+ "prs": [
+ {
+ "url": "https://github.com/mansiruhil/fail-u-forward/pull/114",
+ "title": "📝 Improved README.md with cleaner layout, features, and setup instructions",
+ "repo": "mansiruhil/fail-u-forward",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-08-02T05:55:12Z",
+ "updated_at": "2025-08-02T20:33:23Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-08-02T19:41:09Z",
+ "author_url": "https://github.com/AdityaB2731",
+ "author_avatar": "https://avatars.githubusercontent.com/u/159648482?v=4"
+ },
+ {
+ "url": "https://github.com/GitMetricsLab/github_tracker/pull/173",
+ "title": "Refactor About Page for UI Consistency and Better UX",
+ "repo": "mehul-m-prajapati/github_tracker",
+ "level": null,
+ "points": 0,
+ "created_at": "2025-08-03T06:07:24Z",
+ "updated_at": "2025-08-03T06:11:02Z",
+ "state": "open",
+ "merged": false,
+ "merged_at": null,
+ "author_url": "https://github.com/AdityaB2731",
+ "author_avatar": "https://avatars.githubusercontent.com/u/159648482?v=4"
+ },
+ {
+ "url": "https://github.com/Richajaishwal0/Trip_assistant/pull/53",
+ "title": "Model added",
+ "repo": "Richajaishwal0/Trip_assistant",
+ "level": "level2",
+ "points": 7,
+ "created_at": "2025-07-31T05:39:25Z",
+ "updated_at": "2025-08-01T05:47:43Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-08-01T05:46:35Z",
+ "author_url": "https://github.com/AdityaB2731",
+ "author_avatar": "https://avatars.githubusercontent.com/u/159648482?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/159648482?v=4",
+ "profile_url": "https://github.com/AdityaB2731"
+ },
+ "Student-ravneet": {
+ "expectedPoints": 11,
+ "currentPoints": 11,
+ "levels": {
+ "level1": 1,
+ "level2": 1,
+ "level3": 0
+ },
+ "prs": [
+ {
+ "url": "https://github.com/mansiruhil/fail-u-forward/pull/12",
+ "title": "Styled for Impact: Updated Font Color in Registration Form!",
+ "repo": "mansiruhil/fail-u-forward",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-23T10:19:33Z",
+ "updated_at": "2025-07-23T12:05:27Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-23T11:54:06Z",
+ "author_url": "https://github.com/Student-ravneet",
+ "author_avatar": "https://avatars.githubusercontent.com/u/167444166?v=4"
+ },
+ {
+ "url": "https://github.com/NishantRana07/HrRoadways/pull/340",
+ "title": "Issue #297 Resolved > Fixed Footer Social Links!",
+ "repo": "NishantRana07/HrRoadways",
+ "level": "level2",
+ "points": 7,
+ "created_at": "2025-07-23T06:46:23Z",
+ "updated_at": "2025-07-23T09:13:21Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-23T09:13:10Z",
+ "author_url": "https://github.com/Student-ravneet",
+ "author_avatar": "https://avatars.githubusercontent.com/u/167444166?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/167444166?v=4",
+ "profile_url": "https://github.com/Student-ravneet"
+ },
+ "KartikeyaGupta05": {
+ "expectedPoints": 11,
+ "currentPoints": 11,
+ "levels": {
+ "level1": 1,
+ "level2": 1,
+ "level3": 0
+ },
+ "prs": [
+ {
+ "url": "https://github.com/GitMetricsLab/github_tracker/pull/113",
+ "title": "Fix: Improve mobile responsiveness across layout",
+ "repo": "mehul-m-prajapati/github_tracker",
+ "level": "level2",
+ "points": 7,
+ "created_at": "2025-07-22T17:53:43Z",
+ "updated_at": "2025-07-24T06:32:56Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-24T06:32:56Z",
+ "author_url": "https://github.com/KartikeyaGupta05",
+ "author_avatar": "https://avatars.githubusercontent.com/u/151367534?v=4"
+ },
+ {
+ "url": "https://github.com/rutikakengal/100DAYS_OF_100WEBPROJECTS/pull/301",
+ "title": "🌦️ Add Weather App Project to Day 03",
+ "repo": "rutikakengal/100DAYS_OF_100WEBPROJECTS",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-28T12:42:48Z",
+ "updated_at": "2025-07-29T12:32:09Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-29T12:31:20Z",
+ "author_url": "https://github.com/KartikeyaGupta05",
+ "author_avatar": "https://avatars.githubusercontent.com/u/151367534?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/151367534?v=4",
+ "profile_url": "https://github.com/KartikeyaGupta05"
+ },
+ "AMANkumar0004": {
+ "expectedPoints": 11,
+ "currentPoints": 11,
+ "levels": {
+ "level1": 1,
+ "level2": 1,
+ "level3": 0
+ },
+ "prs": [
+ {
+ "url": "https://github.com/GitMetricsLab/github_tracker/pull/108",
+ "title": "Made website title clickable to navigate to homepage",
+ "repo": "mehul-m-prajapati/github_tracker",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-22T10:57:23Z",
+ "updated_at": "2025-07-24T06:33:22Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-24T06:33:22Z",
+ "author_url": "https://github.com/AMANkumar0004",
+ "author_avatar": "https://avatars.githubusercontent.com/u/137664077?v=4"
+ },
+ {
+ "url": "https://github.com/NishantRana07/HrRoadways/pull/320",
+ "title": "Improved language toggle switch UI for better clarity",
+ "repo": "NishantRana07/HrRoadways",
+ "level": "level2",
+ "points": 7,
+ "created_at": "2025-07-22T17:38:04Z",
+ "updated_at": "2025-07-22T20:40:01Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-22T20:30:08Z",
+ "author_url": "https://github.com/AMANkumar0004",
+ "author_avatar": "https://avatars.githubusercontent.com/u/137664077?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/137664077?v=4",
+ "profile_url": "https://github.com/AMANkumar0004"
+ },
+ "mr-rishikesh": {
+ "expectedPoints": 11,
+ "currentPoints": 11,
+ "levels": {
+ "level1": 1,
+ "level2": 1,
+ "level3": 0
+ },
+ "prs": [
+ {
+ "url": "https://github.com/NishantRana07/HrRoadways/pull/391",
+ "title": "Enhanced Input box styling in dark mode . Text visiblity",
+ "repo": "NishantRana07/HrRoadways",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-26T17:19:46Z",
+ "updated_at": "2025-07-27T21:23:46Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-27T21:23:46Z",
+ "author_url": "https://github.com/mr-rishikesh",
+ "author_avatar": "https://avatars.githubusercontent.com/u/160262729?v=4"
+ },
+ {
+ "url": "https://github.com/NishantRana07/HrRoadways/pull/369",
+ "title": "Enhance Form UI: Add Placeholders and Improve Input Visibility",
+ "repo": "NishantRana07/HrRoadways",
+ "level": "level2",
+ "points": 7,
+ "created_at": "2025-07-25T11:35:33Z",
+ "updated_at": "2025-07-26T07:46:24Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-26T07:46:15Z",
+ "author_url": "https://github.com/mr-rishikesh",
+ "author_avatar": "https://avatars.githubusercontent.com/u/160262729?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/160262729?v=4",
+ "profile_url": "https://github.com/mr-rishikesh"
+ },
+ "vanshika-ramchandani": {
+ "expectedPoints": 15,
+ "currentPoints": 11,
+ "levels": {
+ "level1": 2,
+ "level2": 1,
+ "level3": 0
+ },
+ "prs": [
+ {
+ "url": "https://github.com/pavitraag/Project-Vault/pull/204",
+ "title": "Back button styling and position",
+ "repo": "pavitraag/Project-Vault",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-29T21:23:45Z",
+ "updated_at": "2025-07-31T05:10:27Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-31T05:10:27Z",
+ "author_url": "https://github.com/vanshika-ramchandani",
+ "author_avatar": "https://avatars.githubusercontent.com/u/197687821?v=4"
+ },
+ {
+ "url": "https://github.com/pavitraag/Project-Vault/pull/163",
+ "title": "Feature/face login",
+ "repo": "pavitraag/Project-Vault",
+ "level": "level2",
+ "points": 7,
+ "created_at": "2025-07-28T20:34:01Z",
+ "updated_at": "2025-07-29T18:45:25Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-29T13:54:30Z",
+ "author_url": "https://github.com/vanshika-ramchandani",
+ "author_avatar": "https://avatars.githubusercontent.com/u/197687821?v=4"
+ },
+ {
+ "url": "https://github.com/pavitraag/Project-Vault/pull/70",
+ "title": "Fix/website.html",
+ "repo": "pavitraag/Project-Vault",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-24T20:16:49Z",
+ "updated_at": "2025-07-29T21:28:24Z",
+ "state": "closed",
+ "merged": false,
+ "merged_at": null,
+ "author_url": "https://github.com/vanshika-ramchandani",
+ "author_avatar": "https://avatars.githubusercontent.com/u/197687821?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/197687821?v=4",
+ "profile_url": "https://github.com/vanshika-ramchandani"
+ },
+ "pranayshl": {
+ "expectedPoints": 11,
+ "currentPoints": 11,
+ "levels": {
+ "level1": 1,
+ "level2": 1,
+ "level3": 0
+ },
+ "prs": [
+ {
+ "url": "https://github.com/Prateek9876/NagarVikas/pull/170",
+ "title": " updated profile screen",
+ "repo": "Prateek9876/NagarVikas",
+ "level": "level2",
+ "points": 7,
+ "created_at": "2025-07-28T12:29:00Z",
+ "updated_at": "2025-07-28T14:08:50Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-28T14:08:50Z",
+ "author_url": "https://github.com/pranayshl",
+ "author_avatar": "https://avatars.githubusercontent.com/u/163889726?v=4"
+ },
+ {
+ "url": "https://github.com/may-tas/TextEditingApp/pull/16",
+ "title": "added functionalities and handled edge cases",
+ "repo": "may-tas/TextEditingApp",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-25T04:50:40Z",
+ "updated_at": "2025-07-25T14:39:30Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-25T14:38:30Z",
+ "author_url": "https://github.com/pranayshl",
+ "author_avatar": "https://avatars.githubusercontent.com/u/163889726?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/163889726?v=4",
+ "profile_url": "https://github.com/pranayshl"
+ },
+ "GauriShirke12": {
+ "expectedPoints": 11,
+ "currentPoints": 11,
+ "levels": {
+ "level1": 1,
+ "level2": 1,
+ "level3": 0
+ },
+ "prs": [
+ {
+ "url": "https://github.com/rahulkhandait-sde/cineverse/pull/17",
+ "title": "Feature/mobile responsiveness",
+ "repo": "rahulkhandait-sde/movie-search",
+ "level": "level2",
+ "points": 7,
+ "created_at": "2025-07-27T10:51:23Z",
+ "updated_at": "2025-07-27T14:24:07Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-27T14:23:39Z",
+ "author_url": "https://github.com/GauriShirke12",
+ "author_avatar": "https://avatars.githubusercontent.com/u/152776730?v=4"
+ },
+ {
+ "url": "https://github.com/rahulkhandait-sde/cineverse/pull/16",
+ "title": " feat: Add search history functionality",
+ "repo": "rahulkhandait-sde/movie-search",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-27T10:07:36Z",
+ "updated_at": "2025-08-02T08:00:41Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-08-02T07:59:37Z",
+ "author_url": "https://github.com/GauriShirke12",
+ "author_avatar": "https://avatars.githubusercontent.com/u/152776730?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/152776730?v=4",
+ "profile_url": "https://github.com/GauriShirke12"
+ },
+ "suhanakesharwani": {
+ "expectedPoints": 11,
+ "currentPoints": 11,
+ "levels": {
+ "level1": 1,
+ "level2": 1,
+ "level3": 0
+ },
+ "prs": [
+ {
+ "url": "https://github.com/reshamsai150/7.Analysis-and-Prediction-of-Electric-Vehicle-Costs-A-Machine-Learning-Based-Approach/pull/20",
+ "title": "improved training of model by handling major issues in the training of the model",
+ "repo": "reshamsai150/7.Analysis-and-Prediction-of-Electric-Vehicle-Costs-A-Machine-Learning-Based-Approach",
+ "level": "level2",
+ "points": 7,
+ "created_at": "2025-07-25T17:22:00Z",
+ "updated_at": "2025-07-26T12:32:09Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-26T12:31:29Z",
+ "author_url": "https://github.com/suhanakesharwani",
+ "author_avatar": "https://avatars.githubusercontent.com/u/192437075?v=4"
+ },
+ {
+ "url": "https://github.com/reshamsai150/7.Analysis-and-Prediction-of-Electric-Vehicle-Costs-A-Machine-Learning-Based-Approach/pull/10",
+ "title": "Allow decimal input in input fiels like AccelSec and Battery_Pack_Kwh",
+ "repo": "reshamsai150/7.Analysis-and-Prediction-of-Electric-Vehicle-Costs-A-Machine-Learning-Based-Approach",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-23T20:39:45Z",
+ "updated_at": "2025-07-25T09:50:42Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-25T09:49:54Z",
+ "author_url": "https://github.com/suhanakesharwani",
+ "author_avatar": "https://avatars.githubusercontent.com/u/192437075?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/192437075?v=4",
+ "profile_url": "https://github.com/suhanakesharwani"
+ },
+ "Sudharshan2516": {
+ "expectedPoints": 11,
+ "currentPoints": 11,
+ "levels": {
+ "level1": 1,
+ "level2": 1,
+ "level3": 0
+ },
+ "prs": [
+ {
+ "url": "https://github.com/ruchikakengal/WebDevIn100_Days/pull/255",
+ "title": "Added New Feature Task Analysis Table",
+ "repo": "ruchikakengal/WebDevIn100_Days",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-23T14:37:49Z",
+ "updated_at": "2025-07-24T15:23:53Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-24T15:23:52Z",
+ "author_url": "https://github.com/Sudharshan2516",
+ "author_avatar": "https://avatars.githubusercontent.com/u/182185633?v=4"
+ },
+ {
+ "url": "https://github.com/sampadatiwari30/DeshDarshan/pull/134",
+ "title": "New Feature Added Under Heritage Section ",
+ "repo": "sampadatiwari30/DeshDarshan",
+ "level": "level2",
+ "points": 7,
+ "created_at": "2025-07-26T04:39:41Z",
+ "updated_at": "2025-07-26T05:18:46Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-26T05:18:17Z",
+ "author_url": "https://github.com/Sudharshan2516",
+ "author_avatar": "https://avatars.githubusercontent.com/u/182185633?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/182185633?v=4",
+ "profile_url": "https://github.com/Sudharshan2516"
+ },
+ "surajbhanjani": {
+ "expectedPoints": 11,
+ "currentPoints": 11,
+ "levels": {
+ "level1": 1,
+ "level2": 1,
+ "level3": 0
+ },
+ "prs": [
+ {
+ "url": "https://github.com/rutikakengal/100DAYS_OF_100WEBPROJECTS/pull/92",
+ "title": "functionality added for random button",
+ "repo": "rutikakengal/100DAYS_OF_100WEBPROJECTS",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-23T20:03:28Z",
+ "updated_at": "2025-07-24T08:00:09Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-24T07:59:34Z",
+ "author_url": "https://github.com/surajbhanjani",
+ "author_avatar": "https://avatars.githubusercontent.com/u/188303571?v=4"
+ },
+ {
+ "url": "https://github.com/rutikakengal/100DAYS_OF_100WEBPROJECTS/pull/52",
+ "title": "Changes in Project searching, random project button added,responsiven…",
+ "repo": "rutikakengal/100DAYS_OF_100WEBPROJECTS",
+ "level": "level2",
+ "points": 7,
+ "created_at": "2025-07-23T05:31:50Z",
+ "updated_at": "2025-07-23T08:06:11Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-23T08:06:11Z",
+ "author_url": "https://github.com/surajbhanjani",
+ "author_avatar": "https://avatars.githubusercontent.com/u/188303571?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/188303571?v=4",
+ "profile_url": "https://github.com/surajbhanjani"
+ },
+ "Subhi311": {
+ "expectedPoints": 11,
+ "currentPoints": 11,
+ "levels": {
+ "level1": 1,
+ "level2": 1,
+ "level3": 0
+ },
+ "prs": [
+ {
+ "url": "https://github.com/SomdattaNag/Security-Screening-System/pull/104",
+ "title": "Docs: Improved README and learn.md, added banner image.",
+ "repo": "SomdattaNag/Security-Screening-System",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-31T14:34:56Z",
+ "updated_at": "2025-08-01T06:13:27Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-31T14:52:23Z",
+ "author_url": "https://github.com/Subhi311",
+ "author_avatar": "https://avatars.githubusercontent.com/u/182465237?v=4"
+ },
+ {
+ "url": "https://github.com/SurajSG23/PrepBuddy/pull/101",
+ "title": "Add detailed LEARN.md with tech stack, folder structure, and resources",
+ "repo": "SurajSG23/PrepBuddy",
+ "level": "level2",
+ "points": 7,
+ "created_at": "2025-08-01T18:48:57Z",
+ "updated_at": "2025-08-01T19:29:26Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-08-01T19:29:26Z",
+ "author_url": "https://github.com/Subhi311",
+ "author_avatar": "https://avatars.githubusercontent.com/u/182465237?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/182465237?v=4",
+ "profile_url": "https://github.com/Subhi311"
+ },
+ "Disha19-09": {
+ "expectedPoints": 10,
+ "currentPoints": 10,
+ "levels": {
+ "level1": 0,
+ "level2": 0,
+ "level3": 1
+ },
+ "prs": [
+ {
+ "url": "https://github.com/opensource-society/notesvault/pull/569",
+ "title": "Modifications in Student Account Page",
+ "repo": "opensource-society/NotesVault",
+ "level": "level3",
+ "points": 10,
+ "created_at": "2025-08-02T08:52:34Z",
+ "updated_at": "2025-08-03T04:12:44Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-08-03T00:08:12Z",
+ "author_url": "https://github.com/Disha19-09",
+ "author_avatar": "https://avatars.githubusercontent.com/u/184100433?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/184100433?v=4",
+ "profile_url": "https://github.com/Disha19-09"
+ },
+ "Arsenal17x": {
+ "expectedPoints": 10,
+ "currentPoints": 10,
+ "levels": {
+ "level1": 0,
+ "level2": 0,
+ "level3": 1
+ },
+ "prs": [
+ {
+ "url": "https://github.com/opensource-society/notesvault/pull/524",
+ "title": "Removed Redundant CSS and Documented CSS for simplicity",
+ "repo": "opensource-society/NotesVault",
+ "level": "level3",
+ "points": 10,
+ "created_at": "2025-07-31T20:49:50Z",
+ "updated_at": "2025-08-02T23:25:45Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-08-02T01:46:25Z",
+ "author_url": "https://github.com/Arsenal17x",
+ "author_avatar": "https://avatars.githubusercontent.com/u/135861482?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/135861482?v=4",
+ "profile_url": "https://github.com/Arsenal17x"
+ },
+ "Kalika-Jay": {
+ "expectedPoints": 10,
+ "currentPoints": 10,
+ "levels": {
+ "level1": 0,
+ "level2": 0,
+ "level3": 1
+ },
+ "prs": [
+ {
+ "url": "https://github.com/opensource-society/notesvault/pull/321",
+ "title": "Moved files into correct directories and organized the repo",
+ "repo": "opensource-society/NotesVault",
+ "level": "level3",
+ "points": 10,
+ "created_at": "2025-07-25T17:04:39Z",
+ "updated_at": "2025-07-25T22:27:21Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-25T21:45:57Z",
+ "author_url": "https://github.com/Kalika-Jay",
+ "author_avatar": "https://avatars.githubusercontent.com/u/198479171?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/198479171?v=4",
+ "profile_url": "https://github.com/Kalika-Jay"
+ },
+ "devananda11": {
+ "expectedPoints": 10,
+ "currentPoints": 10,
+ "levels": {
+ "level1": 0,
+ "level2": 0,
+ "level3": 1
+ },
+ "prs": [
+ {
+ "url": "https://github.com/huamanraj/aitoolbox.software/pull/53",
+ "title": "feat: Add LinkedIn Post Generator tool",
+ "repo": "huamanraj/aitoolbox.software",
+ "level": "level3",
+ "points": 10,
+ "created_at": "2025-08-01T19:53:42Z",
+ "updated_at": "2025-08-02T15:49:11Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-08-02T15:49:11Z",
+ "author_url": "https://github.com/devananda11",
+ "author_avatar": "https://avatars.githubusercontent.com/u/144819233?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/144819233?v=4",
+ "profile_url": "https://github.com/devananda11"
+ },
+ "Surya10102000": {
+ "expectedPoints": 10,
+ "currentPoints": 10,
+ "levels": {
+ "level1": 0,
+ "level2": 0,
+ "level3": 1
+ },
+ "prs": [
+ {
+ "url": "https://github.com/huamanraj/aitoolbox.software/pull/41",
+ "title": " Resume Builder Feature",
+ "repo": "huamanraj/aitoolbox.software",
+ "level": "level3",
+ "points": 10,
+ "created_at": "2025-07-29T21:39:17Z",
+ "updated_at": "2025-07-31T01:17:04Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-31T01:17:04Z",
+ "author_url": "https://github.com/Surya10102000",
+ "author_avatar": "https://avatars.githubusercontent.com/u/71247171?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/71247171?v=4",
+ "profile_url": "https://github.com/Surya10102000"
+ },
+ "Bindu2006": {
+ "expectedPoints": 10,
+ "currentPoints": 10,
+ "levels": {
+ "level1": 0,
+ "level2": 0,
+ "level3": 1
+ },
+ "prs": [
+ {
+ "url": "https://github.com/Amarjha01/InfantCareCompass/pull/156",
+ "title": "Added Copilot assistant #145",
+ "repo": "Amarjha01/InfantCareCompass",
+ "level": "level3",
+ "points": 10,
+ "created_at": "2025-07-30T07:25:07Z",
+ "updated_at": "2025-08-03T04:47:21Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-30T10:55:38Z",
+ "author_url": "https://github.com/Bindu2006",
+ "author_avatar": "https://avatars.githubusercontent.com/u/164390944?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/164390944?v=4",
+ "profile_url": "https://github.com/Bindu2006"
+ },
+ "AtulKumar2004": {
+ "expectedPoints": 10,
+ "currentPoints": 10,
+ "levels": {
+ "level1": 0,
+ "level2": 0,
+ "level3": 1
+ },
+ "prs": [
+ {
+ "url": "https://github.com/Amarjha01/InfantCareCompass/pull/132",
+ "title": "improved-signin-signup-workflow",
+ "repo": "Amarjha01/InfantCareCompass",
+ "level": "level3",
+ "points": 10,
+ "created_at": "2025-07-27T10:36:43Z",
+ "updated_at": "2025-07-28T16:39:13Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-28T16:38:23Z",
+ "author_url": "https://github.com/AtulKumar2004",
+ "author_avatar": "https://avatars.githubusercontent.com/u/140424658?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/140424658?v=4",
+ "profile_url": "https://github.com/AtulKumar2004"
+ },
+ "Vriti62": {
+ "expectedPoints": 10,
+ "currentPoints": 10,
+ "levels": {
+ "level1": 0,
+ "level2": 0,
+ "level3": 1
+ },
+ "prs": [
+ {
+ "url": "https://github.com/Amarjha01/InfantCareCompass/pull/83",
+ "title": "signup-validation-fixes",
+ "repo": "Amarjha01/InfantCareCompass",
+ "level": "level3",
+ "points": 10,
+ "created_at": "2025-07-24T15:37:09Z",
+ "updated_at": "2025-07-25T13:40:49Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-25T13:40:20Z",
+ "author_url": "https://github.com/Vriti62",
+ "author_avatar": "https://avatars.githubusercontent.com/u/136335873?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/136335873?v=4",
+ "profile_url": "https://github.com/Vriti62"
+ },
+ "Shainaa17": {
+ "expectedPoints": 10,
+ "currentPoints": 10,
+ "levels": {
+ "level1": 0,
+ "level2": 0,
+ "level3": 1
+ },
+ "prs": [
+ {
+ "url": "https://github.com/Amarjha01/InfantCareCompass/pull/69",
+ "title": "Vaccine Reminder Feature",
+ "repo": "Amarjha01/InfantCareCompass",
+ "level": "level3",
+ "points": 10,
+ "created_at": "2025-07-23T18:55:12Z",
+ "updated_at": "2025-07-24T12:54:04Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-24T02:49:58Z",
+ "author_url": "https://github.com/Shainaa17",
+ "author_avatar": "https://avatars.githubusercontent.com/u/183417107?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/183417107?v=4",
+ "profile_url": "https://github.com/Shainaa17"
+ },
+ "LakshyaSingh07": {
+ "expectedPoints": 10,
+ "currentPoints": 10,
+ "levels": {
+ "level1": 0,
+ "level2": 0,
+ "level3": 1
+ },
+ "prs": [
+ {
+ "url": "https://github.com/itsAnimation/AnimateItNow/pull/507",
+ "title": "Added Feature Template : Login Form with Glass Morphism effect",
+ "repo": "itsAnimation/AnimateItNow",
+ "level": "level3",
+ "points": 10,
+ "created_at": "2025-07-26T16:59:47Z",
+ "updated_at": "2025-07-30T09:45:25Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-30T09:45:24Z",
+ "author_url": "https://github.com/LakshyaSingh07",
+ "author_avatar": "https://avatars.githubusercontent.com/u/183939614?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/183939614?v=4",
+ "profile_url": "https://github.com/LakshyaSingh07"
+ },
+ "28sakshipatil": {
+ "expectedPoints": 10,
+ "currentPoints": 10,
+ "levels": {
+ "level1": 0,
+ "level2": 0,
+ "level3": 1
+ },
+ "prs": [
+ {
+ "url": "https://github.com/itsAnimation/AnimateItNow/pull/118",
+ "title": "feat: Added 4 variants of login form, features, and hero section with c…",
+ "repo": "itsAnimation/AnimateItNow",
+ "level": "level3",
+ "points": 10,
+ "created_at": "2025-07-22T18:50:02Z",
+ "updated_at": "2025-07-22T19:27:16Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-22T19:27:16Z",
+ "author_url": "https://github.com/28sakshipatil",
+ "author_avatar": "https://avatars.githubusercontent.com/u/139044908?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/139044908?v=4",
+ "profile_url": "https://github.com/28sakshipatil"
+ },
+ "Nakshatra-14": {
+ "expectedPoints": 10,
+ "currentPoints": 10,
+ "levels": {
+ "level1": 0,
+ "level2": 0,
+ "level3": 1
+ },
+ "prs": [
+ {
+ "url": "https://github.com/itsAnimation/AnimateItNow/pull/28",
+ "title": "add Display contributors dynamically",
+ "repo": "itsAnimation/AnimateItNow",
+ "level": "level3",
+ "points": 10,
+ "created_at": "2025-07-21T21:21:55Z",
+ "updated_at": "2025-07-21T21:48:46Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-21T21:48:27Z",
+ "author_url": "https://github.com/Nakshatra-14",
+ "author_avatar": "https://avatars.githubusercontent.com/u/87998363?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/87998363?v=4",
+ "profile_url": "https://github.com/Nakshatra-14"
+ },
+ "SugandhaSawhney": {
+ "expectedPoints": 10,
+ "currentPoints": 10,
+ "levels": {
+ "level1": 0,
+ "level2": 0,
+ "level3": 1
+ },
+ "prs": [
+ {
+ "url": "https://github.com/Ayushjhawar8/Flavor-ai/pull/117",
+ "title": "Updated app/page.jsx to improve layout of landing page",
+ "repo": "Ayushjhawar8/Flavor-ai",
+ "level": "level3",
+ "points": 10,
+ "created_at": "2025-07-30T21:28:41Z",
+ "updated_at": "2025-08-01T15:08:28Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-08-01T13:48:37Z",
+ "author_url": "https://github.com/SugandhaSawhney",
+ "author_avatar": "https://avatars.githubusercontent.com/u/194127251?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/194127251?v=4",
+ "profile_url": "https://github.com/SugandhaSawhney"
+ },
+ "hana-4": {
+ "expectedPoints": 10,
+ "currentPoints": 10,
+ "levels": {
+ "level1": 0,
+ "level2": 0,
+ "level3": 1
+ },
+ "prs": [
+ {
+ "url": "https://github.com/Ayushjhawar8/Flavor-ai/pull/75",
+ "title": "Add Ingredient Detection (#24)",
+ "repo": "Ayushjhawar8/Flavor-ai",
+ "level": "level3",
+ "points": 10,
+ "created_at": "2025-07-26T05:39:38Z",
+ "updated_at": "2025-07-29T12:25:38Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-29T12:25:38Z",
+ "author_url": "https://github.com/hana-4",
+ "author_avatar": "https://avatars.githubusercontent.com/u/137881773?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/137881773?v=4",
+ "profile_url": "https://github.com/hana-4"
+ },
+ "Shagun1204": {
+ "expectedPoints": 10,
+ "currentPoints": 10,
+ "levels": {
+ "level1": 0,
+ "level2": 0,
+ "level3": 1
+ },
+ "prs": [
+ {
+ "url": "https://github.com/chandannekya/Clean-Breath/pull/56",
+ "title": "Updated about us page",
+ "repo": "chandannekya/Clean-Breath",
+ "level": "level3",
+ "points": 10,
+ "created_at": "2025-07-24T13:40:42Z",
+ "updated_at": "2025-07-25T11:19:19Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-25T11:19:19Z",
+ "author_url": "https://github.com/Shagun1204",
+ "author_avatar": "https://avatars.githubusercontent.com/u/219647267?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/219647267?v=4",
+ "profile_url": "https://github.com/Shagun1204"
+ },
+ "google-labs-jules[bot]": {
+ "expectedPoints": 10,
+ "currentPoints": 10,
+ "levels": {
+ "level1": 0,
+ "level2": 0,
+ "level3": 1
+ },
+ "prs": [
+ {
+ "url": "https://github.com/Devasy23/splitwiser/pull/93",
+ "title": "feat: Add create and join group functionality",
+ "repo": "Devasy23/splitwiser",
+ "level": "level3",
+ "points": 10,
+ "created_at": "2025-07-30T13:56:26Z",
+ "updated_at": "2025-08-02T13:20:11Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-08-02T13:05:28Z",
+ "author_url": "https://github.com/apps/google-labs-jules",
+ "author_avatar": "https://avatars.githubusercontent.com/in/842251?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/in/842251?v=4",
+ "profile_url": "https://github.com/apps/google-labs-jules"
+ },
+ "meghan9908": {
+ "expectedPoints": 17,
+ "currentPoints": 10,
+ "levels": {
+ "level1": 0,
+ "level2": 1,
+ "level3": 1
+ },
+ "prs": [
+ {
+ "url": "https://github.com/Devasy23/splitwiser/pull/76",
+ "title": "Implemented Google Authentication using firebase",
+ "repo": "Devasy23/splitwiser",
+ "level": "level3",
+ "points": 10,
+ "created_at": "2025-07-26T05:06:18Z",
+ "updated_at": "2025-07-29T18:41:50Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-29T18:41:50Z",
+ "author_url": "https://github.com/meghan9908",
+ "author_avatar": "https://avatars.githubusercontent.com/u/151909915?v=4"
+ },
+ {
+ "url": "https://github.com/Devasy23/splitwiser/pull/68",
+ "title": "Implemented Google Authentication using firebase",
+ "repo": "Devasy23/splitwiser",
+ "level": "level2",
+ "points": 7,
+ "created_at": "2025-07-24T11:48:32Z",
+ "updated_at": "2025-07-24T17:45:08Z",
+ "state": "closed",
+ "merged": false,
+ "merged_at": null,
+ "author_url": "https://github.com/meghan9908",
+ "author_avatar": "https://avatars.githubusercontent.com/u/151909915?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/151909915?v=4",
+ "profile_url": "https://github.com/meghan9908"
+ },
+ "Prathmeshm08": {
+ "expectedPoints": 10,
+ "currentPoints": 10,
+ "levels": {
+ "level1": 0,
+ "level2": 0,
+ "level3": 1
+ },
+ "prs": [
+ {
+ "url": "https://github.com/Dhruvi-tech/firebase-chat-app/pull/27",
+ "title": "Add: Message delievary status feature",
+ "repo": "Dhruvi-tech/firebase-chat-app",
+ "level": "level3",
+ "points": 10,
+ "created_at": "2025-07-31T14:54:07Z",
+ "updated_at": "2025-07-31T15:01:19Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-31T15:01:19Z",
+ "author_url": "https://github.com/Prathmeshm08",
+ "author_avatar": "https://avatars.githubusercontent.com/u/192352077?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/192352077?v=4",
+ "profile_url": "https://github.com/Prathmeshm08"
+ },
+ "Akshita-v": {
+ "expectedPoints": 10,
+ "currentPoints": 10,
+ "levels": {
+ "level1": 0,
+ "level2": 0,
+ "level3": 1
+ },
+ "prs": [
+ {
+ "url": "https://github.com/Dhruvi-tech/firebase-chat-app/pull/26",
+ "title": "Improve Dark Mode and Update Send Button UI ",
+ "repo": "Dhruvi-tech/firebase-chat-app",
+ "level": "level3",
+ "points": 10,
+ "created_at": "2025-07-29T16:00:46Z",
+ "updated_at": "2025-07-31T13:58:10Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-31T13:57:08Z",
+ "author_url": "https://github.com/Akshita-v",
+ "author_avatar": "https://avatars.githubusercontent.com/u/157946052?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/157946052?v=4",
+ "profile_url": "https://github.com/Akshita-v"
+ },
+ "vishnumegharaj": {
+ "expectedPoints": 10,
+ "currentPoints": 10,
+ "levels": {
+ "level1": 0,
+ "level2": 0,
+ "level3": 1
+ },
+ "prs": [
+ {
+ "url": "https://github.com/efshaperveen/MindJournal/pull/51",
+ "title": "feat(entry): implement initial goals input and display",
+ "repo": "efshaperveen/MindJournal",
+ "level": "level3",
+ "points": 10,
+ "created_at": "2025-07-26T16:42:05Z",
+ "updated_at": "2025-07-26T17:40:34Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-26T17:40:34Z",
+ "author_url": "https://github.com/vishnumegharaj",
+ "author_avatar": "https://avatars.githubusercontent.com/u/93758626?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/93758626?v=4",
+ "profile_url": "https://github.com/vishnumegharaj"
+ },
+ "SmitaB007": {
+ "expectedPoints": 10,
+ "currentPoints": 10,
+ "levels": {
+ "level1": 0,
+ "level2": 0,
+ "level3": 1
+ },
+ "prs": [
+ {
+ "url": "https://github.com/Khushi-Nigam/jobportal/pull/52",
+ "title": "added tag based job recommendation feature",
+ "repo": "Khushi-Nigam/jobportal",
+ "level": "level3",
+ "points": 10,
+ "created_at": "2025-07-25T09:24:13Z",
+ "updated_at": "2025-07-25T09:51:06Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-25T09:50:00Z",
+ "author_url": "https://github.com/SmitaB007",
+ "author_avatar": "https://avatars.githubusercontent.com/u/144260448?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/144260448?v=4",
+ "profile_url": "https://github.com/SmitaB007"
+ },
+ "Ashu-sCode": {
+ "expectedPoints": 10,
+ "currentPoints": 10,
+ "levels": {
+ "level1": 0,
+ "level2": 0,
+ "level3": 1
+ },
+ "prs": [
+ {
+ "url": "https://github.com/Kritika75/TheCawnporeMag.github.io/pull/59",
+ "title": "feat: Add Open Source page for GSSoC 2025 with responsive design",
+ "repo": "Kritika75/TheCawnporeMag.github.io",
+ "level": "level3",
+ "points": 10,
+ "created_at": "2025-07-23T10:26:10Z",
+ "updated_at": "2025-07-24T02:58:33Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-23T15:12:58Z",
+ "author_url": "https://github.com/Ashu-sCode",
+ "author_avatar": "https://avatars.githubusercontent.com/u/97838808?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/97838808?v=4",
+ "profile_url": "https://github.com/Ashu-sCode"
+ },
+ "VaibhavDangaich": {
+ "expectedPoints": 10,
+ "currentPoints": 10,
+ "levels": {
+ "level1": 0,
+ "level2": 0,
+ "level3": 1
+ },
+ "prs": [
+ {
+ "url": "https://github.com/GitMetricsLab/github_tracker/pull/126",
+ "title": "Refactor: Improve Home page authentication form styling",
+ "repo": "mehul-m-prajapati/github_tracker",
+ "level": null,
+ "points": 0,
+ "created_at": "2025-07-25T13:16:04Z",
+ "updated_at": "2025-07-26T06:33:54Z",
+ "state": "closed",
+ "merged": false,
+ "merged_at": null,
+ "author_url": "https://github.com/VaibhavDangaich",
+ "author_avatar": "https://avatars.githubusercontent.com/u/31512333?v=4"
+ },
+ {
+ "url": "https://github.com/sristy17/next-payroll/pull/54",
+ "title": "Protect /dashboard Route Using Authentication Middleware",
+ "repo": "sristy17/next-payroll",
+ "level": "level3",
+ "points": 10,
+ "created_at": "2025-07-29T16:25:04Z",
+ "updated_at": "2025-07-29T17:46:48Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-29T17:24:32Z",
+ "author_url": "https://github.com/VaibhavDangaich",
+ "author_avatar": "https://avatars.githubusercontent.com/u/31512333?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/31512333?v=4",
+ "profile_url": "https://github.com/VaibhavDangaich"
+ },
+ "surya-moorthy": {
+ "expectedPoints": 10,
+ "currentPoints": 10,
+ "levels": {
+ "level1": 0,
+ "level2": 0,
+ "level3": 1
+ },
+ "prs": [
+ {
+ "url": "https://github.com/NishantRana07/HrRoadways/pull/396",
+ "title": "Auth frontend",
+ "repo": "NishantRana07/HrRoadways",
+ "level": "level3",
+ "points": 10,
+ "created_at": "2025-07-27T07:41:55Z",
+ "updated_at": "2025-07-27T21:37:23Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-27T21:37:22Z",
+ "author_url": "https://github.com/surya-moorthy",
+ "author_avatar": "https://avatars.githubusercontent.com/u/169181413?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/169181413?v=4",
+ "profile_url": "https://github.com/surya-moorthy"
+ },
+ "Priyanshijain2005": {
+ "expectedPoints": 10,
+ "currentPoints": 10,
+ "levels": {
+ "level1": 0,
+ "level2": 0,
+ "level3": 1
+ },
+ "prs": [
+ {
+ "url": "https://github.com/NishantRana07/HrRoadways/pull/346",
+ "title": "Sampledata in blog page",
+ "repo": "NishantRana07/HrRoadways",
+ "level": "level3",
+ "points": 10,
+ "created_at": "2025-07-23T12:37:53Z",
+ "updated_at": "2025-07-24T06:14:13Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-24T06:14:06Z",
+ "author_url": "https://github.com/Priyanshijain2005",
+ "author_avatar": "https://avatars.githubusercontent.com/u/153429909?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/153429909?v=4",
+ "profile_url": "https://github.com/Priyanshijain2005"
+ },
+ "CodeByRachit": {
+ "expectedPoints": 10,
+ "currentPoints": 10,
+ "levels": {
+ "level1": 0,
+ "level2": 0,
+ "level3": 1
+ },
+ "prs": [
+ {
+ "url": "https://github.com/NishantRana07/HrRoadways/pull/290",
+ "title": "Fix: Display issues for Technology Stack images & Travel Locations page and Added Filer ",
+ "repo": "NishantRana07/HrRoadways",
+ "level": "level3",
+ "points": 10,
+ "created_at": "2025-07-22T09:48:08Z",
+ "updated_at": "2025-07-22T11:27:05Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-22T11:27:05Z",
+ "author_url": "https://github.com/CodeByRachit",
+ "author_avatar": "https://avatars.githubusercontent.com/u/190184682?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/190184682?v=4",
+ "profile_url": "https://github.com/CodeByRachit"
+ },
+ "Achiket123": {
+ "expectedPoints": 40,
+ "currentPoints": 10,
+ "levels": {
+ "level1": 0,
+ "level2": 0,
+ "level3": 4
+ },
+ "prs": [
+ {
+ "url": "https://github.com/Prateek9876/NagarVikas/pull/189",
+ "title": "MERGE FIX: LOCALIZATION",
+ "repo": "Prateek9876/NagarVikas",
+ "level": "level3",
+ "points": 10,
+ "created_at": "2025-07-31T18:06:09Z",
+ "updated_at": "2025-08-01T14:45:44Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-08-01T14:45:44Z",
+ "author_url": "https://github.com/Achiket123",
+ "author_avatar": "https://avatars.githubusercontent.com/u/126181868?v=4"
+ },
+ {
+ "url": "https://github.com/Prateek9876/NagarVikas/pull/173",
+ "title": "Localization : More Descriptive Strings In Localization",
+ "repo": "Prateek9876/NagarVikas",
+ "level": "level3",
+ "points": 10,
+ "created_at": "2025-07-28T15:01:41Z",
+ "updated_at": "2025-07-31T15:05:03Z",
+ "state": "closed",
+ "merged": false,
+ "merged_at": null,
+ "author_url": "https://github.com/Achiket123",
+ "author_avatar": "https://avatars.githubusercontent.com/u/126181868?v=4"
+ },
+ {
+ "url": "https://github.com/Prateek9876/NagarVikas/pull/164",
+ "title": "Localization",
+ "repo": "Prateek9876/NagarVikas",
+ "level": "level3",
+ "points": 10,
+ "created_at": "2025-07-27T17:44:53Z",
+ "updated_at": "2025-07-28T14:23:21Z",
+ "state": "closed",
+ "merged": false,
+ "merged_at": null,
+ "author_url": "https://github.com/Achiket123",
+ "author_avatar": "https://avatars.githubusercontent.com/u/126181868?v=4"
+ },
+ {
+ "url": "https://github.com/Prateek9876/NagarVikas/pull/163",
+ "title": "Localization",
+ "repo": "Prateek9876/NagarVikas",
+ "level": "level3",
+ "points": 10,
+ "created_at": "2025-07-27T15:27:07Z",
+ "updated_at": "2025-07-27T18:03:38Z",
+ "state": "closed",
+ "merged": false,
+ "merged_at": null,
+ "author_url": "https://github.com/Achiket123",
+ "author_avatar": "https://avatars.githubusercontent.com/u/126181868?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/126181868?v=4",
+ "profile_url": "https://github.com/Achiket123"
+ },
+ "bagwanmisbah": {
+ "expectedPoints": 10,
+ "currentPoints": 10,
+ "levels": {
+ "level1": 0,
+ "level2": 0,
+ "level3": 1
+ },
+ "prs": [
+ {
+ "url": "https://github.com/PRIYANSHU2026/DataSentience-AIML/pull/328",
+ "title": "feat: Add Maternal Health Risk Prediction project",
+ "repo": "PRIYANSHU2026/DataSentience-AIML",
+ "level": "level3",
+ "points": 10,
+ "created_at": "2025-08-01T22:10:42Z",
+ "updated_at": "2025-08-02T20:11:23Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-08-02T20:11:23Z",
+ "author_url": "https://github.com/bagwanmisbah",
+ "author_avatar": "https://avatars.githubusercontent.com/u/162052331?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/162052331?v=4",
+ "profile_url": "https://github.com/bagwanmisbah"
+ },
+ "PragnyaKhandelwal": {
+ "expectedPoints": 10,
+ "currentPoints": 10,
+ "levels": {
+ "level1": 0,
+ "level2": 0,
+ "level3": 1
+ },
+ "prs": [
+ {
+ "url": "https://github.com/eccentriccoder01/TalkHeal/pull/77",
+ "title": "fix: hide sidebar and chat UI on login screen using session_state",
+ "repo": "eccentriccoder01/TalkHeal",
+ "level": "level3",
+ "points": 10,
+ "created_at": "2025-07-31T14:17:20Z",
+ "updated_at": "2025-08-03T03:52:21Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-08-02T05:31:26Z",
+ "author_url": "https://github.com/PragnyaKhandelwal",
+ "author_avatar": "https://avatars.githubusercontent.com/u/176940846?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/176940846?v=4",
+ "profile_url": "https://github.com/PragnyaKhandelwal"
+ },
+ "eccentriccoder01": {
+ "expectedPoints": 10,
+ "currentPoints": 10,
+ "levels": {
+ "level1": 0,
+ "level2": 0,
+ "level3": 1
+ },
+ "prs": [
+ {
+ "url": "https://github.com/eccentriccoder01/TalkHeal/pull/53",
+ "title": "Revert \"[Feature]: Pull request for Adding database capabilities to the chat-interface.py to make it more personalized #41\"",
+ "repo": "eccentriccoder01/TalkHeal",
+ "level": "level3",
+ "points": 10,
+ "created_at": "2025-07-27T07:02:54Z",
+ "updated_at": "2025-08-03T03:52:35Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-27T07:05:32Z",
+ "author_url": "https://github.com/eccentriccoder01",
+ "author_avatar": "https://avatars.githubusercontent.com/u/121952662?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/121952662?v=4",
+ "profile_url": "https://github.com/eccentriccoder01"
+ },
+ "sagnik-create": {
+ "expectedPoints": 10,
+ "currentPoints": 10,
+ "levels": {
+ "level1": 0,
+ "level2": 0,
+ "level3": 1
+ },
+ "prs": [
+ {
+ "url": "https://github.com/eccentriccoder01/TalkHeal/pull/51",
+ "title": "[Feature]: Pull request for Adding database capabilities to the chat-interface.py to make it more personalized #41",
+ "repo": "eccentriccoder01/TalkHeal",
+ "level": "level3",
+ "points": 10,
+ "created_at": "2025-07-26T18:34:47Z",
+ "updated_at": "2025-08-03T03:52:38Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-26T19:08:20Z",
+ "author_url": "https://github.com/sagnik-create",
+ "author_avatar": "https://avatars.githubusercontent.com/u/146818206?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/146818206?v=4",
+ "profile_url": "https://github.com/sagnik-create"
+ },
+ "TanmayNawlakhe": {
+ "expectedPoints": 10,
+ "currentPoints": 10,
+ "levels": {
+ "level1": 0,
+ "level2": 0,
+ "level3": 1
+ },
+ "prs": [
+ {
+ "url": "https://github.com/SamXop123/RigCrafter/pull/12",
+ "title": "Add save and load builds, copy builds",
+ "repo": "SamXop123/RigCrafter",
+ "level": "level3",
+ "points": 10,
+ "created_at": "2025-07-23T19:21:15Z",
+ "updated_at": "2025-07-24T16:03:58Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-24T16:02:38Z",
+ "author_url": "https://github.com/TanmayNawlakhe",
+ "author_avatar": "https://avatars.githubusercontent.com/u/157879753?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/157879753?v=4",
+ "profile_url": "https://github.com/TanmayNawlakhe"
+ },
+ "sourashmi23": {
+ "expectedPoints": 10,
+ "currentPoints": 10,
+ "levels": {
+ "level1": 0,
+ "level2": 0,
+ "level3": 1
+ },
+ "prs": [
+ {
+ "url": "https://github.com/saumyayadav25/cpp-dsa-sheet-testing/pull/83",
+ "title": "bot added",
+ "repo": "saumyayadav25/cpp-dsa-sheet-testing",
+ "level": "level3",
+ "points": 10,
+ "created_at": "2025-07-28T06:29:51Z",
+ "updated_at": "2025-07-28T08:52:16Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-28T08:52:15Z",
+ "author_url": "https://github.com/sourashmi23",
+ "author_avatar": "https://avatars.githubusercontent.com/u/138985338?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/138985338?v=4",
+ "profile_url": "https://github.com/sourashmi23"
+ },
+ "ShubhamG2004": {
+ "expectedPoints": 10,
+ "currentPoints": 10,
+ "levels": {
+ "level1": 0,
+ "level2": 0,
+ "level3": 1
+ },
+ "prs": [
+ {
+ "url": "https://github.com/saumyayadav25/cpp-dsa-sheet-testing/pull/28",
+ "title": "UI enhancements #27",
+ "repo": "saumyayadav25/cpp-dsa-sheet-testing",
+ "level": null,
+ "points": 0,
+ "created_at": "2025-07-24T02:51:46Z",
+ "updated_at": "2025-07-25T15:00:30Z",
+ "state": "closed",
+ "merged": false,
+ "merged_at": null,
+ "author_url": "https://github.com/ShubhamG2004",
+ "author_avatar": "https://avatars.githubusercontent.com/u/97297780?v=4"
+ },
+ {
+ "url": "https://github.com/saumyayadav25/cpp-dsa-sheet-testing/pull/26",
+ "title": "UI/UX: Enhanced Notes page layout, animations, and mobile view",
+ "repo": "saumyayadav25/cpp-dsa-sheet-testing",
+ "level": "level3",
+ "points": 10,
+ "created_at": "2025-07-23T18:47:47Z",
+ "updated_at": "2025-07-24T03:01:36Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-23T19:07:56Z",
+ "author_url": "https://github.com/ShubhamG2004",
+ "author_avatar": "https://avatars.githubusercontent.com/u/97297780?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/97297780?v=4",
+ "profile_url": "https://github.com/ShubhamG2004"
+ },
+ "tushargururaj": {
+ "expectedPoints": 10,
+ "currentPoints": 10,
+ "levels": {
+ "level1": 0,
+ "level2": 0,
+ "level3": 1
+ },
+ "prs": [
+ {
+ "url": "https://github.com/SurajSG23/PrepBuddy/pull/98",
+ "title": "Feature: jwt authentication middleware",
+ "repo": "SurajSG23/PrepBuddy",
+ "level": "level3",
+ "points": 10,
+ "created_at": "2025-08-01T15:38:57Z",
+ "updated_at": "2025-08-01T15:42:36Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-08-01T15:42:16Z",
+ "author_url": "https://github.com/tushargururaj",
+ "author_avatar": "https://avatars.githubusercontent.com/u/171918364?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/171918364?v=4",
+ "profile_url": "https://github.com/tushargururaj"
+ },
+ "muskansikka1234": {
+ "expectedPoints": 10,
+ "currentPoints": 10,
+ "levels": {
+ "level1": 0,
+ "level2": 0,
+ "level3": 1
+ },
+ "prs": [
+ {
+ "url": "https://github.com/SurajSG23/PrepBuddy/pull/97",
+ "title": " Fix: Quiz UI and Logic for Subtopic Questions",
+ "repo": "SurajSG23/PrepBuddy",
+ "level": "level3",
+ "points": 10,
+ "created_at": "2025-08-01T13:21:38Z",
+ "updated_at": "2025-08-01T15:24:34Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-08-01T15:24:23Z",
+ "author_url": "https://github.com/muskansikka1234",
+ "author_avatar": "https://avatars.githubusercontent.com/u/118751521?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/118751521?v=4",
+ "profile_url": "https://github.com/muskansikka1234"
+ },
+ "PrekshaNR": {
+ "expectedPoints": 10,
+ "currentPoints": 10,
+ "levels": {
+ "level1": 0,
+ "level2": 0,
+ "level3": 1
+ },
+ "prs": [
+ {
+ "url": "https://github.com/SurajSG23/PrepBuddy/pull/31",
+ "title": "Adding favorites feature",
+ "repo": "SurajSG23/PrepBuddy",
+ "level": "level3",
+ "points": 10,
+ "created_at": "2025-07-25T15:44:31Z",
+ "updated_at": "2025-07-25T15:50:12Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-25T15:44:50Z",
+ "author_url": "https://github.com/PrekshaNR",
+ "author_avatar": "https://avatars.githubusercontent.com/u/192512722?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/192512722?v=4",
+ "profile_url": "https://github.com/PrekshaNR"
+ },
+ "tanushreenerella": {
+ "expectedPoints": 10,
+ "currentPoints": 10,
+ "levels": {
+ "level1": 0,
+ "level2": 0,
+ "level3": 1
+ },
+ "prs": [
+ {
+ "url": "https://github.com/SurajSG23/PrepBuddy/pull/17",
+ "title": "feat: add search functionality and improve HomePage layout",
+ "repo": "SurajSG23/PrepBuddy",
+ "level": "level3",
+ "points": 10,
+ "created_at": "2025-07-23T12:58:54Z",
+ "updated_at": "2025-07-23T13:17:35Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-23T13:15:37Z",
+ "author_url": "https://github.com/tanushreenerella",
+ "author_avatar": "https://avatars.githubusercontent.com/u/191557809?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/191557809?v=4",
+ "profile_url": "https://github.com/tanushreenerella"
+ },
+ "Preeth02": {
+ "expectedPoints": 10,
+ "currentPoints": 10,
+ "levels": {
+ "level1": 0,
+ "level2": 0,
+ "level3": 1
+ },
+ "prs": [
+ {
+ "url": "https://github.com/TanmayKalra09/SmartLog/pull/18",
+ "title": "feat: Initial Backend Implementation: User Authentication with JWT and MongoDB",
+ "repo": "TanmayKalra09/SmartLog",
+ "level": "level3",
+ "points": 10,
+ "created_at": "2025-07-22T01:49:32Z",
+ "updated_at": "2025-07-22T07:29:23Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-22T06:54:17Z",
+ "author_url": "https://github.com/Preeth02",
+ "author_avatar": "https://avatars.githubusercontent.com/u/157118386?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/157118386?v=4",
+ "profile_url": "https://github.com/Preeth02"
+ },
+ "Zehen-249": {
+ "expectedPoints": 10,
+ "currentPoints": 10,
+ "levels": {
+ "level1": 0,
+ "level2": 0,
+ "level3": 1
+ },
+ "prs": [
+ {
+ "url": "https://github.com/UTSAVS26/PyVerse/pull/1540",
+ "title": "Refactor/generic linked list ",
+ "repo": "UTSAVS26/PyVerse",
+ "level": "level3",
+ "points": 10,
+ "created_at": "2025-07-30T09:54:37Z",
+ "updated_at": "2025-08-02T12:19:40Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-08-02T07:53:50Z",
+ "author_url": "https://github.com/Zehen-249",
+ "author_avatar": "https://avatars.githubusercontent.com/u/117719513?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/117719513?v=4",
+ "profile_url": "https://github.com/Zehen-249"
+ },
+ "PrathmeshTatar": {
+ "expectedPoints": 10,
+ "currentPoints": 10,
+ "levels": {
+ "level1": 0,
+ "level2": 0,
+ "level3": 1
+ },
+ "prs": [
+ {
+ "url": "https://github.com/VAIBHAVBABELE/vaibhavbabele.github.io/pull/147",
+ "title": "AI-Powered Resume Analyzer ",
+ "repo": "VAIBHAVBABELE/vaibhavbabele.github.io",
+ "level": "level3",
+ "points": 10,
+ "created_at": "2025-07-27T09:33:12Z",
+ "updated_at": "2025-07-28T06:19:58Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-28T06:19:57Z",
+ "author_url": "https://github.com/PrathmeshTatar",
+ "author_avatar": "https://avatars.githubusercontent.com/u/175708767?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/175708767?v=4",
+ "profile_url": "https://github.com/PrathmeshTatar"
+ },
+ "AtulKumar24": {
+ "expectedPoints": 10,
+ "currentPoints": 10,
+ "levels": {
+ "level1": 0,
+ "level2": 0,
+ "level3": 1
+ },
+ "prs": [
+ {
+ "url": "https://github.com/VJLIVE/Athletix/pull/71",
+ "title": "Doctor Portal Updated",
+ "repo": "vjlive/athletix",
+ "level": "level3",
+ "points": 10,
+ "created_at": "2025-08-02T17:11:46Z",
+ "updated_at": "2025-08-02T17:36:21Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-08-02T17:36:09Z",
+ "author_url": "https://github.com/AtulKumar24",
+ "author_avatar": "https://avatars.githubusercontent.com/u/181762724?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/181762724?v=4",
+ "profile_url": "https://github.com/AtulKumar24"
+ },
+ "vartika1801": {
+ "expectedPoints": 10,
+ "currentPoints": 10,
+ "levels": {
+ "level1": 0,
+ "level2": 0,
+ "level3": 1
+ },
+ "prs": [
+ {
+ "url": "https://github.com/openml-stack/SentiLog-AI/pull/94",
+ "title": "Added BiLSTM model for bias classification",
+ "repo": "openml-stack/SentiLog-AI",
+ "level": "level3",
+ "points": 10,
+ "created_at": "2025-07-28T07:24:44Z",
+ "updated_at": "2025-07-30T08:10:26Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-28T16:19:09Z",
+ "author_url": "https://github.com/vartika1801",
+ "author_avatar": "https://avatars.githubusercontent.com/u/149591993?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/149591993?v=4",
+ "profile_url": "https://github.com/vartika1801"
+ },
+ "Sachinsen7": {
+ "expectedPoints": 10,
+ "currentPoints": 10,
+ "levels": {
+ "level1": 0,
+ "level2": 0,
+ "level3": 1
+ },
+ "prs": [
+ {
+ "url": "https://github.com/ygowthamr/WhitePaper/pull/133",
+ "title": "feat: Refactor & Enhance Core JavaScript Functionality",
+ "repo": "ygowthamr/WhitePaper",
+ "level": "level3",
+ "points": 10,
+ "created_at": "2025-07-21T17:45:58Z",
+ "updated_at": "2025-07-28T14:25:47Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-28T14:25:47Z",
+ "author_url": "https://github.com/Sachinsen7",
+ "author_avatar": "https://avatars.githubusercontent.com/u/143265500?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/143265500?v=4",
+ "profile_url": "https://github.com/Sachinsen7"
+ },
+ "SaswatSRoy": {
+ "expectedPoints": 10,
+ "currentPoints": 10,
+ "levels": {
+ "level1": 0,
+ "level2": 0,
+ "level3": 1
+ },
+ "prs": [
+ {
+ "url": "https://github.com/yuvrajsinghgmx/ShopSmart/pull/333",
+ "title": "Search Screen Implemented",
+ "repo": "yuvrajsinghgmx/ShopSmart",
+ "level": "level3",
+ "points": 10,
+ "created_at": "2025-08-01T19:27:11Z",
+ "updated_at": "2025-08-02T04:14:37Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-08-02T04:14:25Z",
+ "author_url": "https://github.com/SaswatSRoy",
+ "author_avatar": "https://avatars.githubusercontent.com/u/159812683?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/159812683?v=4",
+ "profile_url": "https://github.com/SaswatSRoy"
+ },
+ "Shoury-Rana": {
+ "expectedPoints": 10,
+ "currentPoints": 10,
+ "levels": {
+ "level1": 0,
+ "level2": 0,
+ "level3": 1
+ },
+ "prs": [
+ {
+ "url": "https://github.com/yuvrajsinghgmx/ShopSmart/pull/331",
+ "title": "Products Addition",
+ "repo": "yuvrajsinghgmx/ShopSmart",
+ "level": "level3",
+ "points": 10,
+ "created_at": "2025-07-31T20:10:23Z",
+ "updated_at": "2025-08-01T11:20:15Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-08-01T11:18:52Z",
+ "author_url": "https://github.com/Shoury-Rana",
+ "author_avatar": "https://avatars.githubusercontent.com/u/108977840?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/108977840?v=4",
+ "profile_url": "https://github.com/Shoury-Rana"
+ },
+ "Aditya-dev2005": {
+ "expectedPoints": 10,
+ "currentPoints": 10,
+ "levels": {
+ "level1": 0,
+ "level2": 0,
+ "level3": 1
+ },
+ "prs": [
+ {
+ "url": "https://github.com/yuvrajsinghgmx/ShopSmart/pull/327",
+ "title": "Fix: Add OTP expiry logic with Twilio .env setup",
+ "repo": "yuvrajsinghgmx/ShopSmart",
+ "level": "level3",
+ "points": 10,
+ "created_at": "2025-07-31T14:24:01Z",
+ "updated_at": "2025-07-31T15:38:03Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-31T15:37:16Z",
+ "author_url": "https://github.com/Aditya-dev2005",
+ "author_avatar": "https://avatars.githubusercontent.com/u/185803623?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/185803623?v=4",
+ "profile_url": "https://github.com/Aditya-dev2005"
+ },
+ "Yadavraushan": {
+ "expectedPoints": 10,
+ "currentPoints": 10,
+ "levels": {
+ "level1": 0,
+ "level2": 0,
+ "level3": 1
+ },
+ "prs": [
+ {
+ "url": "https://github.com/yuvrajsinghgmx/ShopSmart/pull/314",
+ "title": "Added Shop Detail navigation with Shared ViewModel and UI",
+ "repo": "yuvrajsinghgmx/ShopSmart",
+ "level": "level3",
+ "points": 10,
+ "created_at": "2025-07-27T19:47:30Z",
+ "updated_at": "2025-07-29T19:33:57Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-29T11:52:28Z",
+ "author_url": "https://github.com/Yadavraushan",
+ "author_avatar": "https://avatars.githubusercontent.com/u/119130501?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/119130501?v=4",
+ "profile_url": "https://github.com/Yadavraushan"
+ },
+ "kris70lesgo": {
+ "expectedPoints": 10,
+ "currentPoints": 10,
+ "levels": {
+ "level1": 0,
+ "level2": 0,
+ "level3": 1
+ },
+ "prs": [
+ {
+ "url": "https://github.com/yuvrajsinghgmx/ShopSmart/pull/306",
+ "title": "Added Phone Authentication with Twilio OTP Send and Verify APIs",
+ "repo": "yuvrajsinghgmx/ShopSmart",
+ "level": "level3",
+ "points": 10,
+ "created_at": "2025-07-26T05:12:13Z",
+ "updated_at": "2025-07-26T20:24:12Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-26T20:24:12Z",
+ "author_url": "https://github.com/kris70lesgo",
+ "author_avatar": "https://avatars.githubusercontent.com/u/170333495?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/170333495?v=4",
+ "profile_url": "https://github.com/kris70lesgo"
+ },
+ "itsishant": {
+ "expectedPoints": 12,
+ "currentPoints": 8,
+ "levels": {
+ "level1": 3,
+ "level2": 0,
+ "level3": 0
+ },
+ "prs": [
+ {
+ "url": "https://github.com/abhisek2004/Dev-Elevate/pull/19",
+ "title": "Fix padding",
+ "repo": "abhisek2004/Dev-Elevate",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-22T11:17:41Z",
+ "updated_at": "2025-07-23T13:07:41Z",
+ "state": "closed",
+ "merged": false,
+ "merged_at": null,
+ "author_url": "https://github.com/itsishant",
+ "author_avatar": "https://avatars.githubusercontent.com/u/183592353?v=4"
+ },
+ {
+ "url": "https://github.com/Amarjha01/InfantCareCompass/pull/47",
+ "title": "Add Framer Motion animation to Navbar for better mobile UX",
+ "repo": "Amarjha01/InfantCareCompass",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-22T19:35:47Z",
+ "updated_at": "2025-07-23T04:41:58Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-23T04:39:53Z",
+ "author_url": "https://github.com/itsishant",
+ "author_avatar": "https://avatars.githubusercontent.com/u/183592353?v=4"
+ },
+ {
+ "url": "https://github.com/openml-stack/SentiLog-AI/pull/50",
+ "title": "fix animation of navbar",
+ "repo": "openml-stack/SentiLog-AI",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-24T13:54:18Z",
+ "updated_at": "2025-07-24T16:19:05Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-24T16:12:35Z",
+ "author_url": "https://github.com/itsishant",
+ "author_avatar": "https://avatars.githubusercontent.com/u/183592353?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/183592353?v=4",
+ "profile_url": "https://github.com/itsishant"
+ },
+ "lkshayb": {
+ "expectedPoints": 8,
+ "currentPoints": 8,
+ "levels": {
+ "level1": 2,
+ "level2": 0,
+ "level3": 0
+ },
+ "prs": [
+ {
+ "url": "https://github.com/abhisek2004/Dev-Elevate/pull/10",
+ "title": "Add password strength checking logic",
+ "repo": "abhisek2004/Dev-Elevate",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-22T06:34:45Z",
+ "updated_at": "2025-07-22T19:12:25Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-22T19:12:25Z",
+ "author_url": "https://github.com/lkshayb",
+ "author_avatar": "https://avatars.githubusercontent.com/u/136612476?v=4"
+ },
+ {
+ "url": "https://github.com/VaibhavCodeClub/term/pull/24",
+ "title": "Autocomplete uses current working directory instead of root for relative paths",
+ "repo": "sapatevaibhav/term",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-27T05:16:19Z",
+ "updated_at": "2025-08-02T05:02:29Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-08-01T11:19:38Z",
+ "author_url": "https://github.com/lkshayb",
+ "author_avatar": "https://avatars.githubusercontent.com/u/136612476?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/136612476?v=4",
+ "profile_url": "https://github.com/lkshayb"
+ },
+ "andrapiyadisha": {
+ "expectedPoints": 8,
+ "currentPoints": 8,
+ "levels": {
+ "level1": 2,
+ "level2": 0,
+ "level3": 0
+ },
+ "prs": [
+ {
+ "url": "https://github.com/Abhishek2634/Foodie/pull/238",
+ "title": "Fix/remove white space homepage",
+ "repo": "Abhishek2634/Foodie",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-08-02T11:32:10Z",
+ "updated_at": "2025-08-02T11:44:52Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-08-02T11:44:52Z",
+ "author_url": "https://github.com/andrapiyadisha",
+ "author_avatar": "https://avatars.githubusercontent.com/u/140895126?v=4"
+ },
+ {
+ "url": "https://github.com/Abhishek2634/Foodie/pull/213",
+ "title": "Added chatbot tooltip component to the UI",
+ "repo": "Abhishek2634/Foodie",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-31T14:42:22Z",
+ "updated_at": "2025-08-02T11:20:03Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-31T17:43:39Z",
+ "author_url": "https://github.com/andrapiyadisha",
+ "author_avatar": "https://avatars.githubusercontent.com/u/140895126?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/140895126?v=4",
+ "profile_url": "https://github.com/andrapiyadisha"
+ },
+ "Suhaniisingh05": {
+ "expectedPoints": 8,
+ "currentPoints": 8,
+ "levels": {
+ "level1": 2,
+ "level2": 0,
+ "level3": 0
+ },
+ "prs": [
+ {
+ "url": "https://github.com/Abhishek2634/Foodie/pull/231",
+ "title": "Fix:navbar transparency on scroll",
+ "repo": "Abhishek2634/Foodie",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-08-02T07:22:34Z",
+ "updated_at": "2025-08-02T11:21:45Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-08-02T07:51:48Z",
+ "author_url": "https://github.com/Suhaniisingh05",
+ "author_avatar": "https://avatars.githubusercontent.com/u/168103318?v=4"
+ },
+ {
+ "url": "https://github.com/Adarsh-Chaubey03/TravelGrid/pull/325",
+ "title": "Fix: Preserve navbar background on scroll",
+ "repo": "Adarsh-Chaubey03/TravelGrid",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-29T06:08:54Z",
+ "updated_at": "2025-07-29T12:19:57Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-29T10:58:01Z",
+ "author_url": "https://github.com/Suhaniisingh05",
+ "author_avatar": "https://avatars.githubusercontent.com/u/168103318?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/168103318?v=4",
+ "profile_url": "https://github.com/Suhaniisingh05"
+ },
+ "nicksboson": {
+ "expectedPoints": 8,
+ "currentPoints": 8,
+ "levels": {
+ "level1": 2,
+ "level2": 0,
+ "level3": 0
+ },
+ "prs": [
+ {
+ "url": "https://github.com/Abhishek2634/Foodie/pull/89",
+ "title": "Added back to top button when user scrolls down ",
+ "repo": "Abhishek2634/Foodie",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-24T10:00:51Z",
+ "updated_at": "2025-08-02T10:55:19Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-24T12:34:57Z",
+ "author_url": "https://github.com/nicksboson",
+ "author_avatar": "https://avatars.githubusercontent.com/u/179799731?v=4"
+ },
+ {
+ "url": "https://github.com/opensource-society/CodeClip/pull/33",
+ "title": "hero section made and styled it properly",
+ "repo": "opensource-society/CodeClip",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-22T08:13:01Z",
+ "updated_at": "2025-07-22T08:54:49Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-22T08:54:48Z",
+ "author_url": "https://github.com/nicksboson",
+ "author_avatar": "https://avatars.githubusercontent.com/u/179799731?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/179799731?v=4",
+ "profile_url": "https://github.com/nicksboson"
+ },
+ "prakharsudele": {
+ "expectedPoints": 8,
+ "currentPoints": 8,
+ "levels": {
+ "level1": 2,
+ "level2": 0,
+ "level3": 0
+ },
+ "prs": [
+ {
+ "url": "https://github.com/Adarsh-Chaubey03/TravelGrid/pull/239",
+ "title": "Changed navbar hover color to white",
+ "repo": "Adarsh-Chaubey03/TravelGrid",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-27T10:22:47Z",
+ "updated_at": "2025-07-28T05:46:52Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-28T05:46:52Z",
+ "author_url": "https://github.com/prakharsudele",
+ "author_avatar": "https://avatars.githubusercontent.com/u/171316634?v=4"
+ },
+ {
+ "url": "https://github.com/Agarwalvidu/ArdhNaariShakti_Taara_Frontend/pull/55",
+ "title": "UPDATE: flip card image updated",
+ "repo": "Agarwalvidu/ArdhNaariShakti_Taara_Frontend",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-29T02:44:24Z",
+ "updated_at": "2025-07-29T03:18:59Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-29T03:18:59Z",
+ "author_url": "https://github.com/prakharsudele",
+ "author_avatar": "https://avatars.githubusercontent.com/u/171316634?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/171316634?v=4",
+ "profile_url": "https://github.com/prakharsudele"
+ },
+ "Megha066": {
+ "expectedPoints": 8,
+ "currentPoints": 8,
+ "levels": {
+ "level1": 2,
+ "level2": 0,
+ "level3": 0
+ },
+ "prs": [
+ {
+ "url": "https://github.com/opensource-society/CodeClip/pull/24",
+ "title": "Added Hero Section with Responsive Design",
+ "repo": "opensource-society/CodeClip",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-21T17:48:10Z",
+ "updated_at": "2025-07-22T07:34:54Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-21T17:57:37Z",
+ "author_url": "https://github.com/Megha066",
+ "author_avatar": "https://avatars.githubusercontent.com/u/174324137?v=4"
+ },
+ {
+ "url": "https://github.com/InnoWebLabs/Vehigo/pull/47",
+ "title": "♿️ Fix: Improve text contrast on dark backgrounds for better accessib…",
+ "repo": "InnoWebLabs/Vehigo",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-24T14:18:50Z",
+ "updated_at": "2025-07-25T20:24:01Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-24T14:33:43Z",
+ "author_url": "https://github.com/Megha066",
+ "author_avatar": "https://avatars.githubusercontent.com/u/174324137?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/174324137?v=4",
+ "profile_url": "https://github.com/Megha066"
+ },
+ "MeenakshiAM": {
+ "expectedPoints": 8,
+ "currentPoints": 8,
+ "levels": {
+ "level1": 2,
+ "level2": 0,
+ "level3": 0
+ },
+ "prs": [
+ {
+ "url": "https://github.com/opensource-society/notesvault/pull/51",
+ "title": "Fixes issue #39 : light mode styling issue in About Note Vault section",
+ "repo": "opensource-society/NotesVault",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-22T08:37:56Z",
+ "updated_at": "2025-07-22T08:57:56Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-22T08:57:45Z",
+ "author_url": "https://github.com/MeenakshiAM",
+ "author_avatar": "https://avatars.githubusercontent.com/u/140526841?v=4"
+ },
+ {
+ "url": "https://github.com/BaraniVA/Habitheat/pull/67",
+ "title": "Feat: Footer added with all necessary links in both light & dark mode",
+ "repo": "BaraniVA/Habitheat",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-25T14:59:37Z",
+ "updated_at": "2025-07-25T17:27:30Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-25T17:24:32Z",
+ "author_url": "https://github.com/MeenakshiAM",
+ "author_avatar": "https://avatars.githubusercontent.com/u/140526841?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/140526841?v=4",
+ "profile_url": "https://github.com/MeenakshiAM"
+ },
+ "thrupthi22": {
+ "expectedPoints": 8,
+ "currentPoints": 8,
+ "levels": {
+ "level1": 2,
+ "level2": 0,
+ "level3": 0
+ },
+ "prs": [
+ {
+ "url": "https://github.com/Amarjha01/InfantCareCompass/pull/129",
+ "title": "docs: Overhaul README with corrected formatting and details",
+ "repo": "Amarjha01/InfantCareCompass",
+ "level": null,
+ "points": 0,
+ "created_at": "2025-07-27T08:39:37Z",
+ "updated_at": "2025-07-30T05:20:45Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-28T14:51:09Z",
+ "author_url": "https://github.com/thrupthi22",
+ "author_avatar": "https://avatars.githubusercontent.com/u/153356024?v=4"
+ },
+ {
+ "url": "https://github.com/VJLIVE/Athletix/pull/23",
+ "title": "Remove firebase setup",
+ "repo": "vjlive/athletix",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-23T06:27:39Z",
+ "updated_at": "2025-07-28T21:44:12Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-23T06:30:48Z",
+ "author_url": "https://github.com/thrupthi22",
+ "author_avatar": "https://avatars.githubusercontent.com/u/153356024?v=4"
+ },
+ {
+ "url": "https://github.com/VJLIVE/Athletix/pull/11",
+ "title": "📝 Rewrote README.md with improved formatting and structure",
+ "repo": "vjlive/athletix",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-22T16:53:03Z",
+ "updated_at": "2025-07-28T21:43:05Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-22T17:09:29Z",
+ "author_url": "https://github.com/thrupthi22",
+ "author_avatar": "https://avatars.githubusercontent.com/u/153356024?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/153356024?v=4",
+ "profile_url": "https://github.com/thrupthi22"
+ },
+ "DishaA06": {
+ "expectedPoints": 8,
+ "currentPoints": 8,
+ "levels": {
+ "level1": 2,
+ "level2": 0,
+ "level3": 0
+ },
+ "prs": [
+ {
+ "url": "https://github.com/Amarjha01/InfantCareCompass/pull/124",
+ "title": "Add contributing.md fiile for new contributors ",
+ "repo": "Amarjha01/InfantCareCompass",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-26T19:27:50Z",
+ "updated_at": "2025-07-28T14:30:15Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-28T14:29:55Z",
+ "author_url": "https://github.com/DishaA06",
+ "author_avatar": "https://avatars.githubusercontent.com/u/140171545?v=4"
+ },
+ {
+ "url": "https://github.com/Amarjha01/InfantCareCompass/pull/121",
+ "title": "Added Code of Conduct file and updated the README.md",
+ "repo": "Amarjha01/InfantCareCompass",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-26T19:05:04Z",
+ "updated_at": "2025-07-28T14:30:41Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-28T14:29:02Z",
+ "author_url": "https://github.com/DishaA06",
+ "author_avatar": "https://avatars.githubusercontent.com/u/140171545?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/140171545?v=4",
+ "profile_url": "https://github.com/DishaA06"
+ },
+ "DileepKrishnaM": {
+ "expectedPoints": 8,
+ "currentPoints": 8,
+ "levels": {
+ "level1": 2,
+ "level2": 0,
+ "level3": 0
+ },
+ "prs": [
+ {
+ "url": "https://github.com/itsAnimation/AnimateItNow/pull/741",
+ "title": "[Enhancement] : Added Editor link in navbar for every page (Closes Issue #651)",
+ "repo": "itsAnimation/AnimateItNow",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-08-01T15:21:16Z",
+ "updated_at": "2025-08-02T06:19:03Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-08-02T06:19:02Z",
+ "author_url": "https://github.com/DileepKrishnaM",
+ "author_avatar": "https://avatars.githubusercontent.com/u/185825101?v=4"
+ },
+ {
+ "url": "https://github.com/VAIBHAVBABELE/vaibhavbabele.github.io/pull/40",
+ "title": "Updated: Gallery Image Hover Text Alignment (Closes issue #28)",
+ "repo": "VAIBHAVBABELE/vaibhavbabele.github.io",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-23T15:15:50Z",
+ "updated_at": "2025-07-26T14:21:57Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-25T10:12:40Z",
+ "author_url": "https://github.com/DileepKrishnaM",
+ "author_avatar": "https://avatars.githubusercontent.com/u/185825101?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/185825101?v=4",
+ "profile_url": "https://github.com/DileepKrishnaM"
+ },
+ "Manali-26": {
+ "expectedPoints": 8,
+ "currentPoints": 8,
+ "levels": {
+ "level1": 2,
+ "level2": 0,
+ "level3": 0
+ },
+ "prs": [
+ {
+ "url": "https://github.com/itsAnimation/AnimateItNow/pull/673",
+ "title": "Fix: Footer alignment and improve responsiveness",
+ "repo": "itsAnimation/AnimateItNow",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-30T15:04:38Z",
+ "updated_at": "2025-07-30T19:15:29Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-30T19:15:29Z",
+ "author_url": "https://github.com/Manali-26",
+ "author_avatar": "https://avatars.githubusercontent.com/u/143161294?v=4"
+ },
+ {
+ "url": "https://github.com/Kritika75/TheCawnporeMag.github.io/pull/313",
+ "title": "Fix/navbar double underline",
+ "repo": "Kritika75/TheCawnporeMag.github.io",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-31T14:18:27Z",
+ "updated_at": "2025-08-01T07:24:26Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-08-01T07:24:26Z",
+ "author_url": "https://github.com/Manali-26",
+ "author_avatar": "https://avatars.githubusercontent.com/u/143161294?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/143161294?v=4",
+ "profile_url": "https://github.com/Manali-26"
+ },
+ "tanwanimahek": {
+ "expectedPoints": 8,
+ "currentPoints": 8,
+ "levels": {
+ "level1": 2,
+ "level2": 0,
+ "level3": 0
+ },
+ "prs": [
+ {
+ "url": "https://github.com/itsAnimation/AnimateItNow/pull/646",
+ "title": "Confetti Animation on Leaderboard Page Load",
+ "repo": "itsAnimation/AnimateItNow",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-29T11:40:20Z",
+ "updated_at": "2025-07-30T06:30:54Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-30T06:30:54Z",
+ "author_url": "https://github.com/tanwanimahek",
+ "author_avatar": "https://avatars.githubusercontent.com/u/136957616?v=4"
+ },
+ {
+ "url": "https://github.com/itsAnimation/AnimateItNow/pull/598",
+ "title": "Fix: Snake Cursor Label Alignment Across Pages",
+ "repo": "itsAnimation/AnimateItNow",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-28T14:06:43Z",
+ "updated_at": "2025-07-28T19:18:31Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-28T19:18:31Z",
+ "author_url": "https://github.com/tanwanimahek",
+ "author_avatar": "https://avatars.githubusercontent.com/u/136957616?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/136957616?v=4",
+ "profile_url": "https://github.com/tanwanimahek"
+ },
+ "AnneOmer05": {
+ "expectedPoints": 8,
+ "currentPoints": 8,
+ "levels": {
+ "level1": 2,
+ "level2": 0,
+ "level3": 0
+ },
+ "prs": [
+ {
+ "url": "https://github.com/itsAnimation/AnimateItNow/pull/518",
+ "title": "Updated login.html with new design",
+ "repo": "itsAnimation/AnimateItNow",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-26T19:14:56Z",
+ "updated_at": "2025-07-28T17:06:35Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-28T17:06:35Z",
+ "author_url": "https://github.com/AnneOmer05",
+ "author_avatar": "https://avatars.githubusercontent.com/u/196381185?v=4"
+ },
+ {
+ "url": "https://github.com/itsAnimation/AnimateItNow/pull/325",
+ "title": "Fixed the modal text where it appears white in dark mode",
+ "repo": "itsAnimation/AnimateItNow",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-24T15:21:35Z",
+ "updated_at": "2025-07-24T16:19:32Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-24T16:19:32Z",
+ "author_url": "https://github.com/AnneOmer05",
+ "author_avatar": "https://avatars.githubusercontent.com/u/196381185?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/196381185?v=4",
+ "profile_url": "https://github.com/AnneOmer05"
+ },
+ "KeshavPathak01": {
+ "expectedPoints": 8,
+ "currentPoints": 8,
+ "levels": {
+ "level1": 2,
+ "level2": 0,
+ "level3": 0
+ },
+ "prs": [
+ {
+ "url": "https://github.com/itsAnimation/AnimateItNow/pull/485",
+ "title": "Update about.html",
+ "repo": "itsAnimation/AnimateItNow",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-26T13:04:24Z",
+ "updated_at": "2025-07-27T07:58:44Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-27T07:58:44Z",
+ "author_url": "https://github.com/KeshavPathak01",
+ "author_avatar": "https://avatars.githubusercontent.com/u/181407159?v=4"
+ },
+ {
+ "url": "https://github.com/itsAnimation/AnimateItNow/pull/392",
+ "title": "Update styles.css",
+ "repo": "itsAnimation/AnimateItNow",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-25T10:56:49Z",
+ "updated_at": "2025-07-25T13:00:52Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-25T13:00:52Z",
+ "author_url": "https://github.com/KeshavPathak01",
+ "author_avatar": "https://avatars.githubusercontent.com/u/181407159?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/181407159?v=4",
+ "profile_url": "https://github.com/KeshavPathak01"
+ },
+ "Sangavi853": {
+ "expectedPoints": 8,
+ "currentPoints": 8,
+ "levels": {
+ "level1": 2,
+ "level2": 0,
+ "level3": 0
+ },
+ "prs": [
+ {
+ "url": "https://github.com/itsAnimation/AnimateItNow/pull/341",
+ "title": "Enable Entire Card Click to Open Templates",
+ "repo": "itsAnimation/AnimateItNow",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-24T18:12:04Z",
+ "updated_at": "2025-07-25T11:52:21Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-25T11:52:21Z",
+ "author_url": "https://github.com/Sangavi853",
+ "author_avatar": "https://avatars.githubusercontent.com/u/190242054?v=4"
+ },
+ {
+ "url": "https://github.com/sampadatiwari30/DeshDarshan/pull/37",
+ "title": "fix: improved readability with text-shadow on hero section",
+ "repo": "sampadatiwari30/DeshDarshan",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-22T14:11:12Z",
+ "updated_at": "2025-07-23T03:12:46Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-23T03:12:08Z",
+ "author_url": "https://github.com/Sangavi853",
+ "author_avatar": "https://avatars.githubusercontent.com/u/190242054?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/190242054?v=4",
+ "profile_url": "https://github.com/Sangavi853"
+ },
+ "Shalini22-ui": {
+ "expectedPoints": 8,
+ "currentPoints": 8,
+ "levels": {
+ "level1": 2,
+ "level2": 0,
+ "level3": 0
+ },
+ "prs": [
+ {
+ "url": "https://github.com/itsAnimation/AnimateItNow/pull/182",
+ "title": "Added placeholders in contact form fields",
+ "repo": "itsAnimation/AnimateItNow",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-23T10:31:43Z",
+ "updated_at": "2025-07-23T21:10:20Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-23T21:10:20Z",
+ "author_url": "https://github.com/Shalini22-ui",
+ "author_avatar": "https://avatars.githubusercontent.com/u/183373949?v=4"
+ },
+ {
+ "url": "https://github.com/Menthub-GSSoC/Menthub/pull/36",
+ "title": "Added scroll to top button",
+ "repo": "anugit24/Menthub",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-28T09:12:01Z",
+ "updated_at": "2025-07-28T10:34:29Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-28T10:34:29Z",
+ "author_url": "https://github.com/Shalini22-ui",
+ "author_avatar": "https://avatars.githubusercontent.com/u/183373949?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/183373949?v=4",
+ "profile_url": "https://github.com/Shalini22-ui"
+ },
+ "Radhika-dodain": {
+ "expectedPoints": 8,
+ "currentPoints": 8,
+ "levels": {
+ "level1": 2,
+ "level2": 0,
+ "level3": 0
+ },
+ "prs": [
+ {
+ "url": "https://github.com/Menthub-GSSoC/Menthub/pull/11",
+ "title": "LICENSE",
+ "repo": "anugit24/Menthub",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-22T17:14:23Z",
+ "updated_at": "2025-07-24T13:36:49Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-22T19:43:49Z",
+ "author_url": "https://github.com/Radhika-dodain",
+ "author_avatar": "https://avatars.githubusercontent.com/u/179999318?v=4"
+ },
+ {
+ "url": "https://github.com/Menthub-GSSoC/Menthub/pull/5",
+ "title": "Removed bugs in index.html",
+ "repo": "anugit24/Menthub",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-22T06:46:07Z",
+ "updated_at": "2025-07-24T13:19:48Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-22T14:39:06Z",
+ "author_url": "https://github.com/Radhika-dodain",
+ "author_avatar": "https://avatars.githubusercontent.com/u/179999318?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/179999318?v=4",
+ "profile_url": "https://github.com/Radhika-dodain"
+ },
+ "madhujammm": {
+ "expectedPoints": 8,
+ "currentPoints": 8,
+ "levels": {
+ "level1": 2,
+ "level2": 0,
+ "level3": 0
+ },
+ "prs": [
+ {
+ "url": "https://github.com/Menthub-GSSoC/Menthub/pull/9",
+ "title": "Add CONTRIBUTING.md with basic contribution guidelines",
+ "repo": "anugit24/Menthub",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-22T12:20:45Z",
+ "updated_at": "2025-07-24T13:36:12Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-22T14:30:12Z",
+ "author_url": "https://github.com/madhujammm",
+ "author_avatar": "https://avatars.githubusercontent.com/u/155441219?v=4"
+ },
+ {
+ "url": "https://github.com/VAIBHAVBABELE/vaibhavbabele.github.io/pull/32",
+ "title": "Fix: Improve placeholder visibility in dark mode",
+ "repo": "VAIBHAVBABELE/vaibhavbabele.github.io",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-22T19:46:30Z",
+ "updated_at": "2025-07-23T03:47:47Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-23T01:56:00Z",
+ "author_url": "https://github.com/madhujammm",
+ "author_avatar": "https://avatars.githubusercontent.com/u/155441219?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/155441219?v=4",
+ "profile_url": "https://github.com/madhujammm"
+ },
+ "abdey53": {
+ "expectedPoints": 8,
+ "currentPoints": 8,
+ "levels": {
+ "level1": 2,
+ "level2": 0,
+ "level3": 0
+ },
+ "prs": [
+ {
+ "url": "https://github.com/InnoWebLabs/Vehigo/pull/194",
+ "title": "🔧 Enhanced Footer UI with Social Media Integration",
+ "repo": "InnoWebLabs/Vehigo",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-31T12:09:22Z",
+ "updated_at": "2025-07-31T16:05:16Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-31T16:05:16Z",
+ "author_url": "https://github.com/abdey53",
+ "author_avatar": "https://avatars.githubusercontent.com/u/118340181?v=4"
+ },
+ {
+ "url": "https://github.com/GitMetricsLab/github_tracker/pull/159",
+ "title": "🔧 Feature: Implement Error Handling for Backend APIs",
+ "repo": "mehul-m-prajapati/github_tracker",
+ "level": null,
+ "points": 0,
+ "created_at": "2025-07-30T18:32:05Z",
+ "updated_at": "2025-08-02T13:45:08Z",
+ "state": "closed",
+ "merged": false,
+ "merged_at": null,
+ "author_url": "https://github.com/abdey53",
+ "author_avatar": "https://avatars.githubusercontent.com/u/118340181?v=4"
+ },
+ {
+ "url": "https://github.com/karmveershubham/CodeStreak/pull/31",
+ "title": "Theme toggle with header and wrapper integration",
+ "repo": "karmveershubham/CodeStreak",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-28T09:51:40Z",
+ "updated_at": "2025-07-30T14:51:37Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-28T12:34:58Z",
+ "author_url": "https://github.com/abdey53",
+ "author_avatar": "https://avatars.githubusercontent.com/u/118340181?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/118340181?v=4",
+ "profile_url": "https://github.com/abdey53"
+ },
+ "Sanyam2511": {
+ "expectedPoints": 8,
+ "currentPoints": 8,
+ "levels": {
+ "level1": 2,
+ "level2": 0,
+ "level3": 0
+ },
+ "prs": [
+ {
+ "url": "https://github.com/InnoWebLabs/Vehigo/pull/18",
+ "title": "fix: Resolve signup page UI issues (logo, scrolling, and navbar overlap)",
+ "repo": "InnoWebLabs/Vehigo",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-23T10:38:01Z",
+ "updated_at": "2025-07-25T20:13:50Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-23T14:05:28Z",
+ "author_url": "https://github.com/Sanyam2511",
+ "author_avatar": "https://avatars.githubusercontent.com/u/191741445?v=4"
+ },
+ {
+ "url": "https://github.com/VAIBHAVBABELE/vaibhavbabele.github.io/pull/33",
+ "title": "Fix: aligned card button labels on homepage",
+ "repo": "VAIBHAVBABELE/vaibhavbabele.github.io",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-23T01:32:46Z",
+ "updated_at": "2025-07-23T03:27:41Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-23T02:08:38Z",
+ "author_url": "https://github.com/Sanyam2511",
+ "author_avatar": "https://avatars.githubusercontent.com/u/191741445?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/191741445?v=4",
+ "profile_url": "https://github.com/Sanyam2511"
+ },
+ "modi-meet": {
+ "expectedPoints": 8,
+ "currentPoints": 8,
+ "levels": {
+ "level1": 2,
+ "level2": 0,
+ "level3": 0
+ },
+ "prs": [
+ {
+ "url": "https://github.com/MAVERICK-VF142/Drx.MediMate/pull/103",
+ "title": "Fixed- Autofocus in Sign-up Form",
+ "repo": "MAVERICK-VF142/Drx.MediMate",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-28T12:25:08Z",
+ "updated_at": "2025-07-28T16:39:51Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-28T16:39:51Z",
+ "author_url": "https://github.com/modi-meet",
+ "author_avatar": "https://avatars.githubusercontent.com/u/213912067?v=4"
+ },
+ {
+ "url": "https://github.com/rutikakengal/100DAYS_OF_100WEBPROJECTS/pull/224",
+ "title": "Feat: Implement Responsive Navigation with Hamburger Menu",
+ "repo": "rutikakengal/100DAYS_OF_100WEBPROJECTS",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-26T17:32:23Z",
+ "updated_at": "2025-07-27T15:13:15Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-27T15:12:48Z",
+ "author_url": "https://github.com/modi-meet",
+ "author_avatar": "https://avatars.githubusercontent.com/u/213912067?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/213912067?v=4",
+ "profile_url": "https://github.com/modi-meet"
+ },
+ "ammysharma11": {
+ "expectedPoints": 8,
+ "currentPoints": 8,
+ "levels": {
+ "level1": 2,
+ "level2": 0,
+ "level3": 0
+ },
+ "prs": [
+ {
+ "url": "https://github.com/AyushSharma72/Skill_Trade/pull/71",
+ "title": "Update Footer: Match Subscribe Button Colour to Theme",
+ "repo": "AyushSharma72/Skill_Trade",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-28T03:43:23Z",
+ "updated_at": "2025-07-28T05:14:02Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-28T05:14:02Z",
+ "author_url": "https://github.com/ammysharma11",
+ "author_avatar": "https://avatars.githubusercontent.com/u/108935281?v=4"
+ },
+ {
+ "url": "https://github.com/openml-stack/SentiLog-AI/pull/114",
+ "title": "Change of Colour of button Log of button & Analyze Button",
+ "repo": "openml-stack/SentiLog-AI",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-28T18:36:03Z",
+ "updated_at": "2025-07-31T18:53:02Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-31T18:51:00Z",
+ "author_url": "https://github.com/ammysharma11",
+ "author_avatar": "https://avatars.githubusercontent.com/u/108935281?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/108935281?v=4",
+ "profile_url": "https://github.com/ammysharma11"
+ },
+ "Rutvikkkk": {
+ "expectedPoints": 8,
+ "currentPoints": 8,
+ "levels": {
+ "level1": 2,
+ "level2": 0,
+ "level3": 0
+ },
+ "prs": [
+ {
+ "url": "https://github.com/AyushSharma72/Skill_Trade/pull/26",
+ "title": "when the tab is active the bg color should be black and the text color should be white ",
+ "repo": "AyushSharma72/Skill_Trade",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-23T15:28:30Z",
+ "updated_at": "2025-07-23T18:38:14Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-23T18:38:14Z",
+ "author_url": "https://github.com/Rutvikkkk",
+ "author_avatar": "https://avatars.githubusercontent.com/u/121574553?v=4"
+ },
+ {
+ "url": "https://github.com/AyushSharma72/Skill_Trade/pull/16",
+ "title": "Logout modal enhacement",
+ "repo": "AyushSharma72/Skill_Trade",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-23T05:13:57Z",
+ "updated_at": "2025-07-23T08:18:11Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-23T08:18:10Z",
+ "author_url": "https://github.com/Rutvikkkk",
+ "author_avatar": "https://avatars.githubusercontent.com/u/121574553?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/121574553?v=4",
+ "profile_url": "https://github.com/Rutvikkkk"
+ },
+ "mehulnawal": {
+ "expectedPoints": 8,
+ "currentPoints": 8,
+ "levels": {
+ "level1": 2,
+ "level2": 0,
+ "level3": 0
+ },
+ "prs": [
+ {
+ "url": "https://github.com/AyushSharma72/Skill_Trade/pull/20",
+ "title": "Created Custom 404 Page Aligned with Site Theme Closes",
+ "repo": "AyushSharma72/Skill_Trade",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-23T09:43:13Z",
+ "updated_at": "2025-07-23T13:22:08Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-23T13:22:07Z",
+ "author_url": "https://github.com/mehulnawal",
+ "author_avatar": "https://avatars.githubusercontent.com/u/128771335?v=4"
+ },
+ {
+ "url": "https://github.com/AyushSharma72/Skill_Trade/pull/9",
+ "title": "Improve `README.md` with preview images, installation steps, and better structure",
+ "repo": "AyushSharma72/Skill_Trade",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-22T15:58:02Z",
+ "updated_at": "2025-07-23T08:19:07Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-23T03:25:09Z",
+ "author_url": "https://github.com/mehulnawal",
+ "author_avatar": "https://avatars.githubusercontent.com/u/128771335?v=4"
+ },
+ {
+ "url": "https://github.com/SCR01/scr-game/pull/17",
+ "title": "Enhance Footer Star Button Visibility",
+ "repo": "SCR01/scr-game",
+ "level": null,
+ "points": 0,
+ "created_at": "2025-07-25T06:25:32Z",
+ "updated_at": "2025-07-29T20:52:09Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-27T08:24:39Z",
+ "author_url": "https://github.com/mehulnawal",
+ "author_avatar": "https://avatars.githubusercontent.com/u/128771335?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/128771335?v=4",
+ "profile_url": "https://github.com/mehulnawal"
+ },
+ "harsha-k123": {
+ "expectedPoints": 8,
+ "currentPoints": 8,
+ "levels": {
+ "level1": 2,
+ "level2": 0,
+ "level3": 0
+ },
+ "prs": [
+ {
+ "url": "https://github.com/AyushSharma72/Skill_Trade/pull/19",
+ "title": "added redirect from logo to home page",
+ "repo": "AyushSharma72/Skill_Trade",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-23T06:57:28Z",
+ "updated_at": "2025-07-23T08:37:59Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-23T08:37:59Z",
+ "author_url": "https://github.com/harsha-k123",
+ "author_avatar": "https://avatars.githubusercontent.com/u/165683248?v=4"
+ },
+ {
+ "url": "https://github.com/chandannekya/Clean-Breath/pull/19",
+ "title": "Spelling and hover fix",
+ "repo": "chandannekya/Clean-Breath",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-22T07:38:33Z",
+ "updated_at": "2025-07-22T11:04:22Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-22T11:04:22Z",
+ "author_url": "https://github.com/harsha-k123",
+ "author_avatar": "https://avatars.githubusercontent.com/u/165683248?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/165683248?v=4",
+ "profile_url": "https://github.com/harsha-k123"
+ },
+ "npratik01": {
+ "expectedPoints": 8,
+ "currentPoints": 8,
+ "levels": {
+ "level1": 2,
+ "level2": 0,
+ "level3": 0
+ },
+ "prs": [
+ {
+ "url": "https://github.com/AyushSharma72/Skill_Trade/pull/17",
+ "title": "Enhanced the navbar - remove unnecessary too much gaps between the navbar links",
+ "repo": "AyushSharma72/Skill_Trade",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-23T05:15:58Z",
+ "updated_at": "2025-07-23T10:13:02Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-23T10:10:14Z",
+ "author_url": "https://github.com/npratik01",
+ "author_avatar": "https://avatars.githubusercontent.com/u/161329380?v=4"
+ },
+ {
+ "url": "https://github.com/Er-luffy-D/SimplifAI/pull/24",
+ "title": "Add Progress Tracking feature to the Features component",
+ "repo": "Er-luffy-D/SimplifAI",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-23T17:03:02Z",
+ "updated_at": "2025-08-02T16:54:01Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-23T17:15:14Z",
+ "author_url": "https://github.com/npratik01",
+ "author_avatar": "https://avatars.githubusercontent.com/u/161329380?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/161329380?v=4",
+ "profile_url": "https://github.com/npratik01"
+ },
+ "Sahithib04": {
+ "expectedPoints": 8,
+ "currentPoints": 8,
+ "levels": {
+ "level1": 2,
+ "level2": 0,
+ "level3": 0
+ },
+ "prs": [
+ {
+ "url": "https://github.com/BaraniVA/Habitheat/pull/31",
+ "title": " Added Self Care Tip Widget to Dashboard",
+ "repo": "BaraniVA/Habitheat",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-23T10:48:26Z",
+ "updated_at": "2025-07-23T15:49:01Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-23T15:48:17Z",
+ "author_url": "https://github.com/Sahithib04",
+ "author_avatar": "https://avatars.githubusercontent.com/u/151148266?v=4"
+ },
+ {
+ "url": "https://github.com/rutikakengal/100DAYS_OF_100WEBPROJECTS/pull/153",
+ "title": "Add Day 8 - Rock Paper Scissors Game",
+ "repo": "rutikakengal/100DAYS_OF_100WEBPROJECTS",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-25T10:57:27Z",
+ "updated_at": "2025-07-26T08:28:35Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-26T08:28:03Z",
+ "author_url": "https://github.com/Sahithib04",
+ "author_avatar": "https://avatars.githubusercontent.com/u/151148266?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/151148266?v=4",
+ "profile_url": "https://github.com/Sahithib04"
+ },
+ "SoumyaMathur001": {
+ "expectedPoints": 12,
+ "currentPoints": 8,
+ "levels": {
+ "level1": 3,
+ "level2": 0,
+ "level3": 0
+ },
+ "prs": [
+ {
+ "url": "https://github.com/BaraniVA/Habitheat/pull/24",
+ "title": "✨ UI Improvement: Shiny Border on Insight Cards",
+ "repo": "BaraniVA/Habitheat",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-23T07:42:21Z",
+ "updated_at": "2025-07-23T08:31:10Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-23T07:51:43Z",
+ "author_url": "https://github.com/SoumyaMathur001",
+ "author_avatar": "https://avatars.githubusercontent.com/u/172923023?v=4"
+ },
+ {
+ "url": "https://github.com/Khushi-Nigam/jobportal/pull/64",
+ "title": "Feature/navbar hover effect",
+ "repo": "Khushi-Nigam/jobportal",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-27T05:48:40Z",
+ "updated_at": "2025-07-27T09:56:28Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-27T09:56:27Z",
+ "author_url": "https://github.com/SoumyaMathur001",
+ "author_avatar": "https://avatars.githubusercontent.com/u/172923023?v=4"
+ },
+ {
+ "url": "https://github.com/Kritika75/TheCawnporeMag.github.io/pull/109",
+ "title": "Fix navbar background color and hover style on scroll.",
+ "repo": "Kritika75/TheCawnporeMag.github.io",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-25T07:50:59Z",
+ "updated_at": "2025-07-25T08:15:04Z",
+ "state": "open",
+ "merged": false,
+ "merged_at": null,
+ "author_url": "https://github.com/SoumyaMathur001",
+ "author_avatar": "https://avatars.githubusercontent.com/u/172923023?v=4"
+ },
+ {
+ "url": "https://github.com/SamXop123/RigCrafter/pull/20",
+ "title": "Add blackish-purple background and glassy glowing border to cards",
+ "repo": "SamXop123/RigCrafter",
+ "level": null,
+ "points": 0,
+ "created_at": "2025-07-25T06:40:55Z",
+ "updated_at": "2025-07-29T04:54:51Z",
+ "state": "closed",
+ "merged": false,
+ "merged_at": null,
+ "author_url": "https://github.com/SoumyaMathur001",
+ "author_avatar": "https://avatars.githubusercontent.com/u/172923023?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/172923023?v=4",
+ "profile_url": "https://github.com/SoumyaMathur001"
+ },
+ "DebosmitaPal": {
+ "expectedPoints": 8,
+ "currentPoints": 8,
+ "levels": {
+ "level1": 2,
+ "level2": 0,
+ "level3": 0
+ },
+ "prs": [
+ {
+ "url": "https://github.com/Bavanetha27/Refixly/pull/14",
+ "title": "enhanced the footer",
+ "repo": "Bavanetha27/Refixly",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-23T18:13:20Z",
+ "updated_at": "2025-08-01T10:47:30Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-24T14:53:24Z",
+ "author_url": "https://github.com/DebosmitaPal",
+ "author_avatar": "https://avatars.githubusercontent.com/u/147394773?v=4"
+ },
+ {
+ "url": "https://github.com/nishantharkut/W3nity/pull/48",
+ "title": "Counter Added",
+ "repo": "nishantharkut/W3nity",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-08-01T06:03:09Z",
+ "updated_at": "2025-08-01T18:12:20Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-08-01T18:12:02Z",
+ "author_url": "https://github.com/DebosmitaPal",
+ "author_avatar": "https://avatars.githubusercontent.com/u/147394773?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/147394773?v=4",
+ "profile_url": "https://github.com/DebosmitaPal"
+ },
+ "MishtiGarg250": {
+ "expectedPoints": 8,
+ "currentPoints": 8,
+ "levels": {
+ "level1": 2,
+ "level2": 0,
+ "level3": 0
+ },
+ "prs": [
+ {
+ "url": "https://github.com/Dhruvi-tech/firebase-chat-app/pull/23",
+ "title": "Update: Refactor README with screenshot section",
+ "repo": "Dhruvi-tech/firebase-chat-app",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-25T14:22:19Z",
+ "updated_at": "2025-07-25T14:45:25Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-25T14:45:25Z",
+ "author_url": "https://github.com/MishtiGarg250",
+ "author_avatar": "https://avatars.githubusercontent.com/u/191820779?v=4"
+ },
+ {
+ "url": "https://github.com/Dhruvi-tech/firebase-chat-app/pull/22",
+ "title": "Fix: Clear input immediately after sending message",
+ "repo": "Dhruvi-tech/firebase-chat-app",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-25T13:05:30Z",
+ "updated_at": "2025-07-25T13:52:33Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-25T13:52:33Z",
+ "author_url": "https://github.com/MishtiGarg250",
+ "author_avatar": "https://avatars.githubusercontent.com/u/191820779?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/191820779?v=4",
+ "profile_url": "https://github.com/MishtiGarg250"
+ },
+ "debug-soham": {
+ "expectedPoints": 8,
+ "currentPoints": 8,
+ "levels": {
+ "level1": 2,
+ "level2": 0,
+ "level3": 0
+ },
+ "prs": [
+ {
+ "url": "https://github.com/Gagandeep-2003/driver-drowsiness-detection-system/pull/54",
+ "title": "Docs: Improve Formatting of CONTRIBUTING.md",
+ "repo": "Gagandeep-2003/driver-drowsiness-detection-system",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-29T16:06:53Z",
+ "updated_at": "2025-08-01T04:09:38Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-08-01T04:09:38Z",
+ "author_url": "https://github.com/debug-soham",
+ "author_avatar": "https://avatars.githubusercontent.com/u/178635730?v=4"
+ },
+ {
+ "url": "https://github.com/Gagandeep-2003/driver-drowsiness-detection-system/pull/48",
+ "title": "Docs: Add Model Download Instructions to Fix RuntimeError",
+ "repo": "Gagandeep-2003/driver-drowsiness-detection-system",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-28T16:16:44Z",
+ "updated_at": "2025-08-01T04:17:20Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-08-01T04:17:20Z",
+ "author_url": "https://github.com/debug-soham",
+ "author_avatar": "https://avatars.githubusercontent.com/u/178635730?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/178635730?v=4",
+ "profile_url": "https://github.com/debug-soham"
+ },
+ "swetagoswami819": {
+ "expectedPoints": 8,
+ "currentPoints": 8,
+ "levels": {
+ "level1": 2,
+ "level2": 0,
+ "level3": 0
+ },
+ "prs": [
+ {
+ "url": "https://github.com/GauravKarakoti/Weather-API/pull/235",
+ "title": "Improved error message for invalid city input",
+ "repo": "GauravKarakoti/Weather-API",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-08-01T15:29:53Z",
+ "updated_at": "2025-08-02T03:18:08Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-08-02T03:18:08Z",
+ "author_url": "https://github.com/swetagoswami819",
+ "author_avatar": "https://avatars.githubusercontent.com/u/182253399?v=4"
+ },
+ {
+ "url": "https://github.com/TanmayKalra09/SmartLog/pull/191",
+ "title": "Add routing for dashboard feature cards",
+ "repo": "TanmayKalra09/SmartLog",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-08-01T19:00:11Z",
+ "updated_at": "2025-08-02T18:44:24Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-08-02T18:44:07Z",
+ "author_url": "https://github.com/swetagoswami819",
+ "author_avatar": "https://avatars.githubusercontent.com/u/182253399?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/182253399?v=4",
+ "profile_url": "https://github.com/swetagoswami819"
+ },
+ "ushasri5421": {
+ "expectedPoints": 8,
+ "currentPoints": 8,
+ "levels": {
+ "level1": 2,
+ "level2": 0,
+ "level3": 0
+ },
+ "prs": [
+ {
+ "url": "https://github.com/Kritika75/TheCawnporeMag.github.io/pull/372",
+ "title": "Enhance Responsiveness on Submissions Page",
+ "repo": "Kritika75/TheCawnporeMag.github.io",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-08-02T08:01:24Z",
+ "updated_at": "2025-08-03T06:32:34Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-08-03T06:32:33Z",
+ "author_url": "https://github.com/ushasri5421",
+ "author_avatar": "https://avatars.githubusercontent.com/u/193577347?v=4"
+ },
+ {
+ "url": "https://github.com/pavitraag/Project-Vault/pull/271",
+ "title": "Remove leftover merge conflict marker from ml.html",
+ "repo": "pavitraag/Project-Vault",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-08-02T09:14:44Z",
+ "updated_at": "2025-08-02T09:16:00Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-08-02T09:16:00Z",
+ "author_url": "https://github.com/ushasri5421",
+ "author_avatar": "https://avatars.githubusercontent.com/u/193577347?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/193577347?v=4",
+ "profile_url": "https://github.com/ushasri5421"
+ },
+ "sejaldhanve": {
+ "expectedPoints": 8,
+ "currentPoints": 8,
+ "levels": {
+ "level1": 2,
+ "level2": 0,
+ "level3": 0
+ },
+ "prs": [
+ {
+ "url": "https://github.com/Kritika75/TheCawnporeMag.github.io/pull/298",
+ "title": "feat: add hover effect to landmark button",
+ "repo": "Kritika75/TheCawnporeMag.github.io",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-30T13:05:22Z",
+ "updated_at": "2025-07-31T03:50:46Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-31T03:50:46Z",
+ "author_url": "https://github.com/sejaldhanve",
+ "author_avatar": "https://avatars.githubusercontent.com/u/185781138?v=4"
+ },
+ {
+ "url": "https://github.com/Kritika75/TheCawnporeMag.github.io/pull/296",
+ "title": "Fix: Navbar border in mobile view",
+ "repo": "Kritika75/TheCawnporeMag.github.io",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-30T12:41:41Z",
+ "updated_at": "2025-07-31T03:48:45Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-31T03:48:45Z",
+ "author_url": "https://github.com/sejaldhanve",
+ "author_avatar": "https://avatars.githubusercontent.com/u/185781138?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/185781138?v=4",
+ "profile_url": "https://github.com/sejaldhanve"
+ },
+ "ShubhamPrasad3012": {
+ "expectedPoints": 8,
+ "currentPoints": 8,
+ "levels": {
+ "level1": 2,
+ "level2": 0,
+ "level3": 0
+ },
+ "prs": [
+ {
+ "url": "https://github.com/Kritika75/TheCawnporeMag.github.io/pull/228",
+ "title": "fixed console flooding issue for ",
+ "repo": "Kritika75/TheCawnporeMag.github.io",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-27T17:46:41Z",
+ "updated_at": "2025-07-28T07:08:36Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-28T07:08:36Z",
+ "author_url": "https://github.com/ShubhamPrasad3012",
+ "author_avatar": "https://avatars.githubusercontent.com/u/157147463?v=4"
+ },
+ {
+ "url": "https://github.com/sampadatiwari30/DeshDarshan/pull/215",
+ "title": "fixed the red cross alignment in mobile screens",
+ "repo": "sampadatiwari30/DeshDarshan",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-29T07:37:48Z",
+ "updated_at": "2025-07-30T19:57:29Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-30T19:57:11Z",
+ "author_url": "https://github.com/ShubhamPrasad3012",
+ "author_avatar": "https://avatars.githubusercontent.com/u/157147463?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/157147463?v=4",
+ "profile_url": "https://github.com/ShubhamPrasad3012"
+ },
+ "Abhishek-RajO-O": {
+ "expectedPoints": 8,
+ "currentPoints": 8,
+ "levels": {
+ "level1": 2,
+ "level2": 0,
+ "level3": 0
+ },
+ "prs": [
+ {
+ "url": "https://github.com/Kritika75/TheCawnporeMag.github.io/pull/198",
+ "title": "[BUG] Favicon #121",
+ "repo": "Kritika75/TheCawnporeMag.github.io",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-27T08:11:52Z",
+ "updated_at": "2025-07-27T08:56:05Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-27T08:52:34Z",
+ "author_url": "https://github.com/Abhishek-RajO-O",
+ "author_avatar": "https://avatars.githubusercontent.com/u/154556418?v=4"
+ },
+ {
+ "url": "https://github.com/Kritika75/TheCawnporeMag.github.io/pull/157",
+ "title": "Redesigned FAQ Page for Improved UI Consistency and Visual Appeal",
+ "repo": "Kritika75/TheCawnporeMag.github.io",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-26T11:12:01Z",
+ "updated_at": "2025-07-26T11:47:17Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-26T11:47:16Z",
+ "author_url": "https://github.com/Abhishek-RajO-O",
+ "author_avatar": "https://avatars.githubusercontent.com/u/154556418?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/154556418?v=4",
+ "profile_url": "https://github.com/Abhishek-RajO-O"
+ },
+ "priyansshraj": {
+ "expectedPoints": 8,
+ "currentPoints": 8,
+ "levels": {
+ "level1": 2,
+ "level2": 0,
+ "level3": 0
+ },
+ "prs": [
+ {
+ "url": "https://github.com/Kritika75/TheCawnporeMag.github.io/pull/171",
+ "title": "Navbar and Hero section fix of all the pages",
+ "repo": "Kritika75/TheCawnporeMag.github.io",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-26T15:58:52Z",
+ "updated_at": "2025-07-27T07:27:28Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-27T06:40:49Z",
+ "author_url": "https://github.com/priyansshraj",
+ "author_avatar": "https://avatars.githubusercontent.com/u/102223259?v=4"
+ },
+ {
+ "url": "https://github.com/Kritika75/TheCawnporeMag.github.io/pull/55",
+ "title": "Fixed layout of each card in Masthead section",
+ "repo": "Kritika75/TheCawnporeMag.github.io",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-23T08:56:21Z",
+ "updated_at": "2025-07-23T08:59:33Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-23T08:59:33Z",
+ "author_url": "https://github.com/priyansshraj",
+ "author_avatar": "https://avatars.githubusercontent.com/u/102223259?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/102223259?v=4",
+ "profile_url": "https://github.com/priyansshraj"
+ },
+ "Khushii636": {
+ "expectedPoints": 8,
+ "currentPoints": 8,
+ "levels": {
+ "level1": 2,
+ "level2": 0,
+ "level3": 0
+ },
+ "prs": [
+ {
+ "url": "https://github.com/Kritika75/TheCawnporeMag.github.io/pull/125",
+ "title": "Issue#101 UI Update: Card size, shape, button consistency & hover fix",
+ "repo": "Kritika75/TheCawnporeMag.github.io",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-25T12:29:44Z",
+ "updated_at": "2025-07-25T13:01:19Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-25T13:01:19Z",
+ "author_url": "https://github.com/Khushii636",
+ "author_avatar": "https://avatars.githubusercontent.com/u/184771335?v=4"
+ },
+ {
+ "url": "https://github.com/Kritika75/TheCawnporeMag.github.io/pull/119",
+ "title": "Fix:issue section",
+ "repo": "Kritika75/TheCawnporeMag.github.io",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-25T11:07:40Z",
+ "updated_at": "2025-07-25T11:10:53Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-25T11:10:53Z",
+ "author_url": "https://github.com/Khushii636",
+ "author_avatar": "https://avatars.githubusercontent.com/u/184771335?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/184771335?v=4",
+ "profile_url": "https://github.com/Khushii636"
+ },
+ "Hanusha-1002": {
+ "expectedPoints": 8,
+ "currentPoints": 8,
+ "levels": {
+ "level1": 2,
+ "level2": 0,
+ "level3": 0
+ },
+ "prs": [
+ {
+ "url": "https://github.com/Kritika75/TheCawnporeMag.github.io/pull/95",
+ "title": "taglines, buttons and landmark optimized for smaller screens",
+ "repo": "Kritika75/TheCawnporeMag.github.io",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-24T15:47:55Z",
+ "updated_at": "2025-07-26T03:33:43Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-26T03:33:30Z",
+ "author_url": "https://github.com/Hanusha-1002",
+ "author_avatar": "https://avatars.githubusercontent.com/u/210853396?v=4"
+ },
+ {
+ "url": "https://github.com/Kritika75/TheCawnporeMag.github.io/pull/86",
+ "title": "Added cool tag-lines to all Cawpore's Prominent Landmarks ",
+ "repo": "Kritika75/TheCawnporeMag.github.io",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-24T10:30:28Z",
+ "updated_at": "2025-07-24T12:21:30Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-24T12:10:58Z",
+ "author_url": "https://github.com/Hanusha-1002",
+ "author_avatar": "https://avatars.githubusercontent.com/u/210853396?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/210853396?v=4",
+ "profile_url": "https://github.com/Hanusha-1002"
+ },
+ "sanjanaaraii": {
+ "expectedPoints": 8,
+ "currentPoints": 8,
+ "levels": {
+ "level1": 2,
+ "level2": 0,
+ "level3": 0
+ },
+ "prs": [
+ {
+ "url": "https://github.com/Kritika75/TheCawnporeMag.github.io/pull/35",
+ "title": "feat: typo fixed and Style footer social media icons with hover effect",
+ "repo": "Kritika75/TheCawnporeMag.github.io",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-22T15:50:29Z",
+ "updated_at": "2025-07-23T08:52:50Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-23T08:52:49Z",
+ "author_url": "https://github.com/sanjanaaraii",
+ "author_avatar": "https://avatars.githubusercontent.com/u/179377344?v=4"
+ },
+ {
+ "url": "https://github.com/sampadatiwari30/DeshDarshan/pull/198",
+ "title": "Gap between hidden destination and buttons in feedback page",
+ "repo": "sampadatiwari30/DeshDarshan",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-28T14:18:31Z",
+ "updated_at": "2025-07-28T19:04:32Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-28T19:04:13Z",
+ "author_url": "https://github.com/sanjanaaraii",
+ "author_avatar": "https://avatars.githubusercontent.com/u/179377344?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/179377344?v=4",
+ "profile_url": "https://github.com/sanjanaaraii"
+ },
+ "Ronnit44": {
+ "expectedPoints": 8,
+ "currentPoints": 8,
+ "levels": {
+ "level1": 2,
+ "level2": 0,
+ "level3": 0
+ },
+ "prs": [
+ {
+ "url": "https://github.com/NishantRana07/HrRoadways/pull/428",
+ "title": "added eye icon to toggle password visibility",
+ "repo": "NishantRana07/HrRoadways",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-29T09:57:10Z",
+ "updated_at": "2025-07-31T14:20:31Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-31T14:20:30Z",
+ "author_url": "https://github.com/Ronnit44",
+ "author_avatar": "https://avatars.githubusercontent.com/u/127775780?v=4"
+ },
+ {
+ "url": "https://github.com/NishantRana07/HrRoadways/pull/417",
+ "title": "replaced old twitter icon with new X icon",
+ "repo": "NishantRana07/HrRoadways",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-28T13:19:10Z",
+ "updated_at": "2025-07-28T14:25:20Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-28T14:24:42Z",
+ "author_url": "https://github.com/Ronnit44",
+ "author_avatar": "https://avatars.githubusercontent.com/u/127775780?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/127775780?v=4",
+ "profile_url": "https://github.com/Ronnit44"
+ },
+ "Pratishtha5": {
+ "expectedPoints": 8,
+ "currentPoints": 8,
+ "levels": {
+ "level1": 2,
+ "level2": 0,
+ "level3": 0
+ },
+ "prs": [
+ {
+ "url": "https://github.com/pavitraag/Project-Vault/pull/195",
+ "title": "Adding Typing Speed Game project in the games section ",
+ "repo": "pavitraag/Project-Vault",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-29T19:12:58Z",
+ "updated_at": "2025-07-29T19:14:34Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-29T19:14:34Z",
+ "author_url": "https://github.com/Pratishtha5",
+ "author_avatar": "https://avatars.githubusercontent.com/u/182654574?v=4"
+ },
+ {
+ "url": "https://github.com/pavitraag/Project-Vault/pull/147",
+ "title": "added a new project Amazon in websites",
+ "repo": "pavitraag/Project-Vault",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-27T20:10:40Z",
+ "updated_at": "2025-07-29T18:43:46Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-28T19:42:37Z",
+ "author_url": "https://github.com/Pratishtha5",
+ "author_avatar": "https://avatars.githubusercontent.com/u/182654574?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/182654574?v=4",
+ "profile_url": "https://github.com/Pratishtha5"
+ },
+ "abinayagoudjandhyala": {
+ "expectedPoints": 8,
+ "currentPoints": 8,
+ "levels": {
+ "level1": 2,
+ "level2": 0,
+ "level3": 0
+ },
+ "prs": [
+ {
+ "url": "https://github.com/pavitraag/Project-Vault/pull/166",
+ "title": "Issue #155 resolved: Added HostWise Static Website with Live Demo and README",
+ "repo": "pavitraag/Project-Vault",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-29T04:45:58Z",
+ "updated_at": "2025-07-29T18:45:47Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-29T13:57:56Z",
+ "author_url": "https://github.com/abinayagoudjandhyala",
+ "author_avatar": "https://avatars.githubusercontent.com/u/168286063?v=4"
+ },
+ {
+ "url": "https://github.com/UTSAVS26/PyVerse/pull/1525",
+ "title": "Add Customer Churn Prediction ML Project – Resolved #1520",
+ "repo": "UTSAVS26/PyVerse",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-29T15:51:48Z",
+ "updated_at": "2025-08-02T07:51:35Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-08-02T07:51:28Z",
+ "author_url": "https://github.com/abinayagoudjandhyala",
+ "author_avatar": "https://avatars.githubusercontent.com/u/168286063?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/168286063?v=4",
+ "profile_url": "https://github.com/abinayagoudjandhyala"
+ },
+ "Kirti123x": {
+ "expectedPoints": 8,
+ "currentPoints": 8,
+ "levels": {
+ "level1": 2,
+ "level2": 0,
+ "level3": 0
+ },
+ "prs": [
+ {
+ "url": "https://github.com/pavitraag/Project-Vault/pull/51",
+ "title": "added favicon",
+ "repo": "pavitraag/Project-Vault",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-24T13:01:41Z",
+ "updated_at": "2025-07-29T18:31:39Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-24T18:39:03Z",
+ "author_url": "https://github.com/Kirti123x",
+ "author_avatar": "https://avatars.githubusercontent.com/u/171007625?v=4"
+ },
+ {
+ "url": "https://github.com/rutikakengal/100DAYS_OF_100WEBPROJECTS/pull/56",
+ "title": "fixed icons visiblity bug",
+ "repo": "rutikakengal/100DAYS_OF_100WEBPROJECTS",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-23T08:56:36Z",
+ "updated_at": "2025-07-23T13:55:51Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-23T13:55:20Z",
+ "author_url": "https://github.com/Kirti123x",
+ "author_avatar": "https://avatars.githubusercontent.com/u/171007625?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/171007625?v=4",
+ "profile_url": "https://github.com/Kirti123x"
+ },
+ "DATBOI-MAYANK": {
+ "expectedPoints": 8,
+ "currentPoints": 8,
+ "levels": {
+ "level1": 2,
+ "level2": 0,
+ "level3": 0
+ },
+ "prs": [
+ {
+ "url": "https://github.com/Er-luffy-D/SimplifAI/pull/63",
+ "title": "🚀 Feature: Add Keyboard Navigation Support (← / → Arrow Keys)",
+ "repo": "Er-luffy-D/SimplifAI",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-08-01T13:23:12Z",
+ "updated_at": "2025-08-02T17:02:05Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-08-02T06:41:35Z",
+ "author_url": "https://github.com/DATBOI-MAYANK",
+ "author_avatar": "https://avatars.githubusercontent.com/u/154581676?v=4"
+ },
+ {
+ "url": "https://github.com/Er-luffy-D/SimplifAI/pull/56",
+ "title": "🐛 Fix Firefox Flip-Card Rendering Bug",
+ "repo": "Er-luffy-D/SimplifAI",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-29T15:30:02Z",
+ "updated_at": "2025-08-02T16:58:58Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-29T15:49:20Z",
+ "author_url": "https://github.com/DATBOI-MAYANK",
+ "author_avatar": "https://avatars.githubusercontent.com/u/154581676?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/154581676?v=4",
+ "profile_url": "https://github.com/DATBOI-MAYANK"
+ },
+ "snehaburma270": {
+ "expectedPoints": 8,
+ "currentPoints": 8,
+ "levels": {
+ "level1": 2,
+ "level2": 0,
+ "level3": 0
+ },
+ "prs": [
+ {
+ "url": "https://github.com/rutikakengal/100DAYS_OF_100WEBPROJECTS/pull/282",
+ "title": "Made navbar responsive for mobile layout - GSSoC contribution",
+ "repo": "rutikakengal/100DAYS_OF_100WEBPROJECTS",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-28T05:26:09Z",
+ "updated_at": "2025-07-30T06:20:35Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-30T06:20:13Z",
+ "author_url": "https://github.com/snehaburma270",
+ "author_avatar": "https://avatars.githubusercontent.com/u/154002027?v=4"
+ },
+ {
+ "url": "https://github.com/VAIBHAVBABELE/vaibhavbabele.github.io/pull/177",
+ "title": "Final changes: fixed UI, accessibility, responsiveness, grammar",
+ "repo": "VAIBHAVBABELE/vaibhavbabele.github.io",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-29T05:01:36Z",
+ "updated_at": "2025-07-29T12:12:33Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-29T09:17:25Z",
+ "author_url": "https://github.com/snehaburma270",
+ "author_avatar": "https://avatars.githubusercontent.com/u/154002027?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/154002027?v=4",
+ "profile_url": "https://github.com/snehaburma270"
+ },
+ "aigle-levant": {
+ "expectedPoints": 8,
+ "currentPoints": 8,
+ "levels": {
+ "level1": 2,
+ "level2": 0,
+ "level3": 0
+ },
+ "prs": [
+ {
+ "url": "https://github.com/saumyayadav25/cpp-dsa-sheet-testing/pull/81",
+ "title": "Added light/dark variants of logo and favicon + added the design source file",
+ "repo": "saumyayadav25/cpp-dsa-sheet-testing",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-27T14:51:29Z",
+ "updated_at": "2025-07-27T16:03:37Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-27T16:03:37Z",
+ "author_url": "https://github.com/aigle-levant",
+ "author_avatar": "https://avatars.githubusercontent.com/u/74856871?v=4"
+ },
+ {
+ "url": "https://github.com/UTSAVS26/PyVerse/pull/1515",
+ "title": "Added py files for pangram, defanging ip address and removing vowels",
+ "repo": "UTSAVS26/PyVerse",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-28T13:29:24Z",
+ "updated_at": "2025-08-01T06:00:46Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-08-01T06:00:46Z",
+ "author_url": "https://github.com/aigle-levant",
+ "author_avatar": "https://avatars.githubusercontent.com/u/74856871?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/74856871?v=4",
+ "profile_url": "https://github.com/aigle-levant"
+ },
+ "abdullahlko": {
+ "expectedPoints": 8,
+ "currentPoints": 8,
+ "levels": {
+ "level1": 2,
+ "level2": 0,
+ "level3": 0
+ },
+ "prs": [
+ {
+ "url": "https://github.com/souvikpramanikgit/LearnHub/pull/109",
+ "title": "#102 feat: scroll to top on logo click if already on homepage",
+ "repo": "souvikpramanikgit/LearnHub",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-26T14:11:12Z",
+ "updated_at": "2025-07-26T15:33:13Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-26T15:33:03Z",
+ "author_url": "https://github.com/abdullahlko",
+ "author_avatar": "https://avatars.githubusercontent.com/u/195619680?v=4"
+ },
+ {
+ "url": "https://github.com/VAIBHAVBABELE/vaibhavbabele.github.io/pull/31",
+ "title": "Feature/dynamic date",
+ "repo": "VAIBHAVBABELE/vaibhavbabele.github.io",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-22T18:31:03Z",
+ "updated_at": "2025-07-23T04:08:10Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-23T04:02:08Z",
+ "author_url": "https://github.com/abdullahlko",
+ "author_avatar": "https://avatars.githubusercontent.com/u/195619680?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/195619680?v=4",
+ "profile_url": "https://github.com/abdullahlko"
+ },
+ "priyamahato86": {
+ "expectedPoints": 8,
+ "currentPoints": 8,
+ "levels": {
+ "level1": 2,
+ "level2": 0,
+ "level3": 0
+ },
+ "prs": [
+ {
+ "url": "https://github.com/souvikpramanikgit/LearnHub/pull/97",
+ "title": "Add DevOps learning path initial files",
+ "repo": "souvikpramanikgit/LearnHub",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-26T10:17:24Z",
+ "updated_at": "2025-07-26T16:36:20Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-26T16:35:59Z",
+ "author_url": "https://github.com/priyamahato86",
+ "author_avatar": "https://avatars.githubusercontent.com/u/209283042?v=4"
+ },
+ {
+ "url": "https://github.com/Agarwalvidu/ArdhNaariShakti_Taara_Frontend/pull/75",
+ "title": "Enhance the UI of the feedback section of the home page and add a CTA",
+ "repo": "Agarwalvidu/ArdhNaariShakti_Taara_Frontend",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-30T17:16:42Z",
+ "updated_at": "2025-07-30T18:26:53Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-30T18:26:53Z",
+ "author_url": "https://github.com/priyamahato86",
+ "author_avatar": "https://avatars.githubusercontent.com/u/209283042?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/209283042?v=4",
+ "profile_url": "https://github.com/priyamahato86"
+ },
+ "Srinu346": {
+ "expectedPoints": 8,
+ "currentPoints": 8,
+ "levels": {
+ "level1": 2,
+ "level2": 0,
+ "level3": 0
+ },
+ "prs": [
+ {
+ "url": "https://github.com/souvikpramanikgit/LearnHub/pull/26",
+ "title": "Updated NavBar Buttons & Hover Styling",
+ "repo": "souvikpramanikgit/LearnHub",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-22T11:13:47Z",
+ "updated_at": "2025-07-22T11:44:09Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-22T11:43:41Z",
+ "author_url": "https://github.com/Srinu346",
+ "author_avatar": "https://avatars.githubusercontent.com/u/172587011?v=4"
+ },
+ {
+ "url": "https://github.com/souvikpramanikgit/LearnHub/pull/3",
+ "title": "Added Tilt effect",
+ "repo": "souvikpramanikgit/LearnHub",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-21T17:11:24Z",
+ "updated_at": "2025-07-22T07:15:50Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-21T18:33:23Z",
+ "author_url": "https://github.com/Srinu346",
+ "author_avatar": "https://avatars.githubusercontent.com/u/172587011?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/172587011?v=4",
+ "profile_url": "https://github.com/Srinu346"
+ },
+ "Mohamin007": {
+ "expectedPoints": 8,
+ "currentPoints": 8,
+ "levels": {
+ "level1": 2,
+ "level2": 0,
+ "level3": 0
+ },
+ "prs": [
+ {
+ "url": "https://github.com/TanmayKalra09/SmartLog/pull/93",
+ "title": "fix: Add error handling for transaction toast notification",
+ "repo": "TanmayKalra09/SmartLog",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-23T14:58:49Z",
+ "updated_at": "2025-07-24T13:48:36Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-24T13:48:36Z",
+ "author_url": "https://github.com/Mohamin007",
+ "author_avatar": "https://avatars.githubusercontent.com/u/136302209?v=4"
+ },
+ {
+ "url": "https://github.com/TanmayKalra09/SmartLog/pull/60",
+ "title": "feat: Add success toast on new transaction",
+ "repo": "TanmayKalra09/SmartLog",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-22T16:11:49Z",
+ "updated_at": "2025-07-23T12:33:50Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-23T12:31:50Z",
+ "author_url": "https://github.com/Mohamin007",
+ "author_avatar": "https://avatars.githubusercontent.com/u/136302209?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/136302209?v=4",
+ "profile_url": "https://github.com/Mohamin007"
+ },
+ "Isha-upadhyay": {
+ "expectedPoints": 7,
+ "currentPoints": 7,
+ "levels": {
+ "level1": 0,
+ "level2": 1,
+ "level3": 0
+ },
+ "prs": [
+ {
+ "url": "https://github.com/abhisek2004/Dev-Elevate/pull/59",
+ "title": "[BUG] & [FEATURE]:Chatbot scroll issue and AI Integration for smart replies",
+ "repo": "abhisek2004/Dev-Elevate",
+ "level": "level2",
+ "points": 7,
+ "created_at": "2025-07-23T17:28:16Z",
+ "updated_at": "2025-07-24T08:29:11Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-24T08:28:47Z",
+ "author_url": "https://github.com/Isha-upadhyay",
+ "author_avatar": "https://avatars.githubusercontent.com/u/148354274?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/148354274?v=4",
+ "profile_url": "https://github.com/Isha-upadhyay"
+ },
+ "Afshan0608": {
+ "expectedPoints": 14,
+ "currentPoints": 7,
+ "levels": {
+ "level1": 0,
+ "level2": 2,
+ "level3": 0
+ },
+ "prs": [
+ {
+ "url": "https://github.com/abhisek247767/PeopleHub-Frontend/pull/68",
+ "title": "Improved UI and improved dark mode",
+ "repo": "abhisek247767/PeopleHub-Frontend",
+ "level": "level2",
+ "points": 7,
+ "created_at": "2025-07-31T17:24:17Z",
+ "updated_at": "2025-08-02T17:10:58Z",
+ "state": "open",
+ "merged": false,
+ "merged_at": null,
+ "author_url": "https://github.com/Afshan0608",
+ "author_avatar": "https://avatars.githubusercontent.com/u/147901722?v=4"
+ },
+ {
+ "url": "https://github.com/abhisek247767/PeopleHub-Frontend/pull/56",
+ "title": "Dark/light mode toggle[GSSoC25]",
+ "repo": "abhisek247767/PeopleHub-Frontend",
+ "level": "level2",
+ "points": 7,
+ "created_at": "2025-07-29T12:53:52Z",
+ "updated_at": "2025-07-31T07:45:56Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-30T13:20:47Z",
+ "author_url": "https://github.com/Afshan0608",
+ "author_avatar": "https://avatars.githubusercontent.com/u/147901722?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/147901722?v=4",
+ "profile_url": "https://github.com/Afshan0608"
+ },
+ "Priyanka-28-BM": {
+ "expectedPoints": 7,
+ "currentPoints": 7,
+ "levels": {
+ "level1": 0,
+ "level2": 1,
+ "level3": 0
+ },
+ "prs": [
+ {
+ "url": "https://github.com/abhisek247767/PeopleHub-Frontend/pull/10",
+ "title": "Improved the Employee page by making the form toggleable, fixing layout issues with Bootstrap, and using *ngFor for dropdowns to enhance responsiveness and usability.",
+ "repo": "abhisek247767/PeopleHub-Frontend",
+ "level": null,
+ "points": 0,
+ "created_at": "2025-07-22T17:35:03Z",
+ "updated_at": "2025-07-24T16:35:34Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-24T16:35:34Z",
+ "author_url": "https://github.com/Priyanka-28-BM",
+ "author_avatar": "https://avatars.githubusercontent.com/u/176226613?v=4"
+ },
+ {
+ "url": "https://github.com/Akki-jaiswal/pong-game/pull/3",
+ "title": "Fixed missing difficulty prompt and UI enhancements ",
+ "repo": "Akki-jaiswal/pong-game",
+ "level": null,
+ "points": 0,
+ "created_at": "2025-07-21T20:10:43Z",
+ "updated_at": "2025-07-26T05:03:53Z",
+ "state": "open",
+ "merged": false,
+ "merged_at": null,
+ "author_url": "https://github.com/Priyanka-28-BM",
+ "author_avatar": "https://avatars.githubusercontent.com/u/176226613?v=4"
+ },
+ {
+ "url": "https://github.com/itsAnimation/AnimateItNow/pull/35",
+ "title": "Made Templates Visible",
+ "repo": "itsAnimation/AnimateItNow",
+ "level": "level2",
+ "points": 7,
+ "created_at": "2025-07-22T05:53:35Z",
+ "updated_at": "2025-07-22T08:26:23Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-22T08:26:23Z",
+ "author_url": "https://github.com/Priyanka-28-BM",
+ "author_avatar": "https://avatars.githubusercontent.com/u/176226613?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/176226613?v=4",
+ "profile_url": "https://github.com/Priyanka-28-BM"
+ },
+ "Anuj42006": {
+ "expectedPoints": 7,
+ "currentPoints": 7,
+ "levels": {
+ "level1": 0,
+ "level2": 1,
+ "level3": 0
+ },
+ "prs": [
+ {
+ "url": "https://github.com/Abhishek2634/Foodie/pull/232",
+ "title": "Enhance: Redesigned mobile header and navbar for better UI/UX",
+ "repo": "Abhishek2634/Foodie",
+ "level": "level2",
+ "points": 7,
+ "created_at": "2025-08-02T07:45:40Z",
+ "updated_at": "2025-08-02T15:35:00Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-08-02T15:35:00Z",
+ "author_url": "https://github.com/Anuj42006",
+ "author_avatar": "https://avatars.githubusercontent.com/u/160331861?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/160331861?v=4",
+ "profile_url": "https://github.com/Anuj42006"
+ },
+ "Seerxt01": {
+ "expectedPoints": 7,
+ "currentPoints": 7,
+ "levels": {
+ "level1": 0,
+ "level2": 1,
+ "level3": 0
+ },
+ "prs": [
+ {
+ "url": "https://github.com/Abhishek2634/Foodie/pull/172",
+ "title": "fix: mobile responsive navbar - signin, dark mode & cart icons visible",
+ "repo": "Abhishek2634/Foodie",
+ "level": "level2",
+ "points": 7,
+ "created_at": "2025-07-29T13:02:15Z",
+ "updated_at": "2025-08-02T11:14:28Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-30T17:41:58Z",
+ "author_url": "https://github.com/Seerxt01",
+ "author_avatar": "https://avatars.githubusercontent.com/u/130777525?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/130777525?v=4",
+ "profile_url": "https://github.com/Seerxt01"
+ },
+ "Aaradhya13": {
+ "expectedPoints": 7,
+ "currentPoints": 7,
+ "levels": {
+ "level1": 0,
+ "level2": 1,
+ "level3": 0
+ },
+ "prs": [
+ {
+ "url": "https://github.com/Abhishek2634/Foodie/pull/150",
+ "title": "📄 Improved README.md with Setup Instructions and added screenshots and visuals for better user understanding",
+ "repo": "Abhishek2634/Foodie",
+ "level": "level2",
+ "points": 7,
+ "created_at": "2025-07-28T08:05:55Z",
+ "updated_at": "2025-08-02T11:04:17Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-30T03:03:45Z",
+ "author_url": "https://github.com/Aaradhya13",
+ "author_avatar": "https://avatars.githubusercontent.com/u/139609876?v=4"
+ },
+ {
+ "url": "https://github.com/sristy17/next-payroll/pull/59",
+ "title": "Added Google login and dark mode toggle and updated README accordingly",
+ "repo": "sristy17/next-payroll",
+ "level": null,
+ "points": 0,
+ "created_at": "2025-08-01T07:59:43Z",
+ "updated_at": "2025-08-02T17:56:50Z",
+ "state": "closed",
+ "merged": false,
+ "merged_at": null,
+ "author_url": "https://github.com/Aaradhya13",
+ "author_avatar": "https://avatars.githubusercontent.com/u/139609876?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/139609876?v=4",
+ "profile_url": "https://github.com/Aaradhya13"
+ },
+ "prachi-33": {
+ "expectedPoints": 7,
+ "currentPoints": 7,
+ "levels": {
+ "level1": 0,
+ "level2": 1,
+ "level3": 0
+ },
+ "prs": [
+ {
+ "url": "https://github.com/Abhishek2634/Foodie/pull/129",
+ "title": "Loader ui changed",
+ "repo": "Abhishek2634/Foodie",
+ "level": "level2",
+ "points": 7,
+ "created_at": "2025-07-26T17:16:48Z",
+ "updated_at": "2025-08-02T11:02:14Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-26T17:37:40Z",
+ "author_url": "https://github.com/prachi-33",
+ "author_avatar": "https://avatars.githubusercontent.com/u/205129714?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/205129714?v=4",
+ "profile_url": "https://github.com/prachi-33"
+ },
+ "gouri138": {
+ "expectedPoints": 7,
+ "currentPoints": 7,
+ "levels": {
+ "level1": 0,
+ "level2": 1,
+ "level3": 0
+ },
+ "prs": [
+ {
+ "url": "https://github.com/Abhishek2634/Foodie/pull/123",
+ "title": "feat: animated delivery scooter loader with new theme and message",
+ "repo": "Abhishek2634/Foodie",
+ "level": "level2",
+ "points": 7,
+ "created_at": "2025-07-26T14:31:08Z",
+ "updated_at": "2025-08-02T11:01:46Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-26T14:47:30Z",
+ "author_url": "https://github.com/gouri138",
+ "author_avatar": "https://avatars.githubusercontent.com/u/147314960?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/147314960?v=4",
+ "profile_url": "https://github.com/gouri138"
+ },
+ "Nishchal-Sachan": {
+ "expectedPoints": 7,
+ "currentPoints": 7,
+ "levels": {
+ "level1": 0,
+ "level2": 1,
+ "level3": 0
+ },
+ "prs": [
+ {
+ "url": "https://github.com/Abhishek2634/Foodie/pull/20",
+ "title": "Feature: implement dark mode support/dark mode",
+ "repo": "Abhishek2634/Foodie",
+ "level": "level2",
+ "points": 7,
+ "created_at": "2025-07-22T08:37:38Z",
+ "updated_at": "2025-08-02T10:49:47Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-22T11:53:28Z",
+ "author_url": "https://github.com/Nishchal-Sachan",
+ "author_avatar": "https://avatars.githubusercontent.com/u/173866945?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/173866945?v=4",
+ "profile_url": "https://github.com/Nishchal-Sachan"
+ },
+ "sneha-94": {
+ "expectedPoints": 7,
+ "currentPoints": 7,
+ "levels": {
+ "level1": 0,
+ "level2": 1,
+ "level3": 0
+ },
+ "prs": [
+ {
+ "url": "https://github.com/Adarsh-Chaubey03/TravelGrid/pull/504",
+ "title": "Add Wishlist Functionality ",
+ "repo": "Adarsh-Chaubey03/TravelGrid",
+ "level": "level2",
+ "points": 7,
+ "created_at": "2025-08-02T21:54:32Z",
+ "updated_at": "2025-08-03T02:56:44Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-08-03T02:56:44Z",
+ "author_url": "https://github.com/sneha-94",
+ "author_avatar": "https://avatars.githubusercontent.com/u/152735594?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/152735594?v=4",
+ "profile_url": "https://github.com/sneha-94"
+ },
+ "Anshudh": {
+ "expectedPoints": 7,
+ "currentPoints": 7,
+ "levels": {
+ "level1": 0,
+ "level2": 1,
+ "level3": 0
+ },
+ "prs": [
+ {
+ "url": "https://github.com/Adarsh-Chaubey03/TravelGrid/pull/502",
+ "title": "centering footer content ",
+ "repo": "Adarsh-Chaubey03/TravelGrid",
+ "level": "level2",
+ "points": 7,
+ "created_at": "2025-08-02T19:22:14Z",
+ "updated_at": "2025-08-03T02:49:42Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-08-03T02:49:42Z",
+ "author_url": "https://github.com/Anshudh",
+ "author_avatar": "https://avatars.githubusercontent.com/u/197652912?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/197652912?v=4",
+ "profile_url": "https://github.com/Anshudh"
+ },
+ "SanviAswal23": {
+ "expectedPoints": 7,
+ "currentPoints": 7,
+ "levels": {
+ "level1": 0,
+ "level2": 1,
+ "level3": 0
+ },
+ "prs": [
+ {
+ "url": "https://github.com/Adarsh-Chaubey03/TravelGrid/pull/460",
+ "title": "Add Interactive Destination Map with Clickable Pins and Popups",
+ "repo": "Adarsh-Chaubey03/TravelGrid",
+ "level": "level2",
+ "points": 7,
+ "created_at": "2025-08-02T06:43:47Z",
+ "updated_at": "2025-08-02T08:47:26Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-08-02T08:47:08Z",
+ "author_url": "https://github.com/SanviAswal23",
+ "author_avatar": "https://avatars.githubusercontent.com/u/172519447?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/172519447?v=4",
+ "profile_url": "https://github.com/SanviAswal23"
+ },
+ "ashutoshdebug": {
+ "expectedPoints": 7,
+ "currentPoints": 7,
+ "levels": {
+ "level1": 0,
+ "level2": 1,
+ "level3": 0
+ },
+ "prs": [
+ {
+ "url": "https://github.com/Adarsh-Chaubey03/TravelGrid/pull/423",
+ "title": "Navbar formatting",
+ "repo": "Adarsh-Chaubey03/TravelGrid",
+ "level": "level2",
+ "points": 7,
+ "created_at": "2025-07-31T19:45:15Z",
+ "updated_at": "2025-08-01T02:03:20Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-08-01T02:03:09Z",
+ "author_url": "https://github.com/ashutoshdebug",
+ "author_avatar": "https://avatars.githubusercontent.com/u/126601693?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/126601693?v=4",
+ "profile_url": "https://github.com/ashutoshdebug"
+ },
+ "sri-rama-charan": {
+ "expectedPoints": 7,
+ "currentPoints": 7,
+ "levels": {
+ "level1": 0,
+ "level2": 1,
+ "level3": 0
+ },
+ "prs": [
+ {
+ "url": "https://github.com/Adarsh-Chaubey03/TravelGrid/pull/377",
+ "title": "Enhanced hotel details page UI",
+ "repo": "Adarsh-Chaubey03/TravelGrid",
+ "level": "level2",
+ "points": 7,
+ "created_at": "2025-07-31T01:56:09Z",
+ "updated_at": "2025-07-31T15:39:41Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-31T15:12:30Z",
+ "author_url": "https://github.com/sri-rama-charan",
+ "author_avatar": "https://avatars.githubusercontent.com/u/180069943?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/180069943?v=4",
+ "profile_url": "https://github.com/sri-rama-charan"
+ },
+ "AshutoshRaj1260": {
+ "expectedPoints": 7,
+ "currentPoints": 7,
+ "levels": {
+ "level1": 0,
+ "level2": 1,
+ "level3": 0
+ },
+ "prs": [
+ {
+ "url": "https://github.com/Adarsh-Chaubey03/TravelGrid/pull/376",
+ "title": "feature: Added skeleton loaders to HotelDetails and PackageDetails components",
+ "repo": "Adarsh-Chaubey03/TravelGrid",
+ "level": "level2",
+ "points": 7,
+ "created_at": "2025-07-30T23:57:47Z",
+ "updated_at": "2025-07-31T12:52:53Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-31T03:54:28Z",
+ "author_url": "https://github.com/AshutoshRaj1260",
+ "author_avatar": "https://avatars.githubusercontent.com/u/140204242?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/140204242?v=4",
+ "profile_url": "https://github.com/AshutoshRaj1260"
+ },
+ "arundhativaishnav": {
+ "expectedPoints": 7,
+ "currentPoints": 7,
+ "levels": {
+ "level1": 0,
+ "level2": 1,
+ "level3": 0
+ },
+ "prs": [
+ {
+ "url": "https://github.com/Adarsh-Chaubey03/TravelGrid/pull/372",
+ "title": "Fix : SignUp page issue(#362)",
+ "repo": "Adarsh-Chaubey03/TravelGrid",
+ "level": "level2",
+ "points": 7,
+ "created_at": "2025-07-30T18:21:11Z",
+ "updated_at": "2025-07-31T03:49:27Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-31T03:48:35Z",
+ "author_url": "https://github.com/arundhativaishnav",
+ "author_avatar": "https://avatars.githubusercontent.com/u/168985050?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/168985050?v=4",
+ "profile_url": "https://github.com/arundhativaishnav"
+ },
+ "tanishqDevx": {
+ "expectedPoints": 7,
+ "currentPoints": 7,
+ "levels": {
+ "level1": 0,
+ "level2": 1,
+ "level3": 0
+ },
+ "prs": [
+ {
+ "url": "https://github.com/Adarsh-Chaubey03/TravelGrid/pull/369",
+ "title": "🔖 PR Title: AI Chatbot Integration for Travel Assistance (#339)",
+ "repo": "Adarsh-Chaubey03/TravelGrid",
+ "level": "level2",
+ "points": 7,
+ "created_at": "2025-07-30T17:07:12Z",
+ "updated_at": "2025-07-31T03:53:31Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-31T03:52:39Z",
+ "author_url": "https://github.com/tanishqDevx",
+ "author_avatar": "https://avatars.githubusercontent.com/u/181402502?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/181402502?v=4",
+ "profile_url": "https://github.com/tanishqDevx"
+ },
+ "abhishek30v": {
+ "expectedPoints": 7,
+ "currentPoints": 7,
+ "levels": {
+ "level1": 0,
+ "level2": 1,
+ "level3": 0
+ },
+ "prs": [
+ {
+ "url": "https://github.com/Adarsh-Chaubey03/TravelGrid/pull/357",
+ "title": "Fix missing unique key prop in DiscoverSection map rendering #320",
+ "repo": "Adarsh-Chaubey03/TravelGrid",
+ "level": "level2",
+ "points": 7,
+ "created_at": "2025-07-30T08:25:54Z",
+ "updated_at": "2025-07-30T15:08:18Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-30T15:07:56Z",
+ "author_url": "https://github.com/abhishek30v",
+ "author_avatar": "https://avatars.githubusercontent.com/u/116665292?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/116665292?v=4",
+ "profile_url": "https://github.com/abhishek30v"
+ },
+ "hemant5037": {
+ "expectedPoints": 7,
+ "currentPoints": 7,
+ "levels": {
+ "level1": 0,
+ "level2": 1,
+ "level3": 0
+ },
+ "prs": [
+ {
+ "url": "https://github.com/Adarsh-Chaubey03/TravelGrid/pull/347",
+ "title": "Add: Google Sign-In auth integration #326",
+ "repo": "Adarsh-Chaubey03/TravelGrid",
+ "level": "level2",
+ "points": 7,
+ "created_at": "2025-07-29T18:23:38Z",
+ "updated_at": "2025-07-30T16:43:29Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-30T16:43:02Z",
+ "author_url": "https://github.com/hemant5037",
+ "author_avatar": "https://avatars.githubusercontent.com/u/155908586?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/155908586?v=4",
+ "profile_url": "https://github.com/hemant5037"
+ },
+ "shwetharbaliga": {
+ "expectedPoints": 7,
+ "currentPoints": 7,
+ "levels": {
+ "level1": 0,
+ "level2": 1,
+ "level3": 0
+ },
+ "prs": [
+ {
+ "url": "https://github.com/Adarsh-Chaubey03/TravelGrid/pull/345",
+ "title": "Added Filters: Continent, Country, Season, Duration for Packages",
+ "repo": "Adarsh-Chaubey03/TravelGrid",
+ "level": "level2",
+ "points": 7,
+ "created_at": "2025-07-29T17:27:57Z",
+ "updated_at": "2025-07-30T15:03:59Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-30T15:03:59Z",
+ "author_url": "https://github.com/shwetharbaliga",
+ "author_avatar": "https://avatars.githubusercontent.com/u/216296236?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/216296236?v=4",
+ "profile_url": "https://github.com/shwetharbaliga"
+ },
+ "templehubsakshi": {
+ "expectedPoints": 7,
+ "currentPoints": 7,
+ "levels": {
+ "level1": 0,
+ "level2": 1,
+ "level3": 0
+ },
+ "prs": [
+ {
+ "url": "https://github.com/Adarsh-Chaubey03/TravelGrid/pull/313",
+ "title": "fix: adjusted Profile button alignment and font size for better spacing",
+ "repo": "Adarsh-Chaubey03/TravelGrid",
+ "level": "level2",
+ "points": 7,
+ "created_at": "2025-07-28T20:50:43Z",
+ "updated_at": "2025-07-29T10:53:39Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-29T10:53:18Z",
+ "author_url": "https://github.com/templehubsakshi",
+ "author_avatar": "https://avatars.githubusercontent.com/u/155846503?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/155846503?v=4",
+ "profile_url": "https://github.com/templehubsakshi"
+ },
+ "AbhipsaMohapatra": {
+ "expectedPoints": 7,
+ "currentPoints": 7,
+ "levels": {
+ "level1": 0,
+ "level2": 1,
+ "level3": 0
+ },
+ "prs": [
+ {
+ "url": "https://github.com/Adarsh-Chaubey03/TravelGrid/pull/312",
+ "title": " Backend API Integration for View Forum Page",
+ "repo": "Adarsh-Chaubey03/TravelGrid",
+ "level": "level2",
+ "points": 7,
+ "created_at": "2025-07-28T20:14:33Z",
+ "updated_at": "2025-07-30T03:53:32Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-30T03:53:08Z",
+ "author_url": "https://github.com/AbhipsaMohapatra",
+ "author_avatar": "https://avatars.githubusercontent.com/u/166213669?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/166213669?v=4",
+ "profile_url": "https://github.com/AbhipsaMohapatra"
+ },
+ "archanakumari-dev": {
+ "expectedPoints": 7,
+ "currentPoints": 7,
+ "levels": {
+ "level1": 0,
+ "level2": 1,
+ "level3": 0
+ },
+ "prs": [
+ {
+ "url": "https://github.com/Adarsh-Chaubey03/TravelGrid/pull/305",
+ "title": "Fixed the navbar issue on scrolling",
+ "repo": "Adarsh-Chaubey03/TravelGrid",
+ "level": "level2",
+ "points": 7,
+ "created_at": "2025-07-28T17:22:11Z",
+ "updated_at": "2025-07-28T17:38:49Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-28T17:38:36Z",
+ "author_url": "https://github.com/archanakumari-dev",
+ "author_avatar": "https://avatars.githubusercontent.com/u/192684911?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/192684911?v=4",
+ "profile_url": "https://github.com/archanakumari-dev"
+ },
+ "TaranaKhanna": {
+ "expectedPoints": 7,
+ "currentPoints": 7,
+ "levels": {
+ "level1": 0,
+ "level2": 1,
+ "level3": 0
+ },
+ "prs": [
+ {
+ "url": "https://github.com/Adarsh-Chaubey03/TravelGrid/pull/303",
+ "title": "Added Email and Password Validation in registerUser and loginUser Controllers",
+ "repo": "Adarsh-Chaubey03/TravelGrid",
+ "level": "level2",
+ "points": 7,
+ "created_at": "2025-07-28T16:59:29Z",
+ "updated_at": "2025-07-28T17:37:36Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-28T17:37:36Z",
+ "author_url": "https://github.com/TaranaKhanna",
+ "author_avatar": "https://avatars.githubusercontent.com/u/162991120?v=4"
+ },
+ {
+ "url": "https://github.com/manishkumar8312/Hotel-Booking/pull/9",
+ "title": "Fix landing page's UI and .env file ignored",
+ "repo": "manishkumar8312/Hotel-Booking",
+ "level": null,
+ "points": 0,
+ "created_at": "2025-07-26T14:30:23Z",
+ "updated_at": "2025-07-26T18:28:36Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-26T18:28:36Z",
+ "author_url": "https://github.com/TaranaKhanna",
+ "author_avatar": "https://avatars.githubusercontent.com/u/162991120?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/162991120?v=4",
+ "profile_url": "https://github.com/TaranaKhanna"
+ },
+ "sneha931": {
+ "expectedPoints": 7,
+ "currentPoints": 7,
+ "levels": {
+ "level1": 0,
+ "level2": 1,
+ "level3": 0
+ },
+ "prs": [
+ {
+ "url": "https://github.com/Adarsh-Chaubey03/TravelGrid/pull/241",
+ "title": "Add Edit Profile Feature with Default Avatar Handling",
+ "repo": "Adarsh-Chaubey03/TravelGrid",
+ "level": "level2",
+ "points": 7,
+ "created_at": "2025-07-27T11:35:19Z",
+ "updated_at": "2025-07-28T06:07:15Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-28T06:07:15Z",
+ "author_url": "https://github.com/sneha931",
+ "author_avatar": "https://avatars.githubusercontent.com/u/153498006?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/153498006?v=4",
+ "profile_url": "https://github.com/sneha931"
+ },
+ "r1414a": {
+ "expectedPoints": 7,
+ "currentPoints": 7,
+ "levels": {
+ "level1": 0,
+ "level2": 1,
+ "level3": 0
+ },
+ "prs": [
+ {
+ "url": "https://github.com/Adarsh-Chaubey03/TravelGrid/pull/220",
+ "title": "Fixed Automatic scroll to top when route is changed. (issue 219)",
+ "repo": "Adarsh-Chaubey03/TravelGrid",
+ "level": "level2",
+ "points": 7,
+ "created_at": "2025-07-27T05:11:04Z",
+ "updated_at": "2025-07-27T05:44:57Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-27T05:44:35Z",
+ "author_url": "https://github.com/r1414a",
+ "author_avatar": "https://avatars.githubusercontent.com/u/70930255?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/70930255?v=4",
+ "profile_url": "https://github.com/r1414a"
+ },
+ "priyam191": {
+ "expectedPoints": 7,
+ "currentPoints": 7,
+ "levels": {
+ "level1": 0,
+ "level2": 1,
+ "level3": 0
+ },
+ "prs": [
+ {
+ "url": "https://github.com/Adarsh-Chaubey03/TravelGrid/pull/193",
+ "title": "Fixed the button functionality issue",
+ "repo": "Adarsh-Chaubey03/TravelGrid",
+ "level": "level2",
+ "points": 7,
+ "created_at": "2025-07-25T19:52:10Z",
+ "updated_at": "2025-07-26T01:38:18Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-26T01:38:01Z",
+ "author_url": "https://github.com/priyam191",
+ "author_avatar": "https://avatars.githubusercontent.com/u/149608743?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/149608743?v=4",
+ "profile_url": "https://github.com/priyam191"
+ },
+ "tanyaagrawalhii": {
+ "expectedPoints": 7,
+ "currentPoints": 7,
+ "levels": {
+ "level1": 0,
+ "level2": 1,
+ "level3": 0
+ },
+ "prs": [
+ {
+ "url": "https://github.com/Adarsh-Chaubey03/TravelGrid/pull/172",
+ "title": "fixed the inconsistent Travel Class Options and Invalid Route Logic fo…",
+ "repo": "Adarsh-Chaubey03/TravelGrid",
+ "level": "level2",
+ "points": 7,
+ "created_at": "2025-07-25T09:00:00Z",
+ "updated_at": "2025-07-26T01:36:47Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-26T01:36:46Z",
+ "author_url": "https://github.com/tanyaagrawalhii",
+ "author_avatar": "https://avatars.githubusercontent.com/u/144205418?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/144205418?v=4",
+ "profile_url": "https://github.com/tanyaagrawalhii"
+ },
+ "HarleenKaurBhullar": {
+ "expectedPoints": 7,
+ "currentPoints": 7,
+ "levels": {
+ "level1": 0,
+ "level2": 1,
+ "level3": 0
+ },
+ "prs": [
+ {
+ "url": "https://github.com/Adarsh-Chaubey03/TravelGrid/pull/160",
+ "title": "Adding about page",
+ "repo": "Adarsh-Chaubey03/TravelGrid",
+ "level": "level2",
+ "points": 7,
+ "created_at": "2025-07-24T17:01:12Z",
+ "updated_at": "2025-07-25T05:56:52Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-25T05:56:14Z",
+ "author_url": "https://github.com/HarleenKaurBhullar",
+ "author_avatar": "https://avatars.githubusercontent.com/u/145742023?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/145742023?v=4",
+ "profile_url": "https://github.com/HarleenKaurBhullar"
+ },
+ "Shravani2906P": {
+ "expectedPoints": 7,
+ "currentPoints": 7,
+ "levels": {
+ "level1": 0,
+ "level2": 1,
+ "level3": 0
+ },
+ "prs": [
+ {
+ "url": "https://github.com/Adarsh-Chaubey03/TravelGrid/pull/145",
+ "title": "Fixed the page loading bug and adjusted the padding of dashboard",
+ "repo": "Adarsh-Chaubey03/TravelGrid",
+ "level": "level2",
+ "points": 7,
+ "created_at": "2025-07-24T10:15:35Z",
+ "updated_at": "2025-07-25T14:35:55Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-24T15:57:39Z",
+ "author_url": "https://github.com/Shravani2906P",
+ "author_avatar": "https://avatars.githubusercontent.com/u/190114456?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/190114456?v=4",
+ "profile_url": "https://github.com/Shravani2906P"
+ },
+ "TanishTunwal": {
+ "expectedPoints": 7,
+ "currentPoints": 7,
+ "levels": {
+ "level1": 0,
+ "level2": 1,
+ "level3": 0
+ },
+ "prs": [
+ {
+ "url": "https://github.com/Adarsh-Chaubey03/TravelGrid/pull/88",
+ "title": "added search bar in guide and changes in ticket sec and ui",
+ "repo": "Adarsh-Chaubey03/TravelGrid",
+ "level": "level2",
+ "points": 7,
+ "created_at": "2025-07-22T16:05:52Z",
+ "updated_at": "2025-07-23T03:25:18Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-23T03:25:18Z",
+ "author_url": "https://github.com/TanishTunwal",
+ "author_avatar": "https://avatars.githubusercontent.com/u/160094909?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/160094909?v=4",
+ "profile_url": "https://github.com/TanishTunwal"
+ },
+ "Soham-Lodh": {
+ "expectedPoints": 7,
+ "currentPoints": 7,
+ "levels": {
+ "level1": 0,
+ "level2": 1,
+ "level3": 0
+ },
+ "prs": [
+ {
+ "url": "https://github.com/Adarsh-Chaubey03/TravelGrid/pull/64",
+ "title": "Login and Sign Up page implementation",
+ "repo": "Adarsh-Chaubey03/TravelGrid",
+ "level": "level2",
+ "points": 7,
+ "created_at": "2025-07-22T11:53:46Z",
+ "updated_at": "2025-07-22T12:59:15Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-22T12:59:15Z",
+ "author_url": "https://github.com/Soham-Lodh",
+ "author_avatar": "https://avatars.githubusercontent.com/u/185178672?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/185178672?v=4",
+ "profile_url": "https://github.com/Soham-Lodh"
+ },
+ "Parth308": {
+ "expectedPoints": 7,
+ "currentPoints": 7,
+ "levels": {
+ "level1": 0,
+ "level2": 1,
+ "level3": 0
+ },
+ "prs": [
+ {
+ "url": "https://github.com/Adarsh-Chaubey03/TravelGrid/pull/20",
+ "title": "Enhanced Footer with newsletter subscription and toast notifications",
+ "repo": "Adarsh-Chaubey03/TravelGrid",
+ "level": "level2",
+ "points": 7,
+ "created_at": "2025-07-21T17:06:58Z",
+ "updated_at": "2025-07-22T06:00:24Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-22T05:59:38Z",
+ "author_url": "https://github.com/Parth308",
+ "author_avatar": "https://avatars.githubusercontent.com/u/58777001?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/58777001?v=4",
+ "profile_url": "https://github.com/Parth308"
+ },
+ "DhawalShankar": {
+ "expectedPoints": 7,
+ "currentPoints": 7,
+ "levels": {
+ "level1": 0,
+ "level2": 1,
+ "level3": 0
+ },
+ "prs": [
+ {
+ "url": "https://github.com/opensource-society/notesvault/pull/35",
+ "title": "Refactored Upload Page & Closed Previous PR",
+ "repo": "opensource-society/NotesVault",
+ "level": "level2",
+ "points": 7,
+ "created_at": "2025-07-22T05:51:11Z",
+ "updated_at": "2025-08-02T16:19:31Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-22T06:35:06Z",
+ "author_url": "https://github.com/DhawalShankar",
+ "author_avatar": "https://avatars.githubusercontent.com/u/130208891?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/130208891?v=4",
+ "profile_url": "https://github.com/DhawalShankar"
+ },
+ "GaragaNaveenKumar": {
+ "expectedPoints": 7,
+ "currentPoints": 7,
+ "levels": {
+ "level1": 0,
+ "level2": 1,
+ "level3": 0
+ },
+ "prs": [
+ {
+ "url": "https://github.com/agamjotsingh18/trendhora/pull/50",
+ "title": "Added API route to get single item by id",
+ "repo": "agamjotsingh18/trendhora",
+ "level": "level2",
+ "points": 7,
+ "created_at": "2025-07-30T02:11:51Z",
+ "updated_at": "2025-07-30T11:27:24Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-30T11:01:59Z",
+ "author_url": "https://github.com/GaragaNaveenKumar",
+ "author_avatar": "https://avatars.githubusercontent.com/u/177001578?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/177001578?v=4",
+ "profile_url": "https://github.com/GaragaNaveenKumar"
+ },
+ "krishnaj01": {
+ "expectedPoints": 7,
+ "currentPoints": 7,
+ "levels": {
+ "level1": 0,
+ "level2": 1,
+ "level3": 0
+ },
+ "prs": [
+ {
+ "url": "https://github.com/agamjotsingh18/trendhora/pull/45",
+ "title": "Solving ISSUE 32 - Backend URL in Frontend .env",
+ "repo": "agamjotsingh18/trendhora",
+ "level": "level2",
+ "points": 7,
+ "created_at": "2025-07-28T20:16:52Z",
+ "updated_at": "2025-08-02T19:21:26Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-08-02T19:20:14Z",
+ "author_url": "https://github.com/krishnaj01",
+ "author_avatar": "https://avatars.githubusercontent.com/u/153987319?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/153987319?v=4",
+ "profile_url": "https://github.com/krishnaj01"
+ },
+ "anmol-janamatti": {
+ "expectedPoints": 7,
+ "currentPoints": 7,
+ "levels": {
+ "level1": 0,
+ "level2": 1,
+ "level3": 0
+ },
+ "prs": [
+ {
+ "url": "https://github.com/Amarjha01/InfantCareCompass/pull/27",
+ "title": "added tostify notifications for registration route",
+ "repo": "Amarjha01/InfantCareCompass",
+ "level": "level2",
+ "points": 7,
+ "created_at": "2025-07-22T08:53:46Z",
+ "updated_at": "2025-07-22T09:26:05Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-22T09:24:31Z",
+ "author_url": "https://github.com/anmol-janamatti",
+ "author_avatar": "https://avatars.githubusercontent.com/u/84708393?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/84708393?v=4",
+ "profile_url": "https://github.com/anmol-janamatti"
+ },
+ "Ankita-Gupta2004": {
+ "expectedPoints": 7,
+ "currentPoints": 7,
+ "levels": {
+ "level1": 0,
+ "level2": 1,
+ "level3": 0
+ },
+ "prs": [
+ {
+ "url": "https://github.com/itsAnimation/AnimateItNow/pull/729",
+ "title": "Fix: Improve dark mode UI of FAQs section and contact form (#723)",
+ "repo": "itsAnimation/AnimateItNow",
+ "level": "level2",
+ "points": 7,
+ "created_at": "2025-08-01T07:55:06Z",
+ "updated_at": "2025-08-02T06:31:53Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-08-02T06:31:53Z",
+ "author_url": "https://github.com/Ankita-Gupta2004",
+ "author_avatar": "https://avatars.githubusercontent.com/u/147972451?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/147972451?v=4",
+ "profile_url": "https://github.com/Ankita-Gupta2004"
+ },
+ "BrahmleenKaur17": {
+ "expectedPoints": 7,
+ "currentPoints": 7,
+ "levels": {
+ "level1": 0,
+ "level2": 1,
+ "level3": 0
+ },
+ "prs": [
+ {
+ "url": "https://github.com/itsAnimation/AnimateItNow/pull/699",
+ "title": "added navbar on 404 page not found",
+ "repo": "itsAnimation/AnimateItNow",
+ "level": "level2",
+ "points": 7,
+ "created_at": "2025-07-31T11:49:22Z",
+ "updated_at": "2025-07-31T18:08:56Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-31T18:08:56Z",
+ "author_url": "https://github.com/BrahmleenKaur17",
+ "author_avatar": "https://avatars.githubusercontent.com/u/178726002?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/178726002?v=4",
+ "profile_url": "https://github.com/BrahmleenKaur17"
+ },
+ "Nishakulkarni06": {
+ "expectedPoints": 7,
+ "currentPoints": 7,
+ "levels": {
+ "level1": 0,
+ "level2": 1,
+ "level3": 0
+ },
+ "prs": [
+ {
+ "url": "https://github.com/itsAnimation/AnimateItNow/pull/684",
+ "title": "added accordian template",
+ "repo": "itsAnimation/AnimateItNow",
+ "level": "level2",
+ "points": 7,
+ "created_at": "2025-07-31T05:15:26Z",
+ "updated_at": "2025-07-31T06:45:56Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-31T06:45:56Z",
+ "author_url": "https://github.com/Nishakulkarni06",
+ "author_avatar": "https://avatars.githubusercontent.com/u/151458412?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/151458412?v=4",
+ "profile_url": "https://github.com/Nishakulkarni06"
+ },
+ "Shreeyaparkhi11": {
+ "expectedPoints": 7,
+ "currentPoints": 7,
+ "levels": {
+ "level1": 0,
+ "level2": 1,
+ "level3": 0
+ },
+ "prs": [
+ {
+ "url": "https://github.com/itsAnimation/AnimateItNow/pull/669",
+ "title": "Improve FAQ section: added FAQ category buttons for section selection",
+ "repo": "itsAnimation/AnimateItNow",
+ "level": "level2",
+ "points": 7,
+ "created_at": "2025-07-30T11:12:43Z",
+ "updated_at": "2025-07-30T19:29:17Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-30T19:29:17Z",
+ "author_url": "https://github.com/Shreeyaparkhi11",
+ "author_avatar": "https://avatars.githubusercontent.com/u/192844345?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/192844345?v=4",
+ "profile_url": "https://github.com/Shreeyaparkhi11"
+ },
+ "Avni-cop": {
+ "expectedPoints": 7,
+ "currentPoints": 7,
+ "levels": {
+ "level1": 0,
+ "level2": 1,
+ "level3": 0
+ },
+ "prs": [
+ {
+ "url": "https://github.com/itsAnimation/AnimateItNow/pull/609",
+ "title": "Added a new template in glassmorphism profile card",
+ "repo": "itsAnimation/AnimateItNow",
+ "level": "level2",
+ "points": 7,
+ "created_at": "2025-07-28T16:59:31Z",
+ "updated_at": "2025-07-28T18:10:54Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-28T18:10:54Z",
+ "author_url": "https://github.com/Avni-cop",
+ "author_avatar": "https://avatars.githubusercontent.com/u/188541495?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/188541495?v=4",
+ "profile_url": "https://github.com/Avni-cop"
+ },
+ "Diyap235": {
+ "expectedPoints": 7,
+ "currentPoints": 7,
+ "levels": {
+ "level1": 0,
+ "level2": 1,
+ "level3": 0
+ },
+ "prs": [
+ {
+ "url": "https://github.com/itsAnimation/AnimateItNow/pull/601",
+ "title": "fixed issue#470",
+ "repo": "itsAnimation/AnimateItNow",
+ "level": "level2",
+ "points": 7,
+ "created_at": "2025-07-28T14:55:49Z",
+ "updated_at": "2025-08-02T16:39:23Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-28T15:44:44Z",
+ "author_url": "https://github.com/Diyap235",
+ "author_avatar": "https://avatars.githubusercontent.com/u/186195419?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/186195419?v=4",
+ "profile_url": "https://github.com/Diyap235"
+ },
+ "Nosheen-Akhtar16": {
+ "expectedPoints": 7,
+ "currentPoints": 7,
+ "levels": {
+ "level1": 0,
+ "level2": 1,
+ "level3": 0
+ },
+ "prs": [
+ {
+ "url": "https://github.com/itsAnimation/AnimateItNow/pull/509",
+ "title": "feature:flip cardss, wavy background and typing text animation",
+ "repo": "itsAnimation/AnimateItNow",
+ "level": "level2",
+ "points": 7,
+ "created_at": "2025-07-26T17:23:25Z",
+ "updated_at": "2025-07-26T18:15:27Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-26T18:15:27Z",
+ "author_url": "https://github.com/Nosheen-Akhtar16",
+ "author_avatar": "https://avatars.githubusercontent.com/u/181832487?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/181832487?v=4",
+ "profile_url": "https://github.com/Nosheen-Akhtar16"
+ },
+ "RutviShah2": {
+ "expectedPoints": 7,
+ "currentPoints": 7,
+ "levels": {
+ "level1": 0,
+ "level2": 1,
+ "level3": 0
+ },
+ "prs": [
+ {
+ "url": "https://github.com/itsAnimation/AnimateItNow/pull/490",
+ "title": "Implemented Aesthetic Micro-Interactions and Responsive Visual Feedback Across UI 4.",
+ "repo": "itsAnimation/AnimateItNow",
+ "level": "level2",
+ "points": 7,
+ "created_at": "2025-07-26T13:59:59Z",
+ "updated_at": "2025-07-26T16:03:29Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-26T16:03:29Z",
+ "author_url": "https://github.com/RutviShah2",
+ "author_avatar": "https://avatars.githubusercontent.com/u/176883257?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/176883257?v=4",
+ "profile_url": "https://github.com/RutviShah2"
+ },
+ "KrishnaSen01": {
+ "expectedPoints": 15,
+ "currentPoints": 7,
+ "levels": {
+ "level1": 2,
+ "level2": 1,
+ "level3": 0
+ },
+ "prs": [
+ {
+ "url": "https://github.com/itsAnimation/AnimateItNow/pull/449",
+ "title": "Update templates fixed footer.html",
+ "repo": "itsAnimation/AnimateItNow",
+ "level": "level2",
+ "points": 7,
+ "created_at": "2025-07-26T06:28:17Z",
+ "updated_at": "2025-07-26T12:30:49Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-26T12:30:49Z",
+ "author_url": "https://github.com/KrishnaSen01",
+ "author_avatar": "https://avatars.githubusercontent.com/u/189194242?v=4"
+ },
+ {
+ "url": "https://github.com/pavitraag/Project-Vault/pull/207",
+ "title": "[Bug] Removed Duplicate / Tags, Corrected Mis-nested Elements, Resolved Conflicts & Updated style.css",
+ "repo": "pavitraag/Project-Vault",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-30T09:39:14Z",
+ "updated_at": "2025-07-31T09:08:18Z",
+ "state": "closed",
+ "merged": false,
+ "merged_at": null,
+ "author_url": "https://github.com/KrishnaSen01",
+ "author_avatar": "https://avatars.githubusercontent.com/u/189194242?v=4"
+ },
+ {
+ "url": "https://github.com/pavitraag/Project-Vault/pull/183",
+ "title": "Duplicate / tags and mis-nested elements in main issue fixed",
+ "repo": "pavitraag/Project-Vault",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-29T12:14:28Z",
+ "updated_at": "2025-08-02T12:19:46Z",
+ "state": "open",
+ "merged": false,
+ "merged_at": null,
+ "author_url": "https://github.com/KrishnaSen01",
+ "author_avatar": "https://avatars.githubusercontent.com/u/189194242?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/189194242?v=4",
+ "profile_url": "https://github.com/KrishnaSen01"
+ },
+ "rishivejani15": {
+ "expectedPoints": 7,
+ "currentPoints": 7,
+ "levels": {
+ "level1": 0,
+ "level2": 1,
+ "level3": 0
+ },
+ "prs": [
+ {
+ "url": "https://github.com/itsAnimation/AnimateItNow/pull/428",
+ "title": "added feature: copy-button in templates",
+ "repo": "itsAnimation/AnimateItNow",
+ "level": "level2",
+ "points": 7,
+ "created_at": "2025-07-25T17:37:04Z",
+ "updated_at": "2025-07-25T21:36:46Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-25T21:36:46Z",
+ "author_url": "https://github.com/rishivejani15",
+ "author_avatar": "https://avatars.githubusercontent.com/u/123580547?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/123580547?v=4",
+ "profile_url": "https://github.com/rishivejani15"
+ },
+ "NihanReddy": {
+ "expectedPoints": 7,
+ "currentPoints": 7,
+ "levels": {
+ "level1": 0,
+ "level2": 1,
+ "level3": 0
+ },
+ "prs": [
+ {
+ "url": "https://github.com/itsAnimation/AnimateItNow/pull/425",
+ "title": "Improved Dark Mode",
+ "repo": "itsAnimation/AnimateItNow",
+ "level": "level2",
+ "points": 7,
+ "created_at": "2025-07-25T17:07:19Z",
+ "updated_at": "2025-07-25T18:30:16Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-25T18:30:16Z",
+ "author_url": "https://github.com/NihanReddy",
+ "author_avatar": "https://avatars.githubusercontent.com/u/180682021?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/180682021?v=4",
+ "profile_url": "https://github.com/NihanReddy"
+ },
+ "VarshaPednekar2005": {
+ "expectedPoints": 7,
+ "currentPoints": 7,
+ "levels": {
+ "level1": 0,
+ "level2": 1,
+ "level3": 0
+ },
+ "prs": [
+ {
+ "url": "https://github.com/itsAnimation/AnimateItNow/pull/422",
+ "title": "Add More Templates - contributes to #273",
+ "repo": "itsAnimation/AnimateItNow",
+ "level": "level2",
+ "points": 7,
+ "created_at": "2025-07-25T16:39:43Z",
+ "updated_at": "2025-07-25T17:00:19Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-25T17:00:18Z",
+ "author_url": "https://github.com/VarshaPednekar2005",
+ "author_avatar": "https://avatars.githubusercontent.com/u/179914981?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/179914981?v=4",
+ "profile_url": "https://github.com/VarshaPednekar2005"
+ },
+ "zainebp11": {
+ "expectedPoints": 7,
+ "currentPoints": 7,
+ "levels": {
+ "level1": 0,
+ "level2": 1,
+ "level3": 0
+ },
+ "prs": [
+ {
+ "url": "https://github.com/itsAnimation/AnimateItNow/pull/416",
+ "title": "Added a New Tooltip - #377 ",
+ "repo": "itsAnimation/AnimateItNow",
+ "level": "level2",
+ "points": 7,
+ "created_at": "2025-07-25T15:36:09Z",
+ "updated_at": "2025-07-26T08:16:29Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-26T08:16:29Z",
+ "author_url": "https://github.com/zainebp11",
+ "author_avatar": "https://avatars.githubusercontent.com/u/222084330?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/222084330?v=4",
+ "profile_url": "https://github.com/zainebp11"
+ },
+ "G-Ganesh83": {
+ "expectedPoints": 7,
+ "currentPoints": 7,
+ "levels": {
+ "level1": 0,
+ "level2": 1,
+ "level3": 0
+ },
+ "prs": [
+ {
+ "url": "https://github.com/itsAnimation/AnimateItNow/pull/285",
+ "title": "Updated UI and UX of the navbar",
+ "repo": "itsAnimation/AnimateItNow",
+ "level": "level2",
+ "points": 7,
+ "created_at": "2025-07-24T05:15:41Z",
+ "updated_at": "2025-07-25T13:21:21Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-25T13:12:10Z",
+ "author_url": "https://github.com/G-Ganesh83",
+ "author_avatar": "https://avatars.githubusercontent.com/u/193399457?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/193399457?v=4",
+ "profile_url": "https://github.com/G-Ganesh83"
+ },
+ "diyaakhampaaa": {
+ "expectedPoints": 7,
+ "currentPoints": 7,
+ "levels": {
+ "level1": 0,
+ "level2": 1,
+ "level3": 0
+ },
+ "prs": [
+ {
+ "url": "https://github.com/itsAnimation/AnimateItNow/pull/280",
+ "title": "Added CONTRIBUTING.md with detailed guide",
+ "repo": "itsAnimation/AnimateItNow",
+ "level": "level2",
+ "points": 7,
+ "created_at": "2025-07-24T04:28:08Z",
+ "updated_at": "2025-07-24T19:55:54Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-24T19:55:54Z",
+ "author_url": "https://github.com/diyaakhampaaa",
+ "author_avatar": "https://avatars.githubusercontent.com/u/142804179?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/142804179?v=4",
+ "profile_url": "https://github.com/diyaakhampaaa"
+ },
+ "JHA-geek-AYUSH": {
+ "expectedPoints": 7,
+ "currentPoints": 7,
+ "levels": {
+ "level1": 0,
+ "level2": 1,
+ "level3": 0
+ },
+ "prs": [
+ {
+ "url": "https://github.com/itsAnimation/AnimateItNow/pull/269",
+ "title": "Feature: Added scroll progress indicator bar (Fixes #168)",
+ "repo": "itsAnimation/AnimateItNow",
+ "level": "level2",
+ "points": 7,
+ "created_at": "2025-07-24T02:15:05Z",
+ "updated_at": "2025-07-24T11:52:51Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-24T11:52:50Z",
+ "author_url": "https://github.com/JHA-geek-AYUSH",
+ "author_avatar": "https://avatars.githubusercontent.com/u/91334192?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/91334192?v=4",
+ "profile_url": "https://github.com/JHA-geek-AYUSH"
+ },
+ "anshita647": {
+ "expectedPoints": 7,
+ "currentPoints": 7,
+ "levels": {
+ "level1": 0,
+ "level2": 1,
+ "level3": 0
+ },
+ "prs": [
+ {
+ "url": "https://github.com/itsAnimation/AnimateItNow/pull/256",
+ "title": "fix: Making the heading dynamic",
+ "repo": "itsAnimation/AnimateItNow",
+ "level": "level2",
+ "points": 7,
+ "created_at": "2025-07-23T18:02:36Z",
+ "updated_at": "2025-07-28T19:09:44Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-28T19:09:44Z",
+ "author_url": "https://github.com/anshita647",
+ "author_avatar": "https://avatars.githubusercontent.com/u/181771522?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/181771522?v=4",
+ "profile_url": "https://github.com/anshita647"
+ },
+ "2024yuva": {
+ "expectedPoints": 7,
+ "currentPoints": 7,
+ "levels": {
+ "level1": 0,
+ "level2": 1,
+ "level3": 0
+ },
+ "prs": [
+ {
+ "url": "https://github.com/itsAnimation/AnimateItNow/pull/251",
+ "title": "✨ Added feature: Neuromorphic-button effects",
+ "repo": "itsAnimation/AnimateItNow",
+ "level": "level2",
+ "points": 7,
+ "created_at": "2025-07-23T17:13:48Z",
+ "updated_at": "2025-07-23T17:36:39Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-23T17:36:39Z",
+ "author_url": "https://github.com/2024yuva",
+ "author_avatar": "https://avatars.githubusercontent.com/u/166366627?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/166366627?v=4",
+ "profile_url": "https://github.com/2024yuva"
+ },
+ "sarvan-2187": {
+ "expectedPoints": 7,
+ "currentPoints": 7,
+ "levels": {
+ "level1": 0,
+ "level2": 1,
+ "level3": 0
+ },
+ "prs": [
+ {
+ "url": "https://github.com/itsAnimation/AnimateItNow/pull/245",
+ "title": "Added updated login UI templates with animations",
+ "repo": "itsAnimation/AnimateItNow",
+ "level": "level2",
+ "points": 7,
+ "created_at": "2025-07-23T16:46:00Z",
+ "updated_at": "2025-07-24T01:33:41Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-23T20:42:42Z",
+ "author_url": "https://github.com/sarvan-2187",
+ "author_avatar": "https://avatars.githubusercontent.com/u/193138931?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/193138931?v=4",
+ "profile_url": "https://github.com/sarvan-2187"
+ },
+ "jr-jerry": {
+ "expectedPoints": 7,
+ "currentPoints": 7,
+ "levels": {
+ "level1": 0,
+ "level2": 1,
+ "level3": 0
+ },
+ "prs": [
+ {
+ "url": "https://github.com/itsAnimation/AnimateItNow/pull/228",
+ "title": "Mouse tracker fix",
+ "repo": "itsAnimation/AnimateItNow",
+ "level": "level2",
+ "points": 7,
+ "created_at": "2025-07-23T14:27:54Z",
+ "updated_at": "2025-07-23T20:58:56Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-23T20:58:56Z",
+ "author_url": "https://github.com/jr-jerry",
+ "author_avatar": "https://avatars.githubusercontent.com/u/127011027?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/127011027?v=4",
+ "profile_url": "https://github.com/jr-jerry"
+ },
+ "VaibhaviSuvarna": {
+ "expectedPoints": 7,
+ "currentPoints": 7,
+ "levels": {
+ "level1": 0,
+ "level2": 1,
+ "level3": 0
+ },
+ "prs": [
+ {
+ "url": "https://github.com/itsAnimation/AnimateItNow/pull/220",
+ "title": "Added five more loaders components to the loader.html template",
+ "repo": "itsAnimation/AnimateItNow",
+ "level": "level2",
+ "points": 7,
+ "created_at": "2025-07-23T13:55:35Z",
+ "updated_at": "2025-07-23T21:00:07Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-23T21:00:07Z",
+ "author_url": "https://github.com/VaibhaviSuvarna",
+ "author_avatar": "https://avatars.githubusercontent.com/u/146105525?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/146105525?v=4",
+ "profile_url": "https://github.com/VaibhaviSuvarna"
+ },
+ "CodingMation": {
+ "expectedPoints": 7,
+ "currentPoints": 7,
+ "levels": {
+ "level1": 0,
+ "level2": 1,
+ "level3": 0
+ },
+ "prs": [
+ {
+ "url": "https://github.com/itsAnimation/AnimateItNow/pull/216",
+ "title": "Adding About page",
+ "repo": "itsAnimation/AnimateItNow",
+ "level": "level2",
+ "points": 7,
+ "created_at": "2025-07-23T13:14:27Z",
+ "updated_at": "2025-07-24T20:29:48Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-24T20:29:48Z",
+ "author_url": "https://github.com/CodingMation",
+ "author_avatar": "https://avatars.githubusercontent.com/u/136211484?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/136211484?v=4",
+ "profile_url": "https://github.com/CodingMation"
+ },
+ "sh-ship-it": {
+ "expectedPoints": 7,
+ "currentPoints": 7,
+ "levels": {
+ "level1": 0,
+ "level2": 1,
+ "level3": 0
+ },
+ "prs": [
+ {
+ "url": "https://github.com/itsAnimation/AnimateItNow/pull/196",
+ "title": "fixing the card alignment ",
+ "repo": "itsAnimation/AnimateItNow",
+ "level": "level2",
+ "points": 7,
+ "created_at": "2025-07-23T11:40:46Z",
+ "updated_at": "2025-07-23T12:33:42Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-23T12:33:42Z",
+ "author_url": "https://github.com/sh-ship-it",
+ "author_avatar": "https://avatars.githubusercontent.com/u/173604737?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/173604737?v=4",
+ "profile_url": "https://github.com/sh-ship-it"
+ },
+ "Trisha-Tyagi": {
+ "expectedPoints": 7,
+ "currentPoints": 7,
+ "levels": {
+ "level1": 0,
+ "level2": 1,
+ "level3": 0
+ },
+ "prs": [
+ {
+ "url": "https://github.com/itsAnimation/AnimateItNow/pull/167",
+ "title": "Added Glowing hover button on Hover page",
+ "repo": "itsAnimation/AnimateItNow",
+ "level": "level2",
+ "points": 7,
+ "created_at": "2025-07-23T08:34:56Z",
+ "updated_at": "2025-07-23T09:08:54Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-23T09:08:54Z",
+ "author_url": "https://github.com/Trisha-Tyagi",
+ "author_avatar": "https://avatars.githubusercontent.com/u/178257246?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/178257246?v=4",
+ "profile_url": "https://github.com/Trisha-Tyagi"
+ },
+ "rajgharat07": {
+ "expectedPoints": 7,
+ "currentPoints": 7,
+ "levels": {
+ "level1": 0,
+ "level2": 1,
+ "level3": 0
+ },
+ "prs": [
+ {
+ "url": "https://github.com/itsAnimation/AnimateItNow/pull/158",
+ "title": "enhancement : add copy-to-clipboard button to code snippets",
+ "repo": "itsAnimation/AnimateItNow",
+ "level": "level2",
+ "points": 7,
+ "created_at": "2025-07-23T07:53:25Z",
+ "updated_at": "2025-07-27T09:31:25Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-24T21:13:10Z",
+ "author_url": "https://github.com/rajgharat07",
+ "author_avatar": "https://avatars.githubusercontent.com/u/111341186?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/111341186?v=4",
+ "profile_url": "https://github.com/rajgharat07"
+ },
+ "Sanyaa04": {
+ "expectedPoints": 7,
+ "currentPoints": 7,
+ "levels": {
+ "level1": 0,
+ "level2": 1,
+ "level3": 0
+ },
+ "prs": [
+ {
+ "url": "https://github.com/itsAnimation/AnimateItNow/pull/67",
+ "title": "Added Countdown timer template",
+ "repo": "itsAnimation/AnimateItNow",
+ "level": "level2",
+ "points": 7,
+ "created_at": "2025-07-22T12:21:34Z",
+ "updated_at": "2025-07-22T12:28:03Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-22T12:28:03Z",
+ "author_url": "https://github.com/Sanyaa04",
+ "author_avatar": "https://avatars.githubusercontent.com/u/191314035?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/191314035?v=4",
+ "profile_url": "https://github.com/Sanyaa04"
+ },
+ "shalini-413": {
+ "expectedPoints": 7,
+ "currentPoints": 7,
+ "levels": {
+ "level1": 0,
+ "level2": 1,
+ "level3": 0
+ },
+ "prs": [
+ {
+ "url": "https://github.com/itsAnimation/AnimateItNow/pull/63",
+ "title": "feat: Add 3D Tilt Card and improve templates page",
+ "repo": "itsAnimation/AnimateItNow",
+ "level": "level2",
+ "points": 7,
+ "created_at": "2025-07-22T11:20:59Z",
+ "updated_at": "2025-07-22T18:50:29Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-22T18:47:02Z",
+ "author_url": "https://github.com/shalini-413",
+ "author_avatar": "https://avatars.githubusercontent.com/u/78790459?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/78790459?v=4",
+ "profile_url": "https://github.com/shalini-413"
+ },
+ "Niks-TheCoder": {
+ "expectedPoints": 7,
+ "currentPoints": 7,
+ "levels": {
+ "level1": 0,
+ "level2": 1,
+ "level3": 0
+ },
+ "prs": [
+ {
+ "url": "https://github.com/InnoWebLabs/Vehigo/pull/217",
+ "title": "fix(navbar): resolve collapse issue by updating index.html",
+ "repo": "InnoWebLabs/Vehigo",
+ "level": "level2",
+ "points": 7,
+ "created_at": "2025-08-02T06:33:03Z",
+ "updated_at": "2025-08-02T16:04:22Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-08-02T16:03:59Z",
+ "author_url": "https://github.com/Niks-TheCoder",
+ "author_avatar": "https://avatars.githubusercontent.com/u/159749630?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/159749630?v=4",
+ "profile_url": "https://github.com/Niks-TheCoder"
+ },
+ "shwetap3000": {
+ "expectedPoints": 7,
+ "currentPoints": 7,
+ "levels": {
+ "level1": 0,
+ "level2": 1,
+ "level3": 0
+ },
+ "prs": [
+ {
+ "url": "https://github.com/InnoWebLabs/Vehigo/pull/198",
+ "title": "Add social media links.",
+ "repo": "InnoWebLabs/Vehigo",
+ "level": "level2",
+ "points": 7,
+ "created_at": "2025-07-31T19:46:28Z",
+ "updated_at": "2025-08-01T08:54:32Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-08-01T08:54:32Z",
+ "author_url": "https://github.com/shwetap3000",
+ "author_avatar": "https://avatars.githubusercontent.com/u/210210075?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/210210075?v=4",
+ "profile_url": "https://github.com/shwetap3000"
+ },
+ "Monal-Jain01": {
+ "expectedPoints": 14,
+ "currentPoints": 7,
+ "levels": {
+ "level1": 0,
+ "level2": 2,
+ "level3": 0
+ },
+ "prs": [
+ {
+ "url": "https://github.com/InnoWebLabs/Vehigo/pull/172",
+ "title": "Gssoc/reviews slider",
+ "repo": "InnoWebLabs/Vehigo",
+ "level": "level2",
+ "points": 7,
+ "created_at": "2025-07-29T14:57:35Z",
+ "updated_at": "2025-07-29T17:33:00Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-29T17:33:00Z",
+ "author_url": "https://github.com/Monal-Jain01",
+ "author_avatar": "https://avatars.githubusercontent.com/u/199256332?v=4"
+ },
+ {
+ "url": "https://github.com/Muneerali199/DocMagic/pull/281",
+ "title": "gssoc/added testimonials-slider",
+ "repo": "Muneerali199/DocMagic",
+ "level": "level2",
+ "points": 7,
+ "created_at": "2025-08-01T17:10:30Z",
+ "updated_at": "2025-08-02T12:18:05Z",
+ "state": "open",
+ "merged": false,
+ "merged_at": null,
+ "author_url": "https://github.com/Monal-Jain01",
+ "author_avatar": "https://avatars.githubusercontent.com/u/199256332?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/199256332?v=4",
+ "profile_url": "https://github.com/Monal-Jain01"
+ },
+ "akanksha906": {
+ "expectedPoints": 7,
+ "currentPoints": 7,
+ "levels": {
+ "level1": 0,
+ "level2": 1,
+ "level3": 0
+ },
+ "prs": [
+ {
+ "url": "https://github.com/InnoWebLabs/Vehigo/pull/171",
+ "title": "Added Form Validation Feedback on Homepage Search",
+ "repo": "InnoWebLabs/Vehigo",
+ "level": "level2",
+ "points": 7,
+ "created_at": "2025-07-29T10:22:53Z",
+ "updated_at": "2025-07-29T11:14:32Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-29T11:14:32Z",
+ "author_url": "https://github.com/akanksha906",
+ "author_avatar": "https://avatars.githubusercontent.com/u/181811201?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/181811201?v=4",
+ "profile_url": "https://github.com/akanksha906"
+ },
+ "Raaaghavagrawal": {
+ "expectedPoints": 7,
+ "currentPoints": 7,
+ "levels": {
+ "level1": 0,
+ "level2": 1,
+ "level3": 0
+ },
+ "prs": [
+ {
+ "url": "https://github.com/InnoWebLabs/Vehigo/pull/154",
+ "title": "Fixed signup/login page issue",
+ "repo": "InnoWebLabs/Vehigo",
+ "level": "level2",
+ "points": 7,
+ "created_at": "2025-07-27T18:58:59Z",
+ "updated_at": "2025-07-28T04:28:25Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-28T04:28:24Z",
+ "author_url": "https://github.com/Raaaghavagrawal",
+ "author_avatar": "https://avatars.githubusercontent.com/u/174109114?v=4"
+ },
+ {
+ "url": "https://github.com/ProTecGames/Karbon/pull/62",
+ "title": "Fixed live-preview",
+ "repo": "ProTecGames/Karbon",
+ "level": null,
+ "points": 0,
+ "created_at": "2025-07-27T20:27:05Z",
+ "updated_at": "2025-07-31T04:25:39Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-28T03:51:37Z",
+ "author_url": "https://github.com/Raaaghavagrawal",
+ "author_avatar": "https://avatars.githubusercontent.com/u/174109114?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/174109114?v=4",
+ "profile_url": "https://github.com/Raaaghavagrawal"
+ },
+ "ranirkini2004": {
+ "expectedPoints": 7,
+ "currentPoints": 7,
+ "levels": {
+ "level1": 0,
+ "level2": 1,
+ "level3": 0
+ },
+ "prs": [
+ {
+ "url": "https://github.com/InnoWebLabs/Vehigo/pull/153",
+ "title": "feat: Enhance UI, Image Stability, & Basic SEO/Accessibility",
+ "repo": "InnoWebLabs/Vehigo",
+ "level": "level2",
+ "points": 7,
+ "created_at": "2025-07-27T16:01:56Z",
+ "updated_at": "2025-07-28T03:36:41Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-27T16:50:33Z",
+ "author_url": "https://github.com/ranirkini2004",
+ "author_avatar": "https://avatars.githubusercontent.com/u/158798016?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/158798016?v=4",
+ "profile_url": "https://github.com/ranirkini2004"
+ },
+ "ThakurAbhay9457": {
+ "expectedPoints": 7,
+ "currentPoints": 7,
+ "levels": {
+ "level1": 0,
+ "level2": 1,
+ "level3": 0
+ },
+ "prs": [
+ {
+ "url": "https://github.com/InnoWebLabs/Vehigo/pull/140",
+ "title": "Fixed and created a newer version of dark mode",
+ "repo": "InnoWebLabs/Vehigo",
+ "level": "level2",
+ "points": 7,
+ "created_at": "2025-07-27T13:20:00Z",
+ "updated_at": "2025-07-27T13:22:18Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-27T13:22:18Z",
+ "author_url": "https://github.com/ThakurAbhay9457",
+ "author_avatar": "https://avatars.githubusercontent.com/u/143515821?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/143515821?v=4",
+ "profile_url": "https://github.com/ThakurAbhay9457"
+ },
+ "VisibleNasir": {
+ "expectedPoints": 7,
+ "currentPoints": 7,
+ "levels": {
+ "level1": 0,
+ "level2": 1,
+ "level3": 0
+ },
+ "prs": [
+ {
+ "url": "https://github.com/InnoWebLabs/Vehigo/pull/49",
+ "title": "Add About Us page and corresponding styles",
+ "repo": "InnoWebLabs/Vehigo",
+ "level": "level2",
+ "points": 7,
+ "created_at": "2025-07-24T14:32:05Z",
+ "updated_at": "2025-07-25T20:24:22Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-24T14:33:03Z",
+ "author_url": "https://github.com/VisibleNasir",
+ "author_avatar": "https://avatars.githubusercontent.com/u/109416738?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/109416738?v=4",
+ "profile_url": "https://github.com/VisibleNasir"
+ },
+ "abhishek07ma": {
+ "expectedPoints": 7,
+ "currentPoints": 7,
+ "levels": {
+ "level1": 0,
+ "level2": 1,
+ "level3": 0
+ },
+ "prs": [
+ {
+ "url": "https://github.com/InnoWebLabs/Vehigo/pull/45",
+ "title": "Added back to top button ",
+ "repo": "InnoWebLabs/Vehigo",
+ "level": "level2",
+ "points": 7,
+ "created_at": "2025-07-24T09:58:27Z",
+ "updated_at": "2025-07-25T20:22:15Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-24T10:40:17Z",
+ "author_url": "https://github.com/abhishek07ma",
+ "author_avatar": "https://avatars.githubusercontent.com/u/156845010?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/156845010?v=4",
+ "profile_url": "https://github.com/abhishek07ma"
+ },
+ "Tanishq-789": {
+ "expectedPoints": 7,
+ "currentPoints": 7,
+ "levels": {
+ "level1": 0,
+ "level2": 1,
+ "level3": 0
+ },
+ "prs": [
+ {
+ "url": "https://github.com/MAVERICK-VF142/Drx.MediMate/pull/79",
+ "title": "🔁 Added caching for drug info using TTLCache to reduce Gemini API calls",
+ "repo": "MAVERICK-VF142/Drx.MediMate",
+ "level": "level2",
+ "points": 7,
+ "created_at": "2025-07-25T14:51:04Z",
+ "updated_at": "2025-07-25T15:13:20Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-25T15:13:20Z",
+ "author_url": "https://github.com/Tanishq-789",
+ "author_avatar": "https://avatars.githubusercontent.com/u/132535296?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/132535296?v=4",
+ "profile_url": "https://github.com/Tanishq-789"
+ },
+ "Sendi0011": {
+ "expectedPoints": 7,
+ "currentPoints": 7,
+ "levels": {
+ "level1": 0,
+ "level2": 1,
+ "level3": 0
+ },
+ "prs": [
+ {
+ "url": "https://github.com/Code-A2Z/code-a2z/pull/1162",
+ "title": "feat: implement product landing page with modern components",
+ "repo": "Code-A2Z/code-a2z",
+ "level": "level2",
+ "points": 7,
+ "created_at": "2025-07-26T12:34:34Z",
+ "updated_at": "2025-08-01T05:35:12Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-08-01T05:34:46Z",
+ "author_url": "https://github.com/Sendi0011",
+ "author_avatar": "https://avatars.githubusercontent.com/u/175633768?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/175633768?v=4",
+ "profile_url": "https://github.com/Sendi0011"
+ },
+ "Ajibose": {
+ "expectedPoints": 7,
+ "currentPoints": 7,
+ "levels": {
+ "level1": 0,
+ "level2": 1,
+ "level3": 0
+ },
+ "prs": [
+ {
+ "url": "https://github.com/Code-A2Z/code-a2z/pull/1161",
+ "title": "Add film-sentiment-analyzer-nltk as a submodule under nlp",
+ "repo": "Code-A2Z/code-a2z",
+ "level": "level2",
+ "points": 7,
+ "created_at": "2025-07-26T10:57:58Z",
+ "updated_at": "2025-07-30T05:48:41Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-30T05:48:18Z",
+ "author_url": "https://github.com/Ajibose",
+ "author_avatar": "https://avatars.githubusercontent.com/u/99620327?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/99620327?v=4",
+ "profile_url": "https://github.com/Ajibose"
+ },
+ "souviksenapati": {
+ "expectedPoints": 7,
+ "currentPoints": 7,
+ "levels": {
+ "level1": 0,
+ "level2": 1,
+ "level3": 0
+ },
+ "prs": [
+ {
+ "url": "https://github.com/Ayushjhawar8/Flavor-ai/pull/122",
+ "title": "Add automatic contributors section to README",
+ "repo": "Ayushjhawar8/Flavor-ai",
+ "level": "level2",
+ "points": 7,
+ "created_at": "2025-07-31T19:14:38Z",
+ "updated_at": "2025-08-01T14:47:36Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-08-01T13:40:26Z",
+ "author_url": "https://github.com/souviksenapati",
+ "author_avatar": "https://avatars.githubusercontent.com/u/47359760?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/47359760?v=4",
+ "profile_url": "https://github.com/souviksenapati"
+ },
+ "TusharCEDS": {
+ "expectedPoints": 7,
+ "currentPoints": 7,
+ "levels": {
+ "level1": 0,
+ "level2": 1,
+ "level3": 0
+ },
+ "prs": [
+ {
+ "url": "https://github.com/Ayushjhawar8/Flavor-ai/pull/116",
+ "title": "Feat: Enhance UI with Improved Hover Effects and Button Styles",
+ "repo": "Ayushjhawar8/Flavor-ai",
+ "level": "level2",
+ "points": 7,
+ "created_at": "2025-07-29T19:25:18Z",
+ "updated_at": "2025-08-01T15:26:38Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-08-01T14:41:05Z",
+ "author_url": "https://github.com/TusharCEDS",
+ "author_avatar": "https://avatars.githubusercontent.com/u/149393881?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/149393881?v=4",
+ "profile_url": "https://github.com/TusharCEDS"
+ },
+ "ayanfarooque": {
+ "expectedPoints": 7,
+ "currentPoints": 7,
+ "levels": {
+ "level1": 0,
+ "level2": 1,
+ "level3": 0
+ },
+ "prs": [
+ {
+ "url": "https://github.com/Ayushjhawar8/Flavor-ai/pull/79",
+ "title": "promt refined",
+ "repo": "Ayushjhawar8/Flavor-ai",
+ "level": "level2",
+ "points": 7,
+ "created_at": "2025-07-26T19:21:56Z",
+ "updated_at": "2025-07-27T09:42:34Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-27T09:42:34Z",
+ "author_url": "https://github.com/ayanfarooque",
+ "author_avatar": "https://avatars.githubusercontent.com/u/165833401?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/165833401?v=4",
+ "profile_url": "https://github.com/ayanfarooque"
+ },
+ "MatheusFC2": {
+ "expectedPoints": 7,
+ "currentPoints": 7,
+ "levels": {
+ "level1": 0,
+ "level2": 1,
+ "level3": 0
+ },
+ "prs": [
+ {
+ "url": "https://github.com/Ayushjhawar8/Flavor-ai/pull/78",
+ "title": "[FEAT]: add issue tempaltes, bug, chore, documentation, feat and question",
+ "repo": "Ayushjhawar8/Flavor-ai",
+ "level": "level2",
+ "points": 7,
+ "created_at": "2025-07-26T18:41:14Z",
+ "updated_at": "2025-07-27T10:07:42Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-27T09:23:39Z",
+ "author_url": "https://github.com/MatheusFC2",
+ "author_avatar": "https://avatars.githubusercontent.com/u/69259671?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/69259671?v=4",
+ "profile_url": "https://github.com/MatheusFC2"
+ },
+ "sidhuk-ai": {
+ "expectedPoints": 7,
+ "currentPoints": 7,
+ "levels": {
+ "level1": 0,
+ "level2": 1,
+ "level3": 0
+ },
+ "prs": [
+ {
+ "url": "https://github.com/Ayushjhawar8/Flavor-ai/pull/17",
+ "title": "feat: Added daisy ui skeletons for category page",
+ "repo": "Ayushjhawar8/Flavor-ai",
+ "level": "level2",
+ "points": 7,
+ "created_at": "2025-07-23T05:46:28Z",
+ "updated_at": "2025-07-23T09:06:47Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-23T09:06:47Z",
+ "author_url": "https://github.com/sidhuk-ai",
+ "author_avatar": "https://avatars.githubusercontent.com/u/77151100?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/77151100?v=4",
+ "profile_url": "https://github.com/sidhuk-ai"
+ },
+ "Vishal-RAJ-DEV": {
+ "expectedPoints": 7,
+ "currentPoints": 7,
+ "levels": {
+ "level1": 0,
+ "level2": 1,
+ "level3": 0
+ },
+ "prs": [
+ {
+ "url": "https://github.com/BhaktiMore18/Pouranik/pull/98",
+ "title": "UI Bugs & Enhancements",
+ "repo": "BhaktiMore18/Pouranik",
+ "level": "level2",
+ "points": 7,
+ "created_at": "2025-07-28T17:51:32Z",
+ "updated_at": "2025-08-01T08:56:40Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-29T04:13:41Z",
+ "author_url": "https://github.com/Vishal-RAJ-DEV",
+ "author_avatar": "https://avatars.githubusercontent.com/u/195567681?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/195567681?v=4",
+ "profile_url": "https://github.com/Vishal-RAJ-DEV"
+ },
+ "vrajpatelll": {
+ "expectedPoints": 7,
+ "currentPoints": 7,
+ "levels": {
+ "level1": 0,
+ "level2": 1,
+ "level3": 0
+ },
+ "prs": [
+ {
+ "url": "https://github.com/Devasy23/splitwiser/pull/89",
+ "title": "Bug Fix: Inconsistent Field Naming - avatar vs imageUrl",
+ "repo": "Devasy23/splitwiser",
+ "level": "level2",
+ "points": 7,
+ "created_at": "2025-07-28T19:07:00Z",
+ "updated_at": "2025-07-29T16:00:02Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-29T16:00:02Z",
+ "author_url": "https://github.com/vrajpatelll",
+ "author_avatar": "https://avatars.githubusercontent.com/u/80984629?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/80984629?v=4",
+ "profile_url": "https://github.com/vrajpatelll"
+ },
+ "hackbuddy1": {
+ "expectedPoints": 7,
+ "currentPoints": 7,
+ "levels": {
+ "level1": 0,
+ "level2": 1,
+ "level3": 0
+ },
+ "prs": [
+ {
+ "url": "https://github.com/Devasy23/splitwiser/pull/78",
+ "title": "docs: Add setup guide for UI and authenticated endpoints",
+ "repo": "Devasy23/splitwiser",
+ "level": "level2",
+ "points": 7,
+ "created_at": "2025-07-26T05:58:43Z",
+ "updated_at": "2025-07-28T18:23:50Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-28T18:23:50Z",
+ "author_url": "https://github.com/hackbuddy1",
+ "author_avatar": "https://avatars.githubusercontent.com/u/143817471?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/143817471?v=4",
+ "profile_url": "https://github.com/hackbuddy1"
+ },
+ "Aryant-Tripathi": {
+ "expectedPoints": 7,
+ "currentPoints": 7,
+ "levels": {
+ "level1": 0,
+ "level2": 1,
+ "level3": 0
+ },
+ "prs": [
+ {
+ "url": "https://github.com/Devasy23/splitwiser/pull/72",
+ "title": "tech-debt/pydantic-model-config",
+ "repo": "Devasy23/splitwiser",
+ "level": "level2",
+ "points": 7,
+ "created_at": "2025-07-25T11:41:39Z",
+ "updated_at": "2025-07-26T09:40:47Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-26T09:40:21Z",
+ "author_url": "https://github.com/Aryant-Tripathi",
+ "author_avatar": "https://avatars.githubusercontent.com/u/60316716?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/60316716?v=4",
+ "profile_url": "https://github.com/Aryant-Tripathi"
+ },
+ "Surjith-shetty": {
+ "expectedPoints": 7,
+ "currentPoints": 7,
+ "levels": {
+ "level1": 0,
+ "level2": 1,
+ "level3": 0
+ },
+ "prs": [
+ {
+ "url": "https://github.com/Dhruvi-tech/firebase-chat-app/pull/12",
+ "title": "Added auto-scroll to Chat component",
+ "repo": "Dhruvi-tech/firebase-chat-app",
+ "level": "level2",
+ "points": 7,
+ "created_at": "2025-07-23T16:49:11Z",
+ "updated_at": "2025-07-30T04:33:19Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-23T16:52:57Z",
+ "author_url": "https://github.com/Surjith-shetty",
+ "author_avatar": "https://avatars.githubusercontent.com/u/197767709?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/197767709?v=4",
+ "profile_url": "https://github.com/Surjith-shetty"
+ },
+ "sthuthii": {
+ "expectedPoints": 7,
+ "currentPoints": 7,
+ "levels": {
+ "level1": 0,
+ "level2": 1,
+ "level3": 0
+ },
+ "prs": [
+ {
+ "url": "https://github.com/Dipanita45/HEALCONNECT/pull/35",
+ "title": "About page.",
+ "repo": "Dipanita45/HEALCONNECT",
+ "level": "level2",
+ "points": 7,
+ "created_at": "2025-07-26T11:51:46Z",
+ "updated_at": "2025-07-26T12:47:10Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-26T12:46:56Z",
+ "author_url": "https://github.com/sthuthii",
+ "author_avatar": "https://avatars.githubusercontent.com/u/160524612?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/160524612?v=4",
+ "profile_url": "https://github.com/sthuthii"
+ },
+ "Shereen-Faruqi": {
+ "expectedPoints": 7,
+ "currentPoints": 7,
+ "levels": {
+ "level1": 0,
+ "level2": 1,
+ "level3": 0
+ },
+ "prs": [
+ {
+ "url": "https://github.com/efshaperveen/MindJournal/pull/69",
+ "title": "[PULL REQUEST] - Font Styling and Consistency Fix (ISSUE #50)",
+ "repo": "efshaperveen/MindJournal",
+ "level": "level2",
+ "points": 7,
+ "created_at": "2025-07-30T02:52:23Z",
+ "updated_at": "2025-07-30T10:11:42Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-30T05:19:54Z",
+ "author_url": "https://github.com/Shereen-Faruqi",
+ "author_avatar": "https://avatars.githubusercontent.com/u/169589314?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/169589314?v=4",
+ "profile_url": "https://github.com/Shereen-Faruqi"
+ },
+ "sbirmecha99": {
+ "expectedPoints": 7,
+ "currentPoints": 7,
+ "levels": {
+ "level1": 0,
+ "level2": 1,
+ "level3": 0
+ },
+ "prs": [
+ {
+ "url": "https://github.com/efshaperveen/MindJournal/pull/31",
+ "title": "Added forgot password feature",
+ "repo": "efshaperveen/MindJournal",
+ "level": "level2",
+ "points": 7,
+ "created_at": "2025-07-24T15:25:55Z",
+ "updated_at": "2025-07-24T18:09:20Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-24T18:09:15Z",
+ "author_url": "https://github.com/sbirmecha99",
+ "author_avatar": "https://avatars.githubusercontent.com/u/191832233?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/191832233?v=4",
+ "profile_url": "https://github.com/sbirmecha99"
+ },
+ "sreejitadass": {
+ "expectedPoints": 7,
+ "currentPoints": 7,
+ "levels": {
+ "level1": 0,
+ "level2": 1,
+ "level3": 0
+ },
+ "prs": [
+ {
+ "url": "https://github.com/efshaperveen/MindJournal/pull/18",
+ "title": "[FEATURE] : Add Affirmations Navbar",
+ "repo": "efshaperveen/MindJournal",
+ "level": "level2",
+ "points": 7,
+ "created_at": "2025-07-23T10:50:15Z",
+ "updated_at": "2025-07-23T17:11:35Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-23T17:07:49Z",
+ "author_url": "https://github.com/sreejitadass",
+ "author_avatar": "https://avatars.githubusercontent.com/u/129216675?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/129216675?v=4",
+ "profile_url": "https://github.com/sreejitadass"
+ },
+ "Raghavendransahana": {
+ "expectedPoints": 7,
+ "currentPoints": 7,
+ "levels": {
+ "level1": 0,
+ "level2": 1,
+ "level3": 0
+ },
+ "prs": [
+ {
+ "url": "https://github.com/efshaperveen/MindJournal/pull/15",
+ "title": "Add quote loader splash to layouts and style ",
+ "repo": "efshaperveen/MindJournal",
+ "level": "level2",
+ "points": 7,
+ "created_at": "2025-07-23T08:53:45Z",
+ "updated_at": "2025-07-23T18:27:14Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-23T18:11:40Z",
+ "author_url": "https://github.com/Raghavendransahana",
+ "author_avatar": "https://avatars.githubusercontent.com/u/139641194?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/139641194?v=4",
+ "profile_url": "https://github.com/Raghavendransahana"
+ },
+ "HappySaxena": {
+ "expectedPoints": 7,
+ "currentPoints": 7,
+ "levels": {
+ "level1": 0,
+ "level2": 1,
+ "level3": 0
+ },
+ "prs": [
+ {
+ "url": "https://github.com/Gagandeep-2003/driver-drowsiness-detection-system/pull/46",
+ "title": "fixing issues in face-try.py file",
+ "repo": "Gagandeep-2003/driver-drowsiness-detection-system",
+ "level": "level2",
+ "points": 7,
+ "created_at": "2025-07-28T07:36:35Z",
+ "updated_at": "2025-07-29T06:55:54Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-29T06:55:54Z",
+ "author_url": "https://github.com/HappySaxena",
+ "author_avatar": "https://avatars.githubusercontent.com/u/185846599?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/185846599?v=4",
+ "profile_url": "https://github.com/HappySaxena"
+ },
+ "Saikat-Bera04": {
+ "expectedPoints": 7,
+ "currentPoints": 7,
+ "levels": {
+ "level1": 0,
+ "level2": 1,
+ "level3": 0
+ },
+ "prs": [
+ {
+ "url": "https://github.com/GauravKarakoti/Weather-API/pull/228",
+ "title": "Name and background #224",
+ "repo": "GauravKarakoti/Weather-API",
+ "level": "level2",
+ "points": 7,
+ "created_at": "2025-07-30T17:20:22Z",
+ "updated_at": "2025-08-01T10:32:01Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-08-01T08:15:25Z",
+ "author_url": "https://github.com/Saikat-Bera04",
+ "author_avatar": "https://avatars.githubusercontent.com/u/188469156?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/188469156?v=4",
+ "profile_url": "https://github.com/Saikat-Bera04"
+ },
+ "GITHaRsH53": {
+ "expectedPoints": 7,
+ "currentPoints": 7,
+ "levels": {
+ "level1": 0,
+ "level2": 1,
+ "level3": 0
+ },
+ "prs": [
+ {
+ "url": "https://github.com/Khushi-Nigam/jobportal/pull/92",
+ "title": "BUG FIX - Make Login Button Functional #76",
+ "repo": "Khushi-Nigam/jobportal",
+ "level": "level2",
+ "points": 7,
+ "created_at": "2025-08-01T10:26:01Z",
+ "updated_at": "2025-08-01T13:14:10Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-08-01T13:14:10Z",
+ "author_url": "https://github.com/GITHaRsH53",
+ "author_avatar": "https://avatars.githubusercontent.com/u/110527186?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/110527186?v=4",
+ "profile_url": "https://github.com/GITHaRsH53"
+ },
+ "ROCKCRAZE01": {
+ "expectedPoints": 7,
+ "currentPoints": 7,
+ "levels": {
+ "level1": 0,
+ "level2": 1,
+ "level3": 0
+ },
+ "prs": [
+ {
+ "url": "https://github.com/Khushi-Nigam/jobportal/pull/91",
+ "title": "Made changes and fixed some UI bugs in issue #81",
+ "repo": "Khushi-Nigam/jobportal",
+ "level": "level2",
+ "points": 7,
+ "created_at": "2025-08-01T08:02:21Z",
+ "updated_at": "2025-08-01T08:24:03Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-08-01T08:24:03Z",
+ "author_url": "https://github.com/ROCKCRAZE01",
+ "author_avatar": "https://avatars.githubusercontent.com/u/118057473?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/118057473?v=4",
+ "profile_url": "https://github.com/ROCKCRAZE01"
+ },
+ "TanishaKesarkar": {
+ "expectedPoints": 7,
+ "currentPoints": 7,
+ "levels": {
+ "level1": 0,
+ "level2": 1,
+ "level3": 0
+ },
+ "prs": [
+ {
+ "url": "https://github.com/Khushi-Nigam/jobportal/pull/79",
+ "title": "Fix: Navbar register button, role dropdown logic, registration flow enhancements with modal and redirect",
+ "repo": "Khushi-Nigam/jobportal",
+ "level": "level2",
+ "points": 7,
+ "created_at": "2025-07-28T11:34:53Z",
+ "updated_at": "2025-07-28T14:27:44Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-28T14:27:44Z",
+ "author_url": "https://github.com/TanishaKesarkar",
+ "author_avatar": "https://avatars.githubusercontent.com/u/111411613?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/111411613?v=4",
+ "profile_url": "https://github.com/TanishaKesarkar"
+ },
+ "Sunidhi4": {
+ "expectedPoints": 7,
+ "currentPoints": 7,
+ "levels": {
+ "level1": 0,
+ "level2": 1,
+ "level3": 0
+ },
+ "prs": [
+ {
+ "url": "https://github.com/Khushi-Nigam/jobportal/pull/46",
+ "title": "Fix: Make Navbar Responsive and Resolve Spacing Issues ",
+ "repo": "Khushi-Nigam/jobportal",
+ "level": "level2",
+ "points": 7,
+ "created_at": "2025-07-25T06:26:09Z",
+ "updated_at": "2025-07-25T06:50:39Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-25T06:50:38Z",
+ "author_url": "https://github.com/Sunidhi4",
+ "author_avatar": "https://avatars.githubusercontent.com/u/201130414?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/201130414?v=4",
+ "profile_url": "https://github.com/Sunidhi4"
+ },
+ "vidhathribj": {
+ "expectedPoints": 7,
+ "currentPoints": 7,
+ "levels": {
+ "level1": 0,
+ "level2": 1,
+ "level3": 0
+ },
+ "prs": [
+ {
+ "url": "https://github.com/Kritika75/TheCawnporeMag.github.io/pull/375",
+ "title": "Added Back Button",
+ "repo": "Kritika75/TheCawnporeMag.github.io",
+ "level": "level2",
+ "points": 7,
+ "created_at": "2025-08-02T12:23:08Z",
+ "updated_at": "2025-08-03T03:32:02Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-08-03T03:32:02Z",
+ "author_url": "https://github.com/vidhathribj",
+ "author_avatar": "https://avatars.githubusercontent.com/u/161947895?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/161947895?v=4",
+ "profile_url": "https://github.com/vidhathribj"
+ },
+ "srishtikapoor22": {
+ "expectedPoints": 7,
+ "currentPoints": 7,
+ "levels": {
+ "level1": 0,
+ "level2": 1,
+ "level3": 0
+ },
+ "prs": [
+ {
+ "url": "https://github.com/Kritika75/TheCawnporeMag.github.io/pull/346",
+ "title": "UI enhancement",
+ "repo": "Kritika75/TheCawnporeMag.github.io",
+ "level": "level2",
+ "points": 7,
+ "created_at": "2025-08-01T11:48:58Z",
+ "updated_at": "2025-08-02T07:17:30Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-08-02T07:17:30Z",
+ "author_url": "https://github.com/srishtikapoor22",
+ "author_avatar": "https://avatars.githubusercontent.com/u/182247360?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/182247360?v=4",
+ "profile_url": "https://github.com/srishtikapoor22"
+ },
+ "Lakshmihollat": {
+ "expectedPoints": 7,
+ "currentPoints": 7,
+ "levels": {
+ "level1": 0,
+ "level2": 1,
+ "level3": 0
+ },
+ "prs": [
+ {
+ "url": "https://github.com/Kritika75/TheCawnporeMag.github.io/pull/162",
+ "title": "Add dark/light mode toggle and consistent navbar styles",
+ "repo": "Kritika75/TheCawnporeMag.github.io",
+ "level": "level2",
+ "points": 7,
+ "created_at": "2025-07-26T14:21:33Z",
+ "updated_at": "2025-07-30T13:29:08Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-30T04:11:06Z",
+ "author_url": "https://github.com/Lakshmihollat",
+ "author_avatar": "https://avatars.githubusercontent.com/u/148447524?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/148447524?v=4",
+ "profile_url": "https://github.com/Lakshmihollat"
+ },
+ "manognya-kundarapu": {
+ "expectedPoints": 7,
+ "currentPoints": 7,
+ "levels": {
+ "level1": 0,
+ "level2": 1,
+ "level3": 0
+ },
+ "prs": [
+ {
+ "url": "https://github.com/Kritika75/TheCawnporeMag.github.io/pull/61",
+ "title": "Added the FAQ Section",
+ "repo": "Kritika75/TheCawnporeMag.github.io",
+ "level": "level2",
+ "points": 7,
+ "created_at": "2025-07-23T11:41:09Z",
+ "updated_at": "2025-07-24T03:16:18Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-24T03:16:18Z",
+ "author_url": "https://github.com/manognya-kundarapu",
+ "author_avatar": "https://avatars.githubusercontent.com/u/177197285?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/177197285?v=4",
+ "profile_url": "https://github.com/manognya-kundarapu"
+ },
+ "Vartekalohiya13": {
+ "expectedPoints": 7,
+ "currentPoints": 7,
+ "levels": {
+ "level1": 0,
+ "level2": 1,
+ "level3": 0
+ },
+ "prs": [
+ {
+ "url": "https://github.com/mpawank/Rohit-Youtube-Advocate-AiBot/pull/14",
+ "title": "Fix: Landing page layout ",
+ "repo": "mpawank/Rohit-Youtube-Advocate-AiBot",
+ "level": "level2",
+ "points": 7,
+ "created_at": "2025-07-27T19:39:48Z",
+ "updated_at": "2025-07-28T11:33:06Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-28T11:33:06Z",
+ "author_url": "https://github.com/Vartekalohiya13",
+ "author_avatar": "https://avatars.githubusercontent.com/u/181620609?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/181620609?v=4",
+ "profile_url": "https://github.com/Vartekalohiya13"
+ },
+ "gargivermaa": {
+ "expectedPoints": 7,
+ "currentPoints": 7,
+ "levels": {
+ "level1": 0,
+ "level2": 1,
+ "level3": 0
+ },
+ "prs": [
+ {
+ "url": "https://github.com/GitMetricsLab/github_tracker/pull/163",
+ "title": "Enhance PR section with type badges, state, merged status, and merged…",
+ "repo": "mehul-m-prajapati/github_tracker",
+ "level": "level2",
+ "points": 7,
+ "created_at": "2025-07-31T15:28:18Z",
+ "updated_at": "2025-08-01T05:55:20Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-08-01T05:55:10Z",
+ "author_url": "https://github.com/gargivermaa",
+ "author_avatar": "https://avatars.githubusercontent.com/u/151640661?v=4"
+ },
+ {
+ "url": "https://github.com/GitMetricsLab/github_tracker/pull/162",
+ "title": "Enhance PR section with type badges, state, merged status, and merged…",
+ "repo": "mehul-m-prajapati/github_tracker",
+ "level": null,
+ "points": 0,
+ "created_at": "2025-07-31T14:52:34Z",
+ "updated_at": "2025-07-31T15:02:41Z",
+ "state": "closed",
+ "merged": false,
+ "merged_at": null,
+ "author_url": "https://github.com/gargivermaa",
+ "author_avatar": "https://avatars.githubusercontent.com/u/151640661?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/151640661?v=4",
+ "profile_url": "https://github.com/gargivermaa"
+ },
+ "mehul-m-prajapati": {
+ "expectedPoints": 7,
+ "currentPoints": 7,
+ "levels": {
+ "level1": 0,
+ "level2": 1,
+ "level3": 0
+ },
+ "prs": [
+ {
+ "url": "https://github.com/GitMetricsLab/github_tracker/pull/133",
+ "title": "added theme switch",
+ "repo": "mehul-m-prajapati/github_tracker",
+ "level": "level2",
+ "points": 7,
+ "created_at": "2025-07-27T11:37:43Z",
+ "updated_at": "2025-07-27T11:55:42Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-27T11:55:41Z",
+ "author_url": "https://github.com/mehul-m-prajapati",
+ "author_avatar": "https://avatars.githubusercontent.com/u/7879392?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/7879392?v=4",
+ "profile_url": "https://github.com/mehul-m-prajapati"
+ },
+ "Sravanthi359": {
+ "expectedPoints": 11,
+ "currentPoints": 7,
+ "levels": {
+ "level1": 1,
+ "level2": 1,
+ "level3": 0
+ },
+ "prs": [
+ {
+ "url": "https://github.com/MonishRaman/Placify-Smarter_Placements-Sharper_Talent/pull/20",
+ "title": "Added dynamic ResultsPage using interviewId",
+ "repo": "MonishRaman/Placify-Smarter-Placements.-Sharper-Talent.-",
+ "level": "level2",
+ "points": 7,
+ "created_at": "2025-07-22T16:52:56Z",
+ "updated_at": "2025-07-23T01:56:05Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-23T01:19:34Z",
+ "author_url": "https://github.com/Sravanthi359",
+ "author_avatar": "https://avatars.githubusercontent.com/u/165262387?v=4"
+ },
+ {
+ "url": "https://github.com/pavitraag/Project-Vault/pull/185",
+ "title": " [UX] Add contact form toast message after submission",
+ "repo": "pavitraag/Project-Vault",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-29T15:15:53Z",
+ "updated_at": "2025-07-29T19:06:11Z",
+ "state": "open",
+ "merged": false,
+ "merged_at": null,
+ "author_url": "https://github.com/Sravanthi359",
+ "author_avatar": "https://avatars.githubusercontent.com/u/165262387?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/165262387?v=4",
+ "profile_url": "https://github.com/Sravanthi359"
+ },
+ "Dharmi-dev": {
+ "expectedPoints": 7,
+ "currentPoints": 7,
+ "levels": {
+ "level1": 0,
+ "level2": 1,
+ "level3": 0
+ },
+ "prs": [
+ {
+ "url": "https://github.com/Muneerali199/DocMagic/pull/279",
+ "title": "Enhanced the features section at home page and made it engaging",
+ "repo": "Muneerali199/DocMagic",
+ "level": "level2",
+ "points": 7,
+ "created_at": "2025-08-01T12:57:11Z",
+ "updated_at": "2025-08-02T09:27:54Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-08-02T09:27:54Z",
+ "author_url": "https://github.com/Dharmi-dev",
+ "author_avatar": "https://avatars.githubusercontent.com/u/148576891?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/148576891?v=4",
+ "profile_url": "https://github.com/Dharmi-dev"
+ },
+ "harikareddy312": {
+ "expectedPoints": 7,
+ "currentPoints": 7,
+ "levels": {
+ "level1": 0,
+ "level2": 1,
+ "level3": 0
+ },
+ "prs": [
+ {
+ "url": "https://github.com/Naveenkumar30838/Housify/pull/5",
+ "title": "Bug:updated the drop-down",
+ "repo": "Naveenkumar30838/Housify",
+ "level": null,
+ "points": 0,
+ "created_at": "2025-07-27T13:02:35Z",
+ "updated_at": "2025-07-28T02:52:54Z",
+ "state": "closed",
+ "merged": false,
+ "merged_at": null,
+ "author_url": "https://github.com/harikareddy312",
+ "author_avatar": "https://avatars.githubusercontent.com/u/179936431?v=4"
+ },
+ {
+ "url": "https://github.com/VAIBHAVBABELE/vaibhavbabele.github.io/pull/109",
+ "title": "Upd footer",
+ "repo": "VAIBHAVBABELE/vaibhavbabele.github.io",
+ "level": "level2",
+ "points": 7,
+ "created_at": "2025-07-26T04:11:38Z",
+ "updated_at": "2025-07-26T07:50:53Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-26T07:31:10Z",
+ "author_url": "https://github.com/harikareddy312",
+ "author_avatar": "https://avatars.githubusercontent.com/u/179936431?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/179936431?v=4",
+ "profile_url": "https://github.com/harikareddy312"
+ },
+ "Nikhil-coder390": {
+ "expectedPoints": 7,
+ "currentPoints": 7,
+ "levels": {
+ "level1": 0,
+ "level2": 1,
+ "level3": 0
+ },
+ "prs": [
+ {
+ "url": "https://github.com/NishantRana07/HrRoadways/pull/434",
+ "title": "Background color of About page is changed. Now it matches the overall…",
+ "repo": "NishantRana07/HrRoadways",
+ "level": "level2",
+ "points": 7,
+ "created_at": "2025-07-29T19:06:53Z",
+ "updated_at": "2025-07-31T13:04:05Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-31T13:04:05Z",
+ "author_url": "https://github.com/Nikhil-coder390",
+ "author_avatar": "https://avatars.githubusercontent.com/u/117470300?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/117470300?v=4",
+ "profile_url": "https://github.com/Nikhil-coder390"
+ },
+ "IshikaS2006": {
+ "expectedPoints": 7,
+ "currentPoints": 7,
+ "levels": {
+ "level1": 0,
+ "level2": 1,
+ "level3": 0
+ },
+ "prs": [
+ {
+ "url": "https://github.com/NishantRana07/HrRoadways/pull/432",
+ "title": "Improved Plan Journey UI with filters and redesigned hotel cards.",
+ "repo": "NishantRana07/HrRoadways",
+ "level": "level2",
+ "points": 7,
+ "created_at": "2025-07-29T14:39:40Z",
+ "updated_at": "2025-07-31T13:08:12Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-31T13:08:12Z",
+ "author_url": "https://github.com/IshikaS2006",
+ "author_avatar": "https://avatars.githubusercontent.com/u/192460358?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/192460358?v=4",
+ "profile_url": "https://github.com/IshikaS2006"
+ },
+ "shubh-bhatt": {
+ "expectedPoints": 7,
+ "currentPoints": 7,
+ "levels": {
+ "level1": 0,
+ "level2": 1,
+ "level3": 0
+ },
+ "prs": [
+ {
+ "url": "https://github.com/NishantRana07/HrRoadways/pull/421",
+ "title": "margin added to the form icon and checkbox",
+ "repo": "NishantRana07/HrRoadways",
+ "level": "level2",
+ "points": 7,
+ "created_at": "2025-07-28T18:23:24Z",
+ "updated_at": "2025-07-28T18:24:51Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-28T18:24:51Z",
+ "author_url": "https://github.com/shubh-bhatt",
+ "author_avatar": "https://avatars.githubusercontent.com/u/159576279?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/159576279?v=4",
+ "profile_url": "https://github.com/shubh-bhatt"
+ },
+ "yashpandav": {
+ "expectedPoints": 7,
+ "currentPoints": 7,
+ "levels": {
+ "level1": 0,
+ "level2": 1,
+ "level3": 0
+ },
+ "prs": [
+ {
+ "url": "https://github.com/NishantRana07/HrRoadways/pull/419",
+ "title": "contribution-template",
+ "repo": "NishantRana07/HrRoadways",
+ "level": "level2",
+ "points": 7,
+ "created_at": "2025-07-28T15:40:36Z",
+ "updated_at": "2025-07-28T15:43:11Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-28T15:43:11Z",
+ "author_url": "https://github.com/yashpandav",
+ "author_avatar": "https://avatars.githubusercontent.com/u/145275579?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/145275579?v=4",
+ "profile_url": "https://github.com/yashpandav"
+ },
+ "TaNuJaSaRaVale": {
+ "expectedPoints": 7,
+ "currentPoints": 7,
+ "levels": {
+ "level1": 0,
+ "level2": 1,
+ "level3": 0
+ },
+ "prs": [
+ {
+ "url": "https://github.com/NishantRana07/HrRoadways/pull/405",
+ "title": "Fix:Updated input text color for better readability",
+ "repo": "NishantRana07/HrRoadways",
+ "level": "level2",
+ "points": 7,
+ "created_at": "2025-07-27T12:14:18Z",
+ "updated_at": "2025-08-02T08:17:52Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-29T19:15:12Z",
+ "author_url": "https://github.com/TaNuJaSaRaVale",
+ "author_avatar": "https://avatars.githubusercontent.com/u/172120324?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/172120324?v=4",
+ "profile_url": "https://github.com/TaNuJaSaRaVale"
+ },
+ "kisshan13": {
+ "expectedPoints": 7,
+ "currentPoints": 7,
+ "levels": {
+ "level1": 0,
+ "level2": 1,
+ "level3": 0
+ },
+ "prs": [
+ {
+ "url": "https://github.com/NishantRana07/HrRoadways/pull/395",
+ "title": "Fix: Added an fix for multiple API calls for getting weather data for…",
+ "repo": "NishantRana07/HrRoadways",
+ "level": "level2",
+ "points": 7,
+ "created_at": "2025-07-27T07:36:39Z",
+ "updated_at": "2025-07-28T05:43:09Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-27T21:35:17Z",
+ "author_url": "https://github.com/kisshan13",
+ "author_avatar": "https://avatars.githubusercontent.com/u/107870881?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/107870881?v=4",
+ "profile_url": "https://github.com/kisshan13"
+ },
+ "sam-eer12": {
+ "expectedPoints": 14,
+ "currentPoints": 7,
+ "levels": {
+ "level1": 0,
+ "level2": 2,
+ "level3": 0
+ },
+ "prs": [
+ {
+ "url": "https://github.com/NishantRana07/HrRoadways/pull/387",
+ "title": "Plan jounery detailed page",
+ "repo": "NishantRana07/HrRoadways",
+ "level": "level2",
+ "points": 7,
+ "created_at": "2025-07-26T12:16:35Z",
+ "updated_at": "2025-07-27T21:20:09Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-27T21:20:09Z",
+ "author_url": "https://github.com/sam-eer12",
+ "author_avatar": "https://avatars.githubusercontent.com/u/206113798?v=4"
+ },
+ {
+ "url": "https://github.com/NishantRana07/HrRoadways/pull/371",
+ "title": "Home page changes",
+ "repo": "NishantRana07/HrRoadways",
+ "level": "level2",
+ "points": 7,
+ "created_at": "2025-07-25T15:16:27Z",
+ "updated_at": "2025-08-02T19:25:44Z",
+ "state": "open",
+ "merged": false,
+ "merged_at": null,
+ "author_url": "https://github.com/sam-eer12",
+ "author_avatar": "https://avatars.githubusercontent.com/u/206113798?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/206113798?v=4",
+ "profile_url": "https://github.com/sam-eer12"
+ },
+ "krkfpo": {
+ "expectedPoints": 7,
+ "currentPoints": 7,
+ "levels": {
+ "level1": 0,
+ "level2": 1,
+ "level3": 0
+ },
+ "prs": [
+ {
+ "url": "https://github.com/NishantRana07/HrRoadways/pull/266",
+ "title": "Added necessary SEO Meta Tags",
+ "repo": "NishantRana07/HrRoadways",
+ "level": "level2",
+ "points": 7,
+ "created_at": "2025-07-21T20:46:37Z",
+ "updated_at": "2025-07-22T12:09:17Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-22T06:23:58Z",
+ "author_url": "https://github.com/krkfpo",
+ "author_avatar": "https://avatars.githubusercontent.com/u/75692511?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/75692511?v=4",
+ "profile_url": "https://github.com/krkfpo"
+ },
+ "GazalBandil": {
+ "expectedPoints": 7,
+ "currentPoints": 7,
+ "levels": {
+ "level1": 0,
+ "level2": 1,
+ "level3": 0
+ },
+ "prs": [
+ {
+ "url": "https://github.com/Er-luffy-D/SimplifAI/pull/59",
+ "title": "Fix: Prevent the score manipulation via back button in quiz - #14",
+ "repo": "Er-luffy-D/SimplifAI",
+ "level": "level2",
+ "points": 7,
+ "created_at": "2025-07-30T18:49:09Z",
+ "updated_at": "2025-08-02T17:00:42Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-31T10:46:17Z",
+ "author_url": "https://github.com/GazalBandil",
+ "author_avatar": "https://avatars.githubusercontent.com/u/108954361?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/108954361?v=4",
+ "profile_url": "https://github.com/GazalBandil"
+ },
+ "Shubham07badgujar": {
+ "expectedPoints": 7,
+ "currentPoints": 7,
+ "levels": {
+ "level1": 0,
+ "level2": 1,
+ "level3": 0
+ },
+ "prs": [
+ {
+ "url": "https://github.com/Er-luffy-D/SimplifAI/pull/57",
+ "title": "Add footer component",
+ "repo": "Er-luffy-D/SimplifAI",
+ "level": "level2",
+ "points": 7,
+ "created_at": "2025-07-29T16:35:15Z",
+ "updated_at": "2025-08-02T16:59:51Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-30T07:30:24Z",
+ "author_url": "https://github.com/Shubham07badgujar",
+ "author_avatar": "https://avatars.githubusercontent.com/u/161690480?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/161690480?v=4",
+ "profile_url": "https://github.com/Shubham07badgujar"
+ },
+ "aritracodes-69": {
+ "expectedPoints": 14,
+ "currentPoints": 7,
+ "levels": {
+ "level1": 0,
+ "level2": 2,
+ "level3": 0
+ },
+ "prs": [
+ {
+ "url": "https://github.com/pooranjoyb/cpp-sdk-appwrite/pull/101",
+ "title": "feat: updateEmail",
+ "repo": "pooranjoyb/cpp-sdk-appwrite",
+ "level": "level2",
+ "points": 7,
+ "created_at": "2025-07-30T03:52:59Z",
+ "updated_at": "2025-07-30T16:54:24Z",
+ "state": "open",
+ "merged": false,
+ "merged_at": null,
+ "author_url": "https://github.com/aritracodes-69",
+ "author_avatar": "https://avatars.githubusercontent.com/u/117724889?v=4"
+ },
+ {
+ "url": "https://github.com/pooranjoyb/cpp-sdk-appwrite/pull/96",
+ "title": "feat: createEmail",
+ "repo": "pooranjoyb/cpp-sdk-appwrite",
+ "level": "level2",
+ "points": 7,
+ "created_at": "2025-07-29T15:18:06Z",
+ "updated_at": "2025-07-30T16:24:06Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-30T16:24:06Z",
+ "author_url": "https://github.com/aritracodes-69",
+ "author_avatar": "https://avatars.githubusercontent.com/u/117724889?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/117724889?v=4",
+ "profile_url": "https://github.com/aritracodes-69"
+ },
+ "Ashish-Kumar-Dash": {
+ "expectedPoints": 7,
+ "currentPoints": 7,
+ "levels": {
+ "level1": 0,
+ "level2": 1,
+ "level3": 0
+ },
+ "prs": [
+ {
+ "url": "https://github.com/pooranjoyb/cpp-sdk-appwrite/pull/82",
+ "title": "feat: Doxygen Configuration and Header File Annotations for API Docs Generation",
+ "repo": "pooranjoyb/cpp-sdk-appwrite",
+ "level": "level2",
+ "points": 7,
+ "created_at": "2025-07-26T05:28:12Z",
+ "updated_at": "2025-07-29T16:10:10Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-29T14:42:10Z",
+ "author_url": "https://github.com/Ashish-Kumar-Dash",
+ "author_avatar": "https://avatars.githubusercontent.com/u/186616846?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/186616846?v=4",
+ "profile_url": "https://github.com/Ashish-Kumar-Dash"
+ },
+ "MaRyamFatima1120": {
+ "expectedPoints": 28,
+ "currentPoints": 7,
+ "levels": {
+ "level1": 0,
+ "level2": 4,
+ "level3": 0
+ },
+ "prs": [
+ {
+ "url": "https://github.com/Prateek9876/NagarVikas/pull/190",
+ "title": "Enhance empty state UI with illustration and fade-in animation (#153)",
+ "repo": "Prateek9876/NagarVikas",
+ "level": "level2",
+ "points": 7,
+ "created_at": "2025-08-01T04:33:43Z",
+ "updated_at": "2025-08-03T04:39:32Z",
+ "state": "closed",
+ "merged": false,
+ "merged_at": null,
+ "author_url": "https://github.com/MaRyamFatima1120",
+ "author_avatar": "https://avatars.githubusercontent.com/u/163281910?v=4"
+ },
+ {
+ "url": "https://github.com/Prateek9876/NagarVikas/pull/160",
+ "title": "Enhance empty state UI with illustration and fade-in animation (#153)",
+ "repo": "Prateek9876/NagarVikas",
+ "level": "level2",
+ "points": 7,
+ "created_at": "2025-07-27T11:46:56Z",
+ "updated_at": "2025-07-27T16:09:56Z",
+ "state": "closed",
+ "merged": false,
+ "merged_at": null,
+ "author_url": "https://github.com/MaRyamFatima1120",
+ "author_avatar": "https://avatars.githubusercontent.com/u/163281910?v=4"
+ },
+ {
+ "url": "https://github.com/Prateek9876/NagarVikas/pull/154",
+ "title": "Improve UI of Admin Dashboard Appbar (Again Submit)",
+ "repo": "Prateek9876/NagarVikas",
+ "level": "level2",
+ "points": 7,
+ "created_at": "2025-07-26T08:57:08Z",
+ "updated_at": "2025-07-27T08:21:27Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-27T08:21:27Z",
+ "author_url": "https://github.com/MaRyamFatima1120",
+ "author_avatar": "https://avatars.githubusercontent.com/u/163281910?v=4"
+ },
+ {
+ "url": "https://github.com/Prateek9876/NagarVikas/pull/148",
+ "title": "Improve UI of Admin Dashboard Appbar (Again Submit)",
+ "repo": "Prateek9876/NagarVikas",
+ "level": "level2",
+ "points": 7,
+ "created_at": "2025-07-24T14:44:14Z",
+ "updated_at": "2025-07-26T08:20:44Z",
+ "state": "closed",
+ "merged": false,
+ "merged_at": null,
+ "author_url": "https://github.com/MaRyamFatima1120",
+ "author_avatar": "https://avatars.githubusercontent.com/u/163281910?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/163281910?v=4",
+ "profile_url": "https://github.com/MaRyamFatima1120"
+ },
+ "Diyabaghla": {
+ "expectedPoints": 7,
+ "currentPoints": 7,
+ "levels": {
+ "level1": 0,
+ "level2": 1,
+ "level3": 0
+ },
+ "prs": [
+ {
+ "url": "https://github.com/PRIYANSHU2026/DataSentience-AIML/pull/276",
+ "title": "Added doctor specialist recommendation feature",
+ "repo": "PRIYANSHU2026/DataSentience-AIML",
+ "level": "level2",
+ "points": 7,
+ "created_at": "2025-07-30T05:22:23Z",
+ "updated_at": "2025-07-31T05:12:41Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-31T05:10:39Z",
+ "author_url": "https://github.com/Diyabaghla",
+ "author_avatar": "https://avatars.githubusercontent.com/u/172107163?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/172107163?v=4",
+ "profile_url": "https://github.com/Diyabaghla"
+ },
+ "abhipsa14": {
+ "expectedPoints": 7,
+ "currentPoints": 7,
+ "levels": {
+ "level1": 0,
+ "level2": 1,
+ "level3": 0
+ },
+ "prs": [
+ {
+ "url": "https://github.com/PRIYANSHU2026/DataSentience-AIML/pull/257",
+ "title": "Body Fat Prediction System",
+ "repo": "PRIYANSHU2026/DataSentience-AIML",
+ "level": "level2",
+ "points": 7,
+ "created_at": "2025-07-29T00:46:53Z",
+ "updated_at": "2025-07-29T15:19:37Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-29T14:06:56Z",
+ "author_url": "https://github.com/abhipsa14",
+ "author_avatar": "https://avatars.githubusercontent.com/u/151427629?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/151427629?v=4",
+ "profile_url": "https://github.com/abhipsa14"
+ },
+ "KaiAllAlone": {
+ "expectedPoints": 7,
+ "currentPoints": 7,
+ "levels": {
+ "level1": 0,
+ "level2": 1,
+ "level3": 0
+ },
+ "prs": [
+ {
+ "url": "https://github.com/PRIYANSHU2026/DataSentience-AIML/pull/233",
+ "title": "Added Weather Prediction Using ARIMA readme and Colab Notebook",
+ "repo": "PRIYANSHU2026/DataSentience-AIML",
+ "level": "level2",
+ "points": 7,
+ "created_at": "2025-07-26T19:07:41Z",
+ "updated_at": "2025-07-27T08:16:30Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-27T08:10:44Z",
+ "author_url": "https://github.com/KaiAllAlone",
+ "author_avatar": "https://avatars.githubusercontent.com/u/74694153?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/74694153?v=4",
+ "profile_url": "https://github.com/KaiAllAlone"
+ },
+ "Lakshya2031": {
+ "expectedPoints": 7,
+ "currentPoints": 7,
+ "levels": {
+ "level1": 0,
+ "level2": 1,
+ "level3": 0
+ },
+ "prs": [
+ {
+ "url": "https://github.com/PRIYANSHU2026/DataSentience-AIML/pull/214",
+ "title": "Added Streamlit UI for Loan Prediction [GSSoC]",
+ "repo": "PRIYANSHU2026/DataSentience-AIML",
+ "level": "level2",
+ "points": 7,
+ "created_at": "2025-07-24T18:16:41Z",
+ "updated_at": "2025-07-27T08:15:58Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-25T10:40:53Z",
+ "author_url": "https://github.com/Lakshya2031",
+ "author_avatar": "https://avatars.githubusercontent.com/u/183531265?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/183531265?v=4",
+ "profile_url": "https://github.com/Lakshya2031"
+ },
+ "student-smritipandey": {
+ "expectedPoints": 7,
+ "currentPoints": 7,
+ "levels": {
+ "level1": 0,
+ "level2": 1,
+ "level3": 0
+ },
+ "prs": [
+ {
+ "url": "https://github.com/PRIYANSHU2026/DataSentience-AIML/pull/213",
+ "title": "initial commit of crop yield predictor notebook ",
+ "repo": "PRIYANSHU2026/DataSentience-AIML",
+ "level": "level2",
+ "points": 7,
+ "created_at": "2025-07-24T16:43:50Z",
+ "updated_at": "2025-07-27T08:17:08Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-25T03:53:36Z",
+ "author_url": "https://github.com/student-smritipandey",
+ "author_avatar": "https://avatars.githubusercontent.com/u/218819493?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/218819493?v=4",
+ "profile_url": "https://github.com/student-smritipandey"
+ },
+ "S-Dhruv": {
+ "expectedPoints": 7,
+ "currentPoints": 7,
+ "levels": {
+ "level1": 0,
+ "level2": 1,
+ "level3": 0
+ },
+ "prs": [
+ {
+ "url": "https://github.com/rahulkhandait-sde/cineverse/pull/27",
+ "title": "Comparing Movie and Tv show meta data",
+ "repo": "rahulkhandait-sde/movie-search",
+ "level": "level2",
+ "points": 7,
+ "created_at": "2025-07-30T09:59:25Z",
+ "updated_at": "2025-08-02T07:53:12Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-08-02T07:52:48Z",
+ "author_url": "https://github.com/S-Dhruv",
+ "author_avatar": "https://avatars.githubusercontent.com/u/67406262?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/67406262?v=4",
+ "profile_url": "https://github.com/S-Dhruv"
+ },
+ "ZarrarPeshimam": {
+ "expectedPoints": 7,
+ "currentPoints": 7,
+ "levels": {
+ "level1": 0,
+ "level2": 1,
+ "level3": 0
+ },
+ "prs": [
+ {
+ "url": "https://github.com/reshamsai150/7.Analysis-and-Prediction-of-Electric-Vehicle-Costs-A-Machine-Learning-Based-Approach/pull/46",
+ "title": "Enhanced EV Cost Prediction form UI and UX",
+ "repo": "reshamsai150/7.Analysis-and-Prediction-of-Electric-Vehicle-Costs-A-Machine-Learning-Based-Approach",
+ "level": "level2",
+ "points": 7,
+ "created_at": "2025-08-02T14:36:23Z",
+ "updated_at": "2025-08-03T04:35:48Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-08-03T04:33:32Z",
+ "author_url": "https://github.com/ZarrarPeshimam",
+ "author_avatar": "https://avatars.githubusercontent.com/u/158853189?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/158853189?v=4",
+ "profile_url": "https://github.com/ZarrarPeshimam"
+ },
+ "Gurleen-22": {
+ "expectedPoints": 7,
+ "currentPoints": 7,
+ "levels": {
+ "level1": 0,
+ "level2": 1,
+ "level3": 0
+ },
+ "prs": [
+ {
+ "url": "https://github.com/reshamsai150/7.Analysis-and-Prediction-of-Electric-Vehicle-Costs-A-Machine-Learning-Based-Approach/pull/21",
+ "title": "EV charging Stations Map and Dashboard ",
+ "repo": "reshamsai150/7.Analysis-and-Prediction-of-Electric-Vehicle-Costs-A-Machine-Learning-Based-Approach",
+ "level": "level2",
+ "points": 7,
+ "created_at": "2025-07-26T10:29:13Z",
+ "updated_at": "2025-07-30T14:48:20Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-26T13:38:30Z",
+ "author_url": "https://github.com/Gurleen-22",
+ "author_avatar": "https://avatars.githubusercontent.com/u/162477107?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/162477107?v=4",
+ "profile_url": "https://github.com/Gurleen-22"
+ },
+ "vanshi18s": {
+ "expectedPoints": 7,
+ "currentPoints": 7,
+ "levels": {
+ "level1": 0,
+ "level2": 1,
+ "level3": 0
+ },
+ "prs": [
+ {
+ "url": "https://github.com/reshamsai150/7.Analysis-and-Prediction-of-Electric-Vehicle-Costs-A-Machine-Learning-Based-Approach/pull/13",
+ "title": "Fix: update the requirements.txt as per issue.",
+ "repo": "reshamsai150/7.Analysis-and-Prediction-of-Electric-Vehicle-Costs-A-Machine-Learning-Based-Approach",
+ "level": "level2",
+ "points": 7,
+ "created_at": "2025-07-24T09:22:58Z",
+ "updated_at": "2025-07-26T13:37:13Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-26T12:28:57Z",
+ "author_url": "https://github.com/vanshi18s",
+ "author_avatar": "https://avatars.githubusercontent.com/u/162014656?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/162014656?v=4",
+ "profile_url": "https://github.com/vanshi18s"
+ },
+ "riddk13": {
+ "expectedPoints": 7,
+ "currentPoints": 7,
+ "levels": {
+ "level1": 0,
+ "level2": 1,
+ "level3": 0
+ },
+ "prs": [
+ {
+ "url": "https://github.com/Richajaishwal0/Trip_assistant/pull/47",
+ "title": "✨ Added Trip Budget Estimator feature",
+ "repo": "Richajaishwal0/Trip_assistant",
+ "level": "level2",
+ "points": 7,
+ "created_at": "2025-07-29T06:58:31Z",
+ "updated_at": "2025-07-30T02:59:11Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-30T02:58:54Z",
+ "author_url": "https://github.com/riddk13",
+ "author_avatar": "https://avatars.githubusercontent.com/u/206384794?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/206384794?v=4",
+ "profile_url": "https://github.com/riddk13"
+ },
+ "Vyshhh": {
+ "expectedPoints": 7,
+ "currentPoints": 7,
+ "levels": {
+ "level1": 0,
+ "level2": 1,
+ "level3": 0
+ },
+ "prs": [
+ {
+ "url": "https://github.com/Richajaishwal0/Trip_assistant/pull/35",
+ "title": "Added weather info button for placeCards",
+ "repo": "Richajaishwal0/Trip_assistant",
+ "level": "level2",
+ "points": 7,
+ "created_at": "2025-07-27T06:26:22Z",
+ "updated_at": "2025-07-27T09:42:45Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-27T09:42:44Z",
+ "author_url": "https://github.com/Vyshhh",
+ "author_avatar": "https://avatars.githubusercontent.com/u/124905214?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/124905214?v=4",
+ "profile_url": "https://github.com/Vyshhh"
+ },
+ "pragya-4": {
+ "expectedPoints": 7,
+ "currentPoints": 7,
+ "levels": {
+ "level1": 0,
+ "level2": 1,
+ "level3": 0
+ },
+ "prs": [
+ {
+ "url": "https://github.com/ruchikakengal/WebDevIn100_Days/pull/386",
+ "title": "Add Day-43: 4 in a Row",
+ "repo": "ruchikakengal/WebDevIn100_Days",
+ "level": "level2",
+ "points": 7,
+ "created_at": "2025-07-29T10:54:52Z",
+ "updated_at": "2025-07-31T06:06:11Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-31T06:06:11Z",
+ "author_url": "https://github.com/pragya-4",
+ "author_avatar": "https://avatars.githubusercontent.com/u/173372611?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/173372611?v=4",
+ "profile_url": "https://github.com/pragya-4"
+ },
+ "SakshiAwasthi19": {
+ "expectedPoints": 7,
+ "currentPoints": 7,
+ "levels": {
+ "level1": 0,
+ "level2": 1,
+ "level3": 0
+ },
+ "prs": [
+ {
+ "url": "https://github.com/ruchikakengal/WebDevIn100_Days/pull/381",
+ "title": "Day 47_Pomodoro-app",
+ "repo": "ruchikakengal/WebDevIn100_Days",
+ "level": "level2",
+ "points": 7,
+ "created_at": "2025-07-29T07:34:22Z",
+ "updated_at": "2025-07-30T14:13:20Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-30T11:47:56Z",
+ "author_url": "https://github.com/SakshiAwasthi19",
+ "author_avatar": "https://avatars.githubusercontent.com/u/169526758?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/169526758?v=4",
+ "profile_url": "https://github.com/SakshiAwasthi19"
+ },
+ "AbhayMall": {
+ "expectedPoints": 7,
+ "currentPoints": 7,
+ "levels": {
+ "level1": 0,
+ "level2": 1,
+ "level3": 0
+ },
+ "prs": [
+ {
+ "url": "https://github.com/ruchikakengal/WebDevIn100_Days/pull/341",
+ "title": "Note Taker",
+ "repo": "ruchikakengal/WebDevIn100_Days",
+ "level": "level2",
+ "points": 7,
+ "created_at": "2025-07-27T08:11:01Z",
+ "updated_at": "2025-07-27T08:21:28Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-27T08:16:13Z",
+ "author_url": "https://github.com/AbhayMall",
+ "author_avatar": "https://avatars.githubusercontent.com/u/136182755?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/136182755?v=4",
+ "profile_url": "https://github.com/AbhayMall"
+ },
+ "MaulikGupta27": {
+ "expectedPoints": 7,
+ "currentPoints": 7,
+ "levels": {
+ "level1": 0,
+ "level2": 1,
+ "level3": 0
+ },
+ "prs": [
+ {
+ "url": "https://github.com/ruchikakengal/WebDevIn100_Days/pull/280",
+ "title": "Resolved Issue #268: updated files/folder structure and indexjs also",
+ "repo": "ruchikakengal/WebDevIn100_Days",
+ "level": "level2",
+ "points": 7,
+ "created_at": "2025-07-25T03:19:53Z",
+ "updated_at": "2025-07-25T05:16:19Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-25T05:16:19Z",
+ "author_url": "https://github.com/MaulikGupta27",
+ "author_avatar": "https://avatars.githubusercontent.com/u/175924555?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/175924555?v=4",
+ "profile_url": "https://github.com/MaulikGupta27"
+ },
+ "akshith-1729": {
+ "expectedPoints": 7,
+ "currentPoints": 7,
+ "levels": {
+ "level1": 0,
+ "level2": 1,
+ "level3": 0
+ },
+ "prs": [
+ {
+ "url": "https://github.com/rutikakengal/100DAYS_OF_100WEBPROJECTS/pull/429",
+ "title": "Resolved issues Added Snake game ",
+ "repo": "rutikakengal/100DAYS_OF_100WEBPROJECTS",
+ "level": "level2",
+ "points": 7,
+ "created_at": "2025-07-30T15:44:19Z",
+ "updated_at": "2025-07-31T15:24:12Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-31T15:23:43Z",
+ "author_url": "https://github.com/akshith-1729",
+ "author_avatar": "https://avatars.githubusercontent.com/u/195896392?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/195896392?v=4",
+ "profile_url": "https://github.com/akshith-1729"
+ },
+ "arshc0der": {
+ "expectedPoints": 7,
+ "currentPoints": 7,
+ "levels": {
+ "level1": 0,
+ "level2": 1,
+ "level3": 0
+ },
+ "prs": [
+ {
+ "url": "https://github.com/rutikakengal/100DAYS_OF_100WEBPROJECTS/pull/219",
+ "title": "added the contributors.html and update the navbar link in index.html …",
+ "repo": "rutikakengal/100DAYS_OF_100WEBPROJECTS",
+ "level": "level2",
+ "points": 7,
+ "created_at": "2025-07-26T14:53:34Z",
+ "updated_at": "2025-07-27T13:16:38Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-27T13:16:16Z",
+ "author_url": "https://github.com/arshc0der",
+ "author_avatar": "https://avatars.githubusercontent.com/u/159905020?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/159905020?v=4",
+ "profile_url": "https://github.com/arshc0der"
+ },
+ "codeX-Crafter": {
+ "expectedPoints": 7,
+ "currentPoints": 7,
+ "levels": {
+ "level1": 0,
+ "level2": 1,
+ "level3": 0
+ },
+ "prs": [
+ {
+ "url": "https://github.com/rutikakengal/100DAYS_OF_100WEBPROJECTS/pull/104",
+ "title": "2 projects added day5 and day6",
+ "repo": "rutikakengal/100DAYS_OF_100WEBPROJECTS",
+ "level": "level2",
+ "points": 7,
+ "created_at": "2025-07-24T10:45:31Z",
+ "updated_at": "2025-07-24T12:07:56Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-24T12:07:35Z",
+ "author_url": "https://github.com/codeX-Crafter",
+ "author_avatar": "https://avatars.githubusercontent.com/u/183409795?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/183409795?v=4",
+ "profile_url": "https://github.com/codeX-Crafter"
+ },
+ "srishti1837": {
+ "expectedPoints": 7,
+ "currentPoints": 7,
+ "levels": {
+ "level1": 0,
+ "level2": 1,
+ "level3": 0
+ },
+ "prs": [
+ {
+ "url": "https://github.com/eccentriccoder01/TalkHeal/pull/61",
+ "title": "Added Journaling Feature with Sentiment Analysis, Auth Integration, and Filtering",
+ "repo": "eccentriccoder01/TalkHeal",
+ "level": "level2",
+ "points": 7,
+ "created_at": "2025-07-29T10:44:53Z",
+ "updated_at": "2025-08-03T03:52:23Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-30T09:11:00Z",
+ "author_url": "https://github.com/srishti1837",
+ "author_avatar": "https://avatars.githubusercontent.com/u/185067315?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/185067315?v=4",
+ "profile_url": "https://github.com/srishti1837"
+ },
+ "LayaYeldandi3": {
+ "expectedPoints": 7,
+ "currentPoints": 7,
+ "levels": {
+ "level1": 0,
+ "level2": 1,
+ "level3": 0
+ },
+ "prs": [
+ {
+ "url": "https://github.com/eccentriccoder01/TalkHeal/pull/54",
+ "title": "Added Yoga for Mental Health feature based on mood (GSSoC'25 Level 2)",
+ "repo": "eccentriccoder01/TalkHeal",
+ "level": "level2",
+ "points": 7,
+ "created_at": "2025-07-27T07:11:14Z",
+ "updated_at": "2025-07-30T19:35:39Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-28T05:40:16Z",
+ "author_url": "https://github.com/LayaYeldandi3",
+ "author_avatar": "https://avatars.githubusercontent.com/u/150347863?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/150347863?v=4",
+ "profile_url": "https://github.com/LayaYeldandi3"
+ },
+ "kr-learns": {
+ "expectedPoints": 7,
+ "currentPoints": 7,
+ "levels": {
+ "level1": 0,
+ "level2": 1,
+ "level3": 0
+ },
+ "prs": [
+ {
+ "url": "https://github.com/eccentriccoder01/TalkHeal/pull/40",
+ "title": "Chatbot's personality tone #31",
+ "repo": "eccentriccoder01/TalkHeal",
+ "level": "level2",
+ "points": 7,
+ "created_at": "2025-07-25T15:08:01Z",
+ "updated_at": "2025-08-03T03:52:55Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-25T16:06:30Z",
+ "author_url": "https://github.com/kr-learns",
+ "author_avatar": "https://avatars.githubusercontent.com/u/218980003?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/218980003?v=4",
+ "profile_url": "https://github.com/kr-learns"
+ },
+ "tilakjain619": {
+ "expectedPoints": 7,
+ "currentPoints": 7,
+ "levels": {
+ "level1": 0,
+ "level2": 1,
+ "level3": 0
+ },
+ "prs": [
+ {
+ "url": "https://github.com/eccentriccoder01/TalkHeal/pull/25",
+ "title": "Enhance Crisis Support with GeoIP-based helpline detection",
+ "repo": "eccentriccoder01/TalkHeal",
+ "level": "level2",
+ "points": 7,
+ "created_at": "2025-07-23T13:41:54Z",
+ "updated_at": "2025-08-03T03:53:07Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-31T15:46:12Z",
+ "author_url": "https://github.com/tilakjain619",
+ "author_avatar": "https://avatars.githubusercontent.com/u/112251445?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/112251445?v=4",
+ "profile_url": "https://github.com/tilakjain619"
+ },
+ "Aastha-1411": {
+ "expectedPoints": 7,
+ "currentPoints": 7,
+ "levels": {
+ "level1": 0,
+ "level2": 1,
+ "level3": 0
+ },
+ "prs": [
+ {
+ "url": "https://github.com/eccentriccoder01/TalkHeal/pull/14",
+ "title": "Fix Timestamp issue in chat interface",
+ "repo": "eccentriccoder01/TalkHeal",
+ "level": "level2",
+ "points": 7,
+ "created_at": "2025-07-22T13:47:49Z",
+ "updated_at": "2025-08-03T03:53:19Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-23T05:17:34Z",
+ "author_url": "https://github.com/Aastha-1411",
+ "author_avatar": "https://avatars.githubusercontent.com/u/118029883?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/118029883?v=4",
+ "profile_url": "https://github.com/Aastha-1411"
+ },
+ "Priyanshu-Shah": {
+ "expectedPoints": 7,
+ "currentPoints": 7,
+ "levels": {
+ "level1": 0,
+ "level2": 1,
+ "level3": 0
+ },
+ "prs": [
+ {
+ "url": "https://github.com/0xsambit/winix/pull/23",
+ "title": "Feature/implement-unix-kill-command",
+ "repo": "0xsambit/winix",
+ "level": "level2",
+ "points": 7,
+ "created_at": "2025-07-25T07:43:35Z",
+ "updated_at": "2025-07-25T11:24:07Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-25T11:22:08Z",
+ "author_url": "https://github.com/Priyanshu-Shah",
+ "author_avatar": "https://avatars.githubusercontent.com/u/141810653?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/141810653?v=4",
+ "profile_url": "https://github.com/Priyanshu-Shah"
+ },
+ "Dishant-V": {
+ "expectedPoints": 7,
+ "currentPoints": 7,
+ "levels": {
+ "level1": 0,
+ "level2": 1,
+ "level3": 0
+ },
+ "prs": [
+ {
+ "url": "https://github.com/SamXop123/RigCrafter/pull/27",
+ "title": "Fix: Budget-based randomizer now generates strict-range builds",
+ "repo": "SamXop123/RigCrafter",
+ "level": "level2",
+ "points": 7,
+ "created_at": "2025-07-28T11:16:44Z",
+ "updated_at": "2025-07-28T13:06:02Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-28T13:06:02Z",
+ "author_url": "https://github.com/Dishant-V",
+ "author_avatar": "https://avatars.githubusercontent.com/u/180925042?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/180925042?v=4",
+ "profile_url": "https://github.com/Dishant-V"
+ },
+ "Rituahirwar": {
+ "expectedPoints": 7,
+ "currentPoints": 7,
+ "levels": {
+ "level1": 0,
+ "level2": 1,
+ "level3": 0
+ },
+ "prs": [
+ {
+ "url": "https://github.com/SamXop123/RigCrafter/pull/14",
+ "title": "feat: Add “Surprise Me!” Button to Auto-Generate Random Rig",
+ "repo": "SamXop123/RigCrafter",
+ "level": "level2",
+ "points": 7,
+ "created_at": "2025-07-24T07:34:52Z",
+ "updated_at": "2025-07-27T09:37:09Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-24T16:33:40Z",
+ "author_url": "https://github.com/Rituahirwar",
+ "author_avatar": "https://avatars.githubusercontent.com/u/189231959?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/189231959?v=4",
+ "profile_url": "https://github.com/Rituahirwar"
+ },
+ "Khushi5155": {
+ "expectedPoints": 7,
+ "currentPoints": 7,
+ "levels": {
+ "level1": 0,
+ "level2": 1,
+ "level3": 0
+ },
+ "prs": [
+ {
+ "url": "https://github.com/sampadatiwari30/DeshDarshan/pull/264",
+ "title": " Resolve Lock/Unlock issue in Explore Page and also Solve Double Expl…",
+ "repo": "sampadatiwari30/DeshDarshan",
+ "level": "level2",
+ "points": 7,
+ "created_at": "2025-07-31T10:21:43Z",
+ "updated_at": "2025-07-31T18:28:10Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-31T18:26:09Z",
+ "author_url": "https://github.com/Khushi5155",
+ "author_avatar": "https://avatars.githubusercontent.com/u/180379598?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/180379598?v=4",
+ "profile_url": "https://github.com/Khushi5155"
+ },
+ "Samik221B": {
+ "expectedPoints": 7,
+ "currentPoints": 7,
+ "levels": {
+ "level1": 0,
+ "level2": 1,
+ "level3": 0
+ },
+ "prs": [
+ {
+ "url": "https://github.com/sampadatiwari30/DeshDarshan/pull/245",
+ "title": "🗺️ Enhanced Interactive State Cards with Leaflet Map Integration",
+ "repo": "sampadatiwari30/DeshDarshan",
+ "level": "level2",
+ "points": 7,
+ "created_at": "2025-07-30T17:04:19Z",
+ "updated_at": "2025-07-30T18:37:16Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-30T18:36:56Z",
+ "author_url": "https://github.com/Samik221B",
+ "author_avatar": "https://avatars.githubusercontent.com/u/144818438?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/144818438?v=4",
+ "profile_url": "https://github.com/Samik221B"
+ },
+ "Ankita-Dholkar": {
+ "expectedPoints": 7,
+ "currentPoints": 7,
+ "levels": {
+ "level1": 0,
+ "level2": 1,
+ "level3": 0
+ },
+ "prs": [
+ {
+ "url": "https://github.com/sampadatiwari30/DeshDarshan/pull/220",
+ "title": "UI enhancement work and Fixed close button and \"Did You Know\" section overlap.",
+ "repo": "sampadatiwari30/DeshDarshan",
+ "level": "level2",
+ "points": 7,
+ "created_at": "2025-07-29T12:07:04Z",
+ "updated_at": "2025-07-29T17:06:13Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-29T17:05:48Z",
+ "author_url": "https://github.com/Ankita-Dholkar",
+ "author_avatar": "https://avatars.githubusercontent.com/u/219827827?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/219827827?v=4",
+ "profile_url": "https://github.com/Ankita-Dholkar"
+ },
+ "shreyaB7134": {
+ "expectedPoints": 7,
+ "currentPoints": 7,
+ "levels": {
+ "level1": 0,
+ "level2": 1,
+ "level3": 0
+ },
+ "prs": [
+ {
+ "url": "https://github.com/sampadatiwari30/DeshDarshan/pull/200",
+ "title": "Compass navigation",
+ "repo": "sampadatiwari30/DeshDarshan",
+ "level": "level2",
+ "points": 7,
+ "created_at": "2025-07-28T14:42:57Z",
+ "updated_at": "2025-07-31T03:21:11Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-31T03:20:55Z",
+ "author_url": "https://github.com/shreyaB7134",
+ "author_avatar": "https://avatars.githubusercontent.com/u/179561862?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/179561862?v=4",
+ "profile_url": "https://github.com/shreyaB7134"
+ },
+ "sulabhsaluja": {
+ "expectedPoints": 7,
+ "currentPoints": 7,
+ "levels": {
+ "level1": 0,
+ "level2": 1,
+ "level3": 0
+ },
+ "prs": [
+ {
+ "url": "https://github.com/sampadatiwari30/DeshDarshan/pull/184",
+ "title": "Fix: Deployment by updating internal navigation links",
+ "repo": "sampadatiwari30/DeshDarshan",
+ "level": "level2",
+ "points": 7,
+ "created_at": "2025-07-27T18:39:42Z",
+ "updated_at": "2025-07-27T19:19:58Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-27T19:16:07Z",
+ "author_url": "https://github.com/sulabhsaluja",
+ "author_avatar": "https://avatars.githubusercontent.com/u/193330067?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/193330067?v=4",
+ "profile_url": "https://github.com/sulabhsaluja"
+ },
+ "piyushpatelcodes": {
+ "expectedPoints": 7,
+ "currentPoints": 7,
+ "levels": {
+ "level1": 0,
+ "level2": 1,
+ "level3": 0
+ },
+ "prs": [
+ {
+ "url": "https://github.com/sampadatiwari30/DeshDarshan/pull/79",
+ "title": "redesign in hero section",
+ "repo": "sampadatiwari30/DeshDarshan",
+ "level": "level2",
+ "points": 7,
+ "created_at": "2025-07-23T23:15:04Z",
+ "updated_at": "2025-07-24T01:55:34Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-24T01:29:34Z",
+ "author_url": "https://github.com/piyushpatelcodes",
+ "author_avatar": "https://avatars.githubusercontent.com/u/136020845?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/136020845?v=4",
+ "profile_url": "https://github.com/piyushpatelcodes"
+ },
+ "tobiasrahul": {
+ "expectedPoints": 7,
+ "currentPoints": 7,
+ "levels": {
+ "level1": 0,
+ "level2": 1,
+ "level3": 0
+ },
+ "prs": [
+ {
+ "url": "https://github.com/sampadatiwari30/DeshDarshan/pull/16",
+ "title": "Add: Translate-whole-page",
+ "repo": "sampadatiwari30/DeshDarshan",
+ "level": "level2",
+ "points": 7,
+ "created_at": "2025-07-22T06:51:15Z",
+ "updated_at": "2025-07-24T05:47:22Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-22T11:29:11Z",
+ "author_url": "https://github.com/tobiasrahul",
+ "author_avatar": "https://avatars.githubusercontent.com/u/115544502?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/115544502?v=4",
+ "profile_url": "https://github.com/tobiasrahul"
+ },
+ "GauriRocksies": {
+ "expectedPoints": 14,
+ "currentPoints": 7,
+ "levels": {
+ "level1": 0,
+ "level2": 2,
+ "level3": 0
+ },
+ "prs": [
+ {
+ "url": "https://github.com/may-tas/TextEditingApp/pull/51",
+ "title": "Updated the bg color tray",
+ "repo": "may-tas/TextEditingApp",
+ "level": "level2",
+ "points": 7,
+ "created_at": "2025-07-31T15:05:03Z",
+ "updated_at": "2025-08-01T09:35:01Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-31T15:27:22Z",
+ "author_url": "https://github.com/GauriRocksies",
+ "author_avatar": "https://avatars.githubusercontent.com/u/178488305?v=4"
+ },
+ {
+ "url": "https://github.com/may-tas/TextEditingApp/pull/41",
+ "title": "Bg color change",
+ "repo": "may-tas/TextEditingApp",
+ "level": "level2",
+ "points": 7,
+ "created_at": "2025-07-29T14:59:57Z",
+ "updated_at": "2025-07-31T15:23:57Z",
+ "state": "closed",
+ "merged": false,
+ "merged_at": null,
+ "author_url": "https://github.com/GauriRocksies",
+ "author_avatar": "https://avatars.githubusercontent.com/u/178488305?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/178488305?v=4",
+ "profile_url": "https://github.com/GauriRocksies"
+ },
+ "Rishi-1512": {
+ "expectedPoints": 7,
+ "currentPoints": 7,
+ "levels": {
+ "level1": 0,
+ "level2": 1,
+ "level3": 0
+ },
+ "prs": [
+ {
+ "url": "https://github.com/may-tas/TextEditingApp/pull/37",
+ "title": "Added Fade In Splash Screen and Generated App Icons",
+ "repo": "may-tas/TextEditingApp",
+ "level": "level2",
+ "points": 7,
+ "created_at": "2025-07-28T08:40:08Z",
+ "updated_at": "2025-07-28T08:44:01Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-28T08:44:01Z",
+ "author_url": "https://github.com/Rishi-1512",
+ "author_avatar": "https://avatars.githubusercontent.com/u/122536214?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/122536214?v=4",
+ "profile_url": "https://github.com/Rishi-1512"
+ },
+ "Aman-agraw-35": {
+ "expectedPoints": 7,
+ "currentPoints": 7,
+ "levels": {
+ "level1": 0,
+ "level2": 1,
+ "level3": 0
+ },
+ "prs": [
+ {
+ "url": "https://github.com/saumyayadav25/cpp-dsa-sheet-testing/pull/102",
+ "title": "feat: add global emptystate UI and improve SheetContent rendering",
+ "repo": "saumyayadav25/cpp-dsa-sheet-testing",
+ "level": "level2",
+ "points": 7,
+ "created_at": "2025-07-30T11:40:26Z",
+ "updated_at": "2025-07-30T11:47:43Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-30T11:47:42Z",
+ "author_url": "https://github.com/Aman-agraw-35",
+ "author_avatar": "https://avatars.githubusercontent.com/u/119893462?v=4"
+ },
+ {
+ "url": "https://github.com/sristy17/next-payroll/pull/56",
+ "title": "Implement custom auth with Supabase and JWT",
+ "repo": "sristy17/next-payroll",
+ "level": null,
+ "points": 0,
+ "created_at": "2025-07-30T19:51:50Z",
+ "updated_at": "2025-08-03T07:20:11Z",
+ "state": "open",
+ "merged": false,
+ "merged_at": null,
+ "author_url": "https://github.com/Aman-agraw-35",
+ "author_avatar": "https://avatars.githubusercontent.com/u/119893462?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/119893462?v=4",
+ "profile_url": "https://github.com/Aman-agraw-35"
+ },
+ "Vinuthna-Pesara": {
+ "expectedPoints": 7,
+ "currentPoints": 7,
+ "levels": {
+ "level1": 0,
+ "level2": 1,
+ "level3": 0
+ },
+ "prs": [
+ {
+ "url": "https://github.com/SGCODEX/Music-Recommendation-Using-Facial-Expressions/pull/57",
+ "title": "Innovative PySimpleGUI Interface",
+ "repo": "SGCODEX/Music-Recommendation-Using-Facial-Expressions",
+ "level": "level2",
+ "points": 7,
+ "created_at": "2025-07-27T04:34:21Z",
+ "updated_at": "2025-07-31T06:39:43Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-28T05:44:27Z",
+ "author_url": "https://github.com/Vinuthna-Pesara",
+ "author_avatar": "https://avatars.githubusercontent.com/u/172952195?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/172952195?v=4",
+ "profile_url": "https://github.com/Vinuthna-Pesara"
+ },
+ "sanika-14": {
+ "expectedPoints": 7,
+ "currentPoints": 7,
+ "levels": {
+ "level1": 0,
+ "level2": 1,
+ "level3": 0
+ },
+ "prs": [
+ {
+ "url": "https://github.com/SGCODEX/Music-Recommendation-Using-Facial-Expressions/pull/33",
+ "title": "resolve #25",
+ "repo": "SGCODEX/Music-Recommendation-Using-Facial-Expressions",
+ "level": "level2",
+ "points": 7,
+ "created_at": "2025-07-21T21:22:28Z",
+ "updated_at": "2025-07-31T06:26:59Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-24T05:40:14Z",
+ "author_url": "https://github.com/sanika-14",
+ "author_avatar": "https://avatars.githubusercontent.com/u/174370014?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/174370014?v=4",
+ "profile_url": "https://github.com/sanika-14"
+ },
+ "nilaychugh": {
+ "expectedPoints": 7,
+ "currentPoints": 7,
+ "levels": {
+ "level1": 0,
+ "level2": 1,
+ "level3": 0
+ },
+ "prs": [
+ {
+ "url": "https://github.com/karmveershubham/CodeStreak/pull/19",
+ "title": "Fixed Signup page",
+ "repo": "karmveershubham/CodeStreak",
+ "level": "level2",
+ "points": 7,
+ "created_at": "2025-07-26T19:07:36Z",
+ "updated_at": "2025-07-30T14:50:57Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-26T19:31:31Z",
+ "author_url": "https://github.com/nilaychugh",
+ "author_avatar": "https://avatars.githubusercontent.com/u/155792922?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/155792922?v=4",
+ "profile_url": "https://github.com/nilaychugh"
+ },
+ "HayatZarine": {
+ "expectedPoints": 7,
+ "currentPoints": 7,
+ "levels": {
+ "level1": 0,
+ "level2": 1,
+ "level3": 0
+ },
+ "prs": [
+ {
+ "url": "https://github.com/souvikpramanikgit/LearnHub/pull/148",
+ "title": "Added tutorial: AI/ML",
+ "repo": "souvikpramanikgit/LearnHub",
+ "level": "level2",
+ "points": 7,
+ "created_at": "2025-07-28T18:28:05Z",
+ "updated_at": "2025-07-29T11:08:14Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-29T11:07:50Z",
+ "author_url": "https://github.com/HayatZarine",
+ "author_avatar": "https://avatars.githubusercontent.com/u/188469919?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/188469919?v=4",
+ "profile_url": "https://github.com/HayatZarine"
+ },
+ "ayushiiiiiiiiiii": {
+ "expectedPoints": 7,
+ "currentPoints": 7,
+ "levels": {
+ "level1": 0,
+ "level2": 1,
+ "level3": 0
+ },
+ "prs": [
+ {
+ "url": "https://github.com/souvikpramanikgit/LearnHub/pull/44",
+ "title": "Added new DSA questions and sections",
+ "repo": "souvikpramanikgit/LearnHub",
+ "level": "level2",
+ "points": 7,
+ "created_at": "2025-07-22T20:19:43Z",
+ "updated_at": "2025-07-22T20:41:21Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-22T20:41:02Z",
+ "author_url": "https://github.com/ayushiiiiiiiiiii",
+ "author_avatar": "https://avatars.githubusercontent.com/u/193478072?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/193478072?v=4",
+ "profile_url": "https://github.com/ayushiiiiiiiiiii"
+ },
+ "Krrish0621": {
+ "expectedPoints": 7,
+ "currentPoints": 7,
+ "levels": {
+ "level1": 0,
+ "level2": 1,
+ "level3": 0
+ },
+ "prs": [
+ {
+ "url": "https://github.com/souvikpramanikgit/LearnHub/pull/18",
+ "title": "Added Learning Analytics Dashboard and Navbar Integration",
+ "repo": "souvikpramanikgit/LearnHub",
+ "level": "level2",
+ "points": 7,
+ "created_at": "2025-07-22T09:27:07Z",
+ "updated_at": "2025-07-22T10:43:01Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-22T10:42:49Z",
+ "author_url": "https://github.com/Krrish0621",
+ "author_avatar": "https://avatars.githubusercontent.com/u/183790930?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/183790930?v=4",
+ "profile_url": "https://github.com/Krrish0621"
+ },
+ "Rockyoudead8": {
+ "expectedPoints": 7,
+ "currentPoints": 7,
+ "levels": {
+ "level1": 0,
+ "level2": 1,
+ "level3": 0
+ },
+ "prs": [
+ {
+ "url": "https://github.com/SurajSG23/PrepBuddy/pull/45",
+ "title": "fix user taking test issue",
+ "repo": "SurajSG23/PrepBuddy",
+ "level": "level2",
+ "points": 7,
+ "created_at": "2025-07-27T08:35:41Z",
+ "updated_at": "2025-07-27T12:29:17Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-27T12:03:22Z",
+ "author_url": "https://github.com/Rockyoudead8",
+ "author_avatar": "https://avatars.githubusercontent.com/u/183371643?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/183371643?v=4",
+ "profile_url": "https://github.com/Rockyoudead8"
+ },
+ "Akhil092004": {
+ "expectedPoints": 7,
+ "currentPoints": 7,
+ "levels": {
+ "level1": 0,
+ "level2": 1,
+ "level3": 0
+ },
+ "prs": [
+ {
+ "url": "https://github.com/SurajSG23/PrepBuddy/pull/20",
+ "title": "Moved the pages to a seperate folder to improve code structure",
+ "repo": "SurajSG23/PrepBuddy",
+ "level": "level2",
+ "points": 7,
+ "created_at": "2025-07-23T17:53:42Z",
+ "updated_at": "2025-07-24T01:08:46Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-24T01:08:14Z",
+ "author_url": "https://github.com/Akhil092004",
+ "author_avatar": "https://avatars.githubusercontent.com/u/133607092?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/133607092?v=4",
+ "profile_url": "https://github.com/Akhil092004"
+ },
+ "Tanmay0215": {
+ "expectedPoints": 7,
+ "currentPoints": 7,
+ "levels": {
+ "level1": 0,
+ "level2": 1,
+ "level3": 0
+ },
+ "prs": [
+ {
+ "url": "https://github.com/swarooppatilx/bit-by-query/pull/7",
+ "title": "improved folder structure",
+ "repo": "swarooppatilx/bit-by-query",
+ "level": "level2",
+ "points": 7,
+ "created_at": "2025-07-23T05:54:58Z",
+ "updated_at": "2025-07-23T10:20:02Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-23T10:18:34Z",
+ "author_url": "https://github.com/Tanmay0215",
+ "author_avatar": "https://avatars.githubusercontent.com/u/134931600?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/134931600?v=4",
+ "profile_url": "https://github.com/Tanmay0215"
+ },
+ "Tripti-09": {
+ "expectedPoints": 7,
+ "currentPoints": 7,
+ "levels": {
+ "level1": 0,
+ "level2": 1,
+ "level3": 0
+ },
+ "prs": [
+ {
+ "url": "https://github.com/TanmayKalra09/SmartLog/pull/193",
+ "title": "Fixed: View and Download Transactions in Dashboard",
+ "repo": "TanmayKalra09/SmartLog",
+ "level": "level2",
+ "points": 7,
+ "created_at": "2025-08-02T09:35:58Z",
+ "updated_at": "2025-08-02T18:37:35Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-08-02T18:37:35Z",
+ "author_url": "https://github.com/Tripti-09",
+ "author_avatar": "https://avatars.githubusercontent.com/u/101690403?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/101690403?v=4",
+ "profile_url": "https://github.com/Tripti-09"
+ },
+ "Akshatk-star": {
+ "expectedPoints": 7,
+ "currentPoints": 7,
+ "levels": {
+ "level1": 0,
+ "level2": 1,
+ "level3": 0
+ },
+ "prs": [
+ {
+ "url": "https://github.com/TanmayKalra09/SmartLog/pull/192",
+ "title": "Update Dashboard.jsx",
+ "repo": "TanmayKalra09/SmartLog",
+ "level": "level2",
+ "points": 7,
+ "created_at": "2025-08-01T22:28:54Z",
+ "updated_at": "2025-08-02T18:45:56Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-08-02T18:45:56Z",
+ "author_url": "https://github.com/Akshatk-star",
+ "author_avatar": "https://avatars.githubusercontent.com/u/175176835?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/175176835?v=4",
+ "profile_url": "https://github.com/Akshatk-star"
+ },
+ "saniyashk1542": {
+ "expectedPoints": 7,
+ "currentPoints": 7,
+ "levels": {
+ "level1": 0,
+ "level2": 1,
+ "level3": 0
+ },
+ "prs": [
+ {
+ "url": "https://github.com/UTSAVS26/PyVerse/pull/1521",
+ "title": " Added PyTimer CLI countdown with Pomodoro, short & long break modes",
+ "repo": "UTSAVS26/PyVerse",
+ "level": "level2",
+ "points": 7,
+ "created_at": "2025-07-29T06:40:33Z",
+ "updated_at": "2025-08-02T07:50:33Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-08-02T07:50:33Z",
+ "author_url": "https://github.com/saniyashk1542",
+ "author_avatar": "https://avatars.githubusercontent.com/u/181200640?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/181200640?v=4",
+ "profile_url": "https://github.com/saniyashk1542"
+ },
+ "snehap27": {
+ "expectedPoints": 7,
+ "currentPoints": 7,
+ "levels": {
+ "level1": 0,
+ "level2": 1,
+ "level3": 0
+ },
+ "prs": [
+ {
+ "url": "https://github.com/UTSAVS26/PyVerse/pull/1517",
+ "title": "Added cycle detection code for Linked Lists",
+ "repo": "UTSAVS26/PyVerse",
+ "level": "level2",
+ "points": 7,
+ "created_at": "2025-07-28T15:02:55Z",
+ "updated_at": "2025-07-29T08:19:38Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-29T08:19:14Z",
+ "author_url": "https://github.com/snehap27",
+ "author_avatar": "https://avatars.githubusercontent.com/u/83826680?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/83826680?v=4",
+ "profile_url": "https://github.com/snehap27"
+ },
+ "Ritikavarshney-hub": {
+ "expectedPoints": 7,
+ "currentPoints": 7,
+ "levels": {
+ "level1": 0,
+ "level2": 1,
+ "level3": 0
+ },
+ "prs": [
+ {
+ "url": "https://github.com/UTSAVS26/PyVerse/pull/1479",
+ "title": "added code of issue raised",
+ "repo": "UTSAVS26/PyVerse",
+ "level": "level2",
+ "points": 7,
+ "created_at": "2025-07-25T11:28:04Z",
+ "updated_at": "2025-07-28T12:07:01Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-27T08:10:53Z",
+ "author_url": "https://github.com/Ritikavarshney-hub",
+ "author_avatar": "https://avatars.githubusercontent.com/u/183871601?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/183871601?v=4",
+ "profile_url": "https://github.com/Ritikavarshney-hub"
+ },
+ "singharyan006": {
+ "expectedPoints": 7,
+ "currentPoints": 7,
+ "levels": {
+ "level1": 0,
+ "level2": 1,
+ "level3": 0
+ },
+ "prs": [
+ {
+ "url": "https://github.com/VAIBHAVBABELE/vaibhavbabele.github.io/pull/180",
+ "title": "feat: Implement comprehensive security improvements for Nitra Mitra platform",
+ "repo": "VAIBHAVBABELE/vaibhavbabele.github.io",
+ "level": "level2",
+ "points": 7,
+ "created_at": "2025-07-29T07:30:09Z",
+ "updated_at": "2025-07-29T09:29:24Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-29T09:29:18Z",
+ "author_url": "https://github.com/singharyan006",
+ "author_avatar": "https://avatars.githubusercontent.com/u/180139884?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/180139884?v=4",
+ "profile_url": "https://github.com/singharyan006"
+ },
+ "Tanvi0710": {
+ "expectedPoints": 7,
+ "currentPoints": 7,
+ "levels": {
+ "level1": 0,
+ "level2": 1,
+ "level3": 0
+ },
+ "prs": [
+ {
+ "url": "https://github.com/VAIBHAVBABELE/vaibhavbabele.github.io/pull/91",
+ "title": "Update styles and content across multiple files",
+ "repo": "VAIBHAVBABELE/vaibhavbabele.github.io",
+ "level": "level2",
+ "points": 7,
+ "created_at": "2025-07-25T06:50:20Z",
+ "updated_at": "2025-07-25T10:43:46Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-25T10:43:46Z",
+ "author_url": "https://github.com/Tanvi0710",
+ "author_avatar": "https://avatars.githubusercontent.com/u/107190857?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/107190857?v=4",
+ "profile_url": "https://github.com/Tanvi0710"
+ },
+ "Triveni-Balekundri": {
+ "expectedPoints": 7,
+ "currentPoints": 7,
+ "levels": {
+ "level1": 0,
+ "level2": 1,
+ "level3": 0
+ },
+ "prs": [
+ {
+ "url": "https://github.com/VAIBHAVBABELE/vaibhavbabele.github.io/pull/37",
+ "title": "Fix: UI issues in announcement and user experience tables (Closes #16, #17)",
+ "repo": "VAIBHAVBABELE/vaibhavbabele.github.io",
+ "level": "level2",
+ "points": 7,
+ "created_at": "2025-07-23T08:30:00Z",
+ "updated_at": "2025-07-23T10:37:16Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-23T10:37:16Z",
+ "author_url": "https://github.com/Triveni-Balekundri",
+ "author_avatar": "https://avatars.githubusercontent.com/u/175484565?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/175484565?v=4",
+ "profile_url": "https://github.com/Triveni-Balekundri"
+ },
+ "Keshav8605": {
+ "expectedPoints": 7,
+ "currentPoints": 7,
+ "levels": {
+ "level1": 0,
+ "level2": 1,
+ "level3": 0
+ },
+ "prs": [
+ {
+ "url": "https://github.com/VJLIVE/Athletix/pull/62",
+ "title": "Auth ui improved and responsiveness added",
+ "repo": "vjlive/athletix",
+ "level": "level2",
+ "points": 7,
+ "created_at": "2025-07-30T15:45:08Z",
+ "updated_at": "2025-08-01T21:56:36Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-08-01T21:54:42Z",
+ "author_url": "https://github.com/Keshav8605",
+ "author_avatar": "https://avatars.githubusercontent.com/u/183610032?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/183610032?v=4",
+ "profile_url": "https://github.com/Keshav8605"
+ },
+ "RahulKeshri1": {
+ "expectedPoints": 7,
+ "currentPoints": 7,
+ "levels": {
+ "level1": 0,
+ "level2": 1,
+ "level3": 0
+ },
+ "prs": [
+ {
+ "url": "https://github.com/VJLIVE/Athletix/pull/30",
+ "title": "Add frontend validations to Signup Form (email, name, dob, password)",
+ "repo": "vjlive/athletix",
+ "level": "level2",
+ "points": 7,
+ "created_at": "2025-07-23T18:13:49Z",
+ "updated_at": "2025-07-28T21:45:08Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-23T20:38:51Z",
+ "author_url": "https://github.com/RahulKeshri1",
+ "author_avatar": "https://avatars.githubusercontent.com/u/106730408?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/106730408?v=4",
+ "profile_url": "https://github.com/RahulKeshri1"
+ },
+ "Salusha": {
+ "expectedPoints": 7,
+ "currentPoints": 7,
+ "levels": {
+ "level1": 0,
+ "level2": 1,
+ "level3": 0
+ },
+ "prs": [
+ {
+ "url": "https://github.com/openml-stack/SentiLog-AI/pull/119",
+ "title": "Enhanced Footer Section - #100",
+ "repo": "openml-stack/SentiLog-AI",
+ "level": "level2",
+ "points": 7,
+ "created_at": "2025-07-29T10:24:37Z",
+ "updated_at": "2025-07-30T16:36:20Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-30T16:33:56Z",
+ "author_url": "https://github.com/Salusha",
+ "author_avatar": "https://avatars.githubusercontent.com/u/166122741?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/166122741?v=4",
+ "profile_url": "https://github.com/Salusha"
+ },
+ "revanthsaich": {
+ "expectedPoints": 7,
+ "currentPoints": 7,
+ "levels": {
+ "level1": 0,
+ "level2": 1,
+ "level3": 0
+ },
+ "prs": [
+ {
+ "url": "https://github.com/openml-stack/SentiLog-AI/pull/99",
+ "title": "fixed Major UI issues Home,Analyse,Journel",
+ "repo": "openml-stack/SentiLog-AI",
+ "level": "level2",
+ "points": 7,
+ "created_at": "2025-07-28T07:56:34Z",
+ "updated_at": "2025-07-28T18:07:32Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-28T18:04:31Z",
+ "author_url": "https://github.com/revanthsaich",
+ "author_avatar": "https://avatars.githubusercontent.com/u/98806472?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/98806472?v=4",
+ "profile_url": "https://github.com/revanthsaich"
+ },
+ "PoojaRajput07": {
+ "expectedPoints": 7,
+ "currentPoints": 7,
+ "levels": {
+ "level1": 0,
+ "level2": 1,
+ "level3": 0
+ },
+ "prs": [
+ {
+ "url": "https://github.com/openml-stack/SentiLog-AI/pull/95",
+ "title": "Added Contact Page functionality with backend integration",
+ "repo": "openml-stack/SentiLog-AI",
+ "level": "level2",
+ "points": 7,
+ "created_at": "2025-07-28T07:27:26Z",
+ "updated_at": "2025-07-28T17:57:55Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-28T17:48:39Z",
+ "author_url": "https://github.com/PoojaRajput07",
+ "author_avatar": "https://avatars.githubusercontent.com/u/153544290?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/153544290?v=4",
+ "profile_url": "https://github.com/PoojaRajput07"
+ },
+ "anjany06": {
+ "expectedPoints": 7,
+ "currentPoints": 7,
+ "levels": {
+ "level1": 0,
+ "level2": 1,
+ "level3": 0
+ },
+ "prs": [
+ {
+ "url": "https://github.com/openml-stack/SentiLog-AI/pull/93",
+ "title": "Refactor and Created a HowItWorks section component to enhance structure",
+ "repo": "openml-stack/SentiLog-AI",
+ "level": "level2",
+ "points": 7,
+ "created_at": "2025-07-27T21:49:12Z",
+ "updated_at": "2025-07-28T06:32:17Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-28T06:32:06Z",
+ "author_url": "https://github.com/anjany06",
+ "author_avatar": "https://avatars.githubusercontent.com/u/158723491?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/158723491?v=4",
+ "profile_url": "https://github.com/anjany06"
+ },
+ "git112": {
+ "expectedPoints": 7,
+ "currentPoints": 7,
+ "levels": {
+ "level1": 0,
+ "level2": 1,
+ "level3": 0
+ },
+ "prs": [
+ {
+ "url": "https://github.com/openml-stack/SentiLog-AI/pull/79",
+ "title": "refactor(server): migrate from CommonJS require to ES6 import/export syntax",
+ "repo": "openml-stack/SentiLog-AI",
+ "level": "level2",
+ "points": 7,
+ "created_at": "2025-07-26T11:20:07Z",
+ "updated_at": "2025-07-30T16:44:09Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-30T16:41:48Z",
+ "author_url": "https://github.com/git112",
+ "author_avatar": "https://avatars.githubusercontent.com/u/152373937?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/152373937?v=4",
+ "profile_url": "https://github.com/git112"
+ },
+ "ahana4banerjee": {
+ "expectedPoints": 7,
+ "currentPoints": 7,
+ "levels": {
+ "level1": 0,
+ "level2": 1,
+ "level3": 0
+ },
+ "prs": [
+ {
+ "url": "https://github.com/openml-stack/SentiLog-AI/pull/78",
+ "title": "Added Privacy Policy page with navbar and footer links",
+ "repo": "openml-stack/SentiLog-AI",
+ "level": "level2",
+ "points": 7,
+ "created_at": "2025-07-26T11:04:22Z",
+ "updated_at": "2025-07-28T06:14:06Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-28T06:13:40Z",
+ "author_url": "https://github.com/ahana4banerjee",
+ "author_avatar": "https://avatars.githubusercontent.com/u/166562662?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/166562662?v=4",
+ "profile_url": "https://github.com/ahana4banerjee"
+ },
+ "Abhi95081": {
+ "expectedPoints": 7,
+ "currentPoints": 7,
+ "levels": {
+ "level1": 0,
+ "level2": 1,
+ "level3": 0
+ },
+ "prs": [
+ {
+ "url": "https://github.com/yuvrajsinghgmx/ShopSmart/pull/325",
+ "title": "Update AddProduct.kt",
+ "repo": "yuvrajsinghgmx/ShopSmart",
+ "level": "level2",
+ "points": 7,
+ "created_at": "2025-07-31T07:09:09Z",
+ "updated_at": "2025-07-31T07:27:35Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-31T07:27:16Z",
+ "author_url": "https://github.com/Abhi95081",
+ "author_avatar": "https://avatars.githubusercontent.com/u/147068739?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/147068739?v=4",
+ "profile_url": "https://github.com/Abhi95081"
+ },
+ "vijyush": {
+ "expectedPoints": 7,
+ "currentPoints": 7,
+ "levels": {
+ "level1": 0,
+ "level2": 1,
+ "level3": 0
+ },
+ "prs": [
+ {
+ "url": "https://github.com/yuvrajsinghgmx/ShopSmart/pull/317",
+ "title": "Added animated splash screen with diamond logo design",
+ "repo": "yuvrajsinghgmx/ShopSmart",
+ "level": "level2",
+ "points": 7,
+ "created_at": "2025-07-29T21:46:37Z",
+ "updated_at": "2025-08-01T11:10:48Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-30T04:12:57Z",
+ "author_url": "https://github.com/vijyush",
+ "author_avatar": "https://avatars.githubusercontent.com/u/159072654?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/159072654?v=4",
+ "profile_url": "https://github.com/vijyush"
+ },
+ "IshaanAggrawal": {
+ "expectedPoints": 12,
+ "currentPoints": 4,
+ "levels": {
+ "level1": 3,
+ "level2": 0,
+ "level3": 0
+ },
+ "prs": [
+ {
+ "url": "https://github.com/abhisek2004/Dev-Elevate/pull/21",
+ "title": "fix: Add scrollbar to notification panel in standard view",
+ "repo": "abhisek2004/Dev-Elevate",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-22T12:56:46Z",
+ "updated_at": "2025-07-23T06:34:06Z",
+ "state": "closed",
+ "merged": false,
+ "merged_at": null,
+ "author_url": "https://github.com/IshaanAggrawal",
+ "author_avatar": "https://avatars.githubusercontent.com/u/179376039?v=4"
+ },
+ {
+ "url": "https://github.com/abhisek2004/Dev-Elevate/pull/11",
+ "title": "fix: improve text readability on notification hover in light mode",
+ "repo": "abhisek2004/Dev-Elevate",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-22T07:34:30Z",
+ "updated_at": "2025-07-22T19:23:16Z",
+ "state": "closed",
+ "merged": false,
+ "merged_at": null,
+ "author_url": "https://github.com/IshaanAggrawal",
+ "author_avatar": "https://avatars.githubusercontent.com/u/179376039?v=4"
+ },
+ {
+ "url": "https://github.com/Abhishek2634/Foodie/pull/57",
+ "title": "fix: Adjust header max-width for large screens",
+ "repo": "Abhishek2634/Foodie",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-23T07:43:35Z",
+ "updated_at": "2025-08-02T10:52:12Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-24T04:31:23Z",
+ "author_url": "https://github.com/IshaanAggrawal",
+ "author_avatar": "https://avatars.githubusercontent.com/u/179376039?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/179376039?v=4",
+ "profile_url": "https://github.com/IshaanAggrawal"
+ },
+ "NamanSoni18": {
+ "expectedPoints": 4,
+ "currentPoints": 4,
+ "levels": {
+ "level1": 1,
+ "level2": 0,
+ "level3": 0
+ },
+ "prs": [
+ {
+ "url": "https://github.com/abhisek247767/PeopleHub-Frontend/pull/17",
+ "title": "Changed Button Colour to Black",
+ "repo": "abhisek247767/PeopleHub-Frontend",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-25T09:26:11Z",
+ "updated_at": "2025-07-25T13:35:46Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-25T13:35:46Z",
+ "author_url": "https://github.com/NamanSoni18",
+ "author_avatar": "https://avatars.githubusercontent.com/u/97269749?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/97269749?v=4",
+ "profile_url": "https://github.com/NamanSoni18"
+ },
+ "rawatjidelhiwale": {
+ "expectedPoints": 8,
+ "currentPoints": 4,
+ "levels": {
+ "level1": 2,
+ "level2": 0,
+ "level3": 0
+ },
+ "prs": [
+ {
+ "url": "https://github.com/abhisek247767/PeopleHub-Frontend/pull/16",
+ "title": "In this pull request i have added a new logo to favicon.ico and changed assest in angular.json file ",
+ "repo": "abhisek247767/PeopleHub-Frontend",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-25T08:14:32Z",
+ "updated_at": "2025-07-26T07:05:45Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-26T05:29:21Z",
+ "author_url": "https://github.com/rawatjidelhiwale",
+ "author_avatar": "https://avatars.githubusercontent.com/u/194055973?v=4"
+ },
+ {
+ "url": "https://github.com/abhisek247767/PeopleHub-Frontend/pull/6",
+ "title": "added PeopleHub and new logo",
+ "repo": "abhisek247767/PeopleHub-Frontend",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-22T09:59:36Z",
+ "updated_at": "2025-07-26T05:31:00Z",
+ "state": "closed",
+ "merged": false,
+ "merged_at": null,
+ "author_url": "https://github.com/rawatjidelhiwale",
+ "author_avatar": "https://avatars.githubusercontent.com/u/194055973?v=4"
+ },
+ {
+ "url": "https://github.com/Mujtabaa07/coffeeShop/pull/460",
+ "title": "Updated Navbar.js",
+ "repo": "Mujtabaa07/coffeeShop",
+ "level": null,
+ "points": 0,
+ "created_at": "2025-07-23T16:50:17Z",
+ "updated_at": "2025-07-24T16:04:54Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-24T16:04:34Z",
+ "author_url": "https://github.com/rawatjidelhiwale",
+ "author_avatar": "https://avatars.githubusercontent.com/u/194055973?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/194055973?v=4",
+ "profile_url": "https://github.com/rawatjidelhiwale"
+ },
+ "Abhishek2634": {
+ "expectedPoints": 4,
+ "currentPoints": 4,
+ "levels": {
+ "level1": 1,
+ "level2": 0,
+ "level3": 0
+ },
+ "prs": [
+ {
+ "url": "https://github.com/Abhishek2634/Foodie/pull/220",
+ "title": "Revert \"Fixed time delay in google login\"",
+ "repo": "Abhishek2634/Foodie",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-08-01T09:18:08Z",
+ "updated_at": "2025-08-02T11:20:56Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-08-01T09:18:16Z",
+ "author_url": "https://github.com/Abhishek2634",
+ "author_avatar": "https://avatars.githubusercontent.com/u/136872441?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/136872441?v=4",
+ "profile_url": "https://github.com/Abhishek2634"
+ },
+ "Khushbu8130": {
+ "expectedPoints": 4,
+ "currentPoints": 4,
+ "levels": {
+ "level1": 1,
+ "level2": 0,
+ "level3": 0
+ },
+ "prs": [
+ {
+ "url": "https://github.com/Abhishek2634/Foodie/pull/184",
+ "title": "fix: make social links clickable and redirects to respective URLs #162",
+ "repo": "Abhishek2634/Foodie",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-30T11:00:07Z",
+ "updated_at": "2025-08-02T11:16:21Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-30T11:14:41Z",
+ "author_url": "https://github.com/Khushbu8130",
+ "author_avatar": "https://avatars.githubusercontent.com/u/131510344?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/131510344?v=4",
+ "profile_url": "https://github.com/Khushbu8130"
+ },
+ "akshat991-spec": {
+ "expectedPoints": 4,
+ "currentPoints": 4,
+ "levels": {
+ "level1": 1,
+ "level2": 0,
+ "level3": 0
+ },
+ "prs": [
+ {
+ "url": "https://github.com/Abhishek2634/Foodie/pull/120",
+ "title": "Fixed Logo issue",
+ "repo": "Abhishek2634/Foodie",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-26T13:53:55Z",
+ "updated_at": "2025-08-02T11:01:25Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-26T17:37:06Z",
+ "author_url": "https://github.com/akshat991-spec",
+ "author_avatar": "https://avatars.githubusercontent.com/u/193666143?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/193666143?v=4",
+ "profile_url": "https://github.com/akshat991-spec"
+ },
+ "imBharathkumarp": {
+ "expectedPoints": 4,
+ "currentPoints": 4,
+ "levels": {
+ "level1": 1,
+ "level2": 0,
+ "level3": 0
+ },
+ "prs": [
+ {
+ "url": "https://github.com/Abhishek2634/Foodie/pull/113",
+ "title": "Added table of contents with Toggle Button",
+ "repo": "Abhishek2634/Foodie",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-25T17:49:27Z",
+ "updated_at": "2025-08-02T11:00:06Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-26T03:54:42Z",
+ "author_url": "https://github.com/imBharathkumarp",
+ "author_avatar": "https://avatars.githubusercontent.com/u/117274872?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/117274872?v=4",
+ "profile_url": "https://github.com/imBharathkumarp"
+ },
+ "DivyanshTulsiani": {
+ "expectedPoints": 4,
+ "currentPoints": 4,
+ "levels": {
+ "level1": 1,
+ "level2": 0,
+ "level3": 0
+ },
+ "prs": [
+ {
+ "url": "https://github.com/Adarsh-Chaubey03/TravelGrid/pull/486",
+ "title": "gototop button properly fixed no overlap and in line",
+ "repo": "Adarsh-Chaubey03/TravelGrid",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-08-02T15:16:03Z",
+ "updated_at": "2025-08-02T18:23:26Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-08-02T18:23:09Z",
+ "author_url": "https://github.com/DivyanshTulsiani",
+ "author_avatar": "https://avatars.githubusercontent.com/u/157114498?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/157114498?v=4",
+ "profile_url": "https://github.com/DivyanshTulsiani"
+ },
+ "adiachar": {
+ "expectedPoints": 4,
+ "currentPoints": 4,
+ "levels": {
+ "level1": 1,
+ "level2": 0,
+ "level3": 0
+ },
+ "prs": [
+ {
+ "url": "https://github.com/Adarsh-Chaubey03/TravelGrid/pull/465",
+ "title": "The dashboard was touching the navbar. Fixed it by adding margin to the top. ",
+ "repo": "Adarsh-Chaubey03/TravelGrid",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-08-02T09:14:34Z",
+ "updated_at": "2025-08-02T10:10:58Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-08-02T10:09:41Z",
+ "author_url": "https://github.com/adiachar",
+ "author_avatar": "https://avatars.githubusercontent.com/u/158312641?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/158312641?v=4",
+ "profile_url": "https://github.com/adiachar"
+ },
+ "Ramlah7": {
+ "expectedPoints": 4,
+ "currentPoints": 4,
+ "levels": {
+ "level1": 1,
+ "level2": 0,
+ "level3": 0
+ },
+ "prs": [
+ {
+ "url": "https://github.com/Adarsh-Chaubey03/TravelGrid/pull/450",
+ "title": "Fix 'buss' typo using PluralMap in TicketBooking page",
+ "repo": "Adarsh-Chaubey03/TravelGrid",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-08-01T21:51:33Z",
+ "updated_at": "2025-08-02T02:51:54Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-08-02T02:51:42Z",
+ "author_url": "https://github.com/Ramlah7",
+ "author_avatar": "https://avatars.githubusercontent.com/u/175896348?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/175896348?v=4",
+ "profile_url": "https://github.com/Ramlah7"
+ },
+ "Priyanshu91930": {
+ "expectedPoints": 4,
+ "currentPoints": 4,
+ "levels": {
+ "level1": 1,
+ "level2": 0,
+ "level3": 0
+ },
+ "prs": [
+ {
+ "url": "https://github.com/Adarsh-Chaubey03/TravelGrid/pull/444",
+ "title": "fixed JSX Syntax Error:",
+ "repo": "Adarsh-Chaubey03/TravelGrid",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-08-01T17:05:20Z",
+ "updated_at": "2025-08-01T17:15:45Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-08-01T17:15:32Z",
+ "author_url": "https://github.com/Priyanshu91930",
+ "author_avatar": "https://avatars.githubusercontent.com/u/131973299?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/131973299?v=4",
+ "profile_url": "https://github.com/Priyanshu91930"
+ },
+ "dewanshhh24": {
+ "expectedPoints": 8,
+ "currentPoints": 4,
+ "levels": {
+ "level1": 2,
+ "level2": 0,
+ "level3": 0
+ },
+ "prs": [
+ {
+ "url": "https://github.com/Adarsh-Chaubey03/TravelGrid/pull/420",
+ "title": "feat: update Twitter logo to new X branding",
+ "repo": "Adarsh-Chaubey03/TravelGrid",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-31T17:45:48Z",
+ "updated_at": "2025-08-01T01:54:34Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-08-01T01:54:22Z",
+ "author_url": "https://github.com/dewanshhh24",
+ "author_avatar": "https://avatars.githubusercontent.com/u/163340981?v=4"
+ },
+ {
+ "url": "https://github.com/Kritika75/TheCawnporeMag.github.io/pull/331",
+ "title": "fix: made footer year dynamic using JavaScript",
+ "repo": "Kritika75/TheCawnporeMag.github.io",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-08-01T07:29:14Z",
+ "updated_at": "2025-08-03T06:33:56Z",
+ "state": "open",
+ "merged": false,
+ "merged_at": null,
+ "author_url": "https://github.com/dewanshhh24",
+ "author_avatar": "https://avatars.githubusercontent.com/u/163340981?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/163340981?v=4",
+ "profile_url": "https://github.com/dewanshhh24"
+ },
+ "pavansharan007": {
+ "expectedPoints": 4,
+ "currentPoints": 4,
+ "levels": {
+ "level1": 1,
+ "level2": 0,
+ "level3": 0
+ },
+ "prs": [
+ {
+ "url": "https://github.com/Adarsh-Chaubey03/TravelGrid/pull/411",
+ "title": "Fix : Hotels page hero section title color",
+ "repo": "Adarsh-Chaubey03/TravelGrid",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-31T16:22:13Z",
+ "updated_at": "2025-07-31T16:42:25Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-31T16:42:03Z",
+ "author_url": "https://github.com/pavansharan007",
+ "author_avatar": "https://avatars.githubusercontent.com/u/205342260?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/205342260?v=4",
+ "profile_url": "https://github.com/pavansharan007"
+ },
+ "Pree-om": {
+ "expectedPoints": 4,
+ "currentPoints": 4,
+ "levels": {
+ "level1": 1,
+ "level2": 0,
+ "level3": 0
+ },
+ "prs": [
+ {
+ "url": "https://github.com/Adarsh-Chaubey03/TravelGrid/pull/317",
+ "title": "Update authController.js",
+ "repo": "Adarsh-Chaubey03/TravelGrid",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-29T03:25:29Z",
+ "updated_at": "2025-07-30T03:54:23Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-30T03:53:51Z",
+ "author_url": "https://github.com/Pree-om",
+ "author_avatar": "https://avatars.githubusercontent.com/u/196415285?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/196415285?v=4",
+ "profile_url": "https://github.com/Pree-om"
+ },
+ "Mehtarishita": {
+ "expectedPoints": 4,
+ "currentPoints": 4,
+ "levels": {
+ "level1": 1,
+ "level2": 0,
+ "level3": 0
+ },
+ "prs": [
+ {
+ "url": "https://github.com/Adarsh-Chaubey03/TravelGrid/pull/96",
+ "title": "Image Added",
+ "repo": "Adarsh-Chaubey03/TravelGrid",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-22T18:28:53Z",
+ "updated_at": "2025-07-23T03:18:06Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-23T03:18:05Z",
+ "author_url": "https://github.com/Mehtarishita",
+ "author_avatar": "https://avatars.githubusercontent.com/u/167749636?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/167749636?v=4",
+ "profile_url": "https://github.com/Mehtarishita"
+ },
+ "Methika2005": {
+ "expectedPoints": 4,
+ "currentPoints": 4,
+ "levels": {
+ "level1": 1,
+ "level2": 0,
+ "level3": 0
+ },
+ "prs": [
+ {
+ "url": "https://github.com/opensource-society/CodeClip/pull/315",
+ "title": "Fixed the spelling of LinkedIn",
+ "repo": "opensource-society/CodeClip",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-29T13:22:46Z",
+ "updated_at": "2025-07-30T00:06:41Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-30T00:06:02Z",
+ "author_url": "https://github.com/Methika2005",
+ "author_avatar": "https://avatars.githubusercontent.com/u/184766275?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/184766275?v=4",
+ "profile_url": "https://github.com/Methika2005"
+ },
+ "cosmicTitiksha": {
+ "expectedPoints": 4,
+ "currentPoints": 4,
+ "levels": {
+ "level1": 1,
+ "level2": 0,
+ "level3": 0
+ },
+ "prs": [
+ {
+ "url": "https://github.com/opensource-society/CodeClip/pull/30",
+ "title": "Implemented hero section for landing page.",
+ "repo": "opensource-society/CodeClip",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-21T19:46:34Z",
+ "updated_at": "2025-07-22T07:30:03Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-22T07:30:03Z",
+ "author_url": "https://github.com/cosmicTitiksha",
+ "author_avatar": "https://avatars.githubusercontent.com/u/202399130?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/202399130?v=4",
+ "profile_url": "https://github.com/cosmicTitiksha"
+ },
+ "jdhruv555": {
+ "expectedPoints": 4,
+ "currentPoints": 4,
+ "levels": {
+ "level1": 1,
+ "level2": 0,
+ "level3": 0
+ },
+ "prs": [
+ {
+ "url": "https://github.com/opensource-society/CodeClip/pull/20",
+ "title": "Add responsive header with logo, navigation, and mobile hamburger menu",
+ "repo": "opensource-society/CodeClip",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-21T15:24:30Z",
+ "updated_at": "2025-07-22T05:55:54Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-22T05:55:54Z",
+ "author_url": "https://github.com/jdhruv555",
+ "author_avatar": "https://avatars.githubusercontent.com/u/135132021?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/135132021?v=4",
+ "profile_url": "https://github.com/jdhruv555"
+ },
+ "Radhika984": {
+ "expectedPoints": 8,
+ "currentPoints": 4,
+ "levels": {
+ "level1": 2,
+ "level2": 0,
+ "level3": 0
+ },
+ "prs": [
+ {
+ "url": "https://github.com/opensource-society/notesvault/pull/54",
+ "title": "fix: resolved Browse Notes bug (closes #47)Browse notes fix",
+ "repo": "opensource-society/NotesVault",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-22T08:55:12Z",
+ "updated_at": "2025-07-22T09:32:19Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-22T09:30:15Z",
+ "author_url": "https://github.com/Radhika984",
+ "author_avatar": "https://avatars.githubusercontent.com/u/185366211?v=4"
+ },
+ {
+ "url": "https://github.com/opensource-society/notesvault/pull/33",
+ "title": "Add upload.html and link to homepage (Fixes: #29)",
+ "repo": "opensource-society/NotesVault",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-22T05:39:34Z",
+ "updated_at": "2025-07-22T07:44:27Z",
+ "state": "closed",
+ "merged": false,
+ "merged_at": null,
+ "author_url": "https://github.com/Radhika984",
+ "author_avatar": "https://avatars.githubusercontent.com/u/185366211?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/185366211?v=4",
+ "profile_url": "https://github.com/Radhika984"
+ },
+ "SHUBBHAM-KUMARR": {
+ "expectedPoints": 4,
+ "currentPoints": 4,
+ "levels": {
+ "level1": 1,
+ "level2": 0,
+ "level3": 0
+ },
+ "prs": [
+ {
+ "url": "https://github.com/opensource-society/notesvault/pull/16",
+ "title": "resloved merge conflict by removing my code and keeping the right version",
+ "repo": "opensource-society/NotesVault",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-21T16:54:10Z",
+ "updated_at": "2025-07-22T04:42:16Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-22T04:42:00Z",
+ "author_url": "https://github.com/SHUBBHAM-KUMARR",
+ "author_avatar": "https://avatars.githubusercontent.com/u/186911871?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/186911871?v=4",
+ "profile_url": "https://github.com/SHUBBHAM-KUMARR"
+ },
+ "suedaysse": {
+ "expectedPoints": 4,
+ "currentPoints": 4,
+ "levels": {
+ "level1": 1,
+ "level2": 0,
+ "level3": 0
+ },
+ "prs": [
+ {
+ "url": "https://github.com/opensource-society/notesvault/pull/10",
+ "title": "Add static navigation bar layout with HTML and CSS",
+ "repo": "opensource-society/NotesVault",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-10T19:38:49Z",
+ "updated_at": "2025-07-22T05:06:54Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-17T15:55:12Z",
+ "author_url": "https://github.com/suedaysse",
+ "author_avatar": "https://avatars.githubusercontent.com/u/185979899?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/185979899?v=4",
+ "profile_url": "https://github.com/suedaysse"
+ },
+ "Sahilxrajput": {
+ "expectedPoints": 4,
+ "currentPoints": 4,
+ "levels": {
+ "level1": 1,
+ "level2": 0,
+ "level3": 0
+ },
+ "prs": [
+ {
+ "url": "https://github.com/huamanraj/aitoolbox.software/pull/16",
+ "title": "Updating sidebar! add adding about and legal pages",
+ "repo": "huamanraj/aitoolbox.software",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-24T18:50:28Z",
+ "updated_at": "2025-07-24T19:22:15Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-24T19:21:37Z",
+ "author_url": "https://github.com/Sahilxrajput",
+ "author_avatar": "https://avatars.githubusercontent.com/u/189414656?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/189414656?v=4",
+ "profile_url": "https://github.com/Sahilxrajput"
+ },
+ "i-shivii": {
+ "expectedPoints": 8,
+ "currentPoints": 4,
+ "levels": {
+ "level1": 2,
+ "level2": 0,
+ "level3": 0
+ },
+ "prs": [
+ {
+ "url": "https://github.com/Amarjha01/InfantCareCompass/pull/186",
+ "title": "✅ Removed Unnecessary white line",
+ "repo": "Amarjha01/InfantCareCompass",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-08-02T13:54:01Z",
+ "updated_at": "2025-08-03T06:37:10Z",
+ "state": "open",
+ "merged": false,
+ "merged_at": null,
+ "author_url": "https://github.com/i-shivii",
+ "author_avatar": "https://avatars.githubusercontent.com/u/136483704?v=4"
+ },
+ {
+ "url": "https://github.com/Bavanetha27/Refixly/pull/49",
+ "title": "Incorrect Routing fixed ",
+ "repo": "Bavanetha27/Refixly",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-30T06:13:06Z",
+ "updated_at": "2025-08-01T10:48:19Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-30T06:15:42Z",
+ "author_url": "https://github.com/i-shivii",
+ "author_avatar": "https://avatars.githubusercontent.com/u/136483704?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/136483704?v=4",
+ "profile_url": "https://github.com/i-shivii"
+ },
+ "rajashre-e": {
+ "expectedPoints": 4,
+ "currentPoints": 4,
+ "levels": {
+ "level1": 1,
+ "level2": 0,
+ "level3": 0
+ },
+ "prs": [
+ {
+ "url": "https://github.com/Amarjha01/InfantCareCompass/pull/117",
+ "title": "Cleaned up server/index.js for better readability.",
+ "repo": "Amarjha01/InfantCareCompass",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-26T15:48:37Z",
+ "updated_at": "2025-07-28T14:27:02Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-28T14:26:54Z",
+ "author_url": "https://github.com/rajashre-e",
+ "author_avatar": "https://avatars.githubusercontent.com/u/145351880?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/145351880?v=4",
+ "profile_url": "https://github.com/rajashre-e"
+ },
+ "PThanushree": {
+ "expectedPoints": 4,
+ "currentPoints": 4,
+ "levels": {
+ "level1": 1,
+ "level2": 0,
+ "level3": 0
+ },
+ "prs": [
+ {
+ "url": "https://github.com/Amarjha01/InfantCareCompass/pull/105",
+ "title": "Rectified read more button redirection",
+ "repo": "Amarjha01/InfantCareCompass",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-26T05:34:00Z",
+ "updated_at": "2025-07-28T15:20:39Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-28T15:20:18Z",
+ "author_url": "https://github.com/PThanushree",
+ "author_avatar": "https://avatars.githubusercontent.com/u/181540524?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/181540524?v=4",
+ "profile_url": "https://github.com/PThanushree"
+ },
+ "shaili-dixit": {
+ "expectedPoints": 4,
+ "currentPoints": 4,
+ "levels": {
+ "level1": 1,
+ "level2": 0,
+ "level3": 0
+ },
+ "prs": [
+ {
+ "url": "https://github.com/Amarjha01/InfantCareCompass/pull/50",
+ "title": "Shaili dixit patch 2",
+ "repo": "Amarjha01/InfantCareCompass",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-23T04:59:52Z",
+ "updated_at": "2025-07-23T05:03:49Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-23T05:02:09Z",
+ "author_url": "https://github.com/shaili-dixit",
+ "author_avatar": "https://avatars.githubusercontent.com/u/183931385?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/183931385?v=4",
+ "profile_url": "https://github.com/shaili-dixit"
+ },
+ "Jenix-YT": {
+ "expectedPoints": 4,
+ "currentPoints": 4,
+ "levels": {
+ "level1": 1,
+ "level2": 0,
+ "level3": 0
+ },
+ "prs": [
+ {
+ "url": "https://github.com/Amarjha01/InfantCareCompass/pull/17",
+ "title": "fix: update footer email to help@infantcarecompass.live",
+ "repo": "Amarjha01/InfantCareCompass",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-20T12:06:49Z",
+ "updated_at": "2025-07-20T12:11:17Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-20T12:09:02Z",
+ "author_url": "https://github.com/Jenix-YT",
+ "author_avatar": "https://avatars.githubusercontent.com/u/125660787?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/125660787?v=4",
+ "profile_url": "https://github.com/Jenix-YT"
+ },
+ "Kirti-1": {
+ "expectedPoints": 4,
+ "currentPoints": 4,
+ "levels": {
+ "level1": 1,
+ "level2": 0,
+ "level3": 0
+ },
+ "prs": [
+ {
+ "url": "https://github.com/Ananya-te/MusicTrackerAPI/pull/8",
+ "title": "Defect | Incorrect API Path in MusicAPI.html Caused Fetch Failure",
+ "repo": "Ananya-te/MusicTrackerAPI",
+ "level": null,
+ "points": 0,
+ "created_at": "2025-07-24T02:30:41Z",
+ "updated_at": "2025-08-02T18:07:54Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-08-02T18:06:52Z",
+ "author_url": "https://github.com/Kirti-1",
+ "author_avatar": "https://avatars.githubusercontent.com/u/62488064?v=4"
+ },
+ {
+ "url": "https://github.com/itsAnimation/AnimateItNow/pull/135",
+ "title": "Update index.html",
+ "repo": "itsAnimation/AnimateItNow",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-23T03:54:36Z",
+ "updated_at": "2025-07-24T21:19:06Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-24T21:19:06Z",
+ "author_url": "https://github.com/Kirti-1",
+ "author_avatar": "https://avatars.githubusercontent.com/u/62488064?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/62488064?v=4",
+ "profile_url": "https://github.com/Kirti-1"
+ },
+ "siddhikasavant": {
+ "expectedPoints": 4,
+ "currentPoints": 4,
+ "levels": {
+ "level1": 1,
+ "level2": 0,
+ "level3": 0
+ },
+ "prs": [
+ {
+ "url": "https://github.com/Ananya-te/MusicTrackerAPI/pull/4",
+ "title": "Improved README file formatting",
+ "repo": "Ananya-te/MusicTrackerAPI",
+ "level": null,
+ "points": 0,
+ "created_at": "2025-07-23T14:43:15Z",
+ "updated_at": "2025-08-02T17:51:25Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-08-02T17:24:48Z",
+ "author_url": "https://github.com/siddhikasavant",
+ "author_avatar": "https://avatars.githubusercontent.com/u/201607343?v=4"
+ },
+ {
+ "url": "https://github.com/saumyayadav25/cpp-dsa-sheet-testing/pull/61",
+ "title": "Added Custom Logo for DSAMate - Light, Dark & Favicon Versions",
+ "repo": "saumyayadav25/cpp-dsa-sheet-testing",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-26T17:05:02Z",
+ "updated_at": "2025-07-28T07:27:37Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-27T10:44:42Z",
+ "author_url": "https://github.com/siddhikasavant",
+ "author_avatar": "https://avatars.githubusercontent.com/u/201607343?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/201607343?v=4",
+ "profile_url": "https://github.com/siddhikasavant"
+ },
+ "Abishek1254": {
+ "expectedPoints": 4,
+ "currentPoints": 4,
+ "levels": {
+ "level1": 1,
+ "level2": 0,
+ "level3": 0
+ },
+ "prs": [
+ {
+ "url": "https://github.com/itsAnimation/AnimateItNow/pull/743",
+ "title": "Created a successfull toast for get-in-touch form",
+ "repo": "itsAnimation/AnimateItNow",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-08-01T16:16:05Z",
+ "updated_at": "2025-08-02T06:15:22Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-08-02T06:15:04Z",
+ "author_url": "https://github.com/Abishek1254",
+ "author_avatar": "https://avatars.githubusercontent.com/u/148463165?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/148463165?v=4",
+ "profile_url": "https://github.com/Abishek1254"
+ },
+ "notAryan10": {
+ "expectedPoints": 4,
+ "currentPoints": 4,
+ "levels": {
+ "level1": 1,
+ "level2": 0,
+ "level3": 0
+ },
+ "prs": [
+ {
+ "url": "https://github.com/itsAnimation/AnimateItNow/pull/661",
+ "title": "Fix toggle alignment and Newton's Cradle animation",
+ "repo": "itsAnimation/AnimateItNow",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-30T04:39:05Z",
+ "updated_at": "2025-07-30T06:29:37Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-30T06:29:37Z",
+ "author_url": "https://github.com/notAryan10",
+ "author_avatar": "https://avatars.githubusercontent.com/u/184558940?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/184558940?v=4",
+ "profile_url": "https://github.com/notAryan10"
+ },
+ "Abhay-aps001": {
+ "expectedPoints": 4,
+ "currentPoints": 4,
+ "levels": {
+ "level1": 1,
+ "level2": 0,
+ "level3": 0
+ },
+ "prs": [
+ {
+ "url": "https://github.com/itsAnimation/AnimateItNow/pull/659",
+ "title": "Fix: Updated email link to open Gmail directly",
+ "repo": "itsAnimation/AnimateItNow",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-29T20:33:45Z",
+ "updated_at": "2025-07-30T12:56:21Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-29T21:15:36Z",
+ "author_url": "https://github.com/Abhay-aps001",
+ "author_avatar": "https://avatars.githubusercontent.com/u/177462428?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/177462428?v=4",
+ "profile_url": "https://github.com/Abhay-aps001"
+ },
+ "mitron8": {
+ "expectedPoints": 4,
+ "currentPoints": 4,
+ "levels": {
+ "level1": 1,
+ "level2": 0,
+ "level3": 0
+ },
+ "prs": [
+ {
+ "url": "https://github.com/itsAnimation/AnimateItNow/pull/531",
+ "title": "Added A New Toggle Name Orbit Flip",
+ "repo": "itsAnimation/AnimateItNow",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-27T07:53:40Z",
+ "updated_at": "2025-07-27T08:22:28Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-27T08:22:28Z",
+ "author_url": "https://github.com/mitron8",
+ "author_avatar": "https://avatars.githubusercontent.com/u/64032480?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/64032480?v=4",
+ "profile_url": "https://github.com/mitron8"
+ },
+ "Gupta-Vanshika": {
+ "expectedPoints": 4,
+ "currentPoints": 4,
+ "levels": {
+ "level1": 1,
+ "level2": 0,
+ "level3": 0
+ },
+ "prs": [
+ {
+ "url": "https://github.com/itsAnimation/AnimateItNow/pull/406",
+ "title": "Adding a opaque hover effect in the templates gallery",
+ "repo": "itsAnimation/AnimateItNow",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-25T13:28:37Z",
+ "updated_at": "2025-07-25T14:07:01Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-25T14:07:01Z",
+ "author_url": "https://github.com/Gupta-Vanshika",
+ "author_avatar": "https://avatars.githubusercontent.com/u/192697614?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/192697614?v=4",
+ "profile_url": "https://github.com/Gupta-Vanshika"
+ },
+ "ACHALGAJBHIYE": {
+ "expectedPoints": 4,
+ "currentPoints": 4,
+ "levels": {
+ "level1": 1,
+ "level2": 0,
+ "level3": 0
+ },
+ "prs": [
+ {
+ "url": "https://github.com/itsAnimation/AnimateItNow/pull/389",
+ "title": "Added new FAQ",
+ "repo": "itsAnimation/AnimateItNow",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-25T09:58:56Z",
+ "updated_at": "2025-07-25T15:20:20Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-25T15:20:20Z",
+ "author_url": "https://github.com/ACHALGAJBHIYE",
+ "author_avatar": "https://avatars.githubusercontent.com/u/127335581?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/127335581?v=4",
+ "profile_url": "https://github.com/ACHALGAJBHIYE"
+ },
+ "Avneetbhatia12": {
+ "expectedPoints": 4,
+ "currentPoints": 4,
+ "levels": {
+ "level1": 1,
+ "level2": 0,
+ "level3": 0
+ },
+ "prs": [
+ {
+ "url": "https://github.com/itsAnimation/AnimateItNow/pull/353",
+ "title": "Added link to the Project Admin's name on hover",
+ "repo": "itsAnimation/AnimateItNow",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-24T21:46:52Z",
+ "updated_at": "2025-07-30T19:18:57Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-30T19:18:57Z",
+ "author_url": "https://github.com/Avneetbhatia12",
+ "author_avatar": "https://avatars.githubusercontent.com/u/182329969?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/182329969?v=4",
+ "profile_url": "https://github.com/Avneetbhatia12"
+ },
+ "Sindhura-Karumuri": {
+ "expectedPoints": 4,
+ "currentPoints": 4,
+ "levels": {
+ "level1": 1,
+ "level2": 0,
+ "level3": 0
+ },
+ "prs": [
+ {
+ "url": "https://github.com/itsAnimation/AnimateItNow/pull/248",
+ "title": "fixed the issue",
+ "repo": "itsAnimation/AnimateItNow",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-23T17:01:40Z",
+ "updated_at": "2025-07-23T20:40:59Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-23T20:40:59Z",
+ "author_url": "https://github.com/Sindhura-Karumuri",
+ "author_avatar": "https://avatars.githubusercontent.com/u/169550646?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/169550646?v=4",
+ "profile_url": "https://github.com/Sindhura-Karumuri"
+ },
+ "DivyomChaudhary": {
+ "expectedPoints": 4,
+ "currentPoints": 4,
+ "levels": {
+ "level1": 1,
+ "level2": 0,
+ "level3": 0
+ },
+ "prs": [
+ {
+ "url": "https://github.com/itsAnimation/AnimateItNow/pull/198",
+ "title": "Add footer animations and icons",
+ "repo": "itsAnimation/AnimateItNow",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-23T11:47:06Z",
+ "updated_at": "2025-07-23T12:30:29Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-23T12:13:01Z",
+ "author_url": "https://github.com/DivyomChaudhary",
+ "author_avatar": "https://avatars.githubusercontent.com/u/73112674?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/73112674?v=4",
+ "profile_url": "https://github.com/DivyomChaudhary"
+ },
+ "kunalsanga": {
+ "expectedPoints": 4,
+ "currentPoints": 4,
+ "levels": {
+ "level1": 1,
+ "level2": 0,
+ "level3": 0
+ },
+ "prs": [
+ {
+ "url": "https://github.com/itsAnimation/AnimateItNow/pull/184",
+ "title": "Add Animated Social Share Buttons Component",
+ "repo": "itsAnimation/AnimateItNow",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-23T10:45:22Z",
+ "updated_at": "2025-07-27T08:42:38Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-27T08:42:38Z",
+ "author_url": "https://github.com/kunalsanga",
+ "author_avatar": "https://avatars.githubusercontent.com/u/152892694?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/152892694?v=4",
+ "profile_url": "https://github.com/kunalsanga"
+ },
+ "DivyanshuVortex": {
+ "expectedPoints": 4,
+ "currentPoints": 4,
+ "levels": {
+ "level1": 1,
+ "level2": 0,
+ "level3": 0
+ },
+ "prs": [
+ {
+ "url": "https://github.com/itsAnimation/AnimateItNow/pull/170",
+ "title": "Fix : #165",
+ "repo": "itsAnimation/AnimateItNow",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-23T08:52:38Z",
+ "updated_at": "2025-07-23T09:06:12Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-23T09:06:12Z",
+ "author_url": "https://github.com/DivyanshuVortex",
+ "author_avatar": "https://avatars.githubusercontent.com/u/197648331?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/197648331?v=4",
+ "profile_url": "https://github.com/DivyanshuVortex"
+ },
+ "AkshitBhandariCodes": {
+ "expectedPoints": 11,
+ "currentPoints": 4,
+ "levels": {
+ "level1": 1,
+ "level2": 1,
+ "level3": 0
+ },
+ "prs": [
+ {
+ "url": "https://github.com/itsAnimation/AnimateItNow/pull/100",
+ "title": "glassmorphism",
+ "repo": "itsAnimation/AnimateItNow",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-22T16:47:52Z",
+ "updated_at": "2025-07-22T21:23:52Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-22T21:23:52Z",
+ "author_url": "https://github.com/AkshitBhandariCodes",
+ "author_avatar": "https://avatars.githubusercontent.com/u/174789015?v=4"
+ },
+ {
+ "url": "https://github.com/Menthub-GSSoC/Menthub/pull/15",
+ "title": "Togglebutton",
+ "repo": "anugit24/Menthub",
+ "level": "level2",
+ "points": 7,
+ "created_at": "2025-07-23T09:48:25Z",
+ "updated_at": "2025-07-28T10:51:53Z",
+ "state": "open",
+ "merged": false,
+ "merged_at": null,
+ "author_url": "https://github.com/AkshitBhandariCodes",
+ "author_avatar": "https://avatars.githubusercontent.com/u/174789015?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/174789015?v=4",
+ "profile_url": "https://github.com/AkshitBhandariCodes"
+ },
+ "deepshruti": {
+ "expectedPoints": 4,
+ "currentPoints": 4,
+ "levels": {
+ "level1": 1,
+ "level2": 0,
+ "level3": 0
+ },
+ "prs": [
+ {
+ "url": "https://github.com/itsAnimation/AnimateItNow/pull/65",
+ "title": "Added list group and improved styles in styles.css",
+ "repo": "itsAnimation/AnimateItNow",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-22T11:54:34Z",
+ "updated_at": "2025-07-22T12:35:51Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-22T12:35:51Z",
+ "author_url": "https://github.com/deepshruti",
+ "author_avatar": "https://avatars.githubusercontent.com/u/182008057?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/182008057?v=4",
+ "profile_url": "https://github.com/deepshruti"
+ },
+ "ParagDevda": {
+ "expectedPoints": 4,
+ "currentPoints": 4,
+ "levels": {
+ "level1": 1,
+ "level2": 0,
+ "level3": 0
+ },
+ "prs": [
+ {
+ "url": "https://github.com/Menthub-GSSoC/Menthub/pull/20",
+ "title": "fixed this issue(Enhance README for Better Clarity, Onboarding & Engagement #1) by creating the readme.md file",
+ "repo": "anugit24/Menthub",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-25T17:07:17Z",
+ "updated_at": "2025-07-25T18:48:28Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-25T18:48:28Z",
+ "author_url": "https://github.com/ParagDevda",
+ "author_avatar": "https://avatars.githubusercontent.com/u/162866291?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/162866291?v=4",
+ "profile_url": "https://github.com/ParagDevda"
+ },
+ "D562-jain": {
+ "expectedPoints": 4,
+ "currentPoints": 4,
+ "levels": {
+ "level1": 1,
+ "level2": 0,
+ "level3": 0
+ },
+ "prs": [
+ {
+ "url": "https://github.com/InnoWebLabs/Vehigo/pull/155",
+ "title": "Docs: Add Project Structure, Usage and corrected Table of Contents order in README.md",
+ "repo": "InnoWebLabs/Vehigo",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-27T19:10:05Z",
+ "updated_at": "2025-07-28T04:27:29Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-28T04:27:29Z",
+ "author_url": "https://github.com/D562-jain",
+ "author_avatar": "https://avatars.githubusercontent.com/u/177764775?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/177764775?v=4",
+ "profile_url": "https://github.com/D562-jain"
+ },
+ "GarimaGupta-16": {
+ "expectedPoints": 4,
+ "currentPoints": 4,
+ "levels": {
+ "level1": 1,
+ "level2": 0,
+ "level3": 0
+ },
+ "prs": [
+ {
+ "url": "https://github.com/InnoWebLabs/Vehigo/pull/81",
+ "title": "Login branch",
+ "repo": "InnoWebLabs/Vehigo",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-25T16:42:45Z",
+ "updated_at": "2025-07-25T19:38:18Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-25T16:43:34Z",
+ "author_url": "https://github.com/GarimaGupta-16",
+ "author_avatar": "https://avatars.githubusercontent.com/u/175942393?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/175942393?v=4",
+ "profile_url": "https://github.com/GarimaGupta-16"
+ },
+ "SNishanth2202": {
+ "expectedPoints": 4,
+ "currentPoints": 4,
+ "levels": {
+ "level1": 1,
+ "level2": 0,
+ "level3": 0
+ },
+ "prs": [
+ {
+ "url": "https://github.com/InnoWebLabs/Vehigo/pull/77",
+ "title": "added terms and conditions page",
+ "repo": "InnoWebLabs/Vehigo",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-25T15:53:11Z",
+ "updated_at": "2025-07-25T20:28:51Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-25T15:53:49Z",
+ "author_url": "https://github.com/SNishanth2202",
+ "author_avatar": "https://avatars.githubusercontent.com/u/180951017?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/180951017?v=4",
+ "profile_url": "https://github.com/SNishanth2202"
+ },
+ "Namiiii-sys": {
+ "expectedPoints": 8,
+ "currentPoints": 4,
+ "levels": {
+ "level1": 2,
+ "level2": 0,
+ "level3": 0
+ },
+ "prs": [
+ {
+ "url": "https://github.com/InnoWebLabs/Vehigo/pull/40",
+ "title": "Enhance Blog Section with Author Info and Horizontal Carousel Navigation",
+ "repo": "InnoWebLabs/Vehigo",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-23T23:41:17Z",
+ "updated_at": "2025-07-25T20:21:54Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-24T06:19:06Z",
+ "author_url": "https://github.com/Namiiii-sys",
+ "author_avatar": "https://avatars.githubusercontent.com/u/183470569?v=4"
+ },
+ {
+ "url": "https://github.com/Dnyaneshpise/skywatch_alerts/pull/36",
+ "title": "Implemented a theme toggle + fix Dashboard navbar link",
+ "repo": "Dnyaneshpise/skywatch_alerts",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-28T23:24:04Z",
+ "updated_at": "2025-07-31T07:14:48Z",
+ "state": "closed",
+ "merged": false,
+ "merged_at": null,
+ "author_url": "https://github.com/Namiiii-sys",
+ "author_avatar": "https://avatars.githubusercontent.com/u/183470569?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/183470569?v=4",
+ "profile_url": "https://github.com/Namiiii-sys"
+ },
+ "AdithyaPathakoti": {
+ "expectedPoints": 4,
+ "currentPoints": 4,
+ "levels": {
+ "level1": 1,
+ "level2": 0,
+ "level3": 0
+ },
+ "prs": [
+ {
+ "url": "https://github.com/InnoWebLabs/Vehigo/pull/35",
+ "title": "Improved UI and removed the extra 'Explore Cars' option from the nav bar",
+ "repo": "InnoWebLabs/Vehigo",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-23T18:19:07Z",
+ "updated_at": "2025-07-25T20:21:08Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-24T06:19:49Z",
+ "author_url": "https://github.com/AdithyaPathakoti",
+ "author_avatar": "https://avatars.githubusercontent.com/u/151919367?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/151919367?v=4",
+ "profile_url": "https://github.com/AdithyaPathakoti"
+ },
+ "pbln": {
+ "expectedPoints": 4,
+ "currentPoints": 4,
+ "levels": {
+ "level1": 1,
+ "level2": 0,
+ "level3": 0
+ },
+ "prs": [
+ {
+ "url": "https://github.com/InnoWebLabs/Vehigo/pull/27",
+ "title": "login links",
+ "repo": "InnoWebLabs/Vehigo",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-23T16:19:34Z",
+ "updated_at": "2025-07-25T20:14:38Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-23T17:01:15Z",
+ "author_url": "https://github.com/pbln",
+ "author_avatar": "https://avatars.githubusercontent.com/u/145954271?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/145954271?v=4",
+ "profile_url": "https://github.com/pbln"
+ },
+ "manikdureja": {
+ "expectedPoints": 12,
+ "currentPoints": 4,
+ "levels": {
+ "level1": 3,
+ "level2": 0,
+ "level3": 0
+ },
+ "prs": [
+ {
+ "url": "https://github.com/InnoWebLabs/Vehigo/pull/4",
+ "title": "Fixed the file structure",
+ "repo": "InnoWebLabs/Vehigo",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-22T10:31:31Z",
+ "updated_at": "2025-07-25T20:13:05Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-23T06:26:10Z",
+ "author_url": "https://github.com/manikdureja",
+ "author_avatar": "https://avatars.githubusercontent.com/u/76530427?v=4"
+ },
+ {
+ "url": "https://github.com/Kritika75/TheCawnporeMag.github.io/pull/123",
+ "title": "Final compilation",
+ "repo": "Kritika75/TheCawnporeMag.github.io",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-25T12:08:17Z",
+ "updated_at": "2025-07-25T12:58:53Z",
+ "state": "open",
+ "merged": false,
+ "merged_at": null,
+ "author_url": "https://github.com/manikdureja",
+ "author_avatar": "https://avatars.githubusercontent.com/u/76530427?v=4"
+ },
+ {
+ "url": "https://github.com/Kritika75/TheCawnporeMag.github.io/pull/68",
+ "title": "Resolve conflicts",
+ "repo": "Kritika75/TheCawnporeMag.github.io",
+ "level": null,
+ "points": 0,
+ "created_at": "2025-07-23T16:08:34Z",
+ "updated_at": "2025-07-25T12:10:49Z",
+ "state": "open",
+ "merged": false,
+ "merged_at": null,
+ "author_url": "https://github.com/manikdureja",
+ "author_avatar": "https://avatars.githubusercontent.com/u/76530427?v=4"
+ },
+ {
+ "url": "https://github.com/Kritika75/TheCawnporeMag.github.io/pull/60",
+ "title": "Improvised the file structure",
+ "repo": "Kritika75/TheCawnporeMag.github.io",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-23T10:55:13Z",
+ "updated_at": "2025-07-25T12:06:09Z",
+ "state": "closed",
+ "merged": false,
+ "merged_at": null,
+ "author_url": "https://github.com/manikdureja",
+ "author_avatar": "https://avatars.githubusercontent.com/u/76530427?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/76530427?v=4",
+ "profile_url": "https://github.com/manikdureja"
+ },
+ "23f3001526": {
+ "expectedPoints": 4,
+ "currentPoints": 4,
+ "levels": {
+ "level1": 1,
+ "level2": 0,
+ "level3": 0
+ },
+ "prs": [
+ {
+ "url": "https://github.com/MAVERICK-VF142/Drx.MediMate/pull/65",
+ "title": "issue#23 Add speech to text feature for symptom checker",
+ "repo": "MAVERICK-VF142/Drx.MediMate",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-24T08:41:39Z",
+ "updated_at": "2025-07-24T11:36:18Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-24T11:36:18Z",
+ "author_url": "https://github.com/23f3001526",
+ "author_avatar": "https://avatars.githubusercontent.com/u/196203685?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/196203685?v=4",
+ "profile_url": "https://github.com/23f3001526"
+ },
+ "VasuGx": {
+ "expectedPoints": 4,
+ "currentPoints": 4,
+ "levels": {
+ "level1": 1,
+ "level2": 0,
+ "level3": 0
+ },
+ "prs": [
+ {
+ "url": "https://github.com/MAVERICK-VF142/Drx.MediMate/pull/31",
+ "title": "fix: add logging, retry, and timeout for Gemini API (serverless debug)",
+ "repo": "MAVERICK-VF142/Drx.MediMate",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-22T12:43:18Z",
+ "updated_at": "2025-07-22T16:27:02Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-22T14:22:55Z",
+ "author_url": "https://github.com/VasuGx",
+ "author_avatar": "https://avatars.githubusercontent.com/u/130250904?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/130250904?v=4",
+ "profile_url": "https://github.com/VasuGx"
+ },
+ "Bhawneet1": {
+ "expectedPoints": 4,
+ "currentPoints": 4,
+ "levels": {
+ "level1": 1,
+ "level2": 0,
+ "level3": 0
+ },
+ "prs": [
+ {
+ "url": "https://github.com/Ayushjhawar8/Flavor-ai/pull/59",
+ "title": "Changed the background color of body and attached screenshot shows some visible dark color",
+ "repo": "Ayushjhawar8/Flavor-ai",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-25T11:54:09Z",
+ "updated_at": "2025-07-26T10:21:35Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-26T10:21:35Z",
+ "author_url": "https://github.com/Bhawneet1",
+ "author_avatar": "https://avatars.githubusercontent.com/u/136002853?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/136002853?v=4",
+ "profile_url": "https://github.com/Bhawneet1"
+ },
+ "om07github": {
+ "expectedPoints": 4,
+ "currentPoints": 4,
+ "levels": {
+ "level1": 1,
+ "level2": 0,
+ "level3": 0
+ },
+ "prs": [
+ {
+ "url": "https://github.com/Ayushjhawar8/Flavor-ai/pull/38",
+ "title": "Add: Basic Pull Request template",
+ "repo": "Ayushjhawar8/Flavor-ai",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-24T10:41:45Z",
+ "updated_at": "2025-07-24T12:27:14Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-24T12:16:48Z",
+ "author_url": "https://github.com/om07github",
+ "author_avatar": "https://avatars.githubusercontent.com/u/142391692?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/142391692?v=4",
+ "profile_url": "https://github.com/om07github"
+ },
+ "nandini-rathod": {
+ "expectedPoints": 4,
+ "currentPoints": 4,
+ "levels": {
+ "level1": 1,
+ "level2": 0,
+ "level3": 0
+ },
+ "prs": [
+ {
+ "url": "https://github.com/BaraniVA/Habitheat/pull/105",
+ "title": "fix: correct favicon filename and README reference",
+ "repo": "BaraniVA/Habitheat",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-31T06:31:36Z",
+ "updated_at": "2025-07-31T14:00:36Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-31T13:55:15Z",
+ "author_url": "https://github.com/nandini-rathod",
+ "author_avatar": "https://avatars.githubusercontent.com/u/172627715?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/172627715?v=4",
+ "profile_url": "https://github.com/nandini-rathod"
+ },
+ "sneha842": {
+ "expectedPoints": 4,
+ "currentPoints": 4,
+ "levels": {
+ "level1": 1,
+ "level2": 0,
+ "level3": 0
+ },
+ "prs": [
+ {
+ "url": "https://github.com/BaraniVA/Habitheat/pull/34",
+ "title": "fix : made a navbar sticky on scroll #6",
+ "repo": "BaraniVA/Habitheat",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-23T14:58:54Z",
+ "updated_at": "2025-07-23T15:28:07Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-23T15:27:23Z",
+ "author_url": "https://github.com/sneha842",
+ "author_avatar": "https://avatars.githubusercontent.com/u/182251357?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/182251357?v=4",
+ "profile_url": "https://github.com/sneha842"
+ },
+ "riya751885": {
+ "expectedPoints": 4,
+ "currentPoints": 4,
+ "levels": {
+ "level1": 1,
+ "level2": 0,
+ "level3": 0
+ },
+ "prs": [
+ {
+ "url": "https://github.com/Bavanetha27/Refixly/pull/50",
+ "title": "Add favicon to improve branding and browser tab visibility",
+ "repo": "Bavanetha27/Refixly",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-30T09:51:22Z",
+ "updated_at": "2025-08-01T10:48:10Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-30T15:49:28Z",
+ "author_url": "https://github.com/riya751885",
+ "author_avatar": "https://avatars.githubusercontent.com/u/122119293?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/122119293?v=4",
+ "profile_url": "https://github.com/riya751885"
+ },
+ "MdWasirul": {
+ "expectedPoints": 4,
+ "currentPoints": 4,
+ "levels": {
+ "level1": 1,
+ "level2": 0,
+ "level3": 0
+ },
+ "prs": [
+ {
+ "url": "https://github.com/Bavanetha27/Refixly/pull/10",
+ "title": "fix: redirect first-time users to /home after signup",
+ "repo": "Bavanetha27/Refixly",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-23T06:51:41Z",
+ "updated_at": "2025-08-01T10:47:19Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-24T14:54:13Z",
+ "author_url": "https://github.com/MdWasirul",
+ "author_avatar": "https://avatars.githubusercontent.com/u/179301374?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/179301374?v=4",
+ "profile_url": "https://github.com/MdWasirul"
+ },
+ "ShekharGTayde": {
+ "expectedPoints": 4,
+ "currentPoints": 4,
+ "levels": {
+ "level1": 1,
+ "level2": 0,
+ "level3": 0
+ },
+ "prs": [
+ {
+ "url": "https://github.com/BhaktiMore18/Pouranik/pull/123",
+ "title": "#122 add toggel functionality in chatbot widget",
+ "repo": "BhaktiMore18/Pouranik",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-08-02T12:14:22Z",
+ "updated_at": "2025-08-03T06:51:52Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-08-03T05:47:03Z",
+ "author_url": "https://github.com/ShekharGTayde",
+ "author_avatar": "https://avatars.githubusercontent.com/u/156103621?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/156103621?v=4",
+ "profile_url": "https://github.com/ShekharGTayde"
+ },
+ "nidhi829n": {
+ "expectedPoints": 4,
+ "currentPoints": 4,
+ "levels": {
+ "level1": 1,
+ "level2": 0,
+ "level3": 0
+ },
+ "prs": [
+ {
+ "url": "https://github.com/chandannekya/Clean-Breath/pull/61",
+ "title": "Update user schema to include role, nurseryName, and location fields ",
+ "repo": "chandannekya/Clean-Breath",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-24T17:50:49Z",
+ "updated_at": "2025-07-25T10:18:34Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-25T10:18:33Z",
+ "author_url": "https://github.com/nidhi829n",
+ "author_avatar": "https://avatars.githubusercontent.com/u/151422993?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/151422993?v=4",
+ "profile_url": "https://github.com/nidhi829n"
+ },
+ "Pubali07": {
+ "expectedPoints": 4,
+ "currentPoints": 4,
+ "levels": {
+ "level1": 1,
+ "level2": 0,
+ "level3": 0
+ },
+ "prs": [
+ {
+ "url": "https://github.com/Dipanita45/HEALCONNECT/pull/8",
+ "title": "Updated README with usage, contributing, and setup instructions",
+ "repo": "Dipanita45/HEALCONNECT",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-22T15:18:18Z",
+ "updated_at": "2025-07-23T16:52:22Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-23T16:49:36Z",
+ "author_url": "https://github.com/Pubali07",
+ "author_avatar": "https://avatars.githubusercontent.com/u/147859899?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/147859899?v=4",
+ "profile_url": "https://github.com/Pubali07"
+ },
+ "Wasid786": {
+ "expectedPoints": 4,
+ "currentPoints": 4,
+ "levels": {
+ "level1": 1,
+ "level2": 0,
+ "level3": 0
+ },
+ "prs": [
+ {
+ "url": "https://github.com/Dnyaneshpise/skywatch_alerts/pull/24",
+ "title": "Add README.md file with screenshots",
+ "repo": "Dnyaneshpise/skywatch_alerts",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-25T09:51:41Z",
+ "updated_at": "2025-07-25T17:34:14Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-25T17:34:14Z",
+ "author_url": "https://github.com/Wasid786",
+ "author_avatar": "https://avatars.githubusercontent.com/u/114327679?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/114327679?v=4",
+ "profile_url": "https://github.com/Wasid786"
+ },
+ "meenakship3": {
+ "expectedPoints": 4,
+ "currentPoints": 4,
+ "levels": {
+ "level1": 1,
+ "level2": 0,
+ "level3": 0
+ },
+ "prs": [
+ {
+ "url": "https://github.com/Dnyaneshpise/skywatch_alerts/pull/23",
+ "title": "Fixes #17: Input styling inconsistency and Form validation",
+ "repo": "Dnyaneshpise/skywatch_alerts",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-25T06:54:40Z",
+ "updated_at": "2025-07-25T18:25:13Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-25T18:25:13Z",
+ "author_url": "https://github.com/meenakship3",
+ "author_avatar": "https://avatars.githubusercontent.com/u/156118770?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/156118770?v=4",
+ "profile_url": "https://github.com/meenakship3"
+ },
+ "Anshika-121": {
+ "expectedPoints": 4,
+ "currentPoints": 4,
+ "levels": {
+ "level1": 1,
+ "level2": 0,
+ "level3": 0
+ },
+ "prs": [
+ {
+ "url": "https://github.com/efshaperveen/MindJournal/pull/66",
+ "title": "Added demo screenshot and fixed broken README image",
+ "repo": "efshaperveen/MindJournal",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-29T16:04:59Z",
+ "updated_at": "2025-07-29T17:30:20Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-29T17:30:19Z",
+ "author_url": "https://github.com/Anshika-121",
+ "author_avatar": "https://avatars.githubusercontent.com/u/127642619?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/127642619?v=4",
+ "profile_url": "https://github.com/Anshika-121"
+ },
+ "satyam0827": {
+ "expectedPoints": 4,
+ "currentPoints": 4,
+ "levels": {
+ "level1": 1,
+ "level2": 0,
+ "level3": 0
+ },
+ "prs": [
+ {
+ "url": "https://github.com/GauravKarakoti/Weather-API/pull/225",
+ "title": "mobile responsive issue and search button issue was fixed",
+ "repo": "GauravKarakoti/Weather-API",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-30T07:17:04Z",
+ "updated_at": "2025-07-30T07:45:38Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-30T07:45:38Z",
+ "author_url": "https://github.com/satyam0827",
+ "author_avatar": "https://avatars.githubusercontent.com/u/113125998?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/113125998?v=4",
+ "profile_url": "https://github.com/satyam0827"
+ },
+ "Gourikakhandelwal": {
+ "expectedPoints": 4,
+ "currentPoints": 4,
+ "levels": {
+ "level1": 1,
+ "level2": 0,
+ "level3": 0
+ },
+ "prs": [
+ {
+ "url": "https://github.com/GauravKarakoti/Weather-API/pull/162",
+ "title": "Fix: Resolved duplicate ID issue across files.",
+ "repo": "GauravKarakoti/Weather-API",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-21T20:39:59Z",
+ "updated_at": "2025-07-22T05:31:51Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-22T05:31:51Z",
+ "author_url": "https://github.com/Gourikakhandelwal",
+ "author_avatar": "https://avatars.githubusercontent.com/u/181317009?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/181317009?v=4",
+ "profile_url": "https://github.com/Gourikakhandelwal"
+ },
+ "Vaibhav-Kulshreshtha7": {
+ "expectedPoints": 4,
+ "currentPoints": 4,
+ "levels": {
+ "level1": 1,
+ "level2": 0,
+ "level3": 0
+ },
+ "prs": [
+ {
+ "url": "https://github.com/Gnanaashritha/Blogging-Platform-/pull/59",
+ "title": "[Feature] Added Scroll To Top Button",
+ "repo": "Gnanaashritha/Blogging-Platform-",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-30T16:33:15Z",
+ "updated_at": "2025-07-31T19:06:45Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-31T19:06:45Z",
+ "author_url": "https://github.com/Vaibhav-Kulshreshtha7",
+ "author_avatar": "https://avatars.githubusercontent.com/u/154697367?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/154697367?v=4",
+ "profile_url": "https://github.com/Vaibhav-Kulshreshtha7"
+ },
+ "arpooja-githhub": {
+ "expectedPoints": 4,
+ "currentPoints": 4,
+ "levels": {
+ "level1": 1,
+ "level2": 0,
+ "level3": 0
+ },
+ "prs": [
+ {
+ "url": "https://github.com/Gnanaashritha/Blogging-Platform-/pull/50",
+ "title": "Improved README with better structure and clarity",
+ "repo": "Gnanaashritha/Blogging-Platform-",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-29T09:06:46Z",
+ "updated_at": "2025-07-29T19:06:48Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-29T19:06:48Z",
+ "author_url": "https://github.com/arpooja-githhub",
+ "author_avatar": "https://avatars.githubusercontent.com/u/161225198?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/161225198?v=4",
+ "profile_url": "https://github.com/arpooja-githhub"
+ },
+ "FortxArcader": {
+ "expectedPoints": 4,
+ "currentPoints": 4,
+ "levels": {
+ "level1": 1,
+ "level2": 0,
+ "level3": 0
+ },
+ "prs": [
+ {
+ "url": "https://github.com/Gnanaashritha/Blogging-Platform-/pull/33",
+ "title": "Enhanced Navbar [Issue #32]",
+ "repo": "Gnanaashritha/Blogging-Platform-",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-27T04:50:21Z",
+ "updated_at": "2025-07-28T18:38:49Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-28T18:38:49Z",
+ "author_url": "https://github.com/FortxArcader",
+ "author_avatar": "https://avatars.githubusercontent.com/u/119767658?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/119767658?v=4",
+ "profile_url": "https://github.com/FortxArcader"
+ },
+ "Arojit45": {
+ "expectedPoints": 4,
+ "currentPoints": 4,
+ "levels": {
+ "level1": 1,
+ "level2": 0,
+ "level3": 0
+ },
+ "prs": [
+ {
+ "url": "https://github.com/Gnanaashritha/Blogging-Platform-/pull/14",
+ "title": "Added AboutPage with category cards and updated App.tsx routing and link with the footer",
+ "repo": "Gnanaashritha/Blogging-Platform-",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-24T06:42:54Z",
+ "updated_at": "2025-07-26T19:49:08Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-26T19:49:07Z",
+ "author_url": "https://github.com/Arojit45",
+ "author_avatar": "https://avatars.githubusercontent.com/u/164173489?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/164173489?v=4",
+ "profile_url": "https://github.com/Arojit45"
+ },
+ "bhavyawork121": {
+ "expectedPoints": 4,
+ "currentPoints": 4,
+ "levels": {
+ "level1": 1,
+ "level2": 0,
+ "level3": 0
+ },
+ "prs": [
+ {
+ "url": "https://github.com/Khushi-Nigam/jobportal/pull/72",
+ "title": "added linkedin button as new login feature",
+ "repo": "Khushi-Nigam/jobportal",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-27T17:52:41Z",
+ "updated_at": "2025-07-29T13:31:31Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-29T13:31:31Z",
+ "author_url": "https://github.com/bhavyawork121",
+ "author_avatar": "https://avatars.githubusercontent.com/u/195129920?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/195129920?v=4",
+ "profile_url": "https://github.com/bhavyawork121"
+ },
+ "Swayam42": {
+ "expectedPoints": 4,
+ "currentPoints": 4,
+ "levels": {
+ "level1": 1,
+ "level2": 0,
+ "level3": 0
+ },
+ "prs": [
+ {
+ "url": "https://github.com/Khushi-Nigam/jobportal/pull/23",
+ "title": "Login UI redesign with cleanup (#8)",
+ "repo": "Khushi-Nigam/jobportal",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-23T17:50:09Z",
+ "updated_at": "2025-07-23T17:58:10Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-23T17:54:19Z",
+ "author_url": "https://github.com/Swayam42",
+ "author_avatar": "https://avatars.githubusercontent.com/u/89599729?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/89599729?v=4",
+ "profile_url": "https://github.com/Swayam42"
+ },
+ "khushi-verma1504": {
+ "expectedPoints": 4,
+ "currentPoints": 4,
+ "levels": {
+ "level1": 1,
+ "level2": 0,
+ "level3": 0
+ },
+ "prs": [
+ {
+ "url": "https://github.com/Kritika75/TheCawnporeMag.github.io/pull/379",
+ "title": "Reduced loading time on HomePage ",
+ "repo": "Kritika75/TheCawnporeMag.github.io",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-08-02T15:31:08Z",
+ "updated_at": "2025-08-03T03:46:01Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-08-03T03:46:01Z",
+ "author_url": "https://github.com/khushi-verma1504",
+ "author_avatar": "https://avatars.githubusercontent.com/u/177411776?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/177411776?v=4",
+ "profile_url": "https://github.com/khushi-verma1504"
+ },
+ "Aditya00038": {
+ "expectedPoints": 4,
+ "currentPoints": 4,
+ "levels": {
+ "level1": 1,
+ "level2": 0,
+ "level3": 0
+ },
+ "prs": [
+ {
+ "url": "https://github.com/Kritika75/TheCawnporeMag.github.io/pull/358",
+ "title": "Fix: Updated hover",
+ "repo": "Kritika75/TheCawnporeMag.github.io",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-08-01T15:49:55Z",
+ "updated_at": "2025-08-02T03:27:11Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-08-02T03:27:11Z",
+ "author_url": "https://github.com/Aditya00038",
+ "author_avatar": "https://avatars.githubusercontent.com/u/189074519?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/189074519?v=4",
+ "profile_url": "https://github.com/Aditya00038"
+ },
+ "arthita0206": {
+ "expectedPoints": 4,
+ "currentPoints": 4,
+ "levels": {
+ "level1": 1,
+ "level2": 0,
+ "level3": 0
+ },
+ "prs": [
+ {
+ "url": "https://github.com/Kritika75/TheCawnporeMag.github.io/pull/350",
+ "title": "Fixed layout issues on Submissions page",
+ "repo": "Kritika75/TheCawnporeMag.github.io",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-08-01T13:08:43Z",
+ "updated_at": "2025-08-02T03:25:03Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-08-02T03:25:02Z",
+ "author_url": "https://github.com/arthita0206",
+ "author_avatar": "https://avatars.githubusercontent.com/u/180815227?v=4"
+ },
+ {
+ "url": "https://github.com/Mujtabaa07/coffeeShop/pull/509",
+ "title": "Fix alignment and styling in About page",
+ "repo": "Mujtabaa07/coffeeShop",
+ "level": null,
+ "points": 0,
+ "created_at": "2025-08-02T11:09:30Z",
+ "updated_at": "2025-08-02T18:44:19Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-08-02T18:44:12Z",
+ "author_url": "https://github.com/arthita0206",
+ "author_avatar": "https://avatars.githubusercontent.com/u/180815227?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/180815227?v=4",
+ "profile_url": "https://github.com/arthita0206"
+ },
+ "KritiMinz": {
+ "expectedPoints": 4,
+ "currentPoints": 4,
+ "levels": {
+ "level1": 1,
+ "level2": 0,
+ "level3": 0
+ },
+ "prs": [
+ {
+ "url": "https://github.com/Kritika75/TheCawnporeMag.github.io/pull/334",
+ "title": "Added Separators and enhanced styling",
+ "repo": "Kritika75/TheCawnporeMag.github.io",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-08-01T07:44:37Z",
+ "updated_at": "2025-08-01T09:40:02Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-08-01T09:40:01Z",
+ "author_url": "https://github.com/KritiMinz",
+ "author_avatar": "https://avatars.githubusercontent.com/u/160856657?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/160856657?v=4",
+ "profile_url": "https://github.com/KritiMinz"
+ },
+ "Geetakisku": {
+ "expectedPoints": 4,
+ "currentPoints": 4,
+ "levels": {
+ "level1": 1,
+ "level2": 0,
+ "level3": 0
+ },
+ "prs": [
+ {
+ "url": "https://github.com/Kritika75/TheCawnporeMag.github.io/pull/301",
+ "title": "fix : card diamensions are now equal and visually improved",
+ "repo": "Kritika75/TheCawnporeMag.github.io",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-30T17:47:14Z",
+ "updated_at": "2025-07-31T03:51:43Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-31T03:51:42Z",
+ "author_url": "https://github.com/Geetakisku",
+ "author_avatar": "https://avatars.githubusercontent.com/u/132428582?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/132428582?v=4",
+ "profile_url": "https://github.com/Geetakisku"
+ },
+ "ashmitdhondiyal": {
+ "expectedPoints": 4,
+ "currentPoints": 4,
+ "levels": {
+ "level1": 1,
+ "level2": 0,
+ "level3": 0
+ },
+ "prs": [
+ {
+ "url": "https://github.com/Kritika75/TheCawnporeMag.github.io/pull/294",
+ "title": "added github in social links",
+ "repo": "Kritika75/TheCawnporeMag.github.io",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-30T10:16:23Z",
+ "updated_at": "2025-07-30T11:24:18Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-30T11:24:18Z",
+ "author_url": "https://github.com/ashmitdhondiyal",
+ "author_avatar": "https://avatars.githubusercontent.com/u/218371241?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/218371241?v=4",
+ "profile_url": "https://github.com/ashmitdhondiyal"
+ },
+ "LathaSree585": {
+ "expectedPoints": 4,
+ "currentPoints": 4,
+ "levels": {
+ "level1": 1,
+ "level2": 0,
+ "level3": 0
+ },
+ "prs": [
+ {
+ "url": "https://github.com/Kritika75/TheCawnporeMag.github.io/pull/283",
+ "title": "Fixed hover color inconsistency in homepage cards - Changed Card Color",
+ "repo": "Kritika75/TheCawnporeMag.github.io",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-29T18:15:07Z",
+ "updated_at": "2025-07-30T04:32:42Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-30T04:32:42Z",
+ "author_url": "https://github.com/LathaSree585",
+ "author_avatar": "https://avatars.githubusercontent.com/u/200562608?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/200562608?v=4",
+ "profile_url": "https://github.com/LathaSree585"
+ },
+ "ananyaarramalla": {
+ "expectedPoints": 4,
+ "currentPoints": 4,
+ "levels": {
+ "level1": 1,
+ "level2": 0,
+ "level3": 0
+ },
+ "prs": [
+ {
+ "url": "https://github.com/Kritika75/TheCawnporeMag.github.io/pull/272",
+ "title": "Fix: Favicon now appears on all pages",
+ "repo": "Kritika75/TheCawnporeMag.github.io",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-29T12:24:17Z",
+ "updated_at": "2025-07-29T12:57:39Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-29T12:57:39Z",
+ "author_url": "https://github.com/ananyaarramalla",
+ "author_avatar": "https://avatars.githubusercontent.com/u/155510904?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/155510904?v=4",
+ "profile_url": "https://github.com/ananyaarramalla"
+ },
+ "shrvtiprasad": {
+ "expectedPoints": 8,
+ "currentPoints": 4,
+ "levels": {
+ "level1": 2,
+ "level2": 0,
+ "level3": 0
+ },
+ "prs": [
+ {
+ "url": "https://github.com/Kritika75/TheCawnporeMag.github.io/pull/268",
+ "title": "Added: Scroll Fade in animation",
+ "repo": "Kritika75/TheCawnporeMag.github.io",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-29T09:55:52Z",
+ "updated_at": "2025-07-31T13:59:38Z",
+ "state": "open",
+ "merged": false,
+ "merged_at": null,
+ "author_url": "https://github.com/shrvtiprasad",
+ "author_avatar": "https://avatars.githubusercontent.com/u/136233363?v=4"
+ },
+ {
+ "url": "https://github.com/Kritika75/TheCawnporeMag.github.io/pull/132",
+ "title": "Added hover effect and box shadow to FAQ text boxes for better interactivity.",
+ "repo": "Kritika75/TheCawnporeMag.github.io",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-25T15:00:31Z",
+ "updated_at": "2025-07-26T03:25:43Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-26T03:25:43Z",
+ "author_url": "https://github.com/shrvtiprasad",
+ "author_avatar": "https://avatars.githubusercontent.com/u/136233363?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/136233363?v=4",
+ "profile_url": "https://github.com/shrvtiprasad"
+ },
+ "Sneha-Goswami123": {
+ "expectedPoints": 4,
+ "currentPoints": 4,
+ "levels": {
+ "level1": 1,
+ "level2": 0,
+ "level3": 0
+ },
+ "prs": [
+ {
+ "url": "https://github.com/Kritika75/TheCawnporeMag.github.io/pull/259",
+ "title": "Added Quote of the Day Widget on HomePage (Feature)",
+ "repo": "Kritika75/TheCawnporeMag.github.io",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-28T15:28:40Z",
+ "updated_at": "2025-07-30T04:24:27Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-30T04:24:27Z",
+ "author_url": "https://github.com/Sneha-Goswami123",
+ "author_avatar": "https://avatars.githubusercontent.com/u/203415818?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/203415818?v=4",
+ "profile_url": "https://github.com/Sneha-Goswami123"
+ },
+ "Sanjana866": {
+ "expectedPoints": 11,
+ "currentPoints": 4,
+ "levels": {
+ "level1": 1,
+ "level2": 1,
+ "level3": 0
+ },
+ "prs": [
+ {
+ "url": "https://github.com/Kritika75/TheCawnporeMag.github.io/pull/212",
+ "title": "Updated about section",
+ "repo": "Kritika75/TheCawnporeMag.github.io",
+ "level": "level2",
+ "points": 7,
+ "created_at": "2025-07-27T13:41:30Z",
+ "updated_at": "2025-08-02T12:57:06Z",
+ "state": "open",
+ "merged": false,
+ "merged_at": null,
+ "author_url": "https://github.com/Sanjana866",
+ "author_avatar": "https://avatars.githubusercontent.com/u/183252793?v=4"
+ },
+ {
+ "url": "https://github.com/Kritika75/TheCawnporeMag.github.io/pull/164",
+ "title": "Added a submit your work button",
+ "repo": "Kritika75/TheCawnporeMag.github.io",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-26T15:00:48Z",
+ "updated_at": "2025-07-26T15:05:22Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-26T15:05:22Z",
+ "author_url": "https://github.com/Sanjana866",
+ "author_avatar": "https://avatars.githubusercontent.com/u/183252793?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/183252793?v=4",
+ "profile_url": "https://github.com/Sanjana866"
+ },
+ "MohdAnas007": {
+ "expectedPoints": 4,
+ "currentPoints": 4,
+ "levels": {
+ "level1": 1,
+ "level2": 0,
+ "level3": 0
+ },
+ "prs": [
+ {
+ "url": "https://github.com/Kritika75/TheCawnporeMag.github.io/pull/136",
+ "title": "Sentence changed to You can find her on Instagram",
+ "repo": "Kritika75/TheCawnporeMag.github.io",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-25T17:07:31Z",
+ "updated_at": "2025-07-26T03:27:50Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-26T03:27:49Z",
+ "author_url": "https://github.com/MohdAnas007",
+ "author_avatar": "https://avatars.githubusercontent.com/u/182425209?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/182425209?v=4",
+ "profile_url": "https://github.com/MohdAnas007"
+ },
+ "jahnavipandey23": {
+ "expectedPoints": 4,
+ "currentPoints": 4,
+ "levels": {
+ "level1": 1,
+ "level2": 0,
+ "level3": 0
+ },
+ "prs": [
+ {
+ "url": "https://github.com/Kritika75/TheCawnporeMag.github.io/pull/129",
+ "title": "Refactor showMenu and hideMenu into toggleMenu to remove duplicate code",
+ "repo": "Kritika75/TheCawnporeMag.github.io",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-25T14:08:43Z",
+ "updated_at": "2025-07-25T14:10:52Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-25T14:10:52Z",
+ "author_url": "https://github.com/jahnavipandey23",
+ "author_avatar": "https://avatars.githubusercontent.com/u/183349163?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/183349163?v=4",
+ "profile_url": "https://github.com/jahnavipandey23"
+ },
+ "codewitharchi": {
+ "expectedPoints": 4,
+ "currentPoints": 4,
+ "levels": {
+ "level1": 1,
+ "level2": 0,
+ "level3": 0
+ },
+ "prs": [
+ {
+ "url": "https://github.com/Kritika75/TheCawnporeMag.github.io/pull/124",
+ "title": "Fix: Added inline validation for newsletter form",
+ "repo": "Kritika75/TheCawnporeMag.github.io",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-25T12:20:53Z",
+ "updated_at": "2025-07-25T13:00:21Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-25T13:00:21Z",
+ "author_url": "https://github.com/codewitharchi",
+ "author_avatar": "https://avatars.githubusercontent.com/u/217785330?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/217785330?v=4",
+ "profile_url": "https://github.com/codewitharchi"
+ },
+ "Sanmathi17": {
+ "expectedPoints": 14,
+ "currentPoints": 4,
+ "levels": {
+ "level1": 1,
+ "level2": 0,
+ "level3": 1
+ },
+ "prs": [
+ {
+ "url": "https://github.com/Kritika75/TheCawnporeMag.github.io/pull/96",
+ "title": "Fix: Improve mobile responsiveness of team cards on masthead page",
+ "repo": "Kritika75/TheCawnporeMag.github.io",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-24T16:42:55Z",
+ "updated_at": "2025-07-26T12:28:51Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-26T06:47:23Z",
+ "author_url": "https://github.com/Sanmathi17",
+ "author_avatar": "https://avatars.githubusercontent.com/u/144797310?v=4"
+ },
+ {
+ "url": "https://github.com/SGCODEX/Music-Recommendation-Using-Facial-Expressions/pull/60",
+ "title": "feat(playlists): add emotion-based playlist creation functionality",
+ "repo": "SGCODEX/Music-Recommendation-Using-Facial-Expressions",
+ "level": "level3",
+ "points": 10,
+ "created_at": "2025-07-29T07:17:20Z",
+ "updated_at": "2025-07-31T07:17:56Z",
+ "state": "open",
+ "merged": false,
+ "merged_at": null,
+ "author_url": "https://github.com/Sanmathi17",
+ "author_avatar": "https://avatars.githubusercontent.com/u/144797310?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/144797310?v=4",
+ "profile_url": "https://github.com/Sanmathi17"
+ },
+ "Priyanka454911": {
+ "expectedPoints": 4,
+ "currentPoints": 4,
+ "levels": {
+ "level1": 1,
+ "level2": 0,
+ "level3": 0
+ },
+ "prs": [
+ {
+ "url": "https://github.com/Kritika75/TheCawnporeMag.github.io/pull/77",
+ "title": "#44 Add: [links now opening in new tab] [ISSUE#44]",
+ "repo": "Kritika75/TheCawnporeMag.github.io",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-24T05:20:57Z",
+ "updated_at": "2025-07-24T06:57:47Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-24T06:57:47Z",
+ "author_url": "https://github.com/Priyanka454911",
+ "author_avatar": "https://avatars.githubusercontent.com/u/214427776?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/214427776?v=4",
+ "profile_url": "https://github.com/Priyanka454911"
+ },
+ "Tanmay-coderr": {
+ "expectedPoints": 4,
+ "currentPoints": 4,
+ "levels": {
+ "level1": 1,
+ "level2": 0,
+ "level3": 0
+ },
+ "prs": [
+ {
+ "url": "https://github.com/Kritika75/TheCawnporeMag.github.io/pull/72",
+ "title": "fixed issue #37",
+ "repo": "Kritika75/TheCawnporeMag.github.io",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-23T16:40:59Z",
+ "updated_at": "2025-07-24T03:20:30Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-24T03:20:30Z",
+ "author_url": "https://github.com/Tanmay-coderr",
+ "author_avatar": "https://avatars.githubusercontent.com/u/183698000?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/183698000?v=4",
+ "profile_url": "https://github.com/Tanmay-coderr"
+ },
+ "Tanicoding": {
+ "expectedPoints": 4,
+ "currentPoints": 4,
+ "levels": {
+ "level1": 1,
+ "level2": 0,
+ "level3": 0
+ },
+ "prs": [
+ {
+ "url": "https://github.com/Kritika75/TheCawnporeMag.github.io/pull/45",
+ "title": "Improve header styling and add border between sections in issue",
+ "repo": "Kritika75/TheCawnporeMag.github.io",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-22T19:21:25Z",
+ "updated_at": "2025-07-23T03:35:59Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-23T03:35:59Z",
+ "author_url": "https://github.com/Tanicoding",
+ "author_avatar": "https://avatars.githubusercontent.com/u/178466652?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/178466652?v=4",
+ "profile_url": "https://github.com/Tanicoding"
+ },
+ "niharika-mente": {
+ "expectedPoints": 4,
+ "currentPoints": 4,
+ "levels": {
+ "level1": 1,
+ "level2": 0,
+ "level3": 0
+ },
+ "prs": [
+ {
+ "url": "https://github.com/mansiruhil/fail-u-forward/pull/107",
+ "title": "Add feature to signup page",
+ "repo": "mansiruhil/fail-u-forward",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-30T19:03:01Z",
+ "updated_at": "2025-08-02T13:43:55Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-08-02T13:43:37Z",
+ "author_url": "https://github.com/niharika-mente",
+ "author_avatar": "https://avatars.githubusercontent.com/u/176044391?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/176044391?v=4",
+ "profile_url": "https://github.com/niharika-mente"
+ },
+ "Shubham-Yadav22": {
+ "expectedPoints": 4,
+ "currentPoints": 4,
+ "levels": {
+ "level1": 1,
+ "level2": 0,
+ "level3": 0
+ },
+ "prs": [
+ {
+ "url": "https://github.com/mansiruhil/fail-u-forward/pull/106",
+ "title": "Improve Chatbot UI – Responsive Design and Better UX",
+ "repo": "mansiruhil/fail-u-forward",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-30T13:03:28Z",
+ "updated_at": "2025-07-30T16:37:33Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-30T14:04:03Z",
+ "author_url": "https://github.com/Shubham-Yadav22",
+ "author_avatar": "https://avatars.githubusercontent.com/u/149295302?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/149295302?v=4",
+ "profile_url": "https://github.com/Shubham-Yadav22"
+ },
+ "mansiruhil": {
+ "expectedPoints": 4,
+ "currentPoints": 4,
+ "levels": {
+ "level1": 1,
+ "level2": 0,
+ "level3": 0
+ },
+ "prs": [
+ {
+ "url": "https://github.com/mansiruhil/fail-u-forward/pull/67",
+ "title": "Revert \"Fixed logout from feed page\"",
+ "repo": "mansiruhil/fail-u-forward",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-25T17:46:09Z",
+ "updated_at": "2025-07-25T17:49:17Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-25T17:48:49Z",
+ "author_url": "https://github.com/mansiruhil",
+ "author_avatar": "https://avatars.githubusercontent.com/u/157950124?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/157950124?v=4",
+ "profile_url": "https://github.com/mansiruhil"
+ },
+ "Nikshaan": {
+ "expectedPoints": 4,
+ "currentPoints": 4,
+ "levels": {
+ "level1": 1,
+ "level2": 0,
+ "level3": 0
+ },
+ "prs": [
+ {
+ "url": "https://github.com/MeghanaDG04/RECIPEDIA/pull/22",
+ "title": "Update: placeholder for images w/o URL",
+ "repo": "MeghanaDG04/Recipedia",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-22T21:49:21Z",
+ "updated_at": "2025-07-23T01:29:52Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-23T01:29:52Z",
+ "author_url": "https://github.com/Nikshaan",
+ "author_avatar": "https://avatars.githubusercontent.com/u/137101877?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/137101877?v=4",
+ "profile_url": "https://github.com/Nikshaan"
+ },
+ "aditiraj2006": {
+ "expectedPoints": 4,
+ "currentPoints": 4,
+ "levels": {
+ "level1": 1,
+ "level2": 0,
+ "level3": 0
+ },
+ "prs": [
+ {
+ "url": "https://github.com/GitMetricsLab/github_tracker/pull/167",
+ "title": " FIXED Bug Report: Navbar is missing on mobile view",
+ "repo": "mehul-m-prajapati/github_tracker",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-08-01T08:24:14Z",
+ "updated_at": "2025-08-01T11:51:32Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-08-01T11:51:24Z",
+ "author_url": "https://github.com/aditiraj2006",
+ "author_avatar": "https://avatars.githubusercontent.com/u/181577246?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/181577246?v=4",
+ "profile_url": "https://github.com/aditiraj2006"
+ },
+ "sharanya2504": {
+ "expectedPoints": 4,
+ "currentPoints": 4,
+ "levels": {
+ "level1": 1,
+ "level2": 0,
+ "level3": 0
+ },
+ "prs": [
+ {
+ "url": "https://github.com/GitMetricsLab/github_tracker/pull/161",
+ "title": "Fix: Persist theme selection using localStorage",
+ "repo": "mehul-m-prajapati/github_tracker",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-31T11:49:11Z",
+ "updated_at": "2025-08-01T05:56:18Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-08-01T05:56:10Z",
+ "author_url": "https://github.com/sharanya2504",
+ "author_avatar": "https://avatars.githubusercontent.com/u/159692454?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/159692454?v=4",
+ "profile_url": "https://github.com/sharanya2504"
+ },
+ "Trailblazer09": {
+ "expectedPoints": 11,
+ "currentPoints": 4,
+ "levels": {
+ "level1": 1,
+ "level2": 1,
+ "level3": 0
+ },
+ "prs": [
+ {
+ "url": "https://github.com/GitMetricsLab/github_tracker/pull/138",
+ "title": "fixed: theme switch bug for login & contributors pages respectively",
+ "repo": "mehul-m-prajapati/github_tracker",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-27T14:27:16Z",
+ "updated_at": "2025-07-30T04:55:09Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-29T07:10:20Z",
+ "author_url": "https://github.com/Trailblazer09",
+ "author_avatar": "https://avatars.githubusercontent.com/u/218467607?v=4"
+ },
+ {
+ "url": "https://github.com/GitMetricsLab/github_tracker/pull/115",
+ "title": "added theme switch",
+ "repo": "mehul-m-prajapati/github_tracker",
+ "level": "level2",
+ "points": 7,
+ "created_at": "2025-07-23T06:21:56Z",
+ "updated_at": "2025-07-27T11:40:07Z",
+ "state": "closed",
+ "merged": false,
+ "merged_at": null,
+ "author_url": "https://github.com/Trailblazer09",
+ "author_avatar": "https://avatars.githubusercontent.com/u/218467607?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/218467607?v=4",
+ "profile_url": "https://github.com/Trailblazer09"
+ },
+ "thissidemayur": {
+ "expectedPoints": 11,
+ "currentPoints": 4,
+ "levels": {
+ "level1": 1,
+ "level2": 1,
+ "level3": 0
+ },
+ "prs": [
+ {
+ "url": "https://github.com/GitMetricsLab/github_tracker/pull/112",
+ "title": "fix: add missing signup button on large screens and responsive login/signup on small devices",
+ "repo": "mehul-m-prajapati/github_tracker",
+ "level": "level2",
+ "points": 7,
+ "created_at": "2025-07-22T13:06:47Z",
+ "updated_at": "2025-07-29T06:47:09Z",
+ "state": "closed",
+ "merged": false,
+ "merged_at": null,
+ "author_url": "https://github.com/thissidemayur",
+ "author_avatar": "https://avatars.githubusercontent.com/u/193466841?v=4"
+ },
+ {
+ "url": "https://github.com/GitMetricsLab/github_tracker/pull/109",
+ "title": "feat: add toast notifications for github token errors and fetch success",
+ "repo": "mehul-m-prajapati/github_tracker",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-22T11:28:36Z",
+ "updated_at": "2025-07-29T06:45:34Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-29T06:44:36Z",
+ "author_url": "https://github.com/thissidemayur",
+ "author_avatar": "https://avatars.githubusercontent.com/u/193466841?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/193466841?v=4",
+ "profile_url": "https://github.com/thissidemayur"
+ },
+ "NidhiKumari2510": {
+ "expectedPoints": 4,
+ "currentPoints": 4,
+ "levels": {
+ "level1": 1,
+ "level2": 0,
+ "level3": 0
+ },
+ "prs": [
+ {
+ "url": "https://github.com/Muneerali199/DocMagic/pull/276",
+ "title": "Added responsive footer with light and dark theme support",
+ "repo": "Muneerali199/DocMagic",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-08-01T06:34:25Z",
+ "updated_at": "2025-08-02T12:23:34Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-08-02T12:23:34Z",
+ "author_url": "https://github.com/NidhiKumari2510",
+ "author_avatar": "https://avatars.githubusercontent.com/u/192850455?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/192850455?v=4",
+ "profile_url": "https://github.com/NidhiKumari2510"
+ },
+ "anjaliitgit": {
+ "expectedPoints": 4,
+ "currentPoints": 4,
+ "levels": {
+ "level1": 1,
+ "level2": 0,
+ "level3": 0
+ },
+ "prs": [
+ {
+ "url": "https://github.com/NishantRana07/HrRoadways/pull/437",
+ "title": "Fixes the spelling error of name and registser",
+ "repo": "NishantRana07/HrRoadways",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-30T04:36:05Z",
+ "updated_at": "2025-07-31T13:00:50Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-31T13:00:28Z",
+ "author_url": "https://github.com/anjaliitgit",
+ "author_avatar": "https://avatars.githubusercontent.com/u/169047734?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/169047734?v=4",
+ "profile_url": "https://github.com/anjaliitgit"
+ },
+ "sahith-sys": {
+ "expectedPoints": 4,
+ "currentPoints": 4,
+ "levels": {
+ "level1": 1,
+ "level2": 0,
+ "level3": 0
+ },
+ "prs": [
+ {
+ "url": "https://github.com/NishantRana07/HrRoadways/pull/402",
+ "title": "Fix:Updated broken image links with new ones in travellocations route",
+ "repo": "NishantRana07/HrRoadways",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-27T10:34:29Z",
+ "updated_at": "2025-07-27T21:39:26Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-27T21:39:26Z",
+ "author_url": "https://github.com/sahith-sys",
+ "author_avatar": "https://avatars.githubusercontent.com/u/174006817?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/174006817?v=4",
+ "profile_url": "https://github.com/sahith-sys"
+ },
+ "Harshhdhankhar": {
+ "expectedPoints": 4,
+ "currentPoints": 4,
+ "levels": {
+ "level1": 1,
+ "level2": 0,
+ "level3": 0
+ },
+ "prs": [
+ {
+ "url": "https://github.com/Parnab03/WallGodds/pull/100",
+ "title": "wallpaper new design",
+ "repo": "Parnab03/WallGodds",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-23T19:16:20Z",
+ "updated_at": "2025-07-25T14:57:53Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-25T14:57:53Z",
+ "author_url": "https://github.com/Harshhdhankhar",
+ "author_avatar": "https://avatars.githubusercontent.com/u/77875741?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/77875741?v=4",
+ "profile_url": "https://github.com/Harshhdhankhar"
+ },
+ "Annishivakumara": {
+ "expectedPoints": 4,
+ "currentPoints": 4,
+ "levels": {
+ "level1": 1,
+ "level2": 0,
+ "level3": 0
+ },
+ "prs": [
+ {
+ "url": "https://github.com/pavitraag/Project-Vault/pull/270",
+ "title": "[ Fix ] Navbar Elements Scattered and Misaligned on Desktop (#240)",
+ "repo": "pavitraag/Project-Vault",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-08-02T08:51:01Z",
+ "updated_at": "2025-08-02T09:04:11Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-08-02T09:04:11Z",
+ "author_url": "https://github.com/Annishivakumara",
+ "author_avatar": "https://avatars.githubusercontent.com/u/142305502?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/142305502?v=4",
+ "profile_url": "https://github.com/Annishivakumara"
+ },
+ "ansh766": {
+ "expectedPoints": 8,
+ "currentPoints": 4,
+ "levels": {
+ "level1": 2,
+ "level2": 0,
+ "level3": 0
+ },
+ "prs": [
+ {
+ "url": "https://github.com/pavitraag/Project-Vault/pull/249",
+ "title": "feat: add typing animation to header title and subtitle",
+ "repo": "pavitraag/Project-Vault",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-08-01T00:50:07Z",
+ "updated_at": "2025-08-02T09:07:46Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-08-02T09:07:38Z",
+ "author_url": "https://github.com/ansh766",
+ "author_avatar": "https://avatars.githubusercontent.com/u/200562126?v=4"
+ },
+ {
+ "url": "https://github.com/pavitraag/Project-Vault/pull/218",
+ "title": "Feature header animation",
+ "repo": "pavitraag/Project-Vault",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-30T21:55:34Z",
+ "updated_at": "2025-08-01T00:30:57Z",
+ "state": "closed",
+ "merged": false,
+ "merged_at": null,
+ "author_url": "https://github.com/ansh766",
+ "author_avatar": "https://avatars.githubusercontent.com/u/200562126?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/200562126?v=4",
+ "profile_url": "https://github.com/ansh766"
+ },
+ "dev-with-asmie": {
+ "expectedPoints": 4,
+ "currentPoints": 4,
+ "levels": {
+ "level1": 1,
+ "level2": 0,
+ "level3": 0
+ },
+ "prs": [
+ {
+ "url": "https://github.com/pavitraag/Project-Vault/pull/245",
+ "title": "fix: changed the color of ~ What Makes Us Different",
+ "repo": "pavitraag/Project-Vault",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-31T17:02:01Z",
+ "updated_at": "2025-08-02T09:11:26Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-08-02T09:11:07Z",
+ "author_url": "https://github.com/dev-with-asmie",
+ "author_avatar": "https://avatars.githubusercontent.com/u/174164322?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/174164322?v=4",
+ "profile_url": "https://github.com/dev-with-asmie"
+ },
+ "SujitYalmar": {
+ "expectedPoints": 4,
+ "currentPoints": 4,
+ "levels": {
+ "level1": 1,
+ "level2": 0,
+ "level3": 0
+ },
+ "prs": [
+ {
+ "url": "https://github.com/pavitraag/Project-Vault/pull/222",
+ "title": "Fix: UI Bugs Across Navbar, Footer, FAQ, and Home Page",
+ "repo": "pavitraag/Project-Vault",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-31T04:23:09Z",
+ "updated_at": "2025-07-31T04:50:35Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-31T04:50:13Z",
+ "author_url": "https://github.com/SujitYalmar",
+ "author_avatar": "https://avatars.githubusercontent.com/u/155601038?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/155601038?v=4",
+ "profile_url": "https://github.com/SujitYalmar"
+ },
+ "mdnm18": {
+ "expectedPoints": 4,
+ "currentPoints": 4,
+ "levels": {
+ "level1": 1,
+ "level2": 0,
+ "level3": 0
+ },
+ "prs": [
+ {
+ "url": "https://github.com/pavitraag/Project-Vault/pull/215",
+ "title": "feat: Add ToDo App project",
+ "repo": "pavitraag/Project-Vault",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-30T18:00:13Z",
+ "updated_at": "2025-08-02T09:11:48Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-08-02T09:11:48Z",
+ "author_url": "https://github.com/mdnm18",
+ "author_avatar": "https://avatars.githubusercontent.com/u/184644006?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/184644006?v=4",
+ "profile_url": "https://github.com/mdnm18"
+ },
+ "tiya2006": {
+ "expectedPoints": 4,
+ "currentPoints": 4,
+ "levels": {
+ "level1": 1,
+ "level2": 0,
+ "level3": 0
+ },
+ "prs": [
+ {
+ "url": "https://github.com/pavitraag/Project-Vault/pull/168",
+ "title": "Add an icon to website",
+ "repo": "pavitraag/Project-Vault",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-29T05:21:47Z",
+ "updated_at": "2025-07-29T18:46:26Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-29T05:30:36Z",
+ "author_url": "https://github.com/tiya2006",
+ "author_avatar": "https://avatars.githubusercontent.com/u/180216825?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/180216825?v=4",
+ "profile_url": "https://github.com/tiya2006"
+ },
+ "ankita-mohantyy": {
+ "expectedPoints": 4,
+ "currentPoints": 4,
+ "levels": {
+ "level1": 1,
+ "level2": 0,
+ "level3": 0
+ },
+ "prs": [
+ {
+ "url": "https://github.com/pavitraag/Project-Vault/pull/167",
+ "title": "Add Instructions to Snake Game for Better User Experience",
+ "repo": "pavitraag/Project-Vault",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-29T04:47:34Z",
+ "updated_at": "2025-07-29T18:46:03Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-29T05:31:32Z",
+ "author_url": "https://github.com/ankita-mohantyy",
+ "author_avatar": "https://avatars.githubusercontent.com/u/182128428?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/182128428?v=4",
+ "profile_url": "https://github.com/ankita-mohantyy"
+ },
+ "Vaishnavishinde9552": {
+ "expectedPoints": 4,
+ "currentPoints": 4,
+ "levels": {
+ "level1": 1,
+ "level2": 0,
+ "level3": 0
+ },
+ "prs": [
+ {
+ "url": "https://github.com/pavitraag/Project-Vault/pull/143",
+ "title": "Fix: removed duplicate navbar and aligned header",
+ "repo": "pavitraag/Project-Vault",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-27T15:32:39Z",
+ "updated_at": "2025-07-29T18:43:10Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-29T17:10:07Z",
+ "author_url": "https://github.com/Vaishnavishinde9552",
+ "author_avatar": "https://avatars.githubusercontent.com/u/173901857?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/173901857?v=4",
+ "profile_url": "https://github.com/Vaishnavishinde9552"
+ },
+ "bhavyaaleti28": {
+ "expectedPoints": 4,
+ "currentPoints": 4,
+ "levels": {
+ "level1": 1,
+ "level2": 0,
+ "level3": 0
+ },
+ "prs": [
+ {
+ "url": "https://github.com/pavitraag/Project-Vault/pull/105",
+ "title": "📦 [Feature Add] Add Word Guess Game to games section",
+ "repo": "pavitraag/Project-Vault",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-26T09:24:12Z",
+ "updated_at": "2025-07-29T18:39:30Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-28T18:16:45Z",
+ "author_url": "https://github.com/bhavyaaleti28",
+ "author_avatar": "https://avatars.githubusercontent.com/u/183093715?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/183093715?v=4",
+ "profile_url": "https://github.com/bhavyaaleti28"
+ },
+ "purveee04": {
+ "expectedPoints": 4,
+ "currentPoints": 4,
+ "levels": {
+ "level1": 1,
+ "level2": 0,
+ "level3": 0
+ },
+ "prs": [
+ {
+ "url": "https://github.com/pavitraag/Project-Vault/pull/97",
+ "title": "Enhanced the UI of cards",
+ "repo": "pavitraag/Project-Vault",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-26T04:58:26Z",
+ "updated_at": "2025-07-29T18:37:55Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-26T19:45:58Z",
+ "author_url": "https://github.com/purveee04",
+ "author_avatar": "https://avatars.githubusercontent.com/u/184834799?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/184834799?v=4",
+ "profile_url": "https://github.com/purveee04"
+ },
+ "kaurroopak": {
+ "expectedPoints": 4,
+ "currentPoints": 4,
+ "levels": {
+ "level1": 1,
+ "level2": 0,
+ "level3": 0
+ },
+ "prs": [
+ {
+ "url": "https://github.com/pavitraag/Project-Vault/pull/72",
+ "title": "[ML Project] Added Fake News Classifier using Machine Learning",
+ "repo": "pavitraag/Project-Vault",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-24T22:08:54Z",
+ "updated_at": "2025-07-29T18:36:35Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-28T19:10:45Z",
+ "author_url": "https://github.com/kaurroopak",
+ "author_avatar": "https://avatars.githubusercontent.com/u/178416695?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/178416695?v=4",
+ "profile_url": "https://github.com/kaurroopak"
+ },
+ "Prerna-N29": {
+ "expectedPoints": 4,
+ "currentPoints": 4,
+ "levels": {
+ "level1": 1,
+ "level2": 0,
+ "level3": 0
+ },
+ "prs": [
+ {
+ "url": "https://github.com/Er-luffy-D/SimplifAI/pull/60",
+ "title": "Added user walkthrough documentation based on demo video",
+ "repo": "Er-luffy-D/SimplifAI",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-31T15:40:36Z",
+ "updated_at": "2025-08-02T17:01:07Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-31T16:17:02Z",
+ "author_url": "https://github.com/Prerna-N29",
+ "author_avatar": "https://avatars.githubusercontent.com/u/194608092?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/194608092?v=4",
+ "profile_url": "https://github.com/Prerna-N29"
+ },
+ "Sreenand76": {
+ "expectedPoints": 4,
+ "currentPoints": 4,
+ "levels": {
+ "level1": 1,
+ "level2": 0,
+ "level3": 0
+ },
+ "prs": [
+ {
+ "url": "https://github.com/Er-luffy-D/SimplifAI/pull/46",
+ "title": "Improved responsiveness for mobile and tablet devices",
+ "repo": "Er-luffy-D/SimplifAI",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-27T11:45:55Z",
+ "updated_at": "2025-08-02T16:56:59Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-27T13:02:23Z",
+ "author_url": "https://github.com/Sreenand76",
+ "author_avatar": "https://avatars.githubusercontent.com/u/172968155?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/172968155?v=4",
+ "profile_url": "https://github.com/Sreenand76"
+ },
+ "GauravSingh0248": {
+ "expectedPoints": 4,
+ "currentPoints": 4,
+ "levels": {
+ "level1": 1,
+ "level2": 0,
+ "level3": 0
+ },
+ "prs": [
+ {
+ "url": "https://github.com/Er-luffy-D/SimplifAI/pull/17",
+ "title": "Refine error messages in FileUploader and enhance Toast UI with auto-…",
+ "repo": "Er-luffy-D/SimplifAI",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-22T19:36:53Z",
+ "updated_at": "2025-08-02T16:50:41Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-22T20:35:53Z",
+ "author_url": "https://github.com/GauravSingh0248",
+ "author_avatar": "https://avatars.githubusercontent.com/u/142302580?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/142302580?v=4",
+ "profile_url": "https://github.com/GauravSingh0248"
+ },
+ "thisisselva18": {
+ "expectedPoints": 4,
+ "currentPoints": 4,
+ "levels": {
+ "level1": 1,
+ "level2": 0,
+ "level3": 0
+ },
+ "prs": [
+ {
+ "url": "https://github.com/Prateek9876/NagarVikas/pull/174",
+ "title": "add: paddings around textfields & buttons in Complaint Form",
+ "repo": "Prateek9876/NagarVikas",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-28T15:38:16Z",
+ "updated_at": "2025-07-30T09:06:19Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-30T09:06:19Z",
+ "author_url": "https://github.com/thisisselva18",
+ "author_avatar": "https://avatars.githubusercontent.com/u/176132619?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/176132619?v=4",
+ "profile_url": "https://github.com/thisisselva18"
+ },
+ "aastha-yadav2": {
+ "expectedPoints": 4,
+ "currentPoints": 4,
+ "levels": {
+ "level1": 1,
+ "level2": 0,
+ "level3": 0
+ },
+ "prs": [
+ {
+ "url": "https://github.com/PRIYANSHU2026/DataSentience-AIML/pull/330",
+ "title": "Add Sonar Classification project under Miscellaneous Folder",
+ "repo": "PRIYANSHU2026/DataSentience-AIML",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-08-02T08:14:51Z",
+ "updated_at": "2025-08-03T06:36:27Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-08-02T20:17:30Z",
+ "author_url": "https://github.com/aastha-yadav2",
+ "author_avatar": "https://avatars.githubusercontent.com/u/186994578?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/186994578?v=4",
+ "profile_url": "https://github.com/aastha-yadav2"
+ },
+ "adithya-naik": {
+ "expectedPoints": 4,
+ "currentPoints": 4,
+ "levels": {
+ "level1": 1,
+ "level2": 0,
+ "level3": 0
+ },
+ "prs": [
+ {
+ "url": "https://github.com/rahulkhandait-sde/cineverse/pull/37",
+ "title": "added ScrollToTop.tsx-#20",
+ "repo": "rahulkhandait-sde/movie-search",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-08-02T09:29:58Z",
+ "updated_at": "2025-08-02T13:49:19Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-08-02T13:49:19Z",
+ "author_url": "https://github.com/adithya-naik",
+ "author_avatar": "https://avatars.githubusercontent.com/u/152913540?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/152913540?v=4",
+ "profile_url": "https://github.com/adithya-naik"
+ },
+ "10xshivam": {
+ "expectedPoints": 4,
+ "currentPoints": 4,
+ "levels": {
+ "level1": 1,
+ "level2": 0,
+ "level3": 0
+ },
+ "prs": [
+ {
+ "url": "https://github.com/rahulkhandait-sde/cineverse/pull/24",
+ "title": "feat: Add Dockerfile and .dockerignore for containerization",
+ "repo": "rahulkhandait-sde/movie-search",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-29T21:15:22Z",
+ "updated_at": "2025-08-02T07:56:17Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-08-02T07:56:17Z",
+ "author_url": "https://github.com/10xshivam",
+ "author_avatar": "https://avatars.githubusercontent.com/u/149164301?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/149164301?v=4",
+ "profile_url": "https://github.com/10xshivam"
+ },
+ "Ishpreet-232": {
+ "expectedPoints": 4,
+ "currentPoints": 4,
+ "levels": {
+ "level1": 1,
+ "level2": 0,
+ "level3": 0
+ },
+ "prs": [
+ {
+ "url": "https://github.com/Rajkumarbhakta/Canvas/pull/15",
+ "title": "Added Theme Toggle Icon for System, Dark and Light modes",
+ "repo": "Rajkumarbhakta/Canvas",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-29T04:29:42Z",
+ "updated_at": "2025-07-31T11:50:39Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-29T15:03:01Z",
+ "author_url": "https://github.com/Ishpreet-232",
+ "author_avatar": "https://avatars.githubusercontent.com/u/177736049?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/177736049?v=4",
+ "profile_url": "https://github.com/Ishpreet-232"
+ },
+ "deerobo1": {
+ "expectedPoints": 4,
+ "currentPoints": 4,
+ "levels": {
+ "level1": 1,
+ "level2": 0,
+ "level3": 0
+ },
+ "prs": [
+ {
+ "url": "https://github.com/reshamsai150/7.Analysis-and-Prediction-of-Electric-Vehicle-Costs-A-Machine-Learning-Based-Approach/pull/40",
+ "title": "Added feature engineering",
+ "repo": "reshamsai150/7.Analysis-and-Prediction-of-Electric-Vehicle-Costs-A-Machine-Learning-Based-Approach",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-08-01T05:23:46Z",
+ "updated_at": "2025-08-03T04:29:51Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-08-03T04:29:27Z",
+ "author_url": "https://github.com/deerobo1",
+ "author_avatar": "https://avatars.githubusercontent.com/u/148250722?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/148250722?v=4",
+ "profile_url": "https://github.com/deerobo1"
+ },
+ "Shauryaroks": {
+ "expectedPoints": 4,
+ "currentPoints": 4,
+ "levels": {
+ "level1": 1,
+ "level2": 0,
+ "level3": 0
+ },
+ "prs": [
+ {
+ "url": "https://github.com/reshamsai150/7.Analysis-and-Prediction-of-Electric-Vehicle-Costs-A-Machine-Learning-Based-Approach/pull/37",
+ "title": "feat: Implement RandomizedSearchCV for XGBoost hyperparameter tuning",
+ "repo": "reshamsai150/7.Analysis-and-Prediction-of-Electric-Vehicle-Costs-A-Machine-Learning-Based-Approach",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-31T11:17:11Z",
+ "updated_at": "2025-08-03T04:28:38Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-08-03T04:28:14Z",
+ "author_url": "https://github.com/Shauryaroks",
+ "author_avatar": "https://avatars.githubusercontent.com/u/88179278?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/88179278?v=4",
+ "profile_url": "https://github.com/Shauryaroks"
+ },
+ "Kushanware": {
+ "expectedPoints": 4,
+ "currentPoints": 4,
+ "levels": {
+ "level1": 1,
+ "level2": 0,
+ "level3": 0
+ },
+ "prs": [
+ {
+ "url": "https://github.com/reshamsai150/7.Analysis-and-Prediction-of-Electric-Vehicle-Costs-A-Machine-Learning-Based-Approach/pull/33",
+ "title": "Enhancement: Add Output Option to Save EV Cost Prediction Results to CSV (Issue #24)",
+ "repo": "reshamsai150/7.Analysis-and-Prediction-of-Electric-Vehicle-Costs-A-Machine-Learning-Based-Approach",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-30T13:44:25Z",
+ "updated_at": "2025-08-03T04:25:29Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-08-03T04:25:03Z",
+ "author_url": "https://github.com/Kushanware",
+ "author_avatar": "https://avatars.githubusercontent.com/u/115879636?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/115879636?v=4",
+ "profile_url": "https://github.com/Kushanware"
+ },
+ "anandy07": {
+ "expectedPoints": 4,
+ "currentPoints": 4,
+ "levels": {
+ "level1": 1,
+ "level2": 0,
+ "level3": 0
+ },
+ "prs": [
+ {
+ "url": "https://github.com/reshamsai150/7.Analysis-and-Prediction-of-Electric-Vehicle-Costs-A-Machine-Learning-Based-Approach/pull/31",
+ "title": "Updated README file",
+ "repo": "reshamsai150/7.Analysis-and-Prediction-of-Electric-Vehicle-Costs-A-Machine-Learning-Based-Approach",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-30T12:31:01Z",
+ "updated_at": "2025-08-03T04:35:29Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-30T17:22:34Z",
+ "author_url": "https://github.com/anandy07",
+ "author_avatar": "https://avatars.githubusercontent.com/u/168952065?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/168952065?v=4",
+ "profile_url": "https://github.com/anandy07"
+ },
+ "Zaheerkhan4865": {
+ "expectedPoints": 4,
+ "currentPoints": 4,
+ "levels": {
+ "level1": 1,
+ "level2": 0,
+ "level3": 0
+ },
+ "prs": [
+ {
+ "url": "https://github.com/Richajaishwal0/Trip_assistant/pull/27",
+ "title": "fix footer elements alignation and improve navbar",
+ "repo": "Richajaishwal0/Trip_assistant",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-26T04:53:20Z",
+ "updated_at": "2025-07-26T17:10:12Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-26T05:11:06Z",
+ "author_url": "https://github.com/Zaheerkhan4865",
+ "author_avatar": "https://avatars.githubusercontent.com/u/146465620?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/146465620?v=4",
+ "profile_url": "https://github.com/Zaheerkhan4865"
+ },
+ "tanishaguptaa115": {
+ "expectedPoints": 4,
+ "currentPoints": 4,
+ "levels": {
+ "level1": 1,
+ "level2": 0,
+ "level3": 0
+ },
+ "prs": [
+ {
+ "url": "https://github.com/ruchikakengal/WebDevIn100_Days/pull/287",
+ "title": "✨ Added Dark/Light mode toggle and Navbar to Weather App",
+ "repo": "ruchikakengal/WebDevIn100_Days",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-25T08:31:08Z",
+ "updated_at": "2025-07-25T13:54:20Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-25T13:54:20Z",
+ "author_url": "https://github.com/tanishaguptaa115",
+ "author_avatar": "https://avatars.githubusercontent.com/u/179120575?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/179120575?v=4",
+ "profile_url": "https://github.com/tanishaguptaa115"
+ },
+ "angelagarwal2": {
+ "expectedPoints": 4,
+ "currentPoints": 4,
+ "levels": {
+ "level1": 1,
+ "level2": 0,
+ "level3": 0
+ },
+ "prs": [
+ {
+ "url": "https://github.com/ruchikakengal/WebDevIn100_Days/pull/263",
+ "title": "Adding Stopwatch Project ",
+ "repo": "ruchikakengal/WebDevIn100_Days",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-24T12:32:13Z",
+ "updated_at": "2025-07-24T15:22:47Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-24T15:22:47Z",
+ "author_url": "https://github.com/angelagarwal2",
+ "author_avatar": "https://avatars.githubusercontent.com/u/177358640?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/177358640?v=4",
+ "profile_url": "https://github.com/angelagarwal2"
+ },
+ "FrostedPetals": {
+ "expectedPoints": 4,
+ "currentPoints": 4,
+ "levels": {
+ "level1": 1,
+ "level2": 0,
+ "level3": 0
+ },
+ "prs": [
+ {
+ "url": "https://github.com/rutikakengal/100DAYS_OF_100WEBPROJECTS/pull/396",
+ "title": "Cleanly added doodle jump again",
+ "repo": "rutikakengal/100DAYS_OF_100WEBPROJECTS",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-30T08:31:54Z",
+ "updated_at": "2025-07-30T09:07:18Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-30T09:06:43Z",
+ "author_url": "https://github.com/FrostedPetals",
+ "author_avatar": "https://avatars.githubusercontent.com/u/185170046?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/185170046?v=4",
+ "profile_url": "https://github.com/FrostedPetals"
+ },
+ "parul-sharma16": {
+ "expectedPoints": 4,
+ "currentPoints": 4,
+ "levels": {
+ "level1": 1,
+ "level2": 0,
+ "level3": 0
+ },
+ "prs": [
+ {
+ "url": "https://github.com/rutikakengal/100DAYS_OF_100WEBPROJECTS/pull/392",
+ "title": "Guess the Number Game: Day 30 Conflicts Resolved",
+ "repo": "rutikakengal/100DAYS_OF_100WEBPROJECTS",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-30T07:49:18Z",
+ "updated_at": "2025-07-30T07:52:14Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-30T07:51:51Z",
+ "author_url": "https://github.com/parul-sharma16",
+ "author_avatar": "https://avatars.githubusercontent.com/u/179852992?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/179852992?v=4",
+ "profile_url": "https://github.com/parul-sharma16"
+ },
+ "ManiGaneshwari": {
+ "expectedPoints": 4,
+ "currentPoints": 4,
+ "levels": {
+ "level1": 1,
+ "level2": 0,
+ "level3": 0
+ },
+ "prs": [
+ {
+ "url": "https://github.com/rutikakengal/100DAYS_OF_100WEBPROJECTS/pull/387",
+ "title": "Add Temperature Converter Project Day 25 [Issue #177]",
+ "repo": "rutikakengal/100DAYS_OF_100WEBPROJECTS",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-30T06:08:02Z",
+ "updated_at": "2025-07-30T06:16:43Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-30T06:16:18Z",
+ "author_url": "https://github.com/ManiGaneshwari",
+ "author_avatar": "https://avatars.githubusercontent.com/u/184761359?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/184761359?v=4",
+ "profile_url": "https://github.com/ManiGaneshwari"
+ },
+ "likitharai": {
+ "expectedPoints": 4,
+ "currentPoints": 4,
+ "levels": {
+ "level1": 1,
+ "level2": 0,
+ "level3": 0
+ },
+ "prs": [
+ {
+ "url": "https://github.com/rutikakengal/100DAYS_OF_100WEBPROJECTS/pull/374",
+ "title": "feat: Add background music feature",
+ "repo": "rutikakengal/100DAYS_OF_100WEBPROJECTS",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-29T18:24:58Z",
+ "updated_at": "2025-07-30T10:22:48Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-30T10:22:25Z",
+ "author_url": "https://github.com/likitharai",
+ "author_avatar": "https://avatars.githubusercontent.com/u/199588007?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/199588007?v=4",
+ "profile_url": "https://github.com/likitharai"
+ },
+ "sharvi16": {
+ "expectedPoints": 4,
+ "currentPoints": 4,
+ "levels": {
+ "level1": 1,
+ "level2": 0,
+ "level3": 0
+ },
+ "prs": [
+ {
+ "url": "https://github.com/rutikakengal/100DAYS_OF_100WEBPROJECTS/pull/221",
+ "title": "Added Day 10 - Memory Card Game",
+ "repo": "rutikakengal/100DAYS_OF_100WEBPROJECTS",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-26T16:08:40Z",
+ "updated_at": "2025-07-28T09:18:13Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-28T09:17:51Z",
+ "author_url": "https://github.com/sharvi16",
+ "author_avatar": "https://avatars.githubusercontent.com/u/198214685?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/198214685?v=4",
+ "profile_url": "https://github.com/sharvi16"
+ },
+ "SarvaniBalivada": {
+ "expectedPoints": 4,
+ "currentPoints": 4,
+ "levels": {
+ "level1": 1,
+ "level2": 0,
+ "level3": 0
+ },
+ "prs": [
+ {
+ "url": "https://github.com/rutikakengal/100DAYS_OF_100WEBPROJECTS/pull/211",
+ "title": "Add Day 12 project - Pong Game",
+ "repo": "rutikakengal/100DAYS_OF_100WEBPROJECTS",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-26T11:40:13Z",
+ "updated_at": "2025-07-27T13:38:03Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-27T13:37:36Z",
+ "author_url": "https://github.com/SarvaniBalivada",
+ "author_avatar": "https://avatars.githubusercontent.com/u/166932006?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/166932006?v=4",
+ "profile_url": "https://github.com/SarvaniBalivada"
+ },
+ "RaniPrasanna47": {
+ "expectedPoints": 4,
+ "currentPoints": 4,
+ "levels": {
+ "level1": 1,
+ "level2": 0,
+ "level3": 0
+ },
+ "prs": [
+ {
+ "url": "https://github.com/rutikakengal/100DAYS_OF_100WEBPROJECTS/pull/199",
+ "title": "added To-Do List",
+ "repo": "rutikakengal/100DAYS_OF_100WEBPROJECTS",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-26T07:28:26Z",
+ "updated_at": "2025-07-28T17:29:21Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-28T08:12:40Z",
+ "author_url": "https://github.com/RaniPrasanna47",
+ "author_avatar": "https://avatars.githubusercontent.com/u/192942099?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/192942099?v=4",
+ "profile_url": "https://github.com/RaniPrasanna47"
+ },
+ "sagnik-das-ai": {
+ "expectedPoints": 4,
+ "currentPoints": 4,
+ "levels": {
+ "level1": 1,
+ "level2": 0,
+ "level3": 0
+ },
+ "prs": [
+ {
+ "url": "https://github.com/rutikakengal/100DAYS_OF_100WEBPROJECTS/pull/168",
+ "title": "Smooth Scrolling Enhancement for Navbar Links",
+ "repo": "rutikakengal/100DAYS_OF_100WEBPROJECTS",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-25T12:29:48Z",
+ "updated_at": "2025-07-26T10:01:40Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-26T10:01:19Z",
+ "author_url": "https://github.com/sagnik-das-ai",
+ "author_avatar": "https://avatars.githubusercontent.com/u/220645552?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/220645552?v=4",
+ "profile_url": "https://github.com/sagnik-das-ai"
+ },
+ "jj-9901": {
+ "expectedPoints": 4,
+ "currentPoints": 4,
+ "levels": {
+ "level1": 1,
+ "level2": 0,
+ "level3": 0
+ },
+ "prs": [
+ {
+ "url": "https://github.com/rutikakengal/100DAYS_OF_100WEBPROJECTS/pull/154",
+ "title": "Resolved Conflicts - Reading Journal Web App",
+ "repo": "rutikakengal/100DAYS_OF_100WEBPROJECTS",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-25T11:13:09Z",
+ "updated_at": "2025-07-26T09:21:15Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-26T09:20:28Z",
+ "author_url": "https://github.com/jj-9901",
+ "author_avatar": "https://avatars.githubusercontent.com/u/178759356?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/178759356?v=4",
+ "profile_url": "https://github.com/jj-9901"
+ },
+ "AnilKumt": {
+ "expectedPoints": 4,
+ "currentPoints": 4,
+ "levels": {
+ "level1": 1,
+ "level2": 0,
+ "level3": 0
+ },
+ "prs": [
+ {
+ "url": "https://github.com/rutikakengal/100DAYS_OF_100WEBPROJECTS/pull/102",
+ "title": "Add BMI Calculator project under GSSoC",
+ "repo": "rutikakengal/100DAYS_OF_100WEBPROJECTS",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-24T09:49:24Z",
+ "updated_at": "2025-07-25T09:59:59Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-25T09:59:27Z",
+ "author_url": "https://github.com/AnilKumt",
+ "author_avatar": "https://avatars.githubusercontent.com/u/179395243?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/179395243?v=4",
+ "profile_url": "https://github.com/AnilKumt"
+ },
+ "unknownguy49": {
+ "expectedPoints": 4,
+ "currentPoints": 4,
+ "levels": {
+ "level1": 1,
+ "level2": 0,
+ "level3": 0
+ },
+ "prs": [
+ {
+ "url": "https://github.com/rutikakengal/100DAYS_OF_100WEBPROJECTS/pull/57",
+ "title": "Added light mode functionality to toggle button",
+ "repo": "rutikakengal/100DAYS_OF_100WEBPROJECTS",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-23T10:33:31Z",
+ "updated_at": "2025-07-23T13:51:38Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-23T13:51:00Z",
+ "author_url": "https://github.com/unknownguy49",
+ "author_avatar": "https://avatars.githubusercontent.com/u/91245369?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/91245369?v=4",
+ "profile_url": "https://github.com/unknownguy49"
+ },
+ "Dbansal06": {
+ "expectedPoints": 4,
+ "currentPoints": 4,
+ "levels": {
+ "level1": 1,
+ "level2": 0,
+ "level3": 0
+ },
+ "prs": [
+ {
+ "url": "https://github.com/eccentriccoder01/TalkHeal/pull/78",
+ "title": "Add Keyboard Navigation for Mood Slider with ARIA Attributes.",
+ "repo": "eccentriccoder01/TalkHeal",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-31T18:16:29Z",
+ "updated_at": "2025-08-02T19:29:51Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-08-02T19:29:51Z",
+ "author_url": "https://github.com/Dbansal06",
+ "author_avatar": "https://avatars.githubusercontent.com/u/200491453?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/200491453?v=4",
+ "profile_url": "https://github.com/Dbansal06"
+ },
+ "dev9086": {
+ "expectedPoints": 4,
+ "currentPoints": 4,
+ "levels": {
+ "level1": 1,
+ "level2": 0,
+ "level3": 0
+ },
+ "prs": [
+ {
+ "url": "https://github.com/eccentriccoder01/TalkHeal/pull/44",
+ "title": "Increased Latency Caused by Redundant Network Requests",
+ "repo": "eccentriccoder01/TalkHeal",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-26T02:07:23Z",
+ "updated_at": "2025-08-03T03:52:52Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-26T05:31:40Z",
+ "author_url": "https://github.com/dev9086",
+ "author_avatar": "https://avatars.githubusercontent.com/u/198906175?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/198906175?v=4",
+ "profile_url": "https://github.com/dev9086"
+ },
+ "ASR1015": {
+ "expectedPoints": 11,
+ "currentPoints": 4,
+ "levels": {
+ "level1": 1,
+ "level2": 1,
+ "level3": 0
+ },
+ "prs": [
+ {
+ "url": "https://github.com/SamXop123/RigCrafter/pull/38",
+ "title": "Add dynamic blog page.jsx for individual blog routes",
+ "repo": "SamXop123/RigCrafter",
+ "level": "level2",
+ "points": 7,
+ "created_at": "2025-08-02T08:06:37Z",
+ "updated_at": "2025-08-02T15:37:01Z",
+ "state": "open",
+ "merged": false,
+ "merged_at": null,
+ "author_url": "https://github.com/ASR1015",
+ "author_avatar": "https://avatars.githubusercontent.com/u/108449265?v=4"
+ },
+ {
+ "url": "https://github.com/karmveershubham/CodeStreak/pull/28",
+ "title": "Polish About Page, Add Theme Toggle, Responsive UI, Tailwind config update",
+ "repo": "karmveershubham/CodeStreak",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-27T13:25:35Z",
+ "updated_at": "2025-07-30T14:48:06Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-28T16:04:31Z",
+ "author_url": "https://github.com/ASR1015",
+ "author_avatar": "https://avatars.githubusercontent.com/u/108449265?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/108449265?v=4",
+ "profile_url": "https://github.com/ASR1015"
+ },
+ "Riya-Kharade": {
+ "expectedPoints": 4,
+ "currentPoints": 4,
+ "levels": {
+ "level1": 1,
+ "level2": 0,
+ "level3": 0
+ },
+ "prs": [
+ {
+ "url": "https://github.com/SamXop123/RigCrafter/pull/28",
+ "title": "Update rig-builder.tsx",
+ "repo": "SamXop123/RigCrafter",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-29T16:56:01Z",
+ "updated_at": "2025-07-30T14:34:49Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-30T14:32:45Z",
+ "author_url": "https://github.com/Riya-Kharade",
+ "author_avatar": "https://avatars.githubusercontent.com/u/191875350?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/191875350?v=4",
+ "profile_url": "https://github.com/Riya-Kharade"
+ },
+ "aaaditya2005": {
+ "expectedPoints": 4,
+ "currentPoints": 4,
+ "levels": {
+ "level1": 1,
+ "level2": 0,
+ "level3": 0
+ },
+ "prs": [
+ {
+ "url": "https://github.com/sampadatiwari30/DeshDarshan/pull/298",
+ "title": "Feat: Enhance UI/UX of the feedback form as contact us page",
+ "repo": "sampadatiwari30/DeshDarshan",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-08-01T12:16:30Z",
+ "updated_at": "2025-08-01T15:27:51Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-08-01T15:25:37Z",
+ "author_url": "https://github.com/aaaditya2005",
+ "author_avatar": "https://avatars.githubusercontent.com/u/169898001?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/169898001?v=4",
+ "profile_url": "https://github.com/aaaditya2005"
+ },
+ "AditiTangri": {
+ "expectedPoints": 4,
+ "currentPoints": 4,
+ "levels": {
+ "level1": 1,
+ "level2": 0,
+ "level3": 0
+ },
+ "prs": [
+ {
+ "url": "https://github.com/sampadatiwari30/DeshDarshan/pull/260",
+ "title": "Fix : Improve Image Quality in 'Heritage of India' Section",
+ "repo": "sampadatiwari30/DeshDarshan",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-31T08:06:01Z",
+ "updated_at": "2025-08-01T16:24:44Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-08-01T16:23:31Z",
+ "author_url": "https://github.com/AditiTangri",
+ "author_avatar": "https://avatars.githubusercontent.com/u/191590330?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/191590330?v=4",
+ "profile_url": "https://github.com/AditiTangri"
+ },
+ "Mahesh1215-babu": {
+ "expectedPoints": 4,
+ "currentPoints": 4,
+ "levels": {
+ "level1": 1,
+ "level2": 0,
+ "level3": 0
+ },
+ "prs": [
+ {
+ "url": "https://github.com/sampadatiwari30/DeshDarshan/pull/238",
+ "title": "Add: Signup page redirection (#221)",
+ "repo": "sampadatiwari30/DeshDarshan",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-30T13:41:19Z",
+ "updated_at": "2025-07-31T00:41:50Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-30T19:02:09Z",
+ "author_url": "https://github.com/Mahesh1215-babu",
+ "author_avatar": "https://avatars.githubusercontent.com/u/182195277?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/182195277?v=4",
+ "profile_url": "https://github.com/Mahesh1215-babu"
+ },
+ "kanikagoel12": {
+ "expectedPoints": 4,
+ "currentPoints": 4,
+ "levels": {
+ "level1": 1,
+ "level2": 0,
+ "level3": 0
+ },
+ "prs": [
+ {
+ "url": "https://github.com/sampadatiwari30/DeshDarshan/pull/219",
+ "title": "Fix: removed duplicated navbar on contact us page",
+ "repo": "sampadatiwari30/DeshDarshan",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-29T11:25:51Z",
+ "updated_at": "2025-07-29T17:56:41Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-29T17:19:24Z",
+ "author_url": "https://github.com/kanikagoel12",
+ "author_avatar": "https://avatars.githubusercontent.com/u/132819706?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/132819706?v=4",
+ "profile_url": "https://github.com/kanikagoel12"
+ },
+ "kaifansariw": {
+ "expectedPoints": 4,
+ "currentPoints": 4,
+ "levels": {
+ "level1": 1,
+ "level2": 0,
+ "level3": 0
+ },
+ "prs": [
+ {
+ "url": "https://github.com/sampadatiwari30/DeshDarshan/pull/209",
+ "title": "Added: Change the documentation in What You'll Discover section.",
+ "repo": "sampadatiwari30/DeshDarshan",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-28T18:17:29Z",
+ "updated_at": "2025-07-28T19:14:03Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-28T19:13:37Z",
+ "author_url": "https://github.com/kaifansariw",
+ "author_avatar": "https://avatars.githubusercontent.com/u/190123901?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/190123901?v=4",
+ "profile_url": "https://github.com/kaifansariw"
+ },
+ "lobby11": {
+ "expectedPoints": 4,
+ "currentPoints": 4,
+ "levels": {
+ "level1": 1,
+ "level2": 0,
+ "level3": 0
+ },
+ "prs": [
+ {
+ "url": "https://github.com/sampadatiwari30/DeshDarshan/pull/195",
+ "title": "Enhanced login/signup buttons with hover spacing and animations",
+ "repo": "sampadatiwari30/DeshDarshan",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-28T10:09:20Z",
+ "updated_at": "2025-07-28T11:41:54Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-28T11:41:31Z",
+ "author_url": "https://github.com/lobby11",
+ "author_avatar": "https://avatars.githubusercontent.com/u/211287949?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/211287949?v=4",
+ "profile_url": "https://github.com/lobby11"
+ },
+ "dhangar007A": {
+ "expectedPoints": 4,
+ "currentPoints": 4,
+ "levels": {
+ "level1": 1,
+ "level2": 0,
+ "level3": 0
+ },
+ "prs": [
+ {
+ "url": "https://github.com/sampadatiwari30/DeshDarshan/pull/189",
+ "title": "signup-container issue resolved",
+ "repo": "sampadatiwari30/DeshDarshan",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-28T03:10:12Z",
+ "updated_at": "2025-07-28T13:55:43Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-28T13:47:30Z",
+ "author_url": "https://github.com/dhangar007A",
+ "author_avatar": "https://avatars.githubusercontent.com/u/147794851?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/147794851?v=4",
+ "profile_url": "https://github.com/dhangar007A"
+ },
+ "pranavpatil005": {
+ "expectedPoints": 4,
+ "currentPoints": 4,
+ "levels": {
+ "level1": 1,
+ "level2": 0,
+ "level3": 0
+ },
+ "prs": [
+ {
+ "url": "https://github.com/sampadatiwari30/DeshDarshan/pull/164",
+ "title": "fixed unlinked images,nav bar links,missing footer code,contactus page navbar",
+ "repo": "sampadatiwari30/DeshDarshan",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-27T06:00:41Z",
+ "updated_at": "2025-07-27T06:23:57Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-27T06:23:42Z",
+ "author_url": "https://github.com/pranavpatil005",
+ "author_avatar": "https://avatars.githubusercontent.com/u/191632580?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/191632580?v=4",
+ "profile_url": "https://github.com/pranavpatil005"
+ },
+ "001Priyanka": {
+ "expectedPoints": 4,
+ "currentPoints": 4,
+ "levels": {
+ "level1": 1,
+ "level2": 0,
+ "level3": 0
+ },
+ "prs": [
+ {
+ "url": "https://github.com/sampadatiwari30/DeshDarshan/pull/131",
+ "title": "Applied changes after forking fresh repo",
+ "repo": "sampadatiwari30/DeshDarshan",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-26T01:58:21Z",
+ "updated_at": "2025-07-28T11:52:29Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-26T04:26:28Z",
+ "author_url": "https://github.com/001Priyanka",
+ "author_avatar": "https://avatars.githubusercontent.com/u/206707976?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/206707976?v=4",
+ "profile_url": "https://github.com/001Priyanka"
+ },
+ "UmaVohra": {
+ "expectedPoints": 4,
+ "currentPoints": 4,
+ "levels": {
+ "level1": 1,
+ "level2": 0,
+ "level3": 0
+ },
+ "prs": [
+ {
+ "url": "https://github.com/sampadatiwari30/DeshDarshan/pull/122",
+ "title": "Fixed phone input validation and feedback form improvements(star ratings)",
+ "repo": "sampadatiwari30/DeshDarshan",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-25T11:25:02Z",
+ "updated_at": "2025-07-25T14:02:01Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-25T14:01:42Z",
+ "author_url": "https://github.com/UmaVohra",
+ "author_avatar": "https://avatars.githubusercontent.com/u/116455142?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/116455142?v=4",
+ "profile_url": "https://github.com/UmaVohra"
+ },
+ "arpitkushwaha90": {
+ "expectedPoints": 4,
+ "currentPoints": 4,
+ "levels": {
+ "level1": 1,
+ "level2": 0,
+ "level3": 0
+ },
+ "prs": [
+ {
+ "url": "https://github.com/sampadatiwari30/DeshDarshan/pull/119",
+ "title": "Added hover effects to navigation menu",
+ "repo": "sampadatiwari30/DeshDarshan",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-25T10:24:12Z",
+ "updated_at": "2025-07-25T17:04:49Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-25T16:55:06Z",
+ "author_url": "https://github.com/arpitkushwaha90",
+ "author_avatar": "https://avatars.githubusercontent.com/u/98214210?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/98214210?v=4",
+ "profile_url": "https://github.com/arpitkushwaha90"
+ },
+ "shreyapathak08": {
+ "expectedPoints": 4,
+ "currentPoints": 4,
+ "levels": {
+ "level1": 1,
+ "level2": 0,
+ "level3": 0
+ },
+ "prs": [
+ {
+ "url": "https://github.com/sampadatiwari30/DeshDarshan/pull/114",
+ "title": "Add Back to Top button to all pages",
+ "repo": "sampadatiwari30/DeshDarshan",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-25T09:21:09Z",
+ "updated_at": "2025-07-25T10:14:24Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-25T10:14:09Z",
+ "author_url": "https://github.com/shreyapathak08",
+ "author_avatar": "https://avatars.githubusercontent.com/u/132188893?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/132188893?v=4",
+ "profile_url": "https://github.com/shreyapathak08"
+ },
+ "Minakshichaturvedi": {
+ "expectedPoints": 4,
+ "currentPoints": 4,
+ "levels": {
+ "level1": 1,
+ "level2": 0,
+ "level3": 0
+ },
+ "prs": [
+ {
+ "url": "https://github.com/sampadatiwari30/DeshDarshan/pull/103",
+ "title": "fix: removed backtick bug",
+ "repo": "sampadatiwari30/DeshDarshan",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-24T21:25:47Z",
+ "updated_at": "2025-07-25T03:01:37Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-25T03:01:21Z",
+ "author_url": "https://github.com/Minakshichaturvedi",
+ "author_avatar": "https://avatars.githubusercontent.com/u/130944533?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/130944533?v=4",
+ "profile_url": "https://github.com/Minakshichaturvedi"
+ },
+ "parthasarathi-meta": {
+ "expectedPoints": 4,
+ "currentPoints": 4,
+ "levels": {
+ "level1": 1,
+ "level2": 0,
+ "level3": 0
+ },
+ "prs": [
+ {
+ "url": "https://github.com/sampadatiwari30/DeshDarshan/pull/86",
+ "title": "Added back button and smooth scroll to Dance Culture section",
+ "repo": "sampadatiwari30/DeshDarshan",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-24T08:46:03Z",
+ "updated_at": "2025-07-25T11:18:04Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-24T15:17:41Z",
+ "author_url": "https://github.com/parthasarathi-meta",
+ "author_avatar": "https://avatars.githubusercontent.com/u/113237485?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/113237485?v=4",
+ "profile_url": "https://github.com/parthasarathi-meta"
+ },
+ "utkarshp2829": {
+ "expectedPoints": 4,
+ "currentPoints": 4,
+ "levels": {
+ "level1": 1,
+ "level2": 0,
+ "level3": 0
+ },
+ "prs": [
+ {
+ "url": "https://github.com/sampadatiwari30/DeshDarshan/pull/73",
+ "title": "Fixed the Login and Sign-Up hovering and css issue",
+ "repo": "sampadatiwari30/DeshDarshan",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-23T18:18:53Z",
+ "updated_at": "2025-07-23T18:24:13Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-23T18:23:47Z",
+ "author_url": "https://github.com/utkarshp2829",
+ "author_avatar": "https://avatars.githubusercontent.com/u/163751866?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/163751866?v=4",
+ "profile_url": "https://github.com/utkarshp2829"
+ },
+ "khulsamiksha": {
+ "expectedPoints": 4,
+ "currentPoints": 4,
+ "levels": {
+ "level1": 1,
+ "level2": 0,
+ "level3": 0
+ },
+ "prs": [
+ {
+ "url": "https://github.com/sampadatiwari30/DeshDarshan/pull/64",
+ "title": "Added missing images in destination file.",
+ "repo": "sampadatiwari30/DeshDarshan",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-23T14:11:41Z",
+ "updated_at": "2025-07-23T15:14:37Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-23T15:12:18Z",
+ "author_url": "https://github.com/khulsamiksha",
+ "author_avatar": "https://avatars.githubusercontent.com/u/207499995?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/207499995?v=4",
+ "profile_url": "https://github.com/khulsamiksha"
+ },
+ "mehershiri": {
+ "expectedPoints": 4,
+ "currentPoints": 4,
+ "levels": {
+ "level1": 1,
+ "level2": 0,
+ "level3": 0
+ },
+ "prs": [
+ {
+ "url": "https://github.com/sampadatiwari30/DeshDarshan/pull/61",
+ "title": "Added smooth scroll to contact section from header",
+ "repo": "sampadatiwari30/DeshDarshan",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-23T12:29:52Z",
+ "updated_at": "2025-07-23T14:08:31Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-23T14:07:55Z",
+ "author_url": "https://github.com/mehershiri",
+ "author_avatar": "https://avatars.githubusercontent.com/u/179332979?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/179332979?v=4",
+ "profile_url": "https://github.com/mehershiri"
+ },
+ "Tushika2024": {
+ "expectedPoints": 4,
+ "currentPoints": 4,
+ "levels": {
+ "level1": 1,
+ "level2": 0,
+ "level3": 0
+ },
+ "prs": [
+ {
+ "url": "https://github.com/sampadatiwari30/DeshDarshan/pull/38",
+ "title": "Add: Add: Updated Footer with Quick Links, Contact Info and Social Media Links",
+ "repo": "sampadatiwari30/DeshDarshan",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-22T15:06:30Z",
+ "updated_at": "2025-07-23T11:58:14Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-23T11:57:51Z",
+ "author_url": "https://github.com/Tushika2024",
+ "author_avatar": "https://avatars.githubusercontent.com/u/177661787?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/177661787?v=4",
+ "profile_url": "https://github.com/Tushika2024"
+ },
+ "Manar-Elhabbal7": {
+ "expectedPoints": 4,
+ "currentPoints": 4,
+ "levels": {
+ "level1": 1,
+ "level2": 0,
+ "level3": 0
+ },
+ "prs": [
+ {
+ "url": "https://github.com/may-tas/TextEditingApp/pull/53",
+ "title": "Add more color options issue 🎨",
+ "repo": "may-tas/TextEditingApp",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-08-01T11:09:23Z",
+ "updated_at": "2025-08-01T14:58:12Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-08-01T14:53:14Z",
+ "author_url": "https://github.com/Manar-Elhabbal7",
+ "author_avatar": "https://avatars.githubusercontent.com/u/172148857?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/172148857?v=4",
+ "profile_url": "https://github.com/Manar-Elhabbal7"
+ },
+ "Rudraksha-git": {
+ "expectedPoints": 4,
+ "currentPoints": 4,
+ "levels": {
+ "level1": 1,
+ "level2": 0,
+ "level3": 0
+ },
+ "prs": [
+ {
+ "url": "https://github.com/may-tas/TextEditingApp/pull/48",
+ "title": "Added Clear Formatting/Restore Default Button",
+ "repo": "may-tas/TextEditingApp",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-30T19:23:38Z",
+ "updated_at": "2025-07-31T13:54:05Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-31T11:51:50Z",
+ "author_url": "https://github.com/Rudraksha-git",
+ "author_avatar": "https://avatars.githubusercontent.com/u/175207612?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/175207612?v=4",
+ "profile_url": "https://github.com/Rudraksha-git"
+ },
+ "MannemSumanaSri": {
+ "expectedPoints": 8,
+ "currentPoints": 4,
+ "levels": {
+ "level1": 2,
+ "level2": 0,
+ "level3": 0
+ },
+ "prs": [
+ {
+ "url": "https://github.com/may-tas/TextEditingApp/pull/9",
+ "title": "feat: Implement ID-based selection for text item property updates",
+ "repo": "may-tas/TextEditingApp",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-23T13:52:50Z",
+ "updated_at": "2025-07-24T07:11:44Z",
+ "state": "closed",
+ "merged": false,
+ "merged_at": null,
+ "author_url": "https://github.com/MannemSumanaSri",
+ "author_avatar": "https://avatars.githubusercontent.com/u/204357939?v=4"
+ },
+ {
+ "url": "https://github.com/sristy17/next-payroll/pull/5",
+ "title": "Improve README and add missing documentation files",
+ "repo": "sristy17/next-payroll",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-22T14:11:30Z",
+ "updated_at": "2025-07-24T05:07:55Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-22T16:57:13Z",
+ "author_url": "https://github.com/MannemSumanaSri",
+ "author_avatar": "https://avatars.githubusercontent.com/u/204357939?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/204357939?v=4",
+ "profile_url": "https://github.com/MannemSumanaSri"
+ },
+ "Mevishf": {
+ "expectedPoints": 4,
+ "currentPoints": 4,
+ "levels": {
+ "level1": 1,
+ "level2": 0,
+ "level3": 0
+ },
+ "prs": [
+ {
+ "url": "https://github.com/saumyayadav25/cpp-dsa-sheet-testing/pull/107",
+ "title": "Added DSA_Mate_logo",
+ "repo": "saumyayadav25/cpp-dsa-sheet-testing",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-30T18:28:28Z",
+ "updated_at": "2025-07-31T03:21:39Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-31T03:21:38Z",
+ "author_url": "https://github.com/Mevishf",
+ "author_avatar": "https://avatars.githubusercontent.com/u/158563717?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/158563717?v=4",
+ "profile_url": "https://github.com/Mevishf"
+ },
+ "Shreyas-TP": {
+ "expectedPoints": 4,
+ "currentPoints": 4,
+ "levels": {
+ "level1": 1,
+ "level2": 0,
+ "level3": 0
+ },
+ "prs": [
+ {
+ "url": "https://github.com/saumyayadav25/cpp-dsa-sheet-testing/pull/100",
+ "title": "Allow Sending Messages with Enter Key in BotWidget",
+ "repo": "saumyayadav25/cpp-dsa-sheet-testing",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-30T09:29:01Z",
+ "updated_at": "2025-07-30T09:53:31Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-30T09:53:30Z",
+ "author_url": "https://github.com/Shreyas-TP",
+ "author_avatar": "https://avatars.githubusercontent.com/u/174265401?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/174265401?v=4",
+ "profile_url": "https://github.com/Shreyas-TP"
+ },
+ "sanjj17": {
+ "expectedPoints": 4,
+ "currentPoints": 4,
+ "levels": {
+ "level1": 1,
+ "level2": 0,
+ "level3": 0
+ },
+ "prs": [
+ {
+ "url": "https://github.com/saumyayadav25/cpp-dsa-sheet-testing/pull/91",
+ "title": "Added logo for DSA Mate by Sanjana Nagwani",
+ "repo": "saumyayadav25/cpp-dsa-sheet-testing",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-28T18:20:37Z",
+ "updated_at": "2025-07-29T08:32:21Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-29T08:27:51Z",
+ "author_url": "https://github.com/sanjj17",
+ "author_avatar": "https://avatars.githubusercontent.com/u/186909574?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/186909574?v=4",
+ "profile_url": "https://github.com/sanjj17"
+ },
+ "tannmayygupta": {
+ "expectedPoints": 4,
+ "currentPoints": 4,
+ "levels": {
+ "level1": 1,
+ "level2": 0,
+ "level3": 0
+ },
+ "prs": [
+ {
+ "url": "https://github.com/saumyayadav25/cpp-dsa-sheet-testing/pull/84",
+ "title": "Add feature: Logo Designed Added",
+ "repo": "saumyayadav25/cpp-dsa-sheet-testing",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-28T11:42:14Z",
+ "updated_at": "2025-07-29T08:31:56Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-29T08:26:41Z",
+ "author_url": "https://github.com/tannmayygupta",
+ "author_avatar": "https://avatars.githubusercontent.com/u/144526821?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/144526821?v=4",
+ "profile_url": "https://github.com/tannmayygupta"
+ },
+ "IkshithaPrem": {
+ "expectedPoints": 4,
+ "currentPoints": 4,
+ "levels": {
+ "level1": 1,
+ "level2": 0,
+ "level3": 0
+ },
+ "prs": [
+ {
+ "url": "https://github.com/saumyayadav25/cpp-dsa-sheet-testing/pull/80",
+ "title": "Added logo(light and dark) for dsa mate",
+ "repo": "saumyayadav25/cpp-dsa-sheet-testing",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-27T14:15:34Z",
+ "updated_at": "2025-07-27T14:49:12Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-27T14:48:16Z",
+ "author_url": "https://github.com/IkshithaPrem",
+ "author_avatar": "https://avatars.githubusercontent.com/u/147241227?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/147241227?v=4",
+ "profile_url": "https://github.com/IkshithaPrem"
+ },
+ "sakshihn": {
+ "expectedPoints": 4,
+ "currentPoints": 4,
+ "levels": {
+ "level1": 1,
+ "level2": 0,
+ "level3": 0
+ },
+ "prs": [
+ {
+ "url": "https://github.com/saumyayadav25/cpp-dsa-sheet-testing/pull/79",
+ "title": "Added logo submissions by SAKSHI H N",
+ "repo": "saumyayadav25/cpp-dsa-sheet-testing",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-27T08:21:22Z",
+ "updated_at": "2025-07-28T09:01:05Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-27T10:42:32Z",
+ "author_url": "https://github.com/sakshihn",
+ "author_avatar": "https://avatars.githubusercontent.com/u/221374726?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/221374726?v=4",
+ "profile_url": "https://github.com/sakshihn"
+ },
+ "myselfsneha": {
+ "expectedPoints": 4,
+ "currentPoints": 4,
+ "levels": {
+ "level1": 1,
+ "level2": 0,
+ "level3": 0
+ },
+ "prs": [
+ {
+ "url": "https://github.com/saumyayadav25/cpp-dsa-sheet-testing/pull/77",
+ "title": "Added Logo Design Submission for Issue #4",
+ "repo": "saumyayadav25/cpp-dsa-sheet-testing",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-27T07:37:10Z",
+ "updated_at": "2025-07-27T10:47:05Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-27T10:43:24Z",
+ "author_url": "https://github.com/myselfsneha",
+ "author_avatar": "https://avatars.githubusercontent.com/u/177725176?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/177725176?v=4",
+ "profile_url": "https://github.com/myselfsneha"
+ },
+ "NikhithaRS": {
+ "expectedPoints": 4,
+ "currentPoints": 4,
+ "levels": {
+ "level1": 1,
+ "level2": 0,
+ "level3": 0
+ },
+ "prs": [
+ {
+ "url": "https://github.com/saumyayadav25/cpp-dsa-sheet-testing/pull/68",
+ "title": "Added a custom logo for DSAMate",
+ "repo": "saumyayadav25/cpp-dsa-sheet-testing",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-26T19:52:49Z",
+ "updated_at": "2025-07-27T03:04:28Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-27T03:04:28Z",
+ "author_url": "https://github.com/NikhithaRS",
+ "author_avatar": "https://avatars.githubusercontent.com/u/185825935?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/185825935?v=4",
+ "profile_url": "https://github.com/NikhithaRS"
+ },
+ "Samiksha2707": {
+ "expectedPoints": 4,
+ "currentPoints": 4,
+ "levels": {
+ "level1": 1,
+ "level2": 0,
+ "level3": 0
+ },
+ "prs": [
+ {
+ "url": "https://github.com/saumyayadav25/cpp-dsa-sheet-testing/pull/49",
+ "title": "Added the DSAMate logo",
+ "repo": "saumyayadav25/cpp-dsa-sheet-testing",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-25T15:38:49Z",
+ "updated_at": "2025-07-26T15:16:08Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-26T15:09:53Z",
+ "author_url": "https://github.com/Samiksha2707",
+ "author_avatar": "https://avatars.githubusercontent.com/u/140732634?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/140732634?v=4",
+ "profile_url": "https://github.com/Samiksha2707"
+ },
+ "daniyaa1": {
+ "expectedPoints": 4,
+ "currentPoints": 4,
+ "levels": {
+ "level1": 1,
+ "level2": 0,
+ "level3": 0
+ },
+ "prs": [
+ {
+ "url": "https://github.com/saumyayadav25/cpp-dsa-sheet-testing/pull/20",
+ "title": "Update README: Added Contributors Section",
+ "repo": "saumyayadav25/cpp-dsa-sheet-testing",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-23T14:52:35Z",
+ "updated_at": "2025-07-23T15:49:22Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-23T15:49:22Z",
+ "author_url": "https://github.com/daniyaa1",
+ "author_avatar": "https://avatars.githubusercontent.com/u/209433713?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/209433713?v=4",
+ "profile_url": "https://github.com/daniyaa1"
+ },
+ "Shivangi541": {
+ "expectedPoints": 4,
+ "currentPoints": 4,
+ "levels": {
+ "level1": 1,
+ "level2": 0,
+ "level3": 0
+ },
+ "prs": [
+ {
+ "url": "https://github.com/saumyayadav25/cpp-dsa-sheet-testing/pull/13",
+ "title": "Created Custom Logos for the Website both in Dark Mode and in Light Mode -SHIVANGI DUTTA #4",
+ "repo": "saumyayadav25/cpp-dsa-sheet-testing",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-23T07:22:05Z",
+ "updated_at": "2025-07-24T04:28:49Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-23T07:44:29Z",
+ "author_url": "https://github.com/Shivangi541",
+ "author_avatar": "https://avatars.githubusercontent.com/u/103591063?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/103591063?v=4",
+ "profile_url": "https://github.com/Shivangi541"
+ },
+ "Kirti-Pant": {
+ "expectedPoints": 4,
+ "currentPoints": 4,
+ "levels": {
+ "level1": 1,
+ "level2": 0,
+ "level3": 0
+ },
+ "prs": [
+ {
+ "url": "https://github.com/saumyayadav25/cpp-dsa-sheet-testing/pull/9",
+ "title": "Designed original logo for DSA Mate - Kirti Pant Issue No. #4",
+ "repo": "saumyayadav25/cpp-dsa-sheet-testing",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-22T17:55:24Z",
+ "updated_at": "2025-07-25T11:30:22Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-23T04:52:41Z",
+ "author_url": "https://github.com/Kirti-Pant",
+ "author_avatar": "https://avatars.githubusercontent.com/u/116485012?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/116485012?v=4",
+ "profile_url": "https://github.com/Kirti-Pant"
+ },
+ "saiganesh74": {
+ "expectedPoints": 4,
+ "currentPoints": 4,
+ "levels": {
+ "level1": 1,
+ "level2": 0,
+ "level3": 0
+ },
+ "prs": [
+ {
+ "url": "https://github.com/saumyayadav25/cpp-dsa-sheet-testing/pull/2",
+ "title": "Fixed issue #1",
+ "repo": "saumyayadav25/cpp-dsa-sheet-testing",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-20T13:24:38Z",
+ "updated_at": "2025-07-22T06:40:40Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-22T06:40:40Z",
+ "author_url": "https://github.com/saiganesh74",
+ "author_avatar": "https://avatars.githubusercontent.com/u/110812761?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/110812761?v=4",
+ "profile_url": "https://github.com/saiganesh74"
+ },
+ "Karth30": {
+ "expectedPoints": 4,
+ "currentPoints": 4,
+ "levels": {
+ "level1": 1,
+ "level2": 0,
+ "level3": 0
+ },
+ "prs": [
+ {
+ "url": "https://github.com/SGCODEX/Music-Recommendation-Using-Facial-Expressions/pull/44",
+ "title": "Improved UI Theme of Streamlit App",
+ "repo": "SGCODEX/Music-Recommendation-Using-Facial-Expressions",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-22T15:22:50Z",
+ "updated_at": "2025-07-31T06:34:14Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-24T05:10:10Z",
+ "author_url": "https://github.com/Karth30",
+ "author_avatar": "https://avatars.githubusercontent.com/u/169297813?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/169297813?v=4",
+ "profile_url": "https://github.com/Karth30"
+ },
+ "SaralDwivedi21": {
+ "expectedPoints": 4,
+ "currentPoints": 4,
+ "levels": {
+ "level1": 1,
+ "level2": 0,
+ "level3": 0
+ },
+ "prs": [
+ {
+ "url": "https://github.com/SGCODEX/Music-Recommendation-Using-Facial-Expressions/pull/31",
+ "title": "Updated LEARN.md",
+ "repo": "SGCODEX/Music-Recommendation-Using-Facial-Expressions",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-21T20:39:08Z",
+ "updated_at": "2025-07-31T06:21:33Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-23T14:25:47Z",
+ "author_url": "https://github.com/SaralDwivedi21",
+ "author_avatar": "https://avatars.githubusercontent.com/u/203822855?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/203822855?v=4",
+ "profile_url": "https://github.com/SaralDwivedi21"
+ },
+ "Priyanshshukla2005": {
+ "expectedPoints": 4,
+ "currentPoints": 4,
+ "levels": {
+ "level1": 1,
+ "level2": 0,
+ "level3": 0
+ },
+ "prs": [
+ {
+ "url": "https://github.com/SomdattaNag/Security-Screening-System/pull/90",
+ "title": "Fix: Prevent screen freeze by threading the alarm sound",
+ "repo": "SomdattaNag/Security-Screening-System",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-28T20:41:02Z",
+ "updated_at": "2025-07-29T14:16:20Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-29T14:16:20Z",
+ "author_url": "https://github.com/Priyanshshukla2005",
+ "author_avatar": "https://avatars.githubusercontent.com/u/182735961?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/182735961?v=4",
+ "profile_url": "https://github.com/Priyanshshukla2005"
+ },
+ "Asit-14": {
+ "expectedPoints": 4,
+ "currentPoints": 4,
+ "levels": {
+ "level1": 1,
+ "level2": 0,
+ "level3": 0
+ },
+ "prs": [
+ {
+ "url": "https://github.com/SomdattaNag/Security-Screening-System/pull/78",
+ "title": "feat: Add centralized status message system to GUI",
+ "repo": "SomdattaNag/Security-Screening-System",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-27T05:20:25Z",
+ "updated_at": "2025-07-27T07:45:54Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-27T07:16:08Z",
+ "author_url": "https://github.com/Asit-14",
+ "author_avatar": "https://avatars.githubusercontent.com/u/138616791?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/138616791?v=4",
+ "profile_url": "https://github.com/Asit-14"
+ },
+ "Ruhani120": {
+ "expectedPoints": 4,
+ "currentPoints": 4,
+ "levels": {
+ "level1": 1,
+ "level2": 0,
+ "level3": 0
+ },
+ "prs": [
+ {
+ "url": "https://github.com/SomdattaNag/Security-Screening-System/pull/23",
+ "title": "EDITED message.py and removed hardcode ",
+ "repo": "SomdattaNag/Security-Screening-System",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-22T14:01:25Z",
+ "updated_at": "2025-07-22T23:30:38Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-22T15:22:44Z",
+ "author_url": "https://github.com/Ruhani120",
+ "author_avatar": "https://avatars.githubusercontent.com/u/183272755?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/183272755?v=4",
+ "profile_url": "https://github.com/Ruhani120"
+ },
+ "naurjhanvi": {
+ "expectedPoints": 4,
+ "currentPoints": 4,
+ "levels": {
+ "level1": 1,
+ "level2": 0,
+ "level3": 0
+ },
+ "prs": [
+ {
+ "url": "https://github.com/SomdattaNag/Security-Screening-System/pull/15",
+ "title": "added countdown timer and setup .gitignore",
+ "repo": "SomdattaNag/Security-Screening-System",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-21T21:24:43Z",
+ "updated_at": "2025-07-22T23:32:52Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-21T23:33:31Z",
+ "author_url": "https://github.com/naurjhanvi",
+ "author_avatar": "https://avatars.githubusercontent.com/u/180403587?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/180403587?v=4",
+ "profile_url": "https://github.com/naurjhanvi"
+ },
+ "ansh-Bytes217": {
+ "expectedPoints": 4,
+ "currentPoints": 4,
+ "levels": {
+ "level1": 1,
+ "level2": 0,
+ "level3": 0
+ },
+ "prs": [
+ {
+ "url": "https://github.com/souvikpramanikgit/LearnHub/pull/105",
+ "title": "Update index.tsx",
+ "repo": "souvikpramanikgit/LearnHub",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-26T12:37:00Z",
+ "updated_at": "2025-07-27T12:01:37Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-27T12:01:09Z",
+ "author_url": "https://github.com/ansh-Bytes217",
+ "author_avatar": "https://avatars.githubusercontent.com/u/83686079?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/83686079?v=4",
+ "profile_url": "https://github.com/ansh-Bytes217"
+ },
+ "aloksing0000000000": {
+ "expectedPoints": 4,
+ "currentPoints": 4,
+ "levels": {
+ "level1": 1,
+ "level2": 0,
+ "level3": 0
+ },
+ "prs": [
+ {
+ "url": "https://github.com/souvikpramanikgit/LearnHub/pull/99",
+ "title": "Closes #<86> — \"Responsive Bug: Layout issues on smaller screens (mobile/tablet)\"",
+ "repo": "souvikpramanikgit/LearnHub",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-26T11:28:18Z",
+ "updated_at": "2025-07-26T11:38:40Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-26T11:38:09Z",
+ "author_url": "https://github.com/aloksing0000000000",
+ "author_avatar": "https://avatars.githubusercontent.com/u/144673412?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/144673412?v=4",
+ "profile_url": "https://github.com/aloksing0000000000"
+ },
+ "navya-r972": {
+ "expectedPoints": 4,
+ "currentPoints": 4,
+ "levels": {
+ "level1": 1,
+ "level2": 0,
+ "level3": 0
+ },
+ "prs": [
+ {
+ "url": "https://github.com/souvikpramanikgit/LearnHub/pull/76",
+ "title": "Added Bottom To Top Button",
+ "repo": "souvikpramanikgit/LearnHub",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-25T12:04:16Z",
+ "updated_at": "2025-07-26T04:57:56Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-25T18:10:47Z",
+ "author_url": "https://github.com/navya-r972",
+ "author_avatar": "https://avatars.githubusercontent.com/u/197460994?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/197460994?v=4",
+ "profile_url": "https://github.com/navya-r972"
+ },
+ "knoxiboy": {
+ "expectedPoints": 4,
+ "currentPoints": 4,
+ "levels": {
+ "level1": 1,
+ "level2": 0,
+ "level3": 0
+ },
+ "prs": [
+ {
+ "url": "https://github.com/souvikpramanikgit/LearnHub/pull/58",
+ "title": "Fix: Error on clicking Start Learning button (#47)",
+ "repo": "souvikpramanikgit/LearnHub",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-23T17:01:35Z",
+ "updated_at": "2025-07-24T07:08:16Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-24T06:28:12Z",
+ "author_url": "https://github.com/knoxiboy",
+ "author_avatar": "https://avatars.githubusercontent.com/u/170925990?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/170925990?v=4",
+ "profile_url": "https://github.com/knoxiboy"
+ },
+ "vinay-sikarwar": {
+ "expectedPoints": 4,
+ "currentPoints": 4,
+ "levels": {
+ "level1": 1,
+ "level2": 0,
+ "level3": 0
+ },
+ "prs": [
+ {
+ "url": "https://github.com/souvikpramanikgit/LearnHub/pull/24",
+ "title": "Fix course cards",
+ "repo": "souvikpramanikgit/LearnHub",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-22T10:39:22Z",
+ "updated_at": "2025-07-22T12:12:33Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-22T12:12:25Z",
+ "author_url": "https://github.com/vinay-sikarwar",
+ "author_avatar": "https://avatars.githubusercontent.com/u/141000730?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/141000730?v=4",
+ "profile_url": "https://github.com/vinay-sikarwar"
+ },
+ "Darknight123prog": {
+ "expectedPoints": 4,
+ "currentPoints": 4,
+ "levels": {
+ "level1": 1,
+ "level2": 0,
+ "level3": 0
+ },
+ "prs": [
+ {
+ "url": "https://github.com/souvikpramanikgit/LearnHub/pull/16",
+ "title": "Fix: [i had fixed the Code block overflow issue in pre section on hom…",
+ "repo": "souvikpramanikgit/LearnHub",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-22T08:54:38Z",
+ "updated_at": "2025-07-22T09:10:54Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-22T09:01:52Z",
+ "author_url": "https://github.com/Darknight123prog",
+ "author_avatar": "https://avatars.githubusercontent.com/u/197870030?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/197870030?v=4",
+ "profile_url": "https://github.com/Darknight123prog"
+ },
+ "AnupamSingh2004": {
+ "expectedPoints": 11,
+ "currentPoints": 4,
+ "levels": {
+ "level1": 1,
+ "level2": 1,
+ "level3": 0
+ },
+ "prs": [
+ {
+ "url": "https://github.com/sristy17/next-payroll/pull/33",
+ "title": "feat: Build GST Return Filing Page - Fixes #27",
+ "repo": "sristy17/next-payroll",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-26T05:23:14Z",
+ "updated_at": "2025-08-03T07:12:58Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-08-03T07:12:41Z",
+ "author_url": "https://github.com/AnupamSingh2004",
+ "author_avatar": "https://avatars.githubusercontent.com/u/107802976?v=4"
+ },
+ {
+ "url": "https://github.com/sristy17/next-payroll/pull/26",
+ "title": "#24: Added a Page for Adding New businesses",
+ "repo": "sristy17/next-payroll",
+ "level": "level2",
+ "points": 7,
+ "created_at": "2025-07-25T10:40:55Z",
+ "updated_at": "2025-08-02T17:32:02Z",
+ "state": "open",
+ "merged": false,
+ "merged_at": null,
+ "author_url": "https://github.com/AnupamSingh2004",
+ "author_avatar": "https://avatars.githubusercontent.com/u/107802976?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/107802976?v=4",
+ "profile_url": "https://github.com/AnupamSingh2004"
+ },
+ "Prashanthsyntax": {
+ "expectedPoints": 4,
+ "currentPoints": 4,
+ "levels": {
+ "level1": 1,
+ "level2": 0,
+ "level3": 0
+ },
+ "prs": [
+ {
+ "url": "https://github.com/TanmayKalra09/SmartLog/pull/20",
+ "title": "Added Footer",
+ "repo": "TanmayKalra09/SmartLog",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-22T06:00:56Z",
+ "updated_at": "2025-07-22T06:59:31Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-22T06:59:30Z",
+ "author_url": "https://github.com/Prashanthsyntax",
+ "author_avatar": "https://avatars.githubusercontent.com/u/153516347?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/153516347?v=4",
+ "profile_url": "https://github.com/Prashanthsyntax"
+ },
+ "kinza7124": {
+ "expectedPoints": 12,
+ "currentPoints": 4,
+ "levels": {
+ "level1": 3,
+ "level2": 0,
+ "level3": 0
+ },
+ "prs": [
+ {
+ "url": "https://github.com/UTSAVS26/PyVerse/pull/1582",
+ "title": "Enhnacement ML/#1555",
+ "repo": "UTSAVS26/PyVerse",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-08-02T19:09:59Z",
+ "updated_at": "2025-08-02T19:13:52Z",
+ "state": "open",
+ "merged": false,
+ "merged_at": null,
+ "author_url": "https://github.com/kinza7124",
+ "author_avatar": "https://avatars.githubusercontent.com/u/148489795?v=4"
+ },
+ {
+ "url": "https://github.com/UTSAVS26/PyVerse/pull/1560",
+ "title": "Enhancement 1Darray.py",
+ "repo": "UTSAVS26/PyVerse",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-08-01T13:54:11Z",
+ "updated_at": "2025-08-02T13:30:44Z",
+ "state": "open",
+ "merged": false,
+ "merged_at": null,
+ "author_url": "https://github.com/kinza7124",
+ "author_avatar": "https://avatars.githubusercontent.com/u/148489795?v=4"
+ },
+ {
+ "url": "https://github.com/UTSAVS26/PyVerse/pull/1559",
+ "title": "Bug fix of ATM.py",
+ "repo": "UTSAVS26/PyVerse",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-08-01T13:34:51Z",
+ "updated_at": "2025-08-02T07:58:18Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-08-02T07:58:11Z",
+ "author_url": "https://github.com/kinza7124",
+ "author_avatar": "https://avatars.githubusercontent.com/u/148489795?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/148489795?v=4",
+ "profile_url": "https://github.com/kinza7124"
+ },
+ "hajra40": {
+ "expectedPoints": 4,
+ "currentPoints": 4,
+ "levels": {
+ "level1": 1,
+ "level2": 0,
+ "level3": 0
+ },
+ "prs": [
+ {
+ "url": "https://github.com/UTSAVS26/PyVerse/pull/1570",
+ "title": "Flight Price Prediction",
+ "repo": "UTSAVS26/PyVerse",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-08-02T07:20:21Z",
+ "updated_at": "2025-08-02T08:05:31Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-08-02T08:05:31Z",
+ "author_url": "https://github.com/hajra40",
+ "author_avatar": "https://avatars.githubusercontent.com/u/68770929?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/68770929?v=4",
+ "profile_url": "https://github.com/hajra40"
+ },
+ "aakritixyz": {
+ "expectedPoints": 4,
+ "currentPoints": 4,
+ "levels": {
+ "level1": 1,
+ "level2": 0,
+ "level3": 0
+ },
+ "prs": [
+ {
+ "url": "https://github.com/UTSAVS26/PyVerse/pull/1500",
+ "title": "Add BMI calculator with age and gender fields",
+ "repo": "UTSAVS26/PyVerse",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-27T12:01:24Z",
+ "updated_at": "2025-07-29T08:18:21Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-29T08:18:21Z",
+ "author_url": "https://github.com/aakritixyz",
+ "author_avatar": "https://avatars.githubusercontent.com/u/215271012?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/215271012?v=4",
+ "profile_url": "https://github.com/aakritixyz"
+ },
+ "JyanuISB": {
+ "expectedPoints": 4,
+ "currentPoints": 4,
+ "levels": {
+ "level1": 1,
+ "level2": 0,
+ "level3": 0
+ },
+ "prs": [
+ {
+ "url": "https://github.com/UTSAVS26/PyVerse/pull/1492",
+ "title": "Add enhanced BMI, WHR, LSM calculations with unit flexibility",
+ "repo": "UTSAVS26/PyVerse",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-26T17:55:48Z",
+ "updated_at": "2025-07-27T08:05:52Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-27T08:05:26Z",
+ "author_url": "https://github.com/JyanuISB",
+ "author_avatar": "https://avatars.githubusercontent.com/u/189993121?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/189993121?v=4",
+ "profile_url": "https://github.com/JyanuISB"
+ },
+ "gargi612": {
+ "expectedPoints": 4,
+ "currentPoints": 4,
+ "levels": {
+ "level1": 1,
+ "level2": 0,
+ "level3": 0
+ },
+ "prs": [
+ {
+ "url": "https://github.com/UTSAVS26/PyVerse/pull/1487",
+ "title": "Enhancement: Added try-except blocks for input handling in anime trac…",
+ "repo": "UTSAVS26/PyVerse",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-26T09:48:34Z",
+ "updated_at": "2025-07-27T10:33:44Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-27T08:07:19Z",
+ "author_url": "https://github.com/gargi612",
+ "author_avatar": "https://avatars.githubusercontent.com/u/182465083?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/182465083?v=4",
+ "profile_url": "https://github.com/gargi612"
+ },
+ "Laharivanja": {
+ "expectedPoints": 4,
+ "currentPoints": 4,
+ "levels": {
+ "level1": 1,
+ "level2": 0,
+ "level3": 0
+ },
+ "prs": [
+ {
+ "url": "https://github.com/VaibhavCodeClub/term/pull/32",
+ "title": "docs: add CONTRIBUTING.md with contribution guidelines",
+ "repo": "sapatevaibhav/term",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-29T11:10:15Z",
+ "updated_at": "2025-08-01T20:08:01Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-08-01T20:08:01Z",
+ "author_url": "https://github.com/Laharivanja",
+ "author_avatar": "https://avatars.githubusercontent.com/u/171836304?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/171836304?v=4",
+ "profile_url": "https://github.com/Laharivanja"
+ },
+ "pratiks2905": {
+ "expectedPoints": 4,
+ "currentPoints": 4,
+ "levels": {
+ "level1": 1,
+ "level2": 0,
+ "level3": 0
+ },
+ "prs": [
+ {
+ "url": "https://github.com/VAIBHAVBABELE/vaibhavbabele.github.io/pull/151",
+ "title": "Pratik",
+ "repo": "VAIBHAVBABELE/vaibhavbabele.github.io",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-27T12:27:24Z",
+ "updated_at": "2025-07-28T12:05:41Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-27T15:51:25Z",
+ "author_url": "https://github.com/pratiks2905",
+ "author_avatar": "https://avatars.githubusercontent.com/u/151179662?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/151179662?v=4",
+ "profile_url": "https://github.com/pratiks2905"
+ },
+ "MAHENDAR09": {
+ "expectedPoints": 4,
+ "currentPoints": 4,
+ "levels": {
+ "level1": 1,
+ "level2": 0,
+ "level3": 0
+ },
+ "prs": [
+ {
+ "url": "https://github.com/VAIBHAVBABELE/vaibhavbabele.github.io/pull/52",
+ "title": "added gitignore file",
+ "repo": "VAIBHAVBABELE/vaibhavbabele.github.io",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-24T03:16:19Z",
+ "updated_at": "2025-07-27T13:45:00Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-27T13:44:32Z",
+ "author_url": "https://github.com/MAHENDAR09",
+ "author_avatar": "https://avatars.githubusercontent.com/u/126066500?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/126066500?v=4",
+ "profile_url": "https://github.com/MAHENDAR09"
+ },
+ "Vidushi-15b": {
+ "expectedPoints": 4,
+ "currentPoints": 4,
+ "levels": {
+ "level1": 1,
+ "level2": 0,
+ "level3": 0
+ },
+ "prs": [
+ {
+ "url": "https://github.com/VAIBHAVBABELE/vaibhavbabele.github.io/pull/30",
+ "title": "Improved README with full instructions for running project locally",
+ "repo": "VAIBHAVBABELE/vaibhavbabele.github.io",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-22T18:05:46Z",
+ "updated_at": "2025-07-23T22:30:01Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-23T17:36:22Z",
+ "author_url": "https://github.com/Vidushi-15b",
+ "author_avatar": "https://avatars.githubusercontent.com/u/105708711?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/105708711?v=4",
+ "profile_url": "https://github.com/Vidushi-15b"
+ },
+ "codeGurhans": {
+ "expectedPoints": 4,
+ "currentPoints": 4,
+ "levels": {
+ "level1": 1,
+ "level2": 0,
+ "level3": 0
+ },
+ "prs": [
+ {
+ "url": "https://github.com/Agarwalvidu/ArdhNaariShakti_Taara_Frontend/pull/58",
+ "title": "Fixed text ledgibility over category component",
+ "repo": "Agarwalvidu/ArdhNaariShakti_Taara_Frontend",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-29T10:00:11Z",
+ "updated_at": "2025-07-31T06:55:56Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-31T06:55:55Z",
+ "author_url": "https://github.com/codeGurhans",
+ "author_avatar": "https://avatars.githubusercontent.com/u/151509383?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/151509383?v=4",
+ "profile_url": "https://github.com/codeGurhans"
+ },
+ "rajshekar1206": {
+ "expectedPoints": 4,
+ "currentPoints": 4,
+ "levels": {
+ "level1": 1,
+ "level2": 0,
+ "level3": 0
+ },
+ "prs": [
+ {
+ "url": "https://github.com/VJLIVE/Athletix/pull/24",
+ "title": "Added issue templates",
+ "repo": "vjlive/athletix",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-23T07:30:36Z",
+ "updated_at": "2025-07-28T21:44:31Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-23T07:32:04Z",
+ "author_url": "https://github.com/rajshekar1206",
+ "author_avatar": "https://avatars.githubusercontent.com/u/186734976?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/186734976?v=4",
+ "profile_url": "https://github.com/rajshekar1206"
+ },
+ "VinothanaBalakrishnan05": {
+ "expectedPoints": 4,
+ "currentPoints": 4,
+ "levels": {
+ "level1": 1,
+ "level2": 0,
+ "level3": 0
+ },
+ "prs": [
+ {
+ "url": "https://github.com/openml-stack/SentiLog-AI/pull/152",
+ "title": "🔗 Updated Twitter icon to X and fixed broken social links",
+ "repo": "openml-stack/SentiLog-AI",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-08-01T18:24:49Z",
+ "updated_at": "2025-08-02T16:20:33Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-08-01T19:37:15Z",
+ "author_url": "https://github.com/VinothanaBalakrishnan05",
+ "author_avatar": "https://avatars.githubusercontent.com/u/183259073?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/183259073?v=4",
+ "profile_url": "https://github.com/VinothanaBalakrishnan05"
+ },
+ "joeNeham8": {
+ "expectedPoints": 4,
+ "currentPoints": 4,
+ "levels": {
+ "level1": 1,
+ "level2": 0,
+ "level3": 0
+ },
+ "prs": [
+ {
+ "url": "https://github.com/openml-stack/SentiLog-AI/pull/141",
+ "title": "auth_input color fixed",
+ "repo": "openml-stack/SentiLog-AI",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-31T16:13:28Z",
+ "updated_at": "2025-07-31T18:43:40Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-31T18:42:53Z",
+ "author_url": "https://github.com/joeNeham8",
+ "author_avatar": "https://avatars.githubusercontent.com/u/166697328?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/166697328?v=4",
+ "profile_url": "https://github.com/joeNeham8"
+ },
+ "2005moni": {
+ "expectedPoints": 4,
+ "currentPoints": 4,
+ "levels": {
+ "level1": 1,
+ "level2": 0,
+ "level3": 0
+ },
+ "prs": [
+ {
+ "url": "https://github.com/openml-stack/SentiLog-AI/pull/130",
+ "title": "updated readme.md",
+ "repo": "openml-stack/SentiLog-AI",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-30T06:26:57Z",
+ "updated_at": "2025-07-30T15:43:06Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-30T15:42:58Z",
+ "author_url": "https://github.com/2005moni",
+ "author_avatar": "https://avatars.githubusercontent.com/u/135415233?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/135415233?v=4",
+ "profile_url": "https://github.com/2005moni"
+ },
+ "harish-pasupuleti": {
+ "expectedPoints": 4,
+ "currentPoints": 4,
+ "levels": {
+ "level1": 1,
+ "level2": 0,
+ "level3": 0
+ },
+ "prs": [
+ {
+ "url": "https://github.com/openml-stack/SentiLog-AI/pull/115",
+ "title": "fix: moved Navbar to App.jsx for consistent layout",
+ "repo": "openml-stack/SentiLog-AI",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-28T18:44:23Z",
+ "updated_at": "2025-07-28T19:22:13Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-28T18:55:38Z",
+ "author_url": "https://github.com/harish-pasupuleti",
+ "author_avatar": "https://avatars.githubusercontent.com/u/133561454?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/133561454?v=4",
+ "profile_url": "https://github.com/harish-pasupuleti"
+ },
+ "Medha375": {
+ "expectedPoints": 4,
+ "currentPoints": 4,
+ "levels": {
+ "level1": 1,
+ "level2": 0,
+ "level3": 0
+ },
+ "prs": [
+ {
+ "url": "https://github.com/openml-stack/SentiLog-AI/pull/90",
+ "title": "Updated readme with Folder Structure",
+ "repo": "openml-stack/SentiLog-AI",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-27T19:07:02Z",
+ "updated_at": "2025-07-28T11:58:41Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-28T11:58:13Z",
+ "author_url": "https://github.com/Medha375",
+ "author_avatar": "https://avatars.githubusercontent.com/u/143530930?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/143530930?v=4",
+ "profile_url": "https://github.com/Medha375"
+ },
+ "abhitiwari2511": {
+ "expectedPoints": 4,
+ "currentPoints": 4,
+ "levels": {
+ "level1": 1,
+ "level2": 0,
+ "level3": 0
+ },
+ "prs": [
+ {
+ "url": "https://github.com/openml-stack/SentiLog-AI/pull/55",
+ "title": "Fix: Routing error caused by vercel",
+ "repo": "openml-stack/SentiLog-AI",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-24T20:21:08Z",
+ "updated_at": "2025-07-29T11:03:18Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-25T20:49:15Z",
+ "author_url": "https://github.com/abhitiwari2511",
+ "author_avatar": "https://avatars.githubusercontent.com/u/159962312?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/159962312?v=4",
+ "profile_url": "https://github.com/abhitiwari2511"
+ },
+ "joel912": {
+ "expectedPoints": 4,
+ "currentPoints": 4,
+ "levels": {
+ "level1": 1,
+ "level2": 0,
+ "level3": 0
+ },
+ "prs": [
+ {
+ "url": "https://github.com/yuvrajsinghgmx/ShopSmart/pull/276",
+ "title": "fixed typos ",
+ "repo": "yuvrajsinghgmx/ShopSmart",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-23T04:20:16Z",
+ "updated_at": "2025-07-23T13:08:31Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-23T13:08:31Z",
+ "author_url": "https://github.com/joel912",
+ "author_avatar": "https://avatars.githubusercontent.com/u/138672851?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/138672851?v=4",
+ "profile_url": "https://github.com/joel912"
+ },
+ "rohIta-k": {
+ "expectedPoints": 7,
+ "currentPoints": 0,
+ "levels": {
+ "level1": 0,
+ "level2": 1,
+ "level3": 0
+ },
+ "prs": [
+ {
+ "url": "https://github.com/abhisek2004/Dev-Elevate/pull/23",
+ "title": "Admin security",
+ "repo": "abhisek2004/Dev-Elevate",
+ "level": "level2",
+ "points": 7,
+ "created_at": "2025-07-22T13:27:41Z",
+ "updated_at": "2025-07-23T10:46:55Z",
+ "state": "closed",
+ "merged": false,
+ "merged_at": null,
+ "author_url": "https://github.com/rohIta-k",
+ "author_avatar": "https://avatars.githubusercontent.com/u/202764383?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/202764383?v=4",
+ "profile_url": "https://github.com/rohIta-k"
+ },
+ "apoorvaww": {
+ "expectedPoints": 4,
+ "currentPoints": 0,
+ "levels": {
+ "level1": 1,
+ "level2": 0,
+ "level3": 0
+ },
+ "prs": [
+ {
+ "url": "https://github.com/abhisek2004/Dev-Elevate/pull/15",
+ "title": "fixed the bug for readability of notification while hovering over it …",
+ "repo": "abhisek2004/Dev-Elevate",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-22T08:52:13Z",
+ "updated_at": "2025-07-22T19:25:21Z",
+ "state": "closed",
+ "merged": false,
+ "merged_at": null,
+ "author_url": "https://github.com/apoorvaww",
+ "author_avatar": "https://avatars.githubusercontent.com/u/148485802?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/148485802?v=4",
+ "profile_url": "https://github.com/apoorvaww"
+ },
+ "Neha0303-debug": {
+ "expectedPoints": 0,
+ "currentPoints": 0,
+ "levels": {
+ "level1": 0,
+ "level2": 0,
+ "level3": 0
+ },
+ "prs": [
+ {
+ "url": "https://github.com/adityagarwal15/JobSync/pull/54",
+ "title": "Add image in the Help section and keep it Responsive",
+ "repo": "adityagarwal15/JobSync",
+ "level": null,
+ "points": 0,
+ "created_at": "2025-07-24T14:54:31Z",
+ "updated_at": "2025-08-01T04:51:12Z",
+ "state": "closed",
+ "merged": false,
+ "merged_at": null,
+ "author_url": "https://github.com/Neha0303-debug",
+ "author_avatar": "https://avatars.githubusercontent.com/u/178502946?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/178502946?v=4",
+ "profile_url": "https://github.com/Neha0303-debug"
+ },
+ "sakshi900600": {
+ "expectedPoints": 4,
+ "currentPoints": 0,
+ "levels": {
+ "level1": 1,
+ "level2": 0,
+ "level3": 0
+ },
+ "prs": [
+ {
+ "url": "https://github.com/opensource-society/notesvault/pull/34",
+ "title": "Added responsive login and signup modal with matching font-style and color theme.",
+ "repo": "opensource-society/NotesVault",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-22T05:47:30Z",
+ "updated_at": "2025-07-24T13:40:36Z",
+ "state": "closed",
+ "merged": false,
+ "merged_at": null,
+ "author_url": "https://github.com/sakshi900600",
+ "author_avatar": "https://avatars.githubusercontent.com/u/139939188?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/139939188?v=4",
+ "profile_url": "https://github.com/sakshi900600"
+ },
+ "Vidhyasagar-dhd123": {
+ "expectedPoints": 0,
+ "currentPoints": 0,
+ "levels": {
+ "level1": 0,
+ "level2": 0,
+ "level3": 0
+ },
+ "prs": [
+ {
+ "url": "https://github.com/AdityaRalhan/Aluma/pull/21",
+ "title": "updated the json parsing, bot context preservation, bot chat saving",
+ "repo": "AdityaRalhan/Aluma",
+ "level": null,
+ "points": 0,
+ "created_at": "2025-07-25T14:19:46Z",
+ "updated_at": "2025-07-29T06:08:30Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-29T05:54:49Z",
+ "author_url": "https://github.com/Vidhyasagar-dhd123",
+ "author_avatar": "https://avatars.githubusercontent.com/u/142160841?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/142160841?v=4",
+ "profile_url": "https://github.com/Vidhyasagar-dhd123"
+ },
+ "Prachiikhar25": {
+ "expectedPoints": 4,
+ "currentPoints": 0,
+ "levels": {
+ "level1": 1,
+ "level2": 0,
+ "level3": 0
+ },
+ "prs": [
+ {
+ "url": "https://github.com/Akki-jaiswal/pong-game/pull/25",
+ "title": "Add comprehensive multi-theme support with 5 distinct visual themes PR #23",
+ "repo": "Akki-jaiswal/pong-game",
+ "level": null,
+ "points": 0,
+ "created_at": "2025-07-23T05:08:46Z",
+ "updated_at": "2025-07-28T14:44:47Z",
+ "state": "open",
+ "merged": false,
+ "merged_at": null,
+ "author_url": "https://github.com/Prachiikhar25",
+ "author_avatar": "https://avatars.githubusercontent.com/u/150283338?v=4"
+ },
+ {
+ "url": "https://github.com/Akki-jaiswal/pong-game/pull/8",
+ "title": "I've transformed your Pong game with modern animated gradients, glassmorphism UI effects, enhanced canvas styling with glow effects, and responsive design while maintaining full gameplay functionality.",
+ "repo": "Akki-jaiswal/pong-game",
+ "level": null,
+ "points": 0,
+ "created_at": "2025-07-22T10:35:53Z",
+ "updated_at": "2025-07-23T04:33:28Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-22T18:07:50Z",
+ "author_url": "https://github.com/Prachiikhar25",
+ "author_avatar": "https://avatars.githubusercontent.com/u/150283338?v=4"
+ },
+ {
+ "url": "https://github.com/VAIBHAVBABELE/vaibhavbabele.github.io/pull/83",
+ "title": "Enhancement in Button and Navigation",
+ "repo": "VAIBHAVBABELE/vaibhavbabele.github.io",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-24T18:00:23Z",
+ "updated_at": "2025-07-30T12:37:41Z",
+ "state": "open",
+ "merged": false,
+ "merged_at": null,
+ "author_url": "https://github.com/Prachiikhar25",
+ "author_avatar": "https://avatars.githubusercontent.com/u/150283338?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/150283338?v=4",
+ "profile_url": "https://github.com/Prachiikhar25"
+ },
+ "sara-1129": {
+ "expectedPoints": 0,
+ "currentPoints": 0,
+ "levels": {
+ "level1": 0,
+ "level2": 0,
+ "level3": 0
+ },
+ "prs": [
+ {
+ "url": "https://github.com/Akki-jaiswal/pong-game/pull/10",
+ "title": " Replace Auto-Countdown with Manual Continue Button",
+ "repo": "Akki-jaiswal/pong-game",
+ "level": null,
+ "points": 0,
+ "created_at": "2025-07-22T11:51:28Z",
+ "updated_at": "2025-07-30T09:15:40Z",
+ "state": "open",
+ "merged": false,
+ "merged_at": null,
+ "author_url": "https://github.com/sara-1129",
+ "author_avatar": "https://avatars.githubusercontent.com/u/156946666?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/156946666?v=4",
+ "profile_url": "https://github.com/sara-1129"
+ },
+ "gaurav123-4": {
+ "expectedPoints": 4,
+ "currentPoints": 0,
+ "levels": {
+ "level1": 1,
+ "level2": 0,
+ "level3": 0
+ },
+ "prs": [
+ {
+ "url": "https://github.com/Amarjha01/InfantCareCompass/pull/71",
+ "title": "UI Updated ",
+ "repo": "Amarjha01/InfantCareCompass",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-23T20:14:27Z",
+ "updated_at": "2025-07-25T19:40:01Z",
+ "state": "closed",
+ "merged": false,
+ "merged_at": null,
+ "author_url": "https://github.com/gaurav123-4",
+ "author_avatar": "https://avatars.githubusercontent.com/u/204588730?v=4"
+ },
+ {
+ "url": "https://github.com/GitMetricsLab/github_tracker/pull/146",
+ "title": "Profile Page Added in Frontend ",
+ "repo": "mehul-m-prajapati/github_tracker",
+ "level": null,
+ "points": 0,
+ "created_at": "2025-07-28T21:11:25Z",
+ "updated_at": "2025-08-02T13:46:51Z",
+ "state": "open",
+ "merged": false,
+ "merged_at": null,
+ "author_url": "https://github.com/gaurav123-4",
+ "author_avatar": "https://avatars.githubusercontent.com/u/204588730?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/204588730?v=4",
+ "profile_url": "https://github.com/gaurav123-4"
+ },
+ "Abhay056": {
+ "expectedPoints": 4,
+ "currentPoints": 0,
+ "levels": {
+ "level1": 1,
+ "level2": 0,
+ "level3": 0
+ },
+ "prs": [
+ {
+ "url": "https://github.com/itsAnimation/AnimateItNow/pull/721",
+ "title": "fixed template login variant-7 bug",
+ "repo": "itsAnimation/AnimateItNow",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-31T19:26:02Z",
+ "updated_at": "2025-08-02T10:08:31Z",
+ "state": "open",
+ "merged": false,
+ "merged_at": null,
+ "author_url": "https://github.com/Abhay056",
+ "author_avatar": "https://avatars.githubusercontent.com/u/77850911?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/77850911?v=4",
+ "profile_url": "https://github.com/Abhay056"
+ },
+ "SaipoojithaNamani": {
+ "expectedPoints": 10,
+ "currentPoints": 0,
+ "levels": {
+ "level1": 0,
+ "level2": 0,
+ "level3": 1
+ },
+ "prs": [
+ {
+ "url": "https://github.com/itsAnimation/AnimateItNow/pull/576",
+ "title": "Fix: Added working View Levels button linking to level.html (GSSoC25)",
+ "repo": "itsAnimation/AnimateItNow",
+ "level": "level3",
+ "points": 10,
+ "created_at": "2025-07-27T18:02:17Z",
+ "updated_at": "2025-07-31T08:23:40Z",
+ "state": "open",
+ "merged": false,
+ "merged_at": null,
+ "author_url": "https://github.com/SaipoojithaNamani",
+ "author_avatar": "https://avatars.githubusercontent.com/u/171086730?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/171086730?v=4",
+ "profile_url": "https://github.com/SaipoojithaNamani"
+ },
+ "varshini-1396": {
+ "expectedPoints": 10,
+ "currentPoints": 0,
+ "levels": {
+ "level1": 0,
+ "level2": 0,
+ "level3": 1
+ },
+ "prs": [
+ {
+ "url": "https://github.com/itsAnimation/AnimateItNow/pull/38",
+ "title": "Revamp Templates Gallery: Live Preview, View Code, and New Hero Section Template",
+ "repo": "itsAnimation/AnimateItNow",
+ "level": "level3",
+ "points": 10,
+ "created_at": "2025-07-22T06:14:46Z",
+ "updated_at": "2025-07-23T21:17:07Z",
+ "state": "closed",
+ "merged": false,
+ "merged_at": null,
+ "author_url": "https://github.com/varshini-1396",
+ "author_avatar": "https://avatars.githubusercontent.com/u/171135976?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/171135976?v=4",
+ "profile_url": "https://github.com/varshini-1396"
+ },
+ "Ramela-M-S": {
+ "expectedPoints": 4,
+ "currentPoints": 0,
+ "levels": {
+ "level1": 1,
+ "level2": 0,
+ "level3": 0
+ },
+ "prs": [
+ {
+ "url": "https://github.com/Menthub-GSSoC/Menthub/pull/26",
+ "title": "Added success toast message using only HTML & CSS",
+ "repo": "anugit24/Menthub",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-26T15:59:09Z",
+ "updated_at": "2025-08-01T04:18:24Z",
+ "state": "open",
+ "merged": false,
+ "merged_at": null,
+ "author_url": "https://github.com/Ramela-M-S",
+ "author_avatar": "https://avatars.githubusercontent.com/u/177222113?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/177222113?v=4",
+ "profile_url": "https://github.com/Ramela-M-S"
+ },
+ "stuticoder123": {
+ "expectedPoints": 4,
+ "currentPoints": 0,
+ "levels": {
+ "level1": 1,
+ "level2": 0,
+ "level3": 0
+ },
+ "prs": [
+ {
+ "url": "https://github.com/Menthub-GSSoC/Menthub/pull/2",
+ "title": "Update README.md",
+ "repo": "anugit24/Menthub",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-22T06:25:11Z",
+ "updated_at": "2025-07-24T13:29:08Z",
+ "state": "open",
+ "merged": false,
+ "merged_at": null,
+ "author_url": "https://github.com/stuticoder123",
+ "author_avatar": "https://avatars.githubusercontent.com/u/181515213?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/181515213?v=4",
+ "profile_url": "https://github.com/stuticoder123"
+ },
+ "khanakshah27": {
+ "expectedPoints": 7,
+ "currentPoints": 0,
+ "levels": {
+ "level1": 0,
+ "level2": 1,
+ "level3": 0
+ },
+ "prs": [
+ {
+ "url": "https://github.com/MAVERICK-VF142/Drx.MediMate/pull/85",
+ "title": "Translate languages",
+ "repo": "MAVERICK-VF142/Drx.MediMate",
+ "level": "level2",
+ "points": 7,
+ "created_at": "2025-07-26T06:43:32Z",
+ "updated_at": "2025-07-26T09:24:54Z",
+ "state": "closed",
+ "merged": false,
+ "merged_at": null,
+ "author_url": "https://github.com/khanakshah27",
+ "author_avatar": "https://avatars.githubusercontent.com/u/167800358?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/167800358?v=4",
+ "profile_url": "https://github.com/khanakshah27"
+ },
+ "kritsii": {
+ "expectedPoints": 7,
+ "currentPoints": 0,
+ "levels": {
+ "level1": 0,
+ "level2": 1,
+ "level3": 0
+ },
+ "prs": [
+ {
+ "url": "https://github.com/Ayushjhawar8/Flavor-ai/pull/92",
+ "title": "added budgetbowl section",
+ "repo": "Ayushjhawar8/Flavor-ai",
+ "level": "level2",
+ "points": 7,
+ "created_at": "2025-07-28T05:22:48Z",
+ "updated_at": "2025-08-01T13:52:12Z",
+ "state": "open",
+ "merged": false,
+ "merged_at": null,
+ "author_url": "https://github.com/kritsii",
+ "author_avatar": "https://avatars.githubusercontent.com/u/218038370?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/218038370?v=4",
+ "profile_url": "https://github.com/kritsii"
+ },
+ "Harshitha-0509": {
+ "expectedPoints": 7,
+ "currentPoints": 0,
+ "levels": {
+ "level1": 0,
+ "level2": 1,
+ "level3": 0
+ },
+ "prs": [
+ {
+ "url": "https://github.com/Ayushjhawar8/Flavor-ai/pull/37",
+ "title": "UI Enhancement: Redesigned Navbar for Flavor AI and SearchBar",
+ "repo": "Ayushjhawar8/Flavor-ai",
+ "level": "level2",
+ "points": 7,
+ "created_at": "2025-07-24T09:26:47Z",
+ "updated_at": "2025-07-27T09:45:40Z",
+ "state": "closed",
+ "merged": false,
+ "merged_at": null,
+ "author_url": "https://github.com/Harshitha-0509",
+ "author_avatar": "https://avatars.githubusercontent.com/u/173448299?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/173448299?v=4",
+ "profile_url": "https://github.com/Harshitha-0509"
+ },
+ "KC-Chinmayi": {
+ "expectedPoints": 0,
+ "currentPoints": 0,
+ "levels": {
+ "level1": 0,
+ "level2": 0,
+ "level3": 0
+ },
+ "prs": [
+ {
+ "url": "https://github.com/Balamurugan-cyber/WanderWise-Smart-routes.-Hidden-gems.-Travel-smarter.-/pull/71",
+ "title": "Merge upstream changes and move files into frontend folder",
+ "repo": "Balamurugan-cyber/WanderWise-Smart-routes.-Hidden-gems.-Travel-smarter.-",
+ "level": null,
+ "points": 0,
+ "created_at": "2025-07-27T17:21:03Z",
+ "updated_at": "2025-07-27T17:46:19Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-27T17:29:01Z",
+ "author_url": "https://github.com/KC-Chinmayi",
+ "author_avatar": "https://avatars.githubusercontent.com/u/175842977?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/175842977?v=4",
+ "profile_url": "https://github.com/KC-Chinmayi"
+ },
+ "anuja-gutte": {
+ "expectedPoints": 4,
+ "currentPoints": 0,
+ "levels": {
+ "level1": 1,
+ "level2": 0,
+ "level3": 0
+ },
+ "prs": [
+ {
+ "url": "https://github.com/BhaktiMore18/Pouranik/pull/124",
+ "title": "Fix: Added mobile responsiveness,improved alignments and icons on Book Details page",
+ "repo": "BhaktiMore18/Pouranik",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-08-02T12:38:33Z",
+ "updated_at": "2025-08-03T06:17:35Z",
+ "state": "open",
+ "merged": false,
+ "merged_at": null,
+ "author_url": "https://github.com/anuja-gutte",
+ "author_avatar": "https://avatars.githubusercontent.com/u/169691041?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/169691041?v=4",
+ "profile_url": "https://github.com/anuja-gutte"
+ },
+ "SOHAMPAL23": {
+ "expectedPoints": 10,
+ "currentPoints": 0,
+ "levels": {
+ "level1": 0,
+ "level2": 0,
+ "level3": 1
+ },
+ "prs": [
+ {
+ "url": "https://github.com/BhaktiMore18/Pouranik/pull/118",
+ "title": "AI Summarizer for the Books ",
+ "repo": "BhaktiMore18/Pouranik",
+ "level": "level3",
+ "points": 10,
+ "created_at": "2025-07-31T16:49:43Z",
+ "updated_at": "2025-08-03T06:16:14Z",
+ "state": "open",
+ "merged": false,
+ "merged_at": null,
+ "author_url": "https://github.com/SOHAMPAL23",
+ "author_avatar": "https://avatars.githubusercontent.com/u/171281850?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/171281850?v=4",
+ "profile_url": "https://github.com/SOHAMPAL23"
+ },
+ "jay1466": {
+ "expectedPoints": 7,
+ "currentPoints": 0,
+ "levels": {
+ "level1": 0,
+ "level2": 1,
+ "level3": 0
+ },
+ "prs": [
+ {
+ "url": "https://github.com/Dnyaneshpise/skywatch_alerts/pull/11",
+ "title": "feat: Implement Smart Rate Limiting, Caching, and Adaptive Polling System",
+ "repo": "Dnyaneshpise/skywatch_alerts",
+ "level": "level2",
+ "points": 7,
+ "created_at": "2025-07-24T06:17:11Z",
+ "updated_at": "2025-07-25T13:44:46Z",
+ "state": "open",
+ "merged": false,
+ "merged_at": null,
+ "author_url": "https://github.com/jay1466",
+ "author_avatar": "https://avatars.githubusercontent.com/u/148425297?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/148425297?v=4",
+ "profile_url": "https://github.com/jay1466"
+ },
+ "ravicoder01": {
+ "expectedPoints": 10,
+ "currentPoints": 0,
+ "levels": {
+ "level1": 0,
+ "level2": 0,
+ "level3": 1
+ },
+ "prs": [
+ {
+ "url": "https://github.com/Gagandeep-2003/driver-drowsiness-detection-system/pull/58",
+ "title": "Added CSV logging for drowsy detection with duration tracking",
+ "repo": "Gagandeep-2003/driver-drowsiness-detection-system",
+ "level": "level3",
+ "points": 10,
+ "created_at": "2025-07-31T10:09:46Z",
+ "updated_at": "2025-08-02T04:20:23Z",
+ "state": "open",
+ "merged": false,
+ "merged_at": null,
+ "author_url": "https://github.com/ravicoder01",
+ "author_avatar": "https://avatars.githubusercontent.com/u/173431094?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/173431094?v=4",
+ "profile_url": "https://github.com/ravicoder01"
+ },
+ "royvivi29": {
+ "expectedPoints": 4,
+ "currentPoints": 0,
+ "levels": {
+ "level1": 1,
+ "level2": 0,
+ "level3": 0
+ },
+ "prs": [
+ {
+ "url": "https://github.com/Kritika75/TheCawnporeMag.github.io/pull/113",
+ "title": "implemented responsive navbar with mobile menu toggle and improved header spacing",
+ "repo": "Kritika75/TheCawnporeMag.github.io",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-25T09:10:21Z",
+ "updated_at": "2025-07-27T16:24:15Z",
+ "state": "open",
+ "merged": false,
+ "merged_at": null,
+ "author_url": "https://github.com/royvivi29",
+ "author_avatar": "https://avatars.githubusercontent.com/u/143956685?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/143956685?v=4",
+ "profile_url": "https://github.com/royvivi29"
+ },
+ "tvishiupadhyay": {
+ "expectedPoints": 4,
+ "currentPoints": 0,
+ "levels": {
+ "level1": 1,
+ "level2": 0,
+ "level3": 0
+ },
+ "prs": [
+ {
+ "url": "https://github.com/Kritika75/TheCawnporeMag.github.io/pull/92",
+ "title": "made the page enhancements as mentioned in #16",
+ "repo": "Kritika75/TheCawnporeMag.github.io",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-24T13:50:18Z",
+ "updated_at": "2025-07-29T07:55:10Z",
+ "state": "open",
+ "merged": false,
+ "merged_at": null,
+ "author_url": "https://github.com/tvishiupadhyay",
+ "author_avatar": "https://avatars.githubusercontent.com/u/63797837?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/63797837?v=4",
+ "profile_url": "https://github.com/tvishiupadhyay"
+ },
+ "sanyogeetapradhan": {
+ "expectedPoints": 4,
+ "currentPoints": 0,
+ "levels": {
+ "level1": 1,
+ "level2": 0,
+ "level3": 0
+ },
+ "prs": [
+ {
+ "url": "https://github.com/Kritika75/TheCawnporeMag.github.io/pull/78",
+ "title": "#5 Enhanced Readability",
+ "repo": "Kritika75/TheCawnporeMag.github.io",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-24T06:10:31Z",
+ "updated_at": "2025-07-26T15:04:27Z",
+ "state": "open",
+ "merged": false,
+ "merged_at": null,
+ "author_url": "https://github.com/sanyogeetapradhan",
+ "author_avatar": "https://avatars.githubusercontent.com/u/178560945?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/178560945?v=4",
+ "profile_url": "https://github.com/sanyogeetapradhan"
+ },
+ "prushti1521": {
+ "expectedPoints": 7,
+ "currentPoints": 0,
+ "levels": {
+ "level1": 0,
+ "level2": 1,
+ "level3": 0
+ },
+ "prs": [
+ {
+ "url": "https://github.com/Kritika75/TheCawnporeMag.github.io/pull/32",
+ "title": "[UI Enhancement] Add hero banner, button animations, sticky navbar & improved text styling",
+ "repo": "Kritika75/TheCawnporeMag.github.io",
+ "level": "level2",
+ "points": 7,
+ "created_at": "2025-07-22T15:22:42Z",
+ "updated_at": "2025-07-28T10:04:01Z",
+ "state": "open",
+ "merged": false,
+ "merged_at": null,
+ "author_url": "https://github.com/prushti1521",
+ "author_avatar": "https://avatars.githubusercontent.com/u/199481998?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/199481998?v=4",
+ "profile_url": "https://github.com/prushti1521"
+ },
+ "HetviThakkar-025": {
+ "expectedPoints": 4,
+ "currentPoints": 0,
+ "levels": {
+ "level1": 1,
+ "level2": 0,
+ "level3": 0
+ },
+ "prs": [
+ {
+ "url": "https://github.com/MeghanaDG04/RECIPEDIA/pull/21",
+ "title": "Fixes Improve Form Validation and Error Messaging #1 – Added gender dropdown & improved UI",
+ "repo": "MeghanaDG04/Recipedia",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-22T19:09:58Z",
+ "updated_at": "2025-07-25T18:07:29Z",
+ "state": "closed",
+ "merged": false,
+ "merged_at": null,
+ "author_url": "https://github.com/HetviThakkar-025",
+ "author_avatar": "https://avatars.githubusercontent.com/u/175229119?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/175229119?v=4",
+ "profile_url": "https://github.com/HetviThakkar-025"
+ },
+ "kanchn-https": {
+ "expectedPoints": 0,
+ "currentPoints": 0,
+ "levels": {
+ "level1": 0,
+ "level2": 0,
+ "level3": 0
+ },
+ "prs": [
+ {
+ "url": "https://github.com/GitMetricsLab/github_tracker/pull/170",
+ "title": " Added Sign-in-page: Sign-in with Github",
+ "repo": "mehul-m-prajapati/github_tracker",
+ "level": null,
+ "points": 0,
+ "created_at": "2025-08-01T13:15:31Z",
+ "updated_at": "2025-08-01T13:36:49Z",
+ "state": "open",
+ "merged": false,
+ "merged_at": null,
+ "author_url": "https://github.com/kanchn-https",
+ "author_avatar": "https://avatars.githubusercontent.com/u/180453127?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/180453127?v=4",
+ "profile_url": "https://github.com/kanchn-https"
+ },
+ "beereshbc": {
+ "expectedPoints": 0,
+ "currentPoints": 0,
+ "levels": {
+ "level1": 0,
+ "level2": 0,
+ "level3": 0
+ },
+ "prs": [
+ {
+ "url": "https://github.com/GitMetricsLab/github_tracker/pull/144",
+ "title": "Improving UIUX of a About page",
+ "repo": "mehul-m-prajapati/github_tracker",
+ "level": null,
+ "points": 0,
+ "created_at": "2025-07-28T18:21:02Z",
+ "updated_at": "2025-08-02T13:48:31Z",
+ "state": "closed",
+ "merged": false,
+ "merged_at": null,
+ "author_url": "https://github.com/beereshbc",
+ "author_avatar": "https://avatars.githubusercontent.com/u/148090219?v=4"
+ },
+ {
+ "url": "https://github.com/Mujtabaa07/coffeeShop/pull/480",
+ "title": "added missed images in Hot Beverage Section",
+ "repo": "Mujtabaa07/coffeeShop",
+ "level": null,
+ "points": 0,
+ "created_at": "2025-07-28T13:36:40Z",
+ "updated_at": "2025-07-28T14:15:14Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-28T14:15:01Z",
+ "author_url": "https://github.com/beereshbc",
+ "author_avatar": "https://avatars.githubusercontent.com/u/148090219?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/148090219?v=4",
+ "profile_url": "https://github.com/beereshbc"
+ },
+ "aayushkumbharkar": {
+ "expectedPoints": 0,
+ "currentPoints": 0,
+ "levels": {
+ "level1": 0,
+ "level2": 0,
+ "level3": 0
+ },
+ "prs": [
+ {
+ "url": "https://github.com/GitMetricsLab/github_tracker/pull/131",
+ "title": "Update LICENSE year to 2025 under GSSoC'25",
+ "repo": "mehul-m-prajapati/github_tracker",
+ "level": null,
+ "points": 0,
+ "created_at": "2025-07-25T14:39:58Z",
+ "updated_at": "2025-07-25T18:38:28Z",
+ "state": "closed",
+ "merged": false,
+ "merged_at": null,
+ "author_url": "https://github.com/aayushkumbharkar",
+ "author_avatar": "https://avatars.githubusercontent.com/u/100336139?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/100336139?v=4",
+ "profile_url": "https://github.com/aayushkumbharkar"
+ },
+ "PoojaPagadala": {
+ "expectedPoints": 0,
+ "currentPoints": 0,
+ "levels": {
+ "level1": 0,
+ "level2": 0,
+ "level3": 0
+ },
+ "prs": [
+ {
+ "url": "https://github.com/Mujtabaa07/coffeeShop/pull/511",
+ "title": "Fix: Improved heading responsiveness for 'Our Specialties' section",
+ "repo": "Mujtabaa07/coffeeShop",
+ "level": null,
+ "points": 0,
+ "created_at": "2025-08-02T13:37:43Z",
+ "updated_at": "2025-08-02T18:47:34Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-08-02T18:47:26Z",
+ "author_url": "https://github.com/PoojaPagadala",
+ "author_avatar": "https://avatars.githubusercontent.com/u/144942913?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/144942913?v=4",
+ "profile_url": "https://github.com/PoojaPagadala"
+ },
+ "Sanjana-1204": {
+ "expectedPoints": 0,
+ "currentPoints": 0,
+ "levels": {
+ "level1": 0,
+ "level2": 0,
+ "level3": 0
+ },
+ "prs": [
+ {
+ "url": "https://github.com/Mujtabaa07/coffeeShop/pull/505",
+ "title": "docs: Add Known Issues section for Edit Profile Button functionality",
+ "repo": "Mujtabaa07/coffeeShop",
+ "level": null,
+ "points": 0,
+ "created_at": "2025-08-01T15:13:30Z",
+ "updated_at": "2025-08-02T18:32:37Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-08-02T18:32:28Z",
+ "author_url": "https://github.com/Sanjana-1204",
+ "author_avatar": "https://avatars.githubusercontent.com/u/146528684?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/146528684?v=4",
+ "profile_url": "https://github.com/Sanjana-1204"
+ },
+ "tusharg2210": {
+ "expectedPoints": 0,
+ "currentPoints": 0,
+ "levels": {
+ "level1": 0,
+ "level2": 0,
+ "level3": 0
+ },
+ "prs": [
+ {
+ "url": "https://github.com/Mujtabaa07/coffeeShop/pull/504",
+ "title": "footer is now aligned",
+ "repo": "Mujtabaa07/coffeeShop",
+ "level": null,
+ "points": 0,
+ "created_at": "2025-08-01T08:07:50Z",
+ "updated_at": "2025-08-02T18:42:23Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-08-02T18:42:14Z",
+ "author_url": "https://github.com/tusharg2210",
+ "author_avatar": "https://avatars.githubusercontent.com/u/147972748?v=4"
+ },
+ {
+ "url": "https://github.com/Mujtabaa07/coffeeShop/pull/501",
+ "title": "Feature/google authentication",
+ "repo": "Mujtabaa07/coffeeShop",
+ "level": null,
+ "points": 0,
+ "created_at": "2025-07-31T19:33:57Z",
+ "updated_at": "2025-08-01T03:09:37Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-08-01T02:25:18Z",
+ "author_url": "https://github.com/tusharg2210",
+ "author_avatar": "https://avatars.githubusercontent.com/u/147972748?v=4"
+ },
+ {
+ "url": "https://github.com/Mujtabaa07/coffeeShop/pull/455",
+ "title": "Fix: Footer UI Enhancement - Improved Layout and Visual Design",
+ "repo": "Mujtabaa07/coffeeShop",
+ "level": null,
+ "points": 0,
+ "created_at": "2025-07-23T05:46:55Z",
+ "updated_at": "2025-07-24T16:58:44Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-24T16:58:33Z",
+ "author_url": "https://github.com/tusharg2210",
+ "author_avatar": "https://avatars.githubusercontent.com/u/147972748?v=4"
+ },
+ {
+ "url": "https://github.com/Mujtabaa07/coffeeShop/pull/453",
+ "title": "Fix Scroll-to-Top Button Runtime Error by Moving Logic into React Component",
+ "repo": "Mujtabaa07/coffeeShop",
+ "level": null,
+ "points": 0,
+ "created_at": "2025-07-23T02:59:48Z",
+ "updated_at": "2025-07-24T16:13:45Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-24T16:13:36Z",
+ "author_url": "https://github.com/tusharg2210",
+ "author_avatar": "https://avatars.githubusercontent.com/u/147972748?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/147972748?v=4",
+ "profile_url": "https://github.com/tusharg2210"
+ },
+ "Muskan2000227": {
+ "expectedPoints": 0,
+ "currentPoints": 0,
+ "levels": {
+ "level1": 0,
+ "level2": 0,
+ "level3": 0
+ },
+ "prs": [
+ {
+ "url": "https://github.com/Mujtabaa07/coffeeShop/pull/495",
+ "title": "fix: cursor not visible in navbar due to incorrect z-index layering",
+ "repo": "Mujtabaa07/coffeeShop",
+ "level": null,
+ "points": 0,
+ "created_at": "2025-07-31T09:02:07Z",
+ "updated_at": "2025-08-01T02:29:43Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-08-01T02:29:29Z",
+ "author_url": "https://github.com/Muskan2000227",
+ "author_avatar": "https://avatars.githubusercontent.com/u/118728337?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/118728337?v=4",
+ "profile_url": "https://github.com/Muskan2000227"
+ },
+ "Rutwika1409": {
+ "expectedPoints": 0,
+ "currentPoints": 0,
+ "levels": {
+ "level1": 0,
+ "level2": 0,
+ "level3": 0
+ },
+ "prs": [
+ {
+ "url": "https://github.com/Mujtabaa07/coffeeShop/pull/492",
+ "title": "Implemented Wishlist, Cart, and Checkout Features with UI and Config Updates",
+ "repo": "Mujtabaa07/coffeeShop",
+ "level": null,
+ "points": 0,
+ "created_at": "2025-07-30T18:53:18Z",
+ "updated_at": "2025-08-02T19:12:32Z",
+ "state": "open",
+ "merged": false,
+ "merged_at": null,
+ "author_url": "https://github.com/Rutwika1409",
+ "author_avatar": "https://avatars.githubusercontent.com/u/182268241?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/182268241?v=4",
+ "profile_url": "https://github.com/Rutwika1409"
+ },
+ "aarusharmaa": {
+ "expectedPoints": 0,
+ "currentPoints": 0,
+ "levels": {
+ "level1": 0,
+ "level2": 0,
+ "level3": 0
+ },
+ "prs": [
+ {
+ "url": "https://github.com/Mujtabaa07/coffeeShop/pull/485",
+ "title": "Fix: Re-added 'Shop' link in navbar",
+ "repo": "Mujtabaa07/coffeeShop",
+ "level": null,
+ "points": 0,
+ "created_at": "2025-07-28T16:34:50Z",
+ "updated_at": "2025-08-01T02:43:16Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-08-01T02:43:07Z",
+ "author_url": "https://github.com/aarusharmaa",
+ "author_avatar": "https://avatars.githubusercontent.com/u/162907991?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/162907991?v=4",
+ "profile_url": "https://github.com/aarusharmaa"
+ },
+ "Tanveerfatima17": {
+ "expectedPoints": 0,
+ "currentPoints": 0,
+ "levels": {
+ "level1": 0,
+ "level2": 0,
+ "level3": 0
+ },
+ "prs": [
+ {
+ "url": "https://github.com/Mujtabaa07/coffeeShop/pull/477",
+ "title": "Bug/mobile responsive",
+ "repo": "Mujtabaa07/coffeeShop",
+ "level": null,
+ "points": 0,
+ "created_at": "2025-07-26T20:42:24Z",
+ "updated_at": "2025-07-28T14:15:42Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-28T14:15:30Z",
+ "author_url": "https://github.com/Tanveerfatima17",
+ "author_avatar": "https://avatars.githubusercontent.com/u/111355270?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/111355270?v=4",
+ "profile_url": "https://github.com/Tanveerfatima17"
+ },
+ "rudrikasharma15": {
+ "expectedPoints": 0,
+ "currentPoints": 0,
+ "levels": {
+ "level1": 0,
+ "level2": 0,
+ "level3": 0
+ },
+ "prs": [
+ {
+ "url": "https://github.com/Mujtabaa07/coffeeShop/pull/468",
+ "title": "Feature: Add Chatbot with FAQs and Suggestions (Fixes #422)",
+ "repo": "Mujtabaa07/coffeeShop",
+ "level": null,
+ "points": 0,
+ "created_at": "2025-07-24T16:31:03Z",
+ "updated_at": "2025-07-24T16:50:47Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-24T16:50:36Z",
+ "author_url": "https://github.com/rudrikasharma15",
+ "author_avatar": "https://avatars.githubusercontent.com/u/208065394?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/208065394?v=4",
+ "profile_url": "https://github.com/rudrikasharma15"
+ },
+ "ShrishtiMangla": {
+ "expectedPoints": 0,
+ "currentPoints": 0,
+ "levels": {
+ "level1": 0,
+ "level2": 0,
+ "level3": 0
+ },
+ "prs": [
+ {
+ "url": "https://github.com/Mujtabaa07/coffeeShop/pull/461",
+ "title": "Added hover effect and border styling to product images (shop)",
+ "repo": "Mujtabaa07/coffeeShop",
+ "level": null,
+ "points": 0,
+ "created_at": "2025-07-23T17:58:16Z",
+ "updated_at": "2025-07-24T16:01:43Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-24T16:01:34Z",
+ "author_url": "https://github.com/ShrishtiMangla",
+ "author_avatar": "https://avatars.githubusercontent.com/u/187507172?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/187507172?v=4",
+ "profile_url": "https://github.com/ShrishtiMangla"
+ },
+ "akadcoder": {
+ "expectedPoints": 0,
+ "currentPoints": 0,
+ "levels": {
+ "level1": 0,
+ "level2": 0,
+ "level3": 0
+ },
+ "prs": [
+ {
+ "url": "https://github.com/Mujtabaa07/coffeeShop/pull/459",
+ "title": "Fav Added",
+ "repo": "Mujtabaa07/coffeeShop",
+ "level": null,
+ "points": 0,
+ "created_at": "2025-07-23T08:58:34Z",
+ "updated_at": "2025-07-23T15:39:29Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-23T15:39:21Z",
+ "author_url": "https://github.com/akadcoder",
+ "author_avatar": "https://avatars.githubusercontent.com/u/170956151?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/170956151?v=4",
+ "profile_url": "https://github.com/akadcoder"
+ },
+ "shifakoti": {
+ "expectedPoints": 0,
+ "currentPoints": 0,
+ "levels": {
+ "level1": 0,
+ "level2": 0,
+ "level3": 0
+ },
+ "prs": [
+ {
+ "url": "https://github.com/Mujtabaa07/coffeeShop/pull/452",
+ "title": "bug is fixed",
+ "repo": "Mujtabaa07/coffeeShop",
+ "level": null,
+ "points": 0,
+ "created_at": "2025-07-22T11:38:56Z",
+ "updated_at": "2025-07-25T14:20:44Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-24T16:15:09Z",
+ "author_url": "https://github.com/shifakoti",
+ "author_avatar": "https://avatars.githubusercontent.com/u/190610934?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/190610934?v=4",
+ "profile_url": "https://github.com/shifakoti"
+ },
+ "sandeshkhairnar": {
+ "expectedPoints": 7,
+ "currentPoints": 0,
+ "levels": {
+ "level1": 0,
+ "level2": 1,
+ "level3": 0
+ },
+ "prs": [
+ {
+ "url": "https://github.com/Muneerali199/DocMagic/pull/280",
+ "title": "fix: This PR resolves a crash that occurred when navigating back to the /settings page.",
+ "repo": "Muneerali199/DocMagic",
+ "level": "level2",
+ "points": 7,
+ "created_at": "2025-08-01T14:04:30Z",
+ "updated_at": "2025-08-02T17:00:06Z",
+ "state": "open",
+ "merged": false,
+ "merged_at": null,
+ "author_url": "https://github.com/sandeshkhairnar",
+ "author_avatar": "https://avatars.githubusercontent.com/u/145431558?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/145431558?v=4",
+ "profile_url": "https://github.com/sandeshkhairnar"
+ },
+ "MrRogueKnight": {
+ "expectedPoints": 0,
+ "currentPoints": 0,
+ "levels": {
+ "level1": 0,
+ "level2": 0,
+ "level3": 0
+ },
+ "prs": [
+ {
+ "url": "https://github.com/nishantharkut/W3nity/pull/33",
+ "title": "Fix gig creation bug: allow all categories and correct budget field mapping",
+ "repo": "nishantharkut/W3nity",
+ "level": null,
+ "points": 0,
+ "created_at": "2025-07-23T15:55:34Z",
+ "updated_at": "2025-07-28T10:12:48Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-28T10:12:40Z",
+ "author_url": "https://github.com/MrRogueKnight",
+ "author_avatar": "https://avatars.githubusercontent.com/u/89287357?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/89287357?v=4",
+ "profile_url": "https://github.com/MrRogueKnight"
+ },
+ "somyajain-2048": {
+ "expectedPoints": 10,
+ "currentPoints": 0,
+ "levels": {
+ "level1": 0,
+ "level2": 0,
+ "level3": 1
+ },
+ "prs": [
+ {
+ "url": "https://github.com/NishantRana07/HrRoadways/pull/406",
+ "title": "Fix: Scroll to top on route change using ScrollTop.jsx component",
+ "repo": "NishantRana07/HrRoadways",
+ "level": "level3",
+ "points": 10,
+ "created_at": "2025-07-27T12:21:50Z",
+ "updated_at": "2025-08-02T19:02:50Z",
+ "state": "closed",
+ "merged": false,
+ "merged_at": null,
+ "author_url": "https://github.com/somyajain-2048",
+ "author_avatar": "https://avatars.githubusercontent.com/u/142176506?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/142176506?v=4",
+ "profile_url": "https://github.com/somyajain-2048"
+ },
+ "ozhakhushi": {
+ "expectedPoints": 4,
+ "currentPoints": 0,
+ "levels": {
+ "level1": 1,
+ "level2": 0,
+ "level3": 0
+ },
+ "prs": [
+ {
+ "url": "https://github.com/pavitraag/Project-Vault/pull/213",
+ "title": "Fix HTML structure and display text below button",
+ "repo": "pavitraag/Project-Vault",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-30T15:42:08Z",
+ "updated_at": "2025-08-02T11:31:27Z",
+ "state": "open",
+ "merged": false,
+ "merged_at": null,
+ "author_url": "https://github.com/ozhakhushi",
+ "author_avatar": "https://avatars.githubusercontent.com/u/212381698?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/212381698?v=4",
+ "profile_url": "https://github.com/ozhakhushi"
+ },
+ "Saloninaik12": {
+ "expectedPoints": 4,
+ "currentPoints": 0,
+ "levels": {
+ "level1": 1,
+ "level2": 0,
+ "level3": 0
+ },
+ "prs": [
+ {
+ "url": "https://github.com/pavitraag/Project-Vault/pull/206",
+ "title": "UI Improvements: Navbar cleanup, alignment fixes, and layout update",
+ "repo": "pavitraag/Project-Vault",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-30T04:39:55Z",
+ "updated_at": "2025-07-31T05:12:08Z",
+ "state": "open",
+ "merged": false,
+ "merged_at": null,
+ "author_url": "https://github.com/Saloninaik12",
+ "author_avatar": "https://avatars.githubusercontent.com/u/155801599?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/155801599?v=4",
+ "profile_url": "https://github.com/Saloninaik12"
+ },
+ "Tejasree731": {
+ "expectedPoints": 7,
+ "currentPoints": 0,
+ "levels": {
+ "level1": 0,
+ "level2": 1,
+ "level3": 0
+ },
+ "prs": [
+ {
+ "url": "https://github.com/pavitraag/Project-Vault/pull/192",
+ "title": "[Feature Added] Gesture-Controlled Snake Game using OpenCV and MediaPipe.",
+ "repo": "pavitraag/Project-Vault",
+ "level": "level2",
+ "points": 7,
+ "created_at": "2025-07-29T18:51:54Z",
+ "updated_at": "2025-07-31T13:41:56Z",
+ "state": "open",
+ "merged": false,
+ "merged_at": null,
+ "author_url": "https://github.com/Tejasree731",
+ "author_avatar": "https://avatars.githubusercontent.com/u/153089776?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/153089776?v=4",
+ "profile_url": "https://github.com/Tejasree731"
+ },
+ "Astha-Srivastav": {
+ "expectedPoints": 4,
+ "currentPoints": 0,
+ "levels": {
+ "level1": 1,
+ "level2": 0,
+ "level3": 0
+ },
+ "prs": [
+ {
+ "url": "https://github.com/pavitraag/Project-Vault/pull/160",
+ "title": "Added missing div tags",
+ "repo": "pavitraag/Project-Vault",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-28T19:08:46Z",
+ "updated_at": "2025-08-02T09:16:55Z",
+ "state": "open",
+ "merged": false,
+ "merged_at": null,
+ "author_url": "https://github.com/Astha-Srivastav",
+ "author_avatar": "https://avatars.githubusercontent.com/u/217416269?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/217416269?v=4",
+ "profile_url": "https://github.com/Astha-Srivastav"
+ },
+ "ssz2605": {
+ "expectedPoints": 11,
+ "currentPoints": 0,
+ "levels": {
+ "level1": 1,
+ "level2": 1,
+ "level3": 0
+ },
+ "prs": [
+ {
+ "url": "https://github.com/pavitraag/Project-Vault/pull/149",
+ "title": "Issue #90 resolved : Added BMI Calculator Project for beginners",
+ "repo": "pavitraag/Project-Vault",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-28T04:28:21Z",
+ "updated_at": "2025-08-02T18:52:46Z",
+ "state": "open",
+ "merged": false,
+ "merged_at": null,
+ "author_url": "https://github.com/ssz2605",
+ "author_avatar": "https://avatars.githubusercontent.com/u/204754569?v=4"
+ },
+ {
+ "url": "https://github.com/pavitraag/Project-Vault/pull/137",
+ "title": "Issue #89 resolved: Added NewsMag App",
+ "repo": "pavitraag/Project-Vault",
+ "level": "level2",
+ "points": 7,
+ "created_at": "2025-07-27T11:44:22Z",
+ "updated_at": "2025-08-02T10:11:43Z",
+ "state": "open",
+ "merged": false,
+ "merged_at": null,
+ "author_url": "https://github.com/ssz2605",
+ "author_avatar": "https://avatars.githubusercontent.com/u/204754569?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/204754569?v=4",
+ "profile_url": "https://github.com/ssz2605"
+ },
+ "basant20415": {
+ "expectedPoints": 7,
+ "currentPoints": 0,
+ "levels": {
+ "level1": 0,
+ "level2": 1,
+ "level3": 0
+ },
+ "prs": [
+ {
+ "url": "https://github.com/pooranjoyb/cpp-sdk-appwrite/pull/91",
+ "title": "feat: deleteMessage [messaging]",
+ "repo": "pooranjoyb/cpp-sdk-appwrite",
+ "level": "level2",
+ "points": 7,
+ "created_at": "2025-07-27T20:15:02Z",
+ "updated_at": "2025-07-29T18:26:21Z",
+ "state": "closed",
+ "merged": false,
+ "merged_at": null,
+ "author_url": "https://github.com/basant20415",
+ "author_avatar": "https://avatars.githubusercontent.com/u/85416647?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/85416647?v=4",
+ "profile_url": "https://github.com/basant20415"
+ },
+ "kyra-1": {
+ "expectedPoints": 0,
+ "currentPoints": 0,
+ "levels": {
+ "level1": 0,
+ "level2": 0,
+ "level3": 0
+ },
+ "prs": [
+ {
+ "url": "https://github.com/18Prachi/airplane-boarding-simulation/pull/17",
+ "title": "feat: Implement Pygame GUI for Simulation Visualization",
+ "repo": "18Prachi/airplane-boarding-simulation",
+ "level": null,
+ "points": 0,
+ "created_at": "2025-07-23T18:43:39Z",
+ "updated_at": "2025-07-31T23:07:21Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-31T23:07:21Z",
+ "author_url": "https://github.com/kyra-1",
+ "author_avatar": "https://avatars.githubusercontent.com/u/151565236?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/151565236?v=4",
+ "profile_url": "https://github.com/kyra-1"
+ },
+ "jyothi-samberpu": {
+ "expectedPoints": 0,
+ "currentPoints": 0,
+ "levels": {
+ "level1": 0,
+ "level2": 0,
+ "level3": 0
+ },
+ "prs": [
+ {
+ "url": "https://github.com/ProTecGames/Karbon/pull/81",
+ "title": "Fix UI blank screen issue (ProTecGames#74): added sash_position fallback, improved view toggling, enhanced settings handling",
+ "repo": "ProTecGames/Karbon",
+ "level": null,
+ "points": 0,
+ "created_at": "2025-08-03T06:21:00Z",
+ "updated_at": "2025-08-03T06:44:23Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-08-03T06:29:48Z",
+ "author_url": "https://github.com/jyothi-samberpu",
+ "author_avatar": "https://avatars.githubusercontent.com/u/190960134?v=4"
+ },
+ {
+ "url": "https://github.com/ProTecGames/Karbon/pull/71",
+ "title": "feat(ui): Add History Panel to track and restore past prompts and outputs",
+ "repo": "ProTecGames/Karbon",
+ "level": null,
+ "points": 0,
+ "created_at": "2025-08-01T18:02:28Z",
+ "updated_at": "2025-08-02T11:32:57Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-08-02T11:30:31Z",
+ "author_url": "https://github.com/jyothi-samberpu",
+ "author_avatar": "https://avatars.githubusercontent.com/u/190960134?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/190960134?v=4",
+ "profile_url": "https://github.com/jyothi-samberpu"
+ },
+ "muskansngh07": {
+ "expectedPoints": 0,
+ "currentPoints": 0,
+ "levels": {
+ "level1": 0,
+ "level2": 0,
+ "level3": 0
+ },
+ "prs": [
+ {
+ "url": "https://github.com/ProTecGames/Karbon/pull/79",
+ "title": "Fixed issue #76: Added a contribution guide.",
+ "repo": "ProTecGames/Karbon",
+ "level": null,
+ "points": 0,
+ "created_at": "2025-08-02T18:04:29Z",
+ "updated_at": "2025-08-03T06:44:45Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-08-03T05:30:14Z",
+ "author_url": "https://github.com/muskansngh07",
+ "author_avatar": "https://avatars.githubusercontent.com/u/214117592?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/214117592?v=4",
+ "profile_url": "https://github.com/muskansngh07"
+ },
+ "Rachel602144": {
+ "expectedPoints": 0,
+ "currentPoints": 0,
+ "levels": {
+ "level1": 0,
+ "level2": 0,
+ "level3": 0
+ },
+ "prs": [
+ {
+ "url": "https://github.com/ProTecGames/Karbon/pull/78",
+ "title": "Implemented Multi-User Session Management",
+ "repo": "ProTecGames/Karbon",
+ "level": null,
+ "points": 0,
+ "created_at": "2025-08-02T16:58:11Z",
+ "updated_at": "2025-08-03T06:48:32Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-08-03T06:42:48Z",
+ "author_url": "https://github.com/Rachel602144",
+ "author_avatar": "https://avatars.githubusercontent.com/u/181372830?v=4"
+ },
+ {
+ "url": "https://github.com/ProTecGames/Karbon/pull/66",
+ "title": "Integrated pytest and coverage into CI/CD pipeline",
+ "repo": "ProTecGames/Karbon",
+ "level": null,
+ "points": 0,
+ "created_at": "2025-07-31T11:28:34Z",
+ "updated_at": "2025-07-31T12:05:29Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-31T12:05:24Z",
+ "author_url": "https://github.com/Rachel602144",
+ "author_avatar": "https://avatars.githubusercontent.com/u/181372830?v=4"
+ },
+ {
+ "url": "https://github.com/ProTecGames/Karbon/pull/63",
+ "title": "added save and load project functionality with .karbonproject file support",
+ "repo": "ProTecGames/Karbon",
+ "level": null,
+ "points": 0,
+ "created_at": "2025-07-28T17:12:28Z",
+ "updated_at": "2025-07-29T05:37:37Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-29T05:37:02Z",
+ "author_url": "https://github.com/Rachel602144",
+ "author_avatar": "https://avatars.githubusercontent.com/u/181372830?v=4"
+ },
+ {
+ "url": "https://github.com/ProTecGames/Karbon/pull/60",
+ "title": "Created autosave feature",
+ "repo": "ProTecGames/Karbon",
+ "level": null,
+ "points": 0,
+ "created_at": "2025-07-27T16:00:47Z",
+ "updated_at": "2025-07-31T04:25:52Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-27T17:02:03Z",
+ "author_url": "https://github.com/Rachel602144",
+ "author_avatar": "https://avatars.githubusercontent.com/u/181372830?v=4"
+ },
+ {
+ "url": "https://github.com/ProTecGames/Karbon/pull/57",
+ "title": "Added syntax-highlighted code editor UI with live preview",
+ "repo": "ProTecGames/Karbon",
+ "level": null,
+ "points": 0,
+ "created_at": "2025-07-25T14:29:08Z",
+ "updated_at": "2025-07-25T14:34:27Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-25T14:32:11Z",
+ "author_url": "https://github.com/Rachel602144",
+ "author_avatar": "https://avatars.githubusercontent.com/u/181372830?v=4"
+ },
+ {
+ "url": "https://github.com/ProTecGames/Karbon/pull/39",
+ "title": "Added Architecture Diagram to README issue#10",
+ "repo": "ProTecGames/Karbon",
+ "level": null,
+ "points": 0,
+ "created_at": "2025-07-23T15:48:03Z",
+ "updated_at": "2025-07-24T10:27:02Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-23T16:01:35Z",
+ "author_url": "https://github.com/Rachel602144",
+ "author_avatar": "https://avatars.githubusercontent.com/u/181372830?v=4"
+ },
+ {
+ "url": "https://github.com/ProTecGames/Karbon/pull/22",
+ "title": "Completed Tasks 1-3 for Adding Example Prompts and Outputs to README and UI for User Guidance with dropdown #issue 9",
+ "repo": "ProTecGames/Karbon",
+ "level": null,
+ "points": 0,
+ "created_at": "2025-07-22T14:48:28Z",
+ "updated_at": "2025-07-24T10:29:01Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-22T15:59:34Z",
+ "author_url": "https://github.com/Rachel602144",
+ "author_avatar": "https://avatars.githubusercontent.com/u/181372830?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/181372830?v=4",
+ "profile_url": "https://github.com/Rachel602144"
+ },
+ "Harith-Y": {
+ "expectedPoints": 0,
+ "currentPoints": 0,
+ "levels": {
+ "level1": 0,
+ "level2": 0,
+ "level3": 0
+ },
+ "prs": [
+ {
+ "url": "https://github.com/ProTecGames/Karbon/pull/54",
+ "title": "Improved Font and Theme Settings",
+ "repo": "ProTecGames/Karbon",
+ "level": null,
+ "points": 0,
+ "created_at": "2025-07-25T08:15:58Z",
+ "updated_at": "2025-07-25T14:33:49Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-25T09:55:38Z",
+ "author_url": "https://github.com/Harith-Y",
+ "author_avatar": "https://avatars.githubusercontent.com/u/144448206?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/144448206?v=4",
+ "profile_url": "https://github.com/Harith-Y"
+ },
+ "0xChaitanya": {
+ "expectedPoints": 0,
+ "currentPoints": 0,
+ "levels": {
+ "level1": 0,
+ "level2": 0,
+ "level3": 0
+ },
+ "prs": [
+ {
+ "url": "https://github.com/ProTecGames/Karbon/pull/50",
+ "title": "Corrected checkBox issue #49",
+ "repo": "ProTecGames/Karbon",
+ "level": null,
+ "points": 0,
+ "created_at": "2025-07-24T15:54:25Z",
+ "updated_at": "2025-07-24T16:24:33Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-24T16:21:15Z",
+ "author_url": "https://github.com/0xChaitanya",
+ "author_avatar": "https://avatars.githubusercontent.com/u/171920792?v=4"
+ },
+ {
+ "url": "https://github.com/ProTecGames/Karbon/pull/48",
+ "title": "Feature Update, issue #2: Fully functional Undo/Redo buttons added",
+ "repo": "ProTecGames/Karbon",
+ "level": null,
+ "points": 0,
+ "created_at": "2025-07-24T12:05:19Z",
+ "updated_at": "2025-07-24T16:24:07Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-24T12:27:56Z",
+ "author_url": "https://github.com/0xChaitanya",
+ "author_avatar": "https://avatars.githubusercontent.com/u/171920792?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/171920792?v=4",
+ "profile_url": "https://github.com/0xChaitanya"
+ },
+ "RohiniShankari": {
+ "expectedPoints": 0,
+ "currentPoints": 0,
+ "levels": {
+ "level1": 0,
+ "level2": 0,
+ "level3": 0
+ },
+ "prs": [
+ {
+ "url": "https://github.com/ProTecGames/Karbon/pull/43",
+ "title": "Option to Export Website as .zip File #4",
+ "repo": "ProTecGames/Karbon",
+ "level": null,
+ "points": 0,
+ "created_at": "2025-07-24T07:05:46Z",
+ "updated_at": "2025-07-29T11:35:15Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-24T10:21:32Z",
+ "author_url": "https://github.com/RohiniShankari",
+ "author_avatar": "https://avatars.githubusercontent.com/u/136949412?v=4"
+ },
+ {
+ "url": "https://github.com/ProTecGames/Karbon/pull/41",
+ "title": "added the prompt optimizer feature",
+ "repo": "ProTecGames/Karbon",
+ "level": null,
+ "points": 0,
+ "created_at": "2025-07-23T18:48:29Z",
+ "updated_at": "2025-07-29T11:34:28Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-23T23:25:07Z",
+ "author_url": "https://github.com/RohiniShankari",
+ "author_avatar": "https://avatars.githubusercontent.com/u/136949412?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/136949412?v=4",
+ "profile_url": "https://github.com/RohiniShankari"
+ },
+ "abhiramiramadas": {
+ "expectedPoints": 0,
+ "currentPoints": 0,
+ "levels": {
+ "level1": 0,
+ "level2": 0,
+ "level3": 0
+ },
+ "prs": [
+ {
+ "url": "https://github.com/ProTecGames/Karbon/pull/40",
+ "title": "Added Contributors Page using GitHub API",
+ "repo": "ProTecGames/Karbon",
+ "level": null,
+ "points": 0,
+ "created_at": "2025-07-23T16:51:56Z",
+ "updated_at": "2025-07-24T10:26:45Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-23T17:19:31Z",
+ "author_url": "https://github.com/abhiramiramadas",
+ "author_avatar": "https://avatars.githubusercontent.com/u/100674826?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/100674826?v=4",
+ "profile_url": "https://github.com/abhiramiramadas"
+ },
+ "atharvakinage": {
+ "expectedPoints": 0,
+ "currentPoints": 0,
+ "levels": {
+ "level1": 0,
+ "level2": 0,
+ "level3": 0
+ },
+ "prs": [
+ {
+ "url": "https://github.com/ProTecGames/Karbon/pull/35",
+ "title": "Implement graceful degradation for external service failures",
+ "repo": "ProTecGames/Karbon",
+ "level": null,
+ "points": 0,
+ "created_at": "2025-07-23T14:02:55Z",
+ "updated_at": "2025-07-24T10:27:20Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-23T14:39:36Z",
+ "author_url": "https://github.com/atharvakinage",
+ "author_avatar": "https://avatars.githubusercontent.com/u/146965967?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/146965967?v=4",
+ "profile_url": "https://github.com/atharvakinage"
+ },
+ "Pravalika-Batchu": {
+ "expectedPoints": 0,
+ "currentPoints": 0,
+ "levels": {
+ "level1": 0,
+ "level2": 0,
+ "level3": 0
+ },
+ "prs": [
+ {
+ "url": "https://github.com/ProTecGames/Karbon/pull/34",
+ "title": "Fix: Cross-platform executable release is now working 🎉",
+ "repo": "ProTecGames/Karbon",
+ "level": null,
+ "points": 0,
+ "created_at": "2025-07-23T12:46:38Z",
+ "updated_at": "2025-07-24T10:27:32Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-23T13:12:43Z",
+ "author_url": "https://github.com/Pravalika-Batchu",
+ "author_avatar": "https://avatars.githubusercontent.com/u/121426817?v=4"
+ },
+ {
+ "url": "https://github.com/ProTecGames/Karbon/pull/30",
+ "title": "Fix cross-platform PyInstaller build and temporarily remove macOS icon",
+ "repo": "ProTecGames/Karbon",
+ "level": null,
+ "points": 0,
+ "created_at": "2025-07-23T09:35:21Z",
+ "updated_at": "2025-07-23T12:44:31Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-23T09:50:40Z",
+ "author_url": "https://github.com/Pravalika-Batchu",
+ "author_avatar": "https://avatars.githubusercontent.com/u/121426817?v=4"
+ },
+ {
+ "url": "https://github.com/ProTecGames/Karbon/pull/28",
+ "title": "Cross-platform executable build with PyInstaller",
+ "repo": "ProTecGames/Karbon",
+ "level": null,
+ "points": 0,
+ "created_at": "2025-07-23T09:01:40Z",
+ "updated_at": "2025-07-24T10:28:29Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-23T09:16:28Z",
+ "author_url": "https://github.com/Pravalika-Batchu",
+ "author_avatar": "https://avatars.githubusercontent.com/u/121426817?v=4"
+ },
+ {
+ "url": "https://github.com/ProTecGames/Karbon/pull/26",
+ "title": "Add cross-platform build workflow for Linux and macOS (GSSoC 2025)",
+ "repo": "ProTecGames/Karbon",
+ "level": null,
+ "points": 0,
+ "created_at": "2025-07-23T08:15:42Z",
+ "updated_at": "2025-07-24T10:29:31Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-23T08:24:11Z",
+ "author_url": "https://github.com/Pravalika-Batchu",
+ "author_avatar": "https://avatars.githubusercontent.com/u/121426817?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/121426817?v=4",
+ "profile_url": "https://github.com/Pravalika-Batchu"
+ },
+ "PrakharDoneria": {
+ "expectedPoints": 0,
+ "currentPoints": 0,
+ "levels": {
+ "level1": 0,
+ "level2": 0,
+ "level3": 0
+ },
+ "prs": [
+ {
+ "url": "https://github.com/ProTecGames/Karbon/pull/32",
+ "title": "Revert \"Fix cross-platform PyInstaller build and temporarily remove macOS icon\"",
+ "repo": "ProTecGames/Karbon",
+ "level": null,
+ "points": 0,
+ "created_at": "2025-07-23T09:51:39Z",
+ "updated_at": "2025-07-24T10:27:47Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-23T09:51:58Z",
+ "author_url": "https://github.com/PrakharDoneria",
+ "author_avatar": "https://avatars.githubusercontent.com/u/92568876?v=4"
+ },
+ {
+ "url": "https://github.com/ProTecGames/Karbon/pull/29",
+ "title": "Revert \"Cross-platform executable build with PyInstaller\"",
+ "repo": "ProTecGames/Karbon",
+ "level": null,
+ "points": 0,
+ "created_at": "2025-07-23T09:19:00Z",
+ "updated_at": "2025-07-24T10:28:15Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-23T09:19:11Z",
+ "author_url": "https://github.com/PrakharDoneria",
+ "author_avatar": "https://avatars.githubusercontent.com/u/92568876?v=4"
+ },
+ {
+ "url": "https://github.com/ProTecGames/Karbon/pull/27",
+ "title": "Revert \"Add cross-platform build workflow for Linux and macOS (GSSoC 2025)\"",
+ "repo": "ProTecGames/Karbon",
+ "level": null,
+ "points": 0,
+ "created_at": "2025-07-23T08:25:40Z",
+ "updated_at": "2025-07-24T10:28:49Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-23T08:26:22Z",
+ "author_url": "https://github.com/PrakharDoneria",
+ "author_avatar": "https://avatars.githubusercontent.com/u/92568876?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/92568876?v=4",
+ "profile_url": "https://github.com/PrakharDoneria"
+ },
+ "Tanmayshah89": {
+ "expectedPoints": 0,
+ "currentPoints": 0,
+ "levels": {
+ "level1": 0,
+ "level2": 0,
+ "level3": 0
+ },
+ "prs": [
+ {
+ "url": "https://github.com/ProTecGames/Karbon/pull/31",
+ "title": "updated character count label ,prompt validation, remove white spaces ",
+ "repo": "ProTecGames/Karbon",
+ "level": null,
+ "points": 0,
+ "created_at": "2025-07-23T09:37:17Z",
+ "updated_at": "2025-07-24T10:28:07Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-23T09:43:15Z",
+ "author_url": "https://github.com/Tanmayshah89",
+ "author_avatar": "https://avatars.githubusercontent.com/u/150542944?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/150542944?v=4",
+ "profile_url": "https://github.com/Tanmayshah89"
+ },
+ "Atomic-Shadow7002": {
+ "expectedPoints": 10,
+ "currentPoints": 0,
+ "levels": {
+ "level1": 0,
+ "level2": 0,
+ "level3": 1
+ },
+ "prs": [
+ {
+ "url": "https://github.com/Prateek9876/NagarVikas/pull/191",
+ "title": "Show Preview of Uploaded Image before Submission.",
+ "repo": "Prateek9876/NagarVikas",
+ "level": "level3",
+ "points": 10,
+ "created_at": "2025-08-01T05:05:52Z",
+ "updated_at": "2025-08-02T19:06:42Z",
+ "state": "open",
+ "merged": false,
+ "merged_at": null,
+ "author_url": "https://github.com/Atomic-Shadow7002",
+ "author_avatar": "https://avatars.githubusercontent.com/u/191123414?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/191123414?v=4",
+ "profile_url": "https://github.com/Atomic-Shadow7002"
+ },
+ "garys-demons": {
+ "expectedPoints": 14,
+ "currentPoints": 0,
+ "levels": {
+ "level1": 0,
+ "level2": 2,
+ "level3": 0
+ },
+ "prs": [
+ {
+ "url": "https://github.com/Prateek9876/NagarVikas/pull/187",
+ "title": "Lib folder restructured and import issue fixed",
+ "repo": "Prateek9876/NagarVikas",
+ "level": "level2",
+ "points": 7,
+ "created_at": "2025-07-31T09:48:42Z",
+ "updated_at": "2025-08-01T14:54:53Z",
+ "state": "open",
+ "merged": false,
+ "merged_at": null,
+ "author_url": "https://github.com/garys-demons",
+ "author_avatar": "https://avatars.githubusercontent.com/u/178498812?v=4"
+ },
+ {
+ "url": "https://github.com/Prateek9876/NagarVikas/pull/180",
+ "title": "Lib folder structure rearranged #179 ",
+ "repo": "Prateek9876/NagarVikas",
+ "level": "level2",
+ "points": 7,
+ "created_at": "2025-07-29T18:01:34Z",
+ "updated_at": "2025-07-31T09:06:29Z",
+ "state": "closed",
+ "merged": false,
+ "merged_at": null,
+ "author_url": "https://github.com/garys-demons",
+ "author_avatar": "https://avatars.githubusercontent.com/u/178498812?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/178498812?v=4",
+ "profile_url": "https://github.com/garys-demons"
+ },
+ "preetidas60": {
+ "expectedPoints": 10,
+ "currentPoints": 0,
+ "levels": {
+ "level1": 0,
+ "level2": 0,
+ "level3": 1
+ },
+ "prs": [
+ {
+ "url": "https://github.com/Prateek9876/NagarVikas/pull/186",
+ "title": "Added Star/Favorite to Complaints (Admin) #64 Level 3",
+ "repo": "Prateek9876/NagarVikas",
+ "level": "level3",
+ "points": 10,
+ "created_at": "2025-07-31T07:30:21Z",
+ "updated_at": "2025-08-01T14:54:53Z",
+ "state": "open",
+ "merged": false,
+ "merged_at": null,
+ "author_url": "https://github.com/preetidas60",
+ "author_avatar": "https://avatars.githubusercontent.com/u/112088836?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/112088836?v=4",
+ "profile_url": "https://github.com/preetidas60"
+ },
+ "sanjayv5457": {
+ "expectedPoints": 7,
+ "currentPoints": 0,
+ "levels": {
+ "level1": 0,
+ "level2": 1,
+ "level3": 0
+ },
+ "prs": [
+ {
+ "url": "https://github.com/Prateek9876/NagarVikas/pull/145",
+ "title": "Admin UI Change",
+ "repo": "Prateek9876/NagarVikas",
+ "level": "level2",
+ "points": 7,
+ "created_at": "2025-07-24T05:55:16Z",
+ "updated_at": "2025-07-25T04:02:23Z",
+ "state": "closed",
+ "merged": false,
+ "merged_at": null,
+ "author_url": "https://github.com/sanjayv5457",
+ "author_avatar": "https://avatars.githubusercontent.com/u/160109172?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/160109172?v=4",
+ "profile_url": "https://github.com/sanjayv5457"
+ },
+ "Dhanyasri7": {
+ "expectedPoints": 0,
+ "currentPoints": 0,
+ "levels": {
+ "level1": 0,
+ "level2": 0,
+ "level3": 0
+ },
+ "prs": [
+ {
+ "url": "https://github.com/Rajkumarbhakta/Canvas/pull/20",
+ "title": "Updated DrawingCanvas and ShapeSelector with shapes support",
+ "repo": "Rajkumarbhakta/Canvas",
+ "level": null,
+ "points": 0,
+ "created_at": "2025-07-31T17:56:11Z",
+ "updated_at": "2025-08-01T05:29:56Z",
+ "state": "open",
+ "merged": false,
+ "merged_at": null,
+ "author_url": "https://github.com/Dhanyasri7",
+ "author_avatar": "https://avatars.githubusercontent.com/u/147417430?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/147417430?v=4",
+ "profile_url": "https://github.com/Dhanyasri7"
+ },
+ "apurvayeole": {
+ "expectedPoints": 8,
+ "currentPoints": 0,
+ "levels": {
+ "level1": 2,
+ "level2": 0,
+ "level3": 0
+ },
+ "prs": [
+ {
+ "url": "https://github.com/SamXop123/RigCrafter/pull/33",
+ "title": "Fix/components of page ",
+ "repo": "SamXop123/RigCrafter",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-31T12:17:20Z",
+ "updated_at": "2025-08-01T10:20:07Z",
+ "state": "closed",
+ "merged": false,
+ "merged_at": null,
+ "author_url": "https://github.com/apurvayeole",
+ "author_avatar": "https://avatars.githubusercontent.com/u/172846083?v=4"
+ },
+ {
+ "url": "https://github.com/SamXop123/RigCrafter/pull/29",
+ "title": "made changes",
+ "repo": "SamXop123/RigCrafter",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-29T20:03:37Z",
+ "updated_at": "2025-07-31T11:04:35Z",
+ "state": "closed",
+ "merged": false,
+ "merged_at": null,
+ "author_url": "https://github.com/apurvayeole",
+ "author_avatar": "https://avatars.githubusercontent.com/u/172846083?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/172846083?v=4",
+ "profile_url": "https://github.com/apurvayeole"
+ },
+ "Miss-Marvis": {
+ "expectedPoints": 4,
+ "currentPoints": 0,
+ "levels": {
+ "level1": 1,
+ "level2": 0,
+ "level3": 0
+ },
+ "prs": [
+ {
+ "url": "https://github.com/SCR01/scr-game/pull/18",
+ "title": "Added addtional button on footer section",
+ "repo": "SCR01/scr-game",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-25T13:40:29Z",
+ "updated_at": "2025-07-25T21:46:22Z",
+ "state": "closed",
+ "merged": false,
+ "merged_at": null,
+ "author_url": "https://github.com/Miss-Marvis",
+ "author_avatar": "https://avatars.githubusercontent.com/u/143254487?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/143254487?v=4",
+ "profile_url": "https://github.com/Miss-Marvis"
+ },
+ "Nuskaa": {
+ "expectedPoints": 7,
+ "currentPoints": 0,
+ "levels": {
+ "level1": 0,
+ "level2": 1,
+ "level3": 0
+ },
+ "prs": [
+ {
+ "url": "https://github.com/SGCODEX/Music-Recommendation-Using-Facial-Expressions/pull/55",
+ "title": "Added ONNX-based Emotion Detector in new_models (Python 3.13 compatible)",
+ "repo": "SGCODEX/Music-Recommendation-Using-Facial-Expressions",
+ "level": "level2",
+ "points": 7,
+ "created_at": "2025-07-26T13:53:16Z",
+ "updated_at": "2025-08-01T10:16:41Z",
+ "state": "open",
+ "merged": false,
+ "merged_at": null,
+ "author_url": "https://github.com/Nuskaa",
+ "author_avatar": "https://avatars.githubusercontent.com/u/181695011?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/181695011?v=4",
+ "profile_url": "https://github.com/Nuskaa"
+ },
+ "Khushhiii08": {
+ "expectedPoints": 7,
+ "currentPoints": 0,
+ "levels": {
+ "level1": 0,
+ "level2": 1,
+ "level3": 0
+ },
+ "prs": [
+ {
+ "url": "https://github.com/SGCODEX/Music-Recommendation-Using-Facial-Expressions/pull/54",
+ "title": "Refactored app structure, added helpers and model training script",
+ "repo": "SGCODEX/Music-Recommendation-Using-Facial-Expressions",
+ "level": "level2",
+ "points": 7,
+ "created_at": "2025-07-26T12:07:47Z",
+ "updated_at": "2025-07-31T07:07:14Z",
+ "state": "open",
+ "merged": false,
+ "merged_at": null,
+ "author_url": "https://github.com/Khushhiii08",
+ "author_avatar": "https://avatars.githubusercontent.com/u/154302912?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/154302912?v=4",
+ "profile_url": "https://github.com/Khushhiii08"
+ },
+ "SahanaBPatil": {
+ "expectedPoints": 10,
+ "currentPoints": 0,
+ "levels": {
+ "level1": 0,
+ "level2": 0,
+ "level3": 1
+ },
+ "prs": [
+ {
+ "url": "https://github.com/SGCODEX/Music-Recommendation-Using-Facial-Expressions/pull/50",
+ "title": "Added print statement to log when video streaming starts",
+ "repo": "SGCODEX/Music-Recommendation-Using-Facial-Expressions",
+ "level": "level3",
+ "points": 10,
+ "created_at": "2025-07-23T19:17:52Z",
+ "updated_at": "2025-07-31T06:49:21Z",
+ "state": "open",
+ "merged": false,
+ "merged_at": null,
+ "author_url": "https://github.com/SahanaBPatil",
+ "author_avatar": "https://avatars.githubusercontent.com/u/148672948?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/148672948?v=4",
+ "profile_url": "https://github.com/SahanaBPatil"
+ },
+ "yashmakra": {
+ "expectedPoints": 4,
+ "currentPoints": 0,
+ "levels": {
+ "level1": 1,
+ "level2": 0,
+ "level3": 0
+ },
+ "prs": [
+ {
+ "url": "https://github.com/SGCODEX/Music-Recommendation-Using-Facial-Expressions/pull/42",
+ "title": "Fix footer spacing issue - add bottom padding to prevent content overlap",
+ "repo": "SGCODEX/Music-Recommendation-Using-Facial-Expressions",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-22T14:29:58Z",
+ "updated_at": "2025-07-31T06:46:17Z",
+ "state": "open",
+ "merged": false,
+ "merged_at": null,
+ "author_url": "https://github.com/yashmakra",
+ "author_avatar": "https://avatars.githubusercontent.com/u/208260229?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/208260229?v=4",
+ "profile_url": "https://github.com/yashmakra"
+ },
+ "sparshjha": {
+ "expectedPoints": 7,
+ "currentPoints": 0,
+ "levels": {
+ "level1": 0,
+ "level2": 1,
+ "level3": 0
+ },
+ "prs": [
+ {
+ "url": "https://github.com/sristy17/next-payroll/pull/58",
+ "title": "Update login page.tsx",
+ "repo": "sristy17/next-payroll",
+ "level": null,
+ "points": 0,
+ "created_at": "2025-07-31T14:47:45Z",
+ "updated_at": "2025-08-01T18:20:47Z",
+ "state": "closed",
+ "merged": false,
+ "merged_at": null,
+ "author_url": "https://github.com/sparshjha",
+ "author_avatar": "https://avatars.githubusercontent.com/u/221810265?v=4"
+ },
+ {
+ "url": "https://github.com/sristy17/next-payroll/pull/38",
+ "title": "Update login page.tsx",
+ "repo": "sristy17/next-payroll",
+ "level": "level2",
+ "points": 7,
+ "created_at": "2025-07-26T13:43:37Z",
+ "updated_at": "2025-08-02T16:06:38Z",
+ "state": "open",
+ "merged": false,
+ "merged_at": null,
+ "author_url": "https://github.com/sparshjha",
+ "author_avatar": "https://avatars.githubusercontent.com/u/221810265?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/221810265?v=4",
+ "profile_url": "https://github.com/sparshjha"
+ },
+ "pankaj1026": {
+ "expectedPoints": 4,
+ "currentPoints": 0,
+ "levels": {
+ "level1": 1,
+ "level2": 0,
+ "level3": 0
+ },
+ "prs": [
+ {
+ "url": "https://github.com/UTSAVS26/PyVerse/pull/1568",
+ "title": "add RandomizedSearchCV and feature scale",
+ "repo": "UTSAVS26/PyVerse",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-08-01T22:09:30Z",
+ "updated_at": "2025-08-02T08:05:04Z",
+ "state": "open",
+ "merged": false,
+ "merged_at": null,
+ "author_url": "https://github.com/pankaj1026",
+ "author_avatar": "https://avatars.githubusercontent.com/u/185759865?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/185759865?v=4",
+ "profile_url": "https://github.com/pankaj1026"
+ },
+ "AriyanPal08": {
+ "expectedPoints": 4,
+ "currentPoints": 0,
+ "levels": {
+ "level1": 1,
+ "level2": 0,
+ "level3": 0
+ },
+ "prs": [
+ {
+ "url": "https://github.com/UTSAVS26/PyVerse/pull/1519",
+ "title": " SCREEN TIME TRACKER",
+ "repo": "UTSAVS26/PyVerse",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-28T16:54:59Z",
+ "updated_at": "2025-08-02T11:07:52Z",
+ "state": "open",
+ "merged": false,
+ "merged_at": null,
+ "author_url": "https://github.com/AriyanPal08",
+ "author_avatar": "https://avatars.githubusercontent.com/u/182111540?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/182111540?v=4",
+ "profile_url": "https://github.com/AriyanPal08"
+ },
+ "zoya-hammad": {
+ "expectedPoints": 0,
+ "currentPoints": 0,
+ "levels": {
+ "level1": 0,
+ "level2": 0,
+ "level3": 0
+ },
+ "prs": [
+ {
+ "url": "https://github.com/ygowthamr/WhitePaper/pull/166",
+ "title": "Contributions - Support Pages",
+ "repo": "ygowthamr/WhitePaper",
+ "level": null,
+ "points": 0,
+ "created_at": "2025-07-26T04:52:04Z",
+ "updated_at": "2025-07-29T04:54:42Z",
+ "state": "open",
+ "merged": false,
+ "merged_at": null,
+ "author_url": "https://github.com/zoya-hammad",
+ "author_avatar": "https://avatars.githubusercontent.com/u/116413504?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/116413504?v=4",
+ "profile_url": "https://github.com/zoya-hammad"
+ },
+ "ShaanifFaqui": {
+ "expectedPoints": 0,
+ "currentPoints": 0,
+ "levels": {
+ "level1": 0,
+ "level2": 0,
+ "level3": 0
+ },
+ "prs": [
+ {
+ "url": "https://github.com/ygowthamr/WhitePaper/pull/151",
+ "title": "Improve Frontend Structure, Security, and Best Practices #145",
+ "repo": "ygowthamr/WhitePaper",
+ "level": null,
+ "points": 0,
+ "created_at": "2025-07-24T10:24:43Z",
+ "updated_at": "2025-07-25T16:09:31Z",
+ "state": "open",
+ "merged": false,
+ "merged_at": null,
+ "author_url": "https://github.com/ShaanifFaqui",
+ "author_avatar": "https://avatars.githubusercontent.com/u/170077104?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/170077104?v=4",
+ "profile_url": "https://github.com/ShaanifFaqui"
+ },
+ "aliviahossain": {
+ "expectedPoints": 0,
+ "currentPoints": 0,
+ "levels": {
+ "level1": 0,
+ "level2": 0,
+ "level3": 0
+ },
+ "prs": [
+ {
+ "url": "https://github.com/ygowthamr/WhitePaper/pull/149",
+ "title": "Added form validation and user feedback",
+ "repo": "ygowthamr/WhitePaper",
+ "level": null,
+ "points": 0,
+ "created_at": "2025-07-24T05:33:21Z",
+ "updated_at": "2025-07-25T14:12:38Z",
+ "state": "open",
+ "merged": false,
+ "merged_at": null,
+ "author_url": "https://github.com/aliviahossain",
+ "author_avatar": "https://avatars.githubusercontent.com/u/211632522?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/211632522?v=4",
+ "profile_url": "https://github.com/aliviahossain"
+ },
+ "apoorva-b-r": {
+ "expectedPoints": 14,
+ "currentPoints": 14,
+ "levels": {
+ "level1": 0,
+ "level2": 2,
+ "level3": 0
+ },
+ "prs": [
+ {
+ "url": "https://github.com/AshiTomar210/Euphoric-2025/pull/14",
+ "title": "Update README.md",
+ "repo": "AshiTomar210/Euphoric-2025",
+ "level": "level2",
+ "points": 7,
+ "created_at": "2025-07-28T18:30:22Z",
+ "updated_at": "2025-07-29T17:06:40Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-29T17:04:57Z",
+ "author_url": "https://github.com/apoorva-b-r",
+ "author_avatar": "https://avatars.githubusercontent.com/u/178297693?v=4"
+ },
+ {
+ "url": "https://github.com/AshiTomar210/Euphoric-2025/pull/10",
+ "title": "Update: README.md Improvements",
+ "repo": "AshiTomar210/Euphoric-2025",
+ "level": "level2",
+ "points": 7,
+ "created_at": "2025-07-27T04:42:49Z",
+ "updated_at": "2025-07-28T03:50:20Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-27T16:38:58Z",
+ "author_url": "https://github.com/apoorva-b-r",
+ "author_avatar": "https://avatars.githubusercontent.com/u/178297693?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/178297693?v=4",
+ "profile_url": "https://github.com/apoorva-b-r"
+ },
+
+ "Ashmita1206": {
+ "expectedPoints": 14,
+ "currentPoints": 0,
+ "levels": {
+ "level1": 0,
+ "level2": 2,
+ "level3": 0
+ },
+ "prs": [
+ {
+ "url": "https://github.com/AshiTomar210/Euphoric-2025/pull/16",
+ "title": " Major UI/UX Enhancements: Theme Toggle, Navbar Integration & Responsiveness Fixes issue#5 issue#6",
+ "repo": "AshiTomar210/Euphoric-2025",
+ "level": "level2",
+ "points": 7,
+ "created_at": "2025-07-29T06:05:04Z",
+ "updated_at": "2025-08-02T16:26:16Z",
+ "state": "open",
+ "merged": false,
+ "merged_at": null,
+ "author_url": "https://github.com/Ashmita1206",
+ "author_avatar": "https://avatars.githubusercontent.com/u/183642202?v=4"
+ },
+ {
+ "url": "https://github.com/AshiTomar210/Euphoric-2025/pull/8",
+ "title": "Issue: Improve Navbar Responsiveness on Smaller Devices #7",
+ "repo": "AshiTomar210/Euphoric-2025",
+ "level": "level2",
+ "points": 7,
+ "created_at": "2025-07-24T18:42:19Z",
+ "updated_at": "2025-07-28T04:34:11Z",
+ "state": "open",
+ "merged": false,
+ "merged_at": null,
+ "author_url": "https://github.com/Ashmita1206",
+ "author_avatar": "https://avatars.githubusercontent.com/u/183642202?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/183642202?v=4",
+ "profile_url": "https://github.com/Ashmita1206"
+ },
+ "sirapurapushyam": {
+ "expectedPoints": 7,
+ "currentPoints": 0,
+ "levels": {
+ "level1": 0,
+ "level2": 1,
+ "level3": 0
+ },
+ "prs": [
+ {
+ "url": "https://github.com/AshiTomar210/Euphoric-2025/pull/13",
+ "title": "Added a Responsive Navigation Bar to All Pages",
+ "repo": "AshiTomar210/Euphoric-2025",
+ "level": "level2",
+ "points": 7,
+ "created_at": "2025-07-28T09:06:59Z",
+ "updated_at": "2025-07-29T17:12:35Z",
+ "state": "open",
+ "merged": false,
+ "merged_at": null,
+ "author_url": "https://github.com/sirapurapushyam",
+ "author_avatar": "https://avatars.githubusercontent.com/u/115243308?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/115243308?v=4",
+ "profile_url": "https://github.com/sirapurapushyam"
+ }
+}
diff --git a/leaderboard5-p2.json b/leaderboard5-p2.json
new file mode 100644
index 0000000..5dd2266
--- /dev/null
+++ b/leaderboard5-p2.json
@@ -0,0 +1,8857 @@
+{
+ "shubhranshu-sahu": {
+ "expectedPoints": 71,
+ "currentPoints": 71,
+ "levels": {
+ "level1": 11,
+ "level2": 1,
+ "level3": 2
+ },
+ "prs": [
+ {
+ "url": "https://github.com/adityakalburgi/Travel_ageny_website/pull/40",
+ "title": "Added Code of Conduct",
+ "repo": "adityakalburgi/Travel_ageny_website",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-08-01T02:30:16Z",
+ "updated_at": "2025-08-01T12:03:03Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-08-01T12:02:42Z",
+ "author_url": "https://github.com/shubhranshu-sahu",
+ "author_avatar": "https://avatars.githubusercontent.com/u/180231504?v=4"
+ },
+ {
+ "url": "https://github.com/Ajay-patidar0/GitSearch/pull/9",
+ "title": "Added : Code of Conduct",
+ "repo": "Ajay-patidar0/GitSearch",
+ "level": null,
+ "points": 0,
+ "created_at": "2025-07-31T12:20:50Z",
+ "updated_at": "2025-08-02T15:12:48Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-08-02T13:39:41Z",
+ "author_url": "https://github.com/shubhranshu-sahu",
+ "author_avatar": "https://avatars.githubusercontent.com/u/180231504?v=4"
+ },
+ {
+ "url": "https://github.com/SharonIV0x86/CinderPeak/pull/15",
+ "title": "feat(repo): Added covenant code of conduct.",
+ "repo": "SharonIV0x86/CinderPeak",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-08-01T10:56:46Z",
+ "updated_at": "2025-08-02T10:05:14Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-08-02T10:05:08Z",
+ "author_url": "https://github.com/shubhranshu-sahu",
+ "author_avatar": "https://avatars.githubusercontent.com/u/180231504?v=4"
+ },
+ {
+ "url": "https://github.com/Aqsa4066/netflixclone/pull/52",
+ "title": "Added Code of conduct file",
+ "repo": "Aqsa4066/netflixclone",
+ "level": "level2",
+ "points": 7,
+ "created_at": "2025-08-03T02:38:53Z",
+ "updated_at": "2025-08-03T06:45:16Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-08-03T06:45:05Z",
+ "author_url": "https://github.com/shubhranshu-sahu",
+ "author_avatar": "https://avatars.githubusercontent.com/u/180231504?v=4"
+ },
+ {
+ "url": "https://github.com/Aqsa4066/netflixclone/pull/33",
+ "title": "Added LICENSE",
+ "repo": "Aqsa4066/netflixclone",
+ "level": null,
+ "points": 0,
+ "created_at": "2025-07-31T13:26:41Z",
+ "updated_at": "2025-07-31T14:49:27Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-31T14:49:11Z",
+ "author_url": "https://github.com/shubhranshu-sahu",
+ "author_avatar": "https://avatars.githubusercontent.com/u/180231504?v=4"
+ },
+ {
+ "url": "https://github.com/ashish-um/pocketLIFE/pull/25",
+ "title": "Added License",
+ "repo": "ashish-um/pocketLIFE",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-08-02T17:47:58Z",
+ "updated_at": "2025-08-03T05:29:47Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-08-02T19:06:40Z",
+ "author_url": "https://github.com/shubhranshu-sahu",
+ "author_avatar": "https://avatars.githubusercontent.com/u/180231504?v=4"
+ },
+ {
+ "url": "https://github.com/ashish-um/pocketLIFE/pull/16",
+ "title": "Added Code of Conduct file",
+ "repo": "ashish-um/pocketLIFE",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-08-01T02:26:39Z",
+ "updated_at": "2025-08-01T03:59:32Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-08-01T03:59:32Z",
+ "author_url": "https://github.com/shubhranshu-sahu",
+ "author_avatar": "https://avatars.githubusercontent.com/u/180231504?v=4"
+ },
+ {
+ "url": "https://github.com/gyanshankar1708/GrowCraft/pull/102",
+ "title": "Added License",
+ "repo": "gyanshankar1708/GrowCraft",
+ "level": "level3",
+ "points": 10,
+ "created_at": "2025-08-02T18:05:25Z",
+ "updated_at": "2025-08-02T18:51:47Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-08-02T18:51:47Z",
+ "author_url": "https://github.com/shubhranshu-sahu",
+ "author_avatar": "https://avatars.githubusercontent.com/u/180231504?v=4"
+ },
+ {
+ "url": "https://github.com/KrishChothani/CKsEdu/pull/19",
+ "title": "Added Code of Conduct",
+ "repo": "KrishChothani/CKsEdu",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-29T18:07:06Z",
+ "updated_at": "2025-08-01T10:34:41Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-30T00:37:19Z",
+ "author_url": "https://github.com/shubhranshu-sahu",
+ "author_avatar": "https://avatars.githubusercontent.com/u/180231504?v=4"
+ },
+ {
+ "url": "https://github.com/prasoonk1204/BreatheEasy/pull/27",
+ "title": "Added Code of Conduct file",
+ "repo": "prasoonk1204/BreatheEasy",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-08-03T03:59:57Z",
+ "updated_at": "2025-08-03T06:45:04Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-08-03T06:43:56Z",
+ "author_url": "https://github.com/shubhranshu-sahu",
+ "author_avatar": "https://avatars.githubusercontent.com/u/180231504?v=4"
+ },
+ {
+ "url": "https://github.com/Pujan-sarkar/FARMLOC/pull/33",
+ "title": "Added Code of Conduct file ",
+ "repo": "Pujan-sarkar/FARMLOC",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-08-03T03:18:54Z",
+ "updated_at": "2025-08-03T04:29:52Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-08-03T04:29:52Z",
+ "author_url": "https://github.com/shubhranshu-sahu",
+ "author_avatar": "https://avatars.githubusercontent.com/u/180231504?v=4"
+ },
+ {
+ "url": "https://github.com/AKing-283/Rewear/pull/12",
+ "title": "Added Code of Conduct",
+ "repo": "AKing-283/Rewear",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-08-01T11:08:37Z",
+ "updated_at": "2025-08-02T12:50:10Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-08-02T01:08:30Z",
+ "author_url": "https://github.com/shubhranshu-sahu",
+ "author_avatar": "https://avatars.githubusercontent.com/u/180231504?v=4"
+ },
+ {
+ "url": "https://github.com/AKing-283/Rewear/pull/6",
+ "title": "Added LICENSE",
+ "repo": "AKing-283/Rewear",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-29T17:51:50Z",
+ "updated_at": "2025-08-02T13:08:35Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-30T13:06:41Z",
+ "author_url": "https://github.com/shubhranshu-sahu",
+ "author_avatar": "https://avatars.githubusercontent.com/u/180231504?v=4"
+ },
+ {
+ "url": "https://github.com/rajdeep13-coder/Resume-Generator/pull/86",
+ "title": "Added Code of Conduct file",
+ "repo": "rajdeep13-coder/Resume-Generator",
+ "level": null,
+ "points": 0,
+ "created_at": "2025-08-03T02:45:42Z",
+ "updated_at": "2025-08-03T06:37:59Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-08-03T06:37:58Z",
+ "author_url": "https://github.com/shubhranshu-sahu",
+ "author_avatar": "https://avatars.githubusercontent.com/u/180231504?v=4"
+ },
+ {
+ "url": "https://github.com/coder-writes/devTinder-frontend-main/pull/16",
+ "title": "Added Code of Conduct file",
+ "repo": "coder-writes/devTinder-frontend-main",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-08-03T03:31:09Z",
+ "updated_at": "2025-08-03T07:00:21Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-08-03T07:00:21Z",
+ "author_url": "https://github.com/shubhranshu-sahu",
+ "author_avatar": "https://avatars.githubusercontent.com/u/180231504?v=4"
+ },
+ {
+ "url": "https://github.com/Rucha-Ambaliya/PrivGPT-Studio/pull/19",
+ "title": "Design: Added svg logo and favicon logo files",
+ "repo": "Rucha-Ambaliya/PrivGPT-Studio",
+ "level": "level3",
+ "points": 10,
+ "created_at": "2025-07-29T15:20:03Z",
+ "updated_at": "2025-08-01T10:26:38Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-29T15:31:24Z",
+ "author_url": "https://github.com/shubhranshu-sahu",
+ "author_avatar": "https://avatars.githubusercontent.com/u/180231504?v=4"
+ },
+ {
+ "url": "https://github.com/x0lg0n/Boutique-To-Box/pull/16",
+ "title": "Added Code of Conduct file",
+ "repo": "x0lg0n/Boutique-To-Box",
+ "level": null,
+ "points": 0,
+ "created_at": "2025-08-03T04:18:17Z",
+ "updated_at": "2025-08-03T07:37:48Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-08-03T07:37:48Z",
+ "author_url": "https://github.com/shubhranshu-sahu",
+ "author_avatar": "https://avatars.githubusercontent.com/u/180231504?v=4"
+ },
+ {
+ "url": "https://github.com/sachiva1/sachiva/pull/99",
+ "title": "Added Code of Conduct file",
+ "repo": "sachiva1/sachiva",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-08-03T04:10:35Z",
+ "updated_at": "2025-08-03T05:39:06Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-08-03T05:39:01Z",
+ "author_url": "https://github.com/shubhranshu-sahu",
+ "author_avatar": "https://avatars.githubusercontent.com/u/180231504?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/180231504?v=4",
+ "profile_url": "https://github.com/shubhranshu-sahu"
+ },
+ "angela479": {
+ "expectedPoints": 80,
+ "currentPoints": 70,
+ "levels": {
+ "level1": 2,
+ "level2": 6,
+ "level3": 3
+ },
+ "prs": [
+ {
+ "url": "https://github.com/rajdeep13-coder/Resume-Generator/pull/85",
+ "title": "Added Grammar Check and SpellCheck using API",
+ "repo": "rajdeep13-coder/Resume-Generator",
+ "level": "level3",
+ "points": 10,
+ "created_at": "2025-08-02T18:41:02Z",
+ "updated_at": "2025-08-03T06:42:28Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-08-03T06:42:28Z",
+ "author_url": "https://github.com/angela479",
+ "author_avatar": "https://avatars.githubusercontent.com/u/181580158?v=4"
+ },
+ {
+ "url": "https://github.com/rajdeep13-coder/Resume-Generator/pull/80",
+ "title": "Edited Footer UI",
+ "repo": "rajdeep13-coder/Resume-Generator",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-08-01T15:46:19Z",
+ "updated_at": "2025-08-01T16:00:36Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-08-01T16:00:20Z",
+ "author_url": "https://github.com/angela479",
+ "author_avatar": "https://avatars.githubusercontent.com/u/181580158?v=4"
+ },
+ {
+ "url": "https://github.com/rajdeep13-coder/Resume-Generator/pull/76",
+ "title": "Fixed Toggle icon color",
+ "repo": "rajdeep13-coder/Resume-Generator",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-08-01T14:46:43Z",
+ "updated_at": "2025-08-01T15:06:20Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-08-01T15:06:20Z",
+ "author_url": "https://github.com/angela479",
+ "author_avatar": "https://avatars.githubusercontent.com/u/181580158?v=4"
+ },
+ {
+ "url": "https://github.com/rajdeep13-coder/Resume-Generator/pull/70",
+ "title": "Edited links and other details",
+ "repo": "rajdeep13-coder/Resume-Generator",
+ "level": "level3",
+ "points": 10,
+ "created_at": "2025-07-31T17:02:32Z",
+ "updated_at": "2025-08-01T14:00:55Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-08-01T14:00:54Z",
+ "author_url": "https://github.com/angela479",
+ "author_avatar": "https://avatars.githubusercontent.com/u/181580158?v=4"
+ },
+ {
+ "url": "https://github.com/rajdeep13-coder/Resume-Generator/pull/42",
+ "title": "Fixed the links, added the ph no and email",
+ "repo": "rajdeep13-coder/Resume-Generator",
+ "level": "level3",
+ "points": 10,
+ "created_at": "2025-07-28T17:02:27Z",
+ "updated_at": "2025-07-28T17:37:17Z",
+ "state": "closed",
+ "merged": false,
+ "merged_at": null,
+ "author_url": "https://github.com/angela479",
+ "author_avatar": "https://avatars.githubusercontent.com/u/181580158?v=4"
+ },
+ {
+ "url": "https://github.com/rajdeep13-coder/Resume-Generator/pull/35",
+ "title": "Fixed the footer with a clean UI",
+ "repo": "rajdeep13-coder/Resume-Generator",
+ "level": "level2",
+ "points": 7,
+ "created_at": "2025-07-28T14:24:21Z",
+ "updated_at": "2025-07-28T14:26:30Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-28T14:26:30Z",
+ "author_url": "https://github.com/angela479",
+ "author_avatar": "https://avatars.githubusercontent.com/u/181580158?v=4"
+ },
+ {
+ "url": "https://github.com/rajdeep13-coder/Resume-Generator/pull/28",
+ "title": "Modified Toggle(sun/moon icon) along with LocalStorage",
+ "repo": "rajdeep13-coder/Resume-Generator",
+ "level": "level2",
+ "points": 7,
+ "created_at": "2025-07-28T11:08:05Z",
+ "updated_at": "2025-07-28T12:46:31Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-28T12:46:31Z",
+ "author_url": "https://github.com/angela479",
+ "author_avatar": "https://avatars.githubusercontent.com/u/181580158?v=4"
+ },
+ {
+ "url": "https://github.com/rajdeep13-coder/Resume-Generator/pull/19",
+ "title": "Added .docx download format",
+ "repo": "rajdeep13-coder/Resume-Generator",
+ "level": "level2",
+ "points": 7,
+ "created_at": "2025-07-27T18:24:50Z",
+ "updated_at": "2025-07-28T04:27:17Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-27T18:31:49Z",
+ "author_url": "https://github.com/angela479",
+ "author_avatar": "https://avatars.githubusercontent.com/u/181580158?v=4"
+ },
+ {
+ "url": "https://github.com/SurajSG23/Job-Portal/pull/96",
+ "title": "Fixed the Job description box",
+ "repo": "SurajSG23/Job-Portal",
+ "level": "level2",
+ "points": 7,
+ "created_at": "2025-08-02T05:49:26Z",
+ "updated_at": "2025-08-02T10:35:31Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-08-02T10:35:24Z",
+ "author_url": "https://github.com/angela479",
+ "author_avatar": "https://avatars.githubusercontent.com/u/181580158?v=4"
+ },
+ {
+ "url": "https://github.com/SurajSG23/Job-Portal/pull/92",
+ "title": "Edited header with a better UI",
+ "repo": "SurajSG23/Job-Portal",
+ "level": "level2",
+ "points": 7,
+ "created_at": "2025-08-01T18:39:06Z",
+ "updated_at": "2025-08-02T04:35:05Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-08-02T04:34:53Z",
+ "author_url": "https://github.com/angela479",
+ "author_avatar": "https://avatars.githubusercontent.com/u/181580158?v=4"
+ },
+ {
+ "url": "https://github.com/vaibhavrajharsh/Music-Player/pull/4",
+ "title": "Fixed Song Loading Bug + all the other issues",
+ "repo": "vaibhavrajharsh/Music-Player",
+ "level": "level2",
+ "points": 7,
+ "created_at": "2025-07-28T07:32:58Z",
+ "updated_at": "2025-07-31T12:48:03Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-28T14:01:16Z",
+ "author_url": "https://github.com/angela479",
+ "author_avatar": "https://avatars.githubusercontent.com/u/181580158?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/181580158?v=4",
+ "profile_url": "https://github.com/angela479"
+ },
+ "tanush-space": {
+ "expectedPoints": 61,
+ "currentPoints": 61,
+ "levels": {
+ "level1": 4,
+ "level2": 5,
+ "level3": 1
+ },
+ "prs": [
+ {
+ "url": "https://github.com/BDutta18/BodyCraft-Gym/pull/48",
+ "title": "Docs: Added a detailed CONTRIBUTING.md File",
+ "repo": "BDutta18/BodyCraft-Gym",
+ "level": null,
+ "points": 0,
+ "created_at": "2025-07-30T05:12:18Z",
+ "updated_at": "2025-07-30T07:27:58Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-30T07:27:58Z",
+ "author_url": "https://github.com/tanush-space",
+ "author_avatar": "https://avatars.githubusercontent.com/u/209512235?v=4"
+ },
+ {
+ "url": "https://github.com/gyanshankar1708/GrowCraft/pull/15",
+ "title": "Add detailed CONTRIBUTING.md with full guidelines",
+ "repo": "gyanshankar1708/GrowCraft",
+ "level": "level3",
+ "points": 10,
+ "created_at": "2025-07-29T11:18:17Z",
+ "updated_at": "2025-07-30T18:17:12Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-29T11:28:30Z",
+ "author_url": "https://github.com/tanush-space",
+ "author_avatar": "https://avatars.githubusercontent.com/u/209512235?v=4"
+ },
+ {
+ "url": "https://github.com/gyanshankar1708/GrowCraft/pull/13",
+ "title": "Improve Readability of About Us section subpoints by Justifying Text",
+ "repo": "gyanshankar1708/GrowCraft",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-29T10:56:41Z",
+ "updated_at": "2025-07-30T18:16:57Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-29T11:05:17Z",
+ "author_url": "https://github.com/tanush-space",
+ "author_avatar": "https://avatars.githubusercontent.com/u/209512235?v=4"
+ },
+ {
+ "url": "https://github.com/Himanshusk1/GDF/pull/8",
+ "title": "Enhance Card UI: Add Hover Animation to .patron Cards",
+ "repo": "Himanshusk1/GDF",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-28T17:49:29Z",
+ "updated_at": "2025-08-03T04:14:49Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-29T03:16:09Z",
+ "author_url": "https://github.com/tanush-space",
+ "author_avatar": "https://avatars.githubusercontent.com/u/209512235?v=4"
+ },
+ {
+ "url": "https://github.com/Samrudhipawar/whack-a-mole-game/pull/10",
+ "title": "Suggestion: Replace Solid Green Background with Realistic Grass Image #4",
+ "repo": "Samrudhipawar/whack-a-mole-game",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-30T17:40:33Z",
+ "updated_at": "2025-07-30T18:29:34Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-30T18:14:23Z",
+ "author_url": "https://github.com/tanush-space",
+ "author_avatar": "https://avatars.githubusercontent.com/u/209512235?v=4"
+ },
+ {
+ "url": "https://github.com/Samrudhipawar/whack-a-mole-game/pull/3",
+ "title": "Docs: Added a detailed CONTRIBUTING.md file",
+ "repo": "Samrudhipawar/whack-a-mole-game",
+ "level": "level2",
+ "points": 7,
+ "created_at": "2025-07-30T05:31:22Z",
+ "updated_at": "2025-07-30T18:33:14Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-30T18:30:19Z",
+ "author_url": "https://github.com/tanush-space",
+ "author_avatar": "https://avatars.githubusercontent.com/u/209512235?v=4"
+ },
+ {
+ "url": "https://github.com/shuvadeepmondal/HacKerZGuiDe/pull/65",
+ "title": "CONTRIBUTING.md with detailed contribution guidelines",
+ "repo": "shuvadeepmondal/HacKerZGuiDe",
+ "level": "level2",
+ "points": 7,
+ "created_at": "2025-07-29T12:04:45Z",
+ "updated_at": "2025-07-30T03:46:40Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-30T03:46:40Z",
+ "author_url": "https://github.com/tanush-space",
+ "author_avatar": "https://avatars.githubusercontent.com/u/209512235?v=4"
+ },
+ {
+ "url": "https://github.com/sachiva1/sachiva/pull/18",
+ "title": "Improve Readability of About Subpage by Justifying Text #16",
+ "repo": "sachiva1/sachiva",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-29T17:55:19Z",
+ "updated_at": "2025-07-30T00:58:46Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-30T00:58:46Z",
+ "author_url": "https://github.com/tanush-space",
+ "author_avatar": "https://avatars.githubusercontent.com/u/209512235?v=4"
+ },
+ {
+ "url": "https://github.com/sachiva1/sachiva/pull/17",
+ "title": "Updated the README.md File",
+ "repo": "sachiva1/sachiva",
+ "level": "level2",
+ "points": 7,
+ "created_at": "2025-07-29T17:33:48Z",
+ "updated_at": "2025-07-30T00:53:51Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-30T00:53:30Z",
+ "author_url": "https://github.com/tanush-space",
+ "author_avatar": "https://avatars.githubusercontent.com/u/209512235?v=4"
+ },
+ {
+ "url": "https://github.com/SurajSG23/Job-Portal/pull/34",
+ "title": "Enhance .para card interaction on About page with hover animation for…",
+ "repo": "SurajSG23/Job-Portal",
+ "level": "level2",
+ "points": 7,
+ "created_at": "2025-07-29T15:29:40Z",
+ "updated_at": "2025-07-30T03:05:47Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-30T03:05:19Z",
+ "author_url": "https://github.com/tanush-space",
+ "author_avatar": "https://avatars.githubusercontent.com/u/209512235?v=4"
+ },
+ {
+ "url": "https://github.com/SurajSG23/Job-Portal/pull/27",
+ "title": "Add: CONTRIBUTING.md with detailed contribution guidelines",
+ "repo": "SurajSG23/Job-Portal",
+ "level": "level2",
+ "points": 7,
+ "created_at": "2025-07-29T12:44:43Z",
+ "updated_at": "2025-07-29T13:13:00Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-29T13:12:24Z",
+ "author_url": "https://github.com/tanush-space",
+ "author_avatar": "https://avatars.githubusercontent.com/u/209512235?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/209512235?v=4",
+ "profile_url": "https://github.com/tanush-space"
+ },
+ "Diyap235": {
+ "expectedPoints": 60,
+ "currentPoints": 60,
+ "levels": {
+ "level1": 3,
+ "level2": 4,
+ "level3": 2
+ },
+ "prs": [
+ {
+ "url": "https://github.com/SurajSG23/Job-Portal/pull/118",
+ "title": "Added Back To Top Button ",
+ "repo": "SurajSG23/Job-Portal",
+ "level": "level2",
+ "points": 7,
+ "created_at": "2025-08-02T16:05:46Z",
+ "updated_at": "2025-08-02T16:37:42Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-08-02T16:27:22Z",
+ "author_url": "https://github.com/Diyap235",
+ "author_avatar": "https://avatars.githubusercontent.com/u/186195419?v=4"
+ },
+ {
+ "url": "https://github.com/SurajSG23/Job-Portal/pull/105",
+ "title": "Implemented a job application form",
+ "repo": "SurajSG23/Job-Portal",
+ "level": "level2",
+ "points": 7,
+ "created_at": "2025-08-02T09:10:05Z",
+ "updated_at": "2025-08-02T16:38:04Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-08-02T16:25:13Z",
+ "author_url": "https://github.com/Diyap235",
+ "author_avatar": "https://avatars.githubusercontent.com/u/186195419?v=4"
+ },
+ {
+ "url": "https://github.com/SurajSG23/Job-Portal/pull/99",
+ "title": "Added smooth hover effects to all buttons and anchor links using CSS. ",
+ "repo": "SurajSG23/Job-Portal",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-08-02T07:09:45Z",
+ "updated_at": "2025-08-02T21:13:30Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-08-02T16:17:47Z",
+ "author_url": "https://github.com/Diyap235",
+ "author_avatar": "https://avatars.githubusercontent.com/u/186195419?v=4"
+ },
+ {
+ "url": "https://github.com/SurajSG23/Job-Portal/pull/98",
+ "title": "Add Container for Dynamic Job Listings to Enable Infinite Scro",
+ "repo": "SurajSG23/Job-Portal",
+ "level": "level2",
+ "points": 7,
+ "created_at": "2025-08-02T06:47:43Z",
+ "updated_at": "2025-08-02T10:50:43Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-08-02T10:35:58Z",
+ "author_url": "https://github.com/Diyap235",
+ "author_avatar": "https://avatars.githubusercontent.com/u/186195419?v=4"
+ },
+ {
+ "url": "https://github.com/SurajSG23/Job-Portal/pull/87",
+ "title": "Add Smooth Scroll to Anchor Links .",
+ "repo": "SurajSG23/Job-Portal",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-08-01T17:40:23Z",
+ "updated_at": "2025-08-02T04:34:38Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-08-02T04:34:14Z",
+ "author_url": "https://github.com/Diyap235",
+ "author_avatar": "https://avatars.githubusercontent.com/u/186195419?v=4"
+ },
+ {
+ "url": "https://github.com/SurajSG23/Job-Portal/pull/86",
+ "title": "Spacing not consistent across sections ",
+ "repo": "SurajSG23/Job-Portal",
+ "level": "level2",
+ "points": 7,
+ "created_at": "2025-08-01T17:22:04Z",
+ "updated_at": "2025-08-02T16:39:11Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-08-01T17:30:42Z",
+ "author_url": "https://github.com/Diyap235",
+ "author_avatar": "https://avatars.githubusercontent.com/u/186195419?v=4"
+ },
+ {
+ "url": "https://github.com/SurajSG23/Job-Portal/pull/85",
+ "title": "Not using proper semantic tags in HTML .",
+ "repo": "SurajSG23/Job-Portal",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-08-01T17:13:53Z",
+ "updated_at": "2025-08-02T10:53:03Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-08-01T17:28:55Z",
+ "author_url": "https://github.com/Diyap235",
+ "author_avatar": "https://avatars.githubusercontent.com/u/186195419?v=4"
+ },
+ {
+ "url": "https://github.com/SurajSG23/Job-Portal/pull/68",
+ "title": "Add a Dark Mode Toggle #fixed ",
+ "repo": "SurajSG23/Job-Portal",
+ "level": "level3",
+ "points": 10,
+ "created_at": "2025-07-31T15:08:21Z",
+ "updated_at": "2025-08-02T10:57:07Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-31T16:53:24Z",
+ "author_url": "https://github.com/Diyap235",
+ "author_avatar": "https://avatars.githubusercontent.com/u/186195419?v=4"
+ },
+ {
+ "url": "https://github.com/SurajSG23/Job-Portal/pull/67",
+ "title": "Fixed Issue16: Improve Mobile Responsiveness for Navbar and Layout",
+ "repo": "SurajSG23/Job-Portal",
+ "level": "level3",
+ "points": 10,
+ "created_at": "2025-07-31T14:52:20Z",
+ "updated_at": "2025-08-02T10:59:40Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-31T16:51:41Z",
+ "author_url": "https://github.com/Diyap235",
+ "author_avatar": "https://avatars.githubusercontent.com/u/186195419?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/186195419?v=4",
+ "profile_url": "https://github.com/Diyap235"
+ },
+ "heenasaini": {
+ "expectedPoints": 58,
+ "currentPoints": 58,
+ "levels": {
+ "level1": 5,
+ "level2": 4,
+ "level3": 1
+ },
+ "prs": [
+ {
+ "url": "https://github.com/Samrudhipawar/whack-a-mole-game/pull/17",
+ "title": "Add light and mark mode",
+ "repo": "Samrudhipawar/whack-a-mole-game",
+ "level": "level3",
+ "points": 10,
+ "created_at": "2025-08-01T09:29:00Z",
+ "updated_at": "2025-08-02T12:51:36Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-08-02T12:50:24Z",
+ "author_url": "https://github.com/heenasaini",
+ "author_avatar": "https://avatars.githubusercontent.com/u/179587083?v=4"
+ },
+ {
+ "url": "https://github.com/Samrudhipawar/whack-a-mole-game/pull/13",
+ "title": "Improve UI",
+ "repo": "Samrudhipawar/whack-a-mole-game",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-31T14:09:10Z",
+ "updated_at": "2025-07-31T19:17:56Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-31T19:02:36Z",
+ "author_url": "https://github.com/heenasaini",
+ "author_avatar": "https://avatars.githubusercontent.com/u/179587083?v=4"
+ },
+ {
+ "url": "https://github.com/Samrudhipawar/whack-a-mole-game/pull/12",
+ "title": "Improve footer",
+ "repo": "Samrudhipawar/whack-a-mole-game",
+ "level": "level2",
+ "points": 7,
+ "created_at": "2025-07-31T10:56:09Z",
+ "updated_at": "2025-07-31T19:03:38Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-31T19:02:34Z",
+ "author_url": "https://github.com/heenasaini",
+ "author_avatar": "https://avatars.githubusercontent.com/u/179587083?v=4"
+ },
+ {
+ "url": "https://github.com/Samrudhipawar/whack-a-mole-game/pull/11",
+ "title": "Add favicon-whack-a-mole-game",
+ "repo": "Samrudhipawar/whack-a-mole-game",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-31T09:44:48Z",
+ "updated_at": "2025-07-31T19:18:36Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-31T19:02:36Z",
+ "author_url": "https://github.com/heenasaini",
+ "author_avatar": "https://avatars.githubusercontent.com/u/179587083?v=4"
+ },
+ {
+ "url": "https://github.com/shuvadeepmondal/HacKerZGuiDe/pull/68",
+ "title": "Missing of favicon logo in browser tab.",
+ "repo": "shuvadeepmondal/HacKerZGuiDe",
+ "level": "level2",
+ "points": 7,
+ "created_at": "2025-07-30T10:27:20Z",
+ "updated_at": "2025-08-01T16:23:08Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-08-01T16:23:08Z",
+ "author_url": "https://github.com/heenasaini",
+ "author_avatar": "https://avatars.githubusercontent.com/u/179587083?v=4"
+ },
+ {
+ "url": "https://github.com/sachiva1/sachiva/pull/27",
+ "title": "Add favicon logo to the website",
+ "repo": "sachiva1/sachiva",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-30T07:44:45Z",
+ "updated_at": "2025-07-30T10:14:53Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-30T10:14:30Z",
+ "author_url": "https://github.com/heenasaini",
+ "author_avatar": "https://avatars.githubusercontent.com/u/179587083?v=4"
+ },
+ {
+ "url": "https://github.com/SurajSG23/Job-Portal/pull/12",
+ "title": "display dropdown downwards",
+ "repo": "SurajSG23/Job-Portal",
+ "level": "level2",
+ "points": 7,
+ "created_at": "2025-07-28T13:21:05Z",
+ "updated_at": "2025-07-28T15:36:59Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-28T15:36:39Z",
+ "author_url": "https://github.com/heenasaini",
+ "author_avatar": "https://avatars.githubusercontent.com/u/179587083?v=4"
+ },
+ {
+ "url": "https://github.com/vaibhavrajharsh/Music-Player/pull/30",
+ "title": "enhancement in the UI",
+ "repo": "vaibhavrajharsh/Music-Player",
+ "level": "level2",
+ "points": 7,
+ "created_at": "2025-07-29T19:39:17Z",
+ "updated_at": "2025-07-31T12:53:29Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-31T11:38:15Z",
+ "author_url": "https://github.com/heenasaini",
+ "author_avatar": "https://avatars.githubusercontent.com/u/179587083?v=4"
+ },
+ {
+ "url": "https://github.com/vaibhavrajharsh/Music-Player/pull/27",
+ "title": "Change the font style of the Spotify Clone",
+ "repo": "vaibhavrajharsh/Music-Player",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-29T15:52:04Z",
+ "updated_at": "2025-07-31T12:52:58Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-29T17:51:04Z",
+ "author_url": "https://github.com/heenasaini",
+ "author_avatar": "https://avatars.githubusercontent.com/u/179587083?v=4"
+ },
+ {
+ "url": "https://github.com/vaibhavrajharsh/Music-Player/pull/22",
+ "title": "Spotify logo ",
+ "repo": "vaibhavrajharsh/Music-Player",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-29T13:19:35Z",
+ "updated_at": "2025-07-31T12:50:31Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-29T13:49:26Z",
+ "author_url": "https://github.com/heenasaini",
+ "author_avatar": "https://avatars.githubusercontent.com/u/179587083?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/179587083?v=4",
+ "profile_url": "https://github.com/heenasaini"
+ },
+ "Tanyasharma71": {
+ "expectedPoints": 51,
+ "currentPoints": 51,
+ "levels": {
+ "level1": 11,
+ "level2": 1,
+ "level3": 0
+ },
+ "prs": [
+ {
+ "url": "https://github.com/Swastik007sharma/CampusTrack/pull/19",
+ "title": "add MIT License file to the project",
+ "repo": "Swastik007sharma/CampusTrack",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-31T04:11:38Z",
+ "updated_at": "2025-08-01T19:05:05Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-31T07:00:21Z",
+ "author_url": "https://github.com/Tanyasharma71",
+ "author_avatar": "https://avatars.githubusercontent.com/u/208266043?v=4"
+ },
+ {
+ "url": "https://github.com/Ajay-patidar0/GitSearch/pull/7",
+ "title": "add MIT License file to the project",
+ "repo": "Ajay-patidar0/GitSearch",
+ "level": null,
+ "points": 0,
+ "created_at": "2025-07-30T11:29:40Z",
+ "updated_at": "2025-07-31T11:53:39Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-31T11:48:28Z",
+ "author_url": "https://github.com/Tanyasharma71",
+ "author_avatar": "https://avatars.githubusercontent.com/u/208266043?v=4"
+ },
+ {
+ "url": "https://github.com/Loop-Hive/ScheduleX/pull/97",
+ "title": "Add mit license file to the project",
+ "repo": "Loop-Hive/ScheduleX",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-31T04:17:28Z",
+ "updated_at": "2025-07-31T05:24:22Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-31T05:23:51Z",
+ "author_url": "https://github.com/Tanyasharma71",
+ "author_avatar": "https://avatars.githubusercontent.com/u/208266043?v=4"
+ },
+ {
+ "url": "https://github.com/anothercoder-nik/URLshortner/pull/4",
+ "title": "Add mit license file to the project",
+ "repo": "anothercoder-nik/URLshortner",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-29T12:50:50Z",
+ "updated_at": "2025-07-29T18:11:01Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-29T13:53:34Z",
+ "author_url": "https://github.com/Tanyasharma71",
+ "author_avatar": "https://avatars.githubusercontent.com/u/208266043?v=4"
+ },
+ {
+ "url": "https://github.com/prasoonk1204/BreatheEasy/pull/6",
+ "title": "add MIT License file to the project",
+ "repo": "prasoonk1204/BreatheEasy",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-30T16:30:02Z",
+ "updated_at": "2025-07-30T16:33:52Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-30T16:33:52Z",
+ "author_url": "https://github.com/Tanyasharma71",
+ "author_avatar": "https://avatars.githubusercontent.com/u/208266043?v=4"
+ },
+ {
+ "url": "https://github.com/Pujan-sarkar/FARMLOC/pull/22",
+ "title": "Add mit license file to the project",
+ "repo": "Pujan-sarkar/FARMLOC",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-31T17:41:31Z",
+ "updated_at": "2025-08-02T16:40:52Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-31T21:03:52Z",
+ "author_url": "https://github.com/Tanyasharma71",
+ "author_avatar": "https://avatars.githubusercontent.com/u/208266043?v=4"
+ },
+ {
+ "url": "https://github.com/rajdeep13-coder/Resume-Generator/pull/59",
+ "title": "Add mit license file to the",
+ "repo": "rajdeep13-coder/Resume-Generator",
+ "level": null,
+ "points": 0,
+ "created_at": "2025-07-31T04:09:13Z",
+ "updated_at": "2025-07-31T13:34:55Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-31T13:34:55Z",
+ "author_url": "https://github.com/Tanyasharma71",
+ "author_avatar": "https://avatars.githubusercontent.com/u/208266043?v=4"
+ },
+ {
+ "url": "https://github.com/shandilya-rajnandini/DocAtHome/pull/22",
+ "title": "add MIT License file to the project",
+ "repo": "shandilya-rajnandini/DocAtHome",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-29T12:33:28Z",
+ "updated_at": "2025-07-29T14:49:49Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-29T14:15:47Z",
+ "author_url": "https://github.com/Tanyasharma71",
+ "author_avatar": "https://avatars.githubusercontent.com/u/208266043?v=4"
+ },
+ {
+ "url": "https://github.com/RAJVEER42/git-quiz-challenge/pull/5",
+ "title": "Add MIT License file to the project",
+ "repo": "RAJVEER42/git-quiz-challenge",
+ "level": null,
+ "points": 0,
+ "created_at": "2025-07-28T07:44:16Z",
+ "updated_at": "2025-07-28T09:47:24Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-28T09:47:10Z",
+ "author_url": "https://github.com/Tanyasharma71",
+ "author_avatar": "https://avatars.githubusercontent.com/u/208266043?v=4"
+ },
+ {
+ "url": "https://github.com/coder-writes/devTinder-frontend-main/pull/4",
+ "title": "add MIT License file to the project",
+ "repo": "coder-writes/devTinder-frontend-main",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-31T15:04:46Z",
+ "updated_at": "2025-07-31T18:56:05Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-31T18:56:04Z",
+ "author_url": "https://github.com/Tanyasharma71",
+ "author_avatar": "https://avatars.githubusercontent.com/u/208266043?v=4"
+ },
+ {
+ "url": "https://github.com/coder-writes/devTinder-frontend-main/pull/2",
+ "title": "Update and clean up README by removing unnecessary content",
+ "repo": "coder-writes/devTinder-frontend-main",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-31T14:54:56Z",
+ "updated_at": "2025-07-31T18:54:30Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-31T18:54:05Z",
+ "author_url": "https://github.com/Tanyasharma71",
+ "author_avatar": "https://avatars.githubusercontent.com/u/208266043?v=4"
+ },
+ {
+ "url": "https://github.com/msanchariii/evolver/pull/9",
+ "title": "add MIT License file to the project",
+ "repo": "msanchariii/evolver",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-29T15:46:45Z",
+ "updated_at": "2025-07-29T16:58:11Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-29T16:58:11Z",
+ "author_url": "https://github.com/Tanyasharma71",
+ "author_avatar": "https://avatars.githubusercontent.com/u/208266043?v=4"
+ },
+ {
+ "url": "https://github.com/SvJalmi/DBMS_Project/pull/18",
+ "title": "add MIT License file to the project",
+ "repo": "SvJalmi/DBMS_Project",
+ "level": "level2",
+ "points": 7,
+ "created_at": "2025-08-02T08:12:54Z",
+ "updated_at": "2025-08-02T08:35:12Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-08-02T08:35:12Z",
+ "author_url": "https://github.com/Tanyasharma71",
+ "author_avatar": "https://avatars.githubusercontent.com/u/208266043?v=4"
+ },
+ {
+ "url": "https://github.com/code-well0/trip-planner/pull/27",
+ "title": "add MIT License file to the project",
+ "repo": "code-well0/trip-planner",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-31T15:26:21Z",
+ "updated_at": "2025-08-01T18:09:38Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-31T17:29:36Z",
+ "author_url": "https://github.com/Tanyasharma71",
+ "author_avatar": "https://avatars.githubusercontent.com/u/208266043?v=4"
+ },
+ {
+ "url": "https://github.com/supriya46788/Driving-Safer-Roads---AI-for-Motor-Insurance-Risk-Assessment/pull/3",
+ "title": "Add mit license file to the project",
+ "repo": "supriya46788/Driving-Safer-Roads---AI-for-Motor-Insurance-Risk-Assessment",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-31T07:24:01Z",
+ "updated_at": "2025-07-31T08:21:25Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-31T08:21:02Z",
+ "author_url": "https://github.com/Tanyasharma71",
+ "author_avatar": "https://avatars.githubusercontent.com/u/208266043?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/208266043?v=4",
+ "profile_url": "https://github.com/Tanyasharma71"
+ },
+ "deepanshu-prajapati01": {
+ "expectedPoints": 51,
+ "currentPoints": 51,
+ "levels": {
+ "level1": 0,
+ "level2": 3,
+ "level3": 3
+ },
+ "prs": [
+ {
+ "url": "https://github.com/Jyotibrat/AI-Flow/pull/3",
+ "title": "Redesigned Footer and Centered Sidebar Navigation",
+ "repo": "Jyotibrat/AI-Flow",
+ "level": "level2",
+ "points": 7,
+ "created_at": "2025-07-30T06:40:08Z",
+ "updated_at": "2025-07-31T05:36:30Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-30T16:58:36Z",
+ "author_url": "https://github.com/deepanshu-prajapati01",
+ "author_avatar": "https://avatars.githubusercontent.com/u/98377377?v=4"
+ },
+ {
+ "url": "https://github.com/KrishChothani/CKsEdu/pull/31",
+ "title": "Added Custom 404 Page for Undefined Routes",
+ "repo": "KrishChothani/CKsEdu",
+ "level": "level2",
+ "points": 7,
+ "created_at": "2025-07-31T11:02:45Z",
+ "updated_at": "2025-08-01T10:34:22Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-31T11:08:07Z",
+ "author_url": "https://github.com/deepanshu-prajapati01",
+ "author_avatar": "https://avatars.githubusercontent.com/u/98377377?v=4"
+ },
+ {
+ "url": "https://github.com/KrishChothani/CKsEdu/pull/23",
+ "title": "Improved Signup/Login UX with Loader and React-Hot-Toast",
+ "repo": "KrishChothani/CKsEdu",
+ "level": "level3",
+ "points": 10,
+ "created_at": "2025-07-30T05:41:54Z",
+ "updated_at": "2025-08-01T10:35:32Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-31T10:37:37Z",
+ "author_url": "https://github.com/deepanshu-prajapati01",
+ "author_avatar": "https://avatars.githubusercontent.com/u/98377377?v=4"
+ },
+ {
+ "url": "https://github.com/prasoonk1204/BreatheEasy/pull/17",
+ "title": "Replaced Static Loading Text with Skeleton UI + Dark Mode Color Update – Closes #3",
+ "repo": "prasoonk1204/BreatheEasy",
+ "level": "level3",
+ "points": 10,
+ "created_at": "2025-08-01T05:05:09Z",
+ "updated_at": "2025-08-01T12:29:09Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-08-01T12:11:50Z",
+ "author_url": "https://github.com/deepanshu-prajapati01",
+ "author_avatar": "https://avatars.githubusercontent.com/u/98377377?v=4"
+ },
+ {
+ "url": "https://github.com/prasoonk1204/BreatheEasy/pull/2",
+ "title": " Added Dark/Light Theme Toggle to Navbar – Closes #1",
+ "repo": "prasoonk1204/BreatheEasy",
+ "level": "level2",
+ "points": 7,
+ "created_at": "2025-07-30T04:30:06Z",
+ "updated_at": "2025-07-31T05:58:07Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-30T12:46:25Z",
+ "author_url": "https://github.com/deepanshu-prajapati01",
+ "author_avatar": "https://avatars.githubusercontent.com/u/98377377?v=4"
+ },
+ {
+ "url": "https://github.com/Premkolte/AnimateHub/pull/252",
+ "title": "Fixed Dark/Light Theme Toggle + Improved Text Contrast Across UI – Closes #242",
+ "repo": "Premkolte/AnimateHub",
+ "level": "level3",
+ "points": 10,
+ "created_at": "2025-08-02T06:07:45Z",
+ "updated_at": "2025-08-02T08:03:14Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-08-02T07:09:59Z",
+ "author_url": "https://github.com/deepanshu-prajapati01",
+ "author_avatar": "https://avatars.githubusercontent.com/u/98377377?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/98377377?v=4",
+ "profile_url": "https://github.com/deepanshu-prajapati01"
+ },
+ "RutviShah2": {
+ "expectedPoints": 42,
+ "currentPoints": 42,
+ "levels": {
+ "level1": 1,
+ "level2": 4,
+ "level3": 1
+ },
+ "prs": [
+ {
+ "url": "https://github.com/SurajSG23/Job-Portal/pull/106",
+ "title": "Updated Background in the homepage",
+ "repo": "SurajSG23/Job-Portal",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-08-02T10:09:31Z",
+ "updated_at": "2025-08-02T10:38:53Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-08-02T10:38:43Z",
+ "author_url": "https://github.com/RutviShah2",
+ "author_avatar": "https://avatars.githubusercontent.com/u/176883257?v=4"
+ },
+ {
+ "url": "https://github.com/SurajSG23/Job-Portal/pull/95",
+ "title": "Enhanced the homepage UI for a modern and consistent look.",
+ "repo": "SurajSG23/Job-Portal",
+ "level": "level2",
+ "points": 7,
+ "created_at": "2025-08-02T04:59:38Z",
+ "updated_at": "2025-08-02T05:22:43Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-08-02T05:22:26Z",
+ "author_url": "https://github.com/RutviShah2",
+ "author_avatar": "https://avatars.githubusercontent.com/u/176883257?v=4"
+ },
+ {
+ "url": "https://github.com/SurajSG23/Job-Portal/pull/83",
+ "title": "Theme Toggle button added",
+ "repo": "SurajSG23/Job-Portal",
+ "level": "level3",
+ "points": 10,
+ "created_at": "2025-08-01T15:24:56Z",
+ "updated_at": "2025-08-02T04:34:03Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-08-02T04:34:03Z",
+ "author_url": "https://github.com/RutviShah2",
+ "author_avatar": "https://avatars.githubusercontent.com/u/176883257?v=4"
+ },
+ {
+ "url": "https://github.com/SurajSG23/Job-Portal/pull/55",
+ "title": "Enhanced provide job desciption page",
+ "repo": "SurajSG23/Job-Portal",
+ "level": "level2",
+ "points": 7,
+ "created_at": "2025-07-30T17:22:36Z",
+ "updated_at": "2025-07-31T02:31:11Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-31T02:30:53Z",
+ "author_url": "https://github.com/RutviShah2",
+ "author_avatar": "https://avatars.githubusercontent.com/u/176883257?v=4"
+ },
+ {
+ "url": "https://github.com/SurajSG23/Job-Portal/pull/33",
+ "title": "Broken homepage fixed and footer section enhanced",
+ "repo": "SurajSG23/Job-Portal",
+ "level": "level2",
+ "points": 7,
+ "created_at": "2025-07-29T15:26:54Z",
+ "updated_at": "2025-07-30T03:05:01Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-30T03:04:05Z",
+ "author_url": "https://github.com/RutviShah2",
+ "author_avatar": "https://avatars.githubusercontent.com/u/176883257?v=4"
+ },
+ {
+ "url": "https://github.com/SurajSG23/Job-Portal/pull/23",
+ "title": "UI changed and made mobile friendly",
+ "repo": "SurajSG23/Job-Portal",
+ "level": "level2",
+ "points": 7,
+ "created_at": "2025-07-29T05:32:10Z",
+ "updated_at": "2025-07-29T07:04:52Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-29T07:04:51Z",
+ "author_url": "https://github.com/RutviShah2",
+ "author_avatar": "https://avatars.githubusercontent.com/u/176883257?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/176883257?v=4",
+ "profile_url": "https://github.com/RutviShah2"
+ },
+ "Kanishk-tiwari-045": {
+ "expectedPoints": 41,
+ "currentPoints": 41,
+ "levels": {
+ "level1": 1,
+ "level2": 1,
+ "level3": 3
+ },
+ "prs": [
+ {
+ "url": "https://github.com/shandilya-rajnandini/DocAtHome/pull/68",
+ "title": "Health quest for Patient engagement",
+ "repo": "shandilya-rajnandini/DocAtHome",
+ "level": "level3",
+ "points": 10,
+ "created_at": "2025-07-31T17:44:28Z",
+ "updated_at": "2025-07-31T19:42:07Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-31T19:41:19Z",
+ "author_url": "https://github.com/Kanishk-tiwari-045",
+ "author_avatar": "https://avatars.githubusercontent.com/u/114578949?v=4"
+ },
+ {
+ "url": "https://github.com/shandilya-rajnandini/DocAtHome/pull/57",
+ "title": "Ai-summary of patient for doctor's reference",
+ "repo": "shandilya-rajnandini/DocAtHome",
+ "level": "level3",
+ "points": 10,
+ "created_at": "2025-07-31T05:42:04Z",
+ "updated_at": "2025-07-31T11:39:43Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-31T11:39:42Z",
+ "author_url": "https://github.com/Kanishk-tiwari-045",
+ "author_avatar": "https://avatars.githubusercontent.com/u/114578949?v=4"
+ },
+ {
+ "url": "https://github.com/shandilya-rajnandini/DocAtHome/pull/30",
+ "title": "Implement Secure Password Reset and Enhance Auth UI",
+ "repo": "shandilya-rajnandini/DocAtHome",
+ "level": "level3",
+ "points": 10,
+ "created_at": "2025-07-30T05:38:07Z",
+ "updated_at": "2025-07-30T09:01:43Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-30T09:01:43Z",
+ "author_url": "https://github.com/Kanishk-tiwari-045",
+ "author_avatar": "https://avatars.githubusercontent.com/u/114578949?v=4"
+ },
+ {
+ "url": "https://github.com/shandilya-rajnandini/DocAtHome/pull/20",
+ "title": "UI for my appointments page in patient dashboard",
+ "repo": "shandilya-rajnandini/DocAtHome",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-29T12:01:44Z",
+ "updated_at": "2025-07-29T14:52:04Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-29T14:26:20Z",
+ "author_url": "https://github.com/Kanishk-tiwari-045",
+ "author_avatar": "https://avatars.githubusercontent.com/u/114578949?v=4"
+ },
+ {
+ "url": "https://github.com/shandilya-rajnandini/DocAtHome/pull/19",
+ "title": "My appointment API endpoints for patient",
+ "repo": "shandilya-rajnandini/DocAtHome",
+ "level": "level2",
+ "points": 7,
+ "created_at": "2025-07-29T11:46:11Z",
+ "updated_at": "2025-07-29T14:51:40Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-29T14:25:40Z",
+ "author_url": "https://github.com/Kanishk-tiwari-045",
+ "author_avatar": "https://avatars.githubusercontent.com/u/114578949?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/114578949?v=4",
+ "profile_url": "https://github.com/Kanishk-tiwari-045"
+ },
+ "AdityaJollyy": {
+ "expectedPoints": 40,
+ "currentPoints": 40,
+ "levels": {
+ "level1": 0,
+ "level2": 0,
+ "level3": 4
+ },
+ "prs": [
+ {
+ "url": "https://github.com/KrishChothani/CKsEdu/pull/41",
+ "title": "Added LeaderBoard Page",
+ "repo": "KrishChothani/CKsEdu",
+ "level": "level3",
+ "points": 10,
+ "created_at": "2025-08-01T17:09:05Z",
+ "updated_at": "2025-08-01T17:20:26Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-08-01T17:20:26Z",
+ "author_url": "https://github.com/AdityaJollyy",
+ "author_avatar": "https://avatars.githubusercontent.com/u/140686935?v=4"
+ },
+ {
+ "url": "https://github.com/KrishChothani/CKsEdu/pull/39",
+ "title": "Added Quiz Page complete frontend",
+ "repo": "KrishChothani/CKsEdu",
+ "level": "level3",
+ "points": 10,
+ "created_at": "2025-08-01T14:37:39Z",
+ "updated_at": "2025-08-02T09:23:59Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-08-01T16:26:53Z",
+ "author_url": "https://github.com/AdityaJollyy",
+ "author_avatar": "https://avatars.githubusercontent.com/u/140686935?v=4"
+ },
+ {
+ "url": "https://github.com/KrishChothani/CKsEdu/pull/18",
+ "title": "Added Resources component",
+ "repo": "KrishChothani/CKsEdu",
+ "level": "level3",
+ "points": 10,
+ "created_at": "2025-07-29T17:31:07Z",
+ "updated_at": "2025-07-29T17:38:08Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-29T17:38:08Z",
+ "author_url": "https://github.com/AdityaJollyy",
+ "author_avatar": "https://avatars.githubusercontent.com/u/140686935?v=4"
+ },
+ {
+ "url": "https://github.com/KrishChothani/CKsEdu/pull/9",
+ "title": "Added dark/light theme",
+ "repo": "KrishChothani/CKsEdu",
+ "level": "level3",
+ "points": 10,
+ "created_at": "2025-07-28T16:51:53Z",
+ "updated_at": "2025-08-01T10:35:09Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-28T16:57:49Z",
+ "author_url": "https://github.com/AdityaJollyy",
+ "author_avatar": "https://avatars.githubusercontent.com/u/140686935?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/140686935?v=4",
+ "profile_url": "https://github.com/AdityaJollyy"
+ },
+ "Khwaaish": {
+ "expectedPoints": 40,
+ "currentPoints": 32,
+ "levels": {
+ "level1": 5,
+ "level2": 0,
+ "level3": 2
+ },
+ "prs": [
+ {
+ "url": "https://github.com/gyanshankar1708/GrowCraft/pull/101",
+ "title": "enhanced about-us #74",
+ "repo": "gyanshankar1708/GrowCraft",
+ "level": "level3",
+ "points": 10,
+ "created_at": "2025-08-02T15:26:39Z",
+ "updated_at": "2025-08-02T18:50:23Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-08-02T18:50:13Z",
+ "author_url": "https://github.com/Khwaaish",
+ "author_avatar": "https://avatars.githubusercontent.com/u/181845529?v=4"
+ },
+ {
+ "url": "https://github.com/gyanshankar1708/GrowCraft/pull/69",
+ "title": "Seperated the files #51",
+ "repo": "gyanshankar1708/GrowCraft",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-08-01T08:09:22Z",
+ "updated_at": "2025-08-02T18:35:47Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-08-02T18:35:47Z",
+ "author_url": "https://github.com/Khwaaish",
+ "author_avatar": "https://avatars.githubusercontent.com/u/181845529?v=4"
+ },
+ {
+ "url": "https://github.com/Himanshusk1/GDF/pull/30",
+ "title": "Enhanced the footer #25",
+ "repo": "Himanshusk1/GDF",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-31T09:26:01Z",
+ "updated_at": "2025-08-03T05:42:08Z",
+ "state": "open",
+ "merged": false,
+ "merged_at": null,
+ "author_url": "https://github.com/Khwaaish",
+ "author_avatar": "https://avatars.githubusercontent.com/u/181845529?v=4"
+ },
+ {
+ "url": "https://github.com/Varshitha713/CodeCanvas/pull/28",
+ "title": "seperated logic from framework ",
+ "repo": "Varshitha713/CodeCanvas",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-30T15:06:50Z",
+ "updated_at": "2025-08-01T18:43:54Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-08-01T18:43:34Z",
+ "author_url": "https://github.com/Khwaaish",
+ "author_avatar": "https://avatars.githubusercontent.com/u/181845529?v=4"
+ },
+ {
+ "url": "https://github.com/shuvadeepmondal/HacKerZGuiDe/pull/69",
+ "title": "updated hero section",
+ "repo": "shuvadeepmondal/HacKerZGuiDe",
+ "level": null,
+ "points": 0,
+ "created_at": "2025-07-30T12:34:39Z",
+ "updated_at": "2025-08-01T16:27:27Z",
+ "state": "open",
+ "merged": false,
+ "merged_at": null,
+ "author_url": "https://github.com/Khwaaish",
+ "author_avatar": "https://avatars.githubusercontent.com/u/181845529?v=4"
+ },
+ {
+ "url": "https://github.com/sachiva1/sachiva/pull/55",
+ "title": "made the footer consistent #23",
+ "repo": "sachiva1/sachiva",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-31T11:23:38Z",
+ "updated_at": "2025-07-31T15:36:13Z",
+ "state": "closed",
+ "merged": false,
+ "merged_at": null,
+ "author_url": "https://github.com/Khwaaish",
+ "author_avatar": "https://avatars.githubusercontent.com/u/181845529?v=4"
+ },
+ {
+ "url": "https://github.com/sachiva1/sachiva/pull/22",
+ "title": "fixed the footer",
+ "repo": "sachiva1/sachiva",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-30T03:08:59Z",
+ "updated_at": "2025-07-30T17:22:31Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-30T17:22:31Z",
+ "author_url": "https://github.com/Khwaaish",
+ "author_avatar": "https://avatars.githubusercontent.com/u/181845529?v=4"
+ },
+ {
+ "url": "https://github.com/sachiva1/sachiva/pull/13",
+ "title": "feat: Improve Footer Design #10",
+ "repo": "sachiva1/sachiva",
+ "level": "level3",
+ "points": 10,
+ "created_at": "2025-07-29T14:12:00Z",
+ "updated_at": "2025-07-30T00:50:58Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-30T00:50:58Z",
+ "author_url": "https://github.com/Khwaaish",
+ "author_avatar": "https://avatars.githubusercontent.com/u/181845529?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/181845529?v=4",
+ "profile_url": "https://github.com/Khwaaish"
+ },
+ "Adez017": {
+ "expectedPoints": 31,
+ "currentPoints": 31,
+ "levels": {
+ "level1": 6,
+ "level2": 1,
+ "level3": 0
+ },
+ "prs": [
+ {
+ "url": "https://github.com/SharonIV0x86/CinderPeak/pull/8",
+ "title": "feat(repo): Added templates for issues and pull requests.",
+ "repo": "SharonIV0x86/CinderPeak",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-30T11:54:33Z",
+ "updated_at": "2025-07-30T16:40:02Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-30T16:39:54Z",
+ "author_url": "https://github.com/Adez017",
+ "author_avatar": "https://avatars.githubusercontent.com/u/142787780?v=4"
+ },
+ {
+ "url": "https://github.com/Arpitgarg07/Jarvis/pull/18",
+ "title": "Fixes the request and issue templates ",
+ "repo": "Arpitgarg07/Jarvis",
+ "level": null,
+ "points": 0,
+ "created_at": "2025-07-30T15:56:58Z",
+ "updated_at": "2025-07-30T17:45:46Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-30T17:45:28Z",
+ "author_url": "https://github.com/Adez017",
+ "author_avatar": "https://avatars.githubusercontent.com/u/142787780?v=4"
+ },
+ {
+ "url": "https://github.com/OpenVoiceX/Voice-Marketing-Agent/pull/17",
+ "title": "Removing contributors bot",
+ "repo": "OpenVoiceX/Voice-Marketing-Agent",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-08-01T05:54:55Z",
+ "updated_at": "2025-08-01T20:05:47Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-08-01T06:07:15Z",
+ "author_url": "https://github.com/Adez017",
+ "author_avatar": "https://avatars.githubusercontent.com/u/142787780?v=4"
+ },
+ {
+ "url": "https://github.com/OpenVoiceX/Voice-Marketing-Agent/pull/13",
+ "title": "Upadate Changes : Contributors Bot",
+ "repo": "OpenVoiceX/Voice-Marketing-Agent",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-29T17:21:08Z",
+ "updated_at": "2025-08-01T20:06:12Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-31T15:12:13Z",
+ "author_url": "https://github.com/Adez017",
+ "author_avatar": "https://avatars.githubusercontent.com/u/142787780?v=4"
+ },
+ {
+ "url": "https://github.com/OpenVoiceX/Voice-Marketing-Agent/pull/11",
+ "title": "Create CONTRIBUTING.md",
+ "repo": "OpenVoiceX/Voice-Marketing-Agent",
+ "level": "level2",
+ "points": 7,
+ "created_at": "2025-07-29T05:05:29Z",
+ "updated_at": "2025-08-02T13:29:34Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-29T06:21:15Z",
+ "author_url": "https://github.com/Adez017",
+ "author_avatar": "https://avatars.githubusercontent.com/u/142787780?v=4"
+ },
+ {
+ "url": "https://github.com/OpenVoiceX/Voice-Marketing-Agent/pull/10",
+ "title": "Added templates",
+ "repo": "OpenVoiceX/Voice-Marketing-Agent",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-28T17:29:14Z",
+ "updated_at": "2025-08-02T13:28:34Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-28T18:09:16Z",
+ "author_url": "https://github.com/Adez017",
+ "author_avatar": "https://avatars.githubusercontent.com/u/142787780?v=4"
+ },
+ {
+ "url": "https://github.com/OpenVoiceX/Voice-Marketing-Agent/pull/9",
+ "title": "Updated readme file ",
+ "repo": "OpenVoiceX/Voice-Marketing-Agent",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-28T12:24:50Z",
+ "updated_at": "2025-08-02T13:30:07Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-28T13:25:52Z",
+ "author_url": "https://github.com/Adez017",
+ "author_avatar": "https://avatars.githubusercontent.com/u/142787780?v=4"
+ },
+ {
+ "url": "https://github.com/OpenVoiceX/Voice-Marketing-Agent/pull/8",
+ "title": "Created LICENSE",
+ "repo": "OpenVoiceX/Voice-Marketing-Agent",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-28T12:05:45Z",
+ "updated_at": "2025-08-02T15:46:43Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-28T13:25:53Z",
+ "author_url": "https://github.com/Adez017",
+ "author_avatar": "https://avatars.githubusercontent.com/u/142787780?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/142787780?v=4",
+ "profile_url": "https://github.com/Adez017"
+ },
+ "shwetap3000": {
+ "expectedPoints": 29,
+ "currentPoints": 29,
+ "levels": {
+ "level1": 2,
+ "level2": 3,
+ "level3": 0
+ },
+ "prs": [
+ {
+ "url": "https://github.com/code-well0/trip-planner/pull/36",
+ "title": "Fix: Update Login Page logic",
+ "repo": "code-well0/trip-planner",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-08-02T12:07:57Z",
+ "updated_at": "2025-08-02T17:28:52Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-08-02T17:04:41Z",
+ "author_url": "https://github.com/shwetap3000",
+ "author_avatar": "https://avatars.githubusercontent.com/u/210210075?v=4"
+ },
+ {
+ "url": "https://github.com/SurajSG23/Job-Portal/pull/93",
+ "title": "Consistent footer layout and styling added",
+ "repo": "SurajSG23/Job-Portal",
+ "level": "level2",
+ "points": 7,
+ "created_at": "2025-08-01T18:57:03Z",
+ "updated_at": "2025-08-02T05:22:01Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-08-02T05:21:12Z",
+ "author_url": "https://github.com/shwetap3000",
+ "author_avatar": "https://avatars.githubusercontent.com/u/210210075?v=4"
+ },
+ {
+ "url": "https://github.com/SurajSG23/Job-Portal/pull/80",
+ "title": "Job type dropdown styling added",
+ "repo": "SurajSG23/Job-Portal",
+ "level": "level2",
+ "points": 7,
+ "created_at": "2025-08-01T13:49:26Z",
+ "updated_at": "2025-08-01T17:28:21Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-08-01T17:28:14Z",
+ "author_url": "https://github.com/shwetap3000",
+ "author_avatar": "https://avatars.githubusercontent.com/u/210210075?v=4"
+ },
+ {
+ "url": "https://github.com/SurajSG23/Job-Portal/pull/73",
+ "title": "Add background image and adjust form button position.",
+ "repo": "SurajSG23/Job-Portal",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-31T19:15:06Z",
+ "updated_at": "2025-08-01T02:53:34Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-08-01T02:53:13Z",
+ "author_url": "https://github.com/shwetap3000",
+ "author_avatar": "https://avatars.githubusercontent.com/u/210210075?v=4"
+ },
+ {
+ "url": "https://github.com/SurajSG23/Job-Portal/pull/64",
+ "title": "Fix: Add validation and error messages for job post form (#48)",
+ "repo": "SurajSG23/Job-Portal",
+ "level": "level2",
+ "points": 7,
+ "created_at": "2025-07-31T13:04:52Z",
+ "updated_at": "2025-07-31T13:40:48Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-31T13:38:58Z",
+ "author_url": "https://github.com/shwetap3000",
+ "author_avatar": "https://avatars.githubusercontent.com/u/210210075?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/210210075?v=4",
+ "profile_url": "https://github.com/shwetap3000"
+ },
+ "GxAditya": {
+ "expectedPoints": 27,
+ "currentPoints": 27,
+ "levels": {
+ "level1": 0,
+ "level2": 1,
+ "level3": 2
+ },
+ "prs": [
+ {
+ "url": "https://github.com/KrishChothani/CKsEdu/pull/34",
+ "title": "Added missing pages",
+ "repo": "KrishChothani/CKsEdu",
+ "level": "level3",
+ "points": 10,
+ "created_at": "2025-07-31T15:25:45Z",
+ "updated_at": "2025-08-01T10:45:28Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-31T17:55:46Z",
+ "author_url": "https://github.com/GxAditya",
+ "author_avatar": "https://avatars.githubusercontent.com/u/177012111?v=4"
+ },
+ {
+ "url": "https://github.com/KrishChothani/CKsEdu/pull/14",
+ "title": "Add a pr template",
+ "repo": "KrishChothani/CKsEdu",
+ "level": "level3",
+ "points": 10,
+ "created_at": "2025-07-29T04:02:30Z",
+ "updated_at": "2025-08-01T10:34:53Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-29T04:53:43Z",
+ "author_url": "https://github.com/GxAditya",
+ "author_avatar": "https://avatars.githubusercontent.com/u/177012111?v=4"
+ },
+ {
+ "url": "https://github.com/KrishChothani/CKsEdu/pull/12",
+ "title": "Issue Templates added ",
+ "repo": "KrishChothani/CKsEdu",
+ "level": "level2",
+ "points": 7,
+ "created_at": "2025-07-29T03:46:51Z",
+ "updated_at": "2025-08-01T10:35:01Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-29T03:49:59Z",
+ "author_url": "https://github.com/GxAditya",
+ "author_avatar": "https://avatars.githubusercontent.com/u/177012111?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/177012111?v=4",
+ "profile_url": "https://github.com/GxAditya"
+ },
+ "RAJVEER42": {
+ "expectedPoints": 33,
+ "currentPoints": 26,
+ "levels": {
+ "level1": 4,
+ "level2": 1,
+ "level3": 1
+ },
+ "prs": [
+ {
+ "url": "https://github.com/Creators-Space/Creators-Space/pull/67",
+ "title": "Add sliding underline hover effect to top 6 navbar links",
+ "repo": "Creators-Space/Creators-Space",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-29T20:43:51Z",
+ "updated_at": "2025-07-30T03:57:16Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-30T03:57:16Z",
+ "author_url": "https://github.com/RAJVEER42",
+ "author_avatar": "https://avatars.githubusercontent.com/u/180613669?v=4"
+ },
+ {
+ "url": "https://github.com/Creators-Space/Creators-Space/pull/66",
+ "title": "Added the Hove Effect to the Social_media_logo",
+ "repo": "Creators-Space/Creators-Space",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-29T19:47:08Z",
+ "updated_at": "2025-07-30T14:13:46Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-30T03:57:17Z",
+ "author_url": "https://github.com/RAJVEER42",
+ "author_avatar": "https://avatars.githubusercontent.com/u/180613669?v=4"
+ },
+ {
+ "url": "https://github.com/vishanurag/Canvas-Editor/pull/1300",
+ "title": "Added the password checker",
+ "repo": "vishanurag/Canvas-Editor",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-29T19:28:45Z",
+ "updated_at": "2025-07-30T10:31:54Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-30T10:31:53Z",
+ "author_url": "https://github.com/RAJVEER42",
+ "author_avatar": "https://avatars.githubusercontent.com/u/180613669?v=4"
+ },
+ {
+ "url": "https://github.com/gyanshankar1708/GrowCraft/pull/31",
+ "title": "Hover effect to the send button",
+ "repo": "gyanshankar1708/GrowCraft",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-29T18:50:27Z",
+ "updated_at": "2025-07-30T18:19:14Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-30T07:15:54Z",
+ "author_url": "https://github.com/RAJVEER42",
+ "author_avatar": "https://avatars.githubusercontent.com/u/180613669?v=4"
+ },
+ {
+ "url": "https://github.com/gyanshankar1708/GrowCraft/pull/29",
+ "title": "✨Glassy Navbar Added",
+ "repo": "gyanshankar1708/GrowCraft",
+ "level": "level3",
+ "points": 10,
+ "created_at": "2025-07-29T18:12:42Z",
+ "updated_at": "2025-07-30T18:18:19Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-30T07:15:56Z",
+ "author_url": "https://github.com/RAJVEER42",
+ "author_avatar": "https://avatars.githubusercontent.com/u/180613669?v=4"
+ },
+ {
+ "url": "https://github.com/Varshitha713/CodeCanvas/pull/14",
+ "title": "✨Added glassy navbar",
+ "repo": "Varshitha713/CodeCanvas",
+ "level": "level2",
+ "points": 7,
+ "created_at": "2025-07-29T21:33:44Z",
+ "updated_at": "2025-08-01T19:21:25Z",
+ "state": "open",
+ "merged": false,
+ "merged_at": null,
+ "author_url": "https://github.com/RAJVEER42",
+ "author_avatar": "https://avatars.githubusercontent.com/u/180613669?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/180613669?v=4",
+ "profile_url": "https://github.com/RAJVEER42"
+ },
+ "Ayushii-uniyal": {
+ "expectedPoints": 25,
+ "currentPoints": 25,
+ "levels": {
+ "level1": 1,
+ "level2": 3,
+ "level3": 0
+ },
+ "prs": [
+ {
+ "url": "https://github.com/sachiva1/sachiva/pull/74",
+ "title": "Enhanced UI of what our client say section",
+ "repo": "sachiva1/sachiva",
+ "level": "level2",
+ "points": 7,
+ "created_at": "2025-08-01T14:00:51Z",
+ "updated_at": "2025-08-01T15:38:42Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-08-01T15:35:48Z",
+ "author_url": "https://github.com/Ayushii-uniyal",
+ "author_avatar": "https://avatars.githubusercontent.com/u/117735804?v=4"
+ },
+ {
+ "url": "https://github.com/sachiva1/sachiva/pull/51",
+ "title": "Added hover effects on cards",
+ "repo": "sachiva1/sachiva",
+ "level": "level2",
+ "points": 7,
+ "created_at": "2025-07-31T09:23:00Z",
+ "updated_at": "2025-07-31T10:39:16Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-31T09:41:56Z",
+ "author_url": "https://github.com/Ayushii-uniyal",
+ "author_avatar": "https://avatars.githubusercontent.com/u/117735804?v=4"
+ },
+ {
+ "url": "https://github.com/SurajSG23/Job-Portal/pull/63",
+ "title": "Fixed footer overlapping issue",
+ "repo": "SurajSG23/Job-Portal",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-31T12:45:06Z",
+ "updated_at": "2025-07-31T13:38:22Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-31T13:38:13Z",
+ "author_url": "https://github.com/Ayushii-uniyal",
+ "author_avatar": "https://avatars.githubusercontent.com/u/117735804?v=4"
+ },
+ {
+ "url": "https://github.com/SurajSG23/Job-Portal/pull/61",
+ "title": "Added styling to dropdown in seekers page",
+ "repo": "SurajSG23/Job-Portal",
+ "level": "level2",
+ "points": 7,
+ "created_at": "2025-07-31T10:23:26Z",
+ "updated_at": "2025-07-31T13:40:31Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-31T11:59:19Z",
+ "author_url": "https://github.com/Ayushii-uniyal",
+ "author_avatar": "https://avatars.githubusercontent.com/u/117735804?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/117735804?v=4",
+ "profile_url": "https://github.com/Ayushii-uniyal"
+ },
+ "ShiiiivanshSingh": {
+ "expectedPoints": 24,
+ "currentPoints": 24,
+ "levels": {
+ "level1": 0,
+ "level2": 2,
+ "level3": 1
+ },
+ "prs": [
+ {
+ "url": "https://github.com/SurajSG23/Job-Portal/pull/13",
+ "title": "Added Styling And Links To About Page",
+ "repo": "SurajSG23/Job-Portal",
+ "level": "level2",
+ "points": 7,
+ "created_at": "2025-07-28T14:04:58Z",
+ "updated_at": "2025-07-28T18:19:37Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-28T15:04:20Z",
+ "author_url": "https://github.com/ShiiiivanshSingh",
+ "author_avatar": "https://avatars.githubusercontent.com/u/137640417?v=4"
+ },
+ {
+ "url": "https://github.com/vaibhavrajharsh/Music-Player/pull/28",
+ "title": "Added Search Button Functionality",
+ "repo": "vaibhavrajharsh/Music-Player",
+ "level": "level3",
+ "points": 10,
+ "created_at": "2025-07-29T16:05:18Z",
+ "updated_at": "2025-07-31T12:53:15Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-29T17:46:32Z",
+ "author_url": "https://github.com/ShiiiivanshSingh",
+ "author_avatar": "https://avatars.githubusercontent.com/u/137640417?v=4"
+ },
+ {
+ "url": "https://github.com/vaibhavrajharsh/Music-Player/pull/11",
+ "title": "Added Improvements Plus Fixed Low Res Album Art",
+ "repo": "vaibhavrajharsh/Music-Player",
+ "level": "level2",
+ "points": 7,
+ "created_at": "2025-07-28T18:12:33Z",
+ "updated_at": "2025-07-31T12:49:08Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-29T09:01:16Z",
+ "author_url": "https://github.com/ShiiiivanshSingh",
+ "author_avatar": "https://avatars.githubusercontent.com/u/137640417?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/137640417?v=4",
+ "profile_url": "https://github.com/ShiiiivanshSingh"
+ },
+ "ankita-mohantyy": {
+ "expectedPoints": 22,
+ "currentPoints": 22,
+ "levels": {
+ "level1": 3,
+ "level2": 0,
+ "level3": 1
+ },
+ "prs": [
+ {
+ "url": "https://github.com/SAMBUDAR/Styleka/pull/25",
+ "title": "Added login prompt and styles for unauthenticated users in cart",
+ "repo": "SAMBUDAR/Styleka",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-29T06:09:49Z",
+ "updated_at": "2025-07-30T17:09:51Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-30T17:09:51Z",
+ "author_url": "https://github.com/ankita-mohantyy",
+ "author_avatar": "https://avatars.githubusercontent.com/u/182128428?v=4"
+ },
+ {
+ "url": "https://github.com/Creators-Space/Creators-Space/pull/26",
+ "title": "Added toggle button to switch between light and dark mode",
+ "repo": "Creators-Space/Creators-Space",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-28T10:38:34Z",
+ "updated_at": "2025-07-30T15:27:11Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-28T18:05:12Z",
+ "author_url": "https://github.com/ankita-mohantyy",
+ "author_avatar": "https://avatars.githubusercontent.com/u/182128428?v=4"
+ },
+ {
+ "url": "https://github.com/gyanshankar1708/GrowCraft/pull/63",
+ "title": "Fixed the color change on hover effect in the training link section in Dark Mode",
+ "repo": "gyanshankar1708/GrowCraft",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-31T19:11:16Z",
+ "updated_at": "2025-08-01T03:15:31Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-08-01T03:15:31Z",
+ "author_url": "https://github.com/ankita-mohantyy",
+ "author_avatar": "https://avatars.githubusercontent.com/u/182128428?v=4"
+ },
+ {
+ "url": "https://github.com/gyanshankar1708/GrowCraft/pull/34",
+ "title": "Added toggle button to switch between light and dark mode ",
+ "repo": "gyanshankar1708/GrowCraft",
+ "level": "level3",
+ "points": 10,
+ "created_at": "2025-07-29T21:00:28Z",
+ "updated_at": "2025-07-30T18:20:26Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-30T18:20:25Z",
+ "author_url": "https://github.com/ankita-mohantyy",
+ "author_avatar": "https://avatars.githubusercontent.com/u/182128428?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/182128428?v=4",
+ "profile_url": "https://github.com/ankita-mohantyy"
+ },
+ "007-SARANG": {
+ "expectedPoints": 21,
+ "currentPoints": 21,
+ "levels": {
+ "level1": 1,
+ "level2": 1,
+ "level3": 1
+ },
+ "prs": [
+ {
+ "url": "https://github.com/akhileshverma92/hostlecartkanpur/pull/12",
+ "title": "Add clear and helpful CONTRIBUTING.md for new contributors",
+ "repo": "akhileshverma92/hostlecartkanpur",
+ "level": null,
+ "points": 0,
+ "created_at": "2025-07-29T15:49:38Z",
+ "updated_at": "2025-07-31T05:24:20Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-31T05:24:19Z",
+ "author_url": "https://github.com/007-SARANG",
+ "author_avatar": "https://avatars.githubusercontent.com/u/181506369?v=4"
+ },
+ {
+ "url": "https://github.com/SurajSG23/Job-Portal/pull/47",
+ "title": "Updated CODE_OF_CONDUCT.md, bug_report.md, feature_request.md,PULL_REQUEST_TEMPLATE.md",
+ "repo": "SurajSG23/Job-Portal",
+ "level": "level2",
+ "points": 7,
+ "created_at": "2025-07-30T13:07:39Z",
+ "updated_at": "2025-07-30T13:57:02Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-30T13:56:33Z",
+ "author_url": "https://github.com/007-SARANG",
+ "author_avatar": "https://avatars.githubusercontent.com/u/181506369?v=4"
+ },
+ {
+ "url": "https://github.com/SurajSG23/Job-Portal/pull/40",
+ "title": "Performance & SEO Improvements: Image Optimization, .webp Migration, and Lighthouse 100",
+ "repo": "SurajSG23/Job-Portal",
+ "level": "level3",
+ "points": 10,
+ "created_at": "2025-07-30T05:17:59Z",
+ "updated_at": "2025-07-30T08:16:56Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-30T08:14:41Z",
+ "author_url": "https://github.com/007-SARANG",
+ "author_avatar": "https://avatars.githubusercontent.com/u/181506369?v=4"
+ },
+ {
+ "url": "https://github.com/SurajSG23/Job-Portal/pull/37",
+ "title": "Added .gitignore updated",
+ "repo": "SurajSG23/Job-Portal",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-30T03:34:29Z",
+ "updated_at": "2025-07-30T04:31:14Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-30T04:31:14Z",
+ "author_url": "https://github.com/007-SARANG",
+ "author_avatar": "https://avatars.githubusercontent.com/u/181506369?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/181506369?v=4",
+ "profile_url": "https://github.com/007-SARANG"
+ },
+ "NirvikD": {
+ "expectedPoints": 20,
+ "currentPoints": 20,
+ "levels": {
+ "level1": 0,
+ "level2": 0,
+ "level3": 2
+ },
+ "prs": [
+ {
+ "url": "https://github.com/prasoonk1204/BreatheEasy/pull/21",
+ "title": "[Enhancement]: Redesign Navigation System for Improved Scalability and User Experience",
+ "repo": "prasoonk1204/BreatheEasy",
+ "level": "level3",
+ "points": 10,
+ "created_at": "2025-08-01T17:09:13Z",
+ "updated_at": "2025-08-01T19:03:17Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-08-01T19:03:17Z",
+ "author_url": "https://github.com/NirvikD",
+ "author_avatar": "https://avatars.githubusercontent.com/u/118150046?v=4"
+ },
+ {
+ "url": "https://github.com/prasoonk1204/BreatheEasy/pull/15",
+ "title": "[Enhancement]: Implement 'Search AQI by Location' page",
+ "repo": "prasoonk1204/BreatheEasy",
+ "level": "level3",
+ "points": 10,
+ "created_at": "2025-07-31T16:49:10Z",
+ "updated_at": "2025-07-31T19:35:11Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-31T18:32:37Z",
+ "author_url": "https://github.com/NirvikD",
+ "author_avatar": "https://avatars.githubusercontent.com/u/118150046?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/118150046?v=4",
+ "profile_url": "https://github.com/NirvikD"
+ },
+ "raghavendra-24": {
+ "expectedPoints": 20,
+ "currentPoints": 20,
+ "levels": {
+ "level1": 0,
+ "level2": 0,
+ "level3": 2
+ },
+ "prs": [
+ {
+ "url": "https://github.com/Shubhashish-Chakraborty/prepnerdz/pull/51",
+ "title": "Added Chatbot Feature",
+ "repo": "Shubhashish-Chakraborty/prepnerdz",
+ "level": "level3",
+ "points": 10,
+ "created_at": "2025-07-31T20:21:38Z",
+ "updated_at": "2025-08-01T09:57:03Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-08-01T09:45:54Z",
+ "author_url": "https://github.com/raghavendra-24",
+ "author_avatar": "https://avatars.githubusercontent.com/u/118842369?v=4"
+ },
+ {
+ "url": "https://github.com/Shubhashish-Chakraborty/prepnerdz/pull/50",
+ "title": "Added leaderboard Feature",
+ "repo": "Shubhashish-Chakraborty/prepnerdz",
+ "level": "level3",
+ "points": 10,
+ "created_at": "2025-07-31T13:13:15Z",
+ "updated_at": "2025-07-31T19:13:45Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-31T16:02:10Z",
+ "author_url": "https://github.com/raghavendra-24",
+ "author_avatar": "https://avatars.githubusercontent.com/u/118842369?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/118842369?v=4",
+ "profile_url": "https://github.com/raghavendra-24"
+ },
+ "Kushanware": {
+ "expectedPoints": 24,
+ "currentPoints": 20,
+ "levels": {
+ "level1": 1,
+ "level2": 0,
+ "level3": 2
+ },
+ "prs": [
+ {
+ "url": "https://github.com/sachiva1/sachiva/pull/83",
+ "title": "Accessibility/wcag 2.1 compliance issue 38",
+ "repo": "sachiva1/sachiva",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-08-02T05:32:10Z",
+ "updated_at": "2025-08-02T10:02:09Z",
+ "state": "closed",
+ "merged": false,
+ "merged_at": null,
+ "author_url": "https://github.com/Kushanware",
+ "author_avatar": "https://avatars.githubusercontent.com/u/115879636?v=4"
+ },
+ {
+ "url": "https://github.com/sachiva1/sachiva/pull/68",
+ "title": "Enhanced dark mode support for all components and improved theme transitions ",
+ "repo": "sachiva1/sachiva",
+ "level": "level3",
+ "points": 10,
+ "created_at": "2025-07-31T17:15:09Z",
+ "updated_at": "2025-08-02T08:21:03Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-08-02T08:21:03Z",
+ "author_url": "https://github.com/Kushanware",
+ "author_avatar": "https://avatars.githubusercontent.com/u/115879636?v=4"
+ },
+ {
+ "url": "https://github.com/sachiva1/sachiva/pull/37",
+ "title": "feat: Add Contributors Page (#33)",
+ "repo": "sachiva1/sachiva",
+ "level": "level3",
+ "points": 10,
+ "created_at": "2025-07-31T03:27:57Z",
+ "updated_at": "2025-07-31T06:50:48Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-31T06:50:48Z",
+ "author_url": "https://github.com/Kushanware",
+ "author_avatar": "https://avatars.githubusercontent.com/u/115879636?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/115879636?v=4",
+ "profile_url": "https://github.com/Kushanware"
+ },
+ "Jai-76": {
+ "expectedPoints": 19,
+ "currentPoints": 19,
+ "levels": {
+ "level1": 3,
+ "level2": 1,
+ "level3": 0
+ },
+ "prs": [
+ {
+ "url": "https://github.com/SharonIV0x86/CinderPeak/pull/12",
+ "title": "feat(repo): Add license to the repository.",
+ "repo": "SharonIV0x86/CinderPeak",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-08-01T07:48:37Z",
+ "updated_at": "2025-08-02T10:04:25Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-08-02T10:04:18Z",
+ "author_url": "https://github.com/Jai-76",
+ "author_avatar": "https://avatars.githubusercontent.com/u/212874740?v=4"
+ },
+ {
+ "url": "https://github.com/OpenVoiceX/Web-Voice-marketing-Agent/pull/6",
+ "title": "Create License",
+ "repo": "OpenVoiceX/Web-Voice-marketing-Agent",
+ "level": "level2",
+ "points": 7,
+ "created_at": "2025-08-01T06:59:05Z",
+ "updated_at": "2025-08-01T12:03:26Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-08-01T12:01:01Z",
+ "author_url": "https://github.com/Jai-76",
+ "author_avatar": "https://avatars.githubusercontent.com/u/212874740?v=4"
+ },
+ {
+ "url": "https://github.com/anothercoder-nik/URLshortner/pull/14",
+ "title": "Create CONTRIBUTING.md",
+ "repo": "anothercoder-nik/URLshortner",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-08-02T11:19:59Z",
+ "updated_at": "2025-08-02T21:09:28Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-08-02T21:09:28Z",
+ "author_url": "https://github.com/Jai-76",
+ "author_avatar": "https://avatars.githubusercontent.com/u/212874740?v=4"
+ },
+ {
+ "url": "https://github.com/vaibhavrajharsh/Music-Player/pull/38",
+ "title": "Create License",
+ "repo": "vaibhavrajharsh/Music-Player",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-31T14:18:51Z",
+ "updated_at": "2025-07-31T14:26:23Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-31T14:26:04Z",
+ "author_url": "https://github.com/Jai-76",
+ "author_avatar": "https://avatars.githubusercontent.com/u/212874740?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/212874740?v=4",
+ "profile_url": "https://github.com/Jai-76"
+ },
+ "Hardik210205": {
+ "expectedPoints": 18,
+ "currentPoints": 18,
+ "levels": {
+ "level1": 1,
+ "level2": 2,
+ "level3": 0
+ },
+ "prs": [
+ {
+ "url": "https://github.com/Loop-Hive/ScheduleX/pull/88",
+ "title": "fix : Remove Issue Management and Auto Assign workflows(fixes #85)",
+ "repo": "Loop-Hive/ScheduleX",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-29T06:03:39Z",
+ "updated_at": "2025-07-29T17:47:15Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-29T17:05:25Z",
+ "author_url": "https://github.com/Hardik210205",
+ "author_avatar": "https://avatars.githubusercontent.com/u/182397476?v=4"
+ },
+ {
+ "url": "https://github.com/DevSyncx/DevSync/pull/18",
+ "title": "Add animated 404 page for invalid routes using Framer Motion and Shadcn UI",
+ "repo": "DevSyncx/DevSync",
+ "level": "level2",
+ "points": 7,
+ "created_at": "2025-07-29T16:18:07Z",
+ "updated_at": "2025-07-30T18:29:56Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-30T07:05:34Z",
+ "author_url": "https://github.com/Hardik210205",
+ "author_avatar": "https://avatars.githubusercontent.com/u/182397476?v=4"
+ },
+ {
+ "url": "https://github.com/DevSyncx/DevSync/pull/17",
+ "title": "Feat(UI): add reusable loader component using Tailwind and shadcn",
+ "repo": "DevSyncx/DevSync",
+ "level": "level2",
+ "points": 7,
+ "created_at": "2025-07-29T15:53:36Z",
+ "updated_at": "2025-07-30T18:28:59Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-30T06:26:27Z",
+ "author_url": "https://github.com/Hardik210205",
+ "author_avatar": "https://avatars.githubusercontent.com/u/182397476?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/182397476?v=4",
+ "profile_url": "https://github.com/Hardik210205"
+ },
+ "KHUSHI-SINGH-star": {
+ "expectedPoints": 18,
+ "currentPoints": 18,
+ "levels": {
+ "level1": 1,
+ "level2": 2,
+ "level3": 0
+ },
+ "prs": [
+ {
+ "url": "https://github.com/DevSyncx/DevSync/pull/9",
+ "title": " Add Responsive Hamburger Menu to Navbar.jsx for Improved Mobile UX",
+ "repo": "DevSyncx/DevSync",
+ "level": "level2",
+ "points": 7,
+ "created_at": "2025-07-29T08:53:16Z",
+ "updated_at": "2025-07-30T18:28:13Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-30T06:32:07Z",
+ "author_url": "https://github.com/KHUSHI-SINGH-star",
+ "author_avatar": "https://avatars.githubusercontent.com/u/174813800?v=4"
+ },
+ {
+ "url": "https://github.com/sachiva1/sachiva/pull/36",
+ "title": "✨ Fix: Navbar text color issue in dark mode",
+ "repo": "sachiva1/sachiva",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-31T02:59:41Z",
+ "updated_at": "2025-07-31T06:25:52Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-31T06:25:52Z",
+ "author_url": "https://github.com/KHUSHI-SINGH-star",
+ "author_avatar": "https://avatars.githubusercontent.com/u/174813800?v=4"
+ },
+ {
+ "url": "https://github.com/vaibhavrajharsh/Music-Player/pull/23",
+ "title": "Add Responsive Spotify-Style Hamburger Menu for Mobile View",
+ "repo": "vaibhavrajharsh/Music-Player",
+ "level": "level2",
+ "points": 7,
+ "created_at": "2025-07-29T13:30:04Z",
+ "updated_at": "2025-07-31T12:50:55Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-29T18:04:11Z",
+ "author_url": "https://github.com/KHUSHI-SINGH-star",
+ "author_avatar": "https://avatars.githubusercontent.com/u/174813800?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/174813800?v=4",
+ "profile_url": "https://github.com/KHUSHI-SINGH-star"
+ },
+ "Heena-Patil719": {
+ "expectedPoints": 18,
+ "currentPoints": 18,
+ "levels": {
+ "level1": 2,
+ "level2": 0,
+ "level3": 1
+ },
+ "prs": [
+ {
+ "url": "https://github.com/vishanurag/Canvas-Editor/pull/1296",
+ "title": "Privacy Page Updated",
+ "repo": "vishanurag/Canvas-Editor",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-29T15:12:29Z",
+ "updated_at": "2025-07-29T15:32:57Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-29T15:32:07Z",
+ "author_url": "https://github.com/Heena-Patil719",
+ "author_avatar": "https://avatars.githubusercontent.com/u/157728863?v=4"
+ },
+ {
+ "url": "https://github.com/SurajSG23/Job-Portal/pull/9",
+ "title": "UI enhancement",
+ "repo": "SurajSG23/Job-Portal",
+ "level": "level3",
+ "points": 10,
+ "created_at": "2025-07-28T03:08:50Z",
+ "updated_at": "2025-07-28T04:41:21Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-28T04:39:27Z",
+ "author_url": "https://github.com/Heena-Patil719",
+ "author_avatar": "https://avatars.githubusercontent.com/u/157728863?v=4"
+ },
+ {
+ "url": "https://github.com/vaibhavrajharsh/Music-Player/pull/58",
+ "title": "Update Readme",
+ "repo": "vaibhavrajharsh/Music-Player",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-08-01T18:06:59Z",
+ "updated_at": "2025-08-01T19:17:32Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-08-01T19:17:15Z",
+ "author_url": "https://github.com/Heena-Patil719",
+ "author_avatar": "https://avatars.githubusercontent.com/u/157728863?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/157728863?v=4",
+ "profile_url": "https://github.com/Heena-Patil719"
+ },
+ "AbhipsaMohapatra": {
+ "expectedPoints": 18,
+ "currentPoints": 18,
+ "levels": {
+ "level1": 1,
+ "level2": 2,
+ "level3": 0
+ },
+ "prs": [
+ {
+ "url": "https://github.com/anothercoder-nik/URLshortner/pull/7",
+ "title": "feat: Add QR Code Download Feature in Dashboard",
+ "repo": "anothercoder-nik/URLshortner",
+ "level": "level2",
+ "points": 7,
+ "created_at": "2025-07-30T19:51:03Z",
+ "updated_at": "2025-07-31T10:42:10Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-30T23:41:28Z",
+ "author_url": "https://github.com/AbhipsaMohapatra",
+ "author_avatar": "https://avatars.githubusercontent.com/u/166213669?v=4"
+ },
+ {
+ "url": "https://github.com/shandilya-rajnandini/DocAtHome/pull/58",
+ "title": "Add Theme Toggle to Support Both Light and Dark Modes ",
+ "repo": "shandilya-rajnandini/DocAtHome",
+ "level": "level2",
+ "points": 7,
+ "created_at": "2025-07-31T06:08:10Z",
+ "updated_at": "2025-07-31T11:17:50Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-31T11:16:35Z",
+ "author_url": "https://github.com/AbhipsaMohapatra",
+ "author_avatar": "https://avatars.githubusercontent.com/u/166213669?v=4"
+ },
+ {
+ "url": "https://github.com/shandilya-rajnandini/DocAtHome/pull/28",
+ "title": "Bug Fix : Footer Navigation Link Points",
+ "repo": "shandilya-rajnandini/DocAtHome",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-29T19:10:31Z",
+ "updated_at": "2025-07-29T20:21:03Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-29T20:20:27Z",
+ "author_url": "https://github.com/AbhipsaMohapatra",
+ "author_avatar": "https://avatars.githubusercontent.com/u/166213669?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/166213669?v=4",
+ "profile_url": "https://github.com/AbhipsaMohapatra"
+ },
+ "gaurav123-4": {
+ "expectedPoints": 24,
+ "currentPoints": 17,
+ "levels": {
+ "level1": 0,
+ "level2": 2,
+ "level3": 1
+ },
+ "prs": [
+ {
+ "url": "https://github.com/Swastik007sharma/CampusTrack/pull/27",
+ "title": "Improved Card Interactivity",
+ "repo": "Swastik007sharma/CampusTrack",
+ "level": "level2",
+ "points": 7,
+ "created_at": "2025-08-01T18:01:32Z",
+ "updated_at": "2025-08-01T19:04:35Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-08-01T19:03:28Z",
+ "author_url": "https://github.com/gaurav123-4",
+ "author_avatar": "https://avatars.githubusercontent.com/u/204588730?v=4"
+ },
+ {
+ "url": "https://github.com/prasoonk1204/BreatheEasy/pull/26",
+ "title": "Enhanced Dashboard ",
+ "repo": "prasoonk1204/BreatheEasy",
+ "level": "level2",
+ "points": 7,
+ "created_at": "2025-08-02T10:12:46Z",
+ "updated_at": "2025-08-03T04:37:06Z",
+ "state": "closed",
+ "merged": false,
+ "merged_at": null,
+ "author_url": "https://github.com/gaurav123-4",
+ "author_avatar": "https://avatars.githubusercontent.com/u/204588730?v=4"
+ },
+ {
+ "url": "https://github.com/prasoonk1204/BreatheEasy/pull/25",
+ "title": "Dashboard Enhanced and Added Landing Page ",
+ "repo": "prasoonk1204/BreatheEasy",
+ "level": "level3",
+ "points": 10,
+ "created_at": "2025-08-02T01:13:01Z",
+ "updated_at": "2025-08-02T08:10:03Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-08-02T08:06:45Z",
+ "author_url": "https://github.com/gaurav123-4",
+ "author_avatar": "https://avatars.githubusercontent.com/u/204588730?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/204588730?v=4",
+ "profile_url": "https://github.com/gaurav123-4"
+ },
+ "mavishsethi": {
+ "expectedPoints": 17,
+ "currentPoints": 17,
+ "levels": {
+ "level1": 0,
+ "level2": 1,
+ "level3": 1
+ },
+ "prs": [
+ {
+ "url": "https://github.com/Creators-Space/Creators-Space/pull/110",
+ "title": "Added bookmarked feature",
+ "repo": "Creators-Space/Creators-Space",
+ "level": "level2",
+ "points": 7,
+ "created_at": "2025-07-31T18:23:03Z",
+ "updated_at": "2025-08-02T14:07:42Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-08-02T13:02:18Z",
+ "author_url": "https://github.com/mavishsethi",
+ "author_avatar": "https://avatars.githubusercontent.com/u/181738613?v=4"
+ },
+ {
+ "url": "https://github.com/coder-writes/devTinder-frontend-main/pull/13",
+ "title": "added blog feature",
+ "repo": "coder-writes/devTinder-frontend-main",
+ "level": "level3",
+ "points": 10,
+ "created_at": "2025-08-02T14:00:35Z",
+ "updated_at": "2025-08-03T07:28:23Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-08-03T06:55:20Z",
+ "author_url": "https://github.com/mavishsethi",
+ "author_avatar": "https://avatars.githubusercontent.com/u/181738613?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/181738613?v=4",
+ "profile_url": "https://github.com/mavishsethi"
+ },
+ "praaachii4596": {
+ "expectedPoints": 17,
+ "currentPoints": 17,
+ "levels": {
+ "level1": 0,
+ "level2": 1,
+ "level3": 1
+ },
+ "prs": [
+ {
+ "url": "https://github.com/piyushpatelcodes/gssocFAQ-Bot/pull/58",
+ "title": "Add FAQ number input and dropdown selection features",
+ "repo": "piyushpatelcodes/gssocFAQ-Bot",
+ "level": "level3",
+ "points": 10,
+ "created_at": "2025-07-30T09:33:51Z",
+ "updated_at": "2025-07-31T04:44:45Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-30T23:09:31Z",
+ "author_url": "https://github.com/praaachii4596",
+ "author_avatar": "https://avatars.githubusercontent.com/u/137667678?v=4"
+ },
+ {
+ "url": "https://github.com/piyushpatelcodes/gssocFAQ-Bot/pull/51",
+ "title": "fix: FAQ Command Bug and Add Paginated FAQ List with Button Navigation",
+ "repo": "piyushpatelcodes/gssocFAQ-Bot",
+ "level": "level2",
+ "points": 7,
+ "created_at": "2025-07-28T13:05:08Z",
+ "updated_at": "2025-07-29T17:47:08Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-28T15:11:40Z",
+ "author_url": "https://github.com/praaachii4596",
+ "author_avatar": "https://avatars.githubusercontent.com/u/137667678?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/137667678?v=4",
+ "profile_url": "https://github.com/praaachii4596"
+ },
+ "Mohammedamaan5714": {
+ "expectedPoints": 17,
+ "currentPoints": 17,
+ "levels": {
+ "level1": 0,
+ "level2": 1,
+ "level3": 1
+ },
+ "prs": [
+ {
+ "url": "https://github.com/msanchariii/evolver/pull/13",
+ "title": "EDA and preprocessing the data issue #12",
+ "repo": "msanchariii/evolver",
+ "level": "level3",
+ "points": 10,
+ "created_at": "2025-07-31T20:41:26Z",
+ "updated_at": "2025-08-02T22:25:26Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-31T20:53:44Z",
+ "author_url": "https://github.com/Mohammedamaan5714",
+ "author_avatar": "https://avatars.githubusercontent.com/u/115135095?v=4"
+ },
+ {
+ "url": "https://github.com/msanchariii/evolver/pull/11",
+ "title": "issue #10 Add dummy dataset and initial notebook for dataset preparation",
+ "repo": "msanchariii/evolver",
+ "level": "level2",
+ "points": 7,
+ "created_at": "2025-07-31T09:37:49Z",
+ "updated_at": "2025-08-02T22:24:33Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-31T12:27:54Z",
+ "author_url": "https://github.com/Mohammedamaan5714",
+ "author_avatar": "https://avatars.githubusercontent.com/u/115135095?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/115135095?v=4",
+ "profile_url": "https://github.com/Mohammedamaan5714"
+ },
+ "Ishitashivhare": {
+ "expectedPoints": 17,
+ "currentPoints": 17,
+ "levels": {
+ "level1": 0,
+ "level2": 1,
+ "level3": 1
+ },
+ "prs": [
+ {
+ "url": "https://github.com/SurajSG23/Job-Portal/pull/103",
+ "title": "added login and signup pages",
+ "repo": "SurajSG23/Job-Portal",
+ "level": "level3",
+ "points": 10,
+ "created_at": "2025-08-02T07:36:32Z",
+ "updated_at": "2025-08-02T16:18:27Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-08-02T16:18:18Z",
+ "author_url": "https://github.com/Ishitashivhare",
+ "author_avatar": "https://avatars.githubusercontent.com/u/168014125?v=4"
+ },
+ {
+ "url": "https://github.com/SurajSG23/Job-Portal/pull/100",
+ "title": "improved the navbar by adding more features",
+ "repo": "SurajSG23/Job-Portal",
+ "level": "level2",
+ "points": 7,
+ "created_at": "2025-08-02T07:25:11Z",
+ "updated_at": "2025-08-02T10:37:01Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-08-02T10:36:53Z",
+ "author_url": "https://github.com/Ishitashivhare",
+ "author_avatar": "https://avatars.githubusercontent.com/u/168014125?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/168014125?v=4",
+ "profile_url": "https://github.com/Ishitashivhare"
+ },
+ "Rashidaga18": {
+ "expectedPoints": 16,
+ "currentPoints": 16,
+ "levels": {
+ "level1": 4,
+ "level2": 0,
+ "level3": 0
+ },
+ "prs": [
+ {
+ "url": "https://github.com/Coden-inja/alchEmaiLyst/pull/20",
+ "title": "Enhancement: Add Interactive 3D Hover Effect to Agent Cards under \"Three Intelligent Agents\" Section #19",
+ "repo": "Coden-inja/alchEmaiLyst",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-08-01T08:19:45Z",
+ "updated_at": "2025-08-01T11:42:58Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-08-01T11:38:50Z",
+ "author_url": "https://github.com/Rashidaga18",
+ "author_avatar": "https://avatars.githubusercontent.com/u/138892734?v=4"
+ },
+ {
+ "url": "https://github.com/Creators-Space/Creators-Space/pull/89",
+ "title": "Add 3D Styling and Smooth Transition on Testimonial Cards Hover #75",
+ "repo": "Creators-Space/Creators-Space",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-30T17:15:36Z",
+ "updated_at": "2025-07-30T17:52:55Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-30T17:52:55Z",
+ "author_url": "https://github.com/Rashidaga18",
+ "author_avatar": "https://avatars.githubusercontent.com/u/138892734?v=4"
+ },
+ {
+ "url": "https://github.com/vishanurag/Canvas-Editor/pull/1305",
+ "title": "Enhance Tutorial Cards with 3D Hover Transition Effect for Better UI Feedback #1303",
+ "repo": "vishanurag/Canvas-Editor",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-31T15:52:40Z",
+ "updated_at": "2025-08-01T07:25:55Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-08-01T07:25:55Z",
+ "author_url": "https://github.com/Rashidaga18",
+ "author_avatar": "https://avatars.githubusercontent.com/u/138892734?v=4"
+ },
+ {
+ "url": "https://github.com/javaistic/javaistic/pull/732",
+ "title": "Add Hover Lift & Transition Styling to Cards Under “Why learn Java with Javaistic?”",
+ "repo": "javaistic/javaistic",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-31T11:27:30Z",
+ "updated_at": "2025-07-31T14:01:41Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-31T14:01:41Z",
+ "author_url": "https://github.com/Rashidaga18",
+ "author_avatar": "https://avatars.githubusercontent.com/u/138892734?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/138892734?v=4",
+ "profile_url": "https://github.com/Rashidaga18"
+ },
+ "Bhoomi-18": {
+ "expectedPoints": 16,
+ "currentPoints": 16,
+ "levels": {
+ "level1": 4,
+ "level2": 0,
+ "level3": 0
+ },
+ "prs": [
+ {
+ "url": "https://github.com/adityakalburgi/Travel_ageny_website/pull/32",
+ "title": "fixed navbar UI",
+ "repo": "adityakalburgi/Travel_ageny_website",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-31T17:00:45Z",
+ "updated_at": "2025-08-01T12:37:27Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-08-01T12:37:27Z",
+ "author_url": "https://github.com/Bhoomi-18",
+ "author_avatar": "https://avatars.githubusercontent.com/u/170606583?v=4"
+ },
+ {
+ "url": "https://github.com/adityakalburgi/Travel_ageny_website/pull/31",
+ "title": "Added confirmation on register",
+ "repo": "adityakalburgi/Travel_ageny_website",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-31T16:40:55Z",
+ "updated_at": "2025-08-01T12:39:04Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-08-01T12:38:48Z",
+ "author_url": "https://github.com/Bhoomi-18",
+ "author_avatar": "https://avatars.githubusercontent.com/u/170606583?v=4"
+ },
+ {
+ "url": "https://github.com/sachiva1/sachiva/pull/70",
+ "title": "Improving navbar UI",
+ "repo": "sachiva1/sachiva",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-31T18:09:31Z",
+ "updated_at": "2025-08-01T03:15:51Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-08-01T03:14:50Z",
+ "author_url": "https://github.com/Bhoomi-18",
+ "author_avatar": "https://avatars.githubusercontent.com/u/170606583?v=4"
+ },
+ {
+ "url": "https://github.com/vaibhavrajharsh/Music-Player/pull/45",
+ "title": "Enhanced sidebar UI",
+ "repo": "vaibhavrajharsh/Music-Player",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-08-01T06:21:03Z",
+ "updated_at": "2025-08-01T11:22:13Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-08-01T11:21:36Z",
+ "author_url": "https://github.com/Bhoomi-18",
+ "author_avatar": "https://avatars.githubusercontent.com/u/170606583?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/170606583?v=4",
+ "profile_url": "https://github.com/Bhoomi-18"
+ },
+ "AnushkaChanda": {
+ "expectedPoints": 15,
+ "currentPoints": 15,
+ "levels": {
+ "level1": 2,
+ "level2": 1,
+ "level3": 0
+ },
+ "prs": [
+ {
+ "url": "https://github.com/ashish-um/pocketLIFE/pull/15",
+ "title": "Created CONTRIBUTE.md",
+ "repo": "ashish-um/pocketLIFE",
+ "level": "level2",
+ "points": 7,
+ "created_at": "2025-07-31T19:54:02Z",
+ "updated_at": "2025-08-03T05:30:15Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-08-03T03:53:33Z",
+ "author_url": "https://github.com/AnushkaChanda",
+ "author_avatar": "https://avatars.githubusercontent.com/u/202447664?v=4"
+ },
+ {
+ "url": "https://github.com/harsh3dev/DevMatchups/pull/150",
+ "title": "Added the CodeOfConduct.md file",
+ "repo": "harsh3dev/DevMatchups",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-30T16:10:22Z",
+ "updated_at": "2025-08-02T12:43:51Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-31T05:42:14Z",
+ "author_url": "https://github.com/AnushkaChanda",
+ "author_avatar": "https://avatars.githubusercontent.com/u/202447664?v=4"
+ },
+ {
+ "url": "https://github.com/Himanshusk1/GDF/pull/11",
+ "title": "Updated README.md file",
+ "repo": "Himanshusk1/GDF",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-28T19:02:09Z",
+ "updated_at": "2025-07-31T06:12:13Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-31T06:12:13Z",
+ "author_url": "https://github.com/AnushkaChanda",
+ "author_avatar": "https://avatars.githubusercontent.com/u/202447664?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/202447664?v=4",
+ "profile_url": "https://github.com/AnushkaChanda"
+ },
+ "Samruddhig-sandeep": {
+ "expectedPoints": 15,
+ "currentPoints": 15,
+ "levels": {
+ "level1": 2,
+ "level2": 1,
+ "level3": 0
+ },
+ "prs": [
+ {
+ "url": "https://github.com/BDutta18/BodyCraft-Gym/pull/44",
+ "title": "Update: README content and added screenshots folder to assets",
+ "repo": "BDutta18/BodyCraft-Gym",
+ "level": null,
+ "points": 0,
+ "created_at": "2025-07-29T18:03:37Z",
+ "updated_at": "2025-07-29T20:33:55Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-29T20:33:55Z",
+ "author_url": "https://github.com/Samruddhig-sandeep",
+ "author_avatar": "https://avatars.githubusercontent.com/u/182474796?v=4"
+ },
+ {
+ "url": "https://github.com/gyanshankar1708/GrowCraft/pull/6",
+ "title": "Added Back to Top button with smooth scroll",
+ "repo": "gyanshankar1708/GrowCraft",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-28T11:45:27Z",
+ "updated_at": "2025-07-28T14:06:49Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-28T13:59:35Z",
+ "author_url": "https://github.com/Samruddhig-sandeep",
+ "author_avatar": "https://avatars.githubusercontent.com/u/182474796?v=4"
+ },
+ {
+ "url": "https://github.com/Varshitha713/first-contrib-placement/pull/15",
+ "title": "Add Back to Top button with styling and functionality",
+ "repo": "Varshitha713/first-contrib-placement",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-28T13:12:02Z",
+ "updated_at": "2025-07-30T06:30:39Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-28T13:23:15Z",
+ "author_url": "https://github.com/Samruddhig-sandeep",
+ "author_avatar": "https://avatars.githubusercontent.com/u/182474796?v=4"
+ },
+ {
+ "url": "https://github.com/SurajSG23/Job-Portal/pull/6",
+ "title": " Update README + Add screenshots folder with UI previews",
+ "repo": "SurajSG23/Job-Portal",
+ "level": "level2",
+ "points": 7,
+ "created_at": "2025-07-27T18:51:53Z",
+ "updated_at": "2025-07-27T18:59:13Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-27T18:57:37Z",
+ "author_url": "https://github.com/Samruddhig-sandeep",
+ "author_avatar": "https://avatars.githubusercontent.com/u/182474796?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/182474796?v=4",
+ "profile_url": "https://github.com/Samruddhig-sandeep"
+ },
+ "dewanshhh24": {
+ "expectedPoints": 15,
+ "currentPoints": 15,
+ "levels": {
+ "level1": 2,
+ "level2": 1,
+ "level3": 0
+ },
+ "prs": [
+ {
+ "url": "https://github.com/Premkolte/AnimateHub/pull/255",
+ "title": "feat: add back-to-top button and scroll-based chatbot animation",
+ "repo": "Premkolte/AnimateHub",
+ "level": "level2",
+ "points": 7,
+ "created_at": "2025-08-03T06:52:04Z",
+ "updated_at": "2025-08-03T07:03:07Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-08-03T07:03:07Z",
+ "author_url": "https://github.com/dewanshhh24",
+ "author_avatar": "https://avatars.githubusercontent.com/u/163340981?v=4"
+ },
+ {
+ "url": "https://github.com/SandeepVashishtha/Eventra/pull/26",
+ "title": "feat: updated footer with accurate and consistent social icons",
+ "repo": "SandeepVashishtha/Eventra",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-08-01T23:56:33Z",
+ "updated_at": "2025-08-02T04:13:03Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-08-02T04:13:03Z",
+ "author_url": "https://github.com/dewanshhh24",
+ "author_avatar": "https://avatars.githubusercontent.com/u/163340981?v=4"
+ },
+ {
+ "url": "https://github.com/Shubhashish-Chakraborty/prepnerdz/pull/72",
+ "title": "fix: resolve uneven box heights on Features section",
+ "repo": "Shubhashish-Chakraborty/prepnerdz",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-08-02T10:46:34Z",
+ "updated_at": "2025-08-02T11:02:31Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-08-02T10:55:59Z",
+ "author_url": "https://github.com/dewanshhh24",
+ "author_avatar": "https://avatars.githubusercontent.com/u/163340981?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/163340981?v=4",
+ "profile_url": "https://github.com/dewanshhh24"
+ },
+ "ibhoomii": {
+ "expectedPoints": 14,
+ "currentPoints": 14,
+ "levels": {
+ "level1": 0,
+ "level2": 2,
+ "level3": 0
+ },
+ "prs": [
+ {
+ "url": "https://github.com/Creators-Space/Creators-Space/pull/83",
+ "title": "Created internship page",
+ "repo": "Creators-Space/Creators-Space",
+ "level": "level2",
+ "points": 7,
+ "created_at": "2025-07-30T15:27:38Z",
+ "updated_at": "2025-07-30T17:50:39Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-30T17:50:39Z",
+ "author_url": "https://github.com/ibhoomii",
+ "author_avatar": "https://avatars.githubusercontent.com/u/194399407?v=4"
+ },
+ {
+ "url": "https://github.com/SurajSG23/Job-Portal/pull/21",
+ "title": "Added skill recommendation with autocomplete",
+ "repo": "SurajSG23/Job-Portal",
+ "level": "level2",
+ "points": 7,
+ "created_at": "2025-07-28T16:28:23Z",
+ "updated_at": "2025-07-29T10:58:19Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-29T10:57:49Z",
+ "author_url": "https://github.com/ibhoomii",
+ "author_avatar": "https://avatars.githubusercontent.com/u/194399407?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/194399407?v=4",
+ "profile_url": "https://github.com/ibhoomii"
+ },
+ "sejaldhanve": {
+ "expectedPoints": 14,
+ "currentPoints": 14,
+ "levels": {
+ "level1": 1,
+ "level2": 0,
+ "level3": 1
+ },
+ "prs": [
+ {
+ "url": "https://github.com/gyanshankar1708/GrowCraft/pull/79",
+ "title": "🔧 Updated footer layout: centered 'About' and horizontal social links",
+ "repo": "gyanshankar1708/GrowCraft",
+ "level": "level3",
+ "points": 10,
+ "created_at": "2025-08-01T18:17:54Z",
+ "updated_at": "2025-08-02T18:40:21Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-08-01T19:16:31Z",
+ "author_url": "https://github.com/sejaldhanve",
+ "author_avatar": "https://avatars.githubusercontent.com/u/185781138?v=4"
+ },
+ {
+ "url": "https://github.com/gyanshankar1708/GrowCraft/pull/72",
+ "title": "UI Enhancement: Scroll-to-Top Button Redesigned for Better UX",
+ "repo": "gyanshankar1708/GrowCraft",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-08-01T14:09:13Z",
+ "updated_at": "2025-08-01T18:05:09Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-08-01T18:05:09Z",
+ "author_url": "https://github.com/sejaldhanve",
+ "author_avatar": "https://avatars.githubusercontent.com/u/185781138?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/185781138?v=4",
+ "profile_url": "https://github.com/sejaldhanve"
+ },
+ "Pallavi-kr6": {
+ "expectedPoints": 14,
+ "currentPoints": 14,
+ "levels": {
+ "level1": 1,
+ "level2": 0,
+ "level3": 1
+ },
+ "prs": [
+ {
+ "url": "https://github.com/gyanshankar1708/GrowCraft/pull/76",
+ "title": "Added Blog section (#45)",
+ "repo": "gyanshankar1708/GrowCraft",
+ "level": "level3",
+ "points": 10,
+ "created_at": "2025-08-01T17:55:45Z",
+ "updated_at": "2025-08-01T18:06:05Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-08-01T18:06:05Z",
+ "author_url": "https://github.com/Pallavi-kr6",
+ "author_avatar": "https://avatars.githubusercontent.com/u/175379903?v=4"
+ },
+ {
+ "url": "https://github.com/gyanshankar1708/GrowCraft/pull/57",
+ "title": "improved navbar",
+ "repo": "gyanshankar1708/GrowCraft",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-31T16:08:59Z",
+ "updated_at": "2025-08-01T03:12:51Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-08-01T03:12:40Z",
+ "author_url": "https://github.com/Pallavi-kr6",
+ "author_avatar": "https://avatars.githubusercontent.com/u/175379903?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/175379903?v=4",
+ "profile_url": "https://github.com/Pallavi-kr6"
+ },
+ "ShreyasN707": {
+ "expectedPoints": 14,
+ "currentPoints": 14,
+ "levels": {
+ "level1": 1,
+ "level2": 0,
+ "level3": 1
+ },
+ "prs": [
+ {
+ "url": "https://github.com/gyanshankar1708/GrowCraft/pull/67",
+ "title": "Darkmode Button Alignment",
+ "repo": "gyanshankar1708/GrowCraft",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-08-01T06:50:04Z",
+ "updated_at": "2025-08-01T18:03:40Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-08-01T18:03:40Z",
+ "author_url": "https://github.com/ShreyasN707",
+ "author_avatar": "https://avatars.githubusercontent.com/u/103553912?v=4"
+ },
+ {
+ "url": "https://github.com/gyanshankar1708/GrowCraft/pull/62",
+ "title": "Darkmode added to contact page",
+ "repo": "gyanshankar1708/GrowCraft",
+ "level": "level3",
+ "points": 10,
+ "created_at": "2025-07-31T18:35:44Z",
+ "updated_at": "2025-08-01T03:14:43Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-08-01T03:14:43Z",
+ "author_url": "https://github.com/ShreyasN707",
+ "author_avatar": "https://avatars.githubusercontent.com/u/103553912?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/103553912?v=4",
+ "profile_url": "https://github.com/ShreyasN707"
+ },
+ "JaganParida": {
+ "expectedPoints": 14,
+ "currentPoints": 14,
+ "levels": {
+ "level1": 0,
+ "level2": 2,
+ "level3": 0
+ },
+ "prs": [
+ {
+ "url": "https://github.com/harsh3dev/DevMatchups/pull/156",
+ "title": "Updated footer UI for better layout and mobile responsiveness",
+ "repo": "harsh3dev/DevMatchups",
+ "level": "level2",
+ "points": 7,
+ "created_at": "2025-08-01T19:48:43Z",
+ "updated_at": "2025-08-02T15:50:59Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-08-02T15:21:14Z",
+ "author_url": "https://github.com/JaganParida",
+ "author_avatar": "https://avatars.githubusercontent.com/u/184925311?v=4"
+ },
+ {
+ "url": "https://github.com/coder-writes/devTinder-frontend-main/pull/10",
+ "title": "Fix: Make navbar responsive",
+ "repo": "coder-writes/devTinder-frontend-main",
+ "level": "level2",
+ "points": 7,
+ "created_at": "2025-08-01T19:10:26Z",
+ "updated_at": "2025-08-02T10:58:31Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-08-02T10:57:31Z",
+ "author_url": "https://github.com/JaganParida",
+ "author_avatar": "https://avatars.githubusercontent.com/u/184925311?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/184925311?v=4",
+ "profile_url": "https://github.com/JaganParida"
+ },
+ "sandhya-tomar": {
+ "expectedPoints": 14,
+ "currentPoints": 14,
+ "levels": {
+ "level1": 0,
+ "level2": 2,
+ "level3": 0
+ },
+ "prs": [
+ {
+ "url": "https://github.com/piyushpatelcodes/gssocFAQ-Bot/pull/33",
+ "title": "Updated components.js",
+ "repo": "piyushpatelcodes/gssocFAQ-Bot",
+ "level": "level2",
+ "points": 7,
+ "created_at": "2025-07-26T14:48:34Z",
+ "updated_at": "2025-07-26T17:55:49Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-26T17:51:12Z",
+ "author_url": "https://github.com/sandhya-tomar",
+ "author_avatar": "https://avatars.githubusercontent.com/u/216150565?v=4"
+ },
+ {
+ "url": "https://github.com/piyushpatelcodes/gssocFAQ-Bot/pull/31",
+ "title": "Added FAQ section to homepage using faqs.json",
+ "repo": "piyushpatelcodes/gssocFAQ-Bot",
+ "level": "level2",
+ "points": 7,
+ "created_at": "2025-07-26T10:25:32Z",
+ "updated_at": "2025-07-26T17:57:23Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-26T17:45:33Z",
+ "author_url": "https://github.com/sandhya-tomar",
+ "author_avatar": "https://avatars.githubusercontent.com/u/216150565?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/216150565?v=4",
+ "profile_url": "https://github.com/sandhya-tomar"
+ },
+ "lohi-cell": {
+ "expectedPoints": 14,
+ "currentPoints": 14,
+ "levels": {
+ "level1": 0,
+ "level2": 2,
+ "level3": 0
+ },
+ "prs": [
+ {
+ "url": "https://github.com/rajdeep13-coder/Resume-Generator/pull/41",
+ "title": "Add Input Field Validation for Resume Details ",
+ "repo": "rajdeep13-coder/Resume-Generator",
+ "level": "level2",
+ "points": 7,
+ "created_at": "2025-07-28T16:49:33Z",
+ "updated_at": "2025-07-28T17:00:54Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-28T17:00:54Z",
+ "author_url": "https://github.com/lohi-cell",
+ "author_avatar": "https://avatars.githubusercontent.com/u/178390828?v=4"
+ },
+ {
+ "url": "https://github.com/rajdeep13-coder/Resume-Generator/pull/30",
+ "title": "Implement Live Character Count for Professional Summary",
+ "repo": "rajdeep13-coder/Resume-Generator",
+ "level": "level2",
+ "points": 7,
+ "created_at": "2025-07-28T12:29:41Z",
+ "updated_at": "2025-07-28T13:28:03Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-28T13:26:51Z",
+ "author_url": "https://github.com/lohi-cell",
+ "author_avatar": "https://avatars.githubusercontent.com/u/178390828?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/178390828?v=4",
+ "profile_url": "https://github.com/lohi-cell"
+ },
+ "Trailblazer09": {
+ "expectedPoints": 14,
+ "currentPoints": 14,
+ "levels": {
+ "level1": 0,
+ "level2": 2,
+ "level3": 0
+ },
+ "prs": [
+ {
+ "url": "https://github.com/rajdeep13-coder/Resume-Generator/pull/21",
+ "title": "Fix: Added dynamic dark/light theme support",
+ "repo": "rajdeep13-coder/Resume-Generator",
+ "level": "level2",
+ "points": 7,
+ "created_at": "2025-07-28T02:52:33Z",
+ "updated_at": "2025-07-28T04:08:56Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-28T02:55:28Z",
+ "author_url": "https://github.com/Trailblazer09",
+ "author_avatar": "https://avatars.githubusercontent.com/u/218467607?v=4"
+ },
+ {
+ "url": "https://github.com/SandeepVashishtha/Eventra/pull/5",
+ "title": "Feat: Implement full dark/light theme support (#1)",
+ "repo": "SandeepVashishtha/Eventra",
+ "level": "level2",
+ "points": 7,
+ "created_at": "2025-07-28T14:41:37Z",
+ "updated_at": "2025-07-29T17:50:14Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-28T14:59:12Z",
+ "author_url": "https://github.com/Trailblazer09",
+ "author_avatar": "https://avatars.githubusercontent.com/u/218467607?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/218467607?v=4",
+ "profile_url": "https://github.com/Trailblazer09"
+ },
+ "Atomic-Shadow7002": {
+ "expectedPoints": 14,
+ "currentPoints": 14,
+ "levels": {
+ "level1": 1,
+ "level2": 0,
+ "level3": 1
+ },
+ "prs": [
+ {
+ "url": "https://github.com/Rucha-Ambaliya/PrivGPT-Studio/pull/25",
+ "title": "Docs/updtae env var set up guideline",
+ "repo": "Rucha-Ambaliya/PrivGPT-Studio",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-08-01T10:29:38Z",
+ "updated_at": "2025-08-01T10:36:22Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-08-01T10:34:15Z",
+ "author_url": "https://github.com/Atomic-Shadow7002",
+ "author_avatar": "https://avatars.githubusercontent.com/u/191123414?v=4"
+ },
+ {
+ "url": "https://github.com/Rucha-Ambaliya/PrivGPT-Studio/pull/17",
+ "title": "FEATURE: add privacy policy page",
+ "repo": "Rucha-Ambaliya/PrivGPT-Studio",
+ "level": "level3",
+ "points": 10,
+ "created_at": "2025-07-29T04:09:13Z",
+ "updated_at": "2025-08-01T10:30:04Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-29T10:40:57Z",
+ "author_url": "https://github.com/Atomic-Shadow7002",
+ "author_avatar": "https://avatars.githubusercontent.com/u/191123414?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/191123414?v=4",
+ "profile_url": "https://github.com/Atomic-Shadow7002"
+ },
+ "sneha-tech03": {
+ "expectedPoints": 14,
+ "currentPoints": 14,
+ "levels": {
+ "level1": 0,
+ "level2": 2,
+ "level3": 0
+ },
+ "prs": [
+ {
+ "url": "https://github.com/shuvadeepmondal/HacKerZGuiDe/pull/86",
+ "title": "Style change in about us",
+ "repo": "shuvadeepmondal/HacKerZGuiDe",
+ "level": "level2",
+ "points": 7,
+ "created_at": "2025-08-02T06:32:40Z",
+ "updated_at": "2025-08-02T12:19:50Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-08-02T12:19:49Z",
+ "author_url": "https://github.com/sneha-tech03",
+ "author_avatar": "https://avatars.githubusercontent.com/u/194957951?v=4"
+ },
+ {
+ "url": "https://github.com/sachiva1/sachiva/pull/98",
+ "title": "Modified Client Section",
+ "repo": "sachiva1/sachiva",
+ "level": "level2",
+ "points": 7,
+ "created_at": "2025-08-02T20:10:48Z",
+ "updated_at": "2025-08-03T06:50:54Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-08-03T06:49:47Z",
+ "author_url": "https://github.com/sneha-tech03",
+ "author_avatar": "https://avatars.githubusercontent.com/u/194957951?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/194957951?v=4",
+ "profile_url": "https://github.com/sneha-tech03"
+ },
+ "Likitha-projects": {
+ "expectedPoints": 18,
+ "currentPoints": 14,
+ "levels": {
+ "level1": 1,
+ "level2": 2,
+ "level3": 0
+ },
+ "prs": [
+ {
+ "url": "https://github.com/sachiva1/sachiva/pull/69",
+ "title": "Implemented dark mode in services page, fixed dark mode visibility issues",
+ "repo": "sachiva1/sachiva",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-31T17:43:55Z",
+ "updated_at": "2025-08-01T02:50:39Z",
+ "state": "closed",
+ "merged": false,
+ "merged_at": null,
+ "author_url": "https://github.com/Likitha-projects",
+ "author_avatar": "https://avatars.githubusercontent.com/u/198581292?v=4"
+ },
+ {
+ "url": "https://github.com/sachiva1/sachiva/pull/28",
+ "title": "Enhanced Contact Us section, improved Services cards UI and hover effects",
+ "repo": "sachiva1/sachiva",
+ "level": "level2",
+ "points": 7,
+ "created_at": "2025-07-30T13:35:40Z",
+ "updated_at": "2025-07-31T09:53:58Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-30T17:17:31Z",
+ "author_url": "https://github.com/Likitha-projects",
+ "author_avatar": "https://avatars.githubusercontent.com/u/198581292?v=4"
+ },
+ {
+ "url": "https://github.com/vaibhavrajharsh/Music-Player/pull/15",
+ "title": "Improved footer controls with hover labels , Fixed Repeat/Shuffle and added Light/Dark theme toggle",
+ "repo": "vaibhavrajharsh/Music-Player",
+ "level": "level2",
+ "points": 7,
+ "created_at": "2025-07-28T20:44:03Z",
+ "updated_at": "2025-07-31T12:49:31Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-29T09:03:20Z",
+ "author_url": "https://github.com/Likitha-projects",
+ "author_avatar": "https://avatars.githubusercontent.com/u/198581292?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/198581292?v=4",
+ "profile_url": "https://github.com/Likitha-projects"
+ },
+ "KeerthiSwarna08": {
+ "expectedPoints": 18,
+ "currentPoints": 14,
+ "levels": {
+ "level1": 1,
+ "level2": 2,
+ "level3": 0
+ },
+ "prs": [
+ {
+ "url": "https://github.com/sachiva1/sachiva/pull/66",
+ "title": "Fix: Restored lost FAQ section in service.html (#65) ",
+ "repo": "sachiva1/sachiva",
+ "level": "level2",
+ "points": 7,
+ "created_at": "2025-07-31T16:19:02Z",
+ "updated_at": "2025-07-31T16:50:27Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-31T16:41:22Z",
+ "author_url": "https://github.com/KeerthiSwarna08",
+ "author_avatar": "https://avatars.githubusercontent.com/u/147834938?v=4"
+ },
+ {
+ "url": "https://github.com/sachiva1/sachiva/pull/53",
+ "title": "Fix: Add missing dark mode toggle logic to Service page (#35).",
+ "repo": "sachiva1/sachiva",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-31T10:30:32Z",
+ "updated_at": "2025-07-31T15:27:46Z",
+ "state": "closed",
+ "merged": false,
+ "merged_at": null,
+ "author_url": "https://github.com/KeerthiSwarna08",
+ "author_avatar": "https://avatars.githubusercontent.com/u/147834938?v=4"
+ },
+ {
+ "url": "https://github.com/sachiva1/sachiva/pull/43",
+ "title": "Added FAQ's section to service page (#26)",
+ "repo": "sachiva1/sachiva",
+ "level": "level2",
+ "points": 7,
+ "created_at": "2025-07-31T04:03:14Z",
+ "updated_at": "2025-07-31T09:21:55Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-31T09:21:55Z",
+ "author_url": "https://github.com/KeerthiSwarna08",
+ "author_avatar": "https://avatars.githubusercontent.com/u/147834938?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/147834938?v=4",
+ "profile_url": "https://github.com/KeerthiSwarna08"
+ },
+ "riya751885": {
+ "expectedPoints": 12,
+ "currentPoints": 12,
+ "levels": {
+ "level1": 3,
+ "level2": 0,
+ "level3": 0
+ },
+ "prs": [
+ {
+ "url": "https://github.com/Swastik007sharma/CampusTrack/pull/22",
+ "title": "Added favicon to website ",
+ "repo": "Swastik007sharma/CampusTrack",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-31T16:20:07Z",
+ "updated_at": "2025-08-03T05:43:38Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-08-01T19:11:33Z",
+ "author_url": "https://github.com/riya751885",
+ "author_avatar": "https://avatars.githubusercontent.com/u/122119293?v=4"
+ },
+ {
+ "url": "https://github.com/prasoonk1204/BreatheEasy/pull/14",
+ "title": "Added favicon to improve branding and user experience",
+ "repo": "prasoonk1204/BreatheEasy",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-31T15:58:05Z",
+ "updated_at": "2025-07-31T16:05:08Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-31T16:02:29Z",
+ "author_url": "https://github.com/riya751885",
+ "author_avatar": "https://avatars.githubusercontent.com/u/122119293?v=4"
+ },
+ {
+ "url": "https://github.com/Pujan-sarkar/FARMLOC/pull/34",
+ "title": "🔧 Fix: Add Favicon to Website (#19)",
+ "repo": "Pujan-sarkar/FARMLOC",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-08-03T06:30:48Z",
+ "updated_at": "2025-08-03T07:52:21Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-08-03T07:11:45Z",
+ "author_url": "https://github.com/riya751885",
+ "author_avatar": "https://avatars.githubusercontent.com/u/122119293?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/122119293?v=4",
+ "profile_url": "https://github.com/riya751885"
+ },
+ "SanjeevDeori": {
+ "expectedPoints": 12,
+ "currentPoints": 12,
+ "levels": {
+ "level1": 3,
+ "level2": 0,
+ "level3": 0
+ },
+ "prs": [
+ {
+ "url": "https://github.com/Creators-Space/Creators-Space/pull/43",
+ "title": "Revert the unwanted commit and align the button with the project ui",
+ "repo": "Creators-Space/Creators-Space",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-29T03:37:15Z",
+ "updated_at": "2025-07-29T14:08:00Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-29T14:07:59Z",
+ "author_url": "https://github.com/SanjeevDeori",
+ "author_avatar": "https://avatars.githubusercontent.com/u/192771214?v=4"
+ },
+ {
+ "url": "https://github.com/Creators-Space/Creators-Space/pull/19",
+ "title": "Replace Lorem Ipsum with Actual Testimonial Data",
+ "repo": "Creators-Space/Creators-Space",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-28T07:20:19Z",
+ "updated_at": "2025-07-28T09:03:13Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-28T09:01:06Z",
+ "author_url": "https://github.com/SanjeevDeori",
+ "author_avatar": "https://avatars.githubusercontent.com/u/192771214?v=4"
+ },
+ {
+ "url": "https://github.com/Creators-Space/Creators-Space/pull/15",
+ "title": "docs: Add GSSoC'25 section to README and Added contributing guidelines",
+ "repo": "Creators-Space/Creators-Space",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-28T04:45:41Z",
+ "updated_at": "2025-07-28T06:27:32Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-28T06:27:32Z",
+ "author_url": "https://github.com/SanjeevDeori",
+ "author_avatar": "https://avatars.githubusercontent.com/u/192771214?v=4"
+ },
+ {
+ "url": "https://github.com/rajdeep13-coder/Resume-Generator/pull/13",
+ "title": "docs: Add CONTRIBUTING.md file for new contributors",
+ "repo": "rajdeep13-coder/Resume-Generator",
+ "level": null,
+ "points": 0,
+ "created_at": "2025-07-27T17:41:34Z",
+ "updated_at": "2025-07-28T04:27:48Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-27T17:43:47Z",
+ "author_url": "https://github.com/SanjeevDeori",
+ "author_avatar": "https://avatars.githubusercontent.com/u/192771214?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/192771214?v=4",
+ "profile_url": "https://github.com/SanjeevDeori"
+ },
+ "mohammadanas51": {
+ "expectedPoints": 12,
+ "currentPoints": 12,
+ "levels": {
+ "level1": 3,
+ "level2": 0,
+ "level3": 0
+ },
+ "prs": [
+ {
+ "url": "https://github.com/Shubhashish-Chakraborty/prepnerdz/pull/63",
+ "title": "Feat: Add Confirm Password input field to the Signup Page",
+ "repo": "Shubhashish-Chakraborty/prepnerdz",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-08-01T17:19:31Z",
+ "updated_at": "2025-08-01T19:22:36Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-08-01T19:22:36Z",
+ "author_url": "https://github.com/mohammadanas51",
+ "author_avatar": "https://avatars.githubusercontent.com/u/132257373?v=4"
+ },
+ {
+ "url": "https://github.com/Shubhashish-Chakraborty/prepnerdz/pull/47",
+ "title": "Feat/redesign 404 page",
+ "repo": "Shubhashish-Chakraborty/prepnerdz",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-31T10:54:13Z",
+ "updated_at": "2025-07-31T19:15:03Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-31T11:23:01Z",
+ "author_url": "https://github.com/mohammadanas51",
+ "author_avatar": "https://avatars.githubusercontent.com/u/132257373?v=4"
+ },
+ {
+ "url": "https://github.com/Shubhashish-Chakraborty/prepnerdz/pull/42",
+ "title": "Feat/add testimonials page",
+ "repo": "Shubhashish-Chakraborty/prepnerdz",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-31T06:30:19Z",
+ "updated_at": "2025-07-31T19:16:39Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-31T08:49:39Z",
+ "author_url": "https://github.com/mohammadanas51",
+ "author_avatar": "https://avatars.githubusercontent.com/u/132257373?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/132257373?v=4",
+ "profile_url": "https://github.com/mohammadanas51"
+ },
+ "worksofsayman": {
+ "expectedPoints": 12,
+ "currentPoints": 12,
+ "levels": {
+ "level1": 3,
+ "level2": 0,
+ "level3": 0
+ },
+ "prs": [
+ {
+ "url": "https://github.com/Shubhashish-Chakraborty/prepnerdz/pull/41",
+ "title": "Improve: review area in footer with counter and loopscroll animations",
+ "repo": "Shubhashish-Chakraborty/prepnerdz",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-30T22:41:53Z",
+ "updated_at": "2025-07-31T19:16:57Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-31T06:08:55Z",
+ "author_url": "https://github.com/worksofsayman",
+ "author_avatar": "https://avatars.githubusercontent.com/u/135053354?v=4"
+ },
+ {
+ "url": "https://github.com/Shubhashish-Chakraborty/prepnerdz/pull/39",
+ "title": "Fix: added missing GitHub icon in nihal's profile card UI",
+ "repo": "Shubhashish-Chakraborty/prepnerdz",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-30T21:12:48Z",
+ "updated_at": "2025-07-31T19:17:34Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-31T06:08:56Z",
+ "author_url": "https://github.com/worksofsayman",
+ "author_avatar": "https://avatars.githubusercontent.com/u/135053354?v=4"
+ },
+ {
+ "url": "https://github.com/Shubhashish-Chakraborty/prepnerdz/pull/36",
+ "title": "feat: Enhance ARIA and accessibility on landing page",
+ "repo": "Shubhashish-Chakraborty/prepnerdz",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-30T20:43:23Z",
+ "updated_at": "2025-07-31T19:17:53Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-31T06:08:56Z",
+ "author_url": "https://github.com/worksofsayman",
+ "author_avatar": "https://avatars.githubusercontent.com/u/135053354?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/135053354?v=4",
+ "profile_url": "https://github.com/worksofsayman"
+ },
+ "Jayesh-Prajapati9": {
+ "expectedPoints": 11,
+ "currentPoints": 11,
+ "levels": {
+ "level1": 1,
+ "level2": 1,
+ "level3": 0
+ },
+ "prs": [
+ {
+ "url": "https://github.com/Coden-inja/alchEmaiLyst/pull/18",
+ "title": "Refactor(types): centralize interfaces and improve type safety across components and services",
+ "repo": "Coden-inja/alchEmaiLyst",
+ "level": "level2",
+ "points": 7,
+ "created_at": "2025-07-31T20:34:38Z",
+ "updated_at": "2025-08-02T12:44:32Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-08-02T12:44:32Z",
+ "author_url": "https://github.com/Jayesh-Prajapati9",
+ "author_avatar": "https://avatars.githubusercontent.com/u/156836276?v=4"
+ },
+ {
+ "url": "https://github.com/Coden-inja/alchEmaiLyst/pull/10",
+ "title": "docs: improve contributing and structure docs, remove duplicate getting started steps",
+ "repo": "Coden-inja/alchEmaiLyst",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-30T20:18:37Z",
+ "updated_at": "2025-07-31T04:04:49Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-31T04:04:15Z",
+ "author_url": "https://github.com/Jayesh-Prajapati9",
+ "author_avatar": "https://avatars.githubusercontent.com/u/156836276?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/156836276?v=4",
+ "profile_url": "https://github.com/Jayesh-Prajapati9"
+ },
+ "sudharshanpaul": {
+ "expectedPoints": 11,
+ "currentPoints": 11,
+ "levels": {
+ "level1": 1,
+ "level2": 1,
+ "level3": 0
+ },
+ "prs": [
+ {
+ "url": "https://github.com/Skrache/crisisboard/pull/33",
+ "title": "UI UX modifications ",
+ "repo": "Ambit-ion/crisisboard",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-08-01T13:15:32Z",
+ "updated_at": "2025-08-01T13:32:58Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-08-01T13:26:06Z",
+ "author_url": "https://github.com/sudharshanpaul",
+ "author_avatar": "https://avatars.githubusercontent.com/u/164482191?v=4"
+ },
+ {
+ "url": "https://github.com/Skrache/crisisboard/pull/23",
+ "title": "Added Dark - Light Theme toggle button and removed unnecessary files",
+ "repo": "Ambit-ion/crisisboard",
+ "level": "level2",
+ "points": 7,
+ "created_at": "2025-07-31T19:08:57Z",
+ "updated_at": "2025-08-02T15:52:39Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-31T19:20:07Z",
+ "author_url": "https://github.com/sudharshanpaul",
+ "author_avatar": "https://avatars.githubusercontent.com/u/164482191?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/164482191?v=4",
+ "profile_url": "https://github.com/sudharshanpaul"
+ },
+ "mehak2807": {
+ "expectedPoints": 11,
+ "currentPoints": 11,
+ "levels": {
+ "level1": 1,
+ "level2": 1,
+ "level3": 0
+ },
+ "prs": [
+ {
+ "url": "https://github.com/DevSyncx/DevSync/pull/19",
+ "title": "Added contact us form",
+ "repo": "DevSyncx/DevSync",
+ "level": "level2",
+ "points": 7,
+ "created_at": "2025-07-29T17:22:16Z",
+ "updated_at": "2025-07-30T18:30:16Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-30T06:59:14Z",
+ "author_url": "https://github.com/mehak2807",
+ "author_avatar": "https://avatars.githubusercontent.com/u/181713537?v=4"
+ },
+ {
+ "url": "https://github.com/Varshitha713/CodeCanvas/pull/29",
+ "title": "Make the navbar links to navigate to the particular sectionNew",
+ "repo": "Varshitha713/CodeCanvas",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-30T15:16:05Z",
+ "updated_at": "2025-08-03T06:42:52Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-08-03T06:42:20Z",
+ "author_url": "https://github.com/mehak2807",
+ "author_avatar": "https://avatars.githubusercontent.com/u/181713537?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/181713537?v=4",
+ "profile_url": "https://github.com/mehak2807"
+ },
+ "kamnashm": {
+ "expectedPoints": 11,
+ "currentPoints": 11,
+ "levels": {
+ "level1": 1,
+ "level2": 1,
+ "level3": 0
+ },
+ "prs": [
+ {
+ "url": "https://github.com/Creators-Space/Creators-Space/pull/74",
+ "title": "Fix: dark mode resets on page load",
+ "repo": "Creators-Space/Creators-Space",
+ "level": "level2",
+ "points": 7,
+ "created_at": "2025-07-30T08:57:19Z",
+ "updated_at": "2025-07-30T09:42:30Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-30T09:42:30Z",
+ "author_url": "https://github.com/kamnashm",
+ "author_avatar": "https://avatars.githubusercontent.com/u/221152906?v=4"
+ },
+ {
+ "url": "https://github.com/rajdeep13-coder/Resume-Generator/pull/27",
+ "title": "Fix: input fields overflowing ",
+ "repo": "rajdeep13-coder/Resume-Generator",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-28T10:48:22Z",
+ "updated_at": "2025-07-28T11:01:16Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-28T11:00:54Z",
+ "author_url": "https://github.com/kamnashm",
+ "author_avatar": "https://avatars.githubusercontent.com/u/221152906?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/221152906?v=4",
+ "profile_url": "https://github.com/kamnashm"
+ },
+ "krishg2525": {
+ "expectedPoints": 11,
+ "currentPoints": 11,
+ "levels": {
+ "level1": 1,
+ "level2": 1,
+ "level3": 0
+ },
+ "prs": [
+ {
+ "url": "https://github.com/Creators-Space/Creators-Space/pull/69",
+ "title": "Bug fixed in footer contact",
+ "repo": "Creators-Space/Creators-Space",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-30T06:26:43Z",
+ "updated_at": "2025-07-30T09:23:08Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-30T09:17:20Z",
+ "author_url": "https://github.com/krishg2525",
+ "author_avatar": "https://avatars.githubusercontent.com/u/173074111?v=4"
+ },
+ {
+ "url": "https://github.com/Aqsa4066/netflixclone/pull/22",
+ "title": "Fix Footer Structure for Accessibility & SEO",
+ "repo": "Aqsa4066/netflixclone",
+ "level": "level2",
+ "points": 7,
+ "created_at": "2025-07-30T06:07:23Z",
+ "updated_at": "2025-07-31T14:33:20Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-30T11:28:33Z",
+ "author_url": "https://github.com/krishg2525",
+ "author_avatar": "https://avatars.githubusercontent.com/u/173074111?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/173074111?v=4",
+ "profile_url": "https://github.com/krishg2525"
+ },
+ "Riya-Raghav": {
+ "expectedPoints": 11,
+ "currentPoints": 11,
+ "levels": {
+ "level1": 1,
+ "level2": 1,
+ "level3": 0
+ },
+ "prs": [
+ {
+ "url": "https://github.com/Creators-Space/Creators-Space/pull/68",
+ "title": "Added a signup page by linking signup.html in index.html",
+ "repo": "Creators-Space/Creators-Space",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-30T03:08:17Z",
+ "updated_at": "2025-07-30T09:12:26Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-30T09:12:25Z",
+ "author_url": "https://github.com/Riya-Raghav",
+ "author_avatar": "https://avatars.githubusercontent.com/u/178502376?v=4"
+ },
+ {
+ "url": "https://github.com/Creators-Space/Creators-Space/pull/42",
+ "title": " Implement login page UI and add login.html",
+ "repo": "Creators-Space/Creators-Space",
+ "level": "level2",
+ "points": 7,
+ "created_at": "2025-07-29T03:25:51Z",
+ "updated_at": "2025-07-29T14:15:07Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-29T14:15:07Z",
+ "author_url": "https://github.com/Riya-Raghav",
+ "author_avatar": "https://avatars.githubusercontent.com/u/178502376?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/178502376?v=4",
+ "profile_url": "https://github.com/Riya-Raghav"
+ },
+ "DivyaJain-DataAnalyst": {
+ "expectedPoints": 11,
+ "currentPoints": 11,
+ "levels": {
+ "level1": 1,
+ "level2": 1,
+ "level3": 0
+ },
+ "prs": [
+ {
+ "url": "https://github.com/BDutta18/BodyCraft-Gym/pull/12",
+ "title": "Add CODE_OF_CONDUCT.md for GSSoC'25 contributions",
+ "repo": "BDutta18/BodyCraft-Gym",
+ "level": null,
+ "points": 0,
+ "created_at": "2025-07-28T06:23:42Z",
+ "updated_at": "2025-07-28T06:46:17Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-28T06:46:17Z",
+ "author_url": "https://github.com/DivyaJain-DataAnalyst",
+ "author_avatar": "https://avatars.githubusercontent.com/u/147162320?v=4"
+ },
+ {
+ "url": "https://github.com/OpenVoiceX/Voice-Marketing-Agent/pull/2",
+ "title": "Update README with visual enhancements and add CODE_OF_CONDUCT",
+ "repo": "OpenVoiceX/Voice-Marketing-Agent",
+ "level": "level2",
+ "points": 7,
+ "created_at": "2025-07-27T18:31:59Z",
+ "updated_at": "2025-08-01T20:09:20Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-28T07:01:11Z",
+ "author_url": "https://github.com/DivyaJain-DataAnalyst",
+ "author_avatar": "https://avatars.githubusercontent.com/u/147162320?v=4"
+ },
+ {
+ "url": "https://github.com/shuvadeepmondal/HacKerZGuiDe/pull/74",
+ "title": "📄 Added CODE OF CONDUCT for HacKerZGuiDe | Documentation GSSoC’25",
+ "repo": "shuvadeepmondal/HacKerZGuiDe",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-31T13:06:06Z",
+ "updated_at": "2025-07-31T18:04:08Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-31T18:04:08Z",
+ "author_url": "https://github.com/DivyaJain-DataAnalyst",
+ "author_avatar": "https://avatars.githubusercontent.com/u/147162320?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/147162320?v=4",
+ "profile_url": "https://github.com/DivyaJain-DataAnalyst"
+ },
+ "Amitrahar728": {
+ "expectedPoints": 11,
+ "currentPoints": 11,
+ "levels": {
+ "level1": 1,
+ "level2": 1,
+ "level3": 0
+ },
+ "prs": [
+ {
+ "url": "https://github.com/gyanshankar1708/GrowCraft/pull/87",
+ "title": "Fixed Graphic Design Component-box Size",
+ "repo": "gyanshankar1708/GrowCraft",
+ "level": "level2",
+ "points": 7,
+ "created_at": "2025-08-01T20:19:15Z",
+ "updated_at": "2025-08-02T18:42:45Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-08-02T18:42:45Z",
+ "author_url": "https://github.com/Amitrahar728",
+ "author_avatar": "https://avatars.githubusercontent.com/u/182059068?v=4"
+ },
+ {
+ "url": "https://github.com/Premkolte/AnimateHub/pull/248",
+ "title": "Dark mode text visibility in chatbot input",
+ "repo": "Premkolte/AnimateHub",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-08-01T14:24:38Z",
+ "updated_at": "2025-08-01T14:28:39Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-08-01T14:27:28Z",
+ "author_url": "https://github.com/Amitrahar728",
+ "author_avatar": "https://avatars.githubusercontent.com/u/182059068?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/182059068?v=4",
+ "profile_url": "https://github.com/Amitrahar728"
+ },
+ "raunak-iiitian": {
+ "expectedPoints": 11,
+ "currentPoints": 11,
+ "levels": {
+ "level1": 1,
+ "level2": 1,
+ "level3": 0
+ },
+ "prs": [
+ {
+ "url": "https://github.com/Varshitha713/first-contrib-placement/pull/52",
+ "title": "Added logo",
+ "repo": "Varshitha713/first-contrib-placement",
+ "level": "level2",
+ "points": 7,
+ "created_at": "2025-07-31T13:32:00Z",
+ "updated_at": "2025-08-03T05:08:21Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-08-03T05:07:37Z",
+ "author_url": "https://github.com/raunak-iiitian",
+ "author_avatar": "https://avatars.githubusercontent.com/u/179250267?v=4"
+ },
+ {
+ "url": "https://github.com/Varshitha713/first-contrib-placement/pull/32",
+ "title": "Improved dark-mode toggle",
+ "repo": "Varshitha713/first-contrib-placement",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-30T06:54:06Z",
+ "updated_at": "2025-07-30T07:51:32Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-30T07:51:12Z",
+ "author_url": "https://github.com/raunak-iiitian",
+ "author_avatar": "https://avatars.githubusercontent.com/u/179250267?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/179250267?v=4",
+ "profile_url": "https://github.com/raunak-iiitian"
+ },
+ "VrajVed": {
+ "expectedPoints": 11,
+ "currentPoints": 11,
+ "levels": {
+ "level1": 1,
+ "level2": 1,
+ "level3": 0
+ },
+ "prs": [
+ {
+ "url": "https://github.com/piyushpatelcodes/gssocFAQ-Bot/pull/32",
+ "title": "Quality of life updates",
+ "repo": "piyushpatelcodes/gssocFAQ-Bot",
+ "level": "level2",
+ "points": 7,
+ "created_at": "2025-07-26T10:40:00Z",
+ "updated_at": "2025-07-26T12:23:27Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-26T12:18:50Z",
+ "author_url": "https://github.com/VrajVed",
+ "author_avatar": "https://avatars.githubusercontent.com/u/118345746?v=4"
+ },
+ {
+ "url": "https://github.com/piyushpatelcodes/gssocFAQ-Bot/pull/2",
+ "title": "Added FAQ",
+ "repo": "piyushpatelcodes/gssocFAQ-Bot",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-22T18:39:06Z",
+ "updated_at": "2025-07-25T07:06:41Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-22T19:12:49Z",
+ "author_url": "https://github.com/VrajVed",
+ "author_avatar": "https://avatars.githubusercontent.com/u/118345746?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/118345746?v=4",
+ "profile_url": "https://github.com/VrajVed"
+ },
+ "Kashish23092004": {
+ "expectedPoints": 11,
+ "currentPoints": 11,
+ "levels": {
+ "level1": 1,
+ "level2": 1,
+ "level3": 0
+ },
+ "prs": [
+ {
+ "url": "https://github.com/prasoonk1204/BreatheEasy/pull/24",
+ "title": "Add subtle click animations to sidebar links for enhanced UI feedback (Issue #7)",
+ "repo": "prasoonk1204/BreatheEasy",
+ "level": "level2",
+ "points": 7,
+ "created_at": "2025-08-01T21:03:02Z",
+ "updated_at": "2025-08-02T08:38:11Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-08-02T08:35:34Z",
+ "author_url": "https://github.com/Kashish23092004",
+ "author_avatar": "https://avatars.githubusercontent.com/u/139871425?v=4"
+ },
+ {
+ "url": "https://github.com/sachiva1/sachiva/pull/76",
+ "title": "Enhance Owner Image for Visual Appeal #47",
+ "repo": "sachiva1/sachiva",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-08-01T16:49:38Z",
+ "updated_at": "2025-08-01T17:27:38Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-08-01T17:27:16Z",
+ "author_url": "https://github.com/Kashish23092004",
+ "author_avatar": "https://avatars.githubusercontent.com/u/139871425?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/139871425?v=4",
+ "profile_url": "https://github.com/Kashish23092004"
+ },
+ "abdey53": {
+ "expectedPoints": 11,
+ "currentPoints": 11,
+ "levels": {
+ "level1": 1,
+ "level2": 1,
+ "level3": 0
+ },
+ "prs": [
+ {
+ "url": "https://github.com/shandilya-rajnandini/DocAtHome/pull/23",
+ "title": "feat: ✨ Add Profile Picture Upload Functionality to Doctor Edit Profile Page",
+ "repo": "shandilya-rajnandini/DocAtHome",
+ "level": "level2",
+ "points": 7,
+ "created_at": "2025-07-29T13:34:36Z",
+ "updated_at": "2025-07-31T11:30:45Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-31T11:26:12Z",
+ "author_url": "https://github.com/abdey53",
+ "author_avatar": "https://avatars.githubusercontent.com/u/118340181?v=4"
+ },
+ {
+ "url": "https://github.com/shandilya-rajnandini/DocAtHome/pull/17",
+ "title": "Footer: Dynamic Year, Dark Mode & Social Icons",
+ "repo": "shandilya-rajnandini/DocAtHome",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-28T13:57:48Z",
+ "updated_at": "2025-07-29T14:50:32Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-29T09:17:47Z",
+ "author_url": "https://github.com/abdey53",
+ "author_avatar": "https://avatars.githubusercontent.com/u/118340181?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/118340181?v=4",
+ "profile_url": "https://github.com/abdey53"
+ },
+ "Nikhilesh002": {
+ "expectedPoints": 11,
+ "currentPoints": 11,
+ "levels": {
+ "level1": 1,
+ "level2": 1,
+ "level3": 0
+ },
+ "prs": [
+ {
+ "url": "https://github.com/vinit105/ideaVault/pull/11",
+ "title": "create workflow to check build errors",
+ "repo": "vinit105/ideaVault",
+ "level": "level2",
+ "points": 7,
+ "created_at": "2025-08-02T16:12:23Z",
+ "updated_at": "2025-08-02T16:26:19Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-08-02T16:19:35Z",
+ "author_url": "https://github.com/Nikhilesh002",
+ "author_avatar": "https://avatars.githubusercontent.com/u/134734453?v=4"
+ },
+ {
+ "url": "https://github.com/vinit105/ideaVault/pull/9",
+ "title": "Feature/add contributors automatically",
+ "repo": "vinit105/ideaVault",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-08-02T14:12:06Z",
+ "updated_at": "2025-08-02T15:20:08Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-08-02T15:20:08Z",
+ "author_url": "https://github.com/Nikhilesh002",
+ "author_avatar": "https://avatars.githubusercontent.com/u/134734453?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/134734453?v=4",
+ "profile_url": "https://github.com/Nikhilesh002"
+ },
+ "piyushpatelcodes": {
+ "expectedPoints": 10,
+ "currentPoints": 10,
+ "levels": {
+ "level1": 0,
+ "level2": 0,
+ "level3": 1
+ },
+ "prs": [
+ {
+ "url": "https://github.com/Coden-inja/alchEmaiLyst/pull/1",
+ "title": "updated landing page",
+ "repo": "Coden-inja/alchEmaiLyst",
+ "level": "level3",
+ "points": 10,
+ "created_at": "2025-07-22T22:42:58Z",
+ "updated_at": "2025-07-28T13:56:24Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-28T13:56:24Z",
+ "author_url": "https://github.com/piyushpatelcodes",
+ "author_avatar": "https://avatars.githubusercontent.com/u/136020845?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/136020845?v=4",
+ "profile_url": "https://github.com/piyushpatelcodes"
+ },
+ "SNishanth2202": {
+ "expectedPoints": 10,
+ "currentPoints": 10,
+ "levels": {
+ "level1": 0,
+ "level2": 0,
+ "level3": 1
+ },
+ "prs": [
+ {
+ "url": "https://github.com/Skrache/crisisboard/pull/36",
+ "title": "website deployed",
+ "repo": "Ambit-ion/crisisboard",
+ "level": "level3",
+ "points": 10,
+ "created_at": "2025-08-02T15:36:57Z",
+ "updated_at": "2025-08-02T15:51:22Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-08-02T15:50:58Z",
+ "author_url": "https://github.com/SNishanth2202",
+ "author_avatar": "https://avatars.githubusercontent.com/u/180951017?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/180951017?v=4",
+ "profile_url": "https://github.com/SNishanth2202"
+ },
+ "MohdWaqar98": {
+ "expectedPoints": 10,
+ "currentPoints": 10,
+ "levels": {
+ "level1": 0,
+ "level2": 0,
+ "level3": 1
+ },
+ "prs": [
+ {
+ "url": "https://github.com/ajaynegi45/Old-School-Game/pull/75",
+ "title": "Fix TypeScript and ESLint Errors in Memory Flip Card Game Page (#37)",
+ "repo": "ajaynegi45/Old-School-Game",
+ "level": "level3",
+ "points": 10,
+ "created_at": "2025-08-02T03:17:02Z",
+ "updated_at": "2025-08-02T05:51:11Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-08-02T03:58:06Z",
+ "author_url": "https://github.com/MohdWaqar98",
+ "author_avatar": "https://avatars.githubusercontent.com/u/98345819?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/98345819?v=4",
+ "profile_url": "https://github.com/MohdWaqar98"
+ },
+ "VEERESH069": {
+ "expectedPoints": 10,
+ "currentPoints": 10,
+ "levels": {
+ "level1": 0,
+ "level2": 0,
+ "level3": 1
+ },
+ "prs": [
+ {
+ "url": "https://github.com/akhileshverma92/hostlecartkanpur/pull/10",
+ "title": "added login with input validation, user sigin, and hashed password support.",
+ "repo": "akhileshverma92/hostlecartkanpur",
+ "level": null,
+ "points": 0,
+ "created_at": "2025-07-29T05:27:50Z",
+ "updated_at": "2025-08-01T07:26:46Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-29T06:28:57Z",
+ "author_url": "https://github.com/VEERESH069",
+ "author_avatar": "https://avatars.githubusercontent.com/u/116574954?v=4"
+ },
+ {
+ "url": "https://github.com/mr-rishikesh/DevConnect/pull/21",
+ "title": "Add Project Module: CRUD Setup with Pagination & Validation",
+ "repo": "mr-rishikesh/DevConnect",
+ "level": "level3",
+ "points": 10,
+ "created_at": "2025-07-31T10:09:55Z",
+ "updated_at": "2025-07-31T15:54:12Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-31T15:54:12Z",
+ "author_url": "https://github.com/VEERESH069",
+ "author_avatar": "https://avatars.githubusercontent.com/u/116574954?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/116574954?v=4",
+ "profile_url": "https://github.com/VEERESH069"
+ },
+ "Coder-010506": {
+ "expectedPoints": 10,
+ "currentPoints": 10,
+ "levels": {
+ "level1": 0,
+ "level2": 0,
+ "level3": 1
+ },
+ "prs": [
+ {
+ "url": "https://github.com/Amarjha01/DevNotes/pull/16",
+ "title": "added the feature of projects",
+ "repo": "Amarjha01/DevNotes",
+ "level": "level3",
+ "points": 10,
+ "created_at": "2025-07-30T05:25:32Z",
+ "updated_at": "2025-08-03T06:34:55Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-08-03T05:06:02Z",
+ "author_url": "https://github.com/Coder-010506",
+ "author_avatar": "https://avatars.githubusercontent.com/u/188947979?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/188947979?v=4",
+ "profile_url": "https://github.com/Coder-010506"
+ },
+ "anuva0904": {
+ "expectedPoints": 10,
+ "currentPoints": 10,
+ "levels": {
+ "level1": 0,
+ "level2": 0,
+ "level3": 1
+ },
+ "prs": [
+ {
+ "url": "https://github.com/Creators-Space/Creators-Space/pull/119",
+ "title": "Feature - Adding Blog Page UI",
+ "repo": "Creators-Space/Creators-Space",
+ "level": "level3",
+ "points": 10,
+ "created_at": "2025-08-01T08:49:33Z",
+ "updated_at": "2025-08-02T14:13:20Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-08-02T14:12:03Z",
+ "author_url": "https://github.com/anuva0904",
+ "author_avatar": "https://avatars.githubusercontent.com/u/198038238?v=4"
+ },
+ {
+ "url": "https://github.com/BDutta18/BodyCraft-Gym/pull/34",
+ "title": "Pull Request: Added the BMI Calculator feature #30",
+ "repo": "BDutta18/BodyCraft-Gym",
+ "level": null,
+ "points": 0,
+ "created_at": "2025-07-29T09:38:47Z",
+ "updated_at": "2025-08-02T14:05:27Z",
+ "state": "open",
+ "merged": false,
+ "merged_at": null,
+ "author_url": "https://github.com/anuva0904",
+ "author_avatar": "https://avatars.githubusercontent.com/u/198038238?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/198038238?v=4",
+ "profile_url": "https://github.com/anuva0904"
+ },
+ "i-shivii": {
+ "expectedPoints": 10,
+ "currentPoints": 10,
+ "levels": {
+ "level1": 0,
+ "level2": 0,
+ "level3": 1
+ },
+ "prs": [
+ {
+ "url": "https://github.com/vishanurag/Canvas-Editor/pull/1306",
+ "title": "UI successfully improved",
+ "repo": "vishanurag/Canvas-Editor",
+ "level": "level3",
+ "points": 10,
+ "created_at": "2025-07-31T17:38:37Z",
+ "updated_at": "2025-08-02T12:29:31Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-08-02T12:29:17Z",
+ "author_url": "https://github.com/i-shivii",
+ "author_avatar": "https://avatars.githubusercontent.com/u/136483704?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/136483704?v=4",
+ "profile_url": "https://github.com/i-shivii"
+ },
+ "Aryan-Singh1729": {
+ "expectedPoints": 10,
+ "currentPoints": 10,
+ "levels": {
+ "level1": 0,
+ "level2": 0,
+ "level3": 1
+ },
+ "prs": [
+ {
+ "url": "https://github.com/ashish-um/pocketLIFE/pull/26",
+ "title": "added Github Actions for CI/CD",
+ "repo": "ashish-um/pocketLIFE",
+ "level": "level3",
+ "points": 10,
+ "created_at": "2025-08-03T06:41:43Z",
+ "updated_at": "2025-08-03T06:54:00Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-08-03T06:44:00Z",
+ "author_url": "https://github.com/Aryan-Singh1729",
+ "author_avatar": "https://avatars.githubusercontent.com/u/174848019?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/174848019?v=4",
+ "profile_url": "https://github.com/Aryan-Singh1729"
+ },
+ "Bipasha1005": {
+ "expectedPoints": 10,
+ "currentPoints": 10,
+ "levels": {
+ "level1": 0,
+ "level2": 0,
+ "level3": 1
+ },
+ "prs": [
+ {
+ "url": "https://github.com/codeaashu/DevDisplay/pull/1046",
+ "title": "Added my profile JSON and updated ProfilesList",
+ "repo": "codeaashu/DevDisplay",
+ "level": null,
+ "points": 0,
+ "created_at": "2025-07-30T16:02:12Z",
+ "updated_at": "2025-08-02T11:13:34Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-08-02T10:53:55Z",
+ "author_url": "https://github.com/Bipasha1005",
+ "author_avatar": "https://avatars.githubusercontent.com/u/118049787?v=4"
+ },
+ {
+ "url": "https://github.com/gyanshankar1708/GrowCraft/pull/36",
+ "title": "A sample work section with cards and navigation button is added",
+ "repo": "gyanshankar1708/GrowCraft",
+ "level": "level3",
+ "points": 10,
+ "created_at": "2025-07-30T08:42:58Z",
+ "updated_at": "2025-07-30T18:24:25Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-30T18:24:25Z",
+ "author_url": "https://github.com/Bipasha1005",
+ "author_avatar": "https://avatars.githubusercontent.com/u/118049787?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/118049787?v=4",
+ "profile_url": "https://github.com/Bipasha1005"
+ },
+ "Khushi5155": {
+ "expectedPoints": 10,
+ "currentPoints": 10,
+ "levels": {
+ "level1": 0,
+ "level2": 0,
+ "level3": 1
+ },
+ "prs": [
+ {
+ "url": "https://github.com/gyanshankar1708/GrowCraft/pull/97",
+ "title": "Feature : Fully Responsive Website Development Page",
+ "repo": "gyanshankar1708/GrowCraft",
+ "level": "level3",
+ "points": 10,
+ "created_at": "2025-08-02T12:01:59Z",
+ "updated_at": "2025-08-02T18:45:27Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-08-02T18:45:27Z",
+ "author_url": "https://github.com/Khushi5155",
+ "author_avatar": "https://avatars.githubusercontent.com/u/180379598?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/180379598?v=4",
+ "profile_url": "https://github.com/Khushi5155"
+ },
+ "Channpreetk": {
+ "expectedPoints": 10,
+ "currentPoints": 10,
+ "levels": {
+ "level1": 0,
+ "level2": 0,
+ "level3": 1
+ },
+ "prs": [
+ {
+ "url": "https://github.com/gyanshankar1708/GrowCraft/pull/47",
+ "title": "Enhance Contact Form",
+ "repo": "gyanshankar1708/GrowCraft",
+ "level": "level3",
+ "points": 10,
+ "created_at": "2025-07-30T17:51:04Z",
+ "updated_at": "2025-07-30T18:35:54Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-30T18:35:54Z",
+ "author_url": "https://github.com/Channpreetk",
+ "author_avatar": "https://avatars.githubusercontent.com/u/154740952?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/154740952?v=4",
+ "profile_url": "https://github.com/Channpreetk"
+ },
+ "MdSharieff-081": {
+ "expectedPoints": 10,
+ "currentPoints": 10,
+ "levels": {
+ "level1": 0,
+ "level2": 0,
+ "level3": 1
+ },
+ "prs": [
+ {
+ "url": "https://github.com/gyanshankar1708/GrowCraft/pull/30",
+ "title": "Navbar-Problem-Fixed",
+ "repo": "gyanshankar1708/GrowCraft",
+ "level": "level3",
+ "points": 10,
+ "created_at": "2025-07-29T18:15:33Z",
+ "updated_at": "2025-07-30T18:18:41Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-30T07:16:47Z",
+ "author_url": "https://github.com/MdSharieff-081",
+ "author_avatar": "https://avatars.githubusercontent.com/u/115969107?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/115969107?v=4",
+ "profile_url": "https://github.com/MdSharieff-081"
+ },
+ "DileepKrishnaM": {
+ "expectedPoints": 10,
+ "currentPoints": 10,
+ "levels": {
+ "level1": 0,
+ "level2": 0,
+ "level3": 1
+ },
+ "prs": [
+ {
+ "url": "https://github.com/gyanshankar1708/GrowCraft/pull/24",
+ "title": "[Document] : Added CODE_OF_CONDUCT.md (closes Issue #22 )",
+ "repo": "gyanshankar1708/GrowCraft",
+ "level": "level3",
+ "points": 10,
+ "created_at": "2025-07-29T15:47:14Z",
+ "updated_at": "2025-07-30T18:17:27Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-29T16:39:25Z",
+ "author_url": "https://github.com/DileepKrishnaM",
+ "author_avatar": "https://avatars.githubusercontent.com/u/185825101?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/185825101?v=4",
+ "profile_url": "https://github.com/DileepKrishnaM"
+ },
+ "Shrutik-0101": {
+ "expectedPoints": 10,
+ "currentPoints": 10,
+ "levels": {
+ "level1": 0,
+ "level2": 0,
+ "level3": 1
+ },
+ "prs": [
+ {
+ "url": "https://github.com/piyushpatelcodes/gssocFAQ-Bot/pull/63",
+ "title": "Add ML-Based FAQ Matching with Fallback Support",
+ "repo": "piyushpatelcodes/gssocFAQ-Bot",
+ "level": "level3",
+ "points": 10,
+ "created_at": "2025-08-01T15:19:34Z",
+ "updated_at": "2025-08-02T07:26:58Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-08-02T07:26:14Z",
+ "author_url": "https://github.com/Shrutik-0101",
+ "author_avatar": "https://avatars.githubusercontent.com/u/80575784?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/80575784?v=4",
+ "profile_url": "https://github.com/Shrutik-0101"
+ },
+ "Rushi0207": {
+ "expectedPoints": 10,
+ "currentPoints": 10,
+ "levels": {
+ "level1": 0,
+ "level2": 0,
+ "level3": 1
+ },
+ "prs": [
+ {
+ "url": "https://github.com/Promptzy/Zenjira/pull/36",
+ "title": "feat: implement JWT authentication system",
+ "repo": "Promptzy/Zenjira",
+ "level": "level3",
+ "points": 10,
+ "created_at": "2025-07-29T10:49:54Z",
+ "updated_at": "2025-07-30T14:27:42Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-30T14:27:33Z",
+ "author_url": "https://github.com/Rushi0207",
+ "author_avatar": "https://avatars.githubusercontent.com/u/113949814?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/113949814?v=4",
+ "profile_url": "https://github.com/Rushi0207"
+ },
+ "coderpriya-raj": {
+ "expectedPoints": 10,
+ "currentPoints": 10,
+ "levels": {
+ "level1": 0,
+ "level2": 0,
+ "level3": 1
+ },
+ "prs": [
+ {
+ "url": "https://github.com/rajdeep13-coder/Resume-Generator/pull/62",
+ "title": "🔧 Added drag-and-drop functionality to reorder resume sections dynamic",
+ "repo": "rajdeep13-coder/Resume-Generator",
+ "level": "level3",
+ "points": 10,
+ "created_at": "2025-07-31T09:46:36Z",
+ "updated_at": "2025-07-31T10:00:39Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-31T10:00:39Z",
+ "author_url": "https://github.com/coderpriya-raj",
+ "author_avatar": "https://avatars.githubusercontent.com/u/108212793?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/108212793?v=4",
+ "profile_url": "https://github.com/coderpriya-raj"
+ },
+ "Shaesh-Kuiper": {
+ "expectedPoints": 10,
+ "currentPoints": 10,
+ "levels": {
+ "level1": 0,
+ "level2": 0,
+ "level3": 1
+ },
+ "prs": [
+ {
+ "url": "https://github.com/Rucha-Ambaliya/PrivGPT-Studio/pull/21",
+ "title": "FEATURE: Enable Streaming Output in Chat UI [ issue #20 ]",
+ "repo": "Rucha-Ambaliya/PrivGPT-Studio",
+ "level": "level3",
+ "points": 10,
+ "created_at": "2025-07-29T20:56:29Z",
+ "updated_at": "2025-07-30T11:56:48Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-30T11:35:44Z",
+ "author_url": "https://github.com/Shaesh-Kuiper",
+ "author_avatar": "https://avatars.githubusercontent.com/u/193023463?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/193023463?v=4",
+ "profile_url": "https://github.com/Shaesh-Kuiper"
+ },
+ "mohana1805": {
+ "expectedPoints": 10,
+ "currentPoints": 10,
+ "levels": {
+ "level1": 0,
+ "level2": 0,
+ "level3": 1
+ },
+ "prs": [
+ {
+ "url": "https://github.com/Samrudhipawar/whack-a-mole-game/pull/7",
+ "title": "Added restart button and high score functionality.",
+ "repo": "Samrudhipawar/whack-a-mole-game",
+ "level": "level3",
+ "points": 10,
+ "created_at": "2025-07-30T10:10:32Z",
+ "updated_at": "2025-07-30T18:34:08Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-30T18:33:39Z",
+ "author_url": "https://github.com/mohana1805",
+ "author_avatar": "https://avatars.githubusercontent.com/u/188950355?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/188950355?v=4",
+ "profile_url": "https://github.com/mohana1805"
+ },
+ "Sahil-Coder1": {
+ "expectedPoints": 10,
+ "currentPoints": 10,
+ "levels": {
+ "level1": 0,
+ "level2": 0,
+ "level3": 1
+ },
+ "prs": [
+ {
+ "url": "https://github.com/Shubhashish-Chakraborty/prepnerdz/pull/65",
+ "title": "Seo Improved",
+ "repo": "Shubhashish-Chakraborty/prepnerdz",
+ "level": "level3",
+ "points": 10,
+ "created_at": "2025-08-01T20:21:14Z",
+ "updated_at": "2025-08-02T15:22:06Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-08-02T15:22:06Z",
+ "author_url": "https://github.com/Sahil-Coder1",
+ "author_avatar": "https://avatars.githubusercontent.com/u/69185813?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/69185813?v=4",
+ "profile_url": "https://github.com/Sahil-Coder1"
+ },
+ "SATVIKsynopsis": {
+ "expectedPoints": 10,
+ "currentPoints": 10,
+ "levels": {
+ "level1": 0,
+ "level2": 0,
+ "level3": 1
+ },
+ "prs": [
+ {
+ "url": "https://github.com/code-well0/trip-planner/pull/32",
+ "title": "Feature/chatbot UI improvements",
+ "repo": "code-well0/trip-planner",
+ "level": "level3",
+ "points": 10,
+ "created_at": "2025-08-01T14:56:52Z",
+ "updated_at": "2025-08-02T20:31:57Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-08-02T19:57:40Z",
+ "author_url": "https://github.com/SATVIKsynopsis",
+ "author_avatar": "https://avatars.githubusercontent.com/u/184690175?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/184690175?v=4",
+ "profile_url": "https://github.com/SATVIKsynopsis"
+ },
+ "Soumyosish": {
+ "expectedPoints": 10,
+ "currentPoints": 10,
+ "levels": {
+ "level1": 0,
+ "level2": 0,
+ "level3": 1
+ },
+ "prs": [
+ {
+ "url": "https://github.com/sachiva1/sachiva/pull/50",
+ "title": "Fixed the footer bug issue",
+ "repo": "sachiva1/sachiva",
+ "level": "level3",
+ "points": 10,
+ "created_at": "2025-07-31T07:35:36Z",
+ "updated_at": "2025-07-31T13:40:18Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-31T13:40:18Z",
+ "author_url": "https://github.com/Soumyosish",
+ "author_avatar": "https://avatars.githubusercontent.com/u/144246473?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/144246473?v=4",
+ "profile_url": "https://github.com/Soumyosish"
+ },
+ "Suruchi1199": {
+ "expectedPoints": 10,
+ "currentPoints": 10,
+ "levels": {
+ "level1": 0,
+ "level2": 0,
+ "level3": 1
+ },
+ "prs": [
+ {
+ "url": "https://github.com/SurajSG23/Job-Portal/pull/8",
+ "title": "Improve Homepage UI (HTML & CSS enhancements)",
+ "repo": "SurajSG23/Job-Portal",
+ "level": "level3",
+ "points": 10,
+ "created_at": "2025-07-27T20:01:55Z",
+ "updated_at": "2025-07-28T00:18:14Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-28T00:17:28Z",
+ "author_url": "https://github.com/Suruchi1199",
+ "author_avatar": "https://avatars.githubusercontent.com/u/172834066?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/172834066?v=4",
+ "profile_url": "https://github.com/Suruchi1199"
+ },
+ "ashwith123": {
+ "expectedPoints": 10,
+ "currentPoints": 10,
+ "levels": {
+ "level1": 0,
+ "level2": 0,
+ "level3": 1
+ },
+ "prs": [
+ {
+ "url": "https://github.com/vaibhavrajharsh/Music-Player/pull/55",
+ "title": "Implement Keyboard Shortcuts for Music Player Controls",
+ "repo": "vaibhavrajharsh/Music-Player",
+ "level": "level3",
+ "points": 10,
+ "created_at": "2025-08-01T16:13:07Z",
+ "updated_at": "2025-08-01T17:44:08Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-08-01T17:43:31Z",
+ "author_url": "https://github.com/ashwith123",
+ "author_avatar": "https://avatars.githubusercontent.com/u/137775785?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/137775785?v=4",
+ "profile_url": "https://github.com/ashwith123"
+ },
+ "Dumpsterpog": {
+ "expectedPoints": 8,
+ "currentPoints": 8,
+ "levels": {
+ "level1": 2,
+ "level2": 0,
+ "level3": 0
+ },
+ "prs": [
+ {
+ "url": "https://github.com/Coden-inja/alchEmaiLyst/pull/14",
+ "title": "Index css fix",
+ "repo": "Coden-inja/alchEmaiLyst",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-31T11:20:42Z",
+ "updated_at": "2025-07-31T13:50:16Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-31T13:50:15Z",
+ "author_url": "https://github.com/Dumpsterpog",
+ "author_avatar": "https://avatars.githubusercontent.com/u/84399187?v=4"
+ },
+ {
+ "url": "https://github.com/Coden-inja/alchEmaiLyst/pull/13",
+ "title": "feat: enhanced ui , fixed the broken UI and enhanched animations",
+ "repo": "Coden-inja/alchEmaiLyst",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-31T11:09:00Z",
+ "updated_at": "2025-07-31T13:43:02Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-31T13:43:02Z",
+ "author_url": "https://github.com/Dumpsterpog",
+ "author_avatar": "https://avatars.githubusercontent.com/u/84399187?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/84399187?v=4",
+ "profile_url": "https://github.com/Dumpsterpog"
+ },
+ "HarleenKaurBhullar": {
+ "expectedPoints": 8,
+ "currentPoints": 8,
+ "levels": {
+ "level1": 2,
+ "level2": 0,
+ "level3": 0
+ },
+ "prs": [
+ {
+ "url": "https://github.com/adityakalburgi/Travel_ageny_website/pull/16",
+ "title": "Validation and Sanitation of input ",
+ "repo": "adityakalburgi/Travel_ageny_website",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-29T05:40:52Z",
+ "updated_at": "2025-08-02T15:18:24Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-08-02T15:17:51Z",
+ "author_url": "https://github.com/HarleenKaurBhullar",
+ "author_avatar": "https://avatars.githubusercontent.com/u/145742023?v=4"
+ },
+ {
+ "url": "https://github.com/piyushpatelcodes/gssocFAQ-Bot/pull/7",
+ "title": "Linked Blog tab to Expert Content",
+ "repo": "piyushpatelcodes/gssocFAQ-Bot",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-24T08:19:16Z",
+ "updated_at": "2025-07-25T07:08:27Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-24T08:33:05Z",
+ "author_url": "https://github.com/HarleenKaurBhullar",
+ "author_avatar": "https://avatars.githubusercontent.com/u/145742023?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/145742023?v=4",
+ "profile_url": "https://github.com/HarleenKaurBhullar"
+ },
+ "Shivani-sgh": {
+ "expectedPoints": 8,
+ "currentPoints": 8,
+ "levels": {
+ "level1": 2,
+ "level2": 0,
+ "level3": 0
+ },
+ "prs": [
+ {
+ "url": "https://github.com/SharonIV0x86/CinderPeak/pull/5",
+ "title": "chore(examples): remove commented-out visualize calls",
+ "repo": "SharonIV0x86/CinderPeak",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-28T07:44:48Z",
+ "updated_at": "2025-07-30T16:19:56Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-30T15:32:06Z",
+ "author_url": "https://github.com/Shivani-sgh",
+ "author_avatar": "https://avatars.githubusercontent.com/u/205517282?v=4"
+ },
+ {
+ "url": "https://github.com/vaibhavrajharsh/Music-Player/pull/17",
+ "title": "Update bell and profile icons",
+ "repo": "vaibhavrajharsh/Music-Player",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-29T07:09:08Z",
+ "updated_at": "2025-07-31T12:50:12Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-29T09:11:04Z",
+ "author_url": "https://github.com/Shivani-sgh",
+ "author_avatar": "https://avatars.githubusercontent.com/u/205517282?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/205517282?v=4",
+ "profile_url": "https://github.com/Shivani-sgh"
+ },
+ "Shreyaraut12": {
+ "expectedPoints": 8,
+ "currentPoints": 8,
+ "levels": {
+ "level1": 2,
+ "level2": 0,
+ "level3": 0
+ },
+ "prs": [
+ {
+ "url": "https://github.com/Varshitha713/first-contrib-placement/pull/83",
+ "title": "Remove Twitter and Facebook logos from footer [#65]",
+ "repo": "Varshitha713/first-contrib-placement",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-08-03T02:41:40Z",
+ "updated_at": "2025-08-03T05:59:07Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-08-03T05:58:42Z",
+ "author_url": "https://github.com/Shreyaraut12",
+ "author_avatar": "https://avatars.githubusercontent.com/u/183894684?v=4"
+ },
+ {
+ "url": "https://github.com/Shubhashish-Chakraborty/prepnerdz/pull/79",
+ "title": "Adjust Spacing Between “Send Message” #78",
+ "repo": "Shubhashish-Chakraborty/prepnerdz",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-08-03T06:36:01Z",
+ "updated_at": "2025-08-03T07:30:35Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-08-03T07:30:35Z",
+ "author_url": "https://github.com/Shreyaraut12",
+ "author_avatar": "https://avatars.githubusercontent.com/u/183894684?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/183894684?v=4",
+ "profile_url": "https://github.com/Shreyaraut12"
+ },
+ "vanshmehandru": {
+ "expectedPoints": 8,
+ "currentPoints": 8,
+ "levels": {
+ "level1": 2,
+ "level2": 0,
+ "level3": 0
+ },
+ "prs": [
+ {
+ "url": "https://github.com/anothercoder-nik/URLshortner/pull/8",
+ "title": "Added and Updated CODE_OF_CONDUCT.md",
+ "repo": "anothercoder-nik/URLshortner",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-31T04:03:35Z",
+ "updated_at": "2025-07-31T07:00:06Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-31T07:00:06Z",
+ "author_url": "https://github.com/vanshmehandru",
+ "author_avatar": "https://avatars.githubusercontent.com/u/135611876?v=4"
+ },
+ {
+ "url": "https://github.com/SandeepVashishtha/Eventra/pull/21",
+ "title": "Added and Updated CODE_OF_CONDUCT.md",
+ "repo": "SandeepVashishtha/Eventra",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-30T18:28:53Z",
+ "updated_at": "2025-07-31T06:03:34Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-31T06:03:20Z",
+ "author_url": "https://github.com/vanshmehandru",
+ "author_avatar": "https://avatars.githubusercontent.com/u/135611876?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/135611876?v=4",
+ "profile_url": "https://github.com/vanshmehandru"
+ },
+ "503BINGPOT": {
+ "expectedPoints": 8,
+ "currentPoints": 8,
+ "levels": {
+ "level1": 2,
+ "level2": 0,
+ "level3": 0
+ },
+ "prs": [
+ {
+ "url": "https://github.com/SandeepVashishtha/Eventra/pull/23",
+ "title": "Added scroll to top and made the nav bar \"Eventra\" to scroll smoothly to top instead of refreshing the page",
+ "repo": "SandeepVashishtha/Eventra",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-31T05:39:54Z",
+ "updated_at": "2025-07-31T06:14:07Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-31T06:14:07Z",
+ "author_url": "https://github.com/503BINGPOT",
+ "author_avatar": "https://avatars.githubusercontent.com/u/182328428?v=4"
+ },
+ {
+ "url": "https://github.com/code-well0/trip-planner/pull/18",
+ "title": "Fix Sign-Up Flow and Plan Trip Navigation",
+ "repo": "code-well0/trip-planner",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-31T03:13:05Z",
+ "updated_at": "2025-08-01T23:58:34Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-31T11:43:06Z",
+ "author_url": "https://github.com/503BINGPOT",
+ "author_avatar": "https://avatars.githubusercontent.com/u/182328428?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/182328428?v=4",
+ "profile_url": "https://github.com/503BINGPOT"
+ },
+ "Sanika2404": {
+ "expectedPoints": 8,
+ "currentPoints": 8,
+ "levels": {
+ "level1": 2,
+ "level2": 0,
+ "level3": 0
+ },
+ "prs": [
+ {
+ "url": "https://github.com/Shubhashish-Chakraborty/prepnerdz/pull/61",
+ "title": "fix : updated hover color and removed legacyBehavior",
+ "repo": "Shubhashish-Chakraborty/prepnerdz",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-08-01T13:27:17Z",
+ "updated_at": "2025-08-02T10:37:29Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-08-02T10:37:28Z",
+ "author_url": "https://github.com/Sanika2404",
+ "author_avatar": "https://avatars.githubusercontent.com/u/183227473?v=4"
+ },
+ {
+ "url": "https://github.com/Shubhashish-Chakraborty/prepnerdz/pull/48",
+ "title": "Enhanced navbar dropdowns with hover and smooth styling",
+ "repo": "Shubhashish-Chakraborty/prepnerdz",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-31T12:01:34Z",
+ "updated_at": "2025-07-31T19:14:42Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-31T15:20:00Z",
+ "author_url": "https://github.com/Sanika2404",
+ "author_avatar": "https://avatars.githubusercontent.com/u/183227473?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/183227473?v=4",
+ "profile_url": "https://github.com/Sanika2404"
+ },
+ "Varnika060306": {
+ "expectedPoints": 8,
+ "currentPoints": 8,
+ "levels": {
+ "level1": 2,
+ "level2": 0,
+ "level3": 0
+ },
+ "prs": [
+ {
+ "url": "https://github.com/Shubhashish-Chakraborty/prepnerdz/pull/12",
+ "title": "Enhance Button Component with Variant and Size Props for Scalable UI",
+ "repo": "Shubhashish-Chakraborty/prepnerdz",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-29T00:45:08Z",
+ "updated_at": "2025-07-31T19:19:39Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-29T18:59:41Z",
+ "author_url": "https://github.com/Varnika060306",
+ "author_avatar": "https://avatars.githubusercontent.com/u/222288852?v=4"
+ },
+ {
+ "url": "https://github.com/Shubhashish-Chakraborty/prepnerdz/pull/11",
+ "title": "Enhance About Page with Community Story and Improved Visibility (#7)",
+ "repo": "Shubhashish-Chakraborty/prepnerdz",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-28T23:12:49Z",
+ "updated_at": "2025-07-31T19:19:56Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-30T11:39:02Z",
+ "author_url": "https://github.com/Varnika060306",
+ "author_avatar": "https://avatars.githubusercontent.com/u/222288852?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/222288852?v=4",
+ "profile_url": "https://github.com/Varnika060306"
+ },
+ "anushreejois": {
+ "expectedPoints": 7,
+ "currentPoints": 7,
+ "levels": {
+ "level1": 0,
+ "level2": 1,
+ "level3": 0
+ },
+ "prs": [
+ {
+ "url": "https://github.com/Coden-inja/alchEmaiLyst/pull/23",
+ "title": " Add Loading State to AI Summarization, Reply, and Spam Components (Fixes #7)",
+ "repo": "Coden-inja/alchEmaiLyst",
+ "level": "level2",
+ "points": 7,
+ "created_at": "2025-08-01T16:26:27Z",
+ "updated_at": "2025-08-03T03:16:07Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-08-02T22:11:37Z",
+ "author_url": "https://github.com/anushreejois",
+ "author_avatar": "https://avatars.githubusercontent.com/u/181974760?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/181974760?v=4",
+ "profile_url": "https://github.com/anushreejois"
+ },
+ "NimoMach": {
+ "expectedPoints": 7,
+ "currentPoints": 7,
+ "levels": {
+ "level1": 0,
+ "level2": 1,
+ "level3": 0
+ },
+ "prs": [
+ {
+ "url": "https://github.com/adityakalburgi/Travel_ageny_website/pull/38",
+ "title": "Add Forgot/Reset functionality",
+ "repo": "adityakalburgi/Travel_ageny_website",
+ "level": "level2",
+ "points": 7,
+ "created_at": "2025-07-31T18:32:45Z",
+ "updated_at": "2025-08-01T12:15:11Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-08-01T12:14:25Z",
+ "author_url": "https://github.com/NimoMach",
+ "author_avatar": "https://avatars.githubusercontent.com/u/150921315?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/150921315?v=4",
+ "profile_url": "https://github.com/NimoMach"
+ },
+ "diiviikk5": {
+ "expectedPoints": 7,
+ "currentPoints": 7,
+ "levels": {
+ "level1": 0,
+ "level2": 1,
+ "level3": 0
+ },
+ "prs": [
+ {
+ "url": "https://github.com/Amarjha01/DevNotes/pull/27",
+ "title": "feat: Add Contact form and FAQ sections to Home page",
+ "repo": "Amarjha01/DevNotes",
+ "level": "level2",
+ "points": 7,
+ "created_at": "2025-07-31T17:45:08Z",
+ "updated_at": "2025-08-03T05:13:07Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-08-03T05:13:07Z",
+ "author_url": "https://github.com/diiviikk5",
+ "author_avatar": "https://avatars.githubusercontent.com/u/131183253?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/131183253?v=4",
+ "profile_url": "https://github.com/diiviikk5"
+ },
+ "madegowda11": {
+ "expectedPoints": 7,
+ "currentPoints": 7,
+ "levels": {
+ "level1": 0,
+ "level2": 1,
+ "level3": 0
+ },
+ "prs": [
+ {
+ "url": "https://github.com/Creators-Space/Creators-Space/pull/129",
+ "title": "fixed no validation and user feedback on signup issue",
+ "repo": "Creators-Space/Creators-Space",
+ "level": "level2",
+ "points": 7,
+ "created_at": "2025-08-02T14:28:09Z",
+ "updated_at": "2025-08-02T15:12:37Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-08-02T15:12:25Z",
+ "author_url": "https://github.com/madegowda11",
+ "author_avatar": "https://avatars.githubusercontent.com/u/140439336?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/140439336?v=4",
+ "profile_url": "https://github.com/madegowda11"
+ },
+ "ItsMeRaseeca": {
+ "expectedPoints": 7,
+ "currentPoints": 7,
+ "levels": {
+ "level1": 0,
+ "level2": 1,
+ "level3": 0
+ },
+ "prs": [
+ {
+ "url": "https://github.com/Creators-Space/Creators-Space/pull/127",
+ "title": "Apply dark theme support to all pages",
+ "repo": "Creators-Space/Creators-Space",
+ "level": "level2",
+ "points": 7,
+ "created_at": "2025-08-02T11:51:36Z",
+ "updated_at": "2025-08-02T14:22:42Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-08-02T14:22:42Z",
+ "author_url": "https://github.com/ItsMeRaseeca",
+ "author_avatar": "https://avatars.githubusercontent.com/u/142300062?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/142300062?v=4",
+ "profile_url": "https://github.com/ItsMeRaseeca"
+ },
+ "ajstarks117": {
+ "expectedPoints": 7,
+ "currentPoints": 7,
+ "levels": {
+ "level1": 0,
+ "level2": 1,
+ "level3": 0
+ },
+ "prs": [
+ {
+ "url": "https://github.com/Creators-Space/Creators-Space/pull/53",
+ "title": "Main Hero Section Frontend Fixed ",
+ "repo": "Creators-Space/Creators-Space",
+ "level": "level2",
+ "points": 7,
+ "created_at": "2025-07-29T14:51:55Z",
+ "updated_at": "2025-07-29T15:03:10Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-29T15:02:31Z",
+ "author_url": "https://github.com/ajstarks117",
+ "author_avatar": "https://avatars.githubusercontent.com/u/182097122?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/182097122?v=4",
+ "profile_url": "https://github.com/ajstarks117"
+ },
+ "ishika-sen": {
+ "expectedPoints": 7,
+ "currentPoints": 7,
+ "levels": {
+ "level1": 0,
+ "level2": 1,
+ "level3": 0
+ },
+ "prs": [
+ {
+ "url": "https://github.com/Aqsa4066/netflixclone/pull/25",
+ "title": "Added logo and changed background",
+ "repo": "Aqsa4066/netflixclone",
+ "level": "level2",
+ "points": 7,
+ "created_at": "2025-07-30T09:47:40Z",
+ "updated_at": "2025-07-31T05:24:58Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-30T11:34:37Z",
+ "author_url": "https://github.com/ishika-sen",
+ "author_avatar": "https://avatars.githubusercontent.com/u/180878885?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/180878885?v=4",
+ "profile_url": "https://github.com/ishika-sen"
+ },
+ "suryssss": {
+ "expectedPoints": 7,
+ "currentPoints": 7,
+ "levels": {
+ "level1": 0,
+ "level2": 1,
+ "level3": 0
+ },
+ "prs": [
+ {
+ "url": "https://github.com/javaistic/javaistic/pull/736",
+ "title": "Add particle effect and animations to homepage",
+ "repo": "javaistic/javaistic",
+ "level": "level2",
+ "points": 7,
+ "created_at": "2025-08-01T12:58:02Z",
+ "updated_at": "2025-08-01T22:28:26Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-08-01T22:28:26Z",
+ "author_url": "https://github.com/suryssss",
+ "author_avatar": "https://avatars.githubusercontent.com/u/176365924?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/176365924?v=4",
+ "profile_url": "https://github.com/suryssss"
+ },
+ "swayam03275": {
+ "expectedPoints": 7,
+ "currentPoints": 7,
+ "levels": {
+ "level1": 0,
+ "level2": 1,
+ "level3": 0
+ },
+ "prs": [
+ {
+ "url": "https://github.com/ashish-um/pocketLIFE/pull/23",
+ "title": "fixed userschema",
+ "repo": "ashish-um/pocketLIFE",
+ "level": "level2",
+ "points": 7,
+ "created_at": "2025-08-02T17:25:36Z",
+ "updated_at": "2025-08-03T05:29:24Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-08-03T03:51:39Z",
+ "author_url": "https://github.com/swayam03275",
+ "author_avatar": "https://avatars.githubusercontent.com/u/155808502?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/155808502?v=4",
+ "profile_url": "https://github.com/swayam03275"
+ },
+ "HarshadaPatilS": {
+ "expectedPoints": 7,
+ "currentPoints": 7,
+ "levels": {
+ "level1": 0,
+ "level2": 1,
+ "level3": 0
+ },
+ "prs": [
+ {
+ "url": "https://github.com/BDutta18/BodyCraft-Gym/pull/62",
+ "title": "Add Privacy Policy Page for BodyCraft Gym Website",
+ "repo": "BDutta18/BodyCraft-Gym",
+ "level": null,
+ "points": 0,
+ "created_at": "2025-07-30T17:52:50Z",
+ "updated_at": "2025-07-30T18:03:58Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-30T18:03:57Z",
+ "author_url": "https://github.com/HarshadaPatilS",
+ "author_avatar": "https://avatars.githubusercontent.com/u/168923120?v=4"
+ },
+ {
+ "url": "https://github.com/Varshitha713/first-contrib-placement/pull/21",
+ "title": "Fix: Dropdown, buttons, and search bar now adapt to light/dark theme",
+ "repo": "Varshitha713/first-contrib-placement",
+ "level": "level2",
+ "points": 7,
+ "created_at": "2025-07-29T07:41:28Z",
+ "updated_at": "2025-07-30T06:32:52Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-29T12:01:31Z",
+ "author_url": "https://github.com/HarshadaPatilS",
+ "author_avatar": "https://avatars.githubusercontent.com/u/168923120?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/168923120?v=4",
+ "profile_url": "https://github.com/HarshadaPatilS"
+ },
+ "santhoshkumaritla": {
+ "expectedPoints": 7,
+ "currentPoints": 7,
+ "levels": {
+ "level1": 0,
+ "level2": 1,
+ "level3": 0
+ },
+ "prs": [
+ {
+ "url": "https://github.com/BDutta18/BodyCraft-Gym/pull/23",
+ "title": "DietplanAdded",
+ "repo": "BDutta18/BodyCraft-Gym",
+ "level": null,
+ "points": 0,
+ "created_at": "2025-07-28T15:32:05Z",
+ "updated_at": "2025-07-28T16:07:13Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-28T16:07:12Z",
+ "author_url": "https://github.com/santhoshkumaritla",
+ "author_avatar": "https://avatars.githubusercontent.com/u/164333866?v=4"
+ },
+ {
+ "url": "https://github.com/Varshitha713/CodeCanvas/pull/48",
+ "title": "AddedSearchFilter",
+ "repo": "Varshitha713/CodeCanvas",
+ "level": "level2",
+ "points": 7,
+ "created_at": "2025-08-02T08:56:45Z",
+ "updated_at": "2025-08-02T09:43:56Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-08-02T09:42:30Z",
+ "author_url": "https://github.com/santhoshkumaritla",
+ "author_avatar": "https://avatars.githubusercontent.com/u/164333866?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/164333866?v=4",
+ "profile_url": "https://github.com/santhoshkumaritla"
+ },
+ "chilaka-eswari": {
+ "expectedPoints": 7,
+ "currentPoints": 7,
+ "levels": {
+ "level1": 0,
+ "level2": 1,
+ "level3": 0
+ },
+ "prs": [
+ {
+ "url": "https://github.com/gyanshankar1708/GrowCraft/pull/27",
+ "title": "fix uneven service card issue #25",
+ "repo": "gyanshankar1708/GrowCraft",
+ "level": "level2",
+ "points": 7,
+ "created_at": "2025-07-29T17:28:45Z",
+ "updated_at": "2025-07-30T18:17:52Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-29T18:09:33Z",
+ "author_url": "https://github.com/chilaka-eswari",
+ "author_avatar": "https://avatars.githubusercontent.com/u/154459725?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/154459725?v=4",
+ "profile_url": "https://github.com/chilaka-eswari"
+ },
+ "jenilsoni01": {
+ "expectedPoints": 7,
+ "currentPoints": 7,
+ "levels": {
+ "level1": 0,
+ "level2": 1,
+ "level3": 0
+ },
+ "prs": [
+ {
+ "url": "https://github.com/KrishChothani/CKsEdu/pull/2",
+ "title": "📄 Added CONTRIBUTING.md and Updated README.md with Project Description",
+ "repo": "KrishChothani/CKsEdu",
+ "level": "level2",
+ "points": 7,
+ "created_at": "2025-07-27T19:23:00Z",
+ "updated_at": "2025-07-28T19:12:20Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-27T19:29:53Z",
+ "author_url": "https://github.com/jenilsoni01",
+ "author_avatar": "https://avatars.githubusercontent.com/u/167244843?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/167244843?v=4",
+ "profile_url": "https://github.com/jenilsoni01"
+ },
+ "Jils31": {
+ "expectedPoints": 7,
+ "currentPoints": 7,
+ "levels": {
+ "level1": 0,
+ "level2": 1,
+ "level3": 0
+ },
+ "prs": [
+ {
+ "url": "https://github.com/Varshitha713/CodeCanvas/pull/53",
+ "title": "Added IMDb clone project",
+ "repo": "Varshitha713/CodeCanvas",
+ "level": "level2",
+ "points": 7,
+ "created_at": "2025-08-02T11:34:13Z",
+ "updated_at": "2025-08-02T16:23:40Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-08-02T16:23:18Z",
+ "author_url": "https://github.com/Jils31",
+ "author_avatar": "https://avatars.githubusercontent.com/u/176881379?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/176881379?v=4",
+ "profile_url": "https://github.com/Jils31"
+ },
+ "DineshPabboju": {
+ "expectedPoints": 7,
+ "currentPoints": 7,
+ "levels": {
+ "level1": 0,
+ "level2": 1,
+ "level3": 0
+ },
+ "prs": [
+ {
+ "url": "https://github.com/Varshitha713/CodeCanvas/pull/43",
+ "title": "Added Expense Tracker App",
+ "repo": "Varshitha713/CodeCanvas",
+ "level": "level2",
+ "points": 7,
+ "created_at": "2025-08-02T03:54:50Z",
+ "updated_at": "2025-08-02T09:44:13Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-08-02T09:39:06Z",
+ "author_url": "https://github.com/DineshPabboju",
+ "author_avatar": "https://avatars.githubusercontent.com/u/150150681?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/150150681?v=4",
+ "profile_url": "https://github.com/DineshPabboju"
+ },
+ "mohan-bee": {
+ "expectedPoints": 7,
+ "currentPoints": 7,
+ "levels": {
+ "level1": 0,
+ "level2": 1,
+ "level3": 0
+ },
+ "prs": [
+ {
+ "url": "https://github.com/anothercoder-nik/URLshortner/pull/11",
+ "title": "fix: making user to stay in the application in index page",
+ "repo": "anothercoder-nik/URLshortner",
+ "level": "level2",
+ "points": 7,
+ "created_at": "2025-08-01T02:48:26Z",
+ "updated_at": "2025-08-01T04:05:17Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-08-01T04:04:46Z",
+ "author_url": "https://github.com/mohan-bee",
+ "author_avatar": "https://avatars.githubusercontent.com/u/167054270?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/167054270?v=4",
+ "profile_url": "https://github.com/mohan-bee"
+ },
+ "nzmshrxz": {
+ "expectedPoints": 7,
+ "currentPoints": 7,
+ "levels": {
+ "level1": 0,
+ "level2": 1,
+ "level3": 0
+ },
+ "prs": [
+ {
+ "url": "https://github.com/anothercoder-nik/URLshortner/pull/6",
+ "title": "Added QR code + standardized app.js path + bug fixes",
+ "repo": "anothercoder-nik/URLshortner",
+ "level": "level2",
+ "points": 7,
+ "created_at": "2025-07-29T17:06:40Z",
+ "updated_at": "2025-07-29T18:47:07Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-29T17:34:32Z",
+ "author_url": "https://github.com/nzmshrxz",
+ "author_avatar": "https://avatars.githubusercontent.com/u/141271901?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/141271901?v=4",
+ "profile_url": "https://github.com/nzmshrxz"
+ },
+ "devajuw": {
+ "expectedPoints": 7,
+ "currentPoints": 7,
+ "levels": {
+ "level1": 0,
+ "level2": 1,
+ "level3": 0
+ },
+ "prs": [
+ {
+ "url": "https://github.com/piyushpatelcodes/gssocFAQ-Bot/pull/27",
+ "title": "Changed the content and remove 90 percent of components which are not needed",
+ "repo": "piyushpatelcodes/gssocFAQ-Bot",
+ "level": "level2",
+ "points": 7,
+ "created_at": "2025-07-25T09:11:47Z",
+ "updated_at": "2025-07-25T15:48:51Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-25T15:08:32Z",
+ "author_url": "https://github.com/devajuw",
+ "author_avatar": "https://avatars.githubusercontent.com/u/102497378?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/102497378?v=4",
+ "profile_url": "https://github.com/devajuw"
+ },
+ "aliviahossain": {
+ "expectedPoints": 7,
+ "currentPoints": 7,
+ "levels": {
+ "level1": 0,
+ "level2": 1,
+ "level3": 0
+ },
+ "prs": [
+ {
+ "url": "https://github.com/piyushpatelcodes/gssocFAQ-Bot/pull/4",
+ "title": "Added try catch block to index.js file",
+ "repo": "piyushpatelcodes/gssocFAQ-Bot",
+ "level": "level2",
+ "points": 7,
+ "created_at": "2025-07-23T16:29:19Z",
+ "updated_at": "2025-07-25T07:08:55Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-23T18:08:04Z",
+ "author_url": "https://github.com/aliviahossain",
+ "author_avatar": "https://avatars.githubusercontent.com/u/211632522?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/211632522?v=4",
+ "profile_url": "https://github.com/aliviahossain"
+ },
+ "yashxita": {
+ "expectedPoints": 7,
+ "currentPoints": 7,
+ "levels": {
+ "level1": 0,
+ "level2": 1,
+ "level3": 0
+ },
+ "prs": [
+ {
+ "url": "https://github.com/Premkolte/AnimateHub/pull/257",
+ "title": "Scrollbar & Component Content Alignment Issue",
+ "repo": "Premkolte/AnimateHub",
+ "level": "level2",
+ "points": 7,
+ "created_at": "2025-08-03T07:34:24Z",
+ "updated_at": "2025-08-03T08:02:23Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-08-03T08:02:23Z",
+ "author_url": "https://github.com/yashxita",
+ "author_avatar": "https://avatars.githubusercontent.com/u/156109694?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/156109694?v=4",
+ "profile_url": "https://github.com/yashxita"
+ },
+ "ShauryaaSharma": {
+ "expectedPoints": 7,
+ "currentPoints": 7,
+ "levels": {
+ "level1": 0,
+ "level2": 1,
+ "level3": 0
+ },
+ "prs": [
+ {
+ "url": "https://github.com/Premkolte/AnimateHub/pull/251",
+ "title": "resolved issue #250",
+ "repo": "Premkolte/AnimateHub",
+ "level": "level2",
+ "points": 7,
+ "created_at": "2025-08-02T04:43:51Z",
+ "updated_at": "2025-08-02T05:06:26Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-08-02T05:06:26Z",
+ "author_url": "https://github.com/ShauryaaSharma",
+ "author_avatar": "https://avatars.githubusercontent.com/u/196896785?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/196896785?v=4",
+ "profile_url": "https://github.com/ShauryaaSharma"
+ },
+ "swarnacmurmu": {
+ "expectedPoints": 7,
+ "currentPoints": 7,
+ "levels": {
+ "level1": 0,
+ "level2": 1,
+ "level3": 0
+ },
+ "prs": [
+ {
+ "url": "https://github.com/AKing-283/Rewear/pull/9",
+ "title": "Added feedback section and corrected the path file for css to static/style.css",
+ "repo": "AKing-283/Rewear",
+ "level": "level2",
+ "points": 7,
+ "created_at": "2025-07-30T10:00:35Z",
+ "updated_at": "2025-08-02T12:51:37Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-30T13:19:18Z",
+ "author_url": "https://github.com/swarnacmurmu",
+ "author_avatar": "https://avatars.githubusercontent.com/u/187503016?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/187503016?v=4",
+ "profile_url": "https://github.com/swarnacmurmu"
+ },
+ "AshmitSherigar": {
+ "expectedPoints": 7,
+ "currentPoints": 7,
+ "levels": {
+ "level1": 0,
+ "level2": 1,
+ "level3": 0
+ },
+ "prs": [
+ {
+ "url": "https://github.com/rajdeep13-coder/Resume-Generator/pull/71",
+ "title": "Added sessionStorage Support for Input Reload",
+ "repo": "rajdeep13-coder/Resume-Generator",
+ "level": "level2",
+ "points": 7,
+ "created_at": "2025-08-01T05:03:56Z",
+ "updated_at": "2025-08-01T15:21:44Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-08-01T15:16:59Z",
+ "author_url": "https://github.com/AshmitSherigar",
+ "author_avatar": "https://avatars.githubusercontent.com/u/128444050?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/128444050?v=4",
+ "profile_url": "https://github.com/AshmitSherigar"
+ },
+ "Pranjal-077": {
+ "expectedPoints": 7,
+ "currentPoints": 7,
+ "levels": {
+ "level1": 0,
+ "level2": 1,
+ "level3": 0
+ },
+ "prs": [
+ {
+ "url": "https://github.com/rajdeep13-coder/Resume-Generator/pull/68",
+ "title": "feat: add bottombar scroll-to-top icon #63",
+ "repo": "rajdeep13-coder/Resume-Generator",
+ "level": "level2",
+ "points": 7,
+ "created_at": "2025-07-31T15:22:14Z",
+ "updated_at": "2025-07-31T17:02:36Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-31T17:02:36Z",
+ "author_url": "https://github.com/Pranjal-077",
+ "author_avatar": "https://avatars.githubusercontent.com/u/166006842?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/166006842?v=4",
+ "profile_url": "https://github.com/Pranjal-077"
+ },
+ "Trishi-05": {
+ "expectedPoints": 7,
+ "currentPoints": 7,
+ "levels": {
+ "level1": 0,
+ "level2": 1,
+ "level3": 0
+ },
+ "prs": [
+ {
+ "url": "https://github.com/rajdeep13-coder/Resume-Generator/pull/40",
+ "title": "Hide resume action buttons when downloading PDF",
+ "repo": "rajdeep13-coder/Resume-Generator",
+ "level": "level2",
+ "points": 7,
+ "created_at": "2025-07-28T15:47:56Z",
+ "updated_at": "2025-07-28T16:45:02Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-28T16:28:34Z",
+ "author_url": "https://github.com/Trishi-05",
+ "author_avatar": "https://avatars.githubusercontent.com/u/139211555?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/139211555?v=4",
+ "profile_url": "https://github.com/Trishi-05"
+ },
+ "bhavyawork121": {
+ "expectedPoints": 7,
+ "currentPoints": 7,
+ "levels": {
+ "level1": 0,
+ "level2": 1,
+ "level3": 0
+ },
+ "prs": [
+ {
+ "url": "https://github.com/rajdeep13-coder/Resume-Generator/pull/10",
+ "title": "Added autofill and refresh features",
+ "repo": "rajdeep13-coder/Resume-Generator",
+ "level": "level2",
+ "points": 7,
+ "created_at": "2025-07-27T16:41:35Z",
+ "updated_at": "2025-07-28T04:28:14Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-27T17:18:42Z",
+ "author_url": "https://github.com/bhavyawork121",
+ "author_avatar": "https://avatars.githubusercontent.com/u/195129920?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/195129920?v=4",
+ "profile_url": "https://github.com/bhavyawork121"
+ },
+ "shrvtiprasad": {
+ "expectedPoints": 7,
+ "currentPoints": 7,
+ "levels": {
+ "level1": 0,
+ "level2": 1,
+ "level3": 0
+ },
+ "prs": [
+ {
+ "url": "https://github.com/rajdeep13-coder/Resume-Generator/pull/9",
+ "title": "Added: Fade-in animation ",
+ "repo": "rajdeep13-coder/Resume-Generator",
+ "level": "level2",
+ "points": 7,
+ "created_at": "2025-07-27T16:38:56Z",
+ "updated_at": "2025-07-28T04:28:44Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-27T16:41:18Z",
+ "author_url": "https://github.com/shrvtiprasad",
+ "author_avatar": "https://avatars.githubusercontent.com/u/136233363?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/136233363?v=4",
+ "profile_url": "https://github.com/shrvtiprasad"
+ },
+ "TaranaKhanna": {
+ "expectedPoints": 7,
+ "currentPoints": 7,
+ "levels": {
+ "level1": 0,
+ "level2": 1,
+ "level3": 0
+ },
+ "prs": [
+ {
+ "url": "https://github.com/shandilya-rajnandini/DocAtHome/pull/67",
+ "title": "Backend testing for Authentication ",
+ "repo": "shandilya-rajnandini/DocAtHome",
+ "level": "level2",
+ "points": 7,
+ "created_at": "2025-07-31T17:27:01Z",
+ "updated_at": "2025-07-31T19:51:20Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-31T18:38:58Z",
+ "author_url": "https://github.com/TaranaKhanna",
+ "author_avatar": "https://avatars.githubusercontent.com/u/162991120?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/162991120?v=4",
+ "profile_url": "https://github.com/TaranaKhanna"
+ },
+ "tanishqDevx": {
+ "expectedPoints": 7,
+ "currentPoints": 7,
+ "levels": {
+ "level1": 0,
+ "level2": 1,
+ "level3": 0
+ },
+ "prs": [
+ {
+ "url": "https://github.com/shandilya-rajnandini/DocAtHome/pull/44",
+ "title": "Added AI Chatbot Integration for Health Assistance & User Support",
+ "repo": "shandilya-rajnandini/DocAtHome",
+ "level": "level2",
+ "points": 7,
+ "created_at": "2025-07-30T17:20:18Z",
+ "updated_at": "2025-07-31T20:19:16Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-31T20:18:37Z",
+ "author_url": "https://github.com/tanishqDevx",
+ "author_avatar": "https://avatars.githubusercontent.com/u/181402502?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/181402502?v=4",
+ "profile_url": "https://github.com/tanishqDevx"
+ },
+ "noor05-creator": {
+ "expectedPoints": 7,
+ "currentPoints": 7,
+ "levels": {
+ "level1": 0,
+ "level2": 1,
+ "level3": 0
+ },
+ "prs": [
+ {
+ "url": "https://github.com/Rucha-Ambaliya/PrivGPT-Studio/pull/15",
+ "title": "OTHER: Add docstrings to app.py functions as per requirement",
+ "repo": "Rucha-Ambaliya/PrivGPT-Studio",
+ "level": "level2",
+ "points": 7,
+ "created_at": "2025-07-28T19:46:00Z",
+ "updated_at": "2025-08-01T10:27:25Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-29T11:46:14Z",
+ "author_url": "https://github.com/noor05-creator",
+ "author_avatar": "https://avatars.githubusercontent.com/u/179124207?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/179124207?v=4",
+ "profile_url": "https://github.com/noor05-creator"
+ },
+ "Dishant-V": {
+ "expectedPoints": 7,
+ "currentPoints": 7,
+ "levels": {
+ "level1": 0,
+ "level2": 1,
+ "level3": 0
+ },
+ "prs": [
+ {
+ "url": "https://github.com/Rucha-Ambaliya/PrivGPT-Studio/pull/13",
+ "title": "FEATURE: Add dark mode support with toggle in navbar",
+ "repo": "Rucha-Ambaliya/PrivGPT-Studio",
+ "level": "level2",
+ "points": 7,
+ "created_at": "2025-07-28T18:16:51Z",
+ "updated_at": "2025-08-01T10:29:44Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-29T11:16:07Z",
+ "author_url": "https://github.com/Dishant-V",
+ "author_avatar": "https://avatars.githubusercontent.com/u/180925042?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/180925042?v=4",
+ "profile_url": "https://github.com/Dishant-V"
+ },
+ "TricksterC": {
+ "expectedPoints": 7,
+ "currentPoints": 7,
+ "levels": {
+ "level1": 0,
+ "level2": 1,
+ "level3": 0
+ },
+ "prs": [
+ {
+ "url": "https://github.com/Samrudhipawar/whack-a-mole-game/pull/16",
+ "title": "Added Diglett mole sprite + a popup animation",
+ "repo": "Samrudhipawar/whack-a-mole-game",
+ "level": "level2",
+ "points": 7,
+ "created_at": "2025-08-01T05:33:55Z",
+ "updated_at": "2025-08-01T06:16:18Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-08-01T06:16:18Z",
+ "author_url": "https://github.com/TricksterC",
+ "author_avatar": "https://avatars.githubusercontent.com/u/171423897?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/171423897?v=4",
+ "profile_url": "https://github.com/TricksterC"
+ },
+ "LONECODER1": {
+ "expectedPoints": 7,
+ "currentPoints": 7,
+ "levels": {
+ "level1": 0,
+ "level2": 1,
+ "level3": 0
+ },
+ "prs": [
+ {
+ "url": "https://github.com/msanchariii/evolver/pull/16",
+ "title": "HomePage added",
+ "repo": "msanchariii/evolver",
+ "level": "level2",
+ "points": 7,
+ "created_at": "2025-08-02T10:21:30Z",
+ "updated_at": "2025-08-02T22:25:57Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-08-02T22:16:47Z",
+ "author_url": "https://github.com/LONECODER1",
+ "author_avatar": "https://avatars.githubusercontent.com/u/214221979?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/214221979?v=4",
+ "profile_url": "https://github.com/LONECODER1"
+ },
+ "Harshitf": {
+ "expectedPoints": 7,
+ "currentPoints": 7,
+ "levels": {
+ "level1": 0,
+ "level2": 1,
+ "level3": 0
+ },
+ "prs": [
+ {
+ "url": "https://github.com/SandeepVashishtha/Eventra/pull/24",
+ "title": "implemented cookie based jwt and spring security for authentication",
+ "repo": "SandeepVashishtha/Eventra",
+ "level": "level2",
+ "points": 7,
+ "created_at": "2025-07-31T09:10:54Z",
+ "updated_at": "2025-08-02T11:32:15Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-08-02T11:32:15Z",
+ "author_url": "https://github.com/Harshitf",
+ "author_avatar": "https://avatars.githubusercontent.com/u/168678927?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/168678927?v=4",
+ "profile_url": "https://github.com/Harshitf"
+ },
+ "Lavanya28007": {
+ "expectedPoints": 14,
+ "currentPoints": 7,
+ "levels": {
+ "level1": 0,
+ "level2": 2,
+ "level3": 0
+ },
+ "prs": [
+ {
+ "url": "https://github.com/SandeepVashishtha/Eventra/pull/22",
+ "title": "feat(frontend): add event creation form",
+ "repo": "SandeepVashishtha/Eventra",
+ "level": "level2",
+ "points": 7,
+ "created_at": "2025-07-30T19:42:56Z",
+ "updated_at": "2025-07-31T06:05:15Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-31T06:05:15Z",
+ "author_url": "https://github.com/Lavanya28007",
+ "author_avatar": "https://avatars.githubusercontent.com/u/198120576?v=4"
+ },
+ {
+ "url": "https://github.com/SandeepVashishtha/Eventra/pull/17",
+ "title": "feat(frontend): add event creation form",
+ "repo": "SandeepVashishtha/Eventra",
+ "level": "level2",
+ "points": 7,
+ "created_at": "2025-07-29T17:29:18Z",
+ "updated_at": "2025-07-29T20:50:28Z",
+ "state": "closed",
+ "merged": false,
+ "merged_at": null,
+ "author_url": "https://github.com/Lavanya28007",
+ "author_avatar": "https://avatars.githubusercontent.com/u/198120576?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/198120576?v=4",
+ "profile_url": "https://github.com/Lavanya28007"
+ },
+ "AnoushkaSamanta": {
+ "expectedPoints": 7,
+ "currentPoints": 7,
+ "levels": {
+ "level1": 0,
+ "level2": 1,
+ "level3": 0
+ },
+ "prs": [
+ {
+ "url": "https://github.com/SandeepVashishtha/Eventra/pull/20",
+ "title": "Issue #11:Added About Page",
+ "repo": "SandeepVashishtha/Eventra",
+ "level": "level2",
+ "points": 7,
+ "created_at": "2025-07-30T06:33:02Z",
+ "updated_at": "2025-07-30T18:06:17Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-30T06:46:14Z",
+ "author_url": "https://github.com/AnoushkaSamanta",
+ "author_avatar": "https://avatars.githubusercontent.com/u/171160522?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/171160522?v=4",
+ "profile_url": "https://github.com/AnoushkaSamanta"
+ },
+ "chirag-ydv": {
+ "expectedPoints": 7,
+ "currentPoints": 7,
+ "levels": {
+ "level1": 0,
+ "level2": 1,
+ "level3": 0
+ },
+ "prs": [
+ {
+ "url": "https://github.com/SandeepVashishtha/Eventra/pull/16",
+ "title": "feat: Refactor backend packages and update README",
+ "repo": "SandeepVashishtha/Eventra",
+ "level": "level2",
+ "points": 7,
+ "created_at": "2025-07-29T17:26:02Z",
+ "updated_at": "2025-07-29T17:50:50Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-29T17:32:00Z",
+ "author_url": "https://github.com/chirag-ydv",
+ "author_avatar": "https://avatars.githubusercontent.com/u/167443678?v=4"
+ },
+ {
+ "url": "https://github.com/SvJalmi/DBMS_Project/pull/14",
+ "title": "docs: Enhance README with detailed setup and run instructions",
+ "repo": "SvJalmi/DBMS_Project",
+ "level": null,
+ "points": 0,
+ "created_at": "2025-07-29T16:45:16Z",
+ "updated_at": "2025-07-31T19:53:45Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-31T19:53:45Z",
+ "author_url": "https://github.com/chirag-ydv",
+ "author_avatar": "https://avatars.githubusercontent.com/u/167443678?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/167443678?v=4",
+ "profile_url": "https://github.com/chirag-ydv"
+ },
+ "harshjainh2j": {
+ "expectedPoints": 7,
+ "currentPoints": 7,
+ "levels": {
+ "level1": 0,
+ "level2": 1,
+ "level3": 0
+ },
+ "prs": [
+ {
+ "url": "https://github.com/Shubhashish-Chakraborty/prepnerdz/pull/17",
+ "title": "feat: redesign Contact Us page",
+ "repo": "Shubhashish-Chakraborty/prepnerdz",
+ "level": "level2",
+ "points": 7,
+ "created_at": "2025-07-29T10:36:34Z",
+ "updated_at": "2025-07-31T19:19:22Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-29T16:36:59Z",
+ "author_url": "https://github.com/harshjainh2j",
+ "author_avatar": "https://avatars.githubusercontent.com/u/141403634?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/141403634?v=4",
+ "profile_url": "https://github.com/harshjainh2j"
+ },
+ "anchalbha": {
+ "expectedPoints": 7,
+ "currentPoints": 7,
+ "levels": {
+ "level1": 0,
+ "level2": 1,
+ "level3": 0
+ },
+ "prs": [
+ {
+ "url": "https://github.com/code-well0/trip-planner/pull/35",
+ "title": "Enhanced UI of Expense Tracker Page",
+ "repo": "code-well0/trip-planner",
+ "level": "level2",
+ "points": 7,
+ "created_at": "2025-08-02T11:30:40Z",
+ "updated_at": "2025-08-02T12:51:47Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-08-02T12:51:47Z",
+ "author_url": "https://github.com/anchalbha",
+ "author_avatar": "https://avatars.githubusercontent.com/u/198003630?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/198003630?v=4",
+ "profile_url": "https://github.com/anchalbha"
+ },
+ "supriya46788": {
+ "expectedPoints": 14,
+ "currentPoints": 7,
+ "levels": {
+ "level1": 0,
+ "level2": 2,
+ "level3": 0
+ },
+ "prs": [
+ {
+ "url": "https://github.com/code-well0/trip-planner/pull/8",
+ "title": "Added Homepage",
+ "repo": "code-well0/trip-planner",
+ "level": "level2",
+ "points": 7,
+ "created_at": "2025-07-29T08:42:57Z",
+ "updated_at": "2025-08-03T07:53:19Z",
+ "state": "open",
+ "merged": false,
+ "merged_at": null,
+ "author_url": "https://github.com/supriya46788",
+ "author_avatar": "https://avatars.githubusercontent.com/u/155548316?v=4"
+ },
+ {
+ "url": "https://github.com/vaibhavrajharsh/Music-Player/pull/16",
+ "title": "Fixed responsiveness of ui",
+ "repo": "vaibhavrajharsh/Music-Player",
+ "level": "level2",
+ "points": 7,
+ "created_at": "2025-07-29T01:42:21Z",
+ "updated_at": "2025-07-31T12:49:52Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-29T09:14:32Z",
+ "author_url": "https://github.com/supriya46788",
+ "author_avatar": "https://avatars.githubusercontent.com/u/155548316?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/155548316?v=4",
+ "profile_url": "https://github.com/supriya46788"
+ },
+ "Samiksha-bajoria": {
+ "expectedPoints": 7,
+ "currentPoints": 7,
+ "levels": {
+ "level1": 0,
+ "level2": 1,
+ "level3": 0
+ },
+ "prs": [
+ {
+ "url": "https://github.com/shuvadeepmondal/HacKerZGuiDe/pull/82",
+ "title": "created issue template",
+ "repo": "shuvadeepmondal/HacKerZGuiDe",
+ "level": "level2",
+ "points": 7,
+ "created_at": "2025-08-01T17:15:37Z",
+ "updated_at": "2025-08-01T20:36:48Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-08-01T20:35:49Z",
+ "author_url": "https://github.com/Samiksha-bajoria",
+ "author_avatar": "https://avatars.githubusercontent.com/u/191669201?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/191669201?v=4",
+ "profile_url": "https://github.com/Samiksha-bajoria"
+ },
+ "Rituahirwar": {
+ "expectedPoints": 7,
+ "currentPoints": 7,
+ "levels": {
+ "level1": 0,
+ "level2": 1,
+ "level3": 0
+ },
+ "prs": [
+ {
+ "url": "https://github.com/sachiva1/sachiva/pull/91",
+ "title": "Add Help Me Choose Feature to Home Page",
+ "repo": "sachiva1/sachiva",
+ "level": "level2",
+ "points": 7,
+ "created_at": "2025-08-02T11:15:15Z",
+ "updated_at": "2025-08-02T12:54:39Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-08-02T12:53:31Z",
+ "author_url": "https://github.com/Rituahirwar",
+ "author_avatar": "https://avatars.githubusercontent.com/u/189231959?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/189231959?v=4",
+ "profile_url": "https://github.com/Rituahirwar"
+ },
+ "Anupriyasoni21": {
+ "expectedPoints": 7,
+ "currentPoints": 7,
+ "levels": {
+ "level1": 0,
+ "level2": 1,
+ "level3": 0
+ },
+ "prs": [
+ {
+ "url": "https://github.com/sachiva1/sachiva/pull/90",
+ "title": "Added Scroll Shadow Effect to Fixed Navbar",
+ "repo": "sachiva1/sachiva",
+ "level": "level2",
+ "points": 7,
+ "created_at": "2025-08-02T10:38:03Z",
+ "updated_at": "2025-08-02T11:19:40Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-08-02T11:17:57Z",
+ "author_url": "https://github.com/Anupriyasoni21",
+ "author_avatar": "https://avatars.githubusercontent.com/u/182332326?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/182332326?v=4",
+ "profile_url": "https://github.com/Anupriyasoni21"
+ },
+ "Shubham-Yadav22": {
+ "expectedPoints": 7,
+ "currentPoints": 7,
+ "levels": {
+ "level1": 0,
+ "level2": 1,
+ "level3": 0
+ },
+ "prs": [
+ {
+ "url": "https://github.com/sachiva1/sachiva/pull/52",
+ "title": "fix the text now it is visible in both dark and light mode",
+ "repo": "sachiva1/sachiva",
+ "level": "level2",
+ "points": 7,
+ "created_at": "2025-07-31T09:56:31Z",
+ "updated_at": "2025-07-31T16:22:21Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-31T16:20:01Z",
+ "author_url": "https://github.com/Shubham-Yadav22",
+ "author_avatar": "https://avatars.githubusercontent.com/u/149295302?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/149295302?v=4",
+ "profile_url": "https://github.com/Shubham-Yadav22"
+ },
+ "balraj009": {
+ "expectedPoints": 7,
+ "currentPoints": 7,
+ "levels": {
+ "level1": 0,
+ "level2": 1,
+ "level3": 0
+ },
+ "prs": [
+ {
+ "url": "https://github.com/SurajSG23/Job-Portal/pull/112",
+ "title": "Enhanced homepage UI with modern hero, gradient background, animation…",
+ "repo": "SurajSG23/Job-Portal",
+ "level": "level2",
+ "points": 7,
+ "created_at": "2025-08-02T12:14:48Z",
+ "updated_at": "2025-08-02T16:19:59Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-08-02T16:19:53Z",
+ "author_url": "https://github.com/balraj009",
+ "author_avatar": "https://avatars.githubusercontent.com/u/147970919?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/147970919?v=4",
+ "profile_url": "https://github.com/balraj009"
+ },
+ "prushti1521": {
+ "expectedPoints": 7,
+ "currentPoints": 7,
+ "levels": {
+ "level1": 0,
+ "level2": 1,
+ "level3": 0
+ },
+ "prs": [
+ {
+ "url": "https://github.com/SurajSG23/Job-Portal/pull/108",
+ "title": "feat: back to top button",
+ "repo": "SurajSG23/Job-Portal",
+ "level": "level2",
+ "points": 7,
+ "created_at": "2025-08-02T11:16:57Z",
+ "updated_at": "2025-08-02T16:19:28Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-08-02T16:19:17Z",
+ "author_url": "https://github.com/prushti1521",
+ "author_avatar": "https://avatars.githubusercontent.com/u/199481998?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/199481998?v=4",
+ "profile_url": "https://github.com/prushti1521"
+ },
+ "notsorashi": {
+ "expectedPoints": 7,
+ "currentPoints": 7,
+ "levels": {
+ "level1": 0,
+ "level2": 1,
+ "level3": 0
+ },
+ "prs": [
+ {
+ "url": "https://github.com/SurajSG23/Job-Portal/pull/46",
+ "title": "search and filter option",
+ "repo": "SurajSG23/Job-Portal",
+ "level": "level2",
+ "points": 7,
+ "created_at": "2025-07-30T07:36:02Z",
+ "updated_at": "2025-07-30T08:17:31Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-30T08:15:38Z",
+ "author_url": "https://github.com/notsorashi",
+ "author_avatar": "https://avatars.githubusercontent.com/u/167489597?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/167489597?v=4",
+ "profile_url": "https://github.com/notsorashi"
+ },
+ "Kndn15": {
+ "expectedPoints": 7,
+ "currentPoints": 7,
+ "levels": {
+ "level1": 0,
+ "level2": 1,
+ "level3": 0
+ },
+ "prs": [
+ {
+ "url": "https://github.com/SurajSG23/Job-Portal/pull/38",
+ "title": "fix: home-about links",
+ "repo": "SurajSG23/Job-Portal",
+ "level": "level2",
+ "points": 7,
+ "created_at": "2025-07-30T03:38:55Z",
+ "updated_at": "2025-07-30T04:31:56Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-30T04:31:46Z",
+ "author_url": "https://github.com/Kndn15",
+ "author_avatar": "https://avatars.githubusercontent.com/u/142054093?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/142054093?v=4",
+ "profile_url": "https://github.com/Kndn15"
+ },
+ "ShroudAnkit53": {
+ "expectedPoints": 7,
+ "currentPoints": 7,
+ "levels": {
+ "level1": 0,
+ "level2": 1,
+ "level3": 0
+ },
+ "prs": [
+ {
+ "url": "https://github.com/vaibhavrajharsh/Music-Player/pull/64",
+ "title": "Adding a Loader animation before it shows the main page ",
+ "repo": "vaibhavrajharsh/Music-Player",
+ "level": "level2",
+ "points": 7,
+ "created_at": "2025-08-02T15:24:40Z",
+ "updated_at": "2025-08-02T16:52:03Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-08-02T16:49:20Z",
+ "author_url": "https://github.com/ShroudAnkit53",
+ "author_avatar": "https://avatars.githubusercontent.com/u/136951072?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/136951072?v=4",
+ "profile_url": "https://github.com/ShroudAnkit53"
+ },
+ "Pktgithub": {
+ "expectedPoints": 7,
+ "currentPoints": 7,
+ "levels": {
+ "level1": 0,
+ "level2": 1,
+ "level3": 0
+ },
+ "prs": [
+ {
+ "url": "https://github.com/vaibhavrajharsh/Music-Player/pull/25",
+ "title": "fixed the issue #9",
+ "repo": "vaibhavrajharsh/Music-Player",
+ "level": "level2",
+ "points": 7,
+ "created_at": "2025-07-29T14:08:47Z",
+ "updated_at": "2025-07-31T12:51:53Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-29T18:34:43Z",
+ "author_url": "https://github.com/Pktgithub",
+ "author_avatar": "https://avatars.githubusercontent.com/u/151939620?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/151939620?v=4",
+ "profile_url": "https://github.com/Pktgithub"
+ },
+ "shrutirathod12": {
+ "expectedPoints": 7,
+ "currentPoints": 7,
+ "levels": {
+ "level1": 0,
+ "level2": 1,
+ "level3": 0
+ },
+ "prs": [
+ {
+ "url": "https://github.com/vaibhavrajharsh/Music-Player/pull/24",
+ "title": " Light/Dark Mode Toggle Not Fully Switching UI Colors",
+ "repo": "vaibhavrajharsh/Music-Player",
+ "level": "level2",
+ "points": 7,
+ "created_at": "2025-07-29T13:51:37Z",
+ "updated_at": "2025-07-31T12:51:21Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-29T18:31:27Z",
+ "author_url": "https://github.com/shrutirathod12",
+ "author_avatar": "https://avatars.githubusercontent.com/u/175861108?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/175861108?v=4",
+ "profile_url": "https://github.com/shrutirathod12"
+ },
+ "aashitanegii": {
+ "expectedPoints": 8,
+ "currentPoints": 4,
+ "levels": {
+ "level1": 2,
+ "level2": 0,
+ "level3": 0
+ },
+ "prs": [
+ {
+ "url": "https://github.com/Coden-inja/alchEmaiLyst/pull/25",
+ "title": "Create CodeOfConduct.md",
+ "repo": "Coden-inja/alchEmaiLyst",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-08-02T12:21:20Z",
+ "updated_at": "2025-08-02T12:43:06Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-08-02T12:33:19Z",
+ "author_url": "https://github.com/aashitanegii",
+ "author_avatar": "https://avatars.githubusercontent.com/u/219560739?v=4"
+ },
+ {
+ "url": "https://github.com/harsh3dev/DevMatchups/pull/157",
+ "title": "Updated README.md",
+ "repo": "harsh3dev/DevMatchups",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-08-02T14:31:12Z",
+ "updated_at": "2025-08-02T18:49:53Z",
+ "state": "open",
+ "merged": false,
+ "merged_at": null,
+ "author_url": "https://github.com/aashitanegii",
+ "author_avatar": "https://avatars.githubusercontent.com/u/219560739?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/219560739?v=4",
+ "profile_url": "https://github.com/aashitanegii"
+ },
+ "dharapandya85": {
+ "expectedPoints": 4,
+ "currentPoints": 4,
+ "levels": {
+ "level1": 1,
+ "level2": 0,
+ "level3": 0
+ },
+ "prs": [
+ {
+ "url": "https://github.com/Coden-inja/alchEmaiLyst/pull/22",
+ "title": "Fix: Ensure hero text blocks are responsive on mobile and do not overlap",
+ "repo": "Coden-inja/alchEmaiLyst",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-08-01T16:20:29Z",
+ "updated_at": "2025-08-02T11:37:09Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-08-02T11:36:41Z",
+ "author_url": "https://github.com/dharapandya85",
+ "author_avatar": "https://avatars.githubusercontent.com/u/109461918?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/109461918?v=4",
+ "profile_url": "https://github.com/dharapandya85"
+ },
+ "sarayu1310": {
+ "expectedPoints": 4,
+ "currentPoints": 4,
+ "levels": {
+ "level1": 1,
+ "level2": 0,
+ "level3": 0
+ },
+ "prs": [
+ {
+ "url": "https://github.com/Coden-inja/alchEmaiLyst/pull/15",
+ "title": "fixed authentication error",
+ "repo": "Coden-inja/alchEmaiLyst",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-31T11:30:38Z",
+ "updated_at": "2025-07-31T13:44:44Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-31T13:44:44Z",
+ "author_url": "https://github.com/sarayu1310",
+ "author_avatar": "https://avatars.githubusercontent.com/u/131524805?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/131524805?v=4",
+ "profile_url": "https://github.com/sarayu1310"
+ },
+ "tushsharmas": {
+ "expectedPoints": 4,
+ "currentPoints": 4,
+ "levels": {
+ "level1": 1,
+ "level2": 0,
+ "level3": 0
+ },
+ "prs": [
+ {
+ "url": "https://github.com/Coden-inja/alchEmaiLyst/pull/5",
+ "title": "Add MIT License to the Project",
+ "repo": "Coden-inja/alchEmaiLyst",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-28T10:02:34Z",
+ "updated_at": "2025-07-28T14:21:34Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-28T13:48:28Z",
+ "author_url": "https://github.com/tushsharmas",
+ "author_avatar": "https://avatars.githubusercontent.com/u/134868500?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/134868500?v=4",
+ "profile_url": "https://github.com/tushsharmas"
+ },
+ "infinitepush": {
+ "expectedPoints": 4,
+ "currentPoints": 4,
+ "levels": {
+ "level1": 1,
+ "level2": 0,
+ "level3": 0
+ },
+ "prs": [
+ {
+ "url": "https://github.com/Coden-inja/alchEmaiLyst/pull/3",
+ "title": "Added documentation files: getting_started.md, project_structure.md, …",
+ "repo": "Coden-inja/alchEmaiLyst",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-28T03:08:22Z",
+ "updated_at": "2025-07-28T14:21:00Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-28T13:50:06Z",
+ "author_url": "https://github.com/infinitepush",
+ "author_avatar": "https://avatars.githubusercontent.com/u/217496749?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/217496749?v=4",
+ "profile_url": "https://github.com/infinitepush"
+ },
+ "vinitjain2005": {
+ "expectedPoints": 4,
+ "currentPoints": 4,
+ "levels": {
+ "level1": 1,
+ "level2": 0,
+ "level3": 0
+ },
+ "prs": [
+ {
+ "url": "https://github.com/CoderUzumaki/PrepEdge-AI/pull/44",
+ "title": "Added License section in README",
+ "repo": "coderuzumaki/prepedge-ai",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-08-01T10:27:53Z",
+ "updated_at": "2025-08-01T13:02:43Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-08-01T13:02:43Z",
+ "author_url": "https://github.com/vinitjain2005",
+ "author_avatar": "https://avatars.githubusercontent.com/u/161056675?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/161056675?v=4",
+ "profile_url": "https://github.com/vinitjain2005"
+ },
+ "EammenShaik": {
+ "expectedPoints": 4,
+ "currentPoints": 4,
+ "levels": {
+ "level1": 1,
+ "level2": 0,
+ "level3": 0
+ },
+ "prs": [
+ {
+ "url": "https://github.com/Skrache/crisisboard/pull/14",
+ "title": "Create LICENSE",
+ "repo": "Ambit-ion/crisisboard",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-31T05:55:21Z",
+ "updated_at": "2025-07-31T06:44:12Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-31T06:44:11Z",
+ "author_url": "https://github.com/EammenShaik",
+ "author_avatar": "https://avatars.githubusercontent.com/u/200224775?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/200224775?v=4",
+ "profile_url": "https://github.com/EammenShaik"
+ },
+ "spidey279": {
+ "expectedPoints": 4,
+ "currentPoints": 4,
+ "levels": {
+ "level1": 1,
+ "level2": 0,
+ "level3": 0
+ },
+ "prs": [
+ {
+ "url": "https://github.com/AditiGupta-tech/neonest/pull/74",
+ "title": "feat: navbar logo redirect",
+ "repo": "AditiGupta-tech/neonest",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-31T04:34:55Z",
+ "updated_at": "2025-07-31T10:54:34Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-31T06:46:03Z",
+ "author_url": "https://github.com/spidey279",
+ "author_avatar": "https://avatars.githubusercontent.com/u/215125309?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/215125309?v=4",
+ "profile_url": "https://github.com/spidey279"
+ },
+ "kris2005mehra": {
+ "expectedPoints": 4,
+ "currentPoints": 4,
+ "levels": {
+ "level1": 1,
+ "level2": 0,
+ "level3": 0
+ },
+ "prs": [
+ {
+ "url": "https://github.com/adityakalburgi/Travel_ageny_website/pull/53",
+ "title": "Customer Reviews And Ratings Section Added issue #14",
+ "repo": "adityakalburgi/Travel_ageny_website",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-08-01T22:09:23Z",
+ "updated_at": "2025-08-02T15:14:10Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-08-02T15:12:43Z",
+ "author_url": "https://github.com/kris2005mehra",
+ "author_avatar": "https://avatars.githubusercontent.com/u/183271663?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/183271663?v=4",
+ "profile_url": "https://github.com/kris2005mehra"
+ },
+ "madhulatha777": {
+ "expectedPoints": 4,
+ "currentPoints": 4,
+ "levels": {
+ "level1": 1,
+ "level2": 0,
+ "level3": 0
+ },
+ "prs": [
+ {
+ "url": "https://github.com/adityakalburgi/Travel_ageny_website/pull/42",
+ "title": "Added Scroll to Top Button",
+ "repo": "adityakalburgi/Travel_ageny_website",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-08-01T12:46:42Z",
+ "updated_at": "2025-08-02T15:42:08Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-08-02T15:41:33Z",
+ "author_url": "https://github.com/madhulatha777",
+ "author_avatar": "https://avatars.githubusercontent.com/u/176401401?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/176401401?v=4",
+ "profile_url": "https://github.com/madhulatha777"
+ },
+ "jiyabatra29": {
+ "expectedPoints": 4,
+ "currentPoints": 4,
+ "levels": {
+ "level1": 1,
+ "level2": 0,
+ "level3": 0
+ },
+ "prs": [
+ {
+ "url": "https://github.com/adityakalburgi/Travel_ageny_website/pull/39",
+ "title": "Fix :Resolved the Home page and Tour page Form Validations (#28)",
+ "repo": "adityakalburgi/Travel_ageny_website",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-31T18:37:25Z",
+ "updated_at": "2025-08-02T15:43:13Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-08-02T15:42:46Z",
+ "author_url": "https://github.com/jiyabatra29",
+ "author_avatar": "https://avatars.githubusercontent.com/u/196101829?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/196101829?v=4",
+ "profile_url": "https://github.com/jiyabatra29"
+ },
+ "ChaitanyaAgarwal72": {
+ "expectedPoints": 4,
+ "currentPoints": 4,
+ "levels": {
+ "level1": 1,
+ "level2": 0,
+ "level3": 0
+ },
+ "prs": [
+ {
+ "url": "https://github.com/adityakalburgi/Travel_ageny_website/pull/37",
+ "title": "Fixing Quick Links Navigation #19",
+ "repo": "adityakalburgi/Travel_ageny_website",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-31T17:57:38Z",
+ "updated_at": "2025-08-01T12:13:33Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-08-01T12:12:59Z",
+ "author_url": "https://github.com/ChaitanyaAgarwal72",
+ "author_avatar": "https://avatars.githubusercontent.com/u/145689555?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/145689555?v=4",
+ "profile_url": "https://github.com/ChaitanyaAgarwal72"
+ },
+ "NITESHBHARDWAJ001": {
+ "expectedPoints": 4,
+ "currentPoints": 4,
+ "levels": {
+ "level1": 1,
+ "level2": 0,
+ "level3": 0
+ },
+ "prs": [
+ {
+ "url": "https://github.com/adityakalburgi/Travel_ageny_website/pull/6",
+ "title": "Add modern glassmorphic search bar component",
+ "repo": "adityakalburgi/Travel_ageny_website",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-28T09:11:22Z",
+ "updated_at": "2025-08-01T11:59:24Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-08-01T11:58:54Z",
+ "author_url": "https://github.com/NITESHBHARDWAJ001",
+ "author_avatar": "https://avatars.githubusercontent.com/u/169159672?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/169159672?v=4",
+ "profile_url": "https://github.com/NITESHBHARDWAJ001"
+ },
+ "raman976": {
+ "expectedPoints": 4,
+ "currentPoints": 4,
+ "levels": {
+ "level1": 1,
+ "level2": 0,
+ "level3": 0
+ },
+ "prs": [
+ {
+ "url": "https://github.com/SharonIV0x86/CinderPeak/pull/4",
+ "title": "chore(src): Removed commented out calls to graph.visualize() in /src",
+ "repo": "SharonIV0x86/CinderPeak",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-27T18:30:45Z",
+ "updated_at": "2025-07-30T15:22:45Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-30T15:22:45Z",
+ "author_url": "https://github.com/raman976",
+ "author_avatar": "https://avatars.githubusercontent.com/u/175819200?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/175819200?v=4",
+ "profile_url": "https://github.com/raman976"
+ },
+ "Jahanvi-Gupta": {
+ "expectedPoints": 4,
+ "currentPoints": 4,
+ "levels": {
+ "level1": 1,
+ "level2": 0,
+ "level3": 0
+ },
+ "prs": [
+ {
+ "url": "https://github.com/Creators-Space/Creators-Space/pull/117",
+ "title": "Fix placeholder social links in footer ",
+ "repo": "Creators-Space/Creators-Space",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-08-01T07:58:43Z",
+ "updated_at": "2025-08-02T13:41:30Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-08-02T13:04:24Z",
+ "author_url": "https://github.com/Jahanvi-Gupta",
+ "author_avatar": "https://avatars.githubusercontent.com/u/179902221?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/179902221?v=4",
+ "profile_url": "https://github.com/Jahanvi-Gupta"
+ },
+ "Raissa-1104080": {
+ "expectedPoints": 4,
+ "currentPoints": 4,
+ "levels": {
+ "level1": 1,
+ "level2": 0,
+ "level3": 0
+ },
+ "prs": [
+ {
+ "url": "https://github.com/Creators-Space/Creators-Space/pull/111",
+ "title": "issue #90 adding fields to sign-up.",
+ "repo": "Creators-Space/Creators-Space",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-31T18:44:27Z",
+ "updated_at": "2025-08-01T18:32:25Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-08-01T07:50:25Z",
+ "author_url": "https://github.com/Raissa-1104080",
+ "author_avatar": "https://avatars.githubusercontent.com/u/179690425?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/179690425?v=4",
+ "profile_url": "https://github.com/Raissa-1104080"
+ },
+ "abinayagoudjandhyala": {
+ "expectedPoints": 4,
+ "currentPoints": 4,
+ "levels": {
+ "level1": 1,
+ "level2": 0,
+ "level3": 0
+ },
+ "prs": [
+ {
+ "url": "https://github.com/Creators-Space/Creators-Space/pull/100",
+ "title": "feature: Add “Why Learn With Us” Section Above Testimonials – closes #73",
+ "repo": "Creators-Space/Creators-Space",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-31T14:20:49Z",
+ "updated_at": "2025-07-31T14:24:48Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-31T14:24:48Z",
+ "author_url": "https://github.com/abinayagoudjandhyala",
+ "author_avatar": "https://avatars.githubusercontent.com/u/168286063?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/168286063?v=4",
+ "profile_url": "https://github.com/abinayagoudjandhyala"
+ },
+ "parul-64": {
+ "expectedPoints": 4,
+ "currentPoints": 4,
+ "levels": {
+ "level1": 1,
+ "level2": 0,
+ "level3": 0
+ },
+ "prs": [
+ {
+ "url": "https://github.com/Creators-Space/Creators-Space/pull/91",
+ "title": "Enhance Navbar UI with Blur, Sticky Position, and Styling Improvements",
+ "repo": "Creators-Space/Creators-Space",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-30T19:45:40Z",
+ "updated_at": "2025-07-31T14:46:42Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-31T14:29:04Z",
+ "author_url": "https://github.com/parul-64",
+ "author_avatar": "https://avatars.githubusercontent.com/u/221825677?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/221825677?v=4",
+ "profile_url": "https://github.com/parul-64"
+ },
+ "rajasmitaa": {
+ "expectedPoints": 4,
+ "currentPoints": 4,
+ "levels": {
+ "level1": 1,
+ "level2": 0,
+ "level3": 0
+ },
+ "prs": [
+ {
+ "url": "https://github.com/Creators-Space/Creators-Space/pull/34",
+ "title": "Added Scroll to Top button with smooth scroll",
+ "repo": "Creators-Space/Creators-Space",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-28T14:05:42Z",
+ "updated_at": "2025-07-29T15:36:36Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-29T14:31:31Z",
+ "author_url": "https://github.com/rajasmitaa",
+ "author_avatar": "https://avatars.githubusercontent.com/u/146310937?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/146310937?v=4",
+ "profile_url": "https://github.com/rajasmitaa"
+ },
+ "Afshan0608": {
+ "expectedPoints": 4,
+ "currentPoints": 4,
+ "levels": {
+ "level1": 1,
+ "level2": 0,
+ "level3": 0
+ },
+ "prs": [
+ {
+ "url": "https://github.com/Creators-Space/Creators-Space/pull/7",
+ "title": "Add CODE_OF_CONDUCT.md to establish community standards",
+ "repo": "Creators-Space/Creators-Space",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-27T18:46:10Z",
+ "updated_at": "2025-07-27T18:59:53Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-27T18:51:51Z",
+ "author_url": "https://github.com/Afshan0608",
+ "author_avatar": "https://avatars.githubusercontent.com/u/147901722?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/147901722?v=4",
+ "profile_url": "https://github.com/Afshan0608"
+ },
+ "Rasagna21105": {
+ "expectedPoints": 4,
+ "currentPoints": 4,
+ "levels": {
+ "level1": 1,
+ "level2": 0,
+ "level3": 0
+ },
+ "prs": [
+ {
+ "url": "https://github.com/BDutta18/BodyCraft-Gym/pull/73",
+ "title": "Added SignIn and SignUp page",
+ "repo": "BDutta18/BodyCraft-Gym",
+ "level": null,
+ "points": 0,
+ "created_at": "2025-07-31T15:48:15Z",
+ "updated_at": "2025-08-02T10:05:09Z",
+ "state": "closed",
+ "merged": false,
+ "merged_at": null,
+ "author_url": "https://github.com/Rasagna21105",
+ "author_avatar": "https://avatars.githubusercontent.com/u/197230429?v=4"
+ },
+ {
+ "url": "https://github.com/Varshitha713/first-contrib-placement/pull/45",
+ "title": "Added mock tests and interview prep",
+ "repo": "Varshitha713/first-contrib-placement",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-30T18:47:32Z",
+ "updated_at": "2025-08-03T05:10:15Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-31T09:02:08Z",
+ "author_url": "https://github.com/Rasagna21105",
+ "author_avatar": "https://avatars.githubusercontent.com/u/197230429?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/197230429?v=4",
+ "profile_url": "https://github.com/Rasagna21105"
+ },
+ "diyakotru": {
+ "expectedPoints": 4,
+ "currentPoints": 4,
+ "levels": {
+ "level1": 1,
+ "level2": 0,
+ "level3": 0
+ },
+ "prs": [
+ {
+ "url": "https://github.com/BDutta18/BodyCraft-Gym/pull/45",
+ "title": "fix: corrected button text casing from 'Book A Class' to 'Book a Class'",
+ "repo": "BDutta18/BodyCraft-Gym",
+ "level": null,
+ "points": 0,
+ "created_at": "2025-07-29T18:12:27Z",
+ "updated_at": "2025-07-29T19:36:46Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-29T19:36:46Z",
+ "author_url": "https://github.com/diyakotru",
+ "author_avatar": "https://avatars.githubusercontent.com/u/181582997?v=4"
+ },
+ {
+ "url": "https://github.com/vaibhavrajharsh/Music-Player/pull/41",
+ "title": "Improve navbar button spacing and size",
+ "repo": "vaibhavrajharsh/Music-Player",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-31T17:55:39Z",
+ "updated_at": "2025-08-01T19:18:30Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-31T18:44:38Z",
+ "author_url": "https://github.com/diyakotru",
+ "author_avatar": "https://avatars.githubusercontent.com/u/181582997?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/181582997?v=4",
+ "profile_url": "https://github.com/diyakotru"
+ },
+ "ItsAbhinavM": {
+ "expectedPoints": 4,
+ "currentPoints": 4,
+ "levels": {
+ "level1": 1,
+ "level2": 0,
+ "level3": 0
+ },
+ "prs": [
+ {
+ "url": "https://github.com/harsh3dev/DevMatchups/pull/154",
+ "title": "feat: add BackToTop function for all pages",
+ "repo": "harsh3dev/DevMatchups",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-08-01T14:48:23Z",
+ "updated_at": "2025-08-02T12:43:15Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-08-01T18:01:47Z",
+ "author_url": "https://github.com/ItsAbhinavM",
+ "author_avatar": "https://avatars.githubusercontent.com/u/141326344?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/141326344?v=4",
+ "profile_url": "https://github.com/ItsAbhinavM"
+ },
+ "VishalKammari": {
+ "expectedPoints": 4,
+ "currentPoints": 4,
+ "levels": {
+ "level1": 1,
+ "level2": 0,
+ "level3": 0
+ },
+ "prs": [
+ {
+ "url": "https://github.com/KrishChothani/CKsEdu/pull/38",
+ "title": "fix: resolve issue #33 where 'Choose Your Plan' heading was not visible",
+ "repo": "KrishChothani/CKsEdu",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-08-01T05:54:53Z",
+ "updated_at": "2025-08-01T10:36:42Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-08-01T10:33:12Z",
+ "author_url": "https://github.com/VishalKammari",
+ "author_avatar": "https://avatars.githubusercontent.com/u/173528183?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/173528183?v=4",
+ "profile_url": "https://github.com/VishalKammari"
+ },
+ "Sitaram8472": {
+ "expectedPoints": 4,
+ "currentPoints": 4,
+ "levels": {
+ "level1": 1,
+ "level2": 0,
+ "level3": 0
+ },
+ "prs": [
+ {
+ "url": "https://github.com/Varshitha713/CodeCanvas/pull/55",
+ "title": "Add Github link",
+ "repo": "Varshitha713/CodeCanvas",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-08-02T13:54:09Z",
+ "updated_at": "2025-08-03T07:41:38Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-08-03T07:41:16Z",
+ "author_url": "https://github.com/Sitaram8472",
+ "author_avatar": "https://avatars.githubusercontent.com/u/203215657?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/203215657?v=4",
+ "profile_url": "https://github.com/Sitaram8472"
+ },
+ "VarshithaVemula": {
+ "expectedPoints": 4,
+ "currentPoints": 4,
+ "levels": {
+ "level1": 1,
+ "level2": 0,
+ "level3": 0
+ },
+ "prs": [
+ {
+ "url": "https://github.com/Varshitha713/CodeCanvas/pull/50",
+ "title": "Reviews page added",
+ "repo": "Varshitha713/CodeCanvas",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-08-02T09:11:06Z",
+ "updated_at": "2025-08-02T09:21:42Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-08-02T09:20:35Z",
+ "author_url": "https://github.com/VarshithaVemula",
+ "author_avatar": "https://avatars.githubusercontent.com/u/176684317?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/176684317?v=4",
+ "profile_url": "https://github.com/VarshithaVemula"
+ },
+ "abhiraj-arya2006": {
+ "expectedPoints": 4,
+ "currentPoints": 4,
+ "levels": {
+ "level1": 1,
+ "level2": 0,
+ "level3": 0
+ },
+ "prs": [
+ {
+ "url": "https://github.com/Varshitha713/first-contrib-placement/pull/64",
+ "title": "Added AtCoder resource with description and link",
+ "repo": "Varshitha713/first-contrib-placement",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-08-01T20:14:30Z",
+ "updated_at": "2025-08-01T20:20:57Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-08-01T20:20:06Z",
+ "author_url": "https://github.com/abhiraj-arya2006",
+ "author_avatar": "https://avatars.githubusercontent.com/u/69707413?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/69707413?v=4",
+ "profile_url": "https://github.com/abhiraj-arya2006"
+ },
+ "Sarah-Kazi": {
+ "expectedPoints": 4,
+ "currentPoints": 4,
+ "levels": {
+ "level1": 1,
+ "level2": 0,
+ "level3": 0
+ },
+ "prs": [
+ {
+ "url": "https://github.com/Varshitha713/first-contrib-placement/pull/34",
+ "title": "Added 5 extra resources and hover effects",
+ "repo": "Varshitha713/first-contrib-placement",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-30T12:36:14Z",
+ "updated_at": "2025-07-31T08:53:31Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-31T08:53:09Z",
+ "author_url": "https://github.com/Sarah-Kazi",
+ "author_avatar": "https://avatars.githubusercontent.com/u/174946803?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/174946803?v=4",
+ "profile_url": "https://github.com/Sarah-Kazi"
+ },
+ "chhavikant03": {
+ "expectedPoints": 4,
+ "currentPoints": 4,
+ "levels": {
+ "level1": 1,
+ "level2": 0,
+ "level3": 0
+ },
+ "prs": [
+ {
+ "url": "https://github.com/Varshitha713/first-contrib-placement/pull/16",
+ "title": "Added three new resources",
+ "repo": "Varshitha713/first-contrib-placement",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-28T13:35:28Z",
+ "updated_at": "2025-07-30T06:32:02Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-28T14:04:40Z",
+ "author_url": "https://github.com/chhavikant03",
+ "author_avatar": "https://avatars.githubusercontent.com/u/176620569?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/176620569?v=4",
+ "profile_url": "https://github.com/chhavikant03"
+ },
+ "GauravSinghRawat1": {
+ "expectedPoints": 4,
+ "currentPoints": 4,
+ "levels": {
+ "level1": 1,
+ "level2": 0,
+ "level3": 0
+ },
+ "prs": [
+ {
+ "url": "https://github.com/piyushpatelcodes/gssocFAQ-Bot/pull/50",
+ "title": "feat: Add favicon to site",
+ "repo": "piyushpatelcodes/gssocFAQ-Bot",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-28T12:07:50Z",
+ "updated_at": "2025-07-29T07:50:11Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-28T12:31:07Z",
+ "author_url": "https://github.com/GauravSinghRawat1",
+ "author_avatar": "https://avatars.githubusercontent.com/u/186670246?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/186670246?v=4",
+ "profile_url": "https://github.com/GauravSinghRawat1"
+ },
+ "Anu-code02": {
+ "expectedPoints": 4,
+ "currentPoints": 4,
+ "levels": {
+ "level1": 1,
+ "level2": 0,
+ "level3": 0
+ },
+ "prs": [
+ {
+ "url": "https://github.com/piyushpatelcodes/gssocFAQ-Bot/pull/46",
+ "title": "Fix image paths in HTML/CSS and improve card styling after serving static folder .",
+ "repo": "piyushpatelcodes/gssocFAQ-Bot",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-28T09:18:54Z",
+ "updated_at": "2025-07-28T12:06:39Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-28T09:42:09Z",
+ "author_url": "https://github.com/Anu-code02",
+ "author_avatar": "https://avatars.githubusercontent.com/u/217914862?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/217914862?v=4",
+ "profile_url": "https://github.com/Anu-code02"
+ },
+ "Sohanprabhas": {
+ "expectedPoints": 4,
+ "currentPoints": 4,
+ "levels": {
+ "level1": 1,
+ "level2": 0,
+ "level3": 0
+ },
+ "prs": [
+ {
+ "url": "https://github.com/piyushpatelcodes/gssocFAQ-Bot/pull/42",
+ "title": "Revamped footer with logo, links, and GSSoC'25 info",
+ "repo": "piyushpatelcodes/gssocFAQ-Bot",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-27T12:20:31Z",
+ "updated_at": "2025-07-28T11:42:03Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-27T15:02:09Z",
+ "author_url": "https://github.com/Sohanprabhas",
+ "author_avatar": "https://avatars.githubusercontent.com/u/170120611?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/170120611?v=4",
+ "profile_url": "https://github.com/Sohanprabhas"
+ },
+ "ekaagragupta": {
+ "expectedPoints": 4,
+ "currentPoints": 4,
+ "levels": {
+ "level1": 1,
+ "level2": 0,
+ "level3": 0
+ },
+ "prs": [
+ {
+ "url": "https://github.com/piyushpatelcodes/gssocFAQ-Bot/pull/40",
+ "title": "Revamped card component styling and fixed image paths in css",
+ "repo": "piyushpatelcodes/gssocFAQ-Bot",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-27T09:16:02Z",
+ "updated_at": "2025-07-28T11:41:33Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-27T11:13:15Z",
+ "author_url": "https://github.com/ekaagragupta",
+ "author_avatar": "https://avatars.githubusercontent.com/u/170743084?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/170743084?v=4",
+ "profile_url": "https://github.com/ekaagragupta"
+ },
+ "Laharivanja": {
+ "expectedPoints": 4,
+ "currentPoints": 4,
+ "levels": {
+ "level1": 1,
+ "level2": 0,
+ "level3": 0
+ },
+ "prs": [
+ {
+ "url": "https://github.com/piyushpatelcodes/gssocFAQ-Bot/pull/36",
+ "title": "Add MIT LICENSE file",
+ "repo": "piyushpatelcodes/gssocFAQ-Bot",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-27T07:31:18Z",
+ "updated_at": "2025-07-27T07:44:57Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-27T07:40:06Z",
+ "author_url": "https://github.com/Laharivanja",
+ "author_avatar": "https://avatars.githubusercontent.com/u/171836304?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/171836304?v=4",
+ "profile_url": "https://github.com/Laharivanja"
+ },
+ "Simu000": {
+ "expectedPoints": 4,
+ "currentPoints": 4,
+ "levels": {
+ "level1": 1,
+ "level2": 0,
+ "level3": 0
+ },
+ "prs": [
+ {
+ "url": "https://github.com/piyushpatelcodes/gssocFAQ-Bot/pull/35",
+ "title": "Add FAQ: Can I contribute to multiple projects?",
+ "repo": "piyushpatelcodes/gssocFAQ-Bot",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-27T07:27:23Z",
+ "updated_at": "2025-07-28T17:10:08Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-27T07:45:52Z",
+ "author_url": "https://github.com/Simu000",
+ "author_avatar": "https://avatars.githubusercontent.com/u/177395445?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/177395445?v=4",
+ "profile_url": "https://github.com/Simu000"
+ },
+ "abdulwasaeee": {
+ "expectedPoints": 4,
+ "currentPoints": 4,
+ "levels": {
+ "level1": 1,
+ "level2": 0,
+ "level3": 0
+ },
+ "prs": [
+ {
+ "url": "https://github.com/piyushpatelcodes/gssocFAQ-Bot/pull/9",
+ "title": "Add complete README and MIT License to project",
+ "repo": "piyushpatelcodes/gssocFAQ-Bot",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-24T16:08:01Z",
+ "updated_at": "2025-07-25T07:06:15Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-24T18:51:36Z",
+ "author_url": "https://github.com/abdulwasaeee",
+ "author_avatar": "https://avatars.githubusercontent.com/u/162667028?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/162667028?v=4",
+ "profile_url": "https://github.com/abdulwasaeee"
+ },
+ "AKSHITA-tech2": {
+ "expectedPoints": 4,
+ "currentPoints": 4,
+ "levels": {
+ "level1": 1,
+ "level2": 0,
+ "level3": 0
+ },
+ "prs": [
+ {
+ "url": "https://github.com/piyushpatelcodes/gssocFAQ-Bot/pull/8",
+ "title": "Added Readme.md with description",
+ "repo": "piyushpatelcodes/gssocFAQ-Bot",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-24T14:02:22Z",
+ "updated_at": "2025-07-25T07:26:22Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-24T18:52:59Z",
+ "author_url": "https://github.com/AKSHITA-tech2",
+ "author_avatar": "https://avatars.githubusercontent.com/u/192592129?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/192592129?v=4",
+ "profile_url": "https://github.com/AKSHITA-tech2"
+ },
+ "Demo672": {
+ "expectedPoints": 4,
+ "currentPoints": 4,
+ "levels": {
+ "level1": 1,
+ "level2": 0,
+ "level3": 0
+ },
+ "prs": [
+ {
+ "url": "https://github.com/piyushpatelcodes/gssocFAQ-Bot/pull/1",
+ "title": "Fixed broken image path in views/index.html",
+ "repo": "piyushpatelcodes/gssocFAQ-Bot",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-22T14:38:43Z",
+ "updated_at": "2025-07-25T15:12:12Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-22T18:46:01Z",
+ "author_url": "https://github.com/Demo672",
+ "author_avatar": "https://avatars.githubusercontent.com/u/122085438?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/122085438?v=4",
+ "profile_url": "https://github.com/Demo672"
+ },
+ "shreyaskan": {
+ "expectedPoints": 4,
+ "currentPoints": 4,
+ "levels": {
+ "level1": 1,
+ "level2": 0,
+ "level3": 0
+ },
+ "prs": [
+ {
+ "url": "https://github.com/Promptzy/Zenjira/pull/35",
+ "title": "feat(navbar) - add navbar component",
+ "repo": "Promptzy/Zenjira",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-29T09:53:32Z",
+ "updated_at": "2025-07-30T14:50:08Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-30T14:50:06Z",
+ "author_url": "https://github.com/shreyaskan",
+ "author_avatar": "https://avatars.githubusercontent.com/u/88060558?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/88060558?v=4",
+ "profile_url": "https://github.com/shreyaskan"
+ },
+ "saikatsardar01": {
+ "expectedPoints": 8,
+ "currentPoints": 4,
+ "levels": {
+ "level1": 2,
+ "level2": 0,
+ "level3": 0
+ },
+ "prs": [
+ {
+ "url": "https://github.com/AKing-283/Rewear/pull/14",
+ "title": "Updated the footer to be responsive",
+ "repo": "AKing-283/Rewear",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-08-02T15:56:56Z",
+ "updated_at": "2025-08-03T00:48:48Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-08-03T00:48:34Z",
+ "author_url": "https://github.com/saikatsardar01",
+ "author_avatar": "https://avatars.githubusercontent.com/u/153124279?v=4"
+ },
+ {
+ "url": "https://github.com/sachiva1/sachiva/pull/89",
+ "title": "Feature/service page fix",
+ "repo": "sachiva1/sachiva",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-08-02T10:25:52Z",
+ "updated_at": "2025-08-02T17:10:17Z",
+ "state": "closed",
+ "merged": false,
+ "merged_at": null,
+ "author_url": "https://github.com/saikatsardar01",
+ "author_avatar": "https://avatars.githubusercontent.com/u/153124279?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/153124279?v=4",
+ "profile_url": "https://github.com/saikatsardar01"
+ },
+ "piyushhvarma": {
+ "expectedPoints": 4,
+ "currentPoints": 4,
+ "levels": {
+ "level1": 1,
+ "level2": 0,
+ "level3": 0
+ },
+ "prs": [
+ {
+ "url": "https://github.com/AKing-283/Rewear/pull/11",
+ "title": "🛠️ UI Enhancement: Revamp and Polish Website Footer Section",
+ "repo": "AKing-283/Rewear",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-31T08:14:30Z",
+ "updated_at": "2025-08-02T12:51:10Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-08-02T01:09:29Z",
+ "author_url": "https://github.com/piyushhvarma",
+ "author_avatar": "https://avatars.githubusercontent.com/u/145499294?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/145499294?v=4",
+ "profile_url": "https://github.com/piyushhvarma"
+ },
+ "chamoli-rudraksh": {
+ "expectedPoints": 4,
+ "currentPoints": 4,
+ "levels": {
+ "level1": 1,
+ "level2": 0,
+ "level3": 0
+ },
+ "prs": [
+ {
+ "url": "https://github.com/rajdeep13-coder/Resume-Generator/pull/67",
+ "title": "Fix: Exclude live preview section from PDF download",
+ "repo": "rajdeep13-coder/Resume-Generator",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-31T14:50:53Z",
+ "updated_at": "2025-07-31T17:07:12Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-31T17:07:12Z",
+ "author_url": "https://github.com/chamoli-rudraksh",
+ "author_avatar": "https://avatars.githubusercontent.com/u/222008978?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/222008978?v=4",
+ "profile_url": "https://github.com/chamoli-rudraksh"
+ },
+ "nikhildeshmukh170": {
+ "expectedPoints": 4,
+ "currentPoints": 4,
+ "levels": {
+ "level1": 1,
+ "level2": 0,
+ "level3": 0
+ },
+ "prs": [
+ {
+ "url": "https://github.com/shandilya-rajnandini/DocAtHome/pull/18",
+ "title": "Display Verification Badges on Doctor/Nurse Profiles",
+ "repo": "shandilya-rajnandini/DocAtHome",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-28T18:06:42Z",
+ "updated_at": "2025-07-29T14:51:00Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-28T18:06:58Z",
+ "author_url": "https://github.com/nikhildeshmukh170",
+ "author_avatar": "https://avatars.githubusercontent.com/u/115735153?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/115735153?v=4",
+ "profile_url": "https://github.com/nikhildeshmukh170"
+ },
+ "AmanBasu20": {
+ "expectedPoints": 4,
+ "currentPoints": 4,
+ "levels": {
+ "level1": 1,
+ "level2": 0,
+ "level3": 0
+ },
+ "prs": [
+ {
+ "url": "https://github.com/Shubhashish-Chakraborty/prepnerdz/pull/64",
+ "title": "feat: Enhanced AskNerd context as per issue #62",
+ "repo": "Shubhashish-Chakraborty/prepnerdz",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-08-01T18:43:38Z",
+ "updated_at": "2025-08-02T17:13:04Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-08-02T17:10:35Z",
+ "author_url": "https://github.com/AmanBasu20",
+ "author_avatar": "https://avatars.githubusercontent.com/u/97802390?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/97802390?v=4",
+ "profile_url": "https://github.com/AmanBasu20"
+ },
+ "Muskan2000227": {
+ "expectedPoints": 4,
+ "currentPoints": 4,
+ "levels": {
+ "level1": 1,
+ "level2": 0,
+ "level3": 0
+ },
+ "prs": [
+ {
+ "url": "https://github.com/Shubhashish-Chakraborty/prepnerdz/pull/59",
+ "title": "fix: correct Back to Login button route on Forgot Password page",
+ "repo": "Shubhashish-Chakraborty/prepnerdz",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-08-01T09:46:53Z",
+ "updated_at": "2025-08-01T10:11:25Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-08-01T10:11:25Z",
+ "author_url": "https://github.com/Muskan2000227",
+ "author_avatar": "https://avatars.githubusercontent.com/u/118728337?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/118728337?v=4",
+ "profile_url": "https://github.com/Muskan2000227"
+ },
+ "HimanshuSolo2005": {
+ "expectedPoints": 4,
+ "currentPoints": 4,
+ "levels": {
+ "level1": 1,
+ "level2": 0,
+ "level3": 0
+ },
+ "prs": [
+ {
+ "url": "https://github.com/Shubhashish-Chakraborty/prepnerdz/pull/57",
+ "title": "fixed a cursor ui issue [#55]",
+ "repo": "Shubhashish-Chakraborty/prepnerdz",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-08-01T08:16:19Z",
+ "updated_at": "2025-08-01T11:45:52Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-08-01T11:32:38Z",
+ "author_url": "https://github.com/HimanshuSolo2005",
+ "author_avatar": "https://avatars.githubusercontent.com/u/190997564?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/190997564?v=4",
+ "profile_url": "https://github.com/HimanshuSolo2005"
+ },
+ "lilith887": {
+ "expectedPoints": 4,
+ "currentPoints": 4,
+ "levels": {
+ "level1": 1,
+ "level2": 0,
+ "level3": 0
+ },
+ "prs": [
+ {
+ "url": "https://github.com/Shubhashish-Chakraborty/prepnerdz/pull/24",
+ "title": "feat: complete API endpoint documentation (closes #21)",
+ "repo": "Shubhashish-Chakraborty/prepnerdz",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-30T08:07:23Z",
+ "updated_at": "2025-07-31T19:18:16Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-30T11:06:16Z",
+ "author_url": "https://github.com/lilith887",
+ "author_avatar": "https://avatars.githubusercontent.com/u/220288144?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/220288144?v=4",
+ "profile_url": "https://github.com/lilith887"
+ },
+ "Avanti2023": {
+ "expectedPoints": 4,
+ "currentPoints": 4,
+ "levels": {
+ "level1": 1,
+ "level2": 0,
+ "level3": 0
+ },
+ "prs": [
+ {
+ "url": "https://github.com/Shubhashish-Chakraborty/prepnerdz/pull/18",
+ "title": "Added the Back-top-button with smooth scroll and animation",
+ "repo": "Shubhashish-Chakraborty/prepnerdz",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-29T13:41:08Z",
+ "updated_at": "2025-07-31T19:18:41Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-29T17:16:10Z",
+ "author_url": "https://github.com/Avanti2023",
+ "author_avatar": "https://avatars.githubusercontent.com/u/144206149?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/144206149?v=4",
+ "profile_url": "https://github.com/Avanti2023"
+ },
+ "RohanExploit": {
+ "expectedPoints": 4,
+ "currentPoints": 4,
+ "levels": {
+ "level1": 1,
+ "level2": 0,
+ "level3": 0
+ },
+ "prs": [
+ {
+ "url": "https://github.com/supriya46788/Driving-Safer-Roads---AI-for-Motor-Insurance-Risk-Assessment/pull/8",
+ "title": "Create CODE_OF_CONDUCT.md",
+ "repo": "supriya46788/Driving-Safer-Roads---AI-for-Motor-Insurance-Risk-Assessment",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-08-02T12:21:16Z",
+ "updated_at": "2025-08-02T12:26:21Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-08-02T12:26:01Z",
+ "author_url": "https://github.com/RohanExploit",
+ "author_avatar": "https://avatars.githubusercontent.com/u/178623867?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/178623867?v=4",
+ "profile_url": "https://github.com/RohanExploit"
+ },
+ "berriesinabox": {
+ "expectedPoints": 4,
+ "currentPoints": 4,
+ "levels": {
+ "level1": 1,
+ "level2": 0,
+ "level3": 0
+ },
+ "prs": [
+ {
+ "url": "https://github.com/supriya46788/Driving-Safer-Roads---AI-for-Motor-Insurance-Risk-Assessment/pull/6",
+ "title": "Create CONTRIBUTING.md",
+ "repo": "supriya46788/Driving-Safer-Roads---AI-for-Motor-Insurance-Risk-Assessment",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-08-02T06:45:37Z",
+ "updated_at": "2025-08-02T07:00:03Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-08-02T06:59:30Z",
+ "author_url": "https://github.com/berriesinabox",
+ "author_avatar": "https://avatars.githubusercontent.com/u/196820853?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/196820853?v=4",
+ "profile_url": "https://github.com/berriesinabox"
+ },
+ "condongilbert": {
+ "expectedPoints": 4,
+ "currentPoints": 4,
+ "levels": {
+ "level1": 1,
+ "level2": 0,
+ "level3": 0
+ },
+ "prs": [
+ {
+ "url": "https://github.com/SurajSG23/Job-Portal/pull/78",
+ "title": "Fixed issue #76",
+ "repo": "SurajSG23/Job-Portal",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-08-01T04:05:05Z",
+ "updated_at": "2025-08-01T04:33:00Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-08-01T04:32:50Z",
+ "author_url": "https://github.com/condongilbert",
+ "author_avatar": "https://avatars.githubusercontent.com/u/47069546?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/47069546?v=4",
+ "profile_url": "https://github.com/condongilbert"
+ },
+ "tusharg2210": {
+ "expectedPoints": 4,
+ "currentPoints": 4,
+ "levels": {
+ "level1": 1,
+ "level2": 0,
+ "level3": 0
+ },
+ "prs": [
+ {
+ "url": "https://github.com/vinit105/ideaVault/pull/8",
+ "title": "Fix the hover of submit your idea button",
+ "repo": "vinit105/ideaVault",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-08-01T20:19:29Z",
+ "updated_at": "2025-08-02T04:38:51Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-08-02T04:38:51Z",
+ "author_url": "https://github.com/tusharg2210",
+ "author_avatar": "https://avatars.githubusercontent.com/u/147972748?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/147972748?v=4",
+ "profile_url": "https://github.com/tusharg2210"
+ },
+ "ChaitanyaEmani": {
+ "expectedPoints": 4,
+ "currentPoints": 4,
+ "levels": {
+ "level1": 1,
+ "level2": 0,
+ "level3": 0
+ },
+ "prs": [
+ {
+ "url": "https://github.com/vinit105/ideaVault/pull/3",
+ "title": "Added visibility for icons and pagination",
+ "repo": "vinit105/ideaVault",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-08-01T05:31:33Z",
+ "updated_at": "2025-08-01T18:27:23Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-08-01T18:27:23Z",
+ "author_url": "https://github.com/ChaitanyaEmani",
+ "author_avatar": "https://avatars.githubusercontent.com/u/131893680?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/131893680?v=4",
+ "profile_url": "https://github.com/ChaitanyaEmani"
+ },
+ "Selfie-17": {
+ "expectedPoints": 10,
+ "currentPoints": 0,
+ "levels": {
+ "level1": 0,
+ "level2": 0,
+ "level3": 1
+ },
+ "prs": [
+ {
+ "url": "https://github.com/Swastik007sharma/CampusTrack/pull/26",
+ "title": "Added dark and light mode toggle to it",
+ "repo": "Swastik007sharma/CampusTrack",
+ "level": "level3",
+ "points": 10,
+ "created_at": "2025-08-01T09:27:40Z",
+ "updated_at": "2025-08-02T17:51:54Z",
+ "state": "closed",
+ "merged": false,
+ "merged_at": null,
+ "author_url": "https://github.com/Selfie-17",
+ "author_avatar": "https://avatars.githubusercontent.com/u/150274246?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/150274246?v=4",
+ "profile_url": "https://github.com/Selfie-17"
+ },
+ "chvpV888-2": {
+ "expectedPoints": 0,
+ "currentPoints": 0,
+ "levels": {
+ "level1": 0,
+ "level2": 0,
+ "level3": 0
+ },
+ "prs": [
+ {
+ "url": "https://github.com/Ajay-patidar0/GitSearch/pull/12",
+ "title": "Add clear search button to text field",
+ "repo": "Ajay-patidar0/GitSearch",
+ "level": null,
+ "points": 0,
+ "created_at": "2025-08-01T12:50:54Z",
+ "updated_at": "2025-08-02T06:33:29Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-08-02T06:33:29Z",
+ "author_url": "https://github.com/chvpV888-2",
+ "author_avatar": "https://avatars.githubusercontent.com/u/128384804?v=4"
+ },
+ {
+ "url": "https://github.com/SvJalmi/DBMS_Project/pull/12",
+ "title": "feat: Add confirmation dialog for seat booking",
+ "repo": "SvJalmi/DBMS_Project",
+ "level": null,
+ "points": 0,
+ "created_at": "2025-07-29T15:36:31Z",
+ "updated_at": "2025-07-31T19:54:39Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-31T19:54:39Z",
+ "author_url": "https://github.com/chvpV888-2",
+ "author_avatar": "https://avatars.githubusercontent.com/u/128384804?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/128384804?v=4",
+ "profile_url": "https://github.com/chvpV888-2"
+ },
+ "thedgarg31": {
+ "expectedPoints": 4,
+ "currentPoints": 0,
+ "levels": {
+ "level1": 1,
+ "level2": 0,
+ "level3": 0
+ },
+ "prs": [
+ {
+ "url": "https://github.com/SharonIV0x86/CinderPeak/pull/11",
+ "title": "feat(repo): Add README, CI pipeline, linting & test coverage to CinderPeak (#6)",
+ "repo": "SharonIV0x86/CinderPeak",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-07-31T18:45:11Z",
+ "updated_at": "2025-08-01T16:45:21Z",
+ "state": "open",
+ "merged": false,
+ "merged_at": null,
+ "author_url": "https://github.com/thedgarg31",
+ "author_avatar": "https://avatars.githubusercontent.com/u/171013374?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/171013374?v=4",
+ "profile_url": "https://github.com/thedgarg31"
+ },
+ "Rasika65581": {
+ "expectedPoints": 0,
+ "currentPoints": 0,
+ "levels": {
+ "level1": 0,
+ "level2": 0,
+ "level3": 0
+ },
+ "prs": [
+ {
+ "url": "https://github.com/Aqsa4066/netflixclone/pull/35",
+ "title": "Adding shadow and size enhancement to buttons",
+ "repo": "Aqsa4066/netflixclone",
+ "level": null,
+ "points": 0,
+ "created_at": "2025-07-31T14:21:36Z",
+ "updated_at": "2025-07-31T18:26:40Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-31T18:25:54Z",
+ "author_url": "https://github.com/Rasika65581",
+ "author_avatar": "https://avatars.githubusercontent.com/u/217048533?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/217048533?v=4",
+ "profile_url": "https://github.com/Rasika65581"
+ },
+ "uiuxarghya": {
+ "expectedPoints": 0,
+ "currentPoints": 0,
+ "levels": {
+ "level1": 0,
+ "level2": 0,
+ "level3": 0
+ },
+ "prs": [
+ {
+ "url": "https://github.com/javaistic/javaistic/pull/733",
+ "title": "Add GSSoC 25 Contribution Rules",
+ "repo": "javaistic/javaistic",
+ "level": null,
+ "points": 0,
+ "created_at": "2025-07-31T13:46:54Z",
+ "updated_at": "2025-07-31T13:48:27Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-31T13:48:25Z",
+ "author_url": "https://github.com/uiuxarghya",
+ "author_avatar": "https://avatars.githubusercontent.com/u/71373838?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/71373838?v=4",
+ "profile_url": "https://github.com/uiuxarghya"
+ },
+ "GollaBharath": {
+ "expectedPoints": 0,
+ "currentPoints": 0,
+ "levels": {
+ "level1": 0,
+ "level2": 0,
+ "level3": 0
+ },
+ "prs": [
+ {
+ "url": "https://github.com/codeaashu/DevDisplay/pull/1051",
+ "title": "add: Golla Bharath",
+ "repo": "codeaashu/DevDisplay",
+ "level": null,
+ "points": 0,
+ "created_at": "2025-08-02T13:47:11Z",
+ "updated_at": "2025-08-03T04:50:11Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-08-03T04:50:10Z",
+ "author_url": "https://github.com/GollaBharath",
+ "author_avatar": "https://avatars.githubusercontent.com/u/176119253?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/176119253?v=4",
+ "profile_url": "https://github.com/GollaBharath"
+ },
+ "SudoAnirudh": {
+ "expectedPoints": 0,
+ "currentPoints": 0,
+ "levels": {
+ "level1": 0,
+ "level2": 0,
+ "level3": 0
+ },
+ "prs": [
+ {
+ "url": "https://github.com/codeaashu/DevDisplay/pull/1043",
+ "title": "Add SudoAnirudh profile data",
+ "repo": "codeaashu/DevDisplay",
+ "level": null,
+ "points": 0,
+ "created_at": "2025-07-30T07:23:13Z",
+ "updated_at": "2025-08-02T10:52:06Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-08-02T10:52:06Z",
+ "author_url": "https://github.com/SudoAnirudh",
+ "author_avatar": "https://avatars.githubusercontent.com/u/78668573?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/78668573?v=4",
+ "profile_url": "https://github.com/SudoAnirudh"
+ },
+ "Jaimin-Kundal": {
+ "expectedPoints": 0,
+ "currentPoints": 0,
+ "levels": {
+ "level1": 0,
+ "level2": 0,
+ "level3": 0
+ },
+ "prs": [
+ {
+ "url": "https://github.com/BDutta18/BodyCraft-Gym/pull/61",
+ "title": "Bug Fixed: Main Navbar options missing/hidden on mobile devices",
+ "repo": "BDutta18/BodyCraft-Gym",
+ "level": null,
+ "points": 0,
+ "created_at": "2025-07-30T17:21:24Z",
+ "updated_at": "2025-07-31T03:05:46Z",
+ "state": "closed",
+ "merged": false,
+ "merged_at": null,
+ "author_url": "https://github.com/Jaimin-Kundal",
+ "author_avatar": "https://avatars.githubusercontent.com/u/181187896?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/181187896?v=4",
+ "profile_url": "https://github.com/Jaimin-Kundal"
+ },
+ "kotlameghana2006": {
+ "expectedPoints": 0,
+ "currentPoints": 0,
+ "levels": {
+ "level1": 0,
+ "level2": 0,
+ "level3": 0
+ },
+ "prs": [
+ {
+ "url": "https://github.com/BDutta18/BodyCraft-Gym/pull/50",
+ "title": "Add Pricing Plan page with Navigation Intergration",
+ "repo": "BDutta18/BodyCraft-Gym",
+ "level": null,
+ "points": 0,
+ "created_at": "2025-07-30T11:42:38Z",
+ "updated_at": "2025-07-30T18:05:10Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-30T18:05:10Z",
+ "author_url": "https://github.com/kotlameghana2006",
+ "author_avatar": "https://avatars.githubusercontent.com/u/217195752?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/217195752?v=4",
+ "profile_url": "https://github.com/kotlameghana2006"
+ },
+ "SaniyaArora03": {
+ "expectedPoints": 0,
+ "currentPoints": 0,
+ "levels": {
+ "level1": 0,
+ "level2": 0,
+ "level3": 0
+ },
+ "prs": [
+ {
+ "url": "https://github.com/BDutta18/BodyCraft-Gym/pull/33",
+ "title": "Build Contact us page",
+ "repo": "BDutta18/BodyCraft-Gym",
+ "level": null,
+ "points": 0,
+ "created_at": "2025-07-29T09:36:39Z",
+ "updated_at": "2025-07-29T12:19:30Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-29T12:19:30Z",
+ "author_url": "https://github.com/SaniyaArora03",
+ "author_avatar": "https://avatars.githubusercontent.com/u/148441591?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/148441591?v=4",
+ "profile_url": "https://github.com/SaniyaArora03"
+ },
+ "SushritaSingh": {
+ "expectedPoints": 4,
+ "currentPoints": 0,
+ "levels": {
+ "level1": 1,
+ "level2": 0,
+ "level3": 0
+ },
+ "prs": [
+ {
+ "url": "https://github.com/Himanshusk1/GDF/pull/39",
+ "title": "Added Dark Mode feature with toggle, fixed header, testimonials & contact section colors.",
+ "repo": "Himanshusk1/GDF",
+ "level": "level1",
+ "points": 4,
+ "created_at": "2025-08-02T06:31:00Z",
+ "updated_at": "2025-08-02T13:44:14Z",
+ "state": "open",
+ "merged": false,
+ "merged_at": null,
+ "author_url": "https://github.com/SushritaSingh",
+ "author_avatar": "https://avatars.githubusercontent.com/u/219618065?v=4"
+ },
+ {
+ "url": "https://github.com/shuvadeepmondal/HacKerZGuiDe/pull/87",
+ "title": "✅Fix: Chatbot UI & Response Handling with Full Scroll Support.",
+ "repo": "shuvadeepmondal/HacKerZGuiDe",
+ "level": null,
+ "points": 0,
+ "created_at": "2025-08-02T09:13:35Z",
+ "updated_at": "2025-08-02T13:48:35Z",
+ "state": "open",
+ "merged": false,
+ "merged_at": null,
+ "author_url": "https://github.com/SushritaSingh",
+ "author_avatar": "https://avatars.githubusercontent.com/u/219618065?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/219618065?v=4",
+ "profile_url": "https://github.com/SushritaSingh"
+ },
+ "Jha-2022": {
+ "expectedPoints": 0,
+ "currentPoints": 0,
+ "levels": {
+ "level1": 0,
+ "level2": 0,
+ "level3": 0
+ },
+ "prs": [
+ {
+ "url": "https://github.com/OpenVoiceX/Web-Voice-marketing-Agent/pull/3",
+ "title": "Readme.md ",
+ "repo": "OpenVoiceX/Web-Voice-marketing-Agent",
+ "level": null,
+ "points": 0,
+ "created_at": "2025-07-30T14:08:31Z",
+ "updated_at": "2025-08-02T05:58:52Z",
+ "state": "closed",
+ "merged": false,
+ "merged_at": null,
+ "author_url": "https://github.com/Jha-2022",
+ "author_avatar": "https://avatars.githubusercontent.com/u/126956744?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/126956744?v=4",
+ "profile_url": "https://github.com/Jha-2022"
+ },
+ "aigle-levant": {
+ "expectedPoints": 7,
+ "currentPoints": 0,
+ "levels": {
+ "level1": 0,
+ "level2": 1,
+ "level3": 0
+ },
+ "prs": [
+ {
+ "url": "https://github.com/rajdeep13-coder/Resume-Generator/pull/65",
+ "title": "Fixed input overflowing out of container + toggle button position",
+ "repo": "rajdeep13-coder/Resume-Generator",
+ "level": "level2",
+ "points": 7,
+ "created_at": "2025-07-31T13:15:17Z",
+ "updated_at": "2025-07-31T13:25:50Z",
+ "state": "open",
+ "merged": false,
+ "merged_at": null,
+ "author_url": "https://github.com/aigle-levant",
+ "author_avatar": "https://avatars.githubusercontent.com/u/74856871?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/74856871?v=4",
+ "profile_url": "https://github.com/aigle-levant"
+ },
+ "Amitk003": {
+ "expectedPoints": 0,
+ "currentPoints": 0,
+ "levels": {
+ "level1": 0,
+ "level2": 0,
+ "level3": 0
+ },
+ "prs": [
+ {
+ "url": "https://github.com/rajdeep13-coder/Resume-Generator/pull/25",
+ "title": "Add Contributors section to README with profile showcase",
+ "repo": "rajdeep13-coder/Resume-Generator",
+ "level": null,
+ "points": 0,
+ "created_at": "2025-07-28T09:32:12Z",
+ "updated_at": "2025-07-28T10:36:50Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-28T10:36:31Z",
+ "author_url": "https://github.com/Amitk003",
+ "author_avatar": "https://avatars.githubusercontent.com/u/162789282?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/162789282?v=4",
+ "profile_url": "https://github.com/Amitk003"
+ },
+ "abhisarkar08": {
+ "expectedPoints": 0,
+ "currentPoints": 0,
+ "levels": {
+ "level1": 0,
+ "level2": 0,
+ "level3": 0
+ },
+ "prs": [
+ {
+ "url": "https://github.com/shandilya-rajnandini/DocAtHome/pull/2",
+ "title": "Add CONTRIBUTING.md file",
+ "repo": "shandilya-rajnandini/DocAtHome",
+ "level": null,
+ "points": 0,
+ "created_at": "2025-07-28T07:51:09Z",
+ "updated_at": "2025-07-29T14:42:12Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-29T09:24:13Z",
+ "author_url": "https://github.com/abhisarkar08",
+ "author_avatar": "https://avatars.githubusercontent.com/u/185516023?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/185516023?v=4",
+ "profile_url": "https://github.com/abhisarkar08"
+ },
+ "Dhruva105": {
+ "expectedPoints": 0,
+ "currentPoints": 0,
+ "levels": {
+ "level1": 0,
+ "level2": 0,
+ "level3": 0
+ },
+ "prs": [
+ {
+ "url": "https://github.com/RAJVEER42/git-quiz-challenge/pull/6",
+ "title": "feat: Add new 5 questions to commands category",
+ "repo": "RAJVEER42/git-quiz-challenge",
+ "level": null,
+ "points": 0,
+ "created_at": "2025-07-28T08:41:18Z",
+ "updated_at": "2025-08-02T07:13:08Z",
+ "state": "closed",
+ "merged": true,
+ "merged_at": "2025-07-28T09:46:20Z",
+ "author_url": "https://github.com/Dhruva105",
+ "author_avatar": "https://avatars.githubusercontent.com/u/176765138?v=4"
+ }
+ ],
+ "avatar_url": "https://avatars.githubusercontent.com/u/176765138?v=4",
+ "profile_url": "https://github.com/Dhruva105"
+ }
+}
\ No newline at end of file
diff --git a/logs.txt b/logs.txt
new file mode 100644
index 0000000..1699604
--- /dev/null
+++ b/logs.txt
@@ -0,0 +1,343 @@
+PS C:\Users\LENOVO\Downloads\hacktoberfest2024\gssoc> node .\leaderboard.js
+[dotenv@17.2.0] injecting env (1) from .env (tip: ⚙️ specify custom .env file path with { path: '/custom/path/.env' })
+🔍 Fetching PRs from A-Akhil/Astra-Ai...
+🔍 Fetching PRs from techxninjas/techxninjas-client...
+🔍 Fetching PRs from krit-vardhan-mishra/SmartC.V....
+🔍 Fetching PRs from Abhinavhaldiya/FinPilot...
+🔍 Fetching PRs from abhirajadhikary06/eventstack...
+🔍 Fetching PRs from abhisek2004/Dev-Elevate...
+🔍 Fetching PRs from abhisek247767/PeopleHub-Frontend...
+🎚️ ~ main ~ no level detected for PR: https://github.com/abhisek247767/PeopleHub-Frontend/pull/10
+🔍 Fetching PRs from Abhishek2634/Foodie...
+🔍 Fetching PRs from Adarsh-Chaubey03/TravelGrid...
+🔍 Fetching PRs from adityagarwal15/JobSync...
+🎚️ ~ main ~ no level detected for PR: https://github.com/adityagarwal15/JobSync/pull/54
+🎚️ ~ main ~ no level detected for PR: https://github.com/adityagarwal15/JobSync/pull/36
+🔍 Fetching PRs from opensource-society/CodeClip...
+🔍 Fetching PRs from opensource-society/NotesVault...
+🔍 Fetching PRs from AdityaRalhan/Aluma...
+🎚️ ~ main ~ no level detected for PR: https://github.com/AdityaRalhan/Aluma/pull/21
+🔍 Fetching PRs from agamjotsingh18/trendhora...
+🔍 Fetching PRs from Jadhav124Akshada/SkinSense...
+🔍 Fetching PRs from akshtshrma/KinetiX...
+🔍 Fetching PRs from Akki-jaiswal/pong-game...
+🎚️ ~ main ~ no level detected for PR: https://github.com/Akki-jaiswal/pong-game/pull/33
+🎚️ ~ main ~ no level detected for PR: https://github.com/Akki-jaiswal/pong-game/pull/25
+🎚️ ~ main ~ no level detected for PR: https://github.com/Akki-jaiswal/pong-game/pull/16
+🎚️ ~ main ~ no level detected for PR: https://github.com/Akki-jaiswal/pong-game/pull/10
+🎚️ ~ main ~ no level detected for PR: https://github.com/Akki-jaiswal/pong-game/pull/8
+🎚️ ~ main ~ no level detected for PR: https://github.com/Akki-jaiswal/pong-game/pull/3
+🔍 Fetching PRs from SrigadaAkshayKumar/stock...
+🔍 Fetching PRs from huamanraj/aitoolbox.software...
+🔍 Fetching PRs from Amarjha01/InfantCareCompass...
+🎚️ ~ main ~ no level detected for PR: https://github.com/Amarjha01/InfantCareCompass/pull/129
+🔍 Fetching PRs from amitkumardemo/EdgeCareer...
+🔍 Fetching PRs from Ananya-te/MusicTrackerAPI...
+🎚️ ~ main ~ no level detected for PR: https://github.com/Ananya-te/MusicTrackerAPI/pull/8
+🎚️ ~ main ~ no level detected for PR: https://github.com/Ananya-te/MusicTrackerAPI/pull/4
+🔍 Fetching PRs from ShishuCard/Vaccination_Portal...
+🔍 Fetching PRs from Ansikka/KrishiMitra.py...
+🔍 Fetching PRs from itsAnimation/AnimateItNow...
+⚠️ Unknown level key: level1
+⚠️ Unknown level key: level2
+🔍 Fetching PRs from anugit24/Menthub...
+🔍 Fetching PRs from owasp/nest...
+🔍 Fetching PRs from apu52/Travel_Website...
+🔍 Fetching PRs from InnoWebLabs/Vehigo...
+🔍 Fetching PRs from coderashhar/PG-genie...
+🔍 Fetching PRs from MAVERICK-VF142/Drx.MediMate...
+🔍 Fetching PRs from Code-A2Z/code-a2z...
+🔍 Fetching PRs from Ayushjhawar8/Flavor-ai...
+⚠️ Unknown level key: level1
+🔍 Fetching PRs from Ayush0316/KnockoutZone...
+🔍 Fetching PRs from AyushSharma72/Skill_Trade...
+⚠️ Invalid repo URL: https://euphoric-2025.42web.io/
+🔍 Fetching PRs from Balamurugan-cyber/WanderWise-Smart-routes.-Hidden-gems.-Travel-smarter.-...
+🎚️ ~ main ~ no level detected for PR: https://github.com/Balamurugan-cyber/WanderWise-Smart-routes.-Hidden-gems.-Travel-smarter.-/pull/71
+🔍 Fetching PRs from BaraniVA/Habitheat...
+🎚️ ~ main ~ no level detected for PR: https://github.com/BaraniVA/Habitheat/pull/103
+⚠️ Unknown level key: level2
+⚠️ Unknown level key: level3
+⚠️ Unknown level key: level1
+⚠️ Unknown level key: level1
+⚠️ Unknown level key: level1
+⚠️ Unknown level key: level1
+⚠️ Unknown level key: level1
+⚠️ Unknown level key: level1
+🔍 Fetching PRs from Bavanetha27/Refixly...
+🔍 Fetching PRs from BhaktiMore18/Pouranik...
+🔍 Fetching PRs from Bhavya1352/eventmappr...
+🔍 Fetching PRs from chandannekya/Clean-Breath...
+🔍 Fetching PRs from Altair-05/CodeBrosPlatform...
+🔍 Fetching PRs from divi-24/SheSync...
+❌ Error fetching from divi-24/SheSync: Not Found
+🔍 Fetching PRs from deepakcs2003/Silai-hub...
+🔍 Fetching PRs from Devasy23/splitwiser...
+🔍 Fetching PRs from devangjain999/Smart-Chat-Assistant...
+❌ Error fetching from devangjain999/Smart-Chat-Assistant: Not Found
+🔍 Fetching PRs from dhananjay6561/ClassSync-GSSOC...
+🔍 Fetching PRs from DhruvJohri/Netflix-Clone...
+🎚️ ~ main ~ no level detected for PR: https://github.com/DhruvJohri/Netflix-Clone/pull/51
+🔍 Fetching PRs from Dhruvi-tech/firebase-chat-app...
+🔍 Fetching PRs from Dipanita45/HEALCONNECT...
+⚠️ Invalid repo URL: https://medium.com/@rimoh11
+🔍 Fetching PRs from Dnyaneshpise/skywatch_alerts...
+🔍 Fetching PRs from DonaldReddy/BookReview...
+🔍 Fetching PRs from BrewedAlgorithms/Medical-Adherence-Monitoring-System...
+🔍 Fetching PRs from efshaperveen/MindJournal...
+🔍 Fetching PRs from roshnideyic365/Culinary-King-e-commerce-website...
+🔍 Fetching PRs from Gagandeep-2003/driver-drowsiness-detection-system...
+🔍 Fetching PRs from GauravKarakoti/Weather-API...
+🔍 Fetching PRs from Gnanaashritha/Blogging-Platform-...
+🔍 Fetching PRs from OpenTekHub/otploginfrontend...
+🔍 Fetching PRs from Harish-2003/otpauthentication...
+🔍 Fetching PRs from HarshS16/Civix...
+🔍 Fetching PRs from harshendram/Advanced-Discord-Bot...
+🔍 Fetching PRs from HimanshuHeda/Zip_Tales...
+🔍 Fetching PRs from Club-Syndicate/ClubVerse...
+🔍 Fetching PRs from indra7777/frostiq...
+🎚️ ~ main ~ no level detected for PR: https://github.com/indra7777/frostiq/pull/10
+🎚️ ~ main ~ no level detected for PR: https://github.com/indra7777/frostiq/pull/7
+🔍 Fetching PRs from Jotthecode/CITY-PULSE...
+🔍 Fetching PRs from Priyanka-28-BM/HealthVault...
+🔍 Fetching PRs from kanikaa-3018/contest_onlinejudge...
+🔍 Fetching PRs from Himanshi150/real-time-daister-project...
+🔍 Fetching PRs from kaushav07/VisionMate...
+🔍 Fetching PRs from algorathem/philosophical-rpg...
+🔍 Fetching PRs from Khushbudaswani/Foodbridge...
+🔍 Fetching PRs from Khushi-Nigam/jobportal...
+🔍 Fetching PRs from komalkhatod1105/One-Stop-Guide...
+🔍 Fetching PRs from Kritika75/TheCawnporeMag.github.io...
+🎚️ ~ main ~ no level detected for PR: https://github.com/Kritika75/TheCawnporeMag.github.io/pull/68
+🎚️ ~ main ~ no level detected for PR: https://github.com/Kritika75/TheCawnporeMag.github.io/pull/49
+⚠️ Unknown level key: level2
+🔍 Fetching PRs from lolpanda2004/Amour-Editorial-Website...
+🔍 Fetching PRs from mpawank/Rohit-Youtube-Advocate-AiBot...
+🔍 Fetching PRs from manasvi-0/AlgoLab...
+🔍 Fetching PRs from manishkumar8312/Hotel-Booking...
+🎚️ ~ main ~ no level detected for PR: https://github.com/manishkumar8312/Hotel-Booking/pull/21
+🎚️ ~ main ~ no level detected for PR: https://github.com/manishkumar8312/Hotel-Booking/pull/9
+🔍 Fetching PRs from Vaishnavi-Manne/LetsDoDsaTogether...
+🔍 Fetching PRs from mansiruhil/fail-u-forward...
+🔍 Fetching PRs from meenakshi-011/Wanderlust...
+🔍 Fetching PRs from MeghanaDG04/Recipedia...
+🔍 Fetching PRs from mehak-ui/Student-Portal...
+🎚️ ~ main ~ no level detected for PR: https://github.com/mehak-ui/Student-Portal/pull/9
+🔍 Fetching PRs from mehul-m-prajapati/github_tracker...
+🎚️ ~ main ~ no level detected for PR: https://github.com/GitMetricsLab/github_tracker/pull/173
+🎚️ ~ main ~ no level detected for PR: https://github.com/GitMetricsLab/github_tracker/pull/170
+🎚️ ~ main ~ no level detected for PR: https://github.com/GitMetricsLab/github_tracker/pull/168
+🎚️ ~ main ~ no level detected for PR: https://github.com/GitMetricsLab/github_tracker/pull/162
+🎚️ ~ main ~ no level detected for PR: https://github.com/GitMetricsLab/github_tracker/pull/160
+🎚️ ~ main ~ no level detected for PR: https://github.com/GitMetricsLab/github_tracker/pull/159
+⚠️ Unknown level key: level2
+🎚️ ~ main ~ no level detected for PR: https://github.com/GitMetricsLab/github_tracker/pull/147
+🎚️ ~ main ~ no level detected for PR: https://github.com/GitMetricsLab/github_tracker/pull/146
+🎚️ ~ main ~ no level detected for PR: https://github.com/GitMetricsLab/github_tracker/pull/145
+🎚️ ~ main ~ no level detected for PR: https://github.com/GitMetricsLab/github_tracker/pull/144
+🎚️ ~ main ~ no level detected for PR: https://github.com/GitMetricsLab/github_tracker/pull/143
+🎚️ ~ main ~ no level detected for PR: https://github.com/GitMetricsLab/github_tracker/pull/141
+🎚️ ~ main ~ no level detected for PR: https://github.com/GitMetricsLab/github_tracker/pull/135
+⚠️ Unknown level key: level2
+🎚️ ~ main ~ no level detected for PR: https://github.com/GitMetricsLab/github_tracker/pull/131
+🎚️ ~ main ~ no level detected for PR: https://github.com/GitMetricsLab/github_tracker/pull/126
+⚠️ Unknown level key: level3
+🔍 Fetching PRs from MinavKaria/Notes-Aid...
+🔍 Fetching PRs from Mujtabaa07/coffeeShop...
+🎚️ ~ main ~ no level detected for PR: https://github.com/Mujtabaa07/coffeeShop/pull/511
+🎚️ ~ main ~ no level detected for PR: https://github.com/Mujtabaa07/coffeeShop/pull/509
+🎚️ ~ main ~ no level detected for PR: https://github.com/Mujtabaa07/coffeeShop/pull/505
+🎚️ ~ main ~ no level detected for PR: https://github.com/Mujtabaa07/coffeeShop/pull/504
+🎚️ ~ main ~ no level detected for PR: https://github.com/Mujtabaa07/coffeeShop/pull/501
+🎚️ ~ main ~ no level detected for PR: https://github.com/Mujtabaa07/coffeeShop/pull/498
+🎚️ ~ main ~ no level detected for PR: https://github.com/Mujtabaa07/coffeeShop/pull/495
+🎚️ ~ main ~ no level detected for PR: https://github.com/Mujtabaa07/coffeeShop/pull/492
+🎚️ ~ main ~ no level detected for PR: https://github.com/Mujtabaa07/coffeeShop/pull/485
+🎚️ ~ main ~ no level detected for PR: https://github.com/Mujtabaa07/coffeeShop/pull/482
+🎚️ ~ main ~ no level detected for PR: https://github.com/Mujtabaa07/coffeeShop/pull/480
+🎚️ ~ main ~ no level detected for PR: https://github.com/Mujtabaa07/coffeeShop/pull/477
+🎚️ ~ main ~ no level detected for PR: https://github.com/Mujtabaa07/coffeeShop/pull/468
+🎚️ ~ main ~ no level detected for PR: https://github.com/Mujtabaa07/coffeeShop/pull/465
+🎚️ ~ main ~ no level detected for PR: https://github.com/Mujtabaa07/coffeeShop/pull/463
+🎚️ ~ main ~ no level detected for PR: https://github.com/Mujtabaa07/coffeeShop/pull/461
+🎚️ ~ main ~ no level detected for PR: https://github.com/Mujtabaa07/coffeeShop/pull/460
+🎚️ ~ main ~ no level detected for PR: https://github.com/Mujtabaa07/coffeeShop/pull/459
+🎚️ ~ main ~ no level detected for PR: https://github.com/Mujtabaa07/coffeeShop/pull/455
+🎚️ ~ main ~ no level detected for PR: https://github.com/Mujtabaa07/coffeeShop/pull/453
+🎚️ ~ main ~ no level detected for PR: https://github.com/Mujtabaa07/coffeeShop/pull/452
+🔍 Fetching PRs from MonishRaman/Placify-Smarter-Placements.-Sharper-Talent.-...
+⚠️ Unknown level key: level1
+⚠️ Unknown level key: level1
+🔍 Fetching PRs from Muneerali199/DocMagic...
+🔍 Fetching PRs from lohithya143/Eco-Finder-App...
+🔍 Fetching PRs from Naveenkumar30838/Housify...
+⚠️ Unknown level key: level1
+🎚️ ~ main ~ no level detected for PR: https://github.com/Naveenkumar30838/Housify/pull/5
+🔍 Fetching PRs from Neha-Singh-j/shopiko...
+🔍 Fetching PRs from Nisha229/ttwitter-sentiment-analysis-...
+🔍 Fetching PRs from nishantharkut/W3nity...
+🎚️ ~ main ~ no level detected for PR: https://github.com/nishantharkut/W3nity/pull/33
+🔍 Fetching PRs from NishantRana07/HrRoadways...
+🔍 Fetching PRs from omroy07/AgriTech...
+🔍 Fetching PRs from byteom/Interview01...
+🔍 Fetching PRs from Anjaliavv51/TuneCrate...
+🔍 Fetching PRs from EmailScript/EmailScript...
+🔍 Fetching PRs from Parnab03/WallGodds...
+🔍 Fetching PRs from pavitraag/Project-Vault...
+🔍 Fetching PRs from Er-luffy-D/SimplifAI...
+🔍 Fetching PRs from Piyush-t24/NBG...
+🔍 Fetching PRs from pooranjoyb/cpp-sdk-appwrite...
+🔍 Fetching PRs from alienx5499/SortVision...
+🔍 Fetching PRs from 18Prachi/airplane-boarding-simulation...
+🎚️ ~ main ~ no level detected for PR: https://github.com/18Prachi/airplane-boarding-simulation/pull/17
+🔍 Fetching PRs from ProTecGames/Karbon...
+🎚️ ~ main ~ no level detected for PR: https://github.com/ProTecGames/Karbon/pull/81
+🎚️ ~ main ~ no level detected for PR: https://github.com/ProTecGames/Karbon/pull/79
+🎚️ ~ main ~ no level detected for PR: https://github.com/ProTecGames/Karbon/pull/78
+🎚️ ~ main ~ no level detected for PR: https://github.com/ProTecGames/Karbon/pull/71
+🎚️ ~ main ~ no level detected for PR: https://github.com/ProTecGames/Karbon/pull/66
+🎚️ ~ main ~ no level detected for PR: https://github.com/ProTecGames/Karbon/pull/65
+🎚️ ~ main ~ no level detected for PR: https://github.com/ProTecGames/Karbon/pull/63
+🎚️ ~ main ~ no level detected for PR: https://github.com/ProTecGames/Karbon/pull/62
+🎚️ ~ main ~ no level detected for PR: https://github.com/ProTecGames/Karbon/pull/60
+🎚️ ~ main ~ no level detected for PR: https://github.com/ProTecGames/Karbon/pull/59
+🎚️ ~ main ~ no level detected for PR: https://github.com/ProTecGames/Karbon/pull/57
+🎚️ ~ main ~ no level detected for PR: https://github.com/ProTecGames/Karbon/pull/55
+🎚️ ~ main ~ no level detected for PR: https://github.com/ProTecGames/Karbon/pull/54
+🎚️ ~ main ~ no level detected for PR: https://github.com/ProTecGames/Karbon/pull/53
+🎚️ ~ main ~ no level detected for PR: https://github.com/ProTecGames/Karbon/pull/52
+🎚️ ~ main ~ no level detected for PR: https://github.com/ProTecGames/Karbon/pull/50
+🎚️ ~ main ~ no level detected for PR: https://github.com/ProTecGames/Karbon/pull/48
+🎚️ ~ main ~ no level detected for PR: https://github.com/ProTecGames/Karbon/pull/44
+🎚️ ~ main ~ no level detected for PR: https://github.com/ProTecGames/Karbon/pull/43
+🎚️ ~ main ~ no level detected for PR: https://github.com/ProTecGames/Karbon/pull/42
+🎚️ ~ main ~ no level detected for PR: https://github.com/ProTecGames/Karbon/pull/41
+🎚️ ~ main ~ no level detected for PR: https://github.com/ProTecGames/Karbon/pull/40
+🎚️ ~ main ~ no level detected for PR: https://github.com/ProTecGames/Karbon/pull/39
+🎚️ ~ main ~ no level detected for PR: https://github.com/ProTecGames/Karbon/pull/35
+🎚️ ~ main ~ no level detected for PR: https://github.com/ProTecGames/Karbon/pull/34
+🎚️ ~ main ~ no level detected for PR: https://github.com/ProTecGames/Karbon/pull/32
+🎚️ ~ main ~ no level detected for PR: https://github.com/ProTecGames/Karbon/pull/31
+🎚️ ~ main ~ no level detected for PR: https://github.com/ProTecGames/Karbon/pull/30
+🎚️ ~ main ~ no level detected for PR: https://github.com/ProTecGames/Karbon/pull/29
+🎚️ ~ main ~ no level detected for PR: https://github.com/ProTecGames/Karbon/pull/28
+🎚️ ~ main ~ no level detected for PR: https://github.com/ProTecGames/Karbon/pull/27
+🎚️ ~ main ~ no level detected for PR: https://github.com/ProTecGames/Karbon/pull/26
+🎚️ ~ main ~ no level detected for PR: https://github.com/ProTecGames/Karbon/pull/22
+🎚️ ~ main ~ no level detected for PR: https://github.com/ProTecGames/Karbon/pull/17
+🔍 Fetching PRs from andoriyaprashant/OpSo...
+🔍 Fetching PRs from Prashanti-Hebbar/FoodIO...
+🔍 Fetching PRs from Prateek9876/NagarVikas...
+🔍 Fetching PRs from PreetySinha84/VerveBridge-Task-1-Weather-App...
+🔍 Fetching PRs from etsi-ai/etsi-watchdog...
+🔍 Fetching PRs from PRIYANSHU2026/DataSentience-AIML...
+🔍 Fetching PRs from rahulkhandait-sde/movie-search...
+⚠️ Unknown level key: level2
+⚠️ Unknown level key: level1
+⚠️ Unknown level key: level1
+🔍 Fetching PRs from techieRahul17/URHired...
+🔍 Fetching PRs from Rajkumarbhakta/Canvas...
+🎚️ ~ main ~ no level detected for PR: https://github.com/Rajkumarbhakta/Canvas/pull/20
+⚠️ Unknown level key: level1
+⚠️ Unknown level key: level1
+🔍 Fetching PRs from RamakrushnaBiswal/HonorBox...
+🔍 Fetching PRs from RM-f1/Cryptoinsight...
+❌ Error fetching from RM-f1/Cryptoinsight: Not Found
+⚠️ Invalid repo URL: https://guthub.com/rammya29/AutoPilotX-
+🔍 Fetching PRs from Rena-code93/ZeroWasteMart...
+🔍 Fetching PRs from reshamsai150/7.Analysis-and-Prediction-of-Electric-Vehicle-Costs-A-Machine-Learning-Based-Approach...
+🔍 Fetching PRs from Richajaishwal0/Trip_assistant...
+⚠️ Invalid repo URL: https://github.com/The-Rishabh-Mishra
+🔍 Fetching PRs from ritikka06/Tariff-Fashion...
+🔍 Fetching PRs from robinsingh-ai/AutomataVerse...
+🔍 Fetching PRs from etsi-ai/etsi-failprint...
+🔍 Fetching PRs from ruchikakengal/WebDevIn100_Days...
+⚠️ Unknown level key: level1
+🔍 Fetching PRs from rutikakengal/100DAYS_OF_100WEBPROJECTS...
+⚠️ Invalid repo URL: no
+🔍 Fetching PRs from eccentriccoder01/TalkHeal...
+🔍 Fetching PRs from Sahilll94/Travel-Book...
+🔍 Fetching PRs from sahithinandikula/Sneaker-price-prediction...
+🔍 Fetching PRs from sailaja-adapa/GuruShish...
+🔍 Fetching PRs from samarsajad/Hospital_Management_Website...
+🔍 Fetching PRs from Yash159357/BREVITY...
+🔍 Fetching PRs from 0xsambit/winix...
+🔍 Fetching PRs from SamXop123/RigCrafter...
+🎚️ ~ main ~ no level detected for PR: https://github.com/SamXop123/RigCrafter/pull/20
+🔍 Fetching PRs from sampadatiwari30/DeshDarshan...
+🔍 Fetching PRs from sania28/clubmate...
+🔍 Fetching PRs from recodehive/recode-website...
+🔍 Fetching PRs from santhoshkumar1204/hotel-table-reservation-system...
+🔍 Fetching PRs from Sarthak027/Hackgrid...
+🔍 Fetching PRs from satvik091/WisdomWeaver...
+🔍 Fetching PRs from may-tas/TextEditingApp...
+🔍 Fetching PRs from saumyayadav25/cpp-dsa-sheet-testing...
+⚠️ Unknown level key: level1
+🎚️ ~ main ~ no level detected for PR: https://github.com/saumyayadav25/cpp-dsa-sheet-testing/pull/28
+⚠️ Unknown level key: level3
+🔍 Fetching PRs from sayan0328/WallGodds-App...
+🔍 Fetching PRs from sshakti971/NODE-JS...
+🔍 Fetching PRs from SCR01/scr-game...
+🎚️ ~ main ~ no level detected for PR: https://github.com/SCR01/scr-game/pull/45
+🎚️ ~ main ~ no level detected for PR: https://github.com/SCR01/scr-game/pull/17
+🔍 Fetching PRs from SGCODEX/Music-Recommendation-Using-Facial-Expressions...
+🔍 Fetching PRs from shivam74/payment-app...
+🔍 Fetching PRs from git-net-org/gitnet...
+🔍 Fetching PRs from ShrutiparnaRoy/Medicine_Recommendation...
+🔍 Fetching PRs from karmveershubham/CodeStreak...
+🔍 Fetching PRs from singodiyashubham87/bodhika...
+🔍 Fetching PRs from ShudarsanRegmi/ClassMgmtSysOS-...
+🔍 Fetching PRs from SomdattaNag/Security-Screening-System...
+🔍 Fetching PRs from SOURAVtec/Facility-publication-management-...
+🔍 Fetching PRs from sourabhkumar47/ResQFood...
+🔍 Fetching PRs from souvikpramanikgit/LearnHub...
+🔍 Fetching PRs from sristy17/next-payroll...
+🎚️ ~ main ~ no level detected for PR: https://github.com/sristy17/next-payroll/pull/59
+🎚️ ~ main ~ no level detected for PR: https://github.com/sristy17/next-payroll/pull/58
+🎚️ ~ main ~ no level detected for PR: https://github.com/sristy17/next-payroll/pull/56
+⚠️ Unknown level key: level3
+⚠️ Unknown level key: level2
+🔍 Fetching PRs from SurajSG23/PrepBuddy...
+⚠️ Unknown level key: level2
+⚠️ Unknown level key: level2
+⚠️ Unknown level key: level2
+⚠️ Unknown level key: level2
+🔍 Fetching PRs from swarooppatilx/bit-by-query...
+🔍 Fetching PRs from SyedImtiyaz-1/Swapify...
+🎚️ ~ main ~ no level detected for PR: https://github.com/SyedImtiyaz-1/Swapify/pull/11
+⚠️ Invalid repo URL: https://agri-automation-system-automated-valve-system--aopjgjl58ghrz7g5.builder-preview.com/
+⚠️ Invalid repo URL: https://agri-automation-system-automated-valve-system--aopjgjl58ghrz7g5.builder-preview.com/
+🔍 Fetching PRs from TanmayKalra09/SmartLog...
+⚠️ Invalid repo URL: https://github.com/tasmiyashaikh711
+🔍 Fetching PRs from multiverseweb/Dataverse...
+🔍 Fetching PRs from KOMARAUDAYKIRAN/E-commerce-AgriGro-Website-Project...
+🔍 Fetching PRs from Chandu6702/Anime-Ecstasy...
+🔍 Fetching PRs from UTSAVS26/PyVerse...
+🔍 Fetching PRs from sapatevaibhav/term...
+🔍 Fetching PRs from VAIBHAVBABELE/vaibhavbabele.github.io...
+⚠️ Unknown level key: level2
+⚠️ Unknown level key: level1
+🔍 Fetching PRs from Agarwalvidu/ArdhNaariShakti_Taara_Frontend...
+⚠️ Unknown level key: level1
+🔍 Fetching PRs from vjlive/athletix...
+⚠️ Unknown level key: level1
+⚠️ Unknown level key: level1
+🔍 Fetching PRs from whyvineet/orthoplay...
+🔍 Fetching PRs from vishalmaurya850/Product-Ledger...
+🔍 Fetching PRs from openml-stack/SentiLog-AI...
+🔍 Fetching PRs from Yash159357/BREVITY...
+🔍 Fetching PRs from Yash22222/BMC-Product-Reviews-Web-Scrapping-Sentiment-Analysis...
+🔍 Fetching PRs from yashvikram30/LegalEase...
+🔍 Fetching PRs from ygowthamr/WhitePaper...
+🎚️ ~ main ~ no level detected for PR: https://github.com/ygowthamr/WhitePaper/pull/171
+🎚️ ~ main ~ no level detected for PR: https://github.com/ygowthamr/WhitePaper/pull/170
+🎚️ ~ main ~ no level detected for PR: https://github.com/ygowthamr/WhitePaper/pull/169
+🎚️ ~ main ~ no level detected for PR: https://github.com/ygowthamr/WhitePaper/pull/166
+🎚️ ~ main ~ no level detected for PR: https://github.com/ygowthamr/WhitePaper/pull/165
+🎚️ ~ main ~ no level detected for PR: https://github.com/ygowthamr/WhitePaper/pull/157
+🎚️ ~ main ~ no level detected for PR: https://github.com/ygowthamr/WhitePaper/pull/151
+🎚️ ~ main ~ no level detected for PR: https://github.com/ygowthamr/WhitePaper/pull/149
+🎚️ ~ main ~ no level detected for PR: https://github.com/ygowthamr/WhitePaper/pull/143
+🔍 Fetching PRs from yuvrajsinghgmx/ShopSmart...
+⚠️ Unknown level key: level1
+✅ Leaderboard written with expected and current points!
\ No newline at end of file
diff --git a/master.xlsx b/master.xlsx
deleted file mode 100644
index 3983a73..0000000
Binary files a/master.xlsx and /dev/null differ
diff --git a/master5.xlsx b/master5.xlsx
new file mode 100644
index 0000000..495e1c7
Binary files /dev/null and b/master5.xlsx differ
diff --git a/package-lock.json b/package-lock.json
index 711ab01..a55ea76 100644
--- a/package-lock.json
+++ b/package-lock.json
@@ -9,6 +9,7 @@
"version": "1.0.0",
"license": "ISC",
"dependencies": {
+ "axios": "^1.11.0",
"discord": "^0.8.2",
"discord.js": "^14.21.0",
"dotenv": "^17.2.0",
@@ -16,6 +17,9 @@
"fs": "^0.0.1-security",
"string-similarity": "^4.0.4",
"xlsx": "^0.18.5"
+ },
+ "devDependencies": {
+ "cross-env": "^10.0.0"
}
},
"node_modules/@discordjs/builders": {
@@ -145,6 +149,13 @@
"url": "https://github.com/discordjs/discord.js?sponsor"
}
},
+ "node_modules/@epic-web/invariant": {
+ "version": "1.0.0",
+ "resolved": "https://registry.npmjs.org/@epic-web/invariant/-/invariant-1.0.0.tgz",
+ "integrity": "sha512-lrTPqgvfFQtR/eY/qkIzp98OGdNJu0m5ji3q/nJI8v3SXkRKEnWiOxMmbvcSoAIzv/cGiuvRy57k4suKQSAdwA==",
+ "dev": true,
+ "license": "MIT"
+ },
"node_modules/@isaacs/balanced-match": {
"version": "4.0.1",
"resolved": "https://registry.npmjs.org/@isaacs/balanced-match/-/balanced-match-4.0.1.tgz",
@@ -217,9 +228,9 @@
}
},
"node_modules/@types/node": {
- "version": "24.0.15",
- "resolved": "https://registry.npmjs.org/@types/node/-/node-24.0.15.tgz",
- "integrity": "sha512-oaeTSbCef7U/z7rDeJA138xpG3NuKc64/rZ2qmUFkFJmnMsAPaluIifqyWd8hSSMxyP9oie3dLAqYPblag9KgA==",
+ "version": "24.1.0",
+ "resolved": "https://registry.npmjs.org/@types/node/-/node-24.1.0.tgz",
+ "integrity": "sha512-ut5FthK5moxFKH2T1CUOC6ctR67rQRvvHdFLCD2Ql6KXmMuCrjsSsRI9UsLCm9M18BMwClv4pn327UvB7eeO1w==",
"license": "MIT",
"dependencies": {
"undici-types": "~7.8.0"
@@ -290,6 +301,25 @@
"url": "https://github.com/chalk/ansi-styles?sponsor=1"
}
},
+
+ "node_modules/asynckit": {
+ "version": "0.4.0",
+ "resolved": "https://registry.npmjs.org/asynckit/-/asynckit-0.4.0.tgz",
+ "integrity": "sha512-Oei9OH4tRh0YqU3GxhX79dM/mwVgvbZJaSNaRk+bshkj0S5cfHcgYakreBjrHwatXKbz+IoIdYLxrKim2MjW0Q==",
+ "license": "MIT"
+ },
+ "node_modules/axios": {
+ "version": "1.11.0",
+ "resolved": "https://registry.npmjs.org/axios/-/axios-1.11.0.tgz",
+ "integrity": "sha512-1Lx3WLFQWm3ooKDYZD1eXmoGO9fxYQjrycfHFC8P0sCfQVXyROp0p9PFWBehewBOdCwHc+f/b8I0fMto5eSfwA==",
+ "license": "MIT",
+ "dependencies": {
+ "follow-redirects": "^1.15.6",
+ "form-data": "^4.0.4",
+ "proxy-from-env": "^1.1.0"
+ }
+ },
+
"node_modules/body-parser": {
"version": "2.2.0",
"resolved": "https://registry.npmjs.org/body-parser/-/body-parser-2.2.0.tgz",
@@ -388,6 +418,20 @@
"integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==",
"license": "MIT"
},
+
+ "node_modules/combined-stream": {
+ "version": "1.0.8",
+ "resolved": "https://registry.npmjs.org/combined-stream/-/combined-stream-1.0.8.tgz",
+ "integrity": "sha512-FQN4MRfuJeHf7cBbBMJFXhKSDq+2kAArBlmRBvcvFE5BB1HZKXtSFASDhdlz9zOYwxh8lDdnvmMOe/+5cdoEdg==",
+ "license": "MIT",
+ "dependencies": {
+ "delayed-stream": "~1.0.0"
+ },
+ "engines": {
+ "node": ">= 0.8"
+ }
+ },
+
"node_modules/content-disposition": {
"version": "1.0.0",
"resolved": "https://registry.npmjs.org/content-disposition/-/content-disposition-1.0.0.tgz",
@@ -439,6 +483,24 @@
"node": ">=0.8"
}
},
+ "node_modules/cross-env": {
+ "version": "10.0.0",
+ "resolved": "https://registry.npmjs.org/cross-env/-/cross-env-10.0.0.tgz",
+ "integrity": "sha512-aU8qlEK/nHYtVuN4p7UQgAwVljzMg8hB4YK5ThRqD2l/ziSnryncPNn7bMLt5cFYsKVKBh8HqLqyCoTupEUu7Q==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "@epic-web/invariant": "^1.0.0",
+ "cross-spawn": "^7.0.6"
+ },
+ "bin": {
+ "cross-env": "dist/bin/cross-env.js",
+ "cross-env-shell": "dist/bin/cross-env-shell.js"
+ },
+ "engines": {
+ "node": ">=20"
+ }
+ },
"node_modules/cross-spawn": {
"version": "7.0.6",
"resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-7.0.6.tgz",
@@ -470,6 +532,15 @@
}
}
},
+ "node_modules/delayed-stream": {
+ "version": "1.0.0",
+ "resolved": "https://registry.npmjs.org/delayed-stream/-/delayed-stream-1.0.0.tgz",
+ "integrity": "sha512-ZySD7Nf91aLB0RxL4KGrKHBXl7Eds1DAmEdcoVawXnLD7SDhpNgtuII2aAkg7a7QS41jxPSZ17p4VdGnMHk3MQ==",
+ "license": "MIT",
+ "engines": {
+ "node": ">=0.4.0"
+ }
+ },
"node_modules/depd": {
"version": "2.0.0",
"resolved": "https://registry.npmjs.org/depd/-/depd-2.0.0.tgz",
@@ -502,9 +573,9 @@
}
},
"node_modules/discord-api-types": {
- "version": "0.38.16",
- "resolved": "https://registry.npmjs.org/discord-api-types/-/discord-api-types-0.38.16.tgz",
- "integrity": "sha512-Cz42dC5WqJD17Yk0bRy7YLTJmh3NKo4FGpxZuA8MHqT0RPxKSrll5YhlODZ2z5DiEV/gpHMeTSrTFTWpSXjT1Q==",
+ "version": "0.38.17",
+ "resolved": "https://registry.npmjs.org/discord-api-types/-/discord-api-types-0.38.17.tgz",
+ "integrity": "sha512-/fCx5jdUoR2hBFcj77Qx7Tmx1Ub8V/QpyS6uorjFvxRLcJJ348QxMFml9QW/eXh3i46eO4Ve8qGVepStpInEPg==",
"license": "MIT",
"workspaces": [
"scripts/actions/documentation"
@@ -538,9 +609,9 @@
}
},
"node_modules/dotenv": {
- "version": "17.2.0",
- "resolved": "https://registry.npmjs.org/dotenv/-/dotenv-17.2.0.tgz",
- "integrity": "sha512-Q4sgBT60gzd0BB0lSyYD3xM4YxrXA9y4uBDof1JNYGzOXrQdQ6yX+7XIAqoFOGQFOTK1D3Hts5OllpxMDZFONQ==",
+ "version": "17.2.1",
+ "resolved": "https://registry.npmjs.org/dotenv/-/dotenv-17.2.1.tgz",
+ "integrity": "sha512-kQhDYKZecqnM0fCnzI5eIv5L4cAe/iRI+HqMbO/hbRdTAeXDG+M9FjipUxNfbARuEg4iHIbhnhs78BCHNbSxEQ==",
"license": "BSD-2-Clause",
"engines": {
"node": ">=12"
@@ -620,6 +691,23 @@
"node": ">= 0.4"
}
},
+
+ "node_modules/es-set-tostringtag": {
+ "version": "2.1.0",
+ "resolved": "https://registry.npmjs.org/es-set-tostringtag/-/es-set-tostringtag-2.1.0.tgz",
+ "integrity": "sha512-j6vWzfrGVfyXxge+O0x5sh6cvxAog0a/4Rdd2K36zCMV5eJ+/+tOAngRO8cODMNWbVRdVlmGZQL2YS3yR8bIUA==",
+ "license": "MIT",
+ "dependencies": {
+ "es-errors": "^1.3.0",
+ "get-intrinsic": "^1.2.6",
+ "has-tostringtag": "^1.0.2",
+ "hasown": "^2.0.2"
+ },
+ "engines": {
+ "node": ">= 0.4"
+ }
+ },
+
"node_modules/escape-html": {
"version": "1.0.3",
"resolved": "https://registry.npmjs.org/escape-html/-/escape-html-1.0.3.tgz",
@@ -700,6 +788,26 @@
"node": ">= 0.8"
}
},
+ "node_modules/follow-redirects": {
+ "version": "1.15.11",
+ "resolved": "https://registry.npmjs.org/follow-redirects/-/follow-redirects-1.15.11.tgz",
+ "integrity": "sha512-deG2P0JfjrTxl50XGCDyfI97ZGVCxIpfKYmfyrQ54n5FO/0gfIES8C/Psl6kWVDolizcaaxZJnTS0QSMxvnsBQ==",
+ "funding": [
+ {
+ "type": "individual",
+ "url": "https://github.com/sponsors/RubenVerborgh"
+ }
+ ],
+ "license": "MIT",
+ "engines": {
+ "node": ">=4.0"
+ },
+ "peerDependenciesMeta": {
+ "debug": {
+ "optional": true
+ }
+ }
+ },
"node_modules/foreground-child": {
"version": "3.3.1",
"resolved": "https://registry.npmjs.org/foreground-child/-/foreground-child-3.3.1.tgz",
@@ -716,6 +824,43 @@
"url": "https://github.com/sponsors/isaacs"
}
},
+ "node_modules/form-data": {
+ "version": "4.0.4",
+ "resolved": "https://registry.npmjs.org/form-data/-/form-data-4.0.4.tgz",
+ "integrity": "sha512-KrGhL9Q4zjj0kiUt5OO4Mr/A/jlI2jDYs5eHBpYHPcBEVSiipAvn2Ko2HnPe20rmcuuvMHNdZFp+4IlGTMF0Ow==",
+ "license": "MIT",
+ "dependencies": {
+ "asynckit": "^0.4.0",
+ "combined-stream": "^1.0.8",
+ "es-set-tostringtag": "^2.1.0",
+ "hasown": "^2.0.2",
+ "mime-types": "^2.1.12"
+ },
+ "engines": {
+ "node": ">= 6"
+ }
+ },
+ "node_modules/form-data/node_modules/mime-db": {
+ "version": "1.52.0",
+ "resolved": "https://registry.npmjs.org/mime-db/-/mime-db-1.52.0.tgz",
+ "integrity": "sha512-sPU4uV7dYlvtWJxwwxHD0PuihVNiE7TyAbQ5SWxDCB9mUYvOgroQOwYQQOKPJ8CIbE+1ETVlOoK1UC2nU3gYvg==",
+ "license": "MIT",
+ "engines": {
+ "node": ">= 0.6"
+ }
+ },
+ "node_modules/form-data/node_modules/mime-types": {
+ "version": "2.1.35",
+ "resolved": "https://registry.npmjs.org/mime-types/-/mime-types-2.1.35.tgz",
+ "integrity": "sha512-ZDY+bPm5zTTF+YpCrAU9nK0UgICYPT0QtT1NZWFv4s++TNkcgVaT0g6+4R2uI4MjQjzysHB1zxuWL50hzaeXiw==",
+ "license": "MIT",
+ "dependencies": {
+ "mime-db": "1.52.0"
+ },
+ "engines": {
+ "node": ">= 0.6"
+ }
+ },
"node_modules/forwarded": {
"version": "0.2.0",
"resolved": "https://registry.npmjs.org/forwarded/-/forwarded-0.2.0.tgz",
@@ -842,6 +987,21 @@
"url": "https://github.com/sponsors/ljharb"
}
},
+ "node_modules/has-tostringtag": {
+ "version": "1.0.2",
+ "resolved": "https://registry.npmjs.org/has-tostringtag/-/has-tostringtag-1.0.2.tgz",
+ "integrity": "sha512-NqADB8VjPFLM2V0VvHUewwwsw0ZWBaIdgo+ieHtK3hasLz4qeCRjYcqfB6AQrBggRKppKF8L52/VqdVsO47Dlw==",
+ "license": "MIT",
+ "dependencies": {
+ "has-symbols": "^1.0.3"
+ },
+ "engines": {
+ "node": ">= 0.4"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/ljharb"
+ }
+ },
"node_modules/hasown": {
"version": "2.0.2",
"resolved": "https://registry.npmjs.org/hasown/-/hasown-2.0.2.tgz",
@@ -1162,6 +1322,12 @@
"node": ">= 0.10"
}
},
+ "node_modules/proxy-from-env": {
+ "version": "1.1.0",
+ "resolved": "https://registry.npmjs.org/proxy-from-env/-/proxy-from-env-1.1.0.tgz",
+ "integrity": "sha512-D+zkORCbA9f1tdWRK0RaCR3GPv50cMxcrz4X8k5LTSUD1Dkw47mKJEZQNunItRTkWwgtaUSo1RVFRIG9ZXiFYg==",
+ "license": "MIT"
+ },
"node_modules/qs": {
"version": "6.14.0",
"resolved": "https://registry.npmjs.org/qs/-/qs-6.14.0.tgz",
diff --git a/package.json b/package.json
index 989b25c..57cc29f 100644
--- a/package.json
+++ b/package.json
@@ -11,6 +11,7 @@
"start": "node index.js"
},
"dependencies": {
+ "axios": "^1.11.0",
"discord": "^0.8.2",
"discord.js": "^14.21.0",
"dotenv": "^17.2.0",
@@ -18,5 +19,8 @@
"fs": "^0.0.1-security",
"string-similarity": "^4.0.4",
"xlsx": "^0.18.5"
+ },
+ "devDependencies": {
+ "cross-env": "^10.0.0"
}
}
diff --git a/projects-phase1.json b/projects-phase1.json
new file mode 100644
index 0000000..1a998d9
--- /dev/null
+++ b/projects-phase1.json
@@ -0,0 +1,2623 @@
+[
+ {
+ "Project name": "Astra-Ai – AI Secretary App",
+ "Project description": "Astra-Ai is an open-source AI-powered personal assistant for Android built with Kotlin. It supports both voice and text interactions, powered by LLaMA 3 via Ollama for local inference. The app features a memory-based context engine and retrieval-augmented generation (RAG) to deliver context-aware, intelligent responses. Designed with modular components, it provides users with a chat-like interface, voice capabilities, and future integration plans for task automation, email, and calendar management.",
+ "Project link": "https://github.com/A-Akhil/Astra-Ai",
+ "Project admin": "A Akhil",
+ "Admin linkedin": "https://www.linkedin.com/in/a-akhil-16b396201",
+ "Admin github": "https://github.com/A-Akhil",
+ "Tech stack": "The primary tech stack used is Kotlin, with support for Android Jetpack components, Ollama (for LLM serving), speech services, and MVVM architecture.",
+ "mentor 1": "Navdeep Kaur",
+ "mentor 1 github": "https://github.com/Navdeep-lab",
+ "mentor 1 linkedin": "https://www.linkedin.com/in/navdeep-kaur-057258312",
+ "mentor 2": "Akshit tiwari",
+ "Mentor 2 linkedin": "https://www.linkedin.com/in/akshit-tiwarii",
+ "keyword": "phase1"
+ },
+ {
+ "Project name": "TechXNinjas website",
+ "Project description": "TechXNinjas community website",
+ "Project link": "https://www.github.com/techxninjas/techxninjas-client",
+ "Project admin": "Aadil Latif",
+ "Admin linkedin": "https://www.linkedin.com/in/iaadillatif",
+ "Admin github": "https://www.github.com/iaadillatif",
+ "Tech stack": "ReactJS, Next.js, Typescript, Vite, CSS Tailwind",
+ "mentor 1": "Harshendra M",
+ "mentor 1 github": "https://github.com/harshendram",
+ "mentor 1 linkedin": "https://www.linkedin.com/in/harshendra-m-2b8bb5299/",
+ "mentor 2": "Gaurav Gupta",
+ "Mentor 2 linkedin": "https://www.linkedin.com/in/gauravgupta7431/",
+ "mentor 2 github": "https://github.com/Gaurav075",
+ "mentor 3": "Kumari Vrishti",
+ "mentor 3 linkedin": "https://www.linkedin.com/in/vrishti-kumari-3755a5299",
+ "mentor 3 github": "https://github.com/Vrishti-vibes",
+ "keyword": "phase1"
+ },
+ {
+ "Project name": "SmartC.V.",
+ "Project description": "we are building a ats score checker and resume builder for students and working professional",
+ "Project link": "https://github.com/krit-vardhan-mishra/SmartC.V..git",
+ "Project admin": "Abhinav Dhiman",
+ "Admin linkedin": "https://www.linkedin.com/in/abhinav-dhiman-7b170b256",
+ "Admin github": "https://github.com/AbhinavDhiman34/",
+ "Tech stack": "MERN , python microservices, libraries like spaCy or nltk for Natural Language processing and docx2txt , pdfminer.six for parsing .docx or pdf",
+ "mentor 1": "Annapoorna V",
+ "mentor 1 github": "https://github.com/Annapoornaaradhya",
+ "mentor 1 linkedin": "https://www.linkedin.com/in/annapoorna-aradhya/",
+ "keyword": "phase1"
+ },
+ {
+ "Project name": "FinPilot",
+ "Project description": "FinPilot is an open-source, enterprise-grade internal finance and expense approval system designed to streamline the reimbursement process within organizations. It provides a structured, transparent, and secure workflow where employees can raise expense claims, managers can review and approve them, and finance teams can validate and settle the claims.",
+ "Project link": "https://github.com/Abhinavhaldiya/FinPilot",
+ "Project admin": "Abhinav Kumar",
+ "Admin linkedin": "https://www.linkedin.com/in/abhinav-kumar-nitkkr/",
+ "Admin github": "https://github.com/Abhinavhaldiya",
+ "Tech stack": "FinPilot is built using a simple and modern tech stack that includes React and Tailwind CSS for the frontend, Node.js and Express for the backend, and PostgreSQL for the database. It also uses JWT for authentication, bcrypt for password hashing, Multer for file uploads, and Chart.js for displaying data in graphs and charts.",
+ "mentor 1": "Shivam Prasad Singh",
+ "mentor 1 github": "https://github.com/shivhere007",
+ "mentor 1 linkedin": "http://www.linkedin.com/in/iamshiv07",
+ "mentor 2": "Gaurav Gupta",
+ "Mentor 2 linkedin": "https://www.linkedin.com/in/gauravgupta7431/",
+ "mentor 2 github": "https://github.com/Gaurav075",
+ "keyword": "phase1"
+ },
+ {
+ "Project name": "eventstack",
+ "Project description": "EventStack is a platform alternative to Doodle and Luma Events for managing, organizing and stacking events effeciently.",
+ "Project link": "https://github.com/abhirajadhikary06/eventstack.git",
+ "Project admin": "Abhiraj Adhikary",
+ "Admin linkedin": "https://www.linkedin.com/in/abhirajadhikary06/",
+ "Admin github": "https://github.com/abhirajadhikary06",
+ "Tech stack": "Tornado, HTML, CSS, Js, SQLite",
+ "mentor 1": "Divyanshi Kulshrestha",
+ "mentor 1 github": "https://github.com/divyanshii10",
+ "mentor 1 linkedin": "https://www.linkedin.com/in/divyanshi-kulshrestha-5ba319295/",
+ "keyword": "phase1"
+ },
+ {
+ "Project name": "DevElevate",
+ "Project description": "DevElevate is a full-stack, AI-powered open-source platform built to help students and developers learn technical skills, grow confidently, and prepare for careers—all from a single platform. The platform offers:\nStructured learning paths in DSA, Java, MERN, AI/ML, and Data Science\nAn AI chatbot (Study Buddy) to solve doubts, guide on career paths, and suggest resources.\nPersonalized dashboards for learners, including progress tracking, daily planners, and goals.\nA tech feed offering real-time internship updates, hackathon events, and developer news.\nTools like resume and cover letter builders, mock interview practice, and profile optimizers.\nRole-based authentication for users and admins, with profile management and admin dashboard.\nIntegrated coding practice links (GFG, LeetCode, HackerRank).\nAccessibility features like dark mode,white.",
+ "Project link": "https://github.com/abhisek2004/Dev-Elevate.git",
+ "Project admin": "ABHISEK PANDA",
+ "Admin linkedin": "http://www.linkedin.com/in/abhisekpanda2004",
+ "Admin github": "https://github.com/abhisek2004",
+ "Tech stack": "Frontend: TypeScript, Tailwind CSS, Shadcn UI\nBackend: Node.js or Express.js\nDatabase: MongoDB Atlas",
+ "mentor 1": "Jay Sandeep Sawant",
+ "mentor 1 github": "https://github.com/Jay2006sawant",
+ "mentor 1 linkedin": "https://www.linkedin.com/in/jay-sawant-4b59aa324/",
+ "mentor 2": "Avansh Yadav",
+ "Mentor 2 linkedin": "https://www.linkedin.com/in/avanshyadav/",
+ "mentor 2 github": "https://github.com/Avansh2006",
+ "mentor 3": "Afifa Fatima",
+ "mentor 3 linkedin": "https://www.linkedin.com/in/afifa-fatima-b16a23289/",
+ "mentor 3 github": "https://github.com/afifaFatima786",
+ "mentor 4": "Amisha Gupta",
+ "mentor 4 linkedin": "https://www.linkedin.com/in/amishagupta31/",
+ "mentor 4 github": "https://github.com/amishagupta31",
+ "keyword": "phase1"
+ },
+ {
+ "Project name": "people hub",
+ "Project description": "This project is a comprehensive Employee Management Portal with secure login authentication. It empowers users to efficiently create, update, and delete employee details, along with managing leave requests. Future enhancements include a modernized user interface, notification management, and the integration of other advanced features for a complete people management solution.",
+ "Project link": "https://github.com/abhisek247767/PeopleHub-Frontend \n\nhttps://github.com/abhisek247767/PeopleHub-Backend",
+ "Project admin": "Abhisek Roy",
+ "Admin linkedin": "https://www.linkedin.com/in/royabhisek247767/",
+ "Admin github": "https://github.com/abhisek247767",
+ "Tech stack": "Angular, NodeJS, MongoDB, Docker",
+ "mentor 1": "Riddhi Chakraborty",
+ "mentor 1 github": "https://github.com/riddhi-testcases",
+ "mentor 1 linkedin": "https://www.linkedin.com/in/riddhi-chakraborty-334069279",
+ "keyword": "phase1"
+ },
+ {
+ "Project name": "Foodie",
+ "Project description": "online food delivery application",
+ "Project link": "https://github.com/Abhishek2634/Foodie",
+ "Project admin": "Abhishek Farshwal",
+ "Admin linkedin": "https://www.linkedin.com/in/abhishekfarswal/",
+ "Admin github": "https://github.com/Abhishek2634",
+ "Tech stack": "MERN stack",
+ "mentor 1": "Abhishek Kumar",
+ "mentor 1 github": "https://github.com/abhishekraoas",
+ "mentor 1 linkedin": "https://linkedin.com/in/abhishekraoas",
+ "mentor 2": "Nouman Khan",
+ "Mentor 2 linkedin": "https://www.linkedin.com/in/nouman-khan-95923a256/",
+ "mentor 2 github": "https://github.com/NoumanKhan2003",
+ "keyword": "phase1"
+ },
+ {
+ "Project name": "TravelGrid",
+ "Project description": "An all-in-one travel platform offering seamless booking for hotels, flights, and rentals, along with personalized trip planning and travel guides. The website aims to simplify travel experiences by combining convenience, affordability, and expert recommendations in one place.",
+ "Project link": "https://github.com/Adarsh-Chaubey03/TravelGrid",
+ "Project admin": "Adarsh Chaubey",
+ "Admin linkedin": "https://in.linkedin.com/in/adarsh-chaubey",
+ "Admin github": "https://github.com/Adarsh-Chaubey03",
+ "Tech stack": "MERN Stack (Recact Js)",
+ "mentor 1": "Vinayak Jain",
+ "mentor 1 github": "Vinayak55jain https://share.google/6aAMr2AvpqGMmL9r5",
+ "mentor 1 linkedin": "https://www.linkedin.com/in/vinayakjain03?utm_source=share&utm_campaign=share_via&utm_content=profile&utm_medium=android_app",
+ "mentor 2": "Kosaraju joshitha",
+ "Mentor 2 linkedin": "https://www.linkedin.com/in/joshitha-kosaraju?utm_source=share&utm_campaign=share_via&utm_content=profile&utm_medium=android_app",
+ "mentor 2 github": "https://github.com/joshitha5g4",
+ "keyword": "phase1"
+ },
+ {
+ "Project name": "JobSync - Inclusive Job Finder Platform",
+ "Project description": "JobSync is a job discovery platform designed for underprivileged individuals and daily wage workers. It simplifies access to job opportunities through a clean UI, multilingual support, and voice-enabled search. Contributors will help build core features like user authentication, a job search dashboard with scraping or API integration, and accessibility tools for low-literacy users. The goal is to create a user-friendly and inclusive job-seeking experience for those who need it most.",
+ "Project link": "https://github.com/adityagarwal15/JobSync",
+ "Project admin": "Aditya Agarwal",
+ "Admin linkedin": "https://www.linkedin.com/in/adityagarwal15/",
+ "Admin github": "https://github.com/adityagarwal15",
+ "Tech stack": "HTML,CSS,JS,REACT.JS,NODE.JS,EXPRESS.JS,MONGODB,WEB SPEECH API, I18NEXT,NETLIFY",
+ "mentor 1": "ADITYA KALBURGI",
+ "mentor 1 github": "https://github.com/adityakalburgi",
+ "mentor 1 linkedin": "http://www.linkedin.com/in/adityakalburgi",
+ "keyword": "phase1"
+ },
+ {
+ "Project name": "CodeClip",
+ "Project description": "Code Snippet Manager Extension",
+ "Project link": "https://github.com/opensource-society/CodeClip",
+ "Project admin": "Aditya Kumar",
+ "Admin linkedin": "https://linkedin.com/in/adityai0",
+ "Admin github": "https://github.com/adityai0",
+ "Tech stack": "HTML, CSS, JAVASCRIPT",
+ "mentor 1": "Harsh Ahuja",
+ "mentor 1 github": "https://github.com/Harsh-26626",
+ "mentor 1 linkedin": "https://www.linkedin.com/in/harsh-ahuja-722948292/",
+ "mentor 2": "Sreejani Banik",
+ "Mentor 2 linkedin": "https://www.linkedin.com/in/sreejani-banik-4a2bab281?utm_source=share&utm_campaign=share_via&utm_content=profile&utm_medium=android_app",
+ "mentor 2 github": "https://github.com/SreejaniBanik",
+ "mentor 3": "Saleha Tabassum",
+ "mentor 3 linkedin": "https://github.com/SalehaTabassum",
+ "mentor 3 github": "https://www.linkedin.com/in/saleha-tabassum-213568268",
+ "keyword": "phase1"
+ },
+ {
+ "Project name": "NotesVault",
+ "Project description": "NotesVault is a beginner-friendly, open-source web app designed to help students store, browse, and manage academic notes and previous year questions (PYQs) in one place. This project is perfect for contributors who want to build and grow a useful educational tool from scratch.",
+ "Project link": "https://github.com/opensource-society/NotesVault",
+ "Project admin": "Aditya Patwa",
+ "Admin linkedin": "https://www.linkedin.com/in/AdityaPatwa07",
+ "Admin github": "https://github.com/Aditya-Patwa/",
+ "Tech stack": "HTML, CSS, JavaScript",
+ "mentor 1": "Anand Kumar",
+ "mentor 1 github": "https://github.com/Anandmehata",
+ "mentor 1 linkedin": "https://www.linkedin.com/in/anand-mehta-787678295?utm_source=share&utm_campaign=share_via&utm_content=profile&utm_medium=android_app",
+ "mentor 2": "Ashish Jangra",
+ "Mentor 2 linkedin": "https://www.linkedin.com/in/ashish-jangra-0aab9124b?utm_source=share&utm_campaign=share_via&utm_content=profile&utm_medium=android_app",
+ "mentor 2 github": "https://github.com/OpArcade",
+ "keyword": "phase1"
+ },
+ {
+ "Project name": "Aluma",
+ "Project description": "With the growing need for mental health support and the lack of accessible or affordable resources , Aluma aims to provide a simple and supportive platform for emotjonal well being, for people of all ages. Aluma combines helpful tools like mood tracking, AI powered chatbots which personalise the response based on the information the user gives and music to support users in their daily mental health journey. The platform features 2 chatbots, Elena for emotional support and Jess for motivation, offering friendly conversations and helpful suggestions. Users can track their daily mood and events in a virtual Journal, take emotional assessments and receive AI generated tips for their specific situation. Aluma also offers relaxing music and meditation video links to help with anxiety and stress. This project has been shaped by feedback from over 60 users and focuses on providing a safe anf welcoming space for emotional care.",
+ "Project link": "https://github.com/AdityaRalhan/Aluma",
+ "Project admin": "Aditya Ralhan",
+ "Admin linkedin": "https://www.linkedin.com/in/aditya-ralhan/",
+ "Admin github": "https://github.com/AdityaRalhan",
+ "Tech stack": "Nextjs, Reactjs, Tailwind, Expressjs, MongoDB, Mongoose, Gemini API, Spotify API, JWT and Bcrypt",
+ "mentor 1": "Divyanshi Kulshrestha",
+ "mentor 1 github": "https://github.com/divyanshii10",
+ "mentor 1 linkedin": "https://www.linkedin.com/in/divyanshi-kulshrestha-5ba319295/",
+ "keyword": "phase1"
+ },
+ {
+ "Project name": "Trendhora",
+ "Project description": "Trendhora – your gateway to a seamless online shopping experience. This full-stack ecommerce application harnesses the power of the MERN stack to bring you a dynamic and interactive marketplace. Whether you're a buyer exploring diverse product categories or an admin managing inventory and customer accounts, Trendhora offers a robust and feature-rich platform for all your ecommerce needs.",
+ "Project link": "https://github.com/agamjotsingh18/trendhora",
+ "Project admin": "Agamjot Singh",
+ "Admin linkedin": "https://www.linkedin.com/in/agamjot-singh/",
+ "Admin github": "https://github.com/agamjotsingh18",
+ "mentor 1": "Tanziha Sheikh",
+ "mentor 1 github": "https://github.com/Tanziha-Sheikh",
+ "mentor 1 linkedin": "https://www.linkedin.com/in/s-a32b802",
+ "mentor 2": "Vishisht Kapoor",
+ "Mentor 2 linkedin": "https://www.linkedin.com/in/vishishtkapoor?utm_source=share&utm_campaign=share_via&utm_content=profile&utm_medium=android_app",
+ "mentor 2 github": "github.com/vishishtkapoor",
+ "keyword": "phase1"
+ },
+ {
+ "Project name": "quiz app",
+ "Project description": "a quiz app made using html, css and javascript",
+ "Project link": "https://github.com/Jadhav124Akshada/SkinSense.git",
+ "Project admin": "Akshada Jadhav",
+ "Admin linkedin": "https://www.linkedin.com/in/akshada-jadhav-4b72062b5?utm_source=share&utm_campaign=share_via&utm_content=profile&utm_medium=android_app",
+ "Admin github": "https://github.com/Jadhav124Akshada",
+ "Tech stack": "HTML, CSS, javascript",
+ "mentor 1": "Priya",
+ "mentor 1 github": "https://github.com/Priyakatariya",
+ "mentor 1 linkedin": "https://www.linkedin.com/in/priya-27a522333?utm_source=share&utm_campaign=share_via&utm_content=profile&utm_medium=android_app",
+ "mentor 2": "Muhammad Hassam",
+ "Mentor 2 linkedin": "https://www.linkedin.com/in/hassam-dev",
+ "mentor 2 github": "https://github.com/Shinjuro-svg",
+ "mentor 3": "Richa",
+ "mentor 3 linkedin": "https://www.linkedin.com/in/richa-yadav-3273a7224/",
+ "mentor 3 github": "https://github.com/richayadav03",
+ "keyword": "phase1"
+ },
+ {
+ "Project name": "KinetiX : AI Powered Fitness Application",
+ "Project description": "KinetiX is an AI-powered Android fitness app that helps users improve posture, track workouts, and maintain a healthy lifestyle. Built using Kotlin and ML models, KinetiX combines mobile development with machine learning to provide real-time posture correction and personalized exercise feedback. The app is designed with a sleek dark theme UI, offering features like:\nPosture AI: Real-time posture detection using TensorFlow Lite. Workout Tracker: Customizable workout plans and tracking. Progress Dashboard: Visual insights into fitness journey.\nReminders & Goals: Push notifications for workouts and hydration.\nUser Profile: BMI calculator and fitness analytics.",
+ "Project link": "https://github.com/akshtshrma/KinetiX",
+ "Project admin": "Akshat Sharma",
+ "Admin linkedin": "https://www.linkedin.com/in/akshtshrma",
+ "Admin github": "https://github.com/akshtshrma",
+ "Tech stack": "Kotlin, XML, Mediapipe, MVVM,",
+ "mentor 1": "Navdeep Kaur",
+ "mentor 1 github": "https://github.com/Navdeep-lab",
+ "mentor 1 linkedin": "https://www.linkedin.com/in/navdeep-kaur-057258312",
+ "keyword": "phase1"
+ },
+ {
+ "Project name": "exciting_pong-game",
+ "Project description": "An classic Pong game built with HTML, CSS, and JavaScript, featuring AI, difficulty levels, and sound effects.",
+ "Project link": "https://github.com/Akki-jaiswal/pong-game.git",
+ "Project admin": "Akshay Jaiswal",
+ "Admin linkedin": "https://www.linkedin.com/in/akshay-jaiswal-20348a31b?utm_source=share&utm_campaign=share_via&utm_content=profile&utm_medium=android_app",
+ "Admin github": "https://github.com/Akki-jaiswal",
+ "Tech stack": "Html | CSS | JavaScript",
+ "mentor 1": "RohithS D",
+ "mentor 1 github": "https://github.com/Rohith0750",
+ "mentor 1 linkedin": "https://www.linkedin.com/in/s-d-rohith-b31052296",
+ "mentor 2": "Priya",
+ "Mentor 2 linkedin": "https://www.linkedin.com/in/priya-27a522333?utm_source=share&utm_campaign=share_via&utm_content=profile&utm_medium=android_app",
+ "mentor 2 github": "https://github.com/Priyakatariya",
+ "mentor 3": "Shreeya Srivastava",
+ "mentor 3 linkedin": "https://www.linkedin.com/in/shreeya-srivastava-94a458327/",
+ "mentor 3 github": "https://github.com/shreesriv12",
+ "keyword": "phase1"
+ },
+ {
+ "Project name": "AI Stock Analyzer",
+ "Project description": "The Stock Analyzer project is a complete stock market analysis tool utilizing ML models. It allows users to input stock symbols, select date ranges, view historical stock trends, and see future stock price predictions via interactive charts.",
+ "Project link": "https://github.com/SrigadaAkshayKumar/stock",
+ "Project admin": "Akshay kumar",
+ "Admin linkedin": "https://www.linkedin.com/in/akshaykumarsrigada",
+ "Admin github": "https://github.com/SrigadaAkshayKumar",
+ "Tech stack": "Frontend: React, JavaScript Backend: Python",
+ "mentor 1": "Akshit Tiwari",
+ "mentor 1 github": "https://github.com/AkshitTiwarii",
+ "mentor 1 linkedin": "https://www.linkedin.com/in/akshit-tiwarii/",
+ "mentor 2": "Dhruva Kumar Kaushal",
+ "Mentor 2 linkedin": "www.linkedin.com/in/dhruvakkaushal",
+ "mentor 2 github": "https://github.com/dhruvak001",
+ "keyword": "phase1"
+ },
+ {
+ "Project name": "aitoolbox.software",
+ "Project description": "AIToolbox is an open-source platform offering a suite of daily-use AI tools in one place, including email writing, GPT chatbot, image and logo generation, YouTube transcription, and more. It's designed for simplicity, productivity, and easy access without switching between multiple apps.",
+ "Project link": "https://github.com/huamanraj/aitoolbox.software",
+ "Project admin": "Aman",
+ "Admin linkedin": "https://www.linkedin.com/in/huamanraj/",
+ "Admin github": "https://github.com/huamanraj",
+ "Tech stack": "NextJS, Tailwind, ReactJS",
+ "mentor 1": "Amrit Raj",
+ "mentor 1 github": "AmritRaj29 https://github.com/AmritRaj29",
+ "mentor 1 linkedin": "https://www.linkedin.com/in/aaryan-raj-0bba92350?utm_source=share&utm_campaign=share_via&utm_content=profile&utm_medium=android_app",
+ "mentor 2": "Varun Maramreddy",
+ "Mentor 2 linkedin": "https://www.linkedin.com/in/varunmaramreddy/",
+ "mentor 2 github": "https://github.com/DrMyth",
+ "keyword": "phase1"
+ },
+ {
+ "Project name": "InfantCareCompass",
+ "Project description": "InfantCareCompass is a dedicated platform designed to simplify childcare management for modern parents. Balancing the joys and challenges of parenting, this application empowers users to efficiently track their child’s healthcare needs, particularly focusing on vaccination schedules, educational resources, and more.",
+ "Project link": "https://github.com/Amarjha01/InfantCareCompass",
+ "Project admin": "Amar jha",
+ "Admin linkedin": "https://www.linkedin.com/in/amarjha01/",
+ "Admin github": "https://github.com/Amarjha01",
+ "Tech stack": "MERN (MongoDB, Express.js, React.js, Node.js), Tailwind CSS, ZegoCloud, cloudinary, JWT, Docker, GitHub Actions, Planned AI Integration: OpenAI API / LangChain / TensorFlow.js / Python (FastAPI)",
+ "mentor 1": "HEMANT CHILKURI",
+ "mentor 1 github": "https://github.com/CHHemant",
+ "mentor 1 linkedin": "https://www.linkedin.com/in/hemant-chilkuri",
+ "keyword": "phase1"
+ },
+ {
+ "Project name": "EdgeCareer",
+ "Project description": "🚀 EdgeCareer – AI-Powered Career Coach Full Stack AI Career Coach built with React 19 + Next.js 15, Tailwind CSS, NeonDB, Prisma, Clerk Authentication, Inngest, Gemini API, and Shadcn UI. A cutting-edge AI-driven career platform that provides personalized job recommendations, AI resume reviews, and real-time career insights to help users",
+ "Project link": "https://github.com/amitkumardemo/EdgeCareer.git",
+ "Project admin": "Amit Kumar",
+ "Admin linkedin": "https://www.linkedin.com/in/amit-kumar-686196225/",
+ "Admin github": "https://github.com/amitkumardemo",
+ "Tech stack": "React 19 & Next.js 15-\tFrontend & Server-Side Rendering\nTailwind CSS & Shadcn UI -\tModern UI & Styling\nNeonDB & Prisma\t- Database & ORM\nClerk Authentication -\tSecure login & access control\nInngest\tBackground job processing\nGemini API - AI-powered career guidance\nVercel\t- Deployment & hosting",
+ "mentor 1": "Yash Vikram",
+ "mentor 1 github": "https://github.com/yashvikram30",
+ "mentor 1 linkedin": "https://www.linkedin.com/in/yashvikram30?utm_source=share&utm_campaign=share_via&utm_content=profile&utm_medium=android_app",
+ "keyword": "phase1"
+ },
+ {
+ "Project name": "Music tracker API",
+ "Project description": "MusicTrackerAPI is a lightweight, RESTful API built to help users track, organize, and manage their favorite songs easily. Designed using Node.js and SQLite, this backend service allows full CRUD operations on music entries, making it ideal for personal music dashboards, playlist managers, or even as a backend for music-based applications.",
+ "Project link": "https://github.com/Ananya-te/MusicTrackerAPI.git",
+ "Project admin": "Ananya Giri",
+ "Admin linkedin": "https://www.linkedin.com/in/ananya-giri-38738b240?utm_source=share&utm_campaign=share_via&utm_content=profile&utm_medium=android_app",
+ "Admin github": "https://github.com/Ananya-te",
+ "Tech stack": "node.js,SQLite(DB browser),RESTful API ,python,html css",
+ "mentor 1": "Rithvik",
+ "mentor 1 github": "https://github.com/Rithvik1709",
+ "mentor 1 linkedin": "https://www.linkedin.com/in/rithvik1709",
+ "keyword": "phase1"
+ },
+ {
+ "Project name": "Vaccination Portal",
+ "Project description": "VacciTrack is a digital platform that helps parents and healthcare workers manage child vaccination records with ease. Using QR codes, timely reminders, and educational resources, we ensure every child gets the right vaccine at the right time — safety and affordability.",
+ "Project link": "https://github.com/ShishuCard/Vaccination_Portal",
+ "Project admin": "Ankit Shaw",
+ "Admin linkedin": "https://www.linkedin.com/in/ankit-shaw-884b0728a?utm_source=share&utm_campaign=share_via&utm_content=profile&utm_medium=android_app",
+ "Admin github": "https://github.com/AnkitShaw-100",
+ "Tech stack": "React - frontend, Firebase - backend.",
+ "mentor 1": "Aryan Jain",
+ "mentor 1 github": "https://github.com/jainaryan04",
+ "mentor 1 linkedin": "https://www.linkedin.com/in/jainaryan04",
+ "mentor 2": "RAJU KUMAR RAJA",
+ "Mentor 2 linkedin": "https://www.linkedin.com/in/raju-kumar-raja/",
+ "mentor 2 github": "https://github.com/RajukrRaja",
+ "keyword": "phase1"
+ },
+ {
+ "Project name": "KrishiMitra.py",
+ "Project description": "KrishiMitra.py is an all-in-one AI-powered assistant designed to support Indian farmers by addressing their daily agricultural challenges. The project integrates multiple features including multi-language support (for Hindi, Tamil, Telugu, Bhojpuri, etc.), crop disease detection via image upload, mandi price updates, fertilizer and loan information, weather forecasting based on location, a crop calendar, task reminders, and a smart chatbot for instant help. Built using Python and Streamlit, KrishiMitra aims to empower farmers with personalized, accessible, and region-specific agricultural guidance in their native languages.",
+ "Project link": "https://github.com/Ansikka/KrishiMitra.py",
+ "Project admin": "Anshika Sharma",
+ "Admin linkedin": "https://www.linkedin.com/in/anshikasharma5",
+ "Admin github": "https://github.com/Ansikka",
+ "Tech stack": "python, gTTs, pillow , openCV, ML model, streamlit",
+ "mentor 1": "Pooja Bhalla",
+ "mentor 1 github": "https://github.com/poojabhallaa",
+ "mentor 1 linkedin": "https://www.linkedin.com/in/poojabhalla05",
+ "mentor 2": "HEMANT CHILKURI",
+ "Mentor 2 linkedin": "https://www.linkedin.com/in/hemant-chilkuri",
+ "mentor 2 github": "https://github.com/CHHemant",
+ "keyword": "phase1"
+ },
+ {
+ "Project name": "AnimateItNow",
+ "Project description": "AnimateItNow is an open-source project that showcases beautiful and creative web animations using HTML, CSS, and JavaScript — without any frameworks or libraries. The goal is to build a collection of unique, visually engaging components and pages that help developers learn modern frontend techniques through real-world animation examples.",
+ "Project link": "https://github.com/itsAnimation/AnimateItNow",
+ "Project admin": "Anuj Shrivastava",
+ "Admin linkedin": "https://www.linkedin.com/in/anuj-shrivastava-949645299/",
+ "Admin github": "https://github.com/AnujShrivastava01",
+ "Tech stack": "HTML, CSS and JavaScript",
+ "mentor 1": "Saleha Tabassum",
+ "mentor 1 github": "https://github.com/SalehaTabassum",
+ "mentor 1 linkedin": "https://www.linkedin.com/in/saleha-tabassum-213568268",
+ "mentor 2": "Suraj",
+ "Mentor 2 linkedin": "https://www.linkedin.com/in/suraj-s-g-dhanva-995a23298/",
+ "mentor 2 github": "https://github.com/SurajSG23",
+ "mentor 3": "Aditi Godse",
+ "mentor 3 linkedin": "https://www.linkedin.com/in/aditi-godse30?utm_source=share&utm_campaign=share_via&utm_content=profile&utm_medium=android_app",
+ "mentor 3 github": "https://github.com/aditigodse10",
+ "mentor 4": "Uma Ramisetty",
+ "mentor 4 linkedin": "https://www.linkedin.com/in/uma-ramisetty-303899287/",
+ "mentor 4 github": "https://github.com/UmaRamisetty",
+ "mentor 5": "Shashwat Gupta",
+ "mentor 5 linkedin": "https://www.linkedin.com/in/shashwat--gupta",
+ "mentor 5 github": "https://github.com/LionStone-1",
+ "keyword": "phase1"
+ },
+ {
+ "Project name": "Menthub",
+ "Project description": "Menthub is a full-stack web platform designed to bridge the gap between college students seeking guidance (mentees) and those who are ready to offer support (mentors) — all within the same academic environment. It facilitates seamless mentor-mentee connections, fosters community-driven learning, and promotes a culture of shared growth and collaboration.\n\nThis platform empowers students to:\n\nGet help from peers in academics, internships, placements, time management, and more.\n\nVolunteer as mentors based on their experiences and strengths.\n\nMake informed mentorship choices through intelligent matching and profile-based filtering.",
+ "Project link": "https://github.com/anugit24/Menthub",
+ "Project admin": "Anusha Jha",
+ "Admin linkedin": "https://www.linkedin.com/in/anusha-jha-8038491ba/",
+ "Admin github": "https://github.com/anugit24",
+ "Tech stack": "HTML, CSS ,Javascript ,Python, Flask, PostgresSQL,SQLAlchemy,Scikit-learn,",
+ "mentor 1": "Prabhat Yadav",
+ "mentor 1 github": "https://github.com/Prabhatyadav60",
+ "mentor 1 linkedin": "https://www.linkedin.com/in/prabhat-yadav-404b7727a/",
+ "mentor 2": "Aryan Jain",
+ "Mentor 2 linkedin": "https://www.linkedin.com/in/jainaryan04",
+ "mentor 2 github": "https://github.com/jainaryan04",
+ "keyword": "phase1"
+ },
+ {
+ "Project name": "OWASP Nest",
+ "Project description": "Your gateway to OWASP",
+ "Project link": "https://github.com/owasp/nest",
+ "Project admin": "Arkadii Yakovets",
+ "Admin linkedin": "https://www.linkedin.com/in/arkid15r/",
+ "Admin github": "https://github.com/arkid15r",
+ "Tech stack": "Python, Django, GraphQL, TypeScript, Next.js, React, TailwindCSS, Docker",
+ "mentor 1": "mansi ruhil",
+ "keyword": "phase1"
+ },
+ {
+ "Project name": "Travel_Website",
+ "Project description": "About\n🚀 Welcome🌈 , This repo is officially accepted for 🌟APERTRE 2025🌟 & 🌟CODEPEAK 2025🌟 This repo contains my project on Travel Website ✈️ using HTML,CSS . It contains the landing page of a travel tour company website. If you have any front end project on this or you can add new features in the project or in this repos.",
+ "Project link": "https://github.com/apu52/Travel_Website",
+ "Project admin": "Arpan Chowdhury",
+ "Admin linkedin": "https://www.linkedin.com/in/arpan-chowdhury-775294251/",
+ "Admin github": "https://github.com/apu52/",
+ "Tech stack": "HTML , CSS ,JS",
+ "mentor 1": "Gawandeep kaur",
+ "mentor 1 github": "https://github.com/Gawandeepkaur20",
+ "mentor 1 linkedin": "https://www.linkedin.com/in/gawandeep-kaur-b2671b322?utm_source=share&utm_campaign=share_via&utm_content=profile&utm_medium=android_app",
+ "keyword": "phase1"
+ },
+ {
+ "Project name": "VehiGo",
+ "Project description": "An open-source car rental website powered by HTML, CSS, and JavaScript, designed for effortless vehicle booking. It features intuitive user management, a streamlined car search and booking system, and a responsive design for web and mobile. Perfect for GSSoC 2025 contributors to enhance front-end functionality, improve user experience, and build practical open-source skills.",
+ "Project link": "https://github.com/InnoWebLabs/Vehigo",
+ "Project admin": "Aryan",
+ "Admin linkedin": "https://www.linkedin.com/in/aryan-soni-26794924a/",
+ "Admin github": "https://github.com/aryansoni13",
+ "Tech stack": "Full Stack Development",
+ "mentor 1": "Akash Shelke",
+ "mentor 1 github": "https://github.com/Akashshelke07",
+ "mentor 1 linkedin": "https://www.linkedin.com/in/akash-shelke-5b1520259/",
+ "mentor 2": "Prateek Narain",
+ "mentor 2 github": "https://github.com/PrateekNarain/Resume",
+ "mentor 3": "Akshit tiwari",
+ "mentor 3 linkedin": "Akshit Tiwari",
+ "mentor 3 github": "github",
+ "keyword": "phase1"
+ },
+ {
+ "Project name": "PG genie",
+ "Project description": "PG genie is a web application designed to help users find, review, and rate paying guest (PG) accommodations. Whether you're a tenant looking for your next stay or a PG owner aiming to showcase your property, PG genie makes the process seamless and efficient.",
+ "Project link": "https://github.com/coderashhar/PG-genie",
+ "Project admin": "Ashhar Khan",
+ "Admin linkedin": "https://www.linkedin.com/in/mohd-ashhar-khan-728a912a1/",
+ "Admin github": "https://github.com/coderashhar",
+ "Tech stack": "MERN",
+ "mentor 1": "Afifa Fatima",
+ "mentor 1 github": "https://github.com/afifaFatima786",
+ "mentor 1 linkedin": "https://www.linkedin.com/in/afifa-fatima-b16a23289/",
+ "keyword": "phase1"
+ },
+ {
+ "Project name": "Drx.MediMate",
+ "Project description": "Aditi is a Flask-based web application that serves as your AI-powered pharmaceutical assistant. It provides:\n\nClinical drug information, including therapeutic uses, dosage guidelines, side effects, contraindications, and drug interactions.\n\nSymptom-based drug recommendations following evidence-based guidelines.\n\nEducational Use: Designed for educational purposes to assist in healthcare decision-making.",
+ "Project link": "https://github.com/MAVERICK-VF142/Drx.MediMate",
+ "Project admin": "ASHUTOSH",
+ "Admin linkedin": "https://www.linkedin.com/in/ashutosh-jena-/",
+ "Admin github": "https://github.com/MAVERICK-VF142",
+ "Tech stack": "Backend: Python, Flask\n\nAI: Google Generative AI (Gemini Model)\n\nFrontend: HTML, CSS (Flask templates)",
+ "mentor 1": "Aditya Chaudhary",
+ "mentor 1 github": "https://github.com/AdityaChaudhary2913",
+ "mentor 1 linkedin": "https://www.linkedin.com/in/adityachaudhary1306/",
+ "keyword": "phase1"
+ },
+ {
+ "Project name": "Code A2Z",
+ "Project description": "A collaborative platform for developers & learners to explore, build, and contribute to Web Development & AI projects. Features include AI-driven recommendations, role-based access, project tracking, interactive community engagement, and structured learning resources.",
+ "Project link": "https://github.com/Code-A2Z/code-a2z",
+ "Project admin": "Avdhesh Varshney",
+ "Admin linkedin": "https://www.linkedin.com/in/avdhesh-varshney/",
+ "Admin github": "https://github.com/Avdhesh-Varshney",
+ "Tech stack": "React, Vite, Node.js, Express.js, MongoDB, Firebase, Tailwind CSS",
+ "mentor 1": "Rohan Singh",
+ "mentor 1 github": "https://github.com/Rohansingh3001",
+ "mentor 1 linkedin": "https://www.linkedin.com/in/rohan3001?utm_source=share&utm_campaign=share_via&utm_content=profile&utm_medium=android_app",
+ "keyword": "phase1"
+ },
+ {
+ "Project name": "Flavor Ai",
+ "Project description": "This project is designed to make meal planning and recipe exploration effortless and fun. Whether you're looking for AI-curated recipes, diverse food categories, or exciting culinary surprises, FlavorAI has it all.",
+ "Project link": "https://github.com/Ayushjhawar8/Flavor-ai",
+ "Project admin": "Ayush Jhawar",
+ "Admin linkedin": "linkedin.com/in/ayushjhawar8",
+ "Admin github": "github.com/ayushjhawar8",
+ "Tech stack": "Frontend: Next.js\nBackend: Fetches data from a custom API\nStyling: Tailwind CSS, DaisyUI\nAI Integration: OpenAI/Groq API\nHosting: Vercel\\",
+ "mentor 1": "Anshika Sansanwal",
+ "mentor 1 github": "https://github.com/anshikasansanwal",
+ "mentor 1 linkedin": "https://www.linkedin.com/in/anshikasansanwal?utm_source=share&utm_campaign=share_via&utm_content=profile&utm_medium=android_app",
+ "keyword": "phase1"
+ },
+ {
+ "Project name": "KnockoutZone",
+ "Project description": "A full stack web app to manage tournaments end-to-end. Admins can create tournaments, set rules, and schedule matches. Players can register, get auto-assigned to teams, view match schedule and track scores..",
+ "Project link": "https://github.com/Ayush0316/KnockoutZone",
+ "Project admin": "Ayush Kansal",
+ "Admin linkedin": "https://www.linkedin.com/ayushkansal0316/",
+ "Admin github": "https://github.com/Ayush0316",
+ "Tech stack": "React, Spring Boot",
+ "mentor 1": "Krish Chothani",
+ "mentor 1 github": "https://github.com/KrishChothani",
+ "mentor 1 linkedin": "https://www.linkedin.com/in/krish-chothani-797598284",
+ "keyword": "phase1"
+ },
+ {
+ "Project name": "SkillTrade",
+ "Project description": "Skill Trade is an innovative platform designed to connect two primary user groups: Consumers (or Users) and Service Providers (or Workers). The platform facilitates seamless interaction, enabling users to request services and service providers to fulfill them efficiently. It is a service booking platform where users can book various services such as electricians, carpenters, plumbers, and more.",
+ "Project link": "https://github.com/AyushSharma72/Skill_Trade",
+ "Project admin": "Ayush Sharma",
+ "Admin linkedin": "https://www.linkedin.com/in/ayush-sharma-a155a8267?utm_source=share&utm_campaign=share_via&utm_content=profile&utm_medium=android_app",
+ "Admin github": "https://github.com/AyushSharma72",
+ "Tech stack": "nextjs,nodejs,reactjs,",
+ "mentor 1": "Agraharpu Mounika",
+ "mentor 1 github": "https://github.com/AgraharpuMounika",
+ "mentor 1 linkedin": "https://www.linkedin.com/in/mounika-sanjiv-719453301/",
+ "keyword": "phase1"
+ },
+ {
+ "Project name": "Euphoric",
+ "Project description": "campus site for euphoric registerations, updates, promoting and showcasing events",
+ "Project link": "https://github.com/AshiTomar210/Euphoric-2025",
+ "Project admin": "Ayushi Tomar",
+ "Admin linkedin": "https://www.linkedin.com/in/ayushi-tomar-b388ba337",
+ "Admin github": "https://github.com/AshiTomar210",
+ "Tech stack": "php, mysql, javascript, ajax, html/css, bootstrap, libraries",
+ "mentor 1": "Tanziha Sheikh",
+ "mentor 1 github": "https://github.com/Tanziha-Sheikh",
+ "mentor 1 linkedin": "https://www.linkedin.com/in/s-a32b802",
+ "mentor 2": "Somyadip Ghosh",
+ "Mentor 2 linkedin": "https://www.linkedin.com/in/somyadipghosh",
+ "mentor 2 github": "https://github.com/somyadipghosh",
+ "keyword": "phase1"
+ },
+ {
+ "Project name": "WanderWise",
+ "Project description": "WanderWise-Smart-routes.-Hidden-gems.-Travel-smarter.-",
+ "Project link": "https://github.com/Balamurugan-cyber/WanderWise-Smart-routes.-Hidden-gems.-Travel-smarter.-",
+ "Project admin": "Balamurugan",
+ "Admin linkedin": "https://www.linkedin.com/in/balamurugankarthikeyan?utm_source=share&utm_campaign=share_via&utm_content=profile&utm_medium=android_app",
+ "Admin github": "https://github.com/Balamurugan-cyber",
+ "Tech stack": "(Fullstack)HTMl CSS JS",
+ "mentor 1": "MOHD AFTAAB",
+ "mentor 1 github": "https://github.com/MoAftaab/",
+ "mentor 1 linkedin": "https://www.linkedin.com/in/mohammad-aftaab-b49a5624a?utm_source=share&utm_campaign=share_via&utm_content=profile&utm_medium=android_app",
+ "keyword": "phase1"
+ },
+ {
+ "Project name": "HabitHeat",
+ "Project description": "A modern, feature-rich habit tracking application built with React and TypeScript. Track your daily habits, build streaks, earn achievements, and maintain consistency with powerful analytics and gamification features.",
+ "Project link": "https://github.com/BaraniVA/Habitheat",
+ "Project admin": "Barani",
+ "Admin linkedin": "https://www.linkedin.com/in/barani-a-90716422a?utm_source=share&utm_campaign=share_via&utm_content=profile&utm_medium=android_app",
+ "Admin github": "https://github.com/BaraniVA",
+ "Tech stack": "React 18, TypeScript, Tailwind CSS, Lucide React",
+ "mentor 1": "Vishav Mehra",
+ "mentor 1 github": "https://github.com/vishavmehra",
+ "mentor 1 linkedin": "https://www.linkedin.com/in/vishav-mehra-755107208?utm_source=share&utm_campaign=share_via&utm_content=profile&utm_medium=ios_app",
+ "mentor 2": "Gaurav Gupta",
+ "Mentor 2 linkedin": "https://www.linkedin.com/in/gauravgupta7431/",
+ "mentor 2 github": "https://github.com/Gaurav075",
+ "keyword": "phase1"
+ },
+ {
+ "Project name": "Refixly",
+ "Project description": "Refixly is a smart DIY repair assistant that uses AI to detect objects through your webcam and suggest repair tutorials. Future updates will include AR overlays and community support for an interactive repair experience.",
+ "Project link": "https://github.com/Bavanetha27/Refixly.git",
+ "Project admin": "Bavanetha M.R",
+ "Admin linkedin": "https://www.linkedin.com/in/bavanethamr",
+ "Admin github": "https://github.com/Bavanetha27",
+ "Tech stack": "React.js, Vite, Tailwind CSS, Node.js, Express.js, Firebase Authentication, MongoDB Atlas, TensorFlow.js, YouTube Data API",
+ "mentor 1": "Pratyaksh",
+ "mentor 1 github": "https://github.com/PRATYAKSH15",
+ "mentor 1 linkedin": "https://www.linkedin.com/in/pratyaksh-989922256/",
+ "keyword": "phase1"
+ },
+ {
+ "Project name": "Pouranik - Read. Share. Connect.",
+ "Project description": "Pouranik is a community-driven web app that helps readers explore books, join book clubs, track reading goals, and share second-hand books, all in one cozy, open-source platform.",
+ "Project link": "https://github.com/BhaktiMore18/Pouranik",
+ "Project admin": "Bhakti More",
+ "Admin linkedin": "https://www.linkedin.com/in/bhakti-more-01a619208",
+ "Admin github": "https://github.com/BhaktiMore18",
+ "Tech stack": "React, Tailwind CSS, Vite, Node.js, Express, and MongoDB, Google Books API.",
+ "mentor 1": "Rohan Singh",
+ "mentor 1 github": "https://github.com/Rohansingh3001",
+ "mentor 1 linkedin": "https://www.linkedin.com/in/rohan3001?utm_source=share&utm_campaign=share_via&utm_content=profile&utm_medium=android_app",
+ "mentor 2": "Gopichand Dandimeni",
+ "Mentor 2 linkedin": "https://www.linkedin.com/in/gopichand-dandimeni-269709287/",
+ "mentor 2 github": "https://github.com/Gooichand",
+ "keyword": "phase1"
+ },
+ {
+ "Project name": "eventmappr",
+ "Project description": "📌 Project Description – EventMappr\nEventMappr is a community-focused web application that allows users to discover, add, and explore local events on an interactive map. Built using React JS and Leaflet.js, the app provides a simple and intuitive interface to visualize nearby happenings like music events, tech meetups, volunteering drives, art fairs, and more.\n\nUsers can pin new events on the map by submitting a short form and selecting a location. The app also features event filtering by category and a geolocation-based search to find events near the user's current location. With no backend dependencies, EventMappr runs entirely in the browser and is a perfect example of what can be achieved with modern frontend tools alone.\n\nIdeal for communities, colleges, and local networks — EventMappr makes event discovery and sharing effortless.",
+ "Project link": "https://github.com/Bhavya1352/eventmappr",
+ "Project admin": "Bhavya Mishra",
+ "Admin linkedin": "https://www.linkedin.com/in/bhavya-mishra-7a3b09324",
+ "Admin github": "https://github.com/Bhavya1352",
+ "Tech stack": "React.js – For building the component-based user interface.\n\nLeaflet.js – For rendering interactive maps and markers.\n\nReact Leaflet – React bindings for Leaflet to handle maps in a declarative way.\n\nHTML5 – Markup structure of the web application.\n\nCSS3 – For styling, layout, and responsive design.\n\nJavaScript (ES6+) – Core programming language for interactivity and logic.\n\nGeolocation API – To fetch and use the user's current location.\n\nOpenStreetMap – Used as the map tile provider (free and open-source).\n\nVite / Create React App – For scaffolding and developing the React application.\n\nGit & GitHub – For version control and open-source collaboration.",
+ "mentor 1": "Aarohi Saxena",
+ "mentor 1 github": "https://github.com/TechEnchantress19",
+ "mentor 1 linkedin": "https://www.linkedin.com/in/aarohi-saxena-47a84423a/",
+ "keyword": "phase1"
+ },
+ {
+ "Project name": "Clean Breath",
+ "Project description": "Clean Breath is an intuitive web application designed to empower users to actively improve the air quality in their homes, offices, and communities by recommending the most effective air-purifying plants based on real-time pollutant data. By addressing pollutants like SO₂, NO₂, CO, O₃, PM2.5, and PM10, the app connects environmental science with daily living to create cleaner, greener spaces.\n\n🔑 Core Features\n📊 Track Air Quality:\nMonitor real-time air quality data (AQI) and pollutant concentrations in your area to understand the air you breathe.\n\n🪴 Know Your Plant:\nExplore detailed information about various plants, including their air-purifying capabilities, ideal conditions, and aesthetic appeal.\n\n📚 Green Insights:\nAccess well-curated articles, care guides, and expert tips on plant maintenance, indoor gardening, and sustainable practices.\n\n🌿 Find Your Plant:\nGet personalized plant recommendations tailored to your location, indoor/outdoor preferences, and the pollutants you wish to target.\n\n🎯 Purpose\nClean Breath aims to bridge the gap between environmental awareness and actionable solutions. By promoting the use of nature-based strategies for air purification, the app fosters healthier living while encouraging plant adoption and eco-conscious decision-making.\n\n💡 Ideal For\nUrban dwellers seeking cleaner indoor air\n\nHealth-conscious individuals and families\n\nEnvironmental enthusiasts and green lifestyle advocates\n\nSchools, offices, and wellness centers looking to green their spaces",
+ "Project link": "https://github.com/chandannekya/Clean-Breath",
+ "Project admin": "Chandan",
+ "Admin linkedin": "www.linkedin.com/in/chandannekya",
+ "Admin github": "https://github.com/chandannekya",
+ "Tech stack": "Frontend: React, Tailwind CSS, Vite\n\nBackend: Node.js, Express\n\nDatabase: MongoDB\n\nPayment Gateway: Razorpay",
+ "mentor 1": "Ashish Jangra",
+ "mentor 1 github": "https://github.com/OpArcade",
+ "mentor 1 linkedin": "https://www.linkedin.com/in/ashish-jangra-0aab9124b?utm_source=share&utm_campaign=share_via&utm_content=profile&utm_medium=android_app",
+ "keyword": "phase1"
+ },
+ {
+ "Project name": "CodeBrosPlatform",
+ "Project description": "CodeBros is a full-stack web application designed to connect developers, enabling them to network, collaborate, and communicate. The platform features user profiles, connection management, real-time messaging, and developer discovery capabilities.",
+ "Project link": "https://github.com/Altair-05/CodeBrosPlatform",
+ "Project admin": "Dakshata",
+ "Admin linkedin": "https://www.linkedin.com/in/dakshata-borse-57994326b/",
+ "Admin github": "https://github.com/Altair-05",
+ "Tech stack": "react with typescript, tailwind css express js",
+ "mentor 1": "Shreeya Srivastava",
+ "mentor 1 github": "https://github.com/shreesriv12",
+ "mentor 1 linkedin": "https://www.linkedin.com/in/shreeya-srivastava-94a458327/",
+ "keyword": "phase1"
+ },
+ {
+ "Project name": "SheSync",
+ "Project description": "SheSync is a comprehensive women's health and wellness platform built with modern web technologies. The platform aims to provide a supportive environment for women to access health resources, connect with healthcare professionals, and engage with a community of like-minded individuals.",
+ "Project link": "https://github.com/divi-24/SheSync",
+ "Project admin": "Deepak Gupta",
+ "Admin linkedin": "https://www.linkedin.com/in/deepak2405",
+ "Admin github": "https://github.com/divi-24",
+ "Tech stack": "Frontend\nReact18,Vite,TailwindCSS,Framer Motion (for animations),React Router DOM,Google Maps API,Google Generative AI,Clerk Authentication\nUI Components- Headless UI, Radix UI, React Icons,Lucide React, React Feather\nDevelopment Tools- ESLint, PostCSS, Autoprefixer ,TypeScript support",
+ "mentor 1": "Deepansh Vishwakarma",
+ "mentor 1 github": "https://github.com/codebydeep",
+ "mentor 1 linkedin": "https://linkedin.com/in/deepansh-vishwakarma",
+ "keyword": "phase1"
+ },
+ {
+ "Project name": "silai-hub",
+ "Project description": "🧵 GuddiSilai – Tailoring Made Digital 👗\nGuddiSilai is a full-stack tailoring platform that brings traditional Indian stitching services online. Designed especially for customers in Tier 2 and Tier 3 cities, the platform allows users to book stitching services, customize blouses, lehengas, and dresses, and track their orders — all from the comfort of their home.\n\nBuilt with React, Node.js, Express, and MongoDB, it offers both a user-facing interface and an admin panel to manage designs, track orders, and monitor payments.",
+ "Project link": "www.guddisilai.shop",
+ "Project admin": "Deepak Vishwakarma",
+ "Admin linkedin": "https://www.linkedin.com/in/deepakv2003",
+ "Admin github": "https://github.com/deepakcs2003",
+ "Tech stack": "react js, node js, express , full stack , authentication",
+ "mentor 1": "Sandeep Patel",
+ "mentor 1 github": "https://github.com/sandeepatel01",
+ "mentor 1 linkedin": "https://www.linkedin.com/in/sandeepatel01/",
+ "mentor 2": "Dipayan Ghosh",
+ "Mentor 2 linkedin": "https://www.linkedin.com/in/dipayan-ghosh-coder",
+ "mentor 2 github": "https://github.com/Dip-1432",
+ "keyword": "phase1"
+ },
+ {
+ "Project name": "Splitwiser",
+ "Project description": "Splitwiser is an open-source application designed to simplify expense sharing among groups. It aims to provide a robust and user-friendly platform for tracking and settling shared expenses, similar to popular expense-splitting apps, but completely open source and community-driven.",
+ "Project link": "https://github.com/Devasy23/splitwiser",
+ "Project admin": "Delin",
+ "Admin linkedin": "https://in.linkedin.com/in/devasy-patel",
+ "Admin github": "https://github.com/devasy23/",
+ "Tech stack": "Backend: FastAPI (Python) and MongoDB. Frontend: React Native with Expo.",
+ "mentor 1": "SOHAM GHOSH",
+ "mentor 1 github": "https://github.com/19Soham1762",
+ "mentor 1 linkedin": "https://www.linkedin.com/in/soham-ghosh-464b33253?utm_source=share&utm_campaign=share_via&utm_content=profile&utm_medium=android_app",
+ "keyword": "phase1"
+ },
+ {
+ "Project name": "Smart Chat Assistant",
+ "Project description": "Developed a fully responsive \"Smart Chat Assistant\" using HTML, CSS, and JavaScript featuring dark mode, voice input/output, chat history saving, and a user-friendly UI/UX. Hand-coded for real-world use, ideal for websites and portfolios.",
+ "Project link": "https://github.com/devangjain999/Smart-Chat-Assistant.git",
+ "Project admin": "Devang Jain",
+ "Admin linkedin": "https://www.linkedin.com/in/devangjain999",
+ "Admin github": "https://github.com/devangjain999",
+ "Tech stack": "HTML/CSS/JS/WEB APIs",
+ "mentor 1": "Anjali Jaiswal",
+ "mentor 1 github": "https://github.com/ANJALIJAISWAL4213",
+ "mentor 1 linkedin": "https://www.linkedin.com/in/anjali-jaiswal-442b0b251/",
+ "keyword": "phase1"
+ },
+ {
+ "Project name": "ClassSync",
+ "Project description": "ClassSync is an advanced, multi-tenant school scheduling and substitution management system that streamlines weekly timetable creation, automates teacher substitutions during absences, and ensures conflict-free allocations through intelligent load-balancing logic; built with a scalable MERN stack architecture, it features role-based access for admins and teachers, real-time email notifications, a visually intuitive timetable UI, and future-ready support for audit trails and class-wise views.",
+ "Project link": "https://github.com/dhananjay6561/ClassSync-GSSOC",
+ "Project admin": "Dhananjay Aggarwal",
+ "Admin linkedin": "https://www.linkedin.com/in/dhananjay6561",
+ "Admin github": "https://www.github.com/dhananjay6561",
+ "Tech stack": "Tech Stack: React.js, Tailwind CSS, Vite, Node.js, Express.js, MongoDB with Mongoose, JWT-based Auth, Nodemailer for emails, Node Cron for scheduling, deployed on Vercel and Render, with GitHub Actions for CI/CD.",
+ "mentor 1": "Sahil",
+ "mentor 1 github": "http://github.com/sahil-luthra-000",
+ "mentor 1 linkedin": "http://www.linkedin.com/in/sahil-luthra09",
+ "keyword": "phase1"
+ },
+ {
+ "Project name": "Netflix Clone",
+ "Project description": "Its a clone website for Netflix",
+ "Project link": "https://github.com/DhruvJohri/Netflix-Clone",
+ "Project admin": "Dhruv Johri",
+ "Admin linkedin": "https://www.linkedin.com/in/dhruv-johri",
+ "Admin github": "https://github.com/DhruvJohri",
+ "Tech stack": "MERN",
+ "mentor 1": "Deepansh Vishwakarma",
+ "mentor 1 github": "https://github.com/codebydeep",
+ "mentor 1 linkedin": "https://linkedin.com/in/deepansh-vishwakarma",
+ "keyword": "phase1"
+ },
+ {
+ "Project name": "Firebase Chat App",
+ "Project description": "A real-time chat application built using Firebase and React. It allows users to sign in with Google authentication, exchange messages instantly, and manage user sessions securely. The app showcases the power of serverless technologies with a sleek and responsive UI. Ideal for contributors interested in React, Firebase, and modern frontend/backend integration.",
+ "Project link": "https://github.com/Dhruvi-tech/firebase-chat-app",
+ "Project admin": "Dhruvi Mittal",
+ "Admin linkedin": "https://www.linkedin.com/in/dhruvi-mittal/",
+ "Admin github": "https://github.com/Dhruvi-tech",
+ "Tech stack": "React.js, Firebase Authentication, Firestore Database, HTML/CSS, JavaScript",
+ "mentor 1": "ANURAG SHARMA",
+ "mentor 1 github": "https://github.com/silverballz",
+ "mentor 1 linkedin": "https://www.linkedin.com/in/anurag-sharma-362664240",
+ "keyword": "phase1"
+ },
+ {
+ "Project name": "Healconnect",
+ "Project description": "A health monitoring system that provides real-time tracking of vital signs, helping users manage their well-being with accurate data and smart insights—all in one easy-to-use platform.",
+ "Project link": "https://github.com/Dipanita45/HEALCONNECT",
+ "Project admin": "Dipanita Mondal",
+ "Admin linkedin": "https://www.linkedin.com/in/dipanita-mondal-6a9257306?utm_source=share&utm_campaign=share_via&utm_content=profile&utm_medium=android_app",
+ "Admin github": "https://github.com/Dipanita45",
+ "Tech stack": "NextJS, Javascript, C++, Tailwind CSS",
+ "mentor 1": "Riddhi Chakraborty",
+ "mentor 1 github": "https://github.com/riddhi-testcases",
+ "mentor 1 linkedin": "https://www.linkedin.com/in/riddhi-chakraborty-334069279",
+ "keyword": "phase1"
+ },
+ {
+ "Project name": "AgroData Portal – A Data Visualization & Profiling System for Rural Agribusinesses",
+ "Project description": "AgroData Portal is a web-based open-source application designed to support data collection, profiling, and visualization of youth and women-led agribusinesses across the Niger Delta. The system allows LIFE-ND and similar development projects to:\n•\tDigitally profile beneficiaries and enterprise groups.\n•\tAnalyze socio-economic and agribusiness data by location, gender, and value chain.\n•\tMonitor progress and outcomes of livelihood interventions.",
+ "Project link": "https://medium.com/@rimoh11",
+ "Project admin": "Divya Jain",
+ "Admin linkedin": "www.linkedin.com/in/victor-imoh-uwem-941257225",
+ "Admin github": "https://github.com/Rimoh11/Rimoh",
+ "Tech stack": "Tools: PowerBI (for data visualization), Google Sheets API (for integration)",
+ "mentor 1": "Tarun Jyoti",
+ "mentor 1 github": "https://github.com/tarunjyoti12",
+ "mentor 1 linkedin": "https://www.linkedin.com/in/tarun-jyoti",
+ "keyword": "phase1"
+ },
+ {
+ "Project name": "SKYwatch Alerts",
+ "Project description": "A simple next js application that send the alerts when airplane are passing near to your live location also tell you about pattern in flight.",
+ "Project link": "https://github.com/Dnyaneshpise/skywatch_alerts",
+ "Project admin": "Dnyanesh Pise",
+ "Admin linkedin": "https://linkedin.com/in/pise",
+ "Admin github": "https://github.com/Dnyaneshpise/",
+ "Tech stack": "Nextjs , React",
+ "mentor 1": "Vanshikha Sri",
+ "mentor 1 github": "https://github.com/Valkyriezz",
+ "mentor 1 linkedin": "https://www.linkedin.com/in/vanshikha-sri-85010b29b?utm_source=share&utm_campaign=share_via&utm_content=profile&utm_medium=android_app",
+ "keyword": "phase1"
+ },
+ {
+ "Project name": "BookReview",
+ "Project description": "BookReview is a website for reviewing your favourite book using ai.",
+ "Project link": "https://bookreview-se1e.onrender.com/",
+ "Project admin": "Donald Reddy",
+ "Admin linkedin": "https://www.linkedin.com/in/donald-reddy-indelu/",
+ "Admin github": "https://github.com/DonaldReddy",
+ "Tech stack": "React.js, Tailwind, Node.js, Express.js, Postgresql, Prisma, Typescript, Javascript, OpenRouter",
+ "mentor 1": "Anirban Singha",
+ "mentor 1 github": "https://github.com/SinghaAnirban005",
+ "mentor 1 linkedin": "https://www.linkedin.com/in/anirban-singha-46a7b8296/",
+ "mentor 2": "Shivam Prasad Singh",
+ "Mentor 2 linkedin": "http://www.linkedin.com/in/iamshiv07",
+ "mentor 2 github": "https://github.com/shivhere007",
+ "keyword": "phase1"
+ },
+ {
+ "Project name": "Medical Adherence Monitoring System",
+ "Project description": "An innovative healthcare management system designed to help patients track medication intake, connect with doctors, and maintain a healthier lifestyle. Demo Video: https://res.cloudinary.com/dzl3qnjqk/video/upload/v1751681025/VID-20250419-WA0000_4_tycodg.mp4",
+ "Project link": "https://github.com/BrewedAlgorithms/Medical-Adherence-Monitoring-System",
+ "Project admin": "Durgesh Khade",
+ "Admin linkedin": "https://www.linkedin.com/in/durgeshkhade/",
+ "Admin github": "https://github.com/BrewedAlgorithms",
+ "Tech stack": "MERN, Tensorflow, Python, Embedded C",
+ "mentor 1": "Abdul Momin Khan",
+ "mentor 1 github": "https://github.com/Abdul-momin24",
+ "mentor 1 linkedin": "https://www.linkedin.com/in/abdul-momin-khan-8bb434288/",
+ "mentor 2": "Annapoorna V",
+ "Mentor 2 linkedin": "https://www.linkedin.com/in/annapoorna-aradhya/",
+ "mentor 2 github": "https://github.com/Annapoornaaradhya",
+ "keyword": "phase1"
+ },
+ {
+ "Project name": "MindJournal",
+ "Project description": "A full-featured mental health journal app built with React.js, Tailwind CSS, and Vite.\nFeatures: authentication, mood visualization via charts, theme toggling, calendar integration.Used React Router and Context API for navigation and state management.",
+ "Project link": "https://github.com/efshaperveen/MindJournal",
+ "Project admin": "Efsha Perveen",
+ "Admin linkedin": "https://www.linkedin.com/in/efsha-perveen-124718282",
+ "Admin github": "https://github.com/efshaperveen",
+ "Tech stack": "Frontend: React.js, Vite, Styling: Tailwind CSS,\nState Management: Context API, React Hooks,\nRouting: React Router,\nCharts: Recharts,\nIcons: React Icons",
+ "mentor 1": "Krish Patel",
+ "mentor 1 github": "https://www.linkedin.com/in/krishpatel1205/",
+ "mentor 1 linkedin": "https://github.com/KrishPatel1205",
+ "mentor 2": "Kanishka Tyagi",
+ "Mentor 2 linkedin": "https://www.linkedin.com/in/kanishka-tyagi-a334b128b/",
+ "mentor 2 github": "https://github.com/sachiikrish",
+ "keyword": "phase1"
+ },
+ {
+ "Project name": "Web Development",
+ "Project description": "Engage students in Web Development with an outstanding line of teaching",
+ "Project link": "https://github.com/roshnideyic365/Culinary-King-e-commerce-website.git",
+ "Project admin": "Emmanuel Famous",
+ "Admin linkedin": "https://www.linkedin.com/in/𝑬𝒎𝒎𝒂𝒏𝒖𝒆𝒍-𝑶𝒌𝒊𝒌𝒊𝒐𝒍𝒂-505783248/",
+ "Admin github": "https://github.com/masterpiece24",
+ "Tech stack": "LEMPSTACK",
+ "mentor 1": "RAJU KUMAR RAJA",
+ "mentor 1 github": "https://github.com/RajukrRaja",
+ "mentor 1 linkedin": "https://www.linkedin.com/in/raju-kumar-raja/",
+ "keyword": "phase1"
+ },
+ {
+ "Project name": "Driver Drowiness System",
+ "Project description": "Achieved 92% accuracy in detecting drowsiness using facial recognition and machine learning algorithms. • Processed driver images using OpenCV and Dlib for real-time monitoring of eye closure and head position. • Integrated real-time alerts with audio/visual warnings, responding in less than 1 second when fatigue is detected. • Trained a model on 5,000+ driver images, ensuring reliable performance in diverse conditions and real-world testing.",
+ "Project link": "https://github.com/Gagandeep-2003/driver-drowsiness-detection-system",
+ "Project admin": "Gagandeep Singh",
+ "Admin linkedin": "https://linkedin.com/in/gagandeepsingh22",
+ "Admin github": "https://github.com/Gagandeep-2003",
+ "Tech stack": "OpenCv, Dlib, Machine Learning",
+ "mentor 1": "Satyajeet Prakash",
+ "mentor 1 github": "https://github.com/Satyajeetprakash1",
+ "mentor 1 linkedin": "https://www.linkedin.com/in/satyajeetprakash",
+ "mentor 2": "Nityansh Pant",
+ "Mentor 2 linkedin": "https://www.linkedin.com/in/nityanshpant?utm_source=share&utm_campaign=share_via&utm_content=profile&utm_medium=android_app",
+ "mentor 2 github": "https://github.com/thynash",
+ "keyword": "phase1"
+ },
+ {
+ "Project name": "Weather-API",
+ "Project description": "A simple yet powerful weather scraper built with Node.js, Express and Cheerio. This project dynamically fetches real-time weather data for any city, scrapes the necessary details, and presents them on an intuitive user interfaec.",
+ "Project link": "https://github.com/GauravKarakoti/Weather-API",
+ "Project admin": "Gaurav Karakoti",
+ "Admin linkedin": "https://linkedin.com/in/gaurav-karakoti",
+ "Admin github": "https://github.com/GauravKarakoti",
+ "Tech stack": "Express, Axios, Cheerio, Cors, Dotenv",
+ "mentor 1": "Payal Kumari",
+ "mentor 1 github": "https://github.com/PayalKumari10",
+ "mentor 1 linkedin": "https://www.linkedin.com/in/payalkumari10/",
+ "keyword": "phase1"
+ },
+ {
+ "Project name": "Blogging Platform",
+ "Project description": "User friendly Interface where users can create accounts and post blogs on any topic and also allows users to read other blogs based on preference and intrest ,also allows sharing",
+ "Project link": "https://github.com/Gnanaashritha/Blogging-Platform-",
+ "Project admin": "Gnana Ashritha Maddukuri",
+ "Admin linkedin": "www.linkedin.com/in/gnana-ashritha-",
+ "Admin github": "https://github.com/Gnanaashritha",
+ "Tech stack": "Html, Css,Js,NodeJs,Mern",
+ "mentor 1": "Isha Bamel",
+ "mentor 1 github": "https://github.com/ishaa05",
+ "mentor 1 linkedin": "https://www.linkedin.com/in/isha-bamel-b13916292/",
+ "keyword": "phase1"
+ },
+ {
+ "Project name": "otploginfrontend",
+ "Project description": "web app designed to interact or login with users based upon otp verification from fastapi as backend",
+ "Project link": "https://github.com/OpenTekHub/otploginfrontend",
+ "Project admin": "Harish",
+ "Admin linkedin": "https://www.linkedin.com/in/harish-peddina",
+ "Admin github": "https://github.com/Harish-2003",
+ "Tech stack": "next.js",
+ "mentor 1": "Siddhanth Sakhare",
+ "mentor 1 github": "https://github.com/siddhanth4",
+ "mentor 1 linkedin": "https://www.linkedin.com/in/siddhanth-sakhare-159653257?utm_source=share&utm_campaign=share_via&utm_content=profile&utm_medium=android_app",
+ "keyword": "phase1"
+ },
+ {
+ "Project name": "otp authentication",
+ "Project description": "an otp authentication frontend app built using fastapi and twilo and jwt tokens",
+ "Project link": "https://github.com/Harish-2003/otpauthentication",
+ "Project admin": "Harish",
+ "Admin linkedin": "https://www.linkedin.com/in/harish-peddina",
+ "Admin github": "https://github.com/Harish-2003",
+ "Tech stack": "fastapi",
+ "mentor 1": "Amanpreet Kaur",
+ "mentor 1 github": "https://github.com/amanpreet0kaur",
+ "mentor 1 linkedin": "https://www.linkedin.com/in/amanpreet-kaur-74b345260/",
+ "keyword": "phase1"
+ },
+ {
+ "Project name": "Civix",
+ "Project description": "Civix – Local Civic Issue Reporting App\nDomain: Governance / Public Welfare\n\nCivix is a civic tech solution that empowers citizens to report and track local issues such as potholes, broken lights, and garbage piles. Users can submit reports with images, location data (via map), and descriptions, while also tracking progress as issues move from Open to Resolved. Community-driven upvoting helps prioritize problems that matter most. City workers manage reports through a dedicated admin dashboard.",
+ "Project link": "https://github.com/HarshS16/Civix",
+ "Project admin": "HARSH SRIVASTAVA",
+ "Admin linkedin": "https://www.linkedin.com/in/harsh-srivastava-51b67324a/",
+ "Admin github": "https://github.com/HarshS16",
+ "Tech stack": "🔧 Tech Stack:\n\nFrontend: React, Tailwind CSS, Leaflet.js (Maps)\n\nBackend: Node.js, Express.js, PostgreSQL\n\nImage Upload: Cloudinary\n\nAuth: Role-based (Citizen/Admin)",
+ "mentor 1": "Mohammad Ehshan",
+ "mentor 1 github": "https://github.com/Mohammad-Ehshan",
+ "mentor 1 linkedin": "https://www.linkedin.com/in/mohammad-ehshan-4362a0298/",
+ "keyword": "phase1"
+ },
+ {
+ "Project name": "Advanced Discord Bots - VAISH",
+ "Project description": "VAISH — Ultra-Modern AI Discord Bot Framework is an open-source, next-generation Discord bot solution designed for modern communities, gaming servers, and large-scale deployments. It combines powerful automation, AI-driven features, and complete code ownership — all with zero subscription fees or vendor lock-in. Built using Discord.js v14, Node.js 18+, MongoDB Atlas, Google Gemini AI, and Mongoose, VAISH delivers intelligent conversations, advanced moderation, community rewards, and a beautiful, responsive user interface. The framework offers developer-friendly architecture, scalable database integration, and seamless cloud deployment to platforms like Render, Railway, or private servers.\n\nAs an open-source project, VAISH welcomes contributors to build their own custom bots, develop new AI features, enhance performance, and improve documentation. Our mission is to empower Discord communities with secure, AI-powered automation tools while fostering global collaboration. Developers passionate about Discord, AI, or open-source innovation are invited to join VAISH and help shape the future of intelligent, community-driven Discord bots.",
+ "Project link": "https://github.com/harshendram/Advanced-Discord-Bot",
+ "Project admin": "Harshendra M",
+ "Admin linkedin": "https://www.linkedin.com/in/harshendra-m-2b8bb5299/",
+ "Admin github": "https://github.com/harshendram",
+ "Tech stack": "Full Tech Stack JavaScript, Node.js (v18+), Discord.js (v14) ,MongoDB Atlas, Mongoose, Google Gemini AI, TypeScript (Optional Support), dotenv, ESLint & Prettier, Render, Redis (Planned), Railway / Heroku / VPS (Alternative Deployments), Web Dashboard (Planned)",
+ "mentor 1": "Yash Vishnoi",
+ "mentor 1 github": "https://github.com/yashjscoder",
+ "mentor 1 linkedin": "https://www.linkedin.com/in/yash-vishnoi-22456a291?utm_source=share&utm_campaign=share_via&utm_content=profile&utm_medium=android_app",
+ "mentor 2": "Ayesha Khan",
+ "Mentor 2 linkedin": "https://github.com/fizaayesha",
+ "mentor 2 github": "https://www.linkedin.com/in/ayesha-khan-129434219/",
+ "keyword": "phase1"
+ },
+ {
+ "Project name": "Zip Tales",
+ "Project description": "AI-powered news verification platform that filters misinformation and provides community-verified credibility scores for authentic journalism.",
+ "Project link": "https://github.com/HimanshuHeda/Zip_Tales",
+ "Project admin": "Himanshu Heda",
+ "Admin linkedin": "https://www.linkedin.com/in/himanshu-heda/",
+ "Admin github": "https://github.com/HimanshuHeda",
+ "Tech stack": "Frontend Technology : -- \nReact 18.3.1 , TypeScript 5.5.3 , Tailwind CSS 3.4.1 , Vite 5.4.2 , React Router DOM 6.8.1\n\nBackend & Database : --\nSupabase , Row Level Security (RLS) , Real-time Subscriptions , Blockchain Integration\n\nAI & APIs : --\nGoogle Gemini AI\nNews API\nSerpAPI\n\nDevelopment Tools : --\nESLint\nPostCSS\nLucide React \n\nDeployment Tool : --\nNetlify",
+ "mentor 1": "Samrat Natta",
+ "mentor 1 github": "https://github.com/Samrat25",
+ "mentor 1 linkedin": "https://www.linkedin.com/in/samrat-natta-761574321?utm_source=share&utm_campaign=share_via&utm_content=profile&utm_medium=android_app",
+ "keyword": "phase1"
+ },
+ {
+ "Project name": "Clubverse",
+ "Project description": "Peer-led tech collective working on AI, ML, and open-source projects across \ncolleges. Focused on research collaboration and real-world problem solving.",
+ "Project link": "https://github.com/Club-Syndicate/ClubVerse",
+ "Project admin": "Himanshu Lohokane",
+ "Admin linkedin": "https://www.linkedin.com/in/himanshu-lohokane-6618a8259?utm_source=share&utm_campaign=share_via&utm_content=profile&utm_medium=android_app",
+ "Admin github": "https://github.com/Himanshu-Lohokane",
+ "Tech stack": "MERN, socket.io, Vercel",
+ "mentor 1": "Siddhanth Sakhare",
+ "mentor 1 github": "https://github.com/siddhanth4",
+ "mentor 1 linkedin": "https://www.linkedin.com/in/siddhanth-sakhare-159653257?utm_source=share&utm_campaign=share_via&utm_content=profile&utm_medium=android_app",
+ "keyword": "phase1"
+ },
+ {
+ "Project name": "FrostIQ",
+ "Project description": "FrostIQ is an open-source platform designed to make it easier for users to generate and customize bakery items according to their preferences. The project aims to simplify the process of finding, creating, and sharing bakery recipes and products, allowing users to explore a variety of options and contribute their own creations. By fostering collaboration and contribution, FrostIQ empowers a community of baking enthusiasts and developers to innovate together.",
+ "Project link": "https://github.com/indra7777/frostiq",
+ "Project admin": "Indra Prakash Gottipati",
+ "Admin linkedin": "https://www.linkedin.com/in/indra-prakash-gottipati-6a3b13226",
+ "Admin github": "https://github.com/indra7777",
+ "Tech stack": "Python\n,Django/Flask (or your backend framework)\n,JavaScript (React.js/Vue.js for frontend),\nHTML, CSS,\nSQLite/MySQL (database)\n,Docker (for containerization)\n,Git & GitHub",
+ "mentor 1": "ANURAG SHARMA",
+ "mentor 1 github": "https://github.com/silverballz",
+ "mentor 1 linkedin": "https://www.linkedin.com/in/anurag-sharma-362664240",
+ "keyword": "phase1"
+ },
+ {
+ "Project name": "City Pulse",
+ "Project description": "City Pulse is a sleek, real-time dashboard built with **Streamlit** that provides everything you need to know about any city — from live weather updates and air quality to crime news, tourist recommendations, Google Trends analysis, and even an AI-powered chatbot that lets you search through Google.",
+ "Project link": "https://github.com/Jotthecode/CITY-PULSE",
+ "Project admin": "Jot Ajmani",
+ "Admin linkedin": "https://www.linkedin.com/in/jot-ajmani-b9154b217?utm_source=share&utm_campaign=share_via&utm_content=profile&utm_medium=android_app",
+ "Admin github": "https://github.com/Jotthecode",
+ "Tech stack": "**Frontend**: Streamlit\n- **Backend/APIs**:\n - [OpenWeatherMap API](https://openweathermap.org/api) for Weather and AQI\n - [Google Places API](https://developers.google.com/maps/documentation/places/web-service/overview)\n - [Google Trends via Pytrends](https://github.com/GeneralMills/pytrends)\n - News API for crime-related news\n - Custom chatbot using Google Search integration\n- **Others**: Pandas, Requests, Python, HTML/CSS (via Streamlit components)",
+ "mentor 1": "Shivam Gupta",
+ "mentor 1 github": "https://share.google/yjpbY7TkrsZQVBURU",
+ "mentor 1 linkedin": "https://www.linkedin.com/in/shivam-gupta-8a2a781b0?utm_source=share&utm_campaign=share_via&utm_content=profile&utm_medium=android_app",
+ "keyword": "phase1"
+ },
+ {
+ "Project name": "HealthVault",
+ "Project description": "HealthVault is a secure and efficient medical record management platform designed to provide quick access to health data while maintaining encrypted privacy. By integrating an AI-powered chatbot, it enhances user experience by offering smart recommendations on home remedies and health-related queries. This platform is tailored for individuals, caregivers, and healthcare professionals who need seamless access to medical records, ensuring better self-care and informed decision-making.",
+ "Project link": "https://github.com/Priyanka-28-BM/HealthVault",
+ "Project admin": "K N Meghana",
+ "Admin linkedin": "https://www.linkedin.com/in/meghanakn473",
+ "Admin github": "https://github.com/meghanakn473",
+ "Tech stack": "React js Node.js Supabase",
+ "mentor 1": "Aryan Jain",
+ "mentor 1 github": "https://github.com/jainaryan04",
+ "mentor 1 linkedin": "https://www.linkedin.com/in/jainaryan04",
+ "mentor 2": "D Darshan",
+ "Mentor 2 linkedin": "https://www.linkedin.com/in/d-darshan-36077327a",
+ "mentor 2 github": "https://github.com/Darshan0244",
+ "keyword": "phase1"
+ },
+ {
+ "Project name": "CodeArena",
+ "Project description": "CodeArena is a cutting-edge, AI-powered ecosystem architected with a microservices-based MERN stack, combining Dockerized online judging, AI-integrated collaboration tools, and smart career utilities. With intelligent workflows powered by n8n and Relevance AI, CodeArena is more than a platform- it's your real-time coding and career companion.",
+ "Project link": "https://github.com/kanikaa-3018/contest_onlinejudge",
+ "Project admin": "Kanika Singhal",
+ "Admin linkedin": "https://www.linkedin.com/in/kanika-singhal-93388428b",
+ "Admin github": "https://github.com/kanikaa-3018",
+ "Tech stack": "MERN, Websockets, n8n, Relevance AI, Gemini AI, Open AI, Python, TailwindCSS, Javacript, Docker, AWS(EC2 , ECR)",
+ "mentor 1": "Avansh Yadav",
+ "mentor 1 github": "https://github.com/Avansh2006",
+ "mentor 1 linkedin": "https://www.linkedin.com/in/avanshyadav/",
+ "keyword": "phase1"
+ },
+ {
+ "Project name": "Real-Time Disaster Dashboard",
+ "Project description": "A real-time disaster management dashboard that fetches and displays live disaster data from APIs like NASA and NDMA. It helps authorities and the public stay informed through alerts, analytics, and visualizations.",
+ "Project link": "https://github.com/Himanshi150/real-time-daister-project",
+ "Project admin": "Kanzariya Himanshi Bharatbhai",
+ "Admin linkedin": "https://www.linkedin.com/in/himanshi -kanzariya-0?",
+ "Admin github": "https://github.com/Himanshi150",
+ "Tech stack": "FastAPI, Python, Streamlit, JavaScript, HTML, CSS, NASA API, NDMA API",
+ "mentor 1": "Diksha",
+ "mentor 1 github": "https://github.com/din-arr",
+ "mentor 1 linkedin": "https://www.linkedin.com/in/diksha-sharma-ba98312a5?utm_source=share&utm_campaign=share_via&utm_content=profile&utm_medium=android_app",
+ "mentor 2": "Samrat Natta",
+ "Mentor 2 linkedin": "https://www.linkedin.com/in/samrat-natta-761574321?utm_source=share&utm_campaign=share_via&utm_content=profile&utm_medium=android_app",
+ "mentor 2 github": "https://github.com/Samrat25",
+ "keyword": "phase1"
+ },
+ {
+ "Project name": "VisionMate",
+ "Project description": "VisionMate is a smart assistive solution designed to support visually impaired people in navigating their surroundings more independently. It uses computer vision and speech technologies to identify objects, read text, and give real time voice feedback through a user friendly interface. I have uploaded the initial code and concept to GitHub to give an idea of the project’s vision, but not the full implementation yet. The project is currently in the development phase, with plans to expand its capabilities to include environment detection and safe navigation features.",
+ "Project link": "https://www.github.com/kaushav07/VisionMate",
+ "Project admin": "Kaushav",
+ "Admin linkedin": "https://www.linkedin.com/in/kaushav-kumar-2324ab247",
+ "Admin github": "https://www.github.com/kaushav07",
+ "Tech stack": "Python, OpenCV, Flask/Django, Flutter, MySQL, Google Cloud Vision API, Text to Speech / Speech to Text APIs",
+ "mentor 1": "Amisha Kumari",
+ "mentor 1 github": "https://github.com/AMISHA2004-devgeek",
+ "mentor 1 linkedin": "https://www.linkedin.com/in/amisha-kumari-351ab9274/",
+ "keyword": "phase1"
+ },
+ {
+ "Project name": "Zylar's World",
+ "Project description": "Zylar’s World is a 3D educational RPG that introduces players to philosophy through immersive gamification. Players take on the role of Zylar, an alien who escapes the monotony of its home world and crash-lands on Earth, only to be captured by humans for scientific study. Perceiving the humans as the true “aliens,” Zylar feels isolated and overwhelmed, eventually slipping into a deep slumber. Within this dream world, a mysterious alien goddess guides Zylar through five distinct philosophical eras—each presenting a unique challenge. As Zylar overcomes these trials, it gains insight into the human condition and the enduring questions of existence.",
+ "Project link": "https://github.com/algorathem/philosophical-rpg",
+ "Project admin": "Kc",
+ "Admin linkedin": "https://www.linkedin.com/in/kye-cin-leck?utm_source=share&utm_campaign=share_via&utm_content=profile&utm_medium=android_app",
+ "Admin github": "https://github.com/algorathem",
+ "Tech stack": "unity (core engine), yarnspinner for unity (narrative system), blender (3d modelling), humeai (preparing voiceover assets)",
+ "mentor 1": "Krish Chothani",
+ "mentor 1 github": "https://github.com/KrishChothani",
+ "mentor 1 linkedin": "https://www.linkedin.com/in/krish-chothani-797598284",
+ "keyword": "phase1"
+ },
+ {
+ "Project name": "foodBridge",
+ "Project description": "Its a food Donation website",
+ "Project link": "https://github.com/Khushbudaswani/Foodbridge.git",
+ "Project admin": "Khushbu Daswani",
+ "Admin linkedin": "https://www.linkedin.com/in/khushbu-daswani-6a420b301",
+ "Admin github": "https://github.com/Khushbudaswani",
+ "Tech stack": "python django dbsqlite",
+ "mentor 1": "Talluri Varun",
+ "mentor 1 github": "https://github.com/TalVar-DataScience",
+ "mentor 1 linkedin": "https://www.linkedin.com/in/talluri-varun-baaa0b236",
+ "keyword": "phase1"
+ },
+ {
+ "Project name": "DreamJobs-Job Portal",
+ "Project description": "this project aims to bridge the gap between job seekers and employers",
+ "Project link": "https://github.com/Khushi-Nigam/jobportal",
+ "Project admin": "Khushi Nigam",
+ "Admin linkedin": "https://www.linkedin.com/in/khushinigam7?utm_source=share&utm_campaign=share_via&utm_content=profile&utm_medium=android_app",
+ "Admin github": "https://github.com/Khushi-Nigam",
+ "Tech stack": "HTML CSS JS PYTHON Django",
+ "mentor 1": "Soaeb",
+ "mentor 1 github": "https://github.com/soaebhasan12",
+ "mentor 1 linkedin": "https://www.linkedin.com/in/shoaib-ahmad-789827360?utm_source=share&utm_campaign=share_via&utm_content=profile&utm_medium=android_app",
+ "keyword": "phase1"
+ },
+ {
+ "Project name": "one- stop- guide",
+ "Project description": "Explore city guide and Radme details hai",
+ "Project link": "https://github.com/komalkhatod1105/One-Stop-Guide",
+ "Project admin": "Komal Khatod",
+ "Admin linkedin": "linkedin.com/in/komalkhatod",
+ "Admin github": "github.com/komalkhatod",
+ "Tech stack": "Full stack developer",
+ "mentor 1": "Sandesh Shinde",
+ "mentor 1 github": "https://github.com/Molza01",
+ "mentor 1 linkedin": "https://www.linkedin.com/in/sandesh-shinde-0255592a2?utm_source=share&utm_campaign=share_via&utm_content=profile&utm_medium=android_app",
+ "keyword": "phase1"
+ },
+ {
+ "Project name": "TCM Website - Open Source",
+ "Project description": "A student led literary magazine showcasing youth voices. This open source project aims to improve the website’s design, features, and performance while offering contributors real-world experience in web development and digital publishing",
+ "Project link": "https://github.com/Kritika75/TheCawnporeMag.github.io",
+ "Project admin": "Kritika Singh",
+ "Admin linkedin": "https://www.linkedin.com/in/kritika-singh-214602288/",
+ "Admin github": "https://github.com/Kritika75",
+ "Tech stack": "HTML, CSS, JavaScript",
+ "mentor 1": "Supriya bhattacharjee",
+ "mentor 1 github": "https://github.com/Supriya5784",
+ "mentor 1 linkedin": "https://www.linkedin.com/in/supriya-bhattacharjee-257a25291/",
+ "keyword": "phase1"
+ },
+ {
+ "Project name": "Amour Editorial Website",
+ "Project description": "A website for amour editorial which focuses on helping students go abroad with their documentations such as personalized SOP, LOR and scholarship essays to get their admission. As well as one on one counselling to help them achieve their study abroad dreams!",
+ "Project link": "https://github.com/lolpanda2004/Amour-Editorial-Website.git",
+ "Project admin": "Lathika",
+ "Admin linkedin": "https://www.linkedin.com/in/lathika-devanand-bb5813224",
+ "Admin github": "https://github.com/lolpanda2004",
+ "Tech stack": "Html, css, js, React",
+ "mentor 1": "Ankit Mourya",
+ "mentor 1 github": "https://github.com/AnkitMourya12",
+ "mentor 1 linkedin": "https://www.linkedin.com/in/ankit-mourya-821aa223b/",
+ "keyword": "phase1"
+ },
+ {
+ "Project name": "Rohit YouTube Advocate chatbot",
+ "Project description": "The Rohit YouTube Advocate AI Chatbot is an intelligent assistant designed for YouTubers. It helps creators understand content guidelines, copyright issues, strikes, and monetization policies. The chatbot instantly answers questions, offers decision support, and provides clear guidance on avoiding violations. It also suggests best practices for growing channels and resolving disputes, empowering YouTubers to create confidently and stay compliant.",
+ "Project link": "https://github.com/mpawank/Rohit-Youtube-Advocate-AiBot",
+ "Project admin": "Magapalli Pawan Kumar",
+ "Admin linkedin": "https://www.linkedin.com/in/m-pawan-kumar?utm_source=share&utm_campaign=share_via&utm_content=profile&utm_medium=android_app",
+ "Admin github": "https://github.com/mpawank",
+ "Tech stack": "Html, css, javascript,Flask api , Deepseek r1 model, vector database and rag pipelines.",
+ "mentor 1": "Prabhat Yadav",
+ "mentor 1 github": "https://github.com/Prabhatyadav60",
+ "mentor 1 linkedin": "https://www.linkedin.com/in/prabhat-yadav-404b7727a/",
+ "keyword": "phase1"
+ },
+ {
+ "Project name": "AlgoLab-Learn Ml algos Visually",
+ "Project description": "AlgoLab is an open-source project built to help students, developers, and enthusiasts understand Machine Learning algorithms through visual and interactive demonstrations. Whether you're a beginner curious about how KNN or Decision Trees work, or someone who learns better by seeing algorithms in action, AlgoLab is for you.",
+ "Project link": "https://github.com/manasvi-0/AlgoLab",
+ "Project admin": "Manasvi Jindal",
+ "Admin linkedin": "https://www.linkedin.com/in/manasvi-jindal-03aa6a278/",
+ "Admin github": "https://www.github.com/manasvi-0",
+ "Tech stack": "fastapi uvicorn scikit-learn pandas numpy matplotlib seaborn python",
+ "mentor 1": "Vivek Kumar Garg",
+ "mentor 1 github": "https://github.com/viv2005ek",
+ "mentor 1 linkedin": "https://www.linkedin.com/in/vivek-kumar-garg-097677280/",
+ "keyword": "phase1"
+ },
+ {
+ "Project name": "QuickStay",
+ "Project description": "QuickStay is a hotel booking web application built using the MERN Stack (MongoDB, Express.js, React.js, Node.js). It features user authentication with Clerk, image storage via Cloudinary, and real-time notifications using Toast. The app offers a seamless experience for users to search, book, and manage hotel stays, with both frontend and backend integration deployed for scalability.",
+ "Project link": "https://github.com/manishkumar8312/Hotel-Booking",
+ "Project admin": "Manish Kumar Sah",
+ "Admin linkedin": "https://www.linkedin.com/manish8312",
+ "Admin github": "https://github.com/manishkumar8312",
+ "Tech stack": "MERN Stack, Clerk, Cloudinary",
+ "mentor 1": "Mrunal Mehar",
+ "mentor 1 github": "https://github.com/Mrunalx863",
+ "mentor 1 linkedin": "https://www.linkedin.com/in/mrunalx863/",
+ "keyword": "phase1"
+ },
+ {
+ "Project name": "LetsDoDsaTogether",
+ "Project description": "LetsDoDSATogether is a clean, community-powered DSA learning platform where learners can connect through Discord, explore curated resources, and solve problems collaboratively. It's designed to make learning DSA less isolating and more empowering — together, not alone.",
+ "Project link": "https://github.com/Vaishnavi-Manne/LetsDoDsaTogether",
+ "Project admin": "Manne vaishnavi",
+ "Admin linkedin": "https://wwww.linkedin.com/in/manne-vaishnavi",
+ "Admin github": "https://github.com/Vaishnavi-Manne",
+ "Tech stack": "React, tailwind css",
+ "mentor 1": "Nikhil Deshmukh",
+ "mentor 1 github": "https://www.linkedin.com/in/nikhil-d-deshmukh/",
+ "mentor 1 linkedin": "https://github.com/nikhildeshmukh170",
+ "mentor 2": "Nouman khan",
+ "Mentor 2 linkedin": "https://www.linkedin.com/in/nouman-khan-95923a256/",
+ "mentor 2 github": "https://github.com/NoumanKhan2003",
+ "keyword": "phase1"
+ },
+ {
+ "Project name": "FailUForward",
+ "Project description": "FailUForward is a community driven platform where users share their biggest failures and the lessons they learned. Using AI, it curates and tags stories, highlights common themes and recommends relatable experiences to help users grow through others’ mistakes. It encourages vulnerability, resilience and real talk like turning failure into fuel. Users mint their failure story as an NFT or anonymous soulbound badge to own their growth journey.",
+ "Project link": "https://github.com/mansiruhil/fail-u-forward",
+ "Project admin": "mansi ruhil",
+ "Admin linkedin": "https://www.linkedin.com/in/mansi-ruhil-7a00a0228",
+ "Admin github": "https://github.com/mansiruhil",
+ "Tech stack": "Frontend: Next.js, TypeScript\n .. Backend: Next.js (API Routes)\n.. Database: Firebase (Firestore + Auth)\n.. AI Validation: Gemini API",
+ "mentor 1": "Ankit modanwal",
+ "mentor 1 github": "https://github.com/ankitmodanwall",
+ "mentor 1 linkedin": "https://www.linkedin.com/in/ankit-modanwal?utm_source=share&utm_campaign=share_via&utm_content=profile&utm_medium=android_app",
+ "mentor 2": "Linuka Arambawela",
+ "Mentor 2 linkedin": "https://www.linkedin.com/in/linuka-arambawela",
+ "mentor 2 github": "https://github.com/LinukaAr",
+ "keyword": "phase1"
+ },
+ {
+ "Project name": "Wanderlust",
+ "Project description": "A full stack project using CRUD operations",
+ "Project link": "https://github.com/meenakshi-011/Wanderlust",
+ "Project admin": "Meenakshi Patel",
+ "Admin linkedin": "https://www.linkedin.com/in/meenakshi-patel-7429b4308?",
+ "Admin github": "https://github.com/meenakshi-011",
+ "Tech stack": "Frontend - HTML , CSS, JavaScript, Backend -Nodejs, express js , databse - Mongodb",
+ "mentor 1": "Vishnu teli",
+ "mentor 1 github": "https://github.com/vishnusindhal",
+ "mentor 1 linkedin": "https://www.linkedin.com/in/vishnu-teli-746569327/",
+ "keyword": "phase1"
+ },
+ {
+ "Project name": "Recipedia",
+ "Project description": "Recipedia, a recipe management app using MongoDB, Express.js, React.js, and Node.js. It allows users to explore, save, and share recipes with a seamless UI. Implemented user authentication, search functionality, and RESTful APIs for smooth data handling. Optimized performance with Redux for state management and cloud storage for media.",
+ "Project link": "https://github.com/MeghanaDG04/Recipedia.git",
+ "Project admin": "Meghana Gaonkar",
+ "Admin linkedin": "https://www.linkedin.com/in/meghana-gaonkar-415653282/",
+ "Admin github": "https://github.com/MeghanaDG04",
+ "Tech stack": "MERN Stack",
+ "mentor 1": "Arish Singh",
+ "mentor 1 github": "https://github.com/dashboard",
+ "mentor 1 linkedin": "http://www.linkedin.com/in/arish-singh-63a5b732a",
+ "keyword": "phase1"
+ },
+ {
+ "Project name": "student portal",
+ "Project description": "A modern, responsive student management system built with React, TypeScript, and Tailwind CSS. This application provides a comprehensive platform for students to manage their academic journey with features like authentication, user directory, and dashboard analytics.",
+ "Project link": "https://github.com/mehak-ui/Student-Portal",
+ "Project admin": "Mehak",
+ "Admin linkedin": "https://www.linkedin.com/in/mehak-chauhan-591a72291?utm_source=share&utm_campaign=share_via&utm_content=profile&utm_medium=android_app",
+ "Admin github": "https://github.com/mehak-ui",
+ "Tech stack": "Frontend Framework: React 18 with TypeScript\nStyling: Tailwind CSS\nRouting: React Router DOM v6",
+ "mentor 1": "Abhishek Kumar",
+ "mentor 1 github": "https://github.com/abhishekraoas",
+ "mentor 1 linkedin": "https://linkedin.com/in/abhishekraoas",
+ "keyword": "phase1"
+ },
+ {
+ "Project name": "Github Tracker",
+ "Project description": "Tracks activity of guthub user",
+ "Project link": "https://github.com/mehul-m-prajapati/github_tracker",
+ "Project admin": "Mehul P",
+ "Admin linkedin": "https://linkedin.com/in/mehulmp",
+ "Admin github": "https://github.com/mehul-m-prajapati",
+ "Tech stack": "React,Nodejs,Express,MongoDb,Tailwindcss",
+ "mentor 1": "Dipayan Ghosh",
+ "mentor 1 github": "https://www.linkedin.com/in/dipayan-ghosh-coder",
+ "mentor 1 linkedin": "https://github.com/Dip-1432",
+ "mentor 2": "Krishna Sen",
+ "Mentor 2 linkedin": "https://www.linkedin.com/in/krishna-sen-5bb829304/",
+ "mentor 2 github": "github.com/KrishnaSen01",
+ "mentor 3": "Bhoomy Singh",
+ "mentor 3 linkedin": "linkedin.com/in/bhoomy-singh-a56227267/",
+ "mentor 3 github": "https://github.com/Bhoomysingh10",
+ "keyword": "phase1"
+ },
+ {
+ "Project name": "Notes-Aid",
+ "Project description": "A modern platform to access academic notes with embedded YouTube videos and PDFs for better learning!",
+ "Project link": "https://github.com/MinavKaria/Notes-Aid",
+ "Project admin": "Minav",
+ "Admin linkedin": "https://www.linkedin.com/in/minav-karia",
+ "Admin github": "https://github.com/MinavKaria",
+ "Tech stack": "Nextjs,Reactjs",
+ "mentor 1": "Sumit Kesarwani",
+ "mentor 1 github": "https://github.com/Sumit6307",
+ "mentor 1 linkedin": "https://www.linkedin.com/in/sumit-kesarwani-35b63a286",
+ "keyword": "phase1"
+ },
+ {
+ "Project name": "CoffeeShop",
+ "Project description": "MsCafe was founded with a simple mission: to serve the best coffee in town. Our passion for quality beans and expert brewing techniques has made us a favorite among coffee enthusiasts. We source our beans from sustainable farms around the world, ensuring that every cup of coffee you enjoy is not only delicious but also ethically produced.",
+ "Project link": "https://github.com/Mujtabaa07/coffeeShop",
+ "Project admin": "Mohamed Mujtaba",
+ "Admin linkedin": "https://www.linkedin.com/in/mohamed-mujtaba",
+ "Admin github": "https://github.com/Mujtabaa07",
+ "Tech stack": "React.js , TailwindCss, HTML CSS, Javascript",
+ "mentor 1": "Harsh verma",
+ "mentor 1 github": "https://github.com/Harsh-verma24",
+ "mentor 1 linkedin": "https://www.linkedin.com/in/harsh-verma-68115a326",
+ "keyword": "phase1"
+ },
+ {
+ "Project name": "Placify : \"Smarter Placements. Sharper Talent.\"",
+ "Project description": "Placify is an AI-driven recruitment and skill-assessment platform designed to transform campus placements and early-career hiring. It streamlines over 60–70% of the traditional recruitment process by automating resume screening, conducting adaptive assessments, and generating actionable feedback for students, colleges, and companies.\n\nPlacify serves three primary stakeholders — students, colleges, and recruiters — by bridging the gap between industry expectations and candidate readiness.",
+ "Project link": "https://github.com/MonishRaman/Placify-Smarter-Placements.-Sharper-Talent.-.git",
+ "Project admin": "Monish Raman",
+ "Admin linkedin": "www.linkedin.com/in/monishr608",
+ "Admin github": "https://github.com/MonishRaman",
+ "Tech stack": "Frontend: React.js + Tailwind CSS\nBackend API : Node.js + Express\nML Service : Python + Flask / FastAPI , OpenAI / HuggingFace Transformers , spaCy / NLTK \nDatabase : MongoDB\nDeployment : Netlify + Render/Railway\nAuth & Security : JWT, Helmet.js\nCharts & Reports : Recharts / Chart.js",
+ "mentor 1": "Shivam Prasad Singh",
+ "mentor 1 github": "https://github.com/shivhere007",
+ "mentor 1 linkedin": "http://www.linkedin.com/in/iamshiv07",
+ "mentor 2": "Kanishka Tyagi",
+ "Mentor 2 linkedin": "kanishka Tyagi",
+ "keyword": "phase1"
+ },
+ {
+ "Project name": "DocMagic",
+ "Project description": "DocMagic is an AI-powered document creation platform that transforms simple text prompts into professional documents. Create stunning resumes, presentations, CVs, and letters with the power of AI.",
+ "Project link": "https://www.github.com/Muneerali199/DocMagic",
+ "Project admin": "Muneer Ali",
+ "Admin linkedin": "https://www.linkedin.com/in/muneer-ali",
+ "Admin github": "https://www.github.com/Muneerali199",
+ "Tech stack": "nextjs,supabase with postresql,gemini 2.0 flash etc",
+ "mentor 1": "Yash Kumar Saini",
+ "mentor 1 github": "https://github.com/yashksaini-coder",
+ "mentor 1 linkedin": "https://www.linkedin.com/in/yashksaini/",
+ "keyword": "phase1"
+ },
+ {
+ "Project name": "Eco finder",
+ "Project description": "Eco Career Finder is a full-stack web app that helps students and job seekers discover eco-friendly jobs, internships, and career guidance. It includes login/signup with Firebase, an easy-to-use dashboard, and a feedback system for user input.",
+ "Project link": "https://github.com/lohithya143/Eco-Finder-App",
+ "Project admin": "Nagidi Lohithya",
+ "Admin linkedin": "https://www.linkedin.com/in/lohithya?utm_source=share&utm_campaign=share_via&utm_content=profile&utm_medium=android_app",
+ "Admin github": "https://github.com/lohithya143",
+ "Tech stack": "javascript",
+ "mentor 1": "Ankit Pal",
+ "mentor 1 github": "https://github.com/Ankit0101705",
+ "mentor 1 linkedin": "https://www.linkedin.com/in/ankit-pal-a7755930a?utm_source=share&utm_campaign=share_via&utm_content=profile&utm_medium=android_app",
+ "keyword": "phase1"
+ },
+ {
+ "Project name": "Housify",
+ "Project description": "Housify is a full-stack property rental web application where users can list, search, and book properties. It features secure session-based authentication, dynamic filtering (by location, price, and guest count), and supports CRUD operations for listings, bookings, and reviews. Built with Node.js, Express, MongoDB, and MySQL, Housify uses RESTful APIs and a responsive, SEO-friendly UI powered by EJS and Tailwind CSS. Relational data is structured using MySQL schemas for users, properties, and reservations",
+ "Project link": "https://github.com/Naveenkumar30838/Housify",
+ "Project admin": "Naveen Kumar",
+ "Admin linkedin": "https://www.linkedin.com/in/naveen-kumar-7a4566223",
+ "Admin github": "https://github.com/Naveenkumar30838/",
+ "Tech stack": "Node. js, Express. js, mongodb, mysql, ejs tailwindcss",
+ "mentor 1": "Yash Kumar Saini",
+ "mentor 1 github": "https://github.com/yashksaini-coder",
+ "mentor 1 linkedin": "https://www.linkedin.com/in/yashksaini/",
+ "keyword": "phase1"
+ },
+ {
+ "Project name": "Shopiko- E commerce website",
+ "Project description": "Its an ecommerce website that have different features login,signup as a buyer or seller . You can add product to cart and checkout them .",
+ "Project link": "https://github.com/Neha-Singh-j/shopiko",
+ "Project admin": "Neha Singh",
+ "Admin linkedin": "https://www.linkedin.com/in/neha-singh-4952992a7",
+ "Admin github": "https://github.com/Neha-Singh-j",
+ "Tech stack": "MERN",
+ "mentor 1": "Himanshu Gupta",
+ "mentor 1 github": "https://github.com/himanshu560hi",
+ "mentor 1 linkedin": "https://www.linkedin.com/in/himanshu561hi?utm_source=share&utm_campaign=share_via&utm_content=profile&utm_medium=android_app",
+ "keyword": "phase1"
+ },
+ {
+ "Project name": "facial recognition attendance system",
+ "Project description": "The Facial Recognition System is a smart AI-powered solution that uses real-time computer vision and machine learning to identify or verify a person from a digital image or video. It combines OpenCV for image processing, Hugging Face for advanced AI models, and Glitch for an interactive, cloud-based user interface",
+ "Project link": "https://github.com/Nisha229/ttwitter-sentiment-analysis-",
+ "Project admin": "Nisha",
+ "Admin linkedin": "https://www.linkedin.com/in/nisha-kanojia-ba7441264?utm_source=share&utm_campaign=share_via&utm_content=profile&utm_medium=android_app",
+ "Admin github": "https://github.com/nisha131",
+ "Tech stack": "OpenCV\nUsed for real-time face detection and image processing from webcam input.\n\nHugging Face\nUtilized pre-trained models for facial recognition and identity verification.\n\nGlitch\nHosted the frontend of the application and connected it to the backend.\n\nHTML, CSS, JavaScript\nBuilt the web interface, handled webcam access, and managed user interactions.",
+ "mentor 1": "Rithvik",
+ "mentor 1 github": "https://github.com/Rithvik1709",
+ "mentor 1 linkedin": "https://www.linkedin.com/in/rithvik1709",
+ "mentor 2": "Kanishka Tyagi",
+ "Mentor 2 linkedin": "Kanishka Tyagi",
+ "keyword": "phase1"
+ },
+ {
+ "Project name": "W3nity",
+ "Project description": "W3nity is a unified, Web3-enabled collaboration platform that brings together:\n\nFreelancing Marketplace, Event Management, & Real-Time Community Chat.\nW3nity lets startups, developers, and communities connect, collaborate, and transact seamlessly — on-chain or off-chain.",
+ "Project link": "https://github.com/nishantharkut/W3nity",
+ "Project admin": "Nishant Harkut",
+ "Admin linkedin": "https://www.linkedin.com/in/nishant-harkut",
+ "Admin github": "https://github.com/nishantharkut",
+ "Tech stack": "React, Vite, Tailwind CSS, Framer Motion, Node.js, Express, MongoDB, Mongoose, Socket.IO, Solidity & Hardhat (local/testnet), Alchemy, Ethers.js, MetaMask, Cloudinary, Vercel, Render",
+ "mentor 1": "Rithvik",
+ "mentor 1 github": "https://github.com/Rithvik1709",
+ "mentor 1 linkedin": "https://www.linkedin.com/in/rithvik1709",
+ "keyword": "phase1"
+ },
+ {
+ "Project name": "HR Roadways",
+ "Project description": "this is the project in which we are adding govt buses info (haryana one is added) of all the stated of india so that it will be easier to travel with public transportation, and it will also help to save the environment.",
+ "Project link": "https://github.com/NishantRana07/HrRoadways",
+ "Project admin": "Nishant Rana",
+ "Admin linkedin": "https://www.linkedin.com/in/nishantrana07?utm_source=share&utm_campaign=share_via&utm_content=profile&utm_medium=android_app",
+ "Admin github": "https://github.com/NishantRana07",
+ "Tech stack": "React + Vite + MongoDB",
+ "mentor 1": "Srinjay Panja",
+ "mentor 1 github": "https://github.com/Bucke200",
+ "mentor 1 linkedin": "https://www.linkedin.com/in/srinjaypanja",
+ "mentor 2": "Sushil Kumar kushwaha",
+ "Mentor 2 linkedin": "https://github.com/CodewithsushilOfficial",
+ "mentor 2 github": "https://www.linkedin.com/in/sushil-kumar-kushwaha-codewithsushil/",
+ "mentor 3": "Krish Chothani",
+ "mentor 3 linkedin": "https://www.linkedin.com/in/krish-chothani-797598284/",
+ "mentor 3 github": "https://github.com/KrishChothani",
+ "keyword": "phase1"
+ },
+ {
+ "Project name": "AgriTech",
+ "Project description": "AgriTech is an AI-powered web platform that offers crop recommendations, yield prediction, disease detection, and collaborative tools to empower farmers and promote smart, sustainable agriculture.",
+ "Project link": "https://github.com/omroy07/AgriTech",
+ "Project admin": "Om Roy",
+ "Admin linkedin": "https://www.linkedin.com/in/om-roy-3b809628a/",
+ "Admin github": "https://github.com/omroy07",
+ "Tech stack": "Flask, Python ,HTML , CSS, JS",
+ "mentor 1": "Anshika Singh",
+ "mentor 1 github": "https://github.com/Anshika09Singh",
+ "mentor 1 linkedin": "https://www.linkedin.com/in/anshika-singh-031b132a5?utm_source=share&utm_campaign=share_via&utm_content=profile&utm_medium=android_app",
+ "mentor 2": "Mehrin Fathima Shamim",
+ "Mentor 2 linkedin": "https://www.linkedin.com/in/mehrinfathimashamim",
+ "mentor 2 github": "https://github.com/mehrinshamim",
+ "keyword": "phase1"
+ },
+ {
+ "Project name": "Ai interview practice platform",
+ "Project description": "A comprehensive interview preparation platform that combines advanced AI evaluation, real-time face monitoring, and structured learning paths to help you ace your technical and behavioral interviews.",
+ "Project link": "https://github.com/byteom/Interview01",
+ "Project admin": "Om singh",
+ "Admin linkedin": "https://www.linkedin.com/in/byteom",
+ "Admin github": "https://github.com/byteom",
+ "Tech stack": "react, typescript, tailwind, supabase, express, node, ai, groq ai",
+ "mentor 1": "Dinar",
+ "mentor 1 github": "https://github.com/din-arr",
+ "mentor 1 linkedin": "https://www.linkedin.com/in/dinar-374659356",
+ "keyword": "phase1"
+ },
+ {
+ "Project name": "TuneCrate",
+ "Project description": "A beautiful, dark-themed Chrome extension for playing music files with flowing UI effects and comprehensive audio controls.",
+ "Project link": "https://github.com/Anjaliavv51/TuneCrate",
+ "Project admin": "Pamidi Lakshmi Pavananjali",
+ "Admin linkedin": "https://www.linkedin.com/in/lakshmi-pavananjali-pamidi-766760296",
+ "Admin github": "https://github.com/Anjaliavv51",
+ "Tech stack": "HTML JS TS CSS",
+ "mentor 1": "Srijan Prasad",
+ "mentor 1 github": "https://github.com/Srijanprasad",
+ "mentor 1 linkedin": "https://www.linkedin.com/in/srijan-prasad-",
+ "keyword": "phase1"
+ },
+ {
+ "Project name": "EmailScript",
+ "Project description": "This project aims to develop a system that detects and blocks temporary or disposable email addresses in real time, helping websites and applications reduce spam, protect data integrity, and enhance user authentication.",
+ "Project link": "https://www.github.com/EmailScript/EmailScript",
+ "Project admin": "Pankaj Kumar Bind",
+ "Admin linkedin": "https://www.linkedin.com/in/pankaj-bind",
+ "Admin github": "https://www.github.com/EmailScript/EmailScript",
+ "Tech stack": "HTML, CSS, JavaScript, Python, Flask",
+ "mentor 1": "Rishabh Dhawad",
+ "mentor 1 github": "https://github.com/RishabhDhawad",
+ "mentor 1 linkedin": "https://www.linkedin.com/in/rishabhdhawad/",
+ "keyword": "phase1"
+ },
+ {
+ "Project name": "WallGodds Web",
+ "Project description": "WallGodds is a open-source wallpaper platform tailored for individuals who love to personalize their devices. Whether you're looking for the perfect wallpaper for your mobile, tablet, or desktop, or you're a designer wanting to share your creativity with the world, WallGodds has you covered.",
+ "Project link": "https://github.com/Parnab03/WallGodds",
+ "Project admin": "Parnab Bagchi",
+ "Admin linkedin": "https://www.linkedin.com/in/parnab-bagchi-072966251/",
+ "Admin github": "https://github.com/Parnab03",
+ "Tech stack": "MERN, Firebase RDB",
+ "mentor 1": "Soumik Ghosh",
+ "mentor 1 github": "https://github.com/SoumikGhosh9",
+ "mentor 1 linkedin": "https://www.linkedin.com/in/soumik-ghosh-556651258",
+ "mentor 2": "Shankhadeep Paria",
+ "Mentor 2 linkedin": "https://github.com/Shankha2003",
+ "mentor 2 github": "https://www.linkedin.com/in/shankhadeepparia/",
+ "keyword": "phase1"
+ },
+ {
+ "Project name": "Project Vault",
+ "Project description": "Project Vault is a website containing different tech stack projects in one place with live working",
+ "Project link": "https://github.com/pavitraag/Project-Vault",
+ "Project admin": "Pavitraa G",
+ "Admin linkedin": "https://www.linkedin.com/in/pavitraa-g/",
+ "Admin github": "https://github.com/pavitraag",
+ "Tech stack": "HTML, CSS, Javascript",
+ "mentor 1": "Charvi Wadhwa",
+ "mentor 1 github": "https://www.linkedin.com/in/charvi-wadhwa-23b565291/",
+ "mentor 1 linkedin": "https://github.com/charrviwadhwa",
+ "mentor 2": "Isha Patel",
+ "Mentor 2 linkedin": "https://github.com/candy1227",
+ "mentor 2 github": "https://www.linkedin.com/in/isha-patel-6899192ab?utm_source=share&utm_campaign=share_via&utm_content=profile&utm_medium=android_app",
+ "mentor 3": "Jitendra Rajput",
+ "mentor 3 linkedin": "https://www.linkedin.com/in/jitendra-rajputt/",
+ "mentor 3 github": "https://github.com/Jitendrarajputt",
+ "keyword": "phase1"
+ },
+ {
+ "Project name": "SimplifAI",
+ "Project description": "AI-Powered Learning Platform\nTransform your documents into flashcards, summaries, and quizzes with cutting-edge AI.",
+ "Project link": "https://github.com/Er-luffy-D/SimplifAI",
+ "Project admin": "Piyush",
+ "Admin linkedin": "https://www.linkedin.com/in/piyushdixitizme",
+ "Admin github": "https://github.com/Er-luffy-D",
+ "Tech stack": "Frontend: Next.js 14, React, Tailwind CSS, Redux Toolkit\nAuth: NextAuth.js (Credentials & Google)\nAI Backend: DeepSeek/OpenRouter API for document parsing and generation\nDatabase: PostgreSQL with Prisma ORM",
+ "mentor 1": "Yash Kumar Saini",
+ "mentor 1 github": "https://github.com/yashksaini-coder",
+ "mentor 1 linkedin": "https://www.linkedin.com/in/yashksaini/",
+ "keyword": "phase1"
+ },
+ {
+ "Project name": "NBG (NEET Battleground)",
+ "Project description": "NEET Battleground (NBG) is a real-time, multiplayer web app that gamifies NEET exam practice with timed MCQ quizzes and a Skribbl.io-style drawing game. It features private room creation, live chat, custom usernames, and round-based gameplay with scoring. The app is built using React 18 with TypeScript, Tailwind CSS, Socket.IO, Zustand for state management, and React Router for navigation. Designed with a responsive, mobile-first layout and a medical/educational theme, NBG aims to make learning competitive, fun, and interactive.",
+ "Project link": "https://github.com/Piyush-t24/NBG",
+ "Project admin": "Piyush Gupta",
+ "Admin linkedin": "https://www.linkedin.com/in/piyush-gupta-rgipt",
+ "Admin github": "https://github.com/Piyush-t24",
+ "Tech stack": "React 18, Typescript, Tailwind CSS, React Router, Socket.IO, Node.js, Express.js, MongoDB, JWT",
+ "mentor 1": "MERN Stack",
+ "mentor 1 github": "https://github.com/himanshu560hi",
+ "mentor 1 linkedin": "https://www.linkedin.com/in/himanshu561hi?utm_source=share&utm_campaign=share_via&utm_content=profile&utm_medium=android_app",
+ "keyword": "phase1"
+ },
+ {
+ "Project name": "cpp-sdk-appwrite",
+ "Project description": "The first ever C++ SDK for Appwrite, build from scratch!",
+ "Project link": "https://github.com/pooranjoyb/cpp-sdk-appwrite",
+ "Project admin": "Pooranjoy",
+ "Admin linkedin": "https://linkedin.com/in/pooranjoyb",
+ "Admin github": "https://github.com/pooranjoyb",
+ "Tech stack": "C++, conan, cmake, libcurl",
+ "mentor 1": "Sristy paul",
+ "mentor 1 github": "https://www.linkedin.com/in/sristy-paul",
+ "mentor 1 linkedin": "https://www.github.com/sristy17",
+ "keyword": "phase1"
+ },
+ {
+ "Project name": "SortVision",
+ "Project description": "SortVision is a web-based sorting algorithm visualizer 🖥️ that lets users explore and compare algorithms like Bubble, Quick, Merge, and more 🔄. Easily adjust speed ⚡ and array size 📊 to watch the sorting process in real-time. Perfect for students and enthusiasts looking to understand sorting mechanics!",
+ "Project link": "https://github.com/alienx5499/SortVision",
+ "Project admin": "Prabal Patra",
+ "Admin linkedin": "https://www.linkedin.com/in/prabalpatra5499",
+ "Admin github": "https://github.com/alienx5499",
+ "Tech stack": "React.js (Vite) · Tailwind CSS · ShadCN · Lucide · Framer Motion · ESLint · Git · Vercel",
+ "mentor 1": "Hemanshu",
+ "mentor 1 github": "https://github.com/HemanshuMandhana",
+ "mentor 1 linkedin": "https://www.linkedin.com/in/hemanshu-mandhana-039601264/",
+ "keyword": "phase1"
+ },
+ {
+ "Project name": "Airplane Boarding Simulation",
+ "Project description": "This project simulates the process of boarding passengers onto an airplane using various real-world boarding strategies such as back-to-front, random boarding, window-middle-aisle, and more. It visualizes how different strategies impact total boarding time and overall efficiency. Built entirely in Python using matplotlib, NumPy, and object-oriented design, the simulation is a great tool for analyzing time complexity, crowd dynamics, and real-life optimization scenarios.\n\nThe goal of the project is to make this simulation more interactive, modular, and extensible for educational, research, or visualization purposes.",
+ "Project link": "https://github.com/18Prachi/airplane-boarding-simulation",
+ "Project admin": "Prachi Saxena",
+ "Admin linkedin": "https://www.linkedin.com/in/prachi-saxena-59a4a0259",
+ "Admin github": "https://github.com/18Prachi",
+ "Tech stack": "Python",
+ "mentor 1": "SOHAM GHOSH",
+ "mentor 1 github": "https://github.com/19Soham1762",
+ "mentor 1 linkedin": "https://www.linkedin.com/in/soham-ghosh-464b33253?utm_source=share&utm_campaign=share_via&utm_content=profile&utm_medium=android_app",
+ "keyword": "phase1"
+ },
+ {
+ "Project name": "Karbon",
+ "Project description": "Karbon is a desktop app that uses AI to generate and iteratively refine HTML/CSS/JS websites from simple prompts. Built with Python and Tkinter, it provides a live preview and export functionality.",
+ "Project link": "https://github.com/ProTecGames/Karbon",
+ "Project admin": "Prakhar Doneria",
+ "Admin linkedin": "https://www.linkedin.com/in/prakhar-doneria",
+ "Admin github": "https://github.com/PrakharDoneria",
+ "Tech stack": "Python",
+ "mentor 1": "Sai Karthik Motapothula",
+ "mentor 1 github": "https://github.com/saikarthik333",
+ "mentor 1 linkedin": "https://in.linkedin.com/in/saikarthik333",
+ "keyword": "phase1"
+ },
+ {
+ "Project name": "OpSo",
+ "Project description": "OpSo is a Flutter app that provides comprehensive information about various open-source programs, including Google Summer of Code, Summer of Bitcoin, Linux Foundation, and more. It allows users to explore different open-source opportunities, learn about their eligibility criteria, and access important resources.",
+ "Project link": "https://github.com/andoriyaprashant/OpSo",
+ "Project admin": "Prashant Andoriya",
+ "Admin linkedin": "https://in.linkedin.com/in/prashant-andoriya-272953251",
+ "Admin github": "https://github.com/andoriyaprashant",
+ "Tech stack": "Flutter, Dart",
+ "mentor 1": "Sarthak Patil",
+ "mentor 1 github": "https://github.com/ezsarthak",
+ "mentor 1 linkedin": "https://www.linkedin.com/in/sarthaknpatil",
+ "keyword": "phase1"
+ },
+ {
+ "Project name": "FoodIO",
+ "Project description": "FoodIO – Collaborative Recipe Sharing Platform - FoodIO is a full-fledged, MERN stack–based recipe-sharing web application designed to foster a collaborative cooking community. It enables users to upload, manage, and explore a diverse collection of recipes tailored to their personal preferences. With a responsive UI and robust backend, FoodIO ensures an engaging and seamless user experience.",
+ "Project link": "https://github.com/Prashanti-Hebbar/FoodIO",
+ "Project admin": "Prashanti Hebbar",
+ "Admin linkedin": "https://www.linkedin.com/in/prashanti-hebbar-205a51282/",
+ "Admin github": "https://github.com/Prashanti-Hebbar",
+ "Tech stack": "MongoDB, Express.js, React.js, Node.js",
+ "mentor 1": "Siddharth",
+ "mentor 1 github": "https://github.com/SiddharthaArepalli",
+ "mentor 1 linkedin": "https://www.linkedin.com/in/siddharthaarepalli",
+ "keyword": "phase1"
+ },
+ {
+ "Project name": "Nagarvikas",
+ "Project description": "An app that is built to file civic issues faced by citizens of india , they can easily track their complaint status in realtime , admins can check the complaints and after working on it they can update status accordingly , admin dashboard also has analytics option to keep data of all complaints for future use",
+ "Project link": "https://github.com/Prateek9876/NagarVikas",
+ "Project admin": "Prateek Chourasia",
+ "Admin linkedin": "https://www.linkedin.com/in/prateek-chourasia-in",
+ "Admin github": "https://github.com/Prateek9876",
+ "Tech stack": "Flutter , dart , firebase(auth and realtime Database), onesignal (in app notification), cloudinary (image storage)",
+ "mentor 1": "Gauri Verma",
+ "mentor 1 github": "https://github.com/garys-demons",
+ "mentor 1 linkedin": "https://www.linkedin.com/in/gauri-verma-2a061b311?utm_source=share&utm_campaign=share_via&utm_content=profile&utm_medium=ios_app",
+ "keyword": "phase1"
+ },
+ {
+ "Project name": "Weather App",
+ "Project description": "A simple and responsive weather web application that allows users to search for any city and get real-time weather updates including temperature, humidity, wind speed, and weather conditions. It uses the OpenWeatherMap API to fetch dynamic data and updates the UI accordingly. The application was developed without frameworks, focusing on modular, clean, and maintainable code.",
+ "Project link": "https://github.com/PreetySinha84/VerveBridge-Task-1-Weather-App.git",
+ "Project admin": "Preety Sinha",
+ "Admin linkedin": "https://www.linkedin.com/in/preety-sinha-318674274?utm_source=share&utm_campaign=share_via&utm_content=profile&utm_medium=android_app",
+ "Admin github": "https://github.com/PreetySinha84",
+ "Tech stack": "HTML, CSS, JavaScript, OpenWeatherMap API, Git & GitHub",
+ "mentor 1": "Mamillapalli sindhu",
+ "mentor 1 github": "https://github.com/Sindhuchowdhary23",
+ "mentor 1 linkedin": "https://www.linkedin.com/in/mamillapalli-sindhu-423310319?utm_source=share&utm_campaign=share_via&utm_content=profile&utm_medium=android_app",
+ "keyword": "phase1"
+ },
+ {
+ "Project name": "etsi-watchdog",
+ "Project description": "etsi-watchdog is a Python library for drift detection, version comparison, and real-time monitoring of data streams. Designed for ML practitioners, data scientists, and AI engineers who need reliable data quality insights.",
+ "Project link": "https://github.com/etsi-ai/etsi-watchdog",
+ "Project admin": "Priyansh Srivastava",
+ "Admin linkedin": "https://www.linkedin.com/in/priyansh-srivastava-91a0511bb/",
+ "Admin github": "https://github.com/PriyanshSrivastava0305",
+ "Tech stack": "python machine-learning",
+ "mentor 1": "Simma Sai Ganesh",
+ "mentor 1 github": "https://github.com/Sai-ganesh-0004",
+ "mentor 1 linkedin": "https://www.linkedin.com/in/sai-ganesh0004/",
+ "keyword": "phase1"
+ },
+ {
+ "Project name": "DataSentience-AIML",
+ "Project description": "🚀 Introducing DataSentience-AIML 🌐 A collaborative open-source project building real-world AI/ML solutions across domains like Healthcare, Finance, Agriculture, NLP, Safety & more! 💡 Key Technologies: Deep Learning Reinforcement Learning LLMs / NLP Data Science & Automation 🎯 Domains We Cover: 🏥 Healthcare | 💰 Finance | 🌾 Agriculture | 📈 Stocks & Crypto | 🛣️ Road Safety | 📷 Optical Detection | 💬 Chatbots | 🔒 Federated Learning 📁 Modular Project Structure: Organized under src/ for: Crop Yield Prediction Disease Detection Traffic & Safety Systems Federated Learning Pipelines BiLSTM Architectures & more!",
+ "Project link": "https://github.com/PRIYANSHU2026/DataSentience-AIML",
+ "Project admin": "PRIYANSHU TIWARI",
+ "Admin linkedin": "https://www.linkedin.com/in/priyanshu-tiwari-305661258/",
+ "Admin github": "https://github.com/PRIYANSHU2026",
+ "Tech stack": "Python , Machine learning",
+ "mentor 1": "Ruhi Tyagi",
+ "mentor 1 github": "https://www.github.com/ruhi47",
+ "mentor 1 linkedin": "https://www.linkedin.com/in/ruhityagi",
+ "mentor 2": "Mahraib Fatima",
+ "Mentor 2 linkedin": "https://www.linkedin.com/in/mahraib-fatima/",
+ "mentor 2 github": "https://github.com/MahraibFatima",
+ "keyword": "phase1"
+ },
+ {
+ "Project name": "CineVerse",
+ "Project description": "A beautiful and modern movie search application which allows users to search for movies, view detailed information, and rate their favourites.",
+ "Project link": "https://github.com/rahulkhandait-sde/movie-search",
+ "Project admin": "Rahul Khandait",
+ "Admin linkedin": "https://www.linkedin.com/in/rahulkhandait/",
+ "Admin github": "https://github.com/rahulkhandait-sde",
+ "Tech stack": "Next.js, Typescript, Redux Toolkit, Tailwind CSS, React, OMDB API",
+ "mentor 1": "Arvind Singh",
+ "mentor 1 github": "https://github.com/04arvind",
+ "mentor 1 linkedin": "https://www.linkedin.com/in/arvind-singh-92b88928a",
+ "keyword": "phase1"
+ },
+ {
+ "Project name": "UrHired",
+ "Project description": "URHired is a comprehensive job application tracking platform designed to streamline the job search process. This application helps job seekers manage their applications, track interview stages, and organize their career opportunities in one centralized location.",
+ "Project link": "https://github.com/techieRahul17/URHired",
+ "Project admin": "Rahul V S",
+ "Admin linkedin": "https://www.linkedin.com/in/rahul-v-s/",
+ "Admin github": "https://github.com/techieRahul17",
+ "Tech stack": "React+Vite, Tailwind CSS",
+ "mentor 1": "Nitya Singh",
+ "mentor 1 github": "https://github.com/NityaSingh77",
+ "mentor 1 linkedin": "https://www.linkedin.com/me?trk=p_mwlite_feed-secondary_nav",
+ "mentor 2": "Tanziha Sheikh",
+ "Mentor 2 linkedin": "https://www.linkedin.com/in/s-a32b802",
+ "mentor 2 github": "https://github.com/Tanziha-Sheikh",
+ "keyword": "phase1"
+ },
+ {
+ "Project name": "Canvas",
+ "Project description": "A Kotlin Multiplatform Paint application to pain and draw Sketch Doodle. This application uses local storage to store drawings and doesn't require any internet access.",
+ "Project link": "https://github.com/Rajkumarbhakta/Canvas",
+ "Project admin": "Rajkumar Bhakta",
+ "Admin linkedin": "https://www.linkedin.com/in/rajkumar-bhakta",
+ "Admin github": "https://github.com/Rajkumarbhakta/",
+ "Tech stack": "Kotlin, Kotlin Multiplatform, Compose Multiplatform",
+ "mentor 1": "Navdeep Kaur",
+ "mentor 1 github": "https://github.com/Navdeep-lab",
+ "mentor 1 linkedin": "https://www.linkedin.com/in/navdeep-kaur-057258312",
+ "keyword": "phase1"
+ },
+ {
+ "Project name": "Honor Box",
+ "Project description": "HonorBox , is a free and open-source web-based application that allows users to generate and verify certificates effortlessly. It provides a seamless and secure way to issue digital certificates and validate their authenticity",
+ "Project link": "https://github.com/RamakrushnaBiswal/HonorBox",
+ "Project admin": "Ramakrushna Biswal",
+ "Admin linkedin": "https://www.linkedin.com/in/ramakrushna-biswal",
+ "Admin github": "https://github.com/RamakrushnaBiswal/",
+ "Tech stack": "React.js, Tailwind CSS,Node.js, Express.js,MongoDB,Vercel,Nodemailer",
+ "mentor 1": "Krish Chothani",
+ "mentor 1 github": "https://github.com/KrishChothani",
+ "mentor 1 linkedin": "https://www.linkedin.com/in/krish-chothani-797598284",
+ "keyword": "phase1"
+ },
+ {
+ "Project name": "CryptoInsight",
+ "Project description": "CryptoInsight is an open-source, beginner-friendly crypto dashboard that allows users to monitor real-time cryptocurrency prices, analyze market trends, and track wallet balances using blockchain APIs. Built with Python and Streamlit, the project aims to simplify the crypto experience through clean visualizations and a user-first design.\n\nWhether you're a crypto enthusiast, data lover, or curious developer, CryptoInsight empowers you to explore the crypto world with clarity and confidence.",
+ "Project link": "https://github.com/RM-f1/Cryptoinsight",
+ "Project admin": "Ramandeep Kaur",
+ "Admin linkedin": "https://www.linkedin.com/in/ramandeep-kaur-9a548132b?utm_source=share&utm_campaign=share_via&utm_content=profile&utm_medium=android_app",
+ "Admin github": "https://github.com/RM-f1",
+ "Tech stack": "Python, Pandas, NumPy, Matplotlib, Plotly, Streamlit, CoinGecko API, Git, GitHub",
+ "mentor 1": "Prateek Sharma",
+ "mentor 1 github": "https://github.com/pkbros",
+ "mentor 1 linkedin": "https://www.linkedin.com/in/prateek-sharma-pkbros25",
+ "keyword": "phase1"
+ },
+ {
+ "Project name": "AutoPilotX-",
+ "Project description": "Open-source RPA toolkit to build, run, and share automation bots with a learning-first approach.",
+ "Project link": "https://github.com/rammya29/AutoPilotX-",
+ "Project admin": "Rammya Dharshini K",
+ "Admin linkedin": "https://www.linkedin.com/in/rammyak",
+ "Admin github": "https://github.com/rammya29",
+ "Tech stack": "Python, UiPath, Automation Anywhere, OpenRPA, Robocorp",
+ "mentor 1": "Mithali",
+ "mentor 1 github": "https://github.com/mithalikp25",
+ "mentor 1 linkedin": "https://www.linkedin.com/in/mithali-kp-23b815327?utm_source=share&utm_campaign=share_via&utm_content=profile&utm_medium=ios_app",
+ "keyword": "phase1"
+ },
+ {
+ "Project name": "Zero Waste Mart",
+ "Project description": "ZeroWasteMart is a sustainable online platform that allows users to buy, sell, or donate surplus groceries and reusable household items, aiming to reduce waste and promote eco-friendly living.",
+ "Project link": "Rena-code93/ZeroWasteMart https://share.google/eLYniGBWs6C9jMUCl",
+ "Project admin": "Renascence Dey",
+ "Admin linkedin": "https://www.linkedin.com/in/renascence-dey-b422642b9?utm_source=share&utm_campaign=share_via&utm_content=profile&utm_medium=android_app",
+ "Admin github": "https://github.com/Rena-code93",
+ "Tech stack": "Frontend: React.js, Tailwind CSS, CSS Modules, React Router DOM\nBackend: Node.js, Express.js\nDatabase: MongoDB (with Mongoose ORM)\nLanguages: JavaScript, Python, HTML, CSS\nOCR: Python (Tesseract OCR) with Flask API\nAuthentication: JWT (JSON Web Tokens)\nAPIs: REST APIs",
+ "mentor 1": "mansi ruhil",
+ "mentor 1 github": "https://github.com/mansiruhil",
+ "mentor 1 linkedin": "https://www.linkedin.com/in/mansi-ruhil-7a00a0228",
+ "keyword": "phase1"
+ },
+ {
+ "Project name": "Analysis and Prediction of Electric Vehicle Costs",
+ "Project description": "This project focuses on analyzing historical electric vehicle data to understand cost trends, features, and specifications influencing price variations. Using machine learning models like Linear Regression and Random Forest, the goal is to predict future EV prices based on selected features. The project aims to aid consumers and manufacturers with actionable insights into cost-effective EV production and purchase.",
+ "Project link": "https://github.com/reshamsai150/7.Analysis-and-Prediction-of-Electric-Vehicle-Costs-A-Machine-Learning-Based-Approach",
+ "Project admin": "Resham Sai Pranathi",
+ "Admin linkedin": "https://www.linkedin.com/in/saipranathi-resham-5a7921315",
+ "Admin github": "https://github.com/reshamsai150",
+ "Tech stack": "Python,HTML,CSS, javascript ,Pandas, NumPy, scikit-learn, Matplotlib, Jupyter Notebook, Git, GitHub",
+ "mentor 1": "Sarthak Chandvaria",
+ "mentor 1 github": "https://github.com/sarthaxtic",
+ "mentor 1 linkedin": "https://linkedin.com/in/sarthakchandvaria",
+ "keyword": "phase1"
+ },
+ {
+ "Project name": "Trip_assistant",
+ "Project description": "Project Title Trip Assistant – A Smart Travel Companion Platform Organization Name Independent Project Description Trip Assistant is a full-stack travel platform designed to simplify trip planning, booking, and social coordination for travelers. Inspired by platforms like Airbnb, Trip Assistant goes a step further by integrating social features such as a friend system, real-time chat, and a built-in AI chatbot for smart travel assistance. The platform also includes dedicated dashboards for admin users and hotel/property partners, allowing seamless management of bookings, customer data, and platform activity. The project is ideal for open-source contributors interested in modern web development, role-based access control, real-time applications, and AI integration. Key Features ✈️ User Features Accommodation Discovery – Browse and explore stays and destinations Friend System – Add and connect with fellow travelers Real-Time Chat – Communicate with friends to plan trips collaboratively AI Chatbot – Get destination suggestions and answers to FAQs Secure Authentication – Firebase-based login and registration 🛠 Admin & Partner Features Admin Dashboard – Manage users, content, activity logs, and site moderation Hotel Dashboard – Hotels/hosts can view bookings, manage properties, and analyze customer engagement Tech Stack Frontend: React.js with Vite Backend: Node.js with Express.js Database & Authentication: Firebase (Firestore + Firebase Auth) Real-Time Communication: Firebase listeners (Firestore/Realtime DB) Chatbot Integration: Planned via Dialogflow or custom NLP API Current Status Frontend development initiated using React + Vite Firebase setup completed for future integration Core UI components (homepage, partial authentication) under development Backend and dashboard planning in progress Clear roadmap defined for upcoming GSSoC contribution phase Goals for GSSoC Finalize and optimize user flows and authentication Implement friend system and real-time chat Build fully functional admin and partner dashboards Integrate chatbot for intelligent travel assistance Improve UI/UX and ensure responsiveness across devices Maintain clear documentation and contribution guidelines Why This Project? Trip Assistant offers contributors an opportunity to work on a real-world, community-focused travel application using modern technologies. It is suitable for developers interested in: Full-stack web development Real-time applications Firebase ecosystem Role-based access systems AI chatbot integration This project combines technology and travel to create a practical, scalable platform with real social impact.",
+ "Project link": "https://github.com/Richajaishwal0/Trip_assistant",
+ "Project admin": "Richa Jaishwal",
+ "Admin linkedin": "https://www.linkedin.com/in/richa-jaishwal/",
+ "Admin github": "https://github.com/Richajaishwal0",
+ "Tech stack": "HTML, Typescript, JS, React JS, Node js, Firebase Database",
+ "mentor 1": "Pratyaksh",
+ "mentor 1 github": "https://github.com/PRATYAKSH15",
+ "mentor 1 linkedin": "https://www.linkedin.com/in/pratyaksh-989922256/",
+ "keyword": "phase1"
+ },
+ {
+ "Project name": "Portfolio",
+ "Project description": "A personal portfolio website designed to showcase my skills, projects, achievements, and experiences as a software developer. The site features smooth navigation, responsive design for all devices, and dynamic components built using React. It includes sections such as About Me, Projects, Skills, Resume Download, and Contact Form.",
+ "Project link": "https://github.com/The-Rishabh-Mishra/My-Portfolio",
+ "Project admin": "Rishabh Mishra",
+ "Admin linkedin": "https://www.linkedin.com/in/rishabh-mishra-knit",
+ "Admin github": "https://github.com/The-Rishabh-Mishra",
+ "Tech stack": "MERN",
+ "mentor 1": "Vishisht Kapoor",
+ "mentor 1 github": "http://github.com/vishishtkapoor",
+ "mentor 1 linkedin": "https://www.linkedin.com/in/vishishtkapoor?utm_source=share&utm_campaign=share_via&utm_content=profile&utm_medium=android_app",
+ "mentor 2": "Sayanabha Chandra",
+ "Mentor 2 linkedin": "https://www.linkedin.com/in/sayanabhachandra?utm_source=share&utm_campaign=share_via&utm_content=profile&utm_medium=android_app",
+ "mentor 2 github": "https://github.com/Sayanabha",
+ "keyword": "phase1"
+ },
+ {
+ "Project name": "Influence of Tariff on Fashion Industry",
+ "Project description": "After the intensity of imposition of Tariff tax in US, it has heavily affected the import of goods the country. Imports of materials, designers that get their products from countries like China, India or European country are thought twice before making a final call. Our objective is to run some analysis and see on what scale is tariff affecting the fashion industry.",
+ "Project link": "https://github.com/ritikka06/Tariff-Fashion",
+ "Project admin": "Ritika Gosain",
+ "Admin linkedin": "https://www.linkedin.com/in/ritika-gosain-374871251?utm_source=share&utm_campaign=share_via&utm_content=profile&utm_medium=ios_app",
+ "Admin github": "https://github.com/ritikka06",
+ "Tech stack": "Machine Learning. Python.",
+ "mentor 1": "Gursirat kaur",
+ "mentor 1 github": "https://github.com/sirat98",
+ "mentor 1 linkedin": "https://www.linkedin.com/me?trk=p_mwlite_feed-secondary_nav",
+ "keyword": "phase1"
+ },
+ {
+ "Project name": "automataverse",
+ "Project description": "Automata-Verse is an interactive educational platform for learning and experimenting with theory of computation concepts. The application provides intuitive visual simulators for various automata models that are fundamental to computer science.",
+ "Project link": "https://github.com/robinsingh-ai/AutomataVerse",
+ "Project admin": "Robin",
+ "Admin linkedin": "https://www.linkedin.com/in/robinsingh-ai",
+ "Admin github": "https://github.com/robinsingh-ai",
+ "Tech stack": "nextjs, react, firebase and tailwind css",
+ "mentor 1": "Divyanshi Kulshrestha",
+ "mentor 1 github": "https://github.com/divyanshii10",
+ "mentor 1 linkedin": "https://www.linkedin.com/in/divyanshi-kulshrestha-5ba319295/",
+ "keyword": "phase1"
+ },
+ {
+ "Project name": "failprint",
+ "Project description": "MLOps focused diagnostic tool for automatic root cause analysis of ML Model performance failures.It an important step towards explainable AI.",
+ "Project link": "https://github.com/etsi-ai/etsi-failprint",
+ "Project admin": "Romit Chatterjee",
+ "Admin linkedin": "https://www.linkedin.com/in/romit23",
+ "Admin github": "https://github.com/Romit23",
+ "Tech stack": "Python",
+ "mentor 1": "Utkarsh Maurya",
+ "mentor 1 github": "https://github.com/pro-utkarshM",
+ "mentor 1 linkedin": "https://www.linkedin.com/in/utkarsh-maurya-connect",
+ "keyword": "phase1"
+ },
+ {
+ "Project name": "WebDevIn100_Days",
+ "Project description": "WebDevIn100Days is an open-source project designed to help contributors enhance their web development skills by building a wide range of projects—from simple to advanced—using HTML, CSS, and JavaScript. It encourages consistent learning through hands-on practice.",
+ "Project link": "https://github.com/ruchikakengal/WebDevIn100_Days",
+ "Project admin": "Ruchika Kengal",
+ "Admin linkedin": "https://www.linkedin.com/in/ruchika-kengal-8085092b7?utm_source=share&utm_campaign=share_via&utm_content=profile&utm_medium=android_app",
+ "Admin github": "https://github.com/ruchikakengal",
+ "Tech stack": "The project uses core web technologies: HTML, CSS, and JavaScript, encouraging consistent, hands-on learning through real-world mini projects.",
+ "mentor 1": "Ankit Mourya",
+ "mentor 1 github": "https://github.com/AnkitMourya12",
+ "mentor 1 linkedin": "https://www.linkedin.com/in/ankit-mourya-821aa223b/",
+ "keyword": "phase1"
+ },
+ {
+ "Project name": "100_DAYS_OF_WEBPROJECTS",
+ "Project description": "100 Days 100 Web Projects is a frontend-focused open-source challenge where I build one project daily using HTML, CSS, and JavaScript. Contributors are welcome to add creative mini-projects, improve existing ones, fix bugs, or enhance UI/UX. A great opportunity to learn, build, and grow together in the open-source community",
+ "Project link": "https://github.com/rutikakengal/100DAYS_OF_100WEBPROJECTS",
+ "Project admin": "Rutika K",
+ "Admin linkedin": "https://www.linkedin.com/in/rutika-kengal-b3b0a22b7?utm_source=share&utm_campaign=share_via&utm_content=profile&utm_medium=android_app",
+ "Admin github": "https://github.com/rutikakengal",
+ "Tech stack": "HTML,CSS and JavaScript",
+ "mentor 1": "Ankush Kapoor",
+ "mentor 1 github": "https://github.com/ankushhKapoor",
+ "mentor 1 linkedin": "https://www.linkedin.com/in/ankushhkapoor",
+ "keyword": "phase1"
+ },
+ {
+ "Project name": "Smart Waste Management System",
+ "Project description": "A brief summary of your project idea. Include what problem it solves and how it works.",
+ "Project link": "no",
+ "Project admin": "S MOHAMMED ARIF",
+ "Admin linkedin": "https://www.linkedin.com/in/mohammed-arif-768178283",
+ "Admin github": "https://github.com/MohammedArif9092",
+ "Tech stack": "Python, Django, React, MySQL",
+ "mentor 1": "YASH BISHT",
+ "mentor 1 github": "https://github.com/Yash22bisht",
+ "mentor 1 linkedin": "https://www.linkedin.com/in/yash-bisht-17793624a/",
+ "keyword": "phase1"
+ },
+ {
+ "Project name": "TalkHeal",
+ "Project description": "• A compassionate AI-based mental health assistant\n• 24/7 support with smart chat history\n• Mood slider and AI-based coping tips\n• Mental health resources and helplines\n• Location-based center search (Google Maps)\n• Clean 3D-inspired pink/magenta UI and mobile-ready responsive design",
+ "Project link": "https://github.com/eccentriccoder01/TalkHeal",
+ "Project admin": "Sagnik Chakraborty",
+ "Admin linkedin": "https://linkedin.com/in/eccentricexplorer",
+ "Admin github": "https://github.com/eccentriccoder01",
+ "Tech stack": "Python, Streamlit, Gemini API, CSS3",
+ "mentor 1": "Prateek Sharma",
+ "mentor 1 github": "https://github.com/pkbros",
+ "mentor 1 linkedin": "https://www.linkedin.com/in/prateek-sharma-pkbros25",
+ "keyword": "phase1"
+ },
+ {
+ "Project name": "Travel-Book",
+ "Project description": "The project is about storing the travel story virtually.",
+ "Project link": "https://github.com/Sahilll94/Travel-Book",
+ "Project admin": "SAHIL",
+ "Admin linkedin": "https://www.linkedin.com/in/sahilll94",
+ "Admin github": "https://github.com/Sahilll94",
+ "Tech stack": "MongoDB, Reactjs, Expressjs, Nodejs, AWS.",
+ "mentor 1": "Vishav Mehra",
+ "mentor 1 github": "https://github.com/vishavmehra",
+ "mentor 1 linkedin": "https://www.linkedin.com/in/vishav-mehra-755107208?utm_source=share&utm_campaign=share_via&utm_content=profile&utm_medium=ios_app",
+ "keyword": "phase1"
+ },
+ {
+ "Project name": "Sneaker Price Prediction using Machine Learning",
+ "Project description": "A Django-based web application that predicts sneaker prices using machine learning. It leverages historical sneaker data, performs preprocessing, model training, and allows users to input features like brand, color, and release year to get an estimated price.",
+ "Project link": "https://github.com/sahithinandikula/Sneaker-price-prediction",
+ "Project admin": "Sahithi Nandikula",
+ "Admin linkedin": "https://www.linkedin.com/in/sahithi-nandikula",
+ "Admin github": "https://github.com/sahithinandikula",
+ "Tech stack": "Python, Django, Scikit-learn, Pandas, Matplotlib, HTML, CSS",
+ "mentor 1": "Athrva Vikas Kachare",
+ "keyword": "phase1"
+ },
+ {
+ "Project name": "GuruShish",
+ "Project description": "Gurushish is a student-teacher interaction platform designed to help learners find the right tuition teachers based on subject and availability. With limited slots per teacher, it ensures focused learning and better engagement.",
+ "Project link": "https://github.com/sailaja-adapa/GuruShish",
+ "Project admin": "Sailaja Adapa",
+ "Admin linkedin": "https://www.linkedin.com/in/sailaja-adapa-770167291",
+ "Admin github": "https://github.com/sailaja-adapa/",
+ "Tech stack": "Next.js, Tailwind CSS, TypeScript, Node.js, Nest js, Express js, Postgre Sql",
+ "mentor 1": "Dipika",
+ "mentor 1 github": "https://github.com/Dipikagithub123",
+ "mentor 1 linkedin": "https://www.linkedin.com/in/dipika-tiwari-469454250/",
+ "keyword": "phase1"
+ },
+ {
+ "Project name": "Hospital Management Website",
+ "Project description": "A full-featured hospital management platform where patients can seamlessly book surgeries, schedule doctor appointments, order medicines, upload prescriptions, and book lab test slots online. Built using MongoDB, Express.js, React, and Node.js for a secure, responsive, and user-friendly experience, the system streamlines healthcare services and improves patient engagement through digital convenience.",
+ "Project link": "https://github.com/samarsajad/Hospital_Management_Website",
+ "Project admin": "Samar",
+ "Admin linkedin": "https://www.linkedin.com/in/samar-sajad-70b30b246?utm_source=share&utm_campaign=share_via&utm_content=profile&utm_medium=android_app",
+ "Admin github": "https://github.com/samarsajad",
+ "Tech stack": "React, CSS modules, Node.js, MongoDB",
+ "mentor 1": "Antik Mondal",
+ "mentor 1 github": "https://github.com/ANTIK-007",
+ "mentor 1 linkedin": "https://linkedin.com/in/antik-mondal-825684240",
+ "mentor 2": "Koustav Singh",
+ "Mentor 2 linkedin": "https://www.linkedin.com/in/koustavx08",
+ "mentor 2 github": "https://www.github.com/koustavx08",
+ "keyword": "phase1"
+ },
+ {
+ "Project name": "Brevity",
+ "Project description": "Brevity is an AI-powered news curation app that delivers seamless and concise news built with Flutter, Firebase, and upcoming with Chatbot and nodejs backend support. It aims to simplify how users consume news—through clean UI, fast performance, and future-ready AI features like summarization and myth-busting chatbot.",
+ "Project link": "https://github.com/Yash159357/BREVITY",
+ "Project admin": "Samarth Sharma",
+ "Admin linkedin": "https://www.linkedin.com/in/saysamarth/",
+ "Admin github": "https://github.com/saysamarth",
+ "Tech stack": "Flutter, Dart, Firebase, Node.js, express.js, MongoDB, REST API and Shared Preferences.",
+ "mentor 1": "Sutapa",
+ "mentor 1 github": "https://github.com/suto6",
+ "mentor 1 linkedin": "https://www.linkedin.com/in/sutapa0/",
+ "keyword": "phase1"
+ },
+ {
+ "Project name": "Winix",
+ "Project description": "Winix is a cross-platform command-line application designed to bridge the gap between Unix/Linux and Windows environments. Built with Rust for optimal performance and reliability, it provides native implementations of essential Unix commands that Windows users frequently need.",
+ "Project link": "https://github.com/0xsambit/winix",
+ "Project admin": "Sambit Singha",
+ "Admin linkedin": "https://www.linkedin.com/in/sambit-singha?utm_source=share&utm_campaign=share_via&utm_content=profile&utm_medium=android_app",
+ "Admin github": "https://github.com/0xsambit",
+ "Tech stack": "Rust",
+ "mentor 1": "Yash Vikram",
+ "mentor 1 github": "https://github.com/yashvikram30",
+ "mentor 1 linkedin": "https://www.linkedin.com/in/yashvikram30?utm_source=share&utm_campaign=share_via&utm_content=profile&utm_medium=android_app",
+ "keyword": "phase1"
+ },
+ {
+ "Project name": "RigCraft",
+ "Project description": "Build your dream gaming PC with our interactive component selector. Choose compatible parts, optimize your budget, and craft the perfect rig.",
+ "Project link": "https://github.com/SamXop123/RigCrafter",
+ "Project admin": "Sameer Prajapati",
+ "Admin linkedin": "https://www.linkedin.com/in/sameer-prajapati-vit",
+ "Admin github": "https://github.com/SamXop123",
+ "Tech stack": "Typescript, HTML, CSS, Javascript, Express.js, Node.js, React, Etc",
+ "mentor 1": "MOHD AFTAAB",
+ "mentor 1 github": "https://github.com/MoAftaab/",
+ "mentor 1 linkedin": "https://www.linkedin.com/in/mohammad-aftaab-b49a5624a?utm_source=share&utm_campaign=share_via&utm_content=profile&utm_medium=android_app",
+ "mentor 2": "Nandini Pandey",
+ "Mentor 2 linkedin": "https://linkedin.com/in/nytrixis",
+ "mentor 2 github": "https://github.com/nytrixis",
+ "mentor 3": "Abhishek Sharma",
+ "mentor 3 linkedin": "https://www.linkedin.com/in/abhishek-sharma-069-i/",
+ "mentor 3 github": "https://github.com/Abhishek-Sharma-069",
+ "keyword": "phase1"
+ },
+ {
+ "Project name": "DeshDarshan",
+ "Project description": "DeshDarshan is a cultural web experience that captures the spirit of India through its diverse regions. It brings together the richness of tradition, heritage, and identity in a visually immersive format. With a balance of modern design and traditional essence, the platform reflects the soul of the nation. DeshDarshan isn’t just a digital space—it’s a tribute to India’s timeless beauty and diversity, told through thoughtful visuals and storytelling. It invites users to connect emotionally with the roots of India.",
+ "Project link": "https://github.com/sampadatiwari30/DeshDarshan",
+ "Project admin": "sampada tiwari",
+ "Admin linkedin": "https://www.linkedin.com/in/sampada-tiwari-217123257",
+ "Admin github": "https://github.com/Sampadatiwari30",
+ "Tech stack": "HTMl5, CSS3, javascript bootstrap",
+ "mentor 1": "Shubrali jain",
+ "mentor 1 github": "https://github.com/code-well0",
+ "mentor 1 linkedin": "https://www.linkedin.com/in/shubrali-jain",
+ "mentor 2": "Sakshi Navnath Mane",
+ "Mentor 2 linkedin": "https://www.linkedin.com/in/sakshi-mane1210",
+ "mentor 2 github": "https://github.com/manesakshi1210",
+ "keyword": "phase1"
+ },
+ {
+ "Project name": "TechHub",
+ "Project description": "This project is a web-based platform designed for managing student tech clubs efficiently. It includes modules for event scheduling, team management, project tracking, and resource sharing. It aims to simplify the operations of tech clubs like Robonixx by providing an organized dashboard and easy collaboration tools.",
+ "Project link": "https://github.com/sania28/clubmate",
+ "Project admin": "Sania Mujtaba",
+ "Admin linkedin": "https://www.linkedin.com/in/sania-mujtaba-12a79925b?utm_source=share&utm_campaign=share_via&utm_content=profile&utm_medium=android_app",
+ "Admin github": "https://github.com/sania28",
+ "Tech stack": "HTML, CSS, JavaScript, React, Node.js, Python.",
+ "mentor 1": "Vrushali Nandurkar",
+ "mentor 1 github": "https://github.com/vruv",
+ "mentor 1 linkedin": "https://www.linkedin.com/in/vrushali-nandurkar-54337324a",
+ "keyword": "phase1"
+ },
+ {
+ "Project name": "recode-website",
+ "Project description": "community blog website",
+ "Project link": "https://github.com/recodehive/recode-website",
+ "Project admin": "Sanjay",
+ "Admin linkedin": "https://www.linkedin.com/in/sanjay-k-v/",
+ "Admin github": "https://github.com/sanjay-kv",
+ "Tech stack": "nextjs, js, css,html, sql",
+ "mentor 1": "Nandini Adlakha",
+ "mentor 1 github": "https://github.com/nandini20adlakha",
+ "mentor 1 linkedin": "https://www.linkedin.com/in/nandini-adlakha-8b72422b3?utm_source=share&utm_campaign=share_via&utm_content=profile&utm_medium=android_app",
+ "keyword": "phase1"
+ },
+ {
+ "Project name": "Hotel Table Reservation System",
+ "Project description": "A Python-Tkinter based hotel table reservation system that enables users to book, cancel and manage dining reservations with real-time updates and notifications. The system offers a user-friendly GUI built with Tkinter, providing real-time table availability tracking to enhance the reservation experience. It includes sign-up and login functionality for secure access, as well as features for creating, cancelling, and confirming reservations. Email notifications are sent to both clients and hotel administrators to keep them informed. Additionally, the system incorporates data validation and error handling to ensure reliable operation, along with an admin dashboard that allows administrators to view and manage all reservations efficiently.",
+ "Project link": "https://github.com/santhoshkumar1204/hotel-table-reservation-system.git",
+ "Project admin": "Santhoshkumar R",
+ "Admin linkedin": "https://www.linkedin.com/in/santhoshkumar-ravichandran-27b727305",
+ "Admin github": "https://github.com/santhoshkumar1204",
+ "Tech stack": "Python ( Data structures - Hash table, Priority Queue, Linkedlist), Tkinter ( Frontend), Figma- UI/ UX, Agile Methodology - JIRA",
+ "mentor 1": "Anshika Sharma",
+ "mentor 1 github": "https://github.com/Anshika17S",
+ "mentor 1 linkedin": "https://www.linkedin.com/in/anshika-sharma-135a47316?utm_source=share&utm_campaign=share_via&utm_content=profile&utm_medium=android_app",
+ "keyword": "phase1"
+ },
+ {
+ "Project name": "Hackgrid",
+ "Project description": "An advanced and customizable Learning Management System (LMS) built using modern web technologies. This platform includes key features for students, teachers, and course creators, supporting course browsing, creation, management, and secure payment processing.",
+ "Project link": "https://github.com/Sarthak027/Hackgrid",
+ "Project admin": "Sarthak Prasad Parida",
+ "Admin linkedin": "https://www.linkedin.com/in/sarthak-prasad-parida",
+ "Admin github": "https://github.com/Sarthak027",
+ "Tech stack": "Frontend: React, Next.js 13 (App Router)\nBackend: Next.js API Routes\nORM: Prisma\nDatabase: Xata (PostgreSQL)\nPayment: Razorpay\nFile Uploads: UploadThing & Mux\nAuthentication: Clerk\nStyling: Tailwind CSS",
+ "mentor 1": "Dipika",
+ "mentor 1 github": "https://github.com/Dipikagithub123",
+ "mentor 1 linkedin": "https://www.linkedin.com/in/dipika-tiwari-469454250/",
+ "keyword": "phase1"
+ },
+ {
+ "Project name": "Wisdom-Weaver",
+ "Project description": "Develop an AI-driven, multi-modal mental health support system that integrates NLP, emotion recognition, and reinforcement learning to provide real-time, adaptive mental health assistance using Spiritual Book *Bhagwat Geeta*",
+ "Project link": "https://github.com/satvik091/WisdomWeaver",
+ "Project admin": "Satvik gupta",
+ "Admin linkedin": "https://www.linkedin.com/in/satvik-gupta-091a37229?utm_source=share&utm_campaign=share_via&utm_content=profile&utm_medium=android_app",
+ "Admin github": "https://github.com/satvik091",
+ "Tech stack": "python, Streamlit",
+ "mentor 1": "Harmanpreet",
+ "mentor 1 github": "https://github.com/Harman-2",
+ "mentor 1 linkedin": "http://www.linkedin.com/in/harmanpreet-kaur-2341731b2",
+ "keyword": "phase1"
+ },
+ {
+ "Project name": "TextEditingApp",
+ "Project description": "This is a basic text editing app made for fun, any contributions are welcome, Let's make a fun app with a lot more cool features.",
+ "Project link": "https://github.com/may-tas/TextEditingApp",
+ "Project admin": "Satyam Jha",
+ "Admin linkedin": "https://www.linkedin.com/in/satyam-jha-7746201a4?utm_source=share&utm_campaign=share_via&utm_content=profile&utm_medium=android_app",
+ "Admin github": "https://github.com/may-tas",
+ "Tech stack": "Flutter, Dart, Cubit",
+ "mentor 1": "Sarthak Patil",
+ "mentor 1 github": "https://github.com/sarthaksahu03",
+ "mentor 1 linkedin": "https://www.linkedin.com/in/sarthaknpatil",
+ "keyword": "phase1"
+ },
+ {
+ "Project name": "DSAMate",
+ "Project description": "DSAMate is a platform that helps students practice in a structured way to clear OA, stay consistent and practice regularly.",
+ "Project link": "https://github.com/saumyayadav25/cpp-dsa-sheet-testing",
+ "Project admin": "Saumya Yadav",
+ "Admin linkedin": "https://www.linkedin.com/in/saumya-yadav-",
+ "Admin github": "https://github.com/saumyayadav25",
+ "Tech stack": "Next.js, Tailwind CSS, Framer Motion, Backend",
+ "mentor 1": "Sumit Sagar",
+ "mentor 1 github": "https://github.com/mostpalon3",
+ "mentor 1 linkedin": "https://www.linkedin.com/in/sumit-sagar-8a8b39286/",
+ "mentor 2": "Yash vishnoi",
+ "Mentor 2 linkedin": "https://www.linkedin.com/in/yash-vishnoi-22456a291/",
+ "mentor 2 github": "https://github.com/yashjscoder",
+ "mentor 3": "Aaradhy Raghav Duvey",
+ "mentor 3 linkedin": "https://github.com/arduvey29",
+ "mentor 3 github": "https://www.linkedin.com/in/aaradhy-raghav-duvey-b18b872b7?utm_source=share&utm_campaign=share_via&utm_content=profile&utm_medium=android_app",
+ "keyword": "phase1"
+ },
+ {
+ "Project name": "WallGodds App",
+ "Project description": "WallGodds is reimagined for mobile — fast, clean, and loaded with stunning high-res wallpapers for every screen. It’s more than an app — it’s your personal visual canvas, made for those who style their screen with every swipe.",
+ "Project link": "https://github.com/sayan0328/WallGodds-App",
+ "Project admin": "Sayan Basak",
+ "Admin linkedin": "https://www.linkedin.com/in/sayan-basak003/",
+ "Admin github": "https://github.com/sayan0328",
+ "Tech stack": "Frontend: Kotlin with Compose, Backend: Kotlin, Firebase, Database: Firebase RealTime DB",
+ "mentor 1": "Soumik Ghosh",
+ "mentor 1 github": "https://github.com/SoumikGhosh9",
+ "mentor 1 linkedin": "https://www.linkedin.com/in/soumik-ghosh-556651258",
+ "mentor 2": "Shankhadeep Paria",
+ "Mentor 2 linkedin": "https://github.com/Shankha2003",
+ "mentor 2 github": "https://www.linkedin.com/in/shankhadeepparia/",
+ "keyword": "phase1"
+ },
+ {
+ "Project name": "Quizz project",
+ "Project description": "Its a small project which i have made in this procet titel is quizz game wherw you have total five qustion each qusyion have 4 option whre one is correct thia quezz is realted to novel bolks and the book name and whos the correct author or writer whe have sletec",
+ "Project link": "https://github.com/sshakti971/NODE-JS",
+ "Project admin": "Shakti sharma",
+ "Admin linkedin": "https://www.linkedin.com/in/shaktisharmajava21",
+ "Admin github": "https://github.com/sshakti971",
+ "Tech stack": "front end devloper",
+ "mentor 1": "Shayan Ghosh",
+ "mentor 1 github": "https://github.com/Shayanghosh03",
+ "mentor 1 linkedin": "https://www.linkedin.com/in/shayan-ghosh-0834b3271?utm_source=share&utm_campaign=share_via&utm_content=profile&utm_medium=android_app",
+ "mentor 2": "Tanziha Sheikh",
+ "Mentor 2 linkedin": "https://www.linkedin.com/in/s-a32b802",
+ "mentor 2 github": "https://github.com/Tanziha-Sheikh",
+ "keyword": "phase1"
+ },
+ {
+ "Project name": "scr-game",
+ "Project description": "SCR gaming is a visually captivating website featuring amazing UI interactions.",
+ "Project link": "https://github.com/SCR01/scr-game",
+ "Project admin": "SHARAD CHANDRA REDDY",
+ "Admin linkedin": "https://www.linkedin.com/in/sharad-chandra-reddy-b0737a231/",
+ "Admin github": "https://github.com/SCR01",
+ "Tech stack": "React.js, Gsap, Tailwind",
+ "mentor 1": "Mohit jadaun",
+ "mentor 1 github": "https://github.com/Mohitjadaun2026",
+ "mentor 1 linkedin": "https://www.linkedin.com/in/mohit-jadaun/",
+ "keyword": "phase1"
+ },
+ {
+ "Project name": "Music Recommendation Using Facial Expressions",
+ "Project description": "This Python-based application uses computer vision and deep learning (TensorFlow/Keras) to detect real-time facial expressions via webcam. Based on the detected emotion, it automatically recommends and opens suitable music on YouTube. It integrates AI, sentiment analysis, and web browser automation to deliver an emotionally responsive user experience.",
+ "Project link": "https://github.com/SGCODEX/Music-Recommendation-Using-Facial-Expressions",
+ "Project admin": "Shivam Gupta",
+ "Admin linkedin": "https://www.linkedin.com/in/shivam-gupta-055921248/",
+ "Admin github": "https://github.com/SGCODEX",
+ "Tech stack": "Python, OpenCV, TensorFlow, Keras, Webbrowser, Requests, YOLO, Sentiment Analysis, Computer Vision",
+ "mentor 1": "Akshat Saxena",
+ "mentor 1 github": "https://github.com/akshat-2600",
+ "mentor 1 linkedin": "https://www.linkedin.com/in/akshat-saxena-44413b31b?utm_source=share&utm_campaign=share_via&utm_content=profile&utm_medium=android_app",
+ "keyword": "phase1"
+ },
+ {
+ "Project name": "Paytm app",
+ "Project description": "Its a full stack project in which users can can send/recieve money to/from others users.",
+ "Project link": "https://github.com/shivam74/payment-app",
+ "Project admin": "Shivam Raghuwanshi",
+ "Admin linkedin": "https://www.linkedin.com/in/shivam-raghuwanshi-8a1639242?utm_source=share&utm_campaign=share_via&utm_content=profile&utm_medium=android_app",
+ "Admin github": "https://www.linkedin.com/in/shivam-raghuwanshi-8a1639242?utm_source=share&utm_campaign=share_via&utm_content=profile&utm_medium=android_app",
+ "Tech stack": "MERN stack , zod for input validation,JWT tokens for authorisation",
+ "mentor 1": "Sahil",
+ "mentor 1 github": "http://github.com/sahil-luthra-000",
+ "mentor 1 linkedin": "http://www.linkedin.com/in/sahil-luthra09",
+ "keyword": "phase1"
+ },
+ {
+ "Project name": "Gitnet",
+ "Project description": "GitNet is a privacy-first, GitHub-authenticated chat app that lets developers connect instantly—no personal info, just your username. AI repo insights & workspaces coming soon.",
+ "Project link": "https://github.com/git-net-org/gitnet",
+ "Project admin": "shreya",
+ "Admin linkedin": "www.linkedin.com/in/shreya-shaw",
+ "Admin github": "https://github.com/cloud-merge",
+ "Tech stack": "Nextjs, Expressjs, Socketio,Prisma",
+ "mentor 1": "Yash Kumar Saini",
+ "mentor 1 github": "https://github.com/yashksaini-coder",
+ "mentor 1 linkedin": "https://www.linkedin.com/in/yashksaini/",
+ "keyword": "phase1"
+ },
+ {
+ "Project name": "MediGuide",
+ "Project description": "Personalized Medicine Recommendation System",
+ "Project link": "https://github.com/ShrutiparnaRoy/Medicine_Recommendation/blob/main/README.md",
+ "Project admin": "Shrutiparna Roy",
+ "Admin linkedin": "https://www.linkedin.com/in/shrutiparna-roy-a70b9728a?utm_source=share&utm_campaign=share_via&utm_content=profile&utm_medium=android_app",
+ "Admin github": "https://github.com/ShrutiparnaRoy",
+ "Tech stack": "Google Colab,Python",
+ "mentor 1": "SRINADH TADIKONDA",
+ "mentor 1 github": "http://github.com/srinadhtadikonda",
+ "mentor 1 linkedin": "http://linkedin.com/srinadhtadikonda",
+ "keyword": "phase1"
+ },
+ {
+ "Project name": "CodeStreak",
+ "Project description": "CodeStreak is a productivity and motivation tool designed for coders who want to keep up with the daily problem solving or project goals Whether you are preaparing for coding interviews buding person projects or improving your skills oneineat a time Codestte allows you to stay on track and maintain your momentum.",
+ "Project link": "https://github.com/karmveershubham/CodeStreak",
+ "Project admin": "Shubham Karmveer",
+ "Admin linkedin": "https://www.linkedin.com/in/shubham-karmveer",
+ "Admin github": "https://github.com/karmveershubham",
+ "Tech stack": "Next JS, Appwrite, Typescript, Tawind CSS",
+ "mentor 1": "Uma Mahesh",
+ "mentor 1 github": "https://github.com/nagaumamahesh",
+ "mentor 1 linkedin": "https://www.linkedin.com/in/naga-uma-mahesh-nandi-1b4a83360?utm_source=share&utm_campaign=share_via&utm_content=profile&utm_medium=android_app",
+ "keyword": "phase1"
+ },
+ {
+ "Project name": "bodhika",
+ "Project description": "Bodhika is a web platform designed to empower students & job seekers with a centralized hub for curated resource for career preparation.",
+ "Project link": "https://github.com/singodiyashubham87/bodhika",
+ "Project admin": "Shubham Singodiya",
+ "Admin linkedin": "https://www.linkedin.com/in/singodiyashubham87",
+ "Admin github": "https://www.github.com/singodiyashubham87",
+ "Tech stack": "NextJS, TailwindCSS, MongoDP, Auth0",
+ "mentor 1": "Uma Mahesh",
+ "mentor 1 github": "https://github.com/nagaumamahesh",
+ "mentor 1 linkedin": "https://www.linkedin.com/in/naga-uma-mahesh-nandi-1b4a83360?utm_source=share&utm_campaign=share_via&utm_content=profile&utm_medium=android_app",
+ "keyword": "phase1"
+ },
+ {
+ "Project name": "ClassMgmtSys",
+ "Project description": "Class Management System is a comprehensive MERN stack web application designed to streamline classroom operations and enhance communication between students, class representatives (CRs), class Advisors (CAs). Built with a decoupled architecture using Node.js/Express.js backend and React.js frontend, the system features Firebase authentication integrated with MongoDB for user management, providing role-based access control for different user types. The platform offers a centralized noticeboard for announcements, student roster management, subject-wise material uploads via Cloudinary integration, and planned features including voting systems, attendance tracking, push notifications, exam schedules, and event management. With Material-UI for consistent design, Tailwind CSS for styling, and Progressive Web App (PWA) capabilities for offline functionality, the system ensures a responsive, scalable, and user-friendly experience while maintaining security through Firebase token verification and data filtering via DTOs, making it an ideal solution for educational institutions seeking to digitize and organize their classroom management processes.",
+ "Project link": "https://github.com/ShudarsanRegmi/ClassMgmtSysOS-",
+ "Project admin": "Shudarsan Regmi",
+ "Admin linkedin": "https://www.linkedin.com/in/shudarsanregmi/",
+ "Admin github": "https://github.com/ShudarsanRegmi/",
+ "Tech stack": "React, Node, Express, MongoDB, Firebase, Material-UI, Tailwind CSS, Cloudinary, Vite, Axios",
+ "mentor 1": "Unnati Pandit",
+ "mentor 1 github": "https://www.github.com/Unnati-coder25",
+ "mentor 1 linkedin": "https://www.linkedin.com/in/unnati-pandit-b83a68285",
+ "keyword": "phase1"
+ },
+ {
+ "Project name": "Security Screening System",
+ "Project description": "A real-time security screening system, using face recognition with OpenCV. The system aims to scan individuals via a webcam at check-points (e.g., hotels, airports). If a person’s face matches an entry in the system’s dataset of known threats, runaway criminals or wanted individuals, the system triggers a threat alarm and sends an email alert to authorities immediately. Otherwise, a safe alarm is triggered, allowing them to proceed. The project aims to reduce manual intervention and automate security surveillance systems by enabling quick identification of flagged individuals.",
+ "Project link": "https://github.com/SomdattaNag/Security-Screening-System",
+ "Project admin": "Somdatta Nag",
+ "Admin linkedin": "https://www.linkedin.com/in/somdatta-nag-523362260/",
+ "Admin github": "https://github.com/SomdattaNag",
+ "Tech stack": "Python, OpenCV, Face Recognition, SMTPLib, Winsound.",
+ "mentor 1": "Mah Noor Fatima",
+ "mentor 1 github": "https://github.com/theefatymah",
+ "mentor 1 linkedin": "https://www.linkedin.com/in/theefatymah",
+ "keyword": "phase1"
+ },
+ {
+ "Project name": "faculty publication management",
+ "Project description": "faculty publication management",
+ "Project link": "https://github.com/SOURAVtec/Facility-publication-management-",
+ "Project admin": "Sonali subhadarsini nath",
+ "Admin linkedin": "https://www.linkedin.com/in/sonali-nath-859a362a4",
+ "Admin github": "https://github.com/Sonali-nath52",
+ "Tech stack": "html ,css ,js",
+ "mentor 1": "Shubrali jain",
+ "mentor 1 github": "https://github.com/code-well0",
+ "mentor 1 linkedin": "https://www.linkedin.com/in/shubrali-jain",
+ "keyword": "phase1"
+ },
+ {
+ "Project name": "ResqFood",
+ "Project description": "ResQFood is a platform dedicated to the noble cause of reducing food wastage by facilitating the redistribution of surplus food during late-night hours before restaurant closures.",
+ "Project link": "https://github.com/sourabhkumar47/ResQFood",
+ "Project admin": "Sourabh Kumar",
+ "Admin linkedin": "https://www.linkedin.com/in/sourabhkumar47?utm_source=share&utm_campaign=share_via&utm_content=profile&utm_medium=android_app",
+ "Admin github": "https://github.com/sourabhkumar47",
+ "Tech stack": "Android, Kotlin, Jetpack compose",
+ "mentor 1": "Sutapa Biswas",
+ "mentor 1 github": "https://github.com/suto6",
+ "mentor 1 linkedin": "https://www.linkedin.com/in/sutapa0/",
+ "keyword": "phase1"
+ },
+ {
+ "Project name": "LearnHub",
+ "Project description": "Master Technology Skills",
+ "Project link": "https://github.com/souvikpramanikgit/LearnHub",
+ "Project admin": "Souvik Kumar Pramanik",
+ "Admin linkedin": "https://www.linkedin.com/in/souvik-kr/",
+ "Admin github": "https://github.com/souvikpramanikgit",
+ "Tech stack": "React js, TypeScript, JavaScript, Html, Css",
+ "mentor 1": "Rohit Suhas Kumawat",
+ "mentor 1 github": "https://github.com/ROKUMATe",
+ "mentor 1 linkedin": "https://www.linkedin.com/in/rohit-kumawat-254928289/",
+ "mentor 2": "Tanziha Sheikh",
+ "Mentor 2 linkedin": "https://www.linkedin.com/in/s-a32b802",
+ "mentor 2 github": "https://github.com/Tanziha-Sheikh",
+ "keyword": "phase1"
+ },
+ {
+ "Project name": "next-payroll",
+ "Project description": "Multi-Terant Payroll & Tax compliance system automates tax filings",
+ "Project link": "https://github.com/sristy17/next-payroll",
+ "Project admin": "Sristy paul",
+ "Admin linkedin": "https://www.linkedin.com/in/sristy-paul",
+ "Admin github": "https://www.github.com/sristy17",
+ "Tech stack": "nextjs, TypeScript, JavaScript, Tailwind Css, nodejs, supabase, frontend, backend, development, full stack",
+ "mentor 1": "Yash Vishnoi",
+ "mentor 1 github": "https://github.com/yashjscoder",
+ "mentor 1 linkedin": "https://www.linkedin.com/in/yash-vishnoi-22456a291?utm_source=share&utm_campaign=share_via&utm_content=profile&utm_medium=android_app",
+ "mentor 2": "Pooranjoy",
+ "Mentor 2 linkedin": "https://linkedin.com/in/pooranjoyb",
+ "mentor 2 github": "https://github.com/pooranjoyb",
+ "keyword": "phase1"
+ },
+ {
+ "Project name": "PrepBuddy",
+ "Project description": "PrepBuddy is a student-focused platform where users can practice aptitude tests based on real company patterns, track their progress, upload profile pictures, earn badges, and compete on a global leaderboard.",
+ "Project link": "https://github.com/SurajSG23/PrepBuddy",
+ "Project admin": "Suraj S G Dhanva",
+ "Admin linkedin": "https://www.linkedin.com/in/suraj-s-g-dhanva-995a23298/",
+ "Admin github": "https://github.com/SurajSG23",
+ "Tech stack": "Frontend:\nReact + Vite (TypeScript)\nTailwind CSS\nShadCN/UI & Lucide Icons\nAxios.\nBackend\nNode.js + Express.js\nMongoDB + Mongoose\nFirebase Auth\nCloudinary + Multer",
+ "mentor 1": "Anshika Sansanwal",
+ "mentor 1 github": "https://github.com/anshikasansanwal",
+ "mentor 1 linkedin": "https://www.linkedin.com/in/anshikasansanwal?utm_source=share&utm_campaign=share_via&utm_content=profile&utm_medium=android_app",
+ "keyword": "phase1"
+ },
+ {
+ "Project name": "Bit By Query",
+ "Project description": "Bit By Query is a web-based platform where users can compete in SQL competitions",
+ "Project link": "https://github.com/swarooppatilx/bit-by-query",
+ "Project admin": "Swaroop Patil",
+ "Admin linkedin": "https://www.linkedin.com/in/swarooppatilx",
+ "Admin github": "https://github.com/swarooppatilx",
+ "Tech stack": "ReactJS, Express, MySQL, SQLite3",
+ "mentor 1": "Divyanshi Kulshrestha",
+ "mentor 1 github": "https://github.com/divyanshii10",
+ "mentor 1 linkedin": "https://www.linkedin.com/in/divyanshi-kulshrestha-5ba319295/",
+ "keyword": "phase1"
+ },
+ {
+ "Project name": "Syed Imtiyaz Ali",
+ "Project description": "Swapify is a secure, add-free, and community-driven platform designed to revolutionize how Indians buy and sell pre-owned products.",
+ "Project link": "https://github.com/SyedImtiyaz-1/Swapify",
+ "Project admin": "Syed Imtiyaz Ali",
+ "Admin linkedin": "https://linkedin.com/in/imtiyaz-sde",
+ "Admin github": "https://github.com/SyedImtiyaz-1",
+ "Tech stack": "Next.js, React.js, React-Native, TailwindCSS, Google Maps, OpenStreetMap, Node.js, Express.js, MongoDB",
+ "mentor 1": "ADITYA KALBURGI",
+ "mentor 1 github": "https://github.com/adityakalburgi",
+ "mentor 1 linkedin": "http://www.linkedin.com/in/adityakalburgi",
+ "keyword": "phase1"
+ },
+ {
+ "Project name": "CompliAI — AI-Powered Compliance Copilot & 2nd Project Smart Irrigation Valve System using AI + IoT",
+ "Project description": "CompliAI is an AI-driven compliance assistant built for Indian startups, SMEs, and corporates. The system uses generative AI and intelligent document parsing to automate, predict, and simplify legal, tax, labor, and regulatory obligations. It offers features like 24/7 legal Q&A chat, deadline reminders, GST/MCA parsing, and a location-based compliance map. The platform is also being integrated with AI Policy Wizard to enhance policy interpretation for new acts like DPDP, ESG norms, FSSAI, SEBI, etc. This project is perfect for students interested in AI/ML, NLP, backend automation, or legaltech product development. & 2nd Project Description it is a Hardware Project Model so I have created a Website This project aims to empower farmers with an AI-IoT-based automated water valve system. It uses soil moisture sensors, weather data, and solar-powered microcontrollers to control irrigation remotely — via mobile or SMS. The system is affordable, low-maintenance, and scalable for small and marginal farmers. Students will get hands-on experience with microcontrollers, embedded programming, and real-world impact engineering. The solution will be showcased at Eureka! (Asia's largest startup competition).",
+ "Project link": "https://agri-automation-system-automated-valve-system--aopjgjl58ghrz7g5.builder-preview.com/",
+ "Project admin": "Tanmay B. Pansare",
+ "Admin linkedin": "https://www.linkedin.com/in/tanmay-pansare-16394330b/",
+ "Admin github": "https://github.com/tanmaydchamp",
+ "Tech stack": "Python (Flask/FastAPI) LangChain + GPT-4-o Vector DB (FAISS) Google Cloud (Vertex AI, Cloud Functions) Azure Form Recognizer / Amazon Textract MongoDB / PostgreSQL Frontend: React.js / Streamlit / Gradio GitHub Actions (CI/CD) & 2nd Project Techstack Arduino / NodeMCU / Raspberry Pi Python (IoT scripting, backend integration) MQTT / Blynk / Firebase Realtime DB Solar panel + Li-ion power management SMS APIs (Twilio / Fast2SMS) Optional: Google Cloud IoT / ESPNow",
+ "mentor 1": "Yash Vishnoi",
+ "mentor 1 github": "https://github.com/yashjscoder",
+ "mentor 1 linkedin": "https://www.linkedin.com/in/yash-vishnoi-22456a291?utm_source=share&utm_campaign=share_via&utm_content=profile&utm_medium=android_app",
+ "keyword": "phase1"
+ },
+ {
+ "Project name": "Smart Irrigation Valve System using AI + IoT",
+ "Project description": "It is a Hardware Project Model so I have created a Website This project aims to empower farmers with an AI-IoT-based automated water valve system. It uses soil moisture sensors, weather data, and solar-powered microcontrollers to control irrigation remotely — via mobile or SMS. The system is affordable, low-maintenance, and scalable for small and marginal farmers. Students will get hands-on experience with microcontrollers, embedded programming, and real-world impact engineering. The solution will be showcased at Eureka! (Asia's largest startup competition).",
+ "Project link": "https://agri-automation-system-automated-valve-system--aopjgjl58ghrz7g5.builder-preview.com/",
+ "Project admin": "Tanmay B. Pansare",
+ "Admin linkedin": "https://www.linkedin.com/in/tanmay-pansare-16394330b/",
+ "Admin github": "https://github.com/tanmaydchamp",
+ "Tech stack": "Arduino / NodeMCU / Raspberry Pi Python (IoT scripting, backend integration) MQTT / Blynk / Firebase Realtime DB Solar panel + Li-ion power management SMS APIs (Twilio / Fast2SMS) Optional: Google Cloud IoT / ESPNow",
+ "mentor 1": "Rajdeep Mohanty",
+ "mentor 1 github": "https://github.com/rajdeep5901",
+ "mentor 1 linkedin": "https://www.linkedin.com/in/rajdeepmohanty/",
+ "keyword": "phase1"
+ },
+ {
+ "Project name": "SmartLog",
+ "Project description": "A beautiful, responsive, and modern Expense Tracker App built with React that helps users manage and visualize their income and expenses smartly.",
+ "Project link": "https://github.com/TanmayKalra09/SmartLog",
+ "Project admin": "Tanmay Kalra",
+ "Admin linkedin": "https://www.linkedin.com/in/tanmay-kalra-09oct/",
+ "Admin github": "https://github.com/TanmayKalra09",
+ "Tech stack": "React, Vite, TailwindCSS",
+ "mentor 1": "Unnati Pandit",
+ "mentor 1 github": "https://www.github.com/Unnati-coder25",
+ "mentor 1 linkedin": "https://www.linkedin.com/in/unnati-pandit-b83a68285",
+ "mentor 2": "Tanziha Sheikh",
+ "Mentor 2 linkedin": "https://www.linkedin.com/in/s-a32b802",
+ "mentor 2 github": "https://github.com/Tanziha-Sheikh",
+ "keyword": "phase1"
+ },
+ {
+ "Project name": "Hotel management system",
+ "Project description": "I have worked on a Hotel Management System using C++, MySQL, and HTML/CSS. I’ve also designed UI using Figma and have experience in basic Python and graphic designing.",
+ "Project link": "https://github.com/tasmiyashaikh711",
+ "Project admin": "Tasmiya Shaikh MD Arshad",
+ "Admin linkedin": "https://www.linkedin.com/in/tasmiya-shaikh711?utm_source=share&utm_campaign=share_via&utm_content=profile&utm_medium=android_app",
+ "Admin github": "https://github.com/tasmiyashaikh711",
+ "Tech stack": "I used the following technologies:\n\nFrontend: HTML, CSS (for designing the user interface)\n\nBackend: C++ using Turbo C++ (for logic and core functionalities)\n\nDatabase: MySQL (to store user, booking, and room data)\n\nTools: Figma (for UI/UX planning and wireframes)\n\n\nThis combination allowed me to build a structured, interactive, and functional system, ensuring both usability and performance.",
+ "mentor 1": "Uma Mahesh",
+ "mentor 1 github": "https://github.com/nagaumamahesh",
+ "mentor 1 linkedin": "https://www.linkedin.com/in/naga-uma-mahesh-nandi-1b4a83360?utm_source=share&utm_campaign=share_via&utm_content=profile&utm_medium=android_app",
+ "keyword": "phase1"
+ },
+ {
+ "Project name": "Dataverse",
+ "Project description": "A versatile Open-Source Software (OSS) that allows organizing, analyzing and visualizing data, leveraging ML algorithms for predictive analysis. Supporting all data visualisation techniques on one platform, accessible on both desktop and mobile.",
+ "Project link": "https://github.com/multiverseweb/Dataverse",
+ "Project admin": "Tejas Gupta",
+ "Admin linkedin": "https://www.linkedin.com/in/tejascodes",
+ "Admin github": "https://github.com/multiverseweb",
+ "Tech stack": "Python, HTML, CSS, JavaScript",
+ "mentor 1": "Shreeraksha R Adiga",
+ "mentor 1 github": "https://github.com/shreeraksha2112",
+ "mentor 1 linkedin": "https://www.linkedin.com/in/shreeraksharadiga/",
+ "keyword": "phase1"
+ },
+ {
+ "Project name": "AgriBazaar - E-commerce Agricultural Products Website",
+ "Project description": "AgriBazaar is an online platform that connects farmers, suppliers, and buyers of agricultural products. The website allows users to browse and purchase a wide range of agricultural products, including seeds, fertilizers, pesticides, and farm equipment. *Key Features:* - User registration and login functionality - Product catalog with search, filter, and sort options - Shopping cart and checkout functionality - Payment gateway integration (e.g., PayPal, Stripe) - Order management and tracking - User reviews and ratings - Admin dashboard for managing products, orders, and users *Technology Stack:* - Front-end: HTML, CSS, JavaScript, JSP - Back-end: Java, Spring Framework (e.g., Spring MVC, Spring Boot) - Database: MySQL or PostgreSQL - Server: Apache Tomcat or similar *Functionality:* - Users can browse and purchase agricultural products - Farmers and suppliers can list their products and manage orders - Admin can manage products, orders, and users - Payment processing and order tracking *Benefits:* - Increased market access for farmers and suppliers - Convenience and flexibility for buyers - Streamlined order management and payment processing *Java Technologies Used:* - Spring Framework for building the back-end - Hibernate or JPA for database interactions - Java Servlet and JSP for handling requests and rendering views This project would involve designing and implementing a robust e-commerce platform using Java and related technologies. It would require a good understanding of web development, database design, and payment processing.",
+ "Project link": "https://github.com/KOMARAUDAYKIRAN/E-commerce-AgriGro-Website-Project",
+ "Project admin": "Uday",
+ "Admin linkedin": "https://www.linkedin.com/in/udaykirankomara",
+ "Admin github": "https://github.com/KOMARAUDAYKIRAN",
+ "Tech stack": "java full stack",
+ "mentor 1": "Ishita Singh",
+ "mentor 1 github": "https://github.com/issue31",
+ "mentor 1 linkedin": "https://www.linkedin.com/in/ishita-s-4b336a191",
+ "keyword": "phase1"
+ },
+ {
+ "Project name": "Anime-Ecstasy",
+ "Project description": "Anime review sites",
+ "Project link": "https://github.com/Chandu6702/Anime-Ecstasy",
+ "Project admin": "Uma Chandra Sekhara Sarma Thadepalli",
+ "Admin linkedin": "https://www.linkedin.com/in/umachandrasekhara/",
+ "Admin github": "https://github.com/Chandu6702",
+ "Tech stack": "HTML, JavaScript, Tailwind CSS, React.js",
+ "mentor 1": "Mithali",
+ "mentor 1 github": "https://github.com/mithalikp25",
+ "mentor 1 linkedin": "https://www.linkedin.com/in/mithali-kp-23b815327?utm_source=share&utm_campaign=share_via&utm_content=profile&utm_medium=ios_app",
+ "keyword": "phase1"
+ },
+ {
+ "Project name": "PyVerse",
+ "Project description": "PyVerse is an open-source collection of diverse Python projects, tools, and scripts, ranging from beginner to advanced, across various domains like machine learning, web development, and automation.",
+ "Project link": "https://github.com/UTSAVS26/PyVerse",
+ "Project admin": "Utsav Singhal",
+ "Admin linkedin": "https://www.linkedin.com/in/utsavsinghal2604/",
+ "Admin github": "https://github.com/UTSAVS26",
+ "Tech stack": "Python",
+ "mentor 1": "Arpit Mishra",
+ "mentor 1 github": "https://www.linkedin.com/in/arpit-mishra-87b943242/",
+ "mentor 1 linkedin": "https://github.com/TheChaoticor",
+ "mentor 2": "Kiruthiga C M",
+ "Mentor 2 linkedin": "https://www.linkedin.com/in/kiruthiga-c-m-b34aa9328?utm_source=share&utm_campaign=share_via&utm_content=profile&utm_medium=android_app",
+ "mentor 2 github": "https://github.com/kiruthigacm",
+ "mentor 3": "Jitendra Rajput",
+ "mentor 3 linkedin": "https://www.linkedin.com/in/jitendra-rajputt/",
+ "mentor 3 github": "https://github.com/Jitendrarajputt",
+ "keyword": "phase1"
+ },
+ {
+ "Project name": "Term",
+ "Project description": "A minimal terminal with AI capabilities",
+ "Project link": "https://github.com/sapatevaibhav/term",
+ "Project admin": "Vaibhav",
+ "Admin linkedin": "https://linkedin.com/in/sapatevaibhav",
+ "Admin github": "https://github.com/sapatevaibhav",
+ "Tech stack": "React, Rust",
+ "mentor 1": "Devyash Saini",
+ "mentor 1 github": "https://github.com/thedevyashsaini",
+ "mentor 1 linkedin": "https://linkedin.com/in/thedevyashsaini",
+ "keyword": "phase1"
+ },
+ {
+ "Project name": "Nitra Mitra",
+ "Project description": "Nitra Mitra is an open-source educational platform designed to support students of AKTU and similar technical universities by providing a centralized system for academic resources. Developed by students of NITRA Technical Campus, the project aims to make essential study material easily accessible, especially for students in under-resourced colleges.\n\nThe platform offers semester-wise and subject-wise notes, previous year question papers, syllabus documents, and event updates. It eliminates the need to search through multiple unofficial sources and provides a clean, organized interface focused on academic success.\n\nNitra Mitra is built using HTML, CSS, JavaScript, PHP, and MySQL, and is hosted on a custom domain. It is a beginner-friendly open-source project, welcoming contributors to improve features like responsive design, content upload automation, admin moderation tools, and search optimization.\n\nThis project aligns with the goals of GSSoC by fostering open collaboration, offering meaningful contributions for beginners and intermediate developers, and solving real student problems through technology.",
+ "Project link": "https://github.com/VAIBHAVBABELE/vaibhavbabele.github.io",
+ "Project admin": "Vaibhav Babele",
+ "Admin linkedin": "https://in.linkedin.com/in/vaibhavbabele",
+ "Admin github": "https://github.com/VAIBHAVBABELE/vaibhavbabele.github.io",
+ "Tech stack": "HTML, CSS, JavaScript, PHP, MySQL, google app script, bootstrap",
+ "mentor 1": "Harsh Saini",
+ "mentor 1 github": "https://github.com/Harshsaini001",
+ "mentor 1 linkedin": "https://www.linkedin.com/in/harsh-saini-734ab6264/",
+ "mentor 2": "meet arora",
+ "Mentor 2 linkedin": "https://www.linkedin.com/in/meet-arora-603682296",
+ "mentor 2 github": "https://github.com/meetarora10",
+ "keyword": "phase1"
+ },
+ {
+ "Project name": "Ardh Naari Shakti",
+ "Project description": "It is a web app, which is a warm hug to all the trangender community people out there. It contains various pages like a chatbot named Taara, Blogs page, shelter page and jobs page.",
+ "Project link": "https://github.com/Agarwalvidu/ArdhNaariShakti_Taara_Frontend",
+ "Project admin": "Vidushi Agarwal",
+ "Admin linkedin": "https://www.linkedin.com/in/vidushi-agarwal-a95885256",
+ "Admin github": "https://github.com/Agarwalvidu",
+ "Tech stack": "ReactJs, NodeJs, ExpressJs, MongoDB",
+ "mentor 1": "Koustav Singh",
+ "mentor 1 github": "https://www.github.com/koustavx08",
+ "mentor 1 linkedin": "https://www.linkedin.com/in/koustavx08",
+ "mentor 2": "Antik Mondal",
+ "Mentor 2 linkedin": "https://linkedin.com/in/antik-mondal-825684240",
+ "mentor 2 github": "https://github.com/ANTIK-007",
+ "keyword": "phase1"
+ },
+ {
+ "Project name": "Athletix",
+ "Project description": "Athletix is a Flutter, Firebase and Gemini API based platform for athlete management in India, offering performance tracking, injury management, AI recovery, and real-time messaging. Future upgrades include dashboards, finance and AI career planning",
+ "Project link": "https://github.com/vjlive/athletix",
+ "Project admin": "Vijay Guttula",
+ "Admin linkedin": "https://linkedin.com/in/vijay-guttula",
+ "Admin github": "https://github.com/vjlive",
+ "Tech stack": "Flutter, Firebase, Gemini API, Node Js, Javascript, Dart, REST APIs",
+ "mentor 1": "Sarthak Patil",
+ "mentor 1 github": "https://github.com/ezsarthak",
+ "mentor 1 linkedin": "https://www.linkedin.com/in/sarthaknpatil",
+ "mentor 2": "sutapa biswas",
+ "Mentor 2 linkedin": "https://www.linkedin.com/in/sutapa0/",
+ "mentor 2 github": "https://github.com/suto6",
+ "keyword": "phase1"
+ },
+ {
+ "Project name": "Orthoplay - Spell. Guess. Learn",
+ "Project description": "Orthoplay is an interactive voice-based word learning game designed to make vocabulary building fun and engaging. The game challenges players with spoken words accompanied by descriptive hints in text. Players must guess the word by identifying the number of letters and gradually unveiling the correct spelling through intuitive, game-based mechanics.",
+ "Project link": "https://github.com/whyvineet/orthoplay",
+ "Project admin": "Vineet Kumar",
+ "Admin linkedin": "https://www.linkedin.com/in/whyvineet",
+ "Admin github": "https://github.com/whyvineet",
+ "Tech stack": "python, javascript, reactjs, fastapi",
+ "mentor 1": "SRINADH TADIKONDA",
+ "mentor 1 github": "http://github.com/srinadhtadikonda",
+ "mentor 1 linkedin": "http://linkedin.com/srinadhtadikonda",
+ "mentor 2": "Aric Pandya",
+ "Mentor 2 linkedin": "https://www.linkedin.com/in/aricpandya?utm_source=share&utm_campaign=share_via&utm_content=profile&utm_medium=android_app",
+ "mentor 2 github": "https://github.com/AricPandya",
+ "keyword": "phase1"
+ },
+ {
+ "Project name": "Product Ledger",
+ "Project description": "Its a Ledger Application for Reatilers to manage their services.",
+ "Project link": "https://github.com/vishalmaurya850/Product-Ledger",
+ "Project admin": "Vishal Maurya",
+ "Admin linkedin": "https://www.linkedin.com/in/vishalmaurya850",
+ "Admin github": "https://github.com/vishalmaurya850",
+ "Tech stack": "Next.js, Tailwind CSS, Express.js",
+ "mentor 1": "Dipika",
+ "mentor 1 github": "https://github.com/Dipikagithub123",
+ "mentor 1 linkedin": "https://www.linkedin.com/in/dipika-tiwari-469454250/",
+ "mentor 2": "Piyush Sharma",
+ "Mentor 2 linkedin": "https://www.linkedin.com/in/piyush-ugi/",
+ "mentor 2 github": "https://github.com/daksh-ugi",
+ "keyword": "phase1"
+ },
+ {
+ "Project name": "SentiLog AI",
+ "Project description": "SentiLog AI is an open-source platform that helps users track their personal emotions through mood journaling while simultaneously analyzing global news sentiment to reveal how external events might influence their inner world. Combining the power of machine learning and a modern MERN stack architecture, SentiLog offers intelligent insights by visualizing the emotional tone of daily journal entries alongside real-time sentiment analysis of news articles and tweets. Users can explore patterns, compare their moods with global trends, and gain a deeper understanding of the connection between internal feelings and external narratives. Built for accessibility, scalability, and community collaboration, SentiLog AI is a unique intersection of emotion, analytics, and technology — empowering individuals to stay emotionally aware in an ever-changing world.",
+ "Project link": "https://github.com/openml-stack/SentiLog-AI",
+ "Project admin": "vivek prakash",
+ "Admin linkedin": "https://www.linkedin.com/in/itsvivekprakash",
+ "Admin github": "https://github.com/IkkiOcean",
+ "Tech stack": "•\tFrontend:\n\t•\tReact.js\n\t•\tTailwind CSS\n\t•\tReact Router for navigation\n\t•\tAxios for API calls\n\t•\tBackend (App Server):\n\t•\tNode.js\n\t•\tExpress.js\n\t•\tMongoose (MongoDB ODM)\n\t•\tDatabase:\n\t•\tMongoDB Atlas (Cloud NoSQL)\n\t•\tML Service (Python):\n\t•\tFlask (API framework)\n\t•\tHugging Face Transformers (e.g., BERT)\n\t•\tVADER Sentiment",
+ "mentor 1": "Rishabh Dhawad",
+ "mentor 1 github": "https://github.com/RishabhDhawad",
+ "mentor 1 linkedin": "https://www.linkedin.com/in/rishabhdhawad/",
+ "mentor 2": "Dipayan Ghosh",
+ "Mentor 2 linkedin": "https://www.linkedin.com/in/dipayan-ghosh-coder",
+ "mentor 2 github": "https://github.com/Dip-1432",
+ "keyword": "phase1"
+ },
+ {
+ "Project name": "Brevity",
+ "Project description": "Brevity is a smart news app that cuts through the noise, delivering crisp, trustworthy stories with a clean, modern interface—designed to make staying informed effortless and engaging.",
+ "Project link": "https://github.com/Yash159357/BREVITY",
+ "Project admin": "Yash",
+ "Admin linkedin": "https://www.linkedin.com/in/yash-kumar101/",
+ "Admin github": "https://github.com/Yash159357",
+ "Tech stack": "Flutter, Firebase, RestAPI, NodeJS, MongoDB, ExpressJS,",
+ "mentor 1": "Unnati Pandit",
+ "mentor 1 github": "https://www.github.com/Unnati-coder25",
+ "mentor 1 linkedin": "https://www.linkedin.com/in/unnati-pandit-b83a68285",
+ "mentor 2": "Gauri Verma",
+ "Mentor 2 linkedin": "https://github.com/garys-demons",
+ "mentor 2 github": "https://www.linkedin.com/in/gauri-verma-2a061b311?utm_source=share&utm_campaign=share_via&utm_content=profile&utm_medium=ios_app",
+ "keyword": "phase1"
+ },
+ {
+ "Project name": "BMC Product Review Scrapping & Sentiment Analysis",
+ "Project description": "This project performs Web Scrapping & Sentiment Analysis on verified Gartner reviews of popular BMC Software Products, using Python NLP Techniques and Data Visualization.\n\nBMC Product Review Scrapping & Sentiment Analysis is an open source project designed for performing sentiment analysis on customer reviews of BMC Software products scraped from public platforms like Gartner. It leverages Natural Language Processing (NLP) techniques and visualization tools to extract actionable insights from product reviews.\n\nThis project is perfect for beginners and intermediate contributors who want hands-on experience with web scraping, NLP, data visualization, and open source collaboration.",
+ "Project link": "https://github.com/Yash22222/BMC-Product-Reviews-Web-Scrapping-Sentiment-Analysis",
+ "Project admin": "Yash",
+ "Admin linkedin": "https://www.linkedin.com/in/yash-shirsath-cr49/",
+ "Admin github": "https://github.com/Yash22222/",
+ "Tech stack": "This project uses Selenium with Undetected-Chromedriver for web scraping dynamic Gartner pages. Data is handled using Pandas and NumPy, and exported via OpenPyXL and XlsxWriter. For NLP, we use NLTK for preprocessing and VADER for sentiment analysis. Visualizations are built using Matplotlib for charts and WordCloud for keyword clouds. TQDM adds progress tracking throughout the workflow.",
+ "mentor 1": "Kumar Daksh",
+ "mentor 1 github": "https://github.com/Daksh503",
+ "mentor 1 linkedin": "https://www.linkedin.com/in/kumardaksh/",
+ "mentor 2": "Snehashish Das",
+ "Mentor 2 linkedin": "https://www.linkedin.com/in/snehashish-das-160359226/",
+ "mentor 2 github": "https://github.com/Snehashish-Das",
+ "keyword": "phase1"
+ },
+ {
+ "Project name": "Legalease",
+ "Project description": "A platform built for people to get legal advice on, you can directly track your cases, converse with a AI-legal chat bot and find real life lawyers, working on the issues.",
+ "Project link": "https://github.com/yashvikram30/LegalEase",
+ "Project admin": "Yash Vikram",
+ "Admin linkedin": "https://www.linkedin.com/in/yashvikram30?utm_source=share&utm_campaign=share_via&utm_content=profile&utm_medium=android_app",
+ "Admin github": "https://github.com/yashvikram30",
+ "Tech stack": "Next.js, Typescript, Shad-CN, Groq-API",
+ "mentor 1": "Yash Kumar Saini",
+ "mentor 1 github": "https://github.com/yashksaini-coder",
+ "mentor 1 linkedin": "https://www.linkedin.com/in/yashksaini/",
+ "keyword": "phase1"
+ },
+ {
+ "Project name": "White Paper",
+ "Project description": "The White Paper project is a simple notepad app built with Python Django. It allows users to create, save, and manage notes with a secure authentication system to keep their data private. Users can sign up, log in, and access their notes, offering a seamless and secure note-taking experience.",
+ "Project link": "https://github.com/ygowthamr/WhitePaper",
+ "Project admin": "YEMIREDDY GOWTHAM REDDY",
+ "Admin linkedin": "https://www.linkedin.com/in/ygowthamr/",
+ "Admin github": "https://github.com/ygowthamr",
+ "Tech stack": "Python, Django Framework, HTML, CSS, JavaScript, SQLite.",
+ "mentor 1": "Shreeya Srivastava",
+ "mentor 1 github": "https://github.com/shreesriv12",
+ "mentor 1 linkedin": "https://www.linkedin.com/in/shreeya-srivastava-94a458327/",
+ "keyword": "phase1"
+ },
+ {
+ "Project name": "ShopSmart",
+ "Project description": "By ShopSmart we provide Smart Shopping from Local Stores.",
+ "Project link": "https://github.com/yuvrajsinghgmx/ShopSmart",
+ "Project admin": "Yuvraj Singh",
+ "Admin linkedin": "https://linkedin.com/in/yuvrajsinghgmx",
+ "Admin github": "https://github.com/yuvrajsinghgmx",
+ "Tech stack": "Android Studio, Kotlin, JetPack Compose, Springboot, Kotlin, Frontend, Backend,",
+ "mentor 1": "mansi ruhil",
+ "mentor 1 github": "https://github.com/mansiruhil",
+ "mentor 1 linkedin": "https://www.linkedin.com/in/mansi-ruhil-7a00a0228",
+ "keyword": "phase1"
+ }
+]
\ No newline at end of file
diff --git a/projects-phase2.json b/projects-phase2.json
new file mode 100644
index 0000000..dc5a96d
--- /dev/null
+++ b/projects-phase2.json
@@ -0,0 +1,2075 @@
+[
+ {
+ "Project name": "AlchEmaiLyst",
+ "Project description": "A 3 agent system powered by AI to automate emails. Summarise, Compose, Send and stay away from spam at automated in a beautiful UI",
+ "Project link": "https://github.com/Coden-inja/alchEmaiLyst",
+ "Project admin": "Yogesh Kumar",
+ "Admin linkedin": "https://www.linkedin.com/in/yogesh-kumar-299298260/",
+ "Admin github": "https://github.com/Coden-inja",
+ "Tech stack": "React, Vite, Tailwind , ShadCN, Express.js, Axios, Google OAuth2.0, Gemini API, Alchemyst APi",
+ "keyword": "phase2"
+ },
+ {
+ "Project name": "CampusTrack",
+ "Project description": "CampusTrack is a full-stack web application designed to help students and staff of a college report, find, and manage lost and found items on campus. The system enables seamless tracking of lost belongings, efficient moderation, and easy communication between finders and owners.",
+ "Project link": "https://github.com/Swastik007sharma/CampusTrack",
+ "Project admin": "Swastik Sharma",
+ "Admin linkedin": "https://www.linkedin.com/in/swastik-sharma-756b04238/",
+ "Admin github": "https://github.com/Swastik007sharma",
+ "Tech stack": "MERN :- Frontend: React (with Vite) + tailwindcss",
+ "keyword": "phase2"
+ },
+ {
+ "Project name": "med-genie",
+ "Project description": "AI Med Genie is a Python-based chatbot designed to assist users with basic medical queries, appointment information, and general health tips. It was built using Flask and deployed to a public platform. The chatbot aims to reduce the load on healthcare professionals by providing quick, automated responses to common patient questions.",
+ "Project link": "https://github.com/aayushraj1010/med-genie",
+ "Project admin": "Aayush Raj",
+ "Admin linkedin": "https://www.linkedin.com/in/aayush-raj-a8603a307?utm_source=share&utm_campaign=share_via&utm_content=profile&utm_medium=android_app",
+ "Admin github": "https://github.com/aayushraj1010",
+ "Tech stack": "Python, Flask, HTML, CSS, Git, GitHub, VS Code, Render (Optional NLP: spaCy planned for future)",
+ "mentor 1": "Shivangi Suyash",
+ "mentor 1 github": "https://github.com/Shivangi10-10",
+ "mentor 1 linkedin": "https://www.linkedin.com/in/shivangi-suyash-05a484259",
+ "keyword": "phase2"
+ },
+ {
+ "Project name": "SkillHub-CourseSelling",
+ "Project description": "It is a partial full stack course selling web based project",
+ "Project link": "https://github.com/WavyWeb/SkillHub-CourseSelling",
+ "Project admin": "Abhay Pratap Singh",
+ "Admin linkedin": "https://www.linkedin.com/in/abhay-pratap-singh-a75069252/",
+ "Admin github": "https://github.com/ThakurAbhay9457",
+ "Tech stack": "MERN",
+ "mentor 1": "Huda Naaz",
+ "mentor 1 github": "https://github.com/hudazaan",
+ "mentor 1 linkedin": "http://www.linkedin.com/in/hudanaaz17",
+ "mentor 2": "Shivangi Suyash",
+ "Mentor 2 linkedin": "https://github.com/Shivangi10-10",
+ "mentor 2 github": "https://www.linkedin.com/in/shivangi-suyash-05a484259",
+ "keyword": "phase2"
+ },
+ {
+ "Project name": "PrepEdge AI",
+ "Project description": "PrepEdge AI is an interview preparation platform, that helps people hone their interview skills by giving mock interviews powered by AI on our platform. PrepEdge AI uses AI to generate personalized questions for users based on the job description and their resume. It provides instant feedback of your interview, which can even be downloaded in form of pdf.",
+ "Project link": "https://www.github.com/coderuzumaki/prepedge-ai",
+ "Project admin": "Abhinav Mishra",
+ "Admin linkedin": "https://www.linkedin.com/in/abhinavvv08",
+ "Admin github": "https://www github.com/coderuzumaki",
+ "Tech stack": "React.js, TailwindCSS, Express.js, MongoDB Atlas, HuggingFace API",
+ "mentor 1": "Huda Naaz",
+ "mentor 1 github": "https://github.com/hudazaan",
+ "mentor 1 linkedin": "http://www.linkedin.com/in/hudanaaz17",
+ "keyword": "phase2"
+ },
+ {
+ "Project name": "CrisisBoard",
+ "Project description": "A unified complaint logging platform that generates report categories it into a particular problem and sends email to concerned department automatically.",
+ "Project link": "https://github.com/Ambit-ion/crisisboard",
+ "Project admin": "Abhisar",
+ "Admin linkedin": "https://www.linkedin.com/in/abhisar-choubey/",
+ "Admin github": "https://github.com/Ambit-ion",
+ "Tech stack": "HTML, Firebase, JS",
+ "keyword": "phase2"
+ },
+ {
+ "Project name": "Crisisboard",
+ "Project description": "Universal complaint logging, categorising and email sending website",
+ "Project link": "https://github.com/Forkzen/crisisboard",
+ "Project admin": "Abhisar Choubey",
+ "Admin linkedin": "https://www.linkedin.com/in/abhisar-choubey",
+ "Admin github": "https://github.com/Forkzen",
+ "Tech stack": "HTML, FIREBASE,FIRESTORE,TAILWIND,JS,GEMINI",
+ "keyword": "phase2"
+ },
+ {
+ "Project name": "Advanturers Guild",
+ "Project description": "Adventurer's Guild for coders. Take on quests (from bug hunting to feature builds) from big organisation, party up with fellow adventures (devs), and raise your ranks in the digital realm. In from of Website and App both",
+ "Project link": "https://github.com/LarytheLord/Adventurers-Guild",
+ "Project admin": "Abid",
+ "Admin linkedin": "https://www.linkedin.com/in/abikhn/",
+ "Admin github": "https://github.com/LarytheLord",
+ "Tech stack": "Next.js, React Native, Typescript, Supabase",
+ "keyword": "phase2"
+ },
+ {
+ "Project name": "OptiBlogAi",
+ "Project description": "OptiBlogAi is an open-source AI system that generates high-quality, SEO-optimized blog content through a multi-phase content production pipeline. By scraping top-ranking content, generating original articles with LLMs, and implementing a rigorous quality assessment loop, OptiBlogAi produces content engineered for search engine visibility and reader engagement.\n \n Core Innovation: OptiBlogAi's unique breakeven assessment loop ensures content meets quality thresholds before publication, combining AI generation with SEO science to create content that ranks.",
+ "Project link": "https://github.com/solve-ease/OptiBlogAi",
+ "Project admin": "Adarsh Maurya",
+ "Admin linkedin": "https://www.linkedin.com/in/adarsh-maurya-dev/",
+ "Admin github": "https://github.com/4arsh-dev",
+ "Tech stack": "Python 3.10+, FastAPI, LangGraph, Groq, Gemini, Playwright, BeautifulSoup, NLTK, Docker,",
+ "keyword": "phase2"
+ },
+ {
+ "Project name": "Smart Waste Classification System using EfficientNet",
+ "Project description": "A machine learning-based system to automate waste classification using image recognition. Leveraging the EfficientNetV2B2 architecture, the model identifies different types of waste (plastic, paper, metal, etc.) from images, helping in effective recycling and segregation. The system aims to reduce manual effort and improve the accuracy of waste management.",
+ "Project link": "https://github.com/AditixAnand/Garbage_Classification.git",
+ "Project admin": "Aditi Anand",
+ "Admin linkedin": "https://www.linkedin.com/in/aditi-anand-745458318/",
+ "Admin github": "https://github.com/AditixAnand",
+ "Tech stack": "Python, TensorFlow, EfficientNet, Streamlit, OpenCV, NumPy, Pandas",
+ "keyword": "phase2"
+ },
+ {
+ "Project name": "NeoNest",
+ "Project description": "Babycare for new borns specially in the first year of birth is crucial as it lays the foundation for further growth and development. However, it often leads to stress, confusion, burnout and becomes overwhelming for parents specially nothers who are already dealing with postpartum recovery. Neonest, addressing this issue blends technology, love and care to create a holistic platform for parents where they can track their baby's development during the first year. From tracking feedings, sleep, essentials, growth, vaccines and emergency contacts, along with providing faqs, resources, to a Memory Vault, AI chatbot assistant and Lullabies NeoNest is a full fledged combination of technology and emotions. Apart from that, the website is built via cutting edge technology and provides contributors a vast scope for creative inputs, from beginners looking to start via bug fixes, documentation and ui enhancements to advanced developers bringing unique features, all can contribute to the project.",
+ "Project link": "https://github.com/AditiGupta-tech/neonest",
+ "Project admin": "Aditi Gupta",
+ "Admin linkedin": "https://www.linkedin.com/in/aditi-gupta-464024324/",
+ "Admin github": "https://github.com/AditiGupta-tech",
+ "Tech stack": "Frontend: Nextjs (javascript), tailwindCss; Backend: mongodb and Nextjs (via routes and API); Auth: bcryptjs, jwt; AI integration: Gemini API; Deployment: Vercel; Version Control: Github",
+ "keyword": "phase2"
+ },
+ {
+ "Project name": "Code Guardian",
+ "Project description": "Advanced AI-powered static code analysis platform that helps developers identify security vulnerabilities, code quality issues, and maintainability concerns in their codebase",
+ "Project link": "https://github.com/Xenonesis/code-guardian-report.git",
+ "Project admin": "Aditya",
+ "Admin linkedin": "https://www.linkedin.com/in/itisaddy/",
+ "Admin github": "https://github.com/Xenonesis",
+ "Tech stack": "react, python,shadcn,framer motion",
+ "keyword": "phase2"
+ },
+ {
+ "Project name": "Travel agency",
+ "Project description": "Travel Agency is a full-stack travel website built with the MERN stack (MongoDB, Express, React, Node.js) to help you explore and book amazing travel destinations with ease.\n \n Whether you're planning a quick weekend escape, a relaxing family holiday, or a thrilling adventure, our platform offers something for everyone. You can browse beautiful destinations, discover curated travel packages, and book your dream trips all in one place.\n \n Our goal is to make travel planning simple, inspiring, and fun. We believe that everyone deserves to experience new places and create unforgettable memories, and were here to make that happen for you.\n \n Start exploring today and let your next adventure begin!",
+ "Project link": "https://github.com/adityakalburgi/Travel_ageny_website",
+ "Project admin": "ADITYA KALBURGI",
+ "Admin linkedin": "www.linkedin.com/in/adityakalburgi",
+ "Admin github": "www.github.com/adityakalburgi",
+ "Tech stack": "MERN (MongoDB, expressJS, ReactJS, NodeJS)",
+ "keyword": "phase2"
+ },
+ {
+ "Project name": "Simplylang",
+ "Project description": "SimplyLang provides a friendly programming using natural language helps kids learn code much faster .",
+ "Project link": "github.com/AffanShaikhsurab/simplylang",
+ "Project admin": "Affan Shaikhsurab",
+ "Admin linkedin": "https://in.linkedin.com/in/affanshaikhsurab",
+ "Admin github": "https://github.com/AffanShaikhsurab",
+ "Tech stack": "Python , JavaScript, React",
+ "keyword": "phase2"
+ },
+ {
+ "Project name": "Old School Game",
+ "Project description": "Step back in time with Old School Game, where classic games meet modern-day brain training! Sharpen your mind and have fun with nostalgic games, all designed to boost your cognitive power and keep your brain in top shape.",
+ "Project link": "https://github.com/ajaynegi45/Old-School-Game",
+ "Project admin": "Ajay Negi",
+ "Admin linkedin": "https://www.linkedin.com/in/ajaynegi45",
+ "Admin github": "https://github.com/ajaynegi45",
+ "Tech stack": "Next.js, Typescript, Javascript, Socket.io, HTML, CSS",
+ "keyword": "phase2"
+ },
+ {
+ "Project name": "GitSearch",
+ "Project description": "GitSearch is an Android app built with Kotlin and Jetpack Compose that lets users search and view GitHub profiles using the GitHub REST API, featuring MVVM architecture, Retrofit, and Hilt for clean and scalable development.",
+ "Project link": "https://github.com/Ajay-patidar0/GitSearch",
+ "Project admin": "Ajay Patidar",
+ "Admin linkedin": "https://www.linkedin.com/in/ajay-patidarit/",
+ "Admin github": "https://github.com/Ajay-patidar0",
+ "Tech stack": "Kotlin and Jetpack Compose",
+ "keyword": "phase2"
+ },
+ {
+ "Project name": "Statify",
+ "Project description": "Statify is a minimalistic, theme-based web application designed for seamless role-based authentication and tracking services like websites, APIs, and databases. The application features a clean and intuitive user interface with enhanced user authentication powered by Clerk and database management using Prisma ORM with Neon.",
+ "Project link": "https://github.com/AkashJana18/statify",
+ "Project admin": "Akash Jana",
+ "Admin linkedin": "https://linkedin.com/in/akashjana",
+ "Admin github": "https://github.com/AkashJana18",
+ "Tech stack": "Next.js Node.js tailwind Clerk NeonDB Prisma Orm",
+ "keyword": "phase2"
+ },
+ {
+ "Project name": "Hostel Cart Kanpur",
+ "Project description": "HostelCart Kanpur is a fun student-to-student marketplace where hostelites buy, sell, and barter daily essentials with full Kanpuriya swag.",
+ "Project link": "https://github.com/akhileshverma92/hostlecartkanpur",
+ "Project admin": "Akhilesh verma",
+ "Admin linkedin": "https://www.linkedin.com/in/akhileshx/",
+ "Admin github": "https://github.com/akhileshverma92",
+ "Tech stack": "Reactjs and Appwrite",
+ "keyword": "phase2"
+ },
+ {
+ "Project name": "fingerprint-oss",
+ "Project description": "A Blazingly fast simple client-side fingerprinting library that logs user information, fingerprint users. Backed by cloudflare oss.",
+ "Project link": "https://github.com/IntegerAlex/fingerprint-oss",
+ "Project admin": "Akshat kotpalliwar (alias IntegerAlex)",
+ "Admin linkedin": "https://www.linkedin.com/in/akshat-kotpalliwar/",
+ "Admin github": "https://github.com/IntegerAlex/",
+ "Tech stack": "Typescript and JavaScript",
+ "keyword": "phase2"
+ },
+ {
+ "Project name": "Blok",
+ "Project description": "Blok is a new kind of backend development. Most backend frameworks focus on features. Blok focuses on clarity. It gives developers the power to build modular, testable, observable systems from the ground upwithout having to adopt complex orchestration platforms or serverless lock-in. As a Blok developer, you dont build backends by routing HTTP requests into controllers. You build workflows composed of focused nodes, observe them in real time, test each unit independently, and deploy them across runtimes or teams.",
+ "Project link": "https://github.com/deskree-inc/blok",
+ "Project admin": "Akshat Sharma",
+ "Admin linkedin": "https://www.linkedin.com/in/akshat-sharma11",
+ "Admin github": "https://github.com/Akshat111111",
+ "Tech stack": "Typescript, Python, Node js",
+ "keyword": "phase2"
+ },
+ {
+ "Project name": "Eduhaven",
+ "Project description": "Education Platform",
+ "Project link": "https://github.com/EduHaven/EduHaven",
+ "Project admin": "Aman Sharma",
+ "Admin linkedin": "https://www.linkedin.com/in/aman-sharma-84156a289?utm_source=share&utm_campaign=share_via&utm_content=profile&utm_medium=android_app",
+ "Admin github": "https://github.com/amandollar",
+ "Tech stack": "MERN",
+ "keyword": "phase2"
+ },
+ {
+ "Project name": "DevNotes",
+ "Project description": "DevNotes is a structured and beautifully designed learning hub for mastering full-stack web development. It covers everything from Frontend (HTML, CSS, JavaScript, React, Tailwind CSS) and Backend (Node.js, Express, MongoDB) to Deployment strategies and Miscellaneous dev topics.",
+ "Project link": "https://github.com/Amarjha01/DevNotes",
+ "Project admin": "Amar jha",
+ "Admin linkedin": "https://www.linkedin.com/in/amarjha01/",
+ "Admin github": "https://github.com/Amarjha01/",
+ "Tech stack": "React.js , Tailwind css , Framer motion, GitHub action,",
+ "keyword": "phase2"
+ },
+ {
+ "Project name": "Cat Sanctuary - A Horror First-Person Game",
+ "Project description": "Cat Sanctuary is a horror-themed first-person game set in a haunted cat sanctuary. The player, a new caretaker, uncovers a dark mystery involving cursed spirits, eerie events, and the remains of a previous caretaker. The mission is to collect remains of that caretaker scattered across the map and bury them to break the curse and save the cats.\n The game is built in Unity using custom C# scripts, shader graph visual effects, ambient sound design, and post-processing for atmosphere. GSSoC contributors can work on gameplay improvements, level design, optimizing scripts, adding features like new enemy AI or save/load mechanics, and porting the game to other platforms.",
+ "Project link": "https://github.com/Amna-Hassan04/Cat-Sanctuary",
+ "Project admin": "Amna Hassan",
+ "Admin linkedin": "https://www.linkedin.com/in/amna-hassan-143b76202/",
+ "Admin github": "https://github.com/Amna-Hassan04",
+ "Tech stack": "Unity Engine(2020.3.20f1), C#, Unity Shader Graph, Unity URP (Universal Render Pipeline), Post-processing stack, Git & GitHub for version control, itch.io for game deployment",
+ "keyword": "phase2"
+ },
+ {
+ "Project name": "EduGaurd",
+ "Project description": "To reduce student dropout rate we make a student mentor website use the ml model and predict the student dropout condition",
+ "Project link": "https://github.com/JIGEESHA-ANAGANI/MST-LAB",
+ "Project admin": "ANAGANI JIGEESHA",
+ "Admin linkedin": "https://www.linkedin.com/jigeeshaa",
+ "Admin github": "https://github.com/JIGEESHA-ANAGANI",
+ "Tech stack": "Machine learning, mean stack , js , RestApi",
+ "mentor 1": "Kosaraju joshitha",
+ "mentor 1 github": "https://www.linkedin.com/in/joshitha-kosaraju?utm_source=share&utm_campaign=share_via&utm_content=profile&utm_medium=android_app",
+ "mentor 1 linkedin": "https://github.com/joshitha5g4",
+ "keyword": "phase2"
+ },
+ {
+ "Project name": "VIDEOMEET",
+ "Project description": "A video conferencing app with calls, screen sharing, and messaging using React, TypeScript, and WebRTC.\n real-time, low-latency communication via WebSockets for seamless user interaction.\n JWT authentication, meeting scheduling, and deployed the app on Railway for public use",
+ "Project link": "https://github.com/Ananta025/VIDEO_MEET",
+ "Project admin": "Ananta Chandra Das",
+ "Admin linkedin": "https://www.linkedin.com/in/ananta-chandra-das",
+ "Admin github": "https://github.com/Ananta025",
+ "Tech stack": "Reactjs, Typescript, WebRTC, socket io, MongoDB,Nodejs",
+ "keyword": "phase2"
+ },
+ {
+ "Project name": "ScheduleX",
+ "Project description": "ScheduleX: Your Smart Timetable, Attendance Markings and Task Reminders App\n ScheduleX is a sleek, cross-platform application built with React Native, designed to simplify your academic and personal scheduling. From generating intelligent timetables to tracking attendance, ScheduleX is the only tool you need to stay organized and on top of your commitments. Of course, here is a project description for your ScheduleX app, based on the details you provided.\n \n Key Features\n AI Timetable Generation: Say goodbye to manual scheduling! Instantly generate a perfectly optimized timetable based on your custom inputs or by simply uploading a CSV file.\n \n Effortless Attendance Tracking: Easily monitor and manage your attendance for any class or event. Set custom alerts to notify you when your attendance drops below a certain threshold.\n \n Seamless Schedule Sharing: Share your timetable with friends or colleagues effortlessly. They can import your entire schedule into their app in seconds, no manual entry required.\n \n Integrated Task Management: Keep track of your assignments and to-dos with our built-in task manager. Add, manage, and check off tasks to stay productive and accountable.\n \n Dynamic Timetable Management: Life changes, and so should your schedule. Create, edit, and organize multiple timetables with an intuitive and flexible interface.\n \n Real-Time Cloud Sync: Your schedule, always with you. Keep your data seamlessly synchronized across all your devices.\n \n Task Chat: A Chat like interface to provide you one safe location to save all your shopping list, academic reminders, assignments and more removing the clutter we make on whatsapp",
+ "Project link": "https://github.com/Loop-Hive/ScheduleX",
+ "Project admin": "Ani",
+ "Admin linkedin": "https://www.linkedin.com/in/anisharma002/",
+ "Admin github": "https://github.com/anisharma07",
+ "Tech stack": "React Native, Typescript, CSS, Firebase, Zustand, Google Genai, Figma",
+ "keyword": "phase2"
+ },
+ {
+ "Project name": "STYLEKA",
+ "Project description": "Fashion E-commerce Website",
+ "Project link": "https://www.github.com/SAMBUDAR/Styleka",
+ "Project admin": "Aniket Khullar",
+ "Admin linkedin": "https://www.linkedin.com/in/aniket-khullar-b3912424b?utm_source=share&utm_campaign=share_via&utm_content=profile&utm_medium=android_app",
+ "Admin github": "https://github.com/SAMBUDAR",
+ "Tech stack": "HTML CSS NODEJS",
+ "keyword": "phase2"
+ },
+ {
+ "Project name": "CinderPeak",
+ "Project description": "CinderPeak is a fast and efficient, open-source C++ graph library designed to handle directed, undirected, and mixed graphs with customizable vertex and edge types. Built with modern C++ (C++17/C++20), it offers a flexible, templated API for graph manipulation and analysis. The library includes an integrated visualization engine powered by SFML, enabling intuitive graph rendering for visual insights. CinderPeak is thread-safe, portable, and optimized for integration into larger projects, making it ideal for graph theory applications, data analysis, and network modeling.",
+ "Project link": "https://github.com/SharonIV0x86/CinderPeak",
+ "Project admin": "Anirudh Lakhanpal",
+ "Admin linkedin": "https://www.linkedin.com/in/lanirudh/",
+ "Admin github": "https://github.com/SharonIV0x86/",
+ "Tech stack": "C++",
+ "keyword": "phase2"
+ },
+ {
+ "Project name": "Retail with purpose: Building a sustainable and responsible future",
+ "Project description": "Sustainability is no longer an optionit a necessity. As consumers demand more eco-conscious choices, retailers must reimagine their operations to reduce waste, lower carbon footprints and create a more responsible supply chain. From sustainable sourcing and eco-friendly packaging to energy-efficient store designs and AI-driven waste reduction, innovation is transforming how businesses operate while ensuring long-term environmental and economic benefits.\n \n Walmart is at the forefront of this shift, leveraging AI to optimize supply chains and minimize waste. Their collaboration with GreenPod Labs is revolutionizing the way fresh produce is stored and transported, extending shelf life and significantly reducing food waste. These AI-powered strategies are ensuring fresher products, less spoilage and a more efficient distribution process, setting a new standard for sustainability in retail. Read more here.\n \n Beyond food sustainability, retailers are embracing circular economy models, closed-loop recycling systems and smart energy management to reduce emissions and drive impact at scale. The future of retail is not just about selling productsit about creating a positive, lasting impact on the planet and society.\n \n Think of solutions that retail businesses can leverage to push the boundaries of sustainability. Can your ideas lead to innovations in green logistics, zero-waste supply chains, ethical sourcing or carbon-neutral retail operations? Think beyond today solutions and help shape a smarter, greener and more responsible future for retail.",
+ "Project link": "https://github.com/Gssoc-2025/co-supply-ai/tree/main",
+ "Project admin": "Anjali Jaiswal",
+ "Admin linkedin": "https://www.linkedin.com/in/anjali-jaiswal-442b0b251/",
+ "Admin github": "https://github.com/ANJALIJAISWAL4213",
+ "Tech stack": "The project backbone is a Python 3.11, FastAPI driven microservice architecture that stores geospatial data in PostgreSQL with PostGIS, while HyperledgerFabric secures supplychain provenance on a private blockchain. Machinelearning services run on PyTorch, using Prophet for timeseries demand forecasting, GoogleORTools for lowcarbon route optimisation, and YOLOv8 computervision models to detect spoilage. Highthroughput data streams move through Kafka, lightweight sensor events travel via MQTT, and Redis accelerates caching and job queues. A modern TypeScript front end built with Next.js14 and styled with TailwindCSS visualises insights through Recharts dashboards. Everything ships in DockerCompose, integrates with GitHubActions for CI/CD, and can be provisioned to AWSEKS using Terraform.",
+ "keyword": "phase2"
+ },
+ {
+ "Project name": "DevSync",
+ "Project description": "DevSync is an open-source developer productivity dashboard that aggregates coding activity from platforms like GitHub, LeetCode, and Codeforces. It helps developers track their growth, visualize progress with heatmaps and streaks, and stay consistent all in one unified interface",
+ "Project link": "https://github.com/DevSyncx/DevSync.git",
+ "Project admin": "Annanya Tiwary",
+ "Admin linkedin": "https://www.linkedin.com/in/annanyatiwary4/",
+ "Admin github": "https://github.com/Annanyatiwary4",
+ "Tech stack": "Frontend: React, Tailwind CSS, Shadcn UI\n Backend: Node.js, Express.js\n Database: MongoDB\n Auth: JWT / OAuth\n Deployment: Vercel (Frontend), Render (Backend)",
+ "mentor 1": "Shirshendu R Tripathi",
+ "mentor 1 github": "https://github.com/ShirshenduR",
+ "mentor 1 linkedin": "https://linkedin.com/in/shirshendur",
+ "keyword": "phase2"
+ },
+ {
+ "Project name": "GameOn",
+ "Project description": "Basically it is the sports meetup app for tge players so that can play and connect in their free time.",
+ "Project link": "https://github.com/AnshulPanwarr/g1new",
+ "Project admin": "Anshul Panwar",
+ "Admin linkedin": "https://www.linkedin.com/in/anshul-panwarrr",
+ "Admin github": "https://github.com/AnshulPanwarr/g1new",
+ "Tech stack": "Android SDK,java,kotlin,jetpack compose,spring boot,figma",
+ "keyword": "phase2"
+ },
+ {
+ "Project name": "Build on Coffee",
+ "Project description": "An open source platform consisting curated lists of free resourses workshops and tools which helps computer science students to learn",
+ "Project link": "https://github.com/anup2702/build-on-coffee",
+ "Project admin": "Anup Kumar",
+ "Admin linkedin": "https://linkedin.com/in/anup001",
+ "Admin github": "hhtps://github.com/anup2701",
+ "Tech stack": "MERN",
+ "keyword": "phase2"
+ },
+ {
+ "Project name": "Creators-Space",
+ "Project description": "Creators-Space is an open-source modern tech-learning platform created to empower students and professionals through high-quality content and career-oriented resources",
+ "Project link": "https://github.com/Creators-Space/Creators-Space",
+ "Project admin": "Anurag Vishwakarma",
+ "Admin linkedin": "https://linkedin.com/in/anuragvishwakarma",
+ "Admin github": "https://github.com/vishanurag",
+ "Tech stack": "HTML, CSS, JavaScript",
+ "mentor 2": "Rahma Khan",
+ "Mentor 2 linkedin": "https://www.linkedin.com/in/rahma-naqui",
+ "mentor 2 github": "https://github.com/Rahma5983",
+ "keyword": "phase2"
+ },
+ {
+ "Project name": "Canvas-Editor",
+ "Project description": "This is a simple beginner friendly web project that is made with an aim to learn about canvas element of html. Now, this project is open to all of the amazing contributors.",
+ "Project link": "https://github.com/vishanurag/Canvas-Editor/",
+ "Project admin": "Anurag Vishwakarma",
+ "Admin linkedin": "https://www.linkedin.com/in/anuragvishwakarma/",
+ "Admin github": "https://github.com/vishanurag/",
+ "Tech stack": "HTML, CSS, Bootstrap, JavaScript",
+ "mentor 1": "Shirshendu R Tripathi",
+ "mentor 1 github": "https://github.com/ShirshenduR",
+ "mentor 1 linkedin": "https://linkedin.com/in/shirshendur",
+ "keyword": "phase2"
+ },
+ {
+ "Project name": "Netflix Clone",
+ "Project description": "This netflix clone is prepared by using HTML, CSS, and Javascript",
+ "Project link": "https://github.com/Aqsa4066/netflixclone",
+ "Project admin": "Aqsa Choudhary",
+ "Admin linkedin": "https://www.linkedin.com/in/aqsa-choudhary-011ba6304?utm_source=share&utm_campaign=share_via&utm_content=profile&utm_medium=android_app",
+ "Admin github": "https://github.com/Aqsa4066",
+ "Tech stack": "C++, Java, HTML, CSS, Javascript, VS Code, GitHub",
+ "mentor 1": "Rahma Khan",
+ "mentor 1 github": "https://www.linkedin.com/in/rahma-naqui",
+ "mentor 1 linkedin": "https://github.com/Rahma5983",
+ "keyword": "phase2"
+ },
+ {
+ "Project name": "Student Grade tracker",
+ "Project description": "A simple Python-based CLI app to manage student grades add marks, calculate average, highest, and lowest scores all stored locally in a clean JSON format. Perfect for beginners learning Python and file handling.",
+ "Project link": "https://github.com/Archita0905/Student-Grade-Tracker",
+ "Project admin": "Archita",
+ "Admin linkedin": "https://www.linkedin.com/in/archita-70a688316",
+ "Admin github": "https://github.com/Archita0905",
+ "Tech stack": "python",
+ "keyword": "phase2"
+ },
+ {
+ "Project name": "Javaistic",
+ "Project description": "Javaistic is an open source, comprehensive website for learning Java programming, packed with detailed information and programs covering everything from basics to advanced topics, including arrays, strings, 2D arrays, recursion, matrices, and more.",
+ "Project link": "https://github.com/javaistic/javaistic",
+ "Project admin": "Arghya Ghosh",
+ "Admin linkedin": "https://linkedin.com/in/uiuxarghya",
+ "Admin github": "https://github.com/uiuxarghya",
+ "Tech stack": "Next.JS, Tailwind CSS, MDX, MongoDB, BetterAuth, shadcn/ui, algolia, etc.",
+ "keyword": "phase2"
+ },
+ {
+ "Project name": "Jarvis- AI assistant",
+ "Project description": "Jarvis is a Python-based virtual AI assistant designed to perform tasks through voice commands. It can greet the user, search information on Google or Wikipedia, provide weather updates, open websites and applications, send emails, and control basic system functions like playing music or shutting down the PC. Using libraries like SpeechRecognition and pyttsx3, Jarvis offers an interactive experience that simulates a smart personal assistant, making everyday tasks easier and more efficient.",
+ "Project link": "github.com/Arpitgarg07/Jarvis",
+ "Project admin": "Arpit garg",
+ "Admin linkedin": "https://in.linkedin.com/in/arpitgarg5689",
+ "Admin github": "http://github.com/Arpitgarg07",
+ "Tech stack": "python3 and libraries",
+ "keyword": "phase2"
+ },
+ {
+ "Project name": "FitFinder : Internships and Scholarships",
+ "Project description": "It is a smart platform that helps students discover real internships, scholarships, and programs that actually match their profile. You fill in a simple form (skills, major, GPA, location), and it shows you the best-fit opportunities along with a \"chance score\" like Low, Medium, or High.\n \n Plus, past users can share how they got in and what helped them, so others can learn and apply with more confidence!",
+ "Project link": "github.com/Code-social/fitfinder",
+ "Project admin": "Arushi Malhotra",
+ "Admin linkedin": "https://www.linkedin.com/in/malhotra-arushi/",
+ "Admin github": "https://github.com/arushi2610",
+ "Tech stack": "HTML, CSS, JS, REACT, NODEJS, FIREBASE",
+ "keyword": "phase2"
+ },
+ {
+ "Project name": "FitFinder : Internships and Scholarships",
+ "Project description": "It is a smart platform that helps students discover real internships, scholarships, and programs that actually match their profile. You fill in a simple form (skills, major, GPA, location), and it shows you the best-fit opportunities along with a \"chance score\" like Low, Medium, or High.\n \n Plus, past users can share how they got in and what helped them, so others can learn and apply with more confidence!",
+ "Project link": "github.com/Code-social/fitfinder",
+ "Project admin": "Arushi Malhotra",
+ "Admin linkedin": "https://www.linkedin.com/in/malhotra-arushi/",
+ "Admin github": "https://github.com/arushi2610",
+ "Tech stack": "HTML, CSS, JS, REACT, NODEJS, FIREBASE",
+ "keyword": "phase2"
+ },
+ {
+ "Project name": "ThinkDSA Extension",
+ "Project description": "AI-powered LeetCode companion that provides intelligent hints, scores your understanding, and helps you learn DSA concepts step-by-step",
+ "Project link": "https://github.com/itsaryanchauhan/ThinkDSA-Extension",
+ "Project admin": "Aryan Chauhan",
+ "Admin linkedin": "https://www.linkedin.com/in/itsaryanchauhan",
+ "Admin github": "https://github.com/itsaryanchauhan",
+ "Tech stack": "JavaScript ES6+, Chrome Extension API, Google Gemini AI, HTML5, CSS3",
+ "keyword": "phase2"
+ },
+ {
+ "Project name": "AI code detection",
+ "Project description": "Detect whether the code is AI generated or Human generated",
+ "Project link": "https://github.com/Aseema-s/AICodeDetection",
+ "Project admin": "Aseema S",
+ "Admin linkedin": "https://www.linkedin.com/in/aseema-s-71257932b?utm_source=share&utm_campaign=share_via&utm_content=profile&utm_medium=android_app",
+ "Admin github": "https://github.com/Aseema-s",
+ "Tech stack": "Python HTML CSS JavaScript",
+ "keyword": "phase2"
+ },
+ {
+ "Project name": "pocketLIFE",
+ "Project description": "A place to look back at your life and write the present, with activity heatmap",
+ "Project link": "https://github.com/ashish-um/pocketLIFE",
+ "Project admin": "Ashish Umrao",
+ "Admin linkedin": "https://www.linkedin.com/in/ashish-um",
+ "Admin github": "https://www.github.com/ashish-um",
+ "Tech stack": "MERN stack",
+ "keyword": "phase2"
+ },
+ {
+ "Project name": "DevDisplay",
+ "Project description": "The First Global Platform for Developers to Fulfill All Their Tech Needs.",
+ "Project link": "https://github.com/codeaashu/DevDisplay",
+ "Project admin": "Ashutosh Kumar",
+ "Admin linkedin": "https://www.linkedin.com/in/ashutoshkumaraashu/",
+ "Admin github": "https://github.com/codeaashu",
+ "Tech stack": "Full Stack Web Development ( MERN )",
+ "keyword": "phase2"
+ },
+ {
+ "Project name": "Hospital Management System",
+ "Project description": "Medimate 8.4.3 is a user-friendly healthcare application that streamlines the workflow of hospitals, clinics, and medical facilities. It efficiently manages patient information, appointments, laboratory management, and administrative tasks through its Electronic Health Record (EHR) system. The app also includes appointment scheduling, and invoicing, inventory management, and comprehensive reporting and analytics capabilities. It is web-based software, Medimate 8.4.3 can be accessed from any device with an internet connection.",
+ "Project link": "https://github.com/aashut0xhkr/HMS_PRJCT.git",
+ "Project admin": "Ashutosh Kumar",
+ "Admin linkedin": "www.linkedin.com/in/aashut0xh",
+ "Admin github": "www.github.com/aashut0xhkr",
+ "Tech stack": "Core Java, Java 8 features, Spring Boot, Hibernate JPA, Spring Security, JWT Token, MySQL database, Restful Services, Version control Git",
+ "keyword": "phase2"
+ },
+ {
+ "Project name": "Project Xangoes",
+ "Project description": "A comprehensive full-stack system for managing college fests and events, designed to centralize event management, registration handling, and transaction tracking for educational institutions.",
+ "Project link": "https://github.com/dscnitrourkela/project-xangoes",
+ "Project admin": "Ayush",
+ "Admin linkedin": "https://wwwhttps://www.linkedin.com/in/dsc-nit-rourkela-949832337",
+ "Admin github": "https://github.com/dscnitrourkela",
+ "Tech stack": "Next.js, React, React DOM, TypeScript, Bun, Tailwind CSS, PostCSS, ESLint, Turbopack, Hono, PostgreSQL, Drizzle ORM, Drizzle Kit, Zod, dotenv, TSX, Git, Node.js types, pg (PostgreSQL driver)",
+ "keyword": "phase2"
+ },
+ {
+ "Project name": "Edutype",
+ "Project description": "Platform providing typing certifications (that can be minted as NFT) and featuring arenas to play with global players.",
+ "Project link": "https://github.com/aykansal/edutype",
+ "Project admin": "Ayush",
+ "Admin linkedin": "https://linkedin.com/in/aykansal",
+ "Admin github": "https://github.com/aykansal",
+ "Tech stack": "Nextjs, Express, Prisma, Thirdweb, Socketio, Tailwind, Shadcn",
+ "keyword": "phase2"
+ },
+ {
+ "Project name": "Natively UI",
+ "Project description": "The collection of best reusable React Native Ul components styled with Tailwind/Nativewind.",
+ "Project link": "https://github.com/Ayushhgupta39/natively-ui",
+ "Project admin": "Ayush Gupta",
+ "Admin linkedin": "a06a237/https://www.linkedin.com/in/ayush-gupta-b0a06a237/",
+ "Admin github": "https://github.com/Ayushhgupta39",
+ "Tech stack": "React Native, Expo, Nextjs, NativeWind, Tailwind, Turborepo",
+ "keyword": "phase2"
+ },
+ {
+ "Project name": "LinkNest",
+ "Project description": "A personal knowledge management application.",
+ "Project link": "github.com/ayushsoni02/LinkNest",
+ "Project admin": "Ayush Soni",
+ "Admin linkedin": "www.linkedin.com/in/as241",
+ "Admin github": "www.github.com/ayushsoni02",
+ "Tech stack": "react, nodejs, typescript, Mongodb",
+ "mentor 1": "Hussnain Ahmad",
+ "mentor 1 github": "https://github.com/itspsychocoder",
+ "mentor 1 linkedin": "https://linkedin.com/in/Hussnain-Ahmad/",
+ "keyword": "phase2"
+ },
+ {
+ "Project name": "HotelOnTouch",
+ "Project description": "Gssoc open source contribution",
+ "Project link": "https://github.com/ayan-biswas0412/gssoc2021-HotelOnTouch",
+ "Project admin": "Ayushman Mukherjee",
+ "Admin linkedin": "https://www.linkedin.com/in/ayushman-mukherjee-437a49314/",
+ "Admin github": "https://github.com/ayush585",
+ "Tech stack": "javascript, java, html, objective-C, Css, Ruby, Starlank",
+ "keyword": "phase2"
+ },
+ {
+ "Project name": "Shakti app",
+ "Project description": "Shakti is a safe, anonymous, and multilingual platform empowering survivors and everyday heroes to share their truths — through voice or text — in their own words and languages.",
+ "Project link": "https://github.com/my-projects-it/shakti-app",
+ "Project admin": "Barkha jain",
+ "Admin linkedin": "https://www.linkedin.com/in/barkha-jain-347738373",
+ "Admin github": "https://github.com/my-projects-it",
+ "Tech stack": "Python and Streamlit",
+ "mentor 1": "Snehashish Das",
+ "mentor 1 github": "https://github.com/Snehashish-Das",
+ "mentor 1 linkedin": "https://www.linkedin.com/in/snehashish-das-160359226/",
+ "keyword": "phase2"
+ },
+ {
+ "Project name": "AI Flow",
+ "Project description": "AI Flow is a web application that provides a suite of AI-powered productivity tools, including prompt enhancement, text summarization, code and SQL explanation, regex generation, language translation, and sentiment analysis. The platform features a modern, responsive interface, secure authentication, and integrates with the Gemini 2.0 Flash API for fast and accurate results. AI Flow is designed to help users streamline workflows, learn faster, and leverage artificial intelligence in everyday tasks.",
+ "Project link": "https://github.com/Jyotibrat/AI-Flow",
+ "Project admin": "Bindupautra Jyotibrat",
+ "Admin linkedin": "https://www.linkedin.com/in/bindupautra-jyotibrat",
+ "Admin github": "https://github.com/Jyotibrat",
+ "Tech stack": "TypeScript, React, Vite, Supabase, Gemini 2.0 Flash API, Blogger API",
+ "keyword": "phase2"
+ },
+ {
+ "Project name": "VoicePe",
+ "Project description": "Emphasize the social impact on daily wage workers.",
+ "Project link": "https://github.com/your-username/VoicePe",
+ "Project admin": "Biradar Vanshika",
+ "Admin linkedin": "https://www.linkedin.com/in/biradar-vanshika-8a153129a",
+ "Admin github": "https://github.com/Biradarvanshika",
+ "Tech stack": "React, Node.js, Supabase, Twilio, Tailwind CSS.",
+ "keyword": "phase2"
+ },
+ {
+ "Project name": "ecopulse",
+ "Project description": "Rising heatwaves and air pollution are a growing threat to people and the \n \n Planet . Today solutions merely track numbers --- what we need are actionable, local steps",
+ "Project link": "https://github.com/ghosttrozan/EcoPulse",
+ "Project admin": "Bobbby",
+ "Admin linkedin": "https://www.linkedin.com/in/ghosttrozan?utm_source=share&utm_campaign=share_via&utm_content=profile&utm_medium=android_app",
+ "Admin github": "github.com/ghosttrozan",
+ "Tech stack": "Nextjs",
+ "keyword": "phase2"
+ },
+ {
+ "Project name": "BodyCraft-Gym",
+ "Project description": "BodyCraft Gym Welcome to BodyCraft Gym, your ultimate fitness destination! Mission Empowering individuals to sculpt their bodies, sharpen their minds, and unlock their full potential.",
+ "Project link": "https://github.com/BDutta18/BodyCraft-Gym",
+ "Project admin": "Bodhisatwa Dutta",
+ "Admin linkedin": "https://www.linkedin.com/in/bodhisatwa-dutta",
+ "Admin github": "https://github.com/BDutta18",
+ "Tech stack": "Html,Css",
+ "mentor 1": "Piyush Sharma",
+ "mentor 1 github": "https://github.com/daksh-ugi",
+ "mentor 1 linkedin": "https://www.linkedin.com/in/piyush-ugi/",
+ "keyword": "phase2"
+ },
+ {
+ "Project name": "RESUMELY",
+ "Project description": "The development of the AI Resume Builder was guided by a prompt engineering-based approach rather than training or fine-tuning a large model from scratch. Since large language models like GPT-3.5 or Gemini 1.5 are already pre-trained on vast corpora, we chose to utilize their capabilities through carefully crafted zero-shot and few-shot prompts to generate resume summaries, skill recommendations, and professional language formatting. This allowed us to build a highly functional and resource-efficient solution without requiring high computational power or extensive model training.\n \n We focused on iterative prompt design, where inputs from the user (education, skills, experience) are combined into a structured prompt that instructs the generative model to create a formal, concise resume summary. The main strategy was optimizing input instructions to yield the most humanlike and contextually appropriate output.",
+ "Project link": "https://resumely.streamlit.app/",
+ "Project admin": "Chhavi Bhalla",
+ "Admin linkedin": "https://www.linkedin.com/in/chhaviibhalla",
+ "Admin github": "https://github.com/chhavibhalla",
+ "Tech stack": "streamlit for ui , API integration , FPDF, prompt engineering",
+ "keyword": "phase2"
+ },
+ {
+ "Project name": "amazon sales 2025",
+ "Project description": "here where the data is share from other organisation an i cleaned the data and visuvalized the data in powebi",
+ "Project link": "https://github.com/charantej-18/Amazon_sales",
+ "Project admin": "D charan teja",
+ "Admin linkedin": "https://www.linkedin.com/in/d-charan-teja-56729b2ba?utm_source=share&utm_campaign=share_via&utm_content=profile&utm_medium=ios_app",
+ "Admin github": "https://github.com/charantej-18",
+ "Tech stack": "powebi,data cleaning,visuvalization",
+ "keyword": "phase2"
+ },
+ {
+ "Project name": "EcoConnect",
+ "Project description": "EcoConnect is an AI-powered gamified waste management platform that promotes sustainable habits through education, recognition, and community engagement. The platform leverages AI to recognize waste types from images, guides users on correct segregation, and awards green points redeemable for eco-friendly products or discounts. Users are also connected with nearby recycling vendors, NGOs, and municipal programs.\n \n EcoConnect aims to reduce landfill load, cut carbon emissions, and promote a circular economy by integrating behavior change with real-time tech and community-based incentives. It's scalable, inclusive, and built for India's diverse geography and digital literacy levels.",
+ "Project link": "https://github.com/Deepjyoti-coder/EcoConnect-",
+ "Project admin": "Deepjyoti Saha",
+ "Admin linkedin": "https://www.linkedin.com/in/deepjyotisaha102ab4647312?utm_source=share&utm_campaign=share_via&utm_content=profile&utm_medium=android_app",
+ "Admin github": "https://github.com/Deepjyoti-coder",
+ "Tech stack": "Frontend React.js, Tailwind CSS, Next.js\n Backend Node.js, Express.js\n Database MongoDB, Firebase Firestore\n AI/ML TensorFlow.js (browser-based inference), Python (waste classification model), OpenCV for image preprocessing\n Gamification & Rewards Custom Rule Engine, Firebase Cloud Functions\n Authentication Firebase Auth\n Cloud & Hosting Google Cloud Platform, Vercel\n APIs Google Maps API (vendor locator), REST APIs for user management & rewards\n Others GitHub for version control, Figma for UI/UX, Postman for API testing",
+ "keyword": "phase2"
+ },
+ {
+ "Project name": "EcoConnect",
+ "Project description": "EcoConnect is a gamified, AI-powered platform that helps users segregate waste correctly, rewards them for eco-friendly actions, and connects them with local recyclers or NGOs. It turns everyday waste into impact by bridging the gap between individual habits and the circular economymaking sustainability simple, engaging, and rewarding.",
+ "Project link": "https://github.com/Deepjyoti-coder/EcoConnect-/tree/main",
+ "Project admin": "Deepjyoti Saha",
+ "Admin linkedin": "https://www.linkedin.com/in/deepjyotisaha102ab4647312?utm_source=share&utm_campaign=share_via&utm_content=profile&utm_medium=android_app",
+ "Admin github": "https://github.com/Deepjyoti-coder",
+ "Tech stack": "hmtl,css,js,type script",
+ "keyword": "phase2"
+ },
+ {
+ "Project name": "Eco-Store",
+ "Project description": "This project is a user-friendly platform dedicated to promoting sustainable living by offering a cursted selection of eco-friendly products. Beyond shopping, the website empowers users to make informed environmental choices with an integrated carbon footprint calculator that estimates the carbon impact of everyday items and activities. By combining green shopping with actionable insights, the site encourages conscious consumption and helps users contribute to a healthier planet.",
+ "Project link": "https://github.com/Devaki01/Eco",
+ "Project admin": "Devaki Joshi",
+ "Admin linkedin": "https://www.linkedin.com/in/devaki-joshi-033b6a307?utm_source=share&utm_campaign=share_via&utm_content=profile&utm_medium=android_app",
+ "Admin github": "https://github.com/Devaki01",
+ "Tech stack": "React, Express js, Node js, Mongo db, firebase",
+ "mentor 1": "Shirshendu R Tripathi",
+ "mentor 1 github": "https://github.com/ShirshenduR",
+ "mentor 1 linkedin": "https://linkedin.com/in/shirshendur",
+ "keyword": "phase2"
+ },
+ {
+ "Project name": "Rusticle",
+ "Project description": "A custom indie-first language interpreter in rust for Lin.",
+ "Project link": "https://github.com/thedevyashsaini/rusticle",
+ "Project admin": "Devyash Saini",
+ "Admin linkedin": "https://linkedin.com/in/thedevyashsaini",
+ "Admin github": "https://github.com/thedevyashsaini",
+ "Tech stack": "Rust",
+ "keyword": "phase2"
+ },
+ {
+ "Project name": "Smart Tourism Assistant",
+ "Project description": "An AI-powered web application that helps tourists explore Karnataka by recommending personalized places, restaurants, and cultural events. Built with a focus on local language support and smart itinerary planning.",
+ "Project link": "https://github.com/yourusername/smart-tourism-assistant",
+ "Project admin": "Dhanush B M",
+ "Admin linkedin": "https://www.linkedin.com/in/dhanush-bm-b162b4368?utm_source=share&utm_campaign=share_via&utm_content=profile&utm_medium=ios_app",
+ "Admin github": "https://github.com/dhanush-tech-ai-ml",
+ "Tech stack": "AI TOOLS",
+ "keyword": "phase2"
+ },
+ {
+ "Project name": "Jeanne AI chatbot Project",
+ "Project description": "Jeanne AI A Full-Stack Conversational Chatbot\n \n Jeanne AI is an intelligent, interactive chatbot built with the power of OpenAI's GPT model, designed to mimic human-like conversation. It supports natural language understanding, typing animation, chat history, and optional voice input/output features making it feel alive, helpful, and personal.\n \n This project uses a Node.js + Express backend and a React (Vite) frontend, structured in a scalable client/ and server/ folder architecture. The backend handles secure API calls to OpenAI, while the frontend provides a smooth and responsive chat interface. It's deployed using Render (backend) and Vercel (frontend) for production.\n \nFeatures\n \n Chat interface powered by GPT (via OpenAI API)\n \n Typing animation for realistic feel\n \n Chat history retention\n \n Switchable roles/personalities (friendly, formal, etc.)\n \n Optional speech-to-text and text-to-speech\n \n Responsive, mobile-friendly UI\n \n \nWhy Jeanne?\n \n Jeanne is imagined as a gentle, thoughtful AI companion someone who listens, helps, and responds with care. The name gives the bot a human-like identity, making the experience more cozy and personal.",
+ "Project link": "https://github.com/revxi/Jeanne-AI-Chatbot-Project",
+ "Project admin": "Diksha Singh",
+ "Admin linkedin": "https://www.linkedin.com/in/diksha-singh-7405a81a9?utm_source=share&utm_campaign=share_via&utm_content=profile&utm_medium=android_app",
+ "Admin github": "https://github.com/revxi",
+ "Tech stack": "Jeanne AI Chatbot uses React.js, Vite, Tailwind CSS, Framer Motion, React Speech Recognition, Text-to-Speech API, Axios, Fetch API, Node.js, Express.js, OpenAI API, dotenv, CORS, body-parser, with the frontend deployed on Vercel and the backend on Render using a structured client/ and server/ folder system.",
+ "keyword": "phase2"
+ },
+ {
+ "Project name": "LegalHuB AI-Powered Legal Help Platform",
+ "Project description": "LegalHuB is an AI-powered legal assistance platform designed to help users access legal information quickly and easily. It features a smart legal search engine, a legal dictionary, and state-specific document templates. Integrated with Chatbase AI, the platform enables intelligent responses to user queries while ensuring fast, reliable document retrieval.",
+ "Project link": "https://github.com/dipexplorer/LegalHuB",
+ "Project admin": "Dip Das",
+ "Admin linkedin": "https://www.linkedin.com/in/dip-jyoti22/",
+ "Admin github": "https://github.com/dipexplorer",
+ "Tech stack": "Backend: Node.js, Express.js\n \n Database: MongoDB\n \n AI Integration: Chatbase AI\n \n Frontend (Optional/Future Scope): React.js\n \n Security: JWT, RBAC\n \n Version Control: Git & GitHub",
+ "keyword": "phase2"
+ },
+ {
+ "Project name": "ZBOT",
+ "Project description": "Its a personal AI agent like harvis used to automate stuffs",
+ "Project link": "https://github.com/DishaA06/ZBOT",
+ "Project admin": "Disha Oza",
+ "Admin linkedin": "https://www.linkedin.com/in/disha-oza-bba48928a",
+ "Admin github": "https://github.com/DishaA06",
+ "Tech stack": "Python",
+ "keyword": "phase2"
+ },
+ {
+ "Project name": "Metal Sheet Defect Detector",
+ "Project description": "Detect Defects in metal sheets used to make the body of vehicles",
+ "Project link": "https://github.com/FarhanK20-hub/Metal-Sheet-Defect-Detector.git",
+ "Project admin": "Farhan Khan",
+ "Admin linkedin": "https://www.linkedin.com/in/farhan-khan-3aa5442b0?utm_source=share&utm_campaign=share_via&utm_content=profile&utm_medium=ios_app",
+ "Admin github": "https://github.com/FarhanK20-hub/",
+ "Tech stack": "Python(Flask) - backend , Yolo - model traning, React(Frontend)",
+ "keyword": "phase2"
+ },
+ {
+ "Project name": "Interactive Credit Card Financial Dashboard",
+ "Project description": "This project aims to build an interactive dashboard that helps visualize and monitor credit card customer transactions, balances, and spending behavior using real-world data. It includes data preprocessing using Python, database querying with SQL, and dynamic visualizations through Power BI. The goal is to enable stakeholders to make informed financial decisions through clear, insightful visual analytics.",
+ "Project link": "https://github.com/gowthamgspatil/credit-card-dashboard",
+ "Project admin": "GOWTHAM GS PATIL",
+ "Admin linkedin": "https://www.linkedin.com/in/gowthamgshivamuthy",
+ "Admin github": "https://github.com/gowthamgspatil",
+ "Tech stack": "Python, SQL, Power BI, Pandas, Excel",
+ "keyword": "phase2"
+ },
+ {
+ "Project name": "GrowCraft",
+ "Project description": "GrowCraft is a service-based web platform that offers digital solutions to businesses while providing training and internship opportunities to students. The platform features services like Website Development, Graphic Design, Content Writing, Social Media Management, and Digital Marketing.\n \n This open-source project aims to bridge the gap between learning and practical exposure. It is built using HTML, CSS, JavaScript, and Bootstrap. Through GSSoC, contributors can enhance the UI/UX, optimize responsiveness, improve code structure, and add new features like a blog, portfolio showcase, and contact backend integration.\n \n We welcome developers, designers, technical writers, and digital marketers to collaborate, learn, and grow with GrowCraft.",
+ "Project link": "https://github.com/gyanshankar1708/GrowCraft",
+ "Project admin": "Gyanshankar pd singh",
+ "Admin linkedin": "https://www.linkedin.com/in/gyanshankar1708/",
+ "Admin github": "https://github.com/gyanshankar1708",
+ "Tech stack": "HTML, CSS, Bootstrap, Javascript",
+ "keyword": "phase2"
+ },
+ {
+ "Project name": "Fitolution",
+ "Project description": "A modern , responsive Gym and Fitness web app designed to help users explore training programs , memberships options etc",
+ "Project link": "https://github.com/hammadii123/Fitolution",
+ "Project admin": "Hammad Mustafa",
+ "Admin linkedin": "https://www.linkedin.com/in/hammad-mustafa2/",
+ "Admin github": "https://github.com/hammadii123",
+ "Tech stack": "React.js",
+ "keyword": "phase2"
+ },
+ {
+ "Project name": "Hinglish voice ai",
+ "Project description": "Hinglish voice ai fine tunes hinglish in voice AI applications",
+ "Project link": "https://github.com/hardik1712/hinglish-voice-ai",
+ "Project admin": "Hardik Iyer",
+ "Admin linkedin": "www.linkedin.com/in/hardik-iyer-4b7792279",
+ "Admin github": "github.com/hardik1712",
+ "Tech stack": "Python , LangChain ,",
+ "keyword": "phase2"
+ },
+ {
+ "Project name": "RAG chatbot",
+ "Project description": "RAG chatbot was created on course of my internship",
+ "Project link": "https://github.com/hardik1712/RAG_chatbot",
+ "Project admin": "Hardik Iyer",
+ "Admin linkedin": "www.linkedin.com/in/hardik-iyer-4b7792279",
+ "Admin github": "github.com/hardik1712",
+ "Tech stack": "Python , LangChain ,",
+ "keyword": "phase2"
+ },
+ {
+ "Project name": "DevMatchups",
+ "Project description": "DevMatchups is a fullstack web platform which enables developes to connect together and form teams for hackathons. It solves the core problem of finding team or team mates for any hackathon. Users can explore all the hackathons from various websites at one place. Users can create dynamic profiles based on their resume.",
+ "Project link": "https://www.github.com/harsh3dev/DevMatchups",
+ "Project admin": "Harsh Pandey",
+ "Admin linkedin": "https://www.linkedin.com/in/harsh3dev",
+ "Admin github": "https://www.github.com/harsh3dev",
+ "Tech stack": "Nextjs, Tailwind CSS, Typescript, Prisma, Postgresql, Langchain, Docker",
+ "keyword": "phase2"
+ },
+ {
+ "Project name": "Privacy preserving from detection in cryptocurrency using federated learning (Ongoing Project)",
+ "Project description": "Privacy-Preserving Fraud Detection in Cryptocurrency using Federated Learning, this project detects fraudulent crypto transactions while maintaining user data privacy. It leverages federated learning to train models across decentralized data sources without sharing raw data, ensuring both security and accuracy.",
+ "Project link": "https://github.com/harshajain6114/Federated-learning-for-crpto-fraud",
+ "Project admin": "Harsha Jain",
+ "Admin linkedin": "https://www.linkedin.com/in/harsha-jain-b1859b287",
+ "Admin github": "https://github.com/harshajain6114",
+ "Tech stack": "Python, Federated Learning, TensorFlow Federated, Pandas, NumPy, Scikit-learn, Jupyter Notebook",
+ "keyword": "phase2"
+ },
+ {
+ "Project name": "SkillSphere",
+ "Project description": "SkillSphere Personalized Learning & Resource Hub for Engineering Students\n Tech Stack: React (Vite), Tailwind CSS\n \n SkillSphere is a frontend web platform that helps engineering students streamline their skill development through curated resources and structured mentorship opportunities.\n \n Core Features:\n \n Domain-Specific Resource Pages: Organized roadmaps, cheat sheets, YouTube playlists, practice platforms, and helpful links for areas like Web Development, UI/UX, DSA, AI/ML, and AR/VR.\n \n Mentorship Cohorts: Structured learning cohorts where students can join groups based on their chosen domain and connect with mentors for guidance and progress tracking.\n \n Personalized Learning Hub: Save preferred resources, track progress, and stay focused on skill-building through a distraction-free interface.\n \n Responsive, Minimal UI: Fast and accessible design built using React (with Vite) and styled with Tailwind CSS for a clean, mobile-friendly experience.\n \n \n Objective:\n To centralize quality learning resources, foster peer and mentor-driven growth, and provide a structured learning ecosystem for engineering students.",
+ "Project link": "https://github.com/codeX-Crafter/SkillSphere",
+ "Project admin": "Harshita",
+ "Admin linkedin": "https://www.linkedin.com/in/harshita-bansal-65ba40327/",
+ "Admin github": "https://github.com/codeX-Crafter",
+ "Tech stack": "React (Vite) and Tailwind",
+ "mentor 1": "Nouman Khan",
+ "mentor 1 github": "https://github.com/NoumanKhan2003",
+ "mentor 1 linkedin": "https://www.linkedin.com/in/nouman-khan-95923a256",
+ "keyword": "phase2"
+ },
+ {
+ "Project name": "Gurukul dream foundation",
+ "Project description": "gurukuldreamfoundation is a NGO website",
+ "Project link": "https://github.com/Himanshusk1/GDF",
+ "Project admin": "Himanshu Singh Kyariya",
+ "Admin linkedin": "https://www.linkedin.com/in/himanshu-singh-003934258/",
+ "Admin github": "https://github.com/Himanshusk1",
+ "Tech stack": "Html,css,javascript",
+ "keyword": "phase2"
+ },
+ {
+ "Project name": "Voice Marketing Agents",
+ "Project description": "OpenVoiceX is a powerful, open-source framework designed to help developers, businesses, and researchers build, deploy, and manage real-time voice-first AI systems. It brings together two complementary projectsOpenVoiceOS and Voice Marketing Agentsinto a single, unified platform. At its core, OpenVoiceX provides all the components you need to create sophisticated conversational assistants and AI-driven telephony agents. Whether it powering natural voice interactions on the web, automating phone calls for marketing and customer service, or experimenting with conversational AI research, OpenVoiceX gives you full controlwithout relying on expensive, proprietary APIs. The system is designed to be modular and extensible. You can integrate your preferred speech-to-text, large language models, and text-to-speech engines. Everything runs in a self-hosted, containerized environment using Docker, making it easy to deploy on your infrastructure and maintain full data ownership. A modern, web-based dashboard makes it possible to visually design, test, and manage your agents without writing code. For real-time voice interactions, OpenVoiceX achieves ultra-low latency pipelines, allowing conversations to flow naturallyeven with mid-sentence interruptions. It also supports traditional telephony services (like Twilio or Asterisk) and web-based voice clients out of the box. By combining a developer-first architecture with enterprise-grade features like multi-tenancy, encryption, and API key management, OpenVoiceX is not just a toolkitit a full-stack solution for building production-ready voice AI applications.",
+ "Project link": "https://github.com/OpenVoiceX/Voice-Marketing-Agent",
+ "Project admin": "Hitesh",
+ "Admin linkedin": "https://www.linkedin.com/in/hitesh-kumar-aiml/",
+ "Admin github": "https://github.com/Hiteshydv001",
+ "Tech stack": "Frontend: Next.js, React, TypeScript, Tailwind CSS, Shadcn/ui State & Data: Zustand, SWR, React Query Backend API: FastAPI (Python), Pydantic, SQLAlchemy (async) Auth: JWT (python-jose), passlib[bcrypt] Database: PostgreSQL, Alembic Cache: Redis Real-Time Engine: FastAPI Worker, WebSockets STT: faster-whisper (CTranslate2 Whisper) LLM: Ollama, TinyLlama TTS: Coqui TTS (VITS models) Telephony: Twilio, Plivo, Asterisk PBX Containerization: Docker, Docker Compose CI/CD: GitHub Actions, Docker Hub",
+ "keyword": "phase2"
+ },
+ {
+ "Project name": "Melodyminds-AI Powdered music player",
+ "Project description": "A Full stack music player with ad free listening and smart recommendations rivaling music streaming platforms",
+ "Project link": "https://github.com/powerstone666/MelodyMind",
+ "Project admin": "Imran Pasha",
+ "Admin linkedin": "https://www.linkedin.com/in/imranpasha636",
+ "Admin github": "https://github.com/powerstone666",
+ "Tech stack": "React Firebase tailwindcss",
+ "mentor 1": "Shirshendu R Tripathi",
+ "mentor 1 github": "https://github.com/ShirshenduR",
+ "mentor 1 linkedin": "https://linkedin.com/in/shirshendur",
+ "keyword": "phase2"
+ },
+ {
+ "Project name": "fake news detection",
+ "Project description": "analysis the fake data from news",
+ "Project link": "https://github.com/sachinruk/Fake-News-Detection",
+ "Project admin": "JINKALA VISHNU VARDHAN",
+ "Admin linkedin": "https://www.linkedin.com/posts/jinkala-vishnu-vardhan-328232325_micro-iit-activity-7311638531167150081-HeMo?utm_source=share&utm_medium=member_android&rcm=ACoAAFIU6lAB95SVuvTwo6dHplfgVZNaEhY6wdQ",
+ "Admin github": "no",
+ "Tech stack": "python, library , dataset",
+ "keyword": "phase2"
+ },
+ {
+ "Project name": "WaveFarer",
+ "Project description": "Created a real-time beach safety web application with React, incorporating INCOIS APIs for live ocean and weather data.Createdmachine learning and deep learning models to create dynamic coastal risk assessments based on environmental conditions.Created an interactive and responsive UI with React and geospatial mapping libraries for an easy-to-use experience.",
+ "Project link": "https://github.com/JoannaSharon06/WaveFarerFin",
+ "Project admin": "Joanna Sharon D",
+ "Admin linkedin": "https://www.linkedin.com/in/joanna-sharon-d/",
+ "Admin github": "https://github.com/JoannaSharon06",
+ "Tech stack": "React,PyTorch",
+ "keyword": "phase2"
+ },
+ {
+ "Project name": "FinTech",
+ "Project description": "FinTech is a simple and secure web application that helps users manage personal finances efficiently. Designed with a user-friendly interface and essential features, it allows users to register, log in, and track their financial data easily.",
+ "Project link": "https://github.com/KanishaSharma11/FinTech",
+ "Project admin": "Kanisha Ravindra Sharma",
+ "Admin linkedin": "https://www.linkedin.com/in/kanisha-sharma11/",
+ "Admin github": "https://github.com/KanishaSharma11",
+ "Tech stack": "HTML, CSS, Javascript, API",
+ "keyword": "phase2"
+ },
+ {
+ "Project name": "Attendance Tracker",
+ "Project description": "This Attendance Tracker is designed to monitor and manage student attendance across various subjects. It helps track attendance, ensures classes meet required attendance criteria, and provides a clear overview of attendance statistics. Additionally, it presents attendance data in an intuitive calendar format for easy reference.",
+ "Project link": "https://github.com/sachiikrish/AttendanceTracker.git",
+ "Project admin": "Kanishka",
+ "Admin linkedin": "https://in.linkedin.com/in/kanishka-tyagi-a334b128b",
+ "Admin github": "https://github.com/sachiikrish",
+ "Tech stack": "HTML, CSS , JavaScript, PHP, MySQL",
+ "keyword": "phase2"
+ },
+ {
+ "Project name": "rescuegrid - AI powered disaster management platform",
+ "Project description": "RescueGrid is an AI-based disaster management and communication platform built to support real-time coordination during emergency situations. It integrates live incident reporting, resource distribution, safe route mapping, and centralized control dashboards. The project welcomes contributors to enhance the UI/UX, optimize backend APIs, and expand AI-based modules. It is designed to give developers hands-on experience in building scalable, real-world solutions with social impact.",
+ "Project link": "https://github.com/MadhavArora1213/Diseaster_Management",
+ "Project admin": "Kashish singh",
+ "Admin linkedin": "linkdin.com/in/kashish-singh-70563300",
+ "Admin github": "github.com/KashishSingh1213",
+ "Tech stack": "reactjs,nodejs,firebase,tailwind css,js,html,css, github,goggle maps,api,postman",
+ "keyword": "phase2"
+ },
+ {
+ "Project name": "Ai Cosmetic Recommendation System",
+ "Project description": "ML based recommendation system that suggests cosmetics as per the user requirements.",
+ "Project link": "https://github.com/kasmya/AI-Cosmetic-Reccomendation-System",
+ "Project admin": "Kasmya Bhatia",
+ "Admin linkedin": "cd7331d1-366d-4383-bc31-d0b983e2ed19",
+ "Admin github": "https://github.com/kasmya",
+ "Tech stack": "Python, MySQL, Jupyter Notebook",
+ "keyword": "phase2"
+ },
+ {
+ "Project name": "One-stop-Guide",
+ "Project description": "One-Stop Guide ek city-exploration website hai jisme user city select karta hai, fir options milte hain jaise: Tourism, Shopping, Jobs, Restaurants, Pharmacy. Har option pe click karne se relevant info, image, aur Google Maps link dikhai deta hai.",
+ "Project link": "https://github.com/komalkhatod1105/One-Stop-Guide",
+ "Project admin": "Komal Khatod",
+ "Admin linkedin": "https://linkedin.com/in/komalkhatod",
+ "Admin github": "https://github.com/komalkhatod",
+ "Tech stack": "HTML Page structure\n \n CSS Design & layout\n \n JavaScript Interactivity\n \n PHP Backend logic\n \n MySQL Database\n \n PHP MySQLi Database connection\n \n Google Maps link Explore button ke liye",
+ "keyword": "phase2"
+ },
+ {
+ "Project name": "CKsEdu",
+ "Project description": "CKsEdu is a smart university platform that bridges students and faculty through real-time mentoring, academic collaboration, and AI-powered productivity tools. It creates a connected and supportive learning ecosystem tailored for university life.\n \n Key Features\n For Students:\n1:1 Video Mentoring with professors (live & scheduled)\n AI Assist for smart scheduling, notes, and grading\nStudent Chat & Group Collaboration\nE-Library & Study Resources\nMental Wellness & Counseling\nLeaderboards, Quizzes, and Achievements\nEvent Calendar & Announcements\nAcademic Progress Dashboard\n \n \nFor Faculty:\nSmart Document Organizer\nAnalytics Dashboard\nAI Agent Integration\n \nFast Workflow Tools\n Save time with AI-based grading, content suggestions, and calendar integration",
+ "Project link": "https://github.com/KrishChothani/CKsEdu",
+ "Project admin": "Krish Chothani",
+ "Admin linkedin": "https://www.linkedin.com/in/krish-chothani-797598284",
+ "Admin github": "https://github.com/KrishChothani",
+ "Tech stack": "Frontend: React (JavaScript & TypeScript), Vite, Tailwind CSS\n Backend: Node.js, Express.js, Flask\n Database & Storage: MongoDB, Cloudinary\n Deployment: AWS, Vercel",
+ "keyword": "phase2"
+ },
+ {
+ "Project name": "SQL ChatBot: Query Any Database Using Natural Language",
+ "Project description": "The SQL ChatBot is an intelligent assistant that allows users to interact with structured databases using natural language. Users can upload a CSV file or connect to an SQL/MongoDB database and ask questions like Show total sales in January, and the bot generates the SQL/Mongo query, executes it, and returns results with an explanation.\n \n This project is ideal for beginners and intermediate contributors interested in AI, databases, and full-stack development.",
+ "Project link": "https://github.com/Kumud-hasija/AI-powered-data-query-Chatbot",
+ "Project admin": "Kumud Hasija",
+ "Admin linkedin": "https://www.linkedin.com/in/kumud-hasija-060b172a2",
+ "Admin github": "https://github.com/Kumud-hasija",
+ "Tech stack": "Python, Streamlit, LangChain, OpenAI API, SQLite, PostgreSQL, MySQL, MongoDB, Pandas, SQLAlchemy, PyMongo, Git, GitHub",
+ "keyword": "phase2"
+ },
+ {
+ "Project name": "NEXUS.DAWN Emotional Intelligence OS",
+ "Project description": "NEXUS.DAWN is a futuristic open-source emotional intelligence operating system designed for immersive, AI-driven interactions. It combines voice AI, facial emotion detection, quantum computing metaphors, and blockchain identity into a self-evolving digital assistant platform. The system features a modular architecture, immersive UI (Three.js + React), secure backend, and emotional intelligence engine enabling contributors to explore AI, Web3, and system design in one unified ecosystem.",
+ "Project link": "https://github.com/kunal0297/Nexus_dawn.git",
+ "Project admin": "Kunal Pandey",
+ "Admin linkedin": "https://www.linkedin.com/in/kunal-pandey-8aa0a2324?utm_source=share&utm_campaign=share_via&utm_content=profile&utm_medium=android_app",
+ "Admin github": "https://github.com/kunal0297",
+ "Tech stack": "React, TypeScript, TailwindCSS, Three.js, Zustand, FastAPI, Python, OpenAI, ElevenLabs, Docker, FHIR, WebRTC, Gemini, Blockchain (ZK, Smart Contracts)",
+ "keyword": "phase2"
+ },
+ {
+ "Project name": "Doctrinix",
+ "Project description": "Doctrix - Doctor Appointment Booking App Doctrix is a smart and user-friendly doctor appointment booking app designed to simplify healthcare access for everyone. The app allows users to sign up and sign in securely, providing personalized access to healthcare services. With features ranging from doctor selection and medicine ordering to profile management, Doctrix offers a seamless digital healthcare experience.",
+ "Project link": "https://github.com/lalitsingh789/doctor-app",
+ "Project admin": "Lalit kumar Singh",
+ "Admin linkedin": "https://www.linkedin.com/in/lalit-kumar-singh-590068277?utm_source=share&utm_campaign=share_via&utm_content=profile&utm_medium=android_app",
+ "Admin github": "https://github.com/lalitsingh789",
+ "Tech stack": "React native,Mongodb,node.js",
+ "keyword": "phase2"
+ },
+ {
+ "Project name": "studymate",
+ "Project description": "StudyMate is an open-source platform built to support college students during their semester exam preparations. The idea behind creating this platform originated from a common observation many students begin studying only when exams are near, often leading to confusion, stress, and wasted time searching for study materials. To address this issue, StudyMate offers a centralized and reliable hub where students can access syllabus content, previous year question papers (PYQs), peer-shared exam feedback, and seek guidance from seniors. By bringing all essential academic resources into one accessible platform, StudyMate aims to help students save time, study more effectively, and feel more confident during exams. Additionally, it provides a great opportunity for beginner-friendly contributors to collaborate and grow in the open-source community.",
+ "Project link": "https://github.com/lovelymahor/StudyMate",
+ "Project admin": "Lovely Mahour",
+ "Admin linkedin": "https://www.linkedin.com/in/lovely-mahour-992316265?utm_source=share&utm_campaign=share_via&utm_content=profile&utm_medium=android_app",
+ "Admin github": "https://github.com/lovelymahor",
+ "Tech stack": "Frontend React.js, Tailwind CSS, JavaScript, HTML, CSS\n Backend Node.js, Express.js\n Database MongoDB (with Mongoose)\n Authentication JWT\n File Upload Multer\n Storage Cloudinary / Firebase Storage\n Hosting Vercel (frontend), Render or Railway (backend), MongoDB Atlas (database)\n Tools Postman (API testing), Git & GitHub (version control)",
+ "keyword": "phase2"
+ },
+ {
+ "Project name": "CodeCanvas",
+ "Project description": "CodeCanvas is an open-source platform for front-end developers to discover, share, and get inspired by amazing projects built with HTML, CSS, and JavaScript. Showcase your creativity and contribute to a vibrant community!",
+ "Project link": "https://github.com/Varshitha713/CodeCanvas",
+ "Project admin": "Macha Varshitha",
+ "Admin linkedin": "https://www.linkedin.com/in/varshitha-macha",
+ "Admin github": "https://github.com/Varshitha713",
+ "Tech stack": "HTML, CSS and JavaScript (Furtherly firebase)",
+ "keyword": "phase2"
+ },
+ {
+ "Project name": "first-contrib-placements",
+ "Project description": "A beginner-friendly open-source project that curates placement and learning resources for BTech students. It perfect for first-time contributors to learn GitHub by adding resources or improving the UI.\n \n With features like dropdown menus, dark/light mode toggles, and contributions from multiple developers, the project is growing into a helpful, community-driven resource for students preparing for placements.\n \n Highlights:\n \n Easy good first issues for new contributors\n \n Frontend improvements using HTML/CSS/JS\n \n Valuable content for students preparing for tech roles",
+ "Project link": "https://github.com/Varshitha713/first-contrib-placement",
+ "Project admin": "Macha Varshitha",
+ "Admin linkedin": "https://www.linkedin.com/in/varshitha-macha",
+ "Admin github": "https://github.com/Varshitha713",
+ "Tech stack": "HTML AND CSS",
+ "keyword": "phase2"
+ },
+ {
+ "Project name": "online voting system",
+ "Project description": "Online voting systems aim to provide a convenient, accessible, and secure platform for conducting elections digitally. They offer a potential alternative to traditional paper ballot or Electronic Voting Machine (EVM) based elections.",
+ "Project link": "https://github.com/madegowda11/online-voting-system",
+ "Project admin": "Madegowda N",
+ "Admin linkedin": "https://www.linkedin.com/in/madegowda-n11",
+ "Admin github": "https://github.com/madegowda11",
+ "Tech stack": "python, flask, html, JavaScript",
+ "keyword": "phase2"
+ },
+ {
+ "Project name": "RescueGrid AI-Powered Disaster Management Platform. etc.",
+ "Project description": "RescueGrid is an AI-based disaster management and communication platform built to support real-time coordination during emergency situations. It integrates live incident reporting, resource distribution, safe route mapping, and centralized control dashboards. The project welcomes contributors to enhance the UI/UX, optimize backend APIs, and expand AI-based modules. It is designed to give developers hands-on experience in building scalable, real-world solutions with social impact.",
+ "Project link": "https://github.com/MadhavArora1213/Diseaster_Management",
+ "Project admin": "Madhav Arora",
+ "Admin linkedin": "https://www.linkedin.com/in/madhav-arora-32b056254/",
+ "Admin github": "https://github.com/MadhavArora1213",
+ "Tech stack": "React.js, Node.js, Firebase, Tailwind CSS, JavaScript, HTML, CSS, Express.js, GitHub, Google Maps API, AI/ML (Planned), Postman",
+ "keyword": "phase2"
+ },
+ {
+ "Project name": "Ecommerce website",
+ "Project description": "This is an open-source eCommerce website developed to provide a fully functional online shopping experience. The platform includes features such as product listing, user authentication, cart management, payment gateway integration, and admin dashboard. The goal is to make the codebase beginner-friendly and scalable for contributors.",
+ "Project link": "https://github.com/Mahambabar12/Hackathon-Ecommerce-Website-main",
+ "Project admin": "Maham Babar",
+ "Admin linkedin": "https://www.linkedin.com/in/maham-babar-574098228?utm_source=share&utm_campaign=share_via&utm_content=profile&utm_medium=android_app",
+ "Admin github": "https://github.com/Mahambabar12",
+ "Tech stack": "next js",
+ "keyword": "phase2"
+ },
+ {
+ "Project name": "To do list",
+ "Project description": "The To-Do List Application is a simple Python-based project that helps users manage their daily tasks efficiently. Users can add new tasks, view the list of pending tasks, mark tasks as completed, and delete tasks they no longer need.\n \n This project is designed for beginners and helps develop essential programming concepts such as lists, dictionaries, user input, and conditionals in Python.",
+ "Project link": "https://github.com/Sindhuchowdhary23/CODSOFT",
+ "Project admin": "Mamillapalli sindhu",
+ "Admin linkedin": "https://www.linkedin.com/in/mamillapalli-sindhu-423310319?utm_source=share&utm_campaign=share_via&utm_content=profile&utm_medium=android_app",
+ "Admin github": "https://github.com/Sindhuchowdhary23",
+ "Tech stack": "python",
+ "keyword": "phase2"
+ },
+ {
+ "Project name": "streamlit application",
+ "Project description": "it is a personal chat bot runs on ur machine locally",
+ "Project link": "https://github.com/manideepBotsaa/streamlit_application",
+ "Project admin": "Manideep Botsa",
+ "Admin linkedin": "https://www.linkedin.com/in/manideep-botsa?utm_source=share&utm_campaign=share_via&utm_content=profile&utm_medium=android_app",
+ "Admin github": "https://github.com/manideepBotsaa",
+ "Tech stack": "python",
+ "mentor 1": "Aayush Kumar Gupta",
+ "mentor 1 github": "https://github.com/AayushKGupta12",
+ "mentor 1 linkedin": "https://www.linkedin.com/in/aayush-kumar-gupta-2b7952219",
+ "keyword": "phase2"
+ },
+ {
+ "Project name": "GroqTales",
+ "Project description": "GroqTales is an open-source platform merging AI and blockchain to reinvent digital storytelling: it empowers writers, artists, developers, and enthusiasts to craft AIgenerated stories and comic-style narratives using Groq, customize genres, characters, settings, creativity levels, and then mint their creations as NFTs on the Monad blockchain (currently on Testnet with future Mainnet support) . The platform supports real-time story streaming, intuitive wallet integration, IPFS-backed metadata storage, and a community gallery for sharing and engagement all built with React/Next.js, Node.js, MongoDB, and smart contracts with ethers.js compatibility",
+ "Project link": "https://github.com/Drago-03/GroqTales",
+ "Project admin": "Mantej Singh Arora",
+ "Admin linkedin": "httpshttps://www.linkedin.com/in/mantej-singh-arora/",
+ "Admin github": "https://github.com/Drago-03",
+ "Tech stack": "TypeScript, JavaScript, React, Next.js, Node.js, MongoDB, Solidity, ethers.js, IPFS, Groq API, Unsplash API, Python, Framer Motion, shadcn/ui, Lucide React, Vercel, Foundry.",
+ "keyword": "phase2"
+ },
+ {
+ "Project name": "Project Management System",
+ "Project description": "Advanced Project Management System is a real-time, collaborative platform to manage projects, tasks, and teams efficiently.\n It features dashboards, kanban boards, analytics, chat, and notifications with role-based access.\n Built with React, Node.js, MongoDB, and Socket.IO, it designed for seamless teamwork.",
+ "Project link": "https://github.com/MitulSonagara/project-management-system",
+ "Project admin": "Mitul Sonagara",
+ "Admin linkedin": "https://www.linkedin.com/in/mitulsonagara",
+ "Admin github": "https://github.com/MitulSonagara",
+ "Tech stack": "React, Vite, Redux Toolkit, TailwindCSS, Material Tailwind, Node.js, Express.js, MongoDB, Socket.IO, JWT Authentication, Role-Based Access Control",
+ "keyword": "phase2"
+ },
+ {
+ "Project name": "Dev Resumes AI",
+ "Project description": "DevResume.AI is a modern, drag-and-drop resume builder powered by AI. Generate perfectly structured, ATS-compliant resumes with smart bullet points, summaries, and beautiful designs all in your browser.",
+ "Project link": "https://github.com/Anasmalik57/Dev-Resume-AI",
+ "Project admin": "Mohd Anas",
+ "Admin linkedin": "https://linkedin.com/in/anasmalik57",
+ "Admin github": "https://github.com/Anasmalik57",
+ "Tech stack": "Frontend:- React, Vite, TailwindCSS, Framer Motion (optional), html2pdf.js, Backend:- Node.js, Express.js, OpenAI API",
+ "keyword": "phase2"
+ },
+ {
+ "Project name": "Voice-Marketing-Agent",
+ "Project description": "OpenVoiceX is an innovative voice agent platform that transforms marketing through AI-powered voice interactions. Built with Next.js and TypeScript, it features a modern UI, secure authentication, and scalable architecture. The platform includes voice command recognition, multi-language support, and a comprehensive dashboard for managing voice marketing campaigns. Key features include real-time voice processing, analytics, and customizable voice agent configurations.",
+ "Project link": "https://github.com/OpenVoiceX/Web-Voice-marketing-Agent",
+ "Project admin": "Mohd Mashruf",
+ "Admin linkedin": "https://www.linkedin.com/in/mohd-mashruf/",
+ "Admin github": "https://github.com/mashrufmohd",
+ "Tech stack": "TypeScript,React,Next.js,Git",
+ "keyword": "phase2"
+ },
+ {
+ "Project name": "Weather app",
+ "Project description": "Create a weather app just using HTML,CSS,JS",
+ "Project link": "https://github.com/MukulSha-afk/Weather-App",
+ "Project admin": "Mukul Sharma",
+ "Admin linkedin": "https://www.linkedin.com/in/mukul-sharma-922b34313/",
+ "Admin github": "https://github.com/MukulSha-afk",
+ "Tech stack": "html ,css ,js python",
+ "keyword": "phase2"
+ },
+ {
+ "Project name": "tech event",
+ "Project description": "using CSV file filter the events",
+ "Project link": "https://github.com/muskan-fatim/Tech_event",
+ "Project admin": "Muskan fatima | CA",
+ "Admin linkedin": "https://www.linkedin.com/feed/update/urn:li:activity:7346013905854283777",
+ "Admin github": "https://github.com/muskan-fatim?tab=repositories",
+ "Tech stack": "Next J's, tailwind css, typescript",
+ "keyword": "phase2"
+ },
+ {
+ "Project name": "WildQuest",
+ "Project description": "WildQuest is an interactive platform with quizzes, games, and articles to raise awareness about endangered wildlife and conservation.Also it provides the feature of virtual adoption of wild and endangered animals.",
+ "Project link": "https://github.com/Nayanika1402/WildQuest",
+ "Project admin": "Nayanika Mukherjee",
+ "Admin linkedin": "https://www.linkedin.com/in/nayanika-mukherjee-76a24027b/",
+ "Admin github": "https://github.com/Nayanika1402",
+ "Tech stack": "React.js, Tailwind CSS, Firebase",
+ "keyword": "phase2"
+ },
+ {
+ "Project name": "AI powered health assistant",
+ "Project description": "This project focuses on AI POWERED HEALTH ASSISTANT that provides users with health related guidance, symptom analysis and basic medical recommendations.This project helps to develop an AI-powered assistant that can analyze symptoms and provide preliminary health suggestions. It integrates a user-friendly chatbot that responds to health- related queries using natural language processing. It enhance accessibility to basic healthcare advice, especially for those without immediate access to medical professionals.",
+ "Project link": "https://github.com/CharithaReddy18/AI-health-chatbot",
+ "Project admin": "Nayini Charitha Reddy",
+ "Admin linkedin": "https://www.linkedin.com/in/charithareddy18",
+ "Admin github": "https://github.com/CharithaReddy18",
+ "Tech stack": "This AI-powered health assistant is built using Python, machine learning and NLP to \n \n understand and respond to user questions immediately. This system uses a medical \n \n knowledge database and symptom checking algorithms to suggest possible conditions \n \n based on their inputs.",
+ "keyword": "phase2"
+ },
+ {
+ "Project name": "YuktiBot",
+ "Project description": "Its a combo of interview preparation anad code editor application",
+ "Project link": "https://github.com/Neha-Singh-j/YuktiBot",
+ "Project admin": "Neha Singh",
+ "Admin linkedin": "https://www.linkedin.com/in/neha-singh-4952992a7",
+ "Admin github": "https://github.com/Neha-Singh-j",
+ "Tech stack": "MongoDB React Node.js Express.js",
+ "keyword": "phase2"
+ },
+ {
+ "Project name": "GameStore",
+ "Project description": "A comprehensive gaming website featuring engaging mini-games with user authentication, statistics tracking, leaderboards, and a robust backend API.",
+ "Project link": "https://github.com/nikhilsingh10-r/GameStore",
+ "Project admin": "Nikhil Singh",
+ "Admin linkedin": "https://www.linkedin.com/in/nikhil-singh-87a7b6372",
+ "Admin github": "https://github.com/nikhilsingh10-r",
+ "Tech stack": "HTML, CSS, JavaScript, Typescript,Node.js",
+ "keyword": "phase2"
+ },
+ {
+ "Project name": "ClipLi",
+ "Project description": "URL Shortener is a modern, production-ready full-stack web application built with the MERN stack (MongoDB, Express, React, Node.js) that allows users to shorten long URLs into compact, shareable links.\n \n The platform supports custom aliases, user authentication, click analytics, and follows a modular, scalable architecture with a clean separation of concerns. The backend is structured using Controller-Service-DAO patterns, JWT-based authentication, and centralized error handling, while the frontend is built with React 19, Redux Toolkit, TanStack Router & Query, and styled using Tailwind CSS.\n \n Designed with a mobile-first responsive UI, it ensures accessibility across devices and includes secure, RESTful API endpoints for seamless integration.",
+ "Project link": "https://github.com/anothercoder-nik/URLshortner",
+ "Project admin": "Nikunj Agarwal",
+ "Admin linkedin": "https://clipli.sbs/i5Tjnsg",
+ "Admin github": "https://github.com/anothercoder-nik",
+ "Tech stack": "The project uses React 19, Tailwind CSS, TanStack Router, TanStack Query, Redux Toolkit, Axios, and Vite on the frontend. The backend is built with Node.js, Express.js, MongoDB Atlas, and Mongoose, with additional tools like dotenv, cookie-parser, and jsonwebtoken (JWT) for environment handling, cookie parsing, and authentication respectively. Deployment is managed through Render, with development tools like Postman and MongoDB Compass.",
+ "keyword": "phase2"
+ },
+ {
+ "Project name": "Healthy Vibes 24/7",
+ "Project description": "Patient health recommendation system",
+ "Project link": "https://github.com/Nishme-tech/Project-AI",
+ "Project admin": "Nishme",
+ "Admin linkedin": "https://www.linkedin.com/in/nishmitha-shaik-b908342a2",
+ "Admin github": "https://github.com/Nishme-tech",
+ "Tech stack": "ML",
+ "keyword": "phase2"
+ },
+ {
+ "Project name": "AI-agriculture-yield-production",
+ "Project description": "This project applies Artificial Intelligence (AI) and Machine Learning (ML) techniques to monitor crop health and predict agricultural yield using real-world data. By leveraging Python, data analysis libraries (like Pandas, Scikit-learn), and visualization tools, this project empowers farmers and agritech researchers with actionable insights for better decision-making in agriculture.",
+ "Project link": "https://github.com/nupurmadaan04/AI-agriculture-yield-production",
+ "Project admin": "NUPUR MADAAN",
+ "Admin linkedin": "https://www.linkedin.com/in/nupurmadaan04",
+ "Admin github": "https://github.com/nupurmadaan04",
+ "Tech stack": "Python (Numpy , pandas , sklearn , matplotlib, seaborn )",
+ "keyword": "phase2"
+ },
+ {
+ "Project name": "EasyGoDocs",
+ "Project description": "EasyGoDocs is an open-source project dedicated to making documentation reading and authoring effortless, beautiful, and accessible for everyone. Were excited to have you help us expand our library of documentation across different fields.",
+ "Project link": "https://github.com/EasyGoDocs/easygodocs",
+ "Project admin": "Oindil Golder",
+ "Admin linkedin": "https://www.linkedin.com/in/oindil-golder/",
+ "Admin github": "https://github.com/OINDIL",
+ "Tech stack": "Next JS, Tailwind CSS, ShadCN, Typescript, Framer Motion, JSON",
+ "keyword": "phase2"
+ },
+ {
+ "Project name": "SapneSeSafar",
+ "Project description": "A comprehensive, AI-powered analytics platform for Shark Tank India, providing deep insights, predictions, and analysis of deals, sharks, and startups with real-time data visualization and machine learning capabilities.",
+ "Project link": "https://github.com/Ojas-Arora/SapneSeSafar",
+ "Project admin": "Ojas Arora",
+ "Admin linkedin": "http://www.linkedin.com/in/ojasarora14",
+ "Admin github": "https://github.com/Ojas-Arora",
+ "Tech stack": "Typescript , Javascript , Go , Supabase, Excel , Machine Learning",
+ "keyword": "phase2"
+ },
+ {
+ "Project name": "Gssoc FAQ Bot",
+ "Project description": "Bot helps to automate user message and amswe repeatedly asked questions. it now also tell user about project detauls and more about mentors.",
+ "Project link": "https://github.com/piyushpatelcodes/gssocFAQ-Bot",
+ "Project admin": "PIYUSH PATEL",
+ "Admin linkedin": "https://linkedin/in/piyushpatelcodes",
+ "Admin github": "https://github.com/piyushpatelcodes",
+ "Tech stack": "Node js",
+ "mentor 1": "Vraj Ved",
+ "mentor 1 github": "https://github.com/VrajVed",
+ "mentor 1 linkedin": "https://www.linkedin.com/in/vraj-ved-023ba5318/",
+ "keyword": "phase2"
+ },
+ {
+ "Project name": "Crime Rate Prediction And Analysis system",
+ "Project description": "it can calculate crime risk nd prediction future",
+ "Project link": "https://huggingface.co/spaces/Prabh139/crime-rate-app",
+ "Project admin": "Prabhjot kaur",
+ "Admin linkedin": "https://www.linkedin.com/in/prabhjot-kaur-7927122ba?utm_source=share&utm_campaign=share_via&utm_content=profile&utm_medium=android_app",
+ "Admin github": "https://github.com/prabhjot1309",
+ "Tech stack": "Python, numpy, pandas, matplotlib seaborn Scikit learn and seaborn",
+ "keyword": "phase2"
+ },
+ {
+ "Project name": "Occassio",
+ "Project description": "E-commerce website",
+ "Project link": "https://github.com/pramisi/Occasio",
+ "Project admin": "Pramisi",
+ "Admin linkedin": "www.linkedin.com/in/\n pramisi-b15736309",
+ "Admin github": "https://github.com/pramisi",
+ "Tech stack": "html,css",
+ "keyword": "phase2"
+ },
+ {
+ "Project name": "Zenjira - AI-Powered Jira Automation Platform",
+ "Project description": "Zenjira is a smart web app that connects with Jira to automate tasks, plan sprints, and simplify project tracking. It uses AI to help teams work faster by reducing manual work, balancing workloads, and giving clear, real-time insights all in one clean, easy-to-use dashboard.",
+ "Project link": "https://github.com/Promptzy/Zenjira",
+ "Project admin": "Pranjal Negi",
+ "Admin linkedin": "https://www.linkedin.com/in/pranjal-negi555?utm_source=share&utm_campaign=share_via&utm_content=profile&utm_medium=android_app",
+ "Admin github": "https://github.com/Pranjal6955",
+ "Tech stack": "Frontend: Next.js + Tailwind CSS with shadcn/ui or MaterialUI, state via Redux Toolkit or React Query\n Backend: Node.js + Express (or Django + DRF) exposing REST (or GraphQL via Apollo), secured by Atlassian OAuth2 & JWT\n Job Processing: BullMQ (or Celery) on Redis\n Database & Cache: PostgreSQL for data, Redis for caching\n AI/ML: OpenAI GPT4 via API, orchestrated with LangChain, plus Hugging Face Transformers for embeddings/semantic search\n Automation Engine: n8n for lowcode workflow automation\n Integrations: Jira REST API, GitHub/GitLab/Bitbucket webhooks, Slack & Microsoft Teams bots\n CI/CD: GitHub Actions (or CircleCI/Jenkins) for linting, testing, and Docker builds\n Containerization & Orchestration: Docker containers on Kubernetes (EKS/GKE) or Docker Swarm, routed via Nginx/Traefik\n Monitoring & Logging: Prometheus + Grafana, Sentry for error tracking, ELK Stack for logs\n Testing: Jest (or PyTest) for unit/integration, Cypress (or Playwright) for endtoend\n Design & Docs: Figma for UI, Notion/Confluence for documentation, Swagger/OpenAPI for API specs\n Analytics & Feedback: Mixpanel or Google Analytics, plus an inapp feedback widget",
+ "mentor 1": "Nikhil Deshmukh",
+ "mentor 1 github": "https://github.com/nikhildeshmukh170",
+ "mentor 1 linkedin": "https://www.linkedin.com/in/nikhil-d-deshmukh/",
+ "keyword": "phase2"
+ },
+ {
+ "Project name": "BreatheEasy",
+ "Project description": "BreatheEasy is an open-source project to help you monitor air quality in your area, understand pollutant levels, and get actionable health advice and improvement measures. It uses the World Air Quality Index (WAQI) API to fetch real-time AQI data and presents it in a clean, user-friendly dashboard.",
+ "Project link": "https://github.com/prasoonk1204/BreatheEasy",
+ "Project admin": "Prasoon Kumar",
+ "Admin linkedin": "https://linkedin.com/in/prasoon1204",
+ "Admin github": "https://github.com/prasoonk1204",
+ "Tech stack": "React, TailwindCSS, Charts.js, Node.js, Express",
+ "keyword": "phase2"
+ },
+ {
+ "Project name": "SmartTube Summarizer",
+ "Project description": "SmartTube Summarizer is an AI-powered Python tool that extracts YouTube video transcripts and generates concise summaries using HuggingFace Transformers. Built with Streamlit, it's perfect for students, researchers, and professionals.",
+ "Project link": "https://github.com/PREETIFARTYAL18/SmartYTube_Summarizer",
+ "Project admin": "Preeti Fartyal",
+ "Admin linkedin": "https://www.linkedin.com/in/preeti-fartyal-90414024a?utm_source=share&utm_campaign=share_via&utm_content=profile&utm_medium=android_app",
+ "Admin github": "https://github.com/PREETIFARTYAL18",
+ "Tech stack": "Python 3.x\n Streamlit\n HuggingFace Transformers (BART)\n youtube-transcript-api",
+ "keyword": "phase2"
+ },
+ {
+ "Project name": "Animate-Hub",
+ "Project description": "Animate Hub is your go-to resource for all things animation in web development. Discover a wide range of code snippets for animations, hovers, and effects, designed to streamline your workflow. Just copy, paste, and watch your projects come to life!",
+ "Project link": "https://github.com/Premkolte/AnimateHub",
+ "Project admin": "Prem Kolte",
+ "Admin linkedin": "https://www.linkedin.com/in/prem-kolte/",
+ "Admin github": "https://github.com/Premkolte",
+ "Tech stack": "MongoDb, ExpressJs, ReactJs, NodeJs",
+ "keyword": "phase2"
+ },
+ {
+ "Project name": "DecentraLearn AI",
+ "Project description": "A decentralized AI-powered learning platform that rewards users with tokens for completing courses and contributing knowledge. Combines blockchain credentials with AI personalization.",
+ "Project link": "https://github.com/TechVisionLabs/decentralearn-ai",
+ "Project admin": "Priyanshu patel",
+ "Admin linkedin": "https://www.linkedin.com/in/priyanshupatel7996/",
+ "Admin github": "https://github.com/priyanshupatel7996",
+ "Tech stack": "React, Node.js, Solidity, Hardhat, IPFS, OpenAI API, MongoDB",
+ "keyword": "phase2"
+ },
+ {
+ "Project name": "FARMLOC",
+ "Project description": "FARMLOC stands for Farmers-Agricultural-Resource-Management-and-Location-Of-Cold-storage.\n It is a web-based platform designed to empower farmers by providing seamless access to agricultural resources, tools for management, and real-time information about the nearest available cold storages.",
+ "Project link": "https://github.com/Pujan-sarkar/FARMLOC",
+ "Project admin": "Pujan Sarkar",
+ "Admin linkedin": "https://www.linkedin.com/in/pujan-sarkar",
+ "Admin github": "https://github.com/Pujan-sarkar",
+ "Tech stack": "React Js, CSS, Javascript, Bootstrap, Node js, Express Js",
+ "keyword": "phase2"
+ },
+ {
+ "Project name": "Rewear",
+ "Project description": "ReWear is a modern, community-driven clothing exchange platform that makes sustainable fashion fun and easy. List your unused clothes, earn points and swap for new styles with others - no money needed!",
+ "Project link": "https://github.com/AKing-283/Rewear",
+ "Project admin": "Puspak Dakkata",
+ "Admin linkedin": "https://www.linkedin.com/in/puspak-d-5a25a3246",
+ "Admin github": "github.com/AKing-283",
+ "Tech stack": "Python, Html,css and js, Gemini, Flask",
+ "mentor 1": "Bala Manikanta Sai",
+ "mentor 1 github": "https://www.github.com/balamanikantsai",
+ "mentor 1 linkedin": "https://www.linkedin.com/in/guduru-bala-manikanta-sai-20707a275",
+ "mentor 2": "Jonnalagadda Dinesh",
+ "Mentor 2 linkedin": "https://www.linkedin.com/in/-dinesh-7a83b2241",
+ "mentor 2 github": "https://www.github.com/dineshjnld",
+ "keyword": "phase2"
+ },
+ {
+ "Project name": "Tic Tac Tor Game",
+ "Project description": "A two-player Tic Tac Toe game built using Python and Pygame. It allows players to take tirns and shows win/draw messages",
+ "Project link": "https://github.com/RafiaShafique/Tic-Tae-Toe-Game",
+ "Project admin": "Rafia Shafique",
+ "Admin linkedin": "https://www.linkedin.com/in/rafia-shafique-114263321/",
+ "Admin github": "https://github.com/RafiaShafique",
+ "Tech stack": "python, pygne",
+ "keyword": "phase2"
+ },
+ {
+ "Project name": "webBuilder",
+ "Project description": "Webinex is a an Ai-Powered no code website builder where user can create complete website by simply entering prompt. Leveraging Genai and Ml models, it builds UIs, page layout, and basic logic - instantly",
+ "Project link": "https://github.com/Rahulchaudharyji2/WebSiteBuilder",
+ "Project admin": "Rahul Chaudhary",
+ "Admin linkedin": "https://www.linkedin.com/in/rahul-chaudhary-b31b2a297/",
+ "Admin github": "https://github.com/Rahulchaudharyji2",
+ "Tech stack": "React, Tailwind, Nodejs, Google gemini / custom Model / Mongodb or postgress/ jwt",
+ "keyword": "phase2"
+ },
+ {
+ "Project name": "SkyWings",
+ "Project description": "The Travel WebApp is a fully responsive, interactive travel website designed using HTML, CSS, and vanilla JavaScript. It offers users a visually engaging interface to discover popular destinations, explore tour packages, and make travel planning easier",
+ "Project link": "https://github.com/ChakrabortyRajarshi2005/TravelApp",
+ "Project admin": "Rajarshi Chakraborty",
+ "Admin linkedin": "https://www.linkedin.com/in/rajarshi-chakraborty-06a3402b7",
+ "Admin github": "https://github.com/ChakrabortyRajarshi2005",
+ "Tech stack": "HTML , CSS JavaScript",
+ "keyword": "phase2"
+ },
+ {
+ "Project name": "Resume Generator",
+ "Project description": "A clean, responsive web app to create professional resumes in minutes. Fill out your details, see a live preview, add unlimited projects, and export your resume as a polished PDF. Built with HTML, CSS, and JavaScriptno backend required.",
+ "Project link": "https://github.com/rajdeep13-coder/Resume-Generator",
+ "Project admin": "Rajdeep Paul",
+ "Admin linkedin": "https://www.linkedin.com/in/rajdeep-paul-013z/",
+ "Admin github": "https://github.com/rajdeep13-coder",
+ "Tech stack": "HTML, CSS, Javascript",
+ "keyword": "phase2"
+ },
+ {
+ "Project name": "TrojanAI",
+ "Project description": "It is basically a vscode extension for AI agentic workflows just like copilot, which will be almost free to use. But a rate limiter will be there",
+ "Project link": "https://github.com/rajibsalui/Trojan-AI",
+ "Project admin": "Rajib Salui",
+ "Admin linkedin": "https://www.linkedin.com/in/rajib-salui-068675240/",
+ "Admin github": "https://github.com/rajibsalui",
+ "Tech stack": "Typescript, Langchain, Gemini AI API, VS Code",
+ "keyword": "phase2"
+ },
+ {
+ "Project name": "Weather Blast",
+ "Project description": "This project is a comprehensive weather application built with HTML, CSS, and JavaScript. It fetches real-time weather data and air quality information, enhancing users' awareness of both weather and pollution conditions.",
+ "Project link": "https://github.com/RAJIV81205/Weather-Blast",
+ "Project admin": "Rajiv Dubey",
+ "Admin linkedin": "https://www.linkedin.com/in/rajiv81205",
+ "Admin github": "https://github.com/RAJIV81205",
+ "Tech stack": "HTML , CSS , JS",
+ "keyword": "phase2"
+ },
+ {
+ "Project name": "Doc@Home",
+ "Project description": "Doc@Home is an innovative web-based platform designed to connect patients with verified doctors and nursing professionals for in-home medical consultations. It addresses the dual challenge of underutilized medical talent and the growing need for personalized, home-based healthcare in India. The platform ensures strict provider verification, transparent pricing, and quality control through real-time booking, robust feedback systems, and an admin-led authentication process.",
+ "Project link": "https://github.com/shandilya-rajnandini/DocAtHome.git",
+ "Project admin": "Rajnandini",
+ "Admin linkedin": "https://www.linkedin.com/in/rajnandini-shandilya-55ab2131a/",
+ "Admin github": "https://github.com/shandilya-rajnandini",
+ "Tech stack": "Frontend : HTML5, CSS3, JAVAScript (React.js) Backend : Node. js, Express Database: MongoDB Authentication : Firebase Auth or Json Tokens (JWT)",
+ "mentor 1": "Nikhil Deshmukh",
+ "mentor 1 github": "https://github.com/nikhildeshmukh170",
+ "mentor 1 linkedin": "https://www.linkedin.com/in/nikhil-d-deshmukh/",
+ "keyword": "phase2"
+ },
+ {
+ "Project name": "Git-quiz-challenge",
+ "Project description": "Git & GitHub Quiz Challenge An interactive web app for mastering Git and GitHub concepts. Features multiple quiz categories, instant feedback, progress tracking, and real-world scenarios to help developers learn version control efficiently. Switch between light/dark themes and review your results to improve your skills.",
+ "Project link": "https://github.com/RAJVEER42/git-quiz-challenge",
+ "Project admin": "Rajveer Bishnoi",
+ "Admin linkedin": "https://www.linkedin.com/in/rajveer-bishnoi-576b62356/",
+ "Admin github": "https://github.com/RAJVEER42",
+ "Tech stack": "Html, Css, Javascript",
+ "keyword": "phase2"
+ },
+ {
+ "Project name": "Beautiify",
+ "Project description": "Beautiify comprises a curated selection of beautifully designed components and animations that can be seamlessly incorporated into any website, elevating its overall UI experience.",
+ "Project link": "https://github.com/Rakesh9100/Beautiify",
+ "Project admin": "Rakesh Roshan",
+ "Admin linkedin": "https://www.linkedin.com/in/rakesh-roshan-9100/",
+ "Admin github": "https://github.com/Rakesh9100",
+ "Tech stack": "JavaScript, HTML, CSS, JSON",
+ "keyword": "phase2"
+ },
+ {
+ "Project name": "Notakto",
+ "Project description": "Tic Tac Toe variant, no ties, always a winner",
+ "Project link": "github.com/rakshitg600/notakto-website",
+ "Project admin": "Rakshit Gupta",
+ "Admin linkedin": "linkedin.com/in/rakshitg600",
+ "Admin github": "github.com/rakshitg600",
+ "Tech stack": "NextJS, WebSocket, Firebase, TypeScript, Tailwind Css, Axios, React",
+ "keyword": "phase2"
+ },
+ {
+ "Project name": "AuraHire.ai",
+ "Project description": "A smart platform that helps users track job applications, improve their resumes with AI-powered analysis, and discover or post job opportunities all in one place. It simplifies job hunting with actionable insights, real-time tracking, and intelligent resume feedback.",
+ "Project link": "https://github.com/Ryadav0654/AuraHire",
+ "Project admin": "Ravindra y",
+ "Admin linkedin": "https://www.linkedin.com/in/yadavravindra536",
+ "Admin github": "https://github.com/Ryadav0654",
+ "Tech stack": "Nextjs, Reactjs, chartjs, Express, Nodejs, React, Typescript, Tailwindcss, MongoDB, Cloudinary, Clerk Auth,",
+ "keyword": "phase2"
+ },
+ {
+ "Project name": "DevTinder",
+ "Project description": "DevTinder is a modern, interactive web application that connects developers based on their skills, interests, and project goals. Think \"Tinder for Developers\" - swipe through developer profiles, connect with like-minded programmers, and build amazing projects together.",
+ "Project link": "https://github.com/coder-writes/devTinder-frontend-main",
+ "Project admin": "Rishi verma",
+ "Admin linkedin": "https://www.linkedin.com/in/rishi-verma-sde/",
+ "Admin github": "https://github.com/coder-writes",
+ "Tech stack": "React.js , Node.js , Express.js , Tailwind CSS , HTML, CSS, JS , Routing , Three.js , Farmer-motion",
+ "keyword": "phase2"
+ },
+ {
+ "Project name": "DevConnect",
+ "Project description": "A platform for developers to: Showcase their profiles, projects, and skills Connect with other developers Post updates, blogs, and achievements Follow, endorse, and message others",
+ "Project link": "https://github.com/mr-rishikesh/DevConnect",
+ "Project admin": "Rishikesh Yadav",
+ "Admin linkedin": "https://www.linkedin.com/in/rishikesh-yadav-a059482b0",
+ "Admin github": "https://github.com/mr-rishikesh",
+ "Tech stack": "Fronten :React + Tailwind CSS ,\n Backend : ,Node.js + Express OR Firebase Functions\n Database :MongoDB (with Mongoose) or Firestore,\n Auth: GitHub OAuth / Firebase Auth,\n Hosting : Vercel (frontend) + Render or Railway (backend)\n CI/CD GitHub Actions + ESLint/Prettier",
+ "keyword": "phase2"
+ },
+ {
+ "Project name": "Eduhaven",
+ "Project description": "EduHaven is a productivity platform designed to enhance student learning with real-time collaboration, task management, note-making, and social connectivity. Built to optimize study efficiency, it offers seamless interactions through WebRTC-powered study rooms, analytics-driven insights, and gamification.",
+ "Project link": "https://github.com/EduHaven/EduHaven",
+ "Project admin": "Rishu Kumar",
+ "Admin linkedin": "https://www.linkedin.com/in/rishukumarcodes/",
+ "Admin github": "https://github.com/RishuKumarCodes",
+ "Tech stack": "MERN (React, JavaScript, MongoDB, Node.js)",
+ "keyword": "phase2"
+ },
+ {
+ "Project name": "GitHubber",
+ "Project description": "GitHubber is Git Simplified. GitHubber enables and helps newcomers and beginners at Version Control to effeciently use git commands without memorising them through a simple menu driven cli approach. Tackles all commands ranging from simple push pull to complex rebases and cherry picks all through a menu driven interface and simple option clicking. Alternate branch of the projects explores a redesigned version of the Git ecosystem with more robust functionalities.",
+ "Project link": "https://github.com/ritankarsaha/GitHubber",
+ "Project admin": "Ritankar Saha",
+ "Admin linkedin": "https://www.linkedin.com/in/ritankar-saha-8041b9289/",
+ "Admin github": "https://github.com/ritankarsaha",
+ "Tech stack": "Golang",
+ "keyword": "phase2"
+ },
+ {
+ "Project name": "XMail",
+ "Project description": "A modern, minimal, lightweight, fast web based open source email client",
+ "Project link": "https://github.com/open-xyz/xmail",
+ "Project admin": "Rohan Sharma",
+ "Admin linkedin": "htpos://linkedin.com/in/rohansx",
+ "Admin github": "https://github.com/rohansx",
+ "Tech stack": "Typescript",
+ "keyword": "phase2"
+ },
+ {
+ "Project name": "Lol Url",
+ "Project description": "Perfect Analytics tool for Links. Tdack them shorten them. Perfect for Marketers",
+ "Project link": "https://github.com/Rohit-Dnath/LOL-URL",
+ "Project admin": "Rohit Debnath",
+ "Admin linkedin": "https://www.linkedin.com/in/rohit-debnath?utm_source=share&utm_campaign=share_via&utm_content=profile&utm_medium=android_app",
+ "Admin github": "https://github.com/Rohit-Dnath",
+ "Tech stack": "React, Tailwind, Shadcn, Supabase",
+ "keyword": "phase2"
+ },
+ {
+ "Project name": "PriGPT Studio",
+ "Project description": "PrivGPT Studio Your Private AI Workspace: A privacyfirst AI platform that lets you run local and cloud AIML models side by side. Features include multichat management with crossreferences, PDF/image/audio/video analysis, voice input with transcription, offline fallback, latency tracking, session rename/export/delete, and privacyfocused design. Future scope †’ add generative AI for image/video/audio, enable multiuser support with authentication, build pages like About/Contact, enhance UI/UX with dashboards, add realtime collaboration, internationalization, and plugin support.",
+ "Project link": "https://github.com/Rucha-Ambaliya/PrivGPT-Studio.git",
+ "Project admin": "Rucha Ambaliya",
+ "Admin linkedin": "https://www.linkedin.com/in/rucha-ambaliya?utm_source=share&utm_campaign=share_via&utm_content=profile&utm_medium=android_app",
+ "Admin github": "https://github.com/Rucha-Ambaliya",
+ "Tech stack": "PrivGPT Studio frontend is built with Next.js (React) and TailwindCSS for a fast, responsive UI. The backend uses Flask (Python) to handle API requests and business logic. Data is stored in MongoDB, a flexible NoSQL database. For AI processing, it integrates Ollama local models for offline capabilities and Google Gemini API for powerful cloud-based AI services.",
+ "keyword": "phase2"
+ },
+ {
+ "Project name": "job listing and applicant tracking system using advance java",
+ "Project description": "A job listing and applicant tracking system (ATS) built with advanced Java would automate the recruitment process, managing job postings, applications, and candidate information. This system would enhance efficiency, reduce manual effort, and improve the overall candidate and recruiter experience. It would typically involve features like job posting creation, applicant registration and profile management, resume parsing, search and filtering of candidates, interview scheduling, and automated notifications.",
+ "Project link": "https://github.com/SAANVIVERMA05/CODSOFT",
+ "Project admin": "Saanvi Verma",
+ "Admin linkedin": "https://www.linkedin.com/in/saanvi-verma-71a370275",
+ "Admin github": "https://github.com/SAANVIVERMA05/CODSOFT",
+ "Tech stack": "Advance java, Servlet, jsp",
+ "keyword": "phase2"
+ },
+ {
+ "Project name": "Factshare",
+ "Project description": "Engineered an AI-powered fact-checking platform that achieved 92% accuracy in misinformation detection using\n \n Gemini APIs for claim analysis and image text extraction. Integrated Google Fact Check API for real-time news validation\n \n and a version-controlled credibility tracking system. Enhanced engagement with a chatbot delivering live, verifiable news links.\n \n Enabled a 30% boost in verification participation through a community-driven voting system.",
+ "Project link": "https://github.com/Saathviga9605/Factshare",
+ "Project admin": "Saathviga B",
+ "Admin linkedin": "https://www.linkedin.com/in/saathvigab/",
+ "Admin github": "https://github.com/Saathviga9605/",
+ "Tech stack": "React, Flask, MongoDB, Gemini API, Google Search Fact Check API",
+ "keyword": "phase2"
+ },
+ {
+ "Project name": "Adoptive AI based traffic management system",
+ "Project description": "This Adopative AI Based Traffic Management System The basic idea of a traffic signal where vehicles are lined up in four lanes: Lane 1, Lane 2, Lane 3, and Lane 4. A camera or sensor system will simultaneously capture images of all four lanes. These captured images will be stored within a single frame. The stored frame will then be processed using the YOLO API, an artificial intelligence-based object detection model. By analyzing the detected vehicles in the image, the vehicle density of each lane will be determined. Based on the calculated vehicle density, the signal timing will be set accordingly. If the vehicle density exceeds a predefined range, a fixed setup timer will be applied to regulate the traffic flow.",
+ "Project link": "https://github.com/sachingiri58/techkruti",
+ "Project admin": "Sachin Gajanan Giri",
+ "Admin linkedin": "https://www.linkedin.com/in/sachin-giri -657698221",
+ "Admin github": "https://github.com/sachingiri58",
+ "Tech stack": "HTML, CSS, JavaScript, React.js, Node.js, Express.js, PostgreSQL, MongoDB, Python, OpenCV, YOLOv5",
+ "keyword": "phase2"
+ },
+ {
+ "Project name": "Lost and Found",
+ "Project description": "Lost and Found -\n A simple and user-friendly web application to report, view, and recover lost or found items on campus. It helps students and staff connect and return lost belongings easily.",
+ "Project link": "https://github.com/saismrutiranjan18/Lost-and-Found",
+ "Project admin": "Sai Smruti Ranjan Das",
+ "Admin linkedin": "https://www.linkedin.com/in/saismrutiranjan?utm_source=share&utm_campaign=share_via&utm_content=profile&utm_medium=android_app",
+ "Admin github": "https://github.com/saismrutiranjan18",
+ "Tech stack": "MERN",
+ "keyword": "phase2"
+ },
+ {
+ "Project name": "Compassion Connect",
+ "Project description": "Compassion-Connect is a web-based Charity and Fundraising Platform designed to simplify the donation process and connect donors with meaningful causes. Built using HTML, CSS, JavaScript, Node.js, Express.js, and MongoDB, ReactJS , the platform allows users to create and manage fundraising campaigns, set goals, and track real-time progress.",
+ "Project link": "https://github.com/SrijaVuppala295/Compassion_Connect/",
+ "Project admin": "Sai Srija Vuppala",
+ "Admin linkedin": "https://www.linkedin.com/in/srijavuppala02/",
+ "Admin github": "https://github.com/SrijaVuppala295",
+ "Tech stack": "HTML, CSS, JavaScript, Node.js, Express.js, and MongoDB, ReactJS",
+ "keyword": "phase2"
+ },
+ {
+ "Project name": "Quiz portal",
+ "Project description": "A full-stack interactive quiz application built with React and Node.js, enabling users to register, log in, take quizzes, receive instant feedback, and track their performance through detailed statistics and attempt history. Users can manage their profiles, while administrators access a comprehensive dashboard to create, edit, and delete quizzes, manage questions and users, view analytics, and monitor quiz activity in real time.",
+ "Project link": "https://github.com/SaishGhatol/quiz-portal",
+ "Project admin": "Saish Ghatol",
+ "Admin linkedin": "https://www.linkedin.com/in/saish-ghatol",
+ "Admin github": "https://www.github.com/saishghatol",
+ "Tech stack": "MongoDB, Express.js,React.js,Node.js",
+ "keyword": "phase2"
+ },
+ {
+ "Project name": "NPMChat",
+ "Project description": "NPMChat is an open source, real-time chat platform for developers and teams. Built with the MENN stack (MongoDB, Express, Next.js, Node.js), it features collaborative code editing, live interview mode, file sharing, code execution, and moreall in a beautiful, modern UI. Perfect for learning, collaboration, and building together.",
+ "Project link": "https://github.com/ThePlator/NPMChat",
+ "Project admin": "Sameer",
+ "Admin linkedin": "https://www.linkedin.com/in/sameer-pce/",
+ "Admin github": "https://github.com/ThePlator",
+ "Tech stack": "Nextjs, ExpressJS, Nodejs, Mongodb",
+ "keyword": "phase2"
+ },
+ {
+ "Project name": "whack-a-mole-game",
+ "Project description": "A fun web based game",
+ "Project link": "https://github.com/Samrudhipawar/whack-a-mole-game",
+ "Project admin": "Samrudhi Pawar",
+ "Admin linkedin": "https://www.linkedin.com/in/samrudhipawar21/",
+ "Admin github": "https://github.com/Samrudhipawar",
+ "Tech stack": "JavaScript, HTML5, CSS3, AmazonCLI",
+ "keyword": "phase2"
+ },
+ {
+ "Project name": "Organa",
+ "Project description": "A real-time organ donation coordination platform for healthcare using Node.js, Express, Socket.io, and Next.js, with planned integration of ML models for smart donor-recipient matching inviting contributors from both full-stack and ML backgrounds.",
+ "Project link": "https://github.com/msanchariii/evolver",
+ "Project admin": "Sanchari Mandal",
+ "Admin linkedin": "https://www.linkedin.com/in/msanchari/",
+ "Admin github": "https://github.com/msanchariii",
+ "Tech stack": "React.js, Next.js, TailwindCSS, Node.js, Express.js, Socket.io",
+ "keyword": "phase2"
+ },
+ {
+ "Project name": "Eventra - Full Stack Event Management System",
+ "Project description": "Eventra is a modern full-stack open-source event management system built to help communities, colleges, and organizations create, manage, and track events with ease. It includes features like event creation, RSVPs, QR-code-based check-ins, admin dashboard, feedback collection, and user roles. The project is designed to be beginner-friendly and modular for open-source contributions.",
+ "Project link": "https://github.com/SandeepVashishtha/Eventra",
+ "Project admin": "Sandeep Vashishtha",
+ "Admin linkedin": "https://www.linkedin.com/in/sandeepvashishtha",
+ "Admin github": "https://github.com/SandeepVashishtha",
+ "Tech stack": "Frontend: React.js, Tailwind CSS\n \n Backend: Spring Boot, Spring Security, JWT\n \n Database: PostgreSQL\n \n Tools: Docker, GitHub Actions",
+ "keyword": "phase2"
+ },
+ {
+ "Project name": "Dream Pixel : AI IMAGE GENERATOR",
+ "Project description": "A full-stack AI image generator web application built using the MERN stack (MongoDB, Express.js, React.js, Node.js) and powered by Hugging Face's Stable Diffusion API to convert text prompts into images. Users can generate images, view them in a community feed, and share their creations.",
+ "Project link": "https://github.com/SanmathiSedhupathi/AI_IMAGE_GENERATOR_MERN",
+ "Project admin": "Sanmathi S",
+ "Admin linkedin": "https://www.linkedin.com/in/sanmathi-sedhupathi08/",
+ "Admin github": "https://github.com/SanmathiSedhupathi",
+ "Tech stack": "MERN STACK, Devops : Docker, Kubernetes,Jenkins",
+ "keyword": "phase2"
+ },
+ {
+ "Project name": "PYQFort",
+ "Project description": "This project aims to create a centralized collection of PYQs for all B.Tech. students in India. PYQFort Working Structure: https://drive.google.com/file/d/1ifkLQEm9bwby5uYgnvmDjaJYYLZRu_pX/view?usp=drivesdk",
+ "Project link": "https://github.com/Saumy1905/PYQFort",
+ "Project admin": "Saumy",
+ "Admin linkedin": "https://www.linkedin.com/in/saumy1905",
+ "Admin github": "https://github.com/Saumy1905",
+ "Tech stack": "LaTeX | Data Science | Data Analysis | matplotlib | seaborn | AI [PYQ file (LaTeX) link: https://drive.google.com/file/d/1v9cCBwznt2n2zNgzHk5b1W1H7ARU6C5S/view?usp=drivesdk]",
+ "keyword": "phase2"
+ },
+ {
+ "Project name": "Supply Management",
+ "Project description": "This project aims to create a web application that encourages users to donate to noble causes seamlessly. With a combination of technology and compassion, Supply Management is more than just a website; it's a platform for positive change. Through our interface we help those marginalized communities who are in need of basic necessities by connecting with donors.",
+ "Project link": "https://github.com/Tejaswiseelam/Supply-Management.git",
+ "Project admin": "Seelam Tejaswi",
+ "Admin linkedin": "https://www.linkedin.com/in/tejaswiseelam/",
+ "Admin github": "https://github.com/Tejaswiseelam",
+ "Tech stack": "HTML, Vanilla CSS, Python, Java",
+ "keyword": "phase2"
+ },
+ {
+ "Project name": "Resume Skill Extractor Job Matcher",
+ "Project description": "A smart Flask web app that extracts skills from uploaded resumes and matches them with relevant job descriptions using Natural Language Processing (NLP) and Machine Learning. Helps job seekers understand where they stand and what skills they need to improve.",
+ "Project link": "https://github.com/code-with-shahid/Resume-Skill-Extractor-Job-Matcher",
+ "Project admin": "Shahid Afridi",
+ "Admin linkedin": "https://www.linkedin.com/in/shahid-afridi-793a01297/",
+ "Admin github": "https://github.com/code-with-shahid",
+ "Tech stack": "Backend: Python, Flask and Gunicorn NLP & Machine Learning: NLTK, spacy, scikit-learn, pdfminer.six. Frontend: HTML5 & CSS3, Jinja2",
+ "keyword": "phase2"
+ },
+ {
+ "Project name": "TLDRify",
+ "Project description": "Get summary for any content(link, tweet, youtube video, pdf, articles) and it automatically summarizes the content, extracts key insights, categorizes it, saves it on your dashboard with tags",
+ "Project link": "https://github.com/Shantanu-Tiwari/TLDRify",
+ "Project admin": "Shantanu Tiwari",
+ "Admin linkedin": "https://in.linkedin.com/in/shantanutiwari24",
+ "Admin github": "https://github.com/Shantanu-Tiwari",
+ "Tech stack": "react js, Tailwind, Gemini API, pdf.js, supabase",
+ "keyword": "phase2"
+ },
+ {
+ "Project name": "IPURanker Placement, Cut-off Visualizer, College Predictor",
+ "Project description": "IPURanker is a web-based application that helps students explore historical admission rank lists and cut-offs for Guru Gobind Singh Indraprastha University (GGSIPU) from 2015 to 2025. The platform allows filtering by course, college, and year, making it easier for students to analyze trends and make informed admission choices. It is built as an open-source tool with clean UI and accessible data visualization.",
+ "Project link": "https://github.com/imshashi365/IPURanker",
+ "Project admin": "Shashi",
+ "Admin linkedin": "https://www.linkedin.com/in/shashi365/",
+ "Admin github": "https://github.com/imshashi365",
+ "Tech stack": "Frontend: Html,css, javascript,Next.js, React.js, Tailwind CSS, Node.js, MongoDB",
+ "keyword": "phase2"
+ },
+ {
+ "Project name": "Quick Blog",
+ "Project description": "This project is a full-featured AI-enabled blog application developed using the MERN Stack (MongoDB, Express.js, React.js, Node.js). The application provides a seamless platform for users to read and interact with blog content, while enabling the admin to efficiently manage blog posts and comments through a dedicated admin dashboard.\n \n An AI-powered content generation feature is integrated using Google Gemini, enabling administrators to automatically generate blog content based on prompts, enhancing productivity and consistency in blog creation. Additionally, ImageKit API is used for optimized image upload, storage, and delivery, improving the media handling capabilities of the platform.\n \n The application is deployed online using Vercel, ensuring high performance and accessibility",
+ "Project link": "https://github.com/Shirisakthi-1106/QuickBlog",
+ "Project admin": "Shiri Sakthi P N",
+ "Admin linkedin": "https://www.linkedin.com/in/shiri-sakthi-p-n-a2a4b828b",
+ "Admin github": "https://github.com/Shirisakthi-1106",
+ "Tech stack": "MERN Stack ( MongoDB, React.js , Express , Node)",
+ "keyword": "phase2"
+ },
+ {
+ "Project name": "Daily DSA",
+ "Project description": "Daily DSA is a collaborative repo of important DSA questions with simple solutions, complexities, and explanations.",
+ "Project link": "https://github.com/shivamm-verma/Daily-DSA",
+ "Project admin": "Shivam Verma",
+ "Admin linkedin": "https://www.linkedin.com/in/shivamm-verma/",
+ "Admin github": "https://github.com/shivamm-verma",
+ "Tech stack": "DSA, Programming Languages, markdown files",
+ "keyword": "phase2"
+ },
+ {
+ "Project name": "FieldTrace 100% Offline Audit & Field Logging App",
+ "Project description": "FieldTrace is a fully offline, open-source Flutter application that empowers individuals and organizations to log, track, and export structured field data even in areas with no internet access.\n \n Built using modern Flutter architecture (MVVM + BLoC + SQLite), FieldTrace offers a modular and scalable foundation for sectors like agriculture, infrastructure, healthcare, logistics, and security where ground-level data collection is essential but connectivity is unreliable or nonexistent.\n \n It aims to bridge the gap between on-the-ground reality and digital traceability, one audit at a time.",
+ "Project link": "https://github.com/GDSC-Kanpur-Institiute-of-Technolgy/FieldTrace/tree/main",
+ "Project admin": "Shivansh Kumar",
+ "Admin linkedin": "https://www.linkedin.com/in/shivansh-kumar-492b3021b?utm_source=share&utm_campaign=share_via&utm_content=profile&utm_medium=android_app",
+ "Admin github": "https://github.com/ShivanshKumar4265",
+ "Tech stack": "Flutter, Dart, Sqlite, Bloc",
+ "keyword": "phase2"
+ },
+ {
+ "Project name": "Markdrop",
+ "Project description": "A Python package for converting PDFs to markdown while extracting images and tables, generate descriptive text descriptions for extracted tables/images using several LLM clients. And many more functionalities. Markdrop is available on PyPI.",
+ "Project link": "https://github.com/shoryasethia/markdrop",
+ "Project admin": "Shorya Sethia",
+ "Admin linkedin": "https://www.linkedin.com/in/shorya-sethia-680b24250/",
+ "Admin github": "https://github.com/shoryasethia",
+ "Tech stack": "Python",
+ "keyword": "phase2"
+ },
+ {
+ "Project name": "Movie Theatre Management System",
+ "Project description": "Movie Theatre Management System (Java + MySQL)\n The Movie Management System is a comprehensive application developed using Java and MySQL. It offers a range of essential features for managing a movie theatre, including:\n Seat Booking: Allows users to view available seats and book them in real-time.\n \n Suggestions: Users can submit suggestions to improve services or movie selections.\n Contact Support: A built-in contact system enables users to reach out for queries or feedback.\n This project provides a user-friendly interface and a robust backend to ensure efficient management and a smooth user experience.",
+ "Project link": "https://github.com/SvJalmi/DBMS_Project.git",
+ "Project admin": "Shreya Jalmi",
+ "Admin linkedin": "https://www.linkedin.com/in/shreya-jalmi-b15081290",
+ "Admin github": "https://github.com/SvJalmi",
+ "Tech stack": "Java + MySQL+ VsCode",
+ "keyword": "phase2"
+ },
+ {
+ "Project name": "Prepnerdz",
+ "Project description": "College students waste countless hours wandering WhatsApp groups, requesting seniors or digging through unorganised drive for study materials and all. Prepnerdz solves this Chaos by providing the centralised and organised platform of RGPV previous year papers, final semester, mid semester, lab manuals, important questions, topics, reference books, best academic notes and many more.",
+ "Project link": "https://github.com/Shubhashish-Chakraborty/prepnerdz",
+ "Project admin": "Shubhashish Chakraborty",
+ "Admin linkedin": "https://linkedin.com/in/Shubhashish-Chakraborty",
+ "Admin github": "https://github.com/Shubhashish-Chakraborty",
+ "Tech stack": "Typescript, Next js, Tailwind CSS, Nodejs, Expressjs, Postgresql, Prisma",
+ "keyword": "phase2"
+ },
+ {
+ "Project name": "Your trip planner",
+ "Project description": "A travel planning web app that lets users filter destinations by region and track journey expenses.",
+ "Project link": "https://github.com/code-well0/trip-planner",
+ "Project admin": "Shubrali jain",
+ "Admin linkedin": "https://www.linkedin.com/in/shubrali-jain",
+ "Admin github": "https://github.com/code-well0",
+ "Tech stack": "React JS, Javascript, CSS, HTML",
+ "keyword": "phase2"
+ },
+ {
+ "Project name": "HackerZGuide",
+ "Project description": "HackerZGuide is a platform designed to guide individuals toward achieving their future goals. It provides valuable insights, resources, and strategies to help users navigate challenges, develop skills, and unlock their full potential for personal and professional success.",
+ "Project link": "https://github.com/shuvadeepmondal/HacKerZGuiDe",
+ "Project admin": "Shuvadeep Mondal",
+ "Admin linkedin": "https://www.linkedin.com/in/shuvadeep-mondal-b6212b260",
+ "Admin github": "https://github.com/shuvadeepmondal",
+ "Tech stack": "HTML, CSS, JAVASCRIPT, Firebase",
+ "keyword": "phase2"
+ },
+ {
+ "Project name": "eventify",
+ "Project description": "Full-stack event management platform with AI integration and payment processing",
+ "Project link": "https://github.com/DeepDive-Dev/eventify",
+ "Project admin": "Siddhant Singh Bisht",
+ "Admin linkedin": "https://www.linkedin.com/in/siddhantsinghbisht",
+ "Admin github": "https://github.com/sidsbgithub",
+ "Tech stack": "Next.js, TypeScript, Shadcn/UI, Tailwind CSS for frontend; MongoDB and Next.js API routes for backend; Stripe for payment processing; Google Gemini API for AI-powered features like summarization and chat; Clerk for authentication and Vercel for deployment.",
+ "keyword": "phase2"
+ },
+ {
+ "Project name": "Project Huckleberry",
+ "Project description": "The official website of GDG On Campus NIT Rourkela",
+ "Project link": "https://github.com/dscnitrourkela/project-huckleberry",
+ "Project admin": "Siddharth",
+ "Admin linkedin": "https://www.linkedin.com/in/siddharth-narayan-mishra/",
+ "Admin github": "https://github.com/siddharth-narayan-mishra",
+ "Tech stack": "NextJs, TailwindCSS, Prisma, Auth.js",
+ "keyword": "phase2"
+ },
+ {
+ "Project name": "Boutique to box",
+ "Project description": "Hybrid AI Architecture: GPT-4 (Style Analysis) + StyleGAN2 (Fabric Patterns) + RunwayML (Text-to-Image)\nGlobal Scalability: 10K+ concurrent users handled via Appwrite Cloud Functions\nFull Stack Automation: Design †’ 3D Preview †’ Manufacturing (Printful API) in <5 minutes",
+ "Project link": "https://github.com/x0lg0n/Boutique-To-Box",
+ "Project admin": "Siddhartha Kunwar",
+ "Admin linkedin": "https://www.linkedin.com/in/siddhartha-kunwar",
+ "Admin github": "https://github.com/x0lg0n",
+ "Tech stack": "Frontend: React + Three.js (WebGL 3D Viewer)\n - Backend: Node/Express + Appwrite (Auth/DB)\n - AI Core: RunwayML + StyleGAN2 + GPT-4\n - Geo-Services: Mapbox (Store Locator)\n - Manufacturing: Printful API Integration\n - Trend Analysis: Google Trends + AWS Forecast",
+ "keyword": "phase2"
+ },
+ {
+ "Project name": "Personal AI desktop Assistant",
+ "Project description": "handle desktop task",
+ "Project link": "https://github.com/simrkadak/Personal-AI-Desktop-Assistant",
+ "Project admin": "SIMRAN KADAK",
+ "Admin linkedin": "https://www.linkedin.com/in/simran-kadak-92611b256",
+ "Admin github": "https://github.com/simrkadak",
+ "Tech stack": "python, AI technologies",
+ "keyword": "phase2"
+ },
+ {
+ "Project name": "MoodSphere",
+ "Project description": "MoodSphere is a delightful and interactive Mood Tracker app that empowers you to reflect on your emotions and maintain a balanced mental state. With vibrant mood icons, a beautiful calendar interface…, and gentle reminders, it invites you to log your daily mood and express yourself freely.",
+ "Project link": "https://github.com/SivaDurshika-G/MoodSphere-",
+ "Project admin": "Siva Durshika G",
+ "Admin linkedin": "https://www.linkedin.com/in/siva-durshika-g-86141030a",
+ "Admin github": "https://github.com/SivaDurshika-G",
+ "Tech stack": "HTML,CSS,JS, Local Storage API",
+ "keyword": "phase2"
+ },
+ {
+ "Project name": "PrepWise",
+ "Project description": "AI integrated mock interview platform",
+ "Project link": "https://github.com/smiti-jana/PrepWise",
+ "Project admin": "Smiti Jana",
+ "Admin linkedin": "https://www.linkedin.com/in/smiti-jana-1102312a7",
+ "Admin github": "https://github.com/smiti-jana",
+ "Tech stack": "Typescript, React, Tailwind Css, Shadcn UI, Vapi, Firebase",
+ "keyword": "phase2"
+ },
+ {
+ "Project name": "FocusVerse",
+ "Project description": "FocusVerse is a calm, distraction-blocking web app that helps students stay focused through a customizable timer, gentle alerts, motivational quotes, and relaxing background music.\n \n It blends productivity with peace ideal for anyone who wants to study smarter without stress.",
+ "Project link": "github.com/sneha842/FocusVerse",
+ "Project admin": "Sneha Srivastava",
+ "Admin linkedin": "https://www.linkedin.com/in/sneha-srivastava-00273832b",
+ "Admin github": "https://github.com/sneha842",
+ "Tech stack": "Frontend, Python, Flask or local storage, Chart.js, Audio API",
+ "keyword": "phase2"
+ },
+ {
+ "Project name": "Alum Connect",
+ "Project description": "It is a project which has all the resources listed in the single website + mentorship as well such that it will be more easier to connect alumnis and students when they are in Tier-3 and Tier-4",
+ "Project link": "https://github.com/stuticoder123/Alum-Connect",
+ "Project admin": "Stuti Gupta",
+ "Admin linkedin": "https://www.linkedin.com/in/stuticoder1/",
+ "Admin github": "https://github.com/stuticoder123/",
+ "Tech stack": "MERN Stack,AI/ML,Frontend,Backend,All types of other languages and tech stacks are allowed",
+ "keyword": "phase2"
+ },
+ {
+ "Project name": "Mvpblocks",
+ "Project description": "MVPBlocks is a fully open-source, developer-first component library built using Next Js and TailwindCSS, designed to help you launch your MVPs in record time. No bloated packages, no unnecessary installsjust clean, copyable code to plug right into your next big thing.\n \n Whether you're building a SaaS dashboard, a landing page, or a personal portfolioMVPBlocks offers a curated set of reusable blocks designed to work beautifully right out of the box.",
+ "Project link": "https://github.com/subhadeeproy3902/mvpblocks",
+ "Project admin": "Subhadeep Roy",
+ "Admin linkedin": "https://www.linkedin.com/in/subhadeep3902/",
+ "Admin github": "https://github.com/subhadeeproy3902",
+ "Tech stack": "NextJs, Typescript, Shadcn UI, TailwindCSS, Framer Motion, Fumadocs, Vercel AI",
+ "keyword": "phase2"
+ },
+ {
+ "Project name": "Divinora",
+ "Project description": "Digital Sanctuary for exploring Divine Wisdom and spiritual Knowledge",
+ "Project link": "https://github.com/SUGAM-ARORA/Divinora",
+ "Project admin": "Sugam Arora",
+ "Admin linkedin": "https://www.linkedin.com/in/sugamarora23/",
+ "Admin github": "https://github.com/SUGAM-ARORA",
+ "Tech stack": "javascript nextjs tailwindcss supabase shadcn",
+ "keyword": "phase2"
+ },
+ {
+ "Project name": "Toolva App",
+ "Project description": "Toolva Mobile\n A comprehensive mobile application that serves as a one-stop directory for AI tools and services. Built with React Native and Expo.",
+ "Project link": "https://github.com/SUGAM-ARORA/Toolva",
+ "Project admin": "Sugam Arora",
+ "Admin linkedin": "https://www.linkedin.com/in/sugamarora23/",
+ "Admin github": "https://github.com/SUGAM-ARORA",
+ "Tech stack": "React Native , Expo , Go , Supabase , Sonarqube , Veracode",
+ "keyword": "phase2"
+ },
+ {
+ "Project name": "TechieBlog",
+ "Project description": "TechieBlog is a blogging platform that allows users to create, read, update, and delete blog posts. It provides a clean and user-friendly interface with essential features for content management. This project uses **Appwrite** as the backend, allowing for easy authentication, database management, and file storage.",
+ "Project link": "https://github.com/SumitGorai01/TechieBlog.git",
+ "Project admin": "Sumit Gorai",
+ "Admin linkedin": "https://www.linkedin.com/in/sumitgorai01/",
+ "Admin github": "https://github.com/SumitGorai01",
+ "Tech stack": "HTML, CSS, JavaScript, Tailwind css , React, Appwrite for user authentication, database, and file storage",
+ "keyword": "phase2"
+ },
+ {
+ "Project name": "GravityX",
+ "Project description": "GravityX is an innovative platform designed to showcase developers and their work in a dynamic, engaging environment. It allows users to create detailed profiles, share their projects, and connect with a growing community of technology enthusiasts. Whether you are a seasoned professional or just starting out, GravityX provides the tools to highlight your skills, build your personal brand, and explore inspiring work from others. The platform focuses on usability and modern design to make browsing effortless. By bringing developers together, GravityX aims to celebrate creativity, encourage collaboration, and support the growth of the global tech community.",
+ "Project link": "https://gravity-x.pages.dev",
+ "Project admin": "Sumit Kesarwani",
+ "Admin linkedin": "https://www.linkedin.com/in/sumit-kesarwani-35b63a286",
+ "Admin github": "https://github.com/Sumit6307",
+ "Tech stack": "Frontend: React.js, Vite, Tailwind CSS\n \n Backend: Node.js, Express.js\n \n Database: MongoDB (with Mongoose)\n \n Authentication: JSON Web Tokens (JWT)\n \n Version Control: Git and GitHub\n \n APIs: REST APIs for data operations",
+ "keyword": "phase2"
+ },
+ {
+ "Project name": "Synapse",
+ "Project description": "Synapse is an AI-powered development assistant designed to help developers plan, generate, and manage code for software projects. It leverages advanced AI models to automate requirement analysis, task planning, code generation, and integrates with GitHub for seamless project management. The platform features a modern, responsive UI, in-browser code editing, and real-time collaboration tools, making it ideal for contributors of all skill levels.",
+ "Project link": "https://github.com/skdas20/Synapse",
+ "Project admin": "Sumit Kumar Das",
+ "Admin linkedin": "https://www.linkedin.com/in/sumitkumardas-ai/",
+ "Admin github": "https://github.com/skdas20",
+ "Tech stack": "Frontend: HTML5, CSS3, JavaScript\n Backend: Python, FastAPI\n Database: MongoDB\n AI Integration: Google Gemini API\n DevOps: Render (deployment), GitHub Actions (CI/CD)\n Other: PyGithub, python-dotenv, requests, httpx",
+ "keyword": "phase2"
+ },
+ {
+ "Project name": "sachiva",
+ "Project description": "Sachiva is a frontend-focused project that lets you work on a real-world business website using HTML, CSS, JavaScript & Bootstrap. Perfect for beginners and intermediate devs to practice responsive design, clean layouts, and modern UI development!",
+ "Project link": "https://github.com/sachiva1/sachiva",
+ "Project admin": "Sumit Rathor",
+ "Admin linkedin": "https://linkedin.com/in/sumitrathor",
+ "Admin github": "https://github.com/sumitrathor1",
+ "Tech stack": "HTML, CSS, Javascript, bootstrap",
+ "keyword": "phase2"
+ },
+ {
+ "Project name": "Sachiva",
+ "Project description": "Sachiva is a frontend-focused project that lets you work on a real-world business website using HTML, CSS, JavaScript & Bootstrap. Perfect for beginners and intermediate devs to practice responsive design, clean layouts, and modern UI development!",
+ "Project link": "https://github.com/sumitrathor1/sachiva",
+ "Project admin": "sumit rathor",
+ "Admin linkedin": "https://linkedin.com/in/sumitrathor",
+ "Admin github": "https://github.com/sumitrathor1",
+ "Tech stack": "HTML, CSS, Javascript, Bootstrap 5.3",
+ "keyword": "phase2"
+ },
+ {
+ "Project name": "AI-Driven Motor Insurance Risk Assessment",
+ "Project description": "This project aims to revolutionize highway safety and vehicle insurance through AI. It uses real-time GPS and driving data to assess insurance risk dynamically and proposes Mixed-Mode Foot Over Bridges (Smart FOBs) for safer pedestrian crossings. The system leverages Gemini AI API to analyze driving behavior and enhance risk models. The app is built with Flutter, Django, and Firebase to ensure cross-platform compatibility and real-time insights.",
+ "Project link": "https://github.com/supriya46788/Driving-Safer-Roads---AI-for-Motor-Insurance-Risk-Assessment.git",
+ "Project admin": "Supriya Pandey",
+ "Admin linkedin": "https://www.linkedin.com/in/supriyapandey595",
+ "Admin github": "https://github.com/supriya46788",
+ "keyword": "phase2"
+ },
+ {
+ "Project name": "Job Junction",
+ "Project description": "HTML, CSS & JS project for applying and hiring for job roles",
+ "Project link": "https://github.com/SurajSG23/Job-Portal",
+ "Project admin": "Suraj S G Dhanva",
+ "Admin linkedin": "https://www.linkedin.com/in/suraj-s-g-dhanva-995a23298/",
+ "Admin github": "https://github.com/SurajSG23",
+ "Tech stack": "HTML, CSS & JS",
+ "keyword": "phase2"
+ },
+
+ {
+ "Project name": "StockSentry",
+ "Project description": "StockSentry is a smart stock predictor that blends past price trends with current news sentiment to capture how events like product launches or controversies impact performance. Soon, it will add an AI agent to automatically analyze news, prioritize key developments, and deliver clear, dynamic market insights.",
+ "Project link": "https://github.com/swayum1004/StockSentry",
+ "Project admin": "Swayum Hastwala",
+ "Admin linkedin": "https://www.linkedin.com/in/swayum-hastwala/",
+ "Admin github": "https://github.com/swayum1004",
+ "Tech stack": "Python, NewsAPI, TextBlob, Pandas",
+ "keyword": "phase2"
+ },
+ {
+ "Project name": "SweetCode",
+ "Project description": "SweetCode aims to create a community of students and professionals united by solving and practicing DSA questions in a gamified environment. In the long run, it would include a custom competitions, public forum, leaderboard and AI assistants that help students streamline theislr DSA practice. Its currently in its infant stage and is a Chrome extension designed to gamify your LeetCode practice sessions. It rewards you with social media usage time based on the difficulty of the LeetCode problems you solve. Once installed, SweetCode helps you stay productive by allowing limited access to social media websites until your time runs out. Your time allowance resets daily.",
+ "Project link": "https://github.com/decodingafterlife/SweetCode",
+ "Project admin": "Tanmay Shingavi",
+ "Admin linkedin": "https://www.linkedin.com/in/tanmay-shingavi",
+ "Admin github": "https://github.com/decodingafterlife",
+ "Tech stack": "JavaScript HTML CSS",
+ "keyword": "phase2"
+ },
+ {
+ "Project name": "Used car price prediction",
+ "Project description": "Developed a machine learning model to predict used car prices using Random Forest Regressor and Linear Regression. Leveraged scikit-learn for model implementation and Matplotlib for data visualization. Analyzed the model's performance to improve prediction accuracy .The system utilizes Python with Pandas and NumPy for data processing, Matplotlib and Seaborn for visualization, and Scikit-learn for machine learning model training. It predicts car prices based on factors like brand, model, mileage, and year.",
+ "Project link": "https://github.com/Tanyagambhir/UsedCarPricePridiction",
+ "Project admin": "Tanya Gambhir",
+ "Admin linkedin": "https://www.linkedin.com/in/tanya-gambhir-609ab0239?utm_source=share&utm_campaign=share_via&utm_content=profile&utm_medium=ios_app",
+ "Admin github": "https://github.com/Tanyagambhir",
+ "Tech stack": "Python, Pandas, NumPy, Matplotlib, Scikit-learn, TensorFlow, PyTorch, Flask, MongoDB.",
+ "keyword": "phase2"
+ },
+ {
+ "Project name": "SchoolApp",
+ "Project description": "Welcome to the School CRM System project! This system is designed to provide a smooth and intuitive experience for parents, students, and staff, focusing on student management and engagement. With our CRM, schools can enhance communication, ensure timely updates, and foster a better learning environment.",
+ "Project link": "https://github.com/jayanththalla/School-CRM",
+ "Project admin": "Thalla Jayanth",
+ "Admin linkedin": "linkedin.com/in/thalla-jayanth-28a04525a/",
+ "Admin github": "https://github.com/jayanththalla",
+ "Tech stack": "Next Js, Mongodb, Tailwindcss",
+ "keyword": "phase2"
+ },
+ {
+ "Project name": "payslip generation",
+ "Project description": "My pay slip generation project is a web-based tool that helps companies create and manage employee salary slips easily. It allows HR or admin users to enter employee details like name, ID, salary, and deductions, and then automatically calculates the final salary and generates a downloadable pay slip in a proper format. The system is designed to save time, reduce manual errors, and ensure accurate salary documentation each month.",
+ "Project link": "https://github.com/Vaddadibhavanaspoorthi/Projects",
+ "Project admin": "Vaddadi Bhavanaeswari spoorthi",
+ "Admin linkedin": "https://www.linkedin.com/in/bhavana-spoorthi-vaddadi-3a109325a",
+ "Admin github": "https://github.com/Vaddadibhavanaspoorthi/Projects",
+ "Tech stack": "HTML, CSS, and JavaScript for the front end, Python (Flask) for the backend, and MySQL",
+ "keyword": "phase2"
+ },
+ {
+ "Project name": "Music Player",
+ "Project description": "this is a web based music player made using javascript",
+ "Project link": "https://github.com/vaibhavrajharsh/Music-Player.git",
+ "Project admin": "Vaibhav Raj Harsh",
+ "Admin linkedin": "https://www.linkedin.com/in/vaibhavrajharsh",
+ "Admin github": "https://www.github.com/vaibhavrajharsh",
+ "Tech stack": "HTML,Css, JavaScript",
+ "keyword": "phase2"
+ },
+ {
+ "Project name": "SafeHaven",
+ "Project description": "SafeHaven is a Crowdsourced Disaster Management Platform. Assisting and Guiding people in case of Disaster.",
+ "Project link": "github.com/archangel2006/SafeHaven",
+ "Project admin": "Vaibhavi Srivastava",
+ "Admin linkedin": "https://www.linkedin.com/in/vaibhavi-srivastava-99a572348/",
+ "Admin github": "https://github.com/archangel2006",
+ "Tech stack": "HTML, CSS, JavaScript, GoogleMapsAPI",
+ "keyword": "phase2"
+ },
+ {
+ "Project name": "Geo Attend",
+ "Project description": "QR based attendance system",
+ "Project link": "https://github.com/anditisyou/QR-BASED-ATTENDANCE-SYSTEM",
+ "Project admin": "Vaishnavi khandelwal",
+ "Admin linkedin": "https://www.linkedin.com/in/vaishnavi-khandelwal-777121289",
+ "Admin github": "https://github.com/anditisyou/",
+ "Tech stack": "html, java, node js , express, react",
+ "keyword": "phase2"
+ },
+ {
+ "Project name": "Transaction anomaly detector",
+ "Project description": "- Purpose: Real-time fraud detection in financial transactions using simple algorithms, not machine learning. It can made still more efficient using ML concepts. \n - Key Methods:\n - Sliding Window: Flags users with too many rapid transactions.\n - Hash Map Analysis: Spots abnormal patterns in amounts, merchants, or frequency.\n - Graph Cycle Detection:Identifies cycles and suspicious links between accounts.\n - Trie for Merchants:Prevents fake/typo merchant attacks.\n - Why Not ML?\n - Transparent reasons for every alert.\n - Ultra-fast (O(1)-O(log n)), ideal for real-time and huge data volume.\n - No need for model training or complex resources.\n - Easy regulatory audits.\n - **Where Used:** Banks, payment processors, e-commerce, regulators, and any system needing scalable fraud checks.",
+ "Project link": "https://github.com/VaishnaviMelagiri/Transaction-Anomaly-Detector",
+ "Project admin": "Vaishnavi Melagiri",
+ "Admin linkedin": "https://www.linkedin.com/in/vaishnavi-melagiri-874209321?utm_source=share&utm_campaign=share_via&utm_content=profile&utm_medium=android_app",
+ "Admin github": "https://github.com/VaishnaviMelagiri",
+ "Tech stack": "Simple data structures, can be enhanced using ML algorithms.",
+ "keyword": "phase2"
+ },
+ {
+ "Project name": "Weather Forecast Web App",
+ "Project description": "A responsive web app that allows users to check real-time weather updates by city name.",
+ "Project link": "https://github.com/Vaishnavi-1104/Weatherapp",
+ "Project admin": "Vaishnavi V",
+ "Admin linkedin": "https://www.linkedin.com/in/vaishnavi-vadlakonda/",
+ "Admin github": "https://github.com/Vaishnavi-1104",
+ "Tech stack": "HTML, CSS, JavaScript, OpenWeatherMap API",
+ "keyword": "phase2"
+ },
+ {
+ "Project name": "Smriti AI",
+ "Project description": "Smriti AI is an intelligent, all-in-one learning assistant that helps you organize, understand, and retain everything you study from notes and youtube videos.",
+ "Project link": "https://github.com/vatsal-bhakodia/smriti-ai",
+ "Project admin": "Vatsal Bhakodia",
+ "Admin linkedin": "https://www.linkedin.com/in/vatsal-bhakodia",
+ "Admin github": "https://github.com/vatsal-bhakodia",
+ "Tech stack": "Next.js, Prisma (PostgreSQL), Clerk Auth",
+ "keyword": "phase2"
+ },
+ {
+ "Project name": "Blabber",
+ "Project description": "Blabber is a modern full-stack social media web application built using the MERN stack. It allows users to register, log in, post updates, follow other users, receive notifications, and maintain profiles. It uses JWT authentication with secure HttpOnly cookies and Cloudinary for profile image uploads.",
+ "Project link": "https://github.com/Vijayaa21/Blabber",
+ "Project admin": "Vijaya Mishra",
+ "Admin linkedin": "https://www.linkedin.com/in/vijaya-mishra21",
+ "Admin github": "https://github.com/Vijayaa21",
+ "Tech stack": "Frontend: React, React Router DOM, TailwindCSS, React Query, React Hot Toast\n Backend: Node.js, Express.js, MongoDB\n Auth: JWT with HttpOnly Cookies\n Image Upload: Cloudinary\n State Management: React Query\n Hosting: Render",
+ "keyword": "phase2"
+ },
+ {
+ "Project name": "noir",
+ "Project description": "a GitHub powered notes app",
+ "Project link": "https://github.com/07CalC/noir",
+ "Project admin": "Vinayak Maheshwari",
+ "Admin linkedin": "https://www.linkedin.com/in/maheshwarivinayak",
+ "Admin github": "https://github.com/07calc",
+ "Tech stack": "typescript, react native, expo",
+ "keyword": "phase2"
+ },
+ {
+ "Project name": "ideaVault",
+ "Project description": "IdeaVault is a SaaS-based licensing platform that enables registration of original software project ideas. It operates under a modified MIT-style license which includes a binding attribution clause. Upon registration, verified unique ideas are granted protected status. Any developer using a registered idea in a commercial product must, under the license terms, remit 1% of gross revenue to the registered idea owner. This obligation is contractual and enforceable. IdeaVault does not confer ownership but facilitates limited rights and revenue-sharing tied to ideation, ensuring recognition and compensation for original contributors.",
+ "Project link": "https://github.com/vinit105/ideaVault",
+ "Project admin": "Vinit",
+ "Admin linkedin": "https://www.linkedin.com/in/vinit-garach?utm_source=share&utm_campaign=share_via&utm_content=profile&utm_medium=android_app",
+ "Admin github": "https://github.com/vinit105",
+ "Tech stack": "React, Node, Typescript, Mongo, Redis, vercel and railway for backend deployment",
+ "keyword": "phase2"
+ },
+ {
+ "Project name": "file encryption tool",
+ "Project description": "a tool that encrypt ant file",
+ "Project link": "https://github.com/vishesh4560/File-encryption-tool",
+ "Project admin": "Vishesh verma",
+ "Admin linkedin": "https://www.linkedin.com/in/vishesh-verma-060076345",
+ "Admin github": "https://github.com/vishesh4560",
+ "Tech stack": "python",
+ "keyword": "phase2"
+ },
+ {
+ "Project name": "Rupeefi - E-rupee Digital payment platform",
+ "Project description": "RupeeFi is an innovative digital payment platform designed to convert UPI balance into e-Rupee balance, aiming to promote the adoption of e-Rupee in everyday transactions. To encourage user engagement, RupeeFi introduces gamified reward features such as daily spin wheels, scratch cards, and bonuses. Users can manage their profiles, view transaction history, and make secure payments via UPI or e-Rupee. For merchants, RupeeFi provides a robust dashboard with analytics, employee access control, and QR-based payment collection. Built with modern technologies and secure practices, the platform balances functionality, fun, and finance.",
+ "Project link": "https://github.com/Vishv04/RupeeFi",
+ "Project admin": "Vishv Boda",
+ "Admin linkedin": "https://www.linkedin.com/in/vishvboda",
+ "Admin github": "https://www.github.com/vishv04",
+ "Tech stack": "Frontend: React, Vite, Tailwind CSS, Framer Motion | Backend: Node.js, Express.js | Database: MongoDB | Authentication: Google OAuth 2.0, JWT (JSON Web Tokens) | Payments: Razorpay, UPI Integration",
+ "keyword": "phase2"
+ },
+ {
+ "Project name": "Dora-AI-Powered-Virtual-Personal-Assistant",
+ "Project description": "DORA is your AI-powered productivity companion designed to simplify your daily life. From task automation to smart reminders and intelligent information search, DORA leverages Generative AI, LLMs, RAG, and Agentic AI to bring you a truly smart virtual assistant experience.",
+ "Project link": "https://github.com/codervivek5/DORA-AI-Powered-Virtual-Personal-Assistant",
+ "Project admin": "Vivek Prajapati",
+ "Admin linkedin": "https://www.linkedin.com/in/codervivek/",
+ "Admin github": "https://github.com/codervivek5/",
+ "Tech stack": "React,Python,FastAPI,Pinecone DB, Langchain,LangGraph,CrewAI, Eleven Lab, Firebase, Tailwind, JavaScript",
+ "keyword": "phase2"
+ },
+ {
+ "Project name": "DSA attendance system",
+ "Project description": "recently built a lightweight and intuitive Attendance Management System for tracking student presence during Data Structures and Algorithms (DSA) classes. Developed as part of my Web Designing coursework at IIIT Sonepat, this project focuses on clean UI, responsive design, and ease of use.",
+ "Project link": "https://github.com/devillikevd/Attendance-Sheet",
+ "Project admin": "Vyom Dubey",
+ "Admin linkedin": "https://www.linkedin.com/in/vyom-dubey-b979952b5",
+ "Admin github": "https://github.com/devillikevd",
+ "Tech stack": "html , css , javascript",
+ "keyword": "phase2"
+ },
+ {
+ "Project name": "wharf",
+ "Project description": "Wharf is a full stack web application designed to simplify Docker management.",
+ "Project link": "https://github.com/fordevio/wharf",
+ "Project admin": "Yash Patel",
+ "Admin linkedin": "https://www.linkedin.com/in/yash-patel-997ba624b/",
+ "Admin github": "https://github.com/yp969803",
+ "Tech stack": "Go Docker Reactjs Typescript Html Css",
+ "keyword": "phase2"
+ },
+ {
+ "Project name": "Intellicash",
+ "Project description": "Intellicash is a next-gen personal finance platform powered by Google Cloud services including Firebase, Vertex Al, and Fi Money's MCP server, delivering enterprise-grade financial intelligence with consumer simplicity",
+ "Project link": "https://github.com/Sudoerz/IntelliCash",
+ "Project admin": "Zodsenpai",
+ "Admin linkedin": "https://www.linkedin.com/in/michaelrobink",
+ "Admin github": "https://github.com/Robinbinu",
+ "Tech stack": "Flutter, Python, Golang, GCP",
+ "keyword": "phase2"
+ }
+]
diff --git a/projects.json b/projects.json
index fe93566..cf7cb33 100644
--- a/projects.json
+++ b/projects.json
@@ -203,7 +203,7 @@
{
"Project name": "quiz app",
"Project description": "a quiz app made using html, css and javascript",
- "Project link": "https://jadhav124akshada.github.io/Quiz-App-/",
+ "Project link": "https://github.com/Jadhav124Akshada/SkinSense.git",
"Project admin": "Akshada Jadhav",
"Admin linkedin": "https://www.linkedin.com/in/akshada-jadhav-4b72062b5?utm_source=share&utm_campaign=share_via&utm_content=profile&utm_medium=android_app",
"Admin github": "https://github.com/Jadhav124Akshada",
@@ -354,7 +354,13 @@
"mentor 1 linkedin": "https://www.linkedin.com/in/aaryan-raj-0bba92350?utm_source=share&utm_campaign=share_via&utm_content=profile&utm_medium=android_app",
"mentor 2": "Athrva Vikas Kachare",
"Mentor 2 linkedin": "https://github.com/athrva-19",
- "mentor 2 github": "https://www.linkedin.com/in/atharv-kachare-a009a6342?utm_source=share&utm_campaign=share_via&utm_content=profile&utm_medium=android_app"
+ "mentor 2 github": "https://www.linkedin.com/in/atharv-kachare-a009a6342?utm_source=share&utm_campaign=share_via&utm_content=profile&utm_medium=android_app",
+ "mentor 3": "Suraj SG",
+ "mentor 3 linkedin": "https://www.linkedin.com/in/suraj-s-g-dhanva-995a23298/",
+ "mentor 3 github": "https://github.com/SurajSG23",
+ "mentor 4": "Rutika Kengal",
+ "mentor 4 linkedin": "https://www.linkedin.com/in/rutika-kengal-b3b0a22b7?utm_source=share&utm_campaign=share_via&utm_content=profile&utm_medium=android_app",
+ "mentor 4 github": "https://github.com/rutikakengal"
},
{
"Project name": "Menthub",
@@ -424,7 +430,10 @@
"Project admin": "ASHUTOSH",
"Admin linkedin": "https://www.linkedin.com/in/ashutosh-jena-/",
"Admin github": "https://github.com/MAVERICK-VF142",
- "Tech stack": "Backend: Python, Flask\n\nAI: Google Generative AI (Gemini Model)\n\nFrontend: HTML, CSS (Flask templates)"
+ "Tech stack": "Backend: Python, Flask\n\nAI: Google Generative AI (Gemini Model)\n\nFrontend: HTML, CSS (Flask templates)",
+ "mentor 1": "Aditya Chaudhary",
+ "mentor 1 github": "https://github.com/AdityaChaudhary2913",
+ "mentor 1 linkedin": "https://www.linkedin.com/in/adityachaudhary1306/"
},
{
"Project name": "Code A2Z",
@@ -465,7 +474,7 @@
{
"Project name": "SkillTrade",
"Project description": "Skill Trade is an innovative platform designed to connect two primary user groups: Consumers (or Users) and Service Providers (or Workers). The platform facilitates seamless interaction, enabling users to request services and service providers to fulfill them efficiently. It is a service booking platform where users can book various services such as electricians, carpenters, plumbers, and more.",
- "Project link": "https://github.com/AyushSharma72/SkillTrade",
+ "Project link": "https://github.com/AyushSharma72/Skill_Trade",
"Project admin": "Ayush Sharma",
"Admin linkedin": "https://www.linkedin.com/in/ayush-sharma-a155a8267?utm_source=share&utm_campaign=share_via&utm_content=profile&utm_medium=android_app",
"Admin github": "https://github.com/AyushSharma72",
@@ -477,7 +486,7 @@
{
"Project name": "Euphoric",
"Project description": "campus site for euphoric registerations, updates, promoting and showcasing events",
- "Project link": "https://euphoric-2025.42web.io/",
+ "Project link": "https://github.com/AshiTomar210/Euphoric-2025",
"Project admin": "Ayushi Tomar",
"Admin linkedin": "https://www.linkedin.com/in/ayushi-tomar-b388ba337",
"Admin github": "https://github.com/AshiTomar210",
@@ -594,14 +603,17 @@
{
"Project name": "silai-hub",
"Project description": "🧵 GuddiSilai – Tailoring Made Digital 👗\nGuddiSilai is a full-stack tailoring platform that brings traditional Indian stitching services online. Designed especially for customers in Tier 2 and Tier 3 cities, the platform allows users to book stitching services, customize blouses, lehengas, and dresses, and track their orders — all from the comfort of their home.\n\nBuilt with React, Node.js, Express, and MongoDB, it offers both a user-facing interface and an admin panel to manage designs, track orders, and monitor payments.",
- "Project link": "www.guddisilai.shop",
+ "Project link": "https://github.com/deepakcs2003/Silai-hub",
"Project admin": "Deepak Vishwakarma",
"Admin linkedin": "https://www.linkedin.com/in/deepakv2003",
"Admin github": "https://github.com/deepakcs2003",
"Tech stack": "react js, node js, express , full stack , authentication",
"mentor 1": "Sandeep Patel",
"mentor 1 github": "https://github.com/sandeepatel01",
- "mentor 1 linkedin": "https://www.linkedin.com/in/sandeepatel01/"
+ "mentor 1 linkedin": "https://www.linkedin.com/in/sandeepatel01/",
+ "mentor 2": "Dipayan Ghosh",
+ "Mentor 2 linkedin": "https://www.linkedin.com/in/dipayan-ghosh-coder",
+ "mentor 2 github": "https://github.com/Dip-1432"
},
{
"Project name": "Splitwiser",
@@ -618,7 +630,7 @@
{
"Project name": "Smart Chat Assistant",
"Project description": "Developed a fully responsive \"Smart Chat Assistant\" using HTML, CSS, and JavaScript featuring dark mode, voice input/output, chat history saving, and a user-friendly UI/UX. Hand-coded for real-world use, ideal for websites and portfolios.",
- "Project link": "https://github.com/devangjain999/Smart-Chat-Assistant.git",
+ "Project link": "https://github.com/devangjain999/Chat-Assistant",
"Project admin": "Devang Jain",
"Admin linkedin": "https://www.linkedin.com/in/devangjain999",
"Admin github": "https://github.com/devangjain999",
@@ -702,7 +714,7 @@
{
"Project name": "BookReview",
"Project description": "BookReview is a website for reviewing your favourite book using ai.",
- "Project link": "https://bookreview-se1e.onrender.com/",
+ "Project link": "https://github.com/DonaldReddy/BookReview",
"Project admin": "Donald Reddy",
"Admin linkedin": "https://www.linkedin.com/in/donald-reddy-indelu/",
"Admin github": "https://github.com/DonaldReddy",
@@ -823,7 +835,10 @@
"Project admin": "HARSH SRIVASTAVA",
"Admin linkedin": "https://www.linkedin.com/in/harsh-srivastava-51b67324a/",
"Admin github": "https://github.com/HarshS16",
- "Tech stack": "🔧 Tech Stack:\n\nFrontend: React, Tailwind CSS, Leaflet.js (Maps)\n\nBackend: Node.js, Express.js, PostgreSQL\n\nImage Upload: Cloudinary\n\nAuth: Role-based (Citizen/Admin)"
+ "Tech stack": "🔧 Tech Stack:\n\nFrontend: React, Tailwind CSS, Leaflet.js (Maps)\n\nBackend: Node.js, Express.js, PostgreSQL\n\nImage Upload: Cloudinary\n\nAuth: Role-based (Citizen/Admin)",
+ "mentor 1": "Mohammad Ehshan",
+ "mentor 1 github": "https://github.com/Mohammad-Ehshan",
+ "mentor 1 linkedin": "https://www.linkedin.com/in/mohammad-ehshan-4362a0298/"
},
{
"Project name": "Advanced Discord Bots - VAISH",
@@ -981,10 +996,10 @@
{
"Project name": "one- stop- guide",
"Project description": "Explore city guide and Radme details hai",
- "Project link": "github.com/komalkhatod",
+ "Project link": "https://github.com/komalkhatod1105/One-Stop-Guide",
"Project admin": "Komal Khatod",
"Admin linkedin": "linkedin.com/in/komalkhatod",
- "Admin github": "github.com/komalkhatod",
+ "Admin github": "https://github.com/komalkhatod1105",
"Tech stack": "Full stack developer",
"mentor 1": "Sandesh Shinde",
"mentor 1 github": "https://github.com/Molza01",
@@ -1005,7 +1020,7 @@
{
"Project name": "Amour Editorial Website",
"Project description": "A website for amour editorial which focuses on helping students go abroad with their documentations such as personalized SOP, LOR and scholarship essays to get their admission. As well as one on one counselling to help them achieve their study abroad dreams!",
- "Project link": "https://github.com/lolpanda2004/Amour-Editorial-Website",
+ "Project link": "https://github.com/lolpanda2004/Amour-Editorial-Website.git",
"Project admin": "Lathika",
"Admin linkedin": "https://www.linkedin.com/in/lathika-devanand-bb5813224",
"Admin github": "https://github.com/lolpanda2004",
@@ -1475,7 +1490,10 @@
"Tech stack": "Python , Machine learning",
"mentor 1": "Ruhi Tyagi",
"mentor 1 github": "https://www.github.com/ruhi47",
- "mentor 1 linkedin": "https://www.linkedin.com/in/ruhityagi"
+ "mentor 1 linkedin": "https://www.linkedin.com/in/ruhityagi",
+ "mentor 2": "Mahraib Fatima",
+ "Mentor 2 linkedin": "https://www.linkedin.com/in/mahraib-fatima/",
+ "mentor 2 github": "https://github.com/MahraibFatima"
},
{
"Project name": "CineVerse",
@@ -1555,7 +1573,7 @@
{
"Project name": "AutoPilotX-",
"Project description": "Open-source RPA toolkit to build, run, and share automation bots with a learning-first approach.",
- "Project link": "https://guthub.com/rammya29/AutoPilotX-",
+ "Project link": "https://github.com/rammya29/AutoPilotX-",
"Project admin": "Rammya Dharshini K",
"Admin linkedin": "https://www.linkedin.com/in/rammyak",
"Admin github": "https://github.com/rammya29",
@@ -1567,7 +1585,7 @@
{
"Project name": "Zero Waste Mart",
"Project description": "ZeroWasteMart is a sustainable online platform that allows users to buy, sell, or donate surplus groceries and reusable household items, aiming to reduce waste and promote eco-friendly living.",
- "Project link": "Rena-code93/ZeroWasteMart https://share.google/eLYniGBWs6C9jMUCl",
+ "Project link": "https://github.com/Rena-code93/ZeroWasteMart",
"Project admin": "Renascence Dey",
"Admin linkedin": "https://www.linkedin.com/in/renascence-dey-b422642b9?utm_source=share&utm_campaign=share_via&utm_content=profile&utm_medium=android_app",
"Admin github": "https://github.com/Rena-code93",
@@ -1603,7 +1621,7 @@
{
"Project name": "Portfolio",
"Project description": "A personal portfolio website designed to showcase my skills, projects, achievements, and experiences as a software developer. The site features smooth navigation, responsive design for all devices, and dynamic components built using React. It includes sections such as About Me, Projects, Skills, Resume Download, and Contact Form.",
- "Project link": "https://github.com/The-Rishabh-Mishra",
+ "Project link": "https://github.com/The-Rishabh-Mishra/My-Portfolio",
"Project admin": "Rishabh Mishra",
"Admin linkedin": "https://www.linkedin.com/in/rishabh-mishra-knit",
"Admin github": "https://github.com/The-Rishabh-Mishra",
@@ -1695,7 +1713,9 @@
"Admin linkedin": "https://linkedin.com/in/eccentricexplorer",
"Admin github": "https://github.com/eccentriccoder01",
"Tech stack": "Python, Streamlit, Gemini API, CSS3",
- "mentor 1": "Athrva Vikas Kachare"
+ "mentor 1": "Prateek Sharma",
+ "mentor 1 github": "https://github.com/pkbros",
+ "mentor 1 linkedin": "https://www.linkedin.com/in/prateek-sharma-pkbros25"
},
{
"Project name": "Travel-Book",
@@ -1753,10 +1773,7 @@
"Project admin": "Samarth Sharma",
"Admin linkedin": "https://www.linkedin.com/in/saysamarth/",
"Admin github": "https://github.com/saysamarth",
- "Tech stack": "Flutter, Dart, Firebase, Node.js, express.js, MongoDB, REST API and Shared Preferences.",
- "mentor 1": "Shankhadeep Paria",
- "mentor 1 github": "https://github.com/Shankha2003",
- "mentor 1 linkedin": "https://www.linkedin.com/in/shankhadeepparia/"
+ "Tech stack": "Flutter, Dart, Firebase, Node.js, express.js, MongoDB, REST API and Shared Preferences."
},
{
"Project name": "Winix",
@@ -1785,7 +1802,7 @@
{
"Project name": "DeshDarshan",
"Project description": "DeshDarshan is a cultural web experience that captures the spirit of India through its diverse regions. It brings together the richness of tradition, heritage, and identity in a visually immersive format. With a balance of modern design and traditional essence, the platform reflects the soul of the nation. DeshDarshan isn’t just a digital space—it’s a tribute to India’s timeless beauty and diversity, told through thoughtful visuals and storytelling. It invites users to connect emotionally with the roots of India.",
- "Project link": "https://sampadatiwari30.github.io/DeshDarshan/",
+ "Project link": "https://github.com/sampadatiwari30/DeshDarshan",
"Project admin": "sampada tiwari",
"Admin linkedin": "https://www.linkedin.com/in/sampada-tiwari-217123257",
"Admin github": "https://github.com/Sampadatiwari30",
@@ -1876,7 +1893,13 @@
"Tech stack": "Next.js, Tailwind CSS, Framer Motion, Backend",
"mentor 1": "Mohit jadaun",
"mentor 1 github": "https://github.com/Mohitjadaun2026",
- "mentor 1 linkedin": "https://www.linkedin.com/in/mohit-jadaun/"
+ "mentor 1 linkedin": "https://www.linkedin.com/in/mohit-jadaun/",
+ "mentor 2": "Yash vishnoi",
+ "Mentor 2 linkedin": "https://www.linkedin.com/in/yash-vishnoi-22456a291/",
+ "mentor 2 github": "https://github.com/yashjscoder",
+ "mentor 3": "Krish Chothani",
+ "mentor 3 linkedin": "https://www.linkedin.com/in/krish-chothani-797598284/",
+ "mentor 3 github": "https://github.com/KrishChothani"
},
{
"Project name": "WallGodds App",
@@ -1896,7 +1919,7 @@
{
"Project name": "Quizz project",
"Project description": "Its a small project which i have made in this procet titel is quizz game wherw you have total five qustion each qusyion have 4 option whre one is correct thia quezz is realted to novel bolks and the book name and whos the correct author or writer whe have sletec",
- "Project link": "https://github.com/sshakti971/NODE-JS/compare/main",
+ "Project link": "https://github.com/sshakti971/NODE-JS",
"Project admin": "Shakti sharma",
"Admin linkedin": "https://www.linkedin.com/in/shaktisharmajava21",
"Admin github": "https://github.com/sshakti971",
@@ -1959,7 +1982,7 @@
{
"Project name": "MediGuide",
"Project description": "Personalized Medicine Recommendation System",
- "Project link": "https://github.com/ShrutiparnaRoy",
+ "Project link": "https://github.com/ShrutiparnaRoy/Medicine_Recommendation/",
"Project admin": "Shrutiparna Roy",
"Admin linkedin": "https://www.linkedin.com/in/shrutiparna-roy-a70b9728a?utm_source=share&utm_campaign=share_via&utm_content=profile&utm_medium=android_app",
"Admin github": "https://github.com/ShrutiparnaRoy",
@@ -2125,7 +2148,10 @@
"Project admin": "Tanmay B. Pansare",
"Admin linkedin": "https://www.linkedin.com/in/tanmay-pansare-16394330b/",
"Admin github": "https://github.com/tanmaydchamp",
- "Tech stack": "Arduino / NodeMCU / Raspberry Pi Python (IoT scripting, backend integration) MQTT / Blynk / Firebase Realtime DB Solar panel + Li-ion power management SMS APIs (Twilio / Fast2SMS) Optional: Google Cloud IoT / ESPNow"
+ "Tech stack": "Arduino / NodeMCU / Raspberry Pi Python (IoT scripting, backend integration) MQTT / Blynk / Firebase Realtime DB Solar panel + Li-ion power management SMS APIs (Twilio / Fast2SMS) Optional: Google Cloud IoT / ESPNow",
+ "mentor 1": "Rajdeep Mohanty",
+ "mentor 1 github": "https://github.com/rajdeep5901",
+ "mentor 1 linkedin": "https://www.linkedin.com/in/rajdeepmohanty/"
},
{
"Project name": "SmartLog",
@@ -2200,7 +2226,10 @@
"Tech stack": "Python",
"mentor 1": "SRINADH TADIKONDA",
"mentor 1 github": "http://github.com/srinadhtadikonda",
- "mentor 1 linkedin": "http://linkedin.com/srinadhtadikonda"
+ "mentor 1 linkedin": "http://linkedin.com/srinadhtadikonda",
+ "mentor 2": "Arpit Mishra",
+ "Mentor 2 linkedin": "https://www.linkedin.com/in/arpit-mishra-87b943242/",
+ "mentor 2 github": "https://github.com/TheChaoticor"
},
{
"Project name": "Term",
@@ -2222,7 +2251,9 @@
"Admin linkedin": "https://in.linkedin.com/in/vaibhavbabele",
"Admin github": "https://github.com/VAIBHAVBABELE/",
"Tech stack": "HTML, CSS, JavaScript, PHP, MySQL, google app script, bootstrap",
- "mentor 1": "Athrva Vikas Kachare"
+ "mentor 1": "Harsh Saini",
+ "mentor 1 github": "https://github.com/Harshsaini001",
+ "mentor 1 linkedin": "https://www.linkedin.com/in/harsh-saini-734ab6264/"
},
{
"Project name": "Ardh Naari Shakti",
@@ -2261,7 +2292,10 @@
"Tech stack": "python, javascript, reactjs, fastapi",
"mentor 1": "SRINADH TADIKONDA",
"mentor 1 github": "http://github.com/srinadhtadikonda",
- "mentor 1 linkedin": "http://linkedin.com/srinadhtadikonda"
+ "mentor 1 linkedin": "http://linkedin.com/srinadhtadikonda",
+ "mentor 2": "Aric Pandya",
+ "Mentor 2 linkedin": "https://www.linkedin.com/in/aricpandya?utm_source=share&utm_campaign=share_via&utm_content=profile&utm_medium=android_app",
+ "mentor 2 github": "https://github.com/AricPandya"
},
{
"Project name": "Product Ledger",
diff --git a/projects5-phase1.json b/projects5-phase1.json
new file mode 100644
index 0000000..21508d8
--- /dev/null
+++ b/projects5-phase1.json
@@ -0,0 +1,3560 @@
+[
+ {
+ "Project name": "Astra-Ai – AI Secretary App",
+ "Project description": "Astra-Ai is an open-source AI-powered personal assistant for Android built with Kotlin. It supports both voice and text interactions, powered by LLaMA 3 via Ollama for local inference. The app features a memory-based context engine and retrieval-augmented generation (RAG) to deliver context-aware, intelligent responses. Designed with modular components, it provides users with a chat-like interface, voice capabilities, and future integration plans for task automation, email, and calendar management.",
+ "Project link": "https://github.com/A-Akhil/Astra-Ai",
+ "Project admin": "A Akhil",
+ "Admin linkedin": "https://www.linkedin.com/in/a-akhil-16b396201",
+ "Admin github": "https://github.com/A-Akhil",
+ "Tech stack": "The primary tech stack used is Kotlin, with support for Android Jetpack components, Ollama (for LLM serving), speech services, and MVVM architecture.",
+ "mentor 1": "Navdeep Kaur",
+ "mentor 1 github": "https://github.com/Navdeep-lab",
+ "mentor 1 linkedin": "https://www.linkedin.com/in/navdeep-kaur-057258312",
+ "mentor 2": "Akshit tiwari",
+ "Mentor 2 linkedin": "https://www.linkedin.com/in/akshit-tiwarii",
+ "mentor 3": "Kosaraju joshitha",
+ "mentor 3 linkedin": "https://www.linkedin.com/in/joshitha-kosaraju?utm_source=share&utm_campaign=share_via&utm_content=profile&utm_medium=android_app",
+ "mentor 3 github": "https://github.com/joshitha5g4",
+ "mentor 4": "ISHA PATEL",
+ "mentor 4 linkedin": "https://www.linkedin.com/in/isha-patel-6899192ab?utm_source=share&utm_campaign=share_via&utm_content=profile&utm_medium=android_app",
+ "mentor 4 github": "https://github.com/candy1227",
+ "mentor 5": "Reshma G.V.S.",
+ "mentor 5 linkedin": "https://in.linkedin.com/in/reshma-g-v-s-740906295",
+ "mentor 5 github": "https://github.com/Reshmagvs",
+ "keyword": "phase1"
+ },
+ {
+ "Project name": "TechXNinjas website",
+ "Project description": "TechXNinjas community website",
+ "Project link": "https://www.github.com/techxninjas/techxninjas-client",
+ "Project admin": "Aadil Latif",
+ "Admin linkedin": "https://www.linkedin.com/in/iaadillatif",
+ "Admin github": "https://www.github.com/iaadillatif",
+ "Tech stack": "ReactJS, Next.js, Typescript, Vite, CSS Tailwind",
+ "mentor 1": "Harshendra M",
+ "mentor 1 github": "https://github.com/harshendram",
+ "mentor 1 linkedin": "https://www.linkedin.com/in/harshendra-m-2b8bb5299/",
+ "mentor 2": "Gaurav Gupta",
+ "Mentor 2 linkedin": "https://www.linkedin.com/in/gauravgupta7431/",
+ "mentor 2 github": "https://github.com/Gaurav075",
+ "mentor 3": "Kumari Vrishti",
+ "mentor 3 linkedin": "https://www.linkedin.com/in/vrishti-kumari-3755a5299",
+ "mentor 3 github": "https://github.com/Vrishti-vibes",
+ "mentor 4": "Iqra Fatima",
+ "mentor 4 linkedin": "https://www.linkedin.com/in/iqra-fatima-a15bba2ba?utm_source=share&utm_campaign=share_via&utm_content=profile&utm_medium=android_app",
+ "mentor 4 github": "https://github.com/iqrfatima",
+ "mentor 5": "Ishika Gupta",
+ "mentor 5 linkedin": "https://www.linkedin.com/in/ishika-gupta-78648325b/",
+ "mentor 5 github": "https://github.com/Ishika-Gupta06",
+ "keyword": "phase1"
+ },
+ {
+ "Project name": "SmartC.V.",
+ "Project description": "we are building a ats score checker and resume builder for students and working professional",
+ "Project link": "https://github.com/krit-vardhan-mishra/SmartC.V..git",
+ "Project admin": "Abhinav Dhiman",
+ "Admin linkedin": "https://www.linkedin.com/in/abhinav-dhiman-7b170b256",
+ "Admin github": "https://github.com/AbhinavDhiman34/",
+ "Tech stack": "MERN , python microservices, libraries like spaCy or nltk for Natural Language processing and docx2txt , pdfminer.six for parsing .docx or pdf",
+ "mentor 1": "Annapoorna V",
+ "mentor 1 github": "https://github.com/Annapoornaaradhya",
+ "mentor 1 linkedin": "https://www.linkedin.com/in/annapoorna-aradhya/",
+ "mentor 2": "Aman",
+ "Mentor 2 linkedin": "https://www.linkedin.com/in/aman-gupta-924795291?utm_source=share&utm_campaign=share_via&utm_content=profile&utm_medium=ios_app",
+ "mentor 2 github": "https://github.com/Aman01012006/Aman.github.io",
+ "mentor 3": "Gopichand Dandimeni",
+ "mentor 3 linkedin": "https://www.linkedin.com/in/gopichand-dandimeni-269709287/",
+ "mentor 3 github": "https://github.com/Gooichand",
+ "keyword": "phase1"
+ },
+ {
+ "Project name": "FinPilot",
+ "Project description": "FinPilot is an open-source, enterprise-grade internal finance and expense approval system designed to streamline the reimbursement process within organizations. It provides a structured, transparent, and secure workflow where employees can raise expense claims, managers can review and approve them, and finance teams can validate and settle the claims.",
+ "Project link": "https://github.com/Abhinavhaldiya/FinPilot",
+ "Project admin": "Abhinav Kumar",
+ "Admin linkedin": "https://www.linkedin.com/in/abhinav-kumar-nitkkr/",
+ "Admin github": "https://github.com/Abhinavhaldiya",
+ "Tech stack": "FinPilot is built using a simple and modern tech stack that includes React and Tailwind CSS for the frontend, Node.js and Express for the backend, and PostgreSQL for the database. It also uses JWT for authentication, bcrypt for password hashing, Multer for file uploads, and Chart.js for displaying data in graphs and charts.",
+ "mentor 1": "Shivam Prasad Singh",
+ "mentor 1 github": "https://github.com/shivhere007",
+ "mentor 1 linkedin": "http://www.linkedin.com/in/iamshiv07",
+ "mentor 2": "Gaurav Gupta",
+ "Mentor 2 linkedin": "https://www.linkedin.com/in/gauravgupta7431/",
+ "mentor 2 github": "https://github.com/Gaurav075",
+ "mentor 3": "Manya",
+ "mentor 3 linkedin": "https://www.linkedin.com/in/saleha-tabassum-213568268",
+ "mentor 3 github": "https://www.github.com/Manya35",
+ "mentor 4": "Ishika Gupta",
+ "mentor 4 linkedin": "https://www.linkedin.com/in/ishika-gupta-78648325b/",
+ "mentor 4 github": "https://github.com/Ishika-Gupta06",
+ "mentor 5": "Sanskar Bhardwaj",
+ "mentor 5 linkedin": "https://www.linkedin.com/in/sanskar-bhardwaj-618b82244?lipi=urn%3Ali%3Apage%3Ad_flagship3_profile_view_base_contact_details%3B3toz2nbTSJOH9qVC%2B1TgHA%3D%3D",
+ "mentor 5 github": "https://github.com/Quantsanskar",
+ "keyword": "phase1"
+ },
+ {
+ "Project name": "eventstack",
+ "Project description": "EventStack is a platform alternative to Doodle and Luma Events for managing, organizing and stacking events effeciently.",
+ "Project link": "https://github.com/abhirajadhikary06/eventstack.git",
+ "Project admin": "Abhiraj Adhikary",
+ "Admin linkedin": "https://www.linkedin.com/in/abhirajadhikary06/",
+ "Admin github": "https://github.com/abhirajadhikary06",
+ "Tech stack": "Tornado, HTML, CSS, Js, SQLite",
+ "mentor 1": "Divyanshi Kulshrestha",
+ "mentor 1 github": "https://github.com/divyanshii10",
+ "mentor 1 linkedin": "https://www.linkedin.com/in/divyanshi-kulshrestha-5ba319295/",
+ "mentor 2": "Aditi Jagdish Godse",
+ "Mentor 2 linkedin": "https://www.linkedin.com/in/aditi-godse30?utm_source=share&utm_campaign=share_via&utm_content=profile&utm_medium=android_app",
+ "mentor 2 github": "https://github.com/aditigodse10",
+ "mentor 3": "Tanyashri M",
+ "mentor 3 linkedin": "https://www.linkedin.com/in/tanya-m-94a74a234?utm_source=share&utm_campaign=share_via&utm_content=profile&utm_medium=android_app",
+ "mentor 3 github": "https://github.com/Tanyashri",
+ "keyword": "phase1"
+ },
+ {
+ "Project name": "DevElevate",
+ "Project description": "DevElevate is a full-stack, AI-powered open-source platform built to help students and developers learn technical skills, grow confidently, and prepare for careers—all from a single platform. The platform offers:\nStructured learning paths in DSA, Java, MERN, AI/ML, and Data Science\nAn AI chatbot (Study Buddy) to solve doubts, guide on career paths, and suggest resources.\nPersonalized dashboards for learners, including progress tracking, daily planners, and goals.\nA tech feed offering real-time internship updates, hackathon events, and developer news.\nTools like resume and cover letter builders, mock interview practice, and profile optimizers.\nRole-based authentication for users and admins, with profile management and admin dashboard.\nIntegrated coding practice links (GFG, LeetCode, HackerRank).\nAccessibility features like dark mode,white.",
+ "Project link": "https://github.com/abhisek2004/Dev-Elevate.git",
+ "Project admin": "ABHISEK PANDA",
+ "Admin linkedin": "http://www.linkedin.com/in/abhisekpanda2004",
+ "Admin github": "https://github.com/abhisek2004",
+ "Tech stack": "Frontend: TypeScript, Tailwind CSS, Shadcn UI\nBackend: Node.js or Express.js\nDatabase: MongoDB Atlas",
+ "mentor 1": "Jay Sandeep Sawant",
+ "mentor 1 github": "https://github.com/Jay2006sawant",
+ "mentor 1 linkedin": "https://www.linkedin.com/in/jay-sawant-4b59aa324/",
+ "mentor 2": "Avansh Yadav",
+ "Mentor 2 linkedin": "https://www.linkedin.com/in/avanshyadav/",
+ "mentor 2 github": "https://github.com/Avansh2006",
+ "mentor 3": "Afifa Fatima",
+ "mentor 3 linkedin": "https://www.linkedin.com/in/afifa-fatima-b16a23289/",
+ "mentor 3 github": "https://github.com/afifaFatima786",
+ "mentor 4": "Amisha Gupta",
+ "mentor 4 linkedin": "https://www.linkedin.com/in/amishagupta31/",
+ "mentor 4 github": "https://github.com/amishagupta31",
+ "mentor 5": "Raza Ali",
+ "mentor 5 linkedin": "https://linkedin.com/in/razaali313",
+ "mentor 5 github": "https://github.com/RazaAli313",
+ "keyword": "phase1"
+ },
+ {
+ "Project name": "people hub",
+ "Project description": "This project is a comprehensive Employee Management Portal with secure login authentication. It empowers users to efficiently create, update, and delete employee details, along with managing leave requests. Future enhancements include a modernized user interface, notification management, and the integration of other advanced features for a complete people management solution.",
+ "Project link": "https://github.com/abhisek247767/PeopleHub-Frontend",
+ "Project link2": "https://github.com/abhisek247767/PeopleHub-Backend",
+ "Project admin": "Abhisek Roy",
+ "Admin linkedin": "https://www.linkedin.com/in/royabhisek247767/",
+ "Admin github": "https://github.com/abhisek247767",
+ "Tech stack": "Angular, NodeJS, MongoDB, Docker",
+ "mentor 1": "Riddhi Chakraborty",
+ "mentor 1 github": "https://github.com/riddhi-testcases",
+ "mentor 1 linkedin": "https://www.linkedin.com/in/riddhi-chakraborty-334069279",
+ "mentor 2": "Efrata Aron",
+ "Mentor 2 linkedin": "https://www.linkedin.com/in/efrata-aron-b135ab279",
+ "mentor 2 github": "https://github.com/EfrataAron",
+ "keyword": "phase1"
+ },
+ {
+ "Project name": "Foodie",
+ "Project description": "online food delivery application",
+ "Project link": "https://github.com/Abhishek2634/Foodie",
+ "Project admin": "Abhishek Farshwal",
+ "Admin linkedin": "https://www.linkedin.com/in/abhishekfarswal/",
+ "Admin github": "https://github.com/Abhishek2634",
+ "Tech stack": "MERN stack",
+ "mentor 1": "Abhishek Kumar",
+ "mentor 1 github": "https://github.com/abhishekraoas",
+ "mentor 1 linkedin": "https://linkedin.com/in/abhishekraoas",
+ "mentor 2": "Nouman Khan",
+ "Mentor 2 linkedin": "https://www.linkedin.com/in/nouman-khan-95923a256/",
+ "mentor 2 github": "https://github.com/NoumanKhan2003",
+ "mentor 3": "SINGH HARSH RAHULKUMAR",
+ "mentor 3 linkedin": "https://www.linkedin.com/in/harsh-s-08691222a",
+ "mentor 3 github": "https://github.com/singhharsh1708",
+ "mentor 4": "Iqra Fatima",
+ "mentor 4 linkedin": "https://www.linkedin.com/in/iqra-fatima-a15bba2ba?utm_source=share&utm_campaign=share_via&utm_content=profile&utm_medium=android_app",
+ "mentor 4 github": "https://github.com/iqrfatima",
+ "keyword": "phase1"
+ },
+ {
+ "Project name": "TravelGrid",
+ "Project description": "An all-in-one travel platform offering seamless booking for hotels, flights, and rentals, along with personalized trip planning and travel guides. The website aims to simplify travel experiences by combining convenience, affordability, and expert recommendations in one place.",
+ "Project link": "https://github.com/Adarsh-Chaubey03/TravelGrid",
+ "Project admin": "Adarsh Chaubey",
+ "Admin linkedin": "https://in.linkedin.com/in/adarsh-chaubey",
+ "Admin github": "https://github.com/Adarsh-Chaubey03",
+ "Tech stack": "MERN Stack (Recact Js)",
+ "mentor 1": "Vinayak Jain",
+ "mentor 1 github": "Vinayak55jain https://share.google/6aAMr2AvpqGMmL9r5",
+ "mentor 1 linkedin": "https://www.linkedin.com/in/vinayakjain03?utm_source=share&utm_campaign=share_via&utm_content=profile&utm_medium=android_app",
+ "mentor 2": "Kosaraju joshitha",
+ "Mentor 2 linkedin": "https://www.linkedin.com/in/joshitha-kosaraju?utm_source=share&utm_campaign=share_via&utm_content=profile&utm_medium=android_app",
+ "mentor 2 github": "https://github.com/joshitha5g4",
+ "mentor 3": "Tirumani Satya Akshay",
+ "mentor 3 linkedin": "https://www.linkedin.com/in/tirumani-satya-akshay/",
+ "mentor 3 github": "https://github.com/akki-2004",
+ "mentor 4": "Kanishka",
+ "mentor 4 linkedin": "https://in.linkedin.com/in/kanishka-tyagi-a334b128b",
+ "mentor 4 github": "https://github.com/sachiikrish",
+ "keyword": "phase1"
+ },
+ {
+ "Project name": "JobSync - Inclusive Job Finder Platform",
+ "Project description": "JobSync is a job discovery platform designed for underprivileged individuals and daily wage workers. It simplifies access to job opportunities through a clean UI, multilingual support, and voice-enabled search. Contributors will help build core features like user authentication, a job search dashboard with scraping or API integration, and accessibility tools for low-literacy users. The goal is to create a user-friendly and inclusive job-seeking experience for those who need it most.",
+ "Project link": "https://github.com/adityagarwal15/JobSync",
+ "Project admin": "Aditya Agarwal",
+ "Admin linkedin": "https://www.linkedin.com/in/adityagarwal15/",
+ "Admin github": "https://github.com/adityagarwal15",
+ "Tech stack": "HTML,CSS,JS,REACT.JS,NODE.JS,EXPRESS.JS,MONGODB,WEB SPEECH API, I18NEXT,NETLIFY",
+ "mentor 1": "ADITYA KALBURGI",
+ "mentor 1 github": "https://github.com/adityakalburgi",
+ "mentor 1 linkedin": "http://www.linkedin.com/in/adityakalburgi",
+ "mentor 2": "Keshav Pathak",
+ "Mentor 2 linkedin": "linkedin.com/in/keshav-pathak-bb0999297",
+ "mentor 2 github": "github.com/KeshavPathak01",
+ "mentor 3": "Shruti Tiwari",
+ "mentor 3 linkedin": "https://www.linkedin.com/in/shruti-tiwari-a8537725a?utm_source=share&utm_campaign=share_via&utm_content=profile&utm_medium=android_app",
+ "mentor 3 github": "https://github.com/Shruti0534",
+ "keyword": "phase1"
+ },
+ {
+ "Project name": "CodeClip",
+ "Project description": "Code Snippet Manager Extension",
+ "Project link": "https://github.com/opensource-society/CodeClip",
+ "Project admin": "Aditya Kumar",
+ "Admin linkedin": "https://linkedin.com/in/adityai0",
+ "Admin github": "https://github.com/adityai0",
+ "Tech stack": "HTML, CSS, JAVASCRIPT",
+ "mentor 1": "Harsh Ahuja",
+ "mentor 1 github": "https://github.com/Harsh-26626",
+ "mentor 1 linkedin": "https://www.linkedin.com/in/harsh-ahuja-722948292/",
+ "mentor 2": "Sreejani Banik",
+ "Mentor 2 linkedin": "https://www.linkedin.com/in/sreejani-banik-4a2bab281?utm_source=share&utm_campaign=share_via&utm_content=profile&utm_medium=android_app",
+ "mentor 2 github": "https://github.com/SreejaniBanik",
+ "mentor 3": "Saleha Tabassum",
+ "mentor 3 linkedin": "https://www.linkedin.com/in/saleha-tabassum-213568268",
+ "mentor 3 github": "https://github.com/SalehaTabassum",
+ "mentor 4": "Sahaj Dang",
+ "mentor 4 linkedin": "https://in.linkedin.com/in/sahaj-dang-b72507217",
+ "mentor 4 github": "https://github.com/SahajDang",
+ "keyword": "phase1"
+ },
+ {
+ "Project name": "NotesVault",
+ "Project description": "NotesVault is a beginner-friendly, open-source web app designed to help students store, browse, and manage academic notes and previous year questions (PYQs) in one place. This project is perfect for contributors who want to build and grow a useful educational tool from scratch.",
+ "Project link": "https://github.com/opensource-society/NotesVault",
+ "Project admin": "Aditya Patwa",
+ "Admin linkedin": "https://www.linkedin.com/in/AdityaPatwa07",
+ "Admin github": "https://github.com/Aditya-Patwa/",
+ "Tech stack": "HTML, CSS, JavaScript",
+ "mentor 1": "Anand Kumar",
+ "mentor 1 github": "https://github.com/Anandmehata",
+ "mentor 1 linkedin": "https://www.linkedin.com/in/anand-mehta-787678295?utm_source=share&utm_campaign=share_via&utm_content=profile&utm_medium=android_app",
+ "mentor 2": "Ashish Jangra",
+ "Mentor 2 linkedin": "https://www.linkedin.com/in/ashish-jangra-0aab9124b?utm_source=share&utm_campaign=share_via&utm_content=profile&utm_medium=android_app",
+ "mentor 2 github": "https://github.com/OpArcade",
+ "mentor 3": "Charvi Wadhwa",
+ "mentor 3 linkedin": "https://www.linkedin.com/in/charvi-wadhwa-23b565291?utm_source=share&utm_campaign=share_via&utm_content=profile&utm_medium=android_app",
+ "mentor 3 github": "https://github.com/charrviwadhwa",
+ "mentor 4": "ISHA PATEL",
+ "mentor 4 linkedin": "https://www.linkedin.com/in/isha-patel-6899192ab?utm_source=share&utm_campaign=share_via&utm_content=profile&utm_medium=android_app",
+ "mentor 4 github": "https://github.com/candy1227",
+ "mentor 5": "Uma Ramisetty",
+ "mentor 5 linkedin": "https://www.linkedin.com/in/uma-ramisetty-303899287",
+ "mentor 5 github": "https://github.com/UmaRamisetty",
+ "keyword": "phase1"
+ },
+ {
+ "Project name": "Aluma",
+ "Project description": "With the growing need for mental health support and the lack of accessible or affordable resources , Aluma aims to provide a simple and supportive platform for emotjonal well being, for people of all ages. Aluma combines helpful tools like mood tracking, AI powered chatbots which personalise the response based on the information the user gives and music to support users in their daily mental health journey. The platform features 2 chatbots, Elena for emotional support and Jess for motivation, offering friendly conversations and helpful suggestions. Users can track their daily mood and events in a virtual Journal, take emotional assessments and receive AI generated tips for their specific situation. Aluma also offers relaxing music and meditation video links to help with anxiety and stress. This project has been shaped by feedback from over 60 users and focuses on providing a safe anf welcoming space for emotional care.",
+ "Project link": "https://github.com/AdityaRalhan/Aluma",
+ "Project admin": "Aditya Ralhan",
+ "Admin linkedin": "https://www.linkedin.com/in/aditya-ralhan/",
+ "Admin github": "https://github.com/AdityaRalhan",
+ "Tech stack": "Nextjs, Reactjs, Tailwind, Expressjs, MongoDB, Mongoose, Gemini API, Spotify API, JWT and Bcrypt",
+ "mentor 1": "Divyanshi Kulshrestha",
+ "mentor 1 github": "https://github.com/divyanshii10",
+ "mentor 1 linkedin": "https://www.linkedin.com/in/divyanshi-kulshrestha-5ba319295/",
+ "mentor 2": "Dipayan Ghosh",
+ "Mentor 2 linkedin": "https://www.linkedin.com/in/dipayan-ghosh-coder",
+ "mentor 2 github": "https://github.com/Dip-1432",
+ "mentor 3": "Arvind Singh",
+ "mentor 3 linkedin": "https://www.linkedin.com/in/arvind-singh-92b88928a",
+ "mentor 3 github": "https://github.com/04arvind",
+ "mentor 4": "Sumit Sagar",
+ "mentor 4 linkedin": "https://www.linkedin.com/in/sumit-sagar-8a8b39286",
+ "mentor 4 github": "https://github.com/mostpalon3",
+ "keyword": "phase1"
+ },
+ {
+ "Project name": "Trendhora",
+ "Project description": "Trendhora – your gateway to a seamless online shopping experience. This full-stack ecommerce application harnesses the power of the MERN stack to bring you a dynamic and interactive marketplace. Whether you're a buyer exploring diverse product categories or an admin managing inventory and customer accounts, Trendhora offers a robust and feature-rich platform for all your ecommerce needs.",
+ "Project link": "https://github.com/agamjotsingh18/trendhora",
+ "Project admin": "Agamjot Singh",
+ "Admin linkedin": "https://www.linkedin.com/in/agamjot-singh/",
+ "Admin github": "https://github.com/agamjotsingh18",
+ "mentor 1": "Tanziha Sheikh",
+ "mentor 1 github": "https://github.com/Tanziha-Sheikh",
+ "mentor 1 linkedin": "https://www.linkedin.com/in/s-a32b802",
+ "mentor 2": "Vishisht Kapoor",
+ "Mentor 2 linkedin": "https://www.linkedin.com/in/vishishtkapoor?utm_source=share&utm_campaign=share_via&utm_content=profile&utm_medium=android_app",
+ "mentor 2 github": "github.com/vishishtkapoor",
+ "keyword": "phase1"
+ },
+ {
+ "Project name": "quiz app",
+ "Project description": "a quiz app made using html, css and javascript",
+ "Project link": "https://github.com/Jadhav124Akshada/SkinSense.git",
+ "Project admin": "Akshada Jadhav",
+ "Admin linkedin": "https://www.linkedin.com/in/akshada-jadhav-4b72062b5?utm_source=share&utm_campaign=share_via&utm_content=profile&utm_medium=android_app",
+ "Admin github": "https://github.com/Jadhav124Akshada",
+ "Tech stack": "HTML, CSS, javascript",
+ "mentor 1": "Priya",
+ "mentor 1 github": "https://github.com/Priyakatariya",
+ "mentor 1 linkedin": "https://www.linkedin.com/in/priya-27a522333?utm_source=share&utm_campaign=share_via&utm_content=profile&utm_medium=android_app",
+ "mentor 2": "Muhammad Hassam",
+ "Mentor 2 linkedin": "https://www.linkedin.com/in/hassam-dev",
+ "mentor 2 github": "https://github.com/Shinjuro-svg",
+ "mentor 3": "Richa",
+ "mentor 3 linkedin": "https://www.linkedin.com/in/richa-yadav-3273a7224/",
+ "mentor 3 github": "https://github.com/richayadav03",
+ "mentor 4": "Jitendra Rajput",
+ "mentor 4 linkedin": "https://www.linkedin.com/in/jitendra-rajputt",
+ "mentor 4 github": "https://github.com/Jitendrarajputt",
+ "mentor 5": "Pradeeshwaran S",
+ "mentor 5 linkedin": "https://www.linkedin.com/in/pradeeshwaran",
+ "mentor 5 github": "https://github.com/pradeevk",
+ "keyword": "phase1"
+ },
+ {
+ "Project name": "KinetiX : AI Powered Fitness Application",
+ "Project description": "KinetiX is an AI-powered Android fitness app that helps users improve posture, track workouts, and maintain a healthy lifestyle. Built using Kotlin and ML models, KinetiX combines mobile development with machine learning to provide real-time posture correction and personalized exercise feedback. The app is designed with a sleek dark theme UI, offering features like:\nPosture AI: Real-time posture detection using TensorFlow Lite. Workout Tracker: Customizable workout plans and tracking. Progress Dashboard: Visual insights into fitness journey.\nReminders & Goals: Push notifications for workouts and hydration.\nUser Profile: BMI calculator and fitness analytics.",
+ "Project link": "https://github.com/akshtshrma/KinetiX",
+ "Project admin": "Akshat Sharma",
+ "Admin linkedin": "https://www.linkedin.com/in/akshtshrma",
+ "Admin github": "https://github.com/akshtshrma",
+ "Tech stack": "Kotlin, XML, Mediapipe, MVVM,",
+ "mentor 1": "Navdeep Kaur",
+ "mentor 1 github": "https://github.com/Navdeep-lab",
+ "mentor 1 linkedin": "https://www.linkedin.com/in/navdeep-kaur-057258312",
+ "mentor 2": "Thanisha Dewangan",
+ "Mentor 2 linkedin": "https://www.linkedin.com/in/thanisha-dewangan-b89720276/",
+ "mentor 2 github": "https://github.com/ThanishaDewangan",
+ "mentor 3": "Yash",
+ "mentor 3 linkedin": "https://www.linkedin.com/in/yash-gupta-a01153348",
+ "mentor 3 github": "https://github.com/Yashgpt123",
+ "mentor 4": "Anirudh Kumar",
+ "mentor 4 linkedin": "https://www.linkedin.com/in/abhianirudh",
+ "mentor 4 github": "https://github.com/Abhi-anirudh",
+ "keyword": "phase1"
+ },
+ {
+ "Project name": "exciting_pong-game",
+ "Project description": "An classic Pong game built with HTML, CSS, and JavaScript, featuring AI, difficulty levels, and sound effects.",
+ "Project link": "https://github.com/Akki-jaiswal/pong-game.git",
+ "Project admin": "Akshay Jaiswal",
+ "Admin linkedin": "https://www.linkedin.com/in/akshay-jaiswal-20348a31b?utm_source=share&utm_campaign=share_via&utm_content=profile&utm_medium=android_app",
+ "Admin github": "https://github.com/Akki-jaiswal",
+ "Tech stack": "Html | CSS | JavaScript",
+ "mentor 1": "RohithS D",
+ "mentor 1 github": "https://github.com/Rohith0750",
+ "mentor 1 linkedin": "https://www.linkedin.com/in/s-d-rohith-b31052296",
+ "mentor 2": "Priya",
+ "Mentor 2 linkedin": "https://www.linkedin.com/in/priya-27a522333?utm_source=share&utm_campaign=share_via&utm_content=profile&utm_medium=android_app",
+ "mentor 2 github": "https://github.com/Priyakatariya",
+ "mentor 3": "Shreeya Srivastava",
+ "mentor 3 linkedin": "https://www.linkedin.com/in/shreeya-srivastava-94a458327/",
+ "mentor 3 github": "https://github.com/shreesriv12",
+ "keyword": "phase1"
+ },
+ {
+ "Project name": "AI Stock Analyzer",
+ "Project description": "The Stock Analyzer project is a complete stock market analysis tool utilizing ML models. It allows users to input stock symbols, select date ranges, view historical stock trends, and see future stock price predictions via interactive charts.",
+ "Project link": "https://github.com/SrigadaAkshayKumar/stock",
+ "Project admin": "Akshay kumar",
+ "Admin linkedin": "https://www.linkedin.com/in/akshaykumarsrigada",
+ "Admin github": "https://github.com/SrigadaAkshayKumar",
+ "Tech stack": "Frontend: React, JavaScript Backend: Python",
+ "mentor 1": "Akshit Tiwari",
+ "mentor 1 github": "https://github.com/AkshitTiwarii",
+ "mentor 1 linkedin": "https://www.linkedin.com/in/akshit-tiwarii/",
+ "mentor 2": "Dhruva Kumar Kaushal",
+ "Mentor 2 linkedin": "www.linkedin.com/in/dhruvakkaushal",
+ "mentor 2 github": "https://github.com/dhruvak001",
+ "mentor 3": "Palak Dwivedi",
+ "mentor 3 linkedin": "https://www.linkedin.com/in/palak-dwivedi1/",
+ "mentor 3 github": "https://github.com/Palak2506",
+ "mentor 4": "Abdullah Jameel",
+ "mentor 4 linkedin": "https://www.linkedin.com/in/abdullahjameel94",
+ "mentor 4 github": "https://github.com/abdullahxyz85",
+ "mentor 5": "Khabab Akhtar",
+ "mentor 5 linkedin": "https://www.linkedin.com/in/khabab-akhtar-5b34562b1/",
+ "mentor 5 github": "https://github.com/Khababakhtar20",
+ "keyword": "phase1"
+ },
+ {
+ "Project name": "aitoolbox.software",
+ "Project description": "AIToolbox is an open-source platform offering a suite of daily-use AI tools in one place, including email writing, GPT chatbot, image and logo generation, YouTube transcription, and more. It's designed for simplicity, productivity, and easy access without switching between multiple apps.",
+ "Project link": "https://github.com/huamanraj/aitoolbox.software",
+ "Project admin": "Aman",
+ "Admin linkedin": "https://www.linkedin.com/in/huamanraj/",
+ "Admin github": "https://github.com/huamanraj",
+ "Tech stack": "NextJS, Tailwind, ReactJS",
+ "mentor 1": "Amrit Raj",
+ "mentor 1 github": "AmritRaj29 https://github.com/AmritRaj29",
+ "mentor 1 linkedin": "https://www.linkedin.com/in/aaryan-raj-0bba92350?utm_source=share&utm_campaign=share_via&utm_content=profile&utm_medium=android_app",
+ "mentor 2": "Varun Maramreddy",
+ "Mentor 2 linkedin": "https://www.linkedin.com/in/varunmaramreddy/",
+ "mentor 2 github": "https://github.com/DrMyth",
+ "keyword": "phase1"
+ },
+ {
+ "Project name": "InfantCareCompass",
+ "Project description": "InfantCareCompass is a dedicated platform designed to simplify childcare management for modern parents. Balancing the joys and challenges of parenting, this application empowers users to efficiently track their child’s healthcare needs, particularly focusing on vaccination schedules, educational resources, and more.",
+ "Project link": "https://github.com/Amarjha01/InfantCareCompass",
+ "Project admin": "Amar jha",
+ "Admin linkedin": "https://www.linkedin.com/in/amarjha01/",
+ "Admin github": "https://github.com/Amarjha01",
+ "Tech stack": "MERN (MongoDB, Express.js, React.js, Node.js), Tailwind CSS, ZegoCloud, cloudinary, JWT, Docker, GitHub Actions, Planned AI Integration: OpenAI API / LangChain / TensorFlow.js / Python (FastAPI)",
+ "mentor 1": "HEMANT CHILKURI",
+ "mentor 1 github": "https://github.com/CHHemant",
+ "mentor 1 linkedin": "https://www.linkedin.com/in/hemant-chilkuri",
+ "mentor 2": "Darapu Venkata sesha monish kumar",
+ "Mentor 2 linkedin": "https://www.linkedin.com/in/darapu-monish-kumar/",
+ "mentor 2 github": "https://github.com/monishkumardvs",
+ "mentor 3": "HARSHA AGRAWAL",
+ "mentor 3 linkedin": "https://www.linkedin.com/in/harsha-agrawal-a56864290/",
+ "mentor 3 github": "https://github.com/harshaagrawal20",
+ "mentor 4": "Neha Manoj",
+ "mentor 4 linkedin": "https://www.linkedin.com/in/neha-manoj-0a966628a/",
+ "mentor 4 github": "https://github.com/nehamanoj1105",
+ "keyword": "phase1"
+ },
+ {
+ "Project name": "EdgeCareer",
+ "Project description": "🚀 EdgeCareer – AI-Powered Career Coach Full Stack AI Career Coach built with React 19 + Next.js 15, Tailwind CSS, NeonDB, Prisma, Clerk Authentication, Inngest, Gemini API, and Shadcn UI. A cutting-edge AI-driven career platform that provides personalized job recommendations, AI resume reviews, and real-time career insights to help users",
+ "Project link": "https://github.com/amitkumardemo/EdgeCareer.git",
+ "Project admin": "Amit Kumar",
+ "Admin linkedin": "https://www.linkedin.com/in/amit-kumar-686196225/",
+ "Admin github": "https://github.com/amitkumardemo",
+ "Tech stack": "React 19 & Next.js 15-\tFrontend & Server-Side Rendering\nTailwind CSS & Shadcn UI -\tModern UI & Styling\nNeonDB & Prisma\t- Database & ORM\nClerk Authentication -\tSecure login & access control\nInngest\tBackground job processing\nGemini API - AI-powered career guidance\nVercel\t- Deployment & hosting",
+ "mentor 1": "Yash Vikram",
+ "mentor 1 github": "https://github.com/yashvikram30",
+ "mentor 1 linkedin": "https://www.linkedin.com/in/yashvikram30?utm_source=share&utm_campaign=share_via&utm_content=profile&utm_medium=android_app",
+ "mentor 2": "Ananya",
+ "Mentor 2 linkedin": "https://www.linkedin.com/in/ananya-tewari-448b6b229/",
+ "mentor 2 github": "github.com/ananyatewari",
+ "mentor 3": "Reshma G.V.S.",
+ "mentor 3 linkedin": "https://in.linkedin.com/in/reshma-g-v-s-740906295",
+ "mentor 4": "Satyam Singh",
+ "mentor 4 linkedin": "https://www.linkedin.com/in/satyam8306/",
+ "mentor 4 github": "https://github.com/SatyamSingh8306",
+ "mentor 5": "Arnab Laha",
+ "mentor 5 linkedin": "https://www.linkedin.com/in/arnab-laha-4012b3287/",
+ "mentor 5 github": "https://github.com/LahaArnab",
+ "keyword": "phase1"
+ },
+ {
+ "Project name": "Music tracker API",
+ "Project description": "MusicTrackerAPI is a lightweight, RESTful API built to help users track, organize, and manage their favorite songs easily. Designed using Node.js and SQLite, this backend service allows full CRUD operations on music entries, making it ideal for personal music dashboards, playlist managers, or even as a backend for music-based applications.",
+ "Project link": "https://github.com/Ananya-te/MusicTrackerAPI.git",
+ "Project admin": "Ananya Giri",
+ "Admin linkedin": "https://www.linkedin.com/in/ananya-giri-38738b240?utm_source=share&utm_campaign=share_via&utm_content=profile&utm_medium=android_app",
+ "Admin github": "https://github.com/Ananya-te",
+ "Tech stack": "node.js,SQLite(DB browser),RESTful API ,python,html css",
+ "mentor 1": "Rithvik",
+ "mentor 1 github": "https://github.com/Rithvik1709",
+ "mentor 1 linkedin": "https://www.linkedin.com/in/rithvik1709",
+ "mentor 2": "sarthak upadhyay",
+ "Mentor 2 linkedin": "https://linkedin.com/in/defsarthak",
+ "mentor 2 github": "https://github.com/externref",
+ "keyword": "phase1"
+ },
+ {
+ "Project name": "Vaccination Portal",
+ "Project description": "VacciTrack is a digital platform that helps parents and healthcare workers manage child vaccination records with ease. Using QR codes, timely reminders, and educational resources, we ensure every child gets the right vaccine at the right time — safety and affordability.",
+ "Project link": "https://github.com/ShishuCard/Vaccination_Portal",
+ "Project admin": "Ankit Shaw",
+ "Admin linkedin": "https://www.linkedin.com/in/ankit-shaw-884b0728a?utm_source=share&utm_campaign=share_via&utm_content=profile&utm_medium=android_app",
+ "Admin github": "https://github.com/AnkitShaw-100",
+ "Tech stack": "React - frontend, Firebase - backend.",
+ "mentor 1": "Aryan Jain",
+ "mentor 1 github": "https://github.com/jainaryan04",
+ "mentor 1 linkedin": "https://www.linkedin.com/in/jainaryan04",
+ "mentor 2": "RAJU KUMAR RAJA",
+ "Mentor 2 linkedin": "https://www.linkedin.com/in/raju-kumar-raja/",
+ "mentor 2 github": "https://github.com/RajukrRaja",
+ "keyword": "phase1"
+ },
+ {
+ "Project name": "KrishiMitra.py",
+ "Project description": "KrishiMitra.py is an all-in-one AI-powered assistant designed to support Indian farmers by addressing their daily agricultural challenges. The project integrates multiple features including multi-language support (for Hindi, Tamil, Telugu, Bhojpuri, etc.), crop disease detection via image upload, mandi price updates, fertilizer and loan information, weather forecasting based on location, a crop calendar, task reminders, and a smart chatbot for instant help. Built using Python and Streamlit, KrishiMitra aims to empower farmers with personalized, accessible, and region-specific agricultural guidance in their native languages.",
+ "Project link": "https://github.com/Ansikka/KrishiMitra.py",
+ "Project admin": "Anshika Sharma",
+ "Admin linkedin": "https://www.linkedin.com/in/anshikasharma5",
+ "Admin github": "https://github.com/Ansikka",
+ "Tech stack": "python, gTTs, pillow , openCV, ML model, streamlit",
+ "mentor 1": "Pooja Bhalla",
+ "mentor 1 github": "https://github.com/poojabhallaa",
+ "mentor 1 linkedin": "https://www.linkedin.com/in/poojabhalla05",
+ "mentor 2": "HEMANT CHILKURI",
+ "Mentor 2 linkedin": "https://www.linkedin.com/in/hemant-chilkuri",
+ "mentor 2 github": "https://github.com/CHHemant",
+ "mentor 3": "Riya Gupta",
+ "mentor 3 linkedin": "www.linkedin.com/in/riya-gupta311",
+ "mentor 3 github": "https://github.com/RiyaGupta5114",
+ "mentor 4": "Raginee darade",
+ "mentor 4 linkedin": "https://www.linkedin.com/in/raginee-darade/",
+ "mentor 4 github": "https://github.com/ragineedarade",
+ "mentor 5": "Sai Karthik Motapothula",
+ "mentor 5 linkedin": "https://in.linkedin.com/in/saikarthik333",
+ "mentor 5 github": "https://github.com/saikarthik333",
+ "keyword": "phase1"
+ },
+ {
+ "Project name": "AnimateItNow",
+ "Project description": "AnimateItNow is an open-source project that showcases beautiful and creative web animations using HTML, CSS, and JavaScript — without any frameworks or libraries. The goal is to build a collection of unique, visually engaging components and pages that help developers learn modern frontend techniques through real-world animation examples.",
+ "Project link": "https://github.com/itsAnimation/AnimateItNow",
+ "Project admin": "Anuj Shrivastava",
+ "Admin linkedin": "https://www.linkedin.com/in/anuj-shrivastava-949645299/",
+ "Admin github": "https://github.com/AnujShrivastava01",
+ "Tech stack": "HTML, CSS and JavaScript",
+ "mentor 1": "Saleha Tabassum",
+ "mentor 1 github": "https://github.com/SalehaTabassum",
+ "mentor 1 linkedin": "https://www.linkedin.com/in/saleha-tabassum-213568268",
+ "mentor 2": "Suraj",
+ "Mentor 2 linkedin": "https://www.linkedin.com/in/suraj-s-g-dhanva-995a23298/",
+ "mentor 2 github": "https://github.com/SurajSG23",
+ "mentor 3": "Aditi Godse",
+ "mentor 3 linkedin": "https://www.linkedin.com/in/aditi-godse30?utm_source=share&utm_campaign=share_via&utm_content=profile&utm_medium=android_app",
+ "mentor 3 github": "https://github.com/aditigodse10",
+ "mentor 4": "Uma Ramisetty",
+ "mentor 4 linkedin": "https://www.linkedin.com/in/uma-ramisetty-303899287/",
+ "mentor 4 github": "https://github.com/UmaRamisetty",
+ "mentor 5": "Shashwat Gupta",
+ "mentor 5 linkedin": "https://www.linkedin.com/in/shashwat--gupta",
+ "mentor 5 github": "https://github.com/LionStone-1",
+ "keyword": "phase1"
+ },
+ {
+ "Project name": "Menthub",
+ "Project description": "Menthub is a full-stack web platform designed to bridge the gap between college students seeking guidance (mentees) and those who are ready to offer support (mentors) — all within the same academic environment. It facilitates seamless mentor-mentee connections, fosters community-driven learning, and promotes a culture of shared growth and collaboration.\n\nThis platform empowers students to:\n\nGet help from peers in academics, internships, placements, time management, and more.\n\nVolunteer as mentors based on their experiences and strengths.\n\nMake informed mentorship choices through intelligent matching and profile-based filtering.",
+ "Project link": "https://github.com/anugit24/Menthub",
+ "Project admin": "Anusha Jha",
+ "Admin linkedin": "https://www.linkedin.com/in/anusha-jha-8038491ba/",
+ "Admin github": "https://github.com/anugit24",
+ "Tech stack": "HTML, CSS ,Javascript ,Python, Flask, PostgresSQL,SQLAlchemy,Scikit-learn,",
+ "mentor 1": "Prabhat Yadav",
+ "mentor 1 github": "https://github.com/Prabhatyadav60",
+ "mentor 1 linkedin": "https://www.linkedin.com/in/prabhat-yadav-404b7727a/",
+ "mentor 2": "Aryan Jain",
+ "Mentor 2 linkedin": "https://www.linkedin.com/in/jainaryan04",
+ "mentor 2 github": "https://github.com/jainaryan04",
+ "mentor 3": "Lov Chaudhary",
+ "mentor 3 linkedin": "https://www.linkedin.com/in/lov1?utm_source=share&utm_campaign=share_via&utm_content=profile&utm_medium=android_app",
+ "mentor 3 github": "https://github.com/Lovchaudhary",
+ "keyword": "phase1"
+ },
+ {
+ "Project name": "OWASP Nest",
+ "Project description": "Your gateway to OWASP",
+ "Project link": "https://github.com/owasp/nest",
+ "Project admin": "Arkadii Yakovets",
+ "Admin linkedin": "https://www.linkedin.com/in/arkid15r/",
+ "Admin github": "https://github.com/arkid15r",
+ "Tech stack": "Python, Django, GraphQL, TypeScript, Next.js, React, TailwindCSS, Docker",
+ "mentor 1": "Samyak Jain",
+ "mentor 1 linkedin": "https://linkedin.com/in/samyak003",
+ "mentor 2": "Sanskar Bhardwaj",
+ "Mentor 2 linkedin": "https://www.linkedin.com/in/sanskar-bhardwaj-618b82244?lipi=urn%3Ali%3Apage%3Ad_flagship3_profile_view_base_contact_details%3B3toz2nbTSJOH9qVC%2B1TgHA%3D%3D",
+ "mentor 2 github": "https://github.com/Quantsanskar",
+ "mentor 3": "Manan",
+ "mentor 3 linkedin": "linkedin.com/in/manan-wadhwa",
+ "mentor 3 github": "github.com/Manan-Wadhwa",
+ "mentor 4": "Samyak Jain",
+ "mentor 4 linkedin": "https://www.linkedin.com/in/samyak003?utm_source=share&utm_campaign=share_via&utm_content=profile&utm_medium=android_app",
+ "mentor 4 github": "https://github.com/samyak003",
+ "mentor 5": "Chandika Sarkar",
+ "mentor 5 linkedin": "https://www.linkedin.com/in/chandika-sarkar-059853254/",
+ "mentor 5 github": "https://github.com/chandikasarkar",
+ "keyword": "phase1"
+ },
+ {
+ "Project name": "Travel_Website",
+ "Project description": "About\n🚀 Welcome🌈 , This repo is officially accepted for 🌟APERTRE 2025🌟 & 🌟CODEPEAK 2025🌟 This repo contains my project on Travel Website ✈️ using HTML,CSS . It contains the landing page of a travel tour company website. If you have any front end project on this or you can add new features in the project or in this repos.",
+ "Project link": "https://github.com/apu52/Travel_Website",
+ "Project admin": "Arpan Chowdhury",
+ "Admin linkedin": "https://www.linkedin.com/in/arpan-chowdhury-775294251/",
+ "Admin github": "https://github.com/apu52/",
+ "Tech stack": "HTML , CSS ,JS",
+ "mentor 1": "Gawandeep kaur",
+ "mentor 1 github": "https://github.com/Gawandeepkaur20",
+ "mentor 1 linkedin": "https://www.linkedin.com/in/gawandeep-kaur-b2671b322?utm_source=share&utm_campaign=share_via&utm_content=profile&utm_medium=android_app",
+ "mentor 2": "Nikhil Deshmukh",
+ "Mentor 2 linkedin": "https://www.linkedin.com/in/nikhil-d-deshmukh/",
+ "mentor 2 github": "https://github.com/nikhildeshmukh170",
+ "mentor 3": "Keshav Pathak",
+ "mentor 3 linkedin": "linkedin.com/in/keshav-pathak-bb0999297",
+ "mentor 3 github": "github.com/KeshavPathak01",
+ "keyword": "phase1"
+ },
+ {
+ "Project name": "VehiGo",
+ "Project description": "An open-source car rental website powered by HTML, CSS, and JavaScript, designed for effortless vehicle booking. It features intuitive user management, a streamlined car search and booking system, and a responsive design for web and mobile. Perfect for GSSoC 2025 contributors to enhance front-end functionality, improve user experience, and build practical open-source skills.",
+ "Project link": "https://github.com/InnoWebLabs/Vehigo",
+ "Project admin": "Aryan",
+ "Admin linkedin": "https://www.linkedin.com/in/aryan-soni-26794924a/",
+ "Admin github": "https://github.com/aryansoni13",
+ "Tech stack": "Full Stack Development",
+ "mentor 1": "Akash Shelke",
+ "mentor 1 github": "https://github.com/Akashshelke07",
+ "mentor 1 linkedin": "https://www.linkedin.com/in/akash-shelke-5b1520259/",
+ "mentor 2": "Prateek Narain",
+ "mentor 2 github": "https://github.com/PrateekNarain/Resume",
+ "mentor 3": "Akshit tiwari",
+ "mentor 3 linkedin": "Akshit Tiwari",
+ "mentor 3 github": "github",
+ "mentor 4": "Ayush Kashyap",
+ "mentor 4 linkedin": "https://www.linkedin.com/in/ayush-kashyap-541021231",
+ "mentor 4 github": "https://www.github.com/ayushkashyap402",
+ "mentor 5": "Raza Ali",
+ "mentor 5 linkedin": "https://linkedin.com/in/razaali313",
+ "mentor 5 github": "https://github.com/RazaAli313",
+ "keyword": "phase1"
+ },
+ {
+ "Project name": "PG genie",
+ "Project description": "PG genie is a web application designed to help users find, review, and rate paying guest (PG) accommodations. Whether you're a tenant looking for your next stay or a PG owner aiming to showcase your property, PG genie makes the process seamless and efficient.",
+ "Project link": "https://github.com/coderashhar/PG-genie",
+ "Project admin": "Ashhar Khan",
+ "Admin linkedin": "https://www.linkedin.com/in/mohd-ashhar-khan-728a912a1/",
+ "Admin github": "https://github.com/coderashhar",
+ "Tech stack": "MERN",
+ "mentor 1": "Afifa Fatima",
+ "mentor 1 github": "https://github.com/afifaFatima786",
+ "mentor 1 linkedin": "https://www.linkedin.com/in/afifa-fatima-b16a23289/",
+ "mentor 2": "Shruti Tiwari",
+ "Mentor 2 linkedin": "https://www.linkedin.com/in/shruti-tiwari-a8537725a?utm_source=share&utm_campaign=share_via&utm_content=profile&utm_medium=android_app",
+ "mentor 2 github": "https://github.com/Shruti0534",
+ "keyword": "phase1"
+ },
+ {
+ "Project name": "Drx.MediMate",
+ "Project description": "Aditi is a Flask-based web application that serves as your AI-powered pharmaceutical assistant. It provides:\n\nClinical drug information, including therapeutic uses, dosage guidelines, side effects, contraindications, and drug interactions.\n\nSymptom-based drug recommendations following evidence-based guidelines.\n\nEducational Use: Designed for educational purposes to assist in healthcare decision-making.",
+ "Project link": "https://github.com/MAVERICK-VF142/Drx.MediMate",
+ "Project admin": "ASHUTOSH",
+ "Admin linkedin": "https://www.linkedin.com/in/ashutosh-jena-/",
+ "Admin github": "https://github.com/MAVERICK-VF142",
+ "Tech stack": "Backend: Python, Flask\n\nAI: Google Generative AI (Gemini Model)\n\nFrontend: HTML, CSS (Flask templates)",
+ "mentor 1": "Aditya Chaudhary",
+ "mentor 1 github": "https://github.com/AdityaChaudhary2913",
+ "mentor 1 linkedin": "https://www.linkedin.com/in/adityachaudhary1306/",
+ "mentor 2": "Raza Ali",
+ "Mentor 2 linkedin": "https://linkedin.com/in/razaali313",
+ "mentor 2 github": "https://github.com/RazaAli313",
+ "mentor 3": "Subhodeep Roy",
+ "mentor 3 linkedin": "https://www.linkedin.com/in/subhodeep-roy-423a2a274/",
+ "mentor 3 github": "https://github.com/SubhodeepRoy17",
+ "mentor 4": "Shreya Ghorui",
+ "mentor 4 linkedin": "https://www.linkedin.com/in/shreya-ghorui-63ab9b314/",
+ "mentor 4 github": "https://github.com/shreyaghorui222004",
+ "mentor 5": "Rishika Jallan",
+ "mentor 5 linkedin": "https://www.linkedin.com/in/rishika231100/",
+ "mentor 5 github": "https://github.com/RishikaJallan23",
+ "keyword": "phase1"
+ },
+ {
+ "Project name": "Code A2Z",
+ "Project description": "A collaborative platform for developers & learners to explore, build, and contribute to Web Development & AI projects. Features include AI-driven recommendations, role-based access, project tracking, interactive community engagement, and structured learning resources.",
+ "Project link": "https://github.com/Code-A2Z/code-a2z",
+ "Project admin": "Avdhesh Varshney",
+ "Admin linkedin": "https://www.linkedin.com/in/avdhesh-varshney/",
+ "Admin github": "https://github.com/Avdhesh-Varshney",
+ "Tech stack": "React, Vite, Node.js, Express.js, MongoDB, Firebase, Tailwind CSS",
+ "mentor 1": "Rohan Singh",
+ "mentor 1 github": "https://github.com/Rohansingh3001",
+ "mentor 1 linkedin": "https://www.linkedin.com/in/rohan3001?utm_source=share&utm_campaign=share_via&utm_content=profile&utm_medium=android_app",
+ "mentor 2": "Meet Oza",
+ "Mentor 2 linkedin": "https://linkedin.com/in/meetoza30",
+ "mentor 2 github": "https://github.com/meetoza30",
+ "mentor 3": "Sree Gopal Saha",
+ "mentor 3 linkedin": "https://www.linkedin.com/in/sreegopalsaha",
+ "mentor 3 github": "https://github.com/sreegopalsaha",
+ "keyword": "phase1"
+ },
+ {
+ "Project name": "Flavor Ai",
+ "Project description": "This project is designed to make meal planning and recipe exploration effortless and fun. Whether you're looking for AI-curated recipes, diverse food categories, or exciting culinary surprises, FlavorAI has it all.",
+ "Project link": "https://github.com/Ayushjhawar8/Flavor-ai",
+ "Project admin": "Ayush Jhawar",
+ "Admin linkedin": "linkedin.com/in/ayushjhawar8",
+ "Admin github": "github.com/ayushjhawar8",
+ "Tech stack": "Frontend: Next.js\nBackend: Fetches data from a custom API\nStyling: Tailwind CSS, DaisyUI\nAI Integration: OpenAI/Groq API\nHosting: Vercel\\",
+ "mentor 1": "Anshika Sansanwal",
+ "mentor 1 github": "https://github.com/anshikasansanwal",
+ "mentor 1 linkedin": "https://www.linkedin.com/in/anshikasansanwal?utm_source=share&utm_campaign=share_via&utm_content=profile&utm_medium=android_app",
+ "mentor 2": "Zala Vishvarajsinh Krushnpalsinh",
+ "Mentor 2 linkedin": "https://www.linkedin.com/in/vishvarajsinh-zala-1299a7317",
+ "mentor 2 github": "https://github.com/Zala0007",
+ "mentor 3 linkedin": "Krish Ahlawat",
+ "mentor 3 github": "https://linkedin.com/in/krishahlawat",
+ "mentor 4": "Kanishka",
+ "mentor 4 linkedin": "https://in.linkedin.com/in/kanishka-tyagi-a334b128b",
+ "mentor 4 github": "https://github.com/sachiikrish",
+ "mentor 5": "Arnab Laha",
+ "mentor 5 linkedin": "https://www.linkedin.com/in/arnab-laha-4012b3287/",
+ "mentor 5 github": "https://github.com/LahaArnab",
+ "keyword": "phase1"
+ },
+ {
+ "Project name": "KnockoutZone",
+ "Project description": "A full stack web app to manage tournaments end-to-end. Admins can create tournaments, set rules, and schedule matches. Players can register, get auto-assigned to teams, view match schedule and track scores..",
+ "Project link": "https://github.com/Ayush0316/KnockoutZone",
+ "Project admin": "Ayush Kansal",
+ "Admin linkedin": "https://www.linkedin.com/ayushkansal0316/",
+ "Admin github": "https://github.com/Ayush0316",
+ "Tech stack": "React, Spring Boot",
+ "mentor 1": "Krish Chothani",
+ "mentor 1 github": "https://github.com/KrishChothani",
+ "mentor 1 linkedin": "https://www.linkedin.com/in/krish-chothani-797598284",
+ "mentor 2": "Arshiya shaikh",
+ "Mentor 2 linkedin": "https://www.linkedin.com/in/arshiya-shaikh-b39705259",
+ "mentor 2 github": "https://github.com/arshiyaaa7",
+ "mentor 3": "Sanjeet Raj",
+ "mentor 3 linkedin": "https://www.linkedin.com/in/sanjeetraj40",
+ "mentor 3 github": "https://github.com/Sanjeet4567",
+ "keyword": "phase1"
+ },
+ {
+ "Project name": "SkillTrade",
+ "Project description": "Skill Trade is an innovative platform designed to connect two primary user groups: Consumers (or Users) and Service Providers (or Workers). The platform facilitates seamless interaction, enabling users to request services and service providers to fulfill them efficiently. It is a service booking platform where users can book various services such as electricians, carpenters, plumbers, and more.",
+ "Project link": "https://github.com/AyushSharma72/Skill_Trade",
+ "Project admin": "Ayush Sharma",
+ "Admin linkedin": "https://www.linkedin.com/in/ayush-sharma-a155a8267?utm_source=share&utm_campaign=share_via&utm_content=profile&utm_medium=android_app",
+ "Admin github": "https://github.com/AyushSharma72",
+ "Tech stack": "nextjs,nodejs,reactjs,",
+ "mentor 1": "Agraharpu Mounika",
+ "mentor 1 github": "https://github.com/AgraharpuMounika",
+ "mentor 1 linkedin": "https://www.linkedin.com/in/mounika-sanjiv-719453301/",
+ "keyword": "phase1"
+ },
+ {
+ "Project name": "Euphoric",
+ "Project description": "campus site for euphoric registerations, updates, promoting and showcasing events",
+ "Project link": "https://euphoric-2025.42web.io/",
+ "Project admin": "Ayushi Tomar",
+ "Admin linkedin": "https://www.linkedin.com/in/ayushi-tomar-b388ba337",
+ "Admin github": "https://github.com/AshiTomar210",
+ "Tech stack": "php, mysql, javascript, ajax, html/css, bootstrap, libraries",
+ "mentor 1": "Tanziha Sheikh",
+ "mentor 1 github": "https://github.com/Tanziha-Sheikh",
+ "mentor 1 linkedin": "https://www.linkedin.com/in/s-a32b802",
+ "mentor 2": "Somyadip Ghosh",
+ "Mentor 2 linkedin": "https://www.linkedin.com/in/somyadipghosh",
+ "mentor 2 github": "https://github.com/somyadipghosh",
+ "keyword": "phase1"
+ },
+ {
+ "Project name": "WanderWise",
+ "Project description": "WanderWise-Smart-routes.-Hidden-gems.-Travel-smarter.-",
+ "Project link": "https://github.com/Balamurugan-cyber/WanderWise-Smart-routes.-Hidden-gems.-Travel-smarter.-",
+ "Project admin": "Balamurugan",
+ "Admin linkedin": "https://www.linkedin.com/in/balamurugankarthikeyan?utm_source=share&utm_campaign=share_via&utm_content=profile&utm_medium=android_app",
+ "Admin github": "https://github.com/Balamurugan-cyber",
+ "Tech stack": "(Fullstack)HTMl CSS JS",
+ "mentor 1": "MOHD AFTAAB",
+ "mentor 1 github": "https://github.com/MoAftaab/",
+ "mentor 1 linkedin": "https://www.linkedin.com/in/mohammad-aftaab-b49a5624a?utm_source=share&utm_campaign=share_via&utm_content=profile&utm_medium=android_app",
+ "mentor 2": "Muskan",
+ "Mentor 2 linkedin": "https://www.linkedin.com/in/muskanmehto?utm_source=share&utm_campaign=share_via&utm_content=profile&utm_medium=android_app",
+ "mentor 2 github": "https://github.com/MUSKANMEHTO",
+ "mentor 3": "Himanshu Kabra",
+ "mentor 3 linkedin": "https://www.linkedin.com/in/himanshu-kabra28",
+ "mentor 3 github": "https://www.github.com/HimanshuKabra01",
+ "keyword": "phase1"
+ },
+ {
+ "Project name": "HabitHeat",
+ "Project description": "A modern, feature-rich habit tracking application built with React and TypeScript. Track your daily habits, build streaks, earn achievements, and maintain consistency with powerful analytics and gamification features.",
+ "Project link": "https://github.com/BaraniVA/Habitheat",
+ "Project admin": "Barani",
+ "Admin linkedin": "https://www.linkedin.com/in/barani-a-90716422a?utm_source=share&utm_campaign=share_via&utm_content=profile&utm_medium=android_app",
+ "Admin github": "https://github.com/BaraniVA",
+ "Tech stack": "React 18, TypeScript, Tailwind CSS, Lucide React",
+ "mentor 1": "Vishav Mehra",
+ "mentor 1 github": "https://github.com/vishavmehra",
+ "mentor 1 linkedin": "https://www.linkedin.com/in/vishav-mehra-755107208?utm_source=share&utm_campaign=share_via&utm_content=profile&utm_medium=ios_app",
+ "mentor 2": "Gaurav Gupta",
+ "Mentor 2 linkedin": "https://www.linkedin.com/in/gauravgupta7431/",
+ "mentor 2 github": "https://github.com/Gaurav075",
+ "mentor 3": "Himanshu Kabra",
+ "mentor 3 linkedin": "https://www.linkedin.com/in/himanshu-kabra28",
+ "mentor 4": "Nitin Saxena",
+ "mentor 4 linkedin": "https://www.linkedin.com/in/nitin-saxena-78a976294?utm_source=share&utm_campaign=share_via&utm_content=profile&utm_medium=android_app",
+ "mentor 4 github": "https://github.com/Nitin10cd",
+ "mentor 5": "Nikhil Saxena",
+ "mentor 5 linkedin": "https://www.linkedin.com/in/nikhil-saxena-76901a2a5",
+ "mentor 5 github": "https://github.com/Nikhil2253/",
+ "keyword": "phase1"
+ },
+ {
+ "Project name": "Refixly",
+ "Project description": "Refixly is a smart DIY repair assistant that uses AI to detect objects through your webcam and suggest repair tutorials. Future updates will include AR overlays and community support for an interactive repair experience.",
+ "Project link": "https://github.com/Bavanetha27/Refixly.git",
+ "Project admin": "Bavanetha M.R",
+ "Admin linkedin": "https://www.linkedin.com/in/bavanethamr",
+ "Admin github": "https://github.com/Bavanetha27",
+ "Tech stack": "React.js, Vite, Tailwind CSS, Node.js, Express.js, Firebase Authentication, MongoDB Atlas, TensorFlow.js, YouTube Data API",
+ "mentor 1": "Pratyaksh",
+ "mentor 1 github": "https://github.com/PRATYAKSH15",
+ "mentor 1 linkedin": "https://www.linkedin.com/in/pratyaksh-989922256/",
+ "keyword": "phase1"
+ },
+ {
+ "Project name": "Pouranik - Read. Share. Connect.",
+ "Project description": "Pouranik is a community-driven web app that helps readers explore books, join book clubs, track reading goals, and share second-hand books, all in one cozy, open-source platform.",
+ "Project link": "https://github.com/BhaktiMore18/Pouranik",
+ "Project admin": "Bhakti More",
+ "Admin linkedin": "https://www.linkedin.com/in/bhakti-more-01a619208",
+ "Admin github": "https://github.com/BhaktiMore18",
+ "Tech stack": "React, Tailwind CSS, Vite, Node.js, Express, and MongoDB, Google Books API.",
+ "mentor 1": "Rohan Singh",
+ "mentor 1 github": "https://github.com/Rohansingh3001",
+ "mentor 1 linkedin": "https://www.linkedin.com/in/rohan3001?utm_source=share&utm_campaign=share_via&utm_content=profile&utm_medium=android_app",
+ "mentor 2": "Gopichand Dandimeni",
+ "Mentor 2 linkedin": "https://www.linkedin.com/in/gopichand-dandimeni-269709287/",
+ "mentor 2 github": "https://github.com/Gooichand",
+ "keyword": "phase1"
+ },
+ {
+ "Project name": "eventmappr",
+ "Project description": "📌 Project Description – EventMappr\nEventMappr is a community-focused web application that allows users to discover, add, and explore local events on an interactive map. Built using React JS and Leaflet.js, the app provides a simple and intuitive interface to visualize nearby happenings like music events, tech meetups, volunteering drives, art fairs, and more.\n\nUsers can pin new events on the map by submitting a short form and selecting a location. The app also features event filtering by category and a geolocation-based search to find events near the user's current location. With no backend dependencies, EventMappr runs entirely in the browser and is a perfect example of what can be achieved with modern frontend tools alone.\n\nIdeal for communities, colleges, and local networks — EventMappr makes event discovery and sharing effortless.",
+ "Project link": "https://github.com/Bhavya1352/eventmappr",
+ "Project admin": "Bhavya Mishra",
+ "Admin linkedin": "https://www.linkedin.com/in/bhavya-mishra-7a3b09324",
+ "Admin github": "https://github.com/Bhavya1352",
+ "Tech stack": "React.js – For building the component-based user interface.\n\nLeaflet.js – For rendering interactive maps and markers.\n\nReact Leaflet – React bindings for Leaflet to handle maps in a declarative way.\n\nHTML5 – Markup structure of the web application.\n\nCSS3 – For styling, layout, and responsive design.\n\nJavaScript (ES6+) – Core programming language for interactivity and logic.\n\nGeolocation API – To fetch and use the user's current location.\n\nOpenStreetMap – Used as the map tile provider (free and open-source).\n\nVite / Create React App – For scaffolding and developing the React application.\n\nGit & GitHub – For version control and open-source collaboration.",
+ "mentor 1": "Aarohi Saxena",
+ "mentor 1 github": "https://github.com/TechEnchantress19",
+ "mentor 1 linkedin": "https://www.linkedin.com/in/aarohi-saxena-47a84423a/",
+ "mentor 2": "Ananya",
+ "Mentor 2 linkedin": "https://www.linkedin.com/in/ananya-tewari-448b6b229/",
+ "mentor 2 github": "github.com/ananyatewari",
+ "mentor 3": "Nikhil Deshmukh",
+ "mentor 3 linkedin": "https://www.linkedin.com/in/nikhil-d-deshmukh/",
+ "mentor 3 github": "https://github.com/nikhildeshmukh170",
+ "keyword": "phase1"
+ },
+ {
+ "Project name": "Clean Breath",
+ "Project description": "Clean Breath is an intuitive web application designed to empower users to actively improve the air quality in their homes, offices, and communities by recommending the most effective air-purifying plants based on real-time pollutant data. By addressing pollutants like SO₂, NO₂, CO, O₃, PM2.5, and PM10, the app connects environmental science with daily living to create cleaner, greener spaces.\n\n🔑 Core Features\n📊 Track Air Quality:\nMonitor real-time air quality data (AQI) and pollutant concentrations in your area to understand the air you breathe.\n\n🪴 Know Your Plant:\nExplore detailed information about various plants, including their air-purifying capabilities, ideal conditions, and aesthetic appeal.\n\n📚 Green Insights:\nAccess well-curated articles, care guides, and expert tips on plant maintenance, indoor gardening, and sustainable practices.\n\n🌿 Find Your Plant:\nGet personalized plant recommendations tailored to your location, indoor/outdoor preferences, and the pollutants you wish to target.\n\n🎯 Purpose\nClean Breath aims to bridge the gap between environmental awareness and actionable solutions. By promoting the use of nature-based strategies for air purification, the app fosters healthier living while encouraging plant adoption and eco-conscious decision-making.\n\n💡 Ideal For\nUrban dwellers seeking cleaner indoor air\n\nHealth-conscious individuals and families\n\nEnvironmental enthusiasts and green lifestyle advocates\n\nSchools, offices, and wellness centers looking to green their spaces",
+ "Project link": "https://github.com/chandannekya/Clean-Breath",
+ "Project admin": "Chandan",
+ "Admin linkedin": "www.linkedin.com/in/chandannekya",
+ "Admin github": "https://github.com/chandannekya",
+ "Tech stack": "Frontend: React, Tailwind CSS, Vite\n\nBackend: Node.js, Express\n\nDatabase: MongoDB\n\nPayment Gateway: Razorpay",
+ "mentor 1": "Ashish Jangra",
+ "mentor 1 github": "https://github.com/OpArcade",
+ "mentor 1 linkedin": "https://www.linkedin.com/in/ashish-jangra-0aab9124b?utm_source=share&utm_campaign=share_via&utm_content=profile&utm_medium=android_app",
+ "mentor 3": "Harsh Saini",
+ "mentor 3 linkedin": "https://www.linkedin.com/in/harsh-saini-734ab6264/",
+ "mentor 3 github": "https://github.com/Harshsaini001",
+ "keyword": "phase1"
+ },
+ {
+ "Project name": "CodeBrosPlatform",
+ "Project description": "CodeBros is a full-stack web application designed to connect developers, enabling them to network, collaborate, and communicate. The platform features user profiles, connection management, real-time messaging, and developer discovery capabilities.",
+ "Project link": "https://github.com/Altair-05/CodeBrosPlatform",
+ "Project admin": "Dakshata",
+ "Admin linkedin": "https://www.linkedin.com/in/dakshata-borse-57994326b/",
+ "Admin github": "https://github.com/Altair-05",
+ "Tech stack": "react with typescript, tailwind css express js",
+ "mentor 1": "Shreeya Srivastava",
+ "mentor 1 github": "https://github.com/shreesriv12",
+ "mentor 1 linkedin": "https://www.linkedin.com/in/shreeya-srivastava-94a458327/",
+ "mentor 2": "Lov chaudhary",
+ "Mentor 2 linkedin": "https://www.linkedin.com/in/lov-chaudhary-108899263/",
+ "keyword": "phase1"
+ },
+ {
+ "Project name": "SheSync",
+ "Project description": "SheSync is a comprehensive women's health and wellness platform built with modern web technologies. The platform aims to provide a supportive environment for women to access health resources, connect with healthcare professionals, and engage with a community of like-minded individuals.",
+ "Project link": "https://github.com/divi-24/SheSync",
+ "Project admin": "Deepak Gupta",
+ "Admin linkedin": "https://www.linkedin.com/in/deepak2405",
+ "Admin github": "https://github.com/divi-24",
+ "Tech stack": "Frontend\nReact18,Vite,TailwindCSS,Framer Motion (for animations),React Router DOM,Google Maps API,Google Generative AI,Clerk Authentication\nUI Components- Headless UI, Radix UI, React Icons,Lucide React, React Feather\nDevelopment Tools- ESLint, PostCSS, Autoprefixer ,TypeScript support",
+ "mentor 1": "Deepansh Vishwakarma",
+ "mentor 1 github": "https://github.com/codebydeep",
+ "mentor 1 linkedin": "https://linkedin.com/in/deepansh-vishwakarma",
+ "mentor 2": "Naveed Azhar",
+ "Mentor 2 linkedin": "https://www.linkedin.com/in/imrofayel/",
+ "mentor 2 github": "https://github.com/imrofayel",
+ "keyword": "phase1"
+ },
+ {
+ "Project name": "silai-hub",
+ "Project description": "🧵 GuddiSilai – Tailoring Made Digital 👗\nGuddiSilai is a full-stack tailoring platform that brings traditional Indian stitching services online. Designed especially for customers in Tier 2 and Tier 3 cities, the platform allows users to book stitching services, customize blouses, lehengas, and dresses, and track their orders — all from the comfort of their home.\n\nBuilt with React, Node.js, Express, and MongoDB, it offers both a user-facing interface and an admin panel to manage designs, track orders, and monitor payments.",
+ "Project link": "https://github.com/deepakcs2003/Silai-hub",
+ "Project admin": "Deepak Vishwakarma",
+ "Admin linkedin": "https://www.linkedin.com/in/deepakv2003",
+ "Admin github": "https://github.com/deepakcs2003",
+ "Tech stack": "react js, node js, express , full stack , authentication",
+ "mentor 1": "Sandeep Patel",
+ "mentor 1 github": "https://github.com/sandeepatel01",
+ "mentor 1 linkedin": "https://www.linkedin.com/in/sandeepatel01/",
+ "mentor 2": "Dipayan Ghosh",
+ "Mentor 2 linkedin": "https://www.linkedin.com/in/dipayan-ghosh-coder",
+ "mentor 2 github": "https://github.com/Dip-1432",
+ "mentor 3": "Sreejani Banik",
+ "mentor 3 linkedin": "https://www.linkedin.com/in/sreejani-banik-4a2bab281?utm_source=share&utm_campaign=share_via&utm_content=profile&utm_medium=android_app",
+ "mentor 3 github": "SreejaniBanik https://share.google/61MQoyjIJVOh23PL4",
+ "keyword": "phase1"
+ },
+ {
+ "Project name": "Splitwiser",
+ "Project description": "Splitwiser is an open-source application designed to simplify expense sharing among groups. It aims to provide a robust and user-friendly platform for tracking and settling shared expenses, similar to popular expense-splitting apps, but completely open source and community-driven.",
+ "Project link": "https://github.com/Devasy23/splitwiser",
+ "Project admin": "Delin",
+ "Admin linkedin": "https://in.linkedin.com/in/devasy-patel",
+ "Admin github": "https://github.com/devasy23/",
+ "Tech stack": "Backend: FastAPI (Python) and MongoDB. Frontend: React Native with Expo.",
+ "mentor 1": "Satyam Singh",
+ "mentor 1 github": "https://github.com/SatyamSingh8306",
+ "mentor 1 linkedin": "https://www.linkedin.com/in/satyam8306/",
+ "mentor 2": "Aneesh Ahuja",
+ "Mentor 2 linkedin": "Aneesh Ahuja",
+ "mentor 2 github": "Aneesh Ahuja",
+ "keyword": "phase1"
+ },
+ {
+ "Project name": "Smart Chat Assistant",
+ "Project description": "Developed a fully responsive \"Smart Chat Assistant\" using HTML, CSS, and JavaScript featuring dark mode, voice input/output, chat history saving, and a user-friendly UI/UX. Hand-coded for real-world use, ideal for websites and portfolios.",
+ "Project link": "https://github.com/devangjain999/Smart-Chat-Assistant.git",
+ "Project admin": "Devang Jain",
+ "Admin linkedin": "https://www.linkedin.com/in/devangjain999",
+ "Admin github": "https://github.com/devangjain999",
+ "Tech stack": "HTML/CSS/JS/WEB APIs",
+ "mentor 1": "Anjali Jaiswal",
+ "mentor 1 github": "https://github.com/ANJALIJAISWAL4213",
+ "mentor 1 linkedin": "https://www.linkedin.com/in/anjali-jaiswal-442b0b251/",
+ "mentor 2": "Chitvan Singh",
+ "Mentor 2 linkedin": "https://www.linkedin.com/in/chitvansingh11",
+ "mentor 2 github": "https://www.github.com/chitvan11",
+ "mentor 3": "M S ARUN SANJEEV",
+ "mentor 3 linkedin": "https://linkedin.com/in/arunsanjeev",
+ "mentor 3 github": "github.com/arunsanjeevms",
+ "mentor 4": "KIRUTHIGA C M",
+ "mentor 4 linkedin": "https://www.linkedin.com/in/kiruthiga-c-m-b34aa9328?utm_source=share&utm_campaign=share_via&utm_content=profile&utm_medium=android_app",
+ "mentor 4 github": "https://github.com/kiruthigacm",
+ "mentor 5": "Krishnendu Hazra",
+ "mentor 5 linkedin": "https://www.linkedin.com/in/krishnendu-hazra-053317325?utm_source=share&utm_campaign=share_via&utm_content=profile&utm_medium=android_app",
+ "mentor 5 github": "https://github.com/krishnenduwork",
+ "keyword": "phase1"
+ },
+ {
+ "Project name": "ClassSync",
+ "Project description": "ClassSync is an advanced, multi-tenant school scheduling and substitution management system that streamlines weekly timetable creation, automates teacher substitutions during absences, and ensures conflict-free allocations through intelligent load-balancing logic; built with a scalable MERN stack architecture, it features role-based access for admins and teachers, real-time email notifications, a visually intuitive timetable UI, and future-ready support for audit trails and class-wise views.",
+ "Project link": "https://github.com/dhananjay6561/ClassSync-GSSOC",
+ "Project admin": "Dhananjay Aggarwal",
+ "Admin linkedin": "https://www.linkedin.com/in/dhananjay6561",
+ "Admin github": "https://www.github.com/dhananjay6561",
+ "Tech stack": "Tech Stack: React.js, Tailwind CSS, Vite, Node.js, Express.js, MongoDB with Mongoose, JWT-based Auth, Nodemailer for emails, Node Cron for scheduling, deployed on Vercel and Render, with GitHub Actions for CI/CD.",
+ "mentor 1": "Sahil",
+ "mentor 1 github": "http://github.com/sahil-luthra-000",
+ "mentor 1 linkedin": "http://www.linkedin.com/in/sahil-luthra09",
+ "mentor 2": "Swasti Mohanty",
+ "Mentor 2 linkedin": "https://www.linkedin.com/in/swasti-mohanty-362980293",
+ "mentor 2 github": "https://github.com/Swasti008",
+ "mentor 3": "Satyam Sharma",
+ "mentor 3 linkedin": "https://www.linkedin.com/in/satyam-sharma-a21041289/",
+ "mentor 3 github": "https://github.com/Satyamsharmahp36",
+ "keyword": "phase1"
+ },
+ {
+ "Project name": "Netflix Clone",
+ "Project description": "Its a clone website for Netflix",
+ "Project link": "https://github.com/DhruvJohri/Netflix-Clone",
+ "Project admin": "Dhruv Johri",
+ "Admin linkedin": "https://www.linkedin.com/in/dhruv-johri",
+ "Admin github": "https://github.com/DhruvJohri",
+ "Tech stack": "MERN",
+ "mentor 1": "Deepansh Vishwakarma",
+ "mentor 1 github": "https://github.com/codebydeep",
+ "mentor 1 linkedin": "https://linkedin.com/in/deepansh-vishwakarma",
+ "keyword": "phase1"
+ },
+ {
+ "Project name": "Firebase Chat App",
+ "Project description": "A real-time chat application built using Firebase and React. It allows users to sign in with Google authentication, exchange messages instantly, and manage user sessions securely. The app showcases the power of serverless technologies with a sleek and responsive UI. Ideal for contributors interested in React, Firebase, and modern frontend/backend integration.",
+ "Project link": "https://github.com/Dhruvi-tech/firebase-chat-app",
+ "Project admin": "Dhruvi Mittal",
+ "Admin linkedin": "https://www.linkedin.com/in/dhruvi-mittal/",
+ "Admin github": "https://github.com/Dhruvi-tech",
+ "Tech stack": "React.js, Firebase Authentication, Firestore Database, HTML/CSS, JavaScript",
+ "mentor 1": "ANURAG SHARMA",
+ "mentor 1 github": "https://github.com/silverballz",
+ "mentor 1 linkedin": "https://www.linkedin.com/in/anurag-sharma-362664240",
+ "keyword": "phase1"
+ },
+ {
+ "Project name": "Healconnect",
+ "Project description": "A health monitoring system that provides real-time tracking of vital signs, helping users manage their well-being with accurate data and smart insights—all in one easy-to-use platform.",
+ "Project link": "https://github.com/Dipanita45/HEALCONNECT",
+ "Project admin": "Dipanita Mondal",
+ "Admin linkedin": "https://www.linkedin.com/in/dipanita-mondal-6a9257306?utm_source=share&utm_campaign=share_via&utm_content=profile&utm_medium=android_app",
+ "Admin github": "https://github.com/Dipanita45",
+ "Tech stack": "NextJS, Javascript, C++, Tailwind CSS",
+ "mentor 1": "Riddhi Chakraborty",
+ "mentor 1 github": "https://github.com/riddhi-testcases",
+ "mentor 1 linkedin": "https://www.linkedin.com/in/riddhi-chakraborty-334069279",
+ "mentor 2": "Nandini Basu Majumder",
+ "Mentor 2 linkedin": "https://www.linkedin.com/in/nandini-basu-4b7411342/",
+ "mentor 2 github": "https://github.com/NandiniBasu05",
+ "keyword": "phase1"
+ },
+ {
+ "Project name": "AgroData Portal – A Data Visualization & Profiling System for Rural Agribusinesses",
+ "Project description": "AgroData Portal is a web-based open-source application designed to support data collection, profiling, and visualization of youth and women-led agribusinesses across the Niger Delta. The system allows LIFE-ND and similar development projects to:\n•\tDigitally profile beneficiaries and enterprise groups.\n•\tAnalyze socio-economic and agribusiness data by location, gender, and value chain.\n•\tMonitor progress and outcomes of livelihood interventions.",
+ "Project link": "https://medium.com/@rimoh11",
+ "Project admin": "Divya Jain",
+ "Admin linkedin": "www.linkedin.com/in/victor-imoh-uwem-941257225",
+ "Admin github": "https://github.com/Rimoh11/Rimoh",
+ "Tech stack": "Tools: PowerBI (for data visualization), Google Sheets API (for integration)",
+ "mentor 1": "Tarun Jyoti",
+ "mentor 1 github": "https://github.com/tarunjyoti12",
+ "mentor 1 linkedin": "https://www.linkedin.com/in/tarun-jyoti",
+ "mentor 2": "D s kamali",
+ "Mentor 2 linkedin": "https://www.linkedin.com/in/kamalisridhar/",
+ "mentor 2 github": "https://github.com/kamali1331",
+ "keyword": "phase1"
+ },
+ {
+ "Project name": "SKYwatch Alerts",
+ "Project description": "A simple next js application that send the alerts when airplane are passing near to your live location also tell you about pattern in flight.",
+ "Project link": "https://github.com/Dnyaneshpise/skywatch_alerts",
+ "Project admin": "Dnyanesh Pise",
+ "Admin linkedin": "https://linkedin.com/in/pise",
+ "Admin github": "https://github.com/Dnyaneshpise/",
+ "Tech stack": "Nextjs , React",
+ "mentor 1": "Vanshikha Sri",
+ "mentor 1 github": "https://github.com/Valkyriezz",
+ "mentor 1 linkedin": "https://www.linkedin.com/in/vanshikha-sri-85010b29b?utm_source=share&utm_campaign=share_via&utm_content=profile&utm_medium=android_app",
+ "mentor 2": "Satyam Singh",
+ "Mentor 2 linkedin": "https://www.linkedin.com/in/satyam8306/",
+ "mentor 2 github": "https://github.com/SatyamSingh8306",
+ "keyword": "phase1"
+ },
+ {
+ "Project name": "BookReview",
+ "Project description": "BookReview is a website for reviewing your favourite book using ai.",
+ "Project link": "https://github.com/DonaldReddy/BookReview",
+ "Project admin": "Donald Reddy",
+ "Admin linkedin": "https://www.linkedin.com/in/donald-reddy-indelu/",
+ "Admin github": "https://github.com/DonaldReddy",
+ "Tech stack": "React.js, Tailwind, Node.js, Express.js, Postgresql, Prisma, Typescript, Javascript, OpenRouter",
+ "mentor 1": "Anirban Singha",
+ "mentor 1 github": "https://github.com/SinghaAnirban005",
+ "mentor 1 linkedin": "https://www.linkedin.com/in/anirban-singha-46a7b8296/",
+ "mentor 2": "Shivam Prasad Singh",
+ "Mentor 2 linkedin": "http://www.linkedin.com/in/iamshiv07",
+ "mentor 2 github": "https://github.com/shivhere007",
+ "keyword": "phase1"
+ },
+ {
+ "Project name": "Medical Adherence Monitoring System",
+ "Project description": "An innovative healthcare management system designed to help patients track medication intake, connect with doctors, and maintain a healthier lifestyle. Demo Video: https://res.cloudinary.com/dzl3qnjqk/video/upload/v1751681025/VID-20250419-WA0000_4_tycodg.mp4",
+ "Project link": "https://github.com/BrewedAlgorithms/Medical-Adherence-Monitoring-System",
+ "Project admin": "Durgesh Khade",
+ "Admin linkedin": "https://www.linkedin.com/in/durgeshkhade/",
+ "Admin github": "https://github.com/BrewedAlgorithms",
+ "Tech stack": "MERN, Tensorflow, Python, Embedded C",
+ "mentor 1": "Abdul Momin Khan",
+ "mentor 1 github": "https://github.com/Abdul-momin24",
+ "mentor 1 linkedin": "https://www.linkedin.com/in/abdul-momin-khan-8bb434288/",
+ "mentor 2": "Annapoorna V",
+ "Mentor 2 linkedin": "https://www.linkedin.com/in/annapoorna-aradhya/",
+ "mentor 2 github": "https://github.com/Annapoornaaradhya",
+ "keyword": "phase1"
+ },
+ {
+ "Project name": "MindJournal",
+ "Project description": "A full-featured mental health journal app built with React.js, Tailwind CSS, and Vite.\nFeatures: authentication, mood visualization via charts, theme toggling, calendar integration.Used React Router and Context API for navigation and state management.",
+ "Project link": "https://github.com/efshaperveen/MindJournal",
+ "Project admin": "Efsha Perveen",
+ "Admin linkedin": "https://www.linkedin.com/in/efsha-perveen-124718282",
+ "Admin github": "https://github.com/efshaperveen",
+ "Tech stack": "Frontend: React.js, Vite, Styling: Tailwind CSS,\nState Management: Context API, React Hooks,\nRouting: React Router,\nCharts: Recharts,\nIcons: React Icons",
+ "mentor 1": "Krish Patel",
+ "mentor 1 github": "https://www.linkedin.com/in/krishpatel1205/",
+ "mentor 1 linkedin": "https://github.com/KrishPatel1205",
+ "mentor 2": "Kanishka Tyagi",
+ "Mentor 2 linkedin": "https://www.linkedin.com/in/kanishka-tyagi-a334b128b/",
+ "mentor 2 github": "https://github.com/sachiikrish",
+ "keyword": "phase1"
+ },
+ {
+ "Project name": "Web Development",
+ "Project description": "Engage students in Web Development with an outstanding line of teaching",
+ "Project link": "https://github.com/roshnideyic365/Culinary-King-e-commerce-website.git",
+ "Project admin": "Emmanuel Famous",
+ "Admin linkedin": "https://www.linkedin.com/in/𝑬𝒎𝒎𝒂𝒏𝒖𝒆𝒍-𝑶𝒌𝒊𝒌𝒊𝒐𝒍𝒂-505783248/",
+ "Admin github": "https://github.com/masterpiece24",
+ "Tech stack": "LEMPSTACK",
+ "mentor 1": "RAJU KUMAR RAJA",
+ "mentor 1 github": "https://github.com/RajukrRaja",
+ "mentor 1 linkedin": "https://www.linkedin.com/in/raju-kumar-raja/",
+ "keyword": "phase1"
+ },
+ {
+ "Project name": "Driver Drowiness System",
+ "Project description": "Achieved 92% accuracy in detecting drowsiness using facial recognition and machine learning algorithms. • Processed driver images using OpenCV and Dlib for real-time monitoring of eye closure and head position. • Integrated real-time alerts with audio/visual warnings, responding in less than 1 second when fatigue is detected. • Trained a model on 5,000+ driver images, ensuring reliable performance in diverse conditions and real-world testing.",
+ "Project link": "https://github.com/Gagandeep-2003/driver-drowsiness-detection-system",
+ "Project admin": "Gagandeep Singh",
+ "Admin linkedin": "https://linkedin.com/in/gagandeepsingh22",
+ "Admin github": "https://github.com/Gagandeep-2003",
+ "Tech stack": "OpenCv, Dlib, Machine Learning",
+ "mentor 1": "Satyajeet Prakash",
+ "mentor 1 github": "https://github.com/Satyajeetprakash1",
+ "mentor 1 linkedin": "https://www.linkedin.com/in/satyajeetprakash",
+ "mentor 2": "Nityansh Pant",
+ "Mentor 2 linkedin": "https://www.linkedin.com/in/nityanshpant?utm_source=share&utm_campaign=share_via&utm_content=profile&utm_medium=android_app",
+ "mentor 2 github": "https://github.com/thynash",
+ "mentor 3": "Amna Hassan",
+ "mentor 3 linkedin": "https://www.linkedin.com/in/amna-hassan-143b76202/",
+ "mentor 3 github": "https://github.com/Amna-Hassan04",
+ "mentor 4": "Aditi Srivastava",
+ "mentor 4 linkedin": "https://www.linkedin.com/in/aditi-srivastava001/",
+ "mentor 4 github": "https://github.com/https-aditi",
+ "keyword": "phase1"
+ },
+ {
+ "Project name": "Weather-API",
+ "Project description": "A simple yet powerful weather scraper built with Node.js, Express and Cheerio. This project dynamically fetches real-time weather data for any city, scrapes the necessary details, and presents them on an intuitive user interfaec.",
+ "Project link": "https://github.com/GauravKarakoti/Weather-API",
+ "Project admin": "Gaurav Karakoti",
+ "Admin linkedin": "https://linkedin.com/in/gaurav-karakoti",
+ "Admin github": "https://github.com/GauravKarakoti",
+ "Tech stack": "Express, Axios, Cheerio, Cors, Dotenv",
+ "mentor 1": "Payal Kumari",
+ "mentor 1 github": "https://github.com/PayalKumari10",
+ "mentor 1 linkedin": "https://www.linkedin.com/in/payalkumari10/",
+ "keyword": "phase1"
+ },
+ {
+ "Project name": "Blogging Platform",
+ "Project description": "User friendly Interface where users can create accounts and post blogs on any topic and also allows users to read other blogs based on preference and intrest ,also allows sharing",
+ "Project link": "https://github.com/Gnanaashritha/Blogging-Platform-",
+ "Project admin": "Gnana Ashritha Maddukuri",
+ "Admin linkedin": "www.linkedin.com/in/gnana-ashritha-",
+ "Admin github": "https://github.com/Gnanaashritha",
+ "Tech stack": "Html, Css,Js,NodeJs,Mern",
+ "mentor 1": "Isha Bamel",
+ "mentor 1 github": "https://github.com/ishaa05",
+ "mentor 1 linkedin": "https://www.linkedin.com/in/isha-bamel-b13916292/",
+ "mentor 2": "Chitvan Singh",
+ "Mentor 2 linkedin": "https://www.linkedin.com/in/chitvansingh11",
+ "mentor 2 github": "https://www.github.com/chitvan11",
+ "keyword": "phase1"
+ },
+ {
+ "Project name": "otploginfrontend",
+ "Project description": "web app designed to interact or login with users based upon otp verification from fastapi as backend",
+ "Project link": "https://github.com/OpenTekHub/otploginfrontend",
+ "Project admin": "Harish",
+ "Admin linkedin": "https://www.linkedin.com/in/harish-peddina",
+ "Admin github": "https://github.com/Harish-2003",
+ "Tech stack": "next.js",
+ "mentor 1": "Siddhanth Sakhare",
+ "mentor 1 github": "https://github.com/siddhanth4",
+ "mentor 1 linkedin": "https://www.linkedin.com/in/siddhanth-sakhare-159653257?utm_source=share&utm_campaign=share_via&utm_content=profile&utm_medium=android_app",
+ "mentor 2": "ISHA PATEL",
+ "Mentor 2 linkedin": "https://www.linkedin.com/in/isha-patel-6899192ab?utm_source=share&utm_campaign=share_via&utm_content=profile&utm_medium=android_app",
+ "mentor 2 github": "https://github.com/candy1227",
+ "mentor 3": "Krish Ahlawat",
+ "mentor 3 linkedin": "https://linkedin.com/in/krishahlawat",
+ "mentor 3 github": "https://github.com/krishahlawat",
+ "keyword": "phase1"
+ },
+ {
+ "Project name": "otp authentication",
+ "Project description": "an otp authentication frontend app built using fastapi and twilo and jwt tokens",
+ "Project link": "https://github.com/Harish-2003/otpauthentication",
+ "Project admin": "Harish",
+ "Admin linkedin": "https://www.linkedin.com/in/harish-peddina",
+ "Admin github": "https://github.com/Harish-2003",
+ "Tech stack": "fastapi",
+ "mentor 1": "Amanpreet Kaur",
+ "mentor 1 github": "https://github.com/amanpreet0kaur",
+ "mentor 1 linkedin": "https://www.linkedin.com/in/amanpreet-kaur-74b345260/",
+ "mentor 3": "Amna Hassan",
+ "mentor 3 linkedin": "https://www.linkedin.com/in/amna-hassan-143b76202/",
+ "mentor 3 github": "https://github.com/Amna-Hassan04",
+ "keyword": "phase1"
+ },
+ {
+ "Project name": "Civix",
+ "Project description": "Civix – Local Civic Issue Reporting App\nDomain: Governance / Public Welfare\n\nCivix is a civic tech solution that empowers citizens to report and track local issues such as potholes, broken lights, and garbage piles. Users can submit reports with images, location data (via map), and descriptions, while also tracking progress as issues move from Open to Resolved. Community-driven upvoting helps prioritize problems that matter most. City workers manage reports through a dedicated admin dashboard.",
+ "Project link": "https://github.com/HarshS16/Civix",
+ "Project admin": "HARSH SRIVASTAVA",
+ "Admin linkedin": "https://www.linkedin.com/in/harsh-srivastava-51b67324a/",
+ "Admin github": "https://github.com/HarshS16",
+ "Tech stack": "🔧 Tech Stack:\n\nFrontend: React, Tailwind CSS, Leaflet.js (Maps)\n\nBackend: Node.js, Express.js, PostgreSQL\n\nImage Upload: Cloudinary\n\nAuth: Role-based (Citizen/Admin)",
+ "mentor 1": "Mohammad Ehshan",
+ "mentor 1 github": "https://github.com/Mohammad-Ehshan",
+ "mentor 1 linkedin": "https://www.linkedin.com/in/mohammad-ehshan-4362a0298/",
+ "mentor 2": "Dipayan Ghosh",
+ "Mentor 2 linkedin": "https://www.linkedin.com/in/dipayan-ghosh-coder",
+ "mentor 2 github": "https://github.com/Dip-1432",
+ "mentor 3": "Krish Patel",
+ "mentor 3 linkedin": "https://www.linkedin.com/in/krishpatel1205",
+ "mentor 3 github": "https://github.com/KrishPatel1205",
+ "keyword": "phase1"
+ },
+ {
+ "Project name": "Advanced Discord Bots - VAISH",
+ "Project description": "VAISH — Ultra-Modern AI Discord Bot Framework is an open-source, next-generation Discord bot solution designed for modern communities, gaming servers, and large-scale deployments. It combines powerful automation, AI-driven features, and complete code ownership — all with zero subscription fees or vendor lock-in. Built using Discord.js v14, Node.js 18+, MongoDB Atlas, Google Gemini AI, and Mongoose, VAISH delivers intelligent conversations, advanced moderation, community rewards, and a beautiful, responsive user interface. The framework offers developer-friendly architecture, scalable database integration, and seamless cloud deployment to platforms like Render, Railway, or private servers.\n\nAs an open-source project, VAISH welcomes contributors to build their own custom bots, develop new AI features, enhance performance, and improve documentation. Our mission is to empower Discord communities with secure, AI-powered automation tools while fostering global collaboration. Developers passionate about Discord, AI, or open-source innovation are invited to join VAISH and help shape the future of intelligent, community-driven Discord bots.",
+ "Project link": "https://github.com/harshendram/Advanced-Discord-Bot",
+ "Project admin": "Harshendra M",
+ "Admin linkedin": "https://www.linkedin.com/in/harshendra-m-2b8bb5299/",
+ "Admin github": "https://github.com/harshendram",
+ "Tech stack": "Full Tech Stack JavaScript, Node.js (v18+), Discord.js (v14) ,MongoDB Atlas, Mongoose, Google Gemini AI, TypeScript (Optional Support), dotenv, ESLint & Prettier, Render, Redis (Planned), Railway / Heroku / VPS (Alternative Deployments), Web Dashboard (Planned)",
+ "mentor 1": "Yash Vishnoi",
+ "mentor 1 github": "https://github.com/yashjscoder",
+ "mentor 1 linkedin": "https://www.linkedin.com/in/yash-vishnoi-22456a291?utm_source=share&utm_campaign=share_via&utm_content=profile&utm_medium=android_app",
+ "mentor 2": "Ayesha Khan",
+ "Mentor 2 linkedin": "https://github.com/fizaayesha",
+ "mentor 2 github": "https://www.linkedin.com/in/ayesha-khan-129434219/",
+ "keyword": "phase1"
+ },
+ {
+ "Project name": "Zip Tales",
+ "Project description": "AI-powered news verification platform that filters misinformation and provides community-verified credibility scores for authentic journalism.",
+ "Project link": "https://github.com/HimanshuHeda/Zip_Tales",
+ "Project admin": "Himanshu Heda",
+ "Admin linkedin": "https://www.linkedin.com/in/himanshu-heda/",
+ "Admin github": "https://github.com/HimanshuHeda",
+ "Tech stack": "Frontend Technology : -- \nReact 18.3.1 , TypeScript 5.5.3 , Tailwind CSS 3.4.1 , Vite 5.4.2 , React Router DOM 6.8.1\n\nBackend & Database : --\nSupabase , Row Level Security (RLS) , Real-time Subscriptions , Blockchain Integration\n\nAI & APIs : --\nGoogle Gemini AI\nNews API\nSerpAPI\n\nDevelopment Tools : --\nESLint\nPostCSS\nLucide React \n\nDeployment Tool : --\nNetlify",
+ "mentor 1": "Samrat Natta",
+ "mentor 1 github": "https://github.com/Samrat25",
+ "mentor 1 linkedin": "https://www.linkedin.com/in/samrat-natta-761574321?utm_source=share&utm_campaign=share_via&utm_content=profile&utm_medium=android_app",
+ "mentor 2": "Thanisha Dewangan",
+ "Mentor 2 linkedin": "https://github.com/ThanishaDewangan",
+ "mentor 2 github": "https://www.linkedin.com/in/thanisha-dewangan-b89720276/",
+ "mentor 3": "RAZA ALI",
+ "mentor 3 linkedin": "https://linkedin.com/in/razaali313",
+ "mentor 3 github": "https://github.com/RazaAli313",
+ "keyword": "phase1"
+ },
+ {
+ "Project name": "Clubverse",
+ "Project description": "Peer-led tech collective working on AI, ML, and open-source projects across \ncolleges. Focused on research collaboration and real-world problem solving.",
+ "Project link": "https://github.com/Club-Syndicate/ClubVerse",
+ "Project admin": "Himanshu Lohokane",
+ "Admin linkedin": "https://www.linkedin.com/in/himanshu-lohokane-6618a8259?utm_source=share&utm_campaign=share_via&utm_content=profile&utm_medium=android_app",
+ "Admin github": "https://github.com/Himanshu-Lohokane",
+ "Tech stack": "MERN, socket.io, Vercel",
+ "mentor 1": "Siddhanth Sakhare",
+ "mentor 1 github": "https://github.com/siddhanth4",
+ "mentor 1 linkedin": "https://www.linkedin.com/in/siddhanth-sakhare-159653257?utm_source=share&utm_campaign=share_via&utm_content=profile&utm_medium=android_app",
+ "mentor 2": "Kathula Sri Raghavi",
+ "Mentor 2 linkedin": "https://www.linkedin.com/in/ksriraghavi/",
+ "mentor 2 github": "https://github.com/sriraghavi22",
+ "mentor 3": "Darapu Venkata sesha monish kumar",
+ "mentor 3 linkedin": "https://www.linkedin.com/in/darapu-monish-kumar/",
+ "mentor 3 github": "https://github.com/monishkumardvs",
+ "keyword": "phase1"
+ },
+ {
+ "Project name": "FrostIQ",
+ "Project description": "FrostIQ is an open-source platform designed to make it easier for users to generate and customize bakery items according to their preferences. The project aims to simplify the process of finding, creating, and sharing bakery recipes and products, allowing users to explore a variety of options and contribute their own creations. By fostering collaboration and contribution, FrostIQ empowers a community of baking enthusiasts and developers to innovate together.",
+ "Project link": "https://github.com/indra7777/frostiq",
+ "Project admin": "Indra Prakash Gottipati",
+ "Admin linkedin": "https://www.linkedin.com/in/indra-prakash-gottipati-6a3b13226",
+ "Admin github": "https://github.com/indra7777",
+ "Tech stack": "Python\n,Django/Flask (or your backend framework)\n,JavaScript (React.js/Vue.js for frontend),\nHTML, CSS,\nSQLite/MySQL (database)\n,Docker (for containerization)\n,Git & GitHub",
+ "mentor 1": "ANURAG SHARMA",
+ "mentor 1 github": "https://github.com/silverballz",
+ "mentor 1 linkedin": "https://www.linkedin.com/in/anurag-sharma-362664240",
+ "mentor 2": "Kanishka",
+ "Mentor 2 linkedin": "https://in.linkedin.com/in/kanishka-tyagi-a334b128b",
+ "mentor 2 github": "https://github.com/sachiikrish",
+ "mentor 3": "Anirudh Kumar",
+ "mentor 3 linkedin": "https://www.linkedin.com/in/abhianirudh",
+ "mentor 3 github": "https://github.com/Abhi-anirudh",
+ "mentor 4": "Om Sherikar",
+ "mentor 4 linkedin": "https://www.linkedin.com/in/omsherikar0229/",
+ "mentor 4 github": "https://github.com/omsherikar",
+ "keyword": "phase1"
+ },
+ {
+ "Project name": "City Pulse",
+ "Project description": "City Pulse is a sleek, real-time dashboard built with **Streamlit** that provides everything you need to know about any city — from live weather updates and air quality to crime news, tourist recommendations, Google Trends analysis, and even an AI-powered chatbot that lets you search through Google.",
+ "Project link": "https://github.com/Jotthecode/CITY-PULSE",
+ "Project admin": "Jot Ajmani",
+ "Admin linkedin": "https://www.linkedin.com/in/jot-ajmani-b9154b217?utm_source=share&utm_campaign=share_via&utm_content=profile&utm_medium=android_app",
+ "Admin github": "https://github.com/Jotthecode",
+ "Tech stack": "**Frontend**: Streamlit\n- **Backend/APIs**:\n - [OpenWeatherMap API](https://openweathermap.org/api) for Weather and AQI\n - [Google Places API](https://developers.google.com/maps/documentation/places/web-service/overview)\n - [Google Trends via Pytrends](https://github.com/GeneralMills/pytrends)\n - News API for crime-related news\n - Custom chatbot using Google Search integration\n- **Others**: Pandas, Requests, Python, HTML/CSS (via Streamlit components)",
+ "mentor 1": "Shivam Gupta",
+ "mentor 1 github": "https://share.google/yjpbY7TkrsZQVBURU",
+ "mentor 1 linkedin": "https://www.linkedin.com/in/shivam-gupta-8a2a781b0?utm_source=share&utm_campaign=share_via&utm_content=profile&utm_medium=android_app",
+ "mentor 2": "Arpit Mishra",
+ "Mentor 2 linkedin": "linkedin.com/in/arpit-mishra-87b943242/",
+ "mentor 2 github": "github.com/TheChaoticor/",
+ "mentor 3": "Akshith",
+ "mentor 3 linkedin": "https://www.linkedin.com/in/akshith-manchikanti-b35a9b209",
+ "mentor 3 github": "https://github.com/Akshithsaai",
+ "mentor 4": "Uma Ramisetty",
+ "mentor 4 linkedin": "https://www.linkedin.com/in/naga-uma-mahesh-nandi-1b4a83360?utm_source=share&utm_campaign=share_via&utm_content=profile&utm_medium=android_app",
+ "mentor 4 github": "https://github.com/UmaRamisetty",
+ "keyword": "phase1"
+ },
+ {
+ "Project name": "HealthVault",
+ "Project description": "HealthVault is a secure and efficient medical record management platform designed to provide quick access to health data while maintaining encrypted privacy. By integrating an AI-powered chatbot, it enhances user experience by offering smart recommendations on home remedies and health-related queries. This platform is tailored for individuals, caregivers, and healthcare professionals who need seamless access to medical records, ensuring better self-care and informed decision-making.",
+ "Project link": "https://github.com/Priyanka-28-BM/HealthVault",
+ "Project admin": "K N Meghana",
+ "Admin linkedin": "https://www.linkedin.com/in/meghanakn473",
+ "Admin github": "https://github.com/meghanakn473",
+ "Tech stack": "React js Node.js Supabase",
+ "mentor 1": "Aryan Jain",
+ "mentor 1 github": "https://github.com/jainaryan04",
+ "mentor 1 linkedin": "https://www.linkedin.com/in/jainaryan04",
+ "mentor 2": "D Darshan",
+ "Mentor 2 linkedin": "https://www.linkedin.com/in/d-darshan-36077327a",
+ "mentor 2 github": "https://github.com/Darshan0244",
+ "keyword": "phase1"
+ },
+ {
+ "Project name": "CodeArena",
+ "Project description": "CodeArena is a cutting-edge, AI-powered ecosystem architected with a microservices-based MERN stack, combining Dockerized online judging, AI-integrated collaboration tools, and smart career utilities. With intelligent workflows powered by n8n and Relevance AI, CodeArena is more than a platform- it's your real-time coding and career companion.",
+ "Project link": "https://github.com/kanikaa-3018/contest_onlinejudge",
+ "Project admin": "Kanika Singhal",
+ "Admin linkedin": "https://www.linkedin.com/in/kanika-singhal-93388428b",
+ "Admin github": "https://github.com/kanikaa-3018",
+ "Tech stack": "MERN, Websockets, n8n, Relevance AI, Gemini AI, Open AI, Python, TailwindCSS, Javacript, Docker, AWS(EC2 , ECR)",
+ "mentor 1": "Avansh Yadav",
+ "mentor 1 github": "https://github.com/Avansh2006",
+ "mentor 1 linkedin": "https://www.linkedin.com/in/avanshyadav/",
+ "mentor 2": "HARSHA AGRAWAL",
+ "Mentor 2 linkedin": "https://www.linkedin.com/in/harsh-kumar-4183b3327/",
+ "mentor 2 github": "https://github.com/harshaagrawal20",
+ "mentor 3": "Tanyashri M",
+ "mentor 3 linkedin": "https://www.linkedin.com/in/tanya-m-94a74a234?utm_source=share&utm_campaign=share_via&utm_content=profile&utm_medium=android_app",
+ "keyword": "phase1"
+ },
+ {
+ "Project name": "Real-Time Disaster Dashboard",
+ "Project description": "A real-time disaster management dashboard that fetches and displays live disaster data from APIs like NASA and NDMA. It helps authorities and the public stay informed through alerts, analytics, and visualizations.",
+ "Project link": "https://github.com/Himanshi150/real-time-daister-project",
+ "Project admin": "Kanzariya Himanshi Bharatbhai",
+ "Admin linkedin": "https://www.linkedin.com/in/himanshi -kanzariya-0?",
+ "Admin github": "https://github.com/Himanshi150",
+ "Tech stack": "FastAPI, Python, Streamlit, JavaScript, HTML, CSS, NASA API, NDMA API",
+ "mentor 1": "Diksha",
+ "mentor 1 github": "https://github.com/din-arr",
+ "mentor 1 linkedin": "https://www.linkedin.com/in/diksha-sharma-ba98312a5?utm_source=share&utm_campaign=share_via&utm_content=profile&utm_medium=android_app",
+ "mentor 2": "Samrat Natta",
+ "Mentor 2 linkedin": "https://www.linkedin.com/in/samrat-natta-761574321?utm_source=share&utm_campaign=share_via&utm_content=profile&utm_medium=android_app",
+ "mentor 2 github": "https://github.com/Samrat25",
+ "mentor 3": "D s kamali",
+ "mentor 3 linkedin": "https://www.linkedin.com/in/kamalisridhar/",
+ "mentor 3 github": "https://github.com/kamali1331",
+ "mentor 4": "Amna Hassan",
+ "mentor 4 linkedin": "https://www.linkedin.com/in/amna-hassan-143b76202/",
+ "mentor 4 github": "https://github.com/Amna-Hassan04",
+ "keyword": "phase1"
+ },
+ {
+ "Project name": "VisionMate",
+ "Project description": "VisionMate is a smart assistive solution designed to support visually impaired people in navigating their surroundings more independently. It uses computer vision and speech technologies to identify objects, read text, and give real time voice feedback through a user friendly interface. I have uploaded the initial code and concept to GitHub to give an idea of the project’s vision, but not the full implementation yet. The project is currently in the development phase, with plans to expand its capabilities to include environment detection and safe navigation features.",
+ "Project link": "https://www.github.com/kaushav07/VisionMate",
+ "Project admin": "Kaushav",
+ "Admin linkedin": "https://www.linkedin.com/in/kaushav-kumar-2324ab247",
+ "Admin github": "https://www.github.com/kaushav07",
+ "Tech stack": "Python, OpenCV, Flask/Django, Flutter, MySQL, Google Cloud Vision API, Text to Speech / Speech to Text APIs",
+ "mentor 1": "Amisha Kumari",
+ "mentor 1 github": "https://github.com/AMISHA2004-devgeek",
+ "mentor 1 linkedin": "https://www.linkedin.com/in/amisha-kumari-351ab9274/",
+ "mentor 2": "Shreeraksha R Adiga",
+ "Mentor 2 linkedin": "https://www.linkedin.com/in/shreeraksharadiga/",
+ "mentor 2 github": "https://github.com/shreeraksha2112",
+ "mentor 3": "Raginee darade",
+ "mentor 3 linkedin": "https://www.linkedin.com/in/raginee-darade/",
+ "mentor 3 github": "https://github.com/ragineedarade",
+ "mentor 4": "Abdullah Jameel",
+ "mentor 4 linkedin": "https://www.linkedin.com/in/abdullahjameel94",
+ "mentor 4 github": "https://github.com/abdullahxyz85",
+ "mentor 5": "Aditya Chaudhary",
+ "mentor 5 linkedin": "https://www.linkedin.com/in/adityachaudhary1306",
+ "mentor 5 github": "https://github.com/AdityaChaudhary2913/AdityaGPT",
+ "keyword": "phase1"
+ },
+ {
+ "Project name": "Zylar's World",
+ "Project description": "Zylar’s World is a 3D educational RPG that introduces players to philosophy through immersive gamification. Players take on the role of Zylar, an alien who escapes the monotony of its home world and crash-lands on Earth, only to be captured by humans for scientific study. Perceiving the humans as the true “aliens,” Zylar feels isolated and overwhelmed, eventually slipping into a deep slumber. Within this dream world, a mysterious alien goddess guides Zylar through five distinct philosophical eras—each presenting a unique challenge. As Zylar overcomes these trials, it gains insight into the human condition and the enduring questions of existence.",
+ "Project link": "https://github.com/algorathem/philosophical-rpg",
+ "Project admin": "Kc",
+ "Admin linkedin": "https://www.linkedin.com/in/kye-cin-leck?utm_source=share&utm_campaign=share_via&utm_content=profile&utm_medium=android_app",
+ "Admin github": "https://github.com/algorathem",
+ "Tech stack": "unity (core engine), yarnspinner for unity (narrative system), blender (3d modelling), humeai (preparing voiceover assets)",
+ "mentor 1": "Krish Chothani",
+ "mentor 1 github": "https://github.com/KrishChothani",
+ "mentor 1 linkedin": "https://www.linkedin.com/in/krish-chothani-797598284",
+ "keyword": "phase1"
+ },
+ {
+ "Project name": "foodBridge",
+ "Project description": "Its a food Donation website",
+ "Project link": "https://github.com/Khushbudaswani/Foodbridge.git",
+ "Project admin": "Khushbu Daswani",
+ "Admin linkedin": "https://www.linkedin.com/in/khushbu-daswani-6a420b301",
+ "Admin github": "https://github.com/Khushbudaswani",
+ "Tech stack": "python django dbsqlite",
+ "mentor 1": "Talluri Varun",
+ "mentor 1 github": "https://github.com/TalVar-DataScience",
+ "mentor 1 linkedin": "https://www.linkedin.com/in/talluri-varun-baaa0b236",
+ "mentor 2": "Aditi Shrivastav",
+ "Mentor 2 linkedin": "https://www.linkedin.com/in/aditi-srivastava001/",
+ "mentor 2 github": "https://github.com/https-aditi",
+ "keyword": "phase1"
+ },
+ {
+ "Project name": "DreamJobs-Job Portal",
+ "Project description": "this project aims to bridge the gap between job seekers and employers",
+ "Project link": "https://github.com/Khushi-Nigam/jobportal",
+ "Project admin": "Khushi Nigam",
+ "Admin linkedin": "https://www.linkedin.com/in/khushinigam7?utm_source=share&utm_campaign=share_via&utm_content=profile&utm_medium=android_app",
+ "Admin github": "https://github.com/Khushi-Nigam",
+ "Tech stack": "HTML CSS JS PYTHON Django",
+ "mentor 1": "Soaeb",
+ "mentor 1 github": "https://github.com/soaebhasan12",
+ "mentor 1 linkedin": "https://www.linkedin.com/in/shoaib-ahmad-789827360?utm_source=share&utm_campaign=share_via&utm_content=profile&utm_medium=android_app",
+ "mentor 2": "Jasmin",
+ "Mentor 2 linkedin": "jasmin",
+ "mentor 2 github": "jasmin",
+ "mentor 3": "Nitin Saxena",
+ "mentor 3 linkedin": "https://www.linkedin.com/in/nitin-saxena-78a976294?utm_source=share&utm_campaign=share_via&utm_content=profile&utm_medium=android_app",
+ "mentor 3 github": "https://github.com/Nitin10cd",
+ "keyword": "phase1"
+ },
+ {
+ "Project name": "one- stop- guide",
+ "Project description": "Explore city guide and Radme details hai",
+ "Project link": "https://github.com/komalkhatod1105/One-Stop-Guide",
+ "Project admin": "Komal Khatod",
+ "Admin linkedin": "linkedin.com/in/komalkhatod",
+ "Admin github": "github.com/komalkhatod",
+ "Tech stack": "Full stack developer",
+ "mentor 1": "Sandesh Shinde",
+ "mentor 1 github": "https://github.com/Molza01",
+ "mentor 1 linkedin": "https://www.linkedin.com/in/sandesh-shinde-0255592a2?utm_source=share&utm_campaign=share_via&utm_content=profile&utm_medium=android_app",
+ "mentor 2": "YASH GUPTA",
+ "Mentor 2 linkedin": "https://www.linkedin.com/in/vyshnavi-gowni-a700962b7/?utm_source=share&utm_campaign=share_via&utm_content=profile&utm_medium=ios_app",
+ "mentor 2 github": "https://github.com/Yashgpt123",
+ "keyword": "phase1"
+ },
+ {
+ "Project name": "TCM Website - Open Source",
+ "Project description": "A student led literary magazine showcasing youth voices. This open source project aims to improve the website’s design, features, and performance while offering contributors real-world experience in web development and digital publishing",
+ "Project link": "https://github.com/Kritika75/TheCawnporeMag.github.io",
+ "Project admin": "Kritika Singh",
+ "Admin linkedin": "https://www.linkedin.com/in/kritika-singh-214602288/",
+ "Admin github": "https://github.com/Kritika75",
+ "Tech stack": "HTML, CSS, JavaScript",
+ "mentor 1": "Supriya bhattacharjee",
+ "mentor 1 github": "https://github.com/Supriya5784",
+ "mentor 1 linkedin": "https://www.linkedin.com/in/supriya-bhattacharjee-257a25291/",
+ "mentor 2": "Saleha Tabassum",
+ "Mentor 2 linkedin": "https://www.linkedin.com/in/saleha-tabassum-213568268",
+ "mentor 2 github": "https://github.com/SalehaTabassum",
+ "mentor 3": "Charvi Wadhwa",
+ "mentor 3 linkedin": "https://www.linkedin.com/in/charvi-wadhwa-23b565291?utm_source=share&utm_campaign=share_via&utm_content=profile&utm_medium=android_app",
+ "mentor 3 github": "https://github.com/Chandrikajoshi123",
+ "mentor 4": "Akshit Saai",
+ "mentor 4 linkedin": "https://www.linkedin.com/in/akshith-manchikanti-b35a9b209",
+ "mentor 4 github": "https://github.com/Akshithsaai",
+ "keyword": "phase1"
+ },
+ {
+ "Project name": "Amour Editorial Website",
+ "Project description": "A website for amour editorial which focuses on helping students go abroad with their documentations such as personalized SOP, LOR and scholarship essays to get their admission. As well as one on one counselling to help them achieve their study abroad dreams!",
+ "Project link": "https://github.com/lolpanda2004/Amour-Editorial-Website.git",
+ "Project admin": "Lathika",
+ "Admin linkedin": "https://www.linkedin.com/in/lathika-devanand-bb5813224",
+ "Admin github": "https://github.com/lolpanda2004",
+ "Tech stack": "Html, css, js, React",
+ "mentor 1": "Ankit Mourya",
+ "mentor 1 github": "https://github.com/AnkitMourya12",
+ "mentor 1 linkedin": "https://www.linkedin.com/in/ankit-mourya-821aa223b/",
+ "mentor 2": "Dipyan Ghosh",
+ "Mentor 2 linkedin": "https://www.linkedin.com/in/dipayan-ghosh-coder",
+ "mentor 2 github": "https://github.com/Dip-1432",
+ "mentor 3": "Isha Patel",
+ "mentor 3 linkedin": "https://www.linkedin.com/in/isha-patel-6899192ab?utm_source=share&utm_campaign=share_via&utm_content=profile&utm_medium=android_app",
+ "mentor 3 github": "https://github.com/candy1227",
+ "keyword": "phase1"
+ },
+ {
+ "Project name": "Rohit YouTube Advocate chatbot",
+ "Project description": "The Rohit YouTube Advocate AI Chatbot is an intelligent assistant designed for YouTubers. It helps creators understand content guidelines, copyright issues, strikes, and monetization policies. The chatbot instantly answers questions, offers decision support, and provides clear guidance on avoiding violations. It also suggests best practices for growing channels and resolving disputes, empowering YouTubers to create confidently and stay compliant.",
+ "Project link": "https://github.com/mpawank/Rohit-Youtube-Advocate-AiBot",
+ "Project admin": "Magapalli Pawan Kumar",
+ "Admin linkedin": "https://www.linkedin.com/in/m-pawan-kumar?utm_source=share&utm_campaign=share_via&utm_content=profile&utm_medium=android_app",
+ "Admin github": "https://github.com/mpawank",
+ "Tech stack": "Html, css, javascript,Flask api , Deepseek r1 model, vector database and rag pipelines.",
+ "mentor 1": "Prabhat Yadav",
+ "mentor 1 github": "https://github.com/Prabhatyadav60",
+ "mentor 1 linkedin": "https://www.linkedin.com/in/prabhat-yadav-404b7727a/",
+ "mentor 2": "Tanzhia Sheikh",
+ "Mentor 2 linkedin": "https://www.linkedin.com/in/s-a32b802",
+ "mentor 2 github": "https://github.com/Tanziha-Sheikh",
+ "mentor 4": "Abdullah jammel",
+ "mentor 4 linkedin": "https://www.linkedin.com/in/dhruv-verma-34a927282/",
+ "mentor 4 github": "https://github.com/abdullahxyz85",
+ "mentor 5": "Khabab Akhtar",
+ "mentor 5 linkedin": "https://www.linkedin.com/in/khabab-akhtar-5b34562b1/",
+ "mentor 5 github": "https://github.com/Khababakhtar20",
+ "keyword": "phase1"
+ },
+ {
+ "Project name": "AlgoLab-Learn Ml algos Visually",
+ "Project description": "AlgoLab is an open-source project built to help students, developers, and enthusiasts understand Machine Learning algorithms through visual and interactive demonstrations. Whether you're a beginner curious about how KNN or Decision Trees work, or someone who learns better by seeing algorithms in action, AlgoLab is for you.",
+ "Project link": "https://github.com/manasvi-0/AlgoLab",
+ "Project admin": "Manasvi Jindal",
+ "Admin linkedin": "https://www.linkedin.com/in/manasvi-jindal-03aa6a278/",
+ "Admin github": "https://www.github.com/manasvi-0",
+ "Tech stack": "fastapi uvicorn scikit-learn pandas numpy matplotlib seaborn python",
+ "mentor 1": "Vivek Kumar Garg",
+ "mentor 1 github": "https://github.com/viv2005ek",
+ "mentor 1 linkedin": "https://www.linkedin.com/in/vivek-kumar-garg-097677280/",
+ "mentor 2": "Arpit Mishra",
+ "Mentor 2 linkedin": "https://www.linkedin.com/in/arpit-mishra-87b943242/",
+ "mentor 2 github": "https://github.com/TheChaoticor",
+ "mentor 3": "Ankit Gupta",
+ "mentor 3 linkedin": "https://www.linkedin.com/in/ankitxgpt/",
+ "mentor 3 github": "https://github.com/ankitgpt18",
+ "mentor 4": "Dhruv verma",
+ "mentor 4 linkedin": "https://www.linkedin.com/in/dhruv-verma-34a927282/",
+ "mentor 4 github": "https://github.com/dhruvv1101",
+ "keyword": "phase1"
+ },
+ {
+ "Project name": "QuickStay",
+ "Project description": "QuickStay is a hotel booking web application built using the MERN Stack (MongoDB, Express.js, React.js, Node.js). It features user authentication with Clerk, image storage via Cloudinary, and real-time notifications using Toast. The app offers a seamless experience for users to search, book, and manage hotel stays, with both frontend and backend integration deployed for scalability.",
+ "Project link": "https://github.com/manishkumar8312/Hotel-Booking",
+ "Project admin": "Manish Kumar Sah",
+ "Admin linkedin": "https://www.linkedin.com/manish8312",
+ "Admin github": "https://github.com/manishkumar8312",
+ "Tech stack": "MERN Stack, Clerk, Cloudinary",
+ "mentor 1": "Mrunal Mehar",
+ "mentor 1 github": "https://github.com/Mrunalx863",
+ "mentor 1 linkedin": "https://www.linkedin.com/in/mrunalx863/",
+ "mentor 2": "Ayush Kandwal",
+ "Mentor 2 linkedin": "https://www.linkedin.com/in/ayushkandwal?utm_source=share&utm_campaign=share_via&utm_content=profile&utm_medium=ios_app",
+ "mentor 2 github": "https://github.com/fizaayesha",
+ "keyword": "phase1"
+ },
+ {
+ "Project name": "LetsDoDsaTogether",
+ "Project description": "LetsDoDSATogether is a clean, community-powered DSA learning platform where learners can connect through Discord, explore curated resources, and solve problems collaboratively. It's designed to make learning DSA less isolating and more empowering — together, not alone.",
+ "Project link": "https://github.com/Vaishnavi-Manne/LetsDoDsaTogether",
+ "Project admin": "Manne vaishnavi",
+ "Admin linkedin": "https://wwww.linkedin.com/in/manne-vaishnavi",
+ "Admin github": "https://github.com/Vaishnavi-Manne",
+ "Tech stack": "React, tailwind css",
+ "mentor 1": "Nikhil Deshmukh",
+ "mentor 1 github": "https://www.linkedin.com/in/nikhil-d-deshmukh/",
+ "mentor 1 linkedin": "https://github.com/nikhildeshmukh170",
+ "mentor 2": "Nouman khan",
+ "Mentor 2 linkedin": "https://www.linkedin.com/in/nouman-khan-95923a256/",
+ "mentor 2 github": "https://github.com/NoumanKhan2003",
+ "mentor 3": "Abhijit",
+ "mentor 3 linkedin": "http://www.linkedin.com/in/abhijit-sahoo-657305315",
+ "mentor 3 github": "https://github.com/abhijit9040",
+ "keyword": "phase1"
+ },
+ {
+ "Project name": "FailUForward",
+ "Project description": "FailUForward is a community driven platform where users share their biggest failures and the lessons they learned. Using AI, it curates and tags stories, highlights common themes and recommends relatable experiences to help users grow through others’ mistakes. It encourages vulnerability, resilience and real talk like turning failure into fuel. Users mint their failure story as an NFT or anonymous soulbound badge to own their growth journey.",
+ "Project link": "https://github.com/mansiruhil/fail-u-forward",
+ "Project admin": "mansi ruhil",
+ "Admin linkedin": "https://www.linkedin.com/in/mansi-ruhil-7a00a0228",
+ "Admin github": "https://github.com/mansiruhil",
+ "Tech stack": "Frontend: Next.js, TypeScript\n .. Backend: Next.js (API Routes)\n.. Database: Firebase (Firestore + Auth)\n.. AI Validation: Gemini API",
+ "mentor 1": "Ankit modanwal",
+ "mentor 1 github": "https://github.com/ankitmodanwall",
+ "mentor 1 linkedin": "https://www.linkedin.com/in/ankit-modanwal?utm_source=share&utm_campaign=share_via&utm_content=profile&utm_medium=android_app",
+ "mentor 2": "Linuka Arambawela",
+ "Mentor 2 linkedin": "https://www.linkedin.com/in/linuka-arambawela",
+ "mentor 2 github": "https://github.com/LinukaAr",
+ "mentor 3": "Krish Ahlawat",
+ "mentor 3 linkedin": "https://linkedin.com/in/krishahlawat",
+ "mentor 3 github": "https://github.com/krishahlawat",
+ "mentor 4": "Nikhil Deshmukh",
+ "mentor 4 linkedin": "https://www.linkedin.com/in/nikhil-d-deshmukh/",
+ "mentor 4 github": "https://github.com/nikhildeshmukh170",
+ "keyword": "phase1"
+ },
+ {
+ "Project name": "Wanderlust",
+ "Project description": "A full stack project using CRUD operations",
+ "Project link": "https://github.com/meenakshi-011/Wanderlust",
+ "Project admin": "Meenakshi Patel",
+ "Admin linkedin": "https://www.linkedin.com/in/meenakshi-patel-7429b4308?",
+ "Admin github": "https://github.com/meenakshi-011",
+ "Tech stack": "Frontend - HTML , CSS, JavaScript, Backend -Nodejs, express js , databse - Mongodb",
+ "mentor 1": "Vishnu teli",
+ "mentor 1 github": "https://github.com/vishnusindhal",
+ "mentor 1 linkedin": "https://www.linkedin.com/in/vishnu-teli-746569327/",
+ "mentor 2": "Akshit",
+ "Mentor 2 linkedin": "https://www.linkedin.com/in/akshith-manchikanti-b35a9b209",
+ "mentor 2 github": "https://github.com/Akshithsaai",
+ "mentor 3": "Harsh Singh",
+ "mentor 3 linkedin": "https://www.linkedin.com/in/harsh-s-08691222a",
+ "mentor 3 github": "https://github.com/singhharsh1708",
+ "keyword": "phase1"
+ },
+ {
+ "Project name": "Recipedia",
+ "Project description": "Recipedia, a recipe management app using MongoDB, Express.js, React.js, and Node.js. It allows users to explore, save, and share recipes with a seamless UI. Implemented user authentication, search functionality, and RESTful APIs for smooth data handling. Optimized performance with Redux for state management and cloud storage for media.",
+ "Project link": "https://github.com/MeghanaDG04/Recipedia.git",
+ "Project admin": "Meghana Gaonkar",
+ "Admin linkedin": "https://www.linkedin.com/in/meghana-gaonkar-415653282/",
+ "Admin github": "https://github.com/MeghanaDG04",
+ "Tech stack": "MERN Stack",
+ "mentor 1": "Arish Singh",
+ "mentor 1 github": "https://github.com/dashboard",
+ "mentor 1 linkedin": "http://www.linkedin.com/in/arish-singh-63a5b732a",
+ "mentor 3": "Krishna Sen",
+ "mentor 3 linkedin": "http://linkedin.com/in/krishna-sen-5bb829304",
+ "mentor 3 github": "http://github.com/KrishnaSen01",
+ "keyword": "phase1"
+ },
+ {
+ "Project name": "student portal",
+ "Project description": "A modern, responsive student management system built with React, TypeScript, and Tailwind CSS. This application provides a comprehensive platform for students to manage their academic journey with features like authentication, user directory, and dashboard analytics.",
+ "Project link": "https://github.com/mehak-ui/Student-Portal",
+ "Project admin": "Mehak",
+ "Admin linkedin": "https://www.linkedin.com/in/mehak-chauhan-591a72291?utm_source=share&utm_campaign=share_via&utm_content=profile&utm_medium=android_app",
+ "Admin github": "https://github.com/mehak-ui",
+ "Tech stack": "Frontend Framework: React 18 with TypeScript\nStyling: Tailwind CSS\nRouting: React Router DOM v6",
+ "mentor 1": "Abhishek Kumar",
+ "mentor 1 github": "https://github.com/abhishekraoas",
+ "mentor 1 linkedin": "https://linkedin.com/in/abhishekraoas",
+ "mentor 2": "Yash Gupta",
+ "Mentor 2 linkedin": "https://www.linkedin.com/in/yash-gupta-a01153348/",
+ "mentor 2 github": "https://github.com/Yashgpt123",
+ "keyword": "phase1"
+ },
+ {
+ "Project name": "Github Tracker",
+ "Project description": "Tracks activity of guthub user",
+ "Project link": "https://github.com/mehul-m-prajapati/github_tracker",
+ "Project admin": "Mehul P",
+ "Admin linkedin": "https://linkedin.com/in/mehulmp",
+ "Admin github": "https://github.com/mehul-m-prajapati",
+ "Tech stack": "React,Nodejs,Express,MongoDb,Tailwindcss",
+ "mentor 1": "Dipayan Ghosh",
+ "mentor 1 github": "https://www.linkedin.com/in/dipayan-ghosh-coder",
+ "mentor 1 linkedin": "https://github.com/Dip-1432",
+ "mentor 2": "Krishna Sen",
+ "Mentor 2 linkedin": "https://www.linkedin.com/in/krishna-sen-5bb829304/",
+ "mentor 2 github": "github.com/KrishnaSen01",
+ "mentor 3": "Bhoomy Singh",
+ "mentor 3 linkedin": "linkedin.com/in/bhoomy-singh-a56227267/",
+ "mentor 3 github": "https://github.com/Bhoomysingh10",
+ "mentor 4": "Yuvraj Singh",
+ "mentor 4 linkedin": "https://www.linkedin.com/in/yoursyuvii/",
+ "mentor 4 github": "https://github.com/yoursyuvii",
+ "keyword": "phase1"
+ },
+ {
+ "Project name": "Notes-Aid",
+ "Project description": "A modern platform to access academic notes with embedded YouTube videos and PDFs for better learning!",
+ "Project link": "https://github.com/MinavKaria/Notes-Aid",
+ "Project admin": "Minav",
+ "Admin linkedin": "https://www.linkedin.com/in/minav-karia",
+ "Admin github": "https://github.com/MinavKaria",
+ "Tech stack": "Nextjs,Reactjs",
+ "mentor 1": "Sumit Kesarwani",
+ "mentor 1 github": "https://github.com/Sumit6307",
+ "mentor 1 linkedin": "https://www.linkedin.com/in/sumit-kesarwani-35b63a286",
+ "keyword": "phase1"
+ },
+ {
+ "Project name": "CoffeeShop",
+ "Project description": "MsCafe was founded with a simple mission: to serve the best coffee in town. Our passion for quality beans and expert brewing techniques has made us a favorite among coffee enthusiasts. We source our beans from sustainable farms around the world, ensuring that every cup of coffee you enjoy is not only delicious but also ethically produced.",
+ "Project link": "https://github.com/Mujtabaa07/coffeeShop",
+ "Project admin": "Mohamed Mujtaba",
+ "Admin linkedin": "https://www.linkedin.com/in/mohamed-mujtaba",
+ "Admin github": "https://github.com/Mujtabaa07",
+ "Tech stack": "React.js , TailwindCss, HTML CSS, Javascript",
+ "mentor 1": "Harsh verma",
+ "mentor 1 github": "https://github.com/Harsh-verma24",
+ "mentor 1 linkedin": "https://www.linkedin.com/in/harsh-verma-68115a326",
+ "mentor 2": "Yuvraj Singh",
+ "Mentor 2 linkedin": "https://www.linkedin.com/in/dipayan-ghosh-coder",
+ "mentor 2 github": "https://github.com/yoursyuvii",
+ "mentor 3": "Biradar Vanshika",
+ "mentor 3 linkedin": "http://www.linkedin.com/in/biradar-vanshika-8a153129a",
+ "mentor 3 github": "https://github.com/Biradarvanshika",
+ "mentor 4": "Nouman Khan",
+ "mentor 4 linkedin": "https://www.linkedin.com/in/nouman-khan-95923a256/",
+ "mentor 4 github": "https://github.com/NoumanKhan2003",
+ "keyword": "phase1"
+ },
+ {
+ "Project name": "Placify : \"Smarter Placements. Sharper Talent.\"",
+ "Project description": "Placify is an AI-driven recruitment and skill-assessment platform designed to transform campus placements and early-career hiring. It streamlines over 60–70% of the traditional recruitment process by automating resume screening, conducting adaptive assessments, and generating actionable feedback for students, colleges, and companies.\n\nPlacify serves three primary stakeholders — students, colleges, and recruiters — by bridging the gap between industry expectations and candidate readiness.",
+ "Project link": "https://github.com/MonishRaman/Placify-Smarter-Placements.-Sharper-Talent.-.git",
+ "Project admin": "Monish Raman",
+ "Admin linkedin": "www.linkedin.com/in/monishr608",
+ "Admin github": "https://github.com/MonishRaman",
+ "Tech stack": "Frontend: React.js + Tailwind CSS\nBackend API : Node.js + Express\nML Service : Python + Flask / FastAPI , OpenAI / HuggingFace Transformers , spaCy / NLTK \nDatabase : MongoDB\nDeployment : Netlify + Render/Railway\nAuth & Security : JWT, Helmet.js\nCharts & Reports : Recharts / Chart.js",
+ "mentor 1": "Shivam Prasad Singh",
+ "mentor 1 github": "https://github.com/shivhere007",
+ "mentor 1 linkedin": "http://www.linkedin.com/in/iamshiv07",
+ "mentor 2": "Kanishka Tyagi",
+ "Mentor 2 linkedin": "kanishka Tyagi",
+ "mentor 3": "Isha Patel",
+ "mentor 3 linkedin": "https://www.linkedin.com/in/isha-patel-6899192ab/",
+ "mentor 3 github": "https://github.com/candy1227",
+ "mentor 4": "Arvind Singh",
+ "mentor 4 linkedin": "https://www.linkedin.com/in/arvind-singh-92b88928a/",
+ "mentor 4 github": "https://github.com/04arvind",
+ "mentor 5": "Satyam Singh",
+ "mentor 5 linkedin": "https://www.linkedin.com/in/satyam8306/",
+ "mentor 5 github": "https://github.com/SatyamSingh8306",
+ "keyword": "phase1"
+ },
+ {
+ "Project name": "DocMagic",
+ "Project description": "DocMagic is an AI-powered document creation platform that transforms simple text prompts into professional documents. Create stunning resumes, presentations, CVs, and letters with the power of AI.",
+ "Project link": "https://www.github.com/Muneerali199/DocMagic",
+ "Project admin": "Muneer Ali",
+ "Admin linkedin": "https://www.linkedin.com/in/muneer-ali",
+ "Admin github": "https://www.github.com/Muneerali199",
+ "Tech stack": "nextjs,supabase with postresql,gemini 2.0 flash etc",
+ "mentor 1": "Yash Kumar Saini",
+ "mentor 1 github": "https://github.com/yashksaini-coder",
+ "mentor 1 linkedin": "https://www.linkedin.com/in/yashksaini/",
+ "mentor 2": "Saksham Kapoor",
+ "Mentor 2 linkedin": "Saksham Kapoor",
+ "mentor 2 github": "Saksham Kapoor",
+ "mentor 3": "Nikhil Saxena",
+ "mentor 3 linkedin": "https://www.linkedin.com/in/nikhil-saxena-76901a2a5?utm_source=share&utm_campaign=share_via&utm_content=profile&utm_medium=android_app",
+ "mentor 3 github": "https://github.com/Nikhil2253",
+ "keyword": "phase1"
+ },
+ {
+ "Project name": "Eco finder",
+ "Project description": "Eco Career Finder is a full-stack web app that helps students and job seekers discover eco-friendly jobs, internships, and career guidance. It includes login/signup with Firebase, an easy-to-use dashboard, and a feedback system for user input.",
+ "Project link": "https://github.com/lohithya143/Eco-Finder-App",
+ "Project admin": "Nagidi Lohithya",
+ "Admin linkedin": "https://www.linkedin.com/in/lohithya?utm_source=share&utm_campaign=share_via&utm_content=profile&utm_medium=android_app",
+ "Admin github": "https://github.com/lohithya143",
+ "Tech stack": "javascript",
+ "mentor 1": "Ankit Pal",
+ "mentor 1 github": "https://github.com/Ankit0101705",
+ "mentor 1 linkedin": "https://www.linkedin.com/in/ankit-pal-a7755930a?utm_source=share&utm_campaign=share_via&utm_content=profile&utm_medium=android_app",
+ "mentor 2": "Isha Patel",
+ "Mentor 2 linkedin": "https://www.linkedin.com/in/isha-patel-6899192ab/",
+ "mentor 2 github": "https://github.com/candy1227",
+ "keyword": "phase1"
+ },
+ {
+ "Project name": "Housify",
+ "Project description": "Housify is a full-stack property rental web application where users can list, search, and book properties. It features secure session-based authentication, dynamic filtering (by location, price, and guest count), and supports CRUD operations for listings, bookings, and reviews. Built with Node.js, Express, MongoDB, and MySQL, Housify uses RESTful APIs and a responsive, SEO-friendly UI powered by EJS and Tailwind CSS. Relational data is structured using MySQL schemas for users, properties, and reservations",
+ "Project link": "https://github.com/Naveenkumar30838/Housify",
+ "Project admin": "Naveen Kumar",
+ "Admin linkedin": "https://www.linkedin.com/in/naveen-kumar-7a4566223",
+ "Admin github": "https://github.com/Naveenkumar30838/",
+ "Tech stack": "Node. js, Express. js, mongodb, mysql, ejs tailwindcss",
+ "mentor 1": "Yash Kumar Saini",
+ "mentor 1 github": "https://github.com/yashksaini-coder",
+ "mentor 1 linkedin": "https://www.linkedin.com/in/yashksaini/",
+ "mentor 2": "Krish Patel",
+ "Mentor 2 linkedin": "https://www.linkedin.com/in/krishpatel1205/",
+ "mentor 2 github": "https://github.com/KrishPatel1205",
+ "mentor 3": "Kanishka Tyagi",
+ "mentor 3 linkedin": "https://www.linkedin.com/in/kanishka-tyagi-a334b128b/",
+ "mentor 3 github": "https://github.com/sachiikrish",
+ "keyword": "phase1"
+ },
+ {
+ "Project name": "Shopiko- E commerce website",
+ "Project description": "Its an ecommerce website that have different features login,signup as a buyer or seller . You can add product to cart and checkout them .",
+ "Project link": "https://github.com/Neha-Singh-j/shopiko",
+ "Project admin": "Neha Singh",
+ "Admin linkedin": "https://www.linkedin.com/in/neha-singh-4952992a7",
+ "Admin github": "https://github.com/Neha-Singh-j",
+ "Tech stack": "MERN",
+ "mentor 1": "Himanshu Gupta",
+ "mentor 1 github": "https://github.com/himanshu560hi",
+ "mentor 1 linkedin": "https://www.linkedin.com/in/himanshu561hi?utm_source=share&utm_campaign=share_via&utm_content=profile&utm_medium=android_app",
+ "mentor 2": "Dipayan Ghosh",
+ "Mentor 2 linkedin": "https://www.linkedin.com/in/dipayan-ghosh-coder",
+ "mentor 2 github": "https://github.com/Dip-1432",
+ "mentor 3": "Nikhil Deshmukh",
+ "mentor 3 linkedin": "https://www.linkedin.com/in/nikhil-d-deshmukh/",
+ "mentor 3 github": "https://github.com/nikhildeshmukh170",
+ "mentor 4 linkedin": "https://www.linkedin.com/in/shruti-tiwari-a8537725a/",
+ "mentor 4 github": "https://docs.google.com/spreadsheets/d/12TYRJSwCimT8DIBT4UKKUGR7lrpG2lzTNK82Zc1LwO0/edit?gid=0#gid=0&range=S95",
+ "keyword": "phase1"
+ },
+ {
+ "Project name": "facial recognition attendance system",
+ "Project description": "The Facial Recognition System is a smart AI-powered solution that uses real-time computer vision and machine learning to identify or verify a person from a digital image or video. It combines OpenCV for image processing, Hugging Face for advanced AI models, and Glitch for an interactive, cloud-based user interface",
+ "Project link": "https://github.com/Nisha229/ttwitter-sentiment-analysis-",
+ "Project admin": "Nisha",
+ "Admin linkedin": "https://www.linkedin.com/in/nisha-kanojia-ba7441264?utm_source=share&utm_campaign=share_via&utm_content=profile&utm_medium=android_app",
+ "Admin github": "https://github.com/nisha131",
+ "Tech stack": "OpenCV\nUsed for real-time face detection and image processing from webcam input.\n\nHugging Face\nUtilized pre-trained models for facial recognition and identity verification.\n\nGlitch\nHosted the frontend of the application and connected it to the backend.\n\nHTML, CSS, JavaScript\nBuilt the web interface, handled webcam access, and managed user interactions.",
+ "mentor 1": "Rithvik",
+ "mentor 1 github": "https://github.com/Rithvik1709",
+ "mentor 1 linkedin": "https://www.linkedin.com/in/rithvik1709",
+ "mentor 2": "Akshith",
+ "Mentor 2 linkedin": "https://www.linkedin.com/in/akshith-manchikanti-b35a9b209",
+ "mentor 2 github": "https://github.com/Akshithsaai",
+ "mentor 3": "Isha Patel",
+ "mentor 3 linkedin": "https://www.linkedin.com/in/isha-patel-6899192ab/",
+ "mentor 3 github": "https://github.com/candy1227",
+ "mentor 4": "Harsh Saini",
+ "mentor 4 linkedin": "https://www.linkedin.com/in/harsh-saini-734ab6264/",
+ "mentor 4 github": "https://github.com/Harshsaini001",
+ "mentor 5": "Yash Gupta",
+ "mentor 5 linkedin": "https://www.linkedin.com/in/yash-gupta-a01153348/",
+ "mentor 5 github": "https://github.com/Yashgpt123",
+ "keyword": "phase1"
+ },
+ {
+ "Project name": "W3nity",
+ "Project description": "W3nity is a unified, Web3-enabled collaboration platform that brings together:\n\nFreelancing Marketplace, Event Management, & Real-Time Community Chat.\nW3nity lets startups, developers, and communities connect, collaborate, and transact seamlessly — on-chain or off-chain.",
+ "Project link": "https://github.com/nishantharkut/W3nity",
+ "Project admin": "Nishant Harkut",
+ "Admin linkedin": "https://www.linkedin.com/in/nishant-harkut",
+ "Admin github": "https://github.com/nishantharkut",
+ "Tech stack": "React, Vite, Tailwind CSS, Framer Motion, Node.js, Express, MongoDB, Mongoose, Socket.IO, Solidity & Hardhat (local/testnet), Alchemy, Ethers.js, MetaMask, Cloudinary, Vercel, Render",
+ "mentor 1": "Rithvik",
+ "mentor 1 github": "https://github.com/Rithvik1709",
+ "mentor 1 linkedin": "https://www.linkedin.com/in/rithvik1709",
+ "mentor 2": "Nandini Pandey",
+ "Mentor 2 linkedin": "https://www.linkedin.com/in/nytrixis",
+ "mentor 2 github": "https://github.com/nytrixis",
+ "mentor 3": "Sanskar Bharadwaj",
+ "mentor 3 linkedin": "https://www.linkedin.com/in/sanskar-bhardwaj-618b82244?lipi=urn%3Ali%3Apage%3Ad_flagship3_profile_view_base_contact_details%3BrHVwh1LkQPqYp4iPd3a2Vg%3D%3D",
+ "mentor 3 github": "https://github.com/Quantsanskar/",
+ "mentor 4": "Nikhil Saxena",
+ "mentor 4 linkedin": "https://www.linkedin.com/in/nikhil-saxena-76901a2a5?utm_source=share&utm_campaign=share_via&utm_content=profile&utm_medium=android_app",
+ "mentor 4 github": "https://github.com/Nikhil2253/",
+ "keyword": "phase1"
+ },
+ {
+ "Project name": "HR Roadways",
+ "Project description": "this is the project in which we are adding govt buses info (haryana one is added) of all the stated of india so that it will be easier to travel with public transportation, and it will also help to save the environment.",
+ "Project link": "https://github.com/NishantRana07/HrRoadways",
+ "Project admin": "Nishant Rana",
+ "Admin linkedin": "https://www.linkedin.com/in/nishantrana07?utm_source=share&utm_campaign=share_via&utm_content=profile&utm_medium=android_app",
+ "Admin github": "https://github.com/NishantRana07",
+ "Tech stack": "React + Vite + MongoDB",
+ "mentor 1": "Srinjay Panja",
+ "mentor 1 github": "https://github.com/Bucke200",
+ "mentor 1 linkedin": "https://www.linkedin.com/in/srinjaypanja",
+ "mentor 2": "Sushil Kumar kushwaha",
+ "Mentor 2 linkedin": "https://github.com/CodewithsushilOfficial",
+ "mentor 2 github": "https://www.linkedin.com/in/sushil-kumar-kushwaha-codewithsushil/",
+ "mentor 3": "Krish Chothani",
+ "mentor 3 linkedin": "https://www.linkedin.com/in/krish-chothani-797598284/",
+ "mentor 3 github": "https://github.com/KrishChothani",
+ "keyword": "phase1"
+ },
+ {
+ "Project name": "AgriTech",
+ "Project description": "AgriTech is an AI-powered web platform that offers crop recommendations, yield prediction, disease detection, and collaborative tools to empower farmers and promote smart, sustainable agriculture.",
+ "Project link": "https://github.com/omroy07/AgriTech",
+ "Project admin": "Om Roy",
+ "Admin linkedin": "https://www.linkedin.com/in/om-roy-3b809628a/",
+ "Admin github": "https://github.com/omroy07",
+ "Tech stack": "Flask, Python ,HTML , CSS, JS",
+ "mentor 1": "Anshika Singh",
+ "mentor 1 github": "https://github.com/Anshika09Singh",
+ "mentor 1 linkedin": "https://www.linkedin.com/in/anshika-singh-031b132a5?utm_source=share&utm_campaign=share_via&utm_content=profile&utm_medium=android_app",
+ "mentor 2": "Mehrin Fathima Shamim",
+ "Mentor 2 linkedin": "https://www.linkedin.com/in/mehrinfathimashamim",
+ "mentor 2 github": "https://github.com/mehrinshamim",
+ "mentor 3": "Amna Hassan",
+ "mentor 3 linkedin": "https://www.linkedin.com/in/amna-hassan-143b76202/",
+ "mentor 3 github": "https://github.com/Amna-Hassan04",
+ "keyword": "phase1"
+ },
+ {
+ "Project name": "Ai interview practice platform",
+ "Project description": "A comprehensive interview preparation platform that combines advanced AI evaluation, real-time face monitoring, and structured learning paths to help you ace your technical and behavioral interviews.",
+ "Project link": "https://github.com/byteom/Interview01",
+ "Project admin": "Om singh",
+ "Admin linkedin": "https://www.linkedin.com/in/byteom",
+ "Admin github": "https://github.com/byteom",
+ "Tech stack": "react, typescript, tailwind, supabase, express, node, ai, groq ai",
+ "mentor 1": "Dinar",
+ "mentor 1 github": "https://github.com/din-arr",
+ "mentor 1 linkedin": "https://www.linkedin.com/in/dinar-374659356",
+ "mentor 2": "Anushkha Yadav",
+ "Mentor 2 linkedin": "http://www.linkedin.com/in/anushkha-yadav-a1410b289",
+ "mentor 2 github": "https://github.com/AnushkhaYadav",
+ "keyword": "phase1"
+ },
+ {
+ "Project name": "TuneCrate",
+ "Project description": "A beautiful, dark-themed Chrome extension for playing music files with flowing UI effects and comprehensive audio controls.",
+ "Project link": "https://github.com/Anjaliavv51/TuneCrate",
+ "Project admin": "Pamidi Lakshmi Pavananjali",
+ "Admin linkedin": "https://www.linkedin.com/in/lakshmi-pavananjali-pamidi-766760296",
+ "Admin github": "https://github.com/Anjaliavv51",
+ "Tech stack": "HTML JS TS CSS",
+ "mentor 1": "Srijan Prasad",
+ "mentor 1 github": "https://github.com/Srijanprasad",
+ "mentor 1 linkedin": "https://www.linkedin.com/in/srijan-prasad-",
+ "mentor 2": "ANUSHKHA YADAV",
+ "Mentor 2 linkedin": "http://www.linkedin.com/in/anushkha-yadav-a1410b289",
+ "mentor 2 github": "https://github.com/AnushkhaYadav",
+ "mentor 3": "Sree Gopal Saha",
+ "mentor 3 linkedin": "https://www.linkedin.com/in/sreegopalsaha",
+ "mentor 3 github": "https://github.com/sreegopalsaha",
+ "keyword": "phase1"
+ },
+ {
+ "Project name": "EmailScript",
+ "Project description": "This project aims to develop a system that detects and blocks temporary or disposable email addresses in real time, helping websites and applications reduce spam, protect data integrity, and enhance user authentication.",
+ "Project link": "https://www.github.com/EmailScript/EmailScript",
+ "Project admin": "Pankaj Kumar Bind",
+ "Admin linkedin": "https://www.linkedin.com/in/pankaj-bind",
+ "Admin github": "https://www.github.com/EmailScript/EmailScript",
+ "Tech stack": "HTML, CSS, JavaScript, Python, Flask",
+ "mentor 1": "Rishabh Dhawad",
+ "mentor 1 github": "https://github.com/RishabhDhawad",
+ "mentor 1 linkedin": "https://www.linkedin.com/in/rishabhdhawad/",
+ "mentor 2": "Arpit Mishra",
+ "Mentor 2 linkedin": "https://www.linkedin.com/in/arpit-mishra-87b943242/",
+ "mentor 2 github": "https://github.com/TheChaoticor",
+ "mentor 3": "Akshith",
+ "mentor 3 linkedin": "https://www.linkedin.com/in/akshith-manchikanti-b35a9b209",
+ "mentor 3 github": "https://github.com/Akshithsaai",
+ "keyword": "phase1"
+ },
+ {
+ "Project name": "WallGodds Web",
+ "Project description": "WallGodds is a open-source wallpaper platform tailored for individuals who love to personalize their devices. Whether you're looking for the perfect wallpaper for your mobile, tablet, or desktop, or you're a designer wanting to share your creativity with the world, WallGodds has you covered.",
+ "Project link": "https://github.com/Parnab03/WallGodds",
+ "Project admin": "Parnab Bagchi",
+ "Admin linkedin": "https://www.linkedin.com/in/parnab-bagchi-072966251/",
+ "Admin github": "https://github.com/Parnab03",
+ "Tech stack": "MERN, Firebase RDB",
+ "mentor 1": "Soumik Ghosh",
+ "mentor 1 github": "https://github.com/SoumikGhosh9",
+ "mentor 1 linkedin": "https://www.linkedin.com/in/soumik-ghosh-556651258",
+ "mentor 2": "Shankhadeep Paria",
+ "Mentor 2 linkedin": "https://github.com/Shankha2003",
+ "mentor 2 github": "https://www.linkedin.com/in/shankhadeepparia/",
+ "mentor 3": "Nikhil",
+ "mentor 3 linkedin": "https://www.linkedin.com/in/nikhil-saxena-76901a2a5?utm_source=share&utm_campaign=share_via&utm_content=profile&utm_medium=android_app",
+ "mentor 3 github": "https://github.com/Nikhil2253/",
+ "mentor 4": "Nitin Saxena",
+ "mentor 4 linkedin": "https://www.linkedin.com/in/nitin-saxena-78a976294?utm_source=share&utm_campaign=share_via&utm_content=profile&utm_medium=android_app",
+ "mentor 4 github": "https://github.com/Nitin10cd",
+ "keyword": "phase1"
+ },
+ {
+ "Project name": "Project Vault",
+ "Project description": "Project Vault is a website containing different tech stack projects in one place with live working",
+ "Project link": "https://github.com/pavitraag/Project-Vault",
+ "Project admin": "Pavitraa G",
+ "Admin linkedin": "https://www.linkedin.com/in/pavitraa-g/",
+ "Admin github": "https://github.com/pavitraag",
+ "Tech stack": "HTML, CSS, Javascript",
+ "mentor 1": "Charvi Wadhwa",
+ "mentor 1 github": "https://www.linkedin.com/in/charvi-wadhwa-23b565291/",
+ "mentor 1 linkedin": "https://github.com/charrviwadhwa",
+ "mentor 2": "Isha Patel",
+ "Mentor 2 linkedin": "https://github.com/candy1227",
+ "mentor 2 github": "https://www.linkedin.com/in/isha-patel-6899192ab?utm_source=share&utm_campaign=share_via&utm_content=profile&utm_medium=android_app",
+ "mentor 3": "Jitendra Rajput",
+ "mentor 3 linkedin": "https://www.linkedin.com/in/jitendra-rajputt/",
+ "mentor 3 github": "https://github.com/Jitendrarajputt",
+ "mentor 4": "Rahul Singh",
+ "mentor 4 linkedin": "https://www.linkedin.com/in/rahul-kumar-singh-161089245/",
+ "mentor 4 github": "https://github.com/RAHUL8687",
+ "mentor 5": "Akshata Kokane",
+ "mentor 5 linkedin": "https://www.linkedin.com/in/akshata-kokane-298ba1288",
+ "mentor 5 github": "https://github.com/Akshatakokane10",
+ "keyword": "phase1"
+ },
+ {
+ "Project name": "SimplifAI",
+ "Project description": "AI-Powered Learning Platform\nTransform your documents into flashcards, summaries, and quizzes with cutting-edge AI.",
+ "Project link": "https://github.com/Er-luffy-D/SimplifAI",
+ "Project admin": "Piyush",
+ "Admin linkedin": "https://www.linkedin.com/in/piyushdixitizme",
+ "Admin github": "https://github.com/Er-luffy-D",
+ "Tech stack": "Frontend: Next.js 14, React, Tailwind CSS, Redux Toolkit\nAuth: NextAuth.js (Credentials & Google)\nAI Backend: DeepSeek/OpenRouter API for document parsing and generation\nDatabase: PostgreSQL with Prisma ORM",
+ "mentor 1": "Yash Kumar Saini",
+ "mentor 1 github": "https://github.com/yashksaini-coder",
+ "mentor 1 linkedin": "https://www.linkedin.com/in/yashksaini/",
+ "mentor 2": "Mehuli Biswas",
+ "Mentor 2 linkedin": "https://www.linkedin.com/in/mehuli-biswas-817246334/",
+ "mentor 2 github": "https://github.com/Sanchita76",
+ "mentor 3": "Krish Patel",
+ "mentor 3 linkedin": "https://www.linkedin.com/in/krishpatel1205/",
+ "mentor 3 github": "https://github.com/KrishPatel1205",
+ "mentor 4": "Isha Patel",
+ "mentor 4 linkedin": "https://www.linkedin.com/in/isha-patel-6899192ab/",
+ "mentor 4 github": "https://github.com/candy1227",
+ "keyword": "phase1"
+ },
+ {
+ "Project name": "NBG (NEET Battleground)",
+ "Project description": "NEET Battleground (NBG) is a real-time, multiplayer web app that gamifies NEET exam practice with timed MCQ quizzes and a Skribbl.io-style drawing game. It features private room creation, live chat, custom usernames, and round-based gameplay with scoring. The app is built using React 18 with TypeScript, Tailwind CSS, Socket.IO, Zustand for state management, and React Router for navigation. Designed with a responsive, mobile-first layout and a medical/educational theme, NBG aims to make learning competitive, fun, and interactive.",
+ "Project link": "https://github.com/Piyush-t24/NBG",
+ "Project admin": "Piyush Gupta",
+ "Admin linkedin": "https://www.linkedin.com/in/piyush-gupta-rgipt",
+ "Admin github": "https://github.com/Piyush-t24",
+ "Tech stack": "React 18, Typescript, Tailwind CSS, React Router, Socket.IO, Node.js, Express.js, MongoDB, JWT",
+ "mentor 1": "MERN Stack",
+ "mentor 1 github": "https://github.com/himanshu560hi",
+ "mentor 1 linkedin": "https://www.linkedin.com/in/himanshu561hi?utm_source=share&utm_campaign=share_via&utm_content=profile&utm_medium=android_app",
+ "mentor 2": "Nikhil Saxena",
+ "Mentor 2 linkedin": "https://www.linkedin.com/in/nikhil-saxena-76901a2a5?utm_source=share&utm_campaign=share_via&utm_content=profile&utm_medium=android_app",
+ "mentor 2 github": "https://github.com/Nikhil2253/",
+ "keyword": "phase1"
+ },
+ {
+ "Project name": "cpp-sdk-appwrite",
+ "Project description": "The first ever C++ SDK for Appwrite, build from scratch!",
+ "Project link": "https://github.com/pooranjoyb/cpp-sdk-appwrite",
+ "Project admin": "Pooranjoy",
+ "Admin linkedin": "https://linkedin.com/in/pooranjoyb",
+ "Admin github": "https://github.com/pooranjoyb",
+ "Tech stack": "C++, conan, cmake, libcurl",
+ "mentor 1": "Sristy paul",
+ "mentor 1 github": "https://www.linkedin.com/in/sristy-paul",
+ "mentor 1 linkedin": "https://www.github.com/sristy17",
+ "keyword": "phase1"
+ },
+ {
+ "Project name": "SortVision",
+ "Project description": "SortVision is a web-based sorting algorithm visualizer 🖥️ that lets users explore and compare algorithms like Bubble, Quick, Merge, and more 🔄. Easily adjust speed ⚡ and array size 📊 to watch the sorting process in real-time. Perfect for students and enthusiasts looking to understand sorting mechanics!",
+ "Project link": "https://github.com/alienx5499/SortVision",
+ "Project admin": "Prabal Patra",
+ "Admin linkedin": "https://www.linkedin.com/in/prabalpatra5499",
+ "Admin github": "https://github.com/alienx5499",
+ "Tech stack": "React.js (Vite) · Tailwind CSS · ShadCN · Lucide · Framer Motion · ESLint · Git · Vercel",
+ "mentor 1": "Hemanshu",
+ "mentor 1 github": "https://github.com/HemanshuMandhana",
+ "mentor 1 linkedin": "https://www.linkedin.com/in/hemanshu-mandhana-039601264/",
+ "mentor 2": "Yuvraj Singh",
+ "Mentor 2 linkedin": "https://www.linkedin.com/in/yoursyuvii/",
+ "mentor 2 github": "https://github.com/yoursyuvii",
+ "keyword": "phase1"
+ },
+ {
+ "Project name": "Airplane Boarding Simulation",
+ "Project description": "This project simulates the process of boarding passengers onto an airplane using various real-world boarding strategies such as back-to-front, random boarding, window-middle-aisle, and more. It visualizes how different strategies impact total boarding time and overall efficiency. Built entirely in Python using matplotlib, NumPy, and object-oriented design, the simulation is a great tool for analyzing time complexity, crowd dynamics, and real-life optimization scenarios.\n\nThe goal of the project is to make this simulation more interactive, modular, and extensible for educational, research, or visualization purposes.",
+ "Project link": "https://github.com/18Prachi/airplane-boarding-simulation",
+ "Project admin": "Prachi Saxena",
+ "Admin linkedin": "https://www.linkedin.com/in/prachi-saxena-59a4a0259",
+ "Admin github": "https://github.com/18Prachi",
+ "Tech stack": "Python",
+ "mentor 1": "SOHAM GHOSH",
+ "mentor 1 github": "https://github.com/19Soham1762",
+ "mentor 1 linkedin": "https://www.linkedin.com/in/soham-ghosh-464b33253?utm_source=share&utm_campaign=share_via&utm_content=profile&utm_medium=android_app",
+ "mentor 2": "Aaradhy Raghav Duvey",
+ "Mentor 2 linkedin": "https://www.linkedin.com/in/aaradhy-raghav-duvey-b18b872b7/",
+ "mentor 2 github": "https://github.com/arduvey29",
+ "mentor 3": "Abhishek Mishra",
+ "mentor 3 linkedin": "https://www.linkedin.com/in/abhishek-mishra-452095285?utm_source=share&utm_campaign=share_via&utm_content=profile&utm_medium=android_app",
+ "mentor 3 github": "https://github.com/Abhi-programmer24",
+ "mentor 4": "Vishwajeet",
+ "mentor 4 linkedin": "https://www.linkedin.com/in/wivk-tech/",
+ "mentor 4 github": "https://github.com/wivk-tech",
+ "mentor 5": "Muskan Diaries",
+ "mentor 5 linkedin": "https://www.linkedin.com/in/muskanmehto?utm_source=share&utm_campaign=share_via&utm_content=profile&utm_medium=android_app",
+ "mentor 5 github": "https://github.com/MUSKANMEHTO",
+ "keyword": "phase1"
+ },
+ {
+ "Project name": "Karbon",
+ "Project description": "Karbon is a desktop app that uses AI to generate and iteratively refine HTML/CSS/JS websites from simple prompts. Built with Python and Tkinter, it provides a live preview and export functionality.",
+ "Project link": "https://github.com/ProTecGames/Karbon",
+ "Project admin": "Prakhar Doneria",
+ "Admin linkedin": "https://www.linkedin.com/in/prakhar-doneria",
+ "Admin github": "https://github.com/PrakharDoneria",
+ "Tech stack": "Python",
+ "mentor 1": "Sai Karthik Motapothula",
+ "mentor 1 github": "https://github.com/saikarthik333",
+ "mentor 1 linkedin": "https://in.linkedin.com/in/saikarthik333",
+ "mentor 2": "Vishwajeet",
+ "Mentor 2 linkedin": "https://www.linkedin.com/in/wivk-tech/",
+ "mentor 2 github": "https://github.com/wivk-tech",
+ "mentor 3": "Sely Keta",
+ "mentor 3 linkedin": "https://www.linkedin.com/in/efrata-aron-b135ab279/",
+ "mentor 3 github": "https://github.com/EfrataAron",
+ "keyword": "phase1"
+ },
+ {
+ "Project name": "OpSo",
+ "Project description": "OpSo is a Flutter app that provides comprehensive information about various open-source programs, including Google Summer of Code, Summer of Bitcoin, Linux Foundation, and more. It allows users to explore different open-source opportunities, learn about their eligibility criteria, and access important resources.",
+ "Project link": "https://github.com/andoriyaprashant/OpSo",
+ "Project admin": "Prashant Andoriya",
+ "Admin linkedin": "https://in.linkedin.com/in/prashant-andoriya-272953251",
+ "Admin github": "https://github.com/andoriyaprashant",
+ "Tech stack": "Flutter, Dart",
+ "mentor 1": "Sarthak Patil",
+ "mentor 1 github": "https://github.com/ezsarthak",
+ "mentor 1 linkedin": "https://www.linkedin.com/in/sarthaknpatil",
+ "mentor 2": "Vaibhav M N",
+ "Mentor 2 linkedin": "https://www.linkedin.com/in/vaibhav-m-n-a6b071282/",
+ "mentor 2 github": "https://github.com/Vaibhav2154",
+ "keyword": "phase1"
+ },
+ {
+ "Project name": "FoodIO",
+ "Project description": "FoodIO – Collaborative Recipe Sharing Platform - FoodIO is a full-fledged, MERN stack–based recipe-sharing web application designed to foster a collaborative cooking community. It enables users to upload, manage, and explore a diverse collection of recipes tailored to their personal preferences. With a responsive UI and robust backend, FoodIO ensures an engaging and seamless user experience.",
+ "Project link": "https://github.com/Prashanti-Hebbar/FoodIO",
+ "Project admin": "Prashanti Hebbar",
+ "Admin linkedin": "https://www.linkedin.com/in/prashanti-hebbar-205a51282/",
+ "Admin github": "https://github.com/Prashanti-Hebbar",
+ "Tech stack": "MongoDB, Express.js, React.js, Node.js",
+ "mentor 1": "Siddharth",
+ "mentor 1 github": "https://github.com/SiddharthaArepalli",
+ "mentor 1 linkedin": "https://www.linkedin.com/in/siddharthaarepalli",
+ "mentor 2": "Arvind Singh",
+ "Mentor 2 linkedin": "https://www.linkedin.com/in/arvind-singh-92b88928a",
+ "mentor 2 github": "https://github.com/04arvind",
+ "keyword": "phase1"
+ },
+ {
+ "Project name": "Nagarvikas",
+ "Project description": "An app that is built to file civic issues faced by citizens of india , they can easily track their complaint status in realtime , admins can check the complaints and after working on it they can update status accordingly , admin dashboard also has analytics option to keep data of all complaints for future use",
+ "Project link": "https://github.com/Prateek9876/NagarVikas",
+ "Project admin": "Prateek Chourasia",
+ "Admin linkedin": "https://www.linkedin.com/in/prateek-chourasia-in",
+ "Admin github": "https://github.com/Prateek9876",
+ "Tech stack": "Flutter , dart , firebase(auth and realtime Database), onesignal (in app notification), cloudinary (image storage)",
+ "mentor 1": "Gauri Verma",
+ "mentor 1 github": "https://github.com/garys-demons",
+ "mentor 1 linkedin": "https://www.linkedin.com/in/gauri-verma-2a061b311?utm_source=share&utm_campaign=share_via&utm_content=profile&utm_medium=ios_app",
+ "mentor 2": "Vaibhav M N.",
+ "Mentor 2 linkedin": "https://www.linkedin.com/in/vaibhav-m-n-a6b071282/",
+ "mentor 2 github": "https://github.com/Vaibhav2154",
+ "keyword": "phase1"
+ },
+ {
+ "Project name": "Weather App",
+ "Project description": "A simple and responsive weather web application that allows users to search for any city and get real-time weather updates including temperature, humidity, wind speed, and weather conditions. It uses the OpenWeatherMap API to fetch dynamic data and updates the UI accordingly. The application was developed without frameworks, focusing on modular, clean, and maintainable code.",
+ "Project link": "https://github.com/PreetySinha84/VerveBridge-Task-1-Weather-App.git",
+ "Project admin": "Preety Sinha",
+ "Admin linkedin": "https://www.linkedin.com/in/preety-sinha-318674274?utm_source=share&utm_campaign=share_via&utm_content=profile&utm_medium=android_app",
+ "Admin github": "https://github.com/PreetySinha84",
+ "Tech stack": "HTML, CSS, JavaScript, OpenWeatherMap API, Git & GitHub",
+ "mentor 1": "Mamillapalli sindhu",
+ "mentor 1 github": "https://github.com/Sindhuchowdhary23",
+ "mentor 1 linkedin": "https://www.linkedin.com/in/mamillapalli-sindhu-423310319?utm_source=share&utm_campaign=share_via&utm_content=profile&utm_medium=android_app",
+ "mentor 2": "Yakshit Ranga",
+ "Mentor 2 linkedin": "https://in.linkedin.com/in/yakshit-ranga",
+ "mentor 2 github": "https://github.com/yakshitranga",
+ "mentor 3": "Sely Keta",
+ "mentor 3 linkedin": "https://www.linkedin.com/in/efrata-aron-b135ab279/",
+ "mentor 3 github": "https://github.com/EfrataAron",
+ "keyword": "phase1"
+ },
+ {
+ "Project name": "etsi-watchdog",
+ "Project description": "etsi-watchdog is a Python library for drift detection, version comparison, and real-time monitoring of data streams. Designed for ML practitioners, data scientists, and AI engineers who need reliable data quality insights.",
+ "Project link": "https://github.com/etsi-ai/etsi-watchdog",
+ "Project admin": "Priyansh Srivastava",
+ "Admin linkedin": "https://www.linkedin.com/in/priyansh-srivastava-91a0511bb/",
+ "Admin github": "https://github.com/PriyanshSrivastava0305",
+ "Tech stack": "python machine-learning",
+ "mentor 1": "Simma Sai Ganesh",
+ "mentor 1 github": "https://github.com/Sai-ganesh-0004",
+ "mentor 1 linkedin": "https://www.linkedin.com/in/sai-ganesh0004/",
+ "mentor 2": "Ankit Gupta",
+ "Mentor 2 linkedin": "https://www.linkedin.com/in/ankitxgpt/",
+ "mentor 2 github": "https://github.com/ankitgpt18",
+ "mentor 3": "Riya Gupta",
+ "mentor 3 linkedin": "https://www.linkedin.com/in/riya-gupta311/",
+ "mentor 3 github": "https://github.com/RiyaGupta5114",
+ "mentor 4": "Aditi Shrivastav",
+ "mentor 4 linkedin": "https://www.linkedin.com/in/aditi-srivastava001/",
+ "mentor 4 github": "https://github.com/https-aditi",
+ "keyword": "phase1"
+ },
+ {
+ "Project name": "DataSentience-AIML",
+ "Project description": "🚀 Introducing DataSentience-AIML 🌐 A collaborative open-source project building real-world AI/ML solutions across domains like Healthcare, Finance, Agriculture, NLP, Safety & more! 💡 Key Technologies: Deep Learning Reinforcement Learning LLMs / NLP Data Science & Automation 🎯 Domains We Cover: 🏥 Healthcare | 💰 Finance | 🌾 Agriculture | 📈 Stocks & Crypto | 🛣️ Road Safety | 📷 Optical Detection | 💬 Chatbots | 🔒 Federated Learning 📁 Modular Project Structure: Organized under src/ for: Crop Yield Prediction Disease Detection Traffic & Safety Systems Federated Learning Pipelines BiLSTM Architectures & more!",
+ "Project link": "https://github.com/PRIYANSHU2026/DataSentience-AIML",
+ "Project admin": "PRIYANSHU TIWARI",
+ "Admin linkedin": "https://www.linkedin.com/in/priyanshu-tiwari-305661258/",
+ "Admin github": "https://github.com/PRIYANSHU2026",
+ "Tech stack": "Python , Machine learning",
+ "mentor 1": "Ruhi Tyagi",
+ "mentor 1 github": "https://www.github.com/ruhi47",
+ "mentor 1 linkedin": "https://www.linkedin.com/in/ruhityagi",
+ "mentor 2": "Mahraib Fatima",
+ "Mentor 2 linkedin": "https://www.linkedin.com/in/mahraib-fatima/",
+ "mentor 2 github": "https://github.com/MahraibFatima",
+ "mentor 3": "Dhruv Kumar",
+ "mentor 3 linkedin": "https://www.linkedin.com/in/dhruvakkaushal/",
+ "mentor 3 github": "https://github.com/dhruvak001",
+ "mentor 4": "Amna Hassan",
+ "mentor 4 linkedin": "https://www.linkedin.com/in/amna-hassan-143b76202/",
+ "mentor 4 github": "https://github.com/Amna-Hassan04",
+ "mentor 5": "Dhruv Verma",
+ "mentor 5 linkedin": "https://www.linkedin.com/in/dhruv-verma-34a927282/",
+ "mentor 5 github": "https://github.com/dhruvv1101",
+ "keyword": "phase1"
+ },
+ {
+ "Project name": "CineVerse",
+ "Project description": "A beautiful and modern movie search application which allows users to search for movies, view detailed information, and rate their favourites.",
+ "Project link": "https://github.com/rahulkhandait-sde/movie-search",
+ "Project admin": "Rahul Khandait",
+ "Admin linkedin": "https://www.linkedin.com/in/rahulkhandait/",
+ "Admin github": "https://github.com/rahulkhandait-sde",
+ "Tech stack": "Next.js, Typescript, Redux Toolkit, Tailwind CSS, React, OMDB API",
+ "mentor 1": "Arvind Singh",
+ "mentor 1 github": "https://github.com/04arvind",
+ "mentor 1 linkedin": "https://www.linkedin.com/in/arvind-singh-92b88928a",
+ "keyword": "phase1"
+ },
+ {
+ "Project name": "UrHired",
+ "Project description": "URHired is a comprehensive job application tracking platform designed to streamline the job search process. This application helps job seekers manage their applications, track interview stages, and organize their career opportunities in one centralized location.",
+ "Project link": "https://github.com/techieRahul17/URHired",
+ "Project admin": "Rahul V S",
+ "Admin linkedin": "https://www.linkedin.com/in/rahul-v-s/",
+ "Admin github": "https://github.com/techieRahul17",
+ "Tech stack": "React+Vite, Tailwind CSS",
+ "mentor 1": "Nitya Singh",
+ "mentor 1 github": "https://github.com/NityaSingh77",
+ "mentor 1 linkedin": "https://www.linkedin.com/me?trk=p_mwlite_feed-secondary_nav",
+ "mentor 2": "Tanziha Sheikh",
+ "Mentor 2 linkedin": "https://www.linkedin.com/in/s-a32b802",
+ "mentor 2 github": "https://github.com/Tanziha-Sheikh",
+ "mentor 3": "Sely Keta",
+ "mentor 3 linkedin": "https://www.linkedin.com/in/efrata-aron-b135ab279/",
+ "mentor 3 github": "https://github.com/EfrataAron",
+ "keyword": "phase1"
+ },
+ {
+ "Project name": "Canvas",
+ "Project description": "A Kotlin Multiplatform Paint application to pain and draw Sketch Doodle. This application uses local storage to store drawings and doesn't require any internet access.",
+ "Project link": "https://github.com/Rajkumarbhakta/Canvas",
+ "Project admin": "Rajkumar Bhakta",
+ "Admin linkedin": "https://www.linkedin.com/in/rajkumar-bhakta",
+ "Admin github": "https://github.com/Rajkumarbhakta/",
+ "Tech stack": "Kotlin, Kotlin Multiplatform, Compose Multiplatform",
+ "mentor 1": "Nitin Saxena",
+ "mentor 1 github": "https://github.com/Nitin10cd",
+ "mentor 1 linkedin": "https://www.linkedin.com/in/nitin-saxena-78a976294?utm_source=share&utm_campaign=share_via&utm_content=profile&utm_medium=android_app",
+ "keyword": "phase1"
+ },
+ {
+ "Project name": "Honor Box",
+ "Project description": "HonorBox , is a free and open-source web-based application that allows users to generate and verify certificates effortlessly. It provides a seamless and secure way to issue digital certificates and validate their authenticity",
+ "Project link": "https://github.com/RamakrushnaBiswal/HonorBox",
+ "Project admin": "Ramakrushna Biswal",
+ "Admin linkedin": "https://www.linkedin.com/in/ramakrushna-biswal",
+ "Admin github": "https://github.com/RamakrushnaBiswal/",
+ "Tech stack": "React.js, Tailwind CSS,Node.js, Express.js,MongoDB,Vercel,Nodemailer",
+ "mentor 1": "Krish Chothani",
+ "mentor 1 github": "https://github.com/KrishChothani",
+ "mentor 1 linkedin": "https://www.linkedin.com/in/krish-chothani-797598284",
+ "mentor 2": "Dipayan Ghosh",
+ "Mentor 2 linkedin": "https://www.linkedin.com/in/dipayan-ghosh-coder",
+ "mentor 2 github": "https://github.com/Dip-1432",
+ "mentor 3": "Abhishek Sharma",
+ "mentor 3 linkedin": "https://www.linkedin.com/in/abhishek-sharma-069-i/",
+ "mentor 3 github": "https://github.com/Abhishek-Sharma-069",
+ "mentor 4": "Ishika Gupta",
+ "mentor 4 linkedin": "https://www.linkedin.com/in/ishika-gupta-78648325b/",
+ "mentor 4 github": "https://github.com/Ishika-Gupta06",
+ "keyword": "phase1"
+ },
+ {
+ "Project name": "CryptoInsight",
+ "Project description": "CryptoInsight is an open-source, beginner-friendly crypto dashboard that allows users to monitor real-time cryptocurrency prices, analyze market trends, and track wallet balances using blockchain APIs. Built with Python and Streamlit, the project aims to simplify the crypto experience through clean visualizations and a user-first design.\n\nWhether you're a crypto enthusiast, data lover, or curious developer, CryptoInsight empowers you to explore the crypto world with clarity and confidence.",
+ "Project link": "https://github.com/RM-f1/Cryptoinsight",
+ "Project admin": "Ramandeep Kaur",
+ "Admin linkedin": "https://www.linkedin.com/in/ramandeep-kaur-9a548132b?utm_source=share&utm_campaign=share_via&utm_content=profile&utm_medium=android_app",
+ "Admin github": "https://github.com/RM-f1",
+ "Tech stack": "Python, Pandas, NumPy, Matplotlib, Plotly, Streamlit, CoinGecko API, Git, GitHub",
+ "mentor 1": "Prateek Sharma",
+ "mentor 1 github": "https://github.com/pkbros",
+ "mentor 1 linkedin": "https://www.linkedin.com/in/prateek-sharma-pkbros25",
+ "mentor 2": "D s kamali",
+ "Mentor 2 linkedin": "https://www.linkedin.com/in/kamalisridhar/",
+ "mentor 2 github": "https://github.com/kamali1331",
+ "mentor 3": "Abhishek Mishra",
+ "mentor 3 linkedin": "https://www.linkedin.com/in/abhishek-mishra-452095285?utm_source=share&utm_campaign=share_via&utm_content=profile&utm_medium=android_app",
+ "mentor 3 github": "https://github.com/Abhi-programmer24",
+ "keyword": "phase1"
+ },
+ {
+ "Project name": "AutoPilotX-",
+ "Project description": "Open-source RPA toolkit to build, run, and share automation bots with a learning-first approach.",
+ "Project link": "https://guthub.com/rammya29/AutoPilotX-",
+ "Project admin": "Rammya Dharshini K",
+ "Admin linkedin": "https://www.linkedin.com/in/rammyak",
+ "Admin github": "https://github.com/rammya29",
+ "Tech stack": "Python, UiPath, Automation Anywhere, OpenRPA, Robocorp",
+ "mentor 1": "Mithali",
+ "mentor 1 github": "https://github.com/mithalikp25",
+ "mentor 1 linkedin": "https://www.linkedin.com/in/mithali-kp-23b815327?utm_source=share&utm_campaign=share_via&utm_content=profile&utm_medium=ios_app",
+ "mentor 2": "Aditi",
+ "Mentor 2 linkedin": "https://www.linkedin.com/in/aditi-srivastava001/",
+ "mentor 2 github": "https://github.com/https-aditi",
+ "keyword": "phase1"
+ },
+ {
+ "Project name": "Zero Waste Mart",
+ "Project description": "ZeroWasteMart is a sustainable online platform that allows users to buy, sell, or donate surplus groceries and reusable household items, aiming to reduce waste and promote eco-friendly living.",
+ "Project link": "https://github.com/Rena-code93/ZeroWasteMart",
+ "Project admin": "Renascence Dey",
+ "Admin linkedin": "https://www.linkedin.com/in/renascence-dey-b422642b9?utm_source=share&utm_campaign=share_via&utm_content=profile&utm_medium=android_app",
+ "Admin github": "https://github.com/Rena-code93",
+ "Tech stack": "Frontend: React.js, Tailwind CSS, CSS Modules, React Router DOM\nBackend: Node.js, Express.js\nDatabase: MongoDB (with Mongoose ORM)\nLanguages: JavaScript, Python, HTML, CSS\nOCR: Python (Tesseract OCR) with Flask API\nAuthentication: JWT (JSON Web Tokens)\nAPIs: REST APIs",
+ "mentor 1": "mansi ruhil",
+ "mentor 1 github": "https://github.com/mansiruhil",
+ "mentor 1 linkedin": "https://www.linkedin.com/in/mansi-ruhil-7a00a0228",
+ "mentor 2": "Subhodeep Roy",
+ "Mentor 2 linkedin": "https://www.linkedin.com/in/subhodeep-roy-423a2a274/",
+ "mentor 2 github": "https://github.com/SubhodeepRoy17",
+ "mentor 3": "Abhishek Sharma",
+ "mentor 3 linkedin": "https://www.linkedin.com/in/abhishek-sharma-069-i/",
+ "mentor 3 github": "https://github.com/Abhishek-Sharma-069",
+ "mentor 4": "Isha Patel",
+ "mentor 4 linkedin": "https://www.linkedin.com/in/isha-patel-6899192ab/",
+ "mentor 4 github": "https://github.com/candy1227",
+ "keyword": "phase1"
+ },
+ {
+ "Project name": "Analysis and Prediction of Electric Vehicle Costs",
+ "Project description": "This project focuses on analyzing historical electric vehicle data to understand cost trends, features, and specifications influencing price variations. Using machine learning models like Linear Regression and Random Forest, the goal is to predict future EV prices based on selected features. The project aims to aid consumers and manufacturers with actionable insights into cost-effective EV production and purchase.",
+ "Project link": "https://github.com/reshamsai150/7.Analysis-and-Prediction-of-Electric-Vehicle-Costs-A-Machine-Learning-Based-Approach",
+ "Project admin": "Resham Sai Pranathi",
+ "Admin linkedin": "https://www.linkedin.com/in/saipranathi-resham-5a7921315",
+ "Admin github": "https://github.com/reshamsai150",
+ "Tech stack": "Python,HTML,CSS, javascript ,Pandas, NumPy, scikit-learn, Matplotlib, Jupyter Notebook, Git, GitHub",
+ "mentor 1": "Sarthak Chandvaria",
+ "mentor 1 github": "https://github.com/sarthaxtic",
+ "mentor 1 linkedin": "https://linkedin.com/in/sarthakchandvaria",
+ "mentor 2": "Kiruthiga C M",
+ "Mentor 2 linkedin": "https://www.linkedin.com/in/kiruthiga-c-m-b34aa9328?utm_source=share&utm_campaign=share_via&utm_content=profile&utm_medium=android_app",
+ "mentor 2 github": "https://github.com/kiruthigacm",
+ "mentor 3": "D s kamali",
+ "mentor 3 linkedin": "https://www.linkedin.com/in/kamalisridhar/",
+ "mentor 3 github": "https://github.com/kamali1331",
+ "keyword": "phase1"
+ },
+ {
+ "Project name": "Trip_assistant",
+ "Project description": "Project Title Trip Assistant – A Smart Travel Companion Platform Organization Name Independent Project Description Trip Assistant is a full-stack travel platform designed to simplify trip planning, booking, and social coordination for travelers. Inspired by platforms like Airbnb, Trip Assistant goes a step further by integrating social features such as a friend system, real-time chat, and a built-in AI chatbot for smart travel assistance. The platform also includes dedicated dashboards for admin users and hotel/property partners, allowing seamless management of bookings, customer data, and platform activity. The project is ideal for open-source contributors interested in modern web development, role-based access control, real-time applications, and AI integration. Key Features ✈️ User Features Accommodation Discovery – Browse and explore stays and destinations Friend System – Add and connect with fellow travelers Real-Time Chat – Communicate with friends to plan trips collaboratively AI Chatbot – Get destination suggestions and answers to FAQs Secure Authentication – Firebase-based login and registration 🛠 Admin & Partner Features Admin Dashboard – Manage users, content, activity logs, and site moderation Hotel Dashboard – Hotels/hosts can view bookings, manage properties, and analyze customer engagement Tech Stack Frontend: React.js with Vite Backend: Node.js with Express.js Database & Authentication: Firebase (Firestore + Firebase Auth) Real-Time Communication: Firebase listeners (Firestore/Realtime DB) Chatbot Integration: Planned via Dialogflow or custom NLP API Current Status Frontend development initiated using React + Vite Firebase setup completed for future integration Core UI components (homepage, partial authentication) under development Backend and dashboard planning in progress Clear roadmap defined for upcoming GSSoC contribution phase Goals for GSSoC Finalize and optimize user flows and authentication Implement friend system and real-time chat Build fully functional admin and partner dashboards Integrate chatbot for intelligent travel assistance Improve UI/UX and ensure responsiveness across devices Maintain clear documentation and contribution guidelines Why This Project? Trip Assistant offers contributors an opportunity to work on a real-world, community-focused travel application using modern technologies. It is suitable for developers interested in: Full-stack web development Real-time applications Firebase ecosystem Role-based access systems AI chatbot integration This project combines technology and travel to create a practical, scalable platform with real social impact.",
+ "Project link": "https://github.com/Richajaishwal0/Trip_assistant",
+ "Project admin": "Richa Jaishwal",
+ "Admin linkedin": "https://www.linkedin.com/in/richa-jaishwal/",
+ "Admin github": "https://github.com/Richajaishwal0",
+ "Tech stack": "HTML, Typescript, JS, React JS, Node js, Firebase Database",
+ "mentor 1": "Pratyaksh",
+ "mentor 1 github": "https://github.com/PRATYAKSH15",
+ "mentor 1 linkedin": "https://www.linkedin.com/in/pratyaksh-989922256/",
+ "keyword": "phase1"
+ },
+ {
+ "Project name": "Portfolio",
+ "Project description": "A personal portfolio website designed to showcase my skills, projects, achievements, and experiences as a software developer. The site features smooth navigation, responsive design for all devices, and dynamic components built using React. It includes sections such as About Me, Projects, Skills, Resume Download, and Contact Form.",
+ "Project link": "https://github.com/The-Rishabh-Mishra",
+ "Project admin": "Rishabh Mishra",
+ "Admin linkedin": "https://www.linkedin.com/in/rishabh-mishra-knit",
+ "Admin github": "https://github.com/The-Rishabh-Mishra",
+ "Tech stack": "MERN",
+ "mentor 1": "Vishisht Kapoor",
+ "mentor 1 github": "http://github.com/vishishtkapoor",
+ "mentor 1 linkedin": "https://www.linkedin.com/in/vishishtkapoor?utm_source=share&utm_campaign=share_via&utm_content=profile&utm_medium=android_app",
+ "mentor 2": "Sayanabha Chandra",
+ "Mentor 2 linkedin": "https://www.linkedin.com/in/sayanabhachandra?utm_source=share&utm_campaign=share_via&utm_content=profile&utm_medium=android_app",
+ "mentor 2 github": "https://github.com/Sayanabha",
+ "keyword": "phase1"
+ },
+ {
+ "Project name": "Influence of Tariff on Fashion Industry",
+ "Project description": "After the intensity of imposition of Tariff tax in US, it has heavily affected the import of goods the country. Imports of materials, designers that get their products from countries like China, India or European country are thought twice before making a final call. Our objective is to run some analysis and see on what scale is tariff affecting the fashion industry.",
+ "Project link": "https://github.com/ritikka06/Tariff-Fashion",
+ "Project admin": "Ritika Gosain",
+ "Admin linkedin": "https://www.linkedin.com/in/ritika-gosain-374871251?utm_source=share&utm_campaign=share_via&utm_content=profile&utm_medium=ios_app",
+ "Admin github": "https://github.com/ritikka06",
+ "Tech stack": "Machine Learning. Python.",
+ "mentor 1": "Gursirat kaur",
+ "mentor 1 github": "https://github.com/sirat98",
+ "mentor 1 linkedin": "https://www.linkedin.com/me?trk=p_mwlite_feed-secondary_nav",
+ "mentor 2": "Kosaraju joshitha",
+ "Mentor 2 linkedin": "https://www.linkedin.com/in/joshitha-kosaraju?utm_source=share&utm_campaign=share_via&utm_content=profile&utm_medium=android_app",
+ "mentor 2 github": "https://github.com/joshitha5g4",
+ "mentor 5": "Khabab Akhtar",
+ "mentor 5 linkedin": "https://www.linkedin.com/in/khabab-akhtar-5b34562b1/",
+ "mentor 5 github": "https://github.com/Khababakhtar20",
+ "keyword": "phase1"
+ },
+ {
+ "Project name": "automataverse",
+ "Project description": "Automata-Verse is an interactive educational platform for learning and experimenting with theory of computation concepts. The application provides intuitive visual simulators for various automata models that are fundamental to computer science.",
+ "Project link": "https://github.com/robinsingh-ai/AutomataVerse",
+ "Project admin": "Robin",
+ "Admin linkedin": "https://www.linkedin.com/in/robinsingh-ai",
+ "Admin github": "https://github.com/robinsingh-ai",
+ "Tech stack": "nextjs, react, firebase and tailwind css",
+ "mentor 1": "Divyanshi Kulshrestha",
+ "mentor 1 github": "https://github.com/divyanshii10",
+ "mentor 1 linkedin": "https://www.linkedin.com/in/divyanshi-kulshrestha-5ba319295/",
+ "mentor 2": "Kathula Sri Raghavi",
+ "Mentor 2 linkedin": "https://www.linkedin.com/in/ksriraghavi/",
+ "mentor 2 github": "https://github.com/sriraghavi22",
+ "mentor 3": "Abhishek Sharma",
+ "mentor 3 linkedin": "https://www.linkedin.com/in/abhishek-sharma-069-i/",
+ "mentor 3 github": "https://github.com/Abhishek-Sharma-069",
+ "mentor 4": "Abdullah Jameel",
+ "mentor 4 linkedin": "https://www.linkedin.com/in/abdullahjameel94/",
+ "mentor 4 github": "https://github.com/abdullahxyz85",
+ "keyword": "phase1"
+ },
+ {
+ "Project name": "failprint",
+ "Project description": "MLOps focused diagnostic tool for automatic root cause analysis of ML Model performance failures.It an important step towards explainable AI.",
+ "Project link": "https://github.com/etsi-ai/etsi-failprint",
+ "Project admin": "Romit Chatterjee",
+ "Admin linkedin": "https://www.linkedin.com/in/romit23",
+ "Admin github": "https://github.com/Romit23",
+ "Tech stack": "Python",
+ "mentor 1": "Utkarsh Maurya",
+ "mentor 1 github": "https://github.com/pro-utkarshM",
+ "mentor 1 linkedin": "https://www.linkedin.com/in/utkarsh-maurya-connect",
+ "mentor 2": "Shwet purwar",
+ "Mentor 2 linkedin": "https://www.linkedin.com/in/shwet-purwar-4a1532296?utm_source=share&utm_campaign=share_via&utm_content=profile&utm_medium=android_app",
+ "mentor 2 github": "https://github.com/piscongentine",
+ "keyword": "phase1"
+ },
+ {
+ "Project name": "WebDevIn100_Days",
+ "Project description": "WebDevIn100Days is an open-source project designed to help contributors enhance their web development skills by building a wide range of projects—from simple to advanced—using HTML, CSS, and JavaScript. It encourages consistent learning through hands-on practice.",
+ "Project link": "https://github.com/ruchikakengal/WebDevIn100_Days",
+ "Project admin": "Ruchika Kengal",
+ "Admin linkedin": "https://www.linkedin.com/in/ruchika-kengal-8085092b7?utm_source=share&utm_campaign=share_via&utm_content=profile&utm_medium=android_app",
+ "Admin github": "https://github.com/ruchikakengal",
+ "Tech stack": "The project uses core web technologies: HTML, CSS, and JavaScript, encouraging consistent, hands-on learning through real-world mini projects.",
+ "mentor 1": "Ankit Mourya",
+ "mentor 1 github": "https://github.com/AnkitMourya12",
+ "mentor 1 linkedin": "https://www.linkedin.com/in/ankit-mourya-821aa223b/",
+ "mentor 2": "Rahul Kumar Singh",
+ "Mentor 2 linkedin": "https://www.linkedin.com/in/rahul-kumar-singh-161089245/",
+ "mentor 2 github": "https://github.com/RAHUL8687",
+ "mentor 3": "Charvi Wadhwa",
+ "mentor 3 linkedin": "https://www.linkedin.com/in/charvi-wadhwa-23b565291/",
+ "mentor 3 github": "https://github.com/charrviwadhwa",
+ "mentor 4": "Sahaj Dang",
+ "mentor 4 linkedin": "https://in.linkedin.com/in/sahaj-dang-b72507217",
+ "mentor 4 github": "https://github.com/SahajDang",
+ "keyword": "phase1"
+ },
+ {
+ "Project name": "100_DAYS_OF_WEBPROJECTS",
+ "Project description": "100 Days 100 Web Projects is a frontend-focused open-source challenge where I build one project daily using HTML, CSS, and JavaScript. Contributors are welcome to add creative mini-projects, improve existing ones, fix bugs, or enhance UI/UX. A great opportunity to learn, build, and grow together in the open-source community",
+ "Project link": "https://github.com/rutikakengal/100DAYS_OF_100WEBPROJECTS",
+ "Project admin": "Rutika K",
+ "Admin linkedin": "https://www.linkedin.com/in/rutika-kengal-b3b0a22b7?utm_source=share&utm_campaign=share_via&utm_content=profile&utm_medium=android_app",
+ "Admin github": "https://github.com/rutikakengal",
+ "Tech stack": "HTML,CSS and JavaScript",
+ "mentor 1": "Ankush Kapoor",
+ "mentor 1 github": "https://github.com/ankushhKapoor",
+ "mentor 1 linkedin": "https://www.linkedin.com/in/ankushhkapoor",
+ "mentor 2": "Saleha Tabassum",
+ "Mentor 2 linkedin": "https://www.linkedin.com/in/saleha-tabassum-213568268",
+ "mentor 2 github": "https://github.com/SalehaTabassum",
+ "mentor 3": "Sreejani Banik,",
+ "mentor 3 linkedin": "https://www.linkedin.com/in/sreejani-banik-4a2bab281?utm_source=share&utm_campaign=share_via&utm_content=profile&utm_medium=android_app",
+ "mentor 3 github": "https://github.com/SreejaniBanik",
+ "mentor 4": "Priyanshi singh",
+ "mentor 4 linkedin": "https://www.linkedin.com/in/priyanshi-singh-a701a331b?utm_source=share&utm_campaign=share_via&utm_content=profile&utm_medium=android_app",
+ "mentor 4 github": "https://github.com/priyanshi261",
+ "mentor 5": "Ishika Gupta",
+ "mentor 5 linkedin": "https://www.linkedin.com/in/ishika-gupta-78648325b/",
+ "mentor 5 github": "https://github.com/Ishika-Gupta06",
+ "keyword": "phase1"
+ },
+ {
+ "Project name": "Smart Waste Management System",
+ "Project description": "A brief summary of your project idea. Include what problem it solves and how it works.",
+ "Project link": "no",
+ "Project admin": "S MOHAMMED ARIF",
+ "Admin linkedin": "https://www.linkedin.com/in/mohammed-arif-768178283",
+ "Admin github": "https://github.com/MohammedArif9092",
+ "Tech stack": "Python, Django, React, MySQL",
+ "mentor 1": "YASH BISHT",
+ "mentor 1 github": "https://github.com/Yash22bisht",
+ "mentor 1 linkedin": "https://www.linkedin.com/in/yash-bisht-17793624a/",
+ "mentor 2": "Efrata",
+ "Mentor 2 linkedin": "https://www.linkedin.com/in/efrata-aron-b135ab279/",
+ "mentor 2 github": "https://github.com/EfrataAron",
+ "keyword": "phase1"
+ },
+ {
+ "Project name": "TalkHeal",
+ "Project description": "• A compassionate AI-based mental health assistant\n• 24/7 support with smart chat history\n• Mood slider and AI-based coping tips\n• Mental health resources and helplines\n• Location-based center search (Google Maps)\n• Clean 3D-inspired pink/magenta UI and mobile-ready responsive design",
+ "Project link": "https://github.com/eccentriccoder01/TalkHeal",
+ "Project admin": "Sagnik Chakraborty",
+ "Admin linkedin": "https://linkedin.com/in/eccentricexplorer",
+ "Admin github": "https://github.com/eccentriccoder01",
+ "Tech stack": "Python, Streamlit, Gemini API, CSS3",
+ "mentor 1": "Prateek Sharma",
+ "mentor 1 github": "https://github.com/pkbros",
+ "mentor 1 linkedin": "https://www.linkedin.com/in/prateek-sharma-pkbros25",
+ "mentor 2": "Krish Patel",
+ "Mentor 2 linkedin": "https://www.linkedin.com/in/krishpatel1205/",
+ "mentor 2 github": "https://github.com/KrishPatel1205",
+ "keyword": "phase1"
+ },
+ {
+ "Project name": "Travel-Book",
+ "Project description": "The project is about storing the travel story virtually.",
+ "Project link": "https://github.com/Sahilll94/Travel-Book",
+ "Project admin": "SAHIL",
+ "Admin linkedin": "https://www.linkedin.com/in/sahilll94",
+ "Admin github": "https://github.com/Sahilll94",
+ "Tech stack": "MongoDB, Reactjs, Expressjs, Nodejs, AWS.",
+ "mentor 1": "Vishav Mehra",
+ "mentor 1 github": "https://github.com/vishavmehra",
+ "mentor 1 linkedin": "https://www.linkedin.com/in/vishav-mehra-755107208?utm_source=share&utm_campaign=share_via&utm_content=profile&utm_medium=ios_app",
+ "mentor 2": "Aaradhy Raghav Duvey",
+ "Mentor 2 linkedin": "https://www.linkedin.com/in/aaradhy-raghav-duvey-b18b872b7",
+ "mentor 2 github": "https://www.github.com/arduvey29",
+ "mentor 3": "Arvind Singh",
+ "mentor 3 linkedin": "https://www.linkedin.com/in/arvind-singh-92b88928a/",
+ "mentor 3 github": "https://github.com/04arvind",
+ "mentor 4": "Devesh Kumar Patel",
+ "mentor 4 linkedin": "https://www.linkedin.com/in/deveshkumarpatel/",
+ "mentor 4 github": "https://github.com/dev3z",
+ "keyword": "phase1"
+ },
+ {
+ "Project name": "Sneaker Price Prediction using Machine Learning",
+ "Project description": "A Django-based web application that predicts sneaker prices using machine learning. It leverages historical sneaker data, performs preprocessing, model training, and allows users to input features like brand, color, and release year to get an estimated price.",
+ "Project link": "https://github.com/sahithinandikula/Sneaker-price-prediction",
+ "Project admin": "Sahithi Nandikula",
+ "Admin linkedin": "https://www.linkedin.com/in/sahithi-nandikula",
+ "Admin github": "https://github.com/sahithinandikula",
+ "Tech stack": "Python, Django, Scikit-learn, Pandas, Matplotlib, HTML, CSS",
+ "mentor 1": "VISHWAJEET",
+ "mentor 1 github": "https://github.com/wivk-tech",
+ "mentor 1 linkedin": "https://www.linkedin.com/in/wivk-tech/",
+ "mentor 2": "Neha Manoj",
+ "Mentor 2 linkedin": "https://www.linkedin.com/in/neha-manoj-0a966628a/",
+ "mentor 2 github": "https://github.com/nehamanoj1105",
+ "keyword": "phase1"
+ },
+ {
+ "Project name": "GuruShish",
+ "Project description": "Gurushish is a student-teacher interaction platform designed to help learners find the right tuition teachers based on subject and availability. With limited slots per teacher, it ensures focused learning and better engagement.",
+ "Project link": "https://github.com/sailaja-adapa/GuruShish",
+ "Project admin": "Sailaja Adapa",
+ "Admin linkedin": "https://www.linkedin.com/in/sailaja-adapa-770167291",
+ "Admin github": "https://github.com/sailaja-adapa/",
+ "Tech stack": "Next.js, Tailwind CSS, TypeScript, Node.js, Nest js, Express js, Postgre Sql",
+ "mentor 1": "Dipika",
+ "mentor 1 github": "https://github.com/Dipikagithub123",
+ "mentor 1 linkedin": "https://www.linkedin.com/in/dipika-tiwari-469454250/",
+ "mentor 2": "Vaibhav M N",
+ "Mentor 2 linkedin": "https://www.linkedin.com/in/vaibhav-m-n-a6b071282/",
+ "mentor 2 github": "https://github.com/Vaibhav2154",
+ "mentor 3": "Himanshu Kabra",
+ "mentor 3 linkedin": "https://www.linkedin.com/in/himanshu-kabra28/",
+ "mentor 3 github": "https://github.com/HimanshuKabra01",
+ "keyword": "phase1"
+ },
+ {
+ "Project name": "Hospital Management Website",
+ "Project description": "A full-featured hospital management platform where patients can seamlessly book surgeries, schedule doctor appointments, order medicines, upload prescriptions, and book lab test slots online. Built using MongoDB, Express.js, React, and Node.js for a secure, responsive, and user-friendly experience, the system streamlines healthcare services and improves patient engagement through digital convenience.",
+ "Project link": "https://github.com/samarsajad/Hospital_Management_Website",
+ "Project admin": "Samar",
+ "Admin linkedin": "https://www.linkedin.com/in/samar-sajad-70b30b246?utm_source=share&utm_campaign=share_via&utm_content=profile&utm_medium=android_app",
+ "Admin github": "https://github.com/samarsajad",
+ "Tech stack": "React, CSS modules, Node.js, MongoDB",
+ "mentor 1": "Antik Mondal",
+ "mentor 1 github": "https://github.com/ANTIK-007",
+ "mentor 1 linkedin": "https://linkedin.com/in/antik-mondal-825684240",
+ "mentor 2": "Koustav Singh",
+ "Mentor 2 linkedin": "https://www.linkedin.com/in/koustavx08",
+ "mentor 2 github": "https://www.github.com/koustavx08",
+ "keyword": "phase1"
+ },
+ {
+ "Project name": "Brevity",
+ "Project description": "Brevity is an AI-powered news curation app that delivers seamless and concise news built with Flutter, Firebase, and upcoming with Chatbot and nodejs backend support. It aims to simplify how users consume news—through clean UI, fast performance, and future-ready AI features like summarization and myth-busting chatbot.",
+ "Project link": "https://github.com/Yash159357/BREVITY",
+ "Project admin": "Samarth Sharma",
+ "Admin linkedin": "https://www.linkedin.com/in/saysamarth/",
+ "Admin github": "https://github.com/saysamarth",
+ "Tech stack": "Flutter, Dart, Firebase, Node.js, express.js, MongoDB, REST API and Shared Preferences.",
+ "mentor 1": "Sutapa",
+ "mentor 1 github": "https://github.com/suto6",
+ "mentor 1 linkedin": "https://www.linkedin.com/in/sutapa0/",
+ "mentor 2": "Vanshika",
+ "Mentor 2 linkedin": "http://www.linkedin.com/in/biradar-vanshika-8a153129a",
+ "mentor 2 github": "https://github.com/Biradarvanshika",
+ "mentor 3": "Piyush Sharma",
+ "mentor 3 linkedin": "http://www.linkedin.com/in/piyush-ugi/",
+ "mentor 3 github": "https://github.com/daksh-ugi",
+ "keyword": "phase1"
+ },
+ {
+ "Project name": "Winix",
+ "Project description": "Winix is a cross-platform command-line application designed to bridge the gap between Unix/Linux and Windows environments. Built with Rust for optimal performance and reliability, it provides native implementations of essential Unix commands that Windows users frequently need.",
+ "Project link": "https://github.com/0xsambit/winix",
+ "Project admin": "Sambit Singha",
+ "Admin linkedin": "https://www.linkedin.com/in/sambit-singha?utm_source=share&utm_campaign=share_via&utm_content=profile&utm_medium=android_app",
+ "Admin github": "https://github.com/0xsambit",
+ "Tech stack": "Rust",
+ "mentor 1": "Yash Vikram",
+ "mentor 1 github": "https://github.com/yashvikram30",
+ "mentor 1 linkedin": "https://www.linkedin.com/in/yashvikram30?utm_source=share&utm_campaign=share_via&utm_content=profile&utm_medium=android_app",
+ "mentor 2": "Nandini Pandey",
+ "Mentor 2 linkedin": "https://linkedin.com/in/nytrixis",
+ "mentor 2 github": "https://www.linkedin.com/in/nytrixis",
+ "mentor 3": "Vaibhav",
+ "mentor 3 linkedin": "https://linkedin.com/in/v8v88v8v88",
+ "mentor 3 github": "https://www.github.com/v8v88v8v88",
+ "keyword": "phase1"
+ },
+ {
+ "Project name": "RigCraft",
+ "Project description": "Build your dream gaming PC with our interactive component selector. Choose compatible parts, optimize your budget, and craft the perfect rig.",
+ "Project link": "https://github.com/SamXop123/RigCrafter",
+ "Project admin": "Sameer Prajapati",
+ "Admin linkedin": "https://www.linkedin.com/in/sameer-prajapati-vit",
+ "Admin github": "https://github.com/SamXop123",
+ "Tech stack": "Typescript, HTML, CSS, Javascript, Express.js, Node.js, React, Etc",
+ "mentor 1": "MOHD AFTAAB",
+ "mentor 1 github": "https://github.com/MoAftaab/",
+ "mentor 1 linkedin": "https://www.linkedin.com/in/mohammad-aftaab-b49a5624a?utm_source=share&utm_campaign=share_via&utm_content=profile&utm_medium=android_app",
+ "mentor 2": "Nandini Pandey",
+ "Mentor 2 linkedin": "https://linkedin.com/in/nytrixis",
+ "mentor 2 github": "https://github.com/nytrixis",
+ "mentor 3": "Abhishek Sharma",
+ "mentor 3 linkedin": "https://www.linkedin.com/in/abhishek-sharma-069-i/",
+ "mentor 3 github": "https://github.com/Abhishek-Sharma-069",
+ "keyword": "phase1"
+ },
+ {
+ "Project name": "DeshDarshan",
+ "Project description": "DeshDarshan is a cultural web experience that captures the spirit of India through its diverse regions. It brings together the richness of tradition, heritage, and identity in a visually immersive format. With a balance of modern design and traditional essence, the platform reflects the soul of the nation. DeshDarshan isn’t just a digital space—it’s a tribute to India’s timeless beauty and diversity, told through thoughtful visuals and storytelling. It invites users to connect emotionally with the roots of India.",
+ "Project link": "https://github.com/sampadatiwari30/DeshDarshan",
+ "Project admin": "sampada tiwari",
+ "Admin linkedin": "https://www.linkedin.com/in/sampada-tiwari-217123257",
+ "Admin github": "https://github.com/Sampadatiwari30",
+ "Tech stack": "HTMl5, CSS3, javascript bootstrap",
+ "mentor 2": "Sakshi Navnath Mane",
+ "Mentor 2 linkedin": "https://www.linkedin.com/in/sakshi-mane1210",
+ "mentor 2 github": "https://github.com/manesakshi1210",
+ "mentor 3": "Gaincy Sharma",
+ "mentor 3 linkedin": "https://www.linkedin.com/in/gaincy-sharma-33b38132a",
+ "mentor 3 github": "https://github.com/gaincyst",
+ "mentor 4": "Manya",
+ "mentor 4 linkedin": "https://www.linkedin.com/in/manya35/",
+ "mentor 4 github": "https://github.com/Manya35",
+ "mentor 5": "Rahul singh",
+ "mentor 5 linkedin": "https://www.linkedin.com/in/rahul-kumar-singh-161089245/",
+ "mentor 5 github": "https://github.com/RAHUL8687",
+ "keyword": "phase1"
+ },
+ {
+ "Project name": "TechHub",
+ "Project description": "This project is a web-based platform designed for managing student tech clubs efficiently. It includes modules for event scheduling, team management, project tracking, and resource sharing. It aims to simplify the operations of tech clubs like Robonixx by providing an organized dashboard and easy collaboration tools.",
+ "Project link": "https://github.com/sania28/clubmate",
+ "Project admin": "Sania Mujtaba",
+ "Admin linkedin": "https://www.linkedin.com/in/sania-mujtaba-12a79925b?utm_source=share&utm_campaign=share_via&utm_content=profile&utm_medium=android_app",
+ "Admin github": "https://github.com/sania28",
+ "Tech stack": "HTML, CSS, JavaScript, React, Node.js, Python.",
+ "mentor 1": "Vrushali Nandurkar",
+ "mentor 1 github": "https://github.com/vruv",
+ "mentor 1 linkedin": "https://www.linkedin.com/in/vrushali-nandurkar-54337324a",
+ "mentor 2": "siva krishnan",
+ "Mentor 2 linkedin": "https://www.linkedin.com/in/siva-durshika-g-86141030a",
+ "mentor 2 github": "https://github.com/SivaDurshika-G",
+ "mentor 3": "Srivishnu",
+ "mentor 3 linkedin": "http://www.linkedin.com/in/srivishnu-t",
+ "mentor 3 github": "https://github.com/srivishnu2805",
+ "mentor 4": "Aaradhy Raghav Duvey",
+ "mentor 4 linkedin": "https://www.linkedin.com/in/aaradhy-raghav-duvey-b18b872b7",
+ "mentor 4 github": "https://www.github.com/arduvey29",
+ "keyword": "phase1"
+ },
+ {
+ "Project name": "recode-website",
+ "Project description": "community blog website",
+ "Project link": "https://github.com/recodehive/recode-website",
+ "Project admin": "Sanjay",
+ "Admin linkedin": "https://www.linkedin.com/in/sanjay-k-v/",
+ "Admin github": "https://github.com/sanjay-kv",
+ "Tech stack": "nextjs, js, css,html, sql",
+ "mentor 1": "Aaradhy Raghav Duvey",
+ "mentor 1 github": "https://www.github.com/arduvey29",
+ "mentor 1 linkedin": "https://www.linkedin.com/in/aaradhy-raghav-duvey-b18b872b7",
+ "mentor 2": "Meet Oza",
+ "Mentor 2 linkedin": "https://linkedin.com/in/meetoza30",
+ "mentor 2 github": "https://github.com/meetoza30",
+ "keyword": "phase1"
+ },
+ {
+ "Project name": "Hotel Table Reservation System",
+ "Project description": "A Python-Tkinter based hotel table reservation system that enables users to book, cancel and manage dining reservations with real-time updates and notifications. The system offers a user-friendly GUI built with Tkinter, providing real-time table availability tracking to enhance the reservation experience. It includes sign-up and login functionality for secure access, as well as features for creating, cancelling, and confirming reservations. Email notifications are sent to both clients and hotel administrators to keep them informed. Additionally, the system incorporates data validation and error handling to ensure reliable operation, along with an admin dashboard that allows administrators to view and manage all reservations efficiently.",
+ "Project link": "https://github.com/santhoshkumar1204/hotel-table-reservation-system.git",
+ "Project admin": "Santhoshkumar R",
+ "Admin linkedin": "https://www.linkedin.com/in/santhoshkumar-ravichandran-27b727305",
+ "Admin github": "https://github.com/santhoshkumar1204",
+ "Tech stack": "Python ( Data structures - Hash table, Priority Queue, Linkedlist), Tkinter ( Frontend), Figma- UI/ UX, Agile Methodology - JIRA",
+ "mentor 1": "Anshika Sharma",
+ "mentor 1 github": "https://github.com/Anshika17S",
+ "mentor 1 linkedin": "https://www.linkedin.com/in/anshika-sharma-135a47316?utm_source=share&utm_campaign=share_via&utm_content=profile&utm_medium=android_app",
+ "mentor 2": "Nikhil saxena",
+ "Mentor 2 linkedin": "https://www.linkedin.com/in/nitin-saxena-78a976294?utm_source=share&utm_campaign=share_via&utm_content=profile&utm_medium=android_app",
+ "mentor 2 github": "https://github.com/Nitin10cd",
+ "mentor 3": "Nitin",
+ "mentor 3 linkedin": "https://www.linkedin.com/in/nitin-saxena-78a976294?utm_source=share&utm_campaign=share_via&utm_content=profile&utm_medium=android_app",
+ "mentor 3 github": "https://github.com/Nitin10cd",
+ "mentor 4": "Rajdeep",
+ "mentor 4 linkedin": "https://www.linkedin.com/in/rajdeepmohanty/",
+ "mentor 4 github": "https://github.com/rajdeep5901",
+ "keyword": "phase1"
+ },
+ {
+ "Project name": "Hackgrid",
+ "Project description": "An advanced and customizable Learning Management System (LMS) built using modern web technologies. This platform includes key features for students, teachers, and course creators, supporting course browsing, creation, management, and secure payment processing.",
+ "Project link": "https://github.com/Sarthak027/Hackgrid",
+ "Project admin": "Sarthak Prasad Parida",
+ "Admin linkedin": "https://www.linkedin.com/in/sarthak-prasad-parida",
+ "Admin github": "https://github.com/Sarthak027",
+ "Tech stack": "Frontend: React, Next.js 13 (App Router)\nBackend: Next.js API Routes\nORM: Prisma\nDatabase: Xata (PostgreSQL)\nPayment: Razorpay\nFile Uploads: UploadThing & Mux\nAuthentication: Clerk\nStyling: Tailwind CSS",
+ "mentor 1": "Dipika",
+ "mentor 1 github": "https://github.com/Dipikagithub123",
+ "mentor 1 linkedin": "https://www.linkedin.com/in/dipika-tiwari-469454250/",
+ "mentor 2": "Mehuli Biswas",
+ "Mentor 2 linkedin": "https://www.linkedin.com/in/mehuli-biswas-817246334/",
+ "mentor 2 github": "https://github.com/Sanchita76",
+ "keyword": "phase1"
+ },
+ {
+ "Project name": "Wisdom-Weaver",
+ "Project description": "Develop an AI-driven, multi-modal mental health support system that integrates NLP, emotion recognition, and reinforcement learning to provide real-time, adaptive mental health assistance using Spiritual Book *Bhagwat Geeta*",
+ "Project link": "https://github.com/satvik091/WisdomWeaver",
+ "Project admin": "Satvik gupta",
+ "Admin linkedin": "https://www.linkedin.com/in/satvik-gupta-091a37229?utm_source=share&utm_campaign=share_via&utm_content=profile&utm_medium=android_app",
+ "Admin github": "https://github.com/satvik091",
+ "Tech stack": "python, Streamlit",
+ "mentor 1": "Harmanpreet",
+ "mentor 1 github": "https://github.com/Harman-2",
+ "mentor 1 linkedin": "http://www.linkedin.com/in/harmanpreet-kaur-2341731b2",
+ "mentor 2": "Nishtha Gupta",
+ "Mentor 2 linkedin": "https://www.linkedin.com/in/nishtha-gupta-a6a117209",
+ "mentor 2 github": "https://github.com/Nishtha453",
+ "mentor 3": "Vishwajeet",
+ "mentor 3 linkedin": "https://www.linkedin.com/in/wivk-tech/",
+ "mentor 3 github": "https://github.com/wivk-tech",
+ "keyword": "phase1"
+ },
+ {
+ "Project name": "TextEditingApp",
+ "Project description": "This is a basic text editing app made for fun, any contributions are welcome, Let's make a fun app with a lot more cool features.",
+ "Project link": "https://github.com/may-tas/TextEditingApp",
+ "Project admin": "Satyam Jha",
+ "Admin linkedin": "https://www.linkedin.com/in/satyam-jha-7746201a4?utm_source=share&utm_campaign=share_via&utm_content=profile&utm_medium=android_app",
+ "Admin github": "https://github.com/may-tas",
+ "Tech stack": "Flutter, Dart, Cubit",
+ "mentor 1": "Sarthak Patil",
+ "mentor 1 github": "https://github.com/sarthaksahu03",
+ "mentor 1 linkedin": "https://www.linkedin.com/in/sarthaknpatil",
+ "keyword": "phase1"
+ },
+ {
+ "Project name": "DSAMate",
+ "Project description": "DSAMate is a platform that helps students practice in a structured way to clear OA, stay consistent and practice regularly.",
+ "Project link": "https://github.com/saumyayadav25/cpp-dsa-sheet-testing",
+ "Project admin": "Saumya Yadav",
+ "Admin linkedin": "https://www.linkedin.com/in/saumya-yadav-",
+ "Admin github": "https://github.com/saumyayadav25",
+ "Tech stack": "Next.js, Tailwind CSS, Framer Motion, Backend",
+ "mentor 1": "Sumit Sagar",
+ "mentor 1 github": "https://github.com/mostpalon3",
+ "mentor 1 linkedin": "https://www.linkedin.com/in/sumit-sagar-8a8b39286/",
+ "mentor 2": "Yash vishnoi",
+ "Mentor 2 linkedin": "https://www.linkedin.com/in/yash-vishnoi-22456a291/",
+ "mentor 2 github": "https://github.com/yashjscoder",
+ "mentor 3": "Aaradhy Raghav Duvey",
+ "mentor 3 linkedin": "https://github.com/arduvey29",
+ "mentor 3 github": "https://www.linkedin.com/in/aaradhy-raghav-duvey-b18b872b7?utm_source=share&utm_campaign=share_via&utm_content=profile&utm_medium=android_app",
+ "keyword": "phase1"
+ },
+ {
+ "Project name": "WallGodds App",
+ "Project description": "WallGodds is reimagined for mobile — fast, clean, and loaded with stunning high-res wallpapers for every screen. It’s more than an app — it’s your personal visual canvas, made for those who style their screen with every swipe.",
+ "Project link": "https://github.com/sayan0328/WallGodds-App",
+ "Project admin": "Sayan Basak",
+ "Admin linkedin": "https://www.linkedin.com/in/sayan-basak003/",
+ "Admin github": "https://github.com/sayan0328",
+ "Tech stack": "Frontend: Kotlin with Compose, Backend: Kotlin, Firebase, Database: Firebase RealTime DB",
+ "mentor 1": "Soumik Ghosh",
+ "mentor 1 github": "https://github.com/SoumikGhosh9",
+ "mentor 1 linkedin": "https://www.linkedin.com/in/soumik-ghosh-556651258",
+ "mentor 2": "Shankhadeep Paria",
+ "Mentor 2 linkedin": "https://github.com/Shankha2003",
+ "mentor 2 github": "https://www.linkedin.com/in/shankhadeepparia/",
+ "keyword": "phase1"
+ },
+ {
+ "Project name": "Quizz project",
+ "Project description": "Its a small project which i have made in this procet titel is quizz game wherw you have total five qustion each qusyion have 4 option whre one is correct thia quezz is realted to novel bolks and the book name and whos the correct author or writer whe have sletec",
+ "Project link": "https://github.com/sshakti971/NODE-JS",
+ "Project admin": "Shakti sharma",
+ "Admin linkedin": "https://www.linkedin.com/in/shaktisharmajava21",
+ "Admin github": "https://github.com/sshakti971",
+ "Tech stack": "front end devloper",
+ "mentor 1": "Shayan Ghosh",
+ "mentor 1 github": "https://github.com/Shayanghosh03",
+ "mentor 1 linkedin": "https://www.linkedin.com/in/shayan-ghosh-0834b3271?utm_source=share&utm_campaign=share_via&utm_content=profile&utm_medium=android_app",
+ "mentor 2": "Tanziha Sheikh",
+ "Mentor 2 linkedin": "https://www.linkedin.com/in/s-a32b802",
+ "mentor 2 github": "https://github.com/Tanziha-Sheikh",
+ "keyword": "phase1"
+ },
+ {
+ "Project name": "scr-game",
+ "Project description": "SCR gaming is a visually captivating website featuring amazing UI interactions.",
+ "Project link": "https://github.com/SCR01/scr-game",
+ "Project admin": "SHARAD CHANDRA REDDY",
+ "Admin linkedin": "https://www.linkedin.com/in/sharad-chandra-reddy-b0737a231/",
+ "Admin github": "https://github.com/SCR01",
+ "Tech stack": "React.js, Gsap, Tailwind",
+ "mentor 1": "Mohit jadaun",
+ "mentor 1 github": "https://github.com/Mohitjadaun2026",
+ "mentor 1 linkedin": "https://www.linkedin.com/in/mohit-jadaun/",
+ "keyword": "phase1"
+ },
+ {
+ "Project name": "Music Recommendation Using Facial Expressions",
+ "Project description": "This Python-based application uses computer vision and deep learning (TensorFlow/Keras) to detect real-time facial expressions via webcam. Based on the detected emotion, it automatically recommends and opens suitable music on YouTube. It integrates AI, sentiment analysis, and web browser automation to deliver an emotionally responsive user experience.",
+ "Project link": "https://github.com/SGCODEX/Music-Recommendation-Using-Facial-Expressions",
+ "Project admin": "Shivam Gupta",
+ "Admin linkedin": "https://www.linkedin.com/in/shivam-gupta-055921248/",
+ "Admin github": "https://github.com/SGCODEX",
+ "Tech stack": "Python, OpenCV, TensorFlow, Keras, Webbrowser, Requests, YOLO, Sentiment Analysis, Computer Vision",
+ "mentor 1": "Akshat Saxena",
+ "mentor 1 github": "https://github.com/akshat-2600",
+ "mentor 1 linkedin": "https://www.linkedin.com/in/akshat-saxena-44413b31b?utm_source=share&utm_campaign=share_via&utm_content=profile&utm_medium=android_app",
+ "keyword": "phase1"
+ },
+ {
+ "Project name": "Paytm app",
+ "Project description": "Its a full stack project in which users can can send/recieve money to/from others users.",
+ "Project link": "https://github.com/shivam74/payment-app",
+ "Project admin": "Shivam Raghuwanshi",
+ "Admin linkedin": "https://www.linkedin.com/in/shivam-raghuwanshi-8a1639242?utm_source=share&utm_campaign=share_via&utm_content=profile&utm_medium=android_app",
+ "Admin github": "https://www.linkedin.com/in/shivam-raghuwanshi-8a1639242?utm_source=share&utm_campaign=share_via&utm_content=profile&utm_medium=android_app",
+ "Tech stack": "MERN stack , zod for input validation,JWT tokens for authorisation",
+ "mentor 1": "Sahil",
+ "mentor 1 github": "http://github.com/sahil-luthra-000",
+ "mentor 1 linkedin": "http://www.linkedin.com/in/sahil-luthra09",
+ "mentor 2": "Vedansh Jain",
+ "Mentor 2 linkedin": "https://www.linkedin.com/in/vedanshcode?utm_source=share&utm_campaign=share_via&utm_content=profile&utm_medium=android_app",
+ "mentor 2 github": "https://github.com/vedanshjainvj",
+ "keyword": "phase1"
+ },
+ {
+ "Project name": "Gitnet",
+ "Project description": "GitNet is a privacy-first, GitHub-authenticated chat app that lets developers connect instantly—no personal info, just your username. AI repo insights & workspaces coming soon.",
+ "Project link": "https://github.com/git-net-org/gitnet",
+ "Project admin": "shreya",
+ "Admin linkedin": "www.linkedin.com/in/shreya-shaw",
+ "Admin github": "https://github.com/cloud-merge",
+ "Tech stack": "Nextjs, Expressjs, Socketio,Prisma",
+ "mentor 1": "Yash Kumar Saini",
+ "mentor 1 github": "https://github.com/yashksaini-coder",
+ "mentor 1 linkedin": "https://www.linkedin.com/in/yashksaini/",
+ "mentor 2": "Nandini Pandey",
+ "Mentor 2 linkedin": "https://linkedin.com/in/nytrixis",
+ "mentor 2 github": "https://github.com/nytrixis",
+ "keyword": "phase1"
+ },
+ {
+ "Project name": "MediGuide",
+ "Project description": "Personalized Medicine Recommendation System",
+ "Project link": "https://github.com/ShrutiparnaRoy/Medicine_Recommendation/blob/main/README.md",
+ "Project admin": "Shrutiparna Roy",
+ "Admin linkedin": "https://www.linkedin.com/in/shrutiparna-roy-a70b9728a?utm_source=share&utm_campaign=share_via&utm_content=profile&utm_medium=android_app",
+ "Admin github": "https://github.com/ShrutiparnaRoy",
+ "Tech stack": "Google Colab,Python",
+ "mentor 1": "SRINADH TADIKONDA",
+ "mentor 1 github": "http://github.com/srinadhtadikonda",
+ "mentor 1 linkedin": "http://linkedin.com/srinadhtadikonda",
+ "mentor 2": "Kosaraju joshitha",
+ "Mentor 2 linkedin": "https://www.linkedin.com/in/joshitha-kosaraju?utm_source=share&utm_campaign=share_via&utm_content=profile&utm_medium=android_app",
+ "mentor 2 github": "https://github.com/joshitha5g4",
+ "mentor 3": "Rehan",
+ "mentor 3 linkedin": "https://www.linkedin.com/in/maha-rehan-99bb68200/",
+ "mentor 3 github": "http://github.com/MahaR54",
+ "mentor 4": "Rajdeep Mohanty",
+ "mentor 4 linkedin": "https://www.linkedin.com/in/rajdeepmohanty/",
+ "mentor 4 github": "https://github.com/rajdeep5901",
+ "keyword": "phase1"
+ },
+ {
+ "Project name": "CodeStreak",
+ "Project description": "CodeStreak is a productivity and motivation tool designed for coders who want to keep up with the daily problem solving or project goals Whether you are preaparing for coding interviews buding person projects or improving your skills oneineat a time Codestte allows you to stay on track and maintain your momentum.",
+ "Project link": "https://github.com/karmveershubham/CodeStreak",
+ "Project admin": "Shubham Karmveer",
+ "Admin linkedin": "https://www.linkedin.com/in/shubham-karmveer",
+ "Admin github": "https://github.com/karmveershubham",
+ "Tech stack": "Next JS, Appwrite, Typescript, Tawind CSS",
+ "mentor 1": "Uma Mahesh",
+ "mentor 1 github": "https://github.com/nagaumamahesh",
+ "mentor 1 linkedin": "https://www.linkedin.com/in/naga-uma-mahesh-nandi-1b4a83360?utm_source=share&utm_campaign=share_via&utm_content=profile&utm_medium=android_app",
+ "mentor 2": "Hussnain Ahmad",
+ "Mentor 2 linkedin": "https://linkedin.com/in/Hussnain-Ahmad/",
+ "mentor 2 github": "https://github.com/itspsychocoder/",
+ "keyword": "phase1"
+ },
+ {
+ "Project name": "bodhika",
+ "Project description": "Bodhika is a web platform designed to empower students & job seekers with a centralized hub for curated resource for career preparation.",
+ "Project link": "https://github.com/singodiyashubham87/bodhika",
+ "Project admin": "Shubham Singodiya",
+ "Admin linkedin": "https://www.linkedin.com/in/singodiyashubham87",
+ "Admin github": "https://www.github.com/singodiyashubham87",
+ "Tech stack": "NextJS, TailwindCSS, MongoDP, Auth0",
+ "mentor 1": "Uma Mahesh",
+ "mentor 1 github": "https://github.com/nagaumamahesh",
+ "mentor 1 linkedin": "https://www.linkedin.com/in/naga-uma-mahesh-nandi-1b4a83360?utm_source=share&utm_campaign=share_via&utm_content=profile&utm_medium=android_app",
+ "mentor 2": "Kathula Sri Raghavi",
+ "Mentor 2 linkedin": "https://www.linkedin.com/in/ksriraghavi/",
+ "mentor 2 github": "https://github.com/sriraghavi22",
+ "keyword": "phase1"
+ },
+ {
+ "Project name": "ClassMgmtSys",
+ "Project description": "Class Management System is a comprehensive MERN stack web application designed to streamline classroom operations and enhance communication between students, class representatives (CRs), class Advisors (CAs). Built with a decoupled architecture using Node.js/Express.js backend and React.js frontend, the system features Firebase authentication integrated with MongoDB for user management, providing role-based access control for different user types. The platform offers a centralized noticeboard for announcements, student roster management, subject-wise material uploads via Cloudinary integration, and planned features including voting systems, attendance tracking, push notifications, exam schedules, and event management. With Material-UI for consistent design, Tailwind CSS for styling, and Progressive Web App (PWA) capabilities for offline functionality, the system ensures a responsive, scalable, and user-friendly experience while maintaining security through Firebase token verification and data filtering via DTOs, making it an ideal solution for educational institutions seeking to digitize and organize their classroom management processes.",
+ "Project link": "https://github.com/ShudarsanRegmi/ClassMgmtSysOS-",
+ "Project admin": "Shudarsan Regmi",
+ "Admin linkedin": "https://www.linkedin.com/in/shudarsanregmi/",
+ "Admin github": "https://github.com/ShudarsanRegmi/",
+ "Tech stack": "React, Node, Express, MongoDB, Firebase, Material-UI, Tailwind CSS, Cloudinary, Vite, Axios",
+ "mentor 1": "Unnati Pandit",
+ "mentor 1 github": "https://www.github.com/Unnati-coder25",
+ "mentor 1 linkedin": "https://www.linkedin.com/in/unnati-pandit-b83a68285",
+ "mentor 3": "Anushka Kohli",
+ "mentor 3 linkedin": "https://www.linkedin.com/in/anushka-kohli-9410771b8/",
+ "mentor 3 github": "https://github.com/AnushkaKohli",
+ "keyword": "phase1"
+ },
+ {
+ "Project name": "Security Screening System",
+ "Project description": "A real-time security screening system, using face recognition with OpenCV. The system aims to scan individuals via a webcam at check-points (e.g., hotels, airports). If a person’s face matches an entry in the system’s dataset of known threats, runaway criminals or wanted individuals, the system triggers a threat alarm and sends an email alert to authorities immediately. Otherwise, a safe alarm is triggered, allowing them to proceed. The project aims to reduce manual intervention and automate security surveillance systems by enabling quick identification of flagged individuals.",
+ "Project link": "https://github.com/SomdattaNag/Security-Screening-System",
+ "Project admin": "Somdatta Nag",
+ "Admin linkedin": "https://www.linkedin.com/in/somdatta-nag-523362260/",
+ "Admin github": "https://github.com/SomdattaNag",
+ "Tech stack": "Python, OpenCV, Face Recognition, SMTPLib, Winsound.",
+ "mentor 1": "Mah Noor Fatima",
+ "mentor 1 github": "https://github.com/theefatymah",
+ "mentor 1 linkedin": "https://www.linkedin.com/in/theefatymah",
+ "mentor 2": "Dhruva kumar",
+ "Mentor 2 linkedin": "https://www.linkedin.com/in/dhruvakkaushal/",
+ "mentor 2 github": "https://github.com/dhruvak001",
+ "mentor 3": "Aditi Godse",
+ "mentor 3 linkedin": "https://www.linkedin.com/in/aditi-godse30?utm_source=share&utm_campaign=share_via&utm_content=profile&utm_medium=android_app",
+ "mentor 3 github": "https://github.com/aditigodse10",
+ "keyword": "phase1"
+ },
+ {
+ "Project name": "faculty publication management",
+ "Project description": "faculty publication management",
+ "Project link": "https://github.com/SOURAVtec/Facility-publication-management-",
+ "Project admin": "Sonali subhadarsini nath",
+ "Admin linkedin": "https://www.linkedin.com/in/sonali-nath-859a362a4",
+ "Admin github": "https://github.com/Sonali-nath52",
+ "Tech stack": "html ,css ,js",
+ "mentor 1": "Shubrali jain",
+ "mentor 1 github": "https://github.com/code-well0",
+ "mentor 1 linkedin": "https://www.linkedin.com/in/shubrali-jain",
+ "mentor 2": "Rahul Kumar Singh",
+ "Mentor 2 linkedin": "https://www.linkedin.com/in/rahul-kumar-singh-161089245/",
+ "mentor 2 github": "https://github.com/RAHUL8687",
+ "mentor 3": "Aditi Godse",
+ "mentor 3 linkedin": "https://www.linkedin.com/in/aditi-godse30?utm_source=share&utm_campaign=share_via&utm_content=profile&utm_medium=android_app",
+ "mentor 3 github": "https://github.com/aditigodse10",
+ "mentor 4": "Priyanshi Singh",
+ "mentor 4 linkedin": "https://www.linkedin.com/in/priyanshi-singh-a701a331b?utm_source=share&utm_campaign=share_via&utm_content=profile&utm_medium=android_app",
+ "mentor 4 github": "https://github.com/priyanshi261",
+ "mentor 5": "Kiruthiga C M",
+ "mentor 5 linkedin": "https://www.linkedin.com/in/kiruthiga-c-m-b34aa9328?utm_source=share&utm_campaign=share_via&utm_content=profile&utm_medium=android_app",
+ "mentor 5 github": "https://github.com/kiruthigacm",
+ "keyword": "phase1"
+ },
+ {
+ "Project name": "ResqFood",
+ "Project description": "ResQFood is a platform dedicated to the noble cause of reducing food wastage by facilitating the redistribution of surplus food during late-night hours before restaurant closures.",
+ "Project link": "https://github.com/sourabhkumar47/ResQFood",
+ "Project admin": "Sourabh Kumar",
+ "Admin linkedin": "https://www.linkedin.com/in/sourabhkumar47?utm_source=share&utm_campaign=share_via&utm_content=profile&utm_medium=android_app",
+ "Admin github": "https://github.com/sourabhkumar47",
+ "Tech stack": "Android, Kotlin, Jetpack compose",
+ "mentor 1": "Sutapa Biswas",
+ "mentor 1 github": "https://github.com/suto6",
+ "mentor 1 linkedin": "https://www.linkedin.com/in/sutapa0/",
+ "keyword": "phase1"
+ },
+ {
+ "Project name": "LearnHub",
+ "Project description": "Master Technology Skills",
+ "Project link": "https://github.com/souvikpramanikgit/LearnHub",
+ "Project admin": "Souvik Kumar Pramanik",
+ "Admin linkedin": "https://www.linkedin.com/in/souvik-kr/",
+ "Admin github": "https://github.com/souvikpramanikgit",
+ "Tech stack": "React js, TypeScript, JavaScript, Html, Css",
+ "mentor 1": "Rohit Suhas Kumawat",
+ "mentor 1 github": "https://github.com/ROKUMATe",
+ "mentor 1 linkedin": "https://www.linkedin.com/in/rohit-kumawat-254928289/",
+ "mentor 2": "Tanziha Sheikh",
+ "Mentor 2 linkedin": "https://www.linkedin.com/in/s-a32b802",
+ "mentor 2 github": "https://github.com/Tanziha-Sheikh",
+ "keyword": "phase1"
+ },
+ {
+ "Project name": "next-payroll",
+ "Project description": "Multi-Terant Payroll & Tax compliance system automates tax filings",
+ "Project link": "https://github.com/sristy17/next-payroll",
+ "Project admin": "Sristy paul",
+ "Admin linkedin": "https://www.linkedin.com/in/sristy-paul",
+ "Admin github": "https://www.github.com/sristy17",
+ "Tech stack": "nextjs, TypeScript, JavaScript, Tailwind Css, nodejs, supabase, frontend, backend, development, full stack",
+ "mentor 1": "Yash Vishnoi",
+ "mentor 1 github": "https://github.com/yashjscoder",
+ "mentor 1 linkedin": "https://www.linkedin.com/in/yash-vishnoi-22456a291?utm_source=share&utm_campaign=share_via&utm_content=profile&utm_medium=android_app",
+ "mentor 2": "Pooranjoy",
+ "Mentor 2 linkedin": "https://linkedin.com/in/pooranjoyb",
+ "mentor 2 github": "https://github.com/pooranjoyb",
+ "mentor 3": "Saksham Kapoor",
+ "mentor 3 linkedin": "Saksham Kapoor",
+ "mentor 3 github": "Saksham Kapoor",
+ "mentor 4": "Anushka Kohli",
+ "mentor 4 linkedin": "https://www.linkedin.com/in/anushka-kohli-9410771b8/",
+ "mentor 4 github": "https://github.com/AnushkaKohli",
+ "keyword": "phase1"
+ },
+ {
+ "Project name": "PrepBuddy",
+ "Project description": "PrepBuddy is a student-focused platform where users can practice aptitude tests based on real company patterns, track their progress, upload profile pictures, earn badges, and compete on a global leaderboard.",
+ "Project link": "https://github.com/SurajSG23/PrepBuddy",
+ "Project admin": "Suraj S G Dhanva",
+ "Admin linkedin": "https://www.linkedin.com/in/suraj-s-g-dhanva-995a23298/",
+ "Admin github": "https://github.com/SurajSG23",
+ "Tech stack": "Frontend:\nReact + Vite (TypeScript)\nTailwind CSS\nShadCN/UI & Lucide Icons\nAxios.\nBackend\nNode.js + Express.js\nMongoDB + Mongoose\nFirebase Auth\nCloudinary + Multer",
+ "mentor 1": "Anshika Sansanwal",
+ "mentor 1 github": "https://github.com/anshikasansanwal",
+ "mentor 1 linkedin": "https://www.linkedin.com/in/anshikasansanwal?utm_source=share&utm_campaign=share_via&utm_content=profile&utm_medium=android_app",
+ "mentor 2": "daskahata mishra",
+ "Mentor 2 linkedin": "https://www.linkedin.com/in/daky2024/",
+ "mentor 3": "Naveed Azhar",
+ "mentor 3 linkedin": "https://www.linkedin.com/in/imrofayel/",
+ "mentor 3 github": "https://github.com/imrofayel",
+ "mentor 4": "Vishvarajsinh Zala",
+ "mentor 4 linkedin": "https://www.linkedin.com/in/vishvarajsinh-zala-1299a7317",
+ "mentor 4 github": "https://github.com/Zala0007",
+ "mentor 5": "Mehuli Biswas",
+ "mentor 5 linkedin": "https://www.linkedin.com/in/mehuli-biswas-817246334/",
+ "mentor 5 github": "https://github.com/Sanchita76",
+ "keyword": "phase1"
+ },
+ {
+ "Project name": "Bit By Query",
+ "Project description": "Bit By Query is a web-based platform where users can compete in SQL competitions",
+ "Project link": "https://github.com/swarooppatilx/bit-by-query",
+ "Project admin": "Swaroop Patil",
+ "Admin linkedin": "https://www.linkedin.com/in/swarooppatilx",
+ "Admin github": "https://github.com/swarooppatilx",
+ "Tech stack": "ReactJS, Express, MySQL, SQLite3",
+ "mentor 1": "Divyanshi Kulshrestha",
+ "mentor 1 github": "https://github.com/divyanshii10",
+ "mentor 1 linkedin": "https://www.linkedin.com/in/divyanshi-kulshrestha-5ba319295/",
+ "mentor 2": "Gopichand",
+ "Mentor 2 linkedin": "https://www.linkedin.com/in/gopichand-dandimeni-269709287/",
+ "mentor 2 github": "https://github.com/Gooichand",
+ "mentor 3": "Dharavath Renu",
+ "mentor 3 linkedin": "https://www.linkedin.com/in/drenu11/",
+ "mentor 3 github": "https://github.com/drenu04",
+ "keyword": "phase1"
+ },
+ {
+ "Project name": "Syed Imtiyaz Ali",
+ "Project description": "Swapify is a secure, add-free, and community-driven platform designed to revolutionize how Indians buy and sell pre-owned products.",
+ "Project link": "https://github.com/SyedImtiyaz-1/Swapify",
+ "Project admin": "Syed Imtiyaz Ali",
+ "Admin linkedin": "https://linkedin.com/in/imtiyaz-sde",
+ "Admin github": "https://github.com/SyedImtiyaz-1",
+ "Tech stack": "Next.js, React.js, React-Native, TailwindCSS, Google Maps, OpenStreetMap, Node.js, Express.js, MongoDB",
+ "mentor 1": "ADITYA KALBURGI",
+ "mentor 1 github": "https://github.com/adityakalburgi",
+ "mentor 1 linkedin": "http://www.linkedin.com/in/adityakalburgi",
+ "mentor 2": "Pushkar jain",
+ "Mentor 2 linkedin": "https://www.linkedin.com/in/pushkar-jain-06a461231/",
+ "mentor 2 github": "https://github.com/pushh-k",
+ "mentor 3": "Kathula Sri Raghavi",
+ "mentor 3 linkedin": "https://www.linkedin.com/in/ksriraghavi/",
+ "mentor 3 github": "https://github.com/sriraghavi22",
+ "mentor 4": "akshay",
+ "mentor 4 linkedin": "https://www.linkedin.com/in/tirumani-satya-akshay/",
+ "mentor 4 github": "https://github.com/akki-2004",
+ "mentor 5": "Anushka Kohli",
+ "mentor 5 linkedin": "https://www.linkedin.com/in/anushka-kohli-9410771b8/",
+ "mentor 5 github": "https://github.com/AnushkaKohli",
+ "keyword": "phase1"
+ },
+ {
+ "Project name": "CompliAI — AI-Powered Compliance Copilot & 2nd Project Smart Irrigation Valve System using AI + IoT",
+ "Project description": "CompliAI is an AI-driven compliance assistant built for Indian startups, SMEs, and corporates. The system uses generative AI and intelligent document parsing to automate, predict, and simplify legal, tax, labor, and regulatory obligations. It offers features like 24/7 legal Q&A chat, deadline reminders, GST/MCA parsing, and a location-based compliance map. The platform is also being integrated with AI Policy Wizard to enhance policy interpretation for new acts like DPDP, ESG norms, FSSAI, SEBI, etc. This project is perfect for students interested in AI/ML, NLP, backend automation, or legaltech product development. & 2nd Project Description it is a Hardware Project Model so I have created a Website This project aims to empower farmers with an AI-IoT-based automated water valve system. It uses soil moisture sensors, weather data, and solar-powered microcontrollers to control irrigation remotely — via mobile or SMS. The system is affordable, low-maintenance, and scalable for small and marginal farmers. Students will get hands-on experience with microcontrollers, embedded programming, and real-world impact engineering. The solution will be showcased at Eureka! (Asia's largest startup competition).",
+ "Project link": "https://agri-automation-system-automated-valve-system--aopjgjl58ghrz7g5.builder-preview.com/",
+ "Project admin": "Tanmay B. Pansare",
+ "Admin linkedin": "https://www.linkedin.com/in/tanmay-pansare-16394330b/",
+ "Admin github": "https://github.com/tanmaydchamp",
+ "Tech stack": "Python (Flask/FastAPI) LangChain + GPT-4-o Vector DB (FAISS) Google Cloud (Vertex AI, Cloud Functions) Azure Form Recognizer / Amazon Textract MongoDB / PostgreSQL Frontend: React.js / Streamlit / Gradio GitHub Actions (CI/CD) & 2nd Project Techstack Arduino / NodeMCU / Raspberry Pi Python (IoT scripting, backend integration) MQTT / Blynk / Firebase Realtime DB Solar panel + Li-ion power management SMS APIs (Twilio / Fast2SMS) Optional: Google Cloud IoT / ESPNow",
+ "mentor 1": "Yash Vishnoi",
+ "mentor 1 github": "https://github.com/yashjscoder",
+ "mentor 1 linkedin": "https://www.linkedin.com/in/yash-vishnoi-22456a291?utm_source=share&utm_campaign=share_via&utm_content=profile&utm_medium=android_app",
+ "mentor 2": "Neha Manoj",
+ "Mentor 2 linkedin": "https://www.linkedin.com/in/neha-manoj-0a966628a/",
+ "mentor 2 github": "https://github.com/nehamanoj1105",
+ "mentor 3": "Om Sherikar",
+ "mentor 3 linkedin": "https://www.linkedin.com/in/omsherikar0229/",
+ "mentor 3 github": "https://github.com/omsherikar",
+ "mentor 4": "Arnab Laha",
+ "mentor 4 linkedin": "https://www.linkedin.com/in/arnab-laha-4012b3287/",
+ "mentor 4 github": "https://github.com/LahaArnab",
+ "keyword": "phase1"
+ },
+ {
+ "Project name": "Smart Irrigation Valve System using AI + IoT",
+ "Project description": "It is a Hardware Project Model so I have created a Website This project aims to empower farmers with an AI-IoT-based automated water valve system. It uses soil moisture sensors, weather data, and solar-powered microcontrollers to control irrigation remotely — via mobile or SMS. The system is affordable, low-maintenance, and scalable for small and marginal farmers. Students will get hands-on experience with microcontrollers, embedded programming, and real-world impact engineering. The solution will be showcased at Eureka! (Asia's largest startup competition).",
+ "Project link": "https://agri-automation-system-automated-valve-system--aopjgjl58ghrz7g5.builder-preview.com/",
+ "Project admin": "Tanmay B. Pansare",
+ "Admin linkedin": "https://www.linkedin.com/in/tanmay-pansare-16394330b/",
+ "Admin github": "https://github.com/tanmaydchamp",
+ "Tech stack": "Arduino / NodeMCU / Raspberry Pi Python (IoT scripting, backend integration) MQTT / Blynk / Firebase Realtime DB Solar panel + Li-ion power management SMS APIs (Twilio / Fast2SMS) Optional: Google Cloud IoT / ESPNow",
+ "mentor 1": "Rajdeep Mohanty",
+ "mentor 1 github": "https://github.com/rajdeep5901",
+ "mentor 1 linkedin": "https://www.linkedin.com/in/rajdeepmohanty/",
+ "keyword": "phase1"
+ },
+ {
+ "Project name": "SmartLog",
+ "Project description": "A beautiful, responsive, and modern Expense Tracker App built with React that helps users manage and visualize their income and expenses smartly.",
+ "Project link": "https://github.com/TanmayKalra09/SmartLog",
+ "Project admin": "Tanmay Kalra",
+ "Admin linkedin": "https://www.linkedin.com/in/tanmay-kalra-09oct/",
+ "Admin github": "https://github.com/TanmayKalra09",
+ "Tech stack": "React, Vite, TailwindCSS",
+ "mentor 1": "Unnati Pandit",
+ "mentor 1 github": "https://www.github.com/Unnati-coder25",
+ "mentor 1 linkedin": "https://www.linkedin.com/in/unnati-pandit-b83a68285",
+ "mentor 2": "Tanziha Sheikh",
+ "Mentor 2 linkedin": "https://www.linkedin.com/in/s-a32b802",
+ "mentor 2 github": "https://github.com/Tanziha-Sheikh",
+ "mentor 3": "Ritwik Kapoor",
+ "mentor 3 linkedin": "https://www.linkedin.com/in/ritwik22k/",
+ "mentor 3 github": "https://github.com/RedK22/",
+ "keyword": "phase1"
+ },
+ {
+ "Project name": "Hotel management system",
+ "Project description": "I have worked on a Hotel Management System using C++, MySQL, and HTML/CSS. I’ve also designed UI using Figma and have experience in basic Python and graphic designing.",
+ "Project link": "https://github.com/tasmiyashaikh711",
+ "Project admin": "Tasmiya Shaikh MD Arshad",
+ "Admin linkedin": "https://www.linkedin.com/in/tasmiya-shaikh711?utm_source=share&utm_campaign=share_via&utm_content=profile&utm_medium=android_app",
+ "Admin github": "https://github.com/tasmiyashaikh711",
+ "Tech stack": "I used the following technologies:\n\nFrontend: HTML, CSS (for designing the user interface)\n\nBackend: C++ using Turbo C++ (for logic and core functionalities)\n\nDatabase: MySQL (to store user, booking, and room data)\n\nTools: Figma (for UI/UX planning and wireframes)\n\n\nThis combination allowed me to build a structured, interactive, and functional system, ensuring both usability and performance.",
+ "mentor 1": "Uma Mahesh",
+ "mentor 1 github": "https://github.com/nagaumamahesh",
+ "mentor 1 linkedin": "https://www.linkedin.com/in/naga-uma-mahesh-nandi-1b4a83360?utm_source=share&utm_campaign=share_via&utm_content=profile&utm_medium=android_app",
+ "mentor 2": "Lov chaudhary",
+ "Mentor 2 linkedin": "https://www.linkedin.com/in/lov-chaudhary-108899263/",
+ "mentor 2 github": "https://github.com/Lovchaudhary",
+ "mentor 3": "raginee darade",
+ "mentor 3 linkedin": "https://www.linkedin.com/in/raginee-darade/",
+ "mentor 3 github": "https://github.com/ragineedarade",
+ "keyword": "phase1"
+ },
+ {
+ "Project name": "Dataverse",
+ "Project description": "A versatile Open-Source Software (OSS) that allows organizing, analyzing and visualizing data, leveraging ML algorithms for predictive analysis. Supporting all data visualisation techniques on one platform, accessible on both desktop and mobile.",
+ "Project link": "https://github.com/multiverseweb/Dataverse",
+ "Project admin": "Tejas Gupta",
+ "Admin linkedin": "https://www.linkedin.com/in/tejascodes",
+ "Admin github": "https://github.com/multiverseweb",
+ "Tech stack": "Python, HTML, CSS, JavaScript",
+ "mentor 1": "Shreeraksha R Adiga",
+ "mentor 1 github": "https://github.com/shreeraksha2112",
+ "mentor 1 linkedin": "https://www.linkedin.com/in/shreeraksharadiga/",
+ "mentor 2": "Maha Rehan",
+ "Mentor 2 linkedin": "https://www.linkedin.com/in/maha-rehan-99bb68200/",
+ "mentor 2 github": "http://github.com/MahaR54",
+ "mentor 3": "Jay Sawant",
+ "mentor 3 linkedin": "https://www.linkedin.com/in/jay-sawant-4b59aa324/",
+ "mentor 3 github": "https://github.com/Jay2006sawant",
+ "mentor 4": "Biradar Vanshika",
+ "mentor 4 linkedin": "http://www.linkedin.com/in/biradar-vanshika-8a153129a",
+ "mentor 4 github": "https://github.com/Biradarvanshika",
+ "mentor 5": "Shashank Gupta",
+ "mentor 5 linkedin": "https://www.linkedin.com/in/shashank-gupta-abb76030b",
+ "mentor 5 github": "https://github.com/ShashankScript",
+ "keyword": "phase1"
+ },
+ {
+ "Project name": "AgriBazaar - E-commerce Agricultural Products Website",
+ "Project description": "AgriBazaar is an online platform that connects farmers, suppliers, and buyers of agricultural products. The website allows users to browse and purchase a wide range of agricultural products, including seeds, fertilizers, pesticides, and farm equipment. *Key Features:* - User registration and login functionality - Product catalog with search, filter, and sort options - Shopping cart and checkout functionality - Payment gateway integration (e.g., PayPal, Stripe) - Order management and tracking - User reviews and ratings - Admin dashboard for managing products, orders, and users *Technology Stack:* - Front-end: HTML, CSS, JavaScript, JSP - Back-end: Java, Spring Framework (e.g., Spring MVC, Spring Boot) - Database: MySQL or PostgreSQL - Server: Apache Tomcat or similar *Functionality:* - Users can browse and purchase agricultural products - Farmers and suppliers can list their products and manage orders - Admin can manage products, orders, and users - Payment processing and order tracking *Benefits:* - Increased market access for farmers and suppliers - Convenience and flexibility for buyers - Streamlined order management and payment processing *Java Technologies Used:* - Spring Framework for building the back-end - Hibernate or JPA for database interactions - Java Servlet and JSP for handling requests and rendering views This project would involve designing and implementing a robust e-commerce platform using Java and related technologies. It would require a good understanding of web development, database design, and payment processing.",
+ "Project link": "https://github.com/KOMARAUDAYKIRAN/E-commerce-AgriGro-Website-Project",
+ "Project admin": "Uday",
+ "Admin linkedin": "https://www.linkedin.com/in/udaykirankomara",
+ "Admin github": "https://github.com/KOMARAUDAYKIRAN",
+ "Tech stack": "java full stack",
+ "mentor 1": "Ishita Singh",
+ "mentor 1 github": "https://github.com/issue31",
+ "mentor 1 linkedin": "https://www.linkedin.com/in/ishita-s-4b336a191",
+ "mentor 2": "Arshiya Shaikh",
+ "Mentor 2 linkedin": "https://www.linkedin.com/in/arshiya-shaikh-b39705259/",
+ "mentor 2 github": "https://github.com/arshiyaaa7",
+ "mentor 3": "Shruti Tiwari",
+ "mentor 3 linkedin": "https://www.linkedin.com/in/shruti-tiwari-a8537725a/",
+ "mentor 3 github": "https://github.com/Shruti0534",
+ "keyword": "phase1"
+ },
+ {
+ "Project name": "Anime-Ecstasy",
+ "Project description": "Anime review sites",
+ "Project link": "https://github.com/Chandu6702/Anime-Ecstasy",
+ "Project admin": "Uma Chandra Sekhara Sarma Thadepalli",
+ "Admin linkedin": "https://www.linkedin.com/in/umachandrasekhara/",
+ "Admin github": "https://github.com/Chandu6702",
+ "Tech stack": "HTML, JavaScript, Tailwind CSS, React.js",
+ "mentor 1": "Mithali",
+ "mentor 1 github": "https://github.com/mithalikp25",
+ "mentor 1 linkedin": "https://www.linkedin.com/in/mithali-kp-23b815327?utm_source=share&utm_campaign=share_via&utm_content=profile&utm_medium=ios_app",
+ "mentor 2": "Isha Patel",
+ "Mentor 2 linkedin": "https://www.linkedin.com/in/anshiagrawal22/",
+ "mentor 2 github": "https://github.com/aniieee-p",
+ "mentor 3": "Shruti Tiwari",
+ "mentor 3 linkedin": "https://www.linkedin.com/in/shruti-tiwari-a8537725a/",
+ "mentor 3 github": "https://github.com/Shruti0534",
+ "mentor 4": "Anushka Kohli",
+ "mentor 4 linkedin": "https://www.linkedin.com/in/anushka-kohli-9410771b8/",
+ "mentor 4 github": "https://github.com/AnushkaKohli",
+ "keyword": "phase1"
+ },
+ {
+ "Project name": "PyVerse",
+ "Project description": "PyVerse is an open-source collection of diverse Python projects, tools, and scripts, ranging from beginner to advanced, across various domains like machine learning, web development, and automation.",
+ "Project link": "https://github.com/UTSAVS26/PyVerse",
+ "Project admin": "Utsav Singhal",
+ "Admin linkedin": "https://www.linkedin.com/in/utsavsinghal2604/",
+ "Admin github": "https://github.com/UTSAVS26",
+ "Tech stack": "Python",
+ "mentor 1": "Arpit Mishra",
+ "mentor 1 github": "https://www.linkedin.com/in/arpit-mishra-87b943242/",
+ "mentor 1 linkedin": "https://github.com/TheChaoticor",
+ "mentor 2": "Kiruthiga C M",
+ "Mentor 2 linkedin": "https://www.linkedin.com/in/kiruthiga-c-m-b34aa9328?utm_source=share&utm_campaign=share_via&utm_content=profile&utm_medium=android_app",
+ "mentor 2 github": "https://github.com/kiruthigacm",
+ "mentor 3": "Jitendra Rajput",
+ "mentor 3 linkedin": "https://www.linkedin.com/in/jitendra-rajputt/",
+ "mentor 3 github": "https://github.com/Jitendrarajputt",
+ "mentor 4": "Aditi",
+ "mentor 4 linkedin": "https://github.com/https-aditi",
+ "mentor 4 github": "https://www.linkedin.com/in/aditi-srivastava001/",
+ "keyword": "phase1"
+ },
+ {
+ "Project name": "Term",
+ "Project description": "A minimal terminal with AI capabilities",
+ "Project link": "https://github.com/sapatevaibhav/term",
+ "Project admin": "Vaibhav",
+ "Admin linkedin": "https://linkedin.com/in/sapatevaibhav",
+ "Admin github": "https://github.com/sapatevaibhav",
+ "Tech stack": "React, Rust",
+ "mentor 1": "Devyash Saini",
+ "mentor 1 github": "https://github.com/thedevyashsaini",
+ "mentor 1 linkedin": "https://linkedin.com/in/thedevyashsaini",
+ "mentor 2": "Hussnain Ahmad",
+ "Mentor 2 linkedin": "https://linkedin.com/in/Hussnain-Ahmad",
+ "mentor 2 github": "https://github.com/itspsychocoder/",
+ "mentor 3": "Isha Patel",
+ "mentor 3 linkedin": "https://www.linkedin.com/in/anshiagrawal22/",
+ "mentor 3 github": "https://github.com/aniieee-p",
+ "keyword": "phase1"
+ },
+ {
+ "Project name": "Nitra Mitra",
+ "Project description": "Nitra Mitra is an open-source educational platform designed to support students of AKTU and similar technical universities by providing a centralized system for academic resources. Developed by students of NITRA Technical Campus, the project aims to make essential study material easily accessible, especially for students in under-resourced colleges.\n\nThe platform offers semester-wise and subject-wise notes, previous year question papers, syllabus documents, and event updates. It eliminates the need to search through multiple unofficial sources and provides a clean, organized interface focused on academic success.\n\nNitra Mitra is built using HTML, CSS, JavaScript, PHP, and MySQL, and is hosted on a custom domain. It is a beginner-friendly open-source project, welcoming contributors to improve features like responsive design, content upload automation, admin moderation tools, and search optimization.\n\nThis project aligns with the goals of GSSoC by fostering open collaboration, offering meaningful contributions for beginners and intermediate developers, and solving real student problems through technology.",
+ "Project link": "https://github.com/VAIBHAVBABELE/vaibhavbabele.github.io",
+ "Project admin": "Vaibhav Babele",
+ "Admin linkedin": "https://in.linkedin.com/in/vaibhavbabele",
+ "Admin github": "https://github.com/VAIBHAVBABELE/vaibhavbabele.github.io",
+ "Tech stack": "HTML, CSS, JavaScript, PHP, MySQL, google app script, bootstrap",
+ "mentor 1": "Anupriya yadav",
+ "mentor 1 github": "https://github.com/camren88",
+ "mentor 1 linkedin": "https://www.linkedin.com/in/anupriya-yadav-96845b274?utm_source=share&utm_campaign=share_via&utm_content=profile&utm_medium=android_app",
+ "mentor 2": "meet arora",
+ "Mentor 2 linkedin": "https://www.linkedin.com/in/meet-arora-603682296",
+ "mentor 2 github": "https://github.com/meetarora10",
+ "mentor 3": "Harsh Saini",
+ "mentor 3 linkedin": "https://www.linkedin.com/in/harsh-saini-734ab6264/",
+ "mentor 3 github": "https://github.com/Harshsaini001",
+ "mentor 4": "KIRUTHIGA C M",
+ "mentor 4 linkedin": "https://www.linkedin.com/in/kiruthiga-c-m-b34aa9328?utm_source=share&utm_campaign=share_via&utm_content=profile&utm_medium=android_app",
+ "mentor 4 github": "https://github.com/kiruthigacm",
+ "mentor 5": "Shashank Gupta",
+ "mentor 5 linkedin": "https://www.linkedin.com/in/shashank-gupta-abb76030b",
+ "mentor 5 github": "https://github.com/ShashankScript",
+ "keyword": "phase1"
+ },
+ {
+ "Project name": "Ardh Naari Shakti",
+ "Project description": "It is a web app, which is a warm hug to all the trangender community people out there. It contains various pages like a chatbot named Taara, Blogs page, shelter page and jobs page.",
+ "Project link": "https://github.com/Agarwalvidu/ArdhNaariShakti_Taara_Frontend",
+ "Project admin": "Vidushi Agarwal",
+ "Admin linkedin": "https://www.linkedin.com/in/vidushi-agarwal-a95885256",
+ "Admin github": "https://github.com/Agarwalvidu",
+ "Tech stack": "ReactJs, NodeJs, ExpressJs, MongoDB",
+ "mentor 1": "Koustav Singh",
+ "mentor 1 github": "https://www.github.com/koustavx08",
+ "mentor 1 linkedin": "https://www.linkedin.com/in/koustavx08",
+ "mentor 2": "Antik Mondal",
+ "Mentor 2 linkedin": "https://linkedin.com/in/antik-mondal-825684240",
+ "mentor 2 github": "https://github.com/ANTIK-007",
+ "mentor 3": "ANUSHKHA YADAV",
+ "mentor 3 linkedin": "http://www.linkedin.com/in/anushkha-yadav-a1410b289",
+ "mentor 3 github": "https://github.com/AnushkhaYadav",
+ "mentor 4": "Siva Durshika G",
+ "mentor 4 linkedin": "https://www.linkedin.com/in/siva-durshika-g-86141030a",
+ "mentor 4 github": "https://github.com/SivaDurshika-G",
+ "mentor 5": "Anushka Kohli",
+ "mentor 5 linkedin": "Anushka Kohli",
+ "mentor 5 github": "https://github.com/AnushkaKohli",
+ "keyword": "phase1"
+ },
+ {
+ "Project name": "Athletix",
+ "Project description": "Athletix is a Flutter, Firebase and Gemini API based platform for athlete management in India, offering performance tracking, injury management, AI recovery, and real-time messaging. Future upgrades include dashboards, finance and AI career planning",
+ "Project link": "https://github.com/vjlive/athletix",
+ "Project admin": "Vijay Guttula",
+ "Admin linkedin": "https://linkedin.com/in/vijay-guttula",
+ "Admin github": "https://github.com/vjlive",
+ "Tech stack": "Flutter, Firebase, Gemini API, Node Js, Javascript, Dart, REST APIs",
+ "mentor 1": "Sarthak Patil",
+ "mentor 1 github": "https://github.com/ezsarthak",
+ "mentor 1 linkedin": "https://www.linkedin.com/in/sarthaknpatil",
+ "mentor 2": "sutapa biswas",
+ "Mentor 2 linkedin": "https://www.linkedin.com/in/sutapa0/",
+ "mentor 2 github": "https://github.com/suto6",
+ "keyword": "phase1"
+ },
+ {
+ "Project name": "Orthoplay - Spell. Guess. Learn",
+ "Project description": "Orthoplay is an interactive voice-based word learning game designed to make vocabulary building fun and engaging. The game challenges players with spoken words accompanied by descriptive hints in text. Players must guess the word by identifying the number of letters and gradually unveiling the correct spelling through intuitive, game-based mechanics.",
+ "Project link": "https://github.com/whyvineet/orthoplay",
+ "Project admin": "Vineet Kumar",
+ "Admin linkedin": "https://www.linkedin.com/in/whyvineet",
+ "Admin github": "https://github.com/whyvineet",
+ "Tech stack": "python, javascript, reactjs, fastapi",
+ "mentor 1": "SRINADH TADIKONDA",
+ "mentor 1 github": "http://github.com/srinadhtadikonda",
+ "mentor 1 linkedin": "http://linkedin.com/srinadhtadikonda",
+ "mentor 2": "Aric Pandya",
+ "Mentor 2 linkedin": "https://www.linkedin.com/in/aricpandya?utm_source=share&utm_campaign=share_via&utm_content=profile&utm_medium=android_app",
+ "mentor 2 github": "https://github.com/AricPandya",
+ "mentor 3": "akshay",
+ "mentor 3 linkedin": "https://www.linkedin.com/in/tirumani-satya-akshay/",
+ "mentor 3 github": "https://github.com/akki-2004",
+ "keyword": "phase1"
+ },
+ {
+ "Project name": "Product Ledger",
+ "Project description": "Its a Ledger Application for Reatilers to manage their services.",
+ "Project link": "https://github.com/vishalmaurya850/Product-Ledger",
+ "Project admin": "Vishal Maurya",
+ "Admin linkedin": "https://www.linkedin.com/in/vishalmaurya850",
+ "Admin github": "https://github.com/vishalmaurya850",
+ "Tech stack": "Next.js, Tailwind CSS, Express.js",
+ "mentor 1": "Dipika",
+ "mentor 1 github": "https://github.com/Dipikagithub123",
+ "mentor 1 linkedin": "https://www.linkedin.com/in/dipika-tiwari-469454250/",
+ "mentor 2": "Piyush Sharma",
+ "Mentor 2 linkedin": "https://www.linkedin.com/in/piyush-ugi/",
+ "mentor 2 github": "https://github.com/daksh-ugi",
+ "mentor 3": "akshay",
+ "mentor 3 linkedin": "https://www.linkedin.com/in/tirumani-satya-akshay/",
+ "mentor 3 github": "https://github.com/akki-2004",
+ "mentor 4": "Iqra Fatima",
+ "mentor 4 linkedin": "https://www.linkedin.com/in/iqra-fatima-a15bba2ba?utm_source=share&utm_campaign=share_via&utm_content=profile&utm_medium=android_app",
+ "mentor 4 github": "https://github.com/iqrfatima",
+ "mentor 5": "Anushka Kohli",
+ "mentor 5 linkedin": "Anushka Kohli",
+ "mentor 5 github": "https://github.com/AnushkaKohli",
+ "keyword": "phase1"
+ },
+ {
+ "Project name": "SentiLog AI",
+ "Project description": "SentiLog AI is an open-source platform that helps users track their personal emotions through mood journaling while simultaneously analyzing global news sentiment to reveal how external events might influence their inner world. Combining the power of machine learning and a modern MERN stack architecture, SentiLog offers intelligent insights by visualizing the emotional tone of daily journal entries alongside real-time sentiment analysis of news articles and tweets. Users can explore patterns, compare their moods with global trends, and gain a deeper understanding of the connection between internal feelings and external narratives. Built for accessibility, scalability, and community collaboration, SentiLog AI is a unique intersection of emotion, analytics, and technology — empowering individuals to stay emotionally aware in an ever-changing world.",
+ "Project link": "https://github.com/openml-stack/SentiLog-AI",
+ "Project admin": "vivek prakash",
+ "Admin linkedin": "https://www.linkedin.com/in/itsvivekprakash",
+ "Admin github": "https://github.com/IkkiOcean",
+ "Tech stack": "•\tFrontend:\n\t•\tReact.js\n\t•\tTailwind CSS\n\t•\tReact Router for navigation\n\t•\tAxios for API calls\n\t•\tBackend (App Server):\n\t•\tNode.js\n\t•\tExpress.js\n\t•\tMongoose (MongoDB ODM)\n\t•\tDatabase:\n\t•\tMongoDB Atlas (Cloud NoSQL)\n\t•\tML Service (Python):\n\t•\tFlask (API framework)\n\t•\tHugging Face Transformers (e.g., BERT)\n\t•\tVADER Sentiment",
+ "mentor 1": "Rishabh Dhawad",
+ "mentor 1 github": "https://github.com/RishabhDhawad",
+ "mentor 1 linkedin": "https://www.linkedin.com/in/rishabhdhawad/",
+ "mentor 2": "Dipayan Ghosh",
+ "Mentor 2 linkedin": "https://www.linkedin.com/in/dipayan-ghosh-coder",
+ "mentor 2 github": "https://github.com/Dip-1432",
+ "mentor 3": "Pushkar jain",
+ "mentor 3 linkedin": "https://www.linkedin.com/in/pushkar-jain-06a461231/",
+ "mentor 3 github": "https://github.com/pushh-k",
+ "mentor 4": "Iqra Fatima",
+ "mentor 4 linkedin": "https://www.linkedin.com/in/iqra-fatima-a15bba2ba?utm_source=share&utm_campaign=share_via&utm_content=profile&utm_medium=android_app",
+ "mentor 4 github": "https://github.com/iqrfatima",
+ "mentor 5": "Anushka Kohli",
+ "mentor 5 linkedin": "https://www.linkedin.com/in/anushka-kohli-9410771b8/",
+ "mentor 5 github": "https://github.com/AnushkaKohli",
+ "keyword": "phase1"
+ },
+ {
+ "Project name": "Brevity",
+ "Project description": "Brevity is a smart news app that cuts through the noise, delivering crisp, trustworthy stories with a clean, modern interface—designed to make staying informed effortless and engaging.",
+ "Project link": "https://github.com/Yash159357/BREVITY",
+ "Project admin": "Yash",
+ "Admin linkedin": "https://www.linkedin.com/in/yash-kumar101/",
+ "Admin github": "https://github.com/Yash159357",
+ "Tech stack": "Flutter, Firebase, RestAPI, NodeJS, MongoDB, ExpressJS,",
+ "mentor 1": "Unnati Pandit",
+ "mentor 1 github": "https://www.github.com/Unnati-coder25",
+ "mentor 1 linkedin": "https://www.linkedin.com/in/unnati-pandit-b83a68285",
+ "mentor 2": "Gauri Verma",
+ "Mentor 2 linkedin": "https://github.com/garys-demons",
+ "mentor 2 github": "https://www.linkedin.com/in/gauri-verma-2a061b311?utm_source=share&utm_campaign=share_via&utm_content=profile&utm_medium=ios_app",
+ "mentor 3": "akshay",
+ "mentor 3 linkedin": "https://www.linkedin.com/in/tirumani-satya-akshay/",
+ "mentor 3 github": "https://github.com/akki-2004",
+ "mentor 4": "Ishita Umredkar",
+ "mentor 4 linkedin": "https://www.linkedin.com/in/ishita-umredkar-0a471525b/",
+ "mentor 4 github": "https://github.com/Ishita-Umredkar",
+ "mentor 5": "AnushkaKohli",
+ "mentor 5 linkedin": "https://www.linkedin.com/in/anushka-kohli-9410771b8/",
+ "mentor 5 github": "https://github.com/AnushkaKohli",
+ "keyword": "phase1"
+ },
+ {
+ "Project name": "BMC Product Review Scrapping & Sentiment Analysis",
+ "Project description": "This project performs Web Scrapping & Sentiment Analysis on verified Gartner reviews of popular BMC Software Products, using Python NLP Techniques and Data Visualization.\n\nBMC Product Review Scrapping & Sentiment Analysis is an open source project designed for performing sentiment analysis on customer reviews of BMC Software products scraped from public platforms like Gartner. It leverages Natural Language Processing (NLP) techniques and visualization tools to extract actionable insights from product reviews.\n\nThis project is perfect for beginners and intermediate contributors who want hands-on experience with web scraping, NLP, data visualization, and open source collaboration.",
+ "Project link": "https://github.com/Yash22222/BMC-Product-Reviews-Web-Scrapping-Sentiment-Analysis",
+ "Project admin": "Yash",
+ "Admin linkedin": "https://www.linkedin.com/in/yash-shirsath-cr49/",
+ "Admin github": "https://github.com/Yash22222/",
+ "Tech stack": "This project uses Selenium with Undetected-Chromedriver for web scraping dynamic Gartner pages. Data is handled using Pandas and NumPy, and exported via OpenPyXL and XlsxWriter. For NLP, we use NLTK for preprocessing and VADER for sentiment analysis. Visualizations are built using Matplotlib for charts and WordCloud for keyword clouds. TQDM adds progress tracking throughout the workflow.",
+ "mentor 1": "Kumar Daksh",
+ "mentor 1 github": "https://github.com/Daksh503",
+ "mentor 1 linkedin": "https://www.linkedin.com/in/kumardaksh/",
+ "mentor 2": "Snehashish Das",
+ "Mentor 2 linkedin": "https://www.linkedin.com/in/snehashish-das-160359226/",
+ "mentor 2 github": "https://github.com/Snehashish-Das",
+ "mentor 3": "Aditya Kaushik",
+ "mentor 3 linkedin": "https://www.linkedin.com/in/aditya-kaushik-b4b00b338/",
+ "mentor 3 github": "https://github.com/Aditya22626",
+ "keyword": "phase1"
+ },
+ {
+ "Project name": "Legalease",
+ "Project description": "A platform built for people to get legal advice on, you can directly track your cases, converse with a AI-legal chat bot and find real life lawyers, working on the issues.",
+ "Project link": "https://github.com/yashvikram30/LegalEase",
+ "Project admin": "Yash Vikram",
+ "Admin linkedin": "https://www.linkedin.com/in/yashvikram30?utm_source=share&utm_campaign=share_via&utm_content=profile&utm_medium=android_app",
+ "Admin github": "https://github.com/yashvikram30",
+ "Tech stack": "Next.js, Typescript, Shad-CN, Groq-API",
+ "mentor 1": "Yash Kumar Saini",
+ "mentor 1 github": "https://github.com/yashksaini-coder",
+ "mentor 1 linkedin": "https://www.linkedin.com/in/yashksaini/",
+ "mentor 2": "Aaradhy Raghav Duvey",
+ "Mentor 2 linkedin": "https://www.linkedin.com/in/aaradhy-raghav-duvey-b18b872b7",
+ "mentor 2 github": "https://github.com/arduvey29",
+ "mentor 3": "Anushka Kohli",
+ "mentor 3 linkedin": "https://www.linkedin.com/in/anushka-kohli-9410771b8/",
+ "mentor 3 github": "https://github.com/AnushkaKohli",
+ "mentor 4": "Nandini Pandey",
+ "mentor 4 linkedin": "https://linkedin.com/in/nytrixis",
+ "mentor 4 github": "https://github.com/nytrixis",
+ "mentor 5": "Sanchit Khthpalia",
+ "mentor 5 linkedin": "https://www.linkedin.com/in/sanchit-kathpalia-a841b5252?utm_source=share&utm_campaign=share_via&utm_content=profile&utm_medium=android_app",
+ "mentor 5 github": "http://github.com/sanchitkhthpalia/",
+ "keyword": "phase1"
+ },
+ {
+ "Project name": "White Paper",
+ "Project description": "The White Paper project is a simple notepad app built with Python Django. It allows users to create, save, and manage notes with a secure authentication system to keep their data private. Users can sign up, log in, and access their notes, offering a seamless and secure note-taking experience.",
+ "Project link": "https://github.com/ygowthamr/WhitePaper",
+ "Project admin": "YEMIREDDY GOWTHAM REDDY",
+ "Admin linkedin": "https://www.linkedin.com/in/ygowthamr/",
+ "Admin github": "https://github.com/ygowthamr",
+ "Tech stack": "Python, Django Framework, HTML, CSS, JavaScript, SQLite.",
+ "mentor 1": "Shreeya Srivastava",
+ "mentor 1 github": "https://github.com/shreesriv12",
+ "mentor 1 linkedin": "https://www.linkedin.com/in/shreeya-srivastava-94a458327/",
+ "mentor 2": "Gopichand Dandimeni",
+ "Mentor 2 linkedin": "https://www.linkedin.com/in/gopichand-dandimeni-269709287/",
+ "mentor 2 github": "https://github.com/Gooichand",
+ "mentor 3": "Snehashish Das",
+ "mentor 3 linkedin": "https://www.linkedin.com/in/snehashish-das-160359226/",
+ "mentor 3 github": "https://github.com/Snehashish-Das",
+ "mentor 4": "Chandika Sarkar",
+ "mentor 4 linkedin": "https://www.linkedin.com/in/chandika-sarkar-059853254/",
+ "mentor 4 github": "https://github.com/chandikasarkar",
+ "mentor 5": "Krish Patel",
+ "mentor 5 linkedin": "https://www.linkedin.com/in/krishpatel1205/",
+ "mentor 5 github": "https://github.com/KrishPatel1205",
+ "keyword": "phase1"
+ },
+ {
+ "Project name": "ShopSmart",
+ "Project description": "By ShopSmart we provide Smart Shopping from Local Stores.",
+ "Project link": "https://github.com/yuvrajsinghgmx/ShopSmart",
+ "Project admin": "Yuvraj Singh",
+ "Admin linkedin": "https://linkedin.com/in/yuvrajsinghgmx",
+ "Admin github": "https://github.com/yuvrajsinghgmx",
+ "Tech stack": "Android Studio, Kotlin, JetPack Compose, Springboot, Kotlin, Frontend, Backend,",
+ "mentor 1": "mansi ruhil",
+ "mentor 1 github": "https://github.com/mansiruhil",
+ "mentor 1 linkedin": "https://www.linkedin.com/in/mansi-ruhil-7a00a0228",
+ "mentor 2": "RISHIKA RAJ",
+ "Mentor 2 linkedin": "https://www.linkedin.com/in/rishika-raj-0237a0205",
+ "mentor 2 github": "https://github.com/rishika2108",
+ "mentor 3": "harsh singh",
+ "mentor 3 linkedin": "https://www.linkedin.com/in/harsh-s-08691222a",
+ "mentor 3 github": "https://github.com/singhharsh1708",
+ "mentor 4": "anushkha yadav",
+ "mentor 4 linkedin": "http://www.linkedin.com/in/anushkha-yadav-a1410b289",
+ "mentor 4 github": "https://github.com/AnushkhaYadav",
+ "mentor 5": "Arshiya Shaikh",
+ "mentor 5 linkedin": "https://www.linkedin.com/in/arshiya-shaikh-b39705259/",
+ "mentor 5 github": "https://github.com/arshiyaaa7",
+ "keyword": "phase1"
+ }
+]
\ No newline at end of file
diff --git a/projects5-phase2.json b/projects5-phase2.json
new file mode 100644
index 0000000..d1aa2fd
--- /dev/null
+++ b/projects5-phase2.json
@@ -0,0 +1,2734 @@
+[
+ {
+ "Project name": "med-genie",
+ "Project description": "AI Med Genie is a Python-based chatbot designed to assist users with basic medical queries, appointment information, and general health tips. It was built using Flask and deployed to a public platform. The chatbot aims to reduce the load on healthcare professionals by providing quick, automated responses to common patient questions.",
+ "Project link": "https://github.com/aayushraj1010/med-genie",
+ "Project admin": "Aayush Raj",
+ "Admin linkedin": "https://www.linkedin.com/in/aayush-raj-a8603a307?utm_source=share&utm_campaign=share_via&utm_content=profile&utm_medium=android_app",
+ "Admin github": "https://github.com/aayushraj1010",
+ "Tech stack": "Python, Flask, HTML, CSS, Git, GitHub, VS Code, Render (Optional NLP: spaCy planned for future)",
+ "mentor 1": "Shivangi Suyash",
+ "mentor 1 github": "https://github.com/Shivangi10-10",
+ "mentor 1 linkedin": "https://www.linkedin.com/in/shivangi-suyash-05a484259",
+ "mentor 2": "Vishwajeet Kumar",
+ "mentor 2 github": "https://github.com/wivk-tech",
+ "Mentor 2 linkedin": "https://www.linkedin.com/in/wivk-tech/",
+ "mentor 3": "Nikhil Saxena",
+ "mentor 3 github": "https://github.com/Nikhil2253/",
+ "mentor 3 linkedin": "https://www.linkedin.com/in/nikhil-saxena-76901a2a5",
+ "mentor 4": "Nitin Saxena",
+ "mentor 4 github": "https://github.com/Nitin10cd",
+ "mentor 4 linkedin": "https://www.linkedin.com/in/nitin-saxena-78a976294?utm_source=share&utm_campaign=share_via&utm_content=profile&utm_medium=android_app",
+ "keyword": "phase2"
+ },
+ {
+ "Project name": "SkillHub-CourseSelling",
+ "Project description": "It is a partial full stack course selling web based project",
+ "Project link": "https://github.com/WavyWeb/SkillHub-CourseSelling",
+ "Project admin": "Abhay Pratap Singh",
+ "Admin linkedin": "https://www.linkedin.com/in/abhay-pratap-singh-a75069252/",
+ "Admin github": "https://github.com/ThakurAbhay9457",
+ "Tech stack": "MERN",
+ "mentor 1": "Huda Naaz",
+ "mentor 1 github": "https://github.com/hudazaan",
+ "mentor 1 linkedin": "http://www.linkedin.com/in/hudanaaz17",
+ "mentor 2": "Shivangi Suyash",
+ "mentor 2 github": "https://www.linkedin.com/in/shivangi-suyash-05a484259",
+ "Mentor 2 linkedin": "https://github.com/Shivangi10-10",
+ "mentor 3": "Nitin Saxena",
+ "mentor 3 github": "https://github.com/Nitin10cd",
+ "mentor 3 linkedin": "https://www.linkedin.com/in/nitin-saxena-78a976294?utm_source=share&utm_campaign=share_via&utm_content=profile&utm_medium=android_app",
+ "keyword": "phase2"
+ },
+ {
+ "Project name": "PrepEdge AI",
+ "Project description": "PrepEdge AI is an interview preparation platform, that helps people hone their interview skills by giving mock interviews powered by AI on our platform. PrepEdge AI uses AI to generate personalized questions for users based on the job description and their resume. It provides instant feedback of your interview, which can even be downloaded in form of pdf.",
+ "Project link": "https://www.github.com/coderuzumaki/prepedge-ai",
+ "Project admin": "Abhinav Mishra",
+ "Admin linkedin": "https://www.linkedin.com/in/abhinavvv08",
+ "Admin github": "https://www github.com/coderuzumaki",
+ "Tech stack": "React.js, TailwindCSS, Express.js, MongoDB Atlas, HuggingFace API",
+ "mentor 1": "Huda Naaz",
+ "mentor 1 github": "https://github.com/hudazaan",
+ "mentor 1 linkedin": "http://www.linkedin.com/in/hudanaaz17",
+ "mentor 2": "Ritwik Kapoor",
+ "mentor 2 github": "https://www.linkedin.com/in/ritwik22k/",
+ "Mentor 2 linkedin": "https://github.com/RedK22/%20NEW%20[00:22]",
+ "mentor 3": "Pushkar jain",
+ "mentor 3 github": "https://github.com/pushh-k",
+ "mentor 3 linkedin": "https://www.linkedin.com/in/pushkar-jain-06a461231/",
+ "keyword": "phase2"
+ },
+ {
+ "Project name": "CrisisBoard",
+ "Project description": "A unified complaint logging platform that generates report categories it into a particular problem and sends email to concerned department automatically.",
+ "Project link": "https://github.com/Ambit-ion/crisisboard",
+ "Project admin": "Abhisar",
+ "Admin linkedin": "https://www.linkedin.com/in/abhisar-choubey/",
+ "Admin github": "https://github.com/Ambit-ion",
+ "Tech stack": "HTML, Firebase, JS",
+ "mentor 1": "Sneha Singh",
+ "mentor 1 github": "https://github.com/myselfsneha",
+ "mentor 1 linkedin": "http://www.linkedin.com/in/singh--sneha",
+ "keyword": "phase2"
+ },
+ {
+ "Project name": "Crisisboard",
+ "Project description": "Universal complaint logging, categorising and email sending website",
+ "Project link": "https://github.com/Forkzen/crisisboard",
+ "Project admin": "Abhisar Choubey",
+ "Admin linkedin": "https://www.linkedin.com/in/abhisar-choubey",
+ "Admin github": "https://github.com/Forkzen",
+ "Tech stack": "HTML, FIREBASE,FIRESTORE,TAILWIND,JS,GEMINI",
+ "mentor 1": "Prakruti Srichandan",
+ "mentor 1 github": "https://github.com/interstellar2567",
+ "mentor 1 linkedin": "http://www.linkedin.com/in/prakruti-srichandan-156254298",
+ "keyword": "phase2"
+ },
+ {
+ "Project name": "Advanturers Guild",
+ "Project description": "Adventurer's Guild for coders. Take on quests (from bug hunting to feature builds) from big organisation, party up with fellow adventures (devs), and raise your ranks in the digital realm. In from of Website and App both",
+ "Project link": "https://github.com/LarytheLord/Adventurers-Guild",
+ "Project admin": "Abid",
+ "Admin linkedin": "https://www.linkedin.com/in/abikhn/",
+ "Admin github": "https://github.com/LarytheLord",
+ "Tech stack": "Next.js, React Native, Typescript, Supabase",
+ "mentor 1": "Himanshu Kabra",
+ "mentor 1 github": "https://github.com/HimanshuKabra01",
+ "mentor 1 linkedin": "https://www.linkedin.com/in/himanshu-kabra28/",
+ "mentor 2": "Ayush Nirajkumar Rai",
+ "mentor 2 github": "https://github.com/ayushrai1235",
+ "Mentor 2 linkedin": "https://www.linkedin.com/in/ayush-rai-35bb64328?utm_source=share&utm_campaign=share_via&utm_content=profile&utm_medium=android_app",
+ "mentor 3": "Pavan Sarvesh",
+ "mentor 3 github": "https://github.com/pavansarvesh",
+ "mentor 3 linkedin": "https://www.linkedin.com/in/pavansarvesh/",
+ "keyword": "phase2"
+ },
+ {
+ "Project name": "OptiBlogAi",
+ "Project description": "OptiBlogAi is an open-source AI system that generates high-quality, SEO-optimized blog content through a multi-phase content production pipeline. By scraping top-ranking content, generating original articles with LLMs, and implementing a rigorous quality assessment loop, OptiBlogAi produces content engineered for search engine visibility and reader engagement.\n \n Core Innovation: OptiBlogAi's unique breakeven assessment loop ensures content meets quality thresholds before publication, combining AI generation with SEO science to create content that ranks.",
+ "Project link": "https://github.com/solve-ease/OptiBlogAi",
+ "Project admin": "Adarsh Maurya",
+ "Admin linkedin": "https://www.linkedin.com/in/adarsh-maurya-dev/",
+ "Admin github": "https://github.com/4arsh-dev",
+ "Tech stack": "Python 3.10+, FastAPI, LangGraph, Groq, Gemini, Playwright, BeautifulSoup, NLTK, Docker,",
+ "mentor 1": "Manan",
+ "mentor 1 github": "https://github.com/Manan-Wadhwa",
+ "mentor 1 linkedin": "https://www.linkedin.com/in/manan-wadhwa/",
+ "mentor 2": "Om Sherikar",
+ "mentor 2 github": "https://github.com/omsherikar",
+ "Mentor 2 linkedin": "https://www.linkedin.com/in/omsherikar0229",
+ "keyword": "phase2"
+ },
+ {
+ "Project name": "Smart Waste Classification System using EfficientNet",
+ "Project description": "A machine learning-based system to automate waste classification using image recognition. Leveraging the EfficientNetV2B2 architecture, the model identifies different types of waste (plastic, paper, metal, etc.) from images, helping in effective recycling and segregation. The system aims to reduce manual effort and improve the accuracy of waste management.",
+ "Project link": "https://github.com/AditixAnand/Garbage_Classification.git",
+ "Project admin": "Aditi Anand",
+ "Admin linkedin": "https://www.linkedin.com/in/aditi-anand-745458318/",
+ "Admin github": "https://github.com/AditixAnand",
+ "Tech stack": "Python, TensorFlow, EfficientNet, Streamlit, OpenCV, NumPy, Pandas",
+ "mentor 1": "Nikhil",
+ "mentor 1 github": "https://github.com/Nikhil210206",
+ "mentor 1 linkedin": "https://www.linkedin.com/in/nikhilb21",
+ "mentor 2": "Umesh Chandran Yenugula",
+ "mentor 2 github": "https://github.com/umeshyenugula",
+ "Mentor 2 linkedin": "https://www.linkedin.com/in/umesh-chandran-yenugula-0a2576317",
+ "mentor 3": "Vishwajeet Kumar",
+ "mentor 3 github": "https://github.com/wivk-tech",
+ "mentor 3 linkedin": "https://www.linkedin.com/in/wivk-tech/",
+ "keyword": "phase2"
+ },
+ {
+ "Project name": "NeoNest",
+ "Project description": "Babycare for new borns specially in the first year of birth is crucial as it lays the foundation for further growth and development. However, it often leads to stress, confusion, burnout and becomes overwhelming for parents specially nothers who are already dealing with postpartum recovery. Neonest, addressing this issue blends technology, love and care to create a holistic platform for parents where they can track their baby's development during the first year. From tracking feedings, sleep, essentials, growth, vaccines and emergency contacts, along with providing faqs, resources, to a Memory Vault, AI chatbot assistant and Lullabies NeoNest is a full fledged combination of technology and emotions. Apart from that, the website is built via cutting edge technology and provides contributors a vast scope for creative inputs, from beginners looking to start via bug fixes, documentation and ui enhancements to advanced developers bringing unique features, all can contribute to the project.",
+ "Project link": "https://github.com/AditiGupta-tech/neonest",
+ "Project admin": "Aditi Gupta",
+ "Admin linkedin": "https://www.linkedin.com/in/aditi-gupta-464024324/",
+ "Admin github": "https://github.com/AditiGupta-tech",
+ "Tech stack": "Frontend: Nextjs (javascript), tailwindCss; Backend: mongodb and Nextjs (via routes and API); Auth: bcryptjs, jwt; AI integration: Gemini API; Deployment: Vercel; Version Control: Github",
+ "mentor 1": "Gopichand Dandimeni",
+ "mentor 1 github": "https://github.com/Gooichand",
+ "mentor 1 linkedin": "https://www.linkedin.com/in/gopichand-dandimeni-269709287/",
+ "keyword": "phase2"
+ },
+ {
+ "Project name": "Code Guardian",
+ "Project description": "Advanced AI-powered static code analysis platform that helps developers identify security vulnerabilities, code quality issues, and maintainability concerns in their codebase",
+ "Project link": "https://github.com/Xenonesis/code-guardian-report.git",
+ "Project admin": "Aditya",
+ "Admin linkedin": "https://www.linkedin.com/in/itisaddy/",
+ "Admin github": "https://github.com/Xenonesis",
+ "Tech stack": "react, python,shadcn,framer motion",
+ "mentor 1": "Hemanshu",
+ "mentor 1 github": "https://github.com/HemanshuMandhana",
+ "mentor 1 linkedin": "https://www.linkedin.com/in/hemanshu-mandhana-039601264/",
+ "keyword": "phase2"
+ },
+ {
+ "Project name": "Travel agency",
+ "Project description": "Travel Agency is a full-stack travel website built with the MERN stack (MongoDB, Express, React, Node.js) to help you explore and book amazing travel destinations with ease.\n \n Whether you're planning a quick weekend escape, a relaxing family holiday, or a thrilling adventure, our platform offers something for everyone. You can browse beautiful destinations, discover curated travel packages, and book your dream trips all in one place.\n \n Our goal is to make travel planning simple, inspiring, and fun. We believe that everyone deserves to experience new places and create unforgettable memories, and were here to make that happen for you.\n \n Start exploring today and let your next adventure begin!",
+ "Project link": "https://github.com/adityakalburgi/Travel_ageny_website",
+ "Project admin": "ADITYA KALBURGI",
+ "Admin linkedin": "www.linkedin.com/in/adityakalburgi",
+ "Admin github": "www.github.com/adityakalburgi",
+ "Tech stack": "MERN (MongoDB, expressJS, ReactJS, NodeJS)",
+ "mentor 1": "Shivangi Suyash",
+ "mentor 1 github": "https://github.com/Shivangi10-10",
+ "mentor 1 linkedin": "https://www.linkedin.com/in/shivangi-suyash-05a484259",
+ "mentor 2": "Tejash rajput",
+ "mentor 2 github": "https://github.com/tejash111",
+ "Mentor 2 linkedin": "https://www.linkedin.com/in/tejashrajput/",
+ "keyword": "phase2"
+ },
+ {
+ "Project name": "Simplylang",
+ "Project description": "SimplyLang provides a friendly programming using natural language helps kids learn code much faster .",
+ "Project link": "github.com/AffanShaikhsurab/simplylang",
+ "Project admin": "Affan Shaikhsurab",
+ "Admin linkedin": "https://in.linkedin.com/in/affanshaikhsurab",
+ "Admin github": "https://github.com/AffanShaikhsurab",
+ "Tech stack": "Python , JavaScript, React",
+ "mentor 1": "Sarthak Upadhyay",
+ "mentor 1 github": "https://github.com/externref",
+ "mentor 1 linkedin": "https://linkedin.com/in/defsarthak",
+ "keyword": "phase2"
+ },
+ {
+ "Project name": "Old School Game",
+ "Project description": "Step back in time with Old School Game, where classic games meet modern-day brain training! Sharpen your mind and have fun with nostalgic games, all designed to boost your cognitive power and keep your brain in top shape.",
+ "Project link": "https://github.com/ajaynegi45/Old-School-Game",
+ "Project admin": "Ajay Negi",
+ "Admin linkedin": "https://www.linkedin.com/in/ajaynegi45",
+ "Admin github": "https://github.com/ajaynegi45",
+ "Tech stack": "Next.js, Typescript, Javascript, Socket.io, HTML, CSS",
+ "mentor 1": "Gopichand Dandimeni",
+ "mentor 1 github": "https://github.com/Gooichand",
+ "mentor 1 linkedin": "https://www.linkedin.com/in/gopichand-dandimeni-269709287/",
+ "keyword": "phase2"
+ },
+ {
+ "Project name": "GitSearch",
+ "Project description": "GitSearch is an Android app built with Kotlin and Jetpack Compose that lets users search and view GitHub profiles using the GitHub REST API, featuring MVVM architecture, Retrofit, and Hilt for clean and scalable development.",
+ "Project link": "https://github.com/Ajay-patidar0/GitSearch",
+ "Project admin": "Ajay Patidar",
+ "Admin linkedin": "https://www.linkedin.com/in/ajay-patidarit/",
+ "Admin github": "https://github.com/Ajay-patidar0",
+ "Tech stack": "Kotlin and Jetpack Compose",
+ "mentor 1": "Navdeep Kaur",
+ "mentor 1 github": "https://github.com/Navdeep-lab",
+ "mentor 1 linkedin": "https://www.linkedin.com/in/navdeep-kaur-057258312",
+ "keyword": "phase2"
+ },
+ {
+ "Project name": "Statify",
+ "Project description": "Statify is a minimalistic, theme-based web application designed for seamless role-based authentication and tracking services like websites, APIs, and databases. The application features a clean and intuitive user interface with enhanced user authentication powered by Clerk and database management using Prisma ORM with Neon.",
+ "Project link": "https://github.com/AkashJana18/statify",
+ "Project admin": "Akash Jana",
+ "Admin linkedin": "https://linkedin.com/in/akashjana",
+ "Admin github": "https://github.com/AkashJana18",
+ "Tech stack": "Next.js Node.js tailwind Clerk NeonDB Prisma Orm",
+ "mentor 1": "Siddhartha Kunwar",
+ "mentor 1 github": "https://github.com/x0lg0n",
+ "mentor 1 linkedin": "https://www.linkedin.com/in/siddhartha-kunwar",
+ "keyword": "phase2"
+ },
+ {
+ "Project name": "Hostel Cart Kanpur",
+ "Project description": "HostelCart Kanpur is a fun student-to-student marketplace where hostelites buy, sell, and barter daily essentials with full Kanpuriya swag.",
+ "Project link": "https://github.com/akhileshverma92/hostlecartkanpur",
+ "Project admin": "Akhilesh verma",
+ "Admin linkedin": "https://www.linkedin.com/in/akhileshx/",
+ "Admin github": "https://github.com/akhileshverma92",
+ "Tech stack": "Reactjs and Appwrite",
+ "mentor 1": "Yash Vikram",
+ "mentor 1 github": "https://github.com/yashvikram30",
+ "mentor 1 linkedin": "https://www.linkedin.com/in/yashvikram30?utm_source=share&utm_campaign=share_via&utm_content=profile&utm_medium=android_app",
+ "keyword": "phase2"
+ },
+ {
+ "Project name": "fingerprint-oss",
+ "Project description": "A Blazingly fast simple client-side fingerprinting library that logs user information, fingerprint users. Backed by cloudflare oss.",
+ "Project link": "https://github.com/IntegerAlex/fingerprint-oss",
+ "Project admin": "Akshat kotpalliwar (alias IntegerAlex)",
+ "Admin linkedin": "https://www.linkedin.com/in/akshat-kotpalliwar/",
+ "Admin github": "https://github.com/IntegerAlex/",
+ "Tech stack": "Typescript and JavaScript",
+ "mentor 1": "Harshendra M",
+ "mentor 1 github": "https://github.com/harshendram",
+ "mentor 1 linkedin": "https://www.linkedin.com/in/harshendra-m-2b8bb5299/",
+ "mentor 2 github": "Shashwat Ranjan",
+ "Mentor 2 linkedin": "https://share.google/lgDqyjZxEdS0nXcJg",
+ "mentor 3": "https://www.linkedin.com/in/shashwat-ranjan-6a157728a?utm_source=share&utm_campaign=share_via&utm_content=profile&utm_medium=android_app",
+ "keyword": "phase2"
+ },
+ {
+ "Project name": "Blok",
+ "Project description": "Blok is a new kind of backend development. Most backend frameworks focus on features. Blok focuses on clarity. It gives developers the power to build modular, testable, observable systems from the ground upwithout having to adopt complex orchestration platforms or serverless lock-in. As a Blok developer, you dont build backends by routing HTTP requests into controllers. You build workflows composed of focused nodes, observe them in real time, test each unit independently, and deploy them across runtimes or teams.",
+ "Project link": "https://github.com/deskree-inc/blok",
+ "Project admin": "Akshat Sharma",
+ "Admin linkedin": "https://www.linkedin.com/in/akshat-sharma11",
+ "Admin github": "https://github.com/Akshat111111",
+ "Tech stack": "Typescript, Python, Node js",
+ "mentor 1": "Harshit Pandey",
+ "mentor 1 github": "https://github.com/harshit1142",
+ "mentor 1 linkedin": "https://www.linkedin.com/in/harshit-pandey-312b78245/",
+ "keyword": "phase2"
+ },
+ {
+ "Project name": "Eduhaven",
+ "Project description": "Education Platform",
+ "Project link": "https://github.com/EduHaven/EduHaven",
+ "Project admin": "Aman Sharma",
+ "Admin linkedin": "https://www.linkedin.com/in/aman-sharma-84156a289?utm_source=share&utm_campaign=share_via&utm_content=profile&utm_medium=android_app",
+ "Admin github": "https://github.com/amandollar",
+ "Tech stack": "MERN",
+ "mentor 1": "Shivangi Suyash",
+ "mentor 1 github": "https://github.com/Shivangi10-10",
+ "mentor 1 linkedin": "https://www.linkedin.com/in/shivangi-suyash-05a484259",
+ "mentor 2": "gopichand dandimeni",
+ "mentor 2 github": "https://github.com/Gooichand",
+ "Mentor 2 linkedin": "https://www.linkedin.com/in/gopichand-dandimeni-269709287/",
+ "keyword": "phase2"
+ },
+ {
+ "Project name": "DevNotes",
+ "Project description": "DevNotes is a structured and beautifully designed learning hub for mastering full-stack web development. It covers everything from Frontend (HTML, CSS, JavaScript, React, Tailwind CSS) and Backend (Node.js, Express, MongoDB) to Deployment strategies and Miscellaneous dev topics.",
+ "Project link": "https://github.com/Amarjha01/DevNotes",
+ "Project admin": "Amar jha",
+ "Admin linkedin": "https://www.linkedin.com/in/amarjha01/",
+ "Admin github": "https://github.com/Amarjha01/",
+ "Tech stack": "React.js , Tailwind css , Framer motion, GitHub action,",
+ "mentor 1": "gopichand dandimeni",
+ "mentor 1 github": "https://github.com/Gooichand",
+ "mentor 1 linkedin": "https://www.linkedin.com/in/gopichand-dandimeni-269709287/",
+ "mentor 2": "Sonam Kumari",
+ "mentor 2 github": "https://github.com/SonamKumari29",
+ "Mentor 2 linkedin": "https://www.linkedin.com/in/sonam-kumari-084641257/",
+ "keyword": "phase2"
+ },
+ {
+ "Project name": "Cat Sanctuary - A Horror First-Person Game",
+ "Project description": "Cat Sanctuary is a horror-themed first-person game set in a haunted cat sanctuary. The player, a new caretaker, uncovers a dark mystery involving cursed spirits, eerie events, and the remains of a previous caretaker. The mission is to collect remains of that caretaker scattered across the map and bury them to break the curse and save the cats.\n The game is built in Unity using custom C# scripts, shader graph visual effects, ambient sound design, and post-processing for atmosphere. GSSoC contributors can work on gameplay improvements, level design, optimizing scripts, adding features like new enemy AI or save/load mechanics, and porting the game to other platforms.",
+ "Project link": "https://github.com/Amna-Hassan04/Cat-Sanctuary",
+ "Project admin": "Amna Hassan",
+ "Admin linkedin": "https://www.linkedin.com/in/amna-hassan-143b76202/",
+ "Admin github": "https://github.com/Amna-Hassan04",
+ "Tech stack": "Unity Engine(2020.3.20f1), C#, Unity Shader Graph, Unity URP (Universal Render Pipeline), Post-processing stack, Git & GitHub for version control, itch.io for game deployment",
+ "mentor 1": "Ashutosh Kumar",
+ "mentor 1 github": "https://github.com/AshutoshStark",
+ "mentor 1 linkedin": "https://www.linkedin.com/in/ashutosh-kumar-046b04236",
+ "keyword": "phase2"
+ },
+ {
+ "Project name": "EduGaurd",
+ "Project description": "To reduce student dropout rate we make a student mentor website use the ml model and predict the student dropout condition",
+ "Project link": "https://github.com/JIGEESHA-ANAGANI/MST-LAB",
+ "Project admin": "ANAGANI JIGEESHA",
+ "Admin linkedin": "https://www.linkedin.com/jigeeshaa",
+ "Admin github": "https://github.com/JIGEESHA-ANAGANI",
+ "Tech stack": "Machine learning, mean stack , js , RestApi",
+ "mentor 1": "Kosaraju joshitha",
+ "mentor 1 github": "https://www.linkedin.com/in/joshitha-kosaraju?utm_source=share&utm_campaign=share_via&utm_content=profile&utm_medium=android_app",
+ "mentor 1 linkedin": "https://github.com/joshitha5g4",
+ "mentor 2": "Vishwajeet Kumar",
+ "mentor 2 github": "https://github.com/wivk-tech",
+ "Mentor 2 linkedin": "https://www.linkedin.com/in/wivk-tech/",
+ "keyword": "phase2"
+ },
+ {
+ "Project name": "VIDEOMEET",
+ "Project description": "A video conferencing app with calls, screen sharing, and messaging using React, TypeScript, and WebRTC.\n real-time, low-latency communication via WebSockets for seamless user interaction.\n JWT authentication, meeting scheduling, and deployed the app on Railway for public use",
+ "Project link": "https://github.com/Ananta025/VIDEO_MEET",
+ "Project admin": "Ananta Chandra Das",
+ "Admin linkedin": "https://www.linkedin.com/in/ananta-chandra-das",
+ "Admin github": "https://github.com/Ananta025",
+ "Tech stack": "Reactjs, Typescript, WebRTC, socket io, MongoDB,Nodejs",
+ "mentor 1": "Nipun Bansal",
+ "mentor 1 github": "https://www.linkedin.com/in/nipun-bansal-1a8270305/",
+ "mentor 2": "Sonam Kumari",
+ "mentor 2 github": "https://github.com/SonamKumari29",
+ "Mentor 2 linkedin": "https://www.linkedin.com/in/sonam-kumari-084641257/",
+ "keyword": "phase2"
+ },
+ {
+ "Project name": "ScheduleX",
+ "Project description": "ScheduleX: Your Smart Timetable, Attendance Markings and Task Reminders App\n ScheduleX is a sleek, cross-platform application built with React Native, designed to simplify your academic and personal scheduling. From generating intelligent timetables to tracking attendance, ScheduleX is the only tool you need to stay organized and on top of your commitments. Of course, here is a project description for your ScheduleX app, based on the details you provided.\n \n Key Features\n AI Timetable Generation: Say goodbye to manual scheduling! Instantly generate a perfectly optimized timetable based on your custom inputs or by simply uploading a CSV file.\n \n Effortless Attendance Tracking: Easily monitor and manage your attendance for any class or event. Set custom alerts to notify you when your attendance drops below a certain threshold.\n \n Seamless Schedule Sharing: Share your timetable with friends or colleagues effortlessly. They can import your entire schedule into their app in seconds, no manual entry required.\n \n Integrated Task Management: Keep track of your assignments and to-dos with our built-in task manager. Add, manage, and check off tasks to stay productive and accountable.\n \n Dynamic Timetable Management: Life changes, and so should your schedule. Create, edit, and organize multiple timetables with an intuitive and flexible interface.\n \n Real-Time Cloud Sync: Your schedule, always with you. Keep your data seamlessly synchronized across all your devices.\n \n Task Chat: A Chat like interface to provide you one safe location to save all your shopping list, academic reminders, assignments and more removing the clutter we make on whatsapp",
+ "Project link": "https://github.com/Loop-Hive/ScheduleX",
+ "Project admin": "Anirudh Sharma",
+ "Admin linkedin": "https://www.linkedin.com/in/anisharma002/",
+ "Admin github": "https://github.com/anisharma07",
+ "Tech stack": "React Native, Typescript, CSS, Firebase, Zustand, Google Genai, Figma",
+ "mentor 1": "Irtesaam Atfi",
+ "mentor 1 github": "https://github.com/Irtesaam",
+ "mentor 1 linkedin": "https://linkedin.com/in/irtesaam",
+ "keyword": "phase2"
+ },
+ {
+ "Project name": "STYLEKA",
+ "Project description": "Fashion E-commerce Website",
+ "Project link": "https://www.github.com/SAMBUDAR/Styleka",
+ "Project admin": "Aniket Khullar",
+ "Admin linkedin": "https://www.linkedin.com/in/aniket-khullar-b3912424b?utm_source=share&utm_campaign=share_via&utm_content=profile&utm_medium=android_app",
+ "Admin github": "https://github.com/SAMBUDAR",
+ "Tech stack": "HTML CSS NODEJS",
+ "mentor 1": "Palak Dwivedi",
+ "mentor 1 github": "https://github.com/Palak2506",
+ "mentor 1 linkedin": "https://www.linkedin.com/in/palak-dwivedi1/",
+ "keyword": "phase2"
+ },
+ {
+ "Project name": "CinderPeak",
+ "Project description": "CinderPeak is a fast and efficient, open-source C++ graph library designed to handle directed, undirected, and mixed graphs with customizable vertex and edge types. Built with modern C++ (C++17/C++20), it offers a flexible, templated API for graph manipulation and analysis. The library includes an integrated visualization engine powered by SFML, enabling intuitive graph rendering for visual insights. CinderPeak is thread-safe, portable, and optimized for integration into larger projects, making it ideal for graph theory applications, data analysis, and network modeling.",
+ "Project link": "https://github.com/SharonIV0x86/CinderPeak",
+ "Project admin": "Anirudh Lakhanpal",
+ "Admin linkedin": "https://www.linkedin.com/in/lanirudh/",
+ "Admin github": "https://github.com/SharonIV0x86/",
+ "Tech stack": "C++",
+ "mentor 1": "Tanvi",
+ "mentor 1 github": "https://github.com/Twii108",
+ "mentor 1 linkedin": "https://www.linkedin.com/in/tanvi-viroliya-553217318?utm_source=share&utm_campaign=share_via&utm_content=profile&utm_medium=android_app",
+ "mentor 2": "Nipun Bansal",
+ "mentor 2 github": "https://github.com/Nipun-11",
+ "Mentor 2 linkedin": "https://www.linkedin.com/in/nipun-bansal-1a8270305/",
+ "keyword": "phase2"
+ },
+ {
+ "Project name": "Retail with purpose: Building a sustainable and responsible future",
+ "Project description": "Sustainability is no longer an optionit a necessity. As consumers demand more eco-conscious choices, retailers must reimagine their operations to reduce waste, lower carbon footprints and create a more responsible supply chain. From sustainable sourcing and eco-friendly packaging to energy-efficient store designs and AI-driven waste reduction, innovation is transforming how businesses operate while ensuring long-term environmental and economic benefits.\n \n Walmart is at the forefront of this shift, leveraging AI to optimize supply chains and minimize waste. Their collaboration with GreenPod Labs is revolutionizing the way fresh produce is stored and transported, extending shelf life and significantly reducing food waste. These AI-powered strategies are ensuring fresher products, less spoilage and a more efficient distribution process, setting a new standard for sustainability in retail. Read more here.\n \n Beyond food sustainability, retailers are embracing circular economy models, closed-loop recycling systems and smart energy management to reduce emissions and drive impact at scale. The future of retail is not just about selling productsit about creating a positive, lasting impact on the planet and society.\n \n Think of solutions that retail businesses can leverage to push the boundaries of sustainability. Can your ideas lead to innovations in green logistics, zero-waste supply chains, ethical sourcing or carbon-neutral retail operations? Think beyond today solutions and help shape a smarter, greener and more responsible future for retail.",
+ "Project link": "https://github.com/Gssoc-2025/co-supply-ai/tree/main",
+ "Project admin": "Anjali Jaiswal",
+ "Admin linkedin": "https://www.linkedin.com/in/anjali-jaiswal-442b0b251/",
+ "Admin github": "https://github.com/ANJALIJAISWAL4213",
+ "Tech stack": "The project backbone is a Python 3.11, FastAPI driven microservice architecture that stores geospatial data in PostgreSQL with PostGIS, while HyperledgerFabric secures supplychain provenance on a private blockchain. Machinelearning services run on PyTorch, using Prophet for timeseries demand forecasting, GoogleORTools for lowcarbon route optimisation, and YOLOv8 computervision models to detect spoilage. Highthroughput data streams move through Kafka, lightweight sensor events travel via MQTT, and Redis accelerates caching and job queues. A modern TypeScript front end built with Next.js14 and styled with TailwindCSS visualises insights through Recharts dashboards. Everything ships in DockerCompose, integrates with GitHubActions for CI/CD, and can be provisioned to AWSEKS using Terraform.",
+ "mentor 1": "Gopichand Dandimeini",
+ "mentor 1 github": "https://github.com/Gooichand",
+ "mentor 1 linkedin": "https://www.linkedin.com/in/gopichand-dandimeni-269709287/",
+ "keyword": "phase2"
+ },
+ {
+ "Project name": "DevSync",
+ "Project description": "DevSync is an open-source developer productivity dashboard that aggregates coding activity from platforms like GitHub, LeetCode, and Codeforces. It helps developers track their growth, visualize progress with heatmaps and streaks, and stay consistent all in one unified interface",
+ "Project link": "https://github.com/DevSyncx/DevSync.git",
+ "Project admin": "Annanya Tiwary",
+ "Admin linkedin": "https://www.linkedin.com/in/annanyatiwary4/",
+ "Admin github": "https://github.com/Annanyatiwary4",
+ "Tech stack": "Frontend: React, Tailwind CSS, Shadcn UI\n Backend: Node.js, Express.js\n Database: MongoDB\n Auth: JWT / OAuth\n Deployment: Vercel (Frontend), Render (Backend)",
+ "mentor 1": "Shirshendu R Tripathi",
+ "mentor 1 github": "https://github.com/ShirshenduR",
+ "mentor 1 linkedin": "https://linkedin.com/in/shirshendur",
+ "keyword": "phase2"
+ },
+ {
+ "Project name": "GameOn",
+ "Project description": "Basically it is the sports meetup app for tge players so that can play and connect in their free time.",
+ "Project link": "https://github.com/AnshulPanwarr/g1new",
+ "Project admin": "Anshul Panwar",
+ "Admin linkedin": "https://www.linkedin.com/in/anshul-panwarrr",
+ "Admin github": "https://github.com/AnshulPanwarr/g1new",
+ "Tech stack": "Android SDK,java,kotlin,jetpack compose,spring boot,figma",
+ "mentor 1": "Navdeep Kaur",
+ "mentor 1 github": "https://github.com/Navdeep-lab",
+ "mentor 1 linkedin": "https://www.linkedin.com/in/navdeep-kaur-057258312",
+ "keyword": "phase2"
+ },
+ {
+ "Project name": "Build on Coffee",
+ "Project description": "An open source platform consisting curated lists of free resourses workshops and tools which helps computer science students to learn",
+ "Project link": "https://github.com/anup2702/build-on-coffee",
+ "Project admin": "Anup Kumar",
+ "Admin linkedin": "https://linkedin.com/in/anup001",
+ "Admin github": "hhtps://github.com/anup2701",
+ "Tech stack": "MERN",
+ "mentor 1": "Nisha Yadav",
+ "mentor 1 github": "https://github.com/Nishagithubrit",
+ "mentor 1 linkedin": "https://www.linkedin.com/in/nisha-yadav-08b71325a",
+ "keyword": "phase2"
+ },
+ {
+ "Project name": "Creators-Space",
+ "Project description": "Creators-Space is an open-source modern tech-learning platform created to empower students and professionals through high-quality content and career-oriented resources",
+ "Project link": "https://github.com/Creators-Space/Creators-Space",
+ "Project admin": "Anurag Vishwakarma",
+ "Admin linkedin": "https://linkedin.com/in/anuragvishwakarma",
+ "Admin github": "https://github.com/vishanurag",
+ "Tech stack": "HTML, CSS, JavaScript",
+ "mentor 1": "Shivangi Suyash",
+ "mentor 1 github": "https://github.com/Shivangi10-10",
+ "mentor 1 linkedin": "https://www.linkedin.com/in/shivangi-suyash-05a484259",
+ "mentor 2": "Rahma Khan",
+ "mentor 2 github": "https://github.com/Rahma5983",
+ "Mentor 2 linkedin": "https://www.linkedin.com/in/rahma-naqui",
+ "mentor 3": "Anshi Agrawal",
+ "mentor 3 github": "https://github.com/anshiagrawal22",
+ "mentor 3 linkedin": "https://www.linkedin.com/in/anshiagrawal22/",
+ "keyword": "phase2"
+ },
+ {
+ "Project name": "Canvas-Editor",
+ "Project description": "This is a simple beginner friendly web project that is made with an aim to learn about canvas element of html. Now, this project is open to all of the amazing contributors.",
+ "Project link": "https://github.com/vishanurag/Canvas-Editor/",
+ "Project admin": "Anurag Vishwakarma",
+ "Admin linkedin": "https://www.linkedin.com/in/anuragvishwakarma/",
+ "Admin github": "https://github.com/vishanurag/",
+ "Tech stack": "HTML, CSS, Bootstrap, JavaScript",
+ "mentor 1": "Shirshendu R Tripathi",
+ "mentor 1 github": "https://github.com/ShirshenduR",
+ "mentor 1 linkedin": "https://linkedin.com/in/shirshendur",
+ "keyword": "phase2"
+ },
+ {
+ "Project name": "Netflix Clone",
+ "Project description": "This netflix clone is prepared by using HTML, CSS, and Javascript",
+ "Project link": "https://github.com/Aqsa4066/netflixclone",
+ "Project admin": "Aqsa Choudhary",
+ "Admin linkedin": "https://www.linkedin.com/in/aqsa-choudhary-011ba6304?utm_source=share&utm_campaign=share_via&utm_content=profile&utm_medium=android_app",
+ "Admin github": "https://github.com/Aqsa4066",
+ "Tech stack": "C++, Java, HTML, CSS, Javascript, VS Code, GitHub",
+ "mentor 1": "Rahma Khan",
+ "mentor 1 github": "https://www.linkedin.com/in/rahma-naqui",
+ "mentor 1 linkedin": "https://github.com/Rahma5983",
+ "mentor 2": "Nipun Bansal",
+ "mentor 2 github": "https://github.com/Nipun-11",
+ "Mentor 2 linkedin": "https://www.linkedin.com/in/nipun-bansal-1a8270305/",
+ "keyword": "phase2"
+ },
+ {
+ "Project name": "Student Grade tracker",
+ "Project description": "A simple Python-based CLI app to manage student grades add marks, calculate average, highest, and lowest scores all stored locally in a clean JSON format. Perfect for beginners learning Python and file handling.",
+ "Project link": "https://github.com/Archita0905/Student-Grade-Tracker",
+ "Project admin": "Archita",
+ "Admin linkedin": "https://www.linkedin.com/in/archita-70a688316",
+ "Admin github": "https://github.com/Archita0905",
+ "Tech stack": "python",
+ "mentor 1": "Tanvi",
+ "mentor 1 github": "https://github.com/Twii108",
+ "mentor 1 linkedin": "https://www.linkedin.com/in/tanvi-viroliya-553217318?utm_source=share&utm_campaign=share_via&utm_content=profile&utm_medium=android_app",
+ "keyword": "phase2"
+ },
+ {
+ "Project name": "Javaistic",
+ "Project description": "Javaistic is an open source, comprehensive website for learning Java programming, packed with detailed information and programs covering everything from basics to advanced topics, including arrays, strings, 2D arrays, recursion, matrices, and more.",
+ "Project link": "https://github.com/javaistic/javaistic",
+ "Project admin": "Arghya Ghosh",
+ "Admin linkedin": "https://linkedin.com/in/uiuxarghya",
+ "Admin github": "https://github.com/uiuxarghya",
+ "Tech stack": "Next.JS, Tailwind CSS, MDX, MongoDB, BetterAuth, shadcn/ui, algolia, etc.",
+ "mentor 1": "Gaurav Kesh Roushan",
+ "mentor 1 github": "https://github.com/gauravkesh",
+ "mentor 1 linkedin": "https://linkedin.com/in/gkrcoder",
+ "keyword": "phase2"
+ },
+ {
+ "Project name": "Jarvis- AI assistant",
+ "Project description": "Jarvis is a Python-based virtual AI assistant designed to perform tasks through voice commands. It can greet the user, search information on Google or Wikipedia, provide weather updates, open websites and applications, send emails, and control basic system functions like playing music or shutting down the PC. Using libraries like SpeechRecognition and pyttsx3, Jarvis offers an interactive experience that simulates a smart personal assistant, making everyday tasks easier and more efficient.",
+ "Project link": "github.com/Arpitgarg07/Jarvis",
+ "Project admin": "Arpit garg",
+ "Admin linkedin": "https://in.linkedin.com/in/arpitgarg5689",
+ "Admin github": "http://github.com/Arpitgarg07",
+ "Tech stack": "python3 and libraries",
+ "mentor 1": "Prabhat Yadav",
+ "mentor 1 github": "https://github.com/Prabhatyadav60",
+ "mentor 1 linkedin": "https://www.linkedin.com/in/prabhat-yadav-404b7727a/",
+ "keyword": "phase2"
+ },
+ {
+ "Project name": "FitFinder : Internships and Scholarships",
+ "Project description": "It is a smart platform that helps students discover real internships, scholarships, and programs that actually match their profile. You fill in a simple form (skills, major, GPA, location), and it shows you the best-fit opportunities along with a \"chance score\" like Low, Medium, or High.\n \n Plus, past users can share how they got in and what helped them, so others can learn and apply with more confidence!",
+ "Project link": "github.com/Code-social/fitfinder",
+ "Project admin": "Arushi Malhotra",
+ "Admin linkedin": "https://www.linkedin.com/in/malhotra-arushi/",
+ "Admin github": "https://github.com/arushi2610",
+ "Tech stack": "HTML, CSS, JS, REACT, NODEJS, FIREBASE",
+ "mentor 1": "Piyush Sharma",
+ "mentor 1 github": "https://github.com/daksh-ugi",
+ "mentor 1 linkedin": "http://www.linkedin.com/in/piyush-ugi/",
+ "mentor 2": "Abhijit Dattatray Ugalmogale",
+ "mentor 2 github": "https://github.com/Abhijitugalmogale",
+ "Mentor 2 linkedin": "https://www.linkedin.com/in/abhijitugalmogale/",
+ "keyword": "phase2"
+ },
+ {
+ "Project name": "FitFinder : Internships and Scholarships",
+ "Project description": "It is a smart platform that helps students discover real internships, scholarships, and programs that actually match their profile. You fill in a simple form (skills, major, GPA, location), and it shows you the best-fit opportunities along with a \"chance score\" like Low, Medium, or High.\n \n Plus, past users can share how they got in and what helped them, so others can learn and apply with more confidence!",
+ "Project link": "github.com/Code-social/fitfinder",
+ "Project admin": "Arushi Malhotra",
+ "Admin linkedin": "https://www.linkedin.com/in/malhotra-arushi/",
+ "Admin github": "https://github.com/arushi2610",
+ "Tech stack": "HTML, CSS, JS, REACT, NODEJS, FIREBASE",
+ "mentor 1": "Arbin Mahato",
+ "mentor 1 github": "https://github.com/arbin-mahato",
+ "mentor 1 linkedin": "https://www.linkedin.com/in/arbin-mahato/",
+ "keyword": "phase2"
+ },
+ {
+ "Project name": "ThinkDSA Extension",
+ "Project description": "AI-powered LeetCode companion that provides intelligent hints, scores your understanding, and helps you learn DSA concepts step-by-step",
+ "Project link": "https://github.com/itsaryanchauhan/ThinkDSA-Extension",
+ "Project admin": "Aryan Chauhan",
+ "Admin linkedin": "https://www.linkedin.com/in/itsaryanchauhan",
+ "Admin github": "https://github.com/itsaryanchauhan",
+ "Tech stack": "JavaScript ES6+, Chrome Extension API, Google Gemini AI, HTML5, CSS3",
+ "keyword": "phase2"
+ },
+ {
+ "Project name": "AI code detection",
+ "Project description": "Detect whether the code is AI generated or Human generated",
+ "Project link": "https://github.com/Aseema-s/AICodeDetection",
+ "Project admin": "Aseema S",
+ "Admin linkedin": "https://www.linkedin.com/in/aseema-s-71257932b?utm_source=share&utm_campaign=share_via&utm_content=profile&utm_medium=android_app",
+ "Admin github": "https://github.com/Aseema-s",
+ "Tech stack": "Python HTML CSS JavaScript",
+ "mentor 1": "Rahma Naqui",
+ "mentor 1 github": "https://github.com/Rahma5983",
+ "mentor 1 linkedin": "https://www.linkedin.com/in/rahma-naqui",
+ "mentor 2": "Anshi Agrawal",
+ "mentor 2 github": "https://github.com/anshiagrawal22",
+ "Mentor 2 linkedin": "https://www.linkedin.com/in/anshiagrawal22/",
+ "keyword": "phase2"
+ },
+ {
+ "Project name": "pocketLIFE",
+ "Project description": "A place to look back at your life and write the present, with activity heatmap",
+ "Project link": "https://github.com/ashish-um/pocketLIFE",
+ "Project admin": "Ashish Umrao",
+ "Admin linkedin": "https://www.linkedin.com/in/ashish-um",
+ "Admin github": "https://www.github.com/ashish-um",
+ "Tech stack": "MERN stack",
+ "mentor 1": "Satyajeet Nayak",
+ "mentor 1 github": "https://github.com/isatyajeet9",
+ "mentor 1 linkedin": "https://www.linkedin.com/in/isatyajeet9/",
+ "keyword": "phase2"
+ },
+ {
+ "Project name": "DevDisplay",
+ "Project description": "The First Global Platform for Developers to Fulfill All Their Tech Needs.",
+ "Project link": "https://github.com/codeaashu/DevDisplay",
+ "Project admin": "Ashutosh Kumar",
+ "Admin linkedin": "https://www.linkedin.com/in/ashutoshkumaraashu/",
+ "Admin github": "https://github.com/codeaashu",
+ "Tech stack": "Full Stack Web Development ( MERN )",
+ "mentor 1": "Om Sherikar",
+ "mentor 1 github": "https://github.com/omsherikar",
+ "mentor 1 linkedin": "https://www.linkedin.com/in/omsherikar0229/",
+ "keyword": "phase2"
+ },
+ {
+ "Project name": "Hospital Management System",
+ "Project description": "Medimate 8.4.3 is a user-friendly healthcare application that streamlines the workflow of hospitals, clinics, and medical facilities. It efficiently manages patient information, appointments, laboratory management, and administrative tasks through its Electronic Health Record (EHR) system. The app also includes appointment scheduling, and invoicing, inventory management, and comprehensive reporting and analytics capabilities. It is web-based software, Medimate 8.4.3 can be accessed from any device with an internet connection.",
+ "Project link": "https://github.com/aashut0xhkr/HMS_PRJCT.git",
+ "Project admin": "Ashutosh Kumar",
+ "Admin linkedin": "www.linkedin.com/in/aashut0xh",
+ "Admin github": "www.github.com/aashut0xhkr",
+ "Tech stack": "Core Java, Java 8 features, Spring Boot, Hibernate JPA, Spring Security, JWT Token, MySQL database, Restful Services, Version control Git",
+ "mentor 1": "Tanvi",
+ "mentor 1 github": "https://github.com/Twii108",
+ "mentor 1 linkedin": "https://www.linkedin.com/in/tanvi-viroliya-553217318?utm_source=share&utm_campaign=share_via&utm_content=profile&utm_medium=android_app",
+ "mentor 2": "Sanjeet Raj",
+ "mentor 2 github": "https://github.com/Sanjeet4567",
+ "Mentor 2 linkedin": "https://www.linkedin.com/in/sanjeetraj40/",
+ "keyword": "phase2"
+ },
+ {
+ "Project name": "Project Xangoes",
+ "Project description": "A comprehensive full-stack system for managing college fests and events, designed to centralize event management, registration handling, and transaction tracking for educational institutions.",
+ "Project link": "https://github.com/dscnitrourkela/project-xangoes",
+ "Project admin": "Ayush",
+ "Admin linkedin": "https://wwwhttps://www.linkedin.com/in/dsc-nit-rourkela-949832337",
+ "Admin github": "https://github.com/dscnitrourkela",
+ "Tech stack": "Next.js, React, React DOM, TypeScript, Bun, Tailwind CSS, PostCSS, ESLint, Turbopack, Hono, PostgreSQL, Drizzle ORM, Drizzle Kit, Zod, dotenv, TSX, Git, Node.js types, pg (PostgreSQL driver)",
+ "mentor 1": "Rajdeep Mohanty",
+ "mentor 1 github": "https://github.com/rajdeep5901",
+ "mentor 1 linkedin": "https://www.linkedin.com/in/rajdeepmohanty/",
+ "keyword": "phase2"
+ },
+ {
+ "Project name": "Edutype",
+ "Project description": "Platform providing typing certifications (that can be minted as NFT) and featuring arenas to play with global players.",
+ "Project link": "https://github.com/aykansal/edutype",
+ "Project admin": "Ayush",
+ "Admin linkedin": "https://linkedin.com/in/aykansal",
+ "Admin github": "https://github.com/aykansal",
+ "Tech stack": "Nextjs, Express, Prisma, Thirdweb, Socketio, Tailwind, Shadcn",
+ "mentor 1": "Rudransh Pratap Singh",
+ "mentor 1 github": "https://github.com/CoderFleet",
+ "mentor 1 linkedin": "https://www.linkedin.com/in/rudransh-pratap-singh-5a6b72323",
+ "keyword": "phase2"
+ },
+ {
+ "Project name": "Natively UI",
+ "Project description": "The collection of best reusable React Native Ul components styled with Tailwind/Nativewind.",
+ "Project link": "https://github.com/Ayushhgupta39/natively-ui",
+ "Project admin": "Ayush Gupta",
+ "Admin linkedin": "a06a237/https://www.linkedin.com/in/ayush-gupta-b0a06a237/",
+ "Admin github": "https://github.com/Ayushhgupta39",
+ "Tech stack": "React Native, Expo, Nextjs, NativeWind, Tailwind, Turborepo",
+ "mentor 1": "Abdullah Jameel",
+ "mentor 1 github": "https://github.com/abdullahxyz85",
+ "mentor 1 linkedin": "https://www.linkedin.com/in/abdullahjameel94/",
+ "keyword": "phase2"
+ },
+ {
+ "Project name": "LinkNest",
+ "Project description": "A personal knowledge management application.",
+ "Project link": "github.com/ayushsoni02/LinkNest",
+ "Project admin": "Ayush Soni",
+ "Admin linkedin": "www.linkedin.com/in/as241",
+ "Admin github": "www.github.com/ayushsoni02",
+ "Tech stack": "react, nodejs, typescript, Mongodb",
+ "mentor 1": "Hussnain Ahmad",
+ "mentor 1 github": "https://github.com/itspsychocoder",
+ "mentor 1 linkedin": "https://linkedin.com/in/Hussnain-Ahmad/",
+ "mentor 2": "Huda Naaz",
+ "mentor 2 github": "https://github.com/hudazaan",
+ "Mentor 2 linkedin": "https://www.linkedin.com/in/hudanaaz17",
+ "keyword": "phase2"
+ },
+ {
+ "Project name": "HotelOnTouch",
+ "Project description": "Gssoc open source contribution",
+ "Project link": "https://github.com/ayan-biswas0412/gssoc2021-HotelOnTouch",
+ "Project admin": "Ayushman Mukherjee",
+ "Admin linkedin": "https://www.linkedin.com/in/ayushman-mukherjee-437a49314/",
+ "Admin github": "https://github.com/ayush585",
+ "Tech stack": "javascript, java, html, objective-C, Css, Ruby, Starlank",
+ "mentor 1": "Sri Hasnika Venigalla",
+ "mentor 1 github": "https://github.com/Sri-Hasnika",
+ "mentor 1 linkedin": "https://www.linkedin.com/in/sri-hasnika/",
+ "keyword": "phase2"
+ },
+ {
+ "Project name": "Shakti app",
+ "Project description": "Shakti is a safe, anonymous, and multilingual platform empowering survivors and everyday heroes to share their truths — through voice or text — in their own words and languages.",
+ "Project link": "https://github.com/my-projects-it/shakti-app",
+ "Project admin": "Barkha jain",
+ "Admin linkedin": "https://www.linkedin.com/in/barkha-jain-347738373",
+ "Admin github": "https://github.com/my-projects-it",
+ "Tech stack": "Python and Streamlit",
+ "mentor 1": "Snehashish Das",
+ "mentor 1 github": "https://github.com/Snehashish-Das",
+ "mentor 1 linkedin": "https://www.linkedin.com/in/snehashish-das-160359226/",
+ "keyword": "phase2"
+ },
+ {
+ "Project name": "AI Flow",
+ "Project description": "AI Flow is a web application that provides a suite of AI-powered productivity tools, including prompt enhancement, text summarization, code and SQL explanation, regex generation, language translation, and sentiment analysis. The platform features a modern, responsive interface, secure authentication, and integrates with the Gemini 2.0 Flash API for fast and accurate results. AI Flow is designed to help users streamline workflows, learn faster, and leverage artificial intelligence in everyday tasks.",
+ "Project link": "https://github.com/Jyotibrat/AI-Flow",
+ "Project admin": "Bindupautra Jyotibrat",
+ "Admin linkedin": "https://www.linkedin.com/in/bindupautra-jyotibrat",
+ "Admin github": "https://github.com/Jyotibrat",
+ "Tech stack": "TypeScript, React, Vite, Supabase, Gemini 2.0 Flash API, Blogger API",
+ "mentor 1": "K N Meghana",
+ "mentor 1 github": "https://github.com/meghanakn473",
+ "mentor 1 linkedin": "https://www.linkedin.com/in/meghanakn473",
+ "keyword": "phase2"
+ },
+ {
+ "Project name": "VoicePe",
+ "Project description": "Emphasize the social impact on daily wage workers.",
+ "Project link": "https://github.com/your-username/VoicePe",
+ "Project admin": "Biradar Vanshika",
+ "Admin linkedin": "https://www.linkedin.com/in/biradar-vanshika-8a153129a",
+ "Admin github": "https://github.com/Biradarvanshika",
+ "Tech stack": "React, Node.js, Supabase, Twilio, Tailwind CSS.",
+ "mentor 1": "Jiya Rathi",
+ "mentor 1 github": "https://github.com/Jiya-Rathi",
+ "mentor 1 linkedin": "https://www.linkedin.com/in/jiya-rathi/",
+ "keyword": "phase2"
+ },
+ {
+ "Project name": "ecopulse",
+ "Project description": "Rising heatwaves and air pollution are a growing threat to people and the \n \n Planet . Today solutions merely track numbers --- what we need are actionable, local steps",
+ "Project link": "https://github.com/ghosttrozan/EcoPulse",
+ "Project admin": "Bobbby",
+ "Admin linkedin": "https://www.linkedin.com/in/ghosttrozan?utm_source=share&utm_campaign=share_via&utm_content=profile&utm_medium=android_app",
+ "Admin github": "github.com/ghosttrozan",
+ "Tech stack": "Nextjs",
+ "mentor 1": "Meet Oza",
+ "mentor 1 github": "https://github.com/meetoza30",
+ "mentor 1 linkedin": "https://linkedin.com/in/meetoza30",
+ "keyword": "phase2"
+ },
+ {
+ "Project name": "BodyCraft-Gym",
+ "Project description": "BodyCraft Gym Welcome to BodyCraft Gym, your ultimate fitness destination! Mission Empowering individuals to sculpt their bodies, sharpen their minds, and unlock their full potential.",
+ "Project link": "https://github.com/BDutta18/BodyCraft-Gym",
+ "Project admin": "Bodhisatwa Dutta",
+ "Admin linkedin": "https://www.linkedin.com/in/bodhisatwa-dutta",
+ "Admin github": "https://github.com/BDutta18",
+ "Tech stack": "Html,Css",
+ "mentor 1": "Piyush Sharma",
+ "mentor 1 github": "https://github.com/daksh-ugi",
+ "mentor 1 linkedin": "https://www.linkedin.com/in/piyush-ugi/",
+ "keyword": "phase2"
+ },
+ {
+ "Project name": "RESUMELY",
+ "Project description": "The development of the AI Resume Builder was guided by a prompt engineering-based approach rather than training or fine-tuning a large model from scratch. Since large language models like GPT-3.5 or Gemini 1.5 are already pre-trained on vast corpora, we chose to utilize their capabilities through carefully crafted zero-shot and few-shot prompts to generate resume summaries, skill recommendations, and professional language formatting. This allowed us to build a highly functional and resource-efficient solution without requiring high computational power or extensive model training.\n \n We focused on iterative prompt design, where inputs from the user (education, skills, experience) are combined into a structured prompt that instructs the generative model to create a formal, concise resume summary. The main strategy was optimizing input instructions to yield the most humanlike and contextually appropriate output.",
+ "Project link": "https://resumely.streamlit.app/",
+ "Project admin": "Chhavi Bhalla",
+ "Admin linkedin": "https://www.linkedin.com/in/chhaviibhalla",
+ "Admin github": "https://github.com/chhavibhalla",
+ "Tech stack": "streamlit for ui , API integration , FPDF, prompt engineering",
+ "mentor 1": "Kumud Hasija",
+ "mentor 1 github": "https://github.com/Kumud-hasija",
+ "mentor 1 linkedin": "https://www.linkedin.com/in/kumud-hasija-060b172a2",
+ "keyword": "phase2"
+ },
+ {
+ "Project name": "amazon sales 2025",
+ "Project description": "here where the data is share from other organisation an i cleaned the data and visuvalized the data in powebi",
+ "Project link": "https://github.com/charantej-18/Amazon_sales",
+ "Project admin": "D charan teja",
+ "Admin linkedin": "https://www.linkedin.com/in/d-charan-teja-56729b2ba?utm_source=share&utm_campaign=share_via&utm_content=profile&utm_medium=ios_app",
+ "Admin github": "https://github.com/charantej-18",
+ "Tech stack": "powebi,data cleaning,visuvalization",
+ "mentor 1": "Gazal Singla",
+ "mentor 1 github": "https://github.com/Gazal-singla",
+ "mentor 1 linkedin": "https://www.linkedin.com/in/gazal-singla-08403b301",
+ "keyword": "phase2"
+ },
+ {
+ "Project name": "EcoConnect",
+ "Project description": "EcoConnect is an AI-powered gamified waste management platform that promotes sustainable habits through education, recognition, and community engagement. The platform leverages AI to recognize waste types from images, guides users on correct segregation, and awards green points redeemable for eco-friendly products or discounts. Users are also connected with nearby recycling vendors, NGOs, and municipal programs.\n \n EcoConnect aims to reduce landfill load, cut carbon emissions, and promote a circular economy by integrating behavior change with real-time tech and community-based incentives. It's scalable, inclusive, and built for India's diverse geography and digital literacy levels.",
+ "Project link": "https://github.com/Deepjyoti-coder/EcoConnect-",
+ "Project admin": "Deepjyoti Saha",
+ "Admin linkedin": "https://www.linkedin.com/in/deepjyotisaha102ab4647312?utm_source=share&utm_campaign=share_via&utm_content=profile&utm_medium=android_app",
+ "Admin github": "https://github.com/Deepjyoti-coder",
+ "Tech stack": "Frontend React.js, Tailwind CSS, Next.js\n Backend Node.js, Express.js\n Database MongoDB, Firebase Firestore\n AI/ML TensorFlow.js (browser-based inference), Python (waste classification model), OpenCV for image preprocessing\n Gamification & Rewards Custom Rule Engine, Firebase Cloud Functions\n Authentication Firebase Auth\n Cloud & Hosting Google Cloud Platform, Vercel\n APIs Google Maps API (vendor locator), REST APIs for user management & rewards\n Others GitHub for version control, Figma for UI/UX, Postman for API testing",
+ "mentor 1": "MEHULI BISWAS",
+ "mentor 1 github": "https://github.com/Sanchita76",
+ "mentor 1 linkedin": "https://www.linkedin.com/in/mehuli-biswas-817246334/",
+ "mentor 2": "Sarthak Upadhyay",
+ "mentor 2 github": "https://github.com/externref",
+ "Mentor 2 linkedin": "https://linkedin.com/in/defsarthak",
+ "mentor 3": "Tanyashri M",
+ "mentor 3 github": "https://www.linkedin.com/in/tanya-m-94a74a234?utm_source=share&utm_campaign=share_via&utm_content=profile&utm_medium=android_app",
+ "keyword": "phase2"
+ },
+ {
+ "Project name": "EcoConnect",
+ "Project description": "EcoConnect is a gamified, AI-powered platform that helps users segregate waste correctly, rewards them for eco-friendly actions, and connects them with local recyclers or NGOs. It turns everyday waste into impact by bridging the gap between individual habits and the circular economymaking sustainability simple, engaging, and rewarding.",
+ "Project link": "https://github.com/Deepjyoti-coder/EcoConnect-/tree/main",
+ "Project admin": "Deepjyoti Saha",
+ "Admin linkedin": "https://www.linkedin.com/in/deepjyotisaha102ab4647312?utm_source=share&utm_campaign=share_via&utm_content=profile&utm_medium=android_app",
+ "Admin github": "https://github.com/Deepjyoti-coder",
+ "Tech stack": "hmtl,css,js,type script",
+ "mentor 1": "Muhammad Hassam",
+ "mentor 1 github": "https://github.com/Shinjuro-svg",
+ "mentor 1 linkedin": "https://www.linkedin.com/in/hassam-dev",
+ "keyword": "phase2"
+ },
+ {
+ "Project name": "Eco-Store",
+ "Project description": "This project is a user-friendly platform dedicated to promoting sustainable living by offering a cursted selection of eco-friendly products. Beyond shopping, the website empowers users to make informed environmental choices with an integrated carbon footprint calculator that estimates the carbon impact of everyday items and activities. By combining green shopping with actionable insights, the site encourages conscious consumption and helps users contribute to a healthier planet.",
+ "Project link": "https://github.com/Devaki01/Eco",
+ "Project admin": "Devaki Joshi",
+ "Admin linkedin": "https://www.linkedin.com/in/devaki-joshi-033b6a307?utm_source=share&utm_campaign=share_via&utm_content=profile&utm_medium=android_app",
+ "Admin github": "https://github.com/Devaki01",
+ "Tech stack": "React, Express js, Node js, Mongo db, firebase",
+ "mentor 1": "Shirshendu R Tripathi",
+ "mentor 1 github": "https://github.com/ShirshenduR",
+ "mentor 1 linkedin": "https://linkedin.com/in/shirshendur",
+ "keyword": "phase2"
+ },
+ {
+ "Project name": "Rusticle",
+ "Project description": "A custom indie-first language interpreter in rust for Lin.",
+ "Project link": "https://github.com/thedevyashsaini/rusticle",
+ "Project admin": "Devyash Saini",
+ "Admin linkedin": "https://linkedin.com/in/thedevyashsaini",
+ "Admin github": "https://github.com/thedevyashsaini",
+ "Tech stack": "Rust",
+ "mentor 1": "Vaibhav",
+ "mentor 1 github": "https://github.com/v8v88v8v88",
+ "mentor 1 linkedin": "https://linkedin.com/in/v8v88v8v88",
+ "keyword": "phase2"
+ },
+ {
+ "Project name": "Smart Tourism Assistant",
+ "Project description": "An AI-powered web application that helps tourists explore Karnataka by recommending personalized places, restaurants, and cultural events. Built with a focus on local language support and smart itinerary planning.",
+ "Project link": "https://github.com/yourusername/smart-tourism-assistant",
+ "Project admin": "Dhanush B M",
+ "Admin linkedin": "https://www.linkedin.com/in/dhanush-bm-b162b4368?utm_source=share&utm_campaign=share_via&utm_content=profile&utm_medium=ios_app",
+ "Admin github": "https://github.com/dhanush-tech-ai-ml",
+ "Tech stack": "AI TOOLS",
+ "mentor 1": "Anvesha Singh",
+ "mentor 1 github": "https://github.com/ASingh2425",
+ "mentor 1 linkedin": "https://www.linkedin.com/in/anvesha-singh-3427202aa?utm_source=share&utm_campaign=share_via&utm_content=profile&utm_medium=android_app",
+ "keyword": "phase2"
+ },
+ {
+ "Project name": "Jeanne AI chatbot Project",
+ "Project description": "Jeanne AI A Full-Stack Conversational Chatbot\n \n Jeanne AI is an intelligent, interactive chatbot built with the power of OpenAI's GPT model, designed to mimic human-like conversation. It supports natural language understanding, typing animation, chat history, and optional voice input/output features making it feel alive, helpful, and personal.\n \n This project uses a Node.js + Express backend and a React (Vite) frontend, structured in a scalable client/ and server/ folder architecture. The backend handles secure API calls to OpenAI, while the frontend provides a smooth and responsive chat interface. It's deployed using Render (backend) and Vercel (frontend) for production.\n \nFeatures\n \n Chat interface powered by GPT (via OpenAI API)\n \n Typing animation for realistic feel\n \n Chat history retention\n \n Switchable roles/personalities (friendly, formal, etc.)\n \n Optional speech-to-text and text-to-speech\n \n Responsive, mobile-friendly UI\n \n \nWhy Jeanne?\n \n Jeanne is imagined as a gentle, thoughtful AI companion someone who listens, helps, and responds with care. The name gives the bot a human-like identity, making the experience more cozy and personal.",
+ "Project link": "https://github.com/revxi/Jeanne-AI-Chatbot-Project",
+ "Project admin": "Diksha Singh",
+ "Admin linkedin": "https://www.linkedin.com/in/diksha-singh-7405a81a9?utm_source=share&utm_campaign=share_via&utm_content=profile&utm_medium=android_app",
+ "Admin github": "https://github.com/revxi",
+ "Tech stack": "Jeanne AI Chatbot uses React.js, Vite, Tailwind CSS, Framer Motion, React Speech Recognition, Text-to-Speech API, Axios, Fetch API, Node.js, Express.js, OpenAI API, dotenv, CORS, body-parser, with the frontend deployed on Vercel and the backend on Render using a structured client/ and server/ folder system.",
+ "mentor 1": "Devesh Kumar Patel",
+ "mentor 1 github": "https://github.com/dev3z",
+ "mentor 1 linkedin": "https://www.linkedin.com/in/deveshkumarpatel/",
+ "keyword": "phase2"
+ },
+ {
+ "Project name": "LegalHuB AI-Powered Legal Help Platform",
+ "Project description": "LegalHuB is an AI-powered legal assistance platform designed to help users access legal information quickly and easily. It features a smart legal search engine, a legal dictionary, and state-specific document templates. Integrated with Chatbase AI, the platform enables intelligent responses to user queries while ensuring fast, reliable document retrieval.",
+ "Project link": "https://github.com/dipexplorer/LegalHuB",
+ "Project admin": "Dip Das",
+ "Admin linkedin": "https://www.linkedin.com/in/dip-jyoti22/",
+ "Admin github": "https://github.com/dipexplorer",
+ "Tech stack": "Backend: Node.js, Express.js\n \n Database: MongoDB\n \n AI Integration: Chatbase AI\n \n Frontend (Optional/Future Scope): React.js\n \n Security: JWT, RBAC\n \n Version Control: Git & GitHub",
+ "mentor 1": "Sanskar Bhardwaj",
+ "mentor 1 github": "https://github.com/Quantsanskar",
+ "mentor 1 linkedin": "https://www.linkedin.com/in/sanskar-bhardwaj-618b82244?lipi=urn%3Ali%3Apage%3Ad_flagship3_profile_view_base_contact_details%3B3toz2nbTSJOH9qVC%2B1TgHA%3D%3D",
+ "keyword": "phase2"
+ },
+ {
+ "Project name": "ZBOT",
+ "Project description": "Its a personal AI agent like harvis used to automate stuffs",
+ "Project link": "https://github.com/DishaA06/ZBOT",
+ "Project admin": "Disha Oza",
+ "Admin linkedin": "https://www.linkedin.com/in/disha-oza-bba48928a",
+ "Admin github": "https://github.com/DishaA06",
+ "Tech stack": "Python",
+ "mentor 1": "Nehal Dhawan",
+ "mentor 1 github": "https://github.com/NEHALDHAWAN21",
+ "mentor 1 linkedin": "https://www.linkedin.com/in/nehal-dhawan-51b1a1316?utm_source=share&utm_campaign=share_via&utm_content=profile&utm_medium=android_app",
+ "keyword": "phase2"
+ },
+ {
+ "Project name": "Metal Sheet Defect Detector",
+ "Project description": "Detect Defects in metal sheets used to make the body of vehicles",
+ "Project link": "https://github.com/FarhanK20-hub/Metal-Sheet-Defect-Detector.git",
+ "Project admin": "Farhan Khan",
+ "Admin linkedin": "https://www.linkedin.com/in/farhan-khan-3aa5442b0?utm_source=share&utm_campaign=share_via&utm_content=profile&utm_medium=ios_app",
+ "Admin github": "https://github.com/FarhanK20-hub/",
+ "Tech stack": "Python(Flask) - backend , Yolo - model traning, React(Frontend)",
+ "mentor 1": "Ayush raj",
+ "mentor 1 github": "https://github.com/Dumb-cat",
+ "mentor 1 linkedin": "http://linkedin.com/in/ayush-raj-057132325",
+ "keyword": "phase2"
+ },
+ {
+ "Project name": "Interactive Credit Card Financial Dashboard",
+ "Project description": "This project aims to build an interactive dashboard that helps visualize and monitor credit card customer transactions, balances, and spending behavior using real-world data. It includes data preprocessing using Python, database querying with SQL, and dynamic visualizations through Power BI. The goal is to enable stakeholders to make informed financial decisions through clear, insightful visual analytics.",
+ "Project link": "https://github.com/gowthamgspatil/credit-card-dashboard",
+ "Project admin": "GOWTHAM GS PATIL",
+ "Admin linkedin": "https://www.linkedin.com/in/gowthamgshivamuthy",
+ "Admin github": "https://github.com/gowthamgspatil",
+ "Tech stack": "Python, SQL, Power BI, Pandas, Excel",
+ "mentor 1": "Tarun Jyoti",
+ "mentor 1 github": "https://github.com/tarunjyoti12",
+ "mentor 1 linkedin": "https://www.linkedin.com/in/tarun-jyoti",
+ "keyword": "phase2"
+ },
+ {
+ "Project name": "GrowCraft",
+ "Project description": "GrowCraft is a service-based web platform that offers digital solutions to businesses while providing training and internship opportunities to students. The platform features services like Website Development, Graphic Design, Content Writing, Social Media Management, and Digital Marketing.\n \n This open-source project aims to bridge the gap between learning and practical exposure. It is built using HTML, CSS, JavaScript, and Bootstrap. Through GSSoC, contributors can enhance the UI/UX, optimize responsiveness, improve code structure, and add new features like a blog, portfolio showcase, and contact backend integration.\n \n We welcome developers, designers, technical writers, and digital marketers to collaborate, learn, and grow with GrowCraft.",
+ "Project link": "https://github.com/gyanshankar1708/GrowCraft",
+ "Project admin": "Gyanshankar pd singh",
+ "Admin linkedin": "https://www.linkedin.com/in/gyanshankar1708/",
+ "Admin github": "https://github.com/gyanshankar1708",
+ "Tech stack": "HTML, CSS, Bootstrap, Javascript",
+ "mentor 1": "Ayush Kashyap",
+ "mentor 1 github": "https://www.github.com/ayushkashyap402",
+ "mentor 1 linkedin": "https://www.linkedin.com/in/ayush-kashyap-541021231",
+ "mentor 2": "Abdullah Jameel",
+ "mentor 2 github": "https://github.com/abdullahxyz85",
+ "Mentor 2 linkedin": "https://www.linkedin.com/in/abdullahjameel94/",
+ "mentor 3": "Khabab Akhtar",
+ "mentor 3 github": "https://github.com/Khababakhtar20",
+ "mentor 3 linkedin": "https://www.linkedin.com/in/khabab-akhtar-5b34562b1/",
+ "keyword": "phase2"
+ },
+ {
+ "Project name": "Fitolution",
+ "Project description": "A modern , responsive Gym and Fitness web app designed to help users explore training programs , memberships options etc",
+ "Project link": "https://github.com/hammadii123/Fitolution",
+ "Project admin": "Hammad Mustafa",
+ "Admin linkedin": "https://www.linkedin.com/in/hammad-mustafa2/",
+ "Admin github": "https://github.com/hammadii123",
+ "Tech stack": "React.js",
+ "mentor 1": "Abhishek katiyar",
+ "mentor 1 github": "https://github.com/abhishekkatiyar07",
+ "mentor 1 linkedin": "https://www.linkedin.com/in/abhishek-katiyar-148aa0250",
+ "keyword": "phase2"
+ },
+ {
+ "Project name": "Hinglish voice ai",
+ "Project description": "Hinglish voice ai fine tunes hinglish in voice AI applications",
+ "Project link": "https://github.com/hardik1712/hinglish-voice-ai",
+ "Project admin": "Hardik Iyer",
+ "Admin linkedin": "www.linkedin.com/in/hardik-iyer-4b7792279",
+ "Admin github": "github.com/hardik1712",
+ "Tech stack": "Python , LangChain ,",
+ "mentor 1": "Ananya",
+ "mentor 1 github": "http://github.com/ananyatewari",
+ "mentor 1 linkedin": "https://www.linkedin.com/in/ananya-tewari-448b6b229/",
+ "keyword": "phase2"
+ },
+ {
+ "Project name": "RAG chatbot",
+ "Project description": "RAG chatbot was created on course of my internship",
+ "Project link": "https://github.com/hardik1712/RAG_chatbot",
+ "Project admin": "Hardik Iyer",
+ "Admin linkedin": "www.linkedin.com/in/hardik-iyer-4b7792279",
+ "Admin github": "github.com/hardik1712",
+ "Tech stack": "Python , LangChain ,",
+ "mentor 1": "Bala Manikanta Sai",
+ "mentor 1 github": "https://www.github.com/balamanikantsai",
+ "mentor 1 linkedin": "https://www.linkedin.com/in/guduru-bala-manikanta-sai-20707a275",
+ "keyword": "phase2"
+ },
+ {
+ "Project name": "DevMatchups",
+ "Project description": "DevMatchups is a fullstack web platform which enables developes to connect together and form teams for hackathons. It solves the core problem of finding team or team mates for any hackathon. Users can explore all the hackathons from various websites at one place. Users can create dynamic profiles based on their resume.",
+ "Project link": "https://www.github.com/harsh3dev/DevMatchups",
+ "Project admin": "Harsh Pandey",
+ "Admin linkedin": "https://www.linkedin.com/in/harsh3dev",
+ "Admin github": "https://www.github.com/harsh3dev",
+ "Tech stack": "Nextjs, Tailwind CSS, Typescript, Prisma, Postgresql, Langchain, Docker",
+ "mentor 1": "Rudransh Pratap Singh",
+ "mentor 1 github": "https://github.com/CoderFleet",
+ "mentor 1 linkedin": "https://www.linkedin.com/in/rudransh-pratap-singh-5a6b72323",
+ "keyword": "phase2"
+ },
+ {
+ "Project name": "Privacy preserving from detection in cryptocurrency using federated learning (Ongoing Project)",
+ "Project description": "Privacy-Preserving Fraud Detection in Cryptocurrency using Federated Learning, this project detects fraudulent crypto transactions while maintaining user data privacy. It leverages federated learning to train models across decentralized data sources without sharing raw data, ensuring both security and accuracy.",
+ "Project link": "https://github.com/harshajain6114/Federated-learning-for-crpto-fraud",
+ "Project admin": "Harsha Jain",
+ "Admin linkedin": "https://www.linkedin.com/in/harsha-jain-b1859b287",
+ "Admin github": "https://github.com/harshajain6114",
+ "Tech stack": "Python, Federated Learning, TensorFlow Federated, Pandas, NumPy, Scikit-learn, Jupyter Notebook",
+ "mentor 1": "Dhruv Verma",
+ "mentor 1 github": "https://github.com/dhruvv1101",
+ "mentor 1 linkedin": "https://www.linkedin.com/in/dhruv-verma-34a927282/",
+ "keyword": "phase2"
+ },
+ {
+ "Project name": "SkillSphere",
+ "Project description": "SkillSphere Personalized Learning & Resource Hub for Engineering Students\n Tech Stack: React (Vite), Tailwind CSS\n \n SkillSphere is a frontend web platform that helps engineering students streamline their skill development through curated resources and structured mentorship opportunities.\n \n Core Features:\n \n Domain-Specific Resource Pages: Organized roadmaps, cheat sheets, YouTube playlists, practice platforms, and helpful links for areas like Web Development, UI/UX, DSA, AI/ML, and AR/VR.\n \n Mentorship Cohorts: Structured learning cohorts where students can join groups based on their chosen domain and connect with mentors for guidance and progress tracking.\n \n Personalized Learning Hub: Save preferred resources, track progress, and stay focused on skill-building through a distraction-free interface.\n \n Responsive, Minimal UI: Fast and accessible design built using React (with Vite) and styled with Tailwind CSS for a clean, mobile-friendly experience.\n \n \n Objective:\n To centralize quality learning resources, foster peer and mentor-driven growth, and provide a structured learning ecosystem for engineering students.",
+ "Project link": "https://github.com/codeX-Crafter/SkillSphere",
+ "Project admin": "Harshita",
+ "Admin linkedin": "https://www.linkedin.com/in/harshita-bansal-65ba40327/",
+ "Admin github": "https://github.com/codeX-Crafter",
+ "Tech stack": "React (Vite) and Tailwind",
+ "mentor 1": "Nouman Khan",
+ "mentor 1 github": "https://github.com/NoumanKhan2003",
+ "mentor 1 linkedin": "https://www.linkedin.com/in/nouman-khan-95923a256",
+ "keyword": "phase2"
+ },
+ {
+ "Project name": "Gurukul dream foundation",
+ "Project description": "gurukuldreamfoundation is a NGO website",
+ "Project link": "https://github.com/Himanshusk1/GDF",
+ "Project admin": "Himanshu Singh Kyariya",
+ "Admin linkedin": "https://www.linkedin.com/in/himanshu-singh-003934258/",
+ "Admin github": "https://github.com/Himanshusk1",
+ "Tech stack": "Html,css,javascript",
+ "mentor 1": "Abhijit Ugalmogale",
+ "mentor 1 github": "https://www.linkedin.com/in/abhijitugalmogale/",
+ "mentor 2": "Himanshu Kabra",
+ "mentor 2 github": "https://www.github.com/HimanshuKabra01",
+ "Mentor 2 linkedin": "https://www.linkedin.com/in/himanshu-kabra28",
+ "mentor 3": "Ramkrushna Vijaysingh Shinde",
+ "mentor 3 github": "https://github.com/Ramkrushna77",
+ "mentor 3 linkedin": "https://www.linkedin.com/in/ramkrushna-shinde-ak77",
+ "keyword": "phase2"
+ },
+ {
+ "Project name": "Voice Marketing Agents",
+ "Project description": "OpenVoiceX is a powerful, open-source framework designed to help developers, businesses, and researchers build, deploy, and manage real-time voice-first AI systems. It brings together two complementary projectsOpenVoiceOS and Voice Marketing Agentsinto a single, unified platform. At its core, OpenVoiceX provides all the components you need to create sophisticated conversational assistants and AI-driven telephony agents. Whether it powering natural voice interactions on the web, automating phone calls for marketing and customer service, or experimenting with conversational AI research, OpenVoiceX gives you full controlwithout relying on expensive, proprietary APIs. The system is designed to be modular and extensible. You can integrate your preferred speech-to-text, large language models, and text-to-speech engines. Everything runs in a self-hosted, containerized environment using Docker, making it easy to deploy on your infrastructure and maintain full data ownership. A modern, web-based dashboard makes it possible to visually design, test, and manage your agents without writing code. For real-time voice interactions, OpenVoiceX achieves ultra-low latency pipelines, allowing conversations to flow naturallyeven with mid-sentence interruptions. It also supports traditional telephony services (like Twilio or Asterisk) and web-based voice clients out of the box. By combining a developer-first architecture with enterprise-grade features like multi-tenancy, encryption, and API key management, OpenVoiceX is not just a toolkitit a full-stack solution for building production-ready voice AI applications.",
+ "Project link": "https://github.com/OpenVoiceX/Voice-Marketing-Agent",
+ "Project admin": "Hitesh",
+ "Admin linkedin": "https://www.linkedin.com/in/hitesh-kumar-aiml/",
+ "Admin github": "https://github.com/Hiteshydv001",
+ "Tech stack": "Frontend: Next.js, React, TypeScript, Tailwind CSS, Shadcn/ui State & Data: Zustand, SWR, React Query Backend API: FastAPI (Python), Pydantic, SQLAlchemy (async) Auth: JWT (python-jose), passlib[bcrypt] Database: PostgreSQL, Alembic Cache: Redis Real-Time Engine: FastAPI Worker, WebSockets STT: faster-whisper (CTranslate2 Whisper) LLM: Ollama, TinyLlama TTS: Coqui TTS (VITS models) Telephony: Twilio, Plivo, Asterisk PBX Containerization: Docker, Docker Compose CI/CD: GitHub Actions, Docker Hub",
+ "mentor 1": "Devesh Kumar Patel",
+ "mentor 1 github": "https://github.com/dev3z",
+ "mentor 1 linkedin": "https://www.linkedin.com/in/deveshkumarpatel/",
+ "keyword": "phase2"
+ },
+ {
+ "Project name": "Melodyminds-AI Powdered music player",
+ "Project description": "A Full stack music player with ad free listening and smart recommendations rivaling music streaming platforms",
+ "Project link": "https://github.com/powerstone666/MelodyMind",
+ "Project admin": "Imran Pasha",
+ "Admin linkedin": "https://www.linkedin.com/in/imranpasha636",
+ "Admin github": "https://github.com/powerstone666",
+ "Tech stack": "React Firebase tailwindcss",
+ "mentor 1": "Shirshendu R Tripathi",
+ "mentor 1 github": "https://github.com/ShirshenduR",
+ "mentor 1 linkedin": "https://linkedin.com/in/shirshendur",
+ "keyword": "phase2"
+ },
+ {
+ "Project name": "fake news detection",
+ "Project description": "analysis the fake data from news",
+ "Project link": "https://github.com/sachinruk/Fake-News-Detection",
+ "Project admin": "JINKALA VISHNU VARDHAN",
+ "Admin linkedin": "https://www.linkedin.com/posts/jinkala-vishnu-vardhan-328232325_micro-iit-activity-7311638531167150081-HeMo?utm_source=share&utm_medium=member_android&rcm=ACoAAFIU6lAB95SVuvTwo6dHplfgVZNaEhY6wdQ",
+ "Admin github": "no",
+ "Tech stack": "python, library , dataset",
+ "mentor 1": "Rushil Sharma",
+ "mentor 1 github": "https://github.com/rushilsharma1",
+ "mentor 1 linkedin": "https://www.linkedin.com/in/rushilsharma347",
+ "keyword": "phase2"
+ },
+ {
+ "Project name": "WaveFarer",
+ "Project description": "Created a real-time beach safety web application with React, incorporating INCOIS APIs for live ocean and weather data.Createdmachine learning and deep learning models to create dynamic coastal risk assessments based on environmental conditions.Created an interactive and responsive UI with React and geospatial mapping libraries for an easy-to-use experience.",
+ "Project link": "https://github.com/JoannaSharon06/WaveFarerFin",
+ "Project admin": "Joanna Sharon D",
+ "Admin linkedin": "https://www.linkedin.com/in/joanna-sharon-d/",
+ "Admin github": "https://github.com/JoannaSharon06",
+ "Tech stack": "React,PyTorch",
+ "mentor 1": "SHASHIKUMAR",
+ "mentor 1 github": "https://github.com/Shashikumar-ezhilarasu",
+ "mentor 1 linkedin": "https://www.linkedin.com/in/shashikumar-ezhilarasu/",
+ "keyword": "phase2"
+ },
+ {
+ "Project name": "FinTech",
+ "Project description": "FinTech is a simple and secure web application that helps users manage personal finances efficiently. Designed with a user-friendly interface and essential features, it allows users to register, log in, and track their financial data easily.",
+ "Project link": "https://github.com/KanishaSharma11/FinTech",
+ "Project admin": "Kanisha Ravindra Sharma",
+ "Admin linkedin": "https://www.linkedin.com/in/kanisha-sharma11/",
+ "Admin github": "https://github.com/KanishaSharma11",
+ "Tech stack": "HTML, CSS, Javascript, API",
+ "mentor 1": "Sumit Kesarwani",
+ "mentor 1 github": "https://github.com/Sumit6307",
+ "mentor 1 linkedin": "https://www.linkedin.com/in/sumit-kesarwani-35b63a286",
+ "keyword": "phase2"
+ },
+ {
+ "Project name": "Attendance Tracker",
+ "Project description": "This Attendance Tracker is designed to monitor and manage student attendance across various subjects. It helps track attendance, ensures classes meet required attendance criteria, and provides a clear overview of attendance statistics. Additionally, it presents attendance data in an intuitive calendar format for easy reference.",
+ "Project link": "https://github.com/sachiikrish/AttendanceTracker.git",
+ "Project admin": "Kanishka",
+ "Admin linkedin": "https://in.linkedin.com/in/kanishka-tyagi-a334b128b",
+ "Admin github": "https://github.com/sachiikrish",
+ "Tech stack": "HTML, CSS , JavaScript, PHP, MySQL",
+ "mentor 1": "Abhijit Ugalmogale",
+ "mentor 1 github": "https://github.com/Abhijitugalmogale",
+ "mentor 1 linkedin": "https://www.linkedin.com/in/abhijitugalmogale/",
+ "mentor 2": "Amit",
+ "mentor 2 github": "https://github.com/Amitsingh-nsut2027",
+ "Mentor 2 linkedin": "https://www.linkedin.com/in/amit-singh-352b80370?utm_source=share&utm_campaign=share_via&utm_content=profile&utm_medium=ios_app",
+ "mentor 3": "Ramkrushna Vijaysingh Shinde",
+ "mentor 3 github": "https://github.com/Ramkrushna77",
+ "mentor 3 linkedin": "https://www.linkedin.com/in/ramkrushna-shinde-ak77",
+ "keyword": "phase2"
+ },
+ {
+ "Project name": "rescuegrid - AI powered disaster management platform",
+ "Project description": "RescueGrid is an AI-based disaster management and communication platform built to support real-time coordination during emergency situations. It integrates live incident reporting, resource distribution, safe route mapping, and centralized control dashboards. The project welcomes contributors to enhance the UI/UX, optimize backend APIs, and expand AI-based modules. It is designed to give developers hands-on experience in building scalable, real-world solutions with social impact.",
+ "Project link": "https://github.com/MadhavArora1213/Diseaster_Management",
+ "Project admin": "Kashish singh",
+ "Admin linkedin": "linkdin.com/in/kashish-singh-70563300",
+ "Admin github": "github.com/KashishSingh1213",
+ "Tech stack": "reactjs,nodejs,firebase,tailwind css,js,html,css, github,goggle maps,api,postman",
+ "mentor 1": "Aditi Srivastava",
+ "mentor 1 github": "https://github.com/https-aditi",
+ "mentor 1 linkedin": "https://www.linkedin.com/in/aditi-srivastava001/",
+ "keyword": "phase2"
+ },
+ {
+ "Project name": "Ai Cosmetic Recommendation System",
+ "Project description": "ML based recommendation system that suggests cosmetics as per the user requirements.",
+ "Project link": "https://github.com/kasmya/AI-Cosmetic-Reccomendation-System",
+ "Project admin": "Kasmya Bhatia",
+ "Admin linkedin": "cd7331d1-366d-4383-bc31-d0b983e2ed19",
+ "Admin github": "https://github.com/kasmya",
+ "Tech stack": "Python, MySQL, Jupyter Notebook",
+ "mentor 1": "DEVYANSHI BHATANE",
+ "mentor 1 github": "https://github.com/DEVYANSHI412",
+ "mentor 1 linkedin": "https://www.linkedin.com/in/devyanshi-bhatane-264959298",
+ "keyword": "phase2"
+ },
+ {
+ "Project name": "One-stop-Guide",
+ "Project description": "One-Stop Guide ek city-exploration website hai jisme user city select karta hai, fir options milte hain jaise: Tourism, Shopping, Jobs, Restaurants, Pharmacy. Har option pe click karne se relevant info, image, aur Google Maps link dikhai deta hai.",
+ "Project link": "https://github.com/komalkhatod1105/One-Stop-Guide",
+ "Project admin": "Komal Khatod",
+ "Admin linkedin": "https://linkedin.com/in/komalkhatod",
+ "Admin github": "https://github.com/komalkhatod",
+ "Tech stack": "HTML Page structure\n \n CSS Design & layout\n \n JavaScript Interactivity\n \n PHP Backend logic\n \n MySQL Database\n \n PHP MySQLi Database connection\n \n Google Maps link Explore button ke liye",
+ "mentor 1": "Md Faizul Islam",
+ "mentor 1 github": "https://github.com/sinister3301",
+ "mentor 1 linkedin": "http://linked.com/in/mf0",
+ "keyword": "phase2"
+ },
+ {
+ "Project name": "CKsEdu",
+ "Project description": "CKsEdu is a smart university platform that bridges students and faculty through real-time mentoring, academic collaboration, and AI-powered productivity tools. It creates a connected and supportive learning ecosystem tailored for university life.\n \n Key Features\n For Students:\n1:1 Video Mentoring with professors (live & scheduled)\n AI Assist for smart scheduling, notes, and grading\nStudent Chat & Group Collaboration\nE-Library & Study Resources\nMental Wellness & Counseling\nLeaderboards, Quizzes, and Achievements\nEvent Calendar & Announcements\nAcademic Progress Dashboard\n \n \nFor Faculty:\nSmart Document Organizer\nAnalytics Dashboard\nAI Agent Integration\n \nFast Workflow Tools\n Save time with AI-based grading, content suggestions, and calendar integration",
+ "Project link": "https://github.com/KrishChothani/CKsEdu",
+ "Project admin": "Krish Chothani",
+ "Admin linkedin": "https://www.linkedin.com/in/krish-chothani-797598284",
+ "Admin github": "https://github.com/KrishChothani",
+ "Tech stack": "Frontend: React (JavaScript & TypeScript), Vite, Tailwind CSS\n Backend: Node.js, Express.js, Flask\n Database & Storage: MongoDB, Cloudinary\n Deployment: AWS, Vercel",
+ "mentor 1": "Krish Patel",
+ "mentor 1 github": "https://github.com/KrishPatel1205",
+ "mentor 1 linkedin": "https://www.linkedin.com/in/krishpatel1205/",
+ "keyword": "phase2"
+ },
+ {
+ "Project name": "SQL ChatBot: Query Any Database Using Natural Language",
+ "Project description": "The SQL ChatBot is an intelligent assistant that allows users to interact with structured databases using natural language. Users can upload a CSV file or connect to an SQL/MongoDB database and ask questions like Show total sales in January, and the bot generates the SQL/Mongo query, executes it, and returns results with an explanation.\n \n This project is ideal for beginners and intermediate contributors interested in AI, databases, and full-stack development.",
+ "Project link": "https://github.com/Kumud-hasija/AI-powered-data-query-Chatbot",
+ "Project admin": "Kumud Hasija",
+ "Admin linkedin": "https://www.linkedin.com/in/kumud-hasija-060b172a2",
+ "Admin github": "https://github.com/Kumud-hasija",
+ "Tech stack": "Python, Streamlit, LangChain, OpenAI API, SQLite, PostgreSQL, MySQL, MongoDB, Pandas, SQLAlchemy, PyMongo, Git, GitHub",
+ "mentor 1": "ANURAG SHARMA",
+ "mentor 1 github": "https://github.com/silverballz",
+ "mentor 1 linkedin": "https://www.linkedin.com/in/anurag-sharma-362664240",
+ "keyword": "phase2"
+ },
+ {
+ "Project name": "NEXUS.DAWN Emotional Intelligence OS",
+ "Project description": "NEXUS.DAWN is a futuristic open-source emotional intelligence operating system designed for immersive, AI-driven interactions. It combines voice AI, facial emotion detection, quantum computing metaphors, and blockchain identity into a self-evolving digital assistant platform. The system features a modular architecture, immersive UI (Three.js + React), secure backend, and emotional intelligence engine enabling contributors to explore AI, Web3, and system design in one unified ecosystem.",
+ "Project link": "https://github.com/kunal0297/Nexus_dawn.git",
+ "Project admin": "Kunal Pandey",
+ "Admin linkedin": "https://www.linkedin.com/in/kunal-pandey-8aa0a2324?utm_source=share&utm_campaign=share_via&utm_content=profile&utm_medium=android_app",
+ "Admin github": "https://github.com/kunal0297",
+ "Tech stack": "React, TypeScript, TailwindCSS, Three.js, Zustand, FastAPI, Python, OpenAI, ElevenLabs, Docker, FHIR, WebRTC, Gemini, Blockchain (ZK, Smart Contracts)",
+ "mentor 1": "Amit",
+ "mentor 1 github": "https://github.com/Amitsingh-nsut2027",
+ "mentor 1 linkedin": "https://www.linkedin.com/in/amit-singh-352b80370/",
+ "keyword": "phase2"
+ },
+ {
+ "Project name": "Doctrinix",
+ "Project description": "Doctrix - Doctor Appointment Booking App Doctrix is a smart and user-friendly doctor appointment booking app designed to simplify healthcare access for everyone. The app allows users to sign up and sign in securely, providing personalized access to healthcare services. With features ranging from doctor selection and medicine ordering to profile management, Doctrix offers a seamless digital healthcare experience.",
+ "Project link": "https://github.com/lalitsingh789/doctor-app",
+ "Project admin": "Lalit kumar Singh",
+ "Admin linkedin": "https://www.linkedin.com/in/lalit-kumar-singh-590068277?utm_source=share&utm_campaign=share_via&utm_content=profile&utm_medium=android_app",
+ "Admin github": "https://github.com/lalitsingh789",
+ "Tech stack": "React native,Mongodb,node.js",
+ "mentor 1": "Kanishka",
+ "mentor 1 github": "https://github.com/sachiikrish",
+ "mentor 1 linkedin": "https://in.linkedin.com/in/kanishka-tyagi-a334b128b",
+ "keyword": "phase2"
+ },
+ {
+ "Project name": "studymate",
+ "Project description": "StudyMate is an open-source platform built to support college students during their semester exam preparations. The idea behind creating this platform originated from a common observation many students begin studying only when exams are near, often leading to confusion, stress, and wasted time searching for study materials. To address this issue, StudyMate offers a centralized and reliable hub where students can access syllabus content, previous year question papers (PYQs), peer-shared exam feedback, and seek guidance from seniors. By bringing all essential academic resources into one accessible platform, StudyMate aims to help students save time, study more effectively, and feel more confident during exams. Additionally, it provides a great opportunity for beginner-friendly contributors to collaborate and grow in the open-source community.",
+ "Project link": "https://github.com/lovelymahor/StudyMate",
+ "Project admin": "Lovely Mahour",
+ "Admin linkedin": "https://www.linkedin.com/in/lovely-mahour-992316265?utm_source=share&utm_campaign=share_via&utm_content=profile&utm_medium=android_app",
+ "Admin github": "https://github.com/lovelymahor",
+ "Tech stack": "Frontend React.js, Tailwind CSS, JavaScript, HTML, CSS\n Backend Node.js, Express.js\n Database MongoDB (with Mongoose)\n Authentication JWT\n File Upload Multer\n Storage Cloudinary / Firebase Storage\n Hosting Vercel (frontend), Render or Railway (backend), MongoDB Atlas (database)\n Tools Postman (API testing), Git & GitHub (version control)",
+ "mentor 1": "Poornima",
+ "mentor 1 github": "https://github.com/poornima200631",
+ "mentor 1 linkedin": "https://www.linkedin.com/in/poornima-tewatia-5b8765330/",
+ "keyword": "phase2"
+ },
+ {
+ "Project name": "CodeCanvas",
+ "Project description": "CodeCanvas is an open-source platform for front-end developers to discover, share, and get inspired by amazing projects built with HTML, CSS, and JavaScript. Showcase your creativity and contribute to a vibrant community!",
+ "Project link": "https://github.com/Varshitha713/CodeCanvas",
+ "Project admin": "Macha Varshitha",
+ "Admin linkedin": "https://www.linkedin.com/in/varshitha-macha",
+ "Admin github": "https://github.com/Varshitha713",
+ "Tech stack": "HTML, CSS and JavaScript (Furtherly firebase)",
+ "mentor 1": "Sakshi Patidar",
+ "mentor 1 github": "https://github.com/sakshipatidar06",
+ "mentor 1 linkedin": "https://www.linkedin.com/in/sakshi-patidar-668114254",
+ "keyword": "phase2"
+ },
+ {
+ "Project name": "first-contrib-placements",
+ "Project description": "A beginner-friendly open-source project that curates placement and learning resources for BTech students. It perfect for first-time contributors to learn GitHub by adding resources or improving the UI.\n \n With features like dropdown menus, dark/light mode toggles, and contributions from multiple developers, the project is growing into a helpful, community-driven resource for students preparing for placements.\n \n Highlights:\n \n Easy good first issues for new contributors\n \n Frontend improvements using HTML/CSS/JS\n \n Valuable content for students preparing for tech roles",
+ "Project link": "https://github.com/Varshitha713/first-contrib-placement",
+ "Project admin": "Macha Varshitha",
+ "Admin linkedin": "https://www.linkedin.com/in/varshitha-macha",
+ "Admin github": "https://github.com/Varshitha713",
+ "Tech stack": "HTML AND CSS",
+ "mentor 1": "Krishnendu Hazra",
+ "mentor 1 github": "https://github.com/krishnenduwork",
+ "mentor 1 linkedin": "https://www.linkedin.com/in/krishnendu-hazra-053317325?utm_source=share&utm_campaign=share_via&utm_content=profile&utm_medium=android_app",
+ "keyword": "phase2"
+ },
+ {
+ "Project name": "online voting system",
+ "Project description": "Online voting systems aim to provide a convenient, accessible, and secure platform for conducting elections digitally. They offer a potential alternative to traditional paper ballot or Electronic Voting Machine (EVM) based elections.",
+ "Project link": "https://github.com/madegowda11/online-voting-system",
+ "Project admin": "Madegowda N",
+ "Admin linkedin": "https://www.linkedin.com/in/madegowda-n11",
+ "Admin github": "https://github.com/madegowda11",
+ "Tech stack": "python, flask, html, JavaScript",
+ "mentor 1": "Prashanth A N",
+ "mentor 1 github": "https://share.google/ITorVES8jas1oaIvH",
+ "mentor 1 linkedin": "https://www.linkedin.com/me?trk=p_mwlite_feed-secondary_nav",
+ "keyword": "phase2"
+ },
+ {
+ "Project name": "RescueGrid AI-Powered Disaster Management Platform. etc.",
+ "Project description": "RescueGrid is an AI-based disaster management and communication platform built to support real-time coordination during emergency situations. It integrates live incident reporting, resource distribution, safe route mapping, and centralized control dashboards. The project welcomes contributors to enhance the UI/UX, optimize backend APIs, and expand AI-based modules. It is designed to give developers hands-on experience in building scalable, real-world solutions with social impact.",
+ "Project link": "https://github.com/MadhavArora1213/Diseaster_Management",
+ "Project admin": "Madhav Arora",
+ "Admin linkedin": "https://www.linkedin.com/in/madhav-arora-32b056254/",
+ "Admin github": "https://github.com/MadhavArora1213",
+ "Tech stack": "React.js, Node.js, Firebase, Tailwind CSS, JavaScript, HTML, CSS, Express.js, GitHub, Google Maps API, AI/ML (Planned), Postman",
+ "mentor 1": "Sriman.H",
+ "mentor 1 github": "https://github.com/srimanh",
+ "mentor 1 linkedin": "https://www.linkedin.com/in/srimanh/",
+ "keyword": "phase2"
+ },
+ {
+ "Project name": "Ecommerce website",
+ "Project description": "This is an open-source eCommerce website developed to provide a fully functional online shopping experience. The platform includes features such as product listing, user authentication, cart management, payment gateway integration, and admin dashboard. The goal is to make the codebase beginner-friendly and scalable for contributors.",
+ "Project link": "https://github.com/Mahambabar12/Hackathon-Ecommerce-Website-main",
+ "Project admin": "Maham Babar",
+ "Admin linkedin": "https://www.linkedin.com/in/maham-babar-574098228?utm_source=share&utm_campaign=share_via&utm_content=profile&utm_medium=android_app",
+ "Admin github": "https://github.com/Mahambabar12",
+ "Tech stack": "next js",
+ "mentor 1": "Gaurav Kesh Roushan",
+ "mentor 1 github": "https://github.com/gauravkesh",
+ "mentor 1 linkedin": "https://gkrcoder.vercel.app",
+ "keyword": "phase2"
+ },
+ {
+ "Project name": "To do list",
+ "Project description": "The To-Do List Application is a simple Python-based project that helps users manage their daily tasks efficiently. Users can add new tasks, view the list of pending tasks, mark tasks as completed, and delete tasks they no longer need.\n \n This project is designed for beginners and helps develop essential programming concepts such as lists, dictionaries, user input, and conditionals in Python.",
+ "Project link": "https://github.com/Sindhuchowdhary23/CODSOFT",
+ "Project admin": "Mamillapalli sindhu",
+ "Admin linkedin": "https://www.linkedin.com/in/mamillapalli-sindhu-423310319?utm_source=share&utm_campaign=share_via&utm_content=profile&utm_medium=android_app",
+ "Admin github": "https://github.com/Sindhuchowdhary23",
+ "Tech stack": "python",
+ "mentor 1": "Nehal Dhawan",
+ "mentor 1 github": "https://github.com/NEHALDHAWAN21",
+ "mentor 1 linkedin": "https://www.linkedin.com/in/nehal-dhawan-51b1a1316?utm_source=share&utm_campaign=share_via&utm_content=profile&utm_medium=android_app",
+ "keyword": "phase2"
+ },
+ {
+ "Project name": "streamlit application",
+ "Project description": "it is a personal chat bot runs on ur machine locally",
+ "Project link": "https://github.com/manideepBotsaa/streamlit_application",
+ "Project admin": "Manideep Botsa",
+ "Admin linkedin": "https://www.linkedin.com/in/manideep-botsa?utm_source=share&utm_campaign=share_via&utm_content=profile&utm_medium=android_app",
+ "Admin github": "https://github.com/manideepBotsaa",
+ "Tech stack": "python",
+ "mentor 1": "Aayush Kumar Gupta",
+ "mentor 1 github": "https://github.com/AayushKGupta12",
+ "mentor 1 linkedin": "https://www.linkedin.com/in/aayush-kumar-gupta-2b7952219",
+ "keyword": "phase2"
+ },
+ {
+ "Project name": "GroqTales",
+ "Project description": "GroqTales is an open-source platform merging AI and blockchain to reinvent digital storytelling: it empowers writers, artists, developers, and enthusiasts to craft AIgenerated stories and comic-style narratives using Groq, customize genres, characters, settings, creativity levels, and then mint their creations as NFTs on the Monad blockchain (currently on Testnet with future Mainnet support) . The platform supports real-time story streaming, intuitive wallet integration, IPFS-backed metadata storage, and a community gallery for sharing and engagement all built with React/Next.js, Node.js, MongoDB, and smart contracts with ethers.js compatibility",
+ "Project link": "https://github.com/Drago-03/GroqTales",
+ "Project admin": "Mantej Singh Arora",
+ "Admin linkedin": "httpshttps://www.linkedin.com/in/mantej-singh-arora/",
+ "Admin github": "https://github.com/Drago-03",
+ "Tech stack": "TypeScript, JavaScript, React, Next.js, Node.js, MongoDB, Solidity, ethers.js, IPFS, Groq API, Unsplash API, Python, Framer Motion, shadcn/ui, Lucide React, Vercel, Foundry.",
+ "mentor 1": "Adil Amin",
+ "mentor 1 github": "https://www.github.com/adil-techcode",
+ "mentor 1 linkedin": "https://www.linkedin.com/in/adil-amin-tech",
+ "keyword": "phase2"
+ },
+ {
+ "Project name": "Project Management System",
+ "Project description": "Advanced Project Management System is a real-time, collaborative platform to manage projects, tasks, and teams efficiently.\n It features dashboards, kanban boards, analytics, chat, and notifications with role-based access.\n Built with React, Node.js, MongoDB, and Socket.IO, it designed for seamless teamwork.",
+ "Project link": "https://github.com/MitulSonagara/project-management-system",
+ "Project admin": "Mitul Sonagara",
+ "Admin linkedin": "https://www.linkedin.com/in/mitulsonagara",
+ "Admin github": "https://github.com/MitulSonagara",
+ "Tech stack": "React, Vite, Redux Toolkit, TailwindCSS, Material Tailwind, Node.js, Express.js, MongoDB, Socket.IO, JWT Authentication, Role-Based Access Control",
+ "mentor 1": "Gaurav Gupta",
+ "mentor 1 github": "https://github.com/Gaurav075",
+ "mentor 1 linkedin": "https://www.linkedin.com/in/gauravgupta7431/",
+ "keyword": "phase2"
+ },
+ {
+ "Project name": "Dev Resumes AI",
+ "Project description": "DevResume.AI is a modern, drag-and-drop resume builder powered by AI. Generate perfectly structured, ATS-compliant resumes with smart bullet points, summaries, and beautiful designs all in your browser.",
+ "Project link": "https://github.com/Anasmalik57/Dev-Resume-AI",
+ "Project admin": "Mohd Anas",
+ "Admin linkedin": "https://linkedin.com/in/anasmalik57",
+ "Admin github": "https://github.com/Anasmalik57",
+ "Tech stack": "Frontend:- React, Vite, TailwindCSS, Framer Motion (optional), html2pdf.js, Backend:- Node.js, Express.js, OpenAI API",
+ "mentor 1": "Rithvik",
+ "mentor 1 github": "https://github.com/Rithvik1709",
+ "mentor 1 linkedin": "https://www.linkedin.com/in/rithvik1709",
+ "keyword": "phase2"
+ },
+ {
+ "Project name": "Voice-Marketing-Agent",
+ "Project description": "OpenVoiceX is an innovative voice agent platform that transforms marketing through AI-powered voice interactions. Built with Next.js and TypeScript, it features a modern UI, secure authentication, and scalable architecture. The platform includes voice command recognition, multi-language support, and a comprehensive dashboard for managing voice marketing campaigns. Key features include real-time voice processing, analytics, and customizable voice agent configurations.",
+ "Project link": "https://github.com/OpenVoiceX/Web-Voice-marketing-Agent",
+ "Project admin": "Mohd Mashruf",
+ "Admin linkedin": "https://www.linkedin.com/in/mohd-mashruf/",
+ "Admin github": "https://github.com/mashrufmohd",
+ "Tech stack": "TypeScript,React,Next.js,Git",
+ "mentor 1": "Sujal Pandey",
+ "mentor 1 github": "https://github.com/Sujal212004",
+ "mentor 1 linkedin": "https://www.linkedin.com/in/sujal-pandey-717b59253",
+ "keyword": "phase2"
+ },
+ {
+ "Project name": "Weather app",
+ "Project description": "Create a weather app just using HTML,CSS,JS",
+ "Project link": "https://github.com/MukulSha-afk/Weather-App",
+ "Project admin": "Mukul Sharma",
+ "Admin linkedin": "https://www.linkedin.com/in/mukul-sharma-922b34313/",
+ "Admin github": "https://github.com/MukulSha-afk",
+ "Tech stack": "html ,css ,js python",
+ "mentor 1": "priti merukar",
+ "mentor 1 github": "https://github.com/priti-m129",
+ "mentor 1 linkedin": "https://www.linkedin.com/in/priti-merukar-5b2859272?utm_source=share&utm_campaign=share_via&utm_content=profile&utm_medium=android_app",
+ "keyword": "phase2"
+ },
+ {
+ "Project name": "tech event",
+ "Project description": "using CSV file filter the events",
+ "Project link": "https://github.com/muskan-fatim/Tech_event",
+ "Project admin": "Muskan fatima | CA",
+ "Admin linkedin": "https://www.linkedin.com/feed/update/urn:li:activity:7346013905854283777",
+ "Admin github": "https://github.com/muskan-fatim?tab=repositories",
+ "Tech stack": "Next J's, tailwind css, typescript",
+ "mentor 1": "Manan",
+ "mentor 1 github": "http://github.com/Manan-Wadhwa",
+ "mentor 1 linkedin": "http://linkedin.com/in/manan-wadhwa",
+ "keyword": "phase2"
+ },
+ {
+ "Project name": "WildQuest",
+ "Project description": "WildQuest is an interactive platform with quizzes, games, and articles to raise awareness about endangered wildlife and conservation.Also it provides the feature of virtual adoption of wild and endangered animals.",
+ "Project link": "https://github.com/Nayanika1402/WildQuest",
+ "Project admin": "Nayanika Mukherjee",
+ "Admin linkedin": "https://www.linkedin.com/in/nayanika-mukherjee-76a24027b/",
+ "Admin github": "https://github.com/Nayanika1402",
+ "Tech stack": "React.js, Tailwind CSS, Firebase",
+ "mentor 1": "Reshma G.V.S.",
+ "mentor 1 github": "https://github.com/Reshmagvs",
+ "mentor 1 linkedin": "https://in.linkedin.com/in/reshma-g-v-s-740906295",
+ "keyword": "phase2"
+ },
+ {
+ "Project name": "AI powered health assistant",
+ "Project description": "This project focuses on AI POWERED HEALTH ASSISTANT that provides users with health related guidance, symptom analysis and basic medical recommendations.This project helps to develop an AI-powered assistant that can analyze symptoms and provide preliminary health suggestions. It integrates a user-friendly chatbot that responds to health- related queries using natural language processing. It enhance accessibility to basic healthcare advice, especially for those without immediate access to medical professionals.",
+ "Project link": "https://github.com/CharithaReddy18/AI-health-chatbot",
+ "Project admin": "Nayini Charitha Reddy",
+ "Admin linkedin": "https://www.linkedin.com/in/charithareddy18",
+ "Admin github": "https://github.com/CharithaReddy18",
+ "Tech stack": "This AI-powered health assistant is built using Python, machine learning and NLP to \n \n understand and respond to user questions immediately. This system uses a medical \n \n knowledge database and symptom checking algorithms to suggest possible conditions \n \n based on their inputs.",
+ "mentor 1": "Anshi Agarwal",
+ "mentor 1 github": "https://github.com/anshiagrawal22",
+ "mentor 1 linkedin": "https://www.linkedin.com/in/anshiagrawal22/",
+ "keyword": "phase2"
+ },
+ {
+ "Project name": "YuktiBot",
+ "Project description": "Its a combo of interview preparation anad code editor application",
+ "Project link": "https://github.com/Neha-Singh-j/YuktiBot",
+ "Project admin": "Neha Singh",
+ "Admin linkedin": "https://www.linkedin.com/in/neha-singh-4952992a7",
+ "Admin github": "https://github.com/Neha-Singh-j",
+ "Tech stack": "MongoDB React Node.js Express.js",
+ "mentor 1": "Samrat Natta",
+ "mentor 1 github": "https://github.com/Samrat25",
+ "mentor 1 linkedin": "https://www.linkedin.com/in/samrat-natta-761574321?utm_source=share&utm_campaign=share_via&utm_content=profile&utm_medium=android_app",
+ "keyword": "phase2"
+ },
+ {
+ "Project name": "GameStore",
+ "Project description": "A comprehensive gaming website featuring engaging mini-games with user authentication, statistics tracking, leaderboards, and a robust backend API.",
+ "Project link": "https://github.com/nikhilsingh10-r/GameStore",
+ "Project admin": "Nikhil Singh",
+ "Admin linkedin": "https://www.linkedin.com/in/nikhil-singh-87a7b6372",
+ "Admin github": "https://github.com/nikhilsingh10-r",
+ "Tech stack": "HTML, CSS, JavaScript, Typescript,Node.js",
+ "mentor 1": "RAJ DWIVEDI",
+ "mentor 1 github": "https://github.com/Raj-Dwivedi2005",
+ "mentor 1 linkedin": "https://www.linkedin.com/in/raj-dwivedi-9935952a2",
+ "keyword": "phase2"
+ },
+ {
+ "Project name": "ClipLi",
+ "Project description": "URL Shortener is a modern, production-ready full-stack web application built with the MERN stack (MongoDB, Express, React, Node.js) that allows users to shorten long URLs into compact, shareable links.\n \n The platform supports custom aliases, user authentication, click analytics, and follows a modular, scalable architecture with a clean separation of concerns. The backend is structured using Controller-Service-DAO patterns, JWT-based authentication, and centralized error handling, while the frontend is built with React 19, Redux Toolkit, TanStack Router & Query, and styled using Tailwind CSS.\n \n Designed with a mobile-first responsive UI, it ensures accessibility across devices and includes secure, RESTful API endpoints for seamless integration.",
+ "Project link": "https://github.com/anothercoder-nik/URLshortner",
+ "Project admin": "Nikunj Agarwal",
+ "Admin linkedin": "https://clipli.sbs/i5Tjnsg",
+ "Admin github": "https://github.com/anothercoder-nik",
+ "Tech stack": "The project uses React 19, Tailwind CSS, TanStack Router, TanStack Query, Redux Toolkit, Axios, and Vite on the frontend. The backend is built with Node.js, Express.js, MongoDB Atlas, and Mongoose, with additional tools like dotenv, cookie-parser, and jsonwebtoken (JWT) for environment handling, cookie parsing, and authentication respectively. Deployment is managed through Render, with development tools like Postman and MongoDB Compass.",
+ "mentor 1": "Gaurav Gupta",
+ "mentor 1 github": "https://github.com/Gaurav075",
+ "mentor 1 linkedin": "https://www.linkedin.com/in/gauravgupta7431/",
+ "keyword": "phase2"
+ },
+ {
+ "Project name": "Healthy Vibes 24/7",
+ "Project description": "Patient health recommendation system",
+ "Project link": "https://github.com/Nishme-tech/Project-AI",
+ "Project admin": "Nishme",
+ "Admin linkedin": "https://www.linkedin.com/in/nishmitha-shaik-b908342a2",
+ "Admin github": "https://github.com/Nishme-tech",
+ "Tech stack": "ML",
+ "mentor 1": "Gursirat kaur",
+ "mentor 1 github": "https://github.com/sirat98",
+ "mentor 1 linkedin": "https://www.linkedin.com/me?trk=p_mwlite_feed-secondary_nav",
+ "keyword": "phase2"
+ },
+ {
+ "Project name": "AI-agriculture-yield-production",
+ "Project description": "This project applies Artificial Intelligence (AI) and Machine Learning (ML) techniques to monitor crop health and predict agricultural yield using real-world data. By leveraging Python, data analysis libraries (like Pandas, Scikit-learn), and visualization tools, this project empowers farmers and agritech researchers with actionable insights for better decision-making in agriculture.",
+ "Project link": "https://github.com/nupurmadaan04/AI-agriculture-yield-production",
+ "Project admin": "NUPUR MADAAN",
+ "Admin linkedin": "https://www.linkedin.com/in/nupurmadaan04",
+ "Admin github": "https://github.com/nupurmadaan04",
+ "Tech stack": "Python (Numpy , pandas , sklearn , matplotlib, seaborn )",
+ "mentor 1": "Kathula Sri Raghavi",
+ "mentor 1 github": "https://github.com/sriraghavi22",
+ "mentor 1 linkedin": "https://www.linkedin.com/in/ksriraghavi/",
+ "keyword": "phase2"
+ },
+ {
+ "Project name": "EasyGoDocs",
+ "Project description": "EasyGoDocs is an open-source project dedicated to making documentation reading and authoring effortless, beautiful, and accessible for everyone. Were excited to have you help us expand our library of documentation across different fields.",
+ "Project link": "https://github.com/EasyGoDocs/easygodocs",
+ "Project admin": "Oindil Golder",
+ "Admin linkedin": "https://www.linkedin.com/in/oindil-golder/",
+ "Admin github": "https://github.com/OINDIL",
+ "Tech stack": "Next JS, Tailwind CSS, ShadCN, Typescript, Framer Motion, JSON",
+ "mentor 1": "Hussnain Ahmad",
+ "mentor 1 github": "https://github.com/itspsychocoder",
+ "mentor 1 linkedin": "https://linkedin.com/in/Hussnain-Ahmad/",
+ "keyword": "phase2"
+ },
+ {
+ "Project name": "SapneSeSafar",
+ "Project description": "A comprehensive, AI-powered analytics platform for Shark Tank India, providing deep insights, predictions, and analysis of deals, sharks, and startups with real-time data visualization and machine learning capabilities.",
+ "Project link": "https://github.com/Ojas-Arora/SapneSeSafar",
+ "Project admin": "Ojas Arora",
+ "Admin linkedin": "http://www.linkedin.com/in/ojasarora14",
+ "Admin github": "https://github.com/Ojas-Arora",
+ "Tech stack": "Typescript , Javascript , Go , Supabase, Excel , Machine Learning",
+ "mentor 1": "Yash Vikram",
+ "mentor 1 github": "https://github.com/yashvikram30",
+ "mentor 1 linkedin": "https://www.linkedin.com/in/yashvikram30?utm_source=share&utm_campaign=share_via&utm_content=profile&utm_medium=android_app",
+ "keyword": "phase2"
+ },
+ {
+ "Project name": "Gssoc FAQ Bot",
+ "Project description": "Bot helps to automate user message and amswe repeatedly asked questions. it now also tell user about project detauls and more about mentors.",
+ "Project link": "https://github.com/piyushpatelcodes/gssocFAQ-Bot",
+ "Project admin": "PIYUSH PATEL",
+ "Admin linkedin": "linkedin/in/piyushpatelcodes",
+ "Admin github": "github.com/piyushpatelcodes",
+ "Tech stack": "Node js",
+ "mentor 1": "Sanskar khandelwal",
+ "mentor 1 github": "http://github.com/sanskaryo",
+ "mentor 1 linkedin": "https://www.linkedin.com/in/sanskar-khandelwal-611249210/wal-611249210/",
+ "keyword": "phase2"
+ },
+ {
+ "Project name": "Crime Rate Prediction And Analysis system",
+ "Project description": "it can calculate crime risk nd prediction future",
+ "Project link": "https://huggingface.co/spaces/Prabh139/crime-rate-app",
+ "Project admin": "Prabhjot kaur",
+ "Admin linkedin": "https://www.linkedin.com/in/prabhjot-kaur-7927122ba?utm_source=share&utm_campaign=share_via&utm_content=profile&utm_medium=android_app",
+ "Admin github": "https://github.com/prabhjot1309",
+ "Tech stack": "Python, numpy, pandas, matplotlib seaborn Scikit learn and seaborn",
+ "mentor 1": "Shivam Gupta",
+ "mentor 1 github": "https://share.google/yjpbY7TkrsZQVBURU",
+ "mentor 1 linkedin": "https://www.linkedin.com/in/shivam-gupta-8a2a781b0?utm_source=share&utm_campaign=share_via&utm_content=profile&utm_medium=android_app",
+ "keyword": "phase2"
+ },
+ {
+ "Project name": "Occassio",
+ "Project description": "E-commerce website",
+ "Project link": "https://github.com/pramisi/Occasio",
+ "Project admin": "Pramisi",
+ "Admin linkedin": "www.linkedin.com/in/\n pramisi-b15736309",
+ "Admin github": "https://github.com/pramisi",
+ "Tech stack": "html,css",
+ "mentor 1": "Gazal",
+ "mentor 1 github": "https://github.com/Gazal-singla",
+ "mentor 1 linkedin": "https://www.linkedin.com/in/gazal-singla-08403b301",
+ "keyword": "phase2"
+ },
+ {
+ "Project name": "Zenjira - AI-Powered Jira Automation Platform",
+ "Project description": "Zenjira is a smart web app that connects with Jira to automate tasks, plan sprints, and simplify project tracking. It uses AI to help teams work faster by reducing manual work, balancing workloads, and giving clear, real-time insights all in one clean, easy-to-use dashboard.",
+ "Project link": "https://github.com/Promptzy/Zenjira",
+ "Project admin": "Pranjal Negi",
+ "Admin linkedin": "https://www.linkedin.com/in/pranjal-negi555?utm_source=share&utm_campaign=share_via&utm_content=profile&utm_medium=android_app",
+ "Admin github": "https://github.com/Pranjal6955",
+ "Tech stack": "Frontend: Next.js + Tailwind CSS with shadcn/ui or MaterialUI, state via Redux Toolkit or React Query\n Backend: Node.js + Express (or Django + DRF) exposing REST (or GraphQL via Apollo), secured by Atlassian OAuth2 & JWT\n Job Processing: BullMQ (or Celery) on Redis\n Database & Cache: PostgreSQL for data, Redis for caching\n AI/ML: OpenAI GPT4 via API, orchestrated with LangChain, plus Hugging Face Transformers for embeddings/semantic search\n Automation Engine: n8n for lowcode workflow automation\n Integrations: Jira REST API, GitHub/GitLab/Bitbucket webhooks, Slack & Microsoft Teams bots\n CI/CD: GitHub Actions (or CircleCI/Jenkins) for linting, testing, and Docker builds\n Containerization & Orchestration: Docker containers on Kubernetes (EKS/GKE) or Docker Swarm, routed via Nginx/Traefik\n Monitoring & Logging: Prometheus + Grafana, Sentry for error tracking, ELK Stack for logs\n Testing: Jest (or PyTest) for unit/integration, Cypress (or Playwright) for endtoend\n Design & Docs: Figma for UI, Notion/Confluence for documentation, Swagger/OpenAPI for API specs\n Analytics & Feedback: Mixpanel or Google Analytics, plus an inapp feedback widget",
+ "mentor 1": "Soaeb Hasan",
+ "mentor 1 github": "https://github.com/nikhildeshmukh170",
+ "mentor 1 linkedin": "https://www.linkedin.com/in/nikhil-d-deshmukh/",
+ "keyword": "phase2"
+ },
+ {
+ "Project name": "BreatheEasy",
+ "Project description": "BreatheEasy is an open-source project to help you monitor air quality in your area, understand pollutant levels, and get actionable health advice and improvement measures. It uses the World Air Quality Index (WAQI) API to fetch real-time AQI data and presents it in a clean, user-friendly dashboard.",
+ "Project link": "https://github.com/prasoonk1204/BreatheEasy",
+ "Project admin": "Prasoon Kumar",
+ "Admin linkedin": "https://linkedin.com/in/prasoon1204",
+ "Admin github": "https://github.com/prasoonk1204",
+ "Tech stack": "React, TailwindCSS, Charts.js, Node.js, Express",
+ "mentor 1": "Shashank Gupta",
+ "mentor 1 github": "https://github.com/ShashankScript",
+ "mentor 1 linkedin": "https://www.linkedin.com/in/shashank-gupta-abb76030b",
+ "keyword": "phase2"
+ },
+ {
+ "Project name": "SmartTube Summarizer",
+ "Project description": "SmartTube Summarizer is an AI-powered Python tool that extracts YouTube video transcripts and generates concise summaries using HuggingFace Transformers. Built with Streamlit, it's perfect for students, researchers, and professionals.",
+ "Project link": "https://github.com/PREETIFARTYAL18/SmartYTube_Summarizer",
+ "Project admin": "Preeti Fartyal",
+ "Admin linkedin": "https://www.linkedin.com/in/preeti-fartyal-90414024a?utm_source=share&utm_campaign=share_via&utm_content=profile&utm_medium=android_app",
+ "Admin github": "https://github.com/PREETIFARTYAL18",
+ "Tech stack": "Python 3.x\n Streamlit\n HuggingFace Transformers (BART)\n youtube-transcript-api",
+ "mentor 1": "Chandrika Joshi",
+ "mentor 1 github": "https://github.com/Chandrikajoshi123",
+ "mentor 1 linkedin": "https://www.linkedin.com/in/chandrika-j-0b1a98238?utm_source=share&utm_campaign=share_via&utm_content=profile&utm_medium=android_app",
+ "keyword": "phase2"
+ },
+ {
+ "Project name": "Animate-Hub",
+ "Project description": "Animate Hub is your go-to resource for all things animation in web development. Discover a wide range of code snippets for animations, hovers, and effects, designed to streamline your workflow. Just copy, paste, and watch your projects come to life!",
+ "Project link": "https://github.com/Premkolte/AnimateHub",
+ "Project admin": "Prem Kolte",
+ "Admin linkedin": "https://www.linkedin.com/in/prem-kolte/",
+ "Admin github": "https://github.com/Premkolte",
+ "Tech stack": "MongoDb, ExpressJs, ReactJs, NodeJs",
+ "mentor 1": "Divyanshi Kulshrestha",
+ "mentor 1 github": "https://github.com/divyanshii10",
+ "mentor 1 linkedin": "https://www.linkedin.com/in/divyanshi-kulshrestha-5ba319295/",
+ "keyword": "phase2"
+ },
+ {
+ "Project name": "DecentraLearn AI",
+ "Project description": "A decentralized AI-powered learning platform that rewards users with tokens for completing courses and contributing knowledge. Combines blockchain credentials with AI personalization.",
+ "Project link": "https://github.com/TechVisionLabs/decentralearn-ai",
+ "Project admin": "Priyanshu patel",
+ "Admin linkedin": "https://www.linkedin.com/in/priyanshupatel7996/",
+ "Admin github": "https://github.com/priyanshupatel7996",
+ "Tech stack": "React, Node.js, Solidity, Hardhat, IPFS, OpenAI API, MongoDB",
+ "mentor 1": "Rithvik",
+ "mentor 1 github": "https://github.com/Rithvik1709",
+ "mentor 1 linkedin": "https://www.linkedin.com/in/rithvik1709",
+ "keyword": "phase2"
+ },
+ {
+ "Project name": "FARMLOC",
+ "Project description": "FARMLOC stands for Farmers-Agricultural-Resource-Management-and-Location-Of-Cold-storage.\n It is a web-based platform designed to empower farmers by providing seamless access to agricultural resources, tools for management, and real-time information about the nearest available cold storages.",
+ "Project link": "https://github.com/Pujan-sarkar/FARMLOC",
+ "Project admin": "Pujan Sarkar",
+ "Admin linkedin": "https://www.linkedin.com/in/pujan-sarkar",
+ "Admin github": "https://github.com/Pujan-sarkar",
+ "Tech stack": "React Js, CSS, Javascript, Bootstrap, Node js, Express Js",
+ "mentor 1": "Kumud Hasija",
+ "mentor 1 github": "https://github.com/Kumud-hasija",
+ "mentor 1 linkedin": "https://www.linkedin.com/in/kumud-hasija-060b172a2",
+ "keyword": "phase2"
+ },
+ {
+ "Project name": "Rewear",
+ "Project description": "ReWear is a modern, community-driven clothing exchange platform that makes sustainable fashion fun and easy. List your unused clothes, earn points and swap for new styles with others - no money needed!",
+ "Project link": "https://github.com/AKing-283/Rewear",
+ "Project admin": "Puspak Dakkata",
+ "Admin linkedin": "https://www.linkedin.com/in/puspak-d-5a25a3246",
+ "Admin github": "github.com/AKing-283",
+ "Tech stack": "Python, Html,css and js, Gemini, Flask",
+ "mentor 1": "Bala Manikanta Sai",
+ "mentor 1 github": "https://www.github.com/balamanikantsai",
+ "mentor 1 linkedin": "https://www.linkedin.com/in/guduru-bala-manikanta-sai-20707a275",
+ "mentor 2": "Jonnalagadda Dinesh",
+ "mentor 2 github": "https://www.github.com/dineshjnld",
+ "Mentor 2 linkedin": "https://www.linkedin.com/in/-dinesh-7a83b2241",
+ "keyword": "phase2"
+ },
+ {
+ "Project name": "Tic Tac Tor Game",
+ "Project description": "A two-player Tic Tac Toe game built using Python and Pygame. It allows players to take tirns and shows win/draw messages",
+ "Project link": "https://github.com/RafiaShafique/Tic-Tae-Toe-Game",
+ "Project admin": "Rafia Shafique",
+ "Admin linkedin": "https://www.linkedin.com/in/rafia-shafique-114263321/",
+ "Admin github": "https://github.com/RafiaShafique",
+ "Tech stack": "python, pygne",
+ "mentor 1": "Nehal Dhawan",
+ "mentor 1 github": "https://github.com/NEHALDHAWAN21",
+ "mentor 1 linkedin": "https://www.linkedin.com/in/nehal-dhawan-51b1a1316?utm_source=share&utm_campaign=share_via&utm_content=profile&utm_medium=android_app",
+ "keyword": "phase2"
+ },
+ {
+ "Project name": "webBuilder",
+ "Project description": "Webinex is a an Ai-Powered no code website builder where user can create complete website by simply entering prompt. Leveraging Genai and Ml models, it builds UIs, page layout, and basic logic - instantly",
+ "Project link": "https://github.com/WebinexOfficial",
+ "Project admin": "Rahul Chaudhary",
+ "Admin linkedin": "https://www.linkedin.com/in/rahul-chaudhary-b31b2a297/",
+ "Admin github": "https://github.com/Rahulchaudharyji2",
+ "Tech stack": "React, Tailwind, Nodejs, Google gemini / custom Model / Mongodb or postgress/ jwt",
+ "mentor 1": "YASH SAGAR",
+ "mentor 1 github": "https://github.com/sagarji1",
+ "mentor 1 linkedin": "https://www.linkedin.com/in/yash-sagar/",
+ "mentor 2": "Shivam Kumar",
+ "mentor 2 github": "https://github.com/Shivam-Developer01",
+ "Mentor 2 linkedin": "https://www.linkedin.com/in/shivam-kumar-b83971292?utm_source=share&utm_campaign=share_via&utm_content=profile&utm_medium=android_app",
+ "keyword": "phase2"
+ },
+ {
+ "Project name": "SkyWings",
+ "Project description": "The Travel WebApp is a fully responsive, interactive travel website designed using HTML, CSS, and vanilla JavaScript. It offers users a visually engaging interface to discover popular destinations, explore tour packages, and make travel planning easier",
+ "Project link": "https://github.com/ChakrabortyRajarshi2005/TravelApp",
+ "Project admin": "Rajarshi Chakraborty",
+ "Admin linkedin": "https://www.linkedin.com/in/rajarshi-chakraborty-06a3402b7",
+ "Admin github": "https://github.com/ChakrabortyRajarshi2005",
+ "Tech stack": "HTML , CSS JavaScript",
+ "mentor 1": "Shivangi Suyash",
+ "mentor 1 github": "https://github.com/Shivangi10-10",
+ "mentor 1 linkedin": "https://www.linkedin.com/in/shivangi-suyash-05a484259",
+ "mentor 2": "Krishnendu Hazra",
+ "mentor 2 github": "https://github.com/krishnenduwork",
+ "Mentor 2 linkedin": "https://www.linkedin.com/in/krishnendu-hazra-053317325/",
+ "keyword": "phase2"
+ },
+ {
+ "Project name": "Resume Generator",
+ "Project description": "A clean, responsive web app to create professional resumes in minutes. Fill out your details, see a live preview, add unlimited projects, and export your resume as a polished PDF. Built with HTML, CSS, and JavaScriptno backend required.",
+ "Project link": "https://github.com/rajdeep13-coder/Resume-Generator",
+ "Project admin": "Rajdeep Paul",
+ "Admin linkedin": "https://www.linkedin.com/in/rajdeep-paul-013z/",
+ "Admin github": "https://github.com/rajdeep13-coder",
+ "Tech stack": "HTML, CSS, Javascript",
+ "mentor 1": "Krishnendu Hazra",
+ "mentor 1 github": "https://github.com/krishnenduwork",
+ "mentor 1 linkedin": "https://www.linkedin.com/in/krishnendu-hazra-053317325/",
+ "mentor 2": "Shashank Gupta",
+ "mentor 2 github": "https://github.com/ShashankScript",
+ "Mentor 2 linkedin": "https://www.linkedin.com/in/shashank-gupta-abb76030b",
+ "keyword": "phase2"
+ },
+ {
+ "Project name": "TrojanAI",
+ "Project description": "It is basically a vscode extension for AI agentic workflows just like copilot, which will be almost free to use. But a rate limiter will be there",
+ "Project link": "https://github.com/rajibsalui/Trojan-AI",
+ "Project admin": "Rajib Salui",
+ "Admin linkedin": "https://www.linkedin.com/in/rajib-salui-068675240/",
+ "Admin github": "https://github.com/rajibsalui",
+ "Tech stack": "Typescript, Langchain, Gemini AI API, VS Code",
+ "mentor 1": "Manan",
+ "mentor 1 github": "http://github.com/Manan-Wadhwa",
+ "mentor 1 linkedin": "http://linkedin.com/in/manan-wadhwa",
+ "keyword": "phase2"
+ },
+ {
+ "Project name": "Weather Blast",
+ "Project description": "This project is a comprehensive weather application built with HTML, CSS, and JavaScript. It fetches real-time weather data and air quality information, enhancing users' awareness of both weather and pollution conditions.",
+ "Project link": "https://github.com/RAJIV81205/Weather-Blast",
+ "Project admin": "Rajiv Dubey",
+ "Admin linkedin": "https://www.linkedin.com/in/rajiv81205",
+ "Admin github": "https://github.com/RAJIV81205",
+ "Tech stack": "HTML , CSS , JS",
+ "mentor 1": "Shashank Gupta",
+ "mentor 1 github": "https://github.com/ShashankScript",
+ "mentor 1 linkedin": "https://www.linkedin.com/in/shashank-gupta-abb76030b",
+ "keyword": "phase2"
+ },
+ {
+ "Project name": "Doc@Home",
+ "Project description": "Doc@Home is an innovative web-based platform designed to connect patients with verified doctors and nursing professionals for in-home medical consultations. It addresses the dual challenge of underutilized medical talent and the growing need for personalized, home-based healthcare in India. The platform ensures strict provider verification, transparent pricing, and quality control through real-time booking, robust feedback systems, and an admin-led authentication process.",
+ "Project link": "https://github.com/shandilya-rajnandini/DocAtHome.git",
+ "Project admin": "Rajnandini",
+ "Admin linkedin": "https://www.linkedin.com/in/rajnandini-shandilya-55ab2131a/",
+ "Admin github": "https://github.com/shandilya-rajnandini",
+ "Tech stack": "Frontend : HTML5, CSS3, JAVAScript (React.js) Backend : Node. js, Express Database: MongoDB Authentication : Firebase Auth or Json Tokens (JWT)",
+ "mentor 1": "Nikhil Deshmukh",
+ "mentor 1 github": "https://github.com/nikhildeshmukh170",
+ "mentor 1 linkedin": "https://www.linkedin.com/in/nikhil-d-deshmukh/",
+ "mentor 2": "Huda Naaz",
+ "mentor 2 github": "https://github.com/hudazaan",
+ "Mentor 2 linkedin": "https://www.linkedin.com/in/hudanaaz17",
+ "keyword": "phase2"
+ },
+ {
+ "Project name": "Git-quiz-challenge",
+ "Project description": "Git & GitHub Quiz Challenge An interactive web app for mastering Git and GitHub concepts. Features multiple quiz categories, instant feedback, progress tracking, and real-world scenarios to help developers learn version control efficiently. Switch between light/dark themes and review your results to improve your skills.",
+ "Project link": "https://github.com/RAJVEER42/git-quiz-challenge",
+ "Project admin": "Rajveer Bishnoi",
+ "Admin linkedin": "https://www.linkedin.com/in/rajveer-bishnoi-576b62356/",
+ "Admin github": "https://github.com/RAJVEER42",
+ "Tech stack": "Html, Css, Javascript",
+ "mentor 1": "priti merukar",
+ "mentor 1 github": "https://github.com/priti-m129",
+ "mentor 1 linkedin": "https://www.linkedin.com/in/priti-merukar-5b2859272?utm_source=share&utm_campaign=share_via&utm_content=profile&utm_medium=android_app",
+ "keyword": "phase2"
+ },
+ {
+ "Project name": "Beautiify",
+ "Project description": "Beautiify comprises a curated selection of beautifully designed components and animations that can be seamlessly incorporated into any website, elevating its overall UI experience.",
+ "Project link": "https://github.com/Rakesh9100/Beautiify",
+ "Project admin": "Rakesh Roshan",
+ "Admin linkedin": "https://www.linkedin.com/in/rakesh-roshan-9100/",
+ "Admin github": "https://github.com/Rakesh9100",
+ "Tech stack": "JavaScript, HTML, CSS, JSON",
+ "mentor 1": "Nikhil Balamurugan",
+ "mentor 1 github": "https://github.com/Nikhil210206",
+ "mentor 1 linkedin": "https://www.linkedin.com/in/nikhilb21/",
+ "keyword": "phase2"
+ },
+ {
+ "Project name": "Notakto",
+ "Project description": "Tic Tac Toe variant, no ties, always a winner",
+ "Project link": "github.com/rakshitg600/notakto-website",
+ "Project admin": "Rakshit Gupta",
+ "Admin linkedin": "linkedin.com/in/rakshitg600",
+ "Admin github": "github.com/rakshitg600",
+ "Tech stack": "NextJS, WebSocket, Firebase, TypeScript, Tailwind Css, Axios, React",
+ "mentor 1": "Payal Kumari",
+ "mentor 1 github": "https://github.com/PayalKumari10",
+ "mentor 1 linkedin": "https://www.linkedin.com/in/payalkumari10/",
+ "keyword": "phase2"
+ },
+ {
+ "Project name": "AuraHire.ai",
+ "Project description": "A smart platform that helps users track job applications, improve their resumes with AI-powered analysis, and discover or post job opportunities all in one place. It simplifies job hunting with actionable insights, real-time tracking, and intelligent resume feedback.",
+ "Project link": "https://github.com/Ryadav0654/AuraHire",
+ "Project admin": "Ravindra y",
+ "Admin linkedin": "https://www.linkedin.com/in/yadavravindra536",
+ "Admin github": "https://github.com/Ryadav0654",
+ "Tech stack": "Nextjs, Reactjs, chartjs, Express, Nodejs, React, Typescript, Tailwindcss, MongoDB, Cloudinary, Clerk Auth,",
+ "mentor 1": "Jaydeepsinh Parmar",
+ "mentor 1 github": "https://github.com/jaydeep099",
+ "mentor 1 linkedin": "https://www.linkedin.com/in/jaydeepsinh-parmar-084609247/",
+ "keyword": "phase2"
+ },
+ {
+ "Project name": "DevTinder",
+ "Project description": "DevTinder is a modern, interactive web application that connects developers based on their skills, interests, and project goals. Think \"Tinder for Developers\" - swipe through developer profiles, connect with like-minded programmers, and build amazing projects together.",
+ "Project link": "https://github.com/coder-writes/devTinder-frontend-main",
+ "Project admin": "Rishi verma",
+ "Admin linkedin": "https://www.linkedin.com/in/rishi-verma-sde/",
+ "Admin github": "https://github.com/coder-writes",
+ "Tech stack": "React.js , Node.js , Express.js , Tailwind CSS , HTML, CSS, JS , Routing , Three.js , Farmer-motion",
+ "mentor 1": "Kathula Sri Raghavi",
+ "mentor 1 github": "https://github.com/sriraghavi22",
+ "mentor 1 linkedin": "https://www.linkedin.com/in/ksriraghavi/",
+ "keyword": "phase2"
+ },
+ {
+ "Project name": "DevConnect",
+ "Project description": "A platform for developers to: Showcase their profiles, projects, and skills Connect with other developers Post updates, blogs, and achievements Follow, endorse, and message others",
+ "Project link": "https://github.com/mr-rishikesh/DevConnect",
+ "Project admin": "Rishikesh Yadav",
+ "Admin linkedin": "https://www.linkedin.com/in/rishikesh-yadav-a059482b0",
+ "Admin github": "https://github.com/mr-rishikesh",
+ "Tech stack": "Fronten :React + Tailwind CSS ,\n Backend : ,Node.js + Express OR Firebase Functions\n Database :MongoDB (with Mongoose) or Firestore,\n Auth: GitHub OAuth / Firebase Auth,\n Hosting : Vercel (frontend) + Render or Railway (backend)\n CI/CD GitHub Actions + ESLint/Prettier",
+ "mentor 1": "Lokesh Mehar",
+ "mentor 1 github": "https://github.com/lokeshmehar",
+ "mentor 1 linkedin": "https://www.linkedin.com/in/lokesh-mehar-926a34254",
+ "keyword": "phase2"
+ },
+ {
+ "Project name": "Eduhaven",
+ "Project description": "EduHaven is a productivity platform designed to enhance student learning with real-time collaboration, task management, note-making, and social connectivity. Built to optimize study efficiency, it offers seamless interactions through WebRTC-powered study rooms, analytics-driven insights, and gamification.",
+ "Project link": "https://github.com/EduHaven/EduHaven",
+ "Project admin": "Rishu Kumar",
+ "Admin linkedin": "https://www.linkedin.com/in/rishukumarcodes/",
+ "Admin github": "https://github.com/RishuKumarCodes",
+ "Tech stack": "MERN (React, JavaScript, MongoDB, Node.js)",
+ "mentor 1": "Satyajeet Nayak",
+ "mentor 1 github": "https://github.com/isatyajeet9",
+ "mentor 1 linkedin": "https://www.linkedin.com/in/isatyajeet9/",
+ "keyword": "phase2"
+ },
+ {
+ "Project name": "GitHubber",
+ "Project description": "GitHubber is Git Simplified. GitHubber enables and helps newcomers and beginners at Version Control to effeciently use git commands without memorising them through a simple menu driven cli approach. Tackles all commands ranging from simple push pull to complex rebases and cherry picks all through a menu driven interface and simple option clicking. Alternate branch of the projects explores a redesigned version of the Git ecosystem with more robust functionalities.",
+ "Project link": "https://github.com/ritankarsaha/GitHubber",
+ "Project admin": "Ritankar Saha",
+ "Admin linkedin": "https://www.linkedin.com/in/ritankar-saha-8041b9289/",
+ "Admin github": "https://github.com/ritankarsaha",
+ "Tech stack": "Golang",
+ "mentor 1": "Pratik Mahalle",
+ "mentor 1 github": "https://github.com/pratik-mahalle",
+ "mentor 1 linkedin": "https://www.linkedin.com/in/mahalle-pratik/",
+ "keyword": "phase2"
+ },
+ {
+ "Project name": "XMail",
+ "Project description": "A modern, minimal, lightweight, fast web based open source email client",
+ "Project link": "https://github.com/open-xyz/xmail",
+ "Project admin": "Rohan Sharma",
+ "Admin linkedin": "htpos://linkedin.com/in/rohansx",
+ "Admin github": "https://github.com/rohansx",
+ "Tech stack": "Typescript",
+ "mentor 1": "Aksh Khurana",
+ "mentor 1 github": "http://github.com/iakshkhurana",
+ "mentor 1 linkedin": "http://linkedin.com/in/akshkhurana",
+ "keyword": "phase2"
+ },
+ {
+ "Project name": "Lol Url",
+ "Project description": "Perfect Analytics tool for Links. Tdack them shorten them. Perfect for Marketers",
+ "Project link": "https://github.com/Rohit-Dnath/LOL-URL",
+ "Project admin": "Rohit Debnath",
+ "Admin linkedin": "https://www.linkedin.com/in/rohit-debnath?utm_source=share&utm_campaign=share_via&utm_content=profile&utm_medium=android_app",
+ "Admin github": "https://github.com/Rohit-Dnath",
+ "Tech stack": "React, Tailwind, Shadcn, Supabase",
+ "mentor 1": "Avansh Yadav",
+ "mentor 1 github": "https://github.com/Avansh2006",
+ "mentor 1 linkedin": "https://www.linkedin.com/in/avanshyadav/",
+ "keyword": "phase2"
+ },
+ {
+ "Project name": "PriGPT Studio",
+ "Project description": "PrivGPT Studio Your Private AI Workspace: A privacyfirst AI platform that lets you run local and cloud AIML models side by side. Features include multichat management with crossreferences, PDF/image/audio/video analysis, voice input with transcription, offline fallback, latency tracking, session rename/export/delete, and privacyfocused design. Future scope †’ add generative AI for image/video/audio, enable multiuser support with authentication, build pages like About/Contact, enhance UI/UX with dashboards, add realtime collaboration, internationalization, and plugin support.",
+ "Project link": "https://github.com/Rucha-Ambaliya/PrivGPT-Studio.git",
+ "Project admin": "Rucha Ambaliya",
+ "Admin linkedin": "https://www.linkedin.com/in/rucha-ambaliya?utm_source=share&utm_campaign=share_via&utm_content=profile&utm_medium=android_app",
+ "Admin github": "https://github.com/Rucha-Ambaliya",
+ "Tech stack": "PrivGPT Studio frontend is built with Next.js (React) and TailwindCSS for a fast, responsive UI. The backend uses Flask (Python) to handle API requests and business logic. Data is stored in MongoDB, a flexible NoSQL database. For AI processing, it integrates Ollama local models for offline capabilities and Google Gemini API for powerful cloud-based AI services.",
+ "mentor 1": "Nikhil Deshmukh",
+ "mentor 1 github": "https://github.com/nikhildeshmukh170",
+ "mentor 1 linkedin": "https://www.linkedin.com/in/nikhil-d-deshmukh/",
+ "keyword": "phase2"
+ },
+ {
+ "Project name": "job listing and applicant tracking system using advance java",
+ "Project description": "A job listing and applicant tracking system (ATS) built with advanced Java would automate the recruitment process, managing job postings, applications, and candidate information. This system would enhance efficiency, reduce manual effort, and improve the overall candidate and recruiter experience. It would typically involve features like job posting creation, applicant registration and profile management, resume parsing, search and filtering of candidates, interview scheduling, and automated notifications.",
+ "Project link": "https://github.com/SAANVIVERMA05/CODSOFT",
+ "Project admin": "Saanvi Verma",
+ "Admin linkedin": "https://www.linkedin.com/in/saanvi-verma-71a370275",
+ "Admin github": "https://github.com/SAANVIVERMA05/CODSOFT",
+ "Tech stack": "Advance java, Servlet, jsp",
+ "mentor 1": "Tanvi Viroliya",
+ "mentor 1 github": "https://github.com/Twii108",
+ "mentor 1 linkedin": "https://www.linkedin.com/in/tanvi-viroliya-553217318?utm_source=share&utm_campaign=share_via&utm_content=profile&utm_medium=android_app",
+ "keyword": "phase2"
+ },
+ {
+ "Project name": "Factshare",
+ "Project description": "Engineered an AI-powered fact-checking platform that achieved 92% accuracy in misinformation detection using\n \n Gemini APIs for claim analysis and image text extraction. Integrated Google Fact Check API for real-time news validation\n \n and a version-controlled credibility tracking system. Enhanced engagement with a chatbot delivering live, verifiable news links.\n \n Enabled a 30% boost in verification participation through a community-driven voting system.",
+ "Project link": "https://github.com/Saathviga9605/Factshare",
+ "Project admin": "Saathviga B",
+ "Admin linkedin": "https://www.linkedin.com/in/saathvigab/",
+ "Admin github": "https://github.com/Saathviga9605/",
+ "Tech stack": "React, Flask, MongoDB, Gemini API, Google Search Fact Check API",
+ "mentor 1": "Avansh Yadav",
+ "mentor 1 github": "https://github.com/Avansh2006",
+ "mentor 1 linkedin": "https://www.linkedin.com/in/avanshyadav/",
+ "keyword": "phase2"
+ },
+ {
+ "Project name": "Adoptive AI based traffic management system",
+ "Project description": "This Adopative AI Based Traffic Management System The basic idea of a traffic signal where vehicles are lined up in four lanes: Lane 1, Lane 2, Lane 3, and Lane 4. A camera or sensor system will simultaneously capture images of all four lanes. These captured images will be stored within a single frame. The stored frame will then be processed using the YOLO API, an artificial intelligence-based object detection model. By analyzing the detected vehicles in the image, the vehicle density of each lane will be determined. Based on the calculated vehicle density, the signal timing will be set accordingly. If the vehicle density exceeds a predefined range, a fixed setup timer will be applied to regulate the traffic flow.",
+ "Project link": "https://github.com/sachingiri58?tab=repositories",
+ "Project admin": "Sachin Gajanan Giri",
+ "Admin linkedin": "https://www.linkedin.com/in/sachin-giri -657698221",
+ "Admin github": "https://github.com/sachingiri58",
+ "Tech stack": "HTML, CSS, JavaScript, React.js, Node.js, Express.js, PostgreSQL, MongoDB, Python, OpenCV, YOLOv5",
+ "mentor 1": "Monish Raman",
+ "mentor 1 github": "https://github.com/MonishRaman",
+ "mentor 1 linkedin": "https://www.linkedin.com/in/monishr608",
+ "keyword": "phase2"
+ },
+ {
+ "Project name": "Lost and Found",
+ "Project description": "Lost and Found -\n A simple and user-friendly web application to report, view, and recover lost or found items on campus. It helps students and staff connect and return lost belongings easily.",
+ "Project link": "https://github.com/saismrutiranjan18/Lost-and-Found",
+ "Project admin": "Sai Smruti Ranjan Das",
+ "Admin linkedin": "https://www.linkedin.com/in/saismrutiranjan?utm_source=share&utm_campaign=share_via&utm_content=profile&utm_medium=android_app",
+ "Admin github": "https://github.com/saismrutiranjan18",
+ "Tech stack": "MERN",
+ "mentor 1": "Mah Noor Fatima",
+ "mentor 1 github": "https://github.com/theefatymah",
+ "mentor 1 linkedin": "https://www.linkedin.com/in/theefatymah",
+ "keyword": "phase2"
+ },
+ {
+ "Project name": "Compassion Connect",
+ "Project description": "Compassion-Connect is a web-based Charity and Fundraising Platform designed to simplify the donation process and connect donors with meaningful causes. Built using HTML, CSS, JavaScript, Node.js, Express.js, and MongoDB, ReactJS , the platform allows users to create and manage fundraising campaigns, set goals, and track real-time progress.",
+ "Project link": "https://github.com/SrijaVuppala295/Compassion_Connect/",
+ "Project admin": "Sai Srija Vuppala",
+ "Admin linkedin": "https://www.linkedin.com/in/srijavuppala02/",
+ "Admin github": "https://github.com/SrijaVuppala295",
+ "Tech stack": "HTML, CSS, JavaScript, Node.js, Express.js, and MongoDB, ReactJS",
+ "mentor 1": "Arbin Mahato",
+ "mentor 1 github": "https://github.com/arbin-mahato",
+ "mentor 1 linkedin": "https://www.linkedin.com/in/arbin-mahato/",
+ "keyword": "phase2"
+ },
+ {
+ "Project name": "Quiz portal",
+ "Project description": "A full-stack interactive quiz application built with React and Node.js, enabling users to register, log in, take quizzes, receive instant feedback, and track their performance through detailed statistics and attempt history. Users can manage their profiles, while administrators access a comprehensive dashboard to create, edit, and delete quizzes, manage questions and users, view analytics, and monitor quiz activity in real time.",
+ "Project link": "https://github.com/SaishGhatol/quiz-portal",
+ "Project admin": "Saish Ghatol",
+ "Admin linkedin": "https://www.linkedin.com/in/saish-ghatol",
+ "Admin github": "https://www.github.com/saishghatol",
+ "Tech stack": "MongoDB, Express.js,React.js,Node.js",
+ "mentor 1": "Arbin Mahato",
+ "mentor 1 github": "https://github.com/arbin-mahato",
+ "mentor 1 linkedin": "https://www.linkedin.com/in/arbin-mahato/",
+ "keyword": "phase2"
+ },
+ {
+ "Project name": "NPMChat",
+ "Project description": "NPMChat is an open source, real-time chat platform for developers and teams. Built with the MENN stack (MongoDB, Express, Next.js, Node.js), it features collaborative code editing, live interview mode, file sharing, code execution, and moreall in a beautiful, modern UI. Perfect for learning, collaboration, and building together.",
+ "Project link": "https://github.com/ThePlator/NPMChat",
+ "Project admin": "Sameer",
+ "Admin linkedin": "https://www.linkedin.com/in/sameer-pce/",
+ "Admin github": "https://github.com/ThePlator",
+ "Tech stack": "Nextjs, ExpressJS, Nodejs, Mongodb",
+ "mentor 1": "Mahi Jain",
+ "mentor 1 github": "https://github.com/Mahi290",
+ "mentor 1 linkedin": "https://www.linkedin.com/in/mahijain2902",
+ "keyword": "phase2"
+ },
+ {
+ "Project name": "whack-a-mole-game",
+ "Project description": "A fun web based game",
+ "Project link": "https://github.com/Samrudhipawar/whack-a-mole-game",
+ "Project admin": "Samrudhi Pawar",
+ "Admin linkedin": "https://www.linkedin.com/in/samrudhipawar21/",
+ "Admin github": "https://github.com/Samrudhipawar",
+ "Tech stack": "JavaScript, HTML5, CSS3, AmazonCLI",
+ "mentor 1": "Harsh Ahuja",
+ "mentor 1 github": "https://github.com/Harsh-26626",
+ "mentor 1 linkedin": "https://www.linkedin.com/in/harsh-ahuja-722948292/",
+ "keyword": "phase2"
+ },
+ {
+ "Project name": "Organa",
+ "Project description": "A real-time organ donation coordination platform for healthcare using Node.js, Express, Socket.io, and Next.js, with planned integration of ML models for smart donor-recipient matching inviting contributors from both full-stack and ML backgrounds.",
+ "Project link": "https://github.com/msanchariii/evolver",
+ "Project admin": "Sanchari Mandal",
+ "Admin linkedin": "https://www.linkedin.com/in/msanchari/",
+ "Admin github": "https://github.com/msanchariii",
+ "Tech stack": "React.js, Next.js, TailwindCSS, Node.js, Express.js, Socket.io",
+ "mentor 1": "Varun Maramreddy",
+ "mentor 1 github": "https://github.com/DrMyth",
+ "mentor 1 linkedin": "https://www.linkedin.com/in/varunmaramreddy/",
+ "keyword": "phase2"
+ },
+ {
+ "Project name": "Eventra - Full Stack Event Management System",
+ "Project description": "Eventra is a modern full-stack open-source event management system built to help communities, colleges, and organizations create, manage, and track events with ease. It includes features like event creation, RSVPs, QR-code-based check-ins, admin dashboard, feedback collection, and user roles. The project is designed to be beginner-friendly and modular for open-source contributions.",
+ "Project link": "https://github.com/SandeepVashishtha/Eventra",
+ "Project admin": "Sandeep Vashishtha",
+ "Admin linkedin": "https://www.linkedin.com/in/sandeepvashishtha",
+ "Admin github": "https://github.com/SandeepVashishtha",
+ "Tech stack": "Frontend: React.js, Tailwind CSS\n \n Backend: Spring Boot, Spring Security, JWT\n \n Database: PostgreSQL\n \n Tools: Docker, GitHub Actions",
+ "mentor 1": "Satyam seth",
+ "mentor 1 github": "https://github.com/anonymous-lad2",
+ "mentor 1 linkedin": "https://www.linkedin.com/in/satyam-seth44/",
+ "mentor 2": "Sanjeet Raj",
+ "mentor 2 github": "https://github.com/Sanjeet4567",
+ "Mentor 2 linkedin": "https://www.linkedin.com/in/sanjeetraj40/",
+ "keyword": "phase2"
+ },
+ {
+ "Project name": "Dream Pixel : AI IMAGE GENERATOR",
+ "Project description": "A full-stack AI image generator web application built using the MERN stack (MongoDB, Express.js, React.js, Node.js) and powered by Hugging Face's Stable Diffusion API to convert text prompts into images. Users can generate images, view them in a community feed, and share their creations.",
+ "Project link": "https://github.com/SanmathiSedhupathi/AI_IMAGE_GENERATOR_MERN",
+ "Project admin": "Sanmathi S",
+ "Admin linkedin": "https://www.linkedin.com/in/sanmathi-sedhupathi08/",
+ "Admin github": "https://github.com/SanmathiSedhupathi",
+ "Tech stack": "MERN STACK, Devops : Docker, Kubernetes,Jenkins",
+ "mentor 1": "Pratham Gautam",
+ "mentor 1 github": "https://github.com/mehffine",
+ "mentor 1 linkedin": "https://www.linkedin.com/in/pratham-gautam",
+ "keyword": "phase2"
+ },
+ {
+ "Project name": "PYQFort",
+ "Project description": "This project aims to create a centralized collection of PYQs for all B.Tech. students in India. PYQFort Working Structure: https://drive.google.com/file/d/1ifkLQEm9bwby5uYgnvmDjaJYYLZRu_pX/view?usp=drivesdk",
+ "Project link": "https://github.com/Saumy1905/PYQFort",
+ "Project admin": "Saumy",
+ "Admin linkedin": "https://www.linkedin.com/in/saumy1905",
+ "Admin github": "https://github.com/Saumy1905",
+ "Tech stack": "LaTeX | Data Science | Data Analysis | matplotlib | seaborn | AI [PYQ file (LaTeX) link: https://drive.google.com/file/d/1v9cCBwznt2n2zNgzHk5b1W1H7ARU6C5S/view?usp=drivesdk]",
+ "mentor 1": "Chandrika Joshi",
+ "mentor 1 github": "https://github.com/Chandrikajoshi123",
+ "mentor 1 linkedin": "https://www.linkedin.com/in/chandrika-j-0b1a98238?utm_source=share&utm_campaign=share_via&utm_content=profile&utm_medium=android_app",
+ "keyword": "phase2"
+ },
+ {
+ "Project name": "Supply Management",
+ "Project description": "This project aims to create a web application that encourages users to donate to noble causes seamlessly. With a combination of technology and compassion, Supply Management is more than just a website; it's a platform for positive change. Through our interface we help those marginalized communities who are in need of basic necessities by connecting with donors.",
+ "Project link": "https://github.com/Tejaswiseelam/Supply-Management.git",
+ "Project admin": "Seelam Tejaswi",
+ "Admin linkedin": "https://www.linkedin.com/in/tejaswiseelam/",
+ "Admin github": "https://github.com/Tejaswiseelam",
+ "Tech stack": "HTML, Vanilla CSS, Python, Java",
+ "mentor 1": "Hemanshu",
+ "mentor 1 github": "https://github.com/HemanshuMandhana",
+ "mentor 1 linkedin": "https://www.linkedin.com/in/hemanshu-mandhana-039601264/",
+ "keyword": "phase2"
+ },
+ {
+ "Project name": "Resume Skill Extractor Job Matcher",
+ "Project description": "A smart Flask web app that extracts skills from uploaded resumes and matches them with relevant job descriptions using Natural Language Processing (NLP) and Machine Learning. Helps job seekers understand where they stand and what skills they need to improve.",
+ "Project link": "https://github.com/code-with-shahid/Resume-Skill-Extractor-Job-Matcher",
+ "Project admin": "Shahid Afridi",
+ "Admin linkedin": "https://www.linkedin.com/in/shahid-afridi-793a01297/",
+ "Admin github": "https://github.com/code-with-shahid",
+ "Tech stack": "Backend: Python, Flask and Gunicorn NLP & Machine Learning: NLTK, spacy, scikit-learn, pdfminer.six. Frontend: HTML5 & CSS3, Jinja2",
+ "mentor 1": "Kathula Sri Raghavi",
+ "mentor 1 github": "https://github.com/sriraghavi22",
+ "mentor 1 linkedin": "https://www.linkedin.com/in/ksriraghavi/",
+ "keyword": "phase2"
+ },
+ {
+ "Project name": "TLDRify",
+ "Project description": "Get summary for any content(link, tweet, youtube video, pdf, articles) and it automatically summarizes the content, extracts key insights, categorizes it, saves it on your dashboard with tags",
+ "Project link": "https://github.com/Shantanu-Tiwari/TLDRify",
+ "Project admin": "Shantanu Tiwari",
+ "Admin linkedin": "https://in.linkedin.com/in/shantanutiwari24",
+ "Admin github": "https://github.com/Shantanu-Tiwari",
+ "Tech stack": "react js, Tailwind, Gemini API, pdf.js, supabase",
+ "mentor 1": "Avansh Yadav",
+ "mentor 1 github": "https://github.com/Avansh2006",
+ "mentor 1 linkedin": "https://www.linkedin.com/in/avanshyadav/",
+ "keyword": "phase2"
+ },
+ {
+ "Project name": "IPURanker Placement, Cut-off Visualizer, College Predictor",
+ "Project description": "IPURanker is a web-based application that helps students explore historical admission rank lists and cut-offs for Guru Gobind Singh Indraprastha University (GGSIPU) from 2015 to 2025. The platform allows filtering by course, college, and year, making it easier for students to analyze trends and make informed admission choices. It is built as an open-source tool with clean UI and accessible data visualization.",
+ "Project link": "https://github.com/imshashi365/IPURanker",
+ "Project admin": "Shashi",
+ "Admin linkedin": "https://www.linkedin.com/in/shashi365/",
+ "Admin github": "https://github.com/imshashi365",
+ "Tech stack": "Frontend: Html,css, javascript,Next.js, React.js, Tailwind CSS, Node.js, MongoDB",
+ "mentor 1": "Vaibhav",
+ "mentor 1 github": "https://www.github.com/v8v88v8v88",
+ "mentor 1 linkedin": "https://linkedin.com/in/v8v88v8v88",
+ "keyword": "phase2"
+ },
+ {
+ "Project name": "Quick Blog",
+ "Project description": "This project is a full-featured AI-enabled blog application developed using the MERN Stack (MongoDB, Express.js, React.js, Node.js). The application provides a seamless platform for users to read and interact with blog content, while enabling the admin to efficiently manage blog posts and comments through a dedicated admin dashboard.\n \n An AI-powered content generation feature is integrated using Google Gemini, enabling administrators to automatically generate blog content based on prompts, enhancing productivity and consistency in blog creation. Additionally, ImageKit API is used for optimized image upload, storage, and delivery, improving the media handling capabilities of the platform.\n \n The application is deployed online using Vercel, ensuring high performance and accessibility",
+ "Project link": "https://github.com/Shirisakthi-1106/QuickBlog",
+ "Project admin": "Shiri Sakthi P N",
+ "Admin linkedin": "https://www.linkedin.com/in/shiri-sakthi-p-n-a2a4b828b",
+ "Admin github": "https://github.com/Shirisakthi-1106",
+ "Tech stack": "MERN Stack ( MongoDB, React.js , Express , Node)",
+ "mentor 1": "Sahil",
+ "mentor 1 github": "http://github.com/sahil-luthra-000",
+ "mentor 1 linkedin": "http://www.linkedin.com/in/sahil-luthra09",
+ "keyword": "phase2"
+ },
+ {
+ "Project name": "Daily DSA",
+ "Project description": "Daily DSA is a collaborative repo of important DSA questions with simple solutions, complexities, and explanations.",
+ "Project link": "https://github.com/shivamm-verma/Daily-DSA",
+ "Project admin": "Shivam Verma",
+ "Admin linkedin": "https://www.linkedin.com/in/shivamm-verma/",
+ "Admin github": "https://github.com/shivamm-verma",
+ "Tech stack": "DSA, Programming Languages, markdown files",
+ "mentor 1": "Shivangi Suyash",
+ "mentor 1 github": "https://github.com/Shivangi10-10",
+ "mentor 1 linkedin": "https://www.linkedin.com/in/shivangi-suyash-05a484259",
+ "mentor 2": "Ramkrushna Vijaysingh Shinde",
+ "mentor 2 github": "https://github.com/Ramkrushna77",
+ "Mentor 2 linkedin": "https://www.linkedin.com/in/ramkrushna-shinde-ak77",
+ "keyword": "phase2"
+ },
+ {
+ "Project name": "FieldTrace 100% Offline Audit & Field Logging App",
+ "Project description": "FieldTrace is a fully offline, open-source Flutter application that empowers individuals and organizations to log, track, and export structured field data even in areas with no internet access.\n \n Built using modern Flutter architecture (MVVM + BLoC + SQLite), FieldTrace offers a modular and scalable foundation for sectors like agriculture, infrastructure, healthcare, logistics, and security where ground-level data collection is essential but connectivity is unreliable or nonexistent.\n \n It aims to bridge the gap between on-the-ground reality and digital traceability, one audit at a time.",
+ "Project link": "https://github.com/GDSC-Kanpur-Institiute-of-Technolgy/FieldTrace/tree/main",
+ "Project admin": "Shivansh Kumar",
+ "Admin linkedin": "https://www.linkedin.com/in/shivansh-kumar-492b3021b?utm_source=share&utm_campaign=share_via&utm_content=profile&utm_medium=android_app",
+ "Admin github": "https://github.com/ShivanshKumar4265",
+ "Tech stack": "Flutter, Dart, Sqlite, Bloc",
+ "mentor 1": "Ayan Roy",
+ "mentor 1 github": "https://github.com/im-AyanRoy",
+ "mentor 1 linkedin": "https://www.linkedin.com/in/im-ayanroy?utm_source=share&utm_campaign=share_via&utm_content=profile&utm_medium=android_app",
+ "keyword": "phase2"
+ },
+ {
+ "Project name": "Markdrop",
+ "Project description": "A Python package for converting PDFs to markdown while extracting images and tables, generate descriptive text descriptions for extracted tables/images using several LLM clients. And many more functionalities. Markdrop is available on PyPI.",
+ "Project link": "https://github.com/shoryasethia/markdrop",
+ "Project admin": "Shorya Sethia",
+ "Admin linkedin": "https://www.linkedin.com/in/shorya-sethia-680b24250/",
+ "Admin github": "https://github.com/shoryasethia",
+ "Tech stack": "Python",
+ "mentor 1": "Tanvi",
+ "mentor 1 github": "https://github.com/Twii108",
+ "mentor 1 linkedin": "https://www.linkedin.com/in/tanvi-viroliya-553217318?utm_source=share&utm_campaign=share_via&utm_content=profile&utm_medium=android_app",
+ "keyword": "phase2"
+ },
+ {
+ "Project name": "Movie Theatre Management System",
+ "Project description": "Movie Theatre Management System (Java + MySQL)\n The Movie Management System is a comprehensive application developed using Java and MySQL. It offers a range of essential features for managing a movie theatre, including:\n Seat Booking: Allows users to view available seats and book them in real-time.\n \n Suggestions: Users can submit suggestions to improve services or movie selections.\n Contact Support: A built-in contact system enables users to reach out for queries or feedback.\n This project provides a user-friendly interface and a robust backend to ensure efficient management and a smooth user experience.",
+ "Project link": "https://github.com/SvJalmi/DBMS_Project.git",
+ "Project admin": "Shreya Jalmi",
+ "Admin linkedin": "https://www.linkedin.com/in/shreya-jalmi-b15081290",
+ "Admin github": "https://github.com/SvJalmi",
+ "Tech stack": "Java + MySQL+ VsCode",
+ "mentor 1": "Tanvi",
+ "mentor 1 github": "https://github.com/Twii108",
+ "mentor 1 linkedin": "https://www.linkedin.com/in/tanvi-viroliya-553217318?utm_source=share&utm_campaign=share_via&utm_content=profile&utm_medium=android_app",
+ "keyword": "phase2"
+ },
+ {
+ "Project name": "Prepnerdz",
+ "Project description": "College students waste countless hours wandering WhatsApp groups, requesting seniors or digging through unorganised drive for study materials and all. Prepnerdz solves this Chaos by providing the centralised and organised platform of RGPV previous year papers, final semester, mid semester, lab manuals, important questions, topics, reference books, best academic notes and many more.",
+ "Project link": "https://github.com/Shubhashish-Chakraborty/prepnerdz",
+ "Project admin": "Shubhashish Chakraborty",
+ "Admin linkedin": "https://linkedin.com/in/Shubhashish-Chakraborty",
+ "Admin github": "https://github.com/Shubhashish-Chakraborty",
+ "Tech stack": "Typescript, Next js, Tailwind CSS, Nodejs, Expressjs, Postgresql, Prisma",
+ "mentor 1": "Jaydeepsinh Parmar",
+ "mentor 1 github": "https://github.com/jaydeep099",
+ "mentor 1 linkedin": "https://www.linkedin.com/in/jaydeepsinh-parmar-084609247/",
+ "keyword": "phase2"
+ },
+ {
+ "Project name": "Your trip planner",
+ "Project description": "A travel planning web app that lets users filter destinations by region and track journey expenses.",
+ "Project link": "https://github.com/code-well0/trip-planner",
+ "Project admin": "Shubrali jain",
+ "Admin linkedin": "https://www.linkedin.com/in/shubrali-jain",
+ "Admin github": "https://github.com/code-well0",
+ "Tech stack": "React JS, Javascript, CSS, HTML",
+ "mentor 1": "Pratyaksh Khetrapal",
+ "mentor 1 github": "https://github.com/Pratham00007",
+ "mentor 1 linkedin": "https://www.linkedin.com/in/pratham-khetrapal",
+ "keyword": "phase2"
+ },
+ {
+ "Project name": "HackerZGuide",
+ "Project description": "HackerZGuide is a platform designed to guide individuals toward achieving their future goals. It provides valuable insights, resources, and strategies to help users navigate challenges, develop skills, and unlock their full potential for personal and professional success.",
+ "Project link": "https://github.com/shuvadeepmondal/HacKerZGuiDe",
+ "Project admin": "Shuvadeep Mondal",
+ "Admin linkedin": "https://www.linkedin.com/in/shuvadeep-mondal-b6212b260",
+ "Admin github": "https://github.com/shuvadeepmondal",
+ "Tech stack": "HTML, CSS, JAVASCRIPT, Firebase",
+ "mentor 1": "Harsh Jain",
+ "mentor 1 github": "https://github.com/HarshHp15s",
+ "mentor 1 linkedin": "https://www.linkedin.com/in/harshjainrs?utm_source=share&utm_campaign=share_via&utm_content=profile&utm_medium=android_app",
+ "keyword": "phase2"
+ },
+ {
+ "Project name": "eventify",
+ "Project description": "Full-stack event management platform with AI integration and payment processing",
+ "Project link": "https://github.com/DeepDive-Dev/eventify",
+ "Project admin": "Siddhant Singh Bisht",
+ "Admin linkedin": "https://www.linkedin.com/in/siddhantsinghbisht",
+ "Admin github": "https://github.com/sidsbgithub",
+ "Tech stack": "Next.js, TypeScript, Shadcn/UI, Tailwind CSS for frontend; MongoDB and Next.js API routes for backend; Stripe for payment processing; Google Gemini API for AI-powered features like summarization and chat; Clerk for authentication and Vercel for deployment.",
+ "mentor 1": "Kanishka",
+ "mentor 1 github": "https://github.com/sachiikrish",
+ "mentor 1 linkedin": "https://in.linkedin.com/in/kanishka-tyagi-a334b128b",
+ "keyword": "phase2"
+ },
+ {
+ "Project name": "Project Huckleberry",
+ "Project description": "The official website of GDG On Campus NIT Rourkela",
+ "Project link": "https://github.com/dscnitrourkela/project-huckleberry",
+ "Project admin": "Siddharth",
+ "Admin linkedin": "https://www.linkedin.com/in/siddharth-narayan-mishra/",
+ "Admin github": "https://github.com/siddharth-narayan-mishra",
+ "Tech stack": "NextJs, TailwindCSS, Prisma, Auth.js",
+ "mentor 1": "Jiya Rathi",
+ "mentor 1 github": "https://github.com/Jiya-Rathi",
+ "mentor 1 linkedin": "https://www.linkedin.com/in/jiya-rathi/",
+ "keyword": "phase2"
+ },
+ {
+ "Project name": "Boutique to box",
+ "Project description": "Hybrid AI Architecture: GPT-4 (Style Analysis) + StyleGAN2 (Fabric Patterns) + RunwayML (Text-to-Image)\nGlobal Scalability: 10K+ concurrent users handled via Appwrite Cloud Functions\nFull Stack Automation: Design †’ 3D Preview †’ Manufacturing (Printful API) in <5 minutes",
+ "Project link": "https://github.com/x0lg0n/Boutique-To-Box",
+ "Project admin": "Siddhartha Kunwar",
+ "Admin linkedin": "https://www.linkedin.com/in/siddhartha-kunwar",
+ "Admin github": "https://github.com/x0lg0n",
+ "Tech stack": "Frontend: React + Three.js (WebGL 3D Viewer)\n - Backend: Node/Express + Appwrite (Auth/DB)\n - AI Core: RunwayML + StyleGAN2 + GPT-4\n - Geo-Services: Mapbox (Store Locator)\n - Manufacturing: Printful API Integration\n - Trend Analysis: Google Trends + AWS Forecast",
+ "mentor 1": "Kathula Sri Raghavi",
+ "mentor 1 github": "https://github.com/sriraghavi22",
+ "mentor 1 linkedin": "https://www.linkedin.com/in/ksriraghavi/",
+ "keyword": "phase2"
+ },
+ {
+ "Project name": "Personal AI desktop Assistant",
+ "Project description": "handle desktop task",
+ "Project link": "https://github.com/simrkadak/Personal-AI-Desktop-Assistant",
+ "Project admin": "SIMRAN KADAK",
+ "Admin linkedin": "https://www.linkedin.com/in/simran-kadak-92611b256",
+ "Admin github": "https://github.com/simrkadak",
+ "Tech stack": "python, AI technologies",
+ "mentor 1": "Vishav Mehra",
+ "mentor 1 github": "https://github.com/vishavmehra",
+ "mentor 1 linkedin": "https://www.linkedin.com/in/vishav-mehra-755107208?utm_source=share&utm_campaign=share_via&utm_content=profile&utm_medium=ios_app",
+ "keyword": "phase2"
+ },
+ {
+ "Project name": "MoodSphere",
+ "Project description": "MoodSphere is a delightful and interactive Mood Tracker app that empowers you to reflect on your emotions and maintain a balanced mental state. With vibrant mood icons, a beautiful calendar interface…, and gentle reminders, it invites you to log your daily mood and express yourself freely.",
+ "Project link": "https://github.com/SivaDurshika-G/MoodSphere-",
+ "Project admin": "Siva Durshika G",
+ "Admin linkedin": "https://www.linkedin.com/in/siva-durshika-g-86141030a",
+ "Admin github": "https://github.com/SivaDurshika-G",
+ "Tech stack": "HTML,CSS,JS, Local Storage API",
+ "mentor 1": "Shashank Gupta",
+ "mentor 1 github": "https://github.com/ShashankScript",
+ "mentor 1 linkedin": "https://www.linkedin.com/in/shashank-gupta-abb76030b",
+ "keyword": "phase2"
+ },
+ {
+ "Project name": "PrepWise",
+ "Project description": "AI integrated mock interview platform",
+ "Project link": "https://github.com/smiti-jana/PrepWise",
+ "Project admin": "Smiti Jana",
+ "Admin linkedin": "https://www.linkedin.com/in/smiti-jana-1102312a7",
+ "Admin github": "https://github.com/smiti-jana",
+ "Tech stack": "Typescript, React, Tailwind Css, Shadcn UI, Vapi, Firebase",
+ "mentor 1": "Kumud Hasija",
+ "mentor 1 github": "https://github.com/Kumud-hasija",
+ "mentor 1 linkedin": "https://www.linkedin.com/in/kumud-hasija-060b172a2",
+ "keyword": "phase2"
+ },
+ {
+ "Project name": "FocusVerse",
+ "Project description": "FocusVerse is a calm, distraction-blocking web app that helps students stay focused through a customizable timer, gentle alerts, motivational quotes, and relaxing background music.\n \n It blends productivity with peace ideal for anyone who wants to study smarter without stress.",
+ "Project link": "github.com/sneha842/FocusVerse",
+ "Project admin": "Sneha Srivastava",
+ "Admin linkedin": "https://www.linkedin.com/in/sneha-srivastava-00273832b",
+ "Admin github": "https://github.com/sneha842",
+ "Tech stack": "Frontend, Python, Flask or local storage, Chart.js, Audio API",
+ "mentor 1": "arzoo rai",
+ "mentor 1 github": "https://github.com/arzoo0511",
+ "mentor 1 linkedin": "https://www.linkedin.com/in/arzoo-rai",
+ "keyword": "phase2"
+ },
+ {
+ "Project name": "Alum Connect",
+ "Project description": "It is a project which has all the resources listed in the single website + mentorship as well such that it will be more easier to connect alumnis and students when they are in Tier-3 and Tier-4",
+ "Project link": "https://github.com/stuticoder123/Alum-Connect",
+ "Project admin": "Stuti Gupta",
+ "Admin linkedin": "https://www.linkedin.com/in/stuticoder1/",
+ "Admin github": "https://github.com/stuticoder123/",
+ "Tech stack": "MERN Stack,AI/ML,Frontend,Backend,All types of other languages and tech stacks are allowed",
+ "mentor 1": "Shirshendu R Tripathi",
+ "mentor 1 github": "https://www.github.com/ShirshenduR",
+ "mentor 1 linkedin": "https://linkedin.com/in/shirshendur",
+ "keyword": "phase2"
+ },
+ {
+ "Project name": "Mvpblocks",
+ "Project description": "MVPBlocks is a fully open-source, developer-first component library built using Next Js and TailwindCSS, designed to help you launch your MVPs in record time. No bloated packages, no unnecessary installsjust clean, copyable code to plug right into your next big thing.\n \n Whether you're building a SaaS dashboard, a landing page, or a personal portfolioMVPBlocks offers a curated set of reusable blocks designed to work beautifully right out of the box.",
+ "Project link": "https://github.com/subhadeeproy3902/mvpblocks",
+ "Project admin": "Subhadeep Roy",
+ "Admin linkedin": "https://www.linkedin.com/in/subhadeep3902/",
+ "Admin github": "https://github.com/subhadeeproy3902",
+ "Tech stack": "NextJs, Typescript, Shadcn UI, TailwindCSS, Framer Motion, Fumadocs, Vercel AI",
+ "mentor 1": "Anvesha Singh",
+ "mentor 1 github": "https://github.com/ASingh2425",
+ "mentor 1 linkedin": "https://www.linkedin.com/in/anvesha-singh-3427202aa?utm_source=share&utm_campaign=share_via&utm_content=profile&utm_medium=android_app",
+ "keyword": "phase2"
+ },
+ {
+ "Project name": "Divinora",
+ "Project description": "Digital Sanctuary for exploring Divine Wisdom and spiritual Knowledge",
+ "Project link": "https://github.com/SUGAM-ARORA/Dovinora",
+ "Project admin": "Sugam Arora",
+ "Admin linkedin": "https://www.linkedin.com/in/sugamarora23/",
+ "Admin github": "https://github.com/SUGAM-ARORA",
+ "Tech stack": "javascript nextjs tailwindcss supabase shadcn",
+ "mentor 1": "Nandini Pandey",
+ "mentor 1 github": "https://github.com/nytrixis",
+ "mentor 1 linkedin": "https://www.linkedin.com/in/nytrixis",
+ "keyword": "phase2"
+ },
+ {
+ "Project name": "Toolva App",
+ "Project description": "Toolva Mobile\n A comprehensive mobile application that serves as a one-stop directory for AI tools and services. Built with React Native and Expo.",
+ "Project link": ".",
+ "Project admin": "Sugam Arora",
+ "Admin linkedin": "https://www.linkedin.com/in/sugamarora23/",
+ "Admin github": "https://github.com/SUGAM-ARORA",
+ "Tech stack": "React Native , Expo , Go , Supabase , Sonarqube , Veracode",
+ "mentor 1": "Anvesha Singh",
+ "mentor 1 github": "https://github.com/ASingh2425",
+ "mentor 1 linkedin": "https://www.linkedin.com/in/anvesha-singh-3427202aa?utm_source=share&utm_campaign=share_via&utm_content=profile&utm_medium=android_app",
+ "keyword": "phase2"
+ },
+ {
+ "Project name": "TechieBlog",
+ "Project description": "TechieBlog is a blogging platform that allows users to create, read, update, and delete blog posts. It provides a clean and user-friendly interface with essential features for content management. This project uses **Appwrite** as the backend, allowing for easy authentication, database management, and file storage.",
+ "Project link": "https://github.com/SumitGorai01/TechieBlog.git",
+ "Project admin": "Sumit Gorai",
+ "Admin linkedin": "https://www.linkedin.com/in/sumitgorai01/",
+ "Admin github": "https://github.com/SumitGorai01",
+ "Tech stack": "HTML, CSS, JavaScript, Tailwind css , React, Appwrite for user authentication, database, and file storage",
+ "mentor 1": "Yash Vikram",
+ "mentor 1 github": "https://github.com/yashvikram30",
+ "mentor 1 linkedin": "https://www.linkedin.com/in/yashvikram30?utm_source=share&utm_campaign=share_via&utm_content=profile&utm_medium=android_app",
+ "keyword": "phase2"
+ },
+ {
+ "Project name": "GravityX",
+ "Project description": "GravityX is an innovative platform designed to showcase developers and their work in a dynamic, engaging environment. It allows users to create detailed profiles, share their projects, and connect with a growing community of technology enthusiasts. Whether you are a seasoned professional or just starting out, GravityX provides the tools to highlight your skills, build your personal brand, and explore inspiring work from others. The platform focuses on usability and modern design to make browsing effortless. By bringing developers together, GravityX aims to celebrate creativity, encourage collaboration, and support the growth of the global tech community.",
+ "Project link": "https://gravity-x.pages.dev",
+ "Project admin": "Sumit Kesarwani",
+ "Admin linkedin": "https://www.linkedin.com/in/sumit-kesarwani-35b63a286",
+ "Admin github": "https://github.com/Sumit6307",
+ "Tech stack": "Frontend: React.js, Vite, Tailwind CSS\n \n Backend: Node.js, Express.js\n \n Database: MongoDB (with Mongoose)\n \n Authentication: JSON Web Tokens (JWT)\n \n Version Control: Git and GitHub\n \n APIs: REST APIs for data operations",
+ "mentor 1": "Sujal Pandey",
+ "mentor 1 github": "https://github.com/Sujal212004",
+ "mentor 1 linkedin": "https://www.linkedin.com/in/sujal-pandey-717b59253",
+ "keyword": "phase2"
+ },
+ {
+ "Project name": "Synapse",
+ "Project description": "Synapse is an AI-powered development assistant designed to help developers plan, generate, and manage code for software projects. It leverages advanced AI models to automate requirement analysis, task planning, code generation, and integrates with GitHub for seamless project management. The platform features a modern, responsive UI, in-browser code editing, and real-time collaboration tools, making it ideal for contributors of all skill levels.",
+ "Project link": "https://github.com/skdas20/Synapse",
+ "Project admin": "Sumit Kumar Das",
+ "Admin linkedin": "https://www.linkedin.com/in/sumitkumardas-ai/",
+ "Admin github": "https://github.com/skdas20",
+ "Tech stack": "Frontend: HTML5, CSS3, JavaScript\n Backend: Python, FastAPI\n Database: MongoDB\n AI Integration: Google Gemini API\n DevOps: Render (deployment), GitHub Actions (CI/CD)\n Other: PyGithub, python-dotenv, requests, httpx",
+ "mentor 1": "Sachin Gurjar",
+ "mentor 1 github": "https://github.com/gurjarsachin",
+ "mentor 1 linkedin": "https://linkedin.com/in/sachin-gurjar-a8912a2a3",
+ "keyword": "phase2"
+ },
+ {
+ "Project name": "sachiva",
+ "Project description": "Sachiva is a frontend-focused project that lets you work on a real-world business website using HTML, CSS, JavaScript & Bootstrap. Perfect for beginners and intermediate devs to practice responsive design, clean layouts, and modern UI development!",
+ "Project link": "https://github.com/sachiva1/sachiva",
+ "Project admin": "Sumit Rathor",
+ "Admin linkedin": "https://linkedin.com/in/sumitrathor",
+ "Admin github": "https://github.com/sumitrathor1",
+ "Tech stack": "HTML, CSS, Javascript, bootstrap",
+ "mentor 1": "Rounak Mishra",
+ "mentor 1 github": "https://github.com/RounakMishra06",
+ "mentor 1 linkedin": "https://www.linkedin.com/in/rounakmishra/",
+ "keyword": "phase2"
+ },
+ {
+ "Project name": "Sachiva",
+ "Project description": "Sachiva is a frontend-focused project that lets you work on a real-world business website using HTML, CSS, JavaScript & Bootstrap. Perfect for beginners and intermediate devs to practice responsive design, clean layouts, and modern UI development!",
+ "Project link": "https://github.com/sumitrathor1/sachiva",
+ "Project admin": "sumit rathor",
+ "Admin linkedin": "https://linkedin.com/in/sumitrathor",
+ "Admin github": "https://github.com/sumitrathor1",
+ "Tech stack": "HTML, CSS, Javascript, Bootstrap 5.3",
+ "mentor 1": "Tanziha Sheikh",
+ "mentor 1 github": "https://github.com/Tanziha-Sheikh",
+ "mentor 1 linkedin": "https://www.linkedin.com/in/s-a32b802",
+ "keyword": "phase2"
+ },
+ {
+ "Project name": "AI-Driven Motor Insurance Risk Assessment",
+ "Project description": "This project aims to revolutionize highway safety and vehicle insurance through AI. It uses real-time GPS and driving data to assess insurance risk dynamically and proposes Mixed-Mode Foot Over Bridges (Smart FOBs) for safer pedestrian crossings. The system leverages Gemini AI API to analyze driving behavior and enhance risk models. The app is built with Flutter, Django, and Firebase to ensure cross-platform compatibility and real-time insights.",
+ "Project link": "https://github.com/supriya46788/Driving-Safer-Roads---AI-for-Motor-Insurance-Risk-Assessment.git",
+ "Project admin": "Supriya Pandey",
+ "Admin linkedin": "https://www.linkedin.com/in/supriyapandey595",
+ "Admin github": "https://github.com/supriya46788",
+ "Tech stack": "Frontend: Flutter (Dart) - Cross-platform UI development.\r\nBackend: Django (Python) - API handling and business logic.\r\nDatabase: Firestore - Secure and scalable data storage.\r\nAuthentication: Firebase - User login and authentication.\r\nAI & ML: Google Gemini API - AI-driven recommendations and insights.\r\nReal-Time Tracking: GPS & IoT APIs - Captures real-world driving behavior.\r\nDeployment: Firebase (Frontend), Render (Backend).\r\nDevelopment Platform: Built using Google Cloud IDX for cloud-based collaboration.",
+ "mentor 1": "Soaeb Hasan",
+ "mentor 1 github": "https://github.com/soaebhasan12",
+ "mentor 1 linkedin": "https://www.linkedin.com/in/shoaib-ahmad-789827360/",
+ "mentor 2": "Sheersh Tehri",
+ "mentor 2 github": "https://github.com/sheershtehri7",
+ "Mentor 2 linkedin": "https://in.linkedin.com/in/sheersh-tehri-19b740288",
+ "keyword": "phase2"
+ },
+ {
+ "Project name": "Job Junction",
+ "Project description": "HTML, CSS & JS project for applying and hiring for job roles",
+ "Project link": "https://github.com/SurajSG23/Job-Portal",
+ "Project admin": "Suraj S G Dhanva",
+ "Admin linkedin": "https://www.linkedin.com/in/suraj-s-g-dhanva-995a23298/",
+ "Admin github": "https://github.com/SurajSG23",
+ "Tech stack": "HTML, CSS & JS",
+ "mentor 1": "Supriya bhattacharjee",
+ "mentor 1 github": "https://github.com/Supriya5784",
+ "mentor 1 linkedin": "https://www.linkedin.com/in/supriya-bhattacharjee-257a25291/",
+ "mentor 2": "Vansh Tripathi",
+ "mentor 2 github": "https://github.com/SyntaxCrafter",
+ "Mentor 2 linkedin": "https://www.linkedin.com/in/vanshtripathi/",
+ "keyword": "phase2"
+ },
+ {
+ "Project name": "CampusTrack",
+ "Project description": "CampusTrack is a full-stack web application designed to help students and staff of a college report, find, and manage lost and found items on campus. The system enables seamless tracking of lost belongings, efficient moderation, and easy communication between finders and owners.",
+ "Project link": "https://github.com/Swastik007sharma/CampusTrack",
+ "Project admin": "Swastik Sharma",
+ "Admin linkedin": "https://www.linkedin.com/in/swastik-sharma-756b04238/",
+ "Admin github": "https://github.com/Swastik007sharma",
+ "Tech stack": "MERN :- Frontend: React (with Vite) + tailwindcss",
+ "mentor 1": "Samrat Natta",
+ "mentor 1 github": "https://github.com/Samrat25",
+ "mentor 1 linkedin": "https://www.linkedin.com/in/samrat-natta-761574321?utm_source=share&utm_campaign=share_via&utm_content=profile&utm_medium=android_app",
+ "keyword": "phase2"
+ },
+ {
+ "Project name": "StockSentry",
+ "Project description": "StockSentry is a smart stock predictor that blends past price trends with current news sentiment to capture how events like product launches or controversies impact performance. Soon, it will add an AI agent to automatically analyze news, prioritize key developments, and deliver clear, dynamic market insights.",
+ "Project link": "https://github.com/swayum1004/StockSentry",
+ "Project admin": "Swayum Hastwala",
+ "Admin linkedin": "https://www.linkedin.com/in/swayum-hastwala/",
+ "Admin github": "https://github.com/swayum1004",
+ "Tech stack": "Python, NewsAPI, TextBlob, Pandas",
+ "mentor 1": "Satyam seth",
+ "mentor 1 github": "https://github.com/anonymous-lad2",
+ "mentor 1 linkedin": "https://www.linkedin.com/in/satyam-seth44/",
+ "keyword": "phase2"
+ },
+ {
+ "Project name": "SweetCode",
+ "Project description": "SweetCode aims to create a community of students and professionals united by solving and practicing DSA questions in a gamified environment. In the long run, it would include a custom competitions, public forum, leaderboard and AI assistants that help students streamline theislr DSA practice. Its currently in its infant stage and is a Chrome extension designed to gamify your LeetCode practice sessions. It rewards you with social media usage time based on the difficulty of the LeetCode problems you solve. Once installed, SweetCode helps you stay productive by allowing limited access to social media websites until your time runs out. Your time allowance resets daily.",
+ "Project link": "https://github.com/decodingafterlife/SweetCode",
+ "Project admin": "Tanmay Shingavi",
+ "Admin linkedin": "https://www.linkedin.com/in/tanmay-shingavi",
+ "Admin github": "https://github.com/decodingafterlife",
+ "Tech stack": "JavaScript HTML CSS",
+ "mentor 1": "Priti Merukar",
+ "mentor 1 github": "https://github.com/priti-m129",
+ "mentor 1 linkedin": "https://www.linkedin.com/in/priti-merukar-5b2859272?utm_source=share&utm_campaign=share_via&utm_content=profile&utm_medium=android_app",
+ "mentor 2": "Anshi Agrawal",
+ "mentor 2 github": "https://github.com/anshiagrawal22",
+ "Mentor 2 linkedin": "https://www.linkedin.com/in/anshiagrawal22/",
+ "keyword": "phase2"
+ },
+ {
+ "Project name": "Used car price prediction",
+ "Project description": "Developed a machine learning model to predict used car prices using Random Forest Regressor and Linear Regression. Leveraged scikit-learn for model implementation and Matplotlib for data visualization. Analyzed the model's performance to improve prediction accuracy .The system utilizes Python with Pandas and NumPy for data processing, Matplotlib and Seaborn for visualization, and Scikit-learn for machine learning model training. It predicts car prices based on factors like brand, model, mileage, and year.",
+ "Project link": "https://github.com/Tanyagambhir/UsedCarPricePridiction",
+ "Project admin": "Tanya Gambhir",
+ "Admin linkedin": "https://www.linkedin.com/in/tanya-gambhir-609ab0239?utm_source=share&utm_campaign=share_via&utm_content=profile&utm_medium=ios_app",
+ "Admin github": "https://github.com/Tanyagambhir",
+ "Tech stack": "Python, Pandas, NumPy, Matplotlib, Scikit-learn, TensorFlow, PyTorch, Flask, MongoDB.",
+ "mentor 1": "Diksha",
+ "mentor 1 github": "https://github.com/Diksha-007",
+ "mentor 1 linkedin": "https://www.linkedin.com/in/diksha-sharma-ba98312a5?utm_source=share&utm_campaign=share_via&utm_content=profile&utm_medium=android_app",
+ "keyword": "phase2"
+ },
+ {
+ "Project name": "SchoolApp",
+ "Project description": "Welcome to the School CRM System project! This system is designed to provide a smooth and intuitive experience for parents, students, and staff, focusing on student management and engagement. With our CRM, schools can enhance communication, ensure timely updates, and foster a better learning environment.",
+ "Project link": "https://github.com/jayanththalla/School-CRM",
+ "Project admin": "Thalla Jayanth",
+ "Admin linkedin": "linkedin.com/in/thalla-jayanth-28a04525a/",
+ "Admin github": "https://github.com/jayanththalla",
+ "Tech stack": "Next Js, Mongodb, Tailwindcss",
+ "mentor 1": "Arbin Mahato",
+ "mentor 1 github": "https://github.com/arbin-mahato",
+ "mentor 1 linkedin": "https://www.linkedin.com/in/arbin-mahato/",
+ "keyword": "phase2"
+ },
+ {
+ "Project name": "payslip generation",
+ "Project description": "My pay slip generation project is a web-based tool that helps companies create and manage employee salary slips easily. It allows HR or admin users to enter employee details like name, ID, salary, and deductions, and then automatically calculates the final salary and generates a downloadable pay slip in a proper format. The system is designed to save time, reduce manual errors, and ensure accurate salary documentation each month.",
+ "Project link": "https://github.com/Vaddadibhavanaspoorthi/Projects",
+ "Project admin": "Vaddadi Bhavanaeswari spoorthi",
+ "Admin linkedin": "https://www.linkedin.com/in/bhavana-spoorthi-vaddadi-3a109325a",
+ "Admin github": "https://github.com/Vaddadibhavanaspoorthi/Projects",
+ "Tech stack": "HTML, CSS, and JavaScript for the front end, Python (Flask) for the backend, and MySQL",
+ "mentor 1": "Brajesh Kumar",
+ "mentor 1 github": "https://github.com/Brajesh31",
+ "mentor 1 linkedin": "https://www.linkedin.com/in/brajesh-kumar-9b58651a8",
+ "keyword": "phase2"
+ },
+ {
+ "Project name": "Music Player",
+ "Project description": "this is a web based music player made using javascript",
+ "Project link": "https://github.com/vaibhavrajharsh/Music-Player.git",
+ "Project admin": "Vaibhav Raj Harsh",
+ "Admin linkedin": "https://www.linkedin.com/in/vaibhavrajharsh",
+ "Admin github": "https://www.github.com/vaibhavrajharsh",
+ "Tech stack": "HTML,Css, JavaScript",
+ "mentor 1": "Harshita",
+ "mentor 1 github": "https://github.com/nomr",
+ "mentor 1 linkedin": "https://www.linkedin.com/in/harshita-pandey-01b564314?utm_source=share&utm_campaign=share_via&utm_content=profile&utm_medium=android_app",
+ "keyword": "phase2"
+ },
+ {
+ "Project name": "Geo Attend",
+ "Project description": "QR based attendance system",
+ "Project link": "https://github.com/anditisyou/QR-BASED-ATTENDANCE-SYSTEM",
+ "Project admin": "Vaishnavi khandelwal",
+ "Admin linkedin": "https://www.linkedin.com/in/vaishnavi-khandelwal-777121289",
+ "Admin github": "https://github.com/anditisyou/",
+ "Tech stack": "html, java, node js , express, react",
+ "mentor 1": "K N Meghana",
+ "mentor 1 github": "https://github.com/meghanakn473",
+ "mentor 1 linkedin": "https://www.linkedin.com/in/meghanakn473",
+ "keyword": "phase2"
+ },
+ {
+ "Project name": "Transaction anomaly detector",
+ "Project description": "- Purpose: Real-time fraud detection in financial transactions using simple algorithms, not machine learning. It can made still more efficient using ML concepts. \n - Key Methods:\n - Sliding Window: Flags users with too many rapid transactions.\n - Hash Map Analysis: Spots abnormal patterns in amounts, merchants, or frequency.\n - Graph Cycle Detection:Identifies cycles and suspicious links between accounts.\n - Trie for Merchants:Prevents fake/typo merchant attacks.\n - Why Not ML?\n - Transparent reasons for every alert.\n - Ultra-fast (O(1)-O(log n)), ideal for real-time and huge data volume.\n - No need for model training or complex resources.\n - Easy regulatory audits.\n - **Where Used:** Banks, payment processors, e-commerce, regulators, and any system needing scalable fraud checks.",
+ "Project link": "https://github.com/VaishnaviMelagiri/Transaction-Anomaly-Detector",
+ "Project admin": "Vaishnavi Melagiri",
+ "Admin linkedin": "https://www.linkedin.com/in/vaishnavi-melagiri-874209321?utm_source=share&utm_campaign=share_via&utm_content=profile&utm_medium=android_app",
+ "Admin github": "https://github.com/VaishnaviMelagiri",
+ "Tech stack": "Simple data structures, can be enhanced using ML algorithms.",
+ "mentor 1": "Jeet Hemnani",
+ "mentor 1 github": "https://github.com/JeetHemnani",
+ "mentor 1 linkedin": "https://www.linkedin.com/in/jeethemnani",
+ "keyword": "phase2"
+ },
+ {
+ "Project name": "Weather Forecast Web App",
+ "Project description": "A responsive web app that allows users to check real-time weather updates by city name.",
+ "Project link": "https://vaishnavi-1104.github.io/Weatherapp/",
+ "Project admin": "Vaishnavi V",
+ "Admin linkedin": "https://www.linkedin.com/in/vaishnavi-vadlakonda/",
+ "Admin github": "https://github.com/Vaishnavi-1104",
+ "Tech stack": "HTML, CSS, JavaScript, OpenWeatherMap API",
+ "mentor 1": "Pratyaksh Khetrapal",
+ "mentor 1 github": "https://github.com/Pratham00007",
+ "mentor 1 linkedin": "https://www.linkedin.com/in/pratham-khetrapal",
+ "keyword": "phase2"
+ },
+ {
+ "Project name": "Smriti AI",
+ "Project description": "Smriti AI is an intelligent, all-in-one learning assistant that helps you organize, understand, and retain everything you study from notes and youtube videos.",
+ "Project link": "https://github.com/vatsal-bhakodia/smriti-ai",
+ "Project admin": "Vatsal Bhakodia",
+ "Admin linkedin": "https://www.linkedin.com/in/vatsal-bhakodia",
+ "Admin github": "https://github.com/vatsal-bhakodia",
+ "Tech stack": "Next.js, Prisma (PostgreSQL), Clerk Auth",
+ "mentor 1": "Jaydeepsinh Parmar",
+ "mentor 1 github": "https://github.com/jaydeep099",
+ "mentor 1 linkedin": "https://www.linkedin.com/in/jaydeepsinh-parmar-084609247/",
+ "keyword": "phase2"
+ },
+ {
+ "Project name": "Blabber",
+ "Project description": "Blabber is a modern full-stack social media web application built using the MERN stack. It allows users to register, log in, post updates, follow other users, receive notifications, and maintain profiles. It uses JWT authentication with secure HttpOnly cookies and Cloudinary for profile image uploads.",
+ "Project link": "https://github.com/Vijayaa21/Blabber",
+ "Project admin": "Vijaya Mishra",
+ "Admin linkedin": "https://www.linkedin.com/in/vijaya-mishra21",
+ "Admin github": "https://github.com/Vijayaa21",
+ "Tech stack": "Frontend: React, React Router DOM, TailwindCSS, React Query, \n Backend: Node.js, Express.js, MongoDB\n Auth: JWT with HttpOnly Cookies\n Image Upload: Cloudinary\n State Management: React Query\n Hosting: Render",
+ "mentor 1": "Nandini Pandey",
+ "mentor 1 github": "https://github.com/nytrixis",
+ "mentor 1 linkedin": "https://www.linkedin.com/in/nytrixis",
+ "keyword": "phase2"
+ },
+ {
+ "Project name": "noir",
+ "Project description": "a GitHub powered notes app",
+ "Project link": "https://github.com/07CalC/noir",
+ "Project admin": "Vinayak Maheshwari",
+ "Admin linkedin": "https://www.linkedin.com/in/maheshwarivinayak",
+ "Admin github": "https://github.com/07calc",
+ "Tech stack": "typescript, react native, expo",
+ "mentor 1": "Sirivarshini",
+ "mentor 1 github": "https://github.com/Siri123-var",
+ "mentor 1 linkedin": "https://www.linkedin.com/in/varshu-kandapalli-27194130b",
+ "keyword": "phase2"
+ },
+ {
+ "Project name": "ideaVault",
+ "Project description": "IdeaVault is a SaaS-based licensing platform that enables registration of original software project ideas. It operates under a modified MIT-style license which includes a binding attribution clause. Upon registration, verified unique ideas are granted protected status. Any developer using a registered idea in a commercial product must, under the license terms, remit 1% of gross revenue to the registered idea owner. This obligation is contractual and enforceable. IdeaVault does not confer ownership but facilitates limited rights and revenue-sharing tied to ideation, ensuring recognition and compensation for original contributors.",
+ "Project link": "https://github.com/vinit105/ideaVault",
+ "Project admin": "Vinit",
+ "Admin linkedin": "https://www.linkedin.com/in/vinit-garach?utm_source=share&utm_campaign=share_via&utm_content=profile&utm_medium=android_app",
+ "Admin github": "https://github.com/vinit105",
+ "Tech stack": "React, Node, Typescript, Mongo, Redis, vercel and railway for backend deployment",
+ "mentor 1": "Yash Vikram",
+ "mentor 1 github": "https://github.com/yashvikram30",
+ "mentor 1 linkedin": "https://www.linkedin.com/in/yashvikram30?utm_source=share&utm_campaign=share_via&utm_content=profile&utm_medium=android_app",
+ "keyword": "phase2"
+ },
+ {
+ "Project name": "file encryption tool",
+ "Project description": "a tool that encrypt ant file",
+ "Project link": "https://github.com/vishesh4560/File-encryption-tool",
+ "Project admin": "Vishesh verma",
+ "Admin linkedin": "https://www.linkedin.com/in/vishesh-verma-060076345",
+ "Admin github": "https://github.com/vishesh4560",
+ "Tech stack": "python",
+ "mentor 1": "Yash",
+ "mentor 1 github": "https://github.com/Yashgpt123",
+ "mentor 1 linkedin": "https://www.linkedin.com/in/yash-gupta-a01153348",
+ "keyword": "phase2"
+ },
+ {
+ "Project name": "Rupeefi - E-rupee Digital payment platform",
+ "Project description": "RupeeFi is an innovative digital payment platform designed to convert UPI balance into e-Rupee balance, aiming to promote the adoption of e-Rupee in everyday transactions. To encourage user engagement, RupeeFi introduces gamified reward features such as daily spin wheels, scratch cards, and bonuses. Users can manage their profiles, view transaction history, and make secure payments via UPI or e-Rupee. For merchants, RupeeFi provides a robust dashboard with analytics, employee access control, and QR-based payment collection. Built with modern technologies and secure practices, the platform balances functionality, fun, and finance.",
+ "Project link": "https://github.com/Vishv04/RupeeFi",
+ "Project admin": "Vishv Boda",
+ "Admin linkedin": "https://www.linkedin.com/in/vishvboda",
+ "Admin github": "https://www.github.com/vishv04",
+ "Tech stack": "Frontend: React, Vite, Tailwind CSS, Framer Motion | Backend: Node.js, Express.js | Database: MongoDB | Authentication: Google OAuth 2.0, JWT (JSON Web Tokens) | Payments: Razorpay, UPI Integration",
+ "mentor 1": "Aditi Srivastava",
+ "mentor 1 github": "https://github.com/https-aditi",
+ "mentor 1 linkedin": "https://www.linkedin.com/in/aditi-srivastava001/",
+ "keyword": "phase2"
+ },
+ {
+ "Project name": "Dora-AI-Powered-Virtual-Personal-Assistant",
+ "Project description": "DORA is your AI-powered productivity companion designed to simplify your daily life. From task automation to smart reminders and intelligent information search, DORA leverages Generative AI, LLMs, RAG, and Agentic AI to bring you a truly smart virtual assistant experience.",
+ "Project link": "https://github.com/codervivek5/DORA-AI-Powered-Virtual-Personal-Assistant",
+ "Project admin": "Vivek Prajapati",
+ "Admin linkedin": "https://www.linkedin.com/in/codervivek/",
+ "Admin github": "https://github.com/codervivek5/",
+ "Tech stack": "React,Python,FastAPI,Pinecone DB, Langchain,LangGraph,CrewAI, Eleven Lab, Firebase, Tailwind, JavaScript",
+ "mentor 1": "Pratyaksh",
+ "mentor 1 github": "https://github.com/PRATYAKSH15",
+ "mentor 1 linkedin": "https://www.linkedin.com/in/pratyaksh-989922256/",
+ "keyword": "phase2"
+ },
+ {
+ "Project name": "DSA attendance system",
+ "Project description": "recently built a lightweight and intuitive Attendance Management System for tracking student presence during Data Structures and Algorithms (DSA) classes. Developed as part of my Web Designing coursework at IIIT Sonepat, this project focuses on clean UI, responsive design, and ease of use.",
+ "Project link": "https://github.com/devillikevd/Attendance-Sheet",
+ "Project admin": "Vyom Dubey",
+ "Admin linkedin": "https://www.linkedin.com/in/vyom-dubey-b979952b5",
+ "Admin github": "https://github.com/devillikevd",
+ "Tech stack": "html , css , javascript",
+ "mentor 1": "Amit Singh",
+ "mentor 1 github": "Amit Singh",
+ "mentor 1 linkedin": "https://www.linkedin.com/in/amit-singh-352b80370/",
+ "keyword": "phase2"
+ },
+ {
+ "Project name": "wharf",
+ "Project description": "Wharf is a full stack web application designed to simplify Docker management.",
+ "Project link": "https://github.com/fordevio/wharf",
+ "Project admin": "Yash Patel",
+ "Admin linkedin": "https://www.linkedin.com/in/yash-patel-997ba624b/",
+ "Admin github": "https://github.com/yp969803",
+ "Tech stack": "Go Docker Reactjs Typescript Html Css",
+ "mentor 1": "Bhoomy Singh",
+ "mentor 1 github": "https://github.com/Bhoomysingh10",
+ "mentor 1 linkedin": "https://www.linkedin.com/in/bhoomy-singh-a56227267/",
+ "keyword": "phase2"
+ },
+ {
+ "Project name": "AlchEmaiLyst",
+ "Project description": "A 3 agent system powered by AI to automate emails. Summarise, Compose, Send and stay away from spam at automated in a beautiful UI",
+ "Project link": "https://github.com/Coden-inja/alchEmaiLyst",
+ "Project admin": "Yogesh Kumar",
+ "Admin linkedin": "https://www.linkedin.com/in/yogesh-kumar-299298260/",
+ "Admin github": "https://github.com/Coden-inja",
+ "Tech stack": "React, Vite, Tailwind , ShadCN, Express.js, Axios, Google OAuth2.0, Gemini API, Alchemyst APi",
+ "mentor 1": "Avansh Yadav",
+ "mentor 1 github": "https://github.com/Avansh2006",
+ "mentor 1 linkedin": "https://www.linkedin.com/in/avanshyadav/",
+ "keyword": "phase2"
+ },
+ {
+ "Project name": "Intellicash",
+ "Project description": "Intellicash is a next-gen personal finance platform powered by Google Cloud services including Firebase, Vertex Al, and Fi Money's MCP server, delivering enterprise-grade financial intelligence with consumer simplicity",
+ "Project link": "https://github.com/Sudoerz/IntelliCash",
+ "Project admin": "Zodsenpai",
+ "Admin linkedin": "https://www.linkedin.com/in/michaelrobink",
+ "Admin github": "https://github.com/Robinbinu",
+ "Tech stack": "Flutter, Python, Golang, GCP",
+ "mentor 1": "Shashwat Gupta",
+ "mentor 1 github": "https://github.com/LionStone-1",
+ "mentor 1 linkedin": "https://www.linkedin.com/in/shashwat--gupta",
+ "mentor 2": "Akshith",
+ "mentor 2 github": "https://github.com/Akshithsaai",
+ "Mentor 2 linkedin": "https://www.linkedin.com/in/akshith-manchikanti-b35a9b209",
+ "mentor 3": "Pratyaksh Khetrapal",
+ "mentor 3 github": "https://github.com/Pratham00007",
+ "mentor 3 linkedin": "https://www.linkedin.com/in/pratham-khetrapal",
+ "keyword": "phase2"
+ }
+]
\ No newline at end of file
diff --git a/public/assets/images/home/fun.png b/public/assets/images/home/fun.png
new file mode 100644
index 0000000..81fe4d9
Binary files /dev/null and b/public/assets/images/home/fun.png differ
diff --git a/public/assets/images/home/gssocfaqbot.png b/public/assets/images/home/gssocfaqbot.png
new file mode 100644
index 0000000..2de7e82
Binary files /dev/null and b/public/assets/images/home/gssocfaqbot.png differ
diff --git a/public/assets/images/home/leaderboard.jpg b/public/assets/images/home/leaderboard.jpg
new file mode 100644
index 0000000..8d842dd
Binary files /dev/null and b/public/assets/images/home/leaderboard.jpg differ
diff --git a/public/assets/images/home/promopost.jpg b/public/assets/images/home/promopost.jpg
new file mode 100644
index 0000000..cf9d9ca
Binary files /dev/null and b/public/assets/images/home/promopost.jpg differ
diff --git a/public/assets/images/home/que.png b/public/assets/images/home/que.png
new file mode 100644
index 0000000..f524622
Binary files /dev/null and b/public/assets/images/home/que.png differ
diff --git a/public/assets/images/home/server.png b/public/assets/images/home/server.png
new file mode 100644
index 0000000..f39b1ee
Binary files /dev/null and b/public/assets/images/home/server.png differ
diff --git a/public/assets/images/home/step1-faq.png b/public/assets/images/home/step1-faq.png
new file mode 100644
index 0000000..57109a5
Binary files /dev/null and b/public/assets/images/home/step1-faq.png differ
diff --git a/public/assets/images/home/step1-project.png b/public/assets/images/home/step1-project.png
new file mode 100644
index 0000000..fb6fdf5
Binary files /dev/null and b/public/assets/images/home/step1-project.png differ
diff --git a/public/assets/images/home/step2-faq.png b/public/assets/images/home/step2-faq.png
new file mode 100644
index 0000000..f14a31f
Binary files /dev/null and b/public/assets/images/home/step2-faq.png differ
diff --git a/public/assets/images/home/step2-project.png b/public/assets/images/home/step2-project.png
new file mode 100644
index 0000000..e00b3f5
Binary files /dev/null and b/public/assets/images/home/step2-project.png differ
diff --git a/public/assets/images/home/step3-faq.png b/public/assets/images/home/step3-faq.png
new file mode 100644
index 0000000..113007e
Binary files /dev/null and b/public/assets/images/home/step3-faq.png differ
diff --git a/public/assets/images/home/step3-project.png b/public/assets/images/home/step3-project.png
new file mode 100644
index 0000000..3072b77
Binary files /dev/null and b/public/assets/images/home/step3-project.png differ
diff --git a/public/assets/images/home/table.jpg b/public/assets/images/home/table.jpg
new file mode 100644
index 0000000..680123e
Binary files /dev/null and b/public/assets/images/home/table.jpg differ
diff --git a/public/assets/images/people/piyush.png b/public/assets/images/people/piyush.png
new file mode 100644
index 0000000..e15260d
Binary files /dev/null and b/public/assets/images/people/piyush.png differ
diff --git a/public/assets/images/people/testimonial1.png b/public/assets/images/people/testimonial1.png
new file mode 100644
index 0000000..3c160b2
Binary files /dev/null and b/public/assets/images/people/testimonial1.png differ
diff --git a/public/assets/images/people/testimonial2.png b/public/assets/images/people/testimonial2.png
new file mode 100644
index 0000000..f343677
Binary files /dev/null and b/public/assets/images/people/testimonial2.png differ
diff --git a/public/assets/images/people/testimonial3.png b/public/assets/images/people/testimonial3.png
new file mode 100644
index 0000000..5b59929
Binary files /dev/null and b/public/assets/images/people/testimonial3.png differ
diff --git a/public/assets/images/people/testimonial4.png b/public/assets/images/people/testimonial4.png
new file mode 100644
index 0000000..ae1cb36
Binary files /dev/null and b/public/assets/images/people/testimonial4.png differ
diff --git a/public/assets/images/people/testimonial5.png b/public/assets/images/people/testimonial5.png
new file mode 100644
index 0000000..4aa4106
Binary files /dev/null and b/public/assets/images/people/testimonial5.png differ
diff --git a/public/assets/logo/1.png b/public/assets/logo/1.png
new file mode 100644
index 0000000..608fee8
Binary files /dev/null and b/public/assets/logo/1.png differ
diff --git a/public/assets/logo/2.png b/public/assets/logo/2.png
new file mode 100644
index 0000000..88ed460
Binary files /dev/null and b/public/assets/logo/2.png differ
diff --git a/public/assets/logo/favicon.ico b/public/assets/logo/favicon.ico
new file mode 100644
index 0000000..a2b24ee
Binary files /dev/null and b/public/assets/logo/favicon.ico differ
diff --git a/public/assets/logo/footerlogo.png b/public/assets/logo/footerlogo.png
new file mode 100644
index 0000000..3b98dac
Binary files /dev/null and b/public/assets/logo/footerlogo.png differ
diff --git a/public/assets/videos/faq-video.mp4 b/public/assets/videos/faq-video.mp4
new file mode 100644
index 0000000..c084ee4
Binary files /dev/null and b/public/assets/videos/faq-video.mp4 differ
diff --git a/requirements.txt b/requirements.txt
new file mode 100644
index 0000000..c60ae2e
--- /dev/null
+++ b/requirements.txt
@@ -0,0 +1,6 @@
+Flask==3.1.1
+# numpy==2.3.2
+numpy
+scikit_learn==1.7.1
+sentence_transformers==3.0.1
+gunicorn
\ No newline at end of file
diff --git a/vercel.json b/vercel.json
index e4be1a2..2e62c6a 100644
--- a/vercel.json
+++ b/vercel.json
@@ -1,15 +1,9 @@
{
- "version": 2,
- "builds": [
- {
- "src": "index.js",
- "use": "@vercel/node"
- }
- ],
- "routes": [
- {
- "src": "/(.*)",
- "dest": "index.js"
- }
- ]
-}
\ No newline at end of file
+ "version": 2,
+ "builds": [
+ {
+ "src": "app.py",
+ "use": "@vercel/python"
+ }
+ ]
+}
diff --git a/views/css/index.css b/views/css/index.css
index a21d68c..f2f7233 100644
--- a/views/css/index.css
+++ b/views/css/index.css
@@ -1,4 +1,4 @@
-@import url('https://fonts.googleapis.com/css2?family=Dancing+Script:wght@400..700&family=Ubuntu:ital,wght@0,300;0,400;0,500;0,700;1,300;1,400;1,500;1,700&display=swap');
+@import url('https://fonts.googleapis.com/css2?family=Dancing+ Script:wght@400..700&family=Ubuntu:ital,wght@0,300;0,400;0,500;0,700;1,300;1,400;1,500;1,700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Poly:ital@0;1&display=swap');
:root{
@@ -29,7 +29,7 @@
--header-bg: #edececa5;
/* color: #312f2f; */
--hero-gradient: #fcfcfc;
- --hero-bg-img: url("../assets/images/background/dots-dark.svg");
+ /* --hero-bg-img: url("/assets/images/background/dots-dark.svg"); */
}
@@ -59,7 +59,10 @@
--header-bg: #232323a5;
--hero-gradient: #000;
- --hero-bg-img: url("../assets/images/background/dots.svg");
+ --hero-bg-img: url("/assets/images/background/dots.svg");
+ --hero-bg-img:url("/assets/images/home/unified.jpg");
+ --hero-bg-img:url("/assets/images/home/api.png");
+ --hero-bg-img:url("/assets/images/home/integration1.png");
}
@@ -146,6 +149,7 @@ hr{
background: rgb(215,215,215);
background: linear-gradient(90deg, rgba(215,215,215,1) 18%, rgba(136,136,136,1) 71%);
-webkit-background-clip: text;
+ background-clip:text;
-webkit-text-fill-color: transparent;
}
@@ -154,7 +158,7 @@ hr{
background: rgb(126,34,206);
background: linear-gradient(90deg, #7e22ce91 8%, #625aafae 31%, #7badbbbc 76%, #54d2d0ca 89%);
filter: blur(50px);
- opacity: 0.5;
+ opacity: 0.8;
}
#dashboard {
@@ -184,10 +188,6 @@ hr{
cursor: pointer;
}
-.btn:hover{
-
-}
-
.btn:disabled{
cursor: default;
}
@@ -375,6 +375,68 @@ hr{
transition: max-height 0.4s, padding 0.4s;
}
+/* Card Component Styling */
+.card {
+ background: var(--bg-color);
+ color: var(--primary-text-color);
+ border-radius: 12px;
+ box-shadow: 0 4px 24px rgba(60,60,60,60.08), 0 1.5px 6px rgba(60,60,60,0.04);
+ padding: 2rem 1.5rem;
+ margin: 1.5rem 0;
+ transition: background 0.3s, color 0.3s, box-shadow 0.3s;
+ display: flex;
+ flex-direction: column;
+ gap: 1rem;
+}
+
+.card h2, .card h3, .card h4 {
+ color: var(--faq-h-text);
+ margin-top: 0;
+}
+
+.card p {
+ color: var(--faq-content-text);
+ margin-bottom: 1rem;
+}
+
+.card .card-actions {
+ margin-top: 1.5rem;
+ display: flex;
+ gap: 0.75rem;
+}
+
+.card .card-actions .btn {
+ font-size:1rem;
+ padding:0.6rem 1.2rem;
+}
+.card:hover{
+ transform:translate(-5px);
+ box-shadow: 0px 12px 30px rgba(0,0,0,0.12), 0px 4px 8px rgba(0,0,0,0.06);
+}
+.card img {
+ max-width: 100%;
+ border-radius: 12px;
+ margin-bottom: 1rem;
+ object-fit: cover;
+ background: #f3f3f3;
+}
+
+/* Dark mode support for cards */
+.tw-dark .card {
+ background: #18181b;
+ color: #f3f3f3;
+ box-shadow: 0 4px 24px 0 rgba(0,0,0,0.25), 0 1.5px 6px 0 rgba(0,0,0,0.10);
+}
+
+.tw-dark .card h2,
+.tw-dark .card h3,
+.tw-dark .card h4 {
+ color: var(--faq-h-text);
+}
+
+.tw-dark .card p {
+ color: var(--faq-content-text);
+}
@media not all and (min-width: 1024px) {
header .collapsible-header {
@@ -405,4 +467,120 @@ hr{
color: var(--he);
} */
-}
\ No newline at end of file
+}
+
+
+#command-preview-img {
+ transition: opacity 0.3s ease-in-out;
+}
+
+
+ .social-icon {
+ color: #ffffff; /* Default color */
+ transition: color 0.3s ease; /* Smooth color transition */
+ }
+
+ .social-icon.discord:hover {
+ color: #00b551; /* Change to your desired color when hovered for GitHub */
+ }
+ .social-icon.github:hover {
+ color: #333; /* Change to your desired color when hovered for GitHub */
+ }
+
+ .social-icon.linkedin:hover {
+ color: #0077b5; /* LinkedIn's brand color on hover */
+ }
+ .image-container {
+ position: relative;
+ display: inline-block;
+ overflow: hidden; /* Prevent shine from spilling outside the container */
+ }
+
+ .image-container img {
+ border: 1px solid rgba(255, 255, 255, 0.184);
+ border-radius: 10px; /* Rounded corners for the image */
+ display: block; /* Remove space below the image */
+ }
+
+ /* Container for the icon and text */
+ .image-container .invite-text {
+ position: absolute;
+ top: 50%;
+ left: 50%;
+ transform: translate(-50%, -50%);
+ color: white;
+ font-size: 20px;
+ opacity: 0; /* Initially hidden */
+ transition: opacity 0.5s ease-in-out;
+ }
+
+ .image-container .invite-text i {
+ margin-right: 8px;
+ }
+
+ .invite-text i {
+ margin-right: 8px; /* Space between icon and text */
+ }
+
+ /* Shine effect */
+ .image-container::after {
+ content: '';
+ position: absolute;
+ top: 0;
+ left: -100%; /* Start off-screen */
+ right: 0;
+ bottom: 0;
+ background: linear-gradient(45deg, rgba(156, 128, 255, 0.4) 0%, rgba(255, 157, 157, 0) 80%);
+ border-radius: 10px; /* Rounded corners to match the image */
+ animation: shine 5s ease-in-out infinite; /* Smooth, slow, continuous shine animation */
+ pointer-events: none; /* Ensures no blocking of clicks or interactions */
+ }
+
+ /* Keyframe for the smooth, slow shine effect */
+ @keyframes shine {
+ 0% {
+ transform: translateX(0%); /* Start from off-screen on the left */
+ }
+ 50% {
+ transform: translateX(45%); /* Move to the far right */
+ }
+ 100% {
+ transform: translateX(0%); /* Move back to the left */
+ }
+ }
+
+ .invite-text {
+ position: absolute;
+ top: 60%;
+ left: 50%;
+ transform: translateX(-50%);
+ display: flex; /* Flex to align icon and text horizontally */
+ align-items: center; /* Vertically center the icon and text */
+ color: white;
+ font-size: 18px;
+ white-space: nowrap; /* Prevent text from wrapping */
+ border: 1px solid white;
+ padding: 1%;
+ border-radius: 5px;
+ background: linear-gradient(to bottom, rgb(255, 255, 255), rgb(158, 158, 158)); /* Vertical gradient from black to white */
+ }
+
+ /* Show the invite text and icon at the middle of the animation */
+ .image-container.shine-active .invite-text {
+ opacity: 1; /* Show the text when shine effect reaches the middle */
+ }
+
+/*Adding styling for Scroll Up Button*/
+ #scrollTopBtn{
+ /* all: unset; */
+ position: fixed;
+ bottom: 25px;
+ right: 50px;
+ width: 60px;
+ height: 60px;
+ display: flex;
+ align-items: center;
+ justify-content: center;
+ cursor: pointer;
+ border-radius: 99%;
+ }
diff --git a/views/faq.html b/views/faq.html
new file mode 100644
index 0000000..76954cd
--- /dev/null
+++ b/views/faq.html
@@ -0,0 +1,300 @@
+
+
+
+
+
+
+
+ How to Use /faq Command - GSSOC FAQ Discord Bot
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Type /faq
+ in your Discord channel’s chat box.
+
+
+
+
+
+
+
+
+
+ Click and select a question/query from the suggestions.
+
+
+
+
+
+
+
+
+ Hit Enter
+ to get an instant answer.
+
+
+
+
+
+
+ ← Back to Home
+
+
+
+
+
+
+
+
+
diff --git a/views/index.html b/views/index.html
index abe54f8..c32ae49 100644
--- a/views/index.html
+++ b/views/index.html
@@ -10,11 +10,7 @@
name="description"
content="Get all youranswers about GSSOC in one place"
/>
-
+
-
+
+