├── .github └── ISSUE_TEMPLATE │ ├── custom.md │ ├── bug_report.md │ └── feature_request.md ├── LICENSE ├── Mentorship.md ├── CODE_OF_CONDUCT.md ├── Contributing.md └── README.md /.github/ISSUE_TEMPLATE/custom.md: -------------------------------------------------------------------------------- 1 | --- 2 | name: Custom issue template 3 | about: Describe this issue template's purpose here. 4 | title: '' 5 | labels: '' 6 | assignees: '' 7 | 8 | --- 9 | 10 | 11 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- 1 | --- 2 | name: Bug report 3 | about: Create a report to help us improve 4 | title: '' 5 | labels: '' 6 | assignees: '' 7 | 8 | --- 9 | 10 | **What is the issue you are experiencing? Please provide a clear and concise description.** 11 | 12 | 13 | **Have you been able to replicate the issue consistently? If so, please provide steps to reproduce the issue.** 14 | 15 | 16 | **What browser and operating system are you using?** 17 | 18 | 19 | **Is there anything else you would like to share that may be relevant to this bug report?** 20 | 21 | **Screenshots** 22 | If applicable, add screenshots to help explain your problem. 23 | 24 | **Additional context** 25 | Add any other context about the problem here. 26 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- 1 | --- 2 | name: Feature request 3 | about: Suggest an idea for this project 4 | title: '' 5 | labels: '' 6 | assignees: '' 7 | 8 | --- 9 | 10 | **What new feature or functionality would you like to see added to OpenDevFellows?** 11 | 12 | 13 | **How would this feature or functionality benefit the community of developers who use OpenDevFellows?** 14 | 15 | 16 | **Have you seen a similar feature or functionality implemented elsewhere? If so, please provide details and links.** 17 | 18 | 19 | 20 | **Do you have any ideas for how this feature or functionality could be implemented in OpenDevFellows?** 21 | 22 | 23 | 24 | **Additional context** 25 | Add any other context or screenshots about the feature request here. 26 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | MIT License 2 | 3 | Copyright (c) 2023 Abhishek Bhattacharjee 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 | -------------------------------------------------------------------------------- /Mentorship.md: -------------------------------------------------------------------------------- 1 | |Mentorship Program Name | Link| 2 | |:-----------------------|:----| 3 | |LFX Mentorship| https://sso.linuxfoundation.org| 4 | |Google Summer of Code (Gsoc)|https://summerofcode.withgoogle.com| 5 | |Google Season of Docs|https://developers.google.com/season-of-docs/docs/get-started| 6 | |Outreachy Internship|https://www.outreachy.org/| 7 | |Amazon AI/ML Program|https://aws.amazon.com 8 | |Google Cloud X NASSCOM|https://futureskillsprime.in| 9 | |K8s Sigs (for open Source contribution)|https://github.com/kubernetes-sigs| 10 | |MLH Fellows|https://fellowship.mlh.io/| 11 | |LFN Mentorship Program|https://wiki.lfnetworking.org/display/LN/LFN+Mentorship+Program| 12 | |Linux Kernel Mentorship Program|https://wiki.linuxfoundation.org/lkmp| 13 | |CNCF Mentorship |https://github.com/cncf/mentoring/blob/main/lfx-mentorship/2022/03-Sept-Nov/README.md| 14 | |Microsoft Open Source Fest |https://www.microsoft.com/en-us/research/academic-program/rl-open-source-fest/| 15 | |GHC|https://ghc.anitab.org/attend/scholarships/| 16 | |Hyperledger Mentorship Program|https://wiki.hyperledger.org/display/INTERN/Hyperledger+Mentorship+Program| 17 | |Season of KDE|https://www.openmainframeproject.org/all-projects/mentorship-program| 18 | |Open Main Frame project|https://www.openmainframeproject.org/all-projects/mentorship-program| 19 | |Summer of Bitcoin |https://www.summerofbitcoin.org/| 20 | 21 | -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- 1 | # Code of Conduct 2 | 3 | Our community is committed to providing a welcoming, safe, and inclusive space for all contributors, regardless of their background, identity, or experience level. To foster a positive and constructive environment, we expect everyone to follow the guidelines outlined below: 4 | 5 | Be respectful: Treat everyone with respect, including those with different viewpoints or opinions. Avoid making personal attacks, engaging in name-calling, or using language that is offensive or discriminatory. 6 | 7 | Be inclusive: We welcome people of all backgrounds and identities, and we strive to create a community where everyone feels valued and included. Avoid language or behavior that could be seen as exclusionary, and be mindful of how your actions and words might impact others. 8 | 9 | Be collaborative: Our community thrives on collaboration and mutual support. Be willing to share knowledge, ask questions, and help others. Avoid engaging in behavior that is competitive or uncooperative. 10 | 11 | Be constructive: We encourage constructive criticism and feedback, but we expect everyone to express themselves in a respectful and professional manner. Avoid using language or behavior that is hostile, aggressive, or confrontational. 12 | 13 | Be accountable: If you make a mistake, take responsibility for your actions and work to make things right. If you witness someone else violating our code of conduct, report it to the appropriate person or group. 14 | 15 | By following these guidelines, we can create a positive and productive community that benefits everyone involved. Thank you for your commitment to making our community a welcoming and inclusive space for all. -------------------------------------------------------------------------------- /Contributing.md: -------------------------------------------------------------------------------- 1 | 2 | ## Contributing to OpenDevFellows 3 | 4 | Welcome to OpenDevFellows! We're excited that you're interested in contributing to our open-source fellowship programs, mentorships programs, ambassador program, and hackathons. We believe that collaboration is the key to building a vibrant and inclusive open-source community, and we welcome contributions of all kinds. 5 | 6 | ### How to Contribute 7 | 8 | There are many ways to contribute to OpenDevFellows, including: 9 | 10 | - Writing documentation or tutorials 11 | - Creating or improving code 12 | - Submitting bug reports or feature requests 13 | - Participating in mentorship or ambassador programs 14 | - Attending or organizing hackathons 15 | 16 | ⚠️ Cloning this repository ⚠️ 17 | 18 | Cloning the repo by using the following command in your bash 19 | 20 | ```bash 21 | git clone https://github.com/AbhiiVops/OpenDevFellows.git 22 | ``` 23 | 24 | 25 | 26 | ### To get started, please follow these steps: 27 | 28 | - Fork the repository to your own GitHub account 29 | - Clone the forked repository to your local machine 30 | - Review the repository's README to learn more about the project's goals and purpose. 31 | - Look for the existing issues at [Issues](https://github.com/AbhiiVops/OpenDevFellows/issues) 32 | - A good way to easily start contributing is to pick and work on a [good first issue](https://github.com/AbhiiVops/OpenDevFellows/labels/good%20first%20issue). We try to make these issues as clear as possible and provide basic info on how the code should be changed, and if something is unclear feel free to ask for more information on the issue. 33 | - If you find an issue that you would like to work on, please assign yourself to the issue by commenting "I want to work on this issue". Do not start working on the issue randomly without assigning yourself first. 34 | - Make your changes and commit them with a descriptive commit message. 35 | - Push your changes to your forked repository. 36 | - Submit a pull request to the main repository and describe the changes you made and the issue it addresses. 37 | 38 | 39 | # Before You Get Started 40 | 41 | ### Code of Conduct 42 | 43 | OpenDevFellows has a Code of Conduct to ensure that all contributors are treated with respect and professionalism. By contributing to this repository, you agree to abide by the Code of Conduct. You can find the full text of the Code of Conduct in the `CODE_OF_CONDUCT.md` file. 44 | 45 | ### Issue Tracker 46 | 47 | We use GitHub's issue tracker to manage bug reports, feature requests, and other issues. Please check the issue tracker before submitting a new issue to avoid duplication. When submitting an issue, please include as much detail as possible, including steps to reproduce the issue if applicable. 48 | 49 | ### Labels 50 | 51 | We use labels to help organize and prioritize issues. Please use the appropriate labels when submitting issues or pull requests. See the LABELS.md file for more information on our labels and their meanings. 52 | 53 | ### License 54 | 55 | OpenDevFellows is released under the MIT license. By contributing to this repository, you agree to license your contributions under the same license. You can find the full text of the license in the LICENSE.md file. 56 | 57 | Thank you for your interest in contributing to OpenDevFellows! We look forward to working with you.🚀 58 | 59 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 |
2 |

