├── (AmruthaParirpolu)file.md ├── .github └── workflows │ ├── auto-comment-issue.yml │ ├── auto-label.yml │ ├── auto-merge-readme.yml │ ├── detect-duplicate.yml │ └── greeting-new-issue.yml ├── LICENSE ├── Open PR.md ├── Open-pr.md ├── OpenPr.md ├── Open_PR.md ├── README.md ├── code_of_conduct.md ├── contributing.md ├── markdown-practice.md └── pr_dump ├── (Amrutha Pariprolu)file2.md ├── Eduford-university ├── File -Pedning PR merge links.md ├── File-1.md ├── Hemashree21 ├── Old PR[Nest ONDC] ├── Open PR - Asmita Mishra ├── Open PR - Hars-21.md ├── Open PR - Vinisha Dsouza.md ├── Open PR - ayush848.md ├── Open PR Radhika Malpani.md ├── Open PRs - MastanSayyad.md ├── Open PRs- sau-mili ├── Open pr's └── Readme.md ├── Open pr-ArchieShah.md ├── PR not merged ├── PR not merged- ananyag309 └── README.md ├── PR not merged-Amrutha Pariprolu └── file1.md ├── PR not merged-BHS-Harish ├── PR not merged-ShouryaMishra2006 └── unmergedpr.md ├── Pending Open PR ├── Pending Open PR's - Praneeth-2602.mg ├── Pending PR - Utsavladia ├── Pending PR Kaushal-11 ├── Pending PR merge links.md ├── Pending open PR ├── Saksham.md ├── SakshamUnassigned.md ├── Unchecked PRs ├── Unmerged.md ├── hemashree21 ├── image-1.png ├── image.png ├── jency1 - unmerged PR's ├── old or ├── open PR ├── open-pr-zalabhavy ├── pending pr ├── pr not merged ├── prLinks.md ├── readmee pr ├── Readme.md └── read ├── redame.md ├── unmerged PR ├── unmerged pr ├── unmerged prs.md ├── unmerged_pr.md ├── vijayshankersharma.md └── vishanurag.md /(AmruthaParirpolu)file.md: -------------------------------------------------------------------------------- 1 | ### Pr's not merged 2 | 3 | 1.https://github.com/dishamodi0910/APIVerse/pull/439 4 | 2.https://github.com/dishamodi0910/APIVerse/pull/438 5 | 3.https://github.com/dishamodi0910/APIVerse/pull/437 -------------------------------------------------------------------------------- /.github/workflows/auto-comment-issue.yml: -------------------------------------------------------------------------------- 1 | name: Issue Opened and Closed Comment 2 | 3 | on: 4 | issues: 5 | types: [opened, closed] 6 | 7 | jobs: 8 | comment-on-issue: 9 | runs-on: ubuntu-latest 10 | 11 | steps: 12 | - name: Check out the repository 13 | uses: actions/checkout@v2 14 | 15 | - name: Comment on Issue Opened 16 | if: ${{ github.event.action == 'opened' }} 17 | uses: actions-ecosystem/action-create-comment@v1 18 | with: 19 | github_token: ${{ secrets.GITHUB_TOKEN }} 20 | issue_number: ${{ github.event.issue.number }} 21 | body: | 22 | Thanks for opening this issue! We appreciate your contribution. Please make sure you’ve provided all the necessary details and screenshots, and don't forget to follow our [Guidelines](https://github.com/OWNER/REPO/CONTRIBUTING.md) and Code of Conduct. Happy coding! 🚀 23 | - name: Comment on Issue Closed 24 | if: ${{ github.event.action == 'closed' }} 25 | uses: actions-ecosystem/action-create-comment@v1 26 | with: 27 | github_token: ${{ secrets.GITHUB_TOKEN }} 28 | issue_number: ${{ github.event.issue.number }} 29 | body: | 30 | This issue has been successfully closed. Thank you for your contribution and helping us improve the project! If you have any more ideas or run into other issues, feel free to open a new one. Happy coding! 🚀 31 | -------------------------------------------------------------------------------- /.github/workflows/auto-label.yml: -------------------------------------------------------------------------------- 1 | name: Auto-label Issues and Pull Requests 2 | 3 | on: 4 | issues: 5 | types: [opened] 6 | pull_request: 7 | types: [opened] 8 | 9 | jobs: 10 | add-labels: 11 | runs-on: ubuntu-latest 12 | 13 | steps: 14 | - name: Check out the repository 15 | uses: actions/checkout@v2 16 | 17 | - name: Add Labels to Issue or Pull Request 18 | uses: actions-ecosystem/action-add-labels@v1 19 | with: 20 | github_token: ${{ secrets.GITHUB_TOKEN }} 21 | labels: "gssoc-ext, hacktoberfest-accepted" 22 | issue_number: ${{ github.event.issue.number || github.event.pull_request.number }} 23 | -------------------------------------------------------------------------------- /.github/workflows/auto-merge-readme.yml: -------------------------------------------------------------------------------- 1 | name: Auto Merge README Changes 2 | 3 | on: 4 | pull_request_target: 5 | types: [opened, synchronize, reopened] 6 | paths: 7 | - 'README.md' 8 | 9 | jobs: 10 | auto-merge: 11 | runs-on: ubuntu-latest 12 | permissions: 13 | contents: write 14 | pull-requests: write 15 | issues: write 16 | actions: write 17 | steps: 18 | - name: Automerge 19 | uses: pascalgn/automerge-action@v0.15.6 20 | env: 21 | GITHUB_TOKEN: "${{ secrets.GITHUB_TOKEN }}" 22 | MERGE_LABELS: "" 23 | MERGE_METHOD: "merge" 24 | MERGE_COMMIT_MESSAGE: "Auto-merge README changes" 25 | MERGE_FORKS: "true" 26 | MERGE_RETRIES: "6" 27 | MERGE_RETRY_SLEEP: "10000" 28 | UPDATE_LABELS: "" 29 | UPDATE_METHOD: "merge" 30 | -------------------------------------------------------------------------------- /.github/workflows/detect-duplicate.yml: -------------------------------------------------------------------------------- 1 | name: Duplicate Issue Detection 2 | 3 | on: 4 | issues: 5 | types: [opened] 6 | 7 | jobs: 8 | detect-duplicate: 9 | runs-on: ubuntu-latest 10 | 11 | steps: 12 | - name: Check out the repository 13 | uses: actions/checkout@v2 14 | 15 | - name: Run Duplicate Issue Checker 16 | uses: ahmadnassri/action-similar-issue@v1 17 | id: duplicate-check 18 | with: 19 | repo-token: ${{ secrets.GITHUB_TOKEN }} 20 | min-confidence: 0.8 # Confidence level for similarity (80%) 21 | 22 | - name: Handle Duplicate Issues 23 | if: steps.duplicate-check.outputs.similar == 'true' 24 | run: | 25 | gh issue close ${{ github.event.issue.number }} -c "Duplicate issue detected. Please refer to #${{ steps.duplicate-check.outputs.duplicate_issue_number }}." 26 | -------------------------------------------------------------------------------- /.github/workflows/greeting-new-issue.yml: -------------------------------------------------------------------------------- 1 | name: Greetings 2 | 3 | on: [pull_request_target, issues] 4 | 5 | jobs: 6 | greeting: 7 | runs-on: ubuntu-latest 8 | permissions: 9 | issues: write 10 | pull-requests: write 11 | steps: 12 | - uses: actions/first-interaction@v1 13 | with: 14 | repo-token: ${{ secrets.GITHUB_TOKEN }} 15 | issue-message: "Hi there! Thanks for opening this issue. We appreciate your contribution to this open-source project. We aim to respond or assign your issue as soon as possible. Stay awesome!" 16 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | MIT License 2 | 3 | Copyright (c) 2024 Recode Hive 4 | 5 | Permission is hereby granted, free of charge, to any person obtaining a copy 6 | of this software and associated documentation files (the "Software"), to deal 7 | in the Software without restriction, including without limitation the rights 8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | copies of the Software, and to permit persons to whom the Software is 10 | furnished to do so, subject to the following conditions: 11 | 12 | The above copyright notice and this permission notice shall be included in all 13 | copies or substantial portions of the Software. 14 | 15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 21 | SOFTWARE. 22 | -------------------------------------------------------------------------------- /Open PR.md: -------------------------------------------------------------------------------- 1 | link to the open PR -https://github.com/shyamtawli/devFind/pull/1099 2 | -------------------------------------------------------------------------------- /Open-pr.md: -------------------------------------------------------------------------------- 1 | #unmerged pr #issue 1299 #pr 1375 2 | https://github.com/Rakesh9100/Beautiify/pull/1375#pullrequestreview-2230507401 3 | 4 | #unmerged pr #issue 1336 #pr 1369 5 | https://github.com/Rakesh9100/Beautiify/pull/1369#issuecomment-2276149245 6 | https://github.com/Rakesh9100/Beautiify/pull/1369 7 | 8 | #please merge my pull request to balance my points -------------------------------------------------------------------------------- /OpenPr.md: -------------------------------------------------------------------------------- 1 | Umerged PR'S - https://github.com/jfmartinz/ResourceHub/pull/1500 2 | https://github.com/SyedImtiyaz-1/GetTechProjects/pull/879 3 | https://github.com/SyedImtiyaz-1/GetTechProjects/pull/935 4 | -------------------------------------------------------------------------------- /Open_PR.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/recodehive/Opensource-practice/f577f8222e1af380d1545a47caf093f65cba5137/Open_PR.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 |