OpenDevFellows

3 |

Code Coverage 4 | License 5 | Issues 6 | GitHub last commit 7 | GitHub contributors 8 | GitHub pull requests 9 | GitHub forks 10 | GitHub stars

11 |
12 | 13 | 14 | # 👋 Welcome 15 | **Welcome to the OpenDevFellows repository!** Our goal is to provide a welcoming and inclusive community for open source development by providing resources and information about various open-source fellowship programs, mentorships programs, ambassador programs, and hackathons. 16 | 17 | # 😄 About 18 | - OpenDevFellows is a community-driven initiative. 19 | - It aims to support open source development by **providing resources and information about mentorship, guidance, and resources to developers of all levels**. 20 | - Our goal is to create a welcoming and inclusive environment where contributors can learn and grow while contributing to meaningful projects. 21 | 22 | # 🕊️ Our Beliefs 23 | - We believe that *open source development is an essential part of innovation and progress*, and we want to ensure that everyone has the opportunity to participate and contribute. 24 | - To achieve this goal, we provide resources and information about various **open-source fellowship programs, mentorships programs, ambassador programs, and hackathons, connect experienced developers with meaningful projects, and collaborate with other organizations to promote open source development.** 25 | 26 | # 🤝 Contributing 27 | - We welcome contributions from developers of all levels and backgrounds. 28 | - Whether you are an experienced developer or just starting, there are many ways to contribute to OpenDevFellows. 29 | 30 | ### To Get Started 31 | Please read our `CONTRIBUTING.md` file for guidelines on how to contribute to the repository. We also have a `CODE_OF_CONDUCT.md` file that outlines our expectations for community behavior and interactions. 32 | 33 | # 🟩 Issues 34 | We have a variety of issues available for contributors to work on, including *bug fixes, feature requests, and documentation updates*. 35 | 36 | ### Some examples of issues that you can work on include: 37 | 38 | > 39 | > - Fixing typos in documentation 40 | > - Adding new features to existing project 41 | > - Resolving issues reported by users 42 | > - Research and compile a list of open-source fellowship programs available to developers, including eligibility requirements, application deadlines, and links to application forms. 43 | > - Create a guide on how to apply for open-source fellowship programs, including tips for crafting a strong application and examples of successful applications. 44 | > - Develop a resource page for open-source mentorship programs, including a list of programs, eligibility requirements, and links to application forms. 45 | > - Compile a list of ambassador programs for open-source projects and initiatives, including eligibility requirements, expectations of ambassadors, and links to application forms. 46 | > - Create a guide on how to organize an open-source hackathon, including best practices for promoting the event, attracting participants, and coordinating logistics. 47 | > - Develop a resource page for hackathon organizers, including a list of tools and resources for planning, promoting, and running successful hackathons. 48 | > 49 | 50 | ## 🛡️ License 51 | 52 | This project is licensed under the [MIT License](https://opensource.org/licenses/MIT) - see the `LICENSE` file for details. 53 | 54 | 55 |

Thank you for your interest in OpenDevFellows,we look forward to collaborating with you!

56 | --------------------------------------------------------------------------------