Open-source-practice Pull Requests

2 | 3 |
4 | 5 | 6 | [![All Contributors](https://img.shields.io/badge/all_contributors-1-orange.svg?style=flat-square)](#contributors-) 7 | Stars Badge 8 | Forks Badge 9 | Pull Requests Badge 10 | Issues Badge 11 | GitHub contributors 12 | License Badge 13 | [![](https://visitcount.itsvg.in/api?id=Opensource-practice&label=Profile%20Views&color=0&icon=5&pretty=true)](https://visitcount.itsvg.in) 14 | 15 | This is the all in one place for documentation help regarding the postman challenge. 16 |
17 | 18 | Repository for you to raise a Pull Request to **practice** open-source ! 🎉 19 | 20 | Learn GithHub from Scratch here: https://recodehive.com/github-tutorials/ 21 | 22 | ### Add your name to the alphabetical list and, optionally, a link to your GitHub account (in alphabetical order below your letter too) 23 | 24 | ### Option 1. Complete this process in GitHub (in your browser) 25 | 26 | ```mermaid 27 | flowchart LR 28 | Fork[Fork the project]-->branch[Create a New Branch] 29 | branch-->Edit[Edit file] 30 | Edit-->commit[Commit the changes] 31 | commit -->|Finally|creatpr((Create a Pull Request)) 32 | ``` 33 | dd 34 | **1. Fork the project:** 35 | 36 | - Click the gray Fork button at the top right of the previous page. This creates your copy of the project and saves it as a new repository in your GitHub account. 37 | ![image](https://github.com/GSSoC24/being-an-GSSoc24/assets/166531702/a50b0ed1-84b6-4254-bd7c-d8dbb2839466) 38 | 39 | *2. Create a New Branch:* 40 | 41 | - On your new repository's page, click the gray main button in the upper left to reveal a dropdown menu. 42 | - Enter the name of your new branch in the text box. (Branch names usually refer to what is being changed. Example: nameAdd). 43 | -Click on Create branch , which will automatically take you to your new branch. You can make edits on the main branch, but this may cause issues down the line. The best practice is to create a new branch for each separate issue you work on. That way your main branch remains in sync with Gssoc's main branch. 44 | 45 | **3. Edit:** 46 | 47 | - On the top right of the Readme file, click on the pencil icon to edit the file by **adding your name and your GitHub profile link to the section that matches your Initial in [this list](https://github.com/GSSoC24/being-an-GSSoc24/blob/main/docs/readme.md#GSSoC24-Community). Make sure that your name is in alphabetical order.** 48 | - After editing the Readme file, add a commit message and click on the green button saying "Commit Changes". Make sure you have selected the branch you have created. 49 | 50 | **4. Raise a Pull Request:** 51 | 52 | - Click `Pull Requests` option in your forked repository (which is the third option at the top of this page after the options `Code` and `Issues`). 53 | - Click the green New Pull Request button. This will prep the new pull request for you by auto-filling the base repository: base with 'GssocCommunity: main' AND auto-filling your head repository: compare with your repository: main 54 | - Click on your head repository's `compare` dropdown, and switch branches from your 'main' branch to ``. 55 | - Finally, click the green `Create Pull Request` button. Great job! You did it! 56 | 57 | You can ask questions by raising an [issue](https://github.com/GSSoC24/being-an-GSSoc24/issues). 58 | 59 | ### Option 2. Complete this process on your computer (locally) 60 | 61 | **1. Fork the project:** 62 | 63 | - Click the gray Fork button at the top right of the previous page. This creates your copy of the project and saves it as a new repository in your GitHub account. 64 | ![image](https://github.com/GSSoC24/being-an-GSSoc24/assets/166531702/8244b3df-7904-4f07-9447-7962cb504a34) 65 | 66 | **2. Clone this project on your computer:** 67 | 68 | - Go to your profile. You will find forked repo named **_open-source-practice_**. go to the repo by clicking on it. 69 | - Click on the green Code button, then either the HTTPS or SSH option, and, click the icon to copy the URL. Now you have a copy of the project. Thus, you can play around with it locally on your computer. 70 | 71 | - Run the following commands into a terminal window (Command Prompt, Powershell, Terminal, Bash, ZSH). Do this to download the forked copy of this repository to your computer. 72 | ![image](https://github.com/GSSoC24/being-an-GSSoc24/assets/166531702/9c41e4fe-438b-4747-8789-ff75e092fef9) 73 | 74 | 75 | ```bash 76 | git clone https://github.com/GSSoC24/being-an-GSSoc24.git 77 | ``` 78 | 79 | - Switch to the cloned folder. You can paste this command into the same terminal window. ![image](https://github.com/GSSoC24/being-an-GSSoc24/assets/166531702/590d6314-70b9-478d-939f-3c0e1dcf4ab4) 80 | 81 | 82 | ```bash 83 | cd being-an-GSSoc24 84 | ``` 85 | 86 | **3. Open in code Editor:** 87 | 88 | - Open the `README.md` file 89 | ![image](https://github.com/GSSoC24/being-an-GSSoc24/assets/166531702/dd43df00-e1f2-42fa-8714-4a5731a1027f) 90 | 91 | 92 | **4. Create a new branch:** 93 | ![image](https://github.com/GSSoC24/being-an-GSSoc24/assets/166531702/55059bd9-05f0-4f36-9205-9eb926831a19) 94 | 95 | - Your username would make a good branch because it's unique. 96 | ![image](https://github.com/GSSoC24/being-an-GSSoc24/assets/166531702/8eee07c1-120b-4022-8677-932b4dbe89d5) 97 | 98 | ```bash 99 | git checkout -b 100 | ``` 101 | 102 | **5. Edit the File:** 103 | ![image](https://github.com/GSSoC24/being-an-GSSoc24/assets/166531702/2d12a4e1-f18f-4e7d-b74e-590487016c70) 104 | 105 | - **Add your name to the section that matches your Initial in [this list](https://github.com/EddieHubCommunity/open-source-practice#hacktoberfest-community), make sure that your name is in alphabetical order. Then save your changes.** 106 | 107 | - For example 108 | `- [Full Name](https://github.com/your-username)` 109 | 110 | **5. Stage your changes:** 111 | 112 | ```bash 113 | git add README.md 114 | ``` 115 | 116 | or 117 | 118 | ```bash 119 | git add . 120 | ``` 121 | 122 | **6. Commit the changes:** 123 | ![image](https://github.com/GSSoC24/being-an-GSSoc24/assets/166531702/e22f8f77-74e9-42a8-af0c-9caa23f5020b) 124 | 125 | ```bash 126 | git commit -m "Add " 127 | ``` 128 | 129 | - Check the status of your repository. 130 | 131 | ```bash 132 | git status 133 | ``` 134 | 135 | - The response should be like this: 136 | ![image](https://github.com/GSSoC24/being-an-GSSoc24/assets/166531702/443ed4e6-6105-44e5-9ca2-d87d70a83986) 137 | 138 | ```bash 139 | On branch 140 | nothing to commit, working tree clean 141 | ``` 142 | 143 | **7. Pushing your repository to GitHub:** 144 | 145 | ```bash 146 | git push origin 147 | ``` 148 | 149 | or 150 | 151 | ```bash 152 | git branch -M main 153 | git push -u origin main 154 | ``` 155 | 156 | ![image](https://github.com/GSSoC24/being-an-GSSoc24/assets/166531702/88211c3f-61dd-4851-b066-4791b988013c) 157 | 158 | > **Warning**: If you get an error message like the one below, you probably forgot to fork the repository before cloning it. It is best to start over and fork the project repository first. 159 | 160 | ```bash 161 | ERROR: Permission to https://github.com/GSSoC24/being-an-GSSoc24 denied to . 162 | fatal: Could not read from remote repository. 163 | Please make sure you have the correct access rights and that the repository exists. 164 | ``` 165 | 166 | **8. Raise a Pull Request:** 167 | https://github.com/GSSoC24/being-an-GSSoc24 168 | 169 | - On the GitHub website, navigate to your forked repo - on the top of the files section, you'll notice a new section containing a `Compare & Pull Request` button! ![createpr] 170 | 171 | - Click on that button, this will load a new page, comparing the local branch in your forked repository against the main branch in the GSSoC'24 Being an Gssoc repository. Do not make any changes in the selected values of the branches (do so only if needed), and click the green `Create Pull Request` button. 172 | Note: A pull request allows us to merge your changes with the original project repo. 173 | 174 | - Your pull request will be reviewed and then eventually merged. 175 | 176 | Hurray! You successfully made your first contribution! 🎉 177 | 178 | --- 179 | 180 | ## How can I fix a merge conflict? 181 | 182 | A GitHub conflict is when people make changes to the same area or line in a file. This must be fixed before it is merged to prevent collision in the main branch. 183 | 184 | - **To read more about this, go to [GitHub Docs - About Merge Conflicts](https://docs.github.com/en/github/collaborating-with-pull-requests/addressing-merge-conflicts/about-merge-conflicts)** 185 | 186 | - **To find out about how to fix a Git Conflict, go to [GitHub Docs - Resolve Merge Conflict](https://docs.github.com/en/github/collaborating-with-pull-requests/addressing-merge-conflicts/resolving-a-merge-conflict-on-github)** 187 | 188 | 189 | 190 | ## `GSSoC24-Community` 191 | 192 | ### **Contents** 193 | 194 | | [A](#a) | [B](#b) | [C](#c) | [D](#d) | [E](#e) | [F](#f) | [G](#g) | [H](#h) | [I](#i) | [J](#j) | [K](#k) | [L](#l) | [M](#m) | [N](#n) | [O](#o) 195 | | [P](#p) | [Q](#q) | [R](#r) | [S](#s) | [T](#t) | [U](#u) | [V](#v) | [W](#w) | [X](#x) | [Y](#y) | [Z](#z) | [0-9](#0-9) | 196 | 197 | - ### **A** 198 | - [Amulyakamtam] 199 | - [Aman Singh](https://github.com/amanshh) 200 | - [Aabhirup Paul](https://github.com/paul-abhirup) 201 | - [Alok Vishwakarma](https://github.com/Alokvish04) 202 | - [Aniket Singh](https://github.com/ALIVE435) 203 | - [Afifa Sadiq](https://github.com/AfifaSadiq) 204 | - [Anshika Saini](https://github.com/Anshikaa-Saini) 205 | - [Anushree mehta](https://github.com/anushreemehta6) 206 | - [Amulya Jain](https://github.com/AmulyaJain2004) 207 | - [Adifa Saniya](https://github.com/adifa_7) 208 | - [Akshitha](https://github.com/AKSHITHA-CHILUKA) 209 | - [Akshaya ](https://github.com/Akshaya1256) 210 | - [Akshaya Chinnamgari](https://github.com/AkshayaChinnamgari) 211 | - [Amrutha Bysani](https://github.com/AMRUTHA-BYSANI) 212 | 213 | 214 | | [`Back To Top`](#contents) | 215 | 216 | - ### **B** 217 | - 218 | | [`Back To Top`](#contents) | 219 | 220 | - ### **C** 221 | - [Chakrika sai D](https://github.com/CHAKRIKA-SAI-D) 222 | | [`Back To Top`](#contents) | 223 | 224 | - ### **D** 225 | - [Dipesh Mittal](https://github.com/zeeno2616) 226 | 227 | | [`Back To Top`](#contents) | 228 | 229 | - ### **E** 230 | - [EmilioHulbert](https://github.com/EmilioHulbert) 231 | - [Exynos](https://github.com/GSS0C24) 232 | - 233 | | [`Back To Top`](#contents) | 234 | 235 | - ### **F** 236 | - 237 | | [`Back To Top`](#contents) | 238 | 239 | - ### **G** 240 | 241 | - [GSOC Website](https://github.com/GSSOC'24) 242 | 243 | - [Gssoc](https://github.com/GSS0C24) 244 | 245 | | [`Back To Top`](#contents) | 246 | 247 | - ### **H** 248 | - [Harshitha](https://github.com/Harshitha22594) 249 | - [Harsh](https://github.com/Harsh-o4) 250 | 251 | | [`Back To Top`](#contents) | 252 | 253 | 254 | - ### **I** 255 | - [Inam Yadav](https://github.com/INam1995) 256 | - [Isha Katiyar](https://github.com/ishakatiyar06) 257 | 258 | | [`Back To Top`](#contents) | 259 | 260 | - ### **j** 261 | - [Hima Varsha Karanam](https://github.com/22wh1a05a8) 262 | 263 | - ### **J** 264 | - [VBhanusr](https://github.com/VBhanusr) 265 | - [Jisha](https://github.com/Jisha-tr) 266 | -[Jared](https://github.com/jjf2009) 267 | 268 | - 269 | 270 | | [`Rishita`](#https://github.com/) | 271 | 272 | | [`Hello`](#contents) | 273 | 274 | 275 | - ### **K** 276 | - [Kusum Desai](https://github.com/kusumdesai) 277 | - [Keerthi](https://github.com/kusumdesai) 278 | - [keerthi pippalla](https://github.com/keerthipippalla) 279 | 280 | | [`Back To Top`](#contents) | 281 | 282 | - ### **L** 283 | - 284 | | [`Back To Top`](#contents) | 285 | 286 | - ### **M** 287 | 288 | - [Manvitha Chowtapalii](https://github.com/Manvithach97) 289 | - [Monika Agarwal ](https://github.com/monika1281) 290 | - [Monojit Pal](https://github.com/Monojit-Pal) 291 | 292 | | [`Back To Top`](#contents) | 293 | 294 | 295 | - ### **N** 296 | - [Nihar koche ](https://github.com/Niharkoche) 297 | - Nikitha Pagadala 298 | - [nagasharmada](https://github.com/nagasharmada) 299 | 300 | | [`Back To Top`](#contents) | 301 | 302 | - ### **O** 303 | - 304 | | [`Back To Top`](#contents) | 305 | 306 | - ### **P** 307 | - [Priya Raj](https://github.com/satyam969) 308 | - [Piyush Bagde](https://github.com/PiyushBagde) 309 | - [Prince Gupta](https://github.com/Princegupta101) 310 | - [Pratham Vishwakarma](https://github.com/Pratham-Vishwakarma) 311 | - [Practclg](https://github.com/Practclg) 312 | - [PraveenTVNS](https://github.com/PraveenThota3166) 313 | - [P Sreyanshu Anupam](https://github.com/psa21git) 314 | - [Prayag Thakur](https://github.com/PrAyAg9) 315 | - [Pushpa Vishwakarma](https://github.com/Pushpa472) 316 | 317 | | [`Back To Top`](#contents) | 318 | 319 | - ### **Q** 320 | - 321 | | [`Back To Top`](#contents) | 322 | 323 | - ### **R** 324 | - [Reshma Madala](https://github.com/Reshma-Madala) 325 | - [Ritesh Sharma](https://github.com/RiteshS1) 326 | 327 | | [`Back To Top`](#contents) | 328 | 329 | - ### **S** 330 | - [Safiullah Korai](https://github.com/Safiullahkorai-786) 331 | - [Samar Aanand](https://github.com/SamarAanand) 332 | - [Samarasimha Reddy Peyala](https://github.com/samarasimhapeyala) 333 | - [Sanjay KV](https://github.com/sanjay-kv) 334 | - [Sadhvika](https://github.com/Sadhvika55) 335 | - [Siddheya](https://github.com/Asymtode712) 336 | - [Sharmila](https://github.com/sharmi4590) 337 | - [Shirshendu R Tripathi](https://github.com/ShirshenduR) 338 | -[Sandeep Gupta](https://github.com/Sandigupta)(let's do it ✌️) 339 | - [Saraswati Chandra](https://github.com/saras-69) 340 | 341 | 342 | | [`Back To Top`](#contents) | 343 | 344 | - ### **T** 345 | - [Thanvi Shreya](https://github.com/thanvishreya123)` 346 | - [Test](https://github.com/test) 347 | 348 | | [`Back To Top`](#contents) | 349 | 350 | - ### **U** 351 | - 352 | | [`Back To Top`](#contents) | 353 | 354 | - ### **V** 355 | - [VARSHINI](https://github.com/Varshini0703) 356 | - 357 | | [`Back To Top`](#contents) | 358 | 359 | - ### **W** 360 | - 361 | | [`Back To Top`](#contents) | 362 | 363 | - ### **X** 364 | - 365 | | [`Back To Top`](#contents) | 366 | 367 | - ### **Y** 368 | - [Yash K. Saini](https://github.com/yashksaini-coder) 369 | 370 | | [`Back To Top`](#contents) | 371 | - [Yashvi Goyal](https://github.com/yg2505) 372 | 373 | | [`Back To Top`](#contents) | 374 | 375 | 376 | - ### **Z** 377 | - 378 | | [`Back To Top`](#contents) | 379 | 380 | ## Our Pledge 381 | 382 | We take participation in our community as a harassment-free experience for everyone and we pledge to act in ways to contribute to an open, welcoming, diverse and inclusive community. 383 | 384 | -------------------------------------------------------------------------------- /code_of_conduct.md: -------------------------------------------------------------------------------- 1 | # ✨Contributor Covenant Code of Conduct✨ 2 | 3 | --- 4 | 5 | ## 🌟Our Pledge 6 | --- 7 | We as members, contributors, and leaders pledge to make participation in our 8 | community a harassment-free experience for everyone, regardless of age, body 9 | size, visible or invisible disability, ethnicity, sex characteristics, gender 10 | identity and expression, level of experience, education, socio-economic status, 11 | nationality, personal appearance, race, religion, or sexual identity 12 | and orientation. 13 | 14 | We pledge to act and interact in ways that contribute to an open, welcoming, 15 | diverse, inclusive, and healthy community. 16 | 17 | --- 18 | ## 🚦Our Standards 19 | 20 | Examples of behavior that contributes to a positive environment for our 21 | community include: 22 | 23 | * 💖Demonstrating empathy and kindness toward other people 24 | * 🤝Being respectful of differing opinions, viewpoints, and experiences 25 | * 📝Giving and gracefully accepting constructive feedback 26 | * 🌱Accepting responsibility and apologizing to those affected by our mistakes, 27 | and learning from the experience 28 | * 🎯Focusing on what is best not just for us as individuals, but for the 29 | overall community 30 | 31 | Examples of unacceptable behavior include: 32 | 33 | * 🚫The use of sexualized language or imagery, and sexual attention or 34 | advances of any kind 35 | * 🛑Trolling, insulting or derogatory comments, and personal or political attacks 36 | * ⚠️Public or private harassment 37 | * 🔒Publishing others' private information, such as a physical or email 38 | address, without their explicit permission 39 | * ❌Other conduct which could reasonably be considered inappropriate in a 40 | professional setting 41 | 42 | --- 43 | 44 | ## 👨‍⚖️Enforcement Responsibilities 45 | 46 | Community leaders are responsible for clarifying and enforcing our standards of 47 | acceptable behavior and will take appropriate and fair corrective action in 48 | response to any behavior that they deem inappropriate, threatening, offensive, 49 | or harmful. 50 | 51 | Community leaders have the right and responsibility to remove, edit, or reject 52 | comments, commits, code, wiki edits, issues, and other contributions that are 53 | not aligned to this Code of Conduct, and will communicate reasons for moderation 54 | decisions when appropriate. 55 | 56 | --- 57 | ## 🌐Scope 58 | 59 | This Code of Conduct applies within all community spaces, and also applies when 60 | an individual is officially representing the community in public spaces. 61 | Examples of representing our community include using an official e-mail address, 62 | posting via an official social media account, or acting as an appointed 63 | representative at an online or offline event. 64 | 65 | --- 66 | ## 📋Pull Request Guidelines 67 | 68 | Contributions, including pull requests, must align with this Code of Conduct. 69 | All contributors are expected to submit work that fosters a positive and inclusive community. 70 | Inappropriate behavior, language, or content in pull requests may result in the rejection of 71 | the contribution and further enforcement actions as outlined in the guidelines. 72 | 73 | --- 74 | ## 🛡️Enforcement 75 | 76 | Instances of abusive, harassing, or otherwise unacceptable behavior may be 77 | reported to the community leaders responsible for enforcement at 78 | . 79 | All complaints will be reviewed and investigated promptly and fairly. 80 | 81 | All community leaders are obligated to respect the privacy and security of the 82 | reporter of any incident. 83 | 84 | --- 85 | ## 📖Enforcement Guidelines 86 | 87 | Community leaders will follow these Community Impact Guidelines in determining 88 | the consequences for any action they deem in violation of this Code of Conduct: 89 | 90 | ### 1. ✏️Correction 91 | 92 | **Community Impact**: Use of inappropriate language or other behavior deemed 93 | unprofessional or unwelcome in the community. 94 | 95 | **Consequence**: A private, written warning from community leaders, providing 96 | clarity around the nature of the violation and an explanation of why the 97 | behavior was inappropriate. A public apology may be requested. 98 | 99 | ### 2. ⚠️Warning 100 | 101 | **Community Impact**: A violation through a single incident or series 102 | of actions. 103 | 104 | **Consequence**: A warning with consequences for continued behavior. No 105 | interaction with the people involved, including unsolicited interaction with 106 | those enforcing the Code of Conduct, for a specified period of time. This 107 | includes avoiding interactions in community spaces as well as external channels 108 | like social media. Violating these terms may lead to a temporary or 109 | permanent ban. 110 | 111 | ### 3. ⏳Temporary Ban 112 | 113 | **Community Impact**: A serious violation of community standards, including 114 | sustained inappropriate behavior. 115 | 116 | **Consequence**: A temporary ban from any sort of interaction or public 117 | communication with the community for a specified period of time. No public or 118 | private interaction with the people involved, including unsolicited interaction 119 | with those enforcing the Code of Conduct, is allowed during this period. 120 | Violating these terms may lead to a permanent ban. 121 | 122 | ### 4. 🚫Permanent Ban 123 | 124 | **Community Impact**: Demonstrating a pattern of violation of community 125 | standards, including sustained inappropriate behavior, harassment of an 126 | individual, or aggression toward or disparagement of classes of individuals. 127 | 128 | **Consequence**: A permanent ban from any sort of public interaction within 129 | the community. 130 | 131 | --- 132 | ## 📜Attribution 133 | 134 | This Code of Conduct is adapted from the [Contributor Covenant][homepage], 135 | version 2.0, available at 136 | https://www.contributor-covenant.org/version/2/0/code_of_conduct.html. 137 | 138 | Community Impact Guidelines were inspired by [Mozilla's code of conduct 139 | enforcement ladder](https://github.com/mozilla/diversity). 140 | 141 | [homepage]: https://www.contributor-covenant.org 142 | 143 | For answers to common questions about this code of conduct, see the FAQ at 144 | https://www.contributor-covenant.org/faq. Translations are available at 145 | https://www.contributor-covenant.org/translations. 146 | -------------------------------------------------------------------------------- /contributing.md: -------------------------------------------------------------------------------- 1 | # 🌟 Thank you for your interest in contributing to Opensource-practice!🌟 2 | This project is designed to help developers practice and enhance their open-source contribution skills. Whether you're here to report a bug, suggest a feature, or help develop new functionalities, your contribution is highly appreciated. 🚀 3 | 4 | # 📊 Project Overview 5 | Opensource-practice is a platform that allows developers to practice open-source contributions in a collaborative environment. The project aims to provide opportunities for contributors to improve their coding skills, learn how to use Git and GitHub effectively, and work in a team-driven setting. 6 | 7 | - ⭐ Stars: [stars count] 8 | - 🍴 Forks: [forks count] 9 | - 🐛 Issues: [issues count] 10 | - 🔔 Open Pull Requests: [open PRs count] 11 | - 🔕 Closed Pull Requests: [closed PRs count] 12 | - 🛠️ Languages Used: [languages count] 13 | - 🌐 Contributors: [contributors count] 14 | 15 | # 🛠️ Getting Started 16 | To begin contributing, follow these simple steps: 17 | 18 | - **Fork this Repository 🍴:** Fork the repository to your own GitHub account by clicking the Fork button on the repository page. 19 | 20 | - **Clone the Repository 🧩:** Once forked, clone the repository to your local machine: 21 | ```bash 22 | 23 | git clone https://github.com/Your-Username/Opensource-practice.git 24 | ``` 25 | - **Create a New Branch 🌿:** It's important to work on a separate branch for your feature or fix: 26 | 27 | ```bash 28 | git checkout -b "Feature-Name" 29 | ``` 30 | - **Make Your Changes 🛠️:** Implement your changes or fixes and ensure they work as expected. 31 | 32 | - **Commit Your Changes 💬:** Commit your changes with a meaningful commit message: 33 | 34 | ```bash 35 | git commit -m "Brief Description of Changes" 36 | ``` 37 | - **Push Your Changes 🚢:** Push your branch to your GitHub repository: 38 | 39 | ```bash 40 | git push origin Feature-Name 41 | ``` 42 | - **Submit a Pull Request 🔥:** Open a pull request (PR) on GitHub for your changes to be reviewed. 43 | 44 | # 🎉 Welcome, Contributors 45 | We encourage contributors from all backgrounds and skill levels! Whether you're fixing bugs 🐛, adding new features 🆕, or improving documentation 📄, your help is invaluable. 46 | 47 | Here’s a quick guide to contribute: 48 | 49 | - Fork the Repository: Start by forking the project repository. 50 | - Create a Feature Branch: Work on a separate branch for your contributions. 51 | - Write Clear Commit Messages: Ensure your commits are descriptive and meaningful. 52 | - Push Your Changes: Push your changes to GitHub. 53 | - Open a Pull Request: Submit your PR and wait for feedback from the maintainers. 54 | 55 | # 📜 Contribution Guidelines 56 | Please follow these guidelines to maintain high-quality contributions: 57 | 58 | 1.**Code Style:** 59 | Ensure consistent code formatting according to the existing style. Write clean, readable, and well-documented code. 60 | 61 | 2.**Commit Messages:** 62 | Make your commit messages clear and concise, reflecting the changes you made. 63 | 64 | 3.**Pull Requests:** 65 | Each PR should focus on a single issue or feature. Link relevant issues to your PR. 66 | 67 | 4.**Testing:** 68 | Test your changes thoroughly before opening a pull request. Make sure no existing functionality breaks. 69 | 70 | 5.**Issue Tracker:** 71 | Review open issues before starting work on a feature or fix. Reference related issues in your PR. 72 | 73 | # 💻 Technologies Used 74 | 75 | Opensource-practice is built using a combination of modern tools to provide a seamless development experience: 76 | 77 | - Frontend: HTML, CSS, JavaScript 🌐 78 | - Backend: Node.js 🟩, Express.js 🚀 79 | - Version Control: Git & GitHub 🛠️ 80 | 81 | # 🔄 How to Submit a Pull Request 82 | To submit a pull request: 83 | 84 | - Fork and clone the repository locally. 85 | - Follow the setup instructions in the README to run the project locally. 86 | - Make your desired changes. 87 | - Test your changes locally to ensure everything works. 88 | - Commit the changes following the commit message format guidelines. 89 | - Open a pull request and wait for a review. 90 | 91 | # 🐞 Reporting Issues 92 | If you find any bugs or have feature suggestions, here’s how you can report them: 93 | 94 | Check for Existing Issues: Before opening a new issue, review the existing issue tracker. 95 | Open a New Issue: If your issue is new, click the "New Issue" button and provide detailed information. 96 | Be Specific: Include steps to reproduce the issue and describe the expected vs actual behavior. 97 | Provide Logs/Screenshots: Include relevant screenshots or logs for a quicker resolution. 98 | 99 | # 🌐 Community & Communication 100 | For any questions or discussions, feel free to use GitHub Discussions or Issues. We're here to collaborate, share ideas, and improve together. 101 | 102 | # 📂 Project Structure 103 | Opensource-practice follows a well-organized structure to promote collaboration and maintainability. If you make any structural changes, make sure to document them accordingly. 104 | 105 | # 💡 Need Ideas? 106 | Check out the Issues tab for open tasks or feel free to suggest new features that align with our goals! 107 | 108 | # ✨ Join Us! 109 | We’re excited to have you on board! Star ⭐ the project if you like it, and help us build an amazing open-source platform. Your contributions are making an impact! 🌟 110 | -------------------------------------------------------------------------------- /markdown-practice.md: -------------------------------------------------------------------------------- 1 | ## Authentication 2 | 3 | > Product owner 4 | > Users wish to use their existing authentication 5 | 6 | Login with GitHub OAuth with NextAuth library. 7 | 8 | ```mermaid 9 | sequenceDiagram 10 | Guest->>User: Login? 11 | User-->>Guest: Yes! 12 | Guest-)User: Authenticated 13 | ``` 14 | 15 | ### Prerequisites 16 | 17 | These are the subtasks required: 18 | - [x] install library 19 | - [ ] look into https://github.com/eddiejaoude/eddiejaoude/issues/99 20 | - [ ] setup OAuth app 21 | ... 22 | 23 | We must also include the login hook: 24 | 25 | ```js 26 | // create the new user a Stripe account 27 | const user = getUser(); 28 | const stripe = createNewStripeUser(user); 29 | ``` 30 | 31 | ### After 32 | 33 | Use feature flags to hide login button until fully tested 34 | 35 | > [!CAUTION] 36 | > Do not run in production until after migration 37 | 38 | 39 | ```mermaid 40 | 41 | 42 | gitGraph: 43 | commit "Ashish" 44 | branch newbranch 45 | checkout newbranch 46 | commit id:"1111" 47 | commit tag:"test" 48 | checkout main 49 | commit type: HIGHLIGHT 50 | commit 51 | merge newbranch 52 | commit 53 | branch b2 54 | commit 55 | ``` 56 | 57 | ```mermaid 58 | flowchart TD 59 | Start["Start"] --> Enter_Credentials["Enter Username and Password"] 60 | Enter_Credentials --> Validate_Credentials["Validate Credentials"] 61 | Validate_Credentials -->|Valid| Success["Login Successful"] 62 | Validate_Credentials -->|Invalid| Failure["Login Failed"] 63 | Success --> End["End"] 64 | Failure --> Enter_Credentials 65 | 66 | ``` 67 | -------------------------------------------------------------------------------- /pr_dump/(Amrutha Pariprolu)file2.md: -------------------------------------------------------------------------------- 1 | ### pr not merged from APIVerse 2 | 3 | 1.https://github.com/dishamodi0910/APIVerse/pull/433 4 | 2.https://github.com/dishamodi0910/APIVerse/pull/431 5 | 3.https://github.com/dishamodi0910/APIVerse/pull/435 -------------------------------------------------------------------------------- /pr_dump/Eduford-university: -------------------------------------------------------------------------------- 1 | Updated responsive navbar with other styling 2 | https://github.com/juhinagpure/Eduford-university/pull/197 3 | -------------------------------------------------------------------------------- /pr_dump/File -Pedning PR merge links.md: -------------------------------------------------------------------------------- 1 | ## Links of prs pending from a long time 2 | Hoping that I will get the required points soon of each PR. 3 | 4 | 1. https://github.com/subinoybiswas/clippy/pull/92 5 | 2. https://github.com/Yash-Parsana/CrazyCoderWebApp/pull/93 6 | 3. https://github.com/PatilHarshh/Kaam-Do/pull/349 7 | 4. https://github.com/adarsh-singh01/PrithWe/pull/199 8 | 5. https://github.com/algovengers/Hairify/pull/196 9 | 6. https://github.com/algovengers/Hairify/pull/198 10 | 11 | Thankyou for your understanding. 12 | -------------------------------------------------------------------------------- /pr_dump/File-1.md: -------------------------------------------------------------------------------- 1 | ## Pending Pull Requests for Virtuo Learn Project 2 | 3 | Unfortunately, two of my pull requests for the Virtuo Learn project haven't been merged yet: 4 | 5 | 1. **[PR #1: Price Cards Fixing](https://github.com/JAYESHBATRA/Virtuo-Learn/pull/433)** 6 | 2. **[PR #2: Navbar in "Quizzes" Section fixing](https://github.com/JAYESHBATRA/Virtuo-Learn/pull/431)** 7 | 8 | I'm hoping these will be reviewed ASAP and necessary points will be added. 9 | -------------------------------------------------------------------------------- /pr_dump/Hemashree21: -------------------------------------------------------------------------------- 1 | https://github.com/Nactore-Org/Nacto-Care/pull/312 2 | 3 | Open PR the admin was inactive 4 | -------------------------------------------------------------------------------- /pr_dump/Old PR[Nest ONDC]: -------------------------------------------------------------------------------- 1 | this PR is from the respository Nest ONDC which i have contributed. 2 | https://github.com/MAVRICK-1/e-commerce_website/pull/440#event-13343057804 3 | -------------------------------------------------------------------------------- /pr_dump/Open PR - Asmita Mishra: -------------------------------------------------------------------------------- 1 | ## Open Pending PRs | Total Points: 90 2 | 3 | 1. Added "Fixed Preloader" [PR #461] https://github.com/PranavBarthwal/cosmoXplore/pull/461 - **Level2** 4 | 5 | Proof - level-2 was assign on issue - [issue #449] https://github.com/PranavBarthwal/cosmoXplore/issues/449 6 | 7 | 2. Added "Othello Game" [PR #1865] https://github.com/swapnilsparsh/30DaysOfJavaScript/pull/1865 - **Level3** 8 | 9 | Proof - level-3 was assign on issue - [issue #1799] https://github.com/swapnilsparsh/30DaysOfJavaScript/issues/1799 10 | 11 | 3. Added "App Logo" [PR #53] https://github.com/Pratikdate/ecard/pull/53 - **Level1** 12 | 13 | Proof - level-1 was assign on issue - [issue #42] https://github.com/Pratikdate/ecard/issues/42 14 | 15 | 4. Added "Back to top button" [PR #524] https://github.com/subhadipbhowmik/30-Days-Of-CPP/pull/524 - **Level1** 16 | 17 | Proof - level-1 was assign on issue - [issue #476] https://github.com/subhadipbhowmik/30-Days-Of-CPP/issues/476 18 | 19 | 5. Fixed Chatbot Visible During Preloader [PR #1377] https://github.com/apu52/Travel_Website/pull/1377 20 | 21 | Proof - [issue #996] https://github.com/apu52/Travel_Website/issues/996 22 | 23 | 6. Redesigned Contact-Us Section [PR #1381] https://github.com/apu52/Travel_Website/pull/1381 24 | 25 | Proof - [issue #976] https://github.com/apu52/Travel_Website/issues/976 26 | 27 | ## PR 2 28 | This is my second empty PR to balance points -------------------------------------------------------------------------------- /pr_dump/Open PR - Hars-21.md: -------------------------------------------------------------------------------- 1 | https://github.com/Rakesh9100/Beautiify/pull/1374 2 | 3 | https://github.com/Rakesh9100/Beautiify/pull/1366 4 | 5 | https://github.com/ChromeGaming/Dot-Box/pull/766 6 | 7 | https://github.com/HimanshuNarware/Devlabs/pull/3000 8 | 9 | PR not merged till now and PA not responding even the issue is fixed. 10 | -------------------------------------------------------------------------------- /pr_dump/Open PR - Vinisha Dsouza.md: -------------------------------------------------------------------------------- 1 | Open valid PR'S not merged yet 2 | These are the links to open valid PR's not merged yet 3 | PR1 - Resourcehub - jfmartinz/ResourceHub/pull/1366 4 | PR2 - Beautify - Rakesh9100/Beautiify/pull/1109 5 | PR2 - Virtuo-Learn - JAYESHBATRA/Virtuo-Learn/pull/466 -------------------------------------------------------------------------------- /pr_dump/Open PR - ayush848.md: -------------------------------------------------------------------------------- 1 | https://github.com/Counselllor/Counsellor-Web/pull/1337 -------------------------------------------------------------------------------- /pr_dump/Open PR Radhika Malpani.md: -------------------------------------------------------------------------------- 1 | ## Open PR list 2 | 3 | 1. Added Cursor Trail Effect [PR #472](https://github.com/PranavBarthwal/cosmoXplore/pull/472) [issue #471](https://github.com/PranavBarthwal/cosmoXplore/issues/471) level 1 but needed to be level 2 4 | 2. Add "Website Description" in Footer "PrithWe" [PR #169](https://github.com/adarsh-singh01/PrithWe/pull/169) [issue #163](https://github.com/adarsh-singh01/PrithWe/issues/163) level 1 5 | 6 | ## Proof 7 | 8 | ![image](https://github.com/user-attachments/assets/86875336-1be6-433b-9ba5-c9086e4752e5) 9 | 10 | ![image](https://github.com/user-attachments/assets/276e57d3-807f-45c2-87f8-c07e9e2a106d) 11 | 12 | -------------------------------------------------------------------------------- /pr_dump/Open PRs - MastanSayyad.md: -------------------------------------------------------------------------------- 1 | ## Open Pending PRs | Total Points: 55 2 | 3 | 1. Added "Terms and Conditions" Page [PR #149](https://github.com/omrajsharma/bigohhh.com/pull/149) | [Issue #111](https://github.com/omrajsharma/bigohhh.com/issues/111) - **Level 1** 4 | 2. Fixed 🐞 "404 Routing Navigation Errors" For The Pages [PR #427](https://github.com/abhay-raj19/FitBody/pull/427) - **Level 1** 5 | 3. Added "BackBtn" Feature to "Services" and "Blogs" Page [PR #263](https://github.com/Nactore-Org/Nacto-Care/pull/263) | [Issue #262](https://github.com/Nactore-Org/Nacto-Care/issues/262)- **Level 2** 6 | 4. Added "Privacy Policy" and "Terms and Conditions" Pages to Kaam Do [PR #327](https://github.com/PatilHarshh/Kaam-Do/pull/327) | [Issue #241](https://github.com/PatilHarshh/Kaam-Do/issues/241)- Level 1 (But needs level 2 considering respective changes) 7 | 8 | 9 | 10 | 11 | ## > Proof 12 | 13 | 14 | ![image](https://github.com/user-attachments/assets/879cd6e9-c777-45e3-b753-01d58044ca52) 15 | 16 | 17 | ### PR 2 18 | 19 | This is my second empty PR to balance points 20 | -------------------------------------------------------------------------------- /pr_dump/Open PRs- sau-mili: -------------------------------------------------------------------------------- 1 | [Food ordering website]- https://github.com/khushi-joshi-05/Food-ordering-website/pull/1611 2 | 3 | [SwapReads]- https://github.com/anuragverma108/SwapReads/pull/2846 - Checkout Page added #2846 4 | 5 | [SwapReads]- https://github.com/anuragverma108/SwapReads - Testimonial Cards improved 6 | -------------------------------------------------------------------------------- /pr_dump/Open pr's/Readme.md: -------------------------------------------------------------------------------- 1 | 1. ChainzRegistry(https://github.com/jaibhedia/ChainzRegistry) Updated Readme.md #63(pr raised) 2 | 3 | 2. Physi-c-Tech(https://github.com/ChromeGaming/Physi-c-Tech) Updated Readme.md #273 4 | 5 | 3. awesome-open-source-flutter-apps(https://github.com/fluttergems/awesome-open-source-flutter-apps) added two flutter aps #656, #654 6 | 7 | 4. WebMasterLog(https://github.com/Avdhesh-Varshney/WebMasterLog/pull/766) added project in next js #766 8 | 5. WebMasterLog(https://github.com/Avdhesh-Varshney/WebMasterLog/pull/767) added typescript rental website #767 9 | 6. (https://github.com/Avdhesh-Varshney/WebMasterLog/pull/770) added vue-js e-commerce shoe website #770 10 | 7. CalcDiverse- (https://github.com/Rakesh9100/CalcDiverse/pull/1837) added hover effect on pagination buttons #1837 11 | 12 | 13 | -------------------------------------------------------------------------------- /pr_dump/Open pr-ArchieShah.md: -------------------------------------------------------------------------------- 1 | ## Open Pending PRs | Total Points: 45 2 | 3 | 1. 3D Card Carousel added in carousel section [PR #1320](https://github.com/Rakesh9100/Beautiify/pull/1320) | [Issue #1287](https://github.com/Rakesh9100/Beautiify/issues/1287) - **Level 3** 4 | I have created an entire component which is a level 3 contribution. Please add 45 points for the unmerged PR. -------------------------------------------------------------------------------- /pr_dump/PR not merged: -------------------------------------------------------------------------------- 1 | ### PR's not merged : 2 | 3 | 1. Added heap data structure in DSA - (https://github.com/jfmartinz/ResourceHub/pull/1575) - level 1 4 | 2. Added Hash Map data structure in DSA - (https://github.com/jfmartinz/ResourceHub/pull/1573) - level 1 5 | -------------------------------------------------------------------------------- /pr_dump/PR not merged- ananyag309/README.md: -------------------------------------------------------------------------------- 1 | - Virtuo Learn (https://github.com/JAYESHBATRA/Virtuo-Learn/pull/414) Implemented Dark Mode all pages of website 2 | - Packabunchas (https://github.com/ChromeGaming/PACKABUNCHAS/pull/94) Added feedback form 3 | - XceeDesigns (https://github.com/XceeDesigns/Website/pull/233) Added js code to subscribe form 4 | - 30-Days-of-CPP (https://github.com/subhadipbhowmik/30-Days-Of-CPP/pull/522) Added day 08 content about string in cpp 5 | - 30-Days-of-CPP (https://github.com/subhadipbhowmik/30-Days-Of-CPP/pull/523) added day 09 content about array in cpp 6 | - Webmasterlog (https://github.com/Avdhesh-Varshney/WebMasterLog/pull/759) movie app using vanilla js -------------------------------------------------------------------------------- /pr_dump/PR not merged-Amrutha Pariprolu/file1.md: -------------------------------------------------------------------------------- 1 | ### PR's not merged 2 | 3 | 1.https://github.com/jfmartinz/ResourceHub/pull/1508 4 | 2.https://github.com/jfmartinz/ResourceHub/pull/1507 5 | 3.https://github.com/jfmartinz/ResourceHub/pull/1387 6 | 4.https://github.com/jfmartinz/ResourceHub/pull/1283 -------------------------------------------------------------------------------- /pr_dump/PR not merged-BHS-Harish: -------------------------------------------------------------------------------- 1 | (https://github.com/SamarthKadam/ChatBox/pull/312) 2 | (https://github.com/SamarthKadam/ChatBox/pull/313) 3 | 4 | -------------------------------------------------------------------------------- /pr_dump/PR not merged-ShouryaMishra2006/unmergedpr.md: -------------------------------------------------------------------------------- 1 | #unmerged pr #issue 1299 #pr 1375 2 | https://github.com/Rakesh9100/Beautiify/pull/1375#pullrequestreview-2230507401 3 | 4 | #unmerged pr #issue 1336 #pr 1369 5 | https://github.com/Rakesh9100/Beautiify/pull/1369#issuecomment-2276149245 6 | https://github.com/Rakesh9100/Beautiify/pull/1369 7 | 8 | #please merge my pull request to balance my points -------------------------------------------------------------------------------- /pr_dump/Pending Open PR: -------------------------------------------------------------------------------- 1 | ## Below is the list of Open PR that are not merged hope I'll get points for them 😌 2 | 3 | https://github.com/JiyaGupta-cs/ShopNex/pull/424 4 | https://github.com/urstrulynishkarsh/ReactChat/pull/202 5 | https://github.com/subinoybiswas/clippy/pull/85 6 | https://github.com/urstrulynishkarsh/ReactChat/pull/211 7 | https://github.com/Rakesh9100/CalcDiverse/pull/1604 8 | https://github.com/algovengers/MindMate/pull/160 9 | https://github.com/PranavBarthwal/cosmoXplore/pull/458 10 | https://github.com/Mansi168/EmoWell/pull/392 11 | 12 | 13 | 14 | -------------------------------------------------------------------------------- /pr_dump/Pending Open PR's - Praneeth-2602.mg: -------------------------------------------------------------------------------- 1 | ## Below is the list of Merged PR that are merged hope I'll get points for them 😌 2 | 3 | https://github.com/Rakesh9100/Beautiify/pull/1353 4 | https://github.com/Rakesh9100/Beautiify/pull/1354 5 | https://github.com/Rakesh9100/Beautiify/pull/1355 6 | https://github.com/Rakesh9100/Beautiify/pull/1356 7 | https://github.com/Rakesh9100/Beautiify/pull/1357 8 | https://github.com/Rakesh9100/Beautiify/pull/1358 9 | https://github.com/Rakesh9100/Beautiify/pull/1359 10 | https://github.com/Rakesh9100/Beautiify/pull/1360 11 | https://github.com/Rakesh9100/Beautiify/pull/1361 12 | https://github.com/Rakesh9100/Beautiify/pull/1362 13 | https://github.com/Rakesh9100/Beautiify/pull/1363 14 | https://github.com/Rakesh9100/Beautiify/pull/1364 15 | -------------------------------------------------------------------------------- /pr_dump/Pending PR - Utsavladia: -------------------------------------------------------------------------------- 1 | ## Here are some more of the PR which are not merged 2 | 3 | https://github.com/PranavBarthwal/cosmoXplore/pull/474 4 | https://github.com/Avdhesh-Varshney/WebMasterLog/pull/717 5 | https://github.com/Rakesh9100/CalcDiverse/pull/1794 6 | https://github.com/Sayak-Bhunia/mystory/pull/288 7 | https://github.com/shyamtawli/devFind/pull/1101 8 | https://github.com/Rakesh9100/CalcDiverse/pull/1819 9 | https://github.com/Rakesh9100/Beautiify/pull/1365 10 | https://github.com/apu52/METAVERSE/pull/1236 11 | https://github.com/SamarthKadam/ChatBox/pull/311 12 | https://github.com/apu52/Travel_Website/pull/1368 13 | https://github.com/apu52/METAVERSE/pull/1239 14 | 15 | Please so something for these PR sir.. 🙂 16 | -------------------------------------------------------------------------------- /pr_dump/Pending PR Kaushal-11: -------------------------------------------------------------------------------- 1 | https://github.com/SrijanShovit/HealthLearning/pull/169 2 | 3 | This PR automatically closed, not by repo ownner. 4 | ANd repo owner is not answering from 2 months. 5 | -------------------------------------------------------------------------------- /pr_dump/Pending PR merge links.md: -------------------------------------------------------------------------------- 1 | 2 | My PR is not yet merged, though it is a valid PR 3 | PR link: TechNodes2-0/ElectiveHub/pull/307 4 | 5 | please can you check this @sanjay-kv -------------------------------------------------------------------------------- /pr_dump/Pending open PR: -------------------------------------------------------------------------------- 1 | ## Below is the list of Open PR that are not merged hope I'll get points for them 😌 2 | 3 | https://github.com/JiyaGupta-cs/ShopNex/pull/424 4 | https://github.com/urstrulynishkarsh/ReactChat/pull/202 5 | https://github.com/subinoybiswas/clippy/pull/85 6 | https://github.com/urstrulynishkarsh/ReactChat/pull/211 7 | https://github.com/Rakesh9100/CalcDiverse/pull/1604 8 | https://github.com/algovengers/MindMate/pull/160 9 | https://github.com/PranavBarthwal/cosmoXplore/pull/458 10 | https://github.com/Mansi168/EmoWell/pull/392 11 | 12 | 13 | 14 | -------------------------------------------------------------------------------- /pr_dump/Saksham.md: -------------------------------------------------------------------------------- 1 | https://github.com/Tanay-ErrorCode/lupo-skill/pull/322 2 | https://github.com/anuragverma108/SwapReads/pull/2829 3 | https://github.com/anuragverma108/SwapReads/pull/2828 4 | https://github.com/anuragverma108/SwapReads/pull/2827 5 | https://github.com/anuragverma108/SwapReads/pull/2826 6 | https://github.com/anuragverma108/SwapReads/pull/2825 7 | -------------------------------------------------------------------------------- /pr_dump/SakshamUnassigned.md: -------------------------------------------------------------------------------- 1 | https://github.com/Tanay-ErrorCode/lupo-skill/issues/308 2 | https://github.com/SyedImtiyaz-1/GetTechProjects/pull/781 3 | https://github.com/CodeHarborHub/codeharborhub.github.io/issues/4229 4 | https://github.com/CodeHarborHub/codeharborhub.github.io/issues/4228 5 | https://github.com/CodeHarborHub/codeharborhub.github.io/issues/4227 6 | -------------------------------------------------------------------------------- /pr_dump/Unchecked PRs: -------------------------------------------------------------------------------- 1 | https://github.com/ChromeGaming/Physi-c-Tech/pull/177 2 | -------------------------------------------------------------------------------- /pr_dump/Unmerged.md: -------------------------------------------------------------------------------- 1 | ## Add Critical Point Calculator 2 | 1. Assigned issue - https://github.com/Rakesh9100/CalcDiverse/issues/1610 3 | 2. My PR - https://github.com/Rakesh9100/CalcDiverse/pull/1826 -------------------------------------------------------------------------------- /pr_dump/hemashree21: -------------------------------------------------------------------------------- 1 | https://github.com/Nactore-Org/Nacto-Care/pull/312 2 | 3 | Open PR the admin was inactive 4 | -------------------------------------------------------------------------------- /pr_dump/image-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/recodehive/Opensource-practice/f577f8222e1af380d1545a47caf093f65cba5137/pr_dump/image-1.png -------------------------------------------------------------------------------- /pr_dump/image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/recodehive/Opensource-practice/f577f8222e1af380d1545a47caf093f65cba5137/pr_dump/image.png -------------------------------------------------------------------------------- /pr_dump/jency1 - unmerged PR's: -------------------------------------------------------------------------------- 1 | ## Open Pending PRs | Total Points: 180 2 | 3 | 4 | ### 1. [[Food-ordering-website](https://github.com/khushi-joshi-05/Food-ordering-website)] - khushi-joshi-05 : Total Points 95 5 | 6 | 1. Improved the UI of Amantran Food Ordering - (https://github.com/khushi-joshi-05/Food-ordering-website/pull/1613) - level 3 7 | 2. Improved the UI of Frosa - (https://github.com/khushi-joshi-05/Food-ordering-website/pull/1610) - level 2 8 | 3. Bug fixed - Fixed the footer - (https://github.com/khushi-joshi-05/Food-ordering-website/pull/1608) - level 2 9 | 10 | 11 | ### 2. [[ResourceHub](https://github.com/jfmartinz/ResourceHub)] - jfmartinz : Total Points - 60 12 | 13 | 1. Added coding platform - TopCoder in DSA - (https://github.com/jfmartinz/ResourceHub/pull/1583) - level 1 14 | 2. Added coding platform - codewars for DSA - (https://github.com/jfmartinz/ResourceHub/pull/1581) - level 1 15 | 3. Added resource for Interview Questions asked in DSA - (https://github.com/jfmartinz/ResourceHub/pull/1579) - level 1 16 | 4. Added Trie data structure in DSA - (https://github.com/jfmartinz/ResourceHub/pull/1577) - level 1 17 | 5. Added heap data structure in DSA - (https://github.com/jfmartinz/ResourceHub/pull/1575) - level 1 18 | 6. Added Hash Map data structure in DSA - (https://github.com/jfmartinz/ResourceHub/pull/1573) - level 1 19 | 20 | 21 | ### 3. [[CSEdgeOfficial](https://github.com/CSEdgeOfficial/learn.csedge.courses)] - CSEdgeOfficial : Total Points - 25 22 | 23 | 1. Made Navbar Sticky - (https://github.com/CSEdgeOfficial/learn.csedge.courses/pull/486) 24 | -------------------------------------------------------------------------------- /pr_dump/old or: -------------------------------------------------------------------------------- 1 | my pr in the FaceX https://github.com/akshitagupta15june/Face-X/issues/1814#issuecomment-2275968951 is not merged 2 | -------------------------------------------------------------------------------- /pr_dump/open PR: -------------------------------------------------------------------------------- 1 | https://github.com/Akshatchaube01/TimeWarp/issues/395 2 | -------------------------------------------------------------------------------- /pr_dump/open-pr-zalabhavy: -------------------------------------------------------------------------------- 1 | https://github.com/Rakesh9100/Beautiify/pull/1321 2 | https://github.com/Suchitra-Sahoo/AgriLearnNetwork/pull/1285 3 | https://github.com/HimanshuNarware/CareerZunction_Intern/pull/380 -------------------------------------------------------------------------------- /pr_dump/pending pr: -------------------------------------------------------------------------------- 1 | My pending pr in this repo https://github.com/Niketkumardheeryan/ML-CaPsule/pull/1072 2 | -------------------------------------------------------------------------------- /pr_dump/pr not merged: -------------------------------------------------------------------------------- 1 | ### PR's not merged : 2 | 3 | 1. Added heap data structure in DSA - (https://github.com/jfmartinz/ResourceHub/pull/1575) - level 1 4 | 2. Added Hash Map data structure in DSA - (https://github.com/jfmartinz/ResourceHub/pull/1573) - level 1 5 | -------------------------------------------------------------------------------- /pr_dump/prLinks.md: -------------------------------------------------------------------------------- 1 | ## contributed in Rishi mondals' Repo 2 | 3 | I have made contributions in Rishi mondals' Nest Ondc organisation , where i have successfully raised as well as merged two PRs 4 | 5 | 1 **[OTP verification system for SignIn functionality-#203 ](https://github.com/MAVRICK-1/e-commerce_website/pull/248)** (dead link right now ) 6 | 7 | merged Pr ->> ![alt text](image.png) 8 | 9 | 2 **[Enhance User Interaction with Toast Notifications-#268](https://github.com/MAVRICK-1/e-commerce_website/pull/321)** (dead link right now) 10 | 11 | merged Pr ->> ![alt text](image-1.png) -------------------------------------------------------------------------------- /pr_dump/readmee pr/Readme.md: -------------------------------------------------------------------------------- 1 | my pr https://github.com/kunjgit/GameZone/issues/5168 #5169 -------------------------------------------------------------------------------- /pr_dump/readmee pr/read: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/recodehive/Opensource-practice/f577f8222e1af380d1545a47caf093f65cba5137/pr_dump/readmee pr/read -------------------------------------------------------------------------------- /pr_dump/redame.md: -------------------------------------------------------------------------------- 1 | Make a folder or file here and mention your old PR... 2 | https://github.com/Rakesh9100/Beautiify/pull/1331 3 | https://github.com/Rakesh9100/Beautiify/pull/1329 4 | https://github.com/Rakesh9100/Beautiify/pull/1321 -------------------------------------------------------------------------------- /pr_dump/unmerged PR: -------------------------------------------------------------------------------- 1 | https://github.com/Rakesh9100/CalcDiverse/pull/1830 2 | -------------------------------------------------------------------------------- /pr_dump/unmerged pr: -------------------------------------------------------------------------------- 1 | https://github.com/Rakesh9100/CalcDiverse/pull/1830 2 | -------------------------------------------------------------------------------- /pr_dump/unmerged prs.md: -------------------------------------------------------------------------------- 1 | Open PR in repo : https://github.com/Rakesh9100/Beautiify 2 | Issue: Rakesh9100/Beautiify#1783 3 | PR : Rakesh9100/Beautiify#1813 4 | -------------------------------------------------------------------------------- /pr_dump/unmerged_pr.md: -------------------------------------------------------------------------------- 1 | Following pull requests have not been merged yet: 2 | - https://github.com/TAHIR0110/ThereForYou/pull/111 3 | - https://github.com/hereisSwapnil/ExamTime/pull/210 4 | - https://github.com/HimanshuNarware/CareerZunction_Intern/pull/252 5 | - https://github.com/Yeasir0032/Discord-Clone/pull/80 6 | - https://github.com/HimanshuNarware/CareerZunction_Intern/pull/252 7 | - https://github.com/TAHIR0110/ThereForYou/pull/111 8 | - https://github.com/hereisSwapnil/ExamTime/pull/210 9 | - https://github.com/Yeasir0032/Discord-Clone/pull/80 10 | - https://github.com/arghadipmanna101/Flipkart_Clone/pull/420 11 | -------------------------------------------------------------------------------- /pr_dump/vijayshankersharma.md: -------------------------------------------------------------------------------- 1 | Unmerged: 2 | 3 | (level 1) https://github.com/SauravMukherjee44/CodeIN-Community-Website/pull/832 4 | (level 1) https://github.com/SyedImtiyaz-1/GetTechProjects/pull/450 5 | (level 1) https://github.com/sanika391/SpoonShare/pull/101 6 | (level 1) https://github.com/hereisSwapnil/ExamTime/pull/282 7 | (level 3) https://github.com/JAYESHBATRA/Virtuo-Learn/pull/488 8 | (level 3) https://github.com/Rakesh9100/CalcDiverse/pull/1778 9 | (level 3) https://github.com/piyushg-07/blogzen-OpenSource/pull/553 10 | (level 3) https://github.com/Akshat111111/Hedging-of-Financial-Derivatives/pull/929 11 | 12 | 13 | merged: 14 | (gssoc label ) https://github.com/Priyaaa1/StartConnect-Hub/pull/172 15 | 16 | These are not showing on leaderboard 17 | https://github.com/mayank-0407/Anti-Corrupto/pull/30 18 | https://github.com/mayank-0407/Anti-Corrupto/pull/33 -------------------------------------------------------------------------------- /pr_dump/vishanurag.md: -------------------------------------------------------------------------------- 1 | ## Unmerged PRs: 2 | 3 | 1. https://github.com/SyedImtiyaz-1/GetTechProjects/pull/910 4 | 5 | 2. https://github.com/Rakesh9100/Beautiify/pull/1372 6 | --------------------------------------------------------------------------